diff --git a/README.md b/README.md index 32cf791..e69de29 100644 --- a/README.md +++ b/README.md @@ -1,101 +0,0 @@ -![](https://githacks.org/_xeroxz/vmhook-eac/-/raw/a2e38c76b1fb9a53527c2441b06bb25b768d9959/bin/running-with-patch.png) - -### About - -This is a small POC to show an interesting design weakness in VMProtect 2 which can aid an attacker in such a way that reading memory can be manipulated in a centralized way. In this POC all `READQ/DW/B` virtual instructions are hooked, when virtualized integrity check routines try and read unwriteable sections, the pointer is changed to an untouched clone of the driver. This means all inlined virtualized integrity checks can be bypassed with a few lines of code. This is not possible without the aid of VMProtect 2's design... So im refering to having reusable vm handlers as a design weakness... - -***This is less about EasyAntiCheat and more about a design weakness in VMProtect 2... EasyAntiCheat is mearly used for a real world example, in addition, nothing released here is undetected, it has plenty of detection vectors...*** - -``` -00000603 67.09356689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000604 67.09357452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000605 67.09359741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000606 67.09359741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000607 67.09362793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -``` - -*note: not all integrity checks are virtualized, there were at least one other outside of virtualization* - -#### SHA1 Integrity Checks - -Integrity checks outside of the VMProtect 2 virtual machine are not effected by my POC. In particular, a SHA1 hash of both `.text` and `.eac0` is computed, the SHA1 hash function itself is not virtualized so it is not effected by my `READQ/DW/B` hook. - -``` -00126334 68.50553894 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE8158E60BF0 -00126335 68.50672913 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE8158E60BF0 -``` - -*Side Note: Check out that len? its not aligned, this means you can patch the alignment/padding at the end of both of these sections if you wanted and the SHA1 integrity checks would be fine...* - -Thus a hook is placed on this SHA1 hash function and spoofed results are computed... you can locate this function by searching for SHA1 magic numbers: 0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0... The SHA1 function should really be virtualized since these magic constant values can be located instantly... - - -### Solution, Possible Alternatives - -* 1.) If EasyAntiCheat were to patch their own driver using `MmMapIoSpaceEx` - `PAGE_READWRITE` (for HVCI support), they could compute a SHA1 hash, then revert the changes, compute a second SHA1 hash... If the hashes are the same, then you know someone is hooking SHA1, or hooking `READQ/DW/B` virtual instructions... In other words, instead of checking for patches, check to see if your patches result in a different hash... ***When i say patch i mean, change some padding/alignment bytes at the end of an unwriteable section***... - -* 2.) Map the driver into the usermode service as READONLY, this way the usermode service can just read the mapping and compute a hash... This has its own attack vectors considering it would require calling out to ntoskrnl/external code, however the idea is what matters, having multiple sources of integrity checking is ideal. - -### How To Update - -#### VM Handler Table Indexes - -These vm handler indexes are for EasyAntiCheat.sys 6/23/2021, when the driver gets re-vmprotected these vm handler indexes need to be updated. - -```cpp -// -// vm handler indexes for READQ... -// - -inline u8 g_readq_idxs[] = { 247, 215, 169, 159, 71, 60, 55, 43, 23 }; - -// -// vm handler indexes for READDW -// - -inline u8 g_readdw_idxs[] = { 218, 180, 179, 178, 163, 137, 92, 22, 12 }; - -// -// vm handler indexes for READB -// - -inline u8 g_readb_idxs[] = { 249, 231, 184, 160, 88, 85, 48, 9, 2 }; -``` - -#### Offsets - -`EAC_VM_HANDLE_OFFSET` contains the offset from the module base to the vm handler table, as of right now EAC only uses a single virtual machine in their VMProtect config so there is only a single vm handler table... - -`EAC_SHA1_OFFSET` contains the offset from the module base to the sha1 function... -you can locate this function by searching for SHA1 magic numbers: `0x67452301`, `0xEFCDAB89` -`0x98BADCFE`, `0x10325476`, `0xC3D2E1F0`. These crypto functions should be virtualized so their constant values cannot be located using IDA --> search "immidate values". - -`EAC_IMAGE_BASE` contains the "ImageBase" value inside of the OptionalHeaders field of the NT -headers... This value gets updated with the actual module base of the driver once loaded into -memory... I didnt want to read it off disk so I just made it a macro here... - -```cpp -#define EAC_VM_HANDLE_OFFSET 0xE93D -#define EAC_SHA1_OFFSET 0x4C00 -#define EAC_IMAGE_BASE 0x140000000 -``` - -#### VM Handler Table Entry Encrypt/Decrypt - -Since EasyAntiCheat is only using a single VM in their VMProtect 2 config, you will only need to update these two lambdas with the new instruction that is used to decrypt virtual machine handler table entries... - -You can use [vmprofiler-cli](https://githacks.org/vmp2/vmprofiler-cli/-/releases) to obtain these instructions... Since the entry point of the driver is virtualized you can simply take the "AddressOfEntryPoint" relative virtual address and use it as the `--vmentry` flag... - -```cpp -// > 0x00007FF77A233736 mov rcx, [r12+rax*8] -// > 0x00007FF77A23373D ror rcx, 0x30 <--- decrypt vm handler entry... -// > 0x00007FF77A233747 add rcx, r13 -// > 0x00007FF77A23374A jmp rcx -vm::decrypt_handler_t _decrypt_handler = []( u64 val ) -> u64 { return _rotr64( val, 0x30 ); }; - -// > 0x00007FF77A233736 mov rcx, [r12+rax*8] -// > 0x00007FF77A23373D ror rcx, 0x30 <--- inverse to encrypt vm handler entry... -// > 0x00007FF77A233747 add rcx, r13 -// > 0x00007FF77A23374A jmp rcx -vm::encrypt_handler_t _encrypt_handler = []( u64 val ) -> u64 { return _rotl64( val, 0x30 ); }; -``` diff --git a/bin/running-with-patch.png b/bin/running-with-patch.png deleted file mode 100644 index bbf67db..0000000 Binary files a/bin/running-with-patch.png and /dev/null differ diff --git a/bin/vmhook-eac-log b/bin/vmhook-eac-log deleted file mode 100644 index 9f9d27c..0000000 --- a/bin/vmhook-eac-log +++ /dev/null @@ -1,408565 +0,0 @@ -00000001 0.00000000 [vmhook-eac [core number = 11]]> registering on image load callbacks... -00000065 64.65457153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000066 64.65465546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000067 64.65467834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000068 64.65470886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53148 -00000069 64.80374908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53178 -00000070 64.80380249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000071 64.80381775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000072 65.29420471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000073 65.29434204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000074 65.29563904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000075 65.29643250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000076 65.29647064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000077 65.29650879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000078 65.29922485 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000079 65.29939270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000080 65.29942322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000081 65.29952240 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000082 65.29954529 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000083 65.29963684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000084 65.29965973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000085 65.29991913 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000086 65.29994202 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000087 65.30004883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000088 65.30007935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000089 65.30016327 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000090 65.30019379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000091 65.30042267 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000092 65.30045319 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000093 65.30058289 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000094 65.30060577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000095 65.30073547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000096 65.30075836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000097 65.30088043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000098 65.30090332 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000099 65.30103302 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000100 65.30105591 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000101 65.30117798 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000102 65.30120087 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000103 65.30135345 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000104 65.30137634 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000105 65.30152130 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000106 65.30155182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000107 65.30168152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000108 65.30171204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000109 65.30179596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530f0 -00000110 65.36382294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000111 65.36383057 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000112 65.36385345 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000113 65.36388397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000114 65.36505890 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000115 65.36509705 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000116 65.36513519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000117 65.36525726 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000118 65.36531067 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000119 65.36537933 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000120 65.36540222 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000121 65.36547089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000122 65.36680603 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000123 65.36685944 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000124 65.36686707 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000125 65.43658447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000126 65.43662262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000127 65.44628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000128 65.44630432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000129 65.44636536 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000130 65.44636536 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000131 65.44638062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000132 65.44640350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000133 65.44670105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000134 65.44683075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000135 65.44683838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000136 65.44688416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000137 65.44688416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000138 65.44689941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000139 65.44691467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000140 65.44707489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000141 65.46358490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00000142 65.46455383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000143 65.48425293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531a8 -00000144 65.49507904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000145 65.49513245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000146 65.77030182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000147 65.77037811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000148 65.92959595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a8 -00000149 65.92960358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530b0 -00000150 65.93019867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530b8 -00000151 65.93019867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530c0 -00000152 65.93038940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000153 65.93095398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000154 65.93098450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000155 65.93132019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000156 65.93135071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000157 65.93164825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000158 65.93167114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000159 65.93273926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000160 65.93276215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000161 65.93317413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000162 65.93319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000163 65.93349457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000164 65.93350983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000165 65.93392944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000166 65.93395996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000167 65.93446350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000168 65.93448639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000169 65.93502808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000170 65.93505096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000171 65.93544006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000172 65.93547058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000173 65.93591309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000174 65.93593597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000175 65.93637848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000176 65.93639374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000177 65.93695831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000178 65.93698883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000179 65.93754578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000180 65.93757629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000181 65.93806458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000182 65.93808746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000183 65.93839264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be78 -00000184 65.93840790 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be80 -00000185 65.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be88 -00000186 65.93923187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000187 65.93927765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000188 65.95415497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000189 65.95425415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000190 65.95430756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00000191 65.96097565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000192 65.96098328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000193 65.96104431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000194 65.96105194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000195 65.96105957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000196 65.96108246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000197 65.96128082 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084CC0 -00000198 65.96244812 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084CC0 -00000199 65.97069550 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000200 65.97090912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000201 65.97090912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000202 65.97097778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000203 65.97098541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000204 65.97099304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000205 65.97101593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000206 65.97123718 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A02FCC0 -00000207 65.97240448 [vmhook-eac [core number = 12]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A02FCC0 -00000208 65.98070526 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000209 65.99097443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000210 65.99101257 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -00000211 65.99219513 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -00000212 65.99297333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000213 65.99298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000214 65.99333191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000215 65.99333954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000216 65.99360657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000217 65.99361420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000218 65.99398041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000219 65.99398041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000220 65.99430084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000221 65.99430084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000222 65.99460602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000223 65.99461365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000224 65.99494934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000225 65.99495697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000226 65.99520874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000227 65.99521637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000228 65.99554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000229 65.99555206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000230 65.99590302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000231 65.99591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000232 65.99626160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000233 65.99626923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000234 65.99820709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000235 65.99821472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000236 65.99860382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000237 65.99861145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000238 65.99906921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000239 65.99906921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000240 65.99946594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000241 65.99947357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000242 66.00137329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000243 66.00137329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000244 66.00177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000245 66.00177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000246 66.00212097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000247 66.00212860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000248 66.00253296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00000249 66.00301361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000250 66.11940765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000251 66.12690735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000252 66.12701416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000253 66.12719727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00000254 66.12719727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000255 66.12731171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000256 66.12731934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00000257 66.12739563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00000258 66.12743378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00000259 66.12744141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000260 66.12746429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000261 66.12763977 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00000262 66.12812805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000263 66.12818909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000264 66.12830353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000265 66.12833405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000266 66.12841797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000267 66.12845612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53120 -00000268 66.12854767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000269 66.12857056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000270 66.12864685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000271 66.12866974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53138 -00000272 66.12931061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53180 -00000273 66.12980652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00000274 66.12988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00000275 66.26541138 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE8158E61800 -00000276 66.26660156 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE8158E61800 -00000277 66.99970245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000278 66.99983978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000279 67.00315094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00000280 67.00329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00000281 67.00346375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000282 67.00348663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c240 -00000283 67.00350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c244 -00000284 67.00358582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000285 67.00363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000286 67.00367737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000287 67.00379181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000288 67.00382233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c248 -00000289 67.00423431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000290 67.00426483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c24c -00000291 67.00427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c250 -00000292 67.00434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000293 67.00438690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000294 67.00442505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000295 67.00453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000296 67.00456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c254 -00000297 67.00484467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000298 67.00486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c258 -00000299 67.00489044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c25c -00000300 67.00495911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000301 67.00498199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000302 67.00502777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000303 67.00512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000304 67.00515747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c260 -00000305 67.00529480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000306 67.00532532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c264 -00000307 67.00534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c268 -00000308 67.00540924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000309 67.00543213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000310 67.00547028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000311 67.00557709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000312 67.00560760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c26c -00000313 67.00587463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000314 67.00589752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c270 -00000315 67.00591278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c274 -00000316 67.00598907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000317 67.00601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000318 67.00605011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000319 67.00614929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000320 67.00617981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c278 -00000321 67.00640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000322 67.00645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c27c -00000323 67.00646210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c280 -00000324 67.00653839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000325 67.00659943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000326 67.01042175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000327 67.01046753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000328 67.01050568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c284 -00000329 67.01071930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000330 67.01077271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c288 -00000331 67.01078033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28c -00000332 67.01086426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000333 67.01091766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000334 67.01316071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d8 -00000335 67.01328278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000336 67.01354218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53328 -00000337 67.01439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00000338 67.01439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00000339 67.01456451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000340 67.01459503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c290 -00000341 67.01479340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000342 67.01481628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c294 -00000343 67.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c298 -00000344 67.01491547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000345 67.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000346 67.01499176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000347 67.01512146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000348 67.01515198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c29c -00000349 67.01565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000350 67.01583099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000351 67.01586914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000352 67.01590729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000353 67.01600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000354 67.01603699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2a8 -00000355 67.01628876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000356 67.01631927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2ac -00000357 67.01634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b0 -00000358 67.01641083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000359 67.01644135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000360 67.01648712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000361 67.01654816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b8 -00000362 67.01659393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000363 67.01662445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b4 -00000364 67.01676178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000365 67.01678467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2b8 -00000366 67.01679993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2bc -00000367 67.01687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000368 67.01689911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000369 67.01693726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000370 67.01704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000371 67.01707458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c0 -00000372 67.01734924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000373 67.01737976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c4 -00000374 67.01738739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2c8 -00000375 67.01746368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000376 67.01749420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000377 67.01753235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000378 67.01763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000379 67.01766968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2cc -00000380 67.01806641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000381 67.01809692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d0 -00000382 67.01811218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d4 -00000383 67.01818848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00000384 67.01821899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000385 67.01825714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00000386 67.01836395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000387 67.01839447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2d8 -00000388 67.01892853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000389 67.02883148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000390 67.02887726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2e4 -00000391 67.02906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000392 67.02914429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000393 67.02918243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2f0 -00000394 67.02928925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000395 67.02953339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53188 -00000396 67.02964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64260 -00000397 67.02964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d1c0 -00000398 67.02964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64388 -00000399 67.02964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d2e8 -00000400 67.02965546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x646e0 -00000401 67.02965546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d640 -00000402 67.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64260 -00000403 67.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d1c0 -00000404 67.02967072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a20 -00000405 67.02967072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d980 -00000406 67.02967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x642d8 -00000407 67.02967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d238 -00000408 67.02993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000409 67.02997589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c2fc -00000410 67.03020477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000411 67.03024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000412 67.03028107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c308 -00000413 67.03071594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000414 67.03103638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000415 67.03107452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c314 -00000416 67.03128052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c320 -00000417 67.03171539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c32c -00000418 67.03195190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000419 67.03247070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000420 67.03250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000421 67.03282928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000422 67.03285980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000423 67.03315735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000424 67.03318024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000425 67.03419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000426 67.03421783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000427 67.03462982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000428 67.03465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000429 67.03495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000430 67.03497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000431 67.03541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000432 67.03544617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000433 67.03596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000434 67.03598785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000435 67.03648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000436 67.03651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000437 67.03691864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000438 67.03694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000439 67.03739166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000440 67.03741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000441 67.03786469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000442 67.03787994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000443 67.03840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000444 67.03842926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000445 67.03898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000446 67.03901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000447 67.03949738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000448 67.03952026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000449 67.03982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000450 67.03985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000451 67.04018402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000452 67.04021454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000453 67.04073334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000454 67.04076385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000455 67.04125977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000456 67.04128265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000457 67.04192352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000458 67.04195404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000459 67.04279327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000460 67.04281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000461 67.04331207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000462 67.04334259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000463 67.04386139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000464 67.04388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000465 67.04445648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000466 67.04447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000467 67.04487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000468 67.04489899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000469 67.04539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000470 67.04541779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000471 67.04594421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000472 67.04596710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000473 67.04680634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000474 67.04683685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000475 67.04733276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000476 67.04736328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000477 67.04839325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000478 67.04842377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000479 67.04875183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000480 67.04878235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000481 67.04930115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000482 67.04932404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000483 67.04966736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000484 67.04969025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000485 67.05021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000486 67.05023193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000487 67.05057526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000488 67.05059052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000489 67.05094147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000490 67.05097198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000491 67.05145264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000492 67.05148315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000493 67.05193329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000494 67.05194855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000495 67.05249023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000496 67.05251312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000497 67.05307770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000498 67.05310059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000499 67.05355072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000500 67.05356598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000501 67.05405426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000502 67.05407715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000503 67.05448914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000504 67.05451202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000505 67.05488586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000506 67.05490875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000507 67.05542755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000508 67.05545807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000509 67.05586243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000510 67.05589294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000511 67.05640411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000512 67.05642700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000513 67.05695343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000514 67.05697632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000515 67.05731964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000516 67.05734253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000517 67.05787659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000518 67.05789185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000519 67.05828094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000520 67.05829620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000521 67.05876160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000522 67.05878448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000523 67.05915833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000524 67.05918121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000525 67.05963898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000526 67.05965424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000527 67.06014252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000528 67.06016541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000529 67.06057739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000530 67.06060028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000531 67.06112671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000532 67.06114197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000533 67.06163025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000534 67.06166077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000535 67.06210327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000536 67.06213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000537 67.06257629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000538 67.06259918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000539 67.06308746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000540 67.06310272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000541 67.06362915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000542 67.06365204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000543 67.06398773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000544 67.06401062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000545 67.06446075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000546 67.06448364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000547 67.06485748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000548 67.06488037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000549 67.06546783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000550 67.06548309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000551 67.06600952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000552 67.06603241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000553 67.06644440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000554 67.06646729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000555 67.06702423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000556 67.06704712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00000557 67.06738281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d50 -00000558 67.06739044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d58 -00000559 67.06740570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d60 -00000560 67.06746674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000561 67.06808472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000562 67.06851959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000563 67.06932831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d80 -00000564 67.06933594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d88 -00000565 67.06935120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d90 -00000566 67.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000567 67.06999969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000568 67.07044220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000569 67.07123566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000570 67.07215881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000571 67.07291412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000572 67.07366180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000573 67.07435608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000574 67.07555389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000575 67.07647705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000576 67.07735443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000577 67.07817078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db0 -00000578 67.07818604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61db8 -00000579 67.07818604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61dc0 -00000580 67.07823944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000581 67.07884979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000582 67.07927704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000583 67.08007050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000584 67.08102417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000585 67.08180237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d98 -00000586 67.08181000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61da0 -00000587 67.08182526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61da8 -00000588 67.08187103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00000589 67.08246613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000590 67.08290100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000591 67.08368683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000592 67.08465576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000593 67.08544159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000594 67.08620453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000595 67.08690643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000596 67.08812714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000597 67.08908844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000598 67.08998108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000599 67.09077454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000600 67.09163666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d68 -00000601 67.09164429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d70 -00000602 67.09165955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d78 -00000603 67.09356689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000604 67.09357452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00000605 67.09359741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000606 67.09359741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00000607 67.09362793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00000608 67.09363556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00000609 67.09365082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00000610 67.09365845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00000611 67.09368134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00000612 67.09368134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00000613 67.09371185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00000614 67.09371185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00000615 67.09373474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00000616 67.09374237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00000617 67.09375763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00000618 67.09376526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00000619 67.09379578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00000620 67.09379578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00000621 67.09381866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00000622 67.09381866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00000623 67.09384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00000624 67.09384918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00000625 67.09387207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00000626 67.09387207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00000627 67.09390259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00000628 67.09390259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00000629 67.09392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00000630 67.09392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00000631 67.09394836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00000632 67.09395599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00000633 67.09398651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00000634 67.09398651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00000635 67.09400940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00000636 67.09400940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00000637 67.09403229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00000638 67.09403992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00000639 67.09406281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00000640 67.09407043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00000641 67.09409332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00000642 67.09409332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00000643 67.09411621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00000644 67.09411621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00000645 67.09414673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00000646 67.09414673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00000647 67.09416962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00000648 67.09417725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00000649 67.09420013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00000650 67.09420013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00000651 67.09423065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00000652 67.09423065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00000653 67.09425354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00000654 67.09425354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00000655 67.09427643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00000656 67.09428406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00000657 67.09430695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00000658 67.09430695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00000659 67.09433746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00000660 67.09433746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00000661 67.09436035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00000662 67.09436035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00000663 67.09439087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00000664 67.09439087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00000665 67.09441376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00000666 67.09442139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00000667 67.09444427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00000668 67.09444427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00000669 67.09446716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00000670 67.09446716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00000671 67.09449768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00000672 67.09450531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00000673 67.09452820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00000674 67.09452820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00000675 67.09455109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00000676 67.09455872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00000677 67.09458923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00000678 67.09458923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00000679 67.09461212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00000680 67.09461975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00000681 67.09464264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00000682 67.09464264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00000683 67.09466553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00000684 67.09467316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00000685 67.09470367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00000686 67.09470367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00000687 67.09472656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00000688 67.09473419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00000689 67.09475708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00000690 67.09475708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00000691 67.09478760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00000692 67.09478760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00000693 67.09481049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00000694 67.09481812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00000695 67.09483337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00000696 67.09484100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00000697 67.09486389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00000698 67.09486389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00000699 67.09489441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00000700 67.09489441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00000701 67.09491730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00000702 67.09491730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00000703 67.09494019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00000704 67.09494781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00000705 67.09497833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00000706 67.09497833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00000707 67.09500122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00000708 67.09500122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00000709 67.09502411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00000710 67.09502411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00000711 67.09505463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00000712 67.09506226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00000713 67.09508514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00000714 67.09508514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00000715 67.09510803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00000716 67.09510803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00000717 67.09513855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00000718 67.09513855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00000719 67.09516144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00000720 67.09516907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00000721 67.09519196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00000722 67.09519196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00000723 67.09522247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00000724 67.09522247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00000725 67.09524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00000726 67.09525299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00000727 67.09529114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00000728 67.09529877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00000729 67.09531403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00000730 67.09532166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00000731 67.09534454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00000732 67.09534454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00000733 67.09537506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00000734 67.09537506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00000735 67.09539795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00000736 67.09539795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00000737 67.09542084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00000738 67.09542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00000739 67.09545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00000740 67.09545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00000741 67.09548187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00000742 67.09548187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00000743 67.09550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00000744 67.09551239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00000745 67.09553528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00000746 67.09554291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00000747 67.09556580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00000748 67.09556580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00000749 67.09558868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00000750 67.09558868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00000751 67.09561920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00000752 67.09561920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00000753 67.09564209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00000754 67.09564972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00000755 67.09567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00000756 67.09567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00000757 67.09569550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00000758 67.09569550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00000759 67.09572601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00000760 67.09572601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00000761 67.09574890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00000762 67.09575653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00000763 67.09577942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00000764 67.09577942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00000765 67.09580994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00000766 67.09580994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00000767 67.09583282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00000768 67.09584045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00000769 67.09585571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00000770 67.09586334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00000771 67.09589386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00000772 67.09589386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00000773 67.09591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00000774 67.09591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00000775 67.09593964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00000776 67.09594727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00000777 67.09597015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00000778 67.09597778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00000779 67.09600067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00000780 67.09600067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00000781 67.09602356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00000782 67.09602356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00000783 67.09605408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00000784 67.09605408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00000785 67.09607697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00000786 67.09608459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00000787 67.09610748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00000788 67.09610748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00000789 67.09613800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00000790 67.09613800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00000791 67.09616089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00000792 67.09616089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00000793 67.09618378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00000794 67.09619141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00000795 67.09621429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00000796 67.09621429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00000797 67.09624481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00000798 67.09624481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00000799 67.09626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00000800 67.09626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00000801 67.09629059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00000802 67.09629822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00000803 67.09632874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00000804 67.09632874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00000805 67.09635162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00000806 67.09635162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00000807 67.09637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00000808 67.09638214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00000809 67.09640503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00000810 67.09641266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00000811 67.09643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00000812 67.09643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00000813 67.09645844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00000814 67.09645844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00000815 67.09648895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00000816 67.09649658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00000817 67.09651947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00000818 67.09651947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00000819 67.09654236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00000820 67.09654236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00000821 67.09657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00000822 67.09657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00000823 67.09661102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00000824 67.09661102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00000825 67.09663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00000826 67.09663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00000827 67.09665680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00000828 67.09665680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00000829 67.09668732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00000830 67.09669495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00000831 67.09671783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00000832 67.09671783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00000833 67.09674072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00000834 67.09674072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00000835 67.09677124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00000836 67.09677124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00000837 67.09679413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00000838 67.09680176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00000839 67.09681702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00000840 67.09682465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00000841 67.09684753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00000842 67.09684753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00000843 67.09687805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00000844 67.09687805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00000845 67.09690094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00000846 67.09690857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00000847 67.09693146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00000848 67.09693146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00000849 67.09696198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00000850 67.09696198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00000851 67.09698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00000852 67.09698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00000853 67.09700775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00000854 67.09701538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00000855 67.09703827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00000856 67.09704590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00000857 67.09706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00000858 67.09706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00000859 67.09709167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00000860 67.09709167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00000861 67.09712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00000862 67.09712982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00000863 67.09714508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00000864 67.09715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00000865 67.09717560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00000866 67.09717560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00000867 67.09720612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00000868 67.09720612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00000869 67.09722900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00000870 67.09723663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00000871 67.09725189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00000872 67.09725952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00000873 67.09729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00000874 67.09729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00000875 67.09731293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00000876 67.09731293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00000877 67.09733582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00000878 67.09733582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00000879 67.09736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00000880 67.09736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00000881 67.09739685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00000882 67.09739685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00000883 67.09741974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00000884 67.09741974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00000885 67.09744263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00000886 67.09744263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00000887 67.09747314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00000888 67.09748077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00000889 67.09750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00000890 67.09751129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00000891 67.09753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00000892 67.09753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00000893 67.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00000894 67.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00000895 67.09759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00000896 67.09759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00000897 67.09761810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00000898 67.09761810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00000899 67.09764099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00000900 67.09764862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00000901 67.09767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00000902 67.09767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00000903 67.09770203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00000904 67.09770203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00000905 67.09772491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00000906 67.09772491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00000907 67.09775543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00000908 67.09776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00000909 67.09778595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00000910 67.09779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00000911 67.09781647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00000912 67.09781647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00000913 67.09784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00000914 67.09784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00000915 67.09786987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00000916 67.09787750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00000917 67.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00000918 67.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00000919 67.09792328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00000920 67.09793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00000921 67.09796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00000922 67.09796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00000923 67.09798431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00000924 67.09799194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00000925 67.09801483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00000926 67.09801483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00000927 67.09804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00000928 67.09804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00000929 67.09807587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00000930 67.09807587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00000931 67.09809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00000932 67.09809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00000933 67.09812164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00000934 67.09812927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00000935 67.09815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00000936 67.09815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00000937 67.09818268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00000938 67.09819031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00000939 67.09821320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00000940 67.09821320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00000941 67.09824371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00000942 67.09824371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00000943 67.09827423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00000944 67.09827423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00000945 67.09829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00000946 67.09829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00000947 67.09832001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00000948 67.09832764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00000949 67.09835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00000950 67.09835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00000951 67.09838104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00000952 67.09838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00000953 67.09841156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00000954 67.09841156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00000955 67.09844208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00000956 67.09844208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00000957 67.09847260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00000958 67.09847260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00000959 67.09849548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00000960 67.09850311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00000961 67.09852600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00000962 67.09852600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00000963 67.09855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00000964 67.09855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00000965 67.09858704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00000966 67.09858704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00000967 67.09860992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00000968 67.09860992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00000969 67.09864044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00000970 67.09864044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00000971 67.09867096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00000972 67.09867096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00000973 67.09869385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00000974 67.09870148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00000975 67.09872437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00000976 67.09872437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00000977 67.09875488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00000978 67.09875488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00000979 67.09878540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00000980 67.09878540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00000981 67.09881592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00000982 67.09881592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00000983 67.09883881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00000984 67.09883881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00000985 67.09886932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00000986 67.09886932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00000987 67.09889221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00000988 67.09889984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00000989 67.09892273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00000990 67.09892273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00000991 67.09895325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00000992 67.09895325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00000993 67.09897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00000994 67.09897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00000995 67.09900665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00000996 67.09900665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00000997 67.09903717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00000998 67.09903717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00000999 67.09906769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00001000 67.09906769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00001001 67.09909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00001002 67.09909821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00001003 67.09912109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00001004 67.09912109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00001005 67.09915161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00001006 67.09915161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00001007 67.09917450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00001008 67.09918213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00001009 67.09920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00001010 67.09920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00001011 67.09923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00001012 67.09923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00001013 67.09926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00001014 67.09926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00001015 67.09928894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00001016 67.09929657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00001017 67.09931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00001018 67.09931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00001019 67.09934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00001020 67.09934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00001021 67.09938049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00001022 67.09938049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00001023 67.09940338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00001024 67.09940338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00001025 67.09943390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00001026 67.09943390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00001027 67.09945679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00001028 67.09946442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00001029 67.09948730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00001030 67.09948730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00001031 67.09951019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00001032 67.09951019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00001033 67.09954071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00001034 67.09954834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00001035 67.09957123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00001036 67.09957123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00001037 67.09959412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00001038 67.09959412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00001039 67.09962463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00001040 67.09962463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00001041 67.09964752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00001042 67.09965515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00001043 67.09967041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00001044 67.09967804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00001045 67.09970856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00001046 67.09970856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00001047 67.09973907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00001048 67.09974670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00001049 67.09976196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00001050 67.09976959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00001051 67.09979248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00001052 67.09979248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00001053 67.09982300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00001054 67.09982300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00001055 67.09984589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00001056 67.09985352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00001057 67.09986877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00001058 67.09987640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00001059 67.09990692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00001060 67.09990692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00001061 67.09992981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00001062 67.09992981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00001063 67.09995270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00001064 67.09996033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00001065 67.09998322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00001066 67.09999084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00001067 67.10001373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00001068 67.10001373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00001069 67.10003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00001070 67.10003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00001071 67.10006714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00001072 67.10006714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00001073 67.10009003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00001074 67.10009766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00001075 67.10012054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00001076 67.10012054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00001077 67.10014343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00001078 67.10014343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00001079 67.10017395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00001080 67.10017395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00001081 67.10019684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00001082 67.10020447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00001083 67.10022736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00001084 67.10022736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00001085 67.10025787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00001086 67.10025787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00001087 67.10028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00001088 67.10028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00001089 67.10030365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00001090 67.10031128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00001091 67.10034180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00001092 67.10034180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00001093 67.10036469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00001094 67.10036469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00001095 67.10038757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00001096 67.10038757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00001097 67.10041809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00001098 67.10042572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00001099 67.10044098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00001100 67.10044861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00001101 67.10047150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00001102 67.10047150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00001103 67.10050201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00001104 67.10050201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00001105 67.10052490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00001106 67.10053253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00001107 67.10055542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00001108 67.10055542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00001109 67.10058594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00001110 67.10058594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00001111 67.10061646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00001112 67.10061646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00001113 67.10063934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00001114 67.10063934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00001115 67.10066986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00001116 67.10066986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00001117 67.10070038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00001118 67.10070038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00001119 67.10072327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00001120 67.10073090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00001121 67.10075378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00001122 67.10075378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00001123 67.10078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00001124 67.10078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00001125 67.10080719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00001126 67.10081482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00001127 67.10083008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00001128 67.10083771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00001129 67.10086060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00001130 67.10086060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00001131 67.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00001132 67.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00001133 67.10091400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00001134 67.10092163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00001135 67.10094452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00001136 67.10094452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00001137 67.10097504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00001138 67.10097504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00001139 67.10099792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00001140 67.10099792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00001141 67.10102081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00001142 67.10102844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00001143 67.10105133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00001144 67.10105896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00001145 67.10108185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00001146 67.10108185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00001147 67.10110474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00001148 67.10110474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00001149 67.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00001150 67.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00001151 67.10115814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00001152 67.10116577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00001153 67.10118866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00001154 67.10118866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00001155 67.10121918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00001156 67.10121918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00001157 67.10124207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00001158 67.10124207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00001159 67.10126495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00001160 67.10127258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00001161 67.10129547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00001162 67.10129547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00001163 67.10132599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00001164 67.10132599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00001165 67.10134888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00001166 67.10134888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00001167 67.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00001168 67.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00001169 67.10140991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00001170 67.10140991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00001171 67.10143280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00001172 67.10143280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00001173 67.10145569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00001174 67.10145569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00001175 67.10148621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00001176 67.10149384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00001177 67.10151672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00001178 67.10151672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00001179 67.10153961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00001180 67.10153961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00001181 67.10157013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00001182 67.10157013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00001183 67.10159302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00001184 67.10160065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00001185 67.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00001186 67.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00001187 67.10165405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00001188 67.10165405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00001189 67.10167694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00001190 67.10167694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00001191 67.10169983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00001192 67.10170746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00001193 67.10173798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00001194 67.10173798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00001195 67.10176086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00001196 67.10176086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00001197 67.10178375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00001198 67.10178375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00001199 67.10181427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00001200 67.10181427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00001201 67.10184479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00001202 67.10184479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00001203 67.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00001204 67.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00001205 67.10189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00001206 67.10189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00001207 67.10192108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00001208 67.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00001209 67.10195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00001210 67.10195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00001211 67.10197449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00001212 67.10197449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00001213 67.10200500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00001214 67.10200500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00001215 67.10202789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00001216 67.10203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00001217 67.10205078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00001218 67.10205841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00001219 67.10208893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00001220 67.10208893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00001221 67.10211182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00001222 67.10211182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00001223 67.10213470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00001224 67.10214233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00001225 67.10216522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00001226 67.10217285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00001227 67.10219574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00001228 67.10219574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00001229 67.10221863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00001230 67.10221863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00001231 67.10224915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00001232 67.10224915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00001233 67.10227203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00001234 67.10227966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00001235 67.10230255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00001236 67.10230255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00001237 67.10233307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00001238 67.10233307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00001239 67.10235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00001240 67.10235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00001241 67.10237885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00001242 67.10238647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00001243 67.10240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00001244 67.10240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00001245 67.10243988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00001246 67.10243988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00001247 67.10246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00001248 67.10246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00001249 67.10249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00001250 67.10249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00001251 67.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00001252 67.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00001253 67.10254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00001254 67.10254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00001255 67.10256958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00001256 67.10257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00001257 67.10260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00001258 67.10260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00001259 67.10263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00001260 67.10263824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00001261 67.10266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00001262 67.10266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00001263 67.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00001264 67.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00001265 67.10272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00001266 67.10272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00001267 67.10274506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00001268 67.10275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00001269 67.10277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00001270 67.10277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00001271 67.10280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00001272 67.10280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00001273 67.10283661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00001274 67.10283661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00001275 67.10285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00001276 67.10285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00001277 67.10289001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00001278 67.10289001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00001279 67.10292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00001280 67.10292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00001281 67.10294342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00001282 67.10295105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00001283 67.10297394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00001284 67.10297394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00001285 67.10300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00001286 67.10300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00001287 67.10303497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00001288 67.10303497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00001289 67.10305786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00001290 67.10305786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00001291 67.10308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00001292 67.10308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00001293 67.10311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00001294 67.10311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00001295 67.10314178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00001296 67.10314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00001297 67.10317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00001298 67.10317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00001299 67.10320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00001300 67.10320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00001301 67.10323334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00001302 67.10323334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00001303 67.10325623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00001304 67.10325623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00001305 67.10328674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00001306 67.10328674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00001307 67.10331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00001308 67.10331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00001309 67.10334015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00001310 67.10334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00001311 67.10337067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00001312 67.10337067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00001313 67.10340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00001314 67.10340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00001315 67.10343170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00001316 67.10343170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00001317 67.10345459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00001318 67.10346222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00001319 67.10348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00001320 67.10348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00001321 67.10351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00001322 67.10351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00001323 67.10353851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00001324 67.10353851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00001325 67.10356140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00001326 67.10356903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00001327 67.10359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00001328 67.10359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00001329 67.10362244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00001330 67.10362244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00001331 67.10364532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00001332 67.10364532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00001333 67.10367584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00001334 67.10368347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00001335 67.10370636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00001336 67.10370636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00001337 67.10372925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00001338 67.10372925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00001339 67.10375977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00001340 67.10375977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00001341 67.10378265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00001342 67.10379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00001343 67.10381317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00001344 67.10381317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00001345 67.10384369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00001346 67.10384369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00001347 67.10386658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00001348 67.10386658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00001349 67.10388947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00001350 67.10389709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00001351 67.10391998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00001352 67.10391998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00001353 67.10395050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00001354 67.10395050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00001355 67.10397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00001356 67.10397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00001357 67.10399628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00001358 67.10400391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00001359 67.10402679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00001360 67.10403442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00001361 67.10405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00001362 67.10405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00001363 67.10408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00001364 67.10408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00001365 67.10411072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00001366 67.10411835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00001367 67.10414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00001368 67.10414886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00001369 67.10417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00001370 67.10417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00001371 67.10419464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00001372 67.10419464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00001373 67.10422516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00001374 67.10423279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00001375 67.10425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00001376 67.10425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00001377 67.10427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00001378 67.10428619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00001379 67.10431671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00001380 67.10431671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00001381 67.10433960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00001382 67.10434723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00001383 67.10437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00001384 67.10437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00001385 67.10439301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00001386 67.10440063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00001387 67.10443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00001388 67.10443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00001389 67.10445404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00001390 67.10445404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00001391 67.10447693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00001392 67.10448456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00001393 67.10451508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00001394 67.10451508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00001395 67.10454559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00001396 67.10454559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00001397 67.10456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00001398 67.10456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00001399 67.10459900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00001400 67.10459900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00001401 67.10462952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00001402 67.10462952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00001403 67.10465240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00001404 67.10466003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00001405 67.10468292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00001406 67.10469055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00001407 67.10471344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00001408 67.10472107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00001409 67.10475159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00001410 67.10475159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00001411 67.10477448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00001412 67.10477448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00001413 67.10479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00001414 67.10480499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00001415 67.10483551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00001416 67.10483551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00001417 67.10486603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00001418 67.10486603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00001419 67.10488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00001420 67.10489655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00001421 67.10491943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00001422 67.10491943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00001423 67.10494995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00001424 67.10494995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00001425 67.10498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00001426 67.10498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00001427 67.10500336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00001428 67.10501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00001429 67.10503387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00001430 67.10503387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00001431 67.10506439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00001432 67.10506439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00001433 67.10508728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00001434 67.10509491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00001435 67.10511780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00001436 67.10511780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00001437 67.10514832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00001438 67.10514832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00001439 67.10517883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00001440 67.10517883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00001441 67.10520172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00001442 67.10520935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00001443 67.10523224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00001444 67.10523224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00001445 67.10526276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00001446 67.10526276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00001447 67.10529327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00001448 67.10529327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00001449 67.10531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00001450 67.10531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00001451 67.10534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00001452 67.10534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00001453 67.10537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00001454 67.10537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00001455 67.10540009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00001456 67.10540771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00001457 67.10543060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00001458 67.10543060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00001459 67.10546112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00001460 67.10546875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00001461 67.10549164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00001462 67.10549164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00001463 67.10551453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00001464 67.10552216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00001465 67.10554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00001466 67.10554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00001467 67.10557556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00001468 67.10557556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00001469 67.10559845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00001470 67.10560608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00001471 67.10562897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00001472 67.10562897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00001473 67.10565948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00001474 67.10566711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00001475 67.10569000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00001476 67.10569763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00001477 67.10571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00001478 67.10572052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00001479 67.10574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00001480 67.10574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00001481 67.10577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00001482 67.10577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00001483 67.10579681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00001484 67.10580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00001485 67.10582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00001486 67.10582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00001487 67.10585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00001488 67.10585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00001489 67.10588074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00001490 67.10588074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00001491 67.10590363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00001492 67.10591125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00001493 67.10593414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00001494 67.10594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00001495 67.10596466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00001496 67.10596466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00001497 67.10598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00001498 67.10598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00001499 67.10601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00001500 67.10602570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00001501 67.10604095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00001502 67.10604858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00001503 67.10607147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00001504 67.10607147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00001505 67.10610199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00001506 67.10610199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00001507 67.10612488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00001508 67.10612488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00001509 67.10614777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00001510 67.10615540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00001511 67.10618591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00001512 67.10618591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00001513 67.10620880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00001514 67.10620880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00001515 67.10623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00001516 67.10623932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00001517 67.10626221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00001518 67.10626221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00001519 67.10629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00001520 67.10629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00001521 67.10631561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00001522 67.10631561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00001523 67.10634613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00001524 67.10634613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00001525 67.10636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00001526 67.10637665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00001527 67.10639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00001528 67.10639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00001529 67.10642242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00001530 67.10642242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00001531 67.10645294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00001532 67.10646057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00001533 67.10647583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00001534 67.10648346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00001535 67.10650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00001536 67.10650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00001537 67.10653687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00001538 67.10653687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00001539 67.10655975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00001540 67.10656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00001541 67.10659027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00001542 67.10659027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00001543 67.10662079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00001544 67.10662079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00001545 67.10665131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00001546 67.10665131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00001547 67.10667419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00001548 67.10668182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00001549 67.10670471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00001550 67.10670471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00001551 67.10673523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00001552 67.10674286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00001553 67.10676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00001554 67.10676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00001555 67.10678864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00001556 67.10679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00001557 67.10681915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00001558 67.10681915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00001559 67.10684967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00001560 67.10685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00001561 67.10688019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00001562 67.10688019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00001563 67.10690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00001564 67.10691071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00001565 67.10693359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00001566 67.10694122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00001567 67.10696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00001568 67.10696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00001569 67.10698700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00001570 67.10698700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00001571 67.10701752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00001572 67.10701752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00001573 67.10704041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00001574 67.10704803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00001575 67.10707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00001576 67.10707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00001577 67.10709381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00001578 67.10709381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00001579 67.10713196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00001580 67.10713196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00001581 67.10715485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00001582 67.10716248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00001583 67.10718536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00001584 67.10718536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00001585 67.10721588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00001586 67.10721588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00001587 67.10723877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00001588 67.10724640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00001589 67.10726929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00001590 67.10726929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00001591 67.10729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00001592 67.10729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00001593 67.10733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00001594 67.10733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00001595 67.10735321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00001596 67.10735321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00001597 67.10738373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00001598 67.10738373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00001599 67.10741425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00001600 67.10741425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00001601 67.10743713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00001602 67.10744476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00001603 67.10746765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00001604 67.10746765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00001605 67.10749817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00001606 67.10749817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00001607 67.10752869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00001608 67.10753632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00001609 67.10755157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00001610 67.10755920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00001611 67.10758209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00001612 67.10758209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00001613 67.10761261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00001614 67.10761261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00001615 67.10763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00001616 67.10763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00001617 67.10765839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00001618 67.10766602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00001619 67.10769653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00001620 67.10769653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00001621 67.10771942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00001622 67.10771942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00001623 67.10774231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00001624 67.10774231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00001625 67.10777283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00001626 67.10777283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00001627 67.10780334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00001628 67.10780334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00001629 67.10782623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00001630 67.10782623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00001631 67.10784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00001632 67.10784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00001633 67.10787964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00001634 67.10788727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00001635 67.10791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00001636 67.10791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00001637 67.10793304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00001638 67.10793304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00001639 67.10797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00001640 67.10797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00001641 67.10799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00001642 67.10799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00001643 67.10801697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00001644 67.10802460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00001645 67.10804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00001646 67.10804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00001647 67.10807800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00001648 67.10808563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00001649 67.10810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00001650 67.10810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00001651 67.10813141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00001652 67.10813904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00001653 67.10816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00001654 67.10816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00001655 67.10819244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00001656 67.10819244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00001657 67.10821533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -00001658 67.10822296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -00001659 67.10824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -00001660 67.10824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -00001661 67.10827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -00001662 67.10828400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -00001663 67.10830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -00001664 67.10830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -00001665 67.10832977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -00001666 67.10833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -00001667 67.10836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -00001668 67.10836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -00001669 67.10839081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -00001670 67.10839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -00001671 67.10842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -00001672 67.10842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -00001673 67.10845184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -00001674 67.10845184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -00001675 67.10848236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -00001676 67.10848236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -00001677 67.10850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -00001678 67.10850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -00001679 67.10852814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -00001680 67.10853577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -00001681 67.10856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -00001682 67.10856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -00001683 67.10858917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -00001684 67.10858917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -00001685 67.10861206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -00001686 67.10861206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -00001687 67.10864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -00001688 67.10865021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -00001689 67.10867310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -00001690 67.10867310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -00001691 67.10869598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -00001692 67.10869598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -00001693 67.10872650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -00001694 67.10872650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -00001695 67.10875702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -00001696 67.10875702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -00001697 67.10877991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -00001698 67.10878754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -00001699 67.10881042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -00001700 67.10881042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -00001701 67.10884094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -00001702 67.10884857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -00001703 67.10887146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -00001704 67.10887146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -00001705 67.10889435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -00001706 67.10890198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -00001707 67.10892487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -00001708 67.10892487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -00001709 67.10895538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -00001710 67.10895538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -00001711 67.10897827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -00001712 67.10897827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -00001713 67.10900116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -00001714 67.10900879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -00001715 67.10903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -00001716 67.10903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -00001717 67.10906219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -00001718 67.10906219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -00001719 67.10908508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -00001720 67.10908508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -00001721 67.10911560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -00001722 67.10912323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -00001723 67.10914612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -00001724 67.10914612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -00001725 67.10916901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -00001726 67.10916901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -00001727 67.10919952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -00001728 67.10919952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -00001729 67.10922241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -00001730 67.10923004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -00001731 67.10924530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -00001732 67.10925293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -00001733 67.10928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -00001734 67.10928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -00001735 67.10930634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -00001736 67.10930634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -00001737 67.10932922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -00001738 67.10933685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -00001739 67.10935974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -00001740 67.10935974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -00001741 67.10939026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -00001742 67.10939026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -00001743 67.10941315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -00001744 67.10941315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -00001745 67.10944366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -00001746 67.10944366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -00001747 67.10947418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -00001748 67.10947418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -00001749 67.10949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -00001750 67.10949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -00001751 67.10951996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -00001752 67.10951996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -00001753 67.10955048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -00001754 67.10955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -00001755 67.10958099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -00001756 67.10958099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -00001757 67.10960388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -00001758 67.10960388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -00001759 67.10963440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -00001760 67.10963440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -00001761 67.10965729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -00001762 67.10966492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -00001763 67.10968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -00001764 67.10968781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -00001765 67.10971832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -00001766 67.10971832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -00001767 67.10974121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -00001768 67.10974121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -00001769 67.10976410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -00001770 67.10977173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -00001771 67.10979462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -00001772 67.10979462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -00001773 67.10982513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -00001774 67.10982513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -00001775 67.10984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -00001776 67.10984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -00001777 67.10987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -00001778 67.10987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -00001779 67.10990143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -00001780 67.10990906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -00001781 67.10993195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -00001782 67.10993195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -00001783 67.10995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -00001784 67.10995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -00001785 67.10998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -00001786 67.10999298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -00001787 67.11000824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -00001788 67.11001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -00001789 67.11003876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -00001790 67.11003876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -00001791 67.11006927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -00001792 67.11006927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -00001793 67.11009216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -00001794 67.11009216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -00001795 67.11011505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -00001796 67.11012268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -00001797 67.11015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -00001798 67.11015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -00001799 67.11017609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -00001800 67.11017609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -00001801 67.11019897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -00001802 67.11019897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -00001803 67.11022949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -00001804 67.11023712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -00001805 67.11025238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -00001806 67.11026001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -00001807 67.11028290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -00001808 67.11028290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -00001809 67.11031342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -00001810 67.11031342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -00001811 67.11034393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -00001812 67.11034393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -00001813 67.11036682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -00001814 67.11037445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -00001815 67.11039734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -00001816 67.11039734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -00001817 67.11042786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -00001818 67.11043549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -00001819 67.11045837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -00001820 67.11045837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -00001821 67.11048126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -00001822 67.11048889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -00001823 67.11051178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -00001824 67.11051178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -00001825 67.11054230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -00001826 67.11054993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -00001827 67.11057281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -00001828 67.11058044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -00001829 67.11060333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -00001830 67.11060333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -00001831 67.11063385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -00001832 67.11063385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -00001833 67.11066437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -00001834 67.11066437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -00001835 67.11068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -00001836 67.11068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -00001837 67.11071014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -00001838 67.11071014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -00001839 67.11074066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -00001840 67.11074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -00001841 67.11077118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -00001842 67.11077118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -00001843 67.11079407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -00001844 67.11079407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -00001845 67.11082458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -00001846 67.11082458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -00001847 67.11084747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -00001848 67.11085510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -00001849 67.11087036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -00001850 67.11087799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -00001851 67.11090851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -00001852 67.11090851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -00001853 67.11093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -00001854 67.11093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -00001855 67.11095428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -00001856 67.11096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -00001857 67.11099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -00001858 67.11099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -00001859 67.11101532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -00001860 67.11101532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -00001861 67.11103821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -00001862 67.11103821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -00001863 67.11106873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -00001864 67.11106873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -00001865 67.11109924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -00001866 67.11109924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -00001867 67.11112213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -00001868 67.11112213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -00001869 67.11114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -00001870 67.11114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -00001871 67.11117554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -00001872 67.11118317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -00001873 67.11119843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -00001874 67.11120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -00001875 67.11122894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -00001876 67.11122894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -00001877 67.11125946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -00001878 67.11125946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -00001879 67.11128235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -00001880 67.11128998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -00001881 67.11130524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -00001882 67.11131287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -00001883 67.11134338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -00001884 67.11134338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -00001885 67.11136627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -00001886 67.11136627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -00001887 67.11138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -00001888 67.11139679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -00001889 67.11141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -00001890 67.11142731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -00001891 67.11145020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -00001892 67.11145020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -00001893 67.11147308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -00001894 67.11147308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -00001895 67.11150360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -00001896 67.11150360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -00001897 67.11152649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -00001898 67.11153412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -00001899 67.11155701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -00001900 67.11155701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -00001901 67.11158752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -00001902 67.11158752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -00001903 67.11161041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -00001904 67.11161804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -00001905 67.11163330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -00001906 67.11164093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -00001907 67.11166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -00001908 67.11167145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -00001909 67.11170197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -00001910 67.11170197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -00001911 67.11172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -00001912 67.11172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -00001913 67.11174774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -00001914 67.11175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -00001915 67.11178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -00001916 67.11178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -00001917 67.11180878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -00001918 67.11181641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -00001919 67.11183929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -00001920 67.11183929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -00001921 67.11186218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -00001922 67.11186981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -00001923 67.11190033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -00001924 67.11190033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -00001925 67.11192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -00001926 67.11192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -00001927 67.11194611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -00001928 67.11195374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -00001929 67.11198425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -00001930 67.11198425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -00001931 67.11200714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -00001932 67.11201477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -00001933 67.11203766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -00001934 67.11203766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -00001935 67.11206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -00001936 67.11206818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -00001937 67.11209869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -00001938 67.11209869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -00001939 67.11212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -00001940 67.11212921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -00001941 67.11215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -00001942 67.11215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -00001943 67.11218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -00001944 67.11218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -00001945 67.11221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -00001946 67.11221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -00001947 67.11223602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -00001948 67.11224365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -00001949 67.11226654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -00001950 67.11226654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -00001951 67.11229706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -00001952 67.11229706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -00001953 67.11231995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -00001954 67.11232758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -00001955 67.11235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -00001956 67.11235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -00001957 67.11238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -00001958 67.11238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -00001959 67.11241150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -00001960 67.11241150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -00001961 67.11243439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -00001962 67.11244202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -00001963 67.11246490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -00001964 67.11246490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -00001965 67.11249542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -00001966 67.11249542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -00001967 67.11252594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -00001968 67.11252594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -00001969 67.11254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -00001970 67.11255646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -00001971 67.11257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -00001972 67.11257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -00001973 67.11260986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -00001974 67.11261749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -00001975 67.11264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -00001976 67.11264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -00001977 67.11266327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -00001978 67.11266327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -00001979 67.11269379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -00001980 67.11269379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -00001981 67.11272430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -00001982 67.11272430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -00001983 67.11274719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -00001984 67.11275482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -00001985 67.11277771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -00001986 67.11277771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -00001987 67.11280823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -00001988 67.11281586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -00001989 67.11283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -00001990 67.11283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -00001991 67.11286163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -00001992 67.11286926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -00001993 67.11289978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -00001994 67.11289978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -00001995 67.11292267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -00001996 67.11292267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -00001997 67.11294556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -00001998 67.11295319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -00001999 67.11297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -00002000 67.11297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -00002001 67.11300659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -00002002 67.11301422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -00002003 67.11303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -00002004 67.11303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -00002005 67.11306000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -00002006 67.11306763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -00002007 67.11309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -00002008 67.11309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -00002009 67.11312103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -00002010 67.11312103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -00002011 67.11315155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -00002012 67.11315155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -00002013 67.11317444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -00002014 67.11317444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -00002015 67.11320496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -00002016 67.11321259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -00002017 67.11323547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -00002018 67.11323547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -00002019 67.11325836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -00002020 67.11326599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -00002021 67.11329651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -00002022 67.11329651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -00002023 67.11331940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -00002024 67.11332703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -00002025 67.11334991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -00002026 67.11334991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -00002027 67.11337280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -00002028 67.11338043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -00002029 67.11341095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -00002030 67.11341095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -00002031 67.11343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -00002032 67.11343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -00002033 67.11345673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -00002034 67.11346436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -00002035 67.11349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -00002036 67.11349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -00002037 67.11351776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -00002038 67.11352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -00002039 67.11354828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -00002040 67.11354828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -00002041 67.11357117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -00002042 67.11357880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -00002043 67.11360931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -00002044 67.11360931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -00002045 67.11363220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -00002046 67.11363983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -00002047 67.11366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -00002048 67.11366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -00002049 67.11369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -00002050 67.11369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -00002051 67.11371613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -00002052 67.11372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -00002053 67.11374664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -00002054 67.11374664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -00002055 67.11376953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -00002056 67.11377716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -00002057 67.11380768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -00002058 67.11380768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -00002059 67.11383057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -00002060 67.11383820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -00002061 67.11386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -00002062 67.11386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -00002063 67.11389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -00002064 67.11389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -00002065 67.11391449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -00002066 67.11392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -00002067 67.11394501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -00002068 67.11394501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -00002069 67.11396790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -00002070 67.11397552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -00002071 67.11400604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -00002072 67.11400604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -00002073 67.11402893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -00002074 67.11403656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -00002075 67.11405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -00002076 67.11405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -00002077 67.11408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -00002078 67.11408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -00002079 67.11411285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -00002080 67.11412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -00002081 67.11414337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -00002082 67.11414337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -00002083 67.11416626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -00002084 67.11417389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -00002085 67.11420441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -00002086 67.11420441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -00002087 67.11422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -00002088 67.11423492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -00002089 67.11425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -00002090 67.11425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -00002091 67.11428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -00002092 67.11428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -00002093 67.11431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -00002094 67.11431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -00002095 67.11434174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -00002096 67.11434174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -00002097 67.11436462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -00002098 67.11437225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -00002099 67.11440277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -00002100 67.11440277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -00002101 67.11442566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -00002102 67.11443329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -00002103 67.11445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -00002104 67.11445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -00002105 67.11448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -00002106 67.11448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -00002107 67.11451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -00002108 67.11451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -00002109 67.11454010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -00002110 67.11454010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -00002111 67.11456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -00002112 67.11457062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -00002113 67.11460114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -00002114 67.11460114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -00002115 67.11462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -00002116 67.11463165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -00002117 67.11465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -00002118 67.11465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -00002119 67.11468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -00002120 67.11468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -00002121 67.11471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -00002122 67.11471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -00002123 67.11473846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -00002124 67.11473846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -00002125 67.11476135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -00002126 67.11476898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -00002127 67.11479950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -00002128 67.11479950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -00002129 67.11482239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -00002130 67.11483002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -00002131 67.11485291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -00002132 67.11485291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -00002133 67.11488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -00002134 67.11488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -00002135 67.11491394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -00002136 67.11491394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -00002137 67.11493683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -00002138 67.11494446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -00002139 67.11496735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -00002140 67.11496735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -00002141 67.11499786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -00002142 67.11499786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -00002143 67.11502075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -00002144 67.11502838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -00002145 67.11505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -00002146 67.11505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -00002147 67.11508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -00002148 67.11508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -00002149 67.11511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -00002150 67.11511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -00002151 67.11513519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -00002152 67.11514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -00002153 67.11516571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -00002154 67.11516571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -00002155 67.11519623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -00002156 67.11519623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -00002157 67.11521912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -00002158 67.11522675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -00002159 67.11524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -00002160 67.11524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -00002161 67.11528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -00002162 67.11528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -00002163 67.11531067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -00002164 67.11531067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -00002165 67.11533356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -00002166 67.11534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -00002167 67.11536407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -00002168 67.11536407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -00002169 67.11539459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -00002170 67.11539459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -00002171 67.11542511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -00002172 67.11542511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -00002173 67.11544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -00002174 67.11544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -00002175 67.11547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -00002176 67.11547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -00002177 67.11550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -00002178 67.11550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -00002179 67.11553192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -00002180 67.11553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -00002181 67.11556244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -00002182 67.11556244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -00002183 67.11559296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -00002184 67.11560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -00002185 67.11562347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -00002186 67.11562347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -00002187 67.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -00002188 67.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -00002189 67.11567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -00002190 67.11567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -00002191 67.11570740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -00002192 67.11570740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -00002193 67.11573029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -00002194 67.11573792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -00002195 67.11576080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -00002196 67.11576080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -00002197 67.11579132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -00002198 67.11579132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -00002199 67.11582184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -00002200 67.11582184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -00002201 67.11584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -00002202 67.11584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -00002203 67.11587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -00002204 67.11587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -00002205 67.11590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -00002206 67.11590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -00002207 67.11592865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -00002208 67.11593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -00002209 67.11595917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -00002210 67.11595917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -00002211 67.11598969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -00002212 67.11599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -00002213 67.11602020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -00002214 67.11602020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -00002215 67.11604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -00002216 67.11604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -00002217 67.11607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -00002218 67.11607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -00002219 67.11610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -00002220 67.11610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -00002221 67.11612701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -00002222 67.11613464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -00002223 67.11615753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -00002224 67.11615753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -00002225 67.11618805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -00002226 67.11619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -00002227 67.11621857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -00002228 67.11621857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -00002229 67.11624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -00002230 67.11624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -00002231 67.11627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -00002232 67.11627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -00002233 67.11630249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -00002234 67.11630249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -00002235 67.11632538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -00002236 67.11633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -00002237 67.11635590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -00002238 67.11635590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -00002239 67.11638641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -00002240 67.11639404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -00002241 67.11641693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -00002242 67.11641693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -00002243 67.11643982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -00002244 67.11644745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -00002245 67.11647034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -00002246 67.11647034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -00002247 67.11650085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -00002248 67.11650085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -00002249 67.11652374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -00002250 67.11653137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -00002251 67.11655426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -00002252 67.11655426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -00002253 67.11658478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -00002254 67.11659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -00002255 67.11661530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -00002256 67.11661530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -00002257 67.11663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -00002258 67.11664581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -00002259 67.11666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -00002260 67.11666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -00002261 67.11669922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -00002262 67.11669922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -00002263 67.11672211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -00002264 67.11672974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -00002265 67.11675262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -00002266 67.11675262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -00002267 67.11678314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -00002268 67.11679077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -00002269 67.11681366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -00002270 67.11681366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -00002271 67.11683655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -00002272 67.11684418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -00002273 67.11686707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -00002274 67.11686707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -00002275 67.11689758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -00002276 67.11690521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -00002277 67.11692810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -00002278 67.11692810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -00002279 67.11695099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -00002280 67.11695099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -00002281 67.11698151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -00002282 67.11698914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -00002283 67.11701202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -00002284 67.11701202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -00002285 67.11703491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -00002286 67.11704254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -00002287 67.11706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -00002288 67.11706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -00002289 67.11709595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -00002290 67.11710358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -00002291 67.11712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -00002292 67.11712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -00002293 67.11714935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -00002294 67.11714935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -00002295 67.11717987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -00002296 67.11718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -00002297 67.11721039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -00002298 67.11721039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -00002299 67.11723328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -00002300 67.11724091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -00002301 67.11726379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -00002302 67.11726379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -00002303 67.11729431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -00002304 67.11730194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -00002305 67.11732483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -00002306 67.11732483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -00002307 67.11734772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -00002308 67.11735535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -00002309 67.11738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -00002310 67.11738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -00002311 67.11740875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -00002312 67.11741638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -00002313 67.11743927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -00002314 67.11743927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -00002315 67.11746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -00002316 67.11746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -00002317 67.11749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -00002318 67.11750031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -00002319 67.11752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -00002320 67.11752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -00002321 67.11754608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -00002322 67.11755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -00002323 67.11758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -00002324 67.11758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -00002325 67.11760712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -00002326 67.11761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -00002327 67.11763763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -00002328 67.11763763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -00002329 67.11766052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -00002330 67.11766815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -00002331 67.11769867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -00002332 67.11769867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -00002333 67.11772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -00002334 67.11772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -00002335 67.11774445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -00002336 67.11775208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -00002337 67.11778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -00002338 67.11778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -00002339 67.11780548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -00002340 67.11781311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -00002341 67.11783600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -00002342 67.11783600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -00002343 67.11785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -00002344 67.11786652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -00002345 67.11789703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -00002346 67.11789703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -00002347 67.11791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -00002348 67.11792755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -00002349 67.11795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -00002350 67.11795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -00002351 67.11798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -00002352 67.11798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -00002353 67.11801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -00002354 67.11801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -00002355 67.11803436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -00002356 67.11803436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -00002357 67.11805725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -00002358 67.11806488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -00002359 67.11809540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -00002360 67.11809540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -00002361 67.11811829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -00002362 67.11812592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -00002363 67.11814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -00002364 67.11814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -00002365 67.11817932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -00002366 67.11817932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -00002367 67.11820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -00002368 67.11820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -00002369 67.11823273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -00002370 67.11823273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -00002371 67.11825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -00002372 67.11826324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -00002373 67.11829376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -00002374 67.11829376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -00002375 67.11831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -00002376 67.11832428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -00002377 67.11834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -00002378 67.11834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -00002379 67.11837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -00002380 67.11837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -00002381 67.11840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -00002382 67.11840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -00002383 67.11843109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -00002384 67.11843109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -00002385 67.11845398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -00002386 67.11846161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -00002387 67.11849213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -00002388 67.11849213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -00002389 67.11851501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -00002390 67.11852264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -00002391 67.11854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -00002392 67.11854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -00002393 67.11857605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -00002394 67.11857605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -00002395 67.11860657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -00002396 67.11860657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -00002397 67.11862946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -00002398 67.11863708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -00002399 67.11865997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -00002400 67.11865997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -00002401 67.11869049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -00002402 67.11869049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -00002403 67.11871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -00002404 67.11872101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -00002405 67.11874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -00002406 67.11874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -00002407 67.11877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -00002408 67.11877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -00002409 67.11880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -00002410 67.11880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -00002411 67.11882782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -00002412 67.11883545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -00002413 67.11885834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -00002414 67.11885834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -00002415 67.11888885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -00002416 67.11888885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -00002417 67.11891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -00002418 67.11891937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -00002419 67.11894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -00002420 67.11894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -00002421 67.11897278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -00002422 67.11897278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -00002423 67.11900330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -00002424 67.11900330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -00002425 67.11902618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -00002426 67.11903381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -00002427 67.11905670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -00002428 67.11905670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -00002429 67.11908722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -00002430 67.11909485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -00002431 67.11911774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -00002432 67.11911774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -00002433 67.11914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -00002434 67.11914825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -00002435 67.11917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -00002436 67.11917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -00002437 67.11920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -00002438 67.11920929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -00002439 67.11923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -00002440 67.11923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -00002441 67.11925507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -00002442 67.11925507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -00002443 67.11928558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -00002444 67.11929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -00002445 67.11931610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -00002446 67.11932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -00002447 67.11934662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -00002448 67.11934662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -00002449 67.11936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -00002450 67.11937714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -00002451 67.11940765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -00002452 67.11940765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -00002453 67.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -00002454 67.11943817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -00002455 67.11946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -00002456 67.11946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -00002457 67.11949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -00002458 67.11949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -00002459 67.11952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -00002460 67.11952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -00002461 67.11954498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -00002462 67.11955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -00002463 67.11957550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -00002464 67.11957550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -00002465 67.11960602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -00002466 67.11960602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -00002467 67.11963654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -00002468 67.11963654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -00002469 67.11965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -00002470 67.11966705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -00002471 67.11968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -00002472 67.11968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -00002473 67.11972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -00002474 67.11972809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -00002475 67.11975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -00002476 67.11975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -00002477 67.11977386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -00002478 67.11978149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -00002479 67.11980438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -00002480 67.11980438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -00002481 67.11983490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -00002482 67.11984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -00002483 67.11986542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -00002484 67.11986542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -00002485 67.11988831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -00002486 67.11989594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -00002487 67.11992645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -00002488 67.11992645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -00002489 67.11994934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -00002490 67.11995697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -00002491 67.11997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -00002492 67.11997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -00002493 67.12000275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -00002494 67.12001038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -00002495 67.12004089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -00002496 67.12004089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -00002497 67.12006378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -00002498 67.12006378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -00002499 67.12008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -00002500 67.12009430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -00002501 67.12012482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -00002502 67.12012482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -00002503 67.12014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -00002504 67.12015533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -00002505 67.12017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -00002506 67.12017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -00002507 67.12020111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -00002508 67.12020874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -00002509 67.12023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -00002510 67.12023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -00002511 67.12026215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -00002512 67.12026978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -00002513 67.12029266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -00002514 67.12029266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -00002515 67.12032318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -00002516 67.12032318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -00002517 67.12035370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -00002518 67.12035370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -00002519 67.12037659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -00002520 67.12038422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -00002521 67.12040710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -00002522 67.12040710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -00002523 67.12043762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -00002524 67.12043762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -00002525 67.12046814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -00002526 67.12046814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -00002527 67.12049103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -00002528 67.12049103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -00002529 67.12052155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -00002530 67.12052155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -00002531 67.12055206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -00002532 67.12055206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -00002533 67.12057495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -00002534 67.12058258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -00002535 67.12060547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -00002536 67.12060547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -00002537 67.12063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -00002538 67.12064362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -00002539 67.12066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -00002540 67.12066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -00002541 67.12068939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -00002542 67.12068939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -00002543 67.12071991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -00002544 67.12071991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -00002545 67.12075043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -00002546 67.12075043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -00002547 67.12077332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -00002548 67.12078094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -00002549 67.12080383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -00002550 67.12080383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -00002551 67.12083435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -00002552 67.12084198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -00002553 67.12086487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -00002554 67.12086487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -00002555 67.12088776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -00002556 67.12088776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -00002557 67.12091827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -00002558 67.12091827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -00002559 67.12094879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -00002560 67.12094879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -00002561 67.12097168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -00002562 67.12097931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -00002563 67.12100220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -00002564 67.12100220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -00002565 67.12103271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -00002566 67.12104034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -00002567 67.12106323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -00002568 67.12106323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -00002569 67.12108612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -00002570 67.12109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -00002571 67.12111664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -00002572 67.12111664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -00002573 67.12114716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -00002574 67.12115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -00002575 67.12117767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -00002576 67.12117767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -00002577 67.12120056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -00002578 67.12120819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -00002579 67.12123871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -00002580 67.12123871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -00002581 67.12126160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -00002582 67.12126923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -00002583 67.12129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -00002584 67.12129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -00002585 67.12131500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -00002586 67.12131500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -00002587 67.12134552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -00002588 67.12135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -00002589 67.12137604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -00002590 67.12137604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -00002591 67.12139893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -00002592 67.12140656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -00002593 67.12143707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -00002594 67.12143707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -00002595 67.12145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -00002596 67.12146759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -00002597 67.12149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -00002598 67.12149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -00002599 67.12151337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -00002600 67.12151337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -00002601 67.12155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -00002602 67.12155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -00002603 67.12157440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -00002604 67.12157440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -00002605 67.12159729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -00002606 67.12160492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -00002607 67.12163544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -00002608 67.12163544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -00002609 67.12165833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -00002610 67.12166595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -00002611 67.12168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -00002612 67.12168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -00002613 67.12171173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -00002614 67.12171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -00002615 67.12174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -00002616 67.12174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -00002617 67.12177277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -00002618 67.12178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -00002619 67.12180328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -00002620 67.12180328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -00002621 67.12183380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -00002622 67.12183380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -00002623 67.12185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -00002624 67.12186432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -00002625 67.12188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -00002626 67.12188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -00002627 67.12191010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -00002628 67.12191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -00002629 67.12194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -00002630 67.12194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -00002631 67.12197113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -00002632 67.12197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -00002633 67.12200165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -00002634 67.12200165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -00002635 67.12203217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -00002636 67.12203217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -00002637 67.12205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -00002638 67.12206268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -00002639 67.12208557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -00002640 67.12208557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -00002641 67.12210846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -00002642 67.12211609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -00002643 67.12214661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -00002644 67.12214661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -00002645 67.12216949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -00002646 67.12217712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -00002647 67.12220001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -00002648 67.12220001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -00002649 67.12223053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -00002650 67.12223053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -00002651 67.12226105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -00002652 67.12226105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -00002653 67.12228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -00002654 67.12228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -00002655 67.12231445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -00002656 67.12231445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -00002657 67.12234497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -00002658 67.12234497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -00002659 67.12236786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -00002660 67.12237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -00002661 67.12239838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -00002662 67.12239838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -00002663 67.12242889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -00002664 67.12242889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -00002665 67.12245941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -00002666 67.12245941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -00002667 67.12248230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -00002668 67.12248993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -00002669 67.12251282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -00002670 67.12251282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -00002671 67.12254333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -00002672 67.12255096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -00002673 67.12257385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -00002674 67.12257385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -00002675 67.12259674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -00002676 67.12260437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -00002677 67.12262726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -00002678 67.12262726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -00002679 67.12265778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -00002680 67.12265778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -00002681 67.12268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -00002682 67.12268829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -00002683 67.12271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -00002684 67.12271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -00002685 67.12274170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -00002686 67.12274933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -00002687 67.12277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -00002688 67.12277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -00002689 67.12279510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -00002690 67.12280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -00002691 67.12282562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -00002692 67.12282562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -00002693 67.12285614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -00002694 67.12285614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -00002695 67.12287903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -00002696 67.12288666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -00002697 67.12290955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -00002698 67.12290955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -00002699 67.12294006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -00002700 67.12294769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -00002701 67.12297058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -00002702 67.12297058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -00002703 67.12299347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -00002704 67.12300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -00002705 67.12302399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -00002706 67.12302399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -00002707 67.12305450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -00002708 67.12306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -00002709 67.12308502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -00002710 67.12308502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -00002711 67.12310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -00002712 67.12311554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -00002713 67.12314606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -00002714 67.12314606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -00002715 67.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -00002716 67.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -00002717 67.12319183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -00002718 67.12319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -00002719 67.12322235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -00002720 67.12322235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -00002721 67.12325287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -00002722 67.12326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -00002723 67.12328339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -00002724 67.12328339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -00002725 67.12332916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -00002726 67.12333679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -00002727 67.12335968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -00002728 67.12335968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -00002729 67.12340546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -00002730 67.12340546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -00002731 67.12342834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -00002732 67.12343597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -00002733 67.12345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -00002734 67.12345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -00002735 67.12348938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -00002736 67.12349701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -00002737 67.12351990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -00002738 67.12351990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -00002739 67.12354279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -00002740 67.12354279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -00002741 67.12357330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -00002742 67.12358093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -00002743 67.12360382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -00002744 67.12360382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -00002745 67.12362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -00002746 67.12363434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -00002747 67.12365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -00002748 67.12365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -00002749 67.12368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -00002750 67.12369537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -00002751 67.12371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -00002752 67.12371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -00002753 67.12374115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -00002754 67.12374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -00002755 67.12377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -00002756 67.12377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -00002757 67.12380219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -00002758 67.12380219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -00002759 67.12383270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -00002760 67.12383270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -00002761 67.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -00002762 67.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -00002763 67.12388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -00002764 67.12389374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -00002765 67.12391663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -00002766 67.12391663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -00002767 67.12393951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -00002768 67.12394714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -00002769 67.12397766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -00002770 67.12397766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -00002771 67.12400055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -00002772 67.12400818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -00002773 67.12403107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -00002774 67.12403107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -00002775 67.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -00002776 67.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -00002777 67.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -00002778 67.12409210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -00002779 67.12411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -00002780 67.12411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -00002781 67.12413788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -00002782 67.12414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -00002783 67.12417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -00002784 67.12417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -00002785 67.12419891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -00002786 67.12420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -00002787 67.12422943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -00002788 67.12422943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -00002789 67.12425232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -00002790 67.12425995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -00002791 67.12429047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -00002792 67.12429047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -00002793 67.12431335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -00002794 67.12432098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -00002795 67.12434387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -00002796 67.12434387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -00002797 67.12437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -00002798 67.12437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -00002799 67.12440491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -00002800 67.12440491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -00002801 67.12442780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -00002802 67.12442780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -00002803 67.12445831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -00002804 67.12445831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -00002805 67.12448883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -00002806 67.12448883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -00002807 67.12451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -00002808 67.12451935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -00002809 67.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -00002810 67.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -00002811 67.12457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -00002812 67.12457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -00002813 67.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -00002814 67.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -00002815 67.12462616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -00002816 67.12463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -00002817 67.12465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -00002818 67.12465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -00002819 67.12468719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -00002820 67.12468719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -00002821 67.12471008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -00002822 67.12471771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -00002823 67.12474060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -00002824 67.12474060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -00002825 67.12477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -00002826 67.12477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -00002827 67.12480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -00002828 67.12480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -00002829 67.12482452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -00002830 67.12483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -00002831 67.12485504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -00002832 67.12485504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -00002833 67.12488556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -00002834 67.12488556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -00002835 67.12490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -00002836 67.12491608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -00002837 67.12493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -00002838 67.12493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -00002839 67.12496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -00002840 67.12496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -00002841 67.12500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -00002842 67.12500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -00002843 67.12502289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -00002844 67.12503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -00002845 67.12505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -00002846 67.12505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -00002847 67.12508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -00002848 67.12508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -00002849 67.12510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -00002850 67.12511444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -00002851 67.12513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -00002852 67.12513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -00002853 67.12516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -00002854 67.12516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -00002855 67.12519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -00002856 67.12519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -00002857 67.12522125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -00002858 67.12522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -00002859 67.12525177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -00002860 67.12525177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -00002861 67.12528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -00002862 67.12528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -00002863 67.12530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -00002864 67.12531281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -00002865 67.12533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -00002866 67.12533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -00002867 67.12536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -00002868 67.12536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -00002869 67.12539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -00002870 67.12539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -00002871 67.12541962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -00002872 67.12542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -00002873 67.12545013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -00002874 67.12545013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -00002875 67.12548065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -00002876 67.12548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -00002877 67.12551117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -00002878 67.12551117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -00002879 67.12553406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -00002880 67.12554169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -00002881 67.12556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -00002882 67.12556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -00002883 67.12559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -00002884 67.12559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -00002885 67.12561798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -00002886 67.12562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -00002887 67.12564850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -00002888 67.12564850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -00002889 67.12567902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -00002890 67.12568665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -00002891 67.12570953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -00002892 67.12570953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -00002893 67.12573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -00002894 67.12574005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -00002895 67.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -00002896 67.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -00002897 67.12579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -00002898 67.12579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -00002899 67.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -00002900 67.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -00002901 67.12584686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -00002902 67.12584686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -00002903 67.12587738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -00002904 67.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -00002905 67.12590790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -00002906 67.12590790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -00002907 67.12593079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -00002908 67.12593842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -00002909 67.12596130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -00002910 67.12596130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -00002911 67.12599182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -00002912 67.12599945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -00002913 67.12602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -00002914 67.12602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -00002915 67.12604523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -00002916 67.12604523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -00002917 67.12608337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -00002918 67.12608337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -00002919 67.12610626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -00002920 67.12610626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -00002921 67.12612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -00002922 67.12613678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -00002923 67.12615967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -00002924 67.12615967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -00002925 67.12619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -00002926 67.12619781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -00002927 67.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -00002928 67.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -00002929 67.12624359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -00002930 67.12625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -00002931 67.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -00002932 67.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -00002933 67.12630463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -00002934 67.12630463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -00002935 67.12633514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -00002936 67.12633514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -00002937 67.12635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -00002938 67.12635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -00002939 67.12638855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -00002940 67.12639618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -00002941 67.12641907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -00002942 67.12642670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -00002943 67.12645721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -00002944 67.12646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -00002945 67.12648773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -00002946 67.12648773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -00002947 67.12651825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -00002948 67.12651825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -00002949 67.12654114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -00002950 67.12654877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -00002951 67.12657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -00002952 67.12657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -00002953 67.12660217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -00002954 67.12660217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -00002955 67.12663269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -00002956 67.12663269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -00002957 67.12665558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -00002958 67.12666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -00002959 67.12668610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -00002960 67.12668610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -00002961 67.12671661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -00002962 67.12671661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -00002963 67.12674713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -00002964 67.12674713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -00002965 67.12677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -00002966 67.12677765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -00002967 67.12680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -00002968 67.12680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -00002969 67.12683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -00002970 67.12683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -00002971 67.12685394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -00002972 67.12686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -00002973 67.12688446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -00002974 67.12688446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -00002975 67.12691498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -00002976 67.12691498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -00002977 67.12694550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -00002978 67.12694550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -00002979 67.12696838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -00002980 67.12697601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -00002981 67.12699890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -00002982 67.12699890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -00002983 67.12702942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -00002984 67.12703705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -00002985 67.12705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -00002986 67.12705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -00002987 67.12708282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -00002988 67.12708282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -00002989 67.12711334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -00002990 67.12711334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -00002991 67.12714386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -00002992 67.12714386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -00002993 67.12716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -00002994 67.12717438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -00002995 67.12719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -00002996 67.12719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -00002997 67.12722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -00002998 67.12723541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -00002999 67.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -00003000 67.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -00003001 67.12728119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -00003002 67.12728119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -00003003 67.12731171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -00003004 67.12731171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -00003005 67.12734222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -00003006 67.12734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -00003007 67.12737274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -00003008 67.12737274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -00003009 67.12739563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -00003010 67.12740326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -00003011 67.12743378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -00003012 67.12743378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -00003013 67.12745667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -00003014 67.12746429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -00003015 67.12748718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -00003016 67.12748718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -00003017 67.12751007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -00003018 67.12751007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -00003019 67.12754059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -00003020 67.12754822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -00003021 67.12757111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -00003022 67.12757111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -00003023 67.12759399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -00003024 67.12760162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -00003025 67.12763214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -00003026 67.12763214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -00003027 67.12765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -00003028 67.12766266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -00003029 67.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -00003030 67.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -00003031 67.12770844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -00003032 67.12770844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -00003033 67.12773895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -00003034 67.12774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -00003035 67.12776947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -00003036 67.12776947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -00003037 67.12779236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -00003038 67.12779999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -00003039 67.12783051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -00003040 67.12783051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -00003041 67.12785339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -00003042 67.12786102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -00003043 67.12788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -00003044 67.12788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -00003045 67.12790680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -00003046 67.12790680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -00003047 67.12793732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -00003048 67.12794495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -00003049 67.12796783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -00003050 67.12796783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -00003051 67.12799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -00003052 67.12799835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -00003053 67.12802887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -00003054 67.12802887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -00003055 67.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -00003056 67.12805939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -00003057 67.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -00003058 67.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -00003059 67.12810516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -00003060 67.12811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -00003061 67.12814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -00003062 67.12814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -00003063 67.12816620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -00003064 67.12816620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -00003065 67.12818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -00003066 67.12819672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -00003067 67.12822723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -00003068 67.12822723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -00003069 67.12825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -00003070 67.12825775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -00003071 67.12828064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -00003072 67.12828064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -00003073 67.12830353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -00003074 67.12831116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -00003075 67.12834167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -00003076 67.12834167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -00003077 67.12836456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -00003078 67.12837219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -00003079 67.12839508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -00003080 67.12839508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -00003081 67.12842560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -00003082 67.12842560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -00003083 67.12844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -00003084 67.12845612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -00003085 67.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -00003086 67.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -00003087 67.12850189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -00003088 67.12850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -00003089 67.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -00003090 67.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -00003091 67.12856293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -00003092 67.12857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -00003093 67.12859344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -00003094 67.12859344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -00003095 67.12862396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -00003096 67.12862396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -00003097 67.12865448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -00003098 67.12865448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -00003099 67.12867737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -00003100 67.12868500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -00003101 67.12870789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -00003102 67.12870789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -00003103 67.12873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -00003104 67.12873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -00003105 67.12876129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -00003106 67.12876892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -00003107 67.12879181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -00003108 67.12879181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -00003109 67.12882233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -00003110 67.12882233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -00003111 67.12885284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -00003112 67.12885284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -00003113 67.12887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -00003114 67.12888336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -00003115 67.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -00003116 67.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -00003117 67.12893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -00003118 67.12893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -00003119 67.12895966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -00003120 67.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -00003121 67.12899017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -00003122 67.12899017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -00003123 67.12902069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -00003124 67.12902069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -00003125 67.12905121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -00003126 67.12905121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -00003127 67.12907410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -00003128 67.12908173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -00003129 67.12910461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -00003130 67.12910461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -00003131 67.12913513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -00003132 67.12913513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -00003133 67.12915802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -00003134 67.12916565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -00003135 67.12918854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -00003136 67.12918854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -00003137 67.12921906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -00003138 67.12921906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -00003139 67.12924957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -00003140 67.12924957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -00003141 67.12927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -00003142 67.12928009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -00003143 67.12930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -00003144 67.12930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -00003145 67.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -00003146 67.12934113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -00003147 67.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -00003148 67.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -00003149 67.12938690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -00003150 67.12939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -00003151 67.12941742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -00003152 67.12941742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -00003153 67.12944794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -00003154 67.12944794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -00003155 67.12947083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -00003156 67.12947845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -00003157 67.12950134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -00003158 67.12950134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -00003159 67.12953186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -00003160 67.12953949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -00003161 67.12956238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -00003162 67.12956238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -00003163 67.12958527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -00003164 67.12959290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -00003165 67.12961578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -00003166 67.12961578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -00003167 67.12964630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -00003168 67.12964630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -00003169 67.12966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -00003170 67.12967682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -00003171 67.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -00003172 67.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -00003173 67.12973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -00003174 67.12973785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -00003175 67.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -00003176 67.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -00003177 67.12978363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -00003178 67.12979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -00003179 67.12981415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -00003180 67.12982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -00003181 67.12985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -00003182 67.12985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -00003183 67.12987518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -00003184 67.12987518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -00003185 67.12989807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -00003186 67.12990570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -00003187 67.12993622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -00003188 67.12993622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -00003189 67.12995911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -00003190 67.12996674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -00003191 67.12998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -00003192 67.12998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -00003193 67.13001251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -00003194 67.13002014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -00003195 67.13005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -00003196 67.13005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -00003197 67.13007355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -00003198 67.13007355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -00003199 67.13009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -00003200 67.13010406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -00003201 67.13013458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -00003202 67.13013458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -00003203 67.13015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -00003204 67.13016510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -00003205 67.13018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -00003206 67.13018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -00003207 67.13021088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -00003208 67.13021088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -00003209 67.13024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -00003210 67.13024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -00003211 67.13027191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -00003212 67.13027191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -00003213 67.13029480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -00003214 67.13030243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -00003215 67.13033295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -00003216 67.13033295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -00003217 67.13035583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -00003218 67.13036346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -00003219 67.13038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -00003220 67.13038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -00003221 67.13040924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -00003222 67.13041687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -00003223 67.13044739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -00003224 67.13044739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -00003225 67.13047028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -00003226 67.13047028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -00003227 67.13049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -00003228 67.13050079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -00003229 67.13053131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -00003230 67.13053131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -00003231 67.13055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -00003232 67.13056183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -00003233 67.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -00003234 67.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -00003235 67.13060760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -00003236 67.13061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -00003237 67.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -00003238 67.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -00003239 67.13066864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -00003240 67.13066864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -00003241 67.13069916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -00003242 67.13069916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -00003243 67.13072968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -00003244 67.13072968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -00003245 67.13075256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -00003246 67.13076019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -00003247 67.13078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -00003248 67.13078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -00003249 67.13080597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -00003250 67.13081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -00003251 67.13084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -00003252 67.13084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -00003253 67.13086700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -00003254 67.13086700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -00003255 67.13088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -00003256 67.13089752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -00003257 67.13092804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -00003258 67.13092804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -00003259 67.13095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -00003260 67.13095856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -00003261 67.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -00003262 67.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -00003263 67.13100433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -00003264 67.13101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -00003265 67.13104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -00003266 67.13104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -00003267 67.13106537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -00003268 67.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -00003269 67.13109589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -00003270 67.13109589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -00003271 67.13112640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -00003272 67.13112640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -00003273 67.13114929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -00003274 67.13115692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -00003275 67.13117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -00003276 67.13117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -00003277 67.13120270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -00003278 67.13121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -00003279 67.13124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -00003280 67.13124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -00003281 67.13126373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -00003282 67.13127136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -00003283 67.13129425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -00003284 67.13129425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -00003285 67.13132477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -00003286 67.13132477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -00003287 67.13134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -00003288 67.13135529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -00003289 67.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -00003290 67.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -00003291 67.13140106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -00003292 67.13140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -00003293 67.13143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -00003294 67.13143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -00003295 67.13146210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -00003296 67.13146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -00003297 67.13149261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -00003298 67.13149261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -00003299 67.13152313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -00003300 67.13152313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -00003301 67.13154602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -00003302 67.13155365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -00003303 67.13157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -00003304 67.13157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -00003305 67.13159943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -00003306 67.13160706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -00003307 67.13163757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -00003308 67.13163757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -00003309 67.13166046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -00003310 67.13166809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -00003311 67.13169098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -00003312 67.13169098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -00003313 67.13172150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -00003314 67.13172150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -00003315 67.13174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -00003316 67.13175201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -00003317 67.13177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -00003318 67.13177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -00003319 67.13179779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -00003320 67.13180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -00003321 67.13183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -00003322 67.13183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -00003323 67.13185883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -00003324 67.13186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -00003325 67.13188934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -00003326 67.13188934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -00003327 67.13191986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -00003328 67.13191986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -00003329 67.13194275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -00003330 67.13195038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -00003331 67.13197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -00003332 67.13197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -00003333 67.13200378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -00003334 67.13200378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -00003335 67.13203430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -00003336 67.13203430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -00003337 67.13205719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -00003338 67.13206482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -00003339 67.13208771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -00003340 67.13208771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -00003341 67.13211823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -00003342 67.13211823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -00003343 67.13214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -00003344 67.13214874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -00003345 67.13217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -00003346 67.13217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -00003347 67.13220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -00003348 67.13220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -00003349 67.13223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -00003350 67.13223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -00003351 67.13225555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -00003352 67.13226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -00003353 67.13228607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -00003354 67.13228607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -00003355 67.13231659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -00003356 67.13231659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -00003357 67.13234711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -00003358 67.13234711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -00003359 67.13237000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -00003360 67.13237000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -00003361 67.13240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -00003362 67.13240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -00003363 67.13243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -00003364 67.13243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -00003365 67.13245392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -00003366 67.13246155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -00003367 67.13248444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -00003368 67.13248444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -00003369 67.13251495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -00003370 67.13251495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -00003371 67.13254547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -00003372 67.13254547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -00003373 67.13256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -00003374 67.13257599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -00003375 67.13259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -00003376 67.13259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -00003377 67.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -00003378 67.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -00003379 67.13265228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -00003380 67.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -00003381 67.13268280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -00003382 67.13268280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -00003383 67.13271332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -00003384 67.13271332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -00003385 67.13274384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -00003386 67.13274384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -00003387 67.13276672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -00003388 67.13277435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -00003389 67.13279724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -00003390 67.13279724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -00003391 67.13282776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -00003392 67.13282776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -00003393 67.13285065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -00003394 67.13285828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -00003395 67.13288116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -00003396 67.13288116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -00003397 67.13291168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -00003398 67.13291168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -00003399 67.13294220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -00003400 67.13294220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -00003401 67.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -00003402 67.13297272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -00003403 67.13299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -00003404 67.13299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -00003405 67.13302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -00003406 67.13303375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -00003407 67.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -00003408 67.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -00003409 67.13307953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -00003410 67.13307953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -00003411 67.13311005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -00003412 67.13311005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -00003413 67.13314056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -00003414 67.13314056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -00003415 67.13316345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -00003416 67.13317108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -00003417 67.13319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -00003418 67.13319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -00003419 67.13322449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -00003420 67.13323212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -00003421 67.13325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -00003422 67.13325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -00003423 67.13327789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -00003424 67.13328552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -00003425 67.13330841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -00003426 67.13330841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -00003427 67.13333893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -00003428 67.13333893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -00003429 67.13336945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -00003430 67.13336945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -00003431 67.13339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -00003432 67.13339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -00003433 67.13342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -00003434 67.13343048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -00003435 67.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -00003436 67.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -00003437 67.13347626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -00003438 67.13348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -00003439 67.13350677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -00003440 67.13350677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -00003441 67.13353729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -00003442 67.13354492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -00003443 67.13356781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -00003444 67.13356781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -00003445 67.13359070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -00003446 67.13359070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -00003447 67.13362122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -00003448 67.13362885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -00003449 67.13365173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -00003450 67.13365173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -00003451 67.13367462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -00003452 67.13368225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -00003453 67.13370514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -00003454 67.13370514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -00003455 67.13373566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -00003456 67.13374329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -00003457 67.13376617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -00003458 67.13376617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -00003459 67.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -00003460 67.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -00003461 67.13381958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -00003462 67.13382721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -00003463 67.13385010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -00003464 67.13385010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -00003465 67.13387299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -00003466 67.13388062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -00003467 67.13390350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -00003468 67.13390350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -00003469 67.13393402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -00003470 67.13394165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -00003471 67.13396454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -00003472 67.13396454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -00003473 67.13398743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -00003474 67.13399506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -00003475 67.13402557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -00003476 67.13402557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -00003477 67.13404846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -00003478 67.13404846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -00003479 67.13407135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -00003480 67.13407898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -00003481 67.13410187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -00003482 67.13410187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -00003483 67.13413239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -00003484 67.13414001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -00003485 67.13416290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -00003486 67.13416290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -00003487 67.13418579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -00003488 67.13419342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -00003489 67.13422394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -00003490 67.13422394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -00003491 67.13424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -00003492 67.13424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -00003493 67.13426971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -00003494 67.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -00003495 67.13430023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -00003496 67.13430023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -00003497 67.13433075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -00003498 67.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -00003499 67.13436127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -00003500 67.13436127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -00003501 67.13441467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -00003502 67.13442230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -00003503 67.13444519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -00003504 67.13444519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -00003505 67.13446808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -00003506 67.13447571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -00003507 67.13449860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -00003508 67.13449860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -00003509 67.13452911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -00003510 67.13452911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -00003511 67.13455200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -00003512 67.13455963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -00003513 67.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -00003514 67.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -00003515 67.13461304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -00003516 67.13462067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -00003517 67.13464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -00003518 67.13464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -00003519 67.13466644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -00003520 67.13466644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -00003521 67.13470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -00003522 67.13470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -00003523 67.13472748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -00003524 67.13472748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -00003525 67.13475037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -00003526 67.13475800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -00003527 67.13478088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -00003528 67.13478088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -00003529 67.13481140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -00003530 67.13481903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -00003531 67.13484192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -00003532 67.13484192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -00003533 67.13486481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -00003534 67.13487244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -00003535 67.13490295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -00003536 67.13490295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -00003537 67.13492584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -00003538 67.13492584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -00003539 67.13494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -00003540 67.13495636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -00003541 67.13497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -00003542 67.13497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -00003543 67.13500977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -00003544 67.13501740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -00003545 67.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -00003546 67.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -00003547 67.13506317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -00003548 67.13507080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -00003549 67.13510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -00003550 67.13510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -00003551 67.13512421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -00003552 67.13512421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -00003553 67.13514709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -00003554 67.13515472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -00003555 67.13517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -00003556 67.13517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -00003557 67.13520813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -00003558 67.13521576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -00003559 67.13523865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -00003560 67.13523865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -00003561 67.13526154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -00003562 67.13526917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -00003563 67.13529968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -00003564 67.13529968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -00003565 67.13532257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -00003566 67.13532257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -00003567 67.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -00003568 67.13535309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -00003569 67.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -00003570 67.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -00003571 67.13540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -00003572 67.13541412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -00003573 67.13543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -00003574 67.13543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -00003575 67.13545990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -00003576 67.13546753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -00003577 67.13549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -00003578 67.13549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -00003579 67.13552094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -00003580 67.13552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -00003581 67.13555145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -00003582 67.13555145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -00003583 67.13557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -00003584 67.13558197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -00003585 67.13561249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -00003586 67.13561249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -00003587 67.13563538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -00003588 67.13563538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -00003589 67.13565826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -00003590 67.13566589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -00003591 67.13569641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -00003592 67.13569641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -00003593 67.13571930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -00003594 67.13572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -00003595 67.13574982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -00003596 67.13574982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -00003597 67.13577271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -00003598 67.13577271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -00003599 67.13580322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -00003600 67.13581085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -00003601 67.13583374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -00003602 67.13583374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -00003603 67.13585663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -00003604 67.13586426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -00003605 67.13589478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -00003606 67.13589478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -00003607 67.13591766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -00003608 67.13592529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -00003609 67.13594818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -00003610 67.13594818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -00003611 67.13597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -00003612 67.13597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -00003613 67.13600159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -00003614 67.13600922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -00003615 67.13603210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -00003616 67.13603210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -00003617 67.13605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -00003618 67.13606262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -00003619 67.13609314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -00003620 67.13609314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -00003621 67.13611603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -00003622 67.13612366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -00003623 67.13614655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -00003624 67.13614655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -00003625 67.13616943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -00003626 67.13617706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -00003627 67.13620758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -00003628 67.13620758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -00003629 67.13623047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -00003630 67.13623047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -00003631 67.13625336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -00003632 67.13626099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -00003633 67.13629150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -00003634 67.13629150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -00003635 67.13631439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -00003636 67.13632202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -00003637 67.13634491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -00003638 67.13634491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -00003639 67.13636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -00003640 67.13637543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -00003641 67.13640594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -00003642 67.13640594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -00003643 67.13642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -00003644 67.13642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -00003645 67.13645172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -00003646 67.13645935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -00003647 67.13648987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -00003648 67.13648987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -00003649 67.13651276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -00003650 67.13652039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -00003651 67.13654327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -00003652 67.13654327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -00003653 67.13656616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -00003654 67.13657379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -00003655 67.13660431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -00003656 67.13660431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -00003657 67.13662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -00003658 67.13662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -00003659 67.13665009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -00003660 67.13665771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -00003661 67.13668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -00003662 67.13668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -00003663 67.13671112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -00003664 67.13671875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -00003665 67.13674164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -00003666 67.13674164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -00003667 67.13676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -00003668 67.13677216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -00003669 67.13680267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -00003670 67.13680267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -00003671 67.13682556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -00003672 67.13683319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -00003673 67.13685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -00003674 67.13685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -00003675 67.13688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -00003676 67.13688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -00003677 67.13691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -00003678 67.13691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -00003679 67.13694000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -00003680 67.13694000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -00003681 67.13696289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -00003682 67.13697052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -00003683 67.13700104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -00003684 67.13700104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -00003685 67.13702393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -00003686 67.13703156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -00003687 67.13705444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -00003688 67.13705444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -00003689 67.13708496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -00003690 67.13708496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -00003691 67.13711548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -00003692 67.13711548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -00003693 67.13713837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -00003694 67.13713837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -00003695 67.13716125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -00003696 67.13716888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -00003697 67.13719940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -00003698 67.13719940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -00003699 67.13722229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -00003700 67.13722992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -00003701 67.13725281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -00003702 67.13725281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -00003703 67.13728333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -00003704 67.13728333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -00003705 67.13731384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -00003706 67.13731384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -00003707 67.13735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -00003708 67.13735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -00003709 67.13738251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -00003710 67.13739014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -00003711 67.13741302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -00003712 67.13741302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -00003713 67.13744354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -00003714 67.13744354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -00003715 67.13747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -00003716 67.13747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -00003717 67.13749695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -00003718 67.13750458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -00003719 67.13752747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -00003720 67.13752747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -00003721 67.13755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -00003722 67.13755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -00003723 67.13758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -00003724 67.13758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -00003725 67.13761139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -00003726 67.13761139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -00003727 67.13764191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -00003728 67.13764191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -00003729 67.13767242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -00003730 67.13767242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -00003731 67.13769531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -00003732 67.13770294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -00003733 67.13772583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -00003734 67.13772583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -00003735 67.13775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -00003736 67.13775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -00003737 67.13778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -00003738 67.13778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -00003739 67.13780975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -00003740 67.13781738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -00003741 67.13784027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -00003742 67.13784027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -00003743 67.13787079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -00003744 67.13787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -00003745 67.13790131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -00003746 67.13790131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -00003747 67.13792419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -00003748 67.13792419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -00003749 67.13795471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -00003750 67.13795471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -00003751 67.13798523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -00003752 67.13798523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -00003753 67.13800812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -00003754 67.13801575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -00003755 67.13803864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -00003756 67.13803864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -00003757 67.13806915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -00003758 67.13807678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -00003759 67.13809967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -00003760 67.13809967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -00003761 67.13812256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -00003762 67.13813019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -00003763 67.13815308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -00003764 67.13815308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -00003765 67.13818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -00003766 67.13818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -00003767 67.13820648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -00003768 67.13821411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -00003769 67.13823700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -00003770 67.13823700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -00003771 67.13826752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -00003772 67.13827515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -00003773 67.13829803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -00003774 67.13829803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -00003775 67.13832092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -00003776 67.13832855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -00003777 67.13835144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -00003778 67.13835144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -00003779 67.13838196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -00003780 67.13838196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -00003781 67.13840485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -00003782 67.13841248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -00003783 67.13843536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -00003784 67.13843536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -00003785 67.13846588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -00003786 67.13847351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -00003787 67.13849640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -00003788 67.13849640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -00003789 67.13851929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -00003790 67.13852692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -00003791 67.13854980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -00003792 67.13854980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -00003793 67.13858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -00003794 67.13858795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -00003795 67.13861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -00003796 67.13861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -00003797 67.13863373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -00003798 67.13864136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -00003799 67.13867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -00003800 67.13867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -00003801 67.13869476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -00003802 67.13869476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -00003803 67.13871765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -00003804 67.13872528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -00003805 67.13875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -00003806 67.13875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -00003807 67.13877869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -00003808 67.13878632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -00003809 67.13880920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -00003810 67.13880920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -00003811 67.13883209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -00003812 67.13883972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -00003813 67.13887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -00003814 67.13887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -00003815 67.13889313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -00003816 67.13889313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -00003817 67.13891602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -00003818 67.13892365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -00003819 67.13895416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -00003820 67.13895416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -00003821 67.13897705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -00003822 67.13898468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -00003823 67.13900757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -00003824 67.13900757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -00003825 67.13903046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -00003826 67.13903809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -00003827 67.13906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -00003828 67.13906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -00003829 67.13909149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -00003830 67.13909149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -00003831 67.13911438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -00003832 67.13912201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -00003833 67.13915253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -00003834 67.13915253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -00003835 67.13917542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -00003836 67.13918304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -00003837 67.13920593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -00003838 67.13920593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -00003839 67.13922882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -00003840 67.13923645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -00003841 67.13926697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -00003842 67.13926697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -00003843 67.13928986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -00003844 67.13928986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -00003845 67.13931274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -00003846 67.13932037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -00003847 67.13935089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -00003848 67.13935089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -00003849 67.13937378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -00003850 67.13938141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -00003851 67.13940430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -00003852 67.13940430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -00003853 67.13942719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -00003854 67.13943481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -00003855 67.13946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -00003856 67.13946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -00003857 67.13948822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -00003858 67.13948822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -00003859 67.13951111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -00003860 67.13951874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -00003861 67.13954926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -00003862 67.13954926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -00003863 67.13957214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -00003864 67.13957977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -00003865 67.13960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -00003866 67.13960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -00003867 67.13962555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -00003868 67.13963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -00003869 67.13966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -00003870 67.13966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -00003871 67.13968658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -00003872 67.13969421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -00003873 67.13971710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -00003874 67.13971710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -00003875 67.13974762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -00003876 67.13974762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -00003877 67.13977814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -00003878 67.13977814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -00003879 67.13980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -00003880 67.13980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -00003881 67.13982391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -00003882 67.13983154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -00003883 67.13986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -00003884 67.13986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -00003885 67.13988495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -00003886 67.13989258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -00003887 67.13991547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -00003888 67.13991547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -00003889 67.13994598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -00003890 67.13994598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -00003891 67.13997650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -00003892 67.13997650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -00003893 67.13999939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -00003894 67.14000702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -00003895 67.14002991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -00003896 67.14002991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -00003897 67.14006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -00003898 67.14006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -00003899 67.14008331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -00003900 67.14009094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -00003901 67.14011383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -00003902 67.14011383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -00003903 67.14014435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -00003904 67.14014435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -00003905 67.14017487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -00003906 67.14017487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -00003907 67.14019775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -00003908 67.14020538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -00003909 67.14022827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -00003910 67.14022827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -00003911 67.14025879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -00003912 67.14025879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -00003913 67.14028168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -00003914 67.14028931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -00003915 67.14031219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -00003916 67.14031219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -00003917 67.14034271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -00003918 67.14034271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -00003919 67.14037323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -00003920 67.14037323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -00003921 67.14039612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -00003922 67.14040375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -00003923 67.14042664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -00003924 67.14042664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -00003925 67.14045715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -00003926 67.14045715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -00003927 67.14048004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -00003928 67.14048767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -00003929 67.14051056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -00003930 67.14051056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -00003931 67.14054108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -00003932 67.14054108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -00003933 67.14057159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -00003934 67.14057159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -00003935 67.14059448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -00003936 67.14060211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -00003937 67.14062500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -00003938 67.14062500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -00003939 67.14065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -00003940 67.14065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -00003941 67.14068604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -00003942 67.14068604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -00003943 67.14070892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -00003944 67.14070892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -00003945 67.14073944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -00003946 67.14073944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -00003947 67.14076996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -00003948 67.14076996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -00003949 67.14079285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -00003950 67.14080048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -00003951 67.14082336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -00003952 67.14082336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -00003953 67.14085388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -00003954 67.14085388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -00003955 67.14088440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -00003956 67.14088440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -00003957 67.14090729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -00003958 67.14090729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -00003959 67.14093781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -00003960 67.14093781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -00003961 67.14096832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -00003962 67.14096832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -00003963 67.14099121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -00003964 67.14099884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -00003965 67.14102173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -00003966 67.14102173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -00003967 67.14105225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -00003968 67.14105225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -00003969 67.14108276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -00003970 67.14108276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -00003971 67.14110565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -00003972 67.14110565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -00003973 67.14113617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -00003974 67.14113617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -00003975 67.14116669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -00003976 67.14116669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -00003977 67.14118958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -00003978 67.14119720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -00003979 67.14122009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -00003980 67.14122009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -00003981 67.14125061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -00003982 67.14125061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -00003983 67.14128113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -00003984 67.14128113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -00003985 67.14130402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -00003986 67.14130402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -00003987 67.14133453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -00003988 67.14133453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -00003989 67.14136505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -00003990 67.14136505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -00003991 67.14138794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -00003992 67.14139557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -00003993 67.14141846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -00003994 67.14141846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -00003995 67.14144897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -00003996 67.14145660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -00003997 67.14147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -00003998 67.14147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -00003999 67.14150238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -00004000 67.14150238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -00004001 67.14153290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -00004002 67.14153290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -00004003 67.14156342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -00004004 67.14156342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -00004005 67.14158630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -00004006 67.14159393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -00004007 67.14161682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -00004008 67.14161682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -00004009 67.14164734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -00004010 67.14165497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -00004011 67.14167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -00004012 67.14167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -00004013 67.14170074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -00004014 67.14170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -00004015 67.14173126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -00004016 67.14173126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -00004017 67.14176178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -00004018 67.14176178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -00004019 67.14178467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -00004020 67.14179230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -00004021 67.14181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -00004022 67.14181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -00004023 67.14184570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -00004024 67.14185333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -00004025 67.14187622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -00004026 67.14187622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -00004027 67.14189911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -00004028 67.14190674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -00004029 67.14192963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -00004030 67.14192963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -00004031 67.14196014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -00004032 67.14196014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -00004033 67.14198303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -00004034 67.14199066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -00004035 67.14201355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -00004036 67.14201355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -00004037 67.14204407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -00004038 67.14205170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -00004039 67.14207458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -00004040 67.14207458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -00004041 67.14209747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -00004042 67.14210510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -00004043 67.14212799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -00004044 67.14212799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -00004045 67.14215851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -00004046 67.14215851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -00004047 67.14218140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -00004048 67.14218903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -00004049 67.14221191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -00004050 67.14221191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -00004051 67.14224243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -00004052 67.14225006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -00004053 67.14227295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -00004054 67.14227295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -00004055 67.14229584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -00004056 67.14230347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -00004057 67.14232635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -00004058 67.14232635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -00004059 67.14235687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -00004060 67.14235687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -00004061 67.14237976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -00004062 67.14238739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -00004063 67.14241028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -00004064 67.14241028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -00004065 67.14244080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -00004066 67.14244843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -00004067 67.14247131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -00004068 67.14247131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -00004069 67.14249420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -00004070 67.14250183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -00004071 67.14252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -00004072 67.14252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -00004073 67.14255524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -00004074 67.14256287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -00004075 67.14258575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -00004076 67.14258575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -00004077 67.14260864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -00004078 67.14260864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -00004079 67.14263916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -00004080 67.14264679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -00004081 67.14266968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -00004082 67.14266968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -00004083 67.14269257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -00004084 67.14270020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -00004085 67.14272308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -00004086 67.14272308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -00004087 67.14275360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -00004088 67.14276123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -00004089 67.14278412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -00004090 67.14278412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -00004091 67.14280701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -00004092 67.14280701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -00004093 67.14283752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -00004094 67.14284515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -00004095 67.14286804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -00004096 67.14286804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -00004097 67.14289093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -00004098 67.14289856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -00004099 67.14292145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -00004100 67.14292145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -00004101 67.14295197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -00004102 67.14295197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -00004103 67.14297485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -00004104 67.14298248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -00004105 67.14300537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -00004106 67.14300537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -00004107 67.14303589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -00004108 67.14304352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -00004109 67.14306641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -00004110 67.14306641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -00004111 67.14308929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -00004112 67.14309692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -00004113 67.14311981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -00004114 67.14311981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -00004115 67.14315033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -00004116 67.14315796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -00004117 67.14318085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -00004118 67.14318085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -00004119 67.14320374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -00004120 67.14320374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -00004121 67.14323425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -00004122 67.14324188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -00004123 67.14326477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -00004124 67.14326477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -00004125 67.14328766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -00004126 67.14329529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -00004127 67.14331818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -00004128 67.14331818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -00004129 67.14334869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -00004130 67.14335632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -00004131 67.14337921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -00004132 67.14337921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -00004133 67.14340210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -00004134 67.14340210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -00004135 67.14343262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -00004136 67.14344025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -00004137 67.14346313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -00004138 67.14346313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -00004139 67.14348602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -00004140 67.14349365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -00004141 67.14351654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -00004142 67.14351654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -00004143 67.14354706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -00004144 67.14355469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -00004145 67.14357758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -00004146 67.14357758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -00004147 67.14360046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -00004148 67.14360809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -00004149 67.14363861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -00004150 67.14363861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -00004151 67.14366150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -00004152 67.14366150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -00004153 67.14368439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -00004154 67.14369202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -00004155 67.14371490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -00004156 67.14371490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -00004157 67.14374542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -00004158 67.14375305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -00004159 67.14377594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -00004160 67.14377594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -00004161 67.14379883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -00004162 67.14380646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -00004163 67.14383698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -00004164 67.14383698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -00004165 67.14385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -00004166 67.14385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -00004167 67.14388275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -00004168 67.14389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -00004169 67.14391327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -00004170 67.14391327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -00004171 67.14394379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -00004172 67.14395142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -00004173 67.14397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -00004174 67.14397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -00004175 67.14399719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -00004176 67.14400482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -00004177 67.14403534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -00004178 67.14403534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -00004179 67.14405823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -00004180 67.14406586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -00004181 67.14408875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -00004182 67.14408875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -00004183 67.14411163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -00004184 67.14411163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -00004185 67.14414215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -00004186 67.14414978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -00004187 67.14417267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -00004188 67.14417267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -00004189 67.14419556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -00004190 67.14420319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -00004191 67.14423370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -00004192 67.14423370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -00004193 67.14425659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -00004194 67.14426422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -00004195 67.14428711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -00004196 67.14428711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -00004197 67.14431000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -00004198 67.14431000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -00004199 67.14434052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -00004200 67.14434814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -00004201 67.14437103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -00004202 67.14437103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -00004203 67.14439392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -00004204 67.14440155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -00004205 67.14443207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -00004206 67.14443207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -00004207 67.14445496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -00004208 67.14446259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -00004209 67.14448547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -00004210 67.14448547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -00004211 67.14450836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -00004212 67.14451599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -00004213 67.14454651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -00004214 67.14454651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -00004215 67.14456940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -00004216 67.14456940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -00004217 67.14459229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -00004218 67.14459991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -00004219 67.14463043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -00004220 67.14463043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -00004221 67.14465332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -00004222 67.14466095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -00004223 67.14468384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -00004224 67.14468384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -00004225 67.14470673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -00004226 67.14471436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -00004227 67.14474487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -00004228 67.14474487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -00004229 67.14476776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -00004230 67.14476776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -00004231 67.14479065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -00004232 67.14479828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -00004233 67.14482880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -00004234 67.14482880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -00004235 67.14485168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -00004236 67.14485931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -00004237 67.14488220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -00004238 67.14488220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -00004239 67.14490509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -00004240 67.14491272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -00004241 67.14494324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -00004242 67.14494324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -00004243 67.14496613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -00004244 67.14496613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -00004245 67.14498901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -00004246 67.14499664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -00004247 67.14502716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -00004248 67.14502716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -00004249 67.14505005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -00004250 67.14505768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -00004251 67.14508057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -00004252 67.14508057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -00004253 67.14510345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -00004254 67.14511108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -00004255 67.14514160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -00004256 67.14514160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -00004257 67.14516449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -00004258 67.14516449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -00004259 67.14518738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -00004260 67.14519501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -00004261 67.14522552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -00004262 67.14522552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -00004263 67.14524841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -00004264 67.14525604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -00004265 67.14527893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -00004266 67.14527893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -00004267 67.14530182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -00004268 67.14530945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -00004269 67.14533997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -00004270 67.14533997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -00004271 67.14536285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -00004272 67.14536285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -00004273 67.14538574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -00004274 67.14539337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -00004275 67.14542389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -00004276 67.14542389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -00004277 67.14544678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -00004278 67.14545441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -00004279 67.14547729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -00004280 67.14547729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -00004281 67.14550781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -00004282 67.14550781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -00004283 67.14553833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -00004284 67.14553833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -00004285 67.14556122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -00004286 67.14556885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -00004287 67.14559174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -00004288 67.14559174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -00004289 67.14562225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -00004290 67.14562225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -00004291 67.14564514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -00004292 67.14565277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -00004293 67.14567566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -00004294 67.14567566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -00004295 67.14570618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -00004296 67.14570618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -00004297 67.14573669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -00004298 67.14573669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -00004299 67.14575958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -00004300 67.14576721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -00004301 67.14579010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -00004302 67.14579010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -00004303 67.14582062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -00004304 67.14582062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -00004305 67.14584351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -00004306 67.14585114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -00004307 67.14587402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -00004308 67.14587402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -00004309 67.14590454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -00004310 67.14590454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -00004311 67.14593506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -00004312 67.14593506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -00004313 67.14595795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -00004314 67.14595795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -00004315 67.14598083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -00004316 67.14598846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -00004317 67.14601898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -00004318 67.14601898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -00004319 67.14604187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -00004320 67.14604950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -00004321 67.14607239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -00004322 67.14607239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -00004323 67.14610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -00004324 67.14610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -00004325 67.14613342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -00004326 67.14613342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -00004327 67.14615631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -00004328 67.14616394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -00004329 67.14618683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -00004330 67.14618683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -00004331 67.14621735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -00004332 67.14621735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -00004333 67.14624023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -00004334 67.14624786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -00004335 67.14627075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -00004336 67.14627075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -00004337 67.14630127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -00004338 67.14630127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -00004339 67.14633179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -00004340 67.14633179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -00004341 67.14635468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -00004342 67.14636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -00004343 67.14638519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -00004344 67.14638519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -00004345 67.14641571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -00004346 67.14641571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -00004347 67.14643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -00004348 67.14644623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -00004349 67.14646912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -00004350 67.14646912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -00004351 67.14649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -00004352 67.14649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -00004353 67.14653015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -00004354 67.14653015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -00004355 67.14655304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -00004356 67.14656067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -00004357 67.14658356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -00004358 67.14658356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -00004359 67.14661407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -00004360 67.14661407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -00004361 67.14664459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -00004362 67.14664459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -00004363 67.14666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -00004364 67.14666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -00004365 67.14669800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -00004366 67.14669800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -00004367 67.14672852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -00004368 67.14672852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -00004369 67.14675140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -00004370 67.14675903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -00004371 67.14678192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -00004372 67.14678192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -00004373 67.14681244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -00004374 67.14681244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -00004375 67.14684296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -00004376 67.14684296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -00004377 67.14686584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -00004378 67.14686584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -00004379 67.14689636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -00004380 67.14689636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -00004381 67.14692688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -00004382 67.14692688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -00004383 67.14694977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -00004384 67.14695740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -00004385 67.14698029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -00004386 67.14698029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -00004387 67.14701080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -00004388 67.14701080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -00004389 67.14704132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -00004390 67.14704132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -00004391 67.14706421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -00004392 67.14707184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -00004393 67.14709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -00004394 67.14709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -00004395 67.14712524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -00004396 67.14712524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -00004397 67.14714813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -00004398 67.14715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -00004399 67.14717865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -00004400 67.14717865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -00004401 67.14720917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -00004402 67.14720917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -00004403 67.14723969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -00004404 67.14723969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -00004405 67.14726257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -00004406 67.14727020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -00004407 67.14729309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -00004408 67.14729309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -00004409 67.14732361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -00004410 67.14732361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -00004411 67.14734650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -00004412 67.14735413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -00004413 67.14737701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -00004414 67.14737701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -00004415 67.14740753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -00004416 67.14740753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -00004417 67.14743805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -00004418 67.14743805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -00004419 67.14746094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -00004420 67.14746857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -00004421 67.14749146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -00004422 67.14749146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -00004423 67.14752197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -00004424 67.14752960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -00004425 67.14755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -00004426 67.14755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -00004427 67.14757538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -00004428 67.14757538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -00004429 67.14760590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -00004430 67.14760590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -00004431 67.14763641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e0 -00004432 67.14763641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e0 -00004433 67.14765930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f0 -00004434 67.14766693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f0 -00004435 67.14768982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8800 -00004436 67.14768982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8800 -00004437 67.14772034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8810 -00004438 67.14772797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8810 -00004439 67.14775085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8820 -00004440 67.14775085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8820 -00004441 67.14777374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8830 -00004442 67.14778137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8830 -00004443 67.14780426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8840 -00004444 67.14780426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8840 -00004445 67.14783478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8850 -00004446 67.14783478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8850 -00004447 67.14786530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8860 -00004448 67.14786530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8860 -00004449 67.14788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8870 -00004450 67.14788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8870 -00004451 67.14791870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8880 -00004452 67.14792633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8880 -00004453 67.14794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8890 -00004454 67.14794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8890 -00004455 67.14797211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a0 -00004456 67.14797974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a0 -00004457 67.14800262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b0 -00004458 67.14800262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b0 -00004459 67.14803314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c0 -00004460 67.14803314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c0 -00004461 67.14806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d0 -00004462 67.14806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d0 -00004463 67.14808655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e0 -00004464 67.14808655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e0 -00004465 67.14811707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f0 -00004466 67.14812469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f0 -00004467 67.14814758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8900 -00004468 67.14814758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8900 -00004469 67.14817047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8910 -00004470 67.14817810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8910 -00004471 67.14820099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8920 -00004472 67.14820099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8920 -00004473 67.14823151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8930 -00004474 67.14823914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8930 -00004475 67.14826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8940 -00004476 67.14826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8940 -00004477 67.14828491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8950 -00004478 67.14828491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8950 -00004479 67.14831543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8960 -00004480 67.14832306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8960 -00004481 67.14834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8970 -00004482 67.14834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8970 -00004483 67.14836884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8980 -00004484 67.14837646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8980 -00004485 67.14840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8990 -00004486 67.14840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8990 -00004487 67.14842987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a0 -00004488 67.14842987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a0 -00004489 67.14846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b0 -00004490 67.14846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b0 -00004491 67.14848328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c0 -00004492 67.14849091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c0 -00004493 67.14852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d0 -00004494 67.14852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d0 -00004495 67.14854431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -00004496 67.14854431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e0 -00004497 67.14856720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -00004498 67.14857483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f0 -00004499 67.14860535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -00004500 67.14860535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a00 -00004501 67.14862823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -00004502 67.14863586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a10 -00004503 67.14865875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -00004504 67.14865875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a20 -00004505 67.14868164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -00004506 67.14868927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a30 -00004507 67.14871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -00004508 67.14871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a40 -00004509 67.14874268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -00004510 67.14874268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a50 -00004511 67.14876556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -00004512 67.14877319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a60 -00004513 67.14880371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -00004514 67.14880371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a70 -00004515 67.14882660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -00004516 67.14883423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a80 -00004517 67.14885712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -00004518 67.14885712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a90 -00004519 67.14888000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -00004520 67.14888763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa0 -00004521 67.14891815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -00004522 67.14891815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab0 -00004523 67.14894104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -00004524 67.14894867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac0 -00004525 67.14897156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -00004526 67.14897156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad0 -00004527 67.14900208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -00004528 67.14900208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae0 -00004529 67.14902496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -00004530 67.14903259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af0 -00004531 67.14905548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -00004532 67.14905548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b00 -00004533 67.14907837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -00004534 67.14908600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b10 -00004535 67.14911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -00004536 67.14911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b20 -00004537 67.14913940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -00004538 67.14914703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b30 -00004539 67.14916992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b40 -00004540 67.14916992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b40 -00004541 67.14920044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b50 -00004542 67.14920044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b50 -00004543 67.14922333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b60 -00004544 67.14923096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b60 -00004545 67.14925385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b70 -00004546 67.14925385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b70 -00004547 67.14927673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b80 -00004548 67.14928436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b80 -00004549 67.14931488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b90 -00004550 67.14931488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b90 -00004551 67.14933777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba0 -00004552 67.14934540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba0 -00004553 67.14936829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb0 -00004554 67.14936829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb0 -00004555 67.14939880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc0 -00004556 67.14939880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc0 -00004557 67.14942169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd0 -00004558 67.14942932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd0 -00004559 67.14945221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be0 -00004560 67.14945221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be0 -00004561 67.14947510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf0 -00004562 67.14948273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf0 -00004563 67.14951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c00 -00004564 67.14951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c00 -00004565 67.14954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c10 -00004566 67.14954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c10 -00004567 67.14956665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c20 -00004568 67.14957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c20 -00004569 67.14959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c30 -00004570 67.14959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c30 -00004571 67.14962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c40 -00004572 67.14962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c40 -00004573 67.14965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c50 -00004574 67.14965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c50 -00004575 67.14968109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c60 -00004576 67.14968109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c60 -00004577 67.14971161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c70 -00004578 67.14971161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c70 -00004579 67.14974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c80 -00004580 67.14974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c80 -00004581 67.14976501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c90 -00004582 67.14977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c90 -00004583 67.14979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca0 -00004584 67.14979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca0 -00004585 67.14982605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb0 -00004586 67.14983368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb0 -00004587 67.14985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc0 -00004588 67.14985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc0 -00004589 67.14987946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd0 -00004590 67.14988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd0 -00004591 67.14990997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce0 -00004592 67.14990997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce0 -00004593 67.14994049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf0 -00004594 67.14994812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf0 -00004595 67.14997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d00 -00004596 67.14997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d00 -00004597 67.14999390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d10 -00004598 67.14999390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d10 -00004599 67.15002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d20 -00004600 67.15003204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d20 -00004601 67.15005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d30 -00004602 67.15005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d30 -00004603 67.15007782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d40 -00004604 67.15008545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d40 -00004605 67.15010834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d50 -00004606 67.15010834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d50 -00004607 67.15013885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d60 -00004608 67.15014648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d60 -00004609 67.15016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d70 -00004610 67.15016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d70 -00004611 67.15019226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d80 -00004612 67.15019226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d80 -00004613 67.15022278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d90 -00004614 67.15023041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d90 -00004615 67.15025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da0 -00004616 67.15025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da0 -00004617 67.15027618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db0 -00004618 67.15028381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db0 -00004619 67.15030670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc0 -00004620 67.15030670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc0 -00004621 67.15033722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd0 -00004622 67.15034485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd0 -00004623 67.15036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de0 -00004624 67.15036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de0 -00004625 67.15039063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df0 -00004626 67.15039825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df0 -00004627 67.15042877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e00 -00004628 67.15042877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e00 -00004629 67.15045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e10 -00004630 67.15045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e10 -00004631 67.15047455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e20 -00004632 67.15048218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e20 -00004633 67.15050507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e30 -00004634 67.15050507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e30 -00004635 67.15053558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e40 -00004636 67.15054321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e40 -00004637 67.15056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e50 -00004638 67.15056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e50 -00004639 67.15058899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e60 -00004640 67.15059662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e60 -00004641 67.15062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e70 -00004642 67.15062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e70 -00004643 67.15065002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e80 -00004644 67.15065765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e80 -00004645 67.15068054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e90 -00004646 67.15068054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e90 -00004647 67.15070343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea0 -00004648 67.15071106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea0 -00004649 67.15074158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb0 -00004650 67.15074158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb0 -00004651 67.15076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec0 -00004652 67.15076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec0 -00004653 67.15078735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed0 -00004654 67.15079498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed0 -00004655 67.15082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee0 -00004656 67.15082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee0 -00004657 67.15084839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -00004658 67.15085602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -00004659 67.15087891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -00004660 67.15087891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -00004661 67.15090179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -00004662 67.15090942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -00004663 67.15093994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -00004664 67.15093994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -00004665 67.15096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -00004666 67.15096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -00004667 67.15098572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -00004668 67.15099335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -00004669 67.15102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -00004670 67.15102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -00004671 67.15104675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -00004672 67.15105438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -00004673 67.15107727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -00004674 67.15107727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -00004675 67.15110779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -00004676 67.15110779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -00004677 67.15113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -00004678 67.15113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -00004679 67.15116119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -00004680 67.15116882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -00004681 67.15119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -00004682 67.15119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -00004683 67.15122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -00004684 67.15122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -00004685 67.15124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -00004686 67.15125275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -00004687 67.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -00004688 67.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -00004689 67.15130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -00004690 67.15130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -00004691 67.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -00004692 67.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -00004693 67.15135956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -00004694 67.15136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -00004695 67.15139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -00004696 67.15139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -00004697 67.15142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -00004698 67.15142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -00004699 67.15144348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9040 -00004700 67.15145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9040 -00004701 67.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -00004702 67.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9050 -00004703 67.15150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -00004704 67.15150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9060 -00004705 67.15153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -00004706 67.15153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9070 -00004707 67.15155792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -00004708 67.15156555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9080 -00004709 67.15158844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -00004710 67.15158844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9090 -00004711 67.15161896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -00004712 67.15161896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a0 -00004713 67.15164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -00004714 67.15164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b0 -00004715 67.15167236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -00004716 67.15167236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c0 -00004717 67.15170288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -00004718 67.15170288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d0 -00004719 67.15173340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -00004720 67.15173340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e0 -00004721 67.15175629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -00004722 67.15176392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f0 -00004723 67.15178680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -00004724 67.15178680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9100 -00004725 67.15181732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -00004726 67.15181732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9110 -00004727 67.15184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -00004728 67.15184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9120 -00004729 67.15187073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -00004730 67.15187836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9130 -00004731 67.15190125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -00004732 67.15190125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9140 -00004733 67.15193176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -00004734 67.15193939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9150 -00004735 67.15196228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -00004736 67.15196228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9160 -00004737 67.15198517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -00004738 67.15198517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9170 -00004739 67.15201569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -00004740 67.15201569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9180 -00004741 67.15204620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -00004742 67.15204620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9190 -00004743 67.15206909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -00004744 67.15207672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a0 -00004745 67.15209961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b0 -00004746 67.15209961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b0 -00004747 67.15213013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c0 -00004748 67.15213776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c0 -00004749 67.15216064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d0 -00004750 67.15216064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d0 -00004751 67.15218353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e0 -00004752 67.15218353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e0 -00004753 67.15221405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f0 -00004754 67.15221405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f0 -00004755 67.15224457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9200 -00004756 67.15224457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9200 -00004757 67.15226746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9210 -00004758 67.15227509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9210 -00004759 67.15229797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9220 -00004760 67.15229797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9220 -00004761 67.15232849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9230 -00004762 67.15233612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9230 -00004763 67.15235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9240 -00004764 67.15235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9240 -00004765 67.15238190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9250 -00004766 67.15238190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9250 -00004767 67.15241241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9260 -00004768 67.15241241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9260 -00004769 67.15244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9270 -00004770 67.15244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9270 -00004771 67.15246582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9280 -00004772 67.15247345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9280 -00004773 67.15249634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9290 -00004774 67.15249634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9290 -00004775 67.15252686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a0 -00004776 67.15253448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a0 -00004777 67.15255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b0 -00004778 67.15255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b0 -00004779 67.15258026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c0 -00004780 67.15258789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c0 -00004781 67.15261078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d0 -00004782 67.15261078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d0 -00004783 67.15264130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e0 -00004784 67.15264893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e0 -00004785 67.15267181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f0 -00004786 67.15267181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f0 -00004787 67.15269470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9300 -00004788 67.15270233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9300 -00004789 67.15273285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9310 -00004790 67.15273285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9310 -00004791 67.15275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9320 -00004792 67.15275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9320 -00004793 67.15277863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9330 -00004794 67.15278625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9330 -00004795 67.15280914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9340 -00004796 67.15280914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9340 -00004797 67.15283966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9350 -00004798 67.15284729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9350 -00004799 67.15287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9360 -00004800 67.15287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9360 -00004801 67.15289307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9370 -00004802 67.15290070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9370 -00004803 67.15293121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9380 -00004804 67.15293121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9380 -00004805 67.15295410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9390 -00004806 67.15295410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9390 -00004807 67.15297699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a0 -00004808 67.15298462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a0 -00004809 67.15300751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b0 -00004810 67.15300751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b0 -00004811 67.15303802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c0 -00004812 67.15304565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c0 -00004813 67.15306854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d0 -00004814 67.15306854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d0 -00004815 67.15309143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e0 -00004816 67.15309906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e0 -00004817 67.15312958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f0 -00004818 67.15312958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f0 -00004819 67.15315247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9400 -00004820 67.15316010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9400 -00004821 67.15318298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9410 -00004822 67.15318298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9410 -00004823 67.15320587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9420 -00004824 67.15321350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9420 -00004825 67.15324402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9430 -00004826 67.15324402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9430 -00004827 67.15326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9440 -00004828 67.15326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9440 -00004829 67.15328979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9450 -00004830 67.15329742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9450 -00004831 67.15332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9460 -00004832 67.15332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9460 -00004833 67.15335083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9470 -00004834 67.15335846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9470 -00004835 67.15338135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9480 -00004836 67.15338135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9480 -00004837 67.15340424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9490 -00004838 67.15341187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9490 -00004839 67.15344238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a0 -00004840 67.15344238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a0 -00004841 67.15346527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b0 -00004842 67.15346527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b0 -00004843 67.15349579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c0 -00004844 67.15349579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c0 -00004845 67.15352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d0 -00004846 67.15352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d0 -00004847 67.15354919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e0 -00004848 67.15355682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e0 -00004849 67.15357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -00004850 67.15357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f0 -00004851 67.15360260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -00004852 67.15361023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9500 -00004853 67.15364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -00004854 67.15364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9510 -00004855 67.15366364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -00004856 67.15367126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9520 -00004857 67.15369415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -00004858 67.15369415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9530 -00004859 67.15372467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -00004860 67.15372467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9540 -00004861 67.15375519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -00004862 67.15375519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9550 -00004863 67.15377808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -00004864 67.15377808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9560 -00004865 67.15380859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -00004866 67.15380859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9570 -00004867 67.15383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -00004868 67.15383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9580 -00004869 67.15386200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -00004870 67.15386963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9590 -00004871 67.15389252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -00004872 67.15389252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a0 -00004873 67.15392303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -00004874 67.15392303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b0 -00004875 67.15395355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -00004876 67.15395355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c0 -00004877 67.15397644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -00004878 67.15398407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d0 -00004879 67.15400696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -00004880 67.15400696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e0 -00004881 67.15403748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -00004882 67.15404510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f0 -00004883 67.15406799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -00004884 67.15406799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9600 -00004885 67.15409088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -00004886 67.15409088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9610 -00004887 67.15412140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -00004888 67.15412140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9620 -00004889 67.15415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -00004890 67.15415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9630 -00004891 67.15417480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -00004892 67.15418243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9640 -00004893 67.15420532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9650 -00004894 67.15420532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9650 -00004895 67.15423584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -00004896 67.15424347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -00004897 67.15426636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -00004898 67.15426636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -00004899 67.15428925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -00004900 67.15429688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -00004901 67.15431976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -00004902 67.15431976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -00004903 67.15435028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -00004904 67.15435028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -00004905 67.15437317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -00004906 67.15438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -00004907 67.15440369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -00004908 67.15440369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -00004909 67.15443420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -00004910 67.15444183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -00004911 67.15446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -00004912 67.15446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -00004913 67.15448761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -00004914 67.15449524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -00004915 67.15451813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -00004916 67.15451813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -00004917 67.15454865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -00004918 67.15455627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -00004919 67.15457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9720 -00004920 67.15457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9720 -00004921 67.15460205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -00004922 67.15460205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -00004923 67.15463257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -00004924 67.15464020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -00004925 67.15466309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -00004926 67.15466309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -00004927 67.15468597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -00004928 67.15469360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -00004929 67.15471649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -00004930 67.15471649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -00004931 67.15474701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -00004932 67.15475464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -00004933 67.15477753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -00004934 67.15477753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -00004935 67.15480042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -00004936 67.15480042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -00004937 67.15483093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -00004938 67.15483856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -00004939 67.15486145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -00004940 67.15486145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -00004941 67.15488434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -00004942 67.15489197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -00004943 67.15491486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -00004944 67.15491486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -00004945 67.15494537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -00004946 67.15495300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -00004947 67.15497589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -00004948 67.15497589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -00004949 67.15499878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -00004950 67.15499878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -00004951 67.15503693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -00004952 67.15503693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -00004953 67.15505981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -00004954 67.15505981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -00004955 67.15508270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -00004956 67.15509033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -00004957 67.15511322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -00004958 67.15511322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -00004959 67.15514374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -00004960 67.15515137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -00004961 67.15517426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -00004962 67.15517426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -00004963 67.15519714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -00004964 67.15519714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -00004965 67.15522766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9890 -00004966 67.15523529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9890 -00004967 67.15525818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -00004968 67.15525818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -00004969 67.15528107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -00004970 67.15528870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -00004971 67.15531158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -00004972 67.15531158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -00004973 67.15534210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -00004974 67.15534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -00004975 67.15537262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -00004976 67.15537262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -00004977 67.15539551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -00004978 67.15539551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -00004979 67.15543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -00004980 67.15543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -00004981 67.15545654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -00004982 67.15545654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -00004983 67.15547943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -00004984 67.15548706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -00004985 67.15550995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -00004986 67.15550995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -00004987 67.15554047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -00004988 67.15554810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -00004989 67.15557098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -00004990 67.15557098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -00004991 67.15559387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -00004992 67.15560150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -00004993 67.15563202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -00004994 67.15563202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -00004995 67.15565491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -00004996 67.15566254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -00004997 67.15568542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -00004998 67.15568542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -00004999 67.15570831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -00005000 67.15570831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -00005001 67.15573883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -00005002 67.15574646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -00005003 67.15576935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -00005004 67.15576935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -00005005 67.15579224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -00005006 67.15579987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -00005007 67.15583038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -00005008 67.15583038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -00005009 67.15585327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -00005010 67.15585327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -00005011 67.15588379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -00005012 67.15588379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -00005013 67.15590668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -00005014 67.15590668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -00005015 67.15593719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -00005016 67.15594482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -00005017 67.15596771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -00005018 67.15596771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -00005019 67.15599060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -00005020 67.15599823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -00005021 67.15602875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -00005022 67.15602875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -00005023 67.15605164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -00005024 67.15605927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -00005025 67.15608215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -00005026 67.15608215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -00005027 67.15610504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -00005028 67.15610504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -00005029 67.15613556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -00005030 67.15614319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -00005031 67.15616608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -00005032 67.15616608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -00005033 67.15618896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -00005034 67.15619659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -00005035 67.15622711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -00005036 67.15622711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -00005037 67.15625000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad0 -00005038 67.15625763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad0 -00005039 67.15628052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae0 -00005040 67.15628052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae0 -00005041 67.15630341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af0 -00005042 67.15630341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af0 -00005043 67.15634155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b00 -00005044 67.15634155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b00 -00005045 67.15636444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b10 -00005046 67.15636444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b10 -00005047 67.15638733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b20 -00005048 67.15639496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b20 -00005049 67.15642548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b30 -00005050 67.15642548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b30 -00005051 67.15644836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b40 -00005052 67.15645599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b40 -00005053 67.15647888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b50 -00005054 67.15647888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b50 -00005055 67.15650940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b60 -00005056 67.15650940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b60 -00005057 67.15653992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b70 -00005058 67.15653992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b70 -00005059 67.15656281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -00005060 67.15657043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -00005061 67.15659332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -00005062 67.15659332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -00005063 67.15662384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -00005064 67.15662384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -00005065 67.15664673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -00005066 67.15665436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -00005067 67.15667725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -00005068 67.15667725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -00005069 67.15670776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -00005070 67.15670776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -00005071 67.15673828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -00005072 67.15673828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -00005073 67.15676117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -00005074 67.15676880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -00005075 67.15679169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -00005076 67.15679169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -00005077 67.15682220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -00005078 67.15682220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -00005079 67.15684509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -00005080 67.15685272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -00005081 67.15687561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -00005082 67.15687561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -00005083 67.15690613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -00005084 67.15690613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -00005085 67.15693665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -00005086 67.15693665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -00005087 67.15695953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -00005088 67.15696716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -00005089 67.15699005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -00005090 67.15699005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -00005091 67.15702057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -00005092 67.15702057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -00005093 67.15704346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -00005094 67.15705109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -00005095 67.15707397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -00005096 67.15707397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -00005097 67.15710449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -00005098 67.15710449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -00005099 67.15713501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -00005100 67.15713501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -00005101 67.15715790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -00005102 67.15716553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -00005103 67.15718842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -00005104 67.15718842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce0 -00005105 67.15721893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -00005106 67.15721893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf0 -00005107 67.15724182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -00005108 67.15724945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d00 -00005109 67.15727234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -00005110 67.15727234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d10 -00005111 67.15730286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -00005112 67.15730286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d20 -00005113 67.15733337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -00005114 67.15733337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d30 -00005115 67.15735626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -00005116 67.15736389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d40 -00005117 67.15738678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -00005118 67.15738678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d50 -00005119 67.15741730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -00005120 67.15741730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d60 -00005121 67.15744019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -00005122 67.15744781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d70 -00005123 67.15747070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -00005124 67.15747070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d80 -00005125 67.15750122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -00005126 67.15750122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d90 -00005127 67.15753174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -00005128 67.15753174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da0 -00005129 67.15755463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db0 -00005130 67.15756226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db0 -00005131 67.15758514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc0 -00005132 67.15758514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc0 -00005133 67.15761566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd0 -00005134 67.15761566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd0 -00005135 67.15764618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de0 -00005136 67.15764618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de0 -00005137 67.15766907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df0 -00005138 67.15767670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df0 -00005139 67.15769958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e00 -00005140 67.15769958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e00 -00005141 67.15773010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e10 -00005142 67.15773773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e10 -00005143 67.15776062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e20 -00005144 67.15776062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e20 -00005145 67.15778351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e30 -00005146 67.15778351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e30 -00005147 67.15781403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e40 -00005148 67.15781403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e40 -00005149 67.15784454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e50 -00005150 67.15784454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e50 -00005151 67.15786743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e60 -00005152 67.15787506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e60 -00005153 67.15789795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e70 -00005154 67.15789795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e70 -00005155 67.15792847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e80 -00005156 67.15793610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e80 -00005157 67.15795898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e90 -00005158 67.15795898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e90 -00005159 67.15798187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea0 -00005160 67.15798950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea0 -00005161 67.15801239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb0 -00005162 67.15801239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb0 -00005163 67.15804291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec0 -00005164 67.15804291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec0 -00005165 67.15806580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed0 -00005166 67.15807343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed0 -00005167 67.15809631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee0 -00005168 67.15809631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee0 -00005169 67.15812683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef0 -00005170 67.15813446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef0 -00005171 67.15815735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f00 -00005172 67.15815735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f00 -00005173 67.15818024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f10 -00005174 67.15818787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f10 -00005175 67.15821075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f20 -00005176 67.15821075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f20 -00005177 67.15824127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f30 -00005178 67.15824890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f30 -00005179 67.15827179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f40 -00005180 67.15827179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f40 -00005181 67.15829468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f50 -00005182 67.15829468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f50 -00005183 67.15832520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f60 -00005184 67.15833282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f60 -00005185 67.15835571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f70 -00005186 67.15835571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f70 -00005187 67.15837860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f80 -00005188 67.15838623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f80 -00005189 67.15840912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f90 -00005190 67.15840912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f90 -00005191 67.15843964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -00005192 67.15844727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa0 -00005193 67.15847015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -00005194 67.15847015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb0 -00005195 67.15849304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -00005196 67.15850067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc0 -00005197 67.15853119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -00005198 67.15853119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd0 -00005199 67.15855408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -00005200 67.15856171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe0 -00005201 67.15858459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -00005202 67.15858459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff0 -00005203 67.15860748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -00005204 67.15861511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa000 -00005205 67.15864563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -00005206 67.15864563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa010 -00005207 67.15866852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -00005208 67.15866852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa020 -00005209 67.15869141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -00005210 67.15869904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa030 -00005211 67.15872955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -00005212 67.15872955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa040 -00005213 67.15875244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -00005214 67.15876007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa050 -00005215 67.15878296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -00005216 67.15878296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa060 -00005217 67.15880585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -00005218 67.15881348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa070 -00005219 67.15884399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -00005220 67.15884399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa080 -00005221 67.15886688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -00005222 67.15887451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa090 -00005223 67.15889740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -00005224 67.15889740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a0 -00005225 67.15892792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -00005226 67.15892792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b0 -00005227 67.15895081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -00005228 67.15895844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c0 -00005229 67.15898132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -00005230 67.15898132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d0 -00005231 67.15900421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -00005232 67.15901184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e0 -00005233 67.15904236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -00005234 67.15904236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f0 -00005235 67.15906525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa100 -00005236 67.15907288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa100 -00005237 67.15909576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa110 -00005238 67.15909576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa110 -00005239 67.15912628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa120 -00005240 67.15912628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa120 -00005241 67.15915680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa130 -00005242 67.15915680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa130 -00005243 67.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa140 -00005244 67.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa140 -00005245 67.15921021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa150 -00005246 67.15921021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa150 -00005247 67.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa160 -00005248 67.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa160 -00005249 67.15926361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa170 -00005250 67.15927124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa170 -00005251 67.15929413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa180 -00005252 67.15929413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa180 -00005253 67.15932465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa190 -00005254 67.15932465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa190 -00005255 67.15935516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a0 -00005256 67.15935516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a0 -00005257 67.15937805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -00005258 67.15938568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -00005259 67.15940857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -00005260 67.15940857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -00005261 67.15943909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -00005262 67.15944672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -00005263 67.15946960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -00005264 67.15946960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -00005265 67.15949249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -00005266 67.15950012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -00005267 67.15952301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -00005268 67.15952301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -00005269 67.15955353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -00005270 67.15956116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -00005271 67.15958405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -00005272 67.15958405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -00005273 67.15960693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -00005274 67.15961456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -00005275 67.15964508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -00005276 67.15964508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -00005277 67.15966797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -00005278 67.15966797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -00005279 67.15969086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -00005280 67.15969849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -00005281 67.15972137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -00005282 67.15972137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -00005283 67.15975189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -00005284 67.15975952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -00005285 67.15978241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -00005286 67.15978241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -00005287 67.15980530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -00005288 67.15981293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -00005289 67.15984344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -00005290 67.15984344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -00005291 67.15986633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -00005292 67.15987396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -00005293 67.15989685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -00005294 67.15989685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -00005295 67.15991974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -00005296 67.15992737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -00005297 67.15995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -00005298 67.15995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -00005299 67.15998077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -00005300 67.15998077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -00005301 67.16000366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa310 -00005302 67.16001129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa310 -00005303 67.16004181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa320 -00005304 67.16004181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa320 -00005305 67.16006470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa330 -00005306 67.16007233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa330 -00005307 67.16009521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa340 -00005308 67.16009521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa340 -00005309 67.16011810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa350 -00005310 67.16012573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa350 -00005311 67.16015625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa360 -00005312 67.16015625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa360 -00005313 67.16017914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa370 -00005314 67.16017914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa370 -00005315 67.16020203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa380 -00005316 67.16020966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa380 -00005317 67.16024017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa390 -00005318 67.16024017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa390 -00005319 67.16026306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a0 -00005320 67.16027069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a0 -00005321 67.16029358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b0 -00005322 67.16029358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b0 -00005323 67.16031647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c0 -00005324 67.16032410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c0 -00005325 67.16035461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d0 -00005326 67.16035461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d0 -00005327 67.16037750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e0 -00005328 67.16038513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e0 -00005329 67.16040802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -00005330 67.16040802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -00005331 67.16043854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -00005332 67.16043854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -00005333 67.16046906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -00005334 67.16046906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -00005335 67.16049194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -00005336 67.16049194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -00005337 67.16052246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -00005338 67.16052246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -00005339 67.16055298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -00005340 67.16056061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -00005341 67.16058350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -00005342 67.16058350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -00005343 67.16060638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -00005344 67.16061401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -00005345 67.16063690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -00005346 67.16063690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -00005347 67.16066742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -00005348 67.16066742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -00005349 67.16069031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -00005350 67.16069794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -00005351 67.16072083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -00005352 67.16072083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -00005353 67.16075897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -00005354 67.16075897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -00005355 67.16078186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -00005356 67.16078186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -00005357 67.16080475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -00005358 67.16081238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -00005359 67.16084290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -00005360 67.16084290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -00005361 67.16087341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -00005362 67.16088104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -00005363 67.16091156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -00005364 67.16091156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -00005365 67.16094971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -00005366 67.16094971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -00005367 67.16098785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -00005368 67.16098785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -00005369 67.16101074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -00005370 67.16101837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -00005371 67.16104126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -00005372 67.16104126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -00005373 67.16107178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -00005374 67.16107178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa550 -00005375 67.16110229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -00005376 67.16110229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa560 -00005377 67.16112518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -00005378 67.16113281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa570 -00005379 67.16115570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -00005380 67.16115570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa580 -00005381 67.16118622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -00005382 67.16119385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa590 -00005383 67.16121674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -00005384 67.16121674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a0 -00005385 67.16123962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -00005386 67.16124725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b0 -00005387 67.16127014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -00005388 67.16127014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c0 -00005389 67.16130066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -00005390 67.16130829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d0 -00005391 67.16133118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -00005392 67.16133118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e0 -00005393 67.16135406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -00005394 67.16136169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f0 -00005395 67.16139221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -00005396 67.16139221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa600 -00005397 67.16141510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -00005398 67.16142273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa610 -00005399 67.16144562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -00005400 67.16144562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa620 -00005401 67.16146851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa630 -00005402 67.16146851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa630 -00005403 67.16150665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa640 -00005404 67.16150665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa640 -00005405 67.16152954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa650 -00005406 67.16153717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa650 -00005407 67.16156006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa660 -00005408 67.16156006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa660 -00005409 67.16159058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa670 -00005410 67.16159058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa670 -00005411 67.16161346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa680 -00005412 67.16162109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa680 -00005413 67.16164398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa690 -00005414 67.16164398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa690 -00005415 67.16166687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a0 -00005416 67.16167450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a0 -00005417 67.16170502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b0 -00005418 67.16170502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b0 -00005419 67.16172791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c0 -00005420 67.16173553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c0 -00005421 67.16175842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d0 -00005422 67.16175842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d0 -00005423 67.16178894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e0 -00005424 67.16178894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e0 -00005425 67.16181946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f0 -00005426 67.16181946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f0 -00005427 67.16184235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa700 -00005428 67.16184998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa700 -00005429 67.16187286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa710 -00005430 67.16187286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa710 -00005431 67.16190338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa720 -00005432 67.16190338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa720 -00005433 67.16192627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa730 -00005434 67.16193390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa730 -00005435 67.16195679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa740 -00005436 67.16195679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa740 -00005437 67.16198730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa750 -00005438 67.16198730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa750 -00005439 67.16201782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa760 -00005440 67.16201782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa760 -00005441 67.16204071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa770 -00005442 67.16204834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa770 -00005443 67.16207123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa780 -00005444 67.16207123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa780 -00005445 67.16210175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa790 -00005446 67.16210175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa790 -00005447 67.16212463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a0 -00005448 67.16213226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a0 -00005449 67.16215515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b0 -00005450 67.16215515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b0 -00005451 67.16218567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c0 -00005452 67.16218567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c0 -00005453 67.16221619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d0 -00005454 67.16221619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d0 -00005455 67.16223907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e0 -00005456 67.16223907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e0 -00005457 67.16226196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f0 -00005458 67.16226959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f0 -00005459 67.16230011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa800 -00005460 67.16230011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa800 -00005461 67.16232300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa810 -00005462 67.16233063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa810 -00005463 67.16235352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa820 -00005464 67.16235352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa820 -00005465 67.16238403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa830 -00005466 67.16238403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa830 -00005467 67.16241455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa840 -00005468 67.16241455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa840 -00005469 67.16243744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa850 -00005470 67.16244507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa850 -00005471 67.16246796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa860 -00005472 67.16246796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa860 -00005473 67.16249847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa870 -00005474 67.16250610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa870 -00005475 67.16252899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa880 -00005476 67.16252899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa880 -00005477 67.16255188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa890 -00005478 67.16255951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa890 -00005479 67.16258240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a0 -00005480 67.16258240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a0 -00005481 67.16261292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b0 -00005482 67.16261292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b0 -00005483 67.16263580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c0 -00005484 67.16264343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c0 -00005485 67.16266632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d0 -00005486 67.16266632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d0 -00005487 67.16269684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e0 -00005488 67.16270447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e0 -00005489 67.16272736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f0 -00005490 67.16272736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f0 -00005491 67.16275024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa900 -00005492 67.16275787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa900 -00005493 67.16278076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa910 -00005494 67.16278076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa910 -00005495 67.16281128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa920 -00005496 67.16281128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa920 -00005497 67.16283417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa930 -00005498 67.16284180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa930 -00005499 67.16286469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa940 -00005500 67.16286469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa940 -00005501 67.16289520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa950 -00005502 67.16290283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa950 -00005503 67.16292572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa960 -00005504 67.16292572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa960 -00005505 67.16294861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa970 -00005506 67.16295624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa970 -00005507 67.16297913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa980 -00005508 67.16297913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa980 -00005509 67.16300964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa990 -00005510 67.16300964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa990 -00005511 67.16303253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a0 -00005512 67.16304016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a0 -00005513 67.16306305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b0 -00005514 67.16306305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b0 -00005515 67.16309357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c0 -00005516 67.16310120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c0 -00005517 67.16312408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d0 -00005518 67.16312408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d0 -00005519 67.16314697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e0 -00005520 67.16315460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e0 -00005521 67.16317749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f0 -00005522 67.16317749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f0 -00005523 67.16320801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa00 -00005524 67.16321564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa00 -00005525 67.16323853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa10 -00005526 67.16323853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa10 -00005527 67.16326141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa20 -00005528 67.16326141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa20 -00005529 67.16329193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa30 -00005530 67.16329956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa30 -00005531 67.16332245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa40 -00005532 67.16332245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa40 -00005533 67.16334534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa50 -00005534 67.16335297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa50 -00005535 67.16337585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa60 -00005536 67.16337585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa60 -00005537 67.16340637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa70 -00005538 67.16341400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa70 -00005539 67.16343689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa80 -00005540 67.16343689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa80 -00005541 67.16345978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -00005542 67.16345978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -00005543 67.16349792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -00005544 67.16349792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -00005545 67.16352081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -00005546 67.16352081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -00005547 67.16354370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -00005548 67.16355133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -00005549 67.16357422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -00005550 67.16357422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -00005551 67.16360474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -00005552 67.16361237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -00005553 67.16363525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -00005554 67.16363525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -00005555 67.16365814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -00005556 67.16366577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -00005557 67.16369629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -00005558 67.16369629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -00005559 67.16371918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -00005560 67.16371918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -00005561 67.16374969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -00005562 67.16374969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -00005563 67.16377258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -00005564 67.16377258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -00005565 67.16380310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -00005566 67.16381073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -00005567 67.16383362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -00005568 67.16383362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -00005569 67.16385651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -00005570 67.16386414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -00005571 67.16389465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -00005572 67.16389465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -00005573 67.16391754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -00005574 67.16392517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -00005575 67.16394806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -00005576 67.16394806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -00005577 67.16397095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -00005578 67.16397095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -00005579 67.16400146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -00005580 67.16400909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -00005581 67.16403198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -00005582 67.16403198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -00005583 67.16405487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -00005584 67.16406250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -00005585 67.16409302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -00005586 67.16409302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -00005587 67.16411591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -00005588 67.16412354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -00005589 67.16414642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -00005590 67.16414642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -00005591 67.16416931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -00005592 67.16416931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -00005593 67.16419983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -00005594 67.16420746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -00005595 67.16423035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -00005596 67.16423035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -00005597 67.16425323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -00005598 67.16426086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -00005599 67.16429138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -00005600 67.16429138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -00005601 67.16431427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -00005602 67.16432190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -00005603 67.16434479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -00005604 67.16434479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -00005605 67.16436768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -00005606 67.16437531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -00005607 67.16440582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -00005608 67.16440582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -00005609 67.16442871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -00005610 67.16442871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -00005611 67.16445160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -00005612 67.16445923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -00005613 67.16448975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -00005614 67.16448975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -00005615 67.16451263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -00005616 67.16452026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -00005617 67.16454315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -00005618 67.16454315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -00005619 67.16457367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -00005620 67.16457367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -00005621 67.16460419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad10 -00005622 67.16460419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad10 -00005623 67.16463470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad20 -00005624 67.16463470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad20 -00005625 67.16465759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad30 -00005626 67.16465759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad30 -00005627 67.16468811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad40 -00005628 67.16468811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad40 -00005629 67.16471863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad50 -00005630 67.16471863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad50 -00005631 67.16474152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad60 -00005632 67.16474915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad60 -00005633 67.16477203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad70 -00005634 67.16477203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad70 -00005635 67.16480255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad80 -00005636 67.16481018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad80 -00005637 67.16483307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad90 -00005638 67.16483307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad90 -00005639 67.16485596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xada0 -00005640 67.16485596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xada0 -00005641 67.16488647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb0 -00005642 67.16488647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb0 -00005643 67.16491699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc0 -00005644 67.16491699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc0 -00005645 67.16493988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd0 -00005646 67.16494751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd0 -00005647 67.16497040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xade0 -00005648 67.16497040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xade0 -00005649 67.16500092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf0 -00005650 67.16500854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf0 -00005651 67.16503143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae00 -00005652 67.16503143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae00 -00005653 67.16505432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae10 -00005654 67.16506195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae10 -00005655 67.16508484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae20 -00005656 67.16508484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae20 -00005657 67.16511536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae30 -00005658 67.16511536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae30 -00005659 67.16513824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae40 -00005660 67.16514587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae40 -00005661 67.16516876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae50 -00005662 67.16516876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae50 -00005663 67.16519928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae60 -00005664 67.16520691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae60 -00005665 67.16522980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae70 -00005666 67.16522980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae70 -00005667 67.16525269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae80 -00005668 67.16526031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae80 -00005669 67.16528320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae90 -00005670 67.16528320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae90 -00005671 67.16531372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea0 -00005672 67.16531372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea0 -00005673 67.16533661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb0 -00005674 67.16534424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb0 -00005675 67.16536713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec0 -00005676 67.16536713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec0 -00005677 67.16539764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed0 -00005678 67.16540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed0 -00005679 67.16542816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee0 -00005680 67.16542816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee0 -00005681 67.16545105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef0 -00005682 67.16545868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef0 -00005683 67.16548157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -00005684 67.16548157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -00005685 67.16551208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -00005686 67.16551971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -00005687 67.16554260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -00005688 67.16554260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -00005689 67.16556549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -00005690 67.16556549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -00005691 67.16559601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -00005692 67.16560364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -00005693 67.16562653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -00005694 67.16562653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -00005695 67.16564941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -00005696 67.16565704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -00005697 67.16567993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -00005698 67.16567993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -00005699 67.16571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -00005700 67.16571808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -00005701 67.16574097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -00005702 67.16574097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -00005703 67.16576385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -00005704 67.16577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -00005705 67.16580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -00005706 67.16580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -00005707 67.16582489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -00005708 67.16582489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -00005709 67.16584778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -00005710 67.16585541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -00005711 67.16587830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -00005712 67.16587830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -00005713 67.16590881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -00005714 67.16591644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -00005715 67.16593933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -00005716 67.16593933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -00005717 67.16596222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -00005718 67.16596985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -00005719 67.16600037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -00005720 67.16600037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -00005721 67.16602325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -00005722 67.16602325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -00005723 67.16604614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -00005724 67.16605377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -00005725 67.16607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -00005726 67.16607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -00005727 67.16610718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb060 -00005728 67.16611481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb060 -00005729 67.16613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb070 -00005730 67.16613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb070 -00005731 67.16616058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb080 -00005732 67.16616821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb080 -00005733 67.16619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb090 -00005734 67.16619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb090 -00005735 67.16622162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a0 -00005736 67.16622925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a0 -00005737 67.16625214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b0 -00005738 67.16625214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b0 -00005739 67.16627502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c0 -00005740 67.16628265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c0 -00005741 67.16631317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d0 -00005742 67.16631317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d0 -00005743 67.16633606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e0 -00005744 67.16634369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e0 -00005745 67.16636658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f0 -00005746 67.16636658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f0 -00005747 67.16639709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb100 -00005748 67.16639709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb100 -00005749 67.16641998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb110 -00005750 67.16642761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb110 -00005751 67.16645050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb120 -00005752 67.16645050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb120 -00005753 67.16647339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb130 -00005754 67.16648102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb130 -00005755 67.16651154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb140 -00005756 67.16651154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb140 -00005757 67.16653442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb150 -00005758 67.16654205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb150 -00005759 67.16656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb160 -00005760 67.16656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb160 -00005761 67.16659546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb170 -00005762 67.16659546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb170 -00005763 67.16662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb180 -00005764 67.16662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb180 -00005765 67.16664886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb190 -00005766 67.16664886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb190 -00005767 67.16667938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -00005768 67.16667938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a0 -00005769 67.16670990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -00005770 67.16670990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b0 -00005771 67.16673279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -00005772 67.16674042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -00005773 67.16676331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -00005774 67.16676331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -00005775 67.16679382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -00005776 67.16679382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -00005777 67.16682434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -00005778 67.16682434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -00005779 67.16684723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -00005780 67.16685486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -00005781 67.16687775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -00005782 67.16687775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -00005783 67.16690826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -00005784 67.16690826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -00005785 67.16693878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -00005786 67.16693878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -00005787 67.16696167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -00005788 67.16696930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -00005789 67.16699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -00005790 67.16699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -00005791 67.16702271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -00005792 67.16702271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -00005793 67.16704559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -00005794 67.16705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -00005795 67.16707611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -00005796 67.16707611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -00005797 67.16710663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -00005798 67.16710663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -00005799 67.16713715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -00005800 67.16713715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -00005801 67.16716003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -00005802 67.16716766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -00005803 67.16719055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -00005804 67.16719055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -00005805 67.16722107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -00005806 67.16722107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -00005807 67.16724396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -00005808 67.16725159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -00005809 67.16727448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -00005810 67.16727448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -00005811 67.16730499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -00005812 67.16730499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -00005813 67.16733551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -00005814 67.16733551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -00005815 67.16735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb320 -00005816 67.16736603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb320 -00005817 67.16738892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb330 -00005818 67.16738892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb330 -00005819 67.16741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb340 -00005820 67.16742706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb340 -00005821 67.16744995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb350 -00005822 67.16744995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb350 -00005823 67.16747284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb360 -00005824 67.16747284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb360 -00005825 67.16751099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb370 -00005826 67.16751099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb370 -00005827 67.16753387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -00005828 67.16753387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -00005829 67.16755676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -00005830 67.16756439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -00005831 67.16758728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -00005832 67.16758728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -00005833 67.16761780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -00005834 67.16762543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -00005835 67.16764832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -00005836 67.16764832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -00005837 67.16767120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -00005838 67.16767883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -00005839 67.16770935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -00005840 67.16770935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -00005841 67.16773224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -00005842 67.16773224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -00005843 67.16775513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -00005844 67.16776276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -00005845 67.16778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -00005846 67.16778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -00005847 67.16781616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -00005848 67.16782379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -00005849 67.16784668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -00005850 67.16784668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -00005851 67.16786957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -00005852 67.16787720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -00005853 67.16790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -00005854 67.16790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -00005855 67.16793060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -00005856 67.16793823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -00005857 67.16796112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -00005858 67.16796112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -00005859 67.16798401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -00005860 67.16798401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -00005861 67.16801453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -00005862 67.16802216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -00005863 67.16804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -00005864 67.16804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -00005865 67.16806793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -00005866 67.16807556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -00005867 67.16810608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -00005868 67.16810608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -00005869 67.16812897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -00005870 67.16813660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -00005871 67.16815948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e0 -00005872 67.16815948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e0 -00005873 67.16818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f0 -00005874 67.16818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f0 -00005875 67.16821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb500 -00005876 67.16822052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb500 -00005877 67.16824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb510 -00005878 67.16824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb510 -00005879 67.16826630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb520 -00005880 67.16827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb520 -00005881 67.16830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb530 -00005882 67.16830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb530 -00005883 67.16832733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb540 -00005884 67.16833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb540 -00005885 67.16835785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb550 -00005886 67.16835785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb550 -00005887 67.16838074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb560 -00005888 67.16838074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb560 -00005889 67.16841125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb570 -00005890 67.16841888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb570 -00005891 67.16844177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb580 -00005892 67.16844177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb580 -00005893 67.16846466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb590 -00005894 67.16847229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb590 -00005895 67.16850281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a0 -00005896 67.16850281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a0 -00005897 67.16852570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b0 -00005898 67.16853333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b0 -00005899 67.16855621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c0 -00005900 67.16855621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c0 -00005901 67.16857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d0 -00005902 67.16858673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d0 -00005903 67.16861725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -00005904 67.16861725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -00005905 67.16864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -00005906 67.16864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -00005907 67.16866302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -00005908 67.16867065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -00005909 67.16870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -00005910 67.16870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -00005911 67.16872406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -00005912 67.16873169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -00005913 67.16875458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -00005914 67.16875458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -00005915 67.16877747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -00005916 67.16878510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -00005917 67.16881561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -00005918 67.16881561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -00005919 67.16883850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -00005920 67.16883850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -00005921 67.16886139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -00005922 67.16886902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -00005923 67.16889954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -00005924 67.16889954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -00005925 67.16892242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -00005926 67.16893005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -00005927 67.16895294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -00005928 67.16895294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -00005929 67.16897583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -00005930 67.16898346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -00005931 67.16901398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -00005932 67.16901398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -00005933 67.16903687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -00005934 67.16904449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -00005935 67.16906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -00005936 67.16906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -00005937 67.16909790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -00005938 67.16909790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -00005939 67.16912079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -00005940 67.16912842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -00005941 67.16915131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -00005942 67.16915131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -00005943 67.16917419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -00005944 67.16918182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -00005945 67.16921234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -00005946 67.16921234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -00005947 67.16923523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -00005948 67.16924286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb740 -00005949 67.16926575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -00005950 67.16926575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb750 -00005951 67.16929626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -00005952 67.16929626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb760 -00005953 67.16931915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -00005954 67.16932678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb770 -00005955 67.16934967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -00005956 67.16934967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb780 -00005957 67.16937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -00005958 67.16938019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb790 -00005959 67.16941071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -00005960 67.16941071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a0 -00005961 67.16943359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -00005962 67.16944122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b0 -00005963 67.16946411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -00005964 67.16946411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c0 -00005965 67.16949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -00005966 67.16949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d0 -00005967 67.16952515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -00005968 67.16952515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e0 -00005969 67.16954803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -00005970 67.16954803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f0 -00005971 67.16957092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -00005972 67.16957855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb800 -00005973 67.16960907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -00005974 67.16960907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb810 -00005975 67.16963196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -00005976 67.16963959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb820 -00005977 67.16966248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -00005978 67.16966248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb830 -00005979 67.16969299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -00005980 67.16969299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb840 -00005981 67.16972351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -00005982 67.16972351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb850 -00005983 67.16974640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -00005984 67.16974640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb860 -00005985 67.16976929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -00005986 67.16977692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb870 -00005987 67.16980743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -00005988 67.16980743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb880 -00005989 67.16983032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -00005990 67.16983795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb890 -00005991 67.16986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a0 -00005992 67.16986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a0 -00005993 67.16989136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b0 -00005994 67.16989136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b0 -00005995 67.16992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c0 -00005996 67.16992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c0 -00005997 67.16994476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d0 -00005998 67.16994476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d0 -00005999 67.16996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e0 -00006000 67.16997528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e0 -00006001 67.17000580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f0 -00006002 67.17000580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f0 -00006003 67.17002869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb900 -00006004 67.17003632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb900 -00006005 67.17005920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb910 -00006006 67.17005920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb910 -00006007 67.17008972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb920 -00006008 67.17008972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb920 -00006009 67.17012024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb930 -00006010 67.17012024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb930 -00006011 67.17014313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb940 -00006012 67.17014313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb940 -00006013 67.17016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb950 -00006014 67.17017365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb950 -00006015 67.17020416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb960 -00006016 67.17020416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb960 -00006017 67.17022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb970 -00006018 67.17023468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb970 -00006019 67.17025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb980 -00006020 67.17025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb980 -00006021 67.17028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb990 -00006022 67.17028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb990 -00006023 67.17031860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a0 -00006024 67.17031860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a0 -00006025 67.17034149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b0 -00006026 67.17034149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b0 -00006027 67.17036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c0 -00006028 67.17037201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c0 -00006029 67.17040253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d0 -00006030 67.17040253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d0 -00006031 67.17042542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e0 -00006032 67.17043304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e0 -00006033 67.17045593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f0 -00006034 67.17045593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f0 -00006035 67.17048645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba00 -00006036 67.17048645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba00 -00006037 67.17051697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba10 -00006038 67.17051697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba10 -00006039 67.17053986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba20 -00006040 67.17054749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba20 -00006041 67.17057037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba30 -00006042 67.17057037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba30 -00006043 67.17060089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba40 -00006044 67.17060089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba40 -00006045 67.17062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba50 -00006046 67.17063141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba50 -00006047 67.17065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba60 -00006048 67.17065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba60 -00006049 67.17068481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba70 -00006050 67.17068481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba70 -00006051 67.17071533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba80 -00006052 67.17071533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba80 -00006053 67.17073822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba90 -00006054 67.17074585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba90 -00006055 67.17076874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -00006056 67.17076874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa0 -00006057 67.17079926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -00006058 67.17079926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab0 -00006059 67.17082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -00006060 67.17082977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac0 -00006061 67.17085266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -00006062 67.17085266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad0 -00006063 67.17088318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -00006064 67.17088318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae0 -00006065 67.17091370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -00006066 67.17091370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf0 -00006067 67.17093658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -00006068 67.17094421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb00 -00006069 67.17096710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -00006070 67.17096710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb10 -00006071 67.17099762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -00006072 67.17099762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb20 -00006073 67.17102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -00006074 67.17102814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb30 -00006075 67.17105103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -00006076 67.17105103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb40 -00006077 67.17108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -00006078 67.17108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb50 -00006079 67.17111206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -00006080 67.17111206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb60 -00006081 67.17113495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -00006082 67.17114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb70 -00006083 67.17116547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -00006084 67.17116547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb80 -00006085 67.17119598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb90 -00006086 67.17119598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb90 -00006087 67.17121887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba0 -00006088 67.17122650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba0 -00006089 67.17124939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb0 -00006090 67.17124939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb0 -00006091 67.17127991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc0 -00006092 67.17127991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc0 -00006093 67.17131042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd0 -00006094 67.17131042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd0 -00006095 67.17133331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe0 -00006096 67.17134094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe0 -00006097 67.17136383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf0 -00006098 67.17136383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf0 -00006099 67.17139435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc00 -00006100 67.17139435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc00 -00006101 67.17141724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc10 -00006102 67.17142487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc10 -00006103 67.17144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc20 -00006104 67.17144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc20 -00006105 67.17147827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc30 -00006106 67.17147827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc30 -00006107 67.17150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc40 -00006108 67.17150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc40 -00006109 67.17153168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc50 -00006110 67.17153931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc50 -00006111 67.17156219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc60 -00006112 67.17156219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc60 -00006113 67.17159271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc70 -00006114 67.17160034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc70 -00006115 67.17162323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc80 -00006116 67.17162323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc80 -00006117 67.17164612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc90 -00006118 67.17164612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc90 -00006119 67.17167664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca0 -00006120 67.17167664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca0 -00006121 67.17170715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -00006122 67.17170715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -00006123 67.17173004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -00006124 67.17173767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -00006125 67.17176056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -00006126 67.17176056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -00006127 67.17179108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -00006128 67.17179871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -00006129 67.17182159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -00006130 67.17182159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -00006131 67.17184448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -00006132 67.17184448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -00006133 67.17187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -00006134 67.17187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -00006135 67.17190552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -00006136 67.17190552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -00006137 67.17192841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -00006138 67.17193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -00006139 67.17195892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -00006140 67.17195892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -00006141 67.17198944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -00006142 67.17199707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -00006143 67.17201996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd60 -00006144 67.17201996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd60 -00006145 67.17204285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd70 -00006146 67.17204285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd70 -00006147 67.17207336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd80 -00006148 67.17207336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd80 -00006149 67.17210388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd90 -00006150 67.17210388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd90 -00006151 67.17212677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda0 -00006152 67.17213440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda0 -00006153 67.17215729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb0 -00006154 67.17215729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb0 -00006155 67.17218781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc0 -00006156 67.17219543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc0 -00006157 67.17221832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd0 -00006158 67.17221832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd0 -00006159 67.17224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde0 -00006160 67.17224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde0 -00006161 67.17227173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf0 -00006162 67.17227173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf0 -00006163 67.17230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe00 -00006164 67.17230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe00 -00006165 67.17232513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe10 -00006166 67.17233276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe10 -00006167 67.17235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe20 -00006168 67.17235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe20 -00006169 67.17238617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe30 -00006170 67.17239380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe30 -00006171 67.17241669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe40 -00006172 67.17241669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe40 -00006173 67.17243958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe50 -00006174 67.17243958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe50 -00006175 67.17247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe60 -00006176 67.17247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe60 -00006177 67.17250061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe70 -00006178 67.17250061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe70 -00006179 67.17252350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe80 -00006180 67.17253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe80 -00006181 67.17255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe90 -00006182 67.17255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe90 -00006183 67.17258453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea0 -00006184 67.17259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea0 -00006185 67.17261505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb0 -00006186 67.17261505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb0 -00006187 67.17263794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec0 -00006188 67.17264557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec0 -00006189 67.17266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed0 -00006190 67.17266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed0 -00006191 67.17269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee0 -00006192 67.17269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee0 -00006193 67.17272186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef0 -00006194 67.17272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef0 -00006195 67.17275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf00 -00006196 67.17275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf00 -00006197 67.17278290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf10 -00006198 67.17279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf10 -00006199 67.17281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf20 -00006200 67.17281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf20 -00006201 67.17283630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf30 -00006202 67.17284393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf30 -00006203 67.17286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf40 -00006204 67.17286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf40 -00006205 67.17289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf50 -00006206 67.17289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf50 -00006207 67.17292023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf60 -00006208 67.17292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf60 -00006209 67.17295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf70 -00006210 67.17295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf70 -00006211 67.17298126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf80 -00006212 67.17298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf80 -00006213 67.17301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf90 -00006214 67.17301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf90 -00006215 67.17303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa0 -00006216 67.17304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa0 -00006217 67.17306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb0 -00006218 67.17306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb0 -00006219 67.17309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc0 -00006220 67.17309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc0 -00006221 67.17311859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd0 -00006222 67.17312622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd0 -00006223 67.17314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe0 -00006224 67.17314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe0 -00006225 67.17317963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff0 -00006226 67.17318726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff0 -00006227 67.17321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc000 -00006228 67.17321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc000 -00006229 67.17323303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc010 -00006230 67.17324066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc010 -00006231 67.17326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc020 -00006232 67.17326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc020 -00006233 67.17329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc030 -00006234 67.17329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc030 -00006235 67.17331696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc040 -00006236 67.17332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc040 -00006237 67.17334747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc050 -00006238 67.17334747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc050 -00006239 67.17337799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc060 -00006240 67.17338562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc060 -00006241 67.17340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -00006242 67.17340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -00006243 67.17343140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -00006244 67.17343903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -00006245 67.17346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -00006246 67.17346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -00006247 67.17349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -00006248 67.17350006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -00006249 67.17352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -00006250 67.17352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -00006251 67.17354584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -00006252 67.17354584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -00006253 67.17357635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -00006254 67.17358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -00006255 67.17360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -00006256 67.17360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -00006257 67.17362976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -00006258 67.17363739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -00006259 67.17366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -00006260 67.17366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -00006261 67.17369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -00006262 67.17369843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -00006263 67.17372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -00006264 67.17372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -00006265 67.17374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -00006266 67.17374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -00006267 67.17377472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -00006268 67.17378235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -00006269 67.17380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -00006270 67.17380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -00006271 67.17382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -00006272 67.17383575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -00006273 67.17385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -00006274 67.17385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -00006275 67.17388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -00006276 67.17389679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -00006277 67.17391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -00006278 67.17391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -00006279 67.17394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -00006280 67.17395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -00006281 67.17398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -00006282 67.17398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -00006283 67.17400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -00006284 67.17400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -00006285 67.17402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d0 -00006286 67.17403412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d0 -00006287 67.17405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e0 -00006288 67.17405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e0 -00006289 67.17408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f0 -00006290 67.17409515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f0 -00006291 67.17411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc200 -00006292 67.17411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc200 -00006293 67.17414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc210 -00006294 67.17414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc210 -00006295 67.17417145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -00006296 67.17417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -00006297 67.17420197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -00006298 67.17420197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -00006299 67.17422485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -00006300 67.17423248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -00006301 67.17426300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -00006302 67.17426300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -00006303 67.17428589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -00006304 67.17429352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -00006305 67.17431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -00006306 67.17431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -00006307 67.17433929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -00006308 67.17434692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -00006309 67.17437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -00006310 67.17437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -00006311 67.17440033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -00006312 67.17440796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -00006313 67.17443085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -00006314 67.17443085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -00006315 67.17446136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -00006316 67.17446136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -00006317 67.17449188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -00006318 67.17449188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -00006319 67.17451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -00006320 67.17452240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -00006321 67.17454529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -00006322 67.17454529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -00006323 67.17457581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -00006324 67.17457581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -00006325 67.17460632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -00006326 67.17460632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -00006327 67.17462921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -00006328 67.17463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -00006329 67.17465973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -00006330 67.17465973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -00006331 67.17469025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -00006332 67.17469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -00006333 67.17472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -00006334 67.17472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -00006335 67.17474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -00006336 67.17474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -00006337 67.17477417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -00006338 67.17477417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -00006339 67.17480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc380 -00006340 67.17480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc380 -00006341 67.17482758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc390 -00006342 67.17483521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc390 -00006343 67.17485809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a0 -00006344 67.17485809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a0 -00006345 67.17488861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b0 -00006346 67.17489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b0 -00006347 67.17491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -00006348 67.17491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -00006349 67.17494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -00006350 67.17494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -00006351 67.17497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -00006352 67.17497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -00006353 67.17500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -00006354 67.17500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -00006355 67.17502594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -00006356 67.17503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -00006357 67.17505646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -00006358 67.17505646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -00006359 67.17508698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -00006360 67.17509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -00006361 67.17511749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -00006362 67.17511749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -00006363 67.17514038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -00006364 67.17514801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -00006365 67.17517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -00006366 67.17517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -00006367 67.17520142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc460 -00006368 67.17520142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc460 -00006369 67.17522430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc470 -00006370 67.17523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc470 -00006371 67.17525482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc480 -00006372 67.17525482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc480 -00006373 67.17528534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc490 -00006374 67.17529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc490 -00006375 67.17531586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a0 -00006376 67.17531586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a0 -00006377 67.17533875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b0 -00006378 67.17534637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b0 -00006379 67.17536926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c0 -00006380 67.17536926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c0 -00006381 67.17539978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d0 -00006382 67.17539978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d0 -00006383 67.17542267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e0 -00006384 67.17543030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e0 -00006385 67.17545319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f0 -00006386 67.17545319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f0 -00006387 67.17548370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc500 -00006388 67.17549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc500 -00006389 67.17551422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc510 -00006390 67.17551422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc510 -00006391 67.17553711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc520 -00006392 67.17554474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc520 -00006393 67.17556763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc530 -00006394 67.17556763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc530 -00006395 67.17559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc540 -00006396 67.17560577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc540 -00006397 67.17562866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc550 -00006398 67.17562866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc550 -00006399 67.17565155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc560 -00006400 67.17565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc560 -00006401 67.17568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc570 -00006402 67.17568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc570 -00006403 67.17571259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc580 -00006404 67.17571259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc580 -00006405 67.17573547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -00006406 67.17574310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -00006407 67.17576599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -00006408 67.17576599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -00006409 67.17579651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -00006410 67.17580414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -00006411 67.17582703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -00006412 67.17582703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -00006413 67.17584991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -00006414 67.17585754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -00006415 67.17588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -00006416 67.17588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -00006417 67.17591095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -00006418 67.17591095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -00006419 67.17593384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -00006420 67.17594147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -00006421 67.17596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -00006422 67.17596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -00006423 67.17599487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -00006424 67.17600250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -00006425 67.17602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -00006426 67.17602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -00006427 67.17604828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc640 -00006428 67.17605591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc640 -00006429 67.17608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc650 -00006430 67.17608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc650 -00006431 67.17610931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc660 -00006432 67.17610931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc660 -00006433 67.17613220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc670 -00006434 67.17613983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc670 -00006435 67.17616272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc680 -00006436 67.17616272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc680 -00006437 67.17619324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc690 -00006438 67.17620087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc690 -00006439 67.17622375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a0 -00006440 67.17622375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a0 -00006441 67.17624664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b0 -00006442 67.17625427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b0 -00006443 67.17628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c0 -00006444 67.17628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c0 -00006445 67.17630768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d0 -00006446 67.17631531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d0 -00006447 67.17633820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e0 -00006448 67.17633820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e0 -00006449 67.17636108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f0 -00006450 67.17636871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f0 -00006451 67.17639923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc700 -00006452 67.17639923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc700 -00006453 67.17642212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc710 -00006454 67.17642212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc710 -00006455 67.17644501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -00006456 67.17645264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -00006457 67.17648315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -00006458 67.17648315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -00006459 67.17650604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -00006460 67.17651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -00006461 67.17653656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -00006462 67.17653656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -00006463 67.17655945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -00006464 67.17656708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -00006465 67.17659760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -00006466 67.17659760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -00006467 67.17662048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -00006468 67.17662811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -00006469 67.17665100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -00006470 67.17665100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -00006471 67.17668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -00006472 67.17668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -00006473 67.17670441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -00006474 67.17671204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -00006475 67.17673492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -00006476 67.17673492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -00006477 67.17675781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d0 -00006478 67.17676544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d0 -00006479 67.17679596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e0 -00006480 67.17679596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e0 -00006481 67.17681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f0 -00006482 67.17682648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f0 -00006483 67.17684937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc800 -00006484 67.17684937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc800 -00006485 67.17687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc810 -00006486 67.17687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc810 -00006487 67.17691040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc820 -00006488 67.17691040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc820 -00006489 67.17693329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc830 -00006490 67.17693329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc830 -00006491 67.17696381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc840 -00006492 67.17696381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc840 -00006493 67.17699432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc850 -00006494 67.17699432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc850 -00006495 67.17701721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc860 -00006496 67.17702484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc860 -00006497 67.17704773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc870 -00006498 67.17704773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc870 -00006499 67.17707825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc880 -00006500 67.17707825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc880 -00006501 67.17710876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc890 -00006502 67.17710876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc890 -00006503 67.17713165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a0 -00006504 67.17713928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a0 -00006505 67.17716217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b0 -00006506 67.17716217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b0 -00006507 67.17719269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c0 -00006508 67.17720032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c0 -00006509 67.17722321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d0 -00006510 67.17722321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d0 -00006511 67.17724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e0 -00006512 67.17724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e0 -00006513 67.17727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f0 -00006514 67.17727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f0 -00006515 67.17730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc900 -00006516 67.17730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc900 -00006517 67.17733002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc910 -00006518 67.17733765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc910 -00006519 67.17736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc920 -00006520 67.17736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc920 -00006521 67.17739105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc930 -00006522 67.17739868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc930 -00006523 67.17742157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc940 -00006524 67.17742157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc940 -00006525 67.17744446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc950 -00006526 67.17744446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc950 -00006527 67.17747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc960 -00006528 67.17747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc960 -00006529 67.17750549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc970 -00006530 67.17751312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc970 -00006531 67.17753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc980 -00006532 67.17753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc980 -00006533 67.17755890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc990 -00006534 67.17756653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc990 -00006535 67.17759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a0 -00006536 67.17759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a0 -00006537 67.17761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b0 -00006538 67.17761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b0 -00006539 67.17764282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c0 -00006540 67.17765045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c0 -00006541 67.17767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d0 -00006542 67.17767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d0 -00006543 67.17770386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e0 -00006544 67.17771149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e0 -00006545 67.17773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f0 -00006546 67.17773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f0 -00006547 67.17775726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca00 -00006548 67.17776489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca00 -00006549 67.17779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca10 -00006550 67.17779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca10 -00006551 67.17781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca20 -00006552 67.17781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca20 -00006553 67.17784119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca30 -00006554 67.17784882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca30 -00006555 67.17787170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca40 -00006556 67.17787170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca40 -00006557 67.17790222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -00006558 67.17790985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -00006559 67.17793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -00006560 67.17793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -00006561 67.17795563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -00006562 67.17796326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -00006563 67.17799377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -00006564 67.17799377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -00006565 67.17801666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -00006566 67.17802429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -00006567 67.17804718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -00006568 67.17804718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -00006569 67.17807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -00006570 67.17807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -00006571 67.17810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -00006572 67.17810822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -00006573 67.17813110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -00006574 67.17813110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -00006575 67.17815399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -00006576 67.17816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -00006577 67.17819214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -00006578 67.17819214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -00006579 67.17821503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb00 -00006580 67.17822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb00 -00006581 67.17824554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb10 -00006582 67.17824554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb10 -00006583 67.17826843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb20 -00006584 67.17827606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb20 -00006585 67.17830658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb30 -00006586 67.17830658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb30 -00006587 67.17832947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb40 -00006588 67.17832947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb40 -00006589 67.17835236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb50 -00006590 67.17835999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb50 -00006591 67.17839050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb60 -00006592 67.17839050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb60 -00006593 67.17841339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb70 -00006594 67.17842102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb70 -00006595 67.17844391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb80 -00006596 67.17844391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb80 -00006597 67.17846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb90 -00006598 67.17847443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb90 -00006599 67.17850494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba0 -00006600 67.17850494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba0 -00006601 67.17852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb0 -00006602 67.17852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb0 -00006603 67.17855072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc0 -00006604 67.17855835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc0 -00006605 67.17858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd0 -00006606 67.17858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd0 -00006607 67.17861176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe0 -00006608 67.17861938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe0 -00006609 67.17864227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf0 -00006610 67.17864227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf0 -00006611 67.17866516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc00 -00006612 67.17867279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc00 -00006613 67.17870331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc10 -00006614 67.17870331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc10 -00006615 67.17872620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc20 -00006616 67.17872620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc20 -00006617 67.17874908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc30 -00006618 67.17875671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc30 -00006619 67.17878723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc40 -00006620 67.17878723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc40 -00006621 67.17881012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc50 -00006622 67.17881775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc50 -00006623 67.17884064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc60 -00006624 67.17884064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc60 -00006625 67.17886353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc70 -00006626 67.17887115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc70 -00006627 67.17890167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc80 -00006628 67.17890167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc80 -00006629 67.17892456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -00006630 67.17893219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -00006631 67.17895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -00006632 67.17895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -00006633 67.17898560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -00006634 67.17898560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -00006635 67.17900848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -00006636 67.17901611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -00006637 67.17903900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -00006638 67.17903900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -00006639 67.17906189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -00006640 67.17906952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -00006641 67.17910004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -00006642 67.17910004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -00006643 67.17912292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -00006644 67.17913055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -00006645 67.17915344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -00006646 67.17915344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -00006647 67.17918396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -00006648 67.17918396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -00006649 67.17920685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -00006650 67.17921448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -00006651 67.17923737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd40 -00006652 67.17923737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd40 -00006653 67.17926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd50 -00006654 67.17926788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd50 -00006655 67.17929840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd60 -00006656 67.17929840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd60 -00006657 67.17932129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd70 -00006658 67.17932892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd70 -00006659 67.17935181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd80 -00006660 67.17935181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd80 -00006661 67.17938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd90 -00006662 67.17938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd90 -00006663 67.17941284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda0 -00006664 67.17941284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda0 -00006665 67.17943573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb0 -00006666 67.17943573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb0 -00006667 67.17945862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc0 -00006668 67.17946625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc0 -00006669 67.17949677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd0 -00006670 67.17949677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd0 -00006671 67.17951965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde0 -00006672 67.17952728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde0 -00006673 67.17955017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf0 -00006674 67.17955017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf0 -00006675 67.17958069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce00 -00006676 67.17958069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce00 -00006677 67.17961121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce10 -00006678 67.17961121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce10 -00006679 67.17963409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce20 -00006680 67.17963409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce20 -00006681 67.17966461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -00006682 67.17966461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -00006683 67.17969513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -00006684 67.17969513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -00006685 67.17971802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -00006686 67.17972565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -00006687 67.17974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -00006688 67.17974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -00006689 67.17977905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -00006690 67.17977905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -00006691 67.17980194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -00006692 67.17980957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -00006693 67.17983246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -00006694 67.17983246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -00006695 67.17986298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -00006696 67.17986298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -00006697 67.17989349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -00006698 67.17989349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -00006699 67.17991638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -00006700 67.17992401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -00006701 67.17994690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -00006702 67.17994690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -00006703 67.17997742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee0 -00006704 67.17997742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee0 -00006705 67.18000793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef0 -00006706 67.18000793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef0 -00006707 67.18003082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf00 -00006708 67.18003845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf00 -00006709 67.18006134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf10 -00006710 67.18006134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf10 -00006711 67.18009186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf20 -00006712 67.18009949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf20 -00006713 67.18012238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf30 -00006714 67.18012238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf30 -00006715 67.18014526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf40 -00006716 67.18015289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf40 -00006717 67.18017578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf50 -00006718 67.18017578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf50 -00006719 67.18020630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf60 -00006720 67.18020630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf60 -00006721 67.18022919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf70 -00006722 67.18023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf70 -00006723 67.18025970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf80 -00006724 67.18025970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf80 -00006725 67.18029022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf90 -00006726 67.18029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf90 -00006727 67.18032074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa0 -00006728 67.18032074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa0 -00006729 67.18034363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb0 -00006730 67.18035126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb0 -00006731 67.18037415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc0 -00006732 67.18037415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc0 -00006733 67.18040466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd0 -00006734 67.18040466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd0 -00006735 67.18042755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe0 -00006736 67.18043518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe0 -00006737 67.18045807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff0 -00006738 67.18045807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff0 -00006739 67.18048859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd000 -00006740 67.18049622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd000 -00006741 67.18051910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd010 -00006742 67.18051910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd010 -00006743 67.18054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd020 -00006744 67.18054962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd020 -00006745 67.18057251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd030 -00006746 67.18057251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd030 -00006747 67.18060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd040 -00006748 67.18061066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd040 -00006749 67.18063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd050 -00006750 67.18063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd050 -00006751 67.18065643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd060 -00006752 67.18065643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd060 -00006753 67.18068695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd070 -00006754 67.18069458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd070 -00006755 67.18071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd080 -00006756 67.18071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd080 -00006757 67.18074036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd090 -00006758 67.18074799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd090 -00006759 67.18077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a0 -00006760 67.18077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a0 -00006761 67.18080139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b0 -00006762 67.18080902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b0 -00006763 67.18083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c0 -00006764 67.18083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c0 -00006765 67.18085480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d0 -00006766 67.18086243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d0 -00006767 67.18089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e0 -00006768 67.18089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e0 -00006769 67.18091583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f0 -00006770 67.18091583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f0 -00006771 67.18093872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd100 -00006772 67.18094635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd100 -00006773 67.18096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd110 -00006774 67.18096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd110 -00006775 67.18099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd120 -00006776 67.18100739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd120 -00006777 67.18103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -00006778 67.18103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -00006779 67.18105316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -00006780 67.18106079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -00006781 67.18109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -00006782 67.18109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -00006783 67.18111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -00006784 67.18111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -00006785 67.18113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -00006786 67.18114471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -00006787 67.18116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -00006788 67.18116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -00006789 67.18119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -00006790 67.18120575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -00006791 67.18122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -00006792 67.18122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -00006793 67.18125153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -00006794 67.18125916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -00006795 67.18128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -00006796 67.18128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -00006797 67.18131256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -00006798 67.18131256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -00006799 67.18133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -00006800 67.18134308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -00006801 67.18136597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -00006802 67.18136597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -00006803 67.18139648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -00006804 67.18140411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -00006805 67.18142700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -00006806 67.18142700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -00006807 67.18144989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -00006808 67.18145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -00006809 67.18148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -00006810 67.18148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -00006811 67.18151093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -00006812 67.18151093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -00006813 67.18153381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -00006814 67.18154144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -00006815 67.18156433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -00006816 67.18156433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -00006817 67.18159485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -00006818 67.18160248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -00006819 67.18162537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -00006820 67.18162537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -00006821 67.18164825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -00006822 67.18165588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -00006823 67.18168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -00006824 67.18168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -00006825 67.18170929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -00006826 67.18170929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -00006827 67.18173218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -00006828 67.18173981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -00006829 67.18176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -00006830 67.18176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d0 -00006831 67.18179321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e0 -00006832 67.18180084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e0 -00006833 67.18182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f0 -00006834 67.18182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f0 -00006835 67.18184662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd300 -00006836 67.18185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd300 -00006837 67.18188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd310 -00006838 67.18188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd310 -00006839 67.18190765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd320 -00006840 67.18191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd320 -00006841 67.18193817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd330 -00006842 67.18193817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd330 -00006843 67.18196106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd340 -00006844 67.18196869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd340 -00006845 67.18199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd350 -00006846 67.18199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd350 -00006847 67.18202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd360 -00006848 67.18202972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd360 -00006849 67.18205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd370 -00006850 67.18205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd370 -00006851 67.18208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd380 -00006852 67.18208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd380 -00006853 67.18211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd390 -00006854 67.18211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd390 -00006855 67.18213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a0 -00006856 67.18213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a0 -00006857 67.18215942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b0 -00006858 67.18216705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b0 -00006859 67.18218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c0 -00006860 67.18219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c0 -00006861 67.18222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d0 -00006862 67.18222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d0 -00006863 67.18224335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e0 -00006864 67.18224335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e0 -00006865 67.18227386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f0 -00006866 67.18228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f0 -00006867 67.18229675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd400 -00006868 67.18230438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd400 -00006869 67.18232727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd410 -00006870 67.18232727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd410 -00006871 67.18235779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd420 -00006872 67.18235779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd420 -00006873 67.18238068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd430 -00006874 67.18238831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd430 -00006875 67.18240356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd440 -00006876 67.18241119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd440 -00006877 67.18244171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd450 -00006878 67.18244171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd450 -00006879 67.18246460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd460 -00006880 67.18246460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd460 -00006881 67.18248749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd470 -00006882 67.18249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd470 -00006883 67.18251801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd480 -00006884 67.18251801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd480 -00006885 67.18254852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd490 -00006886 67.18254852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd490 -00006887 67.18257141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a0 -00006888 67.18257141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a0 -00006889 67.18260193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b0 -00006890 67.18260193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b0 -00006891 67.18262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -00006892 67.18263245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -00006893 67.18265533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -00006894 67.18265533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -00006895 67.18267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -00006896 67.18267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -00006897 67.18270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -00006898 67.18271637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -00006899 67.18273163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -00006900 67.18273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -00006901 67.18276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -00006902 67.18276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -00006903 67.18279266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -00006904 67.18280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -00006905 67.18282318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -00006906 67.18282318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -00006907 67.18285370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -00006908 67.18286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -00006909 67.18288422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -00006910 67.18288422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -00006911 67.18291473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -00006912 67.18291473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -00006913 67.18294525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -00006914 67.18295288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -00006915 67.18297577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -00006916 67.18297577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -00006917 67.18299866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -00006918 67.18300629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -00006919 67.18303680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -00006920 67.18303680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -00006921 67.18305969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -00006922 67.18305969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -00006923 67.18309021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -00006924 67.18309021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -00006925 67.18311310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -00006926 67.18311310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -00006927 67.18314362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -00006928 67.18315125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -00006929 67.18317413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -00006930 67.18317413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -00006931 67.18319702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -00006932 67.18320465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -00006933 67.18323517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -00006934 67.18323517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -00006935 67.18325806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd620 -00006936 67.18326569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd620 -00006937 67.18328857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd630 -00006938 67.18328857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd630 -00006939 67.18331146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd640 -00006940 67.18331909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd640 -00006941 67.18334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd650 -00006942 67.18334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd650 -00006943 67.18337250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd660 -00006944 67.18337250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd660 -00006945 67.18339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd670 -00006946 67.18339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd670 -00006947 67.18342590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd680 -00006948 67.18343353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd680 -00006949 67.18344879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd690 -00006950 67.18345642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd690 -00006951 67.18347931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a0 -00006952 67.18347931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a0 -00006953 67.18350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b0 -00006954 67.18350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b0 -00006955 67.18353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c0 -00006956 67.18354034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c0 -00006957 67.18355560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d0 -00006958 67.18356323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d0 -00006959 67.18359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e0 -00006960 67.18359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e0 -00006961 67.18361664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f0 -00006962 67.18361664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f0 -00006963 67.18364716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd700 -00006964 67.18364716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd700 -00006965 67.18367004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd710 -00006966 67.18367767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd710 -00006967 67.18370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd720 -00006968 67.18370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd720 -00006969 67.18373108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd730 -00006970 67.18373871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd730 -00006971 67.18376160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd740 -00006972 67.18376160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd740 -00006973 67.18379211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd750 -00006974 67.18379211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd750 -00006975 67.18381500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd760 -00006976 67.18382263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd760 -00006977 67.18384552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd770 -00006978 67.18385315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd770 -00006979 67.18387604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd780 -00006980 67.18387604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd780 -00006981 67.18390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd790 -00006982 67.18390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd790 -00006983 67.18392944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a0 -00006984 67.18393707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a0 -00006985 67.18395233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b0 -00006986 67.18395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b0 -00006987 67.18399048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c0 -00006988 67.18399048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c0 -00006989 67.18402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d0 -00006990 67.18402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d0 -00006991 67.18404388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e0 -00006992 67.18405151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e0 -00006993 67.18407440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f0 -00006994 67.18407440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f0 -00006995 67.18410492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd800 -00006996 67.18410492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd800 -00006997 67.18412781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd810 -00006998 67.18413544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd810 -00006999 67.18415833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd820 -00007000 67.18416595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd820 -00007001 67.18418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd830 -00007002 67.18418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd830 -00007003 67.18421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd840 -00007004 67.18421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd840 -00007005 67.18424225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd850 -00007006 67.18424225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd850 -00007007 67.18426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd860 -00007008 67.18427277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd860 -00007009 67.18429565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd870 -00007010 67.18430328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd870 -00007011 67.18432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd880 -00007012 67.18432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd880 -00007013 67.18434906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd890 -00007014 67.18434906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd890 -00007015 67.18437958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a0 -00007016 67.18438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a0 -00007017 67.18441010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b0 -00007018 67.18441010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b0 -00007019 67.18443298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c0 -00007020 67.18443298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c0 -00007021 67.18446350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d0 -00007022 67.18446350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d0 -00007023 67.18448639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e0 -00007024 67.18449402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e0 -00007025 67.18451691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f0 -00007026 67.18451691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f0 -00007027 67.18454742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd900 -00007028 67.18454742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd900 -00007029 67.18457794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd910 -00007030 67.18457794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd910 -00007031 67.18460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd920 -00007032 67.18460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd920 -00007033 67.18462372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd930 -00007034 67.18463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd930 -00007035 67.18466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd940 -00007036 67.18466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd940 -00007037 67.18468475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd950 -00007038 67.18469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd950 -00007039 67.18471527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd960 -00007040 67.18471527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd960 -00007041 67.18474579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd970 -00007042 67.18474579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd970 -00007043 67.18477631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd980 -00007044 67.18477631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd980 -00007045 67.18479919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd990 -00007046 67.18479919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd990 -00007047 67.18482208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -00007048 67.18482971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a0 -00007049 67.18486023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -00007050 67.18486023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b0 -00007051 67.18488312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -00007052 67.18489075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c0 -00007053 67.18491364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -00007054 67.18491364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d0 -00007055 67.18494415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -00007056 67.18494415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e0 -00007057 67.18497467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -00007058 67.18497467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f0 -00007059 67.18499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -00007060 67.18500519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda00 -00007061 67.18502808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -00007062 67.18502808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda10 -00007063 67.18505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -00007064 67.18505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda20 -00007065 67.18508911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -00007066 67.18508911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda30 -00007067 67.18511200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -00007068 67.18511200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda40 -00007069 67.18514252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -00007070 67.18514252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda50 -00007071 67.18517303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -00007072 67.18517303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda60 -00007073 67.18519592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -00007074 67.18520355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda70 -00007075 67.18522644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -00007076 67.18522644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda80 -00007077 67.18525696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -00007078 67.18526459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda90 -00007079 67.18528748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -00007080 67.18528748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa0 -00007081 67.18531036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -00007082 67.18531036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab0 -00007083 67.18534088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -00007084 67.18534088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac0 -00007085 67.18537140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -00007086 67.18537140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad0 -00007087 67.18539429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -00007088 67.18540192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae0 -00007089 67.18542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -00007090 67.18542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf0 -00007091 67.18545532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb00 -00007092 67.18546295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb00 -00007093 67.18548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb10 -00007094 67.18548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb10 -00007095 67.18550873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb20 -00007096 67.18550873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb20 -00007097 67.18553925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb30 -00007098 67.18553925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb30 -00007099 67.18556213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb40 -00007100 67.18556976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb40 -00007101 67.18559265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb50 -00007102 67.18559265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb50 -00007103 67.18561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb60 -00007104 67.18561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb60 -00007105 67.18564606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb70 -00007106 67.18565369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb70 -00007107 67.18566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb80 -00007108 67.18567657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb80 -00007109 67.18569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -00007110 67.18569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -00007111 67.18572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -00007112 67.18572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -00007113 67.18575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -00007114 67.18576050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -00007115 67.18577576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -00007116 67.18578339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -00007117 67.18581390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -00007118 67.18581390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -00007119 67.18583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -00007120 67.18583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -00007121 67.18585968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -00007122 67.18586731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -00007123 67.18589020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -00007124 67.18589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -00007125 67.18592072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -00007126 67.18592072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -00007127 67.18594360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -00007128 67.18594360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -00007129 67.18597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -00007130 67.18597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -00007131 67.18599701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc40 -00007132 67.18600464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc40 -00007133 67.18602753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc50 -00007134 67.18602753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc50 -00007135 67.18605804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc60 -00007136 67.18605804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc60 -00007137 67.18608093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc70 -00007138 67.18608093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc70 -00007139 67.18610382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc80 -00007140 67.18611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc80 -00007141 67.18613434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc90 -00007142 67.18613434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc90 -00007143 67.18616486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca0 -00007144 67.18616486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca0 -00007145 67.18618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb0 -00007146 67.18618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb0 -00007147 67.18621063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc0 -00007148 67.18621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc0 -00007149 67.18624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd0 -00007150 67.18624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd0 -00007151 67.18627167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce0 -00007152 67.18627167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce0 -00007153 67.18629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf0 -00007154 67.18629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf0 -00007155 67.18632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd00 -00007156 67.18633270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd00 -00007157 67.18635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd10 -00007158 67.18635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd10 -00007159 67.18637848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd20 -00007160 67.18637848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd20 -00007161 67.18640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd30 -00007162 67.18640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd30 -00007163 67.18643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd40 -00007164 67.18643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd40 -00007165 67.18645477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd50 -00007166 67.18646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd50 -00007167 67.18649292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd60 -00007168 67.18649292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd60 -00007169 67.18651581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd70 -00007170 67.18651581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd70 -00007171 67.18653870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd80 -00007172 67.18654633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd80 -00007173 67.18656921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd90 -00007174 67.18656921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd90 -00007175 67.18659973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda0 -00007176 67.18659973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda0 -00007177 67.18662262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb0 -00007178 67.18662262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb0 -00007179 67.18665314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc0 -00007180 67.18665314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc0 -00007181 67.18667603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd0 -00007182 67.18668365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd0 -00007183 67.18670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde0 -00007184 67.18670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde0 -00007185 67.18672943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf0 -00007186 67.18672943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf0 -00007187 67.18675995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde00 -00007188 67.18676758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde00 -00007189 67.18678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde10 -00007190 67.18679047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde10 -00007191 67.18681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde20 -00007192 67.18681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde20 -00007193 67.18684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde30 -00007194 67.18684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde30 -00007195 67.18686676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde40 -00007196 67.18687439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde40 -00007197 67.18688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde50 -00007198 67.18689728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde50 -00007199 67.18692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde60 -00007200 67.18692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde60 -00007201 67.18695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde70 -00007202 67.18695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde70 -00007203 67.18698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde80 -00007204 67.18698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde80 -00007205 67.18701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -00007206 67.18701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xde90 -00007207 67.18703461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -00007208 67.18704224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea0 -00007209 67.18706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -00007210 67.18706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb0 -00007211 67.18708801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -00007212 67.18709564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec0 -00007213 67.18712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -00007214 67.18712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xded0 -00007215 67.18714905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -00007216 67.18715668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee0 -00007217 67.18717957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -00007218 67.18717957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef0 -00007219 67.18721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -00007220 67.18721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf00 -00007221 67.18724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -00007222 67.18724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf10 -00007223 67.18726349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -00007224 67.18726349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf20 -00007225 67.18728638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -00007226 67.18729401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf30 -00007227 67.18732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -00007228 67.18732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf40 -00007229 67.18735504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -00007230 67.18735504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf50 -00007231 67.18737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -00007232 67.18737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf60 -00007233 67.18740845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -00007234 67.18740845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf70 -00007235 67.18743134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -00007236 67.18743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf80 -00007237 67.18746185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -00007238 67.18746185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf90 -00007239 67.18748474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -00007240 67.18749237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa0 -00007241 67.18752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -00007242 67.18752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb0 -00007243 67.18754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -00007244 67.18755341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc0 -00007245 67.18757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -00007246 67.18757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd0 -00007247 67.18760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -00007248 67.18760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe0 -00007249 67.18763733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff0 -00007250 67.18763733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff0 -00007251 67.18766022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe000 -00007252 67.18766022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe000 -00007253 67.18769073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe010 -00007254 67.18769073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe010 -00007255 67.18772125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe020 -00007256 67.18772125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe020 -00007257 67.18774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe030 -00007258 67.18775177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe030 -00007259 67.18777466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe040 -00007260 67.18777466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe040 -00007261 67.18780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe050 -00007262 67.18780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe050 -00007263 67.18783569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe060 -00007264 67.18783569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe060 -00007265 67.18785858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe070 -00007266 67.18786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe070 -00007267 67.18788910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe080 -00007268 67.18788910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe080 -00007269 67.18791962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe090 -00007270 67.18791962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe090 -00007271 67.18795013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a0 -00007272 67.18795013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a0 -00007273 67.18797302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b0 -00007274 67.18797302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b0 -00007275 67.18800354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c0 -00007276 67.18800354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c0 -00007277 67.18803406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d0 -00007278 67.18803406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d0 -00007279 67.18805695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e0 -00007280 67.18806458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e0 -00007281 67.18808746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f0 -00007282 67.18808746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f0 -00007283 67.18811798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe100 -00007284 67.18811798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe100 -00007285 67.18814850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe110 -00007286 67.18814850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe110 -00007287 67.18817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe120 -00007288 67.18817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe120 -00007289 67.18820190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe130 -00007290 67.18820190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe130 -00007291 67.18823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe140 -00007292 67.18823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe140 -00007293 67.18825531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe150 -00007294 67.18826294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe150 -00007295 67.18828583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe160 -00007296 67.18828583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe160 -00007297 67.18831635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe170 -00007298 67.18831635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe170 -00007299 67.18834686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe180 -00007300 67.18834686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe180 -00007301 67.18836975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe190 -00007302 67.18837738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe190 -00007303 67.18840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a0 -00007304 67.18840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a0 -00007305 67.18843079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b0 -00007306 67.18843842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b0 -00007307 67.18846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c0 -00007308 67.18846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c0 -00007309 67.18848419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d0 -00007310 67.18848419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d0 -00007311 67.18851471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e0 -00007312 67.18851471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e0 -00007313 67.18854523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f0 -00007314 67.18854523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f0 -00007315 67.18856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe200 -00007316 67.18857574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe200 -00007317 67.18859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe210 -00007318 67.18859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe210 -00007319 67.18862915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe220 -00007320 67.18863678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe220 -00007321 67.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe230 -00007322 67.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe230 -00007323 67.18868256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe240 -00007324 67.18869019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe240 -00007325 67.18871307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe250 -00007326 67.18871307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe250 -00007327 67.18875885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe260 -00007328 67.18875885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe260 -00007329 67.18878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe270 -00007330 67.18878937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe270 -00007331 67.18881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe280 -00007332 67.18881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe280 -00007333 67.18883514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe290 -00007334 67.18883514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe290 -00007335 67.18887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a0 -00007336 67.18887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a0 -00007337 67.18889618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b0 -00007338 67.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b0 -00007339 67.18892670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c0 -00007340 67.18892670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c0 -00007341 67.18895721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d0 -00007342 67.18895721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d0 -00007343 67.18898773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e0 -00007344 67.18899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e0 -00007345 67.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f0 -00007346 67.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f0 -00007347 67.18904877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe300 -00007348 67.18905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe300 -00007349 67.18907928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe310 -00007350 67.18907928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe310 -00007351 67.18910980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe320 -00007352 67.18910980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe320 -00007353 67.18914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe330 -00007354 67.18914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe330 -00007355 67.18916321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe340 -00007356 67.18916321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe340 -00007357 67.18919373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe350 -00007358 67.18919373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe350 -00007359 67.18923187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe360 -00007360 67.18923187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe360 -00007361 67.18925476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe370 -00007362 67.18926239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe370 -00007363 67.18928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe380 -00007364 67.18928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe380 -00007365 67.18931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe390 -00007366 67.18931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe390 -00007367 67.18934631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a0 -00007368 67.18935394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3a0 -00007369 67.18937683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b0 -00007370 67.18937683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3b0 -00007371 67.18939972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c0 -00007372 67.18940735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3c0 -00007373 67.18943024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d0 -00007374 67.18943024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3d0 -00007375 67.18946075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e0 -00007376 67.18946838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3e0 -00007377 67.18949127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f0 -00007378 67.18949127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe3f0 -00007379 67.18951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe400 -00007380 67.18952179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe400 -00007381 67.18955231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe410 -00007382 67.18955231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe410 -00007383 67.18957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe420 -00007384 67.18957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe420 -00007385 67.18959808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe430 -00007386 67.18960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe430 -00007387 67.18962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe440 -00007388 67.18962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe440 -00007389 67.18965912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe450 -00007390 67.18966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe450 -00007391 67.18968964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe460 -00007392 67.18968964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe460 -00007393 67.18971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe470 -00007394 67.18972015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe470 -00007395 67.18975067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe480 -00007396 67.18975067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe480 -00007397 67.18977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe490 -00007398 67.18977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe490 -00007399 67.18979645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a0 -00007400 67.18980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a0 -00007401 67.18982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b0 -00007402 67.18982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b0 -00007403 67.18985748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -00007404 67.18986511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -00007405 67.18988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -00007406 67.18988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -00007407 67.18991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -00007408 67.18991852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -00007409 67.18994904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -00007410 67.18994904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -00007411 67.18997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -00007412 67.18997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -00007413 67.18999481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -00007414 67.19000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -00007415 67.19002533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -00007416 67.19002533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -00007417 67.19005585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -00007418 67.19006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -00007419 67.19008636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -00007420 67.19008636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -00007421 67.19010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -00007422 67.19011688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -00007423 67.19014740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -00007424 67.19014740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -00007425 67.19017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -00007426 67.19017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -00007427 67.19019318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -00007428 67.19020081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -00007429 67.19022369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -00007430 67.19022369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -00007431 67.19025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -00007432 67.19026184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -00007433 67.19028473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -00007434 67.19028473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -00007435 67.19030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -00007436 67.19031525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -00007437 67.19034576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -00007438 67.19034576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -00007439 67.19036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -00007440 67.19036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -00007441 67.19039154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -00007442 67.19039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -00007443 67.19042206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -00007444 67.19042206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -00007445 67.19045258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -00007446 67.19046021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -00007447 67.19048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -00007448 67.19048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -00007449 67.19050598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -00007450 67.19051361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -00007451 67.19054413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -00007452 67.19054413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -00007453 67.19056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -00007454 67.19057465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -00007455 67.19059753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -00007456 67.19059753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -00007457 67.19062042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -00007458 67.19062042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -00007459 67.19065094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -00007460 67.19065857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -00007461 67.19068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -00007462 67.19068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -00007463 67.19070435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -00007464 67.19071198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -00007465 67.19074249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -00007466 67.19074249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -00007467 67.19076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -00007468 67.19077301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -00007469 67.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -00007470 67.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -00007471 67.19081879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -00007472 67.19081879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -00007473 67.19084930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -00007474 67.19085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -00007475 67.19087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -00007476 67.19087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -00007477 67.19090271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -00007478 67.19091034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -00007479 67.19094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -00007480 67.19094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -00007481 67.19096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -00007482 67.19096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -00007483 67.19098663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -00007484 67.19099426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -00007485 67.19101715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe750 -00007486 67.19101715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe750 -00007487 67.19104767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe760 -00007488 67.19105530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe760 -00007489 67.19107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe770 -00007490 67.19107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe770 -00007491 67.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe780 -00007492 67.19110870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe780 -00007493 67.19113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe790 -00007494 67.19113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe790 -00007495 67.19116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a0 -00007496 67.19116974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a0 -00007497 67.19119263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b0 -00007498 67.19119263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b0 -00007499 67.19121552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c0 -00007500 67.19121552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c0 -00007501 67.19124603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d0 -00007502 67.19125366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d0 -00007503 67.19127655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e0 -00007504 67.19127655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e0 -00007505 67.19129944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f0 -00007506 67.19130707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f0 -00007507 67.19133759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe800 -00007508 67.19133759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe800 -00007509 67.19136047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe810 -00007510 67.19136810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe810 -00007511 67.19139099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe820 -00007512 67.19139099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe820 -00007513 67.19141388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe830 -00007514 67.19141388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe830 -00007515 67.19144440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe840 -00007516 67.19145203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe840 -00007517 67.19147491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe850 -00007518 67.19147491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe850 -00007519 67.19149780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe860 -00007520 67.19150543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe860 -00007521 67.19153595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe870 -00007522 67.19153595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe870 -00007523 67.19155884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe880 -00007524 67.19156647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe880 -00007525 67.19158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe890 -00007526 67.19158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe890 -00007527 67.19161224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a0 -00007528 67.19161224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a0 -00007529 67.19164276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b0 -00007530 67.19165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b0 -00007531 67.19167328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c0 -00007532 67.19167328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c0 -00007533 67.19169617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d0 -00007534 67.19170380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d0 -00007535 67.19173431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e0 -00007536 67.19173431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e0 -00007537 67.19175720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f0 -00007538 67.19175720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f0 -00007539 67.19178009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe900 -00007540 67.19178772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe900 -00007541 67.19181061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe910 -00007542 67.19181061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe910 -00007543 67.19184113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe920 -00007544 67.19184875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe920 -00007545 67.19187164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe930 -00007546 67.19187164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe930 -00007547 67.19189453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe940 -00007548 67.19190216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe940 -00007549 67.19193268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe950 -00007550 67.19193268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe950 -00007551 67.19195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe960 -00007552 67.19195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe960 -00007553 67.19197845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe970 -00007554 67.19198608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe970 -00007555 67.19201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe980 -00007556 67.19201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe980 -00007557 67.19203949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe990 -00007558 67.19204712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe990 -00007559 67.19207001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a0 -00007560 67.19207001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a0 -00007561 67.19209290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b0 -00007562 67.19210052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b0 -00007563 67.19213104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c0 -00007564 67.19213104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c0 -00007565 67.19215393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d0 -00007566 67.19215393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d0 -00007567 67.19217682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e0 -00007568 67.19218445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e0 -00007569 67.19221497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -00007570 67.19221497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -00007571 67.19223785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -00007572 67.19224548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -00007573 67.19226837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -00007574 67.19226837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -00007575 67.19229126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -00007576 67.19229889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -00007577 67.19232941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -00007578 67.19232941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -00007579 67.19235229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -00007580 67.19235992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -00007581 67.19238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -00007582 67.19238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -00007583 67.19241333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -00007584 67.19241333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -00007585 67.19243622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -00007586 67.19244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -00007587 67.19246674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -00007588 67.19246674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -00007589 67.19248962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -00007590 67.19249725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -00007591 67.19252777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -00007592 67.19252777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -00007593 67.19255066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -00007594 67.19255829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -00007595 67.19258118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -00007596 67.19258118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -00007597 67.19261169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -00007598 67.19261169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -00007599 67.19263458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -00007600 67.19264221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -00007601 67.19266510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -00007602 67.19266510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -00007603 67.19268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -00007604 67.19269562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -00007605 67.19272614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -00007606 67.19272614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -00007607 67.19274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -00007608 67.19275665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -00007609 67.19277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -00007610 67.19277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -00007611 67.19281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -00007612 67.19281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -00007613 67.19283295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb50 -00007614 67.19284058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb50 -00007615 67.19286346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -00007616 67.19286346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -00007617 67.19288635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -00007618 67.19289398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -00007619 67.19292450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -00007620 67.19292450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -00007621 67.19294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -00007622 67.19294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -00007623 67.19297791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -00007624 67.19297791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -00007625 67.19300842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -00007626 67.19300842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -00007627 67.19303131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -00007628 67.19303894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -00007629 67.19306183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -00007630 67.19306183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -00007631 67.19308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -00007632 67.19309235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -00007633 67.19312286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -00007634 67.19312286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -00007635 67.19314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -00007636 67.19315338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -00007637 67.19317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -00007638 67.19317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -00007639 67.19320679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -00007640 67.19320679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -00007641 67.19322968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -00007642 67.19323730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -00007643 67.19326019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -00007644 67.19326019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -00007645 67.19328308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -00007646 67.19329071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -00007647 67.19332123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -00007648 67.19332123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -00007649 67.19334412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -00007650 67.19335175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -00007651 67.19337463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -00007652 67.19337463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -00007653 67.19340515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -00007654 67.19340515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -00007655 67.19342804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -00007656 67.19343567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -00007657 67.19345856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -00007658 67.19345856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -00007659 67.19348145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc0 -00007660 67.19348907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc0 -00007661 67.19351959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd0 -00007662 67.19351959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd0 -00007663 67.19354248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xece0 -00007664 67.19355011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xece0 -00007665 67.19357300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf0 -00007666 67.19357300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf0 -00007667 67.19360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed00 -00007668 67.19360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed00 -00007669 67.19362640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed10 -00007670 67.19363403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed10 -00007671 67.19365692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed20 -00007672 67.19365692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed20 -00007673 67.19367981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed30 -00007674 67.19368744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed30 -00007675 67.19371796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed40 -00007676 67.19371796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed40 -00007677 67.19374084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed50 -00007678 67.19374847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed50 -00007679 67.19377136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed60 -00007680 67.19377136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed60 -00007681 67.19380188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed70 -00007682 67.19380188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed70 -00007683 67.19382477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed80 -00007684 67.19383240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed80 -00007685 67.19385529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed90 -00007686 67.19385529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xed90 -00007687 67.19387817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda0 -00007688 67.19388580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeda0 -00007689 67.19391632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb0 -00007690 67.19391632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedb0 -00007691 67.19393921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc0 -00007692 67.19394684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedc0 -00007693 67.19396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd0 -00007694 67.19396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedd0 -00007695 67.19400024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xede0 -00007696 67.19400024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xede0 -00007697 67.19402313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf0 -00007698 67.19403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf0 -00007699 67.19405365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee00 -00007700 67.19405365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee00 -00007701 67.19407654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee10 -00007702 67.19408417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee10 -00007703 67.19411469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee20 -00007704 67.19411469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee20 -00007705 67.19413757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee30 -00007706 67.19414520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee30 -00007707 67.19416809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee40 -00007708 67.19416809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee40 -00007709 67.19419861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee50 -00007710 67.19419861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee50 -00007711 67.19422150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee60 -00007712 67.19422913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee60 -00007713 67.19425201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee70 -00007714 67.19425201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee70 -00007715 67.19427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee80 -00007716 67.19428253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee80 -00007717 67.19431305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee90 -00007718 67.19431305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xee90 -00007719 67.19433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea0 -00007720 67.19434357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeea0 -00007721 67.19436646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb0 -00007722 67.19436646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeeb0 -00007723 67.19439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec0 -00007724 67.19439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeec0 -00007725 67.19442749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed0 -00007726 67.19442749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeed0 -00007727 67.19445038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee0 -00007728 67.19445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeee0 -00007729 67.19448090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef0 -00007730 67.19448090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeef0 -00007731 67.19451141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef00 -00007732 67.19451141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef00 -00007733 67.19454193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef10 -00007734 67.19454193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef10 -00007735 67.19456482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef20 -00007736 67.19457245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef20 -00007737 67.19459534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef30 -00007738 67.19459534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef30 -00007739 67.19462585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef40 -00007740 67.19462585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef40 -00007741 67.19465637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef50 -00007742 67.19465637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef50 -00007743 67.19467926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef60 -00007744 67.19467926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef60 -00007745 67.19470978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef70 -00007746 67.19471741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef70 -00007747 67.19474030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef80 -00007748 67.19474030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef80 -00007749 67.19476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef90 -00007750 67.19477081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xef90 -00007751 67.19479370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa0 -00007752 67.19479370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa0 -00007753 67.19482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb0 -00007754 67.19482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb0 -00007755 67.19485474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc0 -00007756 67.19485474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc0 -00007757 67.19487762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd0 -00007758 67.19487762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd0 -00007759 67.19490814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe0 -00007760 67.19491577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe0 -00007761 67.19493866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff0 -00007762 67.19493866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff0 -00007763 67.19496155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf000 -00007764 67.19496918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf000 -00007765 67.19499207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf010 -00007766 67.19499207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf010 -00007767 67.19502258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf020 -00007768 67.19503021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf020 -00007769 67.19505310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf030 -00007770 67.19505310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf030 -00007771 67.19507599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -00007772 67.19508362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -00007773 67.19511414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -00007774 67.19511414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -00007775 67.19513702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -00007776 67.19513702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -00007777 67.19515991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -00007778 67.19516754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -00007779 67.19519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -00007780 67.19519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -00007781 67.19522095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -00007782 67.19522858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -00007783 67.19525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -00007784 67.19525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -00007785 67.19527435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -00007786 67.19528198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -00007787 67.19531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -00007788 67.19531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -00007789 67.19533539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -00007790 67.19534302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -00007791 67.19536591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -00007792 67.19536591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -00007793 67.19538879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -00007794 67.19538879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -00007795 67.19541931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -00007796 67.19542694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -00007797 67.19544983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -00007798 67.19544983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -00007799 67.19547272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -00007800 67.19548035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -00007801 67.19551086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -00007802 67.19551086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -00007803 67.19553375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -00007804 67.19554138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -00007805 67.19556427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -00007806 67.19556427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -00007807 67.19558716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -00007808 67.19559479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -00007809 67.19562531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -00007810 67.19562531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -00007811 67.19564819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -00007812 67.19565582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -00007813 67.19567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -00007814 67.19567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -00007815 67.19570923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a0 -00007816 67.19570923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a0 -00007817 67.19573212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b0 -00007818 67.19573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b0 -00007819 67.19576263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c0 -00007820 67.19576263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c0 -00007821 67.19578552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d0 -00007822 67.19579315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d0 -00007823 67.19582367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e0 -00007824 67.19582367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e0 -00007825 67.19584656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f0 -00007826 67.19585419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f0 -00007827 67.19587708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf200 -00007828 67.19587708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf200 -00007829 67.19590759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf210 -00007830 67.19590759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf210 -00007831 67.19593048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf220 -00007832 67.19593811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf220 -00007833 67.19596100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf230 -00007834 67.19596100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf230 -00007835 67.19598389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf240 -00007836 67.19599152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf240 -00007837 67.19602203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf250 -00007838 67.19602203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf250 -00007839 67.19604492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf260 -00007840 67.19605255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf260 -00007841 67.19607544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf270 -00007842 67.19607544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf270 -00007843 67.19610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf280 -00007844 67.19610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf280 -00007845 67.19612885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf290 -00007846 67.19613647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf290 -00007847 67.19615936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a0 -00007848 67.19615936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2a0 -00007849 67.19618225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b0 -00007850 67.19618988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2b0 -00007851 67.19622040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c0 -00007852 67.19622040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2c0 -00007853 67.19624329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d0 -00007854 67.19625092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d0 -00007855 67.19627380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e0 -00007856 67.19627380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e0 -00007857 67.19630432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f0 -00007858 67.19630432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f0 -00007859 67.19633484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf300 -00007860 67.19633484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf300 -00007861 67.19635773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf310 -00007862 67.19636536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf310 -00007863 67.19638824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf320 -00007864 67.19638824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf320 -00007865 67.19641876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf330 -00007866 67.19641876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf330 -00007867 67.19644165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf340 -00007868 67.19644928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf340 -00007869 67.19647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf350 -00007870 67.19647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf350 -00007871 67.19650269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf360 -00007872 67.19650269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf360 -00007873 67.19653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf370 -00007874 67.19653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf370 -00007875 67.19655609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf380 -00007876 67.19656372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf380 -00007877 67.19658661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf390 -00007878 67.19658661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf390 -00007879 67.19661713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a0 -00007880 67.19661713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a0 -00007881 67.19664764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b0 -00007882 67.19664764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b0 -00007883 67.19667053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c0 -00007884 67.19667053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c0 -00007885 67.19670105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d0 -00007886 67.19670105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d0 -00007887 67.19673157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e0 -00007888 67.19673157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e0 -00007889 67.19675446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f0 -00007890 67.19676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f0 -00007891 67.19678497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf400 -00007892 67.19678497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf400 -00007893 67.19681549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf410 -00007894 67.19681549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf410 -00007895 67.19684601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf420 -00007896 67.19684601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf420 -00007897 67.19686890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf430 -00007898 67.19686890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf430 -00007899 67.19689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf440 -00007900 67.19689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf440 -00007901 67.19692993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf450 -00007902 67.19692993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf450 -00007903 67.19695282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf460 -00007904 67.19696045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf460 -00007905 67.19698334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf470 -00007906 67.19698334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf470 -00007907 67.19701385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf480 -00007908 67.19701385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf480 -00007909 67.19704437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf490 -00007910 67.19704437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf490 -00007911 67.19706726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4a0 -00007912 67.19706726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4a0 -00007913 67.19709778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4b0 -00007914 67.19709778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4b0 -00007915 67.19712830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4c0 -00007916 67.19712830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4c0 -00007917 67.19715118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4d0 -00007918 67.19715881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4d0 -00007919 67.19718170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e0 -00007920 67.19718170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e0 -00007921 67.19721222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f0 -00007922 67.19721222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f0 -00007923 67.19723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf500 -00007924 67.19724274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf500 -00007925 67.19726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf510 -00007926 67.19726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf510 -00007927 67.19729614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf520 -00007928 67.19729614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf520 -00007929 67.19732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf530 -00007930 67.19732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf530 -00007931 67.19734955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf540 -00007932 67.19735718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf540 -00007933 67.19738007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf550 -00007934 67.19738007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf550 -00007935 67.19741058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf560 -00007936 67.19741821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf560 -00007937 67.19744110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf570 -00007938 67.19744110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf570 -00007939 67.19746399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf580 -00007940 67.19746399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf580 -00007941 67.19749451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf590 -00007942 67.19749451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf590 -00007943 67.19752502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a0 -00007944 67.19752502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5a0 -00007945 67.19754791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b0 -00007946 67.19755554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5b0 -00007947 67.19757843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c0 -00007948 67.19757843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c0 -00007949 67.19760895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d0 -00007950 67.19761658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d0 -00007951 67.19763947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e0 -00007952 67.19763947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e0 -00007953 67.19766235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f0 -00007954 67.19766235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f0 -00007955 67.19769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf600 -00007956 67.19769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf600 -00007957 67.19772339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf610 -00007958 67.19772339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf610 -00007959 67.19774628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf620 -00007960 67.19775391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf620 -00007961 67.19777679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf630 -00007962 67.19777679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf630 -00007963 67.19780731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf640 -00007964 67.19780731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf640 -00007965 67.19783020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf650 -00007966 67.19783783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf650 -00007967 67.19786072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf660 -00007968 67.19786072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf660 -00007969 67.19789124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf670 -00007970 67.19789124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf670 -00007971 67.19792175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf680 -00007972 67.19792175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf680 -00007973 67.19794464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf690 -00007974 67.19795227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf690 -00007975 67.19797516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a0 -00007976 67.19797516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a0 -00007977 67.19800568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b0 -00007978 67.19800568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b0 -00007979 67.19802856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c0 -00007980 67.19803619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c0 -00007981 67.19805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d0 -00007982 67.19805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d0 -00007983 67.19808960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e0 -00007984 67.19808960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e0 -00007985 67.19812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f0 -00007986 67.19812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f0 -00007987 67.19814301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf700 -00007988 67.19815063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf700 -00007989 67.19817352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf710 -00007990 67.19817352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf710 -00007991 67.19820404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf720 -00007992 67.19820404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf720 -00007993 67.19822693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf730 -00007994 67.19823456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf730 -00007995 67.19825745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf740 -00007996 67.19825745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf740 -00007997 67.19828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf750 -00007998 67.19828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf750 -00007999 67.19831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf760 -00008000 67.19831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf760 -00008001 67.19834137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf770 -00008002 67.19834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf770 -00008003 67.19837189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf780 -00008004 67.19837189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf780 -00008005 67.19840240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf790 -00008006 67.19841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf790 -00008007 67.19843292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a0 -00008008 67.19843292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a0 -00008009 67.19845581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b0 -00008010 67.19846344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b0 -00008011 67.19848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c0 -00008012 67.19848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c0 -00008013 67.19851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d0 -00008014 67.19851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d0 -00008015 67.19853973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e0 -00008016 67.19854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e0 -00008017 67.19857025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f0 -00008018 67.19857025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7f0 -00008019 67.19860077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf800 -00008020 67.19860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf800 -00008021 67.19863129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf810 -00008022 67.19863129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf810 -00008023 67.19865417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf820 -00008024 67.19866180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf820 -00008025 67.19868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -00008026 67.19868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -00008027 67.19871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -00008028 67.19871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -00008029 67.19873810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -00008030 67.19874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -00008031 67.19876862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -00008032 67.19876862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -00008033 67.19879913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -00008034 67.19880676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -00008035 67.19882965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -00008036 67.19882965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -00008037 67.19885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -00008038 67.19885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -00008039 67.19888306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -00008040 67.19888306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -00008041 67.19891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -00008042 67.19891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -00008043 67.19893646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -00008044 67.19894409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -00008045 67.19896698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -00008046 67.19896698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -00008047 67.19899750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -00008048 67.19900513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -00008049 67.19902802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -00008050 67.19902802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -00008051 67.19905090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -00008052 67.19905090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -00008053 67.19908142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -00008054 67.19908142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -00008055 67.19911194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -00008056 67.19911194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -00008057 67.19913483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -00008058 67.19914246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -00008059 67.19916534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -00008060 67.19916534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -00008061 67.19919586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -00008062 67.19920349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -00008063 67.19922638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -00008064 67.19922638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -00008065 67.19924927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -00008066 67.19924927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -00008067 67.19927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -00008068 67.19927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -00008069 67.19931030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf990 -00008070 67.19931030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf990 -00008071 67.19933319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a0 -00008072 67.19934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a0 -00008073 67.19936371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b0 -00008074 67.19936371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b0 -00008075 67.19939423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c0 -00008076 67.19940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c0 -00008077 67.19942474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d0 -00008078 67.19942474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d0 -00008079 67.19944763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e0 -00008080 67.19945526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e0 -00008081 67.19947815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f0 -00008082 67.19947815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f0 -00008083 67.19950867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa00 -00008084 67.19950867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa00 -00008085 67.19953156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa10 -00008086 67.19953918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa10 -00008087 67.19956207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa20 -00008088 67.19956207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa20 -00008089 67.19959259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa30 -00008090 67.19960022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa30 -00008091 67.19962311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa40 -00008092 67.19962311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa40 -00008093 67.19964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -00008094 67.19964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -00008095 67.19967651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -00008096 67.19967651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -00008097 67.19970703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -00008098 67.19970703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -00008099 67.19972992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -00008100 67.19973755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -00008101 67.19976044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -00008102 67.19976044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -00008103 67.19979095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -00008104 67.19979858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -00008105 67.19982147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -00008106 67.19982147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -00008107 67.19984436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -00008108 67.19984436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -00008109 67.19987488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -00008110 67.19987488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -00008111 67.19990540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -00008112 67.19990540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -00008113 67.19992828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -00008114 67.19993591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -00008115 67.19995880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -00008116 67.19995880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -00008117 67.19998932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -00008118 67.19999695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -00008119 67.20001984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -00008120 67.20001984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -00008121 67.20004272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -00008122 67.20004272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -00008123 67.20007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -00008124 67.20007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -00008125 67.20010376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -00008126 67.20010376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -00008127 67.20012665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -00008128 67.20013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -00008129 67.20015717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -00008130 67.20015717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -00008131 67.20018768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -00008132 67.20019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -00008133 67.20021820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -00008134 67.20021820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -00008135 67.20024109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -00008136 67.20024109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -00008137 67.20027161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb0 -00008138 67.20027161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb0 -00008139 67.20030212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc0 -00008140 67.20030212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc0 -00008141 67.20032501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd0 -00008142 67.20033264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd0 -00008143 67.20035553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe0 -00008144 67.20035553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe0 -00008145 67.20038605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf0 -00008146 67.20039368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf0 -00008147 67.20041656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc00 -00008148 67.20041656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc00 -00008149 67.20043945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc10 -00008150 67.20043945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc10 -00008151 67.20046997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc20 -00008152 67.20046997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc20 -00008153 67.20050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc30 -00008154 67.20050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc30 -00008155 67.20052338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc40 -00008156 67.20053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc40 -00008157 67.20055389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc50 -00008158 67.20055389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc50 -00008159 67.20058441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc60 -00008160 67.20059204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc60 -00008161 67.20061493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc70 -00008162 67.20061493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc70 -00008163 67.20063782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc80 -00008164 67.20063782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc80 -00008165 67.20066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc90 -00008166 67.20066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc90 -00008167 67.20069885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca0 -00008168 67.20069885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca0 -00008169 67.20072174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb0 -00008170 67.20072937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb0 -00008171 67.20075226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc0 -00008172 67.20075226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc0 -00008173 67.20078278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd0 -00008174 67.20079041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd0 -00008175 67.20081329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce0 -00008176 67.20081329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfce0 -00008177 67.20083618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf0 -00008178 67.20083618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcf0 -00008179 67.20086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd00 -00008180 67.20086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd00 -00008181 67.20089722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd10 -00008182 67.20089722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd10 -00008183 67.20092010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd20 -00008184 67.20092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd20 -00008185 67.20095062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd30 -00008186 67.20095062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd30 -00008187 67.20098114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd40 -00008188 67.20098877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd40 -00008189 67.20101166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd50 -00008190 67.20101166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd50 -00008191 67.20103455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd60 -00008192 67.20103455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd60 -00008193 67.20106506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd70 -00008194 67.20106506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd70 -00008195 67.20109558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd80 -00008196 67.20109558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd80 -00008197 67.20111847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd90 -00008198 67.20112610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfd90 -00008199 67.20114899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda0 -00008200 67.20114899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfda0 -00008201 67.20117950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb0 -00008202 67.20118713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdb0 -00008203 67.20121002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc0 -00008204 67.20121002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdc0 -00008205 67.20123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd0 -00008206 67.20123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdd0 -00008207 67.20126343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde0 -00008208 67.20126343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfde0 -00008209 67.20129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdf0 -00008210 67.20129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfdf0 -00008211 67.20131683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe00 -00008212 67.20132446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe00 -00008213 67.20134735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe10 -00008214 67.20134735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe10 -00008215 67.20137787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe20 -00008216 67.20138550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe20 -00008217 67.20140839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe30 -00008218 67.20140839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe30 -00008219 67.20143127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe40 -00008220 67.20143127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe40 -00008221 67.20146179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe50 -00008222 67.20146179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe50 -00008223 67.20149231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe60 -00008224 67.20149231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe60 -00008225 67.20151520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe70 -00008226 67.20152283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe70 -00008227 67.20154572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe80 -00008228 67.20154572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe80 -00008229 67.20157623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe90 -00008230 67.20158386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfe90 -00008231 67.20160675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea0 -00008232 67.20160675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfea0 -00008233 67.20162964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb0 -00008234 67.20162964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfeb0 -00008235 67.20166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec0 -00008236 67.20166779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfec0 -00008237 67.20169067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed0 -00008238 67.20169067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfed0 -00008239 67.20171356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee0 -00008240 67.20172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfee0 -00008241 67.20174408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef0 -00008242 67.20174408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfef0 -00008243 67.20177460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff00 -00008244 67.20178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff00 -00008245 67.20180511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff10 -00008246 67.20180511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff10 -00008247 67.20182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -00008248 67.20182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -00008249 67.20185852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -00008250 67.20186615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -00008251 67.20188904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -00008252 67.20188904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -00008253 67.20191193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -00008254 67.20191956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -00008255 67.20194244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -00008256 67.20194244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -00008257 67.20197296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -00008258 67.20198059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -00008259 67.20200348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -00008260 67.20200348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -00008261 67.20202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -00008262 67.20202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -00008263 67.20205688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -00008264 67.20206451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -00008265 67.20208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -00008266 67.20208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -00008267 67.20211029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -00008268 67.20211792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -00008269 67.20214081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -00008270 67.20214081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -00008271 67.20217133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -00008272 67.20217896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -00008273 67.20220184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -00008274 67.20220184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -00008275 67.20222473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -00008276 67.20222473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -00008277 67.20225525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -00008278 67.20226288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -00008279 67.20228577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -00008280 67.20228577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -00008281 67.20231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -00008282 67.20231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -00008283 67.20233917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -00008284 67.20233917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -00008285 67.20236969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -00008286 67.20237732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -00008287 67.20240021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -00008288 67.20240021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -00008289 67.20242310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -00008290 67.20243073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -00008291 67.20246124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -00008292 67.20246124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -00008293 67.20248413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -00008294 67.20249176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -00008295 67.20251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -00008296 67.20251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -00008297 67.20253754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -00008298 67.20254517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -00008299 67.20257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -00008300 67.20257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -00008301 67.20259857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -00008302 67.20259857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -00008303 67.20262146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -00008304 67.20262909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -00008305 67.20265961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -00008306 67.20265961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -00008307 67.20268250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -00008308 67.20269012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -00008309 67.20271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -00008310 67.20271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -00008311 67.20273590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -00008312 67.20274353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -00008313 67.20277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -00008314 67.20277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -00008315 67.20280457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -00008316 67.20280457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -00008317 67.20282745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -00008318 67.20283508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -00008319 67.20285797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -00008320 67.20285797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -00008321 67.20288849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -00008322 67.20289612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -00008323 67.20291901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -00008324 67.20291901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -00008325 67.20294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -00008326 67.20294952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -00008327 67.20297241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -00008328 67.20297241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -00008329 67.20300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -00008330 67.20300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -00008331 67.20303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -00008332 67.20303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -00008333 67.20305634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -00008334 67.20305634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -00008335 67.20308685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -00008336 67.20309448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -00008337 67.20311737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f0 -00008338 67.20311737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f0 -00008339 67.20314026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10200 -00008340 67.20314789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10200 -00008341 67.20317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10210 -00008342 67.20317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10210 -00008343 67.20320129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10220 -00008344 67.20320892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10220 -00008345 67.20323181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10230 -00008346 67.20323181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10230 -00008347 67.20325470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10240 -00008348 67.20326233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10240 -00008349 67.20329285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10250 -00008350 67.20329285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10250 -00008351 67.20331573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10260 -00008352 67.20332336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10260 -00008353 67.20334625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10270 -00008354 67.20334625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10270 -00008355 67.20336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10280 -00008356 67.20337677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10280 -00008357 67.20340729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10290 -00008358 67.20340729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10290 -00008359 67.20343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102a0 -00008360 67.20343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102a0 -00008361 67.20345306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102b0 -00008362 67.20346069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102b0 -00008363 67.20349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102c0 -00008364 67.20349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102c0 -00008365 67.20351410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102d0 -00008366 67.20352173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102d0 -00008367 67.20354462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102e0 -00008368 67.20354462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102e0 -00008369 67.20356750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102f0 -00008370 67.20357513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x102f0 -00008371 67.20360565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10300 -00008372 67.20360565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10300 -00008373 67.20362854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10310 -00008374 67.20362854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10310 -00008375 67.20365143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10320 -00008376 67.20365906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10320 -00008377 67.20368958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10330 -00008378 67.20368958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10330 -00008379 67.20371246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10340 -00008380 67.20372009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10340 -00008381 67.20374298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10350 -00008382 67.20374298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10350 -00008383 67.20376587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10360 -00008384 67.20377350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10360 -00008385 67.20380402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10370 -00008386 67.20380402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10370 -00008387 67.20382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10380 -00008388 67.20382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10380 -00008389 67.20385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10390 -00008390 67.20385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10390 -00008391 67.20388794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a0 -00008392 67.20388794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a0 -00008393 67.20391083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b0 -00008394 67.20391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b0 -00008395 67.20394135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c0 -00008396 67.20394135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c0 -00008397 67.20396423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d0 -00008398 67.20397186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d0 -00008399 67.20400238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e0 -00008400 67.20400238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e0 -00008401 67.20402527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f0 -00008402 67.20403290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f0 -00008403 67.20405579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10400 -00008404 67.20405579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10400 -00008405 67.20408630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10410 -00008406 67.20408630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10410 -00008407 67.20410919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10420 -00008408 67.20411682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10420 -00008409 67.20413971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10430 -00008410 67.20413971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10430 -00008411 67.20416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10440 -00008412 67.20417023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10440 -00008413 67.20420074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10450 -00008414 67.20420074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10450 -00008415 67.20422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10460 -00008416 67.20423126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10460 -00008417 67.20425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10470 -00008418 67.20425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10470 -00008419 67.20428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10480 -00008420 67.20428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10480 -00008421 67.20430756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10490 -00008422 67.20431519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10490 -00008423 67.20433807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a0 -00008424 67.20433807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a0 -00008425 67.20436859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b0 -00008426 67.20436859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b0 -00008427 67.20439911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c0 -00008428 67.20439911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c0 -00008429 67.20442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d0 -00008430 67.20442963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d0 -00008431 67.20445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e0 -00008432 67.20445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e0 -00008433 67.20448303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f0 -00008434 67.20448303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f0 -00008435 67.20451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10500 -00008436 67.20451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10500 -00008437 67.20453644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10510 -00008438 67.20453644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10510 -00008439 67.20456696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10520 -00008440 67.20456696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10520 -00008441 67.20459747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10530 -00008442 67.20459747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10530 -00008443 67.20462036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10540 -00008444 67.20462799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10540 -00008445 67.20465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10550 -00008446 67.20465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10550 -00008447 67.20468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10560 -00008448 67.20468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10560 -00008449 67.20471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10570 -00008450 67.20471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10570 -00008451 67.20473480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10580 -00008452 67.20473480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10580 -00008453 67.20476532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10590 -00008454 67.20476532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10590 -00008455 67.20479584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a0 -00008456 67.20479584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a0 -00008457 67.20481873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b0 -00008458 67.20482635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b0 -00008459 67.20484924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c0 -00008460 67.20484924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c0 -00008461 67.20487976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d0 -00008462 67.20487976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d0 -00008463 67.20491028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e0 -00008464 67.20491028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e0 -00008465 67.20493317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f0 -00008466 67.20494080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f0 -00008467 67.20496368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10600 -00008468 67.20496368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10600 -00008469 67.20499420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10610 -00008470 67.20499420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10610 -00008471 67.20501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10620 -00008472 67.20502472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10620 -00008473 67.20504761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10630 -00008474 67.20504761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10630 -00008475 67.20507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10640 -00008476 67.20507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10640 -00008477 67.20510864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10650 -00008478 67.20510864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10650 -00008479 67.20513153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10660 -00008480 67.20513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10660 -00008481 67.20516205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10670 -00008482 67.20516205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10670 -00008483 67.20519257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10680 -00008484 67.20519257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10680 -00008485 67.20521545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10690 -00008486 67.20522308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10690 -00008487 67.20524597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106a0 -00008488 67.20524597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106a0 -00008489 67.20527649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106b0 -00008490 67.20527649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106b0 -00008491 67.20530701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c0 -00008492 67.20530701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c0 -00008493 67.20532990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -00008494 67.20533752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -00008495 67.20536041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -00008496 67.20536041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -00008497 67.20539093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -00008498 67.20539856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -00008499 67.20542145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -00008500 67.20542145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -00008501 67.20544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -00008502 67.20544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -00008503 67.20547485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -00008504 67.20547485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -00008505 67.20550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -00008506 67.20550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -00008507 67.20552826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -00008508 67.20553589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -00008509 67.20555878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -00008510 67.20555878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -00008511 67.20558929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -00008512 67.20559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -00008513 67.20561981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -00008514 67.20561981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -00008515 67.20564270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -00008516 67.20565033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -00008517 67.20567322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -00008518 67.20567322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -00008519 67.20570374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -00008520 67.20570374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -00008521 67.20572662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -00008522 67.20573425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -00008523 67.20575714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -00008524 67.20575714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -00008525 67.20578766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -00008526 67.20579529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -00008527 67.20581818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -00008528 67.20581818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -00008529 67.20584106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -00008530 67.20584869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -00008531 67.20587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -00008532 67.20587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -00008533 67.20590210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -00008534 67.20590210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -00008535 67.20592499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -00008536 67.20593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -00008537 67.20595551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -00008538 67.20595551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10830 -00008539 67.20598602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -00008540 67.20599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10840 -00008541 67.20601654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -00008542 67.20601654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10850 -00008543 67.20603943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -00008544 67.20604706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10860 -00008545 67.20606995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -00008546 67.20606995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10870 -00008547 67.20610046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10880 -00008548 67.20610046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10880 -00008549 67.20613098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10890 -00008550 67.20613098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10890 -00008551 67.20615387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a0 -00008552 67.20615387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a0 -00008553 67.20618439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b0 -00008554 67.20619202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b0 -00008555 67.20621490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c0 -00008556 67.20621490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c0 -00008557 67.20623779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d0 -00008558 67.20624542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d0 -00008559 67.20626831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e0 -00008560 67.20626831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e0 -00008561 67.20629883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f0 -00008562 67.20630646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f0 -00008563 67.20632935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10900 -00008564 67.20632935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10900 -00008565 67.20635223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10910 -00008566 67.20635986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10910 -00008567 67.20639038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10920 -00008568 67.20639038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10920 -00008569 67.20641327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10930 -00008570 67.20641327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10930 -00008571 67.20643616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10940 -00008572 67.20644379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10940 -00008573 67.20646667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10950 -00008574 67.20646667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10950 -00008575 67.20649719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10960 -00008576 67.20650482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10960 -00008577 67.20652771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10970 -00008578 67.20652771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10970 -00008579 67.20655060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10980 -00008580 67.20655823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10980 -00008581 67.20658875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10990 -00008582 67.20658875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10990 -00008583 67.20661163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a0 -00008584 67.20661163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a0 -00008585 67.20663452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b0 -00008586 67.20664215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b0 -00008587 67.20666504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c0 -00008588 67.20666504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c0 -00008589 67.20669556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d0 -00008590 67.20670319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d0 -00008591 67.20672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e0 -00008592 67.20672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e0 -00008593 67.20674896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f0 -00008594 67.20675659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f0 -00008595 67.20678711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a00 -00008596 67.20678711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a00 -00008597 67.20681000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a10 -00008598 67.20681763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a10 -00008599 67.20684052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a20 -00008600 67.20684052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a20 -00008601 67.20686340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a30 -00008602 67.20686340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a30 -00008603 67.20689392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a40 -00008604 67.20690155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a40 -00008605 67.20692444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a50 -00008606 67.20692444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a50 -00008607 67.20694733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a60 -00008608 67.20695496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a60 -00008609 67.20698547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a70 -00008610 67.20698547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a70 -00008611 67.20700836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a80 -00008612 67.20701599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a80 -00008613 67.20703888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a90 -00008614 67.20703888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a90 -00008615 67.20706940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa0 -00008616 67.20706940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa0 -00008617 67.20709229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab0 -00008618 67.20709991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab0 -00008619 67.20712280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac0 -00008620 67.20712280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac0 -00008621 67.20714569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad0 -00008622 67.20715332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad0 -00008623 67.20718384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae0 -00008624 67.20718384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae0 -00008625 67.20720673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af0 -00008626 67.20721436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af0 -00008627 67.20723724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b00 -00008628 67.20723724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b00 -00008629 67.20726776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b10 -00008630 67.20726776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b10 -00008631 67.20729065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b20 -00008632 67.20729828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b20 -00008633 67.20732117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b30 -00008634 67.20732117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b30 -00008635 67.20734406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b40 -00008636 67.20735168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b40 -00008637 67.20738220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b50 -00008638 67.20738220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b50 -00008639 67.20740509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b60 -00008640 67.20741272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b60 -00008641 67.20743561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b70 -00008642 67.20743561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b70 -00008643 67.20746613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b80 -00008644 67.20746613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b80 -00008645 67.20749664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b90 -00008646 67.20749664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b90 -00008647 67.20751953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba0 -00008648 67.20751953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba0 -00008649 67.20755005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb0 -00008650 67.20755005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb0 -00008651 67.20758057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc0 -00008652 67.20758057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc0 -00008653 67.20760345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd0 -00008654 67.20761108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd0 -00008655 67.20763397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be0 -00008656 67.20763397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be0 -00008657 67.20766449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf0 -00008658 67.20766449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf0 -00008659 67.20769501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c00 -00008660 67.20769501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c00 -00008661 67.20771790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c10 -00008662 67.20772552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c10 -00008663 67.20774841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c20 -00008664 67.20774841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c20 -00008665 67.20777893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c30 -00008666 67.20777893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c30 -00008667 67.20780182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c40 -00008668 67.20780945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c40 -00008669 67.20783234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c50 -00008670 67.20783234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c50 -00008671 67.20786285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c60 -00008672 67.20786285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c60 -00008673 67.20789337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c70 -00008674 67.20789337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c70 -00008675 67.20791626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c80 -00008676 67.20792389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c80 -00008677 67.20794678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c90 -00008678 67.20794678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c90 -00008679 67.20797729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca0 -00008680 67.20797729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca0 -00008681 67.20800018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb0 -00008682 67.20800781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb0 -00008683 67.20803070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc0 -00008684 67.20803070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc0 -00008685 67.20806122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd0 -00008686 67.20806122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd0 -00008687 67.20809174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ce0 -00008688 67.20809174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ce0 -00008689 67.20811462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf0 -00008690 67.20812225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf0 -00008691 67.20814514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d00 -00008692 67.20814514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d00 -00008693 67.20817566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d10 -00008694 67.20817566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d10 -00008695 67.20820618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d20 -00008696 67.20820618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d20 -00008697 67.20822906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d30 -00008698 67.20822906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d30 -00008699 67.20825958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d40 -00008700 67.20825958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d40 -00008701 67.20829010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d50 -00008702 67.20829010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d50 -00008703 67.20831299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d60 -00008704 67.20832062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d60 -00008705 67.20834351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d70 -00008706 67.20834351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d70 -00008707 67.20837402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d80 -00008708 67.20837402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d80 -00008709 67.20840454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d90 -00008710 67.20840454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d90 -00008711 67.20842743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da0 -00008712 67.20843506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da0 -00008713 67.20845795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db0 -00008714 67.20845795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db0 -00008715 67.20848846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc0 -00008716 67.20849609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc0 -00008717 67.20851898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd0 -00008718 67.20851898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd0 -00008719 67.20854187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de0 -00008720 67.20854187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de0 -00008721 67.20857239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df0 -00008722 67.20857239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df0 -00008723 67.20860291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e00 -00008724 67.20860291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e00 -00008725 67.20862579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e10 -00008726 67.20863342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e10 -00008727 67.20865631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e20 -00008728 67.20865631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e20 -00008729 67.20868683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e30 -00008730 67.20869446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e30 -00008731 67.20871735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e40 -00008732 67.20871735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e40 -00008733 67.20874023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e50 -00008734 67.20874023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e50 -00008735 67.20877075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e60 -00008736 67.20877075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e60 -00008737 67.20880127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e70 -00008738 67.20880127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e70 -00008739 67.20882416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e80 -00008740 67.20883179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e80 -00008741 67.20885468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e90 -00008742 67.20885468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e90 -00008743 67.20888519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea0 -00008744 67.20889282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ea0 -00008745 67.20891571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb0 -00008746 67.20891571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10eb0 -00008747 67.20893860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -00008748 67.20894623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec0 -00008749 67.20896912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -00008750 67.20896912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed0 -00008751 67.20899963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -00008752 67.20900726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee0 -00008753 67.20903015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -00008754 67.20903015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef0 -00008755 67.20905304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -00008756 67.20906067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f00 -00008757 67.20909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -00008758 67.20909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f10 -00008759 67.20911407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -00008760 67.20911407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f20 -00008761 67.20913696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -00008762 67.20914459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f30 -00008763 67.20916748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -00008764 67.20916748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f40 -00008765 67.20919800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -00008766 67.20920563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f50 -00008767 67.20922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -00008768 67.20922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f60 -00008769 67.20925140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -00008770 67.20925903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f70 -00008771 67.20928955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -00008772 67.20928955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f80 -00008773 67.20931244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -00008774 67.20932007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f90 -00008775 67.20934296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -00008776 67.20934296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa0 -00008777 67.20936584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -00008778 67.20937347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb0 -00008779 67.20940399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -00008780 67.20940399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc0 -00008781 67.20942688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -00008782 67.20943451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd0 -00008783 67.20945740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -00008784 67.20945740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe0 -00008785 67.20948792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -00008786 67.20948792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff0 -00008787 67.20951843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -00008788 67.20951843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11000 -00008789 67.20954132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -00008790 67.20954895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11010 -00008791 67.20957184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11020 -00008792 67.20957184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11020 -00008793 67.20960236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11030 -00008794 67.20960999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11030 -00008795 67.20963287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11040 -00008796 67.20963287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11040 -00008797 67.20965576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11050 -00008798 67.20966339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11050 -00008799 67.20968628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11060 -00008800 67.20968628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11060 -00008801 67.20971680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11070 -00008802 67.20971680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11070 -00008803 67.20973969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11080 -00008804 67.20974731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11080 -00008805 67.20977020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11090 -00008806 67.20977020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11090 -00008807 67.20980072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a0 -00008808 67.20980835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a0 -00008809 67.20983124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b0 -00008810 67.20983124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b0 -00008811 67.20985413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c0 -00008812 67.20986176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c0 -00008813 67.20988464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d0 -00008814 67.20988464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d0 -00008815 67.20991516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e0 -00008816 67.20992279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e0 -00008817 67.20994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -00008818 67.20994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -00008819 67.20996857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -00008820 67.20996857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -00008821 67.20999908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -00008822 67.21000671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -00008823 67.21002960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -00008824 67.21002960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -00008825 67.21005249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -00008826 67.21006012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -00008827 67.21008301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -00008828 67.21008301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -00008829 67.21011353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -00008830 67.21012115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -00008831 67.21014404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -00008832 67.21014404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -00008833 67.21016693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -00008834 67.21017456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -00008835 67.21020508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -00008836 67.21020508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -00008837 67.21022797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -00008838 67.21022797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -00008839 67.21025085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -00008840 67.21025848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -00008841 67.21028137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -00008842 67.21028137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -00008843 67.21031189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -00008844 67.21031952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -00008845 67.21034241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -00008846 67.21034241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -00008847 67.21036530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -00008848 67.21037292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -00008849 67.21040344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -00008850 67.21040344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -00008851 67.21042633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -00008852 67.21043396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -00008853 67.21045685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -00008854 67.21045685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -00008855 67.21047974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -00008856 67.21047974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -00008857 67.21051025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -00008858 67.21051788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -00008859 67.21054077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -00008860 67.21054077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -00008861 67.21056366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -00008862 67.21057129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11250 -00008863 67.21060181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -00008864 67.21060181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11260 -00008865 67.21062469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -00008866 67.21063232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11270 -00008867 67.21065521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -00008868 67.21065521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11280 -00008869 67.21067810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -00008870 67.21068573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11290 -00008871 67.21071625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -00008872 67.21071625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112a0 -00008873 67.21073914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -00008874 67.21073914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112b0 -00008875 67.21076965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -00008876 67.21076965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112c0 -00008877 67.21080017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -00008878 67.21080017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112d0 -00008879 67.21082306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -00008880 67.21083069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112e0 -00008881 67.21085358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -00008882 67.21085358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x112f0 -00008883 67.21087646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -00008884 67.21088409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11300 -00008885 67.21091461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -00008886 67.21091461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11310 -00008887 67.21093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -00008888 67.21094513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11320 -00008889 67.21096802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -00008890 67.21096802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11330 -00008891 67.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -00008892 67.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11340 -00008893 67.21102142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -00008894 67.21102905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11350 -00008895 67.21105194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -00008896 67.21105194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11360 -00008897 67.21107483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -00008898 67.21108246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11370 -00008899 67.21111298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -00008900 67.21111298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11380 -00008901 67.21113586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -00008902 67.21114349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11390 -00008903 67.21116638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a0 -00008904 67.21116638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a0 -00008905 67.21119690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b0 -00008906 67.21119690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b0 -00008907 67.21122742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c0 -00008908 67.21122742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c0 -00008909 67.21125031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d0 -00008910 67.21125793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d0 -00008911 67.21128082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e0 -00008912 67.21128082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e0 -00008913 67.21131134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f0 -00008914 67.21131134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f0 -00008915 67.21133423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11400 -00008916 67.21134186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11400 -00008917 67.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11410 -00008918 67.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11410 -00008919 67.21139526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11420 -00008920 67.21139526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11420 -00008921 67.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11430 -00008922 67.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11430 -00008923 67.21144867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11440 -00008924 67.21145630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11440 -00008925 67.21147919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11450 -00008926 67.21147919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11450 -00008927 67.21150970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11460 -00008928 67.21151733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11460 -00008929 67.21154022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11470 -00008930 67.21154022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11470 -00008931 67.21156311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11480 -00008932 67.21156311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11480 -00008933 67.21159363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11490 -00008934 67.21159363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11490 -00008935 67.21162415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a0 -00008936 67.21162415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a0 -00008937 67.21164703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b0 -00008938 67.21165466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b0 -00008939 67.21167755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c0 -00008940 67.21167755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c0 -00008941 67.21170807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d0 -00008942 67.21171570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d0 -00008943 67.21173859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e0 -00008944 67.21173859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e0 -00008945 67.21176147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114f0 -00008946 67.21176910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x114f0 -00008947 67.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11500 -00008948 67.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11500 -00008949 67.21182251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11510 -00008950 67.21182251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11510 -00008951 67.21184540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11520 -00008952 67.21185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11520 -00008953 67.21187592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11530 -00008954 67.21187592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11530 -00008955 67.21190643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11540 -00008956 67.21191406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11540 -00008957 67.21193695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11550 -00008958 67.21193695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11550 -00008959 67.21195984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11560 -00008960 67.21196747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11560 -00008961 67.21199036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11570 -00008962 67.21199036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11570 -00008963 67.21202087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11580 -00008964 67.21202850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11580 -00008965 67.21205139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11590 -00008966 67.21205139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11590 -00008967 67.21207428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a0 -00008968 67.21207428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a0 -00008969 67.21210480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b0 -00008970 67.21211243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b0 -00008971 67.21213531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c0 -00008972 67.21213531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115c0 -00008973 67.21215820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d0 -00008974 67.21216583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115d0 -00008975 67.21218872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e0 -00008976 67.21218872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115e0 -00008977 67.21221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f0 -00008978 67.21222687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x115f0 -00008979 67.21224976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11600 -00008980 67.21224976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11600 -00008981 67.21227264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11610 -00008982 67.21227264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11610 -00008983 67.21230316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11620 -00008984 67.21231079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11620 -00008985 67.21233368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11630 -00008986 67.21233368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11630 -00008987 67.21235657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11640 -00008988 67.21236420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11640 -00008989 67.21238708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11650 -00008990 67.21238708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11650 -00008991 67.21241760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11660 -00008992 67.21242523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11660 -00008993 67.21244812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11670 -00008994 67.21244812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11670 -00008995 67.21247101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11680 -00008996 67.21247864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11680 -00008997 67.21250916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11690 -00008998 67.21250916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11690 -00008999 67.21253204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a0 -00009000 67.21253967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116a0 -00009001 67.21256256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b0 -00009002 67.21256256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116b0 -00009003 67.21258545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116c0 -00009004 67.21258545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116c0 -00009005 67.21261597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116d0 -00009006 67.21262360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116d0 -00009007 67.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116e0 -00009008 67.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116e0 -00009009 67.21266937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116f0 -00009010 67.21267700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x116f0 -00009011 67.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -00009012 67.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -00009013 67.21273041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -00009014 67.21273804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -00009015 67.21276093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -00009016 67.21276093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -00009017 67.21278381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -00009018 67.21278381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -00009019 67.21281433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -00009020 67.21282196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -00009021 67.21284485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -00009022 67.21284485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -00009023 67.21286774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -00009024 67.21287537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -00009025 67.21290588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -00009026 67.21290588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -00009027 67.21292877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -00009028 67.21293640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -00009029 67.21295929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -00009030 67.21295929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -00009031 67.21298218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -00009032 67.21298218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -00009033 67.21301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117b0 -00009034 67.21302032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117b0 -00009035 67.21304321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117c0 -00009036 67.21304321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117c0 -00009037 67.21306610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117d0 -00009038 67.21307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117d0 -00009039 67.21310425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117e0 -00009040 67.21310425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117e0 -00009041 67.21312714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117f0 -00009042 67.21313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x117f0 -00009043 67.21315765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11800 -00009044 67.21315765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11800 -00009045 67.21318054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11810 -00009046 67.21318817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11810 -00009047 67.21321869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11820 -00009048 67.21321869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11820 -00009049 67.21324158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11830 -00009050 67.21324158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11830 -00009051 67.21326447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11840 -00009052 67.21327209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11840 -00009053 67.21330261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11850 -00009054 67.21330261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11850 -00009055 67.21332550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11860 -00009056 67.21333313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11860 -00009057 67.21335602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11870 -00009058 67.21335602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11870 -00009059 67.21337891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11880 -00009060 67.21338654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11880 -00009061 67.21341705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11890 -00009062 67.21341705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11890 -00009063 67.21343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118a0 -00009064 67.21344757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118a0 -00009065 67.21347046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118b0 -00009066 67.21347046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118b0 -00009067 67.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118c0 -00009068 67.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118c0 -00009069 67.21352386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118d0 -00009070 67.21353149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118d0 -00009071 67.21355438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118e0 -00009072 67.21355438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118e0 -00009073 67.21357727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118f0 -00009074 67.21358490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x118f0 -00009075 67.21361542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11900 -00009076 67.21361542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11900 -00009077 67.21363831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11910 -00009078 67.21364594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11910 -00009079 67.21366882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11920 -00009080 67.21366882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11920 -00009081 67.21369934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11930 -00009082 67.21369934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11930 -00009083 67.21372986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11940 -00009084 67.21372986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11940 -00009085 67.21375275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11950 -00009086 67.21375275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11950 -00009087 67.21377563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11960 -00009088 67.21378326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11960 -00009089 67.21381378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11970 -00009090 67.21381378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11970 -00009091 67.21383667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11980 -00009092 67.21384430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11980 -00009093 67.21386719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11990 -00009094 67.21386719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11990 -00009095 67.21389771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a0 -00009096 67.21389771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119a0 -00009097 67.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b0 -00009098 67.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119b0 -00009099 67.21395111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c0 -00009100 67.21395111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119c0 -00009101 67.21398163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d0 -00009102 67.21398163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119d0 -00009103 67.21401215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e0 -00009104 67.21401215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e0 -00009105 67.21403503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f0 -00009106 67.21404266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f0 -00009107 67.21406555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a00 -00009108 67.21406555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a00 -00009109 67.21409607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a10 -00009110 67.21409607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a10 -00009111 67.21412659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a20 -00009112 67.21412659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a20 -00009113 67.21414948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a30 -00009114 67.21415710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a30 -00009115 67.21417999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a40 -00009116 67.21417999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a40 -00009117 67.21421051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a50 -00009118 67.21421051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a50 -00009119 67.21424103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a60 -00009120 67.21424103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a60 -00009121 67.21426392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a70 -00009122 67.21426392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a70 -00009123 67.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a80 -00009124 67.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a80 -00009125 67.21432495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a90 -00009126 67.21432495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a90 -00009127 67.21434784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa0 -00009128 67.21435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa0 -00009129 67.21437836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab0 -00009130 67.21437836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab0 -00009131 67.21440887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac0 -00009132 67.21441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac0 -00009133 67.21443939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad0 -00009134 67.21443939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad0 -00009135 67.21446228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae0 -00009136 67.21446991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae0 -00009137 67.21449280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af0 -00009138 67.21449280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af0 -00009139 67.21452332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b00 -00009140 67.21452332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b00 -00009141 67.21454620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b10 -00009142 67.21455383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b10 -00009143 67.21457672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b20 -00009144 67.21457672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b20 -00009145 67.21460724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b30 -00009146 67.21461487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b30 -00009147 67.21463776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b40 -00009148 67.21463776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b40 -00009149 67.21466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b50 -00009150 67.21466827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b50 -00009151 67.21469116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b60 -00009152 67.21469116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b60 -00009153 67.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b70 -00009154 67.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b70 -00009155 67.21474457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b80 -00009156 67.21475220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b80 -00009157 67.21477509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b90 -00009158 67.21477509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b90 -00009159 67.21480560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba0 -00009160 67.21481323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba0 -00009161 67.21483612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb0 -00009162 67.21483612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb0 -00009163 67.21485901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc0 -00009164 67.21486664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc0 -00009165 67.21488953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd0 -00009166 67.21488953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd0 -00009167 67.21492004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be0 -00009168 67.21492767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be0 -00009169 67.21495056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf0 -00009170 67.21495056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf0 -00009171 67.21497345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c00 -00009172 67.21497345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c00 -00009173 67.21500397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c10 -00009174 67.21501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c10 -00009175 67.21503448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c20 -00009176 67.21503448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c20 -00009177 67.21505737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c30 -00009178 67.21506500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c30 -00009179 67.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c40 -00009180 67.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c40 -00009181 67.21511841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c50 -00009182 67.21512604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c50 -00009183 67.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c60 -00009184 67.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c60 -00009185 67.21517181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c70 -00009186 67.21517181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c70 -00009187 67.21520233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c80 -00009188 67.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c80 -00009189 67.21523285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c90 -00009190 67.21523285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c90 -00009191 67.21525574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca0 -00009192 67.21526337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca0 -00009193 67.21528625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb0 -00009194 67.21528625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb0 -00009195 67.21531677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc0 -00009196 67.21532440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc0 -00009197 67.21534729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd0 -00009198 67.21534729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd0 -00009199 67.21537018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -00009200 67.21537781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -00009201 67.21540833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -00009202 67.21540833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -00009203 67.21543121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -00009204 67.21543884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -00009205 67.21546173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -00009206 67.21546173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -00009207 67.21548462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -00009208 67.21548462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -00009209 67.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -00009210 67.21552277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -00009211 67.21554565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -00009212 67.21554565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -00009213 67.21556854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -00009214 67.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -00009215 67.21560669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -00009216 67.21560669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -00009217 67.21562958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -00009218 67.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -00009219 67.21566010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -00009220 67.21566010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -00009221 67.21568298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -00009222 67.21569061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -00009223 67.21572113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -00009224 67.21572113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -00009225 67.21574402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -00009226 67.21574402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -00009227 67.21576691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -00009228 67.21577454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -00009229 67.21580505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -00009230 67.21580505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -00009231 67.21582794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -00009232 67.21583557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -00009233 67.21585846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -00009234 67.21585846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -00009235 67.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -00009236 67.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -00009237 67.21591949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -00009238 67.21591949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -00009239 67.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -00009240 67.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -00009241 67.21596527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -00009242 67.21597290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -00009243 67.21600342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -00009244 67.21600342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -00009245 67.21602631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -00009246 67.21603394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -00009247 67.21605682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -00009248 67.21605682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -00009249 67.21607971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -00009250 67.21608734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -00009251 67.21611786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -00009252 67.21611786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -00009253 67.21614075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -00009254 67.21614075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -00009255 67.21616364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -00009256 67.21617126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -00009257 67.21620178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -00009258 67.21620178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -00009259 67.21622467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -00009260 67.21623230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -00009261 67.21625519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -00009262 67.21625519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -00009263 67.21627808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -00009264 67.21628571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -00009265 67.21631622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -00009266 67.21631622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -00009267 67.21633911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -00009268 67.21634674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -00009269 67.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -00009270 67.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -00009271 67.21640015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -00009272 67.21640015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -00009273 67.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -00009274 67.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -00009275 67.21645355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -00009276 67.21645355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -00009277 67.21647644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -00009278 67.21648407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -00009279 67.21651459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -00009280 67.21651459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -00009281 67.21653748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -00009282 67.21654510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -00009283 67.21656799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -00009284 67.21656799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -00009285 67.21659851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -00009286 67.21659851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -00009287 67.21662903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa0 -00009288 67.21662903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa0 -00009289 67.21665192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb0 -00009290 67.21665192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb0 -00009291 67.21668243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc0 -00009292 67.21668243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc0 -00009293 67.21671295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd0 -00009294 67.21671295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd0 -00009295 67.21673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe0 -00009296 67.21674347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe0 -00009297 67.21676636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff0 -00009298 67.21676636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff0 -00009299 67.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12000 -00009300 67.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12000 -00009301 67.21682739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12010 -00009302 67.21682739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12010 -00009303 67.21685028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12020 -00009304 67.21685791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12020 -00009305 67.21688080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12030 -00009306 67.21688080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12030 -00009307 67.21691132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12040 -00009308 67.21691132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12040 -00009309 67.21694183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12050 -00009310 67.21694183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12050 -00009311 67.21696472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12060 -00009312 67.21696472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12060 -00009313 67.21699524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12070 -00009314 67.21699524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12070 -00009315 67.21702576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12080 -00009316 67.21702576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12080 -00009317 67.21704865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12090 -00009318 67.21705627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12090 -00009319 67.21707916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120a0 -00009320 67.21707916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120a0 -00009321 67.21710968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120b0 -00009322 67.21711731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120b0 -00009323 67.21714020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120c0 -00009324 67.21714020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120c0 -00009325 67.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120d0 -00009326 67.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120d0 -00009327 67.21719360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120e0 -00009328 67.21719360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120e0 -00009329 67.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120f0 -00009330 67.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x120f0 -00009331 67.21724701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12100 -00009332 67.21725464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12100 -00009333 67.21727753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12110 -00009334 67.21727753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12110 -00009335 67.21730804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12120 -00009336 67.21730804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12120 -00009337 67.21733856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12130 -00009338 67.21733856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12130 -00009339 67.21736145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12140 -00009340 67.21736908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12140 -00009341 67.21739197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12150 -00009342 67.21739197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12150 -00009343 67.21742249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12160 -00009344 67.21742249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12160 -00009345 67.21744537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -00009346 67.21745300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -00009347 67.21747589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -00009348 67.21747589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -00009349 67.21750641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -00009350 67.21751404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -00009351 67.21753693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -00009352 67.21753693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -00009353 67.21755981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -00009354 67.21756744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -00009355 67.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -00009356 67.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -00009357 67.21762085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -00009358 67.21762085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -00009359 67.21764374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -00009360 67.21765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -00009361 67.21767426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -00009362 67.21767426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -00009363 67.21770477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -00009364 67.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -00009365 67.21773529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -00009366 67.21773529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -00009367 67.21775818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -00009368 67.21776581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -00009369 67.21778870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -00009370 67.21778870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -00009371 67.21781921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -00009372 67.21781921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -00009373 67.21784210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -00009374 67.21784973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -00009375 67.21787262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -00009376 67.21787262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -00009377 67.21790314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -00009378 67.21791077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -00009379 67.21793365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -00009380 67.21793365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -00009381 67.21795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -00009382 67.21796417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -00009383 67.21798706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -00009384 67.21798706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -00009385 67.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -00009386 67.21802521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -00009387 67.21804810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c0 -00009388 67.21804810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c0 -00009389 67.21807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d0 -00009390 67.21807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122d0 -00009391 67.21810150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e0 -00009392 67.21810913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122e0 -00009393 67.21813202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f0 -00009394 67.21813202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x122f0 -00009395 67.21815491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12300 -00009396 67.21816254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12300 -00009397 67.21818542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12310 -00009398 67.21818542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12310 -00009399 67.21821594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12320 -00009400 67.21822357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12320 -00009401 67.21824646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12330 -00009402 67.21824646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12330 -00009403 67.21826935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12340 -00009404 67.21826935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12340 -00009405 67.21829987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12350 -00009406 67.21830750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12350 -00009407 67.21833038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12360 -00009408 67.21833038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12360 -00009409 67.21835327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12370 -00009410 67.21836090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12370 -00009411 67.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12380 -00009412 67.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12380 -00009413 67.21841431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12390 -00009414 67.21842194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12390 -00009415 67.21844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a0 -00009416 67.21844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a0 -00009417 67.21846771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b0 -00009418 67.21847534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b0 -00009419 67.21850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c0 -00009420 67.21850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c0 -00009421 67.21852875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123d0 -00009422 67.21852875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123d0 -00009423 67.21855927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123e0 -00009424 67.21855927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123e0 -00009425 67.21858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123f0 -00009426 67.21858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x123f0 -00009427 67.21861267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12400 -00009428 67.21862030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12400 -00009429 67.21864319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12410 -00009430 67.21864319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12410 -00009431 67.21866608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12420 -00009432 67.21867371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12420 -00009433 67.21870422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12430 -00009434 67.21870422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12430 -00009435 67.21872711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12440 -00009436 67.21873474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12440 -00009437 67.21875763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12450 -00009438 67.21875763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12450 -00009439 67.21878052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12460 -00009440 67.21878052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12460 -00009441 67.21881104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12470 -00009442 67.21881866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12470 -00009443 67.21884155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12480 -00009444 67.21884155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12480 -00009445 67.21886444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12490 -00009446 67.21887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12490 -00009447 67.21890259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a0 -00009448 67.21890259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124a0 -00009449 67.21892548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b0 -00009450 67.21893311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124b0 -00009451 67.21895599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c0 -00009452 67.21895599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124c0 -00009453 67.21897888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d0 -00009454 67.21898651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124d0 -00009455 67.21901703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e0 -00009456 67.21901703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124e0 -00009457 67.21903992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f0 -00009458 67.21903992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x124f0 -00009459 67.21906281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12500 -00009460 67.21907043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12500 -00009461 67.21910095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12510 -00009462 67.21910095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12510 -00009463 67.21912384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12520 -00009464 67.21913147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12520 -00009465 67.21915436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12530 -00009466 67.21915436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12530 -00009467 67.21917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12540 -00009468 67.21918488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12540 -00009469 67.21921539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12550 -00009470 67.21921539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12550 -00009471 67.21923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12560 -00009472 67.21924591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12560 -00009473 67.21926880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12570 -00009474 67.21926880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12570 -00009475 67.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12580 -00009476 67.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12580 -00009477 67.21932220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12590 -00009478 67.21932983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12590 -00009479 67.21935272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125a0 -00009480 67.21935272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125a0 -00009481 67.21937561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125b0 -00009482 67.21938324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125b0 -00009483 67.21941376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125c0 -00009484 67.21941376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125c0 -00009485 67.21943665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125d0 -00009486 67.21944427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125d0 -00009487 67.21946716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125e0 -00009488 67.21946716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125e0 -00009489 67.21949768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125f0 -00009490 67.21949768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x125f0 -00009491 67.21952820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12600 -00009492 67.21952820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12600 -00009493 67.21955109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12610 -00009494 67.21955109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12610 -00009495 67.21957397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12620 -00009496 67.21958160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12620 -00009497 67.21961212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12630 -00009498 67.21961212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12630 -00009499 67.21963501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00009500 67.21964264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00009501 67.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00009502 67.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00009503 67.21969604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00009504 67.21969604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00009505 67.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00009506 67.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00009507 67.21974945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00009508 67.21974945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00009509 67.21977234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00009510 67.21977997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00009511 67.21981049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00009512 67.21981049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00009513 67.21983337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00009514 67.21984100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00009515 67.21986389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00009516 67.21986389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00009517 67.21989441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00009518 67.21989441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00009519 67.21992493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00009520 67.21992493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00009521 67.21994781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f0 -00009522 67.21995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x126f0 -00009523 67.21997833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12700 -00009524 67.21997833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12700 -00009525 67.22000885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12710 -00009526 67.22000885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12710 -00009527 67.22003174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12720 -00009528 67.22003937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12720 -00009529 67.22006226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12730 -00009530 67.22006226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12730 -00009531 67.22009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12740 -00009532 67.22009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12740 -00009533 67.22012329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -00009534 67.22012329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12750 -00009535 67.22014618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -00009536 67.22015381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12760 -00009537 67.22017670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -00009538 67.22017670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12770 -00009539 67.22020721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -00009540 67.22020721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12780 -00009541 67.22023010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -00009542 67.22023773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12790 -00009543 67.22026062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -00009544 67.22026062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a0 -00009545 67.22029114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -00009546 67.22029114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b0 -00009547 67.22032166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -00009548 67.22032166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c0 -00009549 67.22034454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -00009550 67.22035217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d0 -00009551 67.22037506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -00009552 67.22037506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e0 -00009553 67.22040558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -00009554 67.22040558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f0 -00009555 67.22042847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -00009556 67.22043610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12800 -00009557 67.22045898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -00009558 67.22045898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12810 -00009559 67.22048950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -00009560 67.22048950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12820 -00009561 67.22052002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -00009562 67.22052002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12830 -00009563 67.22054291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -00009564 67.22055054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12840 -00009565 67.22057343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -00009566 67.22057343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12850 -00009567 67.22060394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -00009568 67.22061157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12860 -00009569 67.22063446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -00009570 67.22063446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12870 -00009571 67.22065735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -00009572 67.22065735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12880 -00009573 67.22068787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -00009574 67.22068787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12890 -00009575 67.22071838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -00009576 67.22071838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a0 -00009577 67.22074127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b0 -00009578 67.22074890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b0 -00009579 67.22077179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c0 -00009580 67.22077179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c0 -00009581 67.22080231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d0 -00009582 67.22080994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d0 -00009583 67.22083282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e0 -00009584 67.22083282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e0 -00009585 67.22085571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f0 -00009586 67.22085571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f0 -00009587 67.22088623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12900 -00009588 67.22088623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12900 -00009589 67.22091675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12910 -00009590 67.22091675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12910 -00009591 67.22093964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12920 -00009592 67.22094727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12920 -00009593 67.22097015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12930 -00009594 67.22097015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12930 -00009595 67.22100067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12940 -00009596 67.22100830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12940 -00009597 67.22103119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12950 -00009598 67.22103119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12950 -00009599 67.22105408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12960 -00009600 67.22105408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12960 -00009601 67.22108459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12970 -00009602 67.22108459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12970 -00009603 67.22111511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12980 -00009604 67.22111511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12980 -00009605 67.22113800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12990 -00009606 67.22114563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12990 -00009607 67.22116852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -00009608 67.22116852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -00009609 67.22119904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -00009610 67.22120667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -00009611 67.22122955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -00009612 67.22122955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -00009613 67.22125244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -00009614 67.22126007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -00009615 67.22128296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -00009616 67.22128296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -00009617 67.22131348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -00009618 67.22131348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -00009619 67.22133636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -00009620 67.22134399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -00009621 67.22136688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -00009622 67.22136688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -00009623 67.22139740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -00009624 67.22140503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -00009625 67.22142792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -00009626 67.22142792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -00009627 67.22145081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -00009628 67.22145844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -00009629 67.22148132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -00009630 67.22148132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -00009631 67.22151184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -00009632 67.22151947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -00009633 67.22154236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -00009634 67.22154236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -00009635 67.22156525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -00009636 67.22156525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -00009637 67.22159576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -00009638 67.22160339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -00009639 67.22162628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -00009640 67.22162628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -00009641 67.22164917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -00009642 67.22165680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -00009643 67.22167969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -00009644 67.22167969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -00009645 67.22171021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -00009646 67.22171783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -00009647 67.22174072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -00009648 67.22174072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -00009649 67.22176361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -00009650 67.22177124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -00009651 67.22180176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b00 -00009652 67.22180176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b00 -00009653 67.22182465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b10 -00009654 67.22182465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b10 -00009655 67.22184753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b20 -00009656 67.22185516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b20 -00009657 67.22187805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b30 -00009658 67.22187805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b30 -00009659 67.22190857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b40 -00009660 67.22191620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b40 -00009661 67.22193909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b50 -00009662 67.22193909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b50 -00009663 67.22196198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b60 -00009664 67.22196960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b60 -00009665 67.22200012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -00009666 67.22200012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -00009667 67.22202301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -00009668 67.22202301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -00009669 67.22205353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -00009670 67.22205353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -00009671 67.22207642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -00009672 67.22207642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -00009673 67.22210693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -00009674 67.22211456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -00009675 67.22213745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -00009676 67.22213745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -00009677 67.22216034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -00009678 67.22216797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -00009679 67.22219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -00009680 67.22219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -00009681 67.22222137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -00009682 67.22222137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -00009683 67.22225189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -00009684 67.22225189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -00009685 67.22227478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -00009686 67.22227478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -00009687 67.22230530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c20 -00009688 67.22231293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c20 -00009689 67.22233582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c30 -00009690 67.22233582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c30 -00009691 67.22235870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c40 -00009692 67.22236633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c40 -00009693 67.22239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c50 -00009694 67.22239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c50 -00009695 67.22241974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c60 -00009696 67.22242737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c60 -00009697 67.22245026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c70 -00009698 67.22245026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c70 -00009699 67.22247314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c80 -00009700 67.22248077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c80 -00009701 67.22251129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c90 -00009702 67.22251129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c90 -00009703 67.22253418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca0 -00009704 67.22254181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca0 -00009705 67.22256470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb0 -00009706 67.22256470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb0 -00009707 67.22259521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc0 -00009708 67.22259521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc0 -00009709 67.22261810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd0 -00009710 67.22262573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd0 -00009711 67.22264862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce0 -00009712 67.22264862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce0 -00009713 67.22267151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf0 -00009714 67.22267914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf0 -00009715 67.22270966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d00 -00009716 67.22270966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d00 -00009717 67.22273254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d10 -00009718 67.22274017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d10 -00009719 67.22276306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d20 -00009720 67.22276306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d20 -00009721 67.22279358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d30 -00009722 67.22279358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d30 -00009723 67.22281647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d40 -00009724 67.22282410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d40 -00009725 67.22284698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d50 -00009726 67.22284698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d50 -00009727 67.22286987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d60 -00009728 67.22287750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d60 -00009729 67.22290802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d70 -00009730 67.22290802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d70 -00009731 67.22294617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d80 -00009732 67.22294617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d80 -00009733 67.22296906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d90 -00009734 67.22297668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d90 -00009735 67.22299957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da0 -00009736 67.22300720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da0 -00009737 67.22303009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db0 -00009738 67.22303009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db0 -00009739 67.22306061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc0 -00009740 67.22306824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc0 -00009741 67.22309113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd0 -00009742 67.22309113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd0 -00009743 67.22311401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de0 -00009744 67.22312164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de0 -00009745 67.22315216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df0 -00009746 67.22315216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df0 -00009747 67.22317505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e00 -00009748 67.22318268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e00 -00009749 67.22320557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e10 -00009750 67.22320557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e10 -00009751 67.22322845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e20 -00009752 67.22323608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e20 -00009753 67.22326660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e30 -00009754 67.22326660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e30 -00009755 67.22328949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e40 -00009756 67.22329712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e40 -00009757 67.22332001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e50 -00009758 67.22332001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e50 -00009759 67.22335052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e60 -00009760 67.22335052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e60 -00009761 67.22338104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e70 -00009762 67.22338104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e70 -00009763 67.22340393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e80 -00009764 67.22340393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e80 -00009765 67.22343445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e90 -00009766 67.22343445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e90 -00009767 67.22346497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ea0 -00009768 67.22346497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ea0 -00009769 67.22348785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12eb0 -00009770 67.22349548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12eb0 -00009771 67.22351837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -00009772 67.22351837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -00009773 67.22354889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -00009774 67.22354889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -00009775 67.22357941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -00009776 67.22357941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -00009777 67.22360229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -00009778 67.22360992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -00009779 67.22363281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -00009780 67.22363281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -00009781 67.22366333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -00009782 67.22366333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -00009783 67.22368622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -00009784 67.22369385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -00009785 67.22371674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -00009786 67.22371674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -00009787 67.22374725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -00009788 67.22374725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -00009789 67.22377777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -00009790 67.22377777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -00009791 67.22380066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -00009792 67.22380829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -00009793 67.22383118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f70 -00009794 67.22383118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f70 -00009795 67.22386169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f80 -00009796 67.22386932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f80 -00009797 67.22389221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f90 -00009798 67.22389221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f90 -00009799 67.22391510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa0 -00009800 67.22391510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fa0 -00009801 67.22394562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb0 -00009802 67.22394562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fb0 -00009803 67.22397614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc0 -00009804 67.22397614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fc0 -00009805 67.22399902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd0 -00009806 67.22400665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fd0 -00009807 67.22402954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe0 -00009808 67.22402954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12fe0 -00009809 67.22406006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff0 -00009810 67.22406769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ff0 -00009811 67.22409058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13000 -00009812 67.22409058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13000 -00009813 67.22411346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13010 -00009814 67.22411346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13010 -00009815 67.22414398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13020 -00009816 67.22414398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13020 -00009817 67.22417450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13030 -00009818 67.22417450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13030 -00009819 67.22419739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13040 -00009820 67.22420502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13040 -00009821 67.22422791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13050 -00009822 67.22422791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13050 -00009823 67.22425842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13060 -00009824 67.22426605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13060 -00009825 67.22428894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13070 -00009826 67.22428894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13070 -00009827 67.22431183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13080 -00009828 67.22431946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13080 -00009829 67.22434235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13090 -00009830 67.22434235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13090 -00009831 67.22437286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130a0 -00009832 67.22437286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130a0 -00009833 67.22440338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b0 -00009834 67.22440338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b0 -00009835 67.22442627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c0 -00009836 67.22442627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c0 -00009837 67.22445679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d0 -00009838 67.22446442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d0 -00009839 67.22448730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e0 -00009840 67.22448730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e0 -00009841 67.22454071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f0 -00009842 67.22454071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f0 -00009843 67.22456360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13100 -00009844 67.22457123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13100 -00009845 67.22459412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13110 -00009846 67.22459412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13110 -00009847 67.22461700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13120 -00009848 67.22461700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13120 -00009849 67.22464752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13130 -00009850 67.22465515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13130 -00009851 67.22467804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13140 -00009852 67.22467804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13140 -00009853 67.22470093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13150 -00009854 67.22470856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13150 -00009855 67.22473907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13160 -00009856 67.22473907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13160 -00009857 67.22476196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13170 -00009858 67.22476959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13170 -00009859 67.22479248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13180 -00009860 67.22479248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13180 -00009861 67.22482300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13190 -00009862 67.22482300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13190 -00009863 67.22485352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a0 -00009864 67.22485352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a0 -00009865 67.22487640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b0 -00009866 67.22487640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b0 -00009867 67.22489929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c0 -00009868 67.22490692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c0 -00009869 67.22493744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d0 -00009870 67.22493744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d0 -00009871 67.22496033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e0 -00009872 67.22496796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e0 -00009873 67.22499084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f0 -00009874 67.22499084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f0 -00009875 67.22502136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -00009876 67.22502136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -00009877 67.22505188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -00009878 67.22505188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -00009879 67.22507477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -00009880 67.22508240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -00009881 67.22510529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -00009882 67.22510529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -00009883 67.22513580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -00009884 67.22513580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -00009885 67.22515869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -00009886 67.22516632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -00009887 67.22518921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -00009888 67.22518921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -00009889 67.22521973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -00009890 67.22521973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -00009891 67.22525024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -00009892 67.22525024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -00009893 67.22527313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -00009894 67.22528076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -00009895 67.22530365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -00009896 67.22530365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -00009897 67.22533417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -00009898 67.22533417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -00009899 67.22536469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -00009900 67.22536469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -00009901 67.22538757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -00009902 67.22539520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -00009903 67.22541809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -00009904 67.22541809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -00009905 67.22544861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -00009906 67.22544861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -00009907 67.22547150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -00009908 67.22547913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -00009909 67.22550201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -00009910 67.22550201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -00009911 67.22553253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -00009912 67.22553253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -00009913 67.22556305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -00009914 67.22556305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -00009915 67.22558594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -00009916 67.22559357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -00009917 67.22561646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -00009918 67.22561646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -00009919 67.22564697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13360 -00009920 67.22565460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13360 -00009921 67.22567749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13370 -00009922 67.22567749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13370 -00009923 67.22570038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13380 -00009924 67.22570801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13380 -00009925 67.22573090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13390 -00009926 67.22573090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13390 -00009927 67.22576141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a0 -00009928 67.22576904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a0 -00009929 67.22579193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b0 -00009930 67.22579193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b0 -00009931 67.22581482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c0 -00009932 67.22582245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c0 -00009933 67.22585297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d0 -00009934 67.22585297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d0 -00009935 67.22587585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e0 -00009936 67.22588348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e0 -00009937 67.22590637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f0 -00009938 67.22590637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f0 -00009939 67.22592926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13400 -00009940 67.22592926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13400 -00009941 67.22595978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13410 -00009942 67.22596741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13410 -00009943 67.22599030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13420 -00009944 67.22599030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13420 -00009945 67.22601318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13430 -00009946 67.22602081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13430 -00009947 67.22605133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -00009948 67.22605133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -00009949 67.22607422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -00009950 67.22608185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -00009951 67.22610474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -00009952 67.22610474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -00009953 67.22612762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -00009954 67.22613525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -00009955 67.22616577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -00009956 67.22616577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -00009957 67.22618866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -00009958 67.22618866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -00009959 67.22621155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -00009960 67.22621918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -00009961 67.22624969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -00009962 67.22624969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -00009963 67.22627258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -00009964 67.22628021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -00009965 67.22630310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -00009966 67.22630310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -00009967 67.22632599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -00009968 67.22633362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -00009969 67.22636414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -00009970 67.22636414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -00009971 67.22638702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -00009972 67.22639465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -00009973 67.22641754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -00009974 67.22641754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -00009975 67.22644806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -00009976 67.22644806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -00009977 67.22647858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -00009978 67.22647858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -00009979 67.22650146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -00009980 67.22650146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -00009981 67.22652435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -00009982 67.22653198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -00009983 67.22656250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -00009984 67.22656250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -00009985 67.22658539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -00009986 67.22659302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -00009987 67.22661591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -00009988 67.22661591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -00009989 67.22664642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13590 -00009990 67.22664642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13590 -00009991 67.22667694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a0 -00009992 67.22667694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a0 -00009993 67.22669983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b0 -00009994 67.22670746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b0 -00009995 67.22673035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c0 -00009996 67.22673035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135c0 -00009997 67.22676086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d0 -00009998 67.22676086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135d0 -00009999 67.22678375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e0 -00010000 67.22679138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135e0 -00010001 67.22681427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f0 -00010002 67.22681427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x135f0 -00010003 67.22684479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13600 -00010004 67.22684479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13600 -00010005 67.22687531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13610 -00010006 67.22687531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13610 -00010007 67.22689819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13620 -00010008 67.22690582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13620 -00010009 67.22692871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13630 -00010010 67.22692871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13630 -00010011 67.22695923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13640 -00010012 67.22696686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13640 -00010013 67.22698975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13650 -00010014 67.22698975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13650 -00010015 67.22701263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13660 -00010016 67.22701263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13660 -00010017 67.22704315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13670 -00010018 67.22704315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13670 -00010019 67.22707367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13680 -00010020 67.22707367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13680 -00010021 67.22709656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13690 -00010022 67.22710419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13690 -00010023 67.22712708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a0 -00010024 67.22712708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136a0 -00010025 67.22715759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136b0 -00010026 67.22716522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136b0 -00010027 67.22718811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136c0 -00010028 67.22718811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136c0 -00010029 67.22721100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136d0 -00010030 67.22721100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136d0 -00010031 67.22724152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136e0 -00010032 67.22724152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136e0 -00010033 67.22727203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136f0 -00010034 67.22727203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x136f0 -00010035 67.22729492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13700 -00010036 67.22730255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13700 -00010037 67.22732544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13710 -00010038 67.22732544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13710 -00010039 67.22735596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13720 -00010040 67.22736359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13720 -00010041 67.22738647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13730 -00010042 67.22738647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13730 -00010043 67.22740936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13740 -00010044 67.22741699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13740 -00010045 67.22743988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13750 -00010046 67.22743988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13750 -00010047 67.22747040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13760 -00010048 67.22747803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13760 -00010049 67.22750092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13770 -00010050 67.22750092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13770 -00010051 67.22752380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13780 -00010052 67.22752380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13780 -00010053 67.22755432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13790 -00010054 67.22756195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13790 -00010055 67.22758484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137a0 -00010056 67.22758484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137a0 -00010057 67.22760773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137b0 -00010058 67.22761536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137b0 -00010059 67.22763824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137c0 -00010060 67.22763824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137c0 -00010061 67.22766876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137d0 -00010062 67.22767639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137d0 -00010063 67.22769928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e0 -00010064 67.22769928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e0 -00010065 67.22772217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f0 -00010066 67.22772217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f0 -00010067 67.22775269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13800 -00010068 67.22776031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13800 -00010069 67.22778320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13810 -00010070 67.22778320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13810 -00010071 67.22780609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13820 -00010072 67.22781372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13820 -00010073 67.22783661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13830 -00010074 67.22783661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13830 -00010075 67.22786713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13840 -00010076 67.22787476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13840 -00010077 67.22789764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13850 -00010078 67.22789764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13850 -00010079 67.22792053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13860 -00010080 67.22792816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13860 -00010081 67.22795868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13870 -00010082 67.22795868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13870 -00010083 67.22798157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13880 -00010084 67.22798157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13880 -00010085 67.22800446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13890 -00010086 67.22801208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13890 -00010087 67.22803497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a0 -00010088 67.22803497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a0 -00010089 67.22806549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b0 -00010090 67.22807312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b0 -00010091 67.22809601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c0 -00010092 67.22809601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c0 -00010093 67.22811890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d0 -00010094 67.22812653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d0 -00010095 67.22815704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e0 -00010096 67.22815704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e0 -00010097 67.22817993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f0 -00010098 67.22818756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f0 -00010099 67.22821045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13900 -00010100 67.22821045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13900 -00010101 67.22823334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13910 -00010102 67.22823334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13910 -00010103 67.22826385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13920 -00010104 67.22827148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13920 -00010105 67.22829437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -00010106 67.22829437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -00010107 67.22831726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -00010108 67.22832489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -00010109 67.22835541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -00010110 67.22835541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -00010111 67.22837830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -00010112 67.22837830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -00010113 67.22840881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -00010114 67.22840881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -00010115 67.22843170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -00010116 67.22843170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -00010117 67.22846985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -00010118 67.22846985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -00010119 67.22849274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -00010120 67.22849274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -00010121 67.22851563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -00010122 67.22852325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -00010123 67.22855377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -00010124 67.22855377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -00010125 67.22857666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -00010126 67.22858429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -00010127 67.22860718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e0 -00010128 67.22860718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e0 -00010129 67.22863007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f0 -00010130 67.22863770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f0 -00010131 67.22866821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a00 -00010132 67.22866821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a00 -00010133 67.22869110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a10 -00010134 67.22869873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a10 -00010135 67.22872162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a20 -00010136 67.22872162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a20 -00010137 67.22875214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a30 -00010138 67.22875214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a30 -00010139 67.22877502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a40 -00010140 67.22878265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a40 -00010141 67.22880554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a50 -00010142 67.22880554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a50 -00010143 67.22882843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a60 -00010144 67.22883606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a60 -00010145 67.22886658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a70 -00010146 67.22886658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a70 -00010147 67.22888947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a80 -00010148 67.22889709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a80 -00010149 67.22891998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a90 -00010150 67.22892761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a90 -00010151 67.22901917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa0 -00010152 67.22902679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa0 -00010153 67.22904968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab0 -00010154 67.22904968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab0 -00010155 67.22907257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac0 -00010156 67.22908020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac0 -00010157 67.22911072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad0 -00010158 67.22911072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad0 -00010159 67.22913361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae0 -00010160 67.22914124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae0 -00010161 67.22916412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af0 -00010162 67.22916412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af0 -00010163 67.22918701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b00 -00010164 67.22919464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b00 -00010165 67.22922516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b10 -00010166 67.22922516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b10 -00010167 67.22924805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b20 -00010168 67.22924805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b20 -00010169 67.22927094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b30 -00010170 67.22927856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b30 -00010171 67.22930908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b40 -00010172 67.22930908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b40 -00010173 67.22933197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b50 -00010174 67.22933960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b50 -00010175 67.22936249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b60 -00010176 67.22936249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b60 -00010177 67.22938538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b70 -00010178 67.22939301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b70 -00010179 67.22942352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b80 -00010180 67.22942352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b80 -00010181 67.22944641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b90 -00010182 67.22945404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b90 -00010183 67.22947693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba0 -00010184 67.22947693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba0 -00010185 67.22950745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb0 -00010186 67.22950745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb0 -00010187 67.22953796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc0 -00010188 67.22953796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc0 -00010189 67.22956085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd0 -00010190 67.22956085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd0 -00010191 67.22958374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be0 -00010192 67.22959137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be0 -00010193 67.22962189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf0 -00010194 67.22962189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf0 -00010195 67.22964478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c00 -00010196 67.22965240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c00 -00010197 67.22967529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -00010198 67.22967529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -00010199 67.22970581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -00010200 67.22970581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -00010201 67.22973633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -00010202 67.22973633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -00010203 67.22975922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -00010204 67.22975922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -00010205 67.22978210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -00010206 67.22978973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -00010207 67.22982025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -00010208 67.22982025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -00010209 67.22984314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -00010210 67.22985077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -00010211 67.22987366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -00010212 67.22987366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -00010213 67.22990417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -00010214 67.22990417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -00010215 67.22993469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -00010216 67.22993469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -00010217 67.22995758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -00010218 67.22996521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -00010219 67.22998810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -00010220 67.22998810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -00010221 67.23001862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -00010222 67.23001862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -00010223 67.23004150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -00010224 67.23004913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -00010225 67.23007202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -00010226 67.23007202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -00010227 67.23010254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -00010228 67.23010254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -00010229 67.23013306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -00010230 67.23013306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -00010231 67.23015594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -00010232 67.23016357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -00010233 67.23018646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -00010234 67.23018646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -00010235 67.23021698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -00010236 67.23022461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -00010237 67.23024750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -00010238 67.23024750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -00010239 67.23027039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -00010240 67.23027802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -00010241 67.23030090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -00010242 67.23030090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -00010243 67.23033142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -00010244 67.23033142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -00010245 67.23035431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -00010246 67.23036194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -00010247 67.23038483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -00010248 67.23038483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -00010249 67.23041534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -00010250 67.23042297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -00010251 67.23044586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -00010252 67.23044586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -00010253 67.23046875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -00010254 67.23047638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -00010255 67.23049927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -00010256 67.23049927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -00010257 67.23052979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -00010258 67.23053741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -00010259 67.23056030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -00010260 67.23056030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e00 -00010261 67.23058319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -00010262 67.23059082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e10 -00010263 67.23062134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -00010264 67.23062134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e20 -00010265 67.23064423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -00010266 67.23064423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e30 -00010267 67.23066711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -00010268 67.23067474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e40 -00010269 67.23069763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -00010270 67.23069763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e50 -00010271 67.23072815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -00010272 67.23073578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e60 -00010273 67.23075867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e70 -00010274 67.23075867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e70 -00010275 67.23078156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e80 -00010276 67.23078918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e80 -00010277 67.23081970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e90 -00010278 67.23081970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e90 -00010279 67.23084259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea0 -00010280 67.23084259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea0 -00010281 67.23086548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb0 -00010282 67.23087311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb0 -00010283 67.23089600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec0 -00010284 67.23089600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec0 -00010285 67.23092651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed0 -00010286 67.23093414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed0 -00010287 67.23095703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee0 -00010288 67.23095703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee0 -00010289 67.23097992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef0 -00010290 67.23098755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef0 -00010291 67.23101807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f00 -00010292 67.23101807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f00 -00010293 67.23104095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f10 -00010294 67.23104095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f10 -00010295 67.23107147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -00010296 67.23107147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -00010297 67.23109436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -00010298 67.23109436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -00010299 67.23112488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -00010300 67.23113251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -00010301 67.23115540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -00010302 67.23115540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -00010303 67.23117828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -00010304 67.23118591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -00010305 67.23121643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -00010306 67.23121643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -00010307 67.23123932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -00010308 67.23124695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -00010309 67.23126984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -00010310 67.23126984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -00010311 67.23129272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -00010312 67.23130035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -00010313 67.23133087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -00010314 67.23133087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -00010315 67.23135376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -00010316 67.23135376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -00010317 67.23137665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -00010318 67.23138428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -00010319 67.23141479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -00010320 67.23141479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -00010321 67.23143768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -00010322 67.23144531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -00010323 67.23146820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -00010324 67.23146820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -00010325 67.23149109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -00010326 67.23149872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -00010327 67.23152924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -00010328 67.23152924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -00010329 67.23155212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -00010330 67.23155975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -00010331 67.23158264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -00010332 67.23158264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -00010333 67.23161316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -00010334 67.23161316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -00010335 67.23164368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -00010336 67.23164368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -00010337 67.23166656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -00010338 67.23166656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -00010339 67.23168945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14080 -00010340 67.23169708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14080 -00010341 67.23172760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14090 -00010342 67.23172760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14090 -00010343 67.23175049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a0 -00010344 67.23175812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a0 -00010345 67.23178101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b0 -00010346 67.23178101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b0 -00010347 67.23181152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c0 -00010348 67.23181152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c0 -00010349 67.23184204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d0 -00010350 67.23184204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d0 -00010351 67.23186493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e0 -00010352 67.23186493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e0 -00010353 67.23188782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f0 -00010354 67.23189545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f0 -00010355 67.23192596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14100 -00010356 67.23192596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14100 -00010357 67.23194885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14110 -00010358 67.23195648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14110 -00010359 67.23197937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14120 -00010360 67.23197937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14120 -00010361 67.23200989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14130 -00010362 67.23200989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14130 -00010363 67.23204041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14140 -00010364 67.23204041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14140 -00010365 67.23206329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14150 -00010366 67.23206329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14150 -00010367 67.23208618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14160 -00010368 67.23209381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14160 -00010369 67.23212433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14170 -00010370 67.23212433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14170 -00010371 67.23214722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14180 -00010372 67.23215485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14180 -00010373 67.23217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14190 -00010374 67.23217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14190 -00010375 67.23220825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a0 -00010376 67.23220825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a0 -00010377 67.23223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b0 -00010378 67.23223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b0 -00010379 67.23226166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c0 -00010380 67.23226166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c0 -00010381 67.23229218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d0 -00010382 67.23229218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d0 -00010383 67.23232269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e0 -00010384 67.23232269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e0 -00010385 67.23235321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f0 -00010386 67.23235321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f0 -00010387 67.23237610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14200 -00010388 67.23237610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14200 -00010389 67.23240662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14210 -00010390 67.23240662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14210 -00010391 67.23243713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14220 -00010392 67.23243713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14220 -00010393 67.23246002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14230 -00010394 67.23246765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14230 -00010395 67.23249054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14240 -00010396 67.23249054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14240 -00010397 67.23252106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14250 -00010398 67.23252106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14250 -00010399 67.23255157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14260 -00010400 67.23255157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14260 -00010401 67.23257446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14270 -00010402 67.23258209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14270 -00010403 67.23260498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14280 -00010404 67.23260498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14280 -00010405 67.23263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14290 -00010406 67.23263550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14290 -00010407 67.23265839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142a0 -00010408 67.23266602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142a0 -00010409 67.23268890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142b0 -00010410 67.23268890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142b0 -00010411 67.23271942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142c0 -00010412 67.23271942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142c0 -00010413 67.23274994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142d0 -00010414 67.23274994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142d0 -00010415 67.23277283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142e0 -00010416 67.23278046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142e0 -00010417 67.23280334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -00010418 67.23280334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -00010419 67.23283386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -00010420 67.23283386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -00010421 67.23285675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -00010422 67.23286438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -00010423 67.23288727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -00010424 67.23288727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -00010425 67.23291779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -00010426 67.23291779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -00010427 67.23294830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -00010428 67.23294830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -00010429 67.23297119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -00010430 67.23297882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -00010431 67.23300171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -00010432 67.23300171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -00010433 67.23303223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -00010434 67.23303223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -00010435 67.23305511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -00010436 67.23306274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -00010437 67.23308563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -00010438 67.23308563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -00010439 67.23311615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -00010440 67.23312378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -00010441 67.23314667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -00010442 67.23314667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -00010443 67.23316956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -00010444 67.23317719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -00010445 67.23320007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -00010446 67.23320007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -00010447 67.23323059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -00010448 67.23323822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -00010449 67.23326111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -00010450 67.23326111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -00010451 67.23328400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -00010452 67.23328400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -00010453 67.23331451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -00010454 67.23332214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -00010455 67.23334503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -00010456 67.23334503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -00010457 67.23336792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -00010458 67.23337555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -00010459 67.23339844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14440 -00010460 67.23339844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14440 -00010461 67.23342896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14450 -00010462 67.23343658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14450 -00010463 67.23345947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14460 -00010464 67.23345947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14460 -00010465 67.23348236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14470 -00010466 67.23348236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14470 -00010467 67.23352051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14480 -00010468 67.23352051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14480 -00010469 67.23354340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14490 -00010470 67.23354340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14490 -00010471 67.23356628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a0 -00010472 67.23357391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a0 -00010473 67.23359680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b0 -00010474 67.23359680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b0 -00010475 67.23362732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c0 -00010476 67.23363495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c0 -00010477 67.23365784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d0 -00010478 67.23365784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d0 -00010479 67.23368073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e0 -00010480 67.23368835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e0 -00010481 67.23371887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f0 -00010482 67.23371887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f0 -00010483 67.23374176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14500 -00010484 67.23374176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14500 -00010485 67.23376465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14510 -00010486 67.23377228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14510 -00010487 67.23379517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14520 -00010488 67.23379517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14520 -00010489 67.23382568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14530 -00010490 67.23383331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14530 -00010491 67.23385620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14540 -00010492 67.23385620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14540 -00010493 67.23387909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14550 -00010494 67.23388672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14550 -00010495 67.23391724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14560 -00010496 67.23391724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14560 -00010497 67.23394012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -00010498 67.23394775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -00010499 67.23397064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -00010500 67.23397064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -00010501 67.23399353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -00010502 67.23399353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -00010503 67.23402405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -00010504 67.23403168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -00010505 67.23405457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -00010506 67.23405457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -00010507 67.23407745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -00010508 67.23408508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -00010509 67.23411560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -00010510 67.23411560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -00010511 67.23413849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -00010512 67.23414612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -00010513 67.23416901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -00010514 67.23416901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -00010515 67.23419189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -00010516 67.23419189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -00010517 67.23423004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -00010518 67.23423004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -00010519 67.23425293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -00010520 67.23425293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -00010521 67.23427582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -00010522 67.23428345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -00010523 67.23431396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -00010524 67.23431396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -00010525 67.23433685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -00010526 67.23434448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -00010527 67.23436737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -00010528 67.23436737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -00010529 67.23439026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -00010530 67.23439789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -00010531 67.23442841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -00010532 67.23442841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -00010533 67.23445129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -00010534 67.23445892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -00010535 67.23448181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -00010536 67.23448181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -00010537 67.23451233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -00010538 67.23451233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -00010539 67.23453522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -00010540 67.23454285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -00010541 67.23456573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146d0 -00010542 67.23456573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146d0 -00010543 67.23458862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146e0 -00010544 67.23459625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146e0 -00010545 67.23462677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146f0 -00010546 67.23462677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x146f0 -00010547 67.23464966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14700 -00010548 67.23465729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14700 -00010549 67.23468018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14710 -00010550 67.23468018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14710 -00010551 67.23471069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14720 -00010552 67.23471069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14720 -00010553 67.23474121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14730 -00010554 67.23474121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14730 -00010555 67.23476410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14740 -00010556 67.23476410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14740 -00010557 67.23478699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14750 -00010558 67.23479462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14750 -00010559 67.23482513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14760 -00010560 67.23482513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14760 -00010561 67.23484802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14770 -00010562 67.23485565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14770 -00010563 67.23487854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14780 -00010564 67.23487854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14780 -00010565 67.23490906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14790 -00010566 67.23490906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14790 -00010567 67.23493958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a0 -00010568 67.23493958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147a0 -00010569 67.23496246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b0 -00010570 67.23496246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147b0 -00010571 67.23498535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c0 -00010572 67.23499298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147c0 -00010573 67.23502350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d0 -00010574 67.23502350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147d0 -00010575 67.23504639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -00010576 67.23505402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -00010577 67.23507690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -00010578 67.23507690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -00010579 67.23510742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -00010580 67.23510742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -00010581 67.23513794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -00010582 67.23513794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -00010583 67.23516083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -00010584 67.23516083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -00010585 67.23518372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -00010586 67.23519135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -00010587 67.23522186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -00010588 67.23522186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -00010589 67.23524475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -00010590 67.23525238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -00010591 67.23527527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -00010592 67.23527527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -00010593 67.23530579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -00010594 67.23530579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -00010595 67.23533630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -00010596 67.23533630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -00010597 67.23535919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -00010598 67.23535919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -00010599 67.23538208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -00010600 67.23538971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -00010601 67.23542023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -00010602 67.23542023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -00010603 67.23544312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -00010604 67.23545074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -00010605 67.23547363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -00010606 67.23547363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -00010607 67.23550415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -00010608 67.23550415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -00010609 67.23553467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -00010610 67.23553467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -00010611 67.23555756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -00010612 67.23556519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -00010613 67.23558807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -00010614 67.23558807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -00010615 67.23561859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -00010616 67.23561859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -00010617 67.23564911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -00010618 67.23564911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -00010619 67.23567200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14940 -00010620 67.23567200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14940 -00010621 67.23570251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14950 -00010622 67.23570251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14950 -00010623 67.23573303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14960 -00010624 67.23573303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14960 -00010625 67.23575592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14970 -00010626 67.23576355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14970 -00010627 67.23578644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14980 -00010628 67.23578644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14980 -00010629 67.23581696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14990 -00010630 67.23582458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14990 -00010631 67.23584747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a0 -00010632 67.23584747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a0 -00010633 67.23587036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b0 -00010634 67.23587799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b0 -00010635 67.23590088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c0 -00010636 67.23590088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c0 -00010637 67.23593140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d0 -00010638 67.23593140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d0 -00010639 67.23595428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e0 -00010640 67.23596191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e0 -00010641 67.23598480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f0 -00010642 67.23598480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f0 -00010643 67.23601532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a00 -00010644 67.23602295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a00 -00010645 67.23604584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a10 -00010646 67.23604584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a10 -00010647 67.23606873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a20 -00010648 67.23607635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a20 -00010649 67.23609924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a30 -00010650 67.23609924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a30 -00010651 67.23612976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a40 -00010652 67.23612976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a40 -00010653 67.23615265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a50 -00010654 67.23616028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a50 -00010655 67.23618317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a60 -00010656 67.23618317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a60 -00010657 67.23621368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a70 -00010658 67.23622131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a70 -00010659 67.23624420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a80 -00010660 67.23624420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a80 -00010661 67.23626709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a90 -00010662 67.23627472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a90 -00010663 67.23629761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa0 -00010664 67.23629761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa0 -00010665 67.23632813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab0 -00010666 67.23632813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab0 -00010667 67.23635101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac0 -00010668 67.23635864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac0 -00010669 67.23638153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad0 -00010670 67.23638153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad0 -00010671 67.23641205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae0 -00010672 67.23641968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae0 -00010673 67.23644257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af0 -00010674 67.23644257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af0 -00010675 67.23646545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b00 -00010676 67.23647308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b00 -00010677 67.23649597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b10 -00010678 67.23649597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b10 -00010679 67.23652649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b20 -00010680 67.23653412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b20 -00010681 67.23655701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b30 -00010682 67.23655701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b30 -00010683 67.23657990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b40 -00010684 67.23658752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b40 -00010685 67.23661804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b50 -00010686 67.23661804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b50 -00010687 67.23664093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b60 -00010688 67.23664093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b60 -00010689 67.23666382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b70 -00010690 67.23667145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b70 -00010691 67.23669434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b80 -00010692 67.23669434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b80 -00010693 67.23672485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b90 -00010694 67.23673248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b90 -00010695 67.23675537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba0 -00010696 67.23675537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba0 -00010697 67.23677826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb0 -00010698 67.23678589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb0 -00010699 67.23681641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc0 -00010700 67.23681641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc0 -00010701 67.23683929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd0 -00010702 67.23683929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd0 -00010703 67.23686218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be0 -00010704 67.23686981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be0 -00010705 67.23689270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf0 -00010706 67.23689270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf0 -00010707 67.23692322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c00 -00010708 67.23693085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c00 -00010709 67.23695374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c10 -00010710 67.23695374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c10 -00010711 67.23697662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c20 -00010712 67.23698425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c20 -00010713 67.23702240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c30 -00010714 67.23702240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c30 -00010715 67.23705292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c40 -00010716 67.23705292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c40 -00010717 67.23708344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c50 -00010718 67.23708344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c50 -00010719 67.23710632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c60 -00010720 67.23711395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c60 -00010721 67.23713684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c70 -00010722 67.23713684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c70 -00010723 67.23716736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c80 -00010724 67.23717499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c80 -00010725 67.23719788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c90 -00010726 67.23719788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c90 -00010727 67.23722076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca0 -00010728 67.23722076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca0 -00010729 67.23725128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb0 -00010730 67.23725128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb0 -00010731 67.23728180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc0 -00010732 67.23728180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc0 -00010733 67.23730469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd0 -00010734 67.23731232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd0 -00010735 67.23733521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce0 -00010736 67.23733521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce0 -00010737 67.23736572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf0 -00010738 67.23737335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf0 -00010739 67.23739624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d00 -00010740 67.23739624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d00 -00010741 67.23741913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d10 -00010742 67.23742676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d10 -00010743 67.23744965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d20 -00010744 67.23744965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d20 -00010745 67.23748016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d30 -00010746 67.23748779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d30 -00010747 67.23751068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d40 -00010748 67.23751068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d40 -00010749 67.23753357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d50 -00010750 67.23754120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d50 -00010751 67.23757172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d60 -00010752 67.23757172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d60 -00010753 67.23759460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d70 -00010754 67.23760223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d70 -00010755 67.23762512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d80 -00010756 67.23762512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d80 -00010757 67.23764801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d90 -00010758 67.23765564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d90 -00010759 67.23768616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da0 -00010760 67.23768616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da0 -00010761 67.23770905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db0 -00010762 67.23771667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db0 -00010763 67.23773956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -00010764 67.23773956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -00010765 67.23777008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -00010766 67.23777008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -00010767 67.23780060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -00010768 67.23780060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -00010769 67.23782349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -00010770 67.23782349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -00010771 67.23784637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -00010772 67.23785400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -00010773 67.23788452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -00010774 67.23788452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -00010775 67.23790741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -00010776 67.23791504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -00010777 67.23793793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -00010778 67.23793793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -00010779 67.23796844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -00010780 67.23796844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -00010781 67.23799896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -00010782 67.23799896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -00010783 67.23802185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -00010784 67.23802185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -00010785 67.23805237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -00010786 67.23805237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -00010787 67.23808289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -00010788 67.23808289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -00010789 67.23810577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -00010790 67.23811340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -00010791 67.23813629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -00010792 67.23813629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -00010793 67.23816681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -00010794 67.23816681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -00010795 67.23819733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -00010796 67.23819733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -00010797 67.23822021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -00010798 67.23822784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -00010799 67.23825073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -00010800 67.23825073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -00010801 67.23828125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -00010802 67.23828125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -00010803 67.23831177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -00010804 67.23831177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -00010805 67.23833466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -00010806 67.23833466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -00010807 67.23836517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f20 -00010808 67.23836517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f20 -00010809 67.23839569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f30 -00010810 67.23839569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f30 -00010811 67.23841858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f40 -00010812 67.23842621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f40 -00010813 67.23844910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -00010814 67.23844910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -00010815 67.23847961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -00010816 67.23847961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -00010817 67.23851013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -00010818 67.23851013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -00010819 67.23853302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -00010820 67.23854065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -00010821 67.23856354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -00010822 67.23856354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -00010823 67.23859406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -00010824 67.23859406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -00010825 67.23861694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -00010826 67.23862457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -00010827 67.23864746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -00010828 67.23864746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -00010829 67.23867798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -00010830 67.23867798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -00010831 67.23870850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -00010832 67.23870850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -00010833 67.23873138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -00010834 67.23873901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -00010835 67.23876190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -00010836 67.23876190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -00010837 67.23879242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -00010838 67.23880005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -00010839 67.23882294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -00010840 67.23882294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -00010841 67.23884583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -00010842 67.23885345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -00010843 67.23887634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -00010844 67.23887634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -00010845 67.23890686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -00010846 67.23891449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -00010847 67.23893738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -00010848 67.23893738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -00010849 67.23896027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -00010850 67.23896027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -00010851 67.23899078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -00010852 67.23899841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -00010853 67.23902130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -00010854 67.23902130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -00010855 67.23904419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a0 -00010856 67.23905182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a0 -00010857 67.23907471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b0 -00010858 67.23907471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b0 -00010859 67.23910522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c0 -00010860 67.23911285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c0 -00010861 67.23913574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d0 -00010862 67.23913574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d0 -00010863 67.23915863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e0 -00010864 67.23916626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e0 -00010865 67.23919678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f0 -00010866 67.23919678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f0 -00010867 67.23921967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15100 -00010868 67.23921967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15100 -00010869 67.23924255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15110 -00010870 67.23925018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15110 -00010871 67.23927307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15120 -00010872 67.23927307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15120 -00010873 67.23930359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15130 -00010874 67.23931122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15130 -00010875 67.23933411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15140 -00010876 67.23933411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15140 -00010877 67.23935699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15150 -00010878 67.23936462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15150 -00010879 67.23939514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15160 -00010880 67.23939514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15160 -00010881 67.23941803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15170 -00010882 67.23941803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15170 -00010883 67.23944855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15180 -00010884 67.23944855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15180 -00010885 67.23947144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15190 -00010886 67.23947906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15190 -00010887 67.23950958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a0 -00010888 67.23951721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a0 -00010889 67.23954010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b0 -00010890 67.23954010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b0 -00010891 67.23956299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c0 -00010892 67.23957062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c0 -00010893 67.23959351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d0 -00010894 67.23959351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d0 -00010895 67.23962402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e0 -00010896 67.23962402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e0 -00010897 67.23964691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f0 -00010898 67.23965454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f0 -00010899 67.23967743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15200 -00010900 67.23967743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15200 -00010901 67.23970795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15210 -00010902 67.23971558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15210 -00010903 67.23973846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15220 -00010904 67.23973846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15220 -00010905 67.23976135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15230 -00010906 67.23976898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15230 -00010907 67.23979187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15240 -00010908 67.23979187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15240 -00010909 67.23982239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15250 -00010910 67.23982239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15250 -00010911 67.23985291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15260 -00010912 67.23985291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15260 -00010913 67.23987579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15270 -00010914 67.23987579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15270 -00010915 67.23990631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15280 -00010916 67.23991394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15280 -00010917 67.23993683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15290 -00010918 67.23993683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15290 -00010919 67.23995972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -00010920 67.23996735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -00010921 67.23999023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -00010922 67.23999023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -00010923 67.24002075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -00010924 67.24002838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -00010925 67.24005127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -00010926 67.24005127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -00010927 67.24007416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -00010928 67.24007416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -00010929 67.24011230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -00010930 67.24011230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -00010931 67.24013519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -00010932 67.24013519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -00010933 67.24015808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -00010934 67.24016571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -00010935 67.24018860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -00010936 67.24018860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -00010937 67.24021912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -00010938 67.24022675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -00010939 67.24024963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -00010940 67.24024963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -00010941 67.24027252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -00010942 67.24028015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -00010943 67.24031067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -00010944 67.24031067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -00010945 67.24033356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -00010946 67.24033356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -00010947 67.24035645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -00010948 67.24036407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -00010949 67.24038696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -00010950 67.24038696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -00010951 67.24041748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -00010952 67.24042511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -00010953 67.24044800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -00010954 67.24044800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -00010955 67.24047089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -00010956 67.24047852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -00010957 67.24050903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -00010958 67.24050903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -00010959 67.24053192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -00010960 67.24053955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -00010961 67.24056244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -00010962 67.24056244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -00010963 67.24058533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -00010964 67.24058533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -00010965 67.24061584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -00010966 67.24062347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -00010967 67.24064636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -00010968 67.24064636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -00010969 67.24066925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -00010970 67.24067688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -00010971 67.24070740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -00010972 67.24070740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -00010973 67.24073029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -00010974 67.24073792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -00010975 67.24076080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -00010976 67.24076080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -00010977 67.24078369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -00010978 67.24079132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -00010979 67.24082184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -00010980 67.24082184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -00010981 67.24084473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15490 -00010982 67.24085236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15490 -00010983 67.24087524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154a0 -00010984 67.24087524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154a0 -00010985 67.24090576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154b0 -00010986 67.24090576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154b0 -00010987 67.24092865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154c0 -00010988 67.24093628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154c0 -00010989 67.24095917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154d0 -00010990 67.24095917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154d0 -00010991 67.24098206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154e0 -00010992 67.24098969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154e0 -00010993 67.24102020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154f0 -00010994 67.24102020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x154f0 -00010995 67.24104309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15500 -00010996 67.24105072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15500 -00010997 67.24107361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15510 -00010998 67.24107361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15510 -00010999 67.24110413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15520 -00011000 67.24110413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15520 -00011001 67.24113464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15530 -00011002 67.24113464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15530 -00011003 67.24115753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15540 -00011004 67.24115753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15540 -00011005 67.24118042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15550 -00011006 67.24118805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15550 -00011007 67.24121857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15560 -00011008 67.24121857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15560 -00011009 67.24124146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15570 -00011010 67.24124908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15570 -00011011 67.24127197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15580 -00011012 67.24127197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15580 -00011013 67.24130249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15590 -00011014 67.24130249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15590 -00011015 67.24133301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155a0 -00011016 67.24133301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155a0 -00011017 67.24135590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155b0 -00011018 67.24136353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155b0 -00011019 67.24138641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155c0 -00011020 67.24138641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155c0 -00011021 67.24141693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155d0 -00011022 67.24141693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155d0 -00011023 67.24143982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155e0 -00011024 67.24144745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155e0 -00011025 67.24147034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f0 -00011026 67.24147034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x155f0 -00011027 67.24150085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15600 -00011028 67.24150085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15600 -00011029 67.24153137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15610 -00011030 67.24153137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15610 -00011031 67.24155426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15620 -00011032 67.24156189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15620 -00011033 67.24158478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15630 -00011034 67.24158478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15630 -00011035 67.24161530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15640 -00011036 67.24162292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15640 -00011037 67.24164581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15650 -00011038 67.24164581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15650 -00011039 67.24166870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15660 -00011040 67.24167633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15660 -00011041 67.24169922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15670 -00011042 67.24169922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15670 -00011043 67.24172974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15680 -00011044 67.24172974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15680 -00011045 67.24175262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15690 -00011046 67.24176025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15690 -00011047 67.24178314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a0 -00011048 67.24178314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a0 -00011049 67.24181366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b0 -00011050 67.24182129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b0 -00011051 67.24184418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c0 -00011052 67.24184418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c0 -00011053 67.24186707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d0 -00011054 67.24187469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d0 -00011055 67.24189758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e0 -00011056 67.24189758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e0 -00011057 67.24192810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f0 -00011058 67.24192810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f0 -00011059 67.24195099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15700 -00011060 67.24195862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15700 -00011061 67.24198151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15710 -00011062 67.24198151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15710 -00011063 67.24201202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15720 -00011064 67.24201965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15720 -00011065 67.24204254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15730 -00011066 67.24204254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15730 -00011067 67.24206543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15740 -00011068 67.24207306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15740 -00011069 67.24209595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15750 -00011070 67.24209595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15750 -00011071 67.24212646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15760 -00011072 67.24212646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15760 -00011073 67.24214935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15770 -00011074 67.24215698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15770 -00011075 67.24217987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15780 -00011076 67.24217987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15780 -00011077 67.24221039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15790 -00011078 67.24221802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15790 -00011079 67.24224091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a0 -00011080 67.24224091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a0 -00011081 67.24226379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b0 -00011082 67.24227142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b0 -00011083 67.24229431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c0 -00011084 67.24229431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c0 -00011085 67.24232483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d0 -00011086 67.24232483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d0 -00011087 67.24235535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e0 -00011088 67.24235535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e0 -00011089 67.24237823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f0 -00011090 67.24237823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f0 -00011091 67.24240875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15800 -00011092 67.24241638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15800 -00011093 67.24243927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15810 -00011094 67.24243927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15810 -00011095 67.24246216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15820 -00011096 67.24246979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15820 -00011097 67.24249268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15830 -00011098 67.24249268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15830 -00011099 67.24252319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15840 -00011100 67.24253082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15840 -00011101 67.24255371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15850 -00011102 67.24255371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15850 -00011103 67.24257660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15860 -00011104 67.24258423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15860 -00011105 67.24261475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15870 -00011106 67.24261475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15870 -00011107 67.24263763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15880 -00011108 67.24264526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15880 -00011109 67.24266815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15890 -00011110 67.24266815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15890 -00011111 67.24269104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a0 -00011112 67.24269104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a0 -00011113 67.24272156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b0 -00011114 67.24272919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b0 -00011115 67.24275970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c0 -00011116 67.24276733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c0 -00011117 67.24279785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d0 -00011118 67.24279785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d0 -00011119 67.24282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e0 -00011120 67.24283600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e0 -00011121 67.24286652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f0 -00011122 67.24287415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f0 -00011123 67.24290466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15900 -00011124 67.24290466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15900 -00011125 67.24294281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15910 -00011126 67.24294281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15910 -00011127 67.24297333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15920 -00011128 67.24298096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15920 -00011129 67.24301147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15930 -00011130 67.24301910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15930 -00011131 67.24304962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15940 -00011132 67.24304962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15940 -00011133 67.24308777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15950 -00011134 67.24308777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15950 -00011135 67.24312592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15960 -00011136 67.24312592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15960 -00011137 67.24316406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15970 -00011138 67.24317169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15970 -00011139 67.24320221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15980 -00011140 67.24320221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15980 -00011141 67.24324036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15990 -00011142 67.24324036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15990 -00011143 67.24327087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a0 -00011144 67.24327850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a0 -00011145 67.24330902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b0 -00011146 67.24331665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b0 -00011147 67.24334717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c0 -00011148 67.24334717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c0 -00011149 67.24338531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d0 -00011150 67.24338531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d0 -00011151 67.24341583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e0 -00011152 67.24342346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e0 -00011153 67.24345398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f0 -00011154 67.24346161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f0 -00011155 67.24349213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a00 -00011156 67.24349976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a00 -00011157 67.24353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a10 -00011158 67.24353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a10 -00011159 67.24356842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a20 -00011160 67.24356842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a20 -00011161 67.24360657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a30 -00011162 67.24360657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a30 -00011163 67.24364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a40 -00011164 67.24364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a40 -00011165 67.24368286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a50 -00011166 67.24368286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a50 -00011167 67.24371338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a60 -00011168 67.24372101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a60 -00011169 67.24375153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a70 -00011170 67.24375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a70 -00011171 67.24378967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a80 -00011172 67.24379730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a80 -00011173 67.24382782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a90 -00011174 67.24383545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a90 -00011175 67.24386597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa0 -00011176 67.24386597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa0 -00011177 67.24390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab0 -00011178 67.24390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab0 -00011179 67.24393463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac0 -00011180 67.24394226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac0 -00011181 67.24397278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad0 -00011182 67.24398041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad0 -00011183 67.24401093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae0 -00011184 67.24401093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae0 -00011185 67.24404144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af0 -00011186 67.24404907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af0 -00011187 67.24407959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b00 -00011188 67.24408722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b00 -00011189 67.24412537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b10 -00011190 67.24412537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b10 -00011191 67.24416351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b20 -00011192 67.24416351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b20 -00011193 67.24419403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b30 -00011194 67.24420166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b30 -00011195 67.24423218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b40 -00011196 67.24423981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b40 -00011197 67.24427032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b50 -00011198 67.24427032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b50 -00011199 67.24430847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b60 -00011200 67.24430847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b60 -00011201 67.24433899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b70 -00011202 67.24434662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b70 -00011203 67.24437714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b80 -00011204 67.24438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b80 -00011205 67.24441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b90 -00011206 67.24441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b90 -00011207 67.24445343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba0 -00011208 67.24445343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba0 -00011209 67.24449158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb0 -00011210 67.24449158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb0 -00011211 67.24452209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc0 -00011212 67.24452972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc0 -00011213 67.24456024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd0 -00011214 67.24456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd0 -00011215 67.24459839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be0 -00011216 67.24459839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be0 -00011217 67.24463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf0 -00011218 67.24463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf0 -00011219 67.24467468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c00 -00011220 67.24467468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c00 -00011221 67.24471283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c10 -00011222 67.24472046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c10 -00011223 67.24475098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c20 -00011224 67.24475861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c20 -00011225 67.24478912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c30 -00011226 67.24478912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c30 -00011227 67.24482727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c40 -00011228 67.24482727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c40 -00011229 67.24486542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c50 -00011230 67.24487305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c50 -00011231 67.24490356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c60 -00011232 67.24491119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c60 -00011233 67.24494171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c70 -00011234 67.24494171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c70 -00011235 67.24497223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c80 -00011236 67.24497986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c80 -00011237 67.24501038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c90 -00011238 67.24501801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c90 -00011239 67.24504852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca0 -00011240 67.24504852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ca0 -00011241 67.24508667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb0 -00011242 67.24508667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cb0 -00011243 67.24511719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc0 -00011244 67.24512482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cc0 -00011245 67.24515533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd0 -00011246 67.24516296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cd0 -00011247 67.24519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce0 -00011248 67.24520111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ce0 -00011249 67.24523163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf0 -00011250 67.24523163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf0 -00011251 67.24526978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d00 -00011252 67.24527740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d00 -00011253 67.24530792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d10 -00011254 67.24531555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d10 -00011255 67.24534607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d20 -00011256 67.24534607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d20 -00011257 67.24538422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d30 -00011258 67.24538422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d30 -00011259 67.24541473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d40 -00011260 67.24542236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d40 -00011261 67.24545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d50 -00011262 67.24546051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d50 -00011263 67.24549103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d60 -00011264 67.24549866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d60 -00011265 67.24552917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d70 -00011266 67.24552917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d70 -00011267 67.24556732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d80 -00011268 67.24556732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d80 -00011269 67.24559784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d90 -00011270 67.24560547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d90 -00011271 67.24563599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da0 -00011272 67.24564362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da0 -00011273 67.24567413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db0 -00011274 67.24568176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db0 -00011275 67.24571228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc0 -00011276 67.24571991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc0 -00011277 67.24575043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd0 -00011278 67.24575806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd0 -00011279 67.24579620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de0 -00011280 67.24579620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de0 -00011281 67.24582672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df0 -00011282 67.24583435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df0 -00011283 67.24587250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e00 -00011284 67.24587250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e00 -00011285 67.24591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e10 -00011286 67.24591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e10 -00011287 67.24594879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e20 -00011288 67.24594879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e20 -00011289 67.24597931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e30 -00011290 67.24598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e30 -00011291 67.24601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e40 -00011292 67.24602509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e40 -00011293 67.24605560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e50 -00011294 67.24605560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e50 -00011295 67.24609375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e60 -00011296 67.24609375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e60 -00011297 67.24612427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e70 -00011298 67.24613190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e70 -00011299 67.24616241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e80 -00011300 67.24616241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e80 -00011301 67.24620056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e90 -00011302 67.24620056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e90 -00011303 67.24623108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea0 -00011304 67.24623871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea0 -00011305 67.24626923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb0 -00011306 67.24627686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb0 -00011307 67.24630737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec0 -00011308 67.24630737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec0 -00011309 67.24634552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -00011310 67.24634552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed0 -00011311 67.24638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -00011312 67.24638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee0 -00011313 67.24642181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -00011314 67.24642181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -00011315 67.24645996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -00011316 67.24645996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -00011317 67.24649811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -00011318 67.24649811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -00011319 67.24653625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -00011320 67.24653625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -00011321 67.24657440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -00011322 67.24657440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -00011323 67.24660492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -00011324 67.24661255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -00011325 67.24664307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -00011326 67.24665070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -00011327 67.24668121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -00011328 67.24668884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -00011329 67.24671936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -00011330 67.24671936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -00011331 67.24675751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -00011332 67.24675751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -00011333 67.24679565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -00011334 67.24679565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -00011335 67.24682617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -00011336 67.24683380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -00011337 67.24686432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -00011338 67.24686432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -00011339 67.24690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -00011340 67.24690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -00011341 67.24694061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -00011342 67.24694061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -00011343 67.24697876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -00011344 67.24697876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -00011345 67.24701691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -00011346 67.24701691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -00011347 67.24704742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -00011348 67.24705505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -00011349 67.24708557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -00011350 67.24709320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -00011351 67.24712372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -00011352 67.24712372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -00011353 67.24716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -00011354 67.24716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -00011355 67.24719238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -00011356 67.24720001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -00011357 67.24723053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16050 -00011358 67.24723816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16050 -00011359 67.24726868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16060 -00011360 67.24726868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16060 -00011361 67.24729919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16070 -00011362 67.24730682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16070 -00011363 67.24733734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16080 -00011364 67.24734497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16080 -00011365 67.24737549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16090 -00011366 67.24737549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16090 -00011367 67.24742126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a0 -00011368 67.24742126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a0 -00011369 67.24745178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b0 -00011370 67.24745941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b0 -00011371 67.24748993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c0 -00011372 67.24749756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c0 -00011373 67.24752808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d0 -00011374 67.24753571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d0 -00011375 67.24756622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e0 -00011376 67.24756622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e0 -00011377 67.24759674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f0 -00011378 67.24760437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f0 -00011379 67.24763489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16100 -00011380 67.24764252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16100 -00011381 67.24767303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16110 -00011382 67.24767303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16110 -00011383 67.24771118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16120 -00011384 67.24771118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16120 -00011385 67.24774170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16130 -00011386 67.24774933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16130 -00011387 67.24777985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16140 -00011388 67.24778748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16140 -00011389 67.24781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16150 -00011390 67.24781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16150 -00011391 67.24785614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16160 -00011392 67.24785614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16160 -00011393 67.24789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16170 -00011394 67.24789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16170 -00011395 67.24793243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16180 -00011396 67.24793243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16180 -00011397 67.24797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16190 -00011398 67.24797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16190 -00011399 67.24800110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a0 -00011400 67.24800873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a0 -00011401 67.24803925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b0 -00011402 67.24804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b0 -00011403 67.24807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -00011404 67.24807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -00011405 67.24810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -00011406 67.24811554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -00011407 67.24814606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -00011408 67.24815369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -00011409 67.24818420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -00011410 67.24818420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -00011411 67.24822235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -00011412 67.24822235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -00011413 67.24825287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -00011414 67.24826050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -00011415 67.24829102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -00011416 67.24829102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -00011417 67.24832916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -00011418 67.24832916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -00011419 67.24836731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -00011420 67.24837494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -00011421 67.24840546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -00011422 67.24841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -00011423 67.24844360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -00011424 67.24844360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -00011425 67.24847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -00011426 67.24848175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -00011427 67.24851227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -00011428 67.24851990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -00011429 67.24855042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -00011430 67.24855804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -00011431 67.24858856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -00011432 67.24859619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -00011433 67.24862671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -00011434 67.24862671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -00011435 67.24866486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -00011436 67.24866486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -00011437 67.24869537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -00011438 67.24870300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -00011439 67.24873352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -00011440 67.24874115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -00011441 67.24877167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -00011442 67.24877167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -00011443 67.24880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -00011444 67.24880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -00011445 67.24884796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -00011446 67.24884796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -00011447 67.24888611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16320 -00011448 67.24888611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16320 -00011449 67.24892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16330 -00011450 67.24892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16330 -00011451 67.24896240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16340 -00011452 67.24896240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16340 -00011453 67.24899292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16350 -00011454 67.24900055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16350 -00011455 67.24903107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16360 -00011456 67.24903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16360 -00011457 67.24906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16370 -00011458 67.24906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16370 -00011459 67.24909973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16380 -00011460 67.24910736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16380 -00011461 67.24913788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16390 -00011462 67.24914551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16390 -00011463 67.24917603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a0 -00011464 67.24917603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a0 -00011465 67.24921417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b0 -00011466 67.24921417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b0 -00011467 67.24924469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c0 -00011468 67.24925232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c0 -00011469 67.24928284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d0 -00011470 67.24929047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d0 -00011471 67.24932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e0 -00011472 67.24932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e0 -00011473 67.24935913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f0 -00011474 67.24936676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f0 -00011475 67.24939728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16400 -00011476 67.24940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16400 -00011477 67.24943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16410 -00011478 67.24943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16410 -00011479 67.24947357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16420 -00011480 67.24947357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16420 -00011481 67.24950409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16430 -00011482 67.24951172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16430 -00011483 67.24954224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16440 -00011484 67.24954224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16440 -00011485 67.24958038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16450 -00011486 67.24958801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16450 -00011487 67.24961853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16460 -00011488 67.24961853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16460 -00011489 67.24964905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16470 -00011490 67.24965668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16470 -00011491 67.24968719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16480 -00011492 67.24969482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16480 -00011493 67.24972534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16490 -00011494 67.24973297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16490 -00011495 67.24976349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a0 -00011496 67.24976349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164a0 -00011497 67.24980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b0 -00011498 67.24980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164b0 -00011499 67.24983978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c0 -00011500 67.24983978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164c0 -00011501 67.24987793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d0 -00011502 67.24987793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d0 -00011503 67.24991608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e0 -00011504 67.24992371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e0 -00011505 67.24994659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f0 -00011506 67.24995422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f0 -00011507 67.24997711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16500 -00011508 67.24998474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16500 -00011509 67.25000763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16510 -00011510 67.25000763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16510 -00011511 67.25003815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16520 -00011512 67.25003815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16520 -00011513 67.25006104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16530 -00011514 67.25006866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16530 -00011515 67.25008392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16540 -00011516 67.25009155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16540 -00011517 67.25012207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16550 -00011518 67.25012207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16550 -00011519 67.25014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16560 -00011520 67.25014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16560 -00011521 67.25016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16570 -00011522 67.25017548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16570 -00011523 67.25019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16580 -00011524 67.25019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16580 -00011525 67.25022888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16590 -00011526 67.25022888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16590 -00011527 67.25025177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a0 -00011528 67.25025177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a0 -00011529 67.25027466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b0 -00011530 67.25028229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b0 -00011531 67.25030518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c0 -00011532 67.25031281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c0 -00011533 67.25033569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d0 -00011534 67.25033569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d0 -00011535 67.25035858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e0 -00011536 67.25035858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e0 -00011537 67.25038910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f0 -00011538 67.25039673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f0 -00011539 67.25041199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16600 -00011540 67.25041962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16600 -00011541 67.25044250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16610 -00011542 67.25044250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16610 -00011543 67.25047302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16620 -00011544 67.25047302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16620 -00011545 67.25049591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16630 -00011546 67.25050354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16630 -00011547 67.25051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16640 -00011548 67.25052643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16640 -00011549 67.25055695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16650 -00011550 67.25055695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16650 -00011551 67.25058746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16660 -00011552 67.25058746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16660 -00011553 67.25061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16670 -00011554 67.25061798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16670 -00011555 67.25064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16680 -00011556 67.25064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16680 -00011557 67.25067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16690 -00011558 67.25067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16690 -00011559 67.25070190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a0 -00011560 67.25070190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a0 -00011561 67.25072479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b0 -00011562 67.25073242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b0 -00011563 67.25075531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c0 -00011564 67.25075531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c0 -00011565 67.25078583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d0 -00011566 67.25078583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d0 -00011567 67.25080872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e0 -00011568 67.25081635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166e0 -00011569 67.25083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f0 -00011570 67.25083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x166f0 -00011571 67.25086975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16700 -00011572 67.25087738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16700 -00011573 67.25090027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16710 -00011574 67.25090027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16710 -00011575 67.25092316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16720 -00011576 67.25093079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16720 -00011577 67.25095367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16730 -00011578 67.25095367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16730 -00011579 67.25098419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16740 -00011580 67.25099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16740 -00011581 67.25101471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16750 -00011582 67.25101471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16750 -00011583 67.25103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16760 -00011584 67.25104523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16760 -00011585 67.25107574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16770 -00011586 67.25107574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16770 -00011587 67.25109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16780 -00011588 67.25109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16780 -00011589 67.25112152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16790 -00011590 67.25112915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16790 -00011591 67.25115204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a0 -00011592 67.25115204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167a0 -00011593 67.25118256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b0 -00011594 67.25119019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167b0 -00011595 67.25121307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c0 -00011596 67.25121307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167c0 -00011597 67.25123596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d0 -00011598 67.25124359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167d0 -00011599 67.25127411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e0 -00011600 67.25127411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167e0 -00011601 67.25129700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f0 -00011602 67.25130463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x167f0 -00011603 67.25132751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16800 -00011604 67.25132751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16800 -00011605 67.25135040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16810 -00011606 67.25135803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16810 -00011607 67.25138855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16820 -00011608 67.25138855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16820 -00011609 67.25141144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -00011610 67.25141144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16830 -00011611 67.25143433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -00011612 67.25144196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16840 -00011613 67.25147247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -00011614 67.25147247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -00011615 67.25149536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -00011616 67.25150299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -00011617 67.25152588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -00011618 67.25152588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -00011619 67.25154877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -00011620 67.25155640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -00011621 67.25158691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -00011622 67.25158691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -00011623 67.25160980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -00011624 67.25160980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -00011625 67.25163269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -00011626 67.25164032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -00011627 67.25167084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -00011628 67.25167084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -00011629 67.25170135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -00011630 67.25170135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -00011631 67.25172424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -00011632 67.25172424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -00011633 67.25175476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -00011634 67.25175476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -00011635 67.25178528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -00011636 67.25178528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -00011637 67.25180817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -00011638 67.25181580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -00011639 67.25183868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -00011640 67.25183868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -00011641 67.25186920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -00011642 67.25186920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -00011643 67.25189972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -00011644 67.25189972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -00011645 67.25192261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -00011646 67.25193024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -00011647 67.25195313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -00011648 67.25195313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -00011649 67.25198364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -00011650 67.25198364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -00011651 67.25200653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -00011652 67.25201416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -00011653 67.25203705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -00011654 67.25203705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -00011655 67.25206757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -00011656 67.25206757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -00011657 67.25209808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b0 -00011658 67.25209808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b0 -00011659 67.25212097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c0 -00011660 67.25212860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c0 -00011661 67.25215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d0 -00011662 67.25215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d0 -00011663 67.25218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e0 -00011664 67.25218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e0 -00011665 67.25221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f0 -00011666 67.25221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f0 -00011667 67.25223541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a00 -00011668 67.25223541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a00 -00011669 67.25226593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a10 -00011670 67.25226593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a10 -00011671 67.25229645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a20 -00011672 67.25229645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a20 -00011673 67.25231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a30 -00011674 67.25232697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a30 -00011675 67.25234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a40 -00011676 67.25234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a40 -00011677 67.25238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a50 -00011678 67.25238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a50 -00011679 67.25241089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a60 -00011680 67.25241089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a60 -00011681 67.25243378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a70 -00011682 67.25244141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a70 -00011683 67.25246429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a80 -00011684 67.25246429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a80 -00011685 67.25249481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a90 -00011686 67.25249481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a90 -00011687 67.25251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa0 -00011688 67.25252533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa0 -00011689 67.25254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab0 -00011690 67.25254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab0 -00011691 67.25257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac0 -00011692 67.25257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac0 -00011693 67.25260925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad0 -00011694 67.25260925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad0 -00011695 67.25263214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae0 -00011696 67.25263977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae0 -00011697 67.25266266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af0 -00011698 67.25266266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af0 -00011699 67.25269318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b00 -00011700 67.25270081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b00 -00011701 67.25272369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b10 -00011702 67.25272369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b10 -00011703 67.25274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b20 -00011704 67.25275421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b20 -00011705 67.25277710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b30 -00011706 67.25277710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b30 -00011707 67.25280762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b40 -00011708 67.25280762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b40 -00011709 67.25283051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b50 -00011710 67.25283813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b50 -00011711 67.25286102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b60 -00011712 67.25286102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b60 -00011713 67.25289154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b70 -00011714 67.25289917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b70 -00011715 67.25292206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b80 -00011716 67.25292206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b80 -00011717 67.25294495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b90 -00011718 67.25295258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b90 -00011719 67.25297546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba0 -00011720 67.25297546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba0 -00011721 67.25300598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb0 -00011722 67.25301361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb0 -00011723 67.25303650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc0 -00011724 67.25303650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc0 -00011725 67.25305939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd0 -00011726 67.25305939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd0 -00011727 67.25308990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be0 -00011728 67.25309753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be0 -00011729 67.25312042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf0 -00011730 67.25312042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf0 -00011731 67.25314331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c00 -00011732 67.25315094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c00 -00011733 67.25317383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c10 -00011734 67.25317383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c10 -00011735 67.25320435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c20 -00011736 67.25321198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c20 -00011737 67.25323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c30 -00011738 67.25323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c30 -00011739 67.25325775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c40 -00011740 67.25325775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c40 -00011741 67.25329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c50 -00011742 67.25329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c50 -00011743 67.25331879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c60 -00011744 67.25331879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c60 -00011745 67.25334167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c70 -00011746 67.25334930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c70 -00011747 67.25337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c80 -00011748 67.25337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c80 -00011749 67.25340271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c90 -00011750 67.25341034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c90 -00011751 67.25343323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca0 -00011752 67.25343323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca0 -00011753 67.25345612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb0 -00011754 67.25346375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb0 -00011755 67.25349426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc0 -00011756 67.25349426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc0 -00011757 67.25351715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cd0 -00011758 67.25351715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cd0 -00011759 67.25354767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ce0 -00011760 67.25354767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ce0 -00011761 67.25357819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf0 -00011762 67.25357819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf0 -00011763 67.25360870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d00 -00011764 67.25360870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d00 -00011765 67.25363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d10 -00011766 67.25363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d10 -00011767 67.25365448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d20 -00011768 67.25366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d20 -00011769 67.25369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d30 -00011770 67.25369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d30 -00011771 67.25371552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d40 -00011772 67.25372314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d40 -00011773 67.25374603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d50 -00011774 67.25374603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d50 -00011775 67.25377655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -00011776 67.25377655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -00011777 67.25380707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -00011778 67.25380707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -00011779 67.25382996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -00011780 67.25382996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -00011781 67.25385284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -00011782 67.25386047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -00011783 67.25389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -00011784 67.25389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -00011785 67.25391388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -00011786 67.25392151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -00011787 67.25394440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -00011788 67.25394440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -00011789 67.25397491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -00011790 67.25397491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -00011791 67.25400543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -00011792 67.25400543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -00011793 67.25402832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -00011794 67.25402832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -00011795 67.25405121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -00011796 67.25405884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -00011797 67.25408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e10 -00011798 67.25408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e10 -00011799 67.25411224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e20 -00011800 67.25411987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e20 -00011801 67.25414276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e30 -00011802 67.25414276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e30 -00011803 67.25417328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e40 -00011804 67.25417328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e40 -00011805 67.25420380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e50 -00011806 67.25420380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e50 -00011807 67.25422668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e60 -00011808 67.25423431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e60 -00011809 67.25425720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e70 -00011810 67.25425720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e70 -00011811 67.25428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e80 -00011812 67.25428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e80 -00011813 67.25431061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e90 -00011814 67.25431824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e90 -00011815 67.25434113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea0 -00011816 67.25434113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea0 -00011817 67.25437164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb0 -00011818 67.25437164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb0 -00011819 67.25440216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec0 -00011820 67.25440216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec0 -00011821 67.25442505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed0 -00011822 67.25443268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed0 -00011823 67.25445557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee0 -00011824 67.25445557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee0 -00011825 67.25448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef0 -00011826 67.25448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef0 -00011827 67.25450897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f00 -00011828 67.25451660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f00 -00011829 67.25453949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f10 -00011830 67.25453949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f10 -00011831 67.25457001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f20 -00011832 67.25457001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f20 -00011833 67.25460052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f30 -00011834 67.25460052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f30 -00011835 67.25463104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f40 -00011836 67.25463104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f40 -00011837 67.25465393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f50 -00011838 67.25466156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f50 -00011839 67.25468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f60 -00011840 67.25468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f60 -00011841 67.25471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f70 -00011842 67.25472260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f70 -00011843 67.25474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f80 -00011844 67.25474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f80 -00011845 67.25476837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f90 -00011846 67.25476837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f90 -00011847 67.25479889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa0 -00011848 67.25480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa0 -00011849 67.25482941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb0 -00011850 67.25482941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb0 -00011851 67.25485229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc0 -00011852 67.25485992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc0 -00011853 67.25488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd0 -00011854 67.25488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd0 -00011855 67.25491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe0 -00011856 67.25492096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe0 -00011857 67.25494385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff0 -00011858 67.25494385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff0 -00011859 67.25496674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17000 -00011860 67.25497437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17000 -00011861 67.25500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17010 -00011862 67.25500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17010 -00011863 67.25502777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17020 -00011864 67.25503540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17020 -00011865 67.25505829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17030 -00011866 67.25505829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17030 -00011867 67.25508118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17040 -00011868 67.25508881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17040 -00011869 67.25511932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17050 -00011870 67.25511932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17050 -00011871 67.25514221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17060 -00011872 67.25514221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17060 -00011873 67.25516510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17070 -00011874 67.25517273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17070 -00011875 67.25520325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17080 -00011876 67.25520325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17080 -00011877 67.25522614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17090 -00011878 67.25523376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17090 -00011879 67.25525665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a0 -00011880 67.25525665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a0 -00011881 67.25527954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b0 -00011882 67.25528717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b0 -00011883 67.25531769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c0 -00011884 67.25531769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c0 -00011885 67.25534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d0 -00011886 67.25534821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d0 -00011887 67.25537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e0 -00011888 67.25537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e0 -00011889 67.25540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f0 -00011890 67.25540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f0 -00011891 67.25542450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17100 -00011892 67.25543213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17100 -00011893 67.25545502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17110 -00011894 67.25545502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17110 -00011895 67.25547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17120 -00011896 67.25548553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17120 -00011897 67.25551605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17130 -00011898 67.25551605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17130 -00011899 67.25553894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17140 -00011900 67.25554657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17140 -00011901 67.25556946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17150 -00011902 67.25556946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17150 -00011903 67.25559998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17160 -00011904 67.25559998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17160 -00011905 67.25563049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17170 -00011906 67.25563049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17170 -00011907 67.25565338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17180 -00011908 67.25566101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17180 -00011909 67.25568390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17190 -00011910 67.25568390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17190 -00011911 67.25571442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a0 -00011912 67.25572205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a0 -00011913 67.25574493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b0 -00011914 67.25574493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b0 -00011915 67.25576782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c0 -00011916 67.25576782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c0 -00011917 67.25579834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d0 -00011918 67.25579834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d0 -00011919 67.25582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e0 -00011920 67.25582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e0 -00011921 67.25585175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f0 -00011922 67.25585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f0 -00011923 67.25588226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17200 -00011924 67.25588226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17200 -00011925 67.25591278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17210 -00011926 67.25592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17210 -00011927 67.25594330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17220 -00011928 67.25594330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17220 -00011929 67.25596619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17230 -00011930 67.25597382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17230 -00011931 67.25599670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17240 -00011932 67.25599670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17240 -00011933 67.25602722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17250 -00011934 67.25602722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17250 -00011935 67.25605011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17260 -00011936 67.25605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17260 -00011937 67.25608063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17270 -00011938 67.25608063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17270 -00011939 67.25611115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17280 -00011940 67.25611877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17280 -00011941 67.25614166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17290 -00011942 67.25614166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17290 -00011943 67.25616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172a0 -00011944 67.25617218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172a0 -00011945 67.25619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172b0 -00011946 67.25619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172b0 -00011947 67.25622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172c0 -00011948 67.25622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172c0 -00011949 67.25624847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172d0 -00011950 67.25625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172d0 -00011951 67.25627899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172e0 -00011952 67.25627899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172e0 -00011953 67.25630951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172f0 -00011954 67.25631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x172f0 -00011955 67.25634003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17300 -00011956 67.25634003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17300 -00011957 67.25636292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17310 -00011958 67.25637054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17310 -00011959 67.25639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00011960 67.25639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -00011961 67.25642395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00011962 67.25643158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -00011963 67.25645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00011964 67.25645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -00011965 67.25647736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00011966 67.25647736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -00011967 67.25651550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00011968 67.25651550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -00011969 67.25653839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00011970 67.25653839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -00011971 67.25656128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00011972 67.25656891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -00011973 67.25659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00011974 67.25659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -00011975 67.25662231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00011976 67.25662994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -00011977 67.25665283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00011978 67.25665283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -00011979 67.25667572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00011980 67.25668335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -00011981 67.25671387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -00011982 67.25671387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -00011983 67.25673676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -00011984 67.25674438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -00011985 67.25676727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -00011986 67.25676727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -00011987 67.25679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -00011988 67.25679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -00011989 67.25682068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -00011990 67.25682831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -00011991 67.25685120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00011992 67.25685120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00011993 67.25687408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00011994 67.25688171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00011995 67.25691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00011996 67.25691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00011997 67.25693512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00011998 67.25694275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00011999 67.25696564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00012000 67.25696564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00012001 67.25698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00012002 67.25698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00012003 67.25701904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00012004 67.25702667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00012005 67.25704956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00012006 67.25704956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00012007 67.25707245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00012008 67.25708008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00012009 67.25711060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00012010 67.25711060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00012011 67.25713348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00012012 67.25714111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00012013 67.25716400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d0 -00012014 67.25716400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d0 -00012015 67.25718689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e0 -00012016 67.25719452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e0 -00012017 67.25722504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f0 -00012018 67.25722504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f0 -00012019 67.25724792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17500 -00012020 67.25724792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17500 -00012021 67.25727081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17510 -00012022 67.25727844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17510 -00012023 67.25730896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17520 -00012024 67.25730896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17520 -00012025 67.25733185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17530 -00012026 67.25733948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17530 -00012027 67.25736237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17540 -00012028 67.25736237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17540 -00012029 67.25738525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17550 -00012030 67.25739288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17550 -00012031 67.25742340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17560 -00012032 67.25742340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17560 -00012033 67.25744629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17570 -00012034 67.25744629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17570 -00012035 67.25746918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17580 -00012036 67.25747681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17580 -00012037 67.25750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17590 -00012038 67.25750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17590 -00012039 67.25753021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a0 -00012040 67.25753784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a0 -00012041 67.25756073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b0 -00012042 67.25756073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b0 -00012043 67.25758362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c0 -00012044 67.25759125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c0 -00012045 67.25762177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d0 -00012046 67.25762177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d0 -00012047 67.25764465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e0 -00012048 67.25765228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e0 -00012049 67.25767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f0 -00012050 67.25767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f0 -00012051 67.25770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17600 -00012052 67.25770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17600 -00012053 67.25773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17610 -00012054 67.25773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17610 -00012055 67.25775909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17620 -00012056 67.25775909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17620 -00012057 67.25778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17630 -00012058 67.25778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17630 -00012059 67.25782013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17640 -00012060 67.25782013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17640 -00012061 67.25784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17650 -00012062 67.25785065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17650 -00012063 67.25787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17660 -00012064 67.25788116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17660 -00012065 67.25790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17670 -00012066 67.25790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17670 -00012067 67.25793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17680 -00012068 67.25794220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17680 -00012069 67.25796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17690 -00012070 67.25796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17690 -00012071 67.25798798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a0 -00012072 67.25799561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a0 -00012073 67.25802612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b0 -00012074 67.25802612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b0 -00012075 67.25804901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c0 -00012076 67.25805664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c0 -00012077 67.25807953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d0 -00012078 67.25807953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d0 -00012079 67.25810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e0 -00012080 67.25811005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e0 -00012081 67.25814056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f0 -00012082 67.25814056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f0 -00012083 67.25816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17700 -00012084 67.25817108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17700 -00012085 67.25819397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17710 -00012086 67.25819397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17710 -00012087 67.25822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17720 -00012088 67.25822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17720 -00012089 67.25824738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17730 -00012090 67.25825500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17730 -00012091 67.25827789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17740 -00012092 67.25827789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17740 -00012093 67.25830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17750 -00012094 67.25830841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17750 -00012095 67.25833893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17760 -00012096 67.25833893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17760 -00012097 67.25836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17770 -00012098 67.25836945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17770 -00012099 67.25839233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17780 -00012100 67.25839233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17780 -00012101 67.25842285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17790 -00012102 67.25842285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17790 -00012103 67.25844574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177a0 -00012104 67.25845337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177a0 -00012105 67.25847626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177b0 -00012106 67.25847626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177b0 -00012107 67.25849915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177c0 -00012108 67.25850677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177c0 -00012109 67.25853729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177d0 -00012110 67.25853729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177d0 -00012111 67.25856018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177e0 -00012112 67.25856781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177e0 -00012113 67.25859070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177f0 -00012114 67.25859070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x177f0 -00012115 67.25862122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17800 -00012116 67.25862122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17800 -00012117 67.25865173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17810 -00012118 67.25865173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17810 -00012119 67.25867462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17820 -00012120 67.25868225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17820 -00012121 67.25870514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17830 -00012122 67.25870514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17830 -00012123 67.25873566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17840 -00012124 67.25873566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17840 -00012125 67.25876617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17850 -00012126 67.25876617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17850 -00012127 67.25878906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17860 -00012128 67.25879669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17860 -00012129 67.25881958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17870 -00012130 67.25881958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17870 -00012131 67.25885010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17880 -00012132 67.25885010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17880 -00012133 67.25887299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17890 -00012134 67.25888062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17890 -00012135 67.25890350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a0 -00012136 67.25890350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a0 -00012137 67.25893402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b0 -00012138 67.25893402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b0 -00012139 67.25896454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c0 -00012140 67.25896454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c0 -00012141 67.25898743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d0 -00012142 67.25899506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d0 -00012143 67.25901794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e0 -00012144 67.25901794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e0 -00012145 67.25904846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f0 -00012146 67.25905609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f0 -00012147 67.25907898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17900 -00012148 67.25907898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17900 -00012149 67.25910187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17910 -00012150 67.25910187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17910 -00012151 67.25913239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17920 -00012152 67.25913239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17920 -00012153 67.25916290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17930 -00012154 67.25916290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17930 -00012155 67.25918579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17940 -00012156 67.25919342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17940 -00012157 67.25921631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17950 -00012158 67.25922394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17950 -00012159 67.25925446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17960 -00012160 67.25925446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17960 -00012161 67.25927734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17970 -00012162 67.25927734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17970 -00012163 67.25930023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17980 -00012164 67.25930786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17980 -00012165 67.25933075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17990 -00012166 67.25933075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17990 -00012167 67.25936127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a0 -00012168 67.25936127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a0 -00012169 67.25938416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b0 -00012170 67.25938416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b0 -00012171 67.25941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c0 -00012172 67.25941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c0 -00012173 67.25943756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d0 -00012174 67.25944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d0 -00012175 67.25946808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e0 -00012176 67.25946808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179e0 -00012177 67.25949097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f0 -00012178 67.25949097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179f0 -00012179 67.25952148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a00 -00012180 67.25952911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a00 -00012181 67.25954437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a10 -00012182 67.25955200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a10 -00012183 67.25957489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a20 -00012184 67.25957489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a20 -00012185 67.25960541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a30 -00012186 67.25960541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a30 -00012187 67.25962830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a40 -00012188 67.25963593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a40 -00012189 67.25965118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a50 -00012190 67.25965881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a50 -00012191 67.25968933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a60 -00012192 67.25968933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a60 -00012193 67.25971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a70 -00012194 67.25971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a70 -00012195 67.25974274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a80 -00012196 67.25975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a80 -00012197 67.25977325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a90 -00012198 67.25977325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a90 -00012199 67.25980377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa0 -00012200 67.25981140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa0 -00012201 67.25983429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab0 -00012202 67.25983429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab0 -00012203 67.25985718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac0 -00012204 67.25985718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac0 -00012205 67.25988770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad0 -00012206 67.25988770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad0 -00012207 67.25991058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -00012208 67.25991821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -00012209 67.25994110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -00012210 67.25994110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -00012211 67.25997162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -00012212 67.25997162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -00012213 67.25999451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -00012214 67.26000214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -00012215 67.26001740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -00012216 67.26002502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -00012217 67.26004791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -00012218 67.26004791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -00012219 67.26007843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -00012220 67.26007843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -00012221 67.26010132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -00012222 67.26010895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -00012223 67.26012421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -00012224 67.26013184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -00012225 67.26016235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -00012226 67.26016235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -00012227 67.26018524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -00012228 67.26018524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -00012229 67.26020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -00012230 67.26021576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -00012231 67.26023865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -00012232 67.26024628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -00012233 67.26026917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -00012234 67.26026917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -00012235 67.26029205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -00012236 67.26029205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -00012237 67.26032257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -00012238 67.26033020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -00012239 67.26034546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -00012240 67.26035309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -00012241 67.26037598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -00012242 67.26037598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -00012243 67.26040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -00012244 67.26040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -00012245 67.26042938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -00012246 67.26043701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -00012247 67.26045227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -00012248 67.26045990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -00012249 67.26048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -00012250 67.26048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -00012251 67.26051331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c40 -00012252 67.26051331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c40 -00012253 67.26053619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c50 -00012254 67.26054382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c50 -00012255 67.26056671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c60 -00012256 67.26056671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c60 -00012257 67.26059723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c70 -00012258 67.26059723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c70 -00012259 67.26062775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c80 -00012260 67.26062775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c80 -00012261 67.26065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c90 -00012262 67.26065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c90 -00012263 67.26068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca0 -00012264 67.26068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca0 -00012265 67.26071167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb0 -00012266 67.26071930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb0 -00012267 67.26074219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc0 -00012268 67.26074219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc0 -00012269 67.26076508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd0 -00012270 67.26076508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd0 -00012271 67.26080322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce0 -00012272 67.26080322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce0 -00012273 67.26082611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf0 -00012274 67.26083374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf0 -00012275 67.26085663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d00 -00012276 67.26085663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d00 -00012277 67.26087952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d10 -00012278 67.26088715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d10 -00012279 67.26091766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d20 -00012280 67.26091766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d20 -00012281 67.26094055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d30 -00012282 67.26094055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d30 -00012283 67.26096344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d40 -00012284 67.26097107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d40 -00012285 67.26100159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d50 -00012286 67.26100159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d50 -00012287 67.26102448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d60 -00012288 67.26103210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d60 -00012289 67.26105499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d70 -00012290 67.26106262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d70 -00012291 67.26107788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d80 -00012292 67.26108551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d80 -00012293 67.26111603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d90 -00012294 67.26111603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d90 -00012295 67.26113892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da0 -00012296 67.26113892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da0 -00012297 67.26116180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db0 -00012298 67.26116943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db0 -00012299 67.26119232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -00012300 67.26119995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc0 -00012301 67.26122284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -00012302 67.26122284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd0 -00012303 67.26124573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -00012304 67.26124573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de0 -00012305 67.26127625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -00012306 67.26127625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df0 -00012307 67.26129913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -00012308 67.26130676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e00 -00012309 67.26132965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -00012310 67.26132965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e10 -00012311 67.26136017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -00012312 67.26136017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e20 -00012313 67.26138306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -00012314 67.26139069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e30 -00012315 67.26140594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -00012316 67.26141357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e40 -00012317 67.26143646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -00012318 67.26143646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e50 -00012319 67.26146698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -00012320 67.26146698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e60 -00012321 67.26148987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -00012322 67.26148987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e70 -00012323 67.26152039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -00012324 67.26152039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e80 -00012325 67.26155090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -00012326 67.26155090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e90 -00012327 67.26158142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -00012328 67.26158142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ea0 -00012329 67.26160431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -00012330 67.26161194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17eb0 -00012331 67.26163483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -00012332 67.26163483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ec0 -00012333 67.26166534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -00012334 67.26167297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ed0 -00012335 67.26169586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -00012336 67.26169586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ee0 -00012337 67.26171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -00012338 67.26172638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ef0 -00012339 67.26175690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -00012340 67.26175690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f00 -00012341 67.26177979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -00012342 67.26177979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f10 -00012343 67.26181030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -00012344 67.26181030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f20 -00012345 67.26183319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -00012346 67.26183319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f30 -00012347 67.26186371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f40 -00012348 67.26187134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f40 -00012349 67.26189423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f50 -00012350 67.26189423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f50 -00012351 67.26192474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f60 -00012352 67.26192474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f60 -00012353 67.26195526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f70 -00012354 67.26195526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f70 -00012355 67.26198578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f80 -00012356 67.26198578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f80 -00012357 67.26200867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f90 -00012358 67.26200867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f90 -00012359 67.26203918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fa0 -00012360 67.26203918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fa0 -00012361 67.26206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb0 -00012362 67.26206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb0 -00012363 67.26210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc0 -00012364 67.26210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc0 -00012365 67.26212311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd0 -00012366 67.26212311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd0 -00012367 67.26215363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe0 -00012368 67.26215363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe0 -00012369 67.26218414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff0 -00012370 67.26218414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff0 -00012371 67.26220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18000 -00012372 67.26221466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18000 -00012373 67.26223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18010 -00012374 67.26224518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18010 -00012375 67.26227570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18020 -00012376 67.26227570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18020 -00012377 67.26229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18030 -00012378 67.26229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18030 -00012379 67.26232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18040 -00012380 67.26232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18040 -00012381 67.26235199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18050 -00012382 67.26235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18050 -00012383 67.26239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18060 -00012384 67.26239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18060 -00012385 67.26241302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18070 -00012386 67.26242065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18070 -00012387 67.26244354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18080 -00012388 67.26244354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18080 -00012389 67.26247406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18090 -00012390 67.26247406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18090 -00012391 67.26250458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180a0 -00012392 67.26250458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180a0 -00012393 67.26252747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180b0 -00012394 67.26253510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180b0 -00012395 67.26255798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180c0 -00012396 67.26255798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180c0 -00012397 67.26258850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180d0 -00012398 67.26258850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180d0 -00012399 67.26261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180e0 -00012400 67.26261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180e0 -00012401 67.26264191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180f0 -00012402 67.26264954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x180f0 -00012403 67.26267242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18100 -00012404 67.26267242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18100 -00012405 67.26271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18110 -00012406 67.26271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18110 -00012407 67.26273346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18120 -00012408 67.26273346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18120 -00012409 67.26275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18130 -00012410 67.26276398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18130 -00012411 67.26278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18140 -00012412 67.26278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18140 -00012413 67.26281738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18150 -00012414 67.26281738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18150 -00012415 67.26284027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18160 -00012416 67.26284027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18160 -00012417 67.26287079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18170 -00012418 67.26287079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18170 -00012419 67.26289368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18180 -00012420 67.26290131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18180 -00012421 67.26292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18190 -00012422 67.26292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18190 -00012423 67.26294708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a0 -00012424 67.26294708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a0 -00012425 67.26297760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b0 -00012426 67.26298523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b0 -00012427 67.26300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00012428 67.26300812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00012429 67.26303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00012430 67.26303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00012431 67.26306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00012432 67.26306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00012433 67.26308441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00012434 67.26309204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00012435 67.26310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00012436 67.26311493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00012437 67.26314545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00012438 67.26314545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00012439 67.26316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00012440 67.26316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00012441 67.26319122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00012442 67.26319122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00012443 67.26322174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00012444 67.26322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00012445 67.26325226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00012446 67.26325226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00012447 67.26327515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00012448 67.26327515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00012449 67.26330566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18270 -00012450 67.26330566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18270 -00012451 67.26332855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18280 -00012452 67.26333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18280 -00012453 67.26335907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18290 -00012454 67.26335907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18290 -00012455 67.26338196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a0 -00012456 67.26338196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182a0 -00012457 67.26341248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b0 -00012458 67.26341248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182b0 -00012459 67.26343536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c0 -00012460 67.26344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182c0 -00012461 67.26346588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182d0 -00012462 67.26346588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182d0 -00012463 67.26349640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182e0 -00012464 67.26349640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182e0 -00012465 67.26351929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182f0 -00012466 67.26351929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x182f0 -00012467 67.26354218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18300 -00012468 67.26354980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18300 -00012469 67.26358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18310 -00012470 67.26358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18310 -00012471 67.26361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18320 -00012472 67.26361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18320 -00012473 67.26363373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18330 -00012474 67.26364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18330 -00012475 67.26366425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -00012476 67.26366425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -00012477 67.26369476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -00012478 67.26370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -00012479 67.26372528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -00012480 67.26372528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -00012481 67.26374817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -00012482 67.26374817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -00012483 67.26377869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -00012484 67.26377869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -00012485 67.26380920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -00012486 67.26380920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -00012487 67.26383972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -00012488 67.26383972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -00012489 67.26386261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -00012490 67.26386261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -00012491 67.26389313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -00012492 67.26390076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -00012493 67.26391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -00012494 67.26392365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -00012495 67.26394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -00012496 67.26394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -00012497 67.26397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f0 -00012498 67.26397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f0 -00012499 67.26399994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18400 -00012500 67.26399994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18400 -00012501 67.26402283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18410 -00012502 67.26403046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18410 -00012503 67.26406097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18420 -00012504 67.26406097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18420 -00012505 67.26408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18430 -00012506 67.26408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18430 -00012507 67.26410675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -00012508 67.26410675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -00012509 67.26413727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -00012510 67.26413727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -00012511 67.26416779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -00012512 67.26417542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -00012513 67.26419830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -00012514 67.26419830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -00012515 67.26422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -00012516 67.26422882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -00012517 67.26425934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -00012518 67.26425934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -00012519 67.26428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -00012520 67.26428986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -00012521 67.26431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -00012522 67.26431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -00012523 67.26433563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -00012524 67.26434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -00012525 67.26437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -00012526 67.26437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -00012527 67.26439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -00012528 67.26439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -00012529 67.26442719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -00012530 67.26442719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -00012531 67.26445770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -00012532 67.26445770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -00012533 67.26448822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -00012534 67.26449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -00012535 67.26451874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -00012536 67.26451874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -00012537 67.26454163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -00012538 67.26454926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -00012539 67.26457977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -00012540 67.26457977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -00012541 67.26460266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -00012542 67.26461029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -00012543 67.26463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -00012544 67.26463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -00012545 67.26465607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -00012546 67.26465607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -00012547 67.26468658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -00012548 67.26469421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -00012549 67.26471710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -00012550 67.26471710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -00012551 67.26473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a0 -00012552 67.26474762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185a0 -00012553 67.26477814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b0 -00012554 67.26477814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185b0 -00012555 67.26480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c0 -00012556 67.26480865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185c0 -00012557 67.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d0 -00012558 67.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185d0 -00012559 67.26485443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e0 -00012560 67.26486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185e0 -00012561 67.26489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f0 -00012562 67.26489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x185f0 -00012563 67.26491547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18600 -00012564 67.26492310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18600 -00012565 67.26494598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18610 -00012566 67.26494598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18610 -00012567 67.26497650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18620 -00012568 67.26497650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18620 -00012569 67.26499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18630 -00012570 67.26500702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18630 -00012571 67.26502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18640 -00012572 67.26502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18640 -00012573 67.26505280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18650 -00012574 67.26506042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18650 -00012575 67.26509094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18660 -00012576 67.26509094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18660 -00012577 67.26511383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18670 -00012578 67.26512146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18670 -00012579 67.26514435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18680 -00012580 67.26514435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18680 -00012581 67.26517487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18690 -00012582 67.26517487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18690 -00012583 67.26520538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a0 -00012584 67.26520538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a0 -00012585 67.26522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b0 -00012586 67.26522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b0 -00012587 67.26525116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c0 -00012588 67.26525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c0 -00012589 67.26528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d0 -00012590 67.26528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d0 -00012591 67.26531219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e0 -00012592 67.26531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e0 -00012593 67.26534271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f0 -00012594 67.26534271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f0 -00012595 67.26537323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18700 -00012596 67.26537323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18700 -00012597 67.26540375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18710 -00012598 67.26540375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18710 -00012599 67.26542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18720 -00012600 67.26543427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18720 -00012601 67.26545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18730 -00012602 67.26545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18730 -00012603 67.26548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18740 -00012604 67.26548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18740 -00012605 67.26551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18750 -00012606 67.26551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18750 -00012607 67.26554108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18760 -00012608 67.26554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18760 -00012609 67.26557159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18770 -00012610 67.26557159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18770 -00012611 67.26560211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18780 -00012612 67.26560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18780 -00012613 67.26563263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18790 -00012614 67.26563263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18790 -00012615 67.26565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a0 -00012616 67.26566315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a0 -00012617 67.26568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b0 -00012618 67.26568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b0 -00012619 67.26571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c0 -00012620 67.26571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c0 -00012621 67.26574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d0 -00012622 67.26574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d0 -00012623 67.26576996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e0 -00012624 67.26576996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e0 -00012625 67.26580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f0 -00012626 67.26580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f0 -00012627 67.26583099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18800 -00012628 67.26583099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18800 -00012629 67.26585388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18810 -00012630 67.26586151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18810 -00012631 67.26588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18820 -00012632 67.26588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18820 -00012633 67.26591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18830 -00012634 67.26591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18830 -00012635 67.26594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18840 -00012636 67.26594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18840 -00012637 67.26596832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18850 -00012638 67.26596832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18850 -00012639 67.26599884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18860 -00012640 67.26600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18860 -00012641 67.26602936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18870 -00012642 67.26602936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18870 -00012643 67.26605225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -00012644 67.26605988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -00012645 67.26608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -00012646 67.26608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -00012647 67.26611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -00012648 67.26612091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -00012649 67.26614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -00012650 67.26614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -00012651 67.26616669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -00012652 67.26617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -00012653 67.26620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -00012654 67.26620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -00012655 67.26622772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -00012656 67.26623535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -00012657 67.26625824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -00012658 67.26625824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -00012659 67.26628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -00012660 67.26628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -00012661 67.26631927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -00012662 67.26631927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -00012663 67.26634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -00012664 67.26634979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -00012665 67.26636505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -00012666 67.26637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -00012667 67.26640320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -00012668 67.26640320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -00012669 67.26642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -00012670 67.26642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -00012671 67.26644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -00012672 67.26645660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -00012673 67.26647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -00012674 67.26647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -00012675 67.26651001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -00012676 67.26651001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -00012677 67.26653290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -00012678 67.26653290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -00012679 67.26656342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -00012680 67.26656342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -00012681 67.26658630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -00012682 67.26659393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -00012683 67.26661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -00012684 67.26661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -00012685 67.26664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -00012686 67.26664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -00012687 67.26667786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e0 -00012688 67.26667786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e0 -00012689 67.26670074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f0 -00012690 67.26670837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f0 -00012691 67.26673126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a00 -00012692 67.26673126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a00 -00012693 67.26676178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a10 -00012694 67.26676178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a10 -00012695 67.26679230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a20 -00012696 67.26679230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a20 -00012697 67.26681519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a30 -00012698 67.26682281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a30 -00012699 67.26684570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a40 -00012700 67.26684570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a40 -00012701 67.26687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a50 -00012702 67.26687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a50 -00012703 67.26690674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a60 -00012704 67.26690674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a60 -00012705 67.26692963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a70 -00012706 67.26692963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a70 -00012707 67.26696014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a80 -00012708 67.26696014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a80 -00012709 67.26699066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a90 -00012710 67.26699066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a90 -00012711 67.26701355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa0 -00012712 67.26702118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa0 -00012713 67.26704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab0 -00012714 67.26704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab0 -00012715 67.26707458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac0 -00012716 67.26708221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac0 -00012717 67.26710510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad0 -00012718 67.26710510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad0 -00012719 67.26712799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae0 -00012720 67.26713562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae0 -00012721 67.26715851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af0 -00012722 67.26715851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af0 -00012723 67.26718903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b00 -00012724 67.26718903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b00 -00012725 67.26721191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b10 -00012726 67.26721954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b10 -00012727 67.26724243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b20 -00012728 67.26724243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b20 -00012729 67.26727295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b30 -00012730 67.26728058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b30 -00012731 67.26730347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b40 -00012732 67.26730347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b40 -00012733 67.26732635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b50 -00012734 67.26733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b50 -00012735 67.26735687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b60 -00012736 67.26735687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b60 -00012737 67.26738739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b70 -00012738 67.26739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b70 -00012739 67.26741791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b80 -00012740 67.26741791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b80 -00012741 67.26744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b90 -00012742 67.26744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b90 -00012743 67.26747131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba0 -00012744 67.26747894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba0 -00012745 67.26750183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb0 -00012746 67.26750183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb0 -00012747 67.26752472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc0 -00012748 67.26753235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc0 -00012749 67.26755524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd0 -00012750 67.26755524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd0 -00012751 67.26758575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be0 -00012752 67.26759338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be0 -00012753 67.26761627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf0 -00012754 67.26761627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf0 -00012755 67.26763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c00 -00012756 67.26764679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c00 -00012757 67.26767731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c10 -00012758 67.26767731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c10 -00012759 67.26770020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c20 -00012760 67.26770782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c20 -00012761 67.26773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c30 -00012762 67.26773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c30 -00012763 67.26775360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c40 -00012764 67.26776123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c40 -00012765 67.26779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c50 -00012766 67.26779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c50 -00012767 67.26781464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c60 -00012768 67.26782227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c60 -00012769 67.26784515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c70 -00012770 67.26784515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c70 -00012771 67.26787567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c80 -00012772 67.26787567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c80 -00012773 67.26789856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c90 -00012774 67.26790619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c90 -00012775 67.26792908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca0 -00012776 67.26792908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca0 -00012777 67.26795197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb0 -00012778 67.26795197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb0 -00012779 67.26798248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc0 -00012780 67.26799011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc0 -00012781 67.26800537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd0 -00012782 67.26801300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd0 -00012783 67.26803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce0 -00012784 67.26803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce0 -00012785 67.26806641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf0 -00012786 67.26806641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf0 -00012787 67.26808929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d00 -00012788 67.26808929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d00 -00012789 67.26811218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d10 -00012790 67.26811981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d10 -00012791 67.26815033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d20 -00012792 67.26815033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d20 -00012793 67.26817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d30 -00012794 67.26817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d30 -00012795 67.26819611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d40 -00012796 67.26819611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d40 -00012797 67.26822662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d50 -00012798 67.26822662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d50 -00012799 67.26825714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d60 -00012800 67.26825714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d60 -00012801 67.26828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d70 -00012802 67.26828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d70 -00012803 67.26831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d80 -00012804 67.26831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d80 -00012805 67.26833344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d90 -00012806 67.26834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d90 -00012807 67.26835632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da0 -00012808 67.26836395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da0 -00012809 67.26838684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db0 -00012810 67.26838684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db0 -00012811 67.26841736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc0 -00012812 67.26841736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc0 -00012813 67.26844025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd0 -00012814 67.26844788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd0 -00012815 67.26847076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de0 -00012816 67.26847076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de0 -00012817 67.26850128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df0 -00012818 67.26850128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df0 -00012819 67.26852417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e00 -00012820 67.26852417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e00 -00012821 67.26854706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e10 -00012822 67.26855469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e10 -00012823 67.26858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e20 -00012824 67.26858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e20 -00012825 67.26861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e30 -00012826 67.26861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e30 -00012827 67.26863861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e40 -00012828 67.26864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e40 -00012829 67.26866913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e50 -00012830 67.26866913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e50 -00012831 67.26869965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e60 -00012832 67.26869965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e60 -00012833 67.26872253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -00012834 67.26873016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -00012835 67.26874542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -00012836 67.26875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -00012837 67.26878357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -00012838 67.26878357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -00012839 67.26880646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -00012840 67.26880646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -00012841 67.26882935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -00012842 67.26883698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -00012843 67.26885986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -00012844 67.26886749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -00012845 67.26889038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -00012846 67.26889038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -00012847 67.26891327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -00012848 67.26891327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -00012849 67.26894379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -00012850 67.26894379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -00012851 67.26896667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -00012852 67.26897430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -00012853 67.26899719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -00012854 67.26899719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -00012855 67.26902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -00012856 67.26902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f20 -00012857 67.26905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -00012858 67.26905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f30 -00012859 67.26908112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -00012860 67.26908875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f40 -00012861 67.26911163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -00012862 67.26911163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f50 -00012863 67.26914215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -00012864 67.26914215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f60 -00012865 67.26917267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -00012866 67.26917267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f70 -00012867 67.26919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -00012868 67.26920319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f80 -00012869 67.26922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -00012870 67.26922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f90 -00012871 67.26925659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -00012872 67.26926422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fa0 -00012873 67.26928711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -00012874 67.26928711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fb0 -00012875 67.26931000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -00012876 67.26931000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -00012877 67.26934052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -00012878 67.26934052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -00012879 67.26936340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -00012880 67.26937103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -00012881 67.26939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -00012882 67.26939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -00012883 67.26942444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -00012884 67.26942444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -00012885 67.26944733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -00012886 67.26944733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -00012887 67.26947021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -00012888 67.26947784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -00012889 67.26950073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -00012890 67.26950073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -00012891 67.26953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -00012892 67.26953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -00012893 67.26955414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -00012894 67.26955414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -00012895 67.26957703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -00012896 67.26958466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -00012897 67.26961517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -00012898 67.26961517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -00012899 67.26963806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -00012900 67.26964569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -00012901 67.26966858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -00012902 67.26966858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -00012903 67.26969910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -00012904 67.26969910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -00012905 67.26972198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -00012906 67.26972961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -00012907 67.26975250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -00012908 67.26975250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -00012909 67.26977539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -00012910 67.26978302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -00012911 67.26981354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -00012912 67.26982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -00012913 67.26984406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -00012914 67.26984406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -00012915 67.26986694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -00012916 67.26986694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -00012917 67.26989746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -00012918 67.26989746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -00012919 67.26992035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19120 -00012920 67.26992798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19120 -00012921 67.26995087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19130 -00012922 67.26995087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19130 -00012923 67.26998138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19140 -00012924 67.26998138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19140 -00012925 67.27000427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19150 -00012926 67.27000427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19150 -00012927 67.27002716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19160 -00012928 67.27003479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19160 -00012929 67.27005768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19170 -00012930 67.27005768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19170 -00012931 67.27008820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19180 -00012932 67.27008820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19180 -00012933 67.27011108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19190 -00012934 67.27011108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19190 -00012935 67.27013397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a0 -00012936 67.27014160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a0 -00012937 67.27017212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b0 -00012938 67.27017212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b0 -00012939 67.27019501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c0 -00012940 67.27019501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c0 -00012941 67.27021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d0 -00012942 67.27021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d0 -00012943 67.27024841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e0 -00012944 67.27025604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e0 -00012945 67.27027893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f0 -00012946 67.27027893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f0 -00012947 67.27030182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19200 -00012948 67.27030182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19200 -00012949 67.27033234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19210 -00012950 67.27033234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19210 -00012951 67.27035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19220 -00012952 67.27036285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19220 -00012953 67.27038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19230 -00012954 67.27038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19230 -00012955 67.27041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19240 -00012956 67.27041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19240 -00012957 67.27043915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19250 -00012958 67.27043915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19250 -00012959 67.27046204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19260 -00012960 67.27046967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19260 -00012961 67.27049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19270 -00012962 67.27049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19270 -00012963 67.27052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19280 -00012964 67.27052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19280 -00012965 67.27054596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19290 -00012966 67.27055359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19290 -00012967 67.27057648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a0 -00012968 67.27057648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a0 -00012969 67.27060699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -00012970 67.27061462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -00012971 67.27063751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -00012972 67.27063751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -00012973 67.27066040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -00012974 67.27066803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -00012975 67.27069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -00012976 67.27069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -00012977 67.27072906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -00012978 67.27072906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -00012979 67.27075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -00012980 67.27075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -00012981 67.27077484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -00012982 67.27078247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -00012983 67.27080536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -00012984 67.27081299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -00012985 67.27083588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -00012986 67.27084351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -00012987 67.27086639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -00012988 67.27086639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -00012989 67.27088928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -00012990 67.27089691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -00012991 67.27092743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -00012992 67.27092743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -00012993 67.27095032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -00012994 67.27095795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -00012995 67.27098083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -00012996 67.27098083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -00012997 67.27101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -00012998 67.27101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -00012999 67.27104187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -00013000 67.27104187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -00013001 67.27106476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -00013002 67.27106476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -00013003 67.27109528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -00013004 67.27109528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -00013005 67.27112579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -00013006 67.27112579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -00013007 67.27114868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -00013008 67.27115631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -00013009 67.27117920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -00013010 67.27117920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -00013011 67.27120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -00013012 67.27120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -00013013 67.27123260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -00013014 67.27124023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -00013015 67.27125549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -00013016 67.27126312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -00013017 67.27128601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -00013018 67.27128601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -00013019 67.27131653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -00013020 67.27131653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -00013021 67.27133942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -00013022 67.27134705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -00013023 67.27136993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -00013024 67.27136993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -00013025 67.27140045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -00013026 67.27140808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -00013027 67.27143097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -00013028 67.27143097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -00013029 67.27145386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -00013030 67.27146149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -00013031 67.27148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -00013032 67.27148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -00013033 67.27151489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -00013034 67.27151489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -00013035 67.27153778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -00013036 67.27154541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -00013037 67.27156830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -00013038 67.27156830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -00013039 67.27160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -00013040 67.27160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -00013041 67.27162933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -00013042 67.27162933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -00013043 67.27165985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -00013044 67.27165985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -00013045 67.27168274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -00013046 67.27168274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -00013047 67.27172089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -00013048 67.27172089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -00013049 67.27174377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -00013050 67.27174377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -00013051 67.27176666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -00013052 67.27177429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -00013053 67.27180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -00013054 67.27180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -00013055 67.27182770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -00013056 67.27183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -00013057 67.27185822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -00013058 67.27185822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -00013059 67.27188110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -00013060 67.27188873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -00013061 67.27191925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -00013062 67.27191925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -00013063 67.27194214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -00013064 67.27194977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -00013065 67.27197266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -00013066 67.27197266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -00013067 67.27200317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c0 -00013068 67.27200317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c0 -00013069 67.27203369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d0 -00013070 67.27203369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d0 -00013071 67.27205658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e0 -00013072 67.27206421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e0 -00013073 67.27208710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f0 -00013074 67.27208710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f0 -00013075 67.27211761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19600 -00013076 67.27212524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19600 -00013077 67.27214813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19610 -00013078 67.27214813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19610 -00013079 67.27217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19620 -00013080 67.27217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19620 -00013081 67.27220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19630 -00013082 67.27220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19630 -00013083 67.27223206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19640 -00013084 67.27223206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19640 -00013085 67.27226257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19650 -00013086 67.27226257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19650 -00013087 67.27228546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19660 -00013088 67.27228546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19660 -00013089 67.27232361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19670 -00013090 67.27232361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19670 -00013091 67.27234650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19680 -00013092 67.27234650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19680 -00013093 67.27237701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19690 -00013094 67.27237701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19690 -00013095 67.27239990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a0 -00013096 67.27239990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a0 -00013097 67.27243042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b0 -00013098 67.27243805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b0 -00013099 67.27246094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c0 -00013100 67.27246094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c0 -00013101 67.27248383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d0 -00013102 67.27249146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d0 -00013103 67.27252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e0 -00013104 67.27252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e0 -00013105 67.27254486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f0 -00013106 67.27255249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f0 -00013107 67.27257538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19700 -00013108 67.27257538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19700 -00013109 67.27259827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19710 -00013110 67.27260590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19710 -00013111 67.27263641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19720 -00013112 67.27263641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19720 -00013113 67.27265930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19730 -00013114 67.27266693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19730 -00013115 67.27268982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19740 -00013116 67.27268982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19740 -00013117 67.27272034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19750 -00013118 67.27272034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19750 -00013119 67.27274323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19760 -00013120 67.27275085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19760 -00013121 67.27277374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19770 -00013122 67.27277374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19770 -00013123 67.27279663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19780 -00013124 67.27280426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19780 -00013125 67.27283478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19790 -00013126 67.27283478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19790 -00013127 67.27285767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a0 -00013128 67.27286530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a0 -00013129 67.27288818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b0 -00013130 67.27288818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b0 -00013131 67.27291870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c0 -00013132 67.27291870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c0 -00013133 67.27294159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d0 -00013134 67.27294922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d0 -00013135 67.27297211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e0 -00013136 67.27297211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e0 -00013137 67.27299500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f0 -00013138 67.27300262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f0 -00013139 67.27303314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19800 -00013140 67.27303314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19800 -00013141 67.27305603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19810 -00013142 67.27306366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19810 -00013143 67.27308655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19820 -00013144 67.27308655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19820 -00013145 67.27311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19830 -00013146 67.27311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19830 -00013147 67.27314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19840 -00013148 67.27314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19840 -00013149 67.27317047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19850 -00013150 67.27317047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19850 -00013151 67.27319336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19860 -00013152 67.27320099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19860 -00013153 67.27323151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19870 -00013154 67.27323151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19870 -00013155 67.27325439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19880 -00013156 67.27326202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19880 -00013157 67.27328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19890 -00013158 67.27328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19890 -00013159 67.27331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a0 -00013160 67.27331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198a0 -00013161 67.27334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -00013162 67.27334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -00013163 67.27336884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -00013164 67.27336884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -00013165 67.27339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -00013166 67.27339935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -00013167 67.27342987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -00013168 67.27342987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -00013169 67.27345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -00013170 67.27346039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -00013171 67.27348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -00013172 67.27348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -00013173 67.27351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -00013174 67.27351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -00013175 67.27354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -00013176 67.27354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -00013177 67.27356720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -00013178 67.27357483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -00013179 67.27359772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -00013180 67.27359772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -00013181 67.27362823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -00013182 67.27362823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -00013183 67.27365875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19960 -00013184 67.27365875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19960 -00013185 67.27368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19970 -00013186 67.27368927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19970 -00013187 67.27371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19980 -00013188 67.27371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19980 -00013189 67.27374268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19990 -00013190 67.27375031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19990 -00013191 67.27377319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a0 -00013192 67.27377319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a0 -00013193 67.27379608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b0 -00013194 67.27380371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b0 -00013195 67.27382660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c0 -00013196 67.27382660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c0 -00013197 67.27385712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d0 -00013198 67.27385712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d0 -00013199 67.27388000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e0 -00013200 67.27388763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e0 -00013201 67.27391052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f0 -00013202 67.27391052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f0 -00013203 67.27394104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a00 -00013204 67.27394867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a00 -00013205 67.27397156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a10 -00013206 67.27397156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a10 -00013207 67.27399445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a20 -00013208 67.27399445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a20 -00013209 67.27403259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a30 -00013210 67.27403259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a30 -00013211 67.27405548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a40 -00013212 67.27405548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a40 -00013213 67.27407837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a50 -00013214 67.27408600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a50 -00013215 67.27410889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a60 -00013216 67.27410889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a60 -00013217 67.27413940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a70 -00013218 67.27414703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a70 -00013219 67.27416992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a80 -00013220 67.27416992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a80 -00013221 67.27419281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a90 -00013222 67.27420044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a90 -00013223 67.27423096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19aa0 -00013224 67.27423096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19aa0 -00013225 67.27425385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ab0 -00013226 67.27426147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ab0 -00013227 67.27428436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ac0 -00013228 67.27428436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ac0 -00013229 67.27430725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ad0 -00013230 67.27431488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ad0 -00013231 67.27434540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ae0 -00013232 67.27434540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ae0 -00013233 67.27436829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19af0 -00013234 67.27436829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19af0 -00013235 67.27439117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b00 -00013236 67.27439880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b00 -00013237 67.27442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b10 -00013238 67.27442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b10 -00013239 67.27445221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b20 -00013240 67.27445984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b20 -00013241 67.27448273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b30 -00013242 67.27448273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b30 -00013243 67.27450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b40 -00013244 67.27451324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b40 -00013245 67.27454376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b50 -00013246 67.27454376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b50 -00013247 67.27456665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b60 -00013248 67.27457428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b60 -00013249 67.27459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b70 -00013250 67.27459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b70 -00013251 67.27462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b80 -00013252 67.27462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b80 -00013253 67.27465057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b90 -00013254 67.27465820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b90 -00013255 67.27468109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ba0 -00013256 67.27468109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ba0 -00013257 67.27470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bb0 -00013258 67.27471161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bb0 -00013259 67.27474213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bc0 -00013260 67.27474213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bc0 -00013261 67.27477264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bd0 -00013262 67.27477264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bd0 -00013263 67.27479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19be0 -00013264 67.27480316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19be0 -00013265 67.27482605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bf0 -00013266 67.27482605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19bf0 -00013267 67.27485657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c00 -00013268 67.27486420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c00 -00013269 67.27488708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c10 -00013270 67.27488708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c10 -00013271 67.27490997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c20 -00013272 67.27491760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c20 -00013273 67.27494049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c30 -00013274 67.27494049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c30 -00013275 67.27497101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c40 -00013276 67.27497101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c40 -00013277 67.27500153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c50 -00013278 67.27500153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c50 -00013279 67.27502441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c60 -00013280 67.27503204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c60 -00013281 67.27505493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c70 -00013282 67.27506256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c70 -00013283 67.27508545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c80 -00013284 67.27508545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c80 -00013285 67.27510834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c90 -00013286 67.27510834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c90 -00013287 67.27513885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ca0 -00013288 67.27513885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ca0 -00013289 67.27516174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cb0 -00013290 67.27516937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cb0 -00013291 67.27519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cc0 -00013292 67.27519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cc0 -00013293 67.27522278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cd0 -00013294 67.27522278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cd0 -00013295 67.27524567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ce0 -00013296 67.27525330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ce0 -00013297 67.27526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -00013298 67.27527618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -00013299 67.27529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -00013300 67.27529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -00013301 67.27532959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -00013302 67.27532959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -00013303 67.27535248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -00013304 67.27536011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -00013305 67.27538300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -00013306 67.27538300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -00013307 67.27541351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -00013308 67.27541351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -00013309 67.27543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -00013310 67.27543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -00013311 67.27545929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -00013312 67.27546692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -00013313 67.27549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -00013314 67.27549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -00013315 67.27552032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -00013316 67.27552032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -00013317 67.27554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -00013318 67.27555084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -00013319 67.27557373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -00013320 67.27558136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -00013321 67.27560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -00013322 67.27560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -00013323 67.27562714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -00013324 67.27562714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -00013325 67.27565765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -00013326 67.27565765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -00013327 67.27568054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -00013328 67.27568817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -00013329 67.27571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -00013330 67.27571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -00013331 67.27573395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -00013332 67.27573395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -00013333 67.27576447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -00013334 67.27577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -00013335 67.27579498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -00013336 67.27579498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -00013337 67.27581787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -00013338 67.27581787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -00013339 67.27584839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -00013340 67.27584839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -00013341 67.27587128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e50 -00013342 67.27587891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e50 -00013343 67.27590179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e60 -00013344 67.27590179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e60 -00013345 67.27593231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e70 -00013346 67.27593231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e70 -00013347 67.27595520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e80 -00013348 67.27596283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e80 -00013349 67.27598572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e90 -00013350 67.27598572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e90 -00013351 67.27601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea0 -00013352 67.27601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea0 -00013353 67.27603912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb0 -00013354 67.27603912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb0 -00013355 67.27606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec0 -00013356 67.27606964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec0 -00013357 67.27609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ed0 -00013358 67.27609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ed0 -00013359 67.27612305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ee0 -00013360 67.27612305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ee0 -00013361 67.27614594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ef0 -00013362 67.27614594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ef0 -00013363 67.27617645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f00 -00013364 67.27617645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f00 -00013365 67.27620697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f10 -00013366 67.27620697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f10 -00013367 67.27622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f20 -00013368 67.27622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f20 -00013369 67.27625275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f30 -00013370 67.27625275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f30 -00013371 67.27628326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f40 -00013372 67.27629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f40 -00013373 67.27631378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f50 -00013374 67.27631378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f50 -00013375 67.27633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f60 -00013376 67.27633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f60 -00013377 67.27636719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f70 -00013378 67.27636719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f70 -00013379 67.27639008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f80 -00013380 67.27639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f80 -00013381 67.27642059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f90 -00013382 67.27642059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f90 -00013383 67.27645111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa0 -00013384 67.27645111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa0 -00013385 67.27647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb0 -00013386 67.27647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb0 -00013387 67.27649689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc0 -00013388 67.27650452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc0 -00013389 67.27652740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd0 -00013390 67.27652740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd0 -00013391 67.27655792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe0 -00013392 67.27655792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe0 -00013393 67.27658844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff0 -00013394 67.27658844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff0 -00013395 67.27661133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a000 -00013396 67.27661896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a000 -00013397 67.27664948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a010 -00013398 67.27664948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a010 -00013399 67.27667999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a020 -00013400 67.27667999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a020 -00013401 67.27670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a030 -00013402 67.27670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a030 -00013403 67.27673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a040 -00013404 67.27673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a040 -00013405 67.27675629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a050 -00013406 67.27676392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a050 -00013407 67.27678680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a060 -00013408 67.27678680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a060 -00013409 67.27680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a070 -00013410 67.27681732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a070 -00013411 67.27684784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a080 -00013412 67.27684784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a080 -00013413 67.27687073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a090 -00013414 67.27687836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a090 -00013415 67.27690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a0 -00013416 67.27690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a0 -00013417 67.27693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b0 -00013418 67.27693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b0 -00013419 67.27696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c0 -00013420 67.27696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c0 -00013421 67.27698517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d0 -00013422 67.27699280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d0 -00013423 67.27701569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e0 -00013424 67.27701569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e0 -00013425 67.27704620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f0 -00013426 67.27704620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f0 -00013427 67.27707672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a100 -00013428 67.27707672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a100 -00013429 67.27709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a110 -00013430 67.27709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a110 -00013431 67.27713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a120 -00013432 67.27713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a120 -00013433 67.27715302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a130 -00013434 67.27716064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a130 -00013435 67.27718353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a140 -00013436 67.27718353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a140 -00013437 67.27720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -00013438 67.27720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -00013439 67.27723694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -00013440 67.27724457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -00013441 67.27725983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -00013442 67.27726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -00013443 67.27729034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -00013444 67.27729034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -00013445 67.27732086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -00013446 67.27732086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -00013447 67.27734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -00013448 67.27735138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -00013449 67.27737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -00013450 67.27737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -00013451 67.27740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -00013452 67.27740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -00013453 67.27742767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -00013454 67.27742767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -00013455 67.27745056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -00013456 67.27745819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -00013457 67.27748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -00013458 67.27748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -00013459 67.27751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a200 -00013460 67.27751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a200 -00013461 67.27753448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a210 -00013462 67.27753448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a210 -00013463 67.27756500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a220 -00013464 67.27756500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a220 -00013465 67.27759552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a230 -00013466 67.27759552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a230 -00013467 67.27761841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a240 -00013468 67.27761841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a240 -00013469 67.27764130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a250 -00013470 67.27764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a250 -00013471 67.27767181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a260 -00013472 67.27767944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a260 -00013473 67.27770233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a270 -00013474 67.27770233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a270 -00013475 67.27772522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a280 -00013476 67.27772522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a280 -00013477 67.27775574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a290 -00013478 67.27776337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a290 -00013479 67.27777863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a0 -00013480 67.27778625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a0 -00013481 67.27780914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b0 -00013482 67.27780914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b0 -00013483 67.27783966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c0 -00013484 67.27783966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c0 -00013485 67.27786255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d0 -00013486 67.27787018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d0 -00013487 67.27788544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e0 -00013488 67.27789307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e0 -00013489 67.27792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f0 -00013490 67.27792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f0 -00013491 67.27794647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a300 -00013492 67.27794647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a300 -00013493 67.27796936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a310 -00013494 67.27796936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a310 -00013495 67.27799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a320 -00013496 67.27799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a320 -00013497 67.27803040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a330 -00013498 67.27803040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a330 -00013499 67.27805328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a340 -00013500 67.27805328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a340 -00013501 67.27808380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a350 -00013502 67.27808380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a350 -00013503 67.27810669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a360 -00013504 67.27811432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a360 -00013505 67.27813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a370 -00013506 67.27813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a370 -00013507 67.27816010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a380 -00013508 67.27816010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a380 -00013509 67.27819061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a390 -00013510 67.27819061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a390 -00013511 67.27821350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -00013512 67.27822113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -00013513 67.27823639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -00013514 67.27824402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -00013515 67.27827454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -00013516 67.27827454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -00013517 67.27829742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -00013518 67.27829742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -00013519 67.27832794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -00013520 67.27832794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -00013521 67.27835846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -00013522 67.27835846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -00013523 67.27838898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -00013524 67.27838898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -00013525 67.27841187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -00013526 67.27841949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -00013527 67.27844238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -00013528 67.27844238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -00013529 67.27847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -00013530 67.27848053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -00013531 67.27850342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -00013532 67.27850342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -00013533 67.27852631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -00013534 67.27852631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -00013535 67.27855682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -00013536 67.27855682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -00013537 67.27858734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -00013538 67.27858734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -00013539 67.27861023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -00013540 67.27861786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -00013541 67.27864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -00013542 67.27864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -00013543 67.27867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -00013544 67.27867889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -00013545 67.27870178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -00013546 67.27870178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -00013547 67.27872467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -00013548 67.27873230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -00013549 67.27875519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -00013550 67.27875519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -00013551 67.27878571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -00013552 67.27879333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -00013553 67.27881622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4f0 -00013554 67.27881622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4f0 -00013555 67.27883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a500 -00013556 67.27883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a500 -00013557 67.27886963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a510 -00013558 67.27887726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a510 -00013559 67.27890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a520 -00013560 67.27890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a520 -00013561 67.27892303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a530 -00013562 67.27893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a530 -00013563 67.27895355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a540 -00013564 67.27895355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a540 -00013565 67.27898407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a550 -00013566 67.27899170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a550 -00013567 67.27901459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -00013568 67.27901459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -00013569 67.27903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -00013570 67.27904510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -00013571 67.27907562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -00013572 67.27907562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -00013573 67.27910614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -00013574 67.27910614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -00013575 67.27912903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -00013576 67.27913666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -00013577 67.27915955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -00013578 67.27915955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -00013579 67.27919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -00013580 67.27919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -00013581 67.27922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -00013582 67.27922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -00013583 67.27924347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -00013584 67.27925110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -00013585 67.27927399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -00013586 67.27927399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -00013587 67.27931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -00013588 67.27931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -00013589 67.27935028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -00013590 67.27935028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -00013591 67.27938080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -00013592 67.27938080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -00013593 67.27940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -00013594 67.27941132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -00013595 67.27943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -00013596 67.27943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -00013597 67.27946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -00013598 67.27947235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -00013599 67.27949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -00013600 67.27949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -00013601 67.27951813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -00013602 67.27952576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -00013603 67.27954865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -00013604 67.27954865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -00013605 67.27957916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -00013606 67.27958679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -00013607 67.27960968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -00013608 67.27960968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -00013609 67.27963257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -00013610 67.27964020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -00013611 67.27967072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -00013612 67.27967072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -00013613 67.27969360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -00013614 67.27970123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -00013615 67.27972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -00013616 67.27972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -00013617 67.27974701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -00013618 67.27975464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -00013619 67.27978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -00013620 67.27978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -00013621 67.27980804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -00013622 67.27981567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -00013623 67.27983856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -00013624 67.27983856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -00013625 67.27986908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -00013626 67.27986908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -00013627 67.27989960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -00013628 67.27989960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a740 -00013629 67.27992249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -00013630 67.27993011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a750 -00013631 67.27995300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -00013632 67.27995300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a760 -00013633 67.27998352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -00013634 67.27998352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a770 -00013635 67.28000641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -00013636 67.28001404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a780 -00013637 67.28003693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -00013638 67.28003693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a790 -00013639 67.28006744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7a0 -00013640 67.28006744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7a0 -00013641 67.28009796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7b0 -00013642 67.28009796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7b0 -00013643 67.28012085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -00013644 67.28012848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -00013645 67.28015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -00013646 67.28015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -00013647 67.28018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -00013648 67.28018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -00013649 67.28020477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -00013650 67.28021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -00013651 67.28023529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -00013652 67.28023529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -00013653 67.28026581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -00013654 67.28026581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -00013655 67.28029633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -00013656 67.28029633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -00013657 67.28032684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -00013658 67.28032684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -00013659 67.28034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -00013660 67.28035736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -00013661 67.28038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -00013662 67.28038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -00013663 67.28041077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -00013664 67.28041840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -00013665 67.28044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a870 -00013666 67.28044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a870 -00013667 67.28046417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a880 -00013668 67.28047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a880 -00013669 67.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a890 -00013670 67.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a890 -00013671 67.28052521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a0 -00013672 67.28052521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a0 -00013673 67.28055573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b0 -00013674 67.28055573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b0 -00013675 67.28057861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c0 -00013676 67.28057861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c0 -00013677 67.28060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d0 -00013678 67.28061676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d0 -00013679 67.28063965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e0 -00013680 67.28063965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e0 -00013681 67.28067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f0 -00013682 67.28067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f0 -00013683 67.28070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a900 -00013684 67.28070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a900 -00013685 67.28073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a910 -00013686 67.28073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a910 -00013687 67.28075409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a920 -00013688 67.28076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a920 -00013689 67.28078461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a930 -00013690 67.28078461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a930 -00013691 67.28081512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a940 -00013692 67.28082275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a940 -00013693 67.28084564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a950 -00013694 67.28084564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a950 -00013695 67.28086853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a960 -00013696 67.28086853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a960 -00013697 67.28089905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a970 -00013698 67.28089905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a970 -00013699 67.28092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a980 -00013700 67.28092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a980 -00013701 67.28095245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a990 -00013702 67.28096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a990 -00013703 67.28098297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a0 -00013704 67.28098297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a0 -00013705 67.28101349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b0 -00013706 67.28102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b0 -00013707 67.28104401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c0 -00013708 67.28104401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c0 -00013709 67.28106689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d0 -00013710 67.28107452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d0 -00013711 67.28109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e0 -00013712 67.28109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e0 -00013713 67.28112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f0 -00013714 67.28113556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f0 -00013715 67.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa00 -00013716 67.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa00 -00013717 67.28118134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -00013718 67.28118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -00013719 67.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -00013720 67.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -00013721 67.28124237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -00013722 67.28124237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -00013723 67.28126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -00013724 67.28127289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -00013725 67.28129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -00013726 67.28129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -00013727 67.28132629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -00013728 67.28133392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -00013729 67.28135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -00013730 67.28135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -00013731 67.28137970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -00013732 67.28138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -00013733 67.28141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -00013734 67.28141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -00013735 67.28144073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -00013736 67.28144836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -00013737 67.28147125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -00013738 67.28147125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -00013739 67.28149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac0 -00013740 67.28149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac0 -00013741 67.28153229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad0 -00013742 67.28153229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad0 -00013743 67.28155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae0 -00013744 67.28156281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae0 -00013745 67.28158569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf0 -00013746 67.28158569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf0 -00013747 67.28161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab00 -00013748 67.28161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab00 -00013749 67.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab10 -00013750 67.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab10 -00013751 67.28166962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab20 -00013752 67.28166962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab20 -00013753 67.28169250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab30 -00013754 67.28170013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab30 -00013755 67.28173065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab40 -00013756 67.28173065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab40 -00013757 67.28175354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab50 -00013758 67.28176117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab50 -00013759 67.28178406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab60 -00013760 67.28178406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab60 -00013761 67.28181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab70 -00013762 67.28181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab70 -00013763 67.28184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -00013764 67.28184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -00013765 67.28186798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -00013766 67.28186798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -00013767 67.28189087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -00013768 67.28189850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -00013769 67.28192902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -00013770 67.28192902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -00013771 67.28195953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -00013772 67.28195953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -00013773 67.28198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -00013774 67.28198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -00013775 67.28201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -00013776 67.28201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -00013777 67.28204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -00013778 67.28204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -00013779 67.28206635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -00013780 67.28206635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -00013781 67.28208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -00013782 67.28208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -00013783 67.28211975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac20 -00013784 67.28212738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac20 -00013785 67.28215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac30 -00013786 67.28215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac30 -00013787 67.28217316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac40 -00013788 67.28217316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac40 -00013789 67.28220367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac50 -00013790 67.28220367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac50 -00013791 67.28222656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac60 -00013792 67.28223419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac60 -00013793 67.28224945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac70 -00013794 67.28225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac70 -00013795 67.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac80 -00013796 67.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac80 -00013797 67.28231049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac90 -00013798 67.28231049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac90 -00013799 67.28233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca0 -00013800 67.28234100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca0 -00013801 67.28236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb0 -00013802 67.28237152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb0 -00013803 67.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc0 -00013804 67.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc0 -00013805 67.28241730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd0 -00013806 67.28241730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd0 -00013807 67.28244781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace0 -00013808 67.28244781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace0 -00013809 67.28247833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf0 -00013810 67.28247833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf0 -00013811 67.28250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad00 -00013812 67.28250885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad00 -00013813 67.28253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad10 -00013814 67.28253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad10 -00013815 67.28256226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad20 -00013816 67.28256989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad20 -00013817 67.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad30 -00013818 67.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad30 -00013819 67.28261566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad40 -00013820 67.28262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad40 -00013821 67.28264618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad50 -00013822 67.28264618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad50 -00013823 67.28267670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad60 -00013824 67.28268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad60 -00013825 67.28270721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad70 -00013826 67.28270721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad70 -00013827 67.28273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad80 -00013828 67.28273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad80 -00013829 67.28276825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad90 -00013830 67.28276825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad90 -00013831 67.28279877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ada0 -00013832 67.28279877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ada0 -00013833 67.28282166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb0 -00013834 67.28282928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb0 -00013835 67.28285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc0 -00013836 67.28285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc0 -00013837 67.28288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add0 -00013838 67.28288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add0 -00013839 67.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade0 -00013840 67.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade0 -00013841 67.28293610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf0 -00013842 67.28294373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf0 -00013843 67.28296661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae00 -00013844 67.28296661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae00 -00013845 67.28299713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae10 -00013846 67.28299713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae10 -00013847 67.28302765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae20 -00013848 67.28302765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae20 -00013849 67.28305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae30 -00013850 67.28305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae30 -00013851 67.28308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae40 -00013852 67.28308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae40 -00013853 67.28310394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae50 -00013854 67.28311157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae50 -00013855 67.28313446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae60 -00013856 67.28313446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae60 -00013857 67.28316498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae70 -00013858 67.28316498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae70 -00013859 67.28318787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae80 -00013860 67.28319550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae80 -00013861 67.28321075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae90 -00013862 67.28321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae90 -00013863 67.28324127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea0 -00013864 67.28324127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea0 -00013865 67.28327179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb0 -00013866 67.28327179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb0 -00013867 67.28329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec0 -00013868 67.28330231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec0 -00013869 67.28332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -00013870 67.28332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -00013871 67.28335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -00013872 67.28335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -00013873 67.28337860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -00013874 67.28337860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -00013875 67.28340149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -00013876 67.28340912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -00013877 67.28343201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -00013878 67.28343964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -00013879 67.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -00013880 67.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -00013881 67.28348541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -00013882 67.28348541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -00013883 67.28351593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -00013884 67.28351593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -00013885 67.28353882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -00013886 67.28354645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -00013887 67.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -00013888 67.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -00013889 67.28359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -00013890 67.28359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -00013891 67.28362274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -00013892 67.28363037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -00013893 67.28364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -00013894 67.28365326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -00013895 67.28368378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -00013896 67.28368378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -00013897 67.28370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -00013898 67.28370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -00013899 67.28372955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -00013900 67.28373718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -00013901 67.28376007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -00013902 67.28376007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -00013903 67.28379059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -00013904 67.28379059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -00013905 67.28381348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -00013906 67.28381348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -00013907 67.28383636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -00013908 67.28383636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -00013909 67.28386688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -00013910 67.28387451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -00013911 67.28389740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -00013912 67.28389740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -00013913 67.28392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -00013914 67.28392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -00013915 67.28395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -00013916 67.28395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -00013917 67.28397369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -00013918 67.28398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -00013919 67.28400421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -00013920 67.28400421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -00013921 67.28403473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -00013922 67.28403473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -00013923 67.28405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -00013924 67.28405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -00013925 67.28408051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -00013926 67.28408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -00013927 67.28411102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -00013928 67.28411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -00013929 67.28414154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b0 -00013930 67.28414154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b0 -00013931 67.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c0 -00013932 67.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c0 -00013933 67.28419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d0 -00013934 67.28419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d0 -00013935 67.28421783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e0 -00013936 67.28422546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e0 -00013937 67.28424835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f0 -00013938 67.28424835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f0 -00013939 67.28427887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b100 -00013940 67.28427887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b100 -00013941 67.28430176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -00013942 67.28430939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -00013943 67.28432465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -00013944 67.28433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -00013945 67.28435516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -00013946 67.28435516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -00013947 67.28438568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -00013948 67.28438568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -00013949 67.28440857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -00013950 67.28441620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -00013951 67.28443146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -00013952 67.28443909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -00013953 67.28446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -00013954 67.28446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -00013955 67.28449249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -00013956 67.28449249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -00013957 67.28451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -00013958 67.28452301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -00013959 67.28454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -00013960 67.28455353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -00013961 67.28457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -00013962 67.28458405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -00013963 67.28461456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -00013964 67.28461456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -00013965 67.28463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -00013966 67.28463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -00013967 67.28466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -00013968 67.28467560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -00013969 67.28469086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -00013970 67.28469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -00013971 67.28472137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -00013972 67.28472137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -00013973 67.28475189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -00013974 67.28475189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -00013975 67.28478241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -00013976 67.28478241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -00013977 67.28480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -00013978 67.28481293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -00013979 67.28483582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -00013980 67.28483582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -00013981 67.28486633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -00013982 67.28487396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b250 -00013983 67.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -00013984 67.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b260 -00013985 67.28491974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -00013986 67.28492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b270 -00013987 67.28495026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -00013988 67.28495026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b280 -00013989 67.28498077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -00013990 67.28498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b290 -00013991 67.28501129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -00013992 67.28501129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -00013993 67.28503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -00013994 67.28504181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -00013995 67.28507233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -00013996 67.28507233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -00013997 67.28509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -00013998 67.28509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -00013999 67.28511810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -00014000 67.28512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -00014001 67.28514862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -00014002 67.28514862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -00014003 67.28517914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -00014004 67.28517914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -00014005 67.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -00014006 67.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -00014007 67.28523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -00014008 67.28523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -00014009 67.28526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -00014010 67.28526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -00014011 67.28529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -00014012 67.28529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -00014013 67.28531647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -00014014 67.28531647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -00014015 67.28534698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -00014016 67.28534698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -00014017 67.28537750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -00014018 67.28537750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -00014019 67.28540039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -00014020 67.28540802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -00014021 67.28543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -00014022 67.28543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -00014023 67.28546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -00014024 67.28546906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -00014025 67.28549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -00014026 67.28549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -00014027 67.28551483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -00014028 67.28551483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -00014029 67.28554535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -00014030 67.28554535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -00014031 67.28557587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -00014032 67.28557587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -00014033 67.28560638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -00014034 67.28560638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -00014035 67.28562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -00014036 67.28562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -00014037 67.28565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -00014038 67.28566742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -00014039 67.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -00014040 67.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -00014041 67.28571320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b430 -00014042 67.28572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b430 -00014043 67.28574371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b440 -00014044 67.28574371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b440 -00014045 67.28577423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b450 -00014046 67.28578186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b450 -00014047 67.28580475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b460 -00014048 67.28580475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b460 -00014049 67.28582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b470 -00014050 67.28583527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b470 -00014051 67.28586578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b480 -00014052 67.28586578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b480 -00014053 67.28588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b490 -00014054 67.28589630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b490 -00014055 67.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4a0 -00014056 67.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4a0 -00014057 67.28594208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4b0 -00014058 67.28594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4b0 -00014059 67.28598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4c0 -00014060 67.28598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4c0 -00014061 67.28600311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d0 -00014062 67.28600311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d0 -00014063 67.28602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e0 -00014064 67.28603363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e0 -00014065 67.28606415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f0 -00014066 67.28606415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f0 -00014067 67.28608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b500 -00014068 67.28609467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b500 -00014069 67.28611755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b510 -00014070 67.28611755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b510 -00014071 67.28614044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b520 -00014072 67.28614807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b520 -00014073 67.28617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b530 -00014074 67.28617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b530 -00014075 67.28620148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b540 -00014076 67.28620911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b540 -00014077 67.28623199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b550 -00014078 67.28623199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b550 -00014079 67.28626251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b560 -00014080 67.28626251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b560 -00014081 67.28628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b570 -00014082 67.28629303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b570 -00014083 67.28631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b580 -00014084 67.28631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b580 -00014085 67.28633881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b590 -00014086 67.28634644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b590 -00014087 67.28637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a0 -00014088 67.28637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a0 -00014089 67.28640747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b0 -00014090 67.28640747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b0 -00014091 67.28643036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c0 -00014092 67.28643036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c0 -00014093 67.28646088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d0 -00014094 67.28646088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d0 -00014095 67.28648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e0 -00014096 67.28649139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e0 -00014097 67.28651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f0 -00014098 67.28651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f0 -00014099 67.28653717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b600 -00014100 67.28654480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b600 -00014101 67.28657532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b610 -00014102 67.28657532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b610 -00014103 67.28660583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b620 -00014104 67.28660583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b620 -00014105 67.28662872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b630 -00014106 67.28663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b630 -00014107 67.28665924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b640 -00014108 67.28665924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b640 -00014109 67.28668976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b650 -00014110 67.28668976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b650 -00014111 67.28672028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b660 -00014112 67.28672028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b660 -00014113 67.28674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b670 -00014114 67.28674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b670 -00014115 67.28677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b680 -00014116 67.28678131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b680 -00014117 67.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b690 -00014118 67.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b690 -00014119 67.28682709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a0 -00014120 67.28683472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6a0 -00014121 67.28685760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b0 -00014122 67.28685760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6b0 -00014123 67.28688812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c0 -00014124 67.28689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6c0 -00014125 67.28691864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d0 -00014126 67.28691864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6d0 -00014127 67.28694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e0 -00014128 67.28694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6e0 -00014129 67.28697968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f0 -00014130 67.28697968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b6f0 -00014131 67.28700256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b700 -00014132 67.28700256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b700 -00014133 67.28702545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b710 -00014134 67.28703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b710 -00014135 67.28705597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b720 -00014136 67.28705597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b720 -00014137 67.28708649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b730 -00014138 67.28709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b730 -00014139 67.28711700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b740 -00014140 67.28712463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b740 -00014141 67.28713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b750 -00014142 67.28714752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b750 -00014143 67.28717804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b760 -00014144 67.28717804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b760 -00014145 67.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b770 -00014146 67.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b770 -00014147 67.28722382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b780 -00014148 67.28723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b780 -00014149 67.28725433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b790 -00014150 67.28725433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b790 -00014151 67.28728485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a0 -00014152 67.28728485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7a0 -00014153 67.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7b0 -00014154 67.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7b0 -00014155 67.28733063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7c0 -00014156 67.28733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7c0 -00014157 67.28736877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7d0 -00014158 67.28736877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7d0 -00014159 67.28739166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7e0 -00014160 67.28739166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7e0 -00014161 67.28741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f0 -00014162 67.28741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f0 -00014163 67.28744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b800 -00014164 67.28745270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b800 -00014165 67.28747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b810 -00014166 67.28747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b810 -00014167 67.28749847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b820 -00014168 67.28749847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b820 -00014169 67.28752899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b830 -00014170 67.28752899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b830 -00014171 67.28755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b840 -00014172 67.28755951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b840 -00014173 67.28758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b850 -00014174 67.28758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b850 -00014175 67.28761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -00014176 67.28761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -00014177 67.28763580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -00014178 67.28764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -00014179 67.28765869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -00014180 67.28766632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -00014181 67.28768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -00014182 67.28768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -00014183 67.28771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -00014184 67.28771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -00014185 67.28774261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -00014186 67.28775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -00014187 67.28777313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -00014188 67.28777313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -00014189 67.28780365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -00014190 67.28780365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -00014191 67.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -00014192 67.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -00014193 67.28784943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -00014194 67.28785706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -00014195 67.28787994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -00014196 67.28788757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -00014197 67.28791046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -00014198 67.28791046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -00014199 67.28793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -00014200 67.28793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -00014201 67.28796387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -00014202 67.28796387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -00014203 67.28798676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -00014204 67.28799438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -00014205 67.28801727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -00014206 67.28801727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -00014207 67.28804779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -00014208 67.28804779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -00014209 67.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -00014210 67.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -00014211 67.28809357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -00014212 67.28810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -00014213 67.28813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -00014214 67.28813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -00014215 67.28815460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -00014216 67.28815460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -00014217 67.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -00014218 67.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -00014219 67.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c0 -00014220 67.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c0 -00014221 67.28823090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d0 -00014222 67.28823853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d0 -00014223 67.28826141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e0 -00014224 67.28826141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e0 -00014225 67.28828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f0 -00014226 67.28828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f0 -00014227 67.28831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba00 -00014228 67.28832245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba00 -00014229 67.28833771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba10 -00014230 67.28834534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba10 -00014231 67.28836823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba20 -00014232 67.28836823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba20 -00014233 67.28839874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba30 -00014234 67.28839874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba30 -00014235 67.28842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba40 -00014236 67.28842926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba40 -00014237 67.28844452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba50 -00014238 67.28845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba50 -00014239 67.28848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba60 -00014240 67.28848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba60 -00014241 67.28850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba70 -00014242 67.28850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba70 -00014243 67.28852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba80 -00014244 67.28853607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba80 -00014245 67.28856659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba90 -00014246 67.28856659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba90 -00014247 67.28858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa0 -00014248 67.28859711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa0 -00014249 67.28862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab0 -00014250 67.28862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab0 -00014251 67.28865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac0 -00014252 67.28865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac0 -00014253 67.28868103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad0 -00014254 67.28868103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad0 -00014255 67.28870392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae0 -00014256 67.28871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae0 -00014257 67.28872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf0 -00014258 67.28873444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baf0 -00014259 67.28876495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb00 -00014260 67.28876495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb00 -00014261 67.28878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb10 -00014262 67.28878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb10 -00014263 67.28881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb20 -00014264 67.28881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb20 -00014265 67.28884125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb30 -00014266 67.28884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb30 -00014267 67.28887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb40 -00014268 67.28887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb40 -00014269 67.28890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb50 -00014270 67.28890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb50 -00014271 67.28892517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb60 -00014272 67.28893280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb60 -00014273 67.28896332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb70 -00014274 67.28896332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb70 -00014275 67.28898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb80 -00014276 67.28899384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb80 -00014277 67.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb90 -00014278 67.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb90 -00014279 67.28903961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bba0 -00014280 67.28904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bba0 -00014281 67.28907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -00014282 67.28908539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -00014283 67.28910065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -00014284 67.28910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -00014285 67.28913116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -00014286 67.28913116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -00014287 67.28916168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -00014288 67.28916168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -00014289 67.28918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -00014290 67.28919220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -00014291 67.28920746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -00014292 67.28921509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -00014293 67.28923798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -00014294 67.28923798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -00014295 67.28926849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -00014296 67.28926849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -00014297 67.28929138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -00014298 67.28929138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -00014299 67.28932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -00014300 67.28932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -00014301 67.28935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -00014302 67.28935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -00014303 67.28937531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -00014304 67.28937531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -00014305 67.28939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -00014306 67.28939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -00014307 67.28942871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -00014308 67.28943634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -00014309 67.28945160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -00014310 67.28945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -00014311 67.28948212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -00014312 67.28948212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -00014313 67.28951263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -00014314 67.28951263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -00014315 67.28953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -00014316 67.28954315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -00014317 67.28956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -00014318 67.28957367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -00014319 67.28959656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -00014320 67.28959656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -00014321 67.28962708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -00014322 67.28963470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -00014323 67.28965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -00014324 67.28965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -00014325 67.28968048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd10 -00014326 67.28968048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd10 -00014327 67.28971100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd20 -00014328 67.28971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd20 -00014329 67.28974152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd30 -00014330 67.28974152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd30 -00014331 67.28977203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd40 -00014332 67.28977203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd40 -00014333 67.28979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd50 -00014334 67.28979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd50 -00014335 67.28982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd60 -00014336 67.28983307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd60 -00014337 67.28985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd70 -00014338 67.28985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd70 -00014339 67.28987885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd80 -00014340 67.28988647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd80 -00014341 67.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd90 -00014342 67.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd90 -00014343 67.28993988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bda0 -00014344 67.28994751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bda0 -00014345 67.28997040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdb0 -00014346 67.28997040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdb0 -00014347 67.28999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdc0 -00014348 67.29000092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdc0 -00014349 67.29003143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdd0 -00014350 67.29003143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdd0 -00014351 67.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bde0 -00014352 67.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bde0 -00014353 67.29008484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdf0 -00014354 67.29008484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bdf0 -00014355 67.29011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be00 -00014356 67.29011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be00 -00014357 67.29013824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be10 -00014358 67.29014587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be10 -00014359 67.29016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be20 -00014360 67.29016876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be20 -00014361 67.29019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be30 -00014362 67.29019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be30 -00014363 67.29022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be40 -00014364 67.29022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be40 -00014365 67.29024506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be50 -00014366 67.29025269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be50 -00014367 67.29027557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be60 -00014368 67.29027557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be60 -00014369 67.29030609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be70 -00014370 67.29030609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be70 -00014371 67.29032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be80 -00014372 67.29032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be80 -00014373 67.29035187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be90 -00014374 67.29035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be90 -00014375 67.29039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -00014376 67.29039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea0 -00014377 67.29041290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -00014378 67.29041290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb0 -00014379 67.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -00014380 67.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec0 -00014381 67.29046631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -00014382 67.29047394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed0 -00014383 67.29049683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -00014384 67.29049683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee0 -00014385 67.29051971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -00014386 67.29051971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef0 -00014387 67.29055023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -00014388 67.29055023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf00 -00014389 67.29058075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -00014390 67.29058075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf10 -00014391 67.29060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -00014392 67.29061127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf20 -00014393 67.29063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -00014394 67.29063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf30 -00014395 67.29066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -00014396 67.29067230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf40 -00014397 67.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -00014398 67.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf50 -00014399 67.29071808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -00014400 67.29071808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf60 -00014401 67.29074860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -00014402 67.29074860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf70 -00014403 67.29077911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -00014404 67.29077911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf80 -00014405 67.29080200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -00014406 67.29080963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf90 -00014407 67.29083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -00014408 67.29083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa0 -00014409 67.29086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -00014410 67.29087067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb0 -00014411 67.29089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -00014412 67.29089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc0 -00014413 67.29091644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -00014414 67.29092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd0 -00014415 67.29094696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -00014416 67.29094696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe0 -00014417 67.29097748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -00014418 67.29097748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff0 -00014419 67.29100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c000 -00014420 67.29100800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c000 -00014421 67.29103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c010 -00014422 67.29103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c010 -00014423 67.29106140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c020 -00014424 67.29106903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c020 -00014425 67.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c030 -00014426 67.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c030 -00014427 67.29111481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c040 -00014428 67.29112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c040 -00014429 67.29114532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c050 -00014430 67.29114532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c050 -00014431 67.29117584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c060 -00014432 67.29118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c060 -00014433 67.29120636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c070 -00014434 67.29120636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c070 -00014435 67.29122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c080 -00014436 67.29122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c080 -00014437 67.29125977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c090 -00014438 67.29126740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c090 -00014439 67.29129028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a0 -00014440 67.29129028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a0 -00014441 67.29131317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b0 -00014442 67.29132080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b0 -00014443 67.29134369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c0 -00014444 67.29134369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c0 -00014445 67.29137421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d0 -00014446 67.29138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d0 -00014447 67.29140472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e0 -00014448 67.29140472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e0 -00014449 67.29142761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f0 -00014450 67.29142761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f0 -00014451 67.29146576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c100 -00014452 67.29146576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c100 -00014453 67.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c110 -00014454 67.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c110 -00014455 67.29151154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c120 -00014456 67.29151917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c120 -00014457 67.29154205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c130 -00014458 67.29154205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c130 -00014459 67.29157257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c140 -00014460 67.29158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c140 -00014461 67.29160309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c150 -00014462 67.29160309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c150 -00014463 67.29162598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c160 -00014464 67.29163361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c160 -00014465 67.29166412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c170 -00014466 67.29166412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c170 -00014467 67.29168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c180 -00014468 67.29169464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c180 -00014469 67.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c190 -00014470 67.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c190 -00014471 67.29174042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1a0 -00014472 67.29174805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1a0 -00014473 67.29177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b0 -00014474 67.29177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b0 -00014475 67.29180145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c0 -00014476 67.29180145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c0 -00014477 67.29182434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d0 -00014478 67.29183197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d0 -00014479 67.29186249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e0 -00014480 67.29186249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e0 -00014481 67.29188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f0 -00014482 67.29189301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f0 -00014483 67.29191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c200 -00014484 67.29191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c200 -00014485 67.29193878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c210 -00014486 67.29194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c210 -00014487 67.29197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c220 -00014488 67.29197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c220 -00014489 67.29199982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c230 -00014490 67.29200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c230 -00014491 67.29203033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c240 -00014492 67.29203033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c240 -00014493 67.29206085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c250 -00014494 67.29206085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c250 -00014495 67.29208374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c260 -00014496 67.29209137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c260 -00014497 67.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c270 -00014498 67.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c270 -00014499 67.29213715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c280 -00014500 67.29214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c280 -00014501 67.29217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c290 -00014502 67.29217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c290 -00014503 67.29219818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a0 -00014504 67.29220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a0 -00014505 67.29222870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b0 -00014506 67.29222870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b0 -00014507 67.29225922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c0 -00014508 67.29225922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c0 -00014509 67.29228973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d0 -00014510 67.29228973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d0 -00014511 67.29231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e0 -00014512 67.29231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e0 -00014513 67.29233551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f0 -00014514 67.29234314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f0 -00014515 67.29237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c300 -00014516 67.29237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c300 -00014517 67.29239655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c310 -00014518 67.29240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c310 -00014519 67.29242706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c320 -00014520 67.29242706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c320 -00014521 67.29245758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c330 -00014522 67.29245758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c330 -00014523 67.29248810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c340 -00014524 67.29248810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c340 -00014525 67.29251099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c350 -00014526 67.29251862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c350 -00014527 67.29254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c360 -00014528 67.29254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c360 -00014529 67.29257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c370 -00014530 67.29257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c370 -00014531 67.29259491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c380 -00014532 67.29260254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c380 -00014533 67.29262543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c390 -00014534 67.29262543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c390 -00014535 67.29265594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a0 -00014536 67.29265594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a0 -00014537 67.29268646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b0 -00014538 67.29268646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b0 -00014539 67.29270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c0 -00014540 67.29271698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c0 -00014541 67.29273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d0 -00014542 67.29273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d0 -00014543 67.29277039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e0 -00014544 67.29277802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e0 -00014545 67.29280090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f0 -00014546 67.29280090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f0 -00014547 67.29282379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c400 -00014548 67.29283142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c400 -00014549 67.29285431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c410 -00014550 67.29285431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c410 -00014551 67.29288483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c420 -00014552 67.29288483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c420 -00014553 67.29290771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c430 -00014554 67.29291534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c430 -00014555 67.29293823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c440 -00014556 67.29293823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c440 -00014557 67.29296875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c450 -00014558 67.29297638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c450 -00014559 67.29299927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c460 -00014560 67.29299927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c460 -00014561 67.29302216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c470 -00014562 67.29302979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c470 -00014563 67.29305267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c480 -00014564 67.29305267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c480 -00014565 67.29308319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c490 -00014566 67.29308319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c490 -00014567 67.29311371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a0 -00014568 67.29311371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a0 -00014569 67.29313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -00014570 67.29313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -00014571 67.29316711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -00014572 67.29317474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -00014573 67.29319763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -00014574 67.29319763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -00014575 67.29322052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -00014576 67.29322052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -00014577 67.29325104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -00014578 67.29325104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -00014579 67.29327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -00014580 67.29328156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -00014581 67.29330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -00014582 67.29330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -00014583 67.29333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -00014584 67.29333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -00014585 67.29335785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -00014586 67.29336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -00014587 67.29338074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -00014588 67.29338837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -00014589 67.29341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -00014590 67.29341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -00014591 67.29344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -00014592 67.29344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -00014593 67.29346466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -00014594 67.29346466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -00014595 67.29348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -00014596 67.29349518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -00014597 67.29352570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -00014598 67.29353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -00014599 67.29355621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -00014600 67.29355621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -00014601 67.29357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -00014602 67.29358673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -00014603 67.29360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -00014604 67.29360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -00014605 67.29364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -00014606 67.29364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -00014607 67.29366302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -00014608 67.29367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -00014609 67.29368591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -00014610 67.29369354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -00014611 67.29372406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -00014612 67.29372406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -00014613 67.29374695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c610 -00014614 67.29374695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c610 -00014615 67.29376984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c620 -00014616 67.29377747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c620 -00014617 67.29380035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c630 -00014618 67.29380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c630 -00014619 67.29383087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c640 -00014620 67.29383087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c640 -00014621 67.29385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c650 -00014622 67.29385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c650 -00014623 67.29388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c660 -00014624 67.29388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c660 -00014625 67.29390717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c670 -00014626 67.29391479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c670 -00014627 67.29393768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c680 -00014628 67.29393768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c680 -00014629 67.29396820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c690 -00014630 67.29396820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c690 -00014631 67.29399109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a0 -00014632 67.29399872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a0 -00014633 67.29401398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b0 -00014634 67.29402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b0 -00014635 67.29404449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c0 -00014636 67.29404449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c0 -00014637 67.29407501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d0 -00014638 67.29407501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d0 -00014639 67.29409790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e0 -00014640 67.29410553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e0 -00014641 67.29412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f0 -00014642 67.29412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f0 -00014643 67.29415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c700 -00014644 67.29415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c700 -00014645 67.29418182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c710 -00014646 67.29418182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c710 -00014647 67.29420471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c720 -00014648 67.29420471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c720 -00014649 67.29423523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c730 -00014650 67.29424286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c730 -00014651 67.29426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c740 -00014652 67.29426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c740 -00014653 67.29428864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c750 -00014654 67.29428864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c750 -00014655 67.29431915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c760 -00014656 67.29431915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c760 -00014657 67.29434204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c770 -00014658 67.29434967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c770 -00014659 67.29437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c780 -00014660 67.29437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c780 -00014661 67.29440308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c790 -00014662 67.29440308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c790 -00014663 67.29442596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a0 -00014664 67.29442596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a0 -00014665 67.29444885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b0 -00014666 67.29445648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b0 -00014667 67.29447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c0 -00014668 67.29448700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c0 -00014669 67.29450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d0 -00014670 67.29450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d0 -00014671 67.29453278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e0 -00014672 67.29453278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e0 -00014673 67.29456329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f0 -00014674 67.29456329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f0 -00014675 67.29459381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c800 -00014676 67.29460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c800 -00014677 67.29462433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c810 -00014678 67.29463196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c810 -00014679 67.29464722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c820 -00014680 67.29465485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c820 -00014681 67.29468536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c830 -00014682 67.29468536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c830 -00014683 67.29470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c840 -00014684 67.29470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c840 -00014685 67.29473114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c850 -00014686 67.29473114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c850 -00014687 67.29476166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c860 -00014688 67.29476166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c860 -00014689 67.29479218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c870 -00014690 67.29479980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c870 -00014691 67.29482269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c880 -00014692 67.29482269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c880 -00014693 67.29484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c890 -00014694 67.29484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c890 -00014695 67.29487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a0 -00014696 67.29488373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a0 -00014697 67.29490662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b0 -00014698 67.29490662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b0 -00014699 67.29492950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c0 -00014700 67.29493713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c0 -00014701 67.29496002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d0 -00014702 67.29496002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d0 -00014703 67.29499054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e0 -00014704 67.29499817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e0 -00014705 67.29502106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f0 -00014706 67.29502106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f0 -00014707 67.29504395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c900 -00014708 67.29505157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c900 -00014709 67.29508209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c910 -00014710 67.29508209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c910 -00014711 67.29510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c920 -00014712 67.29510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c920 -00014713 67.29512787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c930 -00014714 67.29513550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c930 -00014715 67.29515839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -00014716 67.29515839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -00014717 67.29518890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -00014718 67.29518890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -00014719 67.29521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -00014720 67.29521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -00014721 67.29523468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -00014722 67.29524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -00014723 67.29526520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -00014724 67.29527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -00014725 67.29529572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -00014726 67.29529572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -00014727 67.29531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -00014728 67.29531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -00014729 67.29534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -00014730 67.29535675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -00014731 67.29537201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -00014732 67.29537964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -00014733 67.29540253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -00014734 67.29540253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -00014735 67.29543304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -00014736 67.29543304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -00014737 67.29545593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -00014738 67.29546356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -00014739 67.29547882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -00014740 67.29548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -00014741 67.29551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -00014742 67.29551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -00014743 67.29553986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -00014744 67.29553986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -00014745 67.29556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -00014746 67.29557037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -00014747 67.29559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -00014748 67.29559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -00014749 67.29562378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -00014750 67.29562378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -00014751 67.29564667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -00014752 67.29564667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -00014753 67.29567719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -00014754 67.29567719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -00014755 67.29570770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -00014756 67.29570770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -00014757 67.29573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca90 -00014758 67.29573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca90 -00014759 67.29575348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa0 -00014760 67.29575348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa0 -00014761 67.29578400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab0 -00014762 67.29579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab0 -00014763 67.29580688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac0 -00014764 67.29581451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac0 -00014765 67.29583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad0 -00014766 67.29583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad0 -00014767 67.29586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae0 -00014768 67.29586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae0 -00014769 67.29589081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf0 -00014770 67.29589844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf0 -00014771 67.29591370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb00 -00014772 67.29592133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb00 -00014773 67.29595184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb10 -00014774 67.29595184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb10 -00014775 67.29597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb20 -00014776 67.29597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb20 -00014777 67.29599762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb30 -00014778 67.29599762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb30 -00014779 67.29602814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb40 -00014780 67.29603577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb40 -00014781 67.29605865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb50 -00014782 67.29605865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb50 -00014783 67.29608154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb60 -00014784 67.29608154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb60 -00014785 67.29611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb70 -00014786 67.29611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb70 -00014787 67.29613495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb80 -00014788 67.29614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb80 -00014789 67.29616547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb90 -00014790 67.29616547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb90 -00014791 67.29618835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba0 -00014792 67.29618835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba0 -00014793 67.29621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb0 -00014794 67.29621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb0 -00014795 67.29624176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc0 -00014796 67.29624939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc0 -00014797 67.29627228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd0 -00014798 67.29627228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd0 -00014799 67.29630280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe0 -00014800 67.29630280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe0 -00014801 67.29632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf0 -00014802 67.29632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf0 -00014803 67.29634857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc00 -00014804 67.29635620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc00 -00014805 67.29638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc10 -00014806 67.29638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc10 -00014807 67.29640961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc20 -00014808 67.29640961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc20 -00014809 67.29643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc30 -00014810 67.29643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc30 -00014811 67.29646301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc40 -00014812 67.29647064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc40 -00014813 67.29648590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc50 -00014814 67.29649353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc50 -00014815 67.29651642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc60 -00014816 67.29651642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc60 -00014817 67.29654694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc70 -00014818 67.29654694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc70 -00014819 67.29657745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc80 -00014820 67.29657745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc80 -00014821 67.29660034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc90 -00014822 67.29660797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc90 -00014823 67.29663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca0 -00014824 67.29663849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca0 -00014825 67.29666901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb0 -00014826 67.29666901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb0 -00014827 67.29669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc0 -00014828 67.29669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc0 -00014829 67.29671478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd0 -00014830 67.29672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd0 -00014831 67.29674530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce0 -00014832 67.29674530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce0 -00014833 67.29677582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf0 -00014834 67.29677582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf0 -00014835 67.29679871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd00 -00014836 67.29679871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd00 -00014837 67.29682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd10 -00014838 67.29682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd10 -00014839 67.29685211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd20 -00014840 67.29685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd20 -00014841 67.29688263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd30 -00014842 67.29688263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd30 -00014843 67.29690552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd40 -00014844 67.29690552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd40 -00014845 67.29694366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd50 -00014846 67.29694366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd50 -00014847 67.29696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd60 -00014848 67.29697418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd60 -00014849 67.29699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd70 -00014850 67.29699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd70 -00014851 67.29702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd80 -00014852 67.29702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd80 -00014853 67.29705048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd90 -00014854 67.29705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd90 -00014855 67.29708099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda0 -00014856 67.29708099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda0 -00014857 67.29710388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb0 -00014858 67.29711151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb0 -00014859 67.29714203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc0 -00014860 67.29714203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc0 -00014861 67.29717255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd0 -00014862 67.29717255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd0 -00014863 67.29719543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde0 -00014864 67.29719543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde0 -00014865 67.29722595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf0 -00014866 67.29722595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf0 -00014867 67.29724884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce00 -00014868 67.29725647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce00 -00014869 67.29727936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce10 -00014870 67.29727936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce10 -00014871 67.29730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce20 -00014872 67.29730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce20 -00014873 67.29733276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce30 -00014874 67.29733276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce30 -00014875 67.29735565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce40 -00014876 67.29736328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce40 -00014877 67.29738617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce50 -00014878 67.29738617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce50 -00014879 67.29741669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce60 -00014880 67.29741669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce60 -00014881 67.29743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce70 -00014882 67.29743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce70 -00014883 67.29746246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce80 -00014884 67.29747009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce80 -00014885 67.29749298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce90 -00014886 67.29750061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce90 -00014887 67.29752350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea0 -00014888 67.29752350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea0 -00014889 67.29754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb0 -00014890 67.29754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb0 -00014891 67.29757690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec0 -00014892 67.29758453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec0 -00014893 67.29759979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced0 -00014894 67.29760742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced0 -00014895 67.29763031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee0 -00014896 67.29763031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee0 -00014897 67.29766083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef0 -00014898 67.29766083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef0 -00014899 67.29768372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf00 -00014900 67.29769135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf00 -00014901 67.29770660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf10 -00014902 67.29771423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf10 -00014903 67.29773712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf20 -00014904 67.29773712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf20 -00014905 67.29776764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf30 -00014906 67.29776764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf30 -00014907 67.29779053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf40 -00014908 67.29779053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf40 -00014909 67.29782104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf50 -00014910 67.29782104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf50 -00014911 67.29785156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf60 -00014912 67.29785156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf60 -00014913 67.29787445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf70 -00014914 67.29787445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf70 -00014915 67.29789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf80 -00014916 67.29789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf80 -00014917 67.29792786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf90 -00014918 67.29793549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf90 -00014919 67.29795837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa0 -00014920 67.29795837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa0 -00014921 67.29798126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb0 -00014922 67.29798126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb0 -00014923 67.29801178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc0 -00014924 67.29801178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc0 -00014925 67.29803467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfd0 -00014926 67.29804230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfd0 -00014927 67.29805756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfe0 -00014928 67.29806519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfe0 -00014929 67.29809570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff0 -00014930 67.29809570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff0 -00014931 67.29811859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00014932 67.29811859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00014933 67.29814148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00014934 67.29814911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00014935 67.29817963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00014936 67.29817963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00014937 67.29820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00014938 67.29820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00014939 67.29822540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00014940 67.29822540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00014941 67.29825592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00014942 67.29825592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00014943 67.29827881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00014944 67.29828644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00014945 67.29830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00014946 67.29830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00014947 67.29833221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00014948 67.29833221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00014949 67.29836273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00014950 67.29837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00014951 67.29838562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00014952 67.29839325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00014953 67.29841614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b0 -00014954 67.29841614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b0 -00014955 67.29844666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c0 -00014956 67.29844666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c0 -00014957 67.29846954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d0 -00014958 67.29847717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d0 -00014959 67.29849243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e0 -00014960 67.29850006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e0 -00014961 67.29853058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f0 -00014962 67.29853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f0 -00014963 67.29856110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d100 -00014964 67.29856110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d100 -00014965 67.29858398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d110 -00014966 67.29859161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d110 -00014967 67.29861450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d120 -00014968 67.29861450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d120 -00014969 67.29864502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d130 -00014970 67.29865265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d130 -00014971 67.29867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d140 -00014972 67.29867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d140 -00014973 67.29869843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d150 -00014974 67.29870605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d150 -00014975 67.29873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d160 -00014976 67.29873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d160 -00014977 67.29875946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d170 -00014978 67.29876709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d170 -00014979 67.29878235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d180 -00014980 67.29878998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d180 -00014981 67.29881287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d190 -00014982 67.29882050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d190 -00014983 67.29885101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a0 -00014984 67.29885101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a0 -00014985 67.29887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b0 -00014986 67.29888153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b0 -00014987 67.29890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c0 -00014988 67.29890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c0 -00014989 67.29893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d0 -00014990 67.29893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d0 -00014991 67.29895782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e0 -00014992 67.29896545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e0 -00014993 67.29898834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f0 -00014994 67.29898834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f0 -00014995 67.29901123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d200 -00014996 67.29901886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d200 -00014997 67.29904938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d210 -00014998 67.29904938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d210 -00014999 67.29907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d220 -00015000 67.29907990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d220 -00015001 67.29910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d230 -00015002 67.29910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d230 -00015003 67.29913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d240 -00015004 67.29913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d240 -00015005 67.29916382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d250 -00015006 67.29916382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d250 -00015007 67.29918671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d260 -00015008 67.29918671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d260 -00015009 67.29920959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d270 -00015010 67.29921722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d270 -00015011 67.29924774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d280 -00015012 67.29924774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d280 -00015013 67.29927063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d290 -00015014 67.29927826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d290 -00015015 67.29930115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a0 -00015016 67.29930115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a0 -00015017 67.29933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b0 -00015018 67.29933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b0 -00015019 67.29936218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c0 -00015020 67.29936218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c0 -00015021 67.29938507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d0 -00015022 67.29938507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d0 -00015023 67.29941559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e0 -00015024 67.29941559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e0 -00015025 67.29944611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f0 -00015026 67.29944611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f0 -00015027 67.29946899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d300 -00015028 67.29947662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d300 -00015029 67.29949951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d310 -00015030 67.29949951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d310 -00015031 67.29953003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d320 -00015032 67.29953003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d320 -00015033 67.29956055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d330 -00015034 67.29956818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d330 -00015035 67.29959106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d340 -00015036 67.29959106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d340 -00015037 67.29961395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d350 -00015038 67.29962158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d350 -00015039 67.29964447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d360 -00015040 67.29964447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d360 -00015041 67.29967499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d370 -00015042 67.29967499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d370 -00015043 67.29969788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -00015044 67.29970551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -00015045 67.29972839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -00015046 67.29972839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -00015047 67.29975891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -00015048 67.29976654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -00015049 67.29978943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -00015050 67.29978943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -00015051 67.29981232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -00015052 67.29981995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -00015053 67.29984283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -00015054 67.29984283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -00015055 67.29987335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -00015056 67.29988098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -00015057 67.29990387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -00015058 67.29990387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -00015059 67.29992676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -00015060 67.29993439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -00015061 67.29996490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -00015062 67.29996490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -00015063 67.29998779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -00015064 67.29998779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -00015065 67.30001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -00015066 67.30001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -00015067 67.30004120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -00015068 67.30004120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -00015069 67.30007172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -00015070 67.30007935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -00015071 67.30010223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -00015072 67.30010223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -00015073 67.30012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -00015074 67.30013275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -00015075 67.30016327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -00015076 67.30016327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -00015077 67.30018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -00015078 67.30019379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -00015079 67.30021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -00015080 67.30021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -00015081 67.30023956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -00015082 67.30023956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -00015083 67.30027008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -00015084 67.30027008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -00015085 67.30029297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -00015086 67.30030060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -00015087 67.30032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e0 -00015088 67.30032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4e0 -00015089 67.30035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f0 -00015090 67.30035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4f0 -00015091 67.30037689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -00015092 67.30037689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d500 -00015093 67.30039978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -00015094 67.30040741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d510 -00015095 67.30043030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -00015096 67.30043793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d520 -00015097 67.30046082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -00015098 67.30046082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d530 -00015099 67.30048370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -00015100 67.30048370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d540 -00015101 67.30051422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -00015102 67.30052185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d550 -00015103 67.30054474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -00015104 67.30054474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d560 -00015105 67.30056763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -00015106 67.30056763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d570 -00015107 67.30059814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -00015108 67.30059814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d580 -00015109 67.30062866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -00015110 67.30062866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d590 -00015111 67.30065155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -00015112 67.30065918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a0 -00015113 67.30068207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -00015114 67.30068207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b0 -00015115 67.30071259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -00015116 67.30072021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c0 -00015117 67.30074310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -00015118 67.30075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d0 -00015119 67.30077362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -00015120 67.30077362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e0 -00015121 67.30079651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -00015122 67.30080414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f0 -00015123 67.30083466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -00015124 67.30083466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d600 -00015125 67.30085754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -00015126 67.30086517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d610 -00015127 67.30088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -00015128 67.30088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d620 -00015129 67.30091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -00015130 67.30091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d630 -00015131 67.30094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -00015132 67.30094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d640 -00015133 67.30097198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -00015134 67.30097961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d650 -00015135 67.30100250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d660 -00015136 67.30100250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d660 -00015137 67.30103302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d670 -00015138 67.30103302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d670 -00015139 67.30106354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d680 -00015140 67.30106354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d680 -00015141 67.30108643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d690 -00015142 67.30109406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d690 -00015143 67.30111694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a0 -00015144 67.30111694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a0 -00015145 67.30114746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b0 -00015146 67.30114746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b0 -00015147 67.30117035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c0 -00015148 67.30117035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c0 -00015149 67.30119324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -00015150 67.30120087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -00015151 67.30123138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -00015152 67.30123138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -00015153 67.30125427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -00015154 67.30125427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -00015155 67.30127716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -00015156 67.30127716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -00015157 67.30130768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -00015158 67.30131531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -00015159 67.30133820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -00015160 67.30133820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -00015161 67.30136108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -00015162 67.30136108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -00015163 67.30139160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -00015164 67.30139160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -00015165 67.30141449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -00015166 67.30142212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -00015167 67.30143738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -00015168 67.30144501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -00015169 67.30147552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -00015170 67.30147552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -00015171 67.30149841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -00015172 67.30149841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -00015173 67.30152130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -00015174 67.30152893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -00015175 67.30155182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -00015176 67.30155182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -00015177 67.30158234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -00015178 67.30158234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -00015179 67.30160522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -00015180 67.30160522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -00015181 67.30163574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -00015182 67.30163574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -00015183 67.30166626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -00015184 67.30166626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -00015185 67.30168915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -00015186 67.30168915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -00015187 67.30171204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -00015188 67.30171204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -00015189 67.30174255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -00015190 67.30175018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -00015191 67.30176544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -00015192 67.30177307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -00015193 67.30179596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d830 -00015194 67.30179596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d830 -00015195 67.30182648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d840 -00015196 67.30182648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d840 -00015197 67.30184937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d850 -00015198 67.30185699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d850 -00015199 67.30187225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d860 -00015200 67.30187988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d860 -00015201 67.30191040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d870 -00015202 67.30191040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d870 -00015203 67.30193329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d880 -00015204 67.30193329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d880 -00015205 67.30195618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d890 -00015206 67.30196381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d890 -00015207 67.30198669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a0 -00015208 67.30198669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a0 -00015209 67.30201721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b0 -00015210 67.30201721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b0 -00015211 67.30204010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c0 -00015212 67.30204010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c0 -00015213 67.30207062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d0 -00015214 67.30207062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d0 -00015215 67.30209351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e0 -00015216 67.30210114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e0 -00015217 67.30212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f0 -00015218 67.30212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f0 -00015219 67.30214691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d900 -00015220 67.30214691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d900 -00015221 67.30217743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d910 -00015222 67.30217743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d910 -00015223 67.30220032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d920 -00015224 67.30220795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d920 -00015225 67.30223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d930 -00015226 67.30223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d930 -00015227 67.30226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d940 -00015228 67.30226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d940 -00015229 67.30228424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d950 -00015230 67.30228424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d950 -00015231 67.30230713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d960 -00015232 67.30231476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d960 -00015233 67.30233765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d970 -00015234 67.30234528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d970 -00015235 67.30236816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d980 -00015236 67.30236816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d980 -00015237 67.30239105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d990 -00015238 67.30239105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d990 -00015239 67.30242157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a0 -00015240 67.30242920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a0 -00015241 67.30244446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b0 -00015242 67.30245209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b0 -00015243 67.30247498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c0 -00015244 67.30247498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c0 -00015245 67.30250549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d0 -00015246 67.30250549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d0 -00015247 67.30252838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e0 -00015248 67.30253601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e0 -00015249 67.30255890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f0 -00015250 67.30256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f0 -00015251 67.30258942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da00 -00015252 67.30258942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da00 -00015253 67.30261993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da10 -00015254 67.30262756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da10 -00015255 67.30265045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da20 -00015256 67.30265808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da20 -00015257 67.30268097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -00015258 67.30268097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -00015259 67.30270386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -00015260 67.30270386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -00015261 67.30273438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -00015262 67.30274200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -00015263 67.30276489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -00015264 67.30276489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -00015265 67.30278778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -00015266 67.30279541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -00015267 67.30282593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -00015268 67.30282593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -00015269 67.30284882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -00015270 67.30285645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -00015271 67.30287933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -00015272 67.30287933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -00015273 67.30290222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -00015274 67.30290222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -00015275 67.30293274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -00015276 67.30294037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -00015277 67.30296326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -00015278 67.30296326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -00015279 67.30298615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -00015280 67.30299377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -00015281 67.30302429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -00015282 67.30302429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -00015283 67.30304718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -00015284 67.30305481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -00015285 67.30307770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -00015286 67.30307770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -00015287 67.30310059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -00015288 67.30310822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -00015289 67.30313873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -00015290 67.30313873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -00015291 67.30316162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -00015292 67.30316162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -00015293 67.30318451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -00015294 67.30319214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -00015295 67.30322266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -00015296 67.30322266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -00015297 67.30324554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -00015298 67.30325317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -00015299 67.30327606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -00015300 67.30327606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -00015301 67.30329895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db90 -00015302 67.30330658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db90 -00015303 67.30333710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba0 -00015304 67.30333710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dba0 -00015305 67.30335999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb0 -00015306 67.30336761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbb0 -00015307 67.30339050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc0 -00015308 67.30339813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbc0 -00015309 67.30342102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd0 -00015310 67.30342102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd0 -00015311 67.30345154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe0 -00015312 67.30345154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe0 -00015313 67.30348206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf0 -00015314 67.30348206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf0 -00015315 67.30350494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc00 -00015316 67.30350494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc00 -00015317 67.30353546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc10 -00015318 67.30353546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc10 -00015319 67.30356598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc20 -00015320 67.30356598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc20 -00015321 67.30358887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc30 -00015322 67.30359650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc30 -00015323 67.30361938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc40 -00015324 67.30362701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc40 -00015325 67.30364990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc50 -00015326 67.30365753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc50 -00015327 67.30368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc60 -00015328 67.30368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc60 -00015329 67.30370331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc70 -00015330 67.30370331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc70 -00015331 67.30373383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc80 -00015332 67.30373383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc80 -00015333 67.30376434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc90 -00015334 67.30376434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc90 -00015335 67.30378723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca0 -00015336 67.30378723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca0 -00015337 67.30381775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb0 -00015338 67.30381775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb0 -00015339 67.30384064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc0 -00015340 67.30384827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc0 -00015341 67.30387115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd0 -00015342 67.30387115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd0 -00015343 67.30389404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce0 -00015344 67.30389404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce0 -00015345 67.30393219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf0 -00015346 67.30393219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf0 -00015347 67.30395508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd00 -00015348 67.30396271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd00 -00015349 67.30398560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd10 -00015350 67.30398560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd10 -00015351 67.30401611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd20 -00015352 67.30401611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd20 -00015353 67.30403900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd30 -00015354 67.30404663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd30 -00015355 67.30406952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd40 -00015356 67.30406952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd40 -00015357 67.30409241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd50 -00015358 67.30410004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd50 -00015359 67.30413055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd60 -00015360 67.30413055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd60 -00015361 67.30415344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd70 -00015362 67.30416107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd70 -00015363 67.30418396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd80 -00015364 67.30418396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd80 -00015365 67.30421448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd90 -00015366 67.30421448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd90 -00015367 67.30424500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda0 -00015368 67.30424500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda0 -00015369 67.30426788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb0 -00015370 67.30426788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb0 -00015371 67.30429077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc0 -00015372 67.30429840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc0 -00015373 67.30432892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd0 -00015374 67.30433655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd0 -00015375 67.30435181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde0 -00015376 67.30435944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde0 -00015377 67.30438232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -00015378 67.30438232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -00015379 67.30441284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -00015380 67.30441284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -00015381 67.30443573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -00015382 67.30444336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -00015383 67.30445862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -00015384 67.30446625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -00015385 67.30448914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -00015386 67.30448914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -00015387 67.30451965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -00015388 67.30452728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -00015389 67.30455017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -00015390 67.30455017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -00015391 67.30457306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -00015392 67.30458069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -00015393 67.30461121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -00015394 67.30461121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -00015395 67.30463409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -00015396 67.30464172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -00015397 67.30466461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -00015398 67.30466461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -00015399 67.30468750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -00015400 67.30468750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -00015401 67.30471802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -00015402 67.30472565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -00015403 67.30474091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -00015404 67.30474854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -00015405 67.30477142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -00015406 67.30477142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -00015407 67.30480194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -00015408 67.30480194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -00015409 67.30482483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -00015410 67.30483246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -00015411 67.30484772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -00015412 67.30485535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -00015413 67.30488586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -00015414 67.30488586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -00015415 67.30490875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -00015416 67.30491638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -00015417 67.30493927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -00015418 67.30493927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -00015419 67.30496979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -00015420 67.30496979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -00015421 67.30500031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -00015422 67.30500031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -00015423 67.30502319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -00015424 67.30503082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -00015425 67.30505371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -00015426 67.30505371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -00015427 67.30508423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -00015428 67.30508423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -00015429 67.30510712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -00015430 67.30511475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -00015431 67.30513763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -00015432 67.30513763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -00015433 67.30516815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -00015434 67.30516815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -00015435 67.30519867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -00015436 67.30519867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -00015437 67.30522156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -00015438 67.30522919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -00015439 67.30525208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -00015440 67.30525208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -00015441 67.30528259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dff0 -00015442 67.30528259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dff0 -00015443 67.30530548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e000 -00015444 67.30530548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e000 -00015445 67.30532837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e010 -00015446 67.30533600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e010 -00015447 67.30535889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e020 -00015448 67.30536652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e020 -00015449 67.30538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e030 -00015450 67.30538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e030 -00015451 67.30541229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e040 -00015452 67.30541229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e040 -00015453 67.30544281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e050 -00015454 67.30544281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e050 -00015455 67.30546570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e060 -00015456 67.30547333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e060 -00015457 67.30549622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e070 -00015458 67.30549622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e070 -00015459 67.30552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e080 -00015460 67.30552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e080 -00015461 67.30555725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e090 -00015462 67.30556488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e090 -00015463 67.30558777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a0 -00015464 67.30558777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a0 -00015465 67.30561066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b0 -00015466 67.30561829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b0 -00015467 67.30564117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c0 -00015468 67.30564117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c0 -00015469 67.30567169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d0 -00015470 67.30567169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d0 -00015471 67.30570221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e0 -00015472 67.30570221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e0 -00015473 67.30572510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f0 -00015474 67.30573273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f0 -00015475 67.30576324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e100 -00015476 67.30576324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e100 -00015477 67.30578613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e110 -00015478 67.30578613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e110 -00015479 67.30580902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e120 -00015480 67.30581665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e120 -00015481 67.30583954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e130 -00015482 67.30583954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e130 -00015483 67.30587006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e140 -00015484 67.30587769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e140 -00015485 67.30590057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e150 -00015486 67.30590057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e150 -00015487 67.30592346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e160 -00015488 67.30593109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e160 -00015489 67.30596161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e170 -00015490 67.30596161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e170 -00015491 67.30598450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e180 -00015492 67.30598450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e180 -00015493 67.30600739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e190 -00015494 67.30601501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e190 -00015495 67.30603790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a0 -00015496 67.30603790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a0 -00015497 67.30607605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b0 -00015498 67.30607605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b0 -00015499 67.30609894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c0 -00015500 67.30609894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c0 -00015501 67.30612946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -00015502 67.30612946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -00015503 67.30615997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -00015504 67.30615997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -00015505 67.30619049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -00015506 67.30619049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -00015507 67.30621338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -00015508 67.30622101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -00015509 67.30624390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -00015510 67.30624390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -00015511 67.30627441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -00015512 67.30627441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -00015513 67.30630493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -00015514 67.30630493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -00015515 67.30632782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -00015516 67.30632782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -00015517 67.30635834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -00015518 67.30635834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -00015519 67.30638885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -00015520 67.30638885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -00015521 67.30641174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -00015522 67.30641937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -00015523 67.30644226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e280 -00015524 67.30644226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e280 -00015525 67.30647278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e290 -00015526 67.30648041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e290 -00015527 67.30650330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a0 -00015528 67.30650330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a0 -00015529 67.30652618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b0 -00015530 67.30653381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b0 -00015531 67.30655670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c0 -00015532 67.30655670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c0 -00015533 67.30658722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d0 -00015534 67.30658722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d0 -00015535 67.30661011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e0 -00015536 67.30661774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e0 -00015537 67.30664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f0 -00015538 67.30664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f0 -00015539 67.30667114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e300 -00015540 67.30667877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e300 -00015541 67.30670166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e310 -00015542 67.30670166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e310 -00015543 67.30672455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e320 -00015544 67.30673218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e320 -00015545 67.30675507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e330 -00015546 67.30675507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e330 -00015547 67.30678558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e340 -00015548 67.30678558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e340 -00015549 67.30681610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e350 -00015550 67.30681610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e350 -00015551 67.30683899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e360 -00015552 67.30683899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e360 -00015553 67.30686951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e370 -00015554 67.30687714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e370 -00015555 67.30690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e380 -00015556 67.30690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e380 -00015557 67.30692291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e390 -00015558 67.30693054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e390 -00015559 67.30695343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a0 -00015560 67.30695343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3a0 -00015561 67.30698395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b0 -00015562 67.30699158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3b0 -00015563 67.30701447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c0 -00015564 67.30701447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3c0 -00015565 67.30703735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d0 -00015566 67.30703735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3d0 -00015567 67.30706787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e0 -00015568 67.30707550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3e0 -00015569 67.30709839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f0 -00015570 67.30709839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e3f0 -00015571 67.30712128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e400 -00015572 67.30712891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e400 -00015573 67.30715179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e410 -00015574 67.30715179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e410 -00015575 67.30718231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e420 -00015576 67.30718994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e420 -00015577 67.30721283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e430 -00015578 67.30721283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e430 -00015579 67.30723572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e440 -00015580 67.30723572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e440 -00015581 67.30726624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e450 -00015582 67.30727386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e450 -00015583 67.30729675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e460 -00015584 67.30729675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e460 -00015585 67.30731964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e470 -00015586 67.30732727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e470 -00015587 67.30735016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e480 -00015588 67.30735016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e480 -00015589 67.30738068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e490 -00015590 67.30738831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e490 -00015591 67.30741119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a0 -00015592 67.30741119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a0 -00015593 67.30743408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b0 -00015594 67.30744171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b0 -00015595 67.30747223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c0 -00015596 67.30747223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c0 -00015597 67.30749512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d0 -00015598 67.30750275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d0 -00015599 67.30752563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e0 -00015600 67.30752563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e0 -00015601 67.30755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f0 -00015602 67.30755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f0 -00015603 67.30758667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e500 -00015604 67.30758667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e500 -00015605 67.30761719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e510 -00015606 67.30761719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e510 -00015607 67.30764008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e520 -00015608 67.30764771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e520 -00015609 67.30767059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e530 -00015610 67.30767059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e530 -00015611 67.30770111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e540 -00015612 67.30770111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e540 -00015613 67.30772400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e550 -00015614 67.30772400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e550 -00015615 67.30774689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e560 -00015616 67.30775452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e560 -00015617 67.30777740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e570 -00015618 67.30778503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e570 -00015619 67.30780792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e580 -00015620 67.30780792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e580 -00015621 67.30783081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e590 -00015622 67.30783081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e590 -00015623 67.30786133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a0 -00015624 67.30786896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a0 -00015625 67.30788422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b0 -00015626 67.30789185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b0 -00015627 67.30791473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c0 -00015628 67.30791473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c0 -00015629 67.30794525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d0 -00015630 67.30794525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d0 -00015631 67.30796814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00015632 67.30797577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00015633 67.30799103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00015634 67.30799866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00015635 67.30802917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00015636 67.30802917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00015637 67.30805206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00015638 67.30805969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00015639 67.30808258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00015640 67.30808258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00015641 67.30810547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00015642 67.30811310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00015643 67.30814362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00015644 67.30814362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00015645 67.30816650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00015646 67.30817413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00015647 67.30819702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00015648 67.30819702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00015649 67.30822754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00015650 67.30822754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00015651 67.30825806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00015652 67.30825806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00015653 67.30828094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e690 -00015654 67.30828857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e690 -00015655 67.30831146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a0 -00015656 67.30831146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a0 -00015657 67.30834198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b0 -00015658 67.30834198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b0 -00015659 67.30837250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c0 -00015660 67.30837250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c0 -00015661 67.30839539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d0 -00015662 67.30839539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d0 -00015663 67.30842590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e0 -00015664 67.30842590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e0 -00015665 67.30844879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f0 -00015666 67.30845642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f0 -00015667 67.30847931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e700 -00015668 67.30847931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e700 -00015669 67.30850220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e710 -00015670 67.30850220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e710 -00015671 67.30854034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e720 -00015672 67.30854034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e720 -00015673 67.30856323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e730 -00015674 67.30857086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e730 -00015675 67.30859375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e740 -00015676 67.30859375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e740 -00015677 67.30862427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e750 -00015678 67.30862427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e750 -00015679 67.30865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e760 -00015680 67.30865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e760 -00015681 67.30867767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e770 -00015682 67.30867767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e770 -00015683 67.30870056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e780 -00015684 67.30870056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e780 -00015685 67.30873108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e790 -00015686 67.30873871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e790 -00015687 67.30876160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a0 -00015688 67.30876160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a0 -00015689 67.30878448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b0 -00015690 67.30879211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b0 -00015691 67.30882263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c0 -00015692 67.30882263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c0 -00015693 67.30884552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d0 -00015694 67.30885315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d0 -00015695 67.30887604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e0 -00015696 67.30887604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e0 -00015697 67.30889893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f0 -00015698 67.30889893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f0 -00015699 67.30892944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e800 -00015700 67.30893707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e800 -00015701 67.30895996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e810 -00015702 67.30895996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e810 -00015703 67.30898285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e820 -00015704 67.30899048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e820 -00015705 67.30902100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e830 -00015706 67.30902100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e830 -00015707 67.30904388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e840 -00015708 67.30905151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e840 -00015709 67.30907440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -00015710 67.30907440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -00015711 67.30909729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -00015712 67.30909729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -00015713 67.30912781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -00015714 67.30913544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -00015715 67.30915833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -00015716 67.30915833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -00015717 67.30918121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -00015718 67.30918884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -00015719 67.30921936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -00015720 67.30921936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -00015721 67.30924225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -00015722 67.30924988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -00015723 67.30927277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -00015724 67.30927277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -00015725 67.30929565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -00015726 67.30929565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -00015727 67.30932617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -00015728 67.30933380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -00015729 67.30934906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -00015730 67.30935669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -00015731 67.30937958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -00015732 67.30937958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -00015733 67.30941010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -00015734 67.30941010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -00015735 67.30943298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -00015736 67.30944061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -00015737 67.30945587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -00015738 67.30946350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -00015739 67.30949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -00015740 67.30949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -00015741 67.30952454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -00015742 67.30952454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -00015743 67.30954742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -00015744 67.30954742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -00015745 67.30957794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -00015746 67.30957794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -00015747 67.30960846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -00015748 67.30960846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -00015749 67.30963135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -00015750 67.30963898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -00015751 67.30966187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -00015752 67.30966949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -00015753 67.30969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9b0 -00015754 67.30969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9b0 -00015755 67.30972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c0 -00015756 67.30972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c0 -00015757 67.30974579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d0 -00015758 67.30974579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d0 -00015759 67.30977631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e0 -00015760 67.30977631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e0 -00015761 67.30979919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f0 -00015762 67.30980682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f0 -00015763 67.30982971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea00 -00015764 67.30982971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea00 -00015765 67.30985260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea10 -00015766 67.30985260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea10 -00015767 67.30988312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea20 -00015768 67.30989075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea20 -00015769 67.30990601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea30 -00015770 67.30991364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea30 -00015771 67.30993652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea40 -00015772 67.30993652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea40 -00015773 67.30996704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea50 -00015774 67.30996704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea50 -00015775 67.30998993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea60 -00015776 67.30998993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea60 -00015777 67.31001282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea70 -00015778 67.31002045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea70 -00015779 67.31004333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea80 -00015780 67.31005096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea80 -00015781 67.31007385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea90 -00015782 67.31007385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea90 -00015783 67.31009674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa0 -00015784 67.31009674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa0 -00015785 67.31012726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab0 -00015786 67.31013489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab0 -00015787 67.31015015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac0 -00015788 67.31015778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac0 -00015789 67.31018066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead0 -00015790 67.31018066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead0 -00015791 67.31021118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae0 -00015792 67.31021118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae0 -00015793 67.31023407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf0 -00015794 67.31024170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf0 -00015795 67.31025696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb00 -00015796 67.31026459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb00 -00015797 67.31028748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb10 -00015798 67.31028748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb10 -00015799 67.31031799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb20 -00015800 67.31031799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb20 -00015801 67.31034088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb30 -00015802 67.31034088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb30 -00015803 67.31037140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb40 -00015804 67.31037140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb40 -00015805 67.31040192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb50 -00015806 67.31040192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb50 -00015807 67.31042480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb60 -00015808 67.31042480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb60 -00015809 67.31044769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb70 -00015810 67.31044769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb70 -00015811 67.31047821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb80 -00015812 67.31048584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb80 -00015813 67.31050873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb90 -00015814 67.31050873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb90 -00015815 67.31053162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba0 -00015816 67.31053162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eba0 -00015817 67.31056213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebb0 -00015818 67.31056976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebb0 -00015819 67.31059265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebc0 -00015820 67.31059265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebc0 -00015821 67.31061554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd0 -00015822 67.31062317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebd0 -00015823 67.31064606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe0 -00015824 67.31064606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebe0 -00015825 67.31067657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf0 -00015826 67.31068420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ebf0 -00015827 67.31070709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec00 -00015828 67.31070709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec00 -00015829 67.31072998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec10 -00015830 67.31073761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec10 -00015831 67.31076813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec20 -00015832 67.31076813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec20 -00015833 67.31079102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec30 -00015834 67.31079865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec30 -00015835 67.31082153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec40 -00015836 67.31082153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec40 -00015837 67.31084442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec50 -00015838 67.31085205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec50 -00015839 67.31088257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec60 -00015840 67.31088257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec60 -00015841 67.31090546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec70 -00015842 67.31091309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec70 -00015843 67.31093597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec80 -00015844 67.31093597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec80 -00015845 67.31096649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec90 -00015846 67.31096649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec90 -00015847 67.31098938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca0 -00015848 67.31099701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca0 -00015849 67.31101990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -00015850 67.31101990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb0 -00015851 67.31104279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -00015852 67.31105042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc0 -00015853 67.31108093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -00015854 67.31108856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd0 -00015855 67.31110382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -00015856 67.31111145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece0 -00015857 67.31113434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -00015858 67.31113434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf0 -00015859 67.31116486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -00015860 67.31116486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed00 -00015861 67.31118774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -00015862 67.31118774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed10 -00015863 67.31121063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -00015864 67.31121826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed20 -00015865 67.31124115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -00015866 67.31124115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed30 -00015867 67.31127167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -00015868 67.31127167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed40 -00015869 67.31129456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -00015870 67.31129456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed50 -00015871 67.31132507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -00015872 67.31132507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed60 -00015873 67.31134796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -00015874 67.31135559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed70 -00015875 67.31137848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -00015876 67.31137848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed80 -00015877 67.31140137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -00015878 67.31140137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed90 -00015879 67.31143188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -00015880 67.31143951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda0 -00015881 67.31145477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -00015882 67.31146240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb0 -00015883 67.31148529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -00015884 67.31148529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc0 -00015885 67.31151581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -00015886 67.31151581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd0 -00015887 67.31153870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -00015888 67.31154633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede0 -00015889 67.31156158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -00015890 67.31156921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf0 -00015891 67.31159973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -00015892 67.31159973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee00 -00015893 67.31162262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee10 -00015894 67.31162262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee10 -00015895 67.31164551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee20 -00015896 67.31165314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee20 -00015897 67.31167603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee30 -00015898 67.31168365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee30 -00015899 67.31170654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee40 -00015900 67.31170654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee40 -00015901 67.31172943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee50 -00015902 67.31172943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee50 -00015903 67.31175995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -00015904 67.31175995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee60 -00015905 67.31178284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -00015906 67.31179047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee70 -00015907 67.31181335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -00015908 67.31181335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee80 -00015909 67.31183624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -00015910 67.31183624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee90 -00015911 67.31186676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -00015912 67.31186676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eea0 -00015913 67.31188965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -00015914 67.31189728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eeb0 -00015915 67.31192017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -00015916 67.31192017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eec0 -00015917 67.31195068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -00015918 67.31195068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eed0 -00015919 67.31197357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -00015920 67.31197357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eee0 -00015921 67.31199646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -00015922 67.31200409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eef0 -00015923 67.31202698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -00015924 67.31203461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef00 -00015925 67.31205750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef10 -00015926 67.31205750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef10 -00015927 67.31208038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef20 -00015928 67.31208038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef20 -00015929 67.31211090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef30 -00015930 67.31211853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef30 -00015931 67.31213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef40 -00015932 67.31214142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef40 -00015933 67.31216431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef50 -00015934 67.31216431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef50 -00015935 67.31219482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef60 -00015936 67.31219482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef60 -00015937 67.31221771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef70 -00015938 67.31221771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef70 -00015939 67.31224060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef80 -00015940 67.31224823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef80 -00015941 67.31227875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef90 -00015942 67.31227875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef90 -00015943 67.31230164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efa0 -00015944 67.31230164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efa0 -00015945 67.31232452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb0 -00015946 67.31232452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb0 -00015947 67.31235504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc0 -00015948 67.31235504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc0 -00015949 67.31237793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd0 -00015950 67.31238556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd0 -00015951 67.31240845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe0 -00015952 67.31240845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe0 -00015953 67.31243896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff0 -00015954 67.31243896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff0 -00015955 67.31246185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f000 -00015956 67.31246948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f000 -00015957 67.31248474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f010 -00015958 67.31249237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f010 -00015959 67.31251526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f020 -00015960 67.31251526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f020 -00015961 67.31254578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f030 -00015962 67.31254578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f030 -00015963 67.31257629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -00015964 67.31257629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f040 -00015965 67.31259918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -00015966 67.31260681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f050 -00015967 67.31263733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -00015968 67.31263733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f060 -00015969 67.31266022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -00015970 67.31266785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f070 -00015971 67.31269073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -00015972 67.31269073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f080 -00015973 67.31271362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -00015974 67.31271362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f090 -00015975 67.31275177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -00015976 67.31275177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a0 -00015977 67.31277466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -00015978 67.31277466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -00015979 67.31279755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -00015980 67.31280518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -00015981 67.31283569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -00015982 67.31283569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -00015983 67.31285858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -00015984 67.31286621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -00015985 67.31288910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -00015986 67.31288910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -00015987 67.31291199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -00015988 67.31291962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -00015989 67.31295013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -00015990 67.31295013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -00015991 67.31297302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -00015992 67.31297302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -00015993 67.31299591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -00015994 67.31300354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -00015995 67.31303406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -00015996 67.31303406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -00015997 67.31305695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -00015998 67.31306458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -00015999 67.31308746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -00016000 67.31308746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -00016001 67.31311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -00016002 67.31311798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -00016003 67.31314850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -00016004 67.31314850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -00016005 67.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -00016006 67.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -00016007 67.31320190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -00016008 67.31320190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -00016009 67.31323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -00016010 67.31323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -00016011 67.31325531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -00016012 67.31326294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -00016013 67.31328583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -00016014 67.31328583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -00016015 67.31330872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -00016016 67.31331635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -00016017 67.31334686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -00016018 67.31334686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -00016019 67.31336975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -00016020 67.31337738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -00016021 67.31340027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f210 -00016022 67.31340027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f210 -00016023 67.31343079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f220 -00016024 67.31343079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f220 -00016025 67.31345367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f230 -00016026 67.31346130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f230 -00016027 67.31348419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f240 -00016028 67.31348419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f240 -00016029 67.31350708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f250 -00016030 67.31351471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f250 -00016031 67.31354523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f260 -00016032 67.31354523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f260 -00016033 67.31356812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f270 -00016034 67.31357574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f270 -00016035 67.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f280 -00016036 67.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f280 -00016037 67.31362915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f290 -00016038 67.31362915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f290 -00016039 67.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a0 -00016040 67.31366730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a0 -00016041 67.31369019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b0 -00016042 67.31369019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b0 -00016043 67.31372833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c0 -00016044 67.31372833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c0 -00016045 67.31376648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d0 -00016046 67.31376648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d0 -00016047 67.31379700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2e0 -00016048 67.31379700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2e0 -00016049 67.31382751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2f0 -00016050 67.31382751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2f0 -00016051 67.31385803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f300 -00016052 67.31385803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f300 -00016053 67.31388092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f310 -00016054 67.31388092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f310 -00016055 67.31391144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f320 -00016056 67.31391144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f320 -00016057 67.31394196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f330 -00016058 67.31394196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f330 -00016059 67.31396484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f340 -00016060 67.31397247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f340 -00016061 67.31399536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f350 -00016062 67.31399536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f350 -00016063 67.31402588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f360 -00016064 67.31402588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f360 -00016065 67.31405640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f370 -00016066 67.31405640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f370 -00016067 67.31407928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f380 -00016068 67.31408691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f380 -00016069 67.31410980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f390 -00016070 67.31410980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f390 -00016071 67.31414032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3a0 -00016072 67.31414032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3a0 -00016073 67.31417084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3b0 -00016074 67.31417084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3b0 -00016075 67.31419373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3c0 -00016076 67.31420135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3c0 -00016077 67.31422424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3d0 -00016078 67.31422424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3d0 -00016079 67.31425476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -00016080 67.31425476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -00016081 67.31427765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -00016082 67.31428528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -00016083 67.31430817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -00016084 67.31431580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -00016085 67.31433868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -00016086 67.31433868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -00016087 67.31436920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -00016088 67.31436920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -00016089 67.31439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -00016090 67.31439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -00016091 67.31442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -00016092 67.31442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -00016093 67.31445313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -00016094 67.31445313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -00016095 67.31447601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -00016096 67.31447601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -00016097 67.31449890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -00016098 67.31450653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -00016099 67.31453705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -00016100 67.31453705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -00016101 67.31455994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f490 -00016102 67.31456757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f490 -00016103 67.31459045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4a0 -00016104 67.31459808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4a0 -00016105 67.31462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4b0 -00016106 67.31462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4b0 -00016107 67.31465149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4c0 -00016108 67.31465149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4c0 -00016109 67.31467438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4d0 -00016110 67.31468201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4d0 -00016111 67.31470490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4e0 -00016112 67.31470490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4e0 -00016113 67.31473541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4f0 -00016114 67.31473541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f4f0 -00016115 67.31476593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f500 -00016116 67.31476593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f500 -00016117 67.31478882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f510 -00016118 67.31479645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f510 -00016119 67.31481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f520 -00016120 67.31481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f520 -00016121 67.31484985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f530 -00016122 67.31485748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f530 -00016123 67.31488037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f540 -00016124 67.31488037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f540 -00016125 67.31490326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f550 -00016126 67.31491089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f550 -00016127 67.31494141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f560 -00016128 67.31494141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f560 -00016129 67.31496429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f570 -00016130 67.31497192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f570 -00016131 67.31499481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f580 -00016132 67.31499481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f580 -00016133 67.31501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f590 -00016134 67.31501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f590 -00016135 67.31504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5a0 -00016136 67.31505585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5a0 -00016137 67.31507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5b0 -00016138 67.31507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5b0 -00016139 67.31510162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5c0 -00016140 67.31510925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5c0 -00016141 67.31513977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5d0 -00016142 67.31513977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5d0 -00016143 67.31516266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5e0 -00016144 67.31516266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5e0 -00016145 67.31518555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5f0 -00016146 67.31519318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f5f0 -00016147 67.31521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f600 -00016148 67.31522369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f600 -00016149 67.31525421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f610 -00016150 67.31525421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f610 -00016151 67.31528473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f620 -00016152 67.31528473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f620 -00016153 67.31530762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f630 -00016154 67.31530762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f630 -00016155 67.31533813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f640 -00016156 67.31533813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f640 -00016157 67.31536865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f650 -00016158 67.31536865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f650 -00016159 67.31539154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f660 -00016160 67.31539917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f660 -00016161 67.31542206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f670 -00016162 67.31542206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f670 -00016163 67.31545258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f680 -00016164 67.31545258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f680 -00016165 67.31548309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f690 -00016166 67.31548309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f690 -00016167 67.31550598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a0 -00016168 67.31551361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a0 -00016169 67.31553650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b0 -00016170 67.31553650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b0 -00016171 67.31556702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c0 -00016172 67.31557465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c0 -00016173 67.31559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d0 -00016174 67.31559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d0 -00016175 67.31562042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e0 -00016176 67.31562042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e0 -00016177 67.31565094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f0 -00016178 67.31565094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f0 -00016179 67.31568146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f700 -00016180 67.31568146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f700 -00016181 67.31570435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f710 -00016182 67.31571198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f710 -00016183 67.31573486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f720 -00016184 67.31573486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f720 -00016185 67.31576538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f730 -00016186 67.31577301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f730 -00016187 67.31579590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f740 -00016188 67.31579590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f740 -00016189 67.31581879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -00016190 67.31581879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -00016191 67.31584930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -00016192 67.31584930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -00016193 67.31587982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -00016194 67.31587982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -00016195 67.31590271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -00016196 67.31591034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -00016197 67.31593323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -00016198 67.31593323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -00016199 67.31596375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -00016200 67.31597137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -00016201 67.31599426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -00016202 67.31599426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -00016203 67.31601715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -00016204 67.31601715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -00016205 67.31604767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -00016206 67.31604767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -00016207 67.31607819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -00016208 67.31607819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -00016209 67.31610107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -00016210 67.31610870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -00016211 67.31613159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -00016212 67.31613159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -00016213 67.31616211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -00016214 67.31616974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -00016215 67.31619263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -00016216 67.31619263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -00016217 67.31621552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -00016218 67.31622314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -00016219 67.31624603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -00016220 67.31624603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -00016221 67.31627655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -00016222 67.31627655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -00016223 67.31629944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -00016224 67.31630707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -00016225 67.31632996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -00016226 67.31632996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -00016227 67.31636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -00016228 67.31636810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -00016229 67.31639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -00016230 67.31639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -00016231 67.31641388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -00016232 67.31642151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -00016233 67.31644440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -00016234 67.31645203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -00016235 67.31647491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -00016236 67.31648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -00016237 67.31650543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -00016238 67.31650543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -00016239 67.31652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -00016240 67.31652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -00016241 67.31656647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -00016242 67.31656647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -00016243 67.31658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f900 -00016244 67.31659698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f900 -00016245 67.31661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f910 -00016246 67.31661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f910 -00016247 67.31664276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f920 -00016248 67.31665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f920 -00016249 67.31667328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f930 -00016250 67.31668091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f930 -00016251 67.31670380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f940 -00016252 67.31670380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f940 -00016253 67.31672668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f950 -00016254 67.31673431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f950 -00016255 67.31675720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f960 -00016256 67.31676483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f960 -00016257 67.31678772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f970 -00016258 67.31679535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f970 -00016259 67.31681824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f980 -00016260 67.31681824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f980 -00016261 67.31684113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00016262 67.31684875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f990 -00016263 67.31687927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00016264 67.31687927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a0 -00016265 67.31690216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00016266 67.31690216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b0 -00016267 67.31692505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00016268 67.31693268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c0 -00016269 67.31696320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00016270 67.31696320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d0 -00016271 67.31698608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00016272 67.31699371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e0 -00016273 67.31701660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00016274 67.31701660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f0 -00016275 67.31703949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00016276 67.31704712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa00 -00016277 67.31707764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00016278 67.31707764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa10 -00016279 67.31710052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00016280 67.31710052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa20 -00016281 67.31712341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00016282 67.31713104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa30 -00016283 67.31715393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa40 -00016284 67.31716156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa40 -00016285 67.31718445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa50 -00016286 67.31718445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa50 -00016287 67.31720734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa60 -00016288 67.31720734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa60 -00016289 67.31723785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa70 -00016290 67.31723785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa70 -00016291 67.31726074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa80 -00016292 67.31726837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa80 -00016293 67.31729126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa90 -00016294 67.31729126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa90 -00016295 67.31732178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa0 -00016296 67.31732178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa0 -00016297 67.31734467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab0 -00016298 67.31735229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab0 -00016299 67.31737518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac0 -00016300 67.31737518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac0 -00016301 67.31740570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad0 -00016302 67.31741333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad0 -00016303 67.31743622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae0 -00016304 67.31744385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae0 -00016305 67.31747437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf0 -00016306 67.31747437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf0 -00016307 67.31750488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb00 -00016308 67.31750488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb00 -00016309 67.31752777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb10 -00016310 67.31752777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb10 -00016311 67.31755829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb20 -00016312 67.31755829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb20 -00016313 67.31758881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb30 -00016314 67.31758881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb30 -00016315 67.31761169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb40 -00016316 67.31761169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb40 -00016317 67.31764221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb50 -00016318 67.31764221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb50 -00016319 67.31766510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb60 -00016320 67.31767273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb60 -00016321 67.31769562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb70 -00016322 67.31769562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb70 -00016323 67.31771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb80 -00016324 67.31771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb80 -00016325 67.31774902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb90 -00016326 67.31774902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb90 -00016327 67.31777191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba0 -00016328 67.31777954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba0 -00016329 67.31779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb0 -00016330 67.31780243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb0 -00016331 67.31783295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc0 -00016332 67.31783295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc0 -00016333 67.31785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd0 -00016334 67.31785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd0 -00016335 67.31787872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe0 -00016336 67.31788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe0 -00016337 67.31790924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf0 -00016338 67.31791687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf0 -00016339 67.31793976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc00 -00016340 67.31793976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc00 -00016341 67.31796265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc10 -00016342 67.31796265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc10 -00016343 67.31799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc20 -00016344 67.31799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc20 -00016345 67.31802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc30 -00016346 67.31802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc30 -00016347 67.31804657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc40 -00016348 67.31804657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc40 -00016349 67.31807709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc50 -00016350 67.31807709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc50 -00016351 67.31809998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc60 -00016352 67.31810760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc60 -00016353 67.31812286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc70 -00016354 67.31813049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc70 -00016355 67.31815338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc80 -00016356 67.31815338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc80 -00016357 67.31818390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc90 -00016358 67.31818390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc90 -00016359 67.31820679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca0 -00016360 67.31821442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca0 -00016361 67.31823730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb0 -00016362 67.31823730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb0 -00016363 67.31826782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc0 -00016364 67.31826782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc0 -00016365 67.31829071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd0 -00016366 67.31829071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd0 -00016367 67.31831360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce0 -00016368 67.31832123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce0 -00016369 67.31834412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf0 -00016370 67.31835175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf0 -00016371 67.31837463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd00 -00016372 67.31837463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd00 -00016373 67.31839752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd10 -00016374 67.31839752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd10 -00016375 67.31842804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd20 -00016376 67.31843567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd20 -00016377 67.31845093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd30 -00016378 67.31845856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd30 -00016379 67.31848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd40 -00016380 67.31848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd40 -00016381 67.31851196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd50 -00016382 67.31851196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd50 -00016383 67.31854248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd60 -00016384 67.31854248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd60 -00016385 67.31856537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd70 -00016386 67.31857300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd70 -00016387 67.31859589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd80 -00016388 67.31859589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd80 -00016389 67.31862640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd90 -00016390 67.31863403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd90 -00016391 67.31865692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda0 -00016392 67.31866455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda0 -00016393 67.31867981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb0 -00016394 67.31868744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb0 -00016395 67.31871033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc0 -00016396 67.31871033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc0 -00016397 67.31874084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd0 -00016398 67.31874084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd0 -00016399 67.31876373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde0 -00016400 67.31877136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde0 -00016401 67.31878662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf0 -00016402 67.31879425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf0 -00016403 67.31882477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe00 -00016404 67.31882477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe00 -00016405 67.31884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe10 -00016406 67.31884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe10 -00016407 67.31887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe20 -00016408 67.31887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe20 -00016409 67.31890869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe30 -00016410 67.31890869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe30 -00016411 67.31893921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe40 -00016412 67.31893921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe40 -00016413 67.31896210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe50 -00016414 67.31896210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe50 -00016415 67.31898499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe60 -00016416 67.31899261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe60 -00016417 67.31902313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe70 -00016418 67.31902313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe70 -00016419 67.31904602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe80 -00016420 67.31905365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe80 -00016421 67.31907654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe90 -00016422 67.31907654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe90 -00016423 67.31910706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea0 -00016424 67.31910706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea0 -00016425 67.31913757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb0 -00016426 67.31914520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb0 -00016427 67.31916046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec0 -00016428 67.31916809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec0 -00016429 67.31919098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed0 -00016430 67.31919098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed0 -00016431 67.31922150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee0 -00016432 67.31922150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee0 -00016433 67.31924438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef0 -00016434 67.31925201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef0 -00016435 67.31926727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff00 -00016436 67.31927490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff00 -00016437 67.31930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff10 -00016438 67.31930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff10 -00016439 67.31932831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff20 -00016440 67.31932831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff20 -00016441 67.31935120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff30 -00016442 67.31935883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff30 -00016443 67.31938171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff40 -00016444 67.31938934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff40 -00016445 67.31941223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff50 -00016446 67.31941223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff50 -00016447 67.31943512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff60 -00016448 67.31943512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff60 -00016449 67.31946564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff70 -00016450 67.31946564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff70 -00016451 67.31949615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff80 -00016452 67.31949615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff80 -00016453 67.31951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff90 -00016454 67.31951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff90 -00016455 67.31954193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa0 -00016456 67.31954193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa0 -00016457 67.31957245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb0 -00016458 67.31958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb0 -00016459 67.31959534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc0 -00016460 67.31960297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc0 -00016461 67.31962585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd0 -00016462 67.31962585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd0 -00016463 67.31965637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe0 -00016464 67.31965637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe0 -00016465 67.31967926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff0 -00016466 67.31968689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff0 -00016467 67.31970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20000 -00016468 67.31970978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20000 -00016469 67.31974030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20010 -00016470 67.31974030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20010 -00016471 67.31976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20020 -00016472 67.31976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20020 -00016473 67.31978607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20030 -00016474 67.31979370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20030 -00016475 67.31982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20040 -00016476 67.31982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20040 -00016477 67.31984711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20050 -00016478 67.31984711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20050 -00016479 67.31987000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20060 -00016480 67.31987000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20060 -00016481 67.31990051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20070 -00016482 67.31990051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20070 -00016483 67.31993103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20080 -00016484 67.31993103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20080 -00016485 67.31995392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20090 -00016486 67.31995392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20090 -00016487 67.31998444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a0 -00016488 67.31998444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a0 -00016489 67.32001495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b0 -00016490 67.32001495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b0 -00016491 67.32003784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c0 -00016492 67.32004547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c0 -00016493 67.32006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d0 -00016494 67.32006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d0 -00016495 67.32009888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e0 -00016496 67.32009888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e0 -00016497 67.32012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f0 -00016498 67.32012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f0 -00016499 67.32015228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20100 -00016500 67.32015228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20100 -00016501 67.32018280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20110 -00016502 67.32018280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20110 -00016503 67.32021332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20120 -00016504 67.32021332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20120 -00016505 67.32023621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20130 -00016506 67.32024384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20130 -00016507 67.32026672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20140 -00016508 67.32026672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20140 -00016509 67.32029724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20150 -00016510 67.32029724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20150 -00016511 67.32032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20160 -00016512 67.32032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20160 -00016513 67.32035065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20170 -00016514 67.32035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20170 -00016515 67.32038116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20180 -00016516 67.32038116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20180 -00016517 67.32041168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20190 -00016518 67.32041168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20190 -00016519 67.32043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a0 -00016520 67.32044220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a0 -00016521 67.32046509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b0 -00016522 67.32046509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b0 -00016523 67.32049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c0 -00016524 67.32049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c0 -00016525 67.32052612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d0 -00016526 67.32052612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d0 -00016527 67.32054901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e0 -00016528 67.32055664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e0 -00016529 67.32057953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f0 -00016530 67.32057953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f0 -00016531 67.32061005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20200 -00016532 67.32061768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20200 -00016533 67.32064056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20210 -00016534 67.32064056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20210 -00016535 67.32067108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20220 -00016536 67.32067871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20220 -00016537 67.32070160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20230 -00016538 67.32070160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20230 -00016539 67.32073212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20240 -00016540 67.32073975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20240 -00016541 67.32076263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20250 -00016542 67.32076263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20250 -00016543 67.32078552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20260 -00016544 67.32079315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20260 -00016545 67.32081604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20270 -00016546 67.32082367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20270 -00016547 67.32085419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20280 -00016548 67.32085419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20280 -00016549 67.32087708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20290 -00016550 67.32088470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20290 -00016551 67.32091522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a0 -00016552 67.32092285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a0 -00016553 67.32094574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b0 -00016554 67.32094574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b0 -00016555 67.32097626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c0 -00016556 67.32097626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c0 -00016557 67.32100677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d0 -00016558 67.32100677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d0 -00016559 67.32102966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e0 -00016560 67.32103729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e0 -00016561 67.32106018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f0 -00016562 67.32106018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f0 -00016563 67.32109070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20300 -00016564 67.32109070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20300 -00016565 67.32112122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -00016566 67.32112122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -00016567 67.32114410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -00016568 67.32114410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -00016569 67.32117462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -00016570 67.32117462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -00016571 67.32120514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -00016572 67.32120514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -00016573 67.32122803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -00016574 67.32123566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -00016575 67.32125854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -00016576 67.32125854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -00016577 67.32128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -00016578 67.32128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -00016579 67.32131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -00016580 67.32131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -00016581 67.32134247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -00016582 67.32134247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -00016583 67.32137299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -00016584 67.32137299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -00016585 67.32140350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -00016586 67.32140350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -00016587 67.32142639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -00016588 67.32143402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -00016589 67.32145691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -00016590 67.32145691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -00016591 67.32148743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -00016592 67.32148743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -00016593 67.32151794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -00016594 67.32151794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -00016595 67.32154083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -00016596 67.32154846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -00016597 67.32157135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -00016598 67.32157135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -00016599 67.32160187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -00016600 67.32160950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -00016601 67.32163239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -00016602 67.32163239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -00016603 67.32165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -00016604 67.32166290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -00016605 67.32168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -00016606 67.32168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -00016607 67.32171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20460 -00016608 67.32171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20460 -00016609 67.32173920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20470 -00016610 67.32174683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20470 -00016611 67.32176971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20480 -00016612 67.32176971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20480 -00016613 67.32180023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20490 -00016614 67.32180786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20490 -00016615 67.32183075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a0 -00016616 67.32183075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a0 -00016617 67.32185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b0 -00016618 67.32186127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b0 -00016619 67.32189178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c0 -00016620 67.32189178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c0 -00016621 67.32191467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d0 -00016622 67.32191467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d0 -00016623 67.32194519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e0 -00016624 67.32194519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e0 -00016625 67.32196808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f0 -00016626 67.32196808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f0 -00016627 67.32199860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20500 -00016628 67.32200623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20500 -00016629 67.32202148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20510 -00016630 67.32202911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20510 -00016631 67.32205200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20520 -00016632 67.32205200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20520 -00016633 67.32208252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20530 -00016634 67.32208252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20530 -00016635 67.32210541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20540 -00016636 67.32211304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20540 -00016637 67.32212830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20550 -00016638 67.32213593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20550 -00016639 67.32216644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20560 -00016640 67.32216644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20560 -00016641 67.32218933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20570 -00016642 67.32218933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20570 -00016643 67.32221222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -00016644 67.32221985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -00016645 67.32224274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -00016646 67.32224274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -00016647 67.32227325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -00016648 67.32227325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -00016649 67.32229614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -00016650 67.32229614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -00016651 67.32232666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -00016652 67.32232666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -00016653 67.32235718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -00016654 67.32235718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -00016655 67.32238007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -00016656 67.32238007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -00016657 67.32240295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -00016658 67.32240295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -00016659 67.32243347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -00016660 67.32244110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -00016661 67.32245636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -00016662 67.32246399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -00016663 67.32248688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -00016664 67.32248688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -00016665 67.32252502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -00016666 67.32252502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -00016667 67.32254791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -00016668 67.32254791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -00016669 67.32257080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -00016670 67.32257843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -00016671 67.32260132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -00016672 67.32260132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -00016673 67.32263184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -00016674 67.32263947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -00016675 67.32266235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -00016676 67.32266235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -00016677 67.32268524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -00016678 67.32269287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -00016679 67.32272339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -00016680 67.32272339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -00016681 67.32274628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -00016682 67.32275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -00016683 67.32277679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -00016684 67.32277679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -00016685 67.32279968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -00016686 67.32279968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -00016687 67.32283020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -00016688 67.32283783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -00016689 67.32286072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -00016690 67.32286072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -00016691 67.32288361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -00016692 67.32289124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -00016693 67.32292175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -00016694 67.32292175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -00016695 67.32294464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -00016696 67.32295227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -00016697 67.32297516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -00016698 67.32297516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -00016699 67.32299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -00016700 67.32300568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -00016701 67.32303619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -00016702 67.32303619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -00016703 67.32305908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -00016704 67.32306671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -00016705 67.32308960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -00016706 67.32308960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -00016707 67.32312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -00016708 67.32312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -00016709 67.32314301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -00016710 67.32315063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -00016711 67.32317352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -00016712 67.32317352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -00016713 67.32319641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -00016714 67.32320404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -00016715 67.32323456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c0 -00016716 67.32323456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c0 -00016717 67.32325745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d0 -00016718 67.32326508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d0 -00016719 67.32328796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e0 -00016720 67.32328796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e0 -00016721 67.32331848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f0 -00016722 67.32331848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f0 -00016723 67.32334137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20800 -00016724 67.32334900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20800 -00016725 67.32337189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20810 -00016726 67.32337189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20810 -00016727 67.32339478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20820 -00016728 67.32340240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20820 -00016729 67.32343292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20830 -00016730 67.32343292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20830 -00016731 67.32345581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20840 -00016732 67.32346344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20840 -00016733 67.32348633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20850 -00016734 67.32348633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20850 -00016735 67.32351685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20860 -00016736 67.32351685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20860 -00016737 67.32354736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20870 -00016738 67.32354736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20870 -00016739 67.32357025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20880 -00016740 67.32357788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20880 -00016741 67.32360077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20890 -00016742 67.32360077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20890 -00016743 67.32363129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a0 -00016744 67.32363129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a0 -00016745 67.32365417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b0 -00016746 67.32366180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b0 -00016747 67.32368469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c0 -00016748 67.32368469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c0 -00016749 67.32371521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d0 -00016750 67.32371521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d0 -00016751 67.32374573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e0 -00016752 67.32374573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e0 -00016753 67.32377625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f0 -00016754 67.32377625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f0 -00016755 67.32379913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20900 -00016756 67.32379913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20900 -00016757 67.32382965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20910 -00016758 67.32383728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20910 -00016759 67.32385254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20920 -00016760 67.32386017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20920 -00016761 67.32388306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20930 -00016762 67.32388306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20930 -00016763 67.32391357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20940 -00016764 67.32391357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20940 -00016765 67.32393646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20950 -00016766 67.32393646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20950 -00016767 67.32395935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20960 -00016768 67.32396698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20960 -00016769 67.32398987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20970 -00016770 67.32398987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20970 -00016771 67.32402039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20980 -00016772 67.32402039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20980 -00016773 67.32404327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20990 -00016774 67.32404327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20990 -00016775 67.32407379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a0 -00016776 67.32407379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a0 -00016777 67.32410431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b0 -00016778 67.32410431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b0 -00016779 67.32412720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c0 -00016780 67.32412720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c0 -00016781 67.32415009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d0 -00016782 67.32415771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d0 -00016783 67.32418060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e0 -00016784 67.32418823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e0 -00016785 67.32421112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f0 -00016786 67.32421112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f0 -00016787 67.32423401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a00 -00016788 67.32423401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a00 -00016789 67.32426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a10 -00016790 67.32426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a10 -00016791 67.32428741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a20 -00016792 67.32429504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a20 -00016793 67.32431793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a30 -00016794 67.32431793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a30 -00016795 67.32434845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a40 -00016796 67.32434845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a40 -00016797 67.32437134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a50 -00016798 67.32437134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a50 -00016799 67.32439423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a60 -00016800 67.32440186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a60 -00016801 67.32443237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a70 -00016802 67.32443237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a70 -00016803 67.32445526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a80 -00016804 67.32445526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a80 -00016805 67.32447815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a90 -00016806 67.32447815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a90 -00016807 67.32450867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20aa0 -00016808 67.32450867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20aa0 -00016809 67.32453918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ab0 -00016810 67.32454681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ab0 -00016811 67.32456970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ac0 -00016812 67.32456970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ac0 -00016813 67.32459259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ad0 -00016814 67.32460022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ad0 -00016815 67.32463074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ae0 -00016816 67.32463074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ae0 -00016817 67.32465363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20af0 -00016818 67.32465363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20af0 -00016819 67.32467651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b00 -00016820 67.32468414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b00 -00016821 67.32470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b10 -00016822 67.32470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b10 -00016823 67.32474518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b20 -00016824 67.32474518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b20 -00016825 67.32476807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b30 -00016826 67.32476807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b30 -00016827 67.32479095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b40 -00016828 67.32479858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b40 -00016829 67.32482910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b50 -00016830 67.32482910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b50 -00016831 67.32485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b60 -00016832 67.32485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b60 -00016833 67.32488251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b70 -00016834 67.32488251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b70 -00016835 67.32490540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b80 -00016836 67.32491302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b80 -00016837 67.32494354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b90 -00016838 67.32494354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b90 -00016839 67.32496643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba0 -00016840 67.32497406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba0 -00016841 67.32499695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb0 -00016842 67.32499695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb0 -00016843 67.32502747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc0 -00016844 67.32502747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc0 -00016845 67.32505798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd0 -00016846 67.32505798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd0 -00016847 67.32508087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be0 -00016848 67.32508087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be0 -00016849 67.32510376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf0 -00016850 67.32511139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf0 -00016851 67.32514191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c00 -00016852 67.32514191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c00 -00016853 67.32516479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c10 -00016854 67.32517242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c10 -00016855 67.32519531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c20 -00016856 67.32519531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c20 -00016857 67.32522583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c30 -00016858 67.32522583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c30 -00016859 67.32525635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c40 -00016860 67.32525635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c40 -00016861 67.32527924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c50 -00016862 67.32528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c50 -00016863 67.32530975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c60 -00016864 67.32531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c60 -00016865 67.32534027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c70 -00016866 67.32534027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c70 -00016867 67.32537079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c80 -00016868 67.32537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c80 -00016869 67.32540131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c90 -00016870 67.32540131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c90 -00016871 67.32542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ca0 -00016872 67.32543182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ca0 -00016873 67.32546234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cb0 -00016874 67.32546234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cb0 -00016875 67.32548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cc0 -00016876 67.32548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cc0 -00016877 67.32550812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd0 -00016878 67.32551575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cd0 -00016879 67.32553864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce0 -00016880 67.32553864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ce0 -00016881 67.32557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf0 -00016882 67.32557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20cf0 -00016883 67.32559967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d00 -00016884 67.32560730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d00 -00016885 67.32562256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d10 -00016886 67.32563019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d10 -00016887 67.32566071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d20 -00016888 67.32566071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d20 -00016889 67.32568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d30 -00016890 67.32568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d30 -00016891 67.32570648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d40 -00016892 67.32571411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d40 -00016893 67.32573700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d50 -00016894 67.32573700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d50 -00016895 67.32576752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d60 -00016896 67.32576752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d60 -00016897 67.32579041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d70 -00016898 67.32579041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d70 -00016899 67.32582092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d80 -00016900 67.32582092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d80 -00016901 67.32584381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d90 -00016902 67.32585144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d90 -00016903 67.32587433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da0 -00016904 67.32587433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20da0 -00016905 67.32589722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db0 -00016906 67.32589722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db0 -00016907 67.32593536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc0 -00016908 67.32593536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc0 -00016909 67.32595825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd0 -00016910 67.32595825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd0 -00016911 67.32598114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de0 -00016912 67.32598877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de0 -00016913 67.32601929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df0 -00016914 67.32601929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df0 -00016915 67.32604218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e00 -00016916 67.32604980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e00 -00016917 67.32607269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e10 -00016918 67.32607269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e10 -00016919 67.32609558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e20 -00016920 67.32610321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e20 -00016921 67.32613373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e30 -00016922 67.32613373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e30 -00016923 67.32615662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e40 -00016924 67.32615662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e40 -00016925 67.32617950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e50 -00016926 67.32618713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e50 -00016927 67.32621765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e60 -00016928 67.32621765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e60 -00016929 67.32624054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e70 -00016930 67.32624817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e70 -00016931 67.32627106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e80 -00016932 67.32627106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e80 -00016933 67.32629395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e90 -00016934 67.32630157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e90 -00016935 67.32633209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea0 -00016936 67.32633209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea0 -00016937 67.32635498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb0 -00016938 67.32635498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb0 -00016939 67.32637787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec0 -00016940 67.32637787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec0 -00016941 67.32640839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed0 -00016942 67.32641602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed0 -00016943 67.32643890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee0 -00016944 67.32643890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee0 -00016945 67.32646179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef0 -00016946 67.32646179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef0 -00016947 67.32649231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f00 -00016948 67.32649231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f00 -00016949 67.32651520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f10 -00016950 67.32652283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f10 -00016951 67.32654572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f20 -00016952 67.32655334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f20 -00016953 67.32657623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f30 -00016954 67.32657623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f30 -00016955 67.32661438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f40 -00016956 67.32661438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f40 -00016957 67.32663727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f50 -00016958 67.32663727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f50 -00016959 67.32666016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f60 -00016960 67.32666016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f60 -00016961 67.32669067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f70 -00016962 67.32669067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f70 -00016963 67.32671356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f80 -00016964 67.32672119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f80 -00016965 67.32674408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f90 -00016966 67.32674408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f90 -00016967 67.32677460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa0 -00016968 67.32677460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa0 -00016969 67.32680511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb0 -00016970 67.32680511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb0 -00016971 67.32682800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc0 -00016972 67.32683563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc0 -00016973 67.32685852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd0 -00016974 67.32685852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd0 -00016975 67.32688904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe0 -00016976 67.32688904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe0 -00016977 67.32691193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff0 -00016978 67.32691956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff0 -00016979 67.32694244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21000 -00016980 67.32694244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21000 -00016981 67.32697296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21010 -00016982 67.32697296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21010 -00016983 67.32700348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21020 -00016984 67.32700348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21020 -00016985 67.32702637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21030 -00016986 67.32703400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21030 -00016987 67.32705688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21040 -00016988 67.32705688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21040 -00016989 67.32708740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21050 -00016990 67.32708740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21050 -00016991 67.32711792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21060 -00016992 67.32711792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21060 -00016993 67.32714081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21070 -00016994 67.32714081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21070 -00016995 67.32717133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21080 -00016996 67.32717133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21080 -00016997 67.32720184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21090 -00016998 67.32720184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21090 -00016999 67.32722473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a0 -00017000 67.32723236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210a0 -00017001 67.32725525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b0 -00017002 67.32725525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210b0 -00017003 67.32728577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c0 -00017004 67.32729340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210c0 -00017005 67.32731628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d0 -00017006 67.32731628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d0 -00017007 67.32733917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e0 -00017008 67.32734680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e0 -00017009 67.32736969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f0 -00017010 67.32736969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f0 -00017011 67.32740021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21100 -00017012 67.32740784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21100 -00017013 67.32743073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21110 -00017014 67.32743073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21110 -00017015 67.32745361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21120 -00017016 67.32746124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21120 -00017017 67.32749176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21130 -00017018 67.32749176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21130 -00017019 67.32752228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21140 -00017020 67.32752228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21140 -00017021 67.32754517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21150 -00017022 67.32754517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21150 -00017023 67.32757568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21160 -00017024 67.32757568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21160 -00017025 67.32760620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21170 -00017026 67.32760620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21170 -00017027 67.32763672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21180 -00017028 67.32763672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21180 -00017029 67.32765961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21190 -00017030 67.32766724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21190 -00017031 67.32769012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a0 -00017032 67.32769012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a0 -00017033 67.32772064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b0 -00017034 67.32772827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b0 -00017035 67.32775116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c0 -00017036 67.32775116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c0 -00017037 67.32777405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d0 -00017038 67.32778168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d0 -00017039 67.32780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e0 -00017040 67.32780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e0 -00017041 67.32783508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f0 -00017042 67.32784271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f0 -00017043 67.32786560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21200 -00017044 67.32786560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21200 -00017045 67.32788849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21210 -00017046 67.32789612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21210 -00017047 67.32792664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21220 -00017048 67.32792664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21220 -00017049 67.32795715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21230 -00017050 67.32795715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21230 -00017051 67.32798004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21240 -00017052 67.32798767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21240 -00017053 67.32801056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21250 -00017054 67.32801056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21250 -00017055 67.32804108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21260 -00017056 67.32804108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21260 -00017057 67.32807159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21270 -00017058 67.32807159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21270 -00017059 67.32809448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21280 -00017060 67.32810211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21280 -00017061 67.32812500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21290 -00017062 67.32812500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21290 -00017063 67.32815552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212a0 -00017064 67.32815552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212a0 -00017065 67.32817841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212b0 -00017066 67.32818604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212b0 -00017067 67.32820892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212c0 -00017068 67.32820892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212c0 -00017069 67.32823944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212d0 -00017070 67.32823944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212d0 -00017071 67.32826233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e0 -00017072 67.32826996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e0 -00017073 67.32829285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f0 -00017074 67.32829285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f0 -00017075 67.32832336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21300 -00017076 67.32832336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21300 -00017077 67.32834625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21310 -00017078 67.32835388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21310 -00017079 67.32837677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21320 -00017080 67.32837677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21320 -00017081 67.32839966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21330 -00017082 67.32839966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21330 -00017083 67.32843018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21340 -00017084 67.32843781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21340 -00017085 67.32846069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21350 -00017086 67.32846069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21350 -00017087 67.32848358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21360 -00017088 67.32849121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21360 -00017089 67.32852173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21370 -00017090 67.32852173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21370 -00017091 67.32854462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21380 -00017092 67.32855225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21380 -00017093 67.32856750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21390 -00017094 67.32857513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21390 -00017095 67.32859802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a0 -00017096 67.32859802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a0 -00017097 67.32862854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b0 -00017098 67.32862854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b0 -00017099 67.32865143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c0 -00017100 67.32865906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c0 -00017101 67.32868195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d0 -00017102 67.32868958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d0 -00017103 67.32872009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e0 -00017104 67.32872009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e0 -00017105 67.32875061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f0 -00017106 67.32875061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f0 -00017107 67.32878113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21400 -00017108 67.32878113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21400 -00017109 67.32880402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21410 -00017110 67.32881165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21410 -00017111 67.32884216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21420 -00017112 67.32884216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21420 -00017113 67.32886505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21430 -00017114 67.32887268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21430 -00017115 67.32889557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21440 -00017116 67.32889557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21440 -00017117 67.32891846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21450 -00017118 67.32892609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21450 -00017119 67.32895660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21460 -00017120 67.32895660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21460 -00017121 67.32898712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21470 -00017122 67.32898712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21470 -00017123 67.32901001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21480 -00017124 67.32901001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21480 -00017125 67.32904053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21490 -00017126 67.32904053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21490 -00017127 67.32907104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a0 -00017128 67.32907104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a0 -00017129 67.32910156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b0 -00017130 67.32910156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b0 -00017131 67.32912445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c0 -00017132 67.32913208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c0 -00017133 67.32915497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -00017134 67.32915497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -00017135 67.32918549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -00017136 67.32919312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -00017137 67.32921600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -00017138 67.32922363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -00017139 67.32924652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -00017140 67.32924652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -00017141 67.32927704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -00017142 67.32927704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -00017143 67.32930756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -00017144 67.32930756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -00017145 67.32933044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -00017146 67.32933044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -00017147 67.32935333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -00017148 67.32936096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -00017149 67.32939148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -00017150 67.32939148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -00017151 67.32941437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -00017152 67.32941437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -00017153 67.32943726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -00017154 67.32944489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -00017155 67.32947540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -00017156 67.32947540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -00017157 67.32949829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -00017158 67.32949829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -00017159 67.32952881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -00017160 67.32952881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -00017161 67.32955933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -00017162 67.32955933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -00017163 67.32958984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -00017164 67.32958984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -00017165 67.32962036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -00017166 67.32962036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -00017167 67.32965088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -00017168 67.32965088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -00017169 67.32968140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -00017170 67.32968140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -00017171 67.32971191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -00017172 67.32971191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -00017173 67.32974243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -00017174 67.32974243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -00017175 67.32977295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -00017176 67.32977295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -00017177 67.32980347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21630 -00017178 67.32980347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21630 -00017179 67.32983398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21640 -00017180 67.32983398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21640 -00017181 67.32985687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21650 -00017182 67.32986450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21650 -00017183 67.32988739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21660 -00017184 67.32988739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21660 -00017185 67.32991028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21670 -00017186 67.32991791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21670 -00017187 67.32994080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21680 -00017188 67.32994843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21680 -00017189 67.32997131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21690 -00017190 67.32997131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21690 -00017191 67.32999420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a0 -00017192 67.33000183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a0 -00017193 67.33003235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b0 -00017194 67.33003235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b0 -00017195 67.33005524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c0 -00017196 67.33005524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c0 -00017197 67.33007813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216d0 -00017198 67.33008575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216d0 -00017199 67.33010864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216e0 -00017200 67.33010864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216e0 -00017201 67.33013916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216f0 -00017202 67.33013916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x216f0 -00017203 67.33016205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21700 -00017204 67.33016968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21700 -00017205 67.33019257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21710 -00017206 67.33019257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21710 -00017207 67.33022308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21720 -00017208 67.33023071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21720 -00017209 67.33024597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21730 -00017210 67.33025360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21730 -00017211 67.33027649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21740 -00017212 67.33027649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21740 -00017213 67.33030701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21750 -00017214 67.33030701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21750 -00017215 67.33032990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21760 -00017216 67.33033752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21760 -00017217 67.33036041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21770 -00017218 67.33036041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21770 -00017219 67.33039093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21780 -00017220 67.33039093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21780 -00017221 67.33041382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21790 -00017222 67.33042145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21790 -00017223 67.33044434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a0 -00017224 67.33044434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a0 -00017225 67.33046722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b0 -00017226 67.33046722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b0 -00017227 67.33049774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c0 -00017228 67.33050537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c0 -00017229 67.33052826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d0 -00017230 67.33052826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d0 -00017231 67.33055115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -00017232 67.33055115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -00017233 67.33058929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -00017234 67.33058929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -00017235 67.33061218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -00017236 67.33061218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -00017237 67.33063507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -00017238 67.33064270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -00017239 67.33066559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -00017240 67.33066559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -00017241 67.33069611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -00017242 67.33069611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -00017243 67.33071899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -00017244 67.33072662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -00017245 67.33074951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -00017246 67.33074951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -00017247 67.33078003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -00017248 67.33078766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -00017249 67.33081055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -00017250 67.33081055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -00017251 67.33084106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -00017252 67.33084106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -00017253 67.33087158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -00017254 67.33087158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -00017255 67.33090210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -00017256 67.33090210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -00017257 67.33093262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -00017258 67.33094025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -00017259 67.33096313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -00017260 67.33096313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -00017261 67.33098602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -00017262 67.33099365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -00017263 67.33102417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -00017264 67.33102417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -00017265 67.33104706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -00017266 67.33105469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -00017267 67.33107758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -00017268 67.33107758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -00017269 67.33110046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -00017270 67.33110809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -00017271 67.33113861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -00017272 67.33113861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -00017273 67.33116913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -00017274 67.33116913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -00017275 67.33119202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21940 -00017276 67.33119965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21940 -00017277 67.33122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21950 -00017278 67.33122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21950 -00017279 67.33126068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21960 -00017280 67.33126068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21960 -00017281 67.33128357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21970 -00017282 67.33129120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21970 -00017283 67.33131409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21980 -00017284 67.33131409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21980 -00017285 67.33134460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21990 -00017286 67.33134460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21990 -00017287 67.33137512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a0 -00017288 67.33137512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a0 -00017289 67.33139801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b0 -00017290 67.33139801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b0 -00017291 67.33142090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c0 -00017292 67.33142853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c0 -00017293 67.33145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d0 -00017294 67.33145905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d0 -00017295 67.33148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e0 -00017296 67.33148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e0 -00017297 67.33150482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f0 -00017298 67.33151245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f0 -00017299 67.33154297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a00 -00017300 67.33154297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a00 -00017301 67.33156586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a10 -00017302 67.33156586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a10 -00017303 67.33159637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a20 -00017304 67.33159637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a20 -00017305 67.33161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a30 -00017306 67.33161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a30 -00017307 67.33164978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a40 -00017308 67.33165741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a40 -00017309 67.33167267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a50 -00017310 67.33168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a50 -00017311 67.33170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a60 -00017312 67.33170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a60 -00017313 67.33173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a70 -00017314 67.33173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a70 -00017315 67.33175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a80 -00017316 67.33176422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a80 -00017317 67.33178711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a90 -00017318 67.33178711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a90 -00017319 67.33181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa0 -00017320 67.33181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21aa0 -00017321 67.33184052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -00017322 67.33184814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -00017323 67.33187103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -00017324 67.33187103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -00017325 67.33189392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -00017326 67.33190155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -00017327 67.33192444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -00017328 67.33193207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -00017329 67.33195496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -00017330 67.33195496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -00017331 67.33197784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -00017332 67.33198547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -00017333 67.33200836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -00017334 67.33201599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -00017335 67.33203888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -00017336 67.33203888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -00017337 67.33206177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -00017338 67.33206940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -00017339 67.33209229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -00017340 67.33209229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -00017341 67.33212280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -00017342 67.33212280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -00017343 67.33214569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -00017344 67.33215332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -00017345 67.33217621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -00017346 67.33217621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -00017347 67.33220673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -00017348 67.33220673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -00017349 67.33222961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -00017350 67.33223724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -00017351 67.33226013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -00017352 67.33226013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -00017353 67.33229065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -00017354 67.33229065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -00017355 67.33231354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -00017356 67.33232117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -00017357 67.33233643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -00017358 67.33234406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -00017359 67.33237457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -00017360 67.33237457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -00017361 67.33239746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -00017362 67.33239746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -00017363 67.33242035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -00017364 67.33242798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -00017365 67.33245087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c10 -00017366 67.33245087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c10 -00017367 67.33248138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c20 -00017368 67.33248901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c20 -00017369 67.33250427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c30 -00017370 67.33251190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c30 -00017371 67.33253479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c40 -00017372 67.33253479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c40 -00017373 67.33256531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c50 -00017374 67.33257294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c50 -00017375 67.33259583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c60 -00017376 67.33259583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c60 -00017377 67.33261871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c70 -00017378 67.33261871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c70 -00017379 67.33264923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c80 -00017380 67.33264923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c80 -00017381 67.33267975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c90 -00017382 67.33267975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c90 -00017383 67.33271027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ca0 -00017384 67.33271027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ca0 -00017385 67.33273315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cb0 -00017386 67.33273315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cb0 -00017387 67.33277130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cc0 -00017388 67.33277130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cc0 -00017389 67.33280182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cd0 -00017390 67.33280182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cd0 -00017391 67.33282471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ce0 -00017392 67.33282471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ce0 -00017393 67.33284760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cf0 -00017394 67.33285522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21cf0 -00017395 67.33288574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d00 -00017396 67.33289337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d00 -00017397 67.33291626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d10 -00017398 67.33292389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d10 -00017399 67.33294678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d20 -00017400 67.33294678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d20 -00017401 67.33296967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d30 -00017402 67.33297729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d30 -00017403 67.33300781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d40 -00017404 67.33300781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d40 -00017405 67.33303070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d50 -00017406 67.33303833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d50 -00017407 67.33306122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d60 -00017408 67.33306122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d60 -00017409 67.33309174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d70 -00017410 67.33309174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d70 -00017411 67.33312225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d80 -00017412 67.33312988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d80 -00017413 67.33315277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d90 -00017414 67.33315277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d90 -00017415 67.33317566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21da0 -00017416 67.33318329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21da0 -00017417 67.33320618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21db0 -00017418 67.33320618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21db0 -00017419 67.33323669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dc0 -00017420 67.33324432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dc0 -00017421 67.33326721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dd0 -00017422 67.33327484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21dd0 -00017423 67.33329773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21de0 -00017424 67.33329773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21de0 -00017425 67.33332825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21df0 -00017426 67.33332825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21df0 -00017427 67.33335114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e00 -00017428 67.33335876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e00 -00017429 67.33338165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e10 -00017430 67.33338165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e10 -00017431 67.33340454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e20 -00017432 67.33341217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e20 -00017433 67.33344269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e30 -00017434 67.33344269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e30 -00017435 67.33346558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e40 -00017436 67.33347321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e40 -00017437 67.33348846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e50 -00017438 67.33349609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e50 -00017439 67.33352661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e60 -00017440 67.33352661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e60 -00017441 67.33354950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e70 -00017442 67.33355713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e70 -00017443 67.33358002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e80 -00017444 67.33358002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e80 -00017445 67.33360291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e90 -00017446 67.33360291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e90 -00017447 67.33363342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ea0 -00017448 67.33364105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ea0 -00017449 67.33366394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21eb0 -00017450 67.33366394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21eb0 -00017451 67.33368683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ec0 -00017452 67.33369446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ec0 -00017453 67.33372498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ed0 -00017454 67.33372498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ed0 -00017455 67.33374786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ee0 -00017456 67.33374786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ee0 -00017457 67.33377075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ef0 -00017458 67.33377838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ef0 -00017459 67.33380127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f00 -00017460 67.33380127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f00 -00017461 67.33383179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f10 -00017462 67.33383179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f10 -00017463 67.33385468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f20 -00017464 67.33386230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f20 -00017465 67.33388519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f30 -00017466 67.33389282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f30 -00017467 67.33392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f40 -00017468 67.33392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f40 -00017469 67.33394623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f50 -00017470 67.33395386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f50 -00017471 67.33397675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f60 -00017472 67.33397675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f60 -00017473 67.33399963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f70 -00017474 67.33400726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f70 -00017475 67.33403778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f80 -00017476 67.33403778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f80 -00017477 67.33406067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f90 -00017478 67.33406830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f90 -00017479 67.33409119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa0 -00017480 67.33409119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa0 -00017481 67.33412170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb0 -00017482 67.33412170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb0 -00017483 67.33415222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc0 -00017484 67.33415222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc0 -00017485 67.33418274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd0 -00017486 67.33418274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd0 -00017487 67.33420563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe0 -00017488 67.33421326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe0 -00017489 67.33424377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff0 -00017490 67.33424377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff0 -00017491 67.33426666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22000 -00017492 67.33427429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22000 -00017493 67.33429718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22010 -00017494 67.33429718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22010 -00017495 67.33432007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22020 -00017496 67.33432770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22020 -00017497 67.33435822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22030 -00017498 67.33435822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22030 -00017499 67.33438110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22040 -00017500 67.33438873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22040 -00017501 67.33441162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22050 -00017502 67.33441162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22050 -00017503 67.33444214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22060 -00017504 67.33444214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22060 -00017505 67.33447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22070 -00017506 67.33448029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22070 -00017507 67.33450317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22080 -00017508 67.33450317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22080 -00017509 67.33452606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22090 -00017510 67.33453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22090 -00017511 67.33455658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -00017512 67.33456421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220a0 -00017513 67.33459473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -00017514 67.33459473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b0 -00017515 67.33461761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -00017516 67.33462524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c0 -00017517 67.33464813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -00017518 67.33465576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d0 -00017519 67.33467865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -00017520 67.33467865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e0 -00017521 67.33470917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -00017522 67.33471680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f0 -00017523 67.33473969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -00017524 67.33473969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22100 -00017525 67.33477020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -00017526 67.33477020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22110 -00017527 67.33479309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -00017528 67.33480072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22120 -00017529 67.33483124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -00017530 67.33483887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22130 -00017531 67.33486176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -00017532 67.33486176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22140 -00017533 67.33489227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -00017534 67.33489227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22150 -00017535 67.33492279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -00017536 67.33492279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22160 -00017537 67.33495331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -00017538 67.33495331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22170 -00017539 67.33498383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -00017540 67.33498383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22180 -00017541 67.33500671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -00017542 67.33501434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22190 -00017543 67.33503723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -00017544 67.33503723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a0 -00017545 67.33506775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -00017546 67.33507538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b0 -00017547 67.33509827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -00017548 67.33509827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c0 -00017549 67.33512115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -00017550 67.33512878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d0 -00017551 67.33515167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -00017552 67.33515167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e0 -00017553 67.33518219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -00017554 67.33518982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f0 -00017555 67.33521271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22200 -00017556 67.33522034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22200 -00017557 67.33524323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22210 -00017558 67.33524323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22210 -00017559 67.33527374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22220 -00017560 67.33527374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22220 -00017561 67.33530426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22230 -00017562 67.33530426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22230 -00017563 67.33532715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22240 -00017564 67.33533478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22240 -00017565 67.33535767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22250 -00017566 67.33536530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22250 -00017567 67.33539581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22260 -00017568 67.33539581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22260 -00017569 67.33541870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22270 -00017570 67.33542633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22270 -00017571 67.33544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22280 -00017572 67.33544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22280 -00017573 67.33547211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22290 -00017574 67.33547974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22290 -00017575 67.33551025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a0 -00017576 67.33551025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a0 -00017577 67.33553314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b0 -00017578 67.33554077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b0 -00017579 67.33556366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c0 -00017580 67.33556366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c0 -00017581 67.33559418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d0 -00017582 67.33560181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d0 -00017583 67.33562469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e0 -00017584 67.33563232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e0 -00017585 67.33565521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f0 -00017586 67.33565521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f0 -00017587 67.33567810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22300 -00017588 67.33568573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22300 -00017589 67.33570862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22310 -00017590 67.33570862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22310 -00017591 67.33573914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22320 -00017592 67.33573914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22320 -00017593 67.33576202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22330 -00017594 67.33576965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22330 -00017595 67.33579254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22340 -00017596 67.33579254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22340 -00017597 67.33582306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22350 -00017598 67.33582306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22350 -00017599 67.33584595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22360 -00017600 67.33585358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22360 -00017601 67.33587646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22370 -00017602 67.33587646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22370 -00017603 67.33590698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22380 -00017604 67.33590698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22380 -00017605 67.33592987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22390 -00017606 67.33593750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22390 -00017607 67.33596039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a0 -00017608 67.33596039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a0 -00017609 67.33599091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b0 -00017610 67.33599091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b0 -00017611 67.33602142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c0 -00017612 67.33602142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c0 -00017613 67.33604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d0 -00017614 67.33604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d0 -00017615 67.33606720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e0 -00017616 67.33607483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e0 -00017617 67.33610535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f0 -00017618 67.33610535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f0 -00017619 67.33612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22400 -00017620 67.33612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22400 -00017621 67.33615112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22410 -00017622 67.33615875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22410 -00017623 67.33618927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22420 -00017624 67.33618927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22420 -00017625 67.33621216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22430 -00017626 67.33621979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22430 -00017627 67.33623505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22440 -00017628 67.33624268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22440 -00017629 67.33626556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22450 -00017630 67.33626556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22450 -00017631 67.33629608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22460 -00017632 67.33629608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22460 -00017633 67.33631897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22470 -00017634 67.33632660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22470 -00017635 67.33634949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22480 -00017636 67.33634949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22480 -00017637 67.33638000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22490 -00017638 67.33638000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22490 -00017639 67.33640289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a0 -00017640 67.33641052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a0 -00017641 67.33643341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b0 -00017642 67.33643341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b0 -00017643 67.33646393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c0 -00017644 67.33646393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c0 -00017645 67.33648682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d0 -00017646 67.33649445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d0 -00017647 67.33651733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e0 -00017648 67.33651733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e0 -00017649 67.33654022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -00017650 67.33654785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -00017651 67.33657837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -00017652 67.33657837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -00017653 67.33660126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -00017654 67.33660889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -00017655 67.33662415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -00017656 67.33663177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -00017657 67.33666229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -00017658 67.33666229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -00017659 67.33668518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -00017660 67.33669281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -00017661 67.33671570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -00017662 67.33671570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -00017663 67.33673859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -00017664 67.33673859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -00017665 67.33677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -00017666 67.33677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -00017667 67.33679962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -00017668 67.33680725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -00017669 67.33683014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -00017670 67.33683014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -00017671 67.33686066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -00017672 67.33686066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -00017673 67.33689880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -00017674 67.33689880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -00017675 67.33692932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -00017676 67.33692932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -00017677 67.33695984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -00017678 67.33695984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -00017679 67.33698273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -00017680 67.33699036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -00017681 67.33702087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -00017682 67.33702087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -00017683 67.33704376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -00017684 67.33705139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -00017685 67.33707428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -00017686 67.33707428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -00017687 67.33709717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -00017688 67.33710480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -00017689 67.33713531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -00017690 67.33713531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -00017691 67.33715820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -00017692 67.33716583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -00017693 67.33718872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22650 -00017694 67.33718872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22650 -00017695 67.33721924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22660 -00017696 67.33721924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22660 -00017697 67.33724976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22670 -00017698 67.33725739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22670 -00017699 67.33728027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22680 -00017700 67.33728027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22680 -00017701 67.33730316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22690 -00017702 67.33731079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22690 -00017703 67.33734131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a0 -00017704 67.33734131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a0 -00017705 67.33737183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b0 -00017706 67.33737183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b0 -00017707 67.33739471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c0 -00017708 67.33740234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c0 -00017709 67.33741760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d0 -00017710 67.33742523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d0 -00017711 67.33745575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e0 -00017712 67.33745575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e0 -00017713 67.33747864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f0 -00017714 67.33748627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f0 -00017715 67.33750916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22700 -00017716 67.33750916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22700 -00017717 67.33753967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22710 -00017718 67.33753967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22710 -00017719 67.33756256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22720 -00017720 67.33757019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22720 -00017721 67.33759308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22730 -00017722 67.33760071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22730 -00017723 67.33761597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22740 -00017724 67.33762360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22740 -00017725 67.33765411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22750 -00017726 67.33765411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22750 -00017727 67.33767700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22760 -00017728 67.33768463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22760 -00017729 67.33769989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22770 -00017730 67.33770752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22770 -00017731 67.33773804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22780 -00017732 67.33773804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22780 -00017733 67.33776093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22790 -00017734 67.33776855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22790 -00017735 67.33779144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a0 -00017736 67.33779144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a0 -00017737 67.33781433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b0 -00017738 67.33781433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b0 -00017739 67.33784485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c0 -00017740 67.33785248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c0 -00017741 67.33787537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d0 -00017742 67.33787537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d0 -00017743 67.33789825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e0 -00017744 67.33790588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e0 -00017745 67.33793640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f0 -00017746 67.33793640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f0 -00017747 67.33795929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22800 -00017748 67.33795929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22800 -00017749 67.33798218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22810 -00017750 67.33798981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22810 -00017751 67.33801270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22820 -00017752 67.33801270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22820 -00017753 67.33804321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22830 -00017754 67.33804321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22830 -00017755 67.33806610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22840 -00017756 67.33807373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22840 -00017757 67.33809662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22850 -00017758 67.33809662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22850 -00017759 67.33812714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22860 -00017760 67.33813477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22860 -00017761 67.33815002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22870 -00017762 67.33815765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22870 -00017763 67.33818054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22880 -00017764 67.33818054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22880 -00017765 67.33821106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22890 -00017766 67.33821106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22890 -00017767 67.33823395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a0 -00017768 67.33824158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a0 -00017769 67.33826447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b0 -00017770 67.33826447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b0 -00017771 67.33829498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c0 -00017772 67.33829498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c0 -00017773 67.33831787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d0 -00017774 67.33832550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d0 -00017775 67.33834839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e0 -00017776 67.33834839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e0 -00017777 67.33837128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f0 -00017778 67.33837128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f0 -00017779 67.33840179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22900 -00017780 67.33840942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22900 -00017781 67.33843231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22910 -00017782 67.33843231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22910 -00017783 67.33845520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22920 -00017784 67.33845520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22920 -00017785 67.33848572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22930 -00017786 67.33849335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22930 -00017787 67.33851624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22940 -00017788 67.33851624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22940 -00017789 67.33853912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22950 -00017790 67.33854675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22950 -00017791 67.33856964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22960 -00017792 67.33856964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22960 -00017793 67.33860016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22970 -00017794 67.33860779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22970 -00017795 67.33862305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22980 -00017796 67.33863068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22980 -00017797 67.33865356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22990 -00017798 67.33866119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22990 -00017799 67.33869171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a0 -00017800 67.33869171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a0 -00017801 67.33872223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b0 -00017802 67.33872223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b0 -00017803 67.33874512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c0 -00017804 67.33875275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c0 -00017805 67.33877563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d0 -00017806 67.33877563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d0 -00017807 67.33880615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e0 -00017808 67.33880615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e0 -00017809 67.33883667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f0 -00017810 67.33883667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f0 -00017811 67.33885956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a00 -00017812 67.33886719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a00 -00017813 67.33889008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a10 -00017814 67.33889008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a10 -00017815 67.33892059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a20 -00017816 67.33892822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a20 -00017817 67.33895111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a30 -00017818 67.33895111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a30 -00017819 67.33897400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a40 -00017820 67.33898163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a40 -00017821 67.33900452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a50 -00017822 67.33900452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a50 -00017823 67.33903503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a60 -00017824 67.33904266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a60 -00017825 67.33906555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a70 -00017826 67.33907318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a70 -00017827 67.33909607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a80 -00017828 67.33909607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a80 -00017829 67.33912659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a90 -00017830 67.33912659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a90 -00017831 67.33915710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa0 -00017832 67.33915710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa0 -00017833 67.33917999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab0 -00017834 67.33918762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab0 -00017835 67.33921051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac0 -00017836 67.33921814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac0 -00017837 67.33924103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad0 -00017838 67.33924103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad0 -00017839 67.33927155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae0 -00017840 67.33927917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae0 -00017841 67.33930206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af0 -00017842 67.33930206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af0 -00017843 67.33932495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b00 -00017844 67.33933258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b00 -00017845 67.33936310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b10 -00017846 67.33936310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b10 -00017847 67.33938599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b20 -00017848 67.33939362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b20 -00017849 67.33941650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b30 -00017850 67.33942413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b30 -00017851 67.33944702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b40 -00017852 67.33944702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b40 -00017853 67.33947754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b50 -00017854 67.33948517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b50 -00017855 67.33950806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b60 -00017856 67.33950806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b60 -00017857 67.33953094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -00017858 67.33953857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -00017859 67.33956146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -00017860 67.33956909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -00017861 67.33959961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -00017862 67.33959961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -00017863 67.33962250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -00017864 67.33963013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -00017865 67.33965302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -00017866 67.33965302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -00017867 67.33968353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -00017868 67.33968353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -00017869 67.33971405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -00017870 67.33971405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -00017871 67.33973694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -00017872 67.33974457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -00017873 67.33976746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -00017874 67.33976746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -00017875 67.33979797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -00017876 67.33979797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -00017877 67.33982849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -00017878 67.33982849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -00017879 67.33985138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -00017880 67.33985901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -00017881 67.33988190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -00017882 67.33988953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -00017883 67.33992004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -00017884 67.33992004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -00017885 67.33994293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -00017886 67.33995056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -00017887 67.33997345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -00017888 67.33997345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -00017889 67.33999634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -00017890 67.34000397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -00017891 67.34003448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -00017892 67.34003448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -00017893 67.34005737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -00017894 67.34006500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -00017895 67.34008789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -00017896 67.34009552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -00017897 67.34011841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -00017898 67.34011841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -00017899 67.34014893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -00017900 67.34014893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -00017901 67.34017944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd0 -00017902 67.34017944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd0 -00017903 67.34020233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce0 -00017904 67.34020996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce0 -00017905 67.34024048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf0 -00017906 67.34024048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf0 -00017907 67.34026337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d00 -00017908 67.34027100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d00 -00017909 67.34029388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d10 -00017910 67.34029388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d10 -00017911 67.34031677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d20 -00017912 67.34032440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d20 -00017913 67.34035492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d30 -00017914 67.34035492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d30 -00017915 67.34037781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d40 -00017916 67.34038544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d40 -00017917 67.34040833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d50 -00017918 67.34040833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d50 -00017919 67.34043884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d60 -00017920 67.34043884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d60 -00017921 67.34046936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d70 -00017922 67.34046936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d70 -00017923 67.34049988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d80 -00017924 67.34049988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d80 -00017925 67.34052277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d90 -00017926 67.34053040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d90 -00017927 67.34055328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -00017928 67.34055328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -00017929 67.34058380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -00017930 67.34059143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -00017931 67.34061432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -00017932 67.34062195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -00017933 67.34064484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -00017934 67.34064484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -00017935 67.34067535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -00017936 67.34067535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -00017937 67.34070587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -00017938 67.34070587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -00017939 67.34073639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -00017940 67.34073639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -00017941 67.34075928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -00017942 67.34076691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -00017943 67.34078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -00017944 67.34078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -00017945 67.34082031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -00017946 67.34082794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -00017947 67.34085083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -00017948 67.34085083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -00017949 67.34087372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e50 -00017950 67.34088135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e50 -00017951 67.34091187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e60 -00017952 67.34091187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e60 -00017953 67.34093475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e70 -00017954 67.34094238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e70 -00017955 67.34096527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e80 -00017956 67.34097290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e80 -00017957 67.34099579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e90 -00017958 67.34099579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e90 -00017959 67.34102631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea0 -00017960 67.34103394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea0 -00017961 67.34105682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb0 -00017962 67.34105682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb0 -00017963 67.34109497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec0 -00017964 67.34110260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec0 -00017965 67.34112549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed0 -00017966 67.34113312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed0 -00017967 67.34115601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee0 -00017968 67.34115601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee0 -00017969 67.34118652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef0 -00017970 67.34119415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef0 -00017971 67.34121704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f00 -00017972 67.34121704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f00 -00017973 67.34123993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f10 -00017974 67.34124756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f10 -00017975 67.34127045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f20 -00017976 67.34127045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f20 -00017977 67.34130096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f30 -00017978 67.34130859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f30 -00017979 67.34133148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f40 -00017980 67.34133148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f40 -00017981 67.34135437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f50 -00017982 67.34136200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f50 -00017983 67.34139252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f60 -00017984 67.34139252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f60 -00017985 67.34141541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f70 -00017986 67.34141541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f70 -00017987 67.34144592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f80 -00017988 67.34144592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f80 -00017989 67.34146881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f90 -00017990 67.34147644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f90 -00017991 67.34150696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa0 -00017992 67.34150696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa0 -00017993 67.34152985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb0 -00017994 67.34153748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb0 -00017995 67.34156036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc0 -00017996 67.34156036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc0 -00017997 67.34159088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd0 -00017998 67.34159088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd0 -00017999 67.34162140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe0 -00018000 67.34162140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe0 -00018001 67.34164429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff0 -00018002 67.34165192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff0 -00018003 67.34167480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23000 -00018004 67.34167480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23000 -00018005 67.34170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23010 -00018006 67.34170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23010 -00018007 67.34173584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23020 -00018008 67.34173584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23020 -00018009 67.34175873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23030 -00018010 67.34176636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23030 -00018011 67.34178925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23040 -00018012 67.34179688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23040 -00018013 67.34182739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23050 -00018014 67.34182739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23050 -00018015 67.34185028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23060 -00018016 67.34185791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23060 -00018017 67.34188080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23070 -00018018 67.34188080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23070 -00018019 67.34190369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23080 -00018020 67.34191132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23080 -00018021 67.34194183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23090 -00018022 67.34194183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23090 -00018023 67.34197235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230a0 -00018024 67.34197235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230a0 -00018025 67.34199524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230b0 -00018026 67.34200287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230b0 -00018027 67.34202576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230c0 -00018028 67.34202576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230c0 -00018029 67.34205627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d0 -00018030 67.34206390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d0 -00018031 67.34208679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e0 -00018032 67.34208679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e0 -00018033 67.34210968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f0 -00018034 67.34211731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f0 -00018035 67.34214020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23100 -00018036 67.34214020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23100 -00018037 67.34217834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23110 -00018038 67.34217834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23110 -00018039 67.34220123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23120 -00018040 67.34220123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23120 -00018041 67.34223175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23130 -00018042 67.34223175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23130 -00018043 67.34226227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23140 -00018044 67.34226227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23140 -00018045 67.34229279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23150 -00018046 67.34229279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23150 -00018047 67.34231567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23160 -00018048 67.34232330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23160 -00018049 67.34234619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23170 -00018050 67.34234619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23170 -00018051 67.34238434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23180 -00018052 67.34238434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23180 -00018053 67.34240723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23190 -00018054 67.34241486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23190 -00018055 67.34243011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a0 -00018056 67.34243774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a0 -00018057 67.34246063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b0 -00018058 67.34246063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b0 -00018059 67.34249115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c0 -00018060 67.34249878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c0 -00018061 67.34252167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d0 -00018062 67.34252167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d0 -00018063 67.34254456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e0 -00018064 67.34254456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e0 -00018065 67.34258270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f0 -00018066 67.34258270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f0 -00018067 67.34260559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23200 -00018068 67.34260559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23200 -00018069 67.34262848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23210 -00018070 67.34263611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23210 -00018071 67.34265900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23220 -00018072 67.34266663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23220 -00018073 67.34269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23230 -00018074 67.34269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23230 -00018075 67.34272003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23240 -00018076 67.34272766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23240 -00018077 67.34275055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23250 -00018078 67.34275055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23250 -00018079 67.34278107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23260 -00018080 67.34278107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23260 -00018081 67.34281158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23270 -00018082 67.34281921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23270 -00018083 67.34284210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23280 -00018084 67.34284210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23280 -00018085 67.34287262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23290 -00018086 67.34287262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23290 -00018087 67.34289551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a0 -00018088 67.34290314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a0 -00018089 67.34293365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b0 -00018090 67.34293365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b0 -00018091 67.34295654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c0 -00018092 67.34296417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c0 -00018093 67.34298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d0 -00018094 67.34298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d0 -00018095 67.34301758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e0 -00018096 67.34301758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e0 -00018097 67.34304810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f0 -00018098 67.34304810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f0 -00018099 67.34307098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23300 -00018100 67.34307861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23300 -00018101 67.34310150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23310 -00018102 67.34310150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23310 -00018103 67.34313965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23320 -00018104 67.34313965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23320 -00018105 67.34316254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23330 -00018106 67.34317017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23330 -00018107 67.34319305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23340 -00018108 67.34319305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23340 -00018109 67.34321594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23350 -00018110 67.34322357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23350 -00018111 67.34325409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23360 -00018112 67.34325409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23360 -00018113 67.34327698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23370 -00018114 67.34328461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23370 -00018115 67.34330750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23380 -00018116 67.34330750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23380 -00018117 67.34333801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23390 -00018118 67.34333801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23390 -00018119 67.34336853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a0 -00018120 67.34336853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a0 -00018121 67.34339142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b0 -00018122 67.34339142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b0 -00018123 67.34341431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c0 -00018124 67.34342194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c0 -00018125 67.34345245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d0 -00018126 67.34345245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d0 -00018127 67.34347534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e0 -00018128 67.34347534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e0 -00018129 67.34349823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f0 -00018130 67.34350586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f0 -00018131 67.34353638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23400 -00018132 67.34353638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23400 -00018133 67.34355927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23410 -00018134 67.34356689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23410 -00018135 67.34358978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23420 -00018136 67.34358978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23420 -00018137 67.34361267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23430 -00018138 67.34361267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23430 -00018139 67.34364319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23440 -00018140 67.34365082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23440 -00018141 67.34367371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23450 -00018142 67.34367371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23450 -00018143 67.34369659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00018144 67.34369659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00018145 67.34372711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00018146 67.34373474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00018147 67.34375763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00018148 67.34375763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00018149 67.34378052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00018150 67.34378815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00018151 67.34381104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00018152 67.34381104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00018153 67.34384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00018154 67.34384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00018155 67.34386444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00018156 67.34386444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00018157 67.34389496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00018158 67.34389496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00018159 67.34392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00018160 67.34392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00018161 67.34394836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00018162 67.34395599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00018163 67.34397888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00018164 67.34397888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00018165 67.34400940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00018166 67.34400940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00018167 67.34403229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00018168 67.34403992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00018169 67.34406281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00018170 67.34406281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00018171 67.34409332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00018172 67.34409332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00018173 67.34411621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00018174 67.34412384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00018175 67.34414673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -00018176 67.34414673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -00018177 67.34416962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -00018178 67.34416962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -00018179 67.34420013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -00018180 67.34420776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -00018181 67.34423065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -00018182 67.34423065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -00018183 67.34425354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -00018184 67.34425354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -00018185 67.34428406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -00018186 67.34429169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -00018187 67.34431458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -00018188 67.34431458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -00018189 67.34433746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -00018190 67.34433746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -00018191 67.34436798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -00018192 67.34436798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -00018193 67.34439850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -00018194 67.34439850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -00018195 67.34442139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -00018196 67.34442902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -00018197 67.34444427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -00018198 67.34445190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -00018199 67.34448242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -00018200 67.34448242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -00018201 67.34450531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -00018202 67.34451294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -00018203 67.34453583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -00018204 67.34453583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -00018205 67.34456635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -00018206 67.34456635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -00018207 67.34458923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -00018208 67.34459686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -00018209 67.34461975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -00018210 67.34461975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -00018211 67.34464264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -00018212 67.34465027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -00018213 67.34468079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -00018214 67.34468079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -00018215 67.34471130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -00018216 67.34471130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -00018217 67.34473419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -00018218 67.34474182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -00018219 67.34476471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -00018220 67.34477234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -00018221 67.34480286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -00018222 67.34480286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -00018223 67.34483337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -00018224 67.34483337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e0 -00018225 67.34485626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -00018226 67.34486389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f0 -00018227 67.34488678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -00018228 67.34488678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23700 -00018229 67.34491730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -00018230 67.34492493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23710 -00018231 67.34494781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -00018232 67.34494781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23720 -00018233 67.34497833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -00018234 67.34498596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23730 -00018235 67.34500885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -00018236 67.34500885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23740 -00018237 67.34503937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -00018238 67.34504700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23750 -00018239 67.34506989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -00018240 67.34506989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23760 -00018241 67.34509277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -00018242 67.34510040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23770 -00018243 67.34512329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -00018244 67.34512329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23780 -00018245 67.34515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -00018246 67.34516144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23790 -00018247 67.34518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -00018248 67.34518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a0 -00018249 67.34521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -00018250 67.34521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b0 -00018251 67.34524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -00018252 67.34524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c0 -00018253 67.34526825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -00018254 67.34527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d0 -00018255 67.34529877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -00018256 67.34530640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e0 -00018257 67.34532928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -00018258 67.34532928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f0 -00018259 67.34535980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -00018260 67.34535980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23800 -00018261 67.34539032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23810 -00018262 67.34539032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23810 -00018263 67.34541321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23820 -00018264 67.34542084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23820 -00018265 67.34544373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23830 -00018266 67.34544373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23830 -00018267 67.34547424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23840 -00018268 67.34548187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23840 -00018269 67.34550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23850 -00018270 67.34550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23850 -00018271 67.34552765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23860 -00018272 67.34553528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23860 -00018273 67.34555817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23870 -00018274 67.34556580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23870 -00018275 67.34559631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23880 -00018276 67.34559631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23880 -00018277 67.34561920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23890 -00018278 67.34562683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23890 -00018279 67.34564972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238a0 -00018280 67.34564972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238a0 -00018281 67.34568024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238b0 -00018282 67.34568024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238b0 -00018283 67.34571075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238c0 -00018284 67.34571075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238c0 -00018285 67.34573364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238d0 -00018286 67.34574127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238d0 -00018287 67.34576416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e0 -00018288 67.34576416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e0 -00018289 67.34579468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f0 -00018290 67.34579468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f0 -00018291 67.34582520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23900 -00018292 67.34582520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23900 -00018293 67.34584808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23910 -00018294 67.34585571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23910 -00018295 67.34587860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23920 -00018296 67.34587860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23920 -00018297 67.34591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23930 -00018298 67.34591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23930 -00018299 67.34593964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23940 -00018300 67.34593964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23940 -00018301 67.34597015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23950 -00018302 67.34597015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23950 -00018303 67.34599304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23960 -00018304 67.34599304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23960 -00018305 67.34603119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23970 -00018306 67.34603119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23970 -00018307 67.34605408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23980 -00018308 67.34606171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23980 -00018309 67.34608459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23990 -00018310 67.34608459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23990 -00018311 67.34611511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a0 -00018312 67.34611511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a0 -00018313 67.34614563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b0 -00018314 67.34614563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b0 -00018315 67.34616852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c0 -00018316 67.34617615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c0 -00018317 67.34619904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d0 -00018318 67.34619904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d0 -00018319 67.34623718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e0 -00018320 67.34623718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e0 -00018321 67.34626007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f0 -00018322 67.34626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f0 -00018323 67.34629059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -00018324 67.34629059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -00018325 67.34631348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -00018326 67.34631348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -00018327 67.34634399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -00018328 67.34635162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -00018329 67.34637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -00018330 67.34637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -00018331 67.34639740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -00018332 67.34639740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -00018333 67.34643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -00018334 67.34643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -00018335 67.34645844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -00018336 67.34645844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -00018337 67.34648132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -00018338 67.34648895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -00018339 67.34651184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -00018340 67.34651184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -00018341 67.34654236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -00018342 67.34654236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -00018343 67.34656525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -00018344 67.34657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -00018345 67.34659576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -00018346 67.34659576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -00018347 67.34662628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -00018348 67.34663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -00018349 67.34665680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -00018350 67.34666443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -00018351 67.34668732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -00018352 67.34668732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -00018353 67.34671021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -00018354 67.34671783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -00018355 67.34674835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -00018356 67.34674835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -00018357 67.34677124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -00018358 67.34677887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -00018359 67.34680176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -00018360 67.34680176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -00018361 67.34683228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -00018362 67.34683228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -00018363 67.34686279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -00018364 67.34686279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -00018365 67.34689331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -00018366 67.34689331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -00018367 67.34691620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b60 -00018368 67.34692383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b60 -00018369 67.34694672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b70 -00018370 67.34694672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b70 -00018371 67.34697723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b80 -00018372 67.34698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b80 -00018373 67.34700775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b90 -00018374 67.34700775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b90 -00018375 67.34703064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba0 -00018376 67.34703827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba0 -00018377 67.34706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb0 -00018378 67.34706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb0 -00018379 67.34709167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc0 -00018380 67.34709930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc0 -00018381 67.34712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd0 -00018382 67.34712982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd0 -00018383 67.34715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be0 -00018384 67.34715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be0 -00018385 67.34718323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf0 -00018386 67.34719086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf0 -00018387 67.34721375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c00 -00018388 67.34721375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c00 -00018389 67.34724426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c10 -00018390 67.34724426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c10 -00018391 67.34726715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c20 -00018392 67.34726715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c20 -00018393 67.34730530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c30 -00018394 67.34730530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c30 -00018395 67.34732819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c40 -00018396 67.34733582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c40 -00018397 67.34735870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c50 -00018398 67.34736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c50 -00018399 67.34738922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c60 -00018400 67.34738922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c60 -00018401 67.34741974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c70 -00018402 67.34742737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c70 -00018403 67.34745026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c80 -00018404 67.34745789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c80 -00018405 67.34747314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c90 -00018406 67.34748077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c90 -00018407 67.34750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca0 -00018408 67.34750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca0 -00018409 67.34753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -00018410 67.34754181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb0 -00018411 67.34755707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -00018412 67.34756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc0 -00018413 67.34758759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -00018414 67.34759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd0 -00018415 67.34762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -00018416 67.34762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce0 -00018417 67.34765625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -00018418 67.34765625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf0 -00018419 67.34767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -00018420 67.34768677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d00 -00018421 67.34770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -00018422 67.34770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d10 -00018423 67.34774017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -00018424 67.34774780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d20 -00018425 67.34777069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -00018426 67.34777069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d30 -00018427 67.34779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -00018428 67.34780121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d40 -00018429 67.34782410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -00018430 67.34782410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d50 -00018431 67.34785461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -00018432 67.34786224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d60 -00018433 67.34788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -00018434 67.34788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d70 -00018435 67.34790802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -00018436 67.34791565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d80 -00018437 67.34794617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -00018438 67.34794617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d90 -00018439 67.34797668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -00018440 67.34797668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da0 -00018441 67.34799957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -00018442 67.34800720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db0 -00018443 67.34803009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -00018444 67.34803009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc0 -00018445 67.34806061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -00018446 67.34806061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd0 -00018447 67.34809113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -00018448 67.34809113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de0 -00018449 67.34811401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -00018450 67.34812164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -00018451 67.34814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -00018452 67.34814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -00018453 67.34818268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -00018454 67.34818268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -00018455 67.34820557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -00018456 67.34821320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -00018457 67.34823608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -00018458 67.34823608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -00018459 67.34825897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -00018460 67.34826660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -00018461 67.34829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -00018462 67.34829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -00018463 67.34832001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -00018464 67.34832764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -00018465 67.34835052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -00018466 67.34835052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -00018467 67.34838104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -00018468 67.34838104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -00018469 67.34841156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -00018470 67.34841156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -00018471 67.34844208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -00018472 67.34844208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -00018473 67.34846497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -00018474 67.34847260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -00018475 67.34849548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -00018476 67.34849548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -00018477 67.34852600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -00018478 67.34853363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -00018479 67.34855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -00018480 67.34855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -00018481 67.34857941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -00018482 67.34858704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -00018483 67.34861755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -00018484 67.34861755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -00018485 67.34864807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -00018486 67.34864807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -00018487 67.34867096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -00018488 67.34867859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -00018489 67.34870148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -00018490 67.34870911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -00018491 67.34873962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -00018492 67.34873962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -00018493 67.34876251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -00018494 67.34877014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f50 -00018495 67.34879303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -00018496 67.34879303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f60 -00018497 67.34882355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -00018498 67.34882355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f70 -00018499 67.34885406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -00018500 67.34885406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f80 -00018501 67.34888458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -00018502 67.34888458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f90 -00018503 67.34890747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -00018504 67.34891510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fa0 -00018505 67.34893799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -00018506 67.34893799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fb0 -00018507 67.34897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -00018508 67.34897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fc0 -00018509 67.34899902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fd0 -00018510 67.34900665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fd0 -00018511 67.34902954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fe0 -00018512 67.34902954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23fe0 -00018513 67.34905243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ff0 -00018514 67.34906006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ff0 -00018515 67.34909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24000 -00018516 67.34909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24000 -00018517 67.34912109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24010 -00018518 67.34912109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24010 -00018519 67.34914398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24020 -00018520 67.34915161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24020 -00018521 67.34917450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24030 -00018522 67.34917450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24030 -00018523 67.34920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24040 -00018524 67.34921265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24040 -00018525 67.34923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24050 -00018526 67.34923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24050 -00018527 67.34926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24060 -00018528 67.34926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24060 -00018529 67.34929657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24070 -00018530 67.34929657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24070 -00018531 67.34931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24080 -00018532 67.34932709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24080 -00018533 67.34934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24090 -00018534 67.34934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24090 -00018535 67.34937286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a0 -00018536 67.34938049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a0 -00018537 67.34941101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b0 -00018538 67.34941101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b0 -00018539 67.34943390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c0 -00018540 67.34944153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c0 -00018541 67.34946442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d0 -00018542 67.34947205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d0 -00018543 67.34949493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e0 -00018544 67.34949493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e0 -00018545 67.34952545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f0 -00018546 67.34953308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f0 -00018547 67.34955597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24100 -00018548 67.34956360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24100 -00018549 67.34958649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24110 -00018550 67.34958649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24110 -00018551 67.34960938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24120 -00018552 67.34961700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24120 -00018553 67.34964752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24130 -00018554 67.34964752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24130 -00018555 67.34967804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24140 -00018556 67.34967804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24140 -00018557 67.34970093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24150 -00018558 67.34970856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24150 -00018559 67.34973145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24160 -00018560 67.34973145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24160 -00018561 67.34976196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24170 -00018562 67.34976196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24170 -00018563 67.34979248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24180 -00018564 67.34979248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24180 -00018565 67.34981537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24190 -00018566 67.34982300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24190 -00018567 67.34984589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a0 -00018568 67.34985352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a0 -00018569 67.34988403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b0 -00018570 67.34989166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b0 -00018571 67.34991455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c0 -00018572 67.34992218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c0 -00018573 67.34994507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d0 -00018574 67.34994507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d0 -00018575 67.34996796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241e0 -00018576 67.34997559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241e0 -00018577 67.35000610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241f0 -00018578 67.35000610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x241f0 -00018579 67.35002899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24200 -00018580 67.35003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24200 -00018581 67.35005951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24210 -00018582 67.35005951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24210 -00018583 67.35009003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24220 -00018584 67.35009003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24220 -00018585 67.35011292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24230 -00018586 67.35012054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24230 -00018587 67.35014343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24240 -00018588 67.35014343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24240 -00018589 67.35016632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24250 -00018590 67.35016632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24250 -00018591 67.35019684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24260 -00018592 67.35019684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24260 -00018593 67.35021973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24270 -00018594 67.35022736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24270 -00018595 67.35025024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24280 -00018596 67.35025024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24280 -00018597 67.35028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24290 -00018598 67.35028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24290 -00018599 67.35030365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a0 -00018600 67.35030365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a0 -00018601 67.35033417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b0 -00018602 67.35033417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b0 -00018603 67.35036469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c0 -00018604 67.35036469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c0 -00018605 67.35039520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d0 -00018606 67.35040283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d0 -00018607 67.35042572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e0 -00018608 67.35042572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e0 -00018609 67.35045624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f0 -00018610 67.35045624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f0 -00018611 67.35048676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24300 -00018612 67.35048676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24300 -00018613 67.35051727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24310 -00018614 67.35051727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24310 -00018615 67.35054016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24320 -00018616 67.35054779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24320 -00018617 67.35057068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24330 -00018618 67.35057831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24330 -00018619 67.35060120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24340 -00018620 67.35060120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24340 -00018621 67.35063171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24350 -00018622 67.35063934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24350 -00018623 67.35066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24360 -00018624 67.35066986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24360 -00018625 67.35069275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24370 -00018626 67.35069275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24370 -00018627 67.35072327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24380 -00018628 67.35072327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24380 -00018629 67.35075378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24390 -00018630 67.35076141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24390 -00018631 67.35078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a0 -00018632 67.35078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a0 -00018633 67.35081482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b0 -00018634 67.35081482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b0 -00018635 67.35084534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c0 -00018636 67.35084534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c0 -00018637 67.35087585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d0 -00018638 67.35087585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d0 -00018639 67.35089874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e0 -00018640 67.35090637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e0 -00018641 67.35092926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f0 -00018642 67.35092926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f0 -00018643 67.35095978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24400 -00018644 67.35095978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24400 -00018645 67.35099030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24410 -00018646 67.35099792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24410 -00018647 67.35102081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24420 -00018648 67.35102081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24420 -00018649 67.35105133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24430 -00018650 67.35105133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24430 -00018651 67.35108185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24440 -00018652 67.35108185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24440 -00018653 67.35111237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24450 -00018654 67.35111237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24450 -00018655 67.35114288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24460 -00018656 67.35114288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24460 -00018657 67.35116577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24470 -00018658 67.35117340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24470 -00018659 67.35119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24480 -00018660 67.35119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24480 -00018661 67.35122681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24490 -00018662 67.35123444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24490 -00018663 67.35125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244a0 -00018664 67.35126495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244a0 -00018665 67.35128784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244b0 -00018666 67.35129547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244b0 -00018667 67.35131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244c0 -00018668 67.35131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244c0 -00018669 67.35135651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244d0 -00018670 67.35135651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244d0 -00018671 67.35137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244e0 -00018672 67.35138702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244e0 -00018673 67.35140991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244f0 -00018674 67.35141754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x244f0 -00018675 67.35144806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24500 -00018676 67.35145569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24500 -00018677 67.35148621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24510 -00018678 67.35149384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24510 -00018679 67.35152435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24520 -00018680 67.35153198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24520 -00018681 67.35156250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24530 -00018682 67.35157013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24530 -00018683 67.35160065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24540 -00018684 67.35160065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24540 -00018685 67.35163879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24550 -00018686 67.35163879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24550 -00018687 67.35166931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24560 -00018688 67.35166931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24560 -00018689 67.35169220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24570 -00018690 67.35169983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24570 -00018691 67.35172272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24580 -00018692 67.35172272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24580 -00018693 67.35175323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24590 -00018694 67.35175323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24590 -00018695 67.35178375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a0 -00018696 67.35178375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245a0 -00018697 67.35180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b0 -00018698 67.35181427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245b0 -00018699 67.35183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c0 -00018700 67.35183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245c0 -00018701 67.35186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d0 -00018702 67.35187531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245d0 -00018703 67.35189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e0 -00018704 67.35189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245e0 -00018705 67.35192108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f0 -00018706 67.35192108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x245f0 -00018707 67.35195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24600 -00018708 67.35195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24600 -00018709 67.35198212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24610 -00018710 67.35198212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24610 -00018711 67.35200500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24620 -00018712 67.35201263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24620 -00018713 67.35203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24630 -00018714 67.35203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24630 -00018715 67.35206604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24640 -00018716 67.35207367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24640 -00018717 67.35209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24650 -00018718 67.35209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24650 -00018719 67.35211945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24660 -00018720 67.35212708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24660 -00018721 67.35214996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24670 -00018722 67.35214996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24670 -00018723 67.35218048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24680 -00018724 67.35218048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24680 -00018725 67.35220337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24690 -00018726 67.35221100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24690 -00018727 67.35223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a0 -00018728 67.35223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a0 -00018729 67.35226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b0 -00018730 67.35227203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b0 -00018731 67.35229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c0 -00018732 67.35229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c0 -00018733 67.35231781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d0 -00018734 67.35232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d0 -00018735 67.35234833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e0 -00018736 67.35234833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e0 -00018737 67.35237885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f0 -00018738 67.35238647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f0 -00018739 67.35240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24700 -00018740 67.35240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24700 -00018741 67.35243225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24710 -00018742 67.35243225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24710 -00018743 67.35246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24720 -00018744 67.35247040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24720 -00018745 67.35249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24730 -00018746 67.35249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24730 -00018747 67.35251617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24740 -00018748 67.35252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24740 -00018749 67.35254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24750 -00018750 67.35254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24750 -00018751 67.35257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24760 -00018752 67.35258484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24760 -00018753 67.35260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -00018754 67.35260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24770 -00018755 67.35263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -00018756 67.35263824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24780 -00018757 67.35266876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -00018758 67.35266876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24790 -00018759 67.35269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -00018760 67.35269928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a0 -00018761 67.35272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -00018762 67.35272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b0 -00018763 67.35274506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -00018764 67.35274506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c0 -00018765 67.35277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -00018766 67.35278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d0 -00018767 67.35280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -00018768 67.35280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e0 -00018769 67.35282898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -00018770 67.35283661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f0 -00018771 67.35286713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -00018772 67.35286713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24800 -00018773 67.35289001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -00018774 67.35289764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24810 -00018775 67.35292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -00018776 67.35292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24820 -00018777 67.35294342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -00018778 67.35294342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24830 -00018779 67.35297394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -00018780 67.35298157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24840 -00018781 67.35300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -00018782 67.35300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24850 -00018783 67.35302734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -00018784 67.35303497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24860 -00018785 67.35306549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -00018786 67.35306549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24870 -00018787 67.35308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -00018788 67.35309601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24880 -00018789 67.35311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -00018790 67.35311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24890 -00018791 67.35314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -00018792 67.35314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248a0 -00018793 67.35317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -00018794 67.35317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248b0 -00018795 67.35320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -00018796 67.35320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248c0 -00018797 67.35322571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248d0 -00018798 67.35323334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248d0 -00018799 67.35326385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248e0 -00018800 67.35326385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248e0 -00018801 67.35328674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f0 -00018802 67.35329437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f0 -00018803 67.35331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24900 -00018804 67.35331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24900 -00018805 67.35334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24910 -00018806 67.35334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24910 -00018807 67.35337067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24920 -00018808 67.35337830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24920 -00018809 67.35340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24930 -00018810 67.35340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24930 -00018811 67.35342407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24940 -00018812 67.35343170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24940 -00018813 67.35346222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24950 -00018814 67.35346222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24950 -00018815 67.35348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24960 -00018816 67.35349274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24960 -00018817 67.35351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24970 -00018818 67.35351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24970 -00018819 67.35354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24980 -00018820 67.35354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24980 -00018821 67.35356903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24990 -00018822 67.35357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24990 -00018823 67.35359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a0 -00018824 67.35359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a0 -00018825 67.35362244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b0 -00018826 67.35363007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b0 -00018827 67.35366058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c0 -00018828 67.35366058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c0 -00018829 67.35368347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d0 -00018830 67.35369110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d0 -00018831 67.35371399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e0 -00018832 67.35371399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e0 -00018833 67.35374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f0 -00018834 67.35374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f0 -00018835 67.35377502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a00 -00018836 67.35377502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a00 -00018837 67.35379791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a10 -00018838 67.35379791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a10 -00018839 67.35382080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a20 -00018840 67.35382843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a20 -00018841 67.35385895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a30 -00018842 67.35385895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a30 -00018843 67.35388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a40 -00018844 67.35388947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a40 -00018845 67.35391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a50 -00018846 67.35391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a50 -00018847 67.35394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a60 -00018848 67.35394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a60 -00018849 67.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a70 -00018850 67.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a70 -00018851 67.35399628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a80 -00018852 67.35399628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a80 -00018853 67.35401917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a90 -00018854 67.35402679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a90 -00018855 67.35405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24aa0 -00018856 67.35405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24aa0 -00018857 67.35408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab0 -00018858 67.35408783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab0 -00018859 67.35411072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac0 -00018860 67.35411072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac0 -00018861 67.35414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad0 -00018862 67.35414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad0 -00018863 67.35417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae0 -00018864 67.35417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae0 -00018865 67.35419464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -00018866 67.35419464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -00018867 67.35421753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -00018868 67.35422516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -00018869 67.35425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -00018870 67.35425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -00018871 67.35427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -00018872 67.35428619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -00018873 67.35430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -00018874 67.35430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -00018875 67.35433960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -00018876 67.35433960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -00018877 67.35437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -00018878 67.35437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -00018879 67.35439301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -00018880 67.35439301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -00018881 67.35441589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -00018882 67.35442352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -00018883 67.35445404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -00018884 67.35445404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -00018885 67.35447693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -00018886 67.35448456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -00018887 67.35450745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -00018888 67.35450745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -00018889 67.35453796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -00018890 67.35453796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -00018891 67.35456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -00018892 67.35456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -00018893 67.35459137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -00018894 67.35459137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -00018895 67.35461426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -00018896 67.35462189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -00018897 67.35465240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -00018898 67.35465240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -00018899 67.35467529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -00018900 67.35468292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -00018901 67.35470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -00018902 67.35470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -00018903 67.35473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -00018904 67.35473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -00018905 67.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -00018906 67.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -00018907 67.35478973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -00018908 67.35479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -00018909 67.35482025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c50 -00018910 67.35482025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c50 -00018911 67.35485077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c60 -00018912 67.35485077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c60 -00018913 67.35487366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c70 -00018914 67.35488129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c70 -00018915 67.35490417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c80 -00018916 67.35491180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c80 -00018917 67.35493469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c90 -00018918 67.35494232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c90 -00018919 67.35497284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca0 -00018920 67.35497284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca0 -00018921 67.35499573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb0 -00018922 67.35500336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb0 -00018923 67.35502625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc0 -00018924 67.35502625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc0 -00018925 67.35504913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd0 -00018926 67.35505676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd0 -00018927 67.35508728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce0 -00018928 67.35508728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce0 -00018929 67.35511017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf0 -00018930 67.35511017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf0 -00018931 67.35513306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d00 -00018932 67.35514069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d00 -00018933 67.35517120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d10 -00018934 67.35517120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d10 -00018935 67.35520172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d20 -00018936 67.35520172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d20 -00018937 67.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d30 -00018938 67.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d30 -00018939 67.35524750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d40 -00018940 67.35525513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d40 -00018941 67.35528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d50 -00018942 67.35528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d50 -00018943 67.35530853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d60 -00018944 67.35531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d60 -00018945 67.35533905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d70 -00018946 67.35533905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d70 -00018947 67.35536957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d80 -00018948 67.35536957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d80 -00018949 67.35540009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d90 -00018950 67.35540009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d90 -00018951 67.35542297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da0 -00018952 67.35543060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24da0 -00018953 67.35545349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db0 -00018954 67.35545349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24db0 -00018955 67.35548401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc0 -00018956 67.35549164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dc0 -00018957 67.35551453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dd0 -00018958 67.35551453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24dd0 -00018959 67.35553741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24de0 -00018960 67.35554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24de0 -00018961 67.35556793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df0 -00018962 67.35556793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24df0 -00018963 67.35559845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e00 -00018964 67.35559845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e00 -00018965 67.35562134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e10 -00018966 67.35562897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e10 -00018967 67.35565186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e20 -00018968 67.35565948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e20 -00018969 67.35569000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e30 -00018970 67.35569000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e30 -00018971 67.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e40 -00018972 67.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e40 -00018973 67.35573578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e50 -00018974 67.35574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e50 -00018975 67.35576630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e60 -00018976 67.35576630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e60 -00018977 67.35579681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e70 -00018978 67.35580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e70 -00018979 67.35582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -00018980 67.35582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -00018981 67.35585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -00018982 67.35585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -00018983 67.35588837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -00018984 67.35588837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -00018985 67.35591888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -00018986 67.35591888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -00018987 67.35594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -00018988 67.35594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -00018989 67.35596466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -00018990 67.35597229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -00018991 67.35600281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -00018992 67.35600281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -00018993 67.35602570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -00018994 67.35603333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -00018995 67.35605621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -00018996 67.35605621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -00018997 67.35608673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -00018998 67.35608673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -00018999 67.35611725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -00019000 67.35611725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -00019001 67.35614014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -00019002 67.35614777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -00019003 67.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -00019004 67.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -00019005 67.35620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -00019006 67.35620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -00019007 67.35622406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -00019008 67.35623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -00019009 67.35625458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -00019010 67.35625458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -00019011 67.35628510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -00019012 67.35628510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -00019013 67.35631561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -00019014 67.35631561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -00019015 67.35633850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -00019016 67.35634613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -00019017 67.35636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -00019018 67.35636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -00019019 67.35639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -00019020 67.35639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -00019021 67.35643005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -00019022 67.35643005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -00019023 67.35645294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe0 -00019024 67.35645294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe0 -00019025 67.35648346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff0 -00019026 67.35648346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff0 -00019027 67.35651398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25000 -00019028 67.35651398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25000 -00019029 67.35654449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25010 -00019030 67.35654449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25010 -00019031 67.35656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25020 -00019032 67.35656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25020 -00019033 67.35659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25030 -00019034 67.35659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25030 -00019035 67.35662842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25040 -00019036 67.35663605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25040 -00019037 67.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25050 -00019038 67.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25050 -00019039 67.35668182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25060 -00019040 67.35668945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25060 -00019041 67.35671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25070 -00019042 67.35671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25070 -00019043 67.35674286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25080 -00019044 67.35675049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25080 -00019045 67.35677338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25090 -00019046 67.35677338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25090 -00019047 67.35679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a0 -00019048 67.35679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a0 -00019049 67.35682678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b0 -00019050 67.35683441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b0 -00019051 67.35685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c0 -00019052 67.35685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c0 -00019053 67.35688019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d0 -00019054 67.35688782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d0 -00019055 67.35691833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e0 -00019056 67.35691833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e0 -00019057 67.35694122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f0 -00019058 67.35694885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f0 -00019059 67.35697174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25100 -00019060 67.35697174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25100 -00019061 67.35699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25110 -00019062 67.35699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25110 -00019063 67.35702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25120 -00019064 67.35703278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25120 -00019065 67.35705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25130 -00019066 67.35705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25130 -00019067 67.35707855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25140 -00019068 67.35708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25140 -00019069 67.35711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25150 -00019070 67.35711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25150 -00019071 67.35713959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25160 -00019072 67.35714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25160 -00019073 67.35717010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25170 -00019074 67.35717010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25170 -00019075 67.35719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25180 -00019076 67.35719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25180 -00019077 67.35722351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25190 -00019078 67.35723114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25190 -00019079 67.35725403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a0 -00019080 67.35725403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a0 -00019081 67.35727692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b0 -00019082 67.35728455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b0 -00019083 67.35731506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c0 -00019084 67.35731506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c0 -00019085 67.35733795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d0 -00019086 67.35734558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d0 -00019087 67.35736847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e0 -00019088 67.35736847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e0 -00019089 67.35739899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f0 -00019090 67.35739899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f0 -00019091 67.35742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -00019092 67.35742950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -00019093 67.35745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -00019094 67.35745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -00019095 67.35747528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -00019096 67.35748291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -00019097 67.35751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -00019098 67.35751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -00019099 67.35753632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -00019100 67.35754395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -00019101 67.35756683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -00019102 67.35756683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -00019103 67.35759735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -00019104 67.35759735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -00019105 67.35762024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -00019106 67.35762787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -00019107 67.35765076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -00019108 67.35765076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -00019109 67.35767365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -00019110 67.35768127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -00019111 67.35771179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -00019112 67.35771179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -00019113 67.35773468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -00019114 67.35774231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -00019115 67.35776520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -00019116 67.35776520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -00019117 67.35779572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -00019118 67.35779572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -00019119 67.35782623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -00019120 67.35782623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -00019121 67.35784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -00019122 67.35784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -00019123 67.35787201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -00019124 67.35787964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -00019125 67.35791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -00019126 67.35791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -00019127 67.35793304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -00019128 67.35794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -00019129 67.35796356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -00019130 67.35796356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -00019131 67.35799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -00019132 67.35799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -00019133 67.35802460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -00019134 67.35802460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -00019135 67.35804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25360 -00019136 67.35804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25360 -00019137 67.35807037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25370 -00019138 67.35807800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25370 -00019139 67.35810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25380 -00019140 67.35810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25380 -00019141 67.35813141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25390 -00019142 67.35813904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25390 -00019143 67.35816193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a0 -00019144 67.35816193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253a0 -00019145 67.35819244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b0 -00019146 67.35819244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253b0 -00019147 67.35822296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253c0 -00019148 67.35822296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253c0 -00019149 67.35824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253d0 -00019150 67.35824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253d0 -00019151 67.35826874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253e0 -00019152 67.35827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253e0 -00019153 67.35830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253f0 -00019154 67.35830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x253f0 -00019155 67.35832977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25400 -00019156 67.35833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25400 -00019157 67.35836029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25410 -00019158 67.35836029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25410 -00019159 67.35839081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25420 -00019160 67.35839081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25420 -00019161 67.35842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25430 -00019162 67.35842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25430 -00019163 67.35844421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25440 -00019164 67.35844421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25440 -00019165 67.35846710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25450 -00019166 67.35847473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25450 -00019167 67.35850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25460 -00019168 67.35850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25460 -00019169 67.35852814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25470 -00019170 67.35853577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25470 -00019171 67.35855865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25480 -00019172 67.35855865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25480 -00019173 67.35858917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25490 -00019174 67.35858917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25490 -00019175 67.35861969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a0 -00019176 67.35861969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a0 -00019177 67.35864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b0 -00019178 67.35864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b0 -00019179 67.35866547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c0 -00019180 67.35867310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c0 -00019181 67.35870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d0 -00019182 67.35870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d0 -00019183 67.35872650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e0 -00019184 67.35873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e0 -00019185 67.35875702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f0 -00019186 67.35875702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f0 -00019187 67.35878754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25500 -00019188 67.35878754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25500 -00019189 67.35881805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25510 -00019190 67.35881805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25510 -00019191 67.35884094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25520 -00019192 67.35884094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25520 -00019193 67.35886383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25530 -00019194 67.35887146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25530 -00019195 67.35890198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25540 -00019196 67.35890198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25540 -00019197 67.35892487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25550 -00019198 67.35893250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25550 -00019199 67.35895538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25560 -00019200 67.35895538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25560 -00019201 67.35898590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25570 -00019202 67.35898590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25570 -00019203 67.35901642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25580 -00019204 67.35901642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25580 -00019205 67.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25590 -00019206 67.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25590 -00019207 67.35906219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a0 -00019208 67.35906982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a0 -00019209 67.35910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b0 -00019210 67.35910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b0 -00019211 67.35912323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c0 -00019212 67.35913086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c0 -00019213 67.35915375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d0 -00019214 67.35915375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d0 -00019215 67.35918427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e0 -00019216 67.35918427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e0 -00019217 67.35921478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f0 -00019218 67.35921478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f0 -00019219 67.35923767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25600 -00019220 67.35923767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25600 -00019221 67.35926056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25610 -00019222 67.35926819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25610 -00019223 67.35929871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25620 -00019224 67.35929871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25620 -00019225 67.35932159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25630 -00019226 67.35932922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25630 -00019227 67.35935211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25640 -00019228 67.35935211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25640 -00019229 67.35938263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25650 -00019230 67.35938263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25650 -00019231 67.35941315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25660 -00019232 67.35941315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25660 -00019233 67.35943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25670 -00019234 67.35943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25670 -00019235 67.35945892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25680 -00019236 67.35946655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25680 -00019237 67.35949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25690 -00019238 67.35949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25690 -00019239 67.35951996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256a0 -00019240 67.35952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256a0 -00019241 67.35955048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256b0 -00019242 67.35955048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256b0 -00019243 67.35958099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c0 -00019244 67.35958099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256c0 -00019245 67.35961151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d0 -00019246 67.35961151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256d0 -00019247 67.35963440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e0 -00019248 67.35963440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256e0 -00019249 67.35966492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f0 -00019250 67.35966492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x256f0 -00019251 67.35969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25700 -00019252 67.35969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25700 -00019253 67.35972595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25710 -00019254 67.35972595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25710 -00019255 67.35974884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25720 -00019256 67.35975647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25720 -00019257 67.35977936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25730 -00019258 67.35977936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25730 -00019259 67.35980988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25740 -00019260 67.35981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25740 -00019261 67.35984039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25750 -00019262 67.35984039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25750 -00019263 67.35986328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25760 -00019264 67.35986328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25760 -00019265 67.35989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25770 -00019266 67.35989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25770 -00019267 67.35992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25780 -00019268 67.35992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25780 -00019269 67.35994720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25790 -00019270 67.35995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25790 -00019271 67.35997772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a0 -00019272 67.35997772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a0 -00019273 67.36000824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b0 -00019274 67.36001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b0 -00019275 67.36003876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c0 -00019276 67.36003876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c0 -00019277 67.36006165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d0 -00019278 67.36006165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d0 -00019279 67.36009979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e0 -00019280 67.36009979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e0 -00019281 67.36012268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f0 -00019282 67.36012268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f0 -00019283 67.36014557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25800 -00019284 67.36015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25800 -00019285 67.36017609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25810 -00019286 67.36017609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25810 -00019287 67.36020660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25820 -00019288 67.36021423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25820 -00019289 67.36023712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25830 -00019290 67.36023712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25830 -00019291 67.36026001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25840 -00019292 67.36026764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25840 -00019293 67.36029816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25850 -00019294 67.36029816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25850 -00019295 67.36032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25860 -00019296 67.36032867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25860 -00019297 67.36035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25870 -00019298 67.36035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25870 -00019299 67.36037445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25880 -00019300 67.36037445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25880 -00019301 67.36041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25890 -00019302 67.36041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25890 -00019303 67.36043549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a0 -00019304 67.36043549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a0 -00019305 67.36045837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b0 -00019306 67.36046600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b0 -00019307 67.36049652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -00019308 67.36049652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -00019309 67.36051941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -00019310 67.36052704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -00019311 67.36054993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -00019312 67.36054993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -00019313 67.36057281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -00019314 67.36057281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -00019315 67.36060333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -00019316 67.36061096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -00019317 67.36063385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -00019318 67.36063385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -00019319 67.36066437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -00019320 67.36066437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -00019321 67.36069489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -00019322 67.36069489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -00019323 67.36071777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -00019324 67.36072540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -00019325 67.36074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -00019326 67.36074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -00019327 67.36077118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -00019328 67.36077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -00019329 67.36080933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -00019330 67.36080933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -00019331 67.36083221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -00019332 67.36083984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -00019333 67.36086273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -00019334 67.36086273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -00019335 67.36089325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -00019336 67.36089325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -00019337 67.36092377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -00019338 67.36092377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -00019339 67.36094666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -00019340 67.36094666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -00019341 67.36096954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -00019342 67.36097717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -00019343 67.36100769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -00019344 67.36100769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -00019345 67.36103058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -00019346 67.36103821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -00019347 67.36106110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -00019348 67.36106110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -00019349 67.36109161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -00019350 67.36109161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -00019351 67.36112213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -00019352 67.36112213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -00019353 67.36114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -00019354 67.36114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -00019355 67.36116791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -00019356 67.36117554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -00019357 67.36120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -00019358 67.36120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -00019359 67.36122894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -00019360 67.36123657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -00019361 67.36125946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -00019362 67.36125946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -00019363 67.36128998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -00019364 67.36128998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -00019365 67.36132050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -00019366 67.36132050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -00019367 67.36134338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -00019368 67.36135101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -00019369 67.36137390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -00019370 67.36137390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -00019371 67.36140442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -00019372 67.36140442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -00019373 67.36143494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -00019374 67.36143494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -00019375 67.36145782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -00019376 67.36145782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -00019377 67.36148834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -00019378 67.36148834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -00019379 67.36151886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -00019380 67.36151886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -00019381 67.36154175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -00019382 67.36154938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -00019383 67.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -00019384 67.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -00019385 67.36160278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -00019386 67.36160278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -00019387 67.36163330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -00019388 67.36163330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -00019389 67.36165619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -00019390 67.36166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -00019391 67.36168671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -00019392 67.36168671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -00019393 67.36171722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -00019394 67.36171722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -00019395 67.36174011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -00019396 67.36174774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -00019397 67.36177063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -00019398 67.36177063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -00019399 67.36180115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -00019400 67.36180115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -00019401 67.36183167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -00019402 67.36183167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -00019403 67.36185455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -00019404 67.36186218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -00019405 67.36188507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -00019406 67.36188507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -00019407 67.36191559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -00019408 67.36192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -00019409 67.36194611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -00019410 67.36194611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -00019411 67.36196899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -00019412 67.36197662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -00019413 67.36199951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -00019414 67.36199951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -00019415 67.36203003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -00019416 67.36203766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -00019417 67.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -00019418 67.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -00019419 67.36208344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -00019420 67.36209106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -00019421 67.36212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -00019422 67.36212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -00019423 67.36214447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c60 -00019424 67.36215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c60 -00019425 67.36217499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c70 -00019426 67.36217499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c70 -00019427 67.36219788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c80 -00019428 67.36220551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c80 -00019429 67.36223602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c90 -00019430 67.36223602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c90 -00019431 67.36225891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca0 -00019432 67.36226654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca0 -00019433 67.36228943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb0 -00019434 67.36228943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb0 -00019435 67.36231995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc0 -00019436 67.36231995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc0 -00019437 67.36235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd0 -00019438 67.36235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd0 -00019439 67.36238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce0 -00019440 67.36238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce0 -00019441 67.36240387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf0 -00019442 67.36240387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf0 -00019443 67.36244202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d00 -00019444 67.36244202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d00 -00019445 67.36246490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d10 -00019446 67.36247253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d10 -00019447 67.36250305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d20 -00019448 67.36251068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d20 -00019449 67.36253357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d30 -00019450 67.36253357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d30 -00019451 67.36255646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d40 -00019452 67.36256409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d40 -00019453 67.36259460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d50 -00019454 67.36259460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d50 -00019455 67.36261749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d60 -00019456 67.36262512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d60 -00019457 67.36264801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d70 -00019458 67.36264801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d70 -00019459 67.36267853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d80 -00019460 67.36267853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d80 -00019461 67.36270905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d90 -00019462 67.36270905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d90 -00019463 67.36273193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25da0 -00019464 67.36273956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25da0 -00019465 67.36276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db0 -00019466 67.36276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25db0 -00019467 67.36279297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc0 -00019468 67.36280060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dc0 -00019469 67.36282349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd0 -00019470 67.36282349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25dd0 -00019471 67.36284637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de0 -00019472 67.36285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25de0 -00019473 67.36287689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df0 -00019474 67.36287689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df0 -00019475 67.36290741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e00 -00019476 67.36290741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e00 -00019477 67.36293030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e10 -00019478 67.36293793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e10 -00019479 67.36296082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e20 -00019480 67.36296082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e20 -00019481 67.36299133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e30 -00019482 67.36299896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e30 -00019483 67.36302185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e40 -00019484 67.36302185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e40 -00019485 67.36304474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -00019486 67.36305237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -00019487 67.36307526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -00019488 67.36307526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -00019489 67.36310577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -00019490 67.36310577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -00019491 67.36312866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -00019492 67.36313629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -00019493 67.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -00019494 67.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -00019495 67.36318970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -00019496 67.36319733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -00019497 67.36322021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -00019498 67.36322021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -00019499 67.36324310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -00019500 67.36325073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -00019501 67.36327362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -00019502 67.36327362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -00019503 67.36330414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -00019504 67.36330414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -00019505 67.36333466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -00019506 67.36333466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -00019507 67.36335754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -00019508 67.36335754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -00019509 67.36339569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -00019510 67.36339569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -00019511 67.36341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -00019512 67.36341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -00019513 67.36344147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -00019514 67.36344910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -00019515 67.36347198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -00019516 67.36347198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -00019517 67.36350250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -00019518 67.36351013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -00019519 67.36353302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -00019520 67.36353302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -00019521 67.36355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -00019522 67.36356354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -00019523 67.36359406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -00019524 67.36359406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -00019525 67.36361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -00019526 67.36361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -00019527 67.36364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -00019528 67.36364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -00019529 67.36367035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -00019530 67.36367035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -00019531 67.36370087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -00019532 67.36370850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -00019533 67.36373138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd0 -00019534 67.36373138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd0 -00019535 67.36375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe0 -00019536 67.36376190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe0 -00019537 67.36379242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff0 -00019538 67.36379242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff0 -00019539 67.36381531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26000 -00019540 67.36382294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26000 -00019541 67.36384583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26010 -00019542 67.36384583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26010 -00019543 67.36386871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26020 -00019544 67.36386871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26020 -00019545 67.36390686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26030 -00019546 67.36390686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26030 -00019547 67.36392975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26040 -00019548 67.36392975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26040 -00019549 67.36395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26050 -00019550 67.36396027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26050 -00019551 67.36399078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26060 -00019552 67.36399078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26060 -00019553 67.36401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26070 -00019554 67.36402130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26070 -00019555 67.36404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26080 -00019556 67.36404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26080 -00019557 67.36406708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26090 -00019558 67.36407471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26090 -00019559 67.36410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -00019560 67.36410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a0 -00019561 67.36412811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -00019562 67.36413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b0 -00019563 67.36415863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -00019564 67.36415863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c0 -00019565 67.36418915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -00019566 67.36418915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d0 -00019567 67.36421204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -00019568 67.36421967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e0 -00019569 67.36424255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -00019570 67.36424255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f0 -00019571 67.36426544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -00019572 67.36427307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26100 -00019573 67.36430359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -00019574 67.36430359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26110 -00019575 67.36432648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -00019576 67.36433411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26120 -00019577 67.36435699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -00019578 67.36435699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26130 -00019579 67.36438751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -00019580 67.36438751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26140 -00019581 67.36441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -00019582 67.36441803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26150 -00019583 67.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -00019584 67.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26160 -00019585 67.36446381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -00019586 67.36447144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26170 -00019587 67.36450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -00019588 67.36450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26180 -00019589 67.36452484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -00019590 67.36453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26190 -00019591 67.36455536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -00019592 67.36455536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a0 -00019593 67.36458588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -00019594 67.36458588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b0 -00019595 67.36460876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -00019596 67.36461639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c0 -00019597 67.36463928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -00019598 67.36463928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d0 -00019599 67.36466217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -00019600 67.36466980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e0 -00019601 67.36470032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -00019602 67.36470032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f0 -00019603 67.36472321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26200 -00019604 67.36473083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26200 -00019605 67.36475372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26210 -00019606 67.36475372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26210 -00019607 67.36478424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26220 -00019608 67.36478424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26220 -00019609 67.36481476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26230 -00019610 67.36481476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26230 -00019611 67.36483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26240 -00019612 67.36483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26240 -00019613 67.36486053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26250 -00019614 67.36486816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26250 -00019615 67.36489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26260 -00019616 67.36489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26260 -00019617 67.36492157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26270 -00019618 67.36492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26270 -00019619 67.36495209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26280 -00019620 67.36495209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26280 -00019621 67.36498260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26290 -00019622 67.36498260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26290 -00019623 67.36501312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a0 -00019624 67.36501312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a0 -00019625 67.36503601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b0 -00019626 67.36503601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b0 -00019627 67.36505890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c0 -00019628 67.36506653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c0 -00019629 67.36509705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d0 -00019630 67.36509705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d0 -00019631 67.36511993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e0 -00019632 67.36512756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e0 -00019633 67.36515045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f0 -00019634 67.36515045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f0 -00019635 67.36518097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26300 -00019636 67.36518097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26300 -00019637 67.36521149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26310 -00019638 67.36521149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26310 -00019639 67.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26320 -00019640 67.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26320 -00019641 67.36526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26330 -00019642 67.36526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26330 -00019643 67.36529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26340 -00019644 67.36529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26340 -00019645 67.36532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26350 -00019646 67.36532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26350 -00019647 67.36534882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26360 -00019648 67.36534882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26360 -00019649 67.36537933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26370 -00019650 67.36537933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26370 -00019651 67.36540985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26380 -00019652 67.36540985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26380 -00019653 67.36543274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26390 -00019654 67.36544037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26390 -00019655 67.36546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a0 -00019656 67.36546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a0 -00019657 67.36549377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b0 -00019658 67.36550140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b0 -00019659 67.36552429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c0 -00019660 67.36552429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c0 -00019661 67.36554718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d0 -00019662 67.36554718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d0 -00019663 67.36557770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e0 -00019664 67.36557770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e0 -00019665 67.36560822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f0 -00019666 67.36560822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f0 -00019667 67.36563110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26400 -00019668 67.36563873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26400 -00019669 67.36566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26410 -00019670 67.36566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26410 -00019671 67.36569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26420 -00019672 67.36569977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26420 -00019673 67.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -00019674 67.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -00019675 67.36574554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -00019676 67.36575317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -00019677 67.36577606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -00019678 67.36577606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -00019679 67.36580658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -00019680 67.36581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -00019681 67.36583710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -00019682 67.36583710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -00019683 67.36585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -00019684 67.36585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -00019685 67.36589050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -00019686 67.36589813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -00019687 67.36592102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -00019688 67.36592102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -00019689 67.36594391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -00019690 67.36595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -00019691 67.36597443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -00019692 67.36597443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -00019693 67.36600494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -00019694 67.36601257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -00019695 67.36603546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -00019696 67.36603546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -00019697 67.36605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -00019698 67.36605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -00019699 67.36608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -00019700 67.36609650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -00019701 67.36611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -00019702 67.36611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -00019703 67.36614227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -00019704 67.36614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -00019705 67.36617279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -00019706 67.36617279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -00019707 67.36620331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -00019708 67.36621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -00019709 67.36623383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -00019710 67.36623383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -00019711 67.36625671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -00019712 67.36625671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -00019713 67.36628723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -00019714 67.36629486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -00019715 67.36631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -00019716 67.36631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -00019717 67.36634064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26590 -00019718 67.36634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26590 -00019719 67.36637115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a0 -00019720 67.36637115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a0 -00019721 67.36640167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b0 -00019722 67.36640930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b0 -00019723 67.36643219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c0 -00019724 67.36643219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c0 -00019725 67.36645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d0 -00019726 67.36645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d0 -00019727 67.36648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e0 -00019728 67.36649323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e0 -00019729 67.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f0 -00019730 67.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f0 -00019731 67.36653900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26600 -00019732 67.36654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26600 -00019733 67.36656952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26610 -00019734 67.36656952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26610 -00019735 67.36660004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26620 -00019736 67.36660767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26620 -00019737 67.36663055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26630 -00019738 67.36663055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26630 -00019739 67.36665344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26640 -00019740 67.36666107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26640 -00019741 67.36669159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26650 -00019742 67.36669159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26650 -00019743 67.36671448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26660 -00019744 67.36671448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26660 -00019745 67.36673737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26670 -00019746 67.36674500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26670 -00019747 67.36676788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26680 -00019748 67.36676788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26680 -00019749 67.36679840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26690 -00019750 67.36680603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26690 -00019751 67.36682892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a0 -00019752 67.36682892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a0 -00019753 67.36685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b0 -00019754 67.36685944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b0 -00019755 67.36688995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c0 -00019756 67.36688995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c0 -00019757 67.36691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d0 -00019758 67.36691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d0 -00019759 67.36693573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e0 -00019760 67.36694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e0 -00019761 67.36696625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f0 -00019762 67.36696625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f0 -00019763 67.36699677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26700 -00019764 67.36700439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26700 -00019765 67.36702728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26710 -00019766 67.36702728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26710 -00019767 67.36705017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26720 -00019768 67.36705017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26720 -00019769 67.36708832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26730 -00019770 67.36708832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26730 -00019771 67.36711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26740 -00019772 67.36711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26740 -00019773 67.36713409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26750 -00019774 67.36714172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26750 -00019775 67.36716461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26760 -00019776 67.36716461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26760 -00019777 67.36719513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26770 -00019778 67.36720276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26770 -00019779 67.36722565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26780 -00019780 67.36722565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26780 -00019781 67.36724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26790 -00019782 67.36724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26790 -00019783 67.36728668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a0 -00019784 67.36728668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a0 -00019785 67.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b0 -00019786 67.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b0 -00019787 67.36733246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c0 -00019788 67.36734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c0 -00019789 67.36736298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d0 -00019790 67.36736298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d0 -00019791 67.36739349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267e0 -00019792 67.36740112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267e0 -00019793 67.36742401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267f0 -00019794 67.36742401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x267f0 -00019795 67.36744690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26800 -00019796 67.36744690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26800 -00019797 67.36747742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26810 -00019798 67.36748505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26810 -00019799 67.36750793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26820 -00019800 67.36750793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26820 -00019801 67.36753082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26830 -00019802 67.36753845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26830 -00019803 67.36756134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26840 -00019804 67.36756134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26840 -00019805 67.36759186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26850 -00019806 67.36759949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26850 -00019807 67.36762238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26860 -00019808 67.36762238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26860 -00019809 67.36764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26870 -00019810 67.36765289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26870 -00019811 67.36768341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26880 -00019812 67.36768341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26880 -00019813 67.36770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26890 -00019814 67.36770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26890 -00019815 67.36772919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a0 -00019816 67.36773682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268a0 -00019817 67.36775970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b0 -00019818 67.36775970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b0 -00019819 67.36779022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c0 -00019820 67.36779785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c0 -00019821 67.36782074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d0 -00019822 67.36782074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d0 -00019823 67.36784363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e0 -00019824 67.36785126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e0 -00019825 67.36788177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f0 -00019826 67.36788177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f0 -00019827 67.36790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26900 -00019828 67.36790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26900 -00019829 67.36792755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26910 -00019830 67.36793518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26910 -00019831 67.36795807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26920 -00019832 67.36795807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26920 -00019833 67.36798859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26930 -00019834 67.36799622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26930 -00019835 67.36801910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26940 -00019836 67.36801910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26940 -00019837 67.36804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26950 -00019838 67.36804962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26950 -00019839 67.36808014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26960 -00019840 67.36808014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26960 -00019841 67.36810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26970 -00019842 67.36810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26970 -00019843 67.36812592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26980 -00019844 67.36813354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26980 -00019845 67.36815643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26990 -00019846 67.36815643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26990 -00019847 67.36818695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a0 -00019848 67.36819458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269a0 -00019849 67.36821747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b0 -00019850 67.36821747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269b0 -00019851 67.36824036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c0 -00019852 67.36824799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269c0 -00019853 67.36827850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269d0 -00019854 67.36827850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269d0 -00019855 67.36830139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269e0 -00019856 67.36830139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269e0 -00019857 67.36833191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -00019858 67.36833191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -00019859 67.36835480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -00019860 67.36835480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -00019861 67.36838531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -00019862 67.36839294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -00019863 67.36841583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -00019864 67.36841583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -00019865 67.36843872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -00019866 67.36844635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -00019867 67.36847687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -00019868 67.36847687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -00019869 67.36849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -00019870 67.36849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -00019871 67.36852264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -00019872 67.36853027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -00019873 67.36855316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -00019874 67.36855316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -00019875 67.36858368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -00019876 67.36859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -00019877 67.36861420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -00019878 67.36861420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -00019879 67.36863708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -00019880 67.36864471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -00019881 67.36867523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -00019882 67.36867523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -00019883 67.36869812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -00019884 67.36870575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -00019885 67.36872864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -00019886 67.36872864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -00019887 67.36875153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -00019888 67.36875153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -00019889 67.36878967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -00019890 67.36879730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -00019891 67.36882782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -00019892 67.36882782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -00019893 67.36885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -00019894 67.36885834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -00019895 67.36888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -00019896 67.36888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -00019897 67.36891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -00019898 67.36891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -00019899 67.36893463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -00019900 67.36894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -00019901 67.36896515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b50 -00019902 67.36896515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b50 -00019903 67.36899567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b60 -00019904 67.36899567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b60 -00019905 67.36902618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b70 -00019906 67.36902618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b70 -00019907 67.36904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b80 -00019908 67.36905670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b80 -00019909 67.36907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b90 -00019910 67.36907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b90 -00019911 67.36911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba0 -00019912 67.36911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ba0 -00019913 67.36914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb0 -00019914 67.36914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bb0 -00019915 67.36916351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc0 -00019916 67.36917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bc0 -00019917 67.36919403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd0 -00019918 67.36919403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bd0 -00019919 67.36922455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be0 -00019920 67.36922455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26be0 -00019921 67.36924744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf0 -00019922 67.36925507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26bf0 -00019923 67.36927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c00 -00019924 67.36927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c00 -00019925 67.36930847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c10 -00019926 67.36930847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c10 -00019927 67.36933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c20 -00019928 67.36933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c20 -00019929 67.36936188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c30 -00019930 67.36936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c30 -00019931 67.36939240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c40 -00019932 67.36939240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c40 -00019933 67.36942291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c50 -00019934 67.36942291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c50 -00019935 67.36944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c60 -00019936 67.36945343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c60 -00019937 67.36947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c70 -00019938 67.36947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c70 -00019939 67.36950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c80 -00019940 67.36950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c80 -00019941 67.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c90 -00019942 67.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c90 -00019943 67.36956024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca0 -00019944 67.36956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca0 -00019945 67.36959076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb0 -00019946 67.36959076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb0 -00019947 67.36962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc0 -00019948 67.36962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc0 -00019949 67.36965179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd0 -00019950 67.36965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd0 -00019951 67.36968231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce0 -00019952 67.36968231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce0 -00019953 67.36970520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf0 -00019954 67.36970520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf0 -00019955 67.36973572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d00 -00019956 67.36974335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d00 -00019957 67.36976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d10 -00019958 67.36976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d10 -00019959 67.36978912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d20 -00019960 67.36979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d20 -00019961 67.36982727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d30 -00019962 67.36982727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d30 -00019963 67.36985016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d40 -00019964 67.36985779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d40 -00019965 67.36988068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d50 -00019966 67.36988068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d50 -00019967 67.36990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d60 -00019968 67.36990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d60 -00019969 67.36993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d70 -00019970 67.36994171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d70 -00019971 67.36996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d80 -00019972 67.36996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d80 -00019973 67.36998749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d90 -00019974 67.36999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d90 -00019975 67.37002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da0 -00019976 67.37002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da0 -00019977 67.37004852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db0 -00019978 67.37005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db0 -00019979 67.37007904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc0 -00019980 67.37007904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc0 -00019981 67.37010193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd0 -00019982 67.37010956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd0 -00019983 67.37014008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de0 -00019984 67.37014008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de0 -00019985 67.37016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df0 -00019986 67.37016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df0 -00019987 67.37018585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e00 -00019988 67.37019348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e00 -00019989 67.37022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e10 -00019990 67.37022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e10 -00019991 67.37024689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e20 -00019992 67.37025452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e20 -00019993 67.37027740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e30 -00019994 67.37027740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e30 -00019995 67.37030029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e40 -00019996 67.37030792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e40 -00019997 67.37033844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e50 -00019998 67.37033844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e50 -00019999 67.37036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e60 -00020000 67.37036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e60 -00020001 67.37038422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e70 -00020002 67.37039185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e70 -00020003 67.37042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e80 -00020004 67.37042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e80 -00020005 67.37044525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e90 -00020006 67.37045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e90 -00020007 67.37047577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea0 -00020008 67.37047577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea0 -00020009 67.37049866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb0 -00020010 67.37050629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb0 -00020011 67.37053680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec0 -00020012 67.37053680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec0 -00020013 67.37055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed0 -00020014 67.37055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed0 -00020015 67.37058258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee0 -00020016 67.37059021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee0 -00020017 67.37062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef0 -00020018 67.37062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef0 -00020019 67.37064362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f00 -00020020 67.37065125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f00 -00020021 67.37067413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f10 -00020022 67.37067413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f10 -00020023 67.37069702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f20 -00020024 67.37070465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f20 -00020025 67.37073517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f30 -00020026 67.37073517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f30 -00020027 67.37075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f40 -00020028 67.37076569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f40 -00020029 67.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f50 -00020030 67.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f50 -00020031 67.37081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f60 -00020032 67.37081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f60 -00020033 67.37084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f70 -00020034 67.37084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f70 -00020035 67.37087250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f80 -00020036 67.37088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f80 -00020037 67.37090302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f90 -00020038 67.37090302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f90 -00020039 67.37093353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fa0 -00020040 67.37094116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fa0 -00020041 67.37096405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fb0 -00020042 67.37096405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fb0 -00020043 67.37098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fc0 -00020044 67.37098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fc0 -00020045 67.37101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -00020046 67.37101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fd0 -00020047 67.37104797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -00020048 67.37104797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26fe0 -00020049 67.37107086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -00020050 67.37107849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ff0 -00020051 67.37110138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -00020052 67.37110138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27000 -00020053 67.37113190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -00020054 67.37113953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -00020055 67.37116241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -00020056 67.37116241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -00020057 67.37118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -00020058 67.37118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -00020059 67.37121582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -00020060 67.37121582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -00020061 67.37124634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -00020062 67.37124634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -00020063 67.37126923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -00020064 67.37127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -00020065 67.37129974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -00020066 67.37129974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -00020067 67.37133026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -00020068 67.37133789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -00020069 67.37136078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -00020070 67.37136078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -00020071 67.37138367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -00020072 67.37139130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -00020073 67.37141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -00020074 67.37141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -00020075 67.37144470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -00020076 67.37144470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -00020077 67.37146759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -00020078 67.37147522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -00020079 67.37149811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -00020080 67.37149811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -00020081 67.37152863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -00020082 67.37153625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -00020083 67.37155914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -00020084 67.37155914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -00020085 67.37158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -00020086 67.37158966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -00020087 67.37161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -00020088 67.37161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -00020089 67.37164307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -00020090 67.37165070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -00020091 67.37167358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -00020092 67.37167358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -00020093 67.37169647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -00020094 67.37170410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -00020095 67.37173462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -00020096 67.37173462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -00020097 67.37175751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -00020098 67.37175751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -00020099 67.37178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -00020100 67.37178802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -00020101 67.37181091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -00020102 67.37181091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -00020103 67.37184143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -00020104 67.37184906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -00020105 67.37187195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -00020106 67.37187195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -00020107 67.37189484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -00020108 67.37190247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -00020109 67.37193298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -00020110 67.37193298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -00020111 67.37195587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -00020112 67.37195587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -00020113 67.37197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -00020114 67.37198639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -00020115 67.37200928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -00020116 67.37200928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -00020117 67.37203979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -00020118 67.37204742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -00020119 67.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27220 -00020120 67.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27220 -00020121 67.37209320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27230 -00020122 67.37210083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27230 -00020123 67.37213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27240 -00020124 67.37213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27240 -00020125 67.37215424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27250 -00020126 67.37216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27250 -00020127 67.37218475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27260 -00020128 67.37218475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27260 -00020129 67.37220764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27270 -00020130 67.37220764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27270 -00020131 67.37223816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27280 -00020132 67.37224579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27280 -00020133 67.37226868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27290 -00020134 67.37226868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27290 -00020135 67.37229156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a0 -00020136 67.37229919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a0 -00020137 67.37232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b0 -00020138 67.37232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b0 -00020139 67.37235260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c0 -00020140 67.37236023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c0 -00020141 67.37238312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d0 -00020142 67.37238312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d0 -00020143 67.37240601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e0 -00020144 67.37241364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e0 -00020145 67.37244415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f0 -00020146 67.37244415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f0 -00020147 67.37246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27300 -00020148 67.37246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27300 -00020149 67.37248993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27310 -00020150 67.37249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27310 -00020151 67.37252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27320 -00020152 67.37252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27320 -00020153 67.37255096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27330 -00020154 67.37255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27330 -00020155 67.37258148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27340 -00020156 67.37258148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27340 -00020157 67.37260437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27350 -00020158 67.37260437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27350 -00020159 67.37264252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27360 -00020160 67.37264252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27360 -00020161 67.37266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27370 -00020162 67.37267303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27370 -00020163 67.37269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27380 -00020164 67.37269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27380 -00020165 67.37272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27390 -00020166 67.37272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27390 -00020167 67.37274933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a0 -00020168 67.37275696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a0 -00020169 67.37277985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b0 -00020170 67.37277985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b0 -00020171 67.37280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c0 -00020172 67.37281036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273c0 -00020173 67.37284088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d0 -00020174 67.37284088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273d0 -00020175 67.37286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e0 -00020176 67.37287140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273e0 -00020177 67.37289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f0 -00020178 67.37289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273f0 -00020179 67.37292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27400 -00020180 67.37292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27400 -00020181 67.37295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27410 -00020182 67.37295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27410 -00020183 67.37297821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27420 -00020184 67.37297821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27420 -00020185 67.37300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27430 -00020186 67.37300873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27430 -00020187 67.37303925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27440 -00020188 67.37303925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27440 -00020189 67.37306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27450 -00020190 67.37306976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27450 -00020191 67.37309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27460 -00020192 67.37309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27460 -00020193 67.37312317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27470 -00020194 67.37312317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27470 -00020195 67.37315369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27480 -00020196 67.37315369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27480 -00020197 67.37317657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27490 -00020198 67.37317657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27490 -00020199 67.37320709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a0 -00020200 67.37320709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a0 -00020201 67.37323761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b0 -00020202 67.37323761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b0 -00020203 67.37326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c0 -00020204 67.37326813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c0 -00020205 67.37329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d0 -00020206 67.37329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d0 -00020207 67.37332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e0 -00020208 67.37332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e0 -00020209 67.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f0 -00020210 67.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f0 -00020211 67.37337494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27500 -00020212 67.37338257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27500 -00020213 67.37340546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27510 -00020214 67.37340546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27510 -00020215 67.37343597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27520 -00020216 67.37343597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27520 -00020217 67.37345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27530 -00020218 67.37346649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27530 -00020219 67.37348938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27540 -00020220 67.37348938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27540 -00020221 67.37351990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27550 -00020222 67.37351990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27550 -00020223 67.37355042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27560 -00020224 67.37355042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27560 -00020225 67.37357330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27570 -00020226 67.37358093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27570 -00020227 67.37360382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27580 -00020228 67.37360382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27580 -00020229 67.37363434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27590 -00020230 67.37364197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27590 -00020231 67.37366486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a0 -00020232 67.37366486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a0 -00020233 67.37368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b0 -00020234 67.37368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b0 -00020235 67.37371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c0 -00020236 67.37371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c0 -00020237 67.37374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d0 -00020238 67.37374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d0 -00020239 67.37377167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e0 -00020240 67.37377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e0 -00020241 67.37380219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f0 -00020242 67.37380219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f0 -00020243 67.37383270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27600 -00020244 67.37384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27600 -00020245 67.37386322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27610 -00020246 67.37386322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27610 -00020247 67.37388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27620 -00020248 67.37388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27620 -00020249 67.37391663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27630 -00020250 67.37391663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27630 -00020251 67.37394714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27640 -00020252 67.37394714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27640 -00020253 67.37397003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27650 -00020254 67.37397766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27650 -00020255 67.37400055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27660 -00020256 67.37400055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27660 -00020257 67.37403107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27670 -00020258 67.37403870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27670 -00020259 67.37406158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27680 -00020260 67.37406158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27680 -00020261 67.37408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27690 -00020262 67.37408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27690 -00020263 67.37411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a0 -00020264 67.37411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a0 -00020265 67.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b0 -00020266 67.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b0 -00020267 67.37416840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c0 -00020268 67.37417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c0 -00020269 67.37419891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d0 -00020270 67.37419891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d0 -00020271 67.37422943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e0 -00020272 67.37423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e0 -00020273 67.37425995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f0 -00020274 67.37425995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f0 -00020275 67.37428284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27700 -00020276 67.37428284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27700 -00020277 67.37431335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27710 -00020278 67.37431335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27710 -00020279 67.37434387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27720 -00020280 67.37434387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27720 -00020281 67.37436676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27730 -00020282 67.37437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27730 -00020283 67.37439728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27740 -00020284 67.37439728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27740 -00020285 67.37442780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27750 -00020286 67.37443542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27750 -00020287 67.37445831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27760 -00020288 67.37445831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27760 -00020289 67.37448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27770 -00020290 67.37448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27770 -00020291 67.37451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27780 -00020292 67.37451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27780 -00020293 67.37454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27790 -00020294 67.37454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27790 -00020295 67.37456512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a0 -00020296 67.37457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a0 -00020297 67.37459564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b0 -00020298 67.37459564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b0 -00020299 67.37462616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c0 -00020300 67.37463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c0 -00020301 67.37465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d0 -00020302 67.37465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d0 -00020303 67.37468719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e0 -00020304 67.37468719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e0 -00020305 67.37471008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f0 -00020306 67.37471008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f0 -00020307 67.37474823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27800 -00020308 67.37474823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27800 -00020309 67.37477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27810 -00020310 67.37477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27810 -00020311 67.37479401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27820 -00020312 67.37480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27820 -00020313 67.37483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27830 -00020314 67.37483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27830 -00020315 67.37485504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27840 -00020316 67.37486267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27840 -00020317 67.37488556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27850 -00020318 67.37488556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27850 -00020319 67.37490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27860 -00020320 67.37491608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27860 -00020321 67.37494659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27870 -00020322 67.37494659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27870 -00020323 67.37496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27880 -00020324 67.37496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27880 -00020325 67.37500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27890 -00020326 67.37500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27890 -00020327 67.37503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a0 -00020328 67.37503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a0 -00020329 67.37505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b0 -00020330 67.37506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b0 -00020331 67.37508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c0 -00020332 67.37508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c0 -00020333 67.37510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d0 -00020334 67.37511444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d0 -00020335 67.37514496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e0 -00020336 67.37514496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e0 -00020337 67.37516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f0 -00020338 67.37517548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f0 -00020339 67.37519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27900 -00020340 67.37519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27900 -00020341 67.37522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27910 -00020342 67.37522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27910 -00020343 67.37525940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27920 -00020344 67.37525940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27920 -00020345 67.37528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27930 -00020346 67.37528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27930 -00020347 67.37530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27940 -00020348 67.37531281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27940 -00020349 67.37534332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27950 -00020350 67.37534332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27950 -00020351 67.37536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27960 -00020352 67.37537384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27960 -00020353 67.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27970 -00020354 67.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27970 -00020355 67.37542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27980 -00020356 67.37542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27980 -00020357 67.37545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27990 -00020358 67.37545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27990 -00020359 67.37548065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279a0 -00020360 67.37548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279a0 -00020361 67.37551117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279b0 -00020362 67.37551117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279b0 -00020363 67.37554169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279c0 -00020364 67.37554169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279c0 -00020365 67.37556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279d0 -00020366 67.37557220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279d0 -00020367 67.37559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279e0 -00020368 67.37559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279e0 -00020369 67.37562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f0 -00020370 67.37562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x279f0 -00020371 67.37565613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a00 -00020372 67.37565613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a00 -00020373 67.37567902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a10 -00020374 67.37568665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a10 -00020375 67.37570953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a20 -00020376 67.37570953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a20 -00020377 67.37574005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a30 -00020378 67.37574768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a30 -00020379 67.37577057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a40 -00020380 67.37577057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a40 -00020381 67.37579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a50 -00020382 67.37579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a50 -00020383 67.37582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a60 -00020384 67.37582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a60 -00020385 67.37585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a70 -00020386 67.37585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a70 -00020387 67.37587738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a80 -00020388 67.37588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a80 -00020389 67.37590790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a90 -00020390 67.37590790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a90 -00020391 67.37593842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa0 -00020392 67.37594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa0 -00020393 67.37596893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab0 -00020394 67.37596893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab0 -00020395 67.37599182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac0 -00020396 67.37599945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac0 -00020397 67.37602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad0 -00020398 67.37602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad0 -00020399 67.37605286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae0 -00020400 67.37605286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae0 -00020401 67.37607574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af0 -00020402 67.37608337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af0 -00020403 67.37610626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b00 -00020404 67.37610626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b00 -00020405 67.37613678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b10 -00020406 67.37614441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b10 -00020407 67.37616730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b20 -00020408 67.37616730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b20 -00020409 67.37619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b30 -00020410 67.37619781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b30 -00020411 67.37622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b40 -00020412 67.37622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b40 -00020413 67.37625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b50 -00020414 67.37625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b50 -00020415 67.37627411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b60 -00020416 67.37628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b60 -00020417 67.37630463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b70 -00020418 67.37630463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b70 -00020419 67.37633514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b80 -00020420 67.37634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b80 -00020421 67.37636566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b90 -00020422 67.37636566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b90 -00020423 67.37638855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba0 -00020424 67.37639618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba0 -00020425 67.37641907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb0 -00020426 67.37641907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb0 -00020427 67.37644958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc0 -00020428 67.37644958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc0 -00020429 67.37647247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd0 -00020430 67.37648010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd0 -00020431 67.37650299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be0 -00020432 67.37650299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be0 -00020433 67.37653351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf0 -00020434 67.37654114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf0 -00020435 67.37656403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c00 -00020436 67.37656403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c00 -00020437 67.37658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c10 -00020438 67.37659454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c10 -00020439 67.37661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c20 -00020440 67.37661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c20 -00020441 67.37664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c30 -00020442 67.37664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c30 -00020443 67.37667084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c40 -00020444 67.37667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c40 -00020445 67.37670135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c50 -00020446 67.37670135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c50 -00020447 67.37673187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c60 -00020448 67.37673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c60 -00020449 67.37676239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c70 -00020450 67.37676239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c70 -00020451 67.37678528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c80 -00020452 67.37679291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c80 -00020453 67.37681580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c90 -00020454 67.37681580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c90 -00020455 67.37684631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ca0 -00020456 67.37685394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ca0 -00020457 67.37687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cb0 -00020458 67.37687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cb0 -00020459 67.37689972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cc0 -00020460 67.37689972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cc0 -00020461 67.37693024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cd0 -00020462 67.37693787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cd0 -00020463 67.37696075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce0 -00020464 67.37696075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce0 -00020465 67.37698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf0 -00020466 67.37699127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf0 -00020467 67.37701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d00 -00020468 67.37701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d00 -00020469 67.37704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d10 -00020470 67.37705231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d10 -00020471 67.37707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d20 -00020472 67.37707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d20 -00020473 67.37709808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d30 -00020474 67.37709808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d30 -00020475 67.37713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d40 -00020476 67.37713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d40 -00020477 67.37715912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d50 -00020478 67.37715912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d50 -00020479 67.37718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d60 -00020480 67.37718964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d60 -00020481 67.37721252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d70 -00020482 67.37721252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d70 -00020483 67.37724304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d80 -00020484 67.37725067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d80 -00020485 67.37727356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d90 -00020486 67.37727356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d90 -00020487 67.37729645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da0 -00020488 67.37730408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da0 -00020489 67.37733459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db0 -00020490 67.37733459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db0 -00020491 67.37735748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc0 -00020492 67.37735748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc0 -00020493 67.37738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd0 -00020494 67.37738800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd0 -00020495 67.37741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de0 -00020496 67.37741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de0 -00020497 67.37744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df0 -00020498 67.37744904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df0 -00020499 67.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e00 -00020500 67.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e00 -00020501 67.37749481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e10 -00020502 67.37750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e10 -00020503 67.37753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e20 -00020504 67.37753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e20 -00020505 67.37755585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e30 -00020506 67.37755585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e30 -00020507 67.37757874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e40 -00020508 67.37758636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e40 -00020509 67.37760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e50 -00020510 67.37760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e50 -00020511 67.37763977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e60 -00020512 67.37764740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e60 -00020513 67.37767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e70 -00020514 67.37767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e70 -00020515 67.37769318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e80 -00020516 67.37770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e80 -00020517 67.37773132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e90 -00020518 67.37773132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e90 -00020519 67.37775421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea0 -00020520 67.37776184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea0 -00020521 67.37778473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb0 -00020522 67.37778473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb0 -00020523 67.37780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec0 -00020524 67.37781525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec0 -00020525 67.37784576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed0 -00020526 67.37784576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed0 -00020527 67.37786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee0 -00020528 67.37787628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee0 -00020529 67.37789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef0 -00020530 67.37789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef0 -00020531 67.37792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f00 -00020532 67.37792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f00 -00020533 67.37795258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f10 -00020534 67.37796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f10 -00020535 67.37798309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f20 -00020536 67.37798309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f20 -00020537 67.37800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f30 -00020538 67.37801361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f30 -00020539 67.37804413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f40 -00020540 67.37804413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f40 -00020541 67.37806702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f50 -00020542 67.37807465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f50 -00020543 67.37809753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f60 -00020544 67.37809753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f60 -00020545 67.37812805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f70 -00020546 67.37812805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f70 -00020547 67.37815094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f80 -00020548 67.37815857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f80 -00020549 67.37818146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f90 -00020550 67.37818146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f90 -00020551 67.37820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa0 -00020552 67.37821198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa0 -00020553 67.37824249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb0 -00020554 67.37824249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb0 -00020555 67.37826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc0 -00020556 67.37827301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc0 -00020557 67.37829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd0 -00020558 67.37829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd0 -00020559 67.37832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe0 -00020560 67.37832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe0 -00020561 67.37835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff0 -00020562 67.37835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff0 -00020563 67.37837982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28000 -00020564 67.37837982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28000 -00020565 67.37840271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28010 -00020566 67.37841034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28010 -00020567 67.37844086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28020 -00020568 67.37844086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28020 -00020569 67.37846375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28030 -00020570 67.37847137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28030 -00020571 67.37849426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28040 -00020572 67.37849426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28040 -00020573 67.37852478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28050 -00020574 67.37852478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28050 -00020575 67.37855530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28060 -00020576 67.37855530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28060 -00020577 67.37857819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28070 -00020578 67.37857819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28070 -00020579 67.37860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28080 -00020580 67.37860870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28080 -00020581 67.37863922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28090 -00020582 67.37863922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28090 -00020583 67.37866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a0 -00020584 67.37866974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a0 -00020585 67.37869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b0 -00020586 67.37869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b0 -00020587 67.37872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c0 -00020588 67.37872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c0 -00020589 67.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d0 -00020590 67.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d0 -00020591 67.37877655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e0 -00020592 67.37878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e0 -00020593 67.37880707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f0 -00020594 67.37880707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f0 -00020595 67.37883759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28100 -00020596 67.37884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28100 -00020597 67.37886810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28110 -00020598 67.37886810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28110 -00020599 67.37889099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28120 -00020600 67.37889099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28120 -00020601 67.37892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28130 -00020602 67.37892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28130 -00020603 67.37895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28140 -00020604 67.37895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28140 -00020605 67.37897491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28150 -00020606 67.37898254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28150 -00020607 67.37900543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28160 -00020608 67.37900543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28160 -00020609 67.37903595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28170 -00020610 67.37904358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28170 -00020611 67.37906647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28180 -00020612 67.37906647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28180 -00020613 67.37908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28190 -00020614 67.37908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28190 -00020615 67.37911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a0 -00020616 67.37911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a0 -00020617 67.37915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b0 -00020618 67.37915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b0 -00020619 67.37917328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c0 -00020620 67.37918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c0 -00020621 67.37920380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d0 -00020622 67.37920380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d0 -00020623 67.37923431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e0 -00020624 67.37924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e0 -00020625 67.37926483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f0 -00020626 67.37926483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f0 -00020627 67.37928772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28200 -00020628 67.37929535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28200 -00020629 67.37931824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28210 -00020630 67.37931824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28210 -00020631 67.37934875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28220 -00020632 67.37935638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28220 -00020633 67.37937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28230 -00020634 67.37937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28230 -00020635 67.37940216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28240 -00020636 67.37940216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28240 -00020637 67.37943268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28250 -00020638 67.37944031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28250 -00020639 67.37946320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28260 -00020640 67.37946320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28260 -00020641 67.37948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28270 -00020642 67.37949371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28270 -00020643 67.37951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28280 -00020644 67.37951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28280 -00020645 67.37954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28290 -00020646 67.37955475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28290 -00020647 67.37957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282a0 -00020648 67.37957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282a0 -00020649 67.37960052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282b0 -00020650 67.37960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282b0 -00020651 67.37963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282c0 -00020652 67.37963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282c0 -00020653 67.37966156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282d0 -00020654 67.37966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282d0 -00020655 67.37969208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282e0 -00020656 67.37969208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282e0 -00020657 67.37971497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282f0 -00020658 67.37971497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x282f0 -00020659 67.37974548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28300 -00020660 67.37975311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28300 -00020661 67.37977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28310 -00020662 67.37977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28310 -00020663 67.37979889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28320 -00020664 67.37980652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28320 -00020665 67.37983704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00020666 67.37983704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00020667 67.37985992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00020668 67.37986755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00020669 67.37989044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00020670 67.37989044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00020671 67.37991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00020672 67.37991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00020673 67.37995148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00020674 67.37995148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00020675 67.37997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00020676 67.37997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00020677 67.37999725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00020678 67.38000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00020679 67.38003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00020680 67.38003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00020681 67.38005829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00020682 67.38006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00020683 67.38008881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00020684 67.38008881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00020685 67.38011169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00020686 67.38011169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00020687 67.38014221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00020688 67.38014984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00020689 67.38017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00020690 67.38017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00020691 67.38019562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00020692 67.38020325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00020693 67.38023376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00020694 67.38023376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00020695 67.38025665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00020696 67.38026428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00020697 67.38028717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28430 -00020698 67.38028717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28430 -00020699 67.38031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28440 -00020700 67.38031769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28440 -00020701 67.38034821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28450 -00020702 67.38034821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28450 -00020703 67.38037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28460 -00020704 67.38037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28460 -00020705 67.38039398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28470 -00020706 67.38040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28470 -00020707 67.38043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28480 -00020708 67.38043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28480 -00020709 67.38045502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28490 -00020710 67.38046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28490 -00020711 67.38048553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a0 -00020712 67.38048553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a0 -00020713 67.38050842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b0 -00020714 67.38051605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b0 -00020715 67.38054657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c0 -00020716 67.38054657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c0 -00020717 67.38056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d0 -00020718 67.38056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d0 -00020719 67.38059235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e0 -00020720 67.38059998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e0 -00020721 67.38063049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f0 -00020722 67.38063049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f0 -00020723 67.38065338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28500 -00020724 67.38066101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28500 -00020725 67.38068390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28510 -00020726 67.38068390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28510 -00020727 67.38070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28520 -00020728 67.38071442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28520 -00020729 67.38074493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28530 -00020730 67.38074493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28530 -00020731 67.38076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28540 -00020732 67.38077545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28540 -00020733 67.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28550 -00020734 67.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28550 -00020735 67.38082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28560 -00020736 67.38082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28560 -00020737 67.38085175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28570 -00020738 67.38085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28570 -00020739 67.38088226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28580 -00020740 67.38088226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28580 -00020741 67.38090515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28590 -00020742 67.38091278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28590 -00020743 67.38094330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a0 -00020744 67.38094330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285a0 -00020745 67.38096619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b0 -00020746 67.38097382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285b0 -00020747 67.38099670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c0 -00020748 67.38099670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285c0 -00020749 67.38102722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d0 -00020750 67.38102722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285d0 -00020751 67.38105011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e0 -00020752 67.38105774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285e0 -00020753 67.38108063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f0 -00020754 67.38108063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f0 -00020755 67.38110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28600 -00020756 67.38111115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28600 -00020757 67.38114166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28610 -00020758 67.38114166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28610 -00020759 67.38116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28620 -00020760 67.38117218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28620 -00020761 67.38119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28630 -00020762 67.38119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28630 -00020763 67.38122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28640 -00020764 67.38122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28640 -00020765 67.38124847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28650 -00020766 67.38125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28650 -00020767 67.38127899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28660 -00020768 67.38127899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28660 -00020769 67.38130188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28670 -00020770 67.38130951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28670 -00020771 67.38134003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28680 -00020772 67.38134003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28680 -00020773 67.38136292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28690 -00020774 67.38137054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28690 -00020775 67.38139343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a0 -00020776 67.38139343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a0 -00020777 67.38142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b0 -00020778 67.38142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b0 -00020779 67.38144684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c0 -00020780 67.38145447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c0 -00020781 67.38147736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d0 -00020782 67.38147736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d0 -00020783 67.38150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e0 -00020784 67.38150787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e0 -00020785 67.38153839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f0 -00020786 67.38153839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f0 -00020787 67.38156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28700 -00020788 67.38156891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28700 -00020789 67.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28710 -00020790 67.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28710 -00020791 67.38162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28720 -00020792 67.38162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28720 -00020793 67.38165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28730 -00020794 67.38165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28730 -00020795 67.38167572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28740 -00020796 67.38168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28740 -00020797 67.38170624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -00020798 67.38170624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -00020799 67.38173676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -00020800 67.38173676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -00020801 67.38175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -00020802 67.38176727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -00020803 67.38179016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -00020804 67.38179016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -00020805 67.38182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -00020806 67.38182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -00020807 67.38185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -00020808 67.38185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -00020809 67.38187408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -00020810 67.38188171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -00020811 67.38190460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -00020812 67.38190460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -00020813 67.38193512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -00020814 67.38193512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -00020815 67.38195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -00020816 67.38196564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -00020817 67.38198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -00020818 67.38198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -00020819 67.38201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -00020820 67.38201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -00020821 67.38204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -00020822 67.38204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -00020823 67.38207245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -00020824 67.38208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -00020825 67.38210297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -00020826 67.38210297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -00020827 67.38213348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -00020828 67.38213348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -00020829 67.38216400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -00020830 67.38216400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -00020831 67.38218689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -00020832 67.38218689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -00020833 67.38221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -00020834 67.38221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -00020835 67.38224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -00020836 67.38224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -00020837 67.38227081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -00020838 67.38227844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -00020839 67.38230133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -00020840 67.38230133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -00020841 67.38233185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b0 -00020842 67.38233948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b0 -00020843 67.38236237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c0 -00020844 67.38236237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c0 -00020845 67.38238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d0 -00020846 67.38238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d0 -00020847 67.38241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e0 -00020848 67.38241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e0 -00020849 67.38244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f0 -00020850 67.38244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f0 -00020851 67.38246918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -00020852 67.38247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -00020853 67.38249969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -00020854 67.38249969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -00020855 67.38253021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -00020856 67.38253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -00020857 67.38256073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -00020858 67.38256073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -00020859 67.38258362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -00020860 67.38258362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -00020861 67.38261414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -00020862 67.38261414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -00020863 67.38264465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -00020864 67.38264465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -00020865 67.38266754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -00020866 67.38267517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -00020867 67.38269806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -00020868 67.38269806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -00020869 67.38272858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -00020870 67.38273621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -00020871 67.38275909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -00020872 67.38275909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -00020873 67.38278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -00020874 67.38278961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -00020875 67.38281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -00020876 67.38281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -00020877 67.38284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -00020878 67.38285065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -00020879 67.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -00020880 67.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -00020881 67.38289642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -00020882 67.38290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -00020883 67.38293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -00020884 67.38293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -00020885 67.38295746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -00020886 67.38295746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -00020887 67.38298035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -00020888 67.38298798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -00020889 67.38301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -00020890 67.38301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -00020891 67.38304138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -00020892 67.38304901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -00020893 67.38307190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -00020894 67.38307190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -00020895 67.38309479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -00020896 67.38310242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a60 -00020897 67.38313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -00020898 67.38313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a70 -00020899 67.38315582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -00020900 67.38315582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a80 -00020901 67.38318634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -00020902 67.38318634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a90 -00020903 67.38320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -00020904 67.38320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28aa0 -00020905 67.38323975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -00020906 67.38324738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ab0 -00020907 67.38327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -00020908 67.38327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ac0 -00020909 67.38329315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -00020910 67.38330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ad0 -00020911 67.38333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -00020912 67.38333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ae0 -00020913 67.38335419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -00020914 67.38336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28af0 -00020915 67.38338470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -00020916 67.38338470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b00 -00020917 67.38340759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -00020918 67.38341522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b10 -00020919 67.38344574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -00020920 67.38344574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b20 -00020921 67.38346863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -00020922 67.38346863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b30 -00020923 67.38349152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b40 -00020924 67.38349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b40 -00020925 67.38352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b50 -00020926 67.38352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b50 -00020927 67.38355255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b60 -00020928 67.38356018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b60 -00020929 67.38358307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b70 -00020930 67.38358307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b70 -00020931 67.38360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b80 -00020932 67.38361359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b80 -00020933 67.38364410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b90 -00020934 67.38364410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b90 -00020935 67.38366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba0 -00020936 67.38367462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba0 -00020937 67.38369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb0 -00020938 67.38369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb0 -00020939 67.38372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc0 -00020940 67.38372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc0 -00020941 67.38375092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd0 -00020942 67.38375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd0 -00020943 67.38378143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be0 -00020944 67.38378143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be0 -00020945 67.38380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf0 -00020946 67.38381195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf0 -00020947 67.38384247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c00 -00020948 67.38384247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c00 -00020949 67.38386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c10 -00020950 67.38387299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c10 -00020951 67.38389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c20 -00020952 67.38389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c20 -00020953 67.38392639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c30 -00020954 67.38392639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c30 -00020955 67.38394928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c40 -00020956 67.38395691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c40 -00020957 67.38397980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c50 -00020958 67.38397980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c50 -00020959 67.38400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c60 -00020960 67.38401031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c60 -00020961 67.38404083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c70 -00020962 67.38404083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c70 -00020963 67.38406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c80 -00020964 67.38407135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c80 -00020965 67.38409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c90 -00020966 67.38409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c90 -00020967 67.38412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca0 -00020968 67.38412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca0 -00020969 67.38415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb0 -00020970 67.38415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb0 -00020971 67.38417816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc0 -00020972 67.38417816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc0 -00020973 67.38420105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd0 -00020974 67.38420868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd0 -00020975 67.38423920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce0 -00020976 67.38423920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce0 -00020977 67.38426208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf0 -00020978 67.38426971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf0 -00020979 67.38429260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d00 -00020980 67.38429260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d00 -00020981 67.38432312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d10 -00020982 67.38432312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d10 -00020983 67.38435364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d20 -00020984 67.38435364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d20 -00020985 67.38437653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d30 -00020986 67.38437653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d30 -00020987 67.38439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d40 -00020988 67.38440704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d40 -00020989 67.38443756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d50 -00020990 67.38443756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d50 -00020991 67.38446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d60 -00020992 67.38446808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d60 -00020993 67.38449097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d70 -00020994 67.38449097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d70 -00020995 67.38452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d80 -00020996 67.38452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d80 -00020997 67.38455200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d90 -00020998 67.38455200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d90 -00020999 67.38457489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da0 -00021000 67.38457489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da0 -00021001 67.38460541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db0 -00021002 67.38460541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db0 -00021003 67.38463593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc0 -00021004 67.38463593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc0 -00021005 67.38465881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd0 -00021006 67.38466644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd0 -00021007 67.38468933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de0 -00021008 67.38468933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de0 -00021009 67.38471985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df0 -00021010 67.38471985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df0 -00021011 67.38475037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e00 -00021012 67.38475037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e00 -00021013 67.38477325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e10 -00021014 67.38478088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e10 -00021015 67.38480377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e20 -00021016 67.38480377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e20 -00021017 67.38483429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e30 -00021018 67.38483429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e30 -00021019 67.38485718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e40 -00021020 67.38486481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e40 -00021021 67.38488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e50 -00021022 67.38488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e50 -00021023 67.38491821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e60 -00021024 67.38491821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e60 -00021025 67.38494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e70 -00021026 67.38494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e70 -00021027 67.38497162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e80 -00021028 67.38497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e80 -00021029 67.38500214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e90 -00021030 67.38500214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e90 -00021031 67.38503265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea0 -00021032 67.38503265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea0 -00021033 67.38506317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb0 -00021034 67.38506317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb0 -00021035 67.38508606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec0 -00021036 67.38508606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec0 -00021037 67.38511658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed0 -00021038 67.38511658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed0 -00021039 67.38514709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee0 -00021040 67.38514709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee0 -00021041 67.38516998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef0 -00021042 67.38517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef0 -00021043 67.38520050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f00 -00021044 67.38520050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f00 -00021045 67.38523102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f10 -00021046 67.38523865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f10 -00021047 67.38526154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f20 -00021048 67.38526154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f20 -00021049 67.38528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f30 -00021050 67.38528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f30 -00021051 67.38531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f40 -00021052 67.38531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f40 -00021053 67.38534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -00021054 67.38534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f50 -00021055 67.38536835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -00021056 67.38537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f60 -00021057 67.38539886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -00021058 67.38539886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f70 -00021059 67.38542938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -00021060 67.38543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f80 -00021061 67.38545990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -00021062 67.38545990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f90 -00021063 67.38548279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -00021064 67.38548279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa0 -00021065 67.38551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -00021066 67.38551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb0 -00021067 67.38554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -00021068 67.38554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc0 -00021069 67.38556671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -00021070 67.38557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fd0 -00021071 67.38559723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -00021072 67.38559723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fe0 -00021073 67.38562775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -00021074 67.38563538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -00021075 67.38565826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -00021076 67.38565826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -00021077 67.38568115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -00021078 67.38568878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -00021079 67.38571167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -00021080 67.38571167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -00021081 67.38574219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -00021082 67.38574219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -00021083 67.38577271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -00021084 67.38577271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -00021085 67.38579559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -00021086 67.38579559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -00021087 67.38582611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -00021088 67.38583374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -00021089 67.38585663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -00021090 67.38585663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -00021091 67.38587952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -00021092 67.38588715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -00021093 67.38591003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -00021094 67.38591003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -00021095 67.38594055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -00021096 67.38594818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -00021097 67.38597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -00021098 67.38597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -00021099 67.38599396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -00021100 67.38599396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -00021101 67.38602448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -00021102 67.38603210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -00021103 67.38605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -00021104 67.38605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -00021105 67.38607788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -00021106 67.38608551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -00021107 67.38610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -00021108 67.38610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -00021109 67.38613892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -00021110 67.38614655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -00021111 67.38616943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -00021112 67.38616943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -00021113 67.38619232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -00021114 67.38619232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -00021115 67.38622284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -00021116 67.38623047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -00021117 67.38625336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29150 -00021118 67.38625336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29150 -00021119 67.38627625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29160 -00021120 67.38628387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29160 -00021121 67.38630676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29170 -00021122 67.38630676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29170 -00021123 67.38633728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29180 -00021124 67.38634491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29180 -00021125 67.38636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29190 -00021126 67.38636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29190 -00021127 67.38639069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a0 -00021128 67.38639069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a0 -00021129 67.38642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b0 -00021130 67.38642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b0 -00021131 67.38645172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c0 -00021132 67.38645172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c0 -00021133 67.38647461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d0 -00021134 67.38648224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d0 -00021135 67.38650513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e0 -00021136 67.38650513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e0 -00021137 67.38653564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f0 -00021138 67.38654327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f0 -00021139 67.38656616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29200 -00021140 67.38656616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29200 -00021141 67.38658905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29210 -00021142 67.38659668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29210 -00021143 67.38662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29220 -00021144 67.38662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29220 -00021145 67.38665009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29230 -00021146 67.38665771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29230 -00021147 67.38668060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29240 -00021148 67.38668060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29240 -00021149 67.38670349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29250 -00021150 67.38670349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29250 -00021151 67.38674164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29260 -00021152 67.38674164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29260 -00021153 67.38676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29270 -00021154 67.38676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29270 -00021155 67.38678741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29280 -00021156 67.38679504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29280 -00021157 67.38682556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29290 -00021158 67.38682556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29290 -00021159 67.38684845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a0 -00021160 67.38685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a0 -00021161 67.38687897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b0 -00021162 67.38687897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b0 -00021163 67.38690186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c0 -00021164 67.38690948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c0 -00021165 67.38694000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d0 -00021166 67.38694000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d0 -00021167 67.38696289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e0 -00021168 67.38696289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e0 -00021169 67.38699341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f0 -00021170 67.38699341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f0 -00021171 67.38702393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29300 -00021172 67.38702393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29300 -00021173 67.38704681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29310 -00021174 67.38705444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29310 -00021175 67.38707733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29320 -00021176 67.38707733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29320 -00021177 67.38710022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -00021178 67.38710785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -00021179 67.38713837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -00021180 67.38713837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -00021181 67.38716125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -00021182 67.38716888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -00021183 67.38719177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -00021184 67.38719177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -00021185 67.38722229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -00021186 67.38722229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -00021187 67.38724518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -00021188 67.38725281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -00021189 67.38727570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -00021190 67.38727570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -00021191 67.38730621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -00021192 67.38730621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -00021193 67.38733673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -00021194 67.38733673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -00021195 67.38735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -00021196 67.38736725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -00021197 67.38739014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -00021198 67.38739014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -00021199 67.38742065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -00021200 67.38742065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -00021201 67.38745117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -00021202 67.38745117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -00021203 67.38747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -00021204 67.38747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -00021205 67.38750458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -00021206 67.38750458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -00021207 67.38753510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -00021208 67.38753510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -00021209 67.38755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -00021210 67.38756561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -00021211 67.38758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -00021212 67.38758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -00021213 67.38761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -00021214 67.38761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -00021215 67.38764954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -00021216 67.38764954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -00021217 67.38767242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -00021218 67.38768005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -00021219 67.38770294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -00021220 67.38770294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -00021221 67.38773346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -00021222 67.38773346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -00021223 67.38775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -00021224 67.38776398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -00021225 67.38778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -00021226 67.38778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -00021227 67.38781738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -00021228 67.38781738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -00021229 67.38784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -00021230 67.38784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -00021231 67.38787079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -00021232 67.38787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -00021233 67.38790131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -00021234 67.38790131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -00021235 67.38793182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -00021236 67.38793945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -00021237 67.38796234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -00021238 67.38796234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -00021239 67.38798523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -00021240 67.38798523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -00021241 67.38801575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -00021242 67.38801575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -00021243 67.38804626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -00021244 67.38804626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -00021245 67.38806915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -00021246 67.38807678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -00021247 67.38809967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -00021248 67.38809967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -00021249 67.38813019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29570 -00021250 67.38813782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29570 -00021251 67.38816071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29580 -00021252 67.38816071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29580 -00021253 67.38818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29590 -00021254 67.38818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29590 -00021255 67.38821411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a0 -00021256 67.38821411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a0 -00021257 67.38824463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b0 -00021258 67.38824463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b0 -00021259 67.38826752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c0 -00021260 67.38827515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c0 -00021261 67.38829803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d0 -00021262 67.38829803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d0 -00021263 67.38832855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e0 -00021264 67.38833618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e0 -00021265 67.38835907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f0 -00021266 67.38835907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f0 -00021267 67.38838196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29600 -00021268 67.38838196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29600 -00021269 67.38841248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29610 -00021270 67.38841248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29610 -00021271 67.38844299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29620 -00021272 67.38844299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29620 -00021273 67.38846588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29630 -00021274 67.38847351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29630 -00021275 67.38849640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29640 -00021276 67.38849640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29640 -00021277 67.38852692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29650 -00021278 67.38853455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29650 -00021279 67.38855743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29660 -00021280 67.38855743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29660 -00021281 67.38858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29670 -00021282 67.38858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29670 -00021283 67.38861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29680 -00021284 67.38861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29680 -00021285 67.38864136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29690 -00021286 67.38864136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29690 -00021287 67.38866425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296a0 -00021288 67.38867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296a0 -00021289 67.38869476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296b0 -00021290 67.38869476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296b0 -00021291 67.38872528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296c0 -00021292 67.38873291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296c0 -00021293 67.38875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296d0 -00021294 67.38875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296d0 -00021295 67.38877869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296e0 -00021296 67.38878632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296e0 -00021297 67.38880920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296f0 -00021298 67.38880920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x296f0 -00021299 67.38884735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29700 -00021300 67.38884735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29700 -00021301 67.38887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29710 -00021302 67.38887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29710 -00021303 67.38890076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29720 -00021304 67.38890076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29720 -00021305 67.38893127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29730 -00021306 67.38893127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29730 -00021307 67.38896179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29740 -00021308 67.38896179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29740 -00021309 67.38898468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29750 -00021310 67.38899231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29750 -00021311 67.38901520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29760 -00021312 67.38901520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29760 -00021313 67.38905334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29770 -00021314 67.38905334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29770 -00021315 67.38907623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29780 -00021316 67.38907623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29780 -00021317 67.38910675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29790 -00021318 67.38910675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29790 -00021319 67.38912964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a0 -00021320 67.38913727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a0 -00021321 67.38916779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b0 -00021322 67.38916779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b0 -00021323 67.38919067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c0 -00021324 67.38919830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c0 -00021325 67.38922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d0 -00021326 67.38922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d0 -00021327 67.38925171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e0 -00021328 67.38925171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e0 -00021329 67.38928223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f0 -00021330 67.38928223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f0 -00021331 67.38930511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29800 -00021332 67.38931274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29800 -00021333 67.38933563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29810 -00021334 67.38933563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29810 -00021335 67.38936615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29820 -00021336 67.38936615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29820 -00021337 67.38939667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29830 -00021338 67.38940430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29830 -00021339 67.38942719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29840 -00021340 67.38942719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29840 -00021341 67.38945007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29850 -00021342 67.38945007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29850 -00021343 67.38948822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29860 -00021344 67.38948822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29860 -00021345 67.38951111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29870 -00021346 67.38951874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29870 -00021347 67.38954163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29880 -00021348 67.38954163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29880 -00021349 67.38956451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29890 -00021350 67.38957214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29890 -00021351 67.38960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a0 -00021352 67.38960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a0 -00021353 67.38963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -00021354 67.38963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -00021355 67.38965607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -00021356 67.38966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -00021357 67.38968658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -00021358 67.38968658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -00021359 67.38972473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -00021360 67.38972473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -00021361 67.38975525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -00021362 67.38975525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -00021363 67.38977814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -00021364 67.38978577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -00021365 67.38980865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -00021366 67.38980865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -00021367 67.38983917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -00021368 67.38984680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -00021369 67.38986969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -00021370 67.38986969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -00021371 67.38989258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -00021372 67.38990021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -00021373 67.38992310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -00021374 67.38992310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -00021375 67.38996124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -00021376 67.38996124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -00021377 67.38998413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -00021378 67.38999176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -00021379 67.39001465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -00021380 67.39001465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -00021381 67.39004517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -00021382 67.39004517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -00021383 67.39007568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -00021384 67.39007568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -00021385 67.39009857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -00021386 67.39010620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -00021387 67.39012909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -00021388 67.39012909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -00021389 67.39015961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -00021390 67.39015961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -00021391 67.39019012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -00021392 67.39019012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -00021393 67.39021301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -00021394 67.39021301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -00021395 67.39024353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -00021396 67.39024353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -00021397 67.39027405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -00021398 67.39027405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -00021399 67.39029694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -00021400 67.39030457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -00021401 67.39032745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -00021402 67.39032745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -00021403 67.39035797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -00021404 67.39035797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -00021405 67.39038849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -00021406 67.39038849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -00021407 67.39041138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -00021408 67.39041901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -00021409 67.39044189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -00021410 67.39044189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -00021411 67.39047241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -00021412 67.39048004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -00021413 67.39050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -00021414 67.39050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -00021415 67.39052582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -00021416 67.39053345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -00021417 67.39055634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -00021418 67.39055634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -00021419 67.39058685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac0 -00021420 67.39059448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac0 -00021421 67.39061737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad0 -00021422 67.39061737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad0 -00021423 67.39064026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae0 -00021424 67.39064789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae0 -00021425 67.39067841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af0 -00021426 67.39067841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af0 -00021427 67.39070129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b00 -00021428 67.39070892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b00 -00021429 67.39073181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b10 -00021430 67.39073181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b10 -00021431 67.39075470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b20 -00021432 67.39076233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b20 -00021433 67.39079285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b30 -00021434 67.39079285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b30 -00021435 67.39081573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b40 -00021436 67.39082336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b40 -00021437 67.39084625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b50 -00021438 67.39084625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b50 -00021439 67.39087677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b60 -00021440 67.39087677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b60 -00021441 67.39090729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b70 -00021442 67.39090729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b70 -00021443 67.39093018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b80 -00021444 67.39093018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b80 -00021445 67.39095306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b90 -00021446 67.39096069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b90 -00021447 67.39099121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba0 -00021448 67.39099121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba0 -00021449 67.39101410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb0 -00021450 67.39102173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb0 -00021451 67.39104462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc0 -00021452 67.39104462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc0 -00021453 67.39107513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd0 -00021454 67.39107513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd0 -00021455 67.39110565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be0 -00021456 67.39110565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be0 -00021457 67.39112854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf0 -00021458 67.39113617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf0 -00021459 67.39115906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c00 -00021460 67.39115906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c00 -00021461 67.39118958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c10 -00021462 67.39119720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c10 -00021463 67.39122009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c20 -00021464 67.39122009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c20 -00021465 67.39124298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c30 -00021466 67.39124298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c30 -00021467 67.39127350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c40 -00021468 67.39127350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c40 -00021469 67.39129639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c50 -00021470 67.39130402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c50 -00021471 67.39131927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c60 -00021472 67.39132690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c60 -00021473 67.39134979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c70 -00021474 67.39134979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c70 -00021475 67.39138031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c80 -00021476 67.39138031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c80 -00021477 67.39140320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c90 -00021478 67.39141083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c90 -00021479 67.39143372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca0 -00021480 67.39143372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ca0 -00021481 67.39146423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb0 -00021482 67.39146423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cb0 -00021483 67.39148712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc0 -00021484 67.39148712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cc0 -00021485 67.39151001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd0 -00021486 67.39151764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cd0 -00021487 67.39154053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce0 -00021488 67.39154816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce0 -00021489 67.39157104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf0 -00021490 67.39157104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf0 -00021491 67.39159393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d00 -00021492 67.39159393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d00 -00021493 67.39162445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d10 -00021494 67.39163208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d10 -00021495 67.39164734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d20 -00021496 67.39165497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d20 -00021497 67.39167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d30 -00021498 67.39167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d30 -00021499 67.39170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d40 -00021500 67.39170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d40 -00021501 67.39173126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d50 -00021502 67.39173889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d50 -00021503 67.39175415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d60 -00021504 67.39176178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d60 -00021505 67.39179230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d70 -00021506 67.39179230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d70 -00021507 67.39181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d80 -00021508 67.39181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d80 -00021509 67.39183807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d90 -00021510 67.39184570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d90 -00021511 67.39186859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da0 -00021512 67.39186859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da0 -00021513 67.39189911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db0 -00021514 67.39189911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db0 -00021515 67.39192200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc0 -00021516 67.39192200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc0 -00021517 67.39195251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd0 -00021518 67.39195251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd0 -00021519 67.39197540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de0 -00021520 67.39198303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de0 -00021521 67.39200592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df0 -00021522 67.39200592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df0 -00021523 67.39202881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e00 -00021524 67.39202881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e00 -00021525 67.39205933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e10 -00021526 67.39206696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e10 -00021527 67.39208221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e20 -00021528 67.39208984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e20 -00021529 67.39211273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e30 -00021530 67.39211273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e30 -00021531 67.39214325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e40 -00021532 67.39214325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e40 -00021533 67.39216614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e50 -00021534 67.39217377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e50 -00021535 67.39219666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e60 -00021536 67.39219666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e60 -00021537 67.39222717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e70 -00021538 67.39222717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e70 -00021539 67.39225006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e80 -00021540 67.39225769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e80 -00021541 67.39227295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e90 -00021542 67.39228058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e90 -00021543 67.39230347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea0 -00021544 67.39230347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea0 -00021545 67.39233398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb0 -00021546 67.39233398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb0 -00021547 67.39235687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec0 -00021548 67.39235687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec0 -00021549 67.39238739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ed0 -00021550 67.39238739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ed0 -00021551 67.39241791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ee0 -00021552 67.39241791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ee0 -00021553 67.39244080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ef0 -00021554 67.39244080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ef0 -00021555 67.39246368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f00 -00021556 67.39246368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f00 -00021557 67.39249420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f10 -00021558 67.39250183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f10 -00021559 67.39252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f20 -00021560 67.39252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f20 -00021561 67.39254761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f30 -00021562 67.39254761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f30 -00021563 67.39257813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f40 -00021564 67.39258575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f40 -00021565 67.39260101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f50 -00021566 67.39260864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f50 -00021567 67.39263153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f60 -00021568 67.39263153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f60 -00021569 67.39266205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f70 -00021570 67.39266205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f70 -00021571 67.39269257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f80 -00021572 67.39269257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f80 -00021573 67.39272308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f90 -00021574 67.39272308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f90 -00021575 67.39274597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fa0 -00021576 67.39275360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fa0 -00021577 67.39277649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb0 -00021578 67.39278412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb0 -00021579 67.39280701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc0 -00021580 67.39280701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc0 -00021581 67.39282990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd0 -00021582 67.39283752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd0 -00021583 67.39286041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe0 -00021584 67.39286041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe0 -00021585 67.39289093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff0 -00021586 67.39289856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff0 -00021587 67.39292145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a000 -00021588 67.39292145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a000 -00021589 67.39294434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a010 -00021590 67.39295197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a010 -00021591 67.39298248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a020 -00021592 67.39298248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a020 -00021593 67.39300537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a030 -00021594 67.39301300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a030 -00021595 67.39303589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a040 -00021596 67.39303589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a040 -00021597 67.39305878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a050 -00021598 67.39306641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a050 -00021599 67.39309692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a060 -00021600 67.39309692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a060 -00021601 67.39311981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a070 -00021602 67.39312744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a070 -00021603 67.39315033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a080 -00021604 67.39315033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a080 -00021605 67.39318085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a090 -00021606 67.39318085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a090 -00021607 67.39320374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a0 -00021608 67.39321136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a0 -00021609 67.39323425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b0 -00021610 67.39324188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b0 -00021611 67.39325714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c0 -00021612 67.39326477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c0 -00021613 67.39329529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d0 -00021614 67.39329529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d0 -00021615 67.39331818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e0 -00021616 67.39331818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e0 -00021617 67.39334106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f0 -00021618 67.39334869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f0 -00021619 67.39337158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a100 -00021620 67.39337921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a100 -00021621 67.39340210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a110 -00021622 67.39340210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a110 -00021623 67.39342499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a120 -00021624 67.39342499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a120 -00021625 67.39345551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a130 -00021626 67.39345551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a130 -00021627 67.39347839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a140 -00021628 67.39348602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a140 -00021629 67.39350891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a150 -00021630 67.39350891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a150 -00021631 67.39353943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a160 -00021632 67.39353943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a160 -00021633 67.39356232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a170 -00021634 67.39356232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a170 -00021635 67.39358521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a180 -00021636 67.39359283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a180 -00021637 67.39361572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a190 -00021638 67.39361572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a190 -00021639 67.39364624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -00021640 67.39364624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a0 -00021641 67.39366913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -00021642 67.39367676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b0 -00021643 67.39369965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -00021644 67.39369965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c0 -00021645 67.39373016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -00021646 67.39373016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d0 -00021647 67.39375305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -00021648 67.39375305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e0 -00021649 67.39377594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -00021650 67.39378357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f0 -00021651 67.39380646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -00021652 67.39381409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a200 -00021653 67.39383698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -00021654 67.39383698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a210 -00021655 67.39385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -00021656 67.39385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a220 -00021657 67.39389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -00021658 67.39389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a230 -00021659 67.39391327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -00021660 67.39392090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a240 -00021661 67.39394379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a250 -00021662 67.39394379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a250 -00021663 67.39397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a260 -00021664 67.39397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a260 -00021665 67.39399719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a270 -00021666 67.39399719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a270 -00021667 67.39402008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a280 -00021668 67.39402771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a280 -00021669 67.39405060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a290 -00021670 67.39405060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a290 -00021671 67.39408112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a0 -00021672 67.39408112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a0 -00021673 67.39410400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b0 -00021674 67.39411163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b0 -00021675 67.39413452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c0 -00021676 67.39413452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c0 -00021677 67.39416504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d0 -00021678 67.39416504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d0 -00021679 67.39418793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e0 -00021680 67.39418793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e0 -00021681 67.39421082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f0 -00021682 67.39421082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f0 -00021683 67.39424133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a300 -00021684 67.39424896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a300 -00021685 67.39427185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a310 -00021686 67.39427185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a310 -00021687 67.39429474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a320 -00021688 67.39429474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a320 -00021689 67.39432526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a330 -00021690 67.39432526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a330 -00021691 67.39434814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a340 -00021692 67.39435577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a340 -00021693 67.39437103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a350 -00021694 67.39437866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a350 -00021695 67.39440918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a360 -00021696 67.39440918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a360 -00021697 67.39443207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a370 -00021698 67.39443207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a370 -00021699 67.39445496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a380 -00021700 67.39446259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a380 -00021701 67.39448547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a390 -00021702 67.39449310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a390 -00021703 67.39451599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a0 -00021704 67.39451599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a0 -00021705 67.39453888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b0 -00021706 67.39453888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b0 -00021707 67.39456940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c0 -00021708 67.39456940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c0 -00021709 67.39459229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d0 -00021710 67.39459991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d0 -00021711 67.39462280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e0 -00021712 67.39463043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e0 -00021713 67.39465332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f0 -00021714 67.39465332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f0 -00021715 67.39468384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a400 -00021716 67.39469147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a400 -00021717 67.39471436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a410 -00021718 67.39471436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a410 -00021719 67.39473724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a420 -00021720 67.39473724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a420 -00021721 67.39476776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a430 -00021722 67.39476776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a430 -00021723 67.39479828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a440 -00021724 67.39480591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a440 -00021725 67.39482117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a450 -00021726 67.39482880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a450 -00021727 67.39485168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a460 -00021728 67.39485168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a460 -00021729 67.39488220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a470 -00021730 67.39488220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a470 -00021731 67.39490509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a480 -00021732 67.39491272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a480 -00021733 67.39492798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a490 -00021734 67.39493561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a490 -00021735 67.39496613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a0 -00021736 67.39496613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a0 -00021737 67.39498901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b0 -00021738 67.39498901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b0 -00021739 67.39501190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c0 -00021740 67.39501190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c0 -00021741 67.39504242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d0 -00021742 67.39505005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d0 -00021743 67.39507294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e0 -00021744 67.39507294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e0 -00021745 67.39509583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f0 -00021746 67.39509583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f0 -00021747 67.39512634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a500 -00021748 67.39512634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a500 -00021749 67.39514923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a510 -00021750 67.39515686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a510 -00021751 67.39517975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a520 -00021752 67.39517975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a520 -00021753 67.39520264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a530 -00021754 67.39520264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a530 -00021755 67.39523315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a540 -00021756 67.39523315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a540 -00021757 67.39525604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a550 -00021758 67.39526367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a550 -00021759 67.39528656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a560 -00021760 67.39528656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a560 -00021761 67.39531708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a570 -00021762 67.39531708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a570 -00021763 67.39533997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a580 -00021764 67.39533997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a580 -00021765 67.39536285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a590 -00021766 67.39537048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a590 -00021767 67.39539337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a0 -00021768 67.39540100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a0 -00021769 67.39542389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b0 -00021770 67.39542389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b0 -00021771 67.39544678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c0 -00021772 67.39544678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c0 -00021773 67.39547729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d0 -00021774 67.39548492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d0 -00021775 67.39550018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e0 -00021776 67.39550781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e0 -00021777 67.39553070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f0 -00021778 67.39553070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f0 -00021779 67.39556122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a600 -00021780 67.39556122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a600 -00021781 67.39558411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a610 -00021782 67.39559174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a610 -00021783 67.39560699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a620 -00021784 67.39561462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a620 -00021785 67.39564514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a630 -00021786 67.39564514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a630 -00021787 67.39566803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a640 -00021788 67.39566803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a640 -00021789 67.39569092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a650 -00021790 67.39569855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a650 -00021791 67.39572144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a660 -00021792 67.39572144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a660 -00021793 67.39575195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a670 -00021794 67.39575195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a670 -00021795 67.39577484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a680 -00021796 67.39577484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a680 -00021797 67.39580536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a690 -00021798 67.39580536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a690 -00021799 67.39582825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6a0 -00021800 67.39583588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6a0 -00021801 67.39585876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6b0 -00021802 67.39585876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6b0 -00021803 67.39588165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6c0 -00021804 67.39588165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6c0 -00021805 67.39591217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6d0 -00021806 67.39591980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6d0 -00021807 67.39593506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6e0 -00021808 67.39594269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6e0 -00021809 67.39596558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6f0 -00021810 67.39596558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a6f0 -00021811 67.39599609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a700 -00021812 67.39599609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a700 -00021813 67.39601898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a710 -00021814 67.39602661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a710 -00021815 67.39604187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a720 -00021816 67.39604950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a720 -00021817 67.39608002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a730 -00021818 67.39608002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a730 -00021819 67.39610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -00021820 67.39610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -00021821 67.39612579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -00021822 67.39612579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -00021823 67.39615631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -00021824 67.39615631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -00021825 67.39618683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -00021826 67.39618683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -00021827 67.39620972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -00021828 67.39620972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -00021829 67.39624023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -00021830 67.39624023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -00021831 67.39626312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -00021832 67.39627075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -00021833 67.39629364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -00021834 67.39629364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -00021835 67.39631653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -00021836 67.39631653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -00021837 67.39634705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -00021838 67.39634705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -00021839 67.39636993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -00021840 67.39637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -00021841 67.39640045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -00021842 67.39640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -00021843 67.39643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -00021844 67.39643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -00021845 67.39646149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -00021846 67.39646912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -00021847 67.39649200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -00021848 67.39649200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -00021849 67.39651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -00021850 67.39651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -00021851 67.39654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -00021852 67.39655304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -00021853 67.39657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -00021854 67.39657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -00021855 67.39659882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -00021856 67.39660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -00021857 67.39663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -00021858 67.39663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -00021859 67.39665985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -00021860 67.39666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -00021861 67.39669037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -00021862 67.39669037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -00021863 67.39671326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -00021864 67.39672089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a0 -00021865 67.39675140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -00021866 67.39675140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8b0 -00021867 67.39678192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -00021868 67.39678192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8c0 -00021869 67.39681244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -00021870 67.39682007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8d0 -00021871 67.39684296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -00021872 67.39684296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8e0 -00021873 67.39687347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -00021874 67.39687347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f0 -00021875 67.39690399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -00021876 67.39690399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a900 -00021877 67.39692688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a910 -00021878 67.39693451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a910 -00021879 67.39695740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a920 -00021880 67.39695740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a920 -00021881 67.39698792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a930 -00021882 67.39699554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a930 -00021883 67.39701843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a940 -00021884 67.39701843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a940 -00021885 67.39704132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a950 -00021886 67.39704895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a950 -00021887 67.39707184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a960 -00021888 67.39707184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a960 -00021889 67.39710236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a970 -00021890 67.39710236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a970 -00021891 67.39712524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a980 -00021892 67.39713287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a980 -00021893 67.39715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a990 -00021894 67.39715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a990 -00021895 67.39718628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a0 -00021896 67.39719391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a0 -00021897 67.39721680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b0 -00021898 67.39721680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b0 -00021899 67.39723969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c0 -00021900 67.39724731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c0 -00021901 67.39727020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d0 -00021902 67.39727020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d0 -00021903 67.39730072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -00021904 67.39730835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -00021905 67.39733124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -00021906 67.39733124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -00021907 67.39735413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -00021908 67.39735413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -00021909 67.39738464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -00021910 67.39739227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -00021911 67.39741516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -00021912 67.39741516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -00021913 67.39743805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -00021914 67.39744568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -00021915 67.39746857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -00021916 67.39746857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -00021917 67.39749908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -00021918 67.39750671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -00021919 67.39752960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -00021920 67.39752960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -00021921 67.39755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -00021922 67.39755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -00021923 67.39759064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -00021924 67.39759064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -00021925 67.39761353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -00021926 67.39762115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -00021927 67.39764404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -00021928 67.39764404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -00021929 67.39766693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -00021930 67.39766693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -00021931 67.39769745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -00021932 67.39770508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -00021933 67.39772797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -00021934 67.39772797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -00021935 67.39775085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -00021936 67.39775848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -00021937 67.39778900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -00021938 67.39778900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -00021939 67.39781189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -00021940 67.39781189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -00021941 67.39784241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -00021942 67.39784241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -00021943 67.39786530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -00021944 67.39786530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -00021945 67.39789581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -00021946 67.39790344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -00021947 67.39792633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab40 -00021948 67.39792633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab40 -00021949 67.39794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab50 -00021950 67.39795685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab50 -00021951 67.39798737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab60 -00021952 67.39798737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab60 -00021953 67.39801025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab70 -00021954 67.39801788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab70 -00021955 67.39804077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab80 -00021956 67.39804077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab80 -00021957 67.39806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab90 -00021958 67.39806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab90 -00021959 67.39809418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba0 -00021960 67.39810181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba0 -00021961 67.39812469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb0 -00021962 67.39812469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb0 -00021963 67.39814758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc0 -00021964 67.39815521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc0 -00021965 67.39818573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd0 -00021966 67.39818573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd0 -00021967 67.39820862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe0 -00021968 67.39821625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe0 -00021969 67.39823914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf0 -00021970 67.39823914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf0 -00021971 67.39826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -00021972 67.39826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -00021973 67.39829254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -00021974 67.39830017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -00021975 67.39832306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -00021976 67.39832306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -00021977 67.39834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -00021978 67.39835358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -00021979 67.39838409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -00021980 67.39838409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -00021981 67.39840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -00021982 67.39841461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -00021983 67.39843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -00021984 67.39843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -00021985 67.39846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -00021986 67.39846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -00021987 67.39849091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -00021988 67.39849854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -00021989 67.39852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -00021990 67.39852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -00021991 67.39854431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -00021992 67.39855194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -00021993 67.39858246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -00021994 67.39858246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -00021995 67.39860535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -00021996 67.39861298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -00021997 67.39863586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -00021998 67.39863586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -00021999 67.39865875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -00022000 67.39866638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -00022001 67.39869690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -00022002 67.39869690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -00022003 67.39871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -00022004 67.39871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -00022005 67.39874268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -00022006 67.39875031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -00022007 67.39878082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -00022008 67.39878082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -00022009 67.39880371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -00022010 67.39881134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -00022011 67.39883423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -00022012 67.39883423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -00022013 67.39885712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -00022014 67.39886475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -00022015 67.39889526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -00022016 67.39889526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -00022017 67.39891815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -00022018 67.39892578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -00022019 67.39894867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -00022020 67.39894867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -00022021 67.39897919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -00022022 67.39897919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -00022023 67.39900208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -00022024 67.39900970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -00022025 67.39903259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -00022026 67.39903259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -00022027 67.39905548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -00022028 67.39906311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -00022029 67.39909363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -00022030 67.39909363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -00022031 67.39911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -00022032 67.39912415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -00022033 67.39914703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -00022034 67.39914703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -00022035 67.39917755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -00022036 67.39917755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -00022037 67.39920044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -00022038 67.39920807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -00022039 67.39923096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -00022040 67.39923096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -00022041 67.39925385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -00022042 67.39926147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -00022043 67.39929199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -00022044 67.39929199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -00022045 67.39931488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -00022046 67.39932251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -00022047 67.39934540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -00022048 67.39934540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -00022049 67.39937592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -00022050 67.39937592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -00022051 67.39939880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -00022052 67.39940643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -00022053 67.39942932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -00022054 67.39942932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -00022055 67.39945221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -00022056 67.39945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -00022057 67.39949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -00022058 67.39949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -00022059 67.39951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -00022060 67.39952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -00022061 67.39954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -00022062 67.39954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -00022063 67.39957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -00022064 67.39957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -00022065 67.39960480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -00022066 67.39960480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -00022067 67.39962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -00022068 67.39963531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -00022069 67.39965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -00022070 67.39965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -00022071 67.39968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -00022072 67.39968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -00022073 67.39971161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -00022074 67.39971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -00022075 67.39974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -00022076 67.39974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -00022077 67.39977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -00022078 67.39977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -00022079 67.39980316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -00022080 67.39980316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -00022081 67.39982605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -00022082 67.39983368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -00022083 67.39985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -00022084 67.39985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -00022085 67.39988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -00022086 67.39988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -00022087 67.39990997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -00022088 67.39991760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -00022089 67.39994049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -00022090 67.39994049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -00022091 67.39997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -00022092 67.39997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -00022093 67.40000153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -00022094 67.40000153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -00022095 67.40002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -00022096 67.40003204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -00022097 67.40005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -00022098 67.40005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -00022099 67.40008545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -00022100 67.40009308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -00022101 67.40011597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -00022102 67.40011597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -00022103 67.40013885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -00022104 67.40013885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -00022105 67.40016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -00022106 67.40016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -00022107 67.40019989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -00022108 67.40019989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -00022109 67.40022278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -00022110 67.40023041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -00022111 67.40025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -00022112 67.40025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -00022113 67.40028381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -00022114 67.40029144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -00022115 67.40031433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b080 -00022116 67.40031433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b080 -00022117 67.40033722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b090 -00022118 67.40034485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b090 -00022119 67.40036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a0 -00022120 67.40036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a0 -00022121 67.40039825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b0 -00022122 67.40039825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b0 -00022123 67.40042114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c0 -00022124 67.40042877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c0 -00022125 67.40045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d0 -00022126 67.40045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d0 -00022127 67.40048218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e0 -00022128 67.40048981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e0 -00022129 67.40051270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f0 -00022130 67.40051270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f0 -00022131 67.40053558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b100 -00022132 67.40054321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b100 -00022133 67.40056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b110 -00022134 67.40056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b110 -00022135 67.40059662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b120 -00022136 67.40060425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b120 -00022137 67.40062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b130 -00022138 67.40062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b130 -00022139 67.40065002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b140 -00022140 67.40065002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b140 -00022141 67.40068054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b150 -00022142 67.40068817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b150 -00022143 67.40071106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b160 -00022144 67.40071106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b160 -00022145 67.40073395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b170 -00022146 67.40074158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b170 -00022147 67.40076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b180 -00022148 67.40076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b180 -00022149 67.40079498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b190 -00022150 67.40080261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b190 -00022151 67.40082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a0 -00022152 67.40082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a0 -00022153 67.40084839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b0 -00022154 67.40085602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b0 -00022155 67.40088654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c0 -00022156 67.40088654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c0 -00022157 67.40090942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d0 -00022158 67.40090942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d0 -00022159 67.40093231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e0 -00022160 67.40093994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e0 -00022161 67.40096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f0 -00022162 67.40096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f0 -00022163 67.40099335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b200 -00022164 67.40100098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b200 -00022165 67.40102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b210 -00022166 67.40102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b210 -00022167 67.40104675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b220 -00022168 67.40105438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b220 -00022169 67.40108490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b230 -00022170 67.40108490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b230 -00022171 67.40110779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b240 -00022172 67.40111542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b240 -00022173 67.40113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b250 -00022174 67.40113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b250 -00022175 67.40116119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b260 -00022176 67.40116119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b260 -00022177 67.40119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b270 -00022178 67.40119934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b270 -00022179 67.40122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b280 -00022180 67.40122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b280 -00022181 67.40124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b290 -00022182 67.40125275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b290 -00022183 67.40128326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a0 -00022184 67.40128326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a0 -00022185 67.40130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b0 -00022186 67.40131378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b0 -00022187 67.40133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c0 -00022188 67.40133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c0 -00022189 67.40135956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d0 -00022190 67.40136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d0 -00022191 67.40139771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e0 -00022192 67.40139771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e0 -00022193 67.40142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f0 -00022194 67.40142822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f0 -00022195 67.40145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b300 -00022196 67.40145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b300 -00022197 67.40148163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b310 -00022198 67.40148163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b310 -00022199 67.40150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b320 -00022200 67.40151215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b320 -00022201 67.40153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b330 -00022202 67.40153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b330 -00022203 67.40155792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b340 -00022204 67.40156555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b340 -00022205 67.40159607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b350 -00022206 67.40160370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b350 -00022207 67.40162659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b360 -00022208 67.40162659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b360 -00022209 67.40164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b370 -00022210 67.40164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b370 -00022211 67.40167999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b380 -00022212 67.40167999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b380 -00022213 67.40171051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b390 -00022214 67.40171051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b390 -00022215 67.40173340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a0 -00022216 67.40174103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a0 -00022217 67.40176392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -00022218 67.40176392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -00022219 67.40179443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -00022220 67.40180206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -00022221 67.40182495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -00022222 67.40182495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -00022223 67.40184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -00022224 67.40184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -00022225 67.40187836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -00022226 67.40187836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -00022227 67.40190887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -00022228 67.40190887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -00022229 67.40193176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -00022230 67.40193939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -00022231 67.40196228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -00022232 67.40196228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -00022233 67.40199280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -00022234 67.40200043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -00022235 67.40202332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -00022236 67.40202332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -00022237 67.40204620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -00022238 67.40205383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -00022239 67.40207672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -00022240 67.40207672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -00022241 67.40210724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -00022242 67.40210724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -00022243 67.40213013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -00022244 67.40213776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -00022245 67.40216064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -00022246 67.40216064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -00022247 67.40219116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -00022248 67.40219879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -00022249 67.40222168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -00022250 67.40222168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -00022251 67.40224457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -00022252 67.40225220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -00022253 67.40227509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -00022254 67.40227509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -00022255 67.40230560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -00022256 67.40230560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -00022257 67.40232849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -00022258 67.40233612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -00022259 67.40235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -00022260 67.40235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -00022261 67.40238953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b510 -00022262 67.40239716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b510 -00022263 67.40242004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b520 -00022264 67.40242004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b520 -00022265 67.40244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b530 -00022266 67.40244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b530 -00022267 67.40247345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b540 -00022268 67.40247345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b540 -00022269 67.40250397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b550 -00022270 67.40250397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b550 -00022271 67.40252686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b560 -00022272 67.40253448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b560 -00022273 67.40255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b570 -00022274 67.40255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b570 -00022275 67.40258789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b580 -00022276 67.40259552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b580 -00022277 67.40261841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b590 -00022278 67.40261841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b590 -00022279 67.40264130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a0 -00022280 67.40264893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a0 -00022281 67.40267181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b0 -00022282 67.40267181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b0 -00022283 67.40270233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c0 -00022284 67.40270233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c0 -00022285 67.40272522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d0 -00022286 67.40273285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d0 -00022287 67.40275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e0 -00022288 67.40275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e0 -00022289 67.40278625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f0 -00022290 67.40279388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f0 -00022291 67.40281677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b600 -00022292 67.40281677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b600 -00022293 67.40283966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b610 -00022294 67.40284729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b610 -00022295 67.40287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b620 -00022296 67.40287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b620 -00022297 67.40290070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b630 -00022298 67.40290833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b630 -00022299 67.40293121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b640 -00022300 67.40293121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b640 -00022301 67.40295410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b650 -00022302 67.40296173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b650 -00022303 67.40299225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b660 -00022304 67.40299225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b660 -00022305 67.40301514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b670 -00022306 67.40301514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b670 -00022307 67.40303802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b680 -00022308 67.40304565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b680 -00022309 67.40306854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b690 -00022310 67.40306854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b690 -00022311 67.40309906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6a0 -00022312 67.40310669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6a0 -00022313 67.40312958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6b0 -00022314 67.40312958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6b0 -00022315 67.40315247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6c0 -00022316 67.40316010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6c0 -00022317 67.40319061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6d0 -00022318 67.40319061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6d0 -00022319 67.40321350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6e0 -00022320 67.40321350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6e0 -00022321 67.40323639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f0 -00022322 67.40324402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f0 -00022323 67.40326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b700 -00022324 67.40326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b700 -00022325 67.40329742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b710 -00022326 67.40330505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b710 -00022327 67.40332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b720 -00022328 67.40332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b720 -00022329 67.40335083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b730 -00022330 67.40335846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b730 -00022331 67.40338898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b740 -00022332 67.40338898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b740 -00022333 67.40341187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b750 -00022334 67.40341949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b750 -00022335 67.40344238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b760 -00022336 67.40344238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b760 -00022337 67.40346527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b770 -00022338 67.40347290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b770 -00022339 67.40350342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b780 -00022340 67.40350342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b780 -00022341 67.40352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b790 -00022342 67.40352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b790 -00022343 67.40354919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7a0 -00022344 67.40355682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7a0 -00022345 67.40358734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7b0 -00022346 67.40358734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7b0 -00022347 67.40361023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7c0 -00022348 67.40361786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7c0 -00022349 67.40364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7d0 -00022350 67.40364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7d0 -00022351 67.40366364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7e0 -00022352 67.40367126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7e0 -00022353 67.40370178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f0 -00022354 67.40370178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f0 -00022355 67.40372467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b800 -00022356 67.40373230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b800 -00022357 67.40375519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b810 -00022358 67.40375519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b810 -00022359 67.40378571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b820 -00022360 67.40378571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b820 -00022361 67.40381622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b830 -00022362 67.40381622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b830 -00022363 67.40383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b840 -00022364 67.40383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b840 -00022365 67.40386963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -00022366 67.40386963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -00022367 67.40390015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -00022368 67.40390015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -00022369 67.40392303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -00022370 67.40393066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -00022371 67.40395355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -00022372 67.40395355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -00022373 67.40398407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -00022374 67.40398407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -00022375 67.40401459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -00022376 67.40401459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -00022377 67.40403748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -00022378 67.40404510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -00022379 67.40406799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -00022380 67.40406799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -00022381 67.40409851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -00022382 67.40410614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -00022383 67.40412903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -00022384 67.40412903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -00022385 67.40415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f0 -00022386 67.40415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f0 -00022387 67.40418243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b900 -00022388 67.40418243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b900 -00022389 67.40421295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b910 -00022390 67.40421295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b910 -00022391 67.40424347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b920 -00022392 67.40424347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b920 -00022393 67.40426636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b930 -00022394 67.40427399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b930 -00022395 67.40430450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b940 -00022396 67.40430450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b940 -00022397 67.40432739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b950 -00022398 67.40432739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b950 -00022399 67.40435028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b960 -00022400 67.40435791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b960 -00022401 67.40438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b970 -00022402 67.40438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b970 -00022403 67.40441132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b980 -00022404 67.40441895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b980 -00022405 67.40444183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b990 -00022406 67.40444183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b990 -00022407 67.40446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9a0 -00022408 67.40447235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9a0 -00022409 67.40450287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9b0 -00022410 67.40450287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9b0 -00022411 67.40452576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9c0 -00022412 67.40453339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9c0 -00022413 67.40455627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9d0 -00022414 67.40455627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9d0 -00022415 67.40457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9e0 -00022416 67.40458679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9e0 -00022417 67.40461731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f0 -00022418 67.40461731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b9f0 -00022419 67.40464020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba00 -00022420 67.40464783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba00 -00022421 67.40467072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba10 -00022422 67.40467072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba10 -00022423 67.40470123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba20 -00022424 67.40470123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba20 -00022425 67.40473175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba30 -00022426 67.40473175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba30 -00022427 67.40475464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba40 -00022428 67.40476227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba40 -00022429 67.40478516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba50 -00022430 67.40478516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba50 -00022431 67.40481567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba60 -00022432 67.40481567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba60 -00022433 67.40484619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba70 -00022434 67.40484619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba70 -00022435 67.40486908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba80 -00022436 67.40487671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba80 -00022437 67.40489960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba90 -00022438 67.40489960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba90 -00022439 67.40493011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa0 -00022440 67.40493774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baa0 -00022441 67.40496063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab0 -00022442 67.40496063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bab0 -00022443 67.40498352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac0 -00022444 67.40499115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bac0 -00022445 67.40501404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad0 -00022446 67.40501404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bad0 -00022447 67.40504456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae0 -00022448 67.40504456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bae0 -00022449 67.40506744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf0 -00022450 67.40507507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2baf0 -00022451 67.40509796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb00 -00022452 67.40509796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb00 -00022453 67.40512848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb10 -00022454 67.40513611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb10 -00022455 67.40515900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb20 -00022456 67.40515900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb20 -00022457 67.40518951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb30 -00022458 67.40518951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb30 -00022459 67.40521240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb40 -00022460 67.40522003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb40 -00022461 67.40524292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb50 -00022462 67.40525055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb50 -00022463 67.40527344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb60 -00022464 67.40527344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb60 -00022465 67.40529633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb70 -00022466 67.40529633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb70 -00022467 67.40532684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb80 -00022468 67.40532684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb80 -00022469 67.40534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb90 -00022470 67.40535736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb90 -00022471 67.40538025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bba0 -00022472 67.40538025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bba0 -00022473 67.40541077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbb0 -00022474 67.40541077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbb0 -00022475 67.40543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbc0 -00022476 67.40543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbc0 -00022477 67.40545654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd0 -00022478 67.40546417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd0 -00022479 67.40548706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe0 -00022480 67.40549469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe0 -00022481 67.40551758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf0 -00022482 67.40551758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf0 -00022483 67.40554047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc00 -00022484 67.40554047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc00 -00022485 67.40557098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc10 -00022486 67.40557098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc10 -00022487 67.40560150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc20 -00022488 67.40560150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc20 -00022489 67.40562439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc30 -00022490 67.40562439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc30 -00022491 67.40565491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc40 -00022492 67.40565491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc40 -00022493 67.40567780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc50 -00022494 67.40568542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc50 -00022495 67.40570068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc60 -00022496 67.40570831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc60 -00022497 67.40573120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc70 -00022498 67.40573120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc70 -00022499 67.40576172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc80 -00022500 67.40576172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc80 -00022501 67.40578461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc90 -00022502 67.40579224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc90 -00022503 67.40581512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bca0 -00022504 67.40581512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bca0 -00022505 67.40584564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcb0 -00022506 67.40584564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcb0 -00022507 67.40586853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcc0 -00022508 67.40587616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcc0 -00022509 67.40589142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcd0 -00022510 67.40589905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcd0 -00022511 67.40592957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bce0 -00022512 67.40592957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bce0 -00022513 67.40595245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcf0 -00022514 67.40595245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bcf0 -00022515 67.40597534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd00 -00022516 67.40597534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd00 -00022517 67.40600586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd10 -00022518 67.40600586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd10 -00022519 67.40603638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -00022520 67.40603638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -00022521 67.40605927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -00022522 67.40605927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -00022523 67.40608978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -00022524 67.40608978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -00022525 67.40611267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -00022526 67.40612030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -00022527 67.40614319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -00022528 67.40614319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -00022529 67.40616608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -00022530 67.40616608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -00022531 67.40619659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -00022532 67.40619659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -00022533 67.40621948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -00022534 67.40622711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -00022535 67.40625000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -00022536 67.40625000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -00022537 67.40628052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -00022538 67.40628052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -00022539 67.40630341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -00022540 67.40630341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -00022541 67.40632629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -00022542 67.40633392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -00022543 67.40636444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -00022544 67.40636444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -00022545 67.40638733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -00022546 67.40638733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -00022547 67.40641022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -00022548 67.40641785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -00022549 67.40644073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -00022550 67.40644836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -00022551 67.40647125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -00022552 67.40647125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -00022553 67.40649414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -00022554 67.40649414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -00022555 67.40652466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -00022556 67.40652466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -00022557 67.40654755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -00022558 67.40655518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -00022559 67.40657806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -00022560 67.40657806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -00022561 67.40660858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -00022562 67.40660858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -00022563 67.40663910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be80 -00022564 67.40663910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be80 -00022565 67.40666199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be90 -00022566 67.40666962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be90 -00022567 67.40669250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea0 -00022568 67.40669250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea0 -00022569 67.40672302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb0 -00022570 67.40672302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb0 -00022571 67.40678406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec0 -00022572 67.40679169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec0 -00022573 67.40681458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed0 -00022574 67.40681458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed0 -00022575 67.40684509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee0 -00022576 67.40684509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee0 -00022577 67.40687561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef0 -00022578 67.40687561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef0 -00022579 67.40689850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf00 -00022580 67.40689850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf00 -00022581 67.40692139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf10 -00022582 67.40692902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf10 -00022583 67.40695953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf20 -00022584 67.40695953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf20 -00022585 67.40698242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf30 -00022586 67.40699005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf30 -00022587 67.40701294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf40 -00022588 67.40701294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf40 -00022589 67.40704346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf50 -00022590 67.40704346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf50 -00022591 67.40707397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf60 -00022592 67.40707397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf60 -00022593 67.40709686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf70 -00022594 67.40709686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf70 -00022595 67.40711975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf80 -00022596 67.40712738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf80 -00022597 67.40715790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf90 -00022598 67.40715790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf90 -00022599 67.40718079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfa0 -00022600 67.40718842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfa0 -00022601 67.40721130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfb0 -00022602 67.40721130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfb0 -00022603 67.40724182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfc0 -00022604 67.40724182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfc0 -00022605 67.40727234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd0 -00022606 67.40727234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfd0 -00022607 67.40729523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe0 -00022608 67.40729523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bfe0 -00022609 67.40731812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff0 -00022610 67.40732574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff0 -00022611 67.40735626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c000 -00022612 67.40735626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c000 -00022613 67.40737915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c010 -00022614 67.40738678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c010 -00022615 67.40740967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c020 -00022616 67.40740967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c020 -00022617 67.40744019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c030 -00022618 67.40744019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c030 -00022619 67.40747070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c040 -00022620 67.40747070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c040 -00022621 67.40749359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c050 -00022622 67.40750122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c050 -00022623 67.40752411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c060 -00022624 67.40752411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c060 -00022625 67.40755463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c070 -00022626 67.40755463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c070 -00022627 67.40758514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c080 -00022628 67.40758514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c080 -00022629 67.40760803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c090 -00022630 67.40760803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c090 -00022631 67.40763855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a0 -00022632 67.40763855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a0 -00022633 67.40766907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b0 -00022634 67.40766907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b0 -00022635 67.40769196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c0 -00022636 67.40769958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c0 -00022637 67.40772247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d0 -00022638 67.40772247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d0 -00022639 67.40775299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e0 -00022640 67.40775299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e0 -00022641 67.40778351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f0 -00022642 67.40778351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f0 -00022643 67.40780640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c100 -00022644 67.40780640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c100 -00022645 67.40783691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c110 -00022646 67.40783691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c110 -00022647 67.40786743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c120 -00022648 67.40786743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c120 -00022649 67.40789032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c130 -00022650 67.40789795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c130 -00022651 67.40792084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c140 -00022652 67.40792084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c140 -00022653 67.40795135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c150 -00022654 67.40795898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c150 -00022655 67.40798187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c160 -00022656 67.40798187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c160 -00022657 67.40800476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c170 -00022658 67.40800476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c170 -00022659 67.40803528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c180 -00022660 67.40803528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c180 -00022661 67.40806580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c190 -00022662 67.40806580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c190 -00022663 67.40808868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a0 -00022664 67.40809631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a0 -00022665 67.40811920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b0 -00022666 67.40811920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b0 -00022667 67.40814972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c0 -00022668 67.40815735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c0 -00022669 67.40818024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d0 -00022670 67.40818024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d0 -00022671 67.40820313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e0 -00022672 67.40821075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e0 -00022673 67.40823364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f0 -00022674 67.40823364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f0 -00022675 67.40826416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c200 -00022676 67.40826416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c200 -00022677 67.40828705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c210 -00022678 67.40829468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c210 -00022679 67.40831757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c220 -00022680 67.40831757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c220 -00022681 67.40834808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c230 -00022682 67.40835571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c230 -00022683 67.40837860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c240 -00022684 67.40837860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c240 -00022685 67.40840149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c250 -00022686 67.40840912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c250 -00022687 67.40843201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c260 -00022688 67.40843201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c260 -00022689 67.40846252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c270 -00022690 67.40846252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c270 -00022691 67.40848541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c280 -00022692 67.40849304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c280 -00022693 67.40851593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c290 -00022694 67.40851593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c290 -00022695 67.40854645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a0 -00022696 67.40855408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a0 -00022697 67.40857697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b0 -00022698 67.40857697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b0 -00022699 67.40859985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c0 -00022700 67.40860748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c0 -00022701 67.40863037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d0 -00022702 67.40863037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d0 -00022703 67.40866089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e0 -00022704 67.40866852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e0 -00022705 67.40869141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f0 -00022706 67.40869141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f0 -00022707 67.40871429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c300 -00022708 67.40872192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c300 -00022709 67.40875244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c310 -00022710 67.40875244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c310 -00022711 67.40877533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c320 -00022712 67.40878296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c320 -00022713 67.40880585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c330 -00022714 67.40880585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c330 -00022715 67.40882874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c340 -00022716 67.40882874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c340 -00022717 67.40885925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c350 -00022718 67.40886688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c350 -00022719 67.40888977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c360 -00022720 67.40888977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c360 -00022721 67.40891266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c370 -00022722 67.40892029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c370 -00022723 67.40895081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c380 -00022724 67.40895081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c380 -00022725 67.40897369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c390 -00022726 67.40898132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c390 -00022727 67.40900421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a0 -00022728 67.40900421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a0 -00022729 67.40902710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b0 -00022730 67.40903473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3b0 -00022731 67.40906525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c0 -00022732 67.40906525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3c0 -00022733 67.40908813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d0 -00022734 67.40909576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d0 -00022735 67.40911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e0 -00022736 67.40911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e0 -00022737 67.40914917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f0 -00022738 67.40914917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f0 -00022739 67.40917206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c400 -00022740 67.40917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c400 -00022741 67.40920258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c410 -00022742 67.40920258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c410 -00022743 67.40922546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c420 -00022744 67.40923309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c420 -00022745 67.40926361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c430 -00022746 67.40926361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c430 -00022747 67.40928650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c440 -00022748 67.40929413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c440 -00022749 67.40931702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c450 -00022750 67.40931702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c450 -00022751 67.40934753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c460 -00022752 67.40934753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c460 -00022753 67.40937042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c470 -00022754 67.40937805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c470 -00022755 67.40940094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c480 -00022756 67.40940094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c480 -00022757 67.40942383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c490 -00022758 67.40943146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c490 -00022759 67.40946198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -00022760 67.40946198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -00022761 67.40948486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -00022762 67.40949249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -00022763 67.40951538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -00022764 67.40951538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -00022765 67.40954590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -00022766 67.40954590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -00022767 67.40957642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -00022768 67.40957642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -00022769 67.40959930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -00022770 67.40959930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -00022771 67.40962219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -00022772 67.40962982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -00022773 67.40966034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -00022774 67.40966034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -00022775 67.40968323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -00022776 67.40969086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -00022777 67.40971375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -00022778 67.40971375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -00022779 67.40974426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -00022780 67.40974426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -00022781 67.40977478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -00022782 67.40977478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -00022783 67.40979767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -00022784 67.40979767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -00022785 67.40982056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -00022786 67.40982819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -00022787 67.40985870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -00022788 67.40985870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -00022789 67.40988159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -00022790 67.40988922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -00022791 67.40991211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -00022792 67.40991211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -00022793 67.40994263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -00022794 67.40994263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -00022795 67.40997314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -00022796 67.40997314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -00022797 67.40999603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -00022798 67.40999603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -00022799 67.41002655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -00022800 67.41002655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -00022801 67.41005707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -00022802 67.41005707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -00022803 67.41007996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c600 -00022804 67.41008759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c600 -00022805 67.41011047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c610 -00022806 67.41011047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c610 -00022807 67.41014099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c620 -00022808 67.41014099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c620 -00022809 67.41017151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c630 -00022810 67.41017151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c630 -00022811 67.41019440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c640 -00022812 67.41019440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c640 -00022813 67.41022491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c650 -00022814 67.41022491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c650 -00022815 67.41025543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c660 -00022816 67.41025543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c660 -00022817 67.41027832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c670 -00022818 67.41028595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c670 -00022819 67.41030884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c680 -00022820 67.41030884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c680 -00022821 67.41033936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c690 -00022822 67.41033936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c690 -00022823 67.41036987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a0 -00022824 67.41036987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a0 -00022825 67.41039276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b0 -00022826 67.41039276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b0 -00022827 67.41042328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c0 -00022828 67.41043091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c0 -00022829 67.41046143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d0 -00022830 67.41046143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d0 -00022831 67.41049194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e0 -00022832 67.41049957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e0 -00022833 67.41052246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f0 -00022834 67.41052246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f0 -00022835 67.41054535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c700 -00022836 67.41055298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c700 -00022837 67.41057587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c710 -00022838 67.41057587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c710 -00022839 67.41060638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c720 -00022840 67.41061401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c720 -00022841 67.41063690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c730 -00022842 67.41063690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c730 -00022843 67.41065979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c740 -00022844 67.41066742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c740 -00022845 67.41069794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c750 -00022846 67.41069794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c750 -00022847 67.41072083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c760 -00022848 67.41072083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c760 -00022849 67.41075134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c770 -00022850 67.41075134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c770 -00022851 67.41077423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -00022852 67.41077423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -00022853 67.41080475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -00022854 67.41081238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -00022855 67.41083527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -00022856 67.41083527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -00022857 67.41085815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -00022858 67.41086578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -00022859 67.41089630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -00022860 67.41089630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -00022861 67.41091919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -00022862 67.41092682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -00022863 67.41094971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -00022864 67.41094971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -00022865 67.41097260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -00022866 67.41097260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -00022867 67.41100311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -00022868 67.41101074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -00022869 67.41103363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -00022870 67.41103363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -00022871 67.41105652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -00022872 67.41106415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -00022873 67.41109467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -00022874 67.41109467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -00022875 67.41111755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -00022876 67.41112518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -00022877 67.41114807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -00022878 67.41114807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -00022879 67.41117096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -00022880 67.41117859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -00022881 67.41120911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -00022882 67.41120911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -00022883 67.41123199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -00022884 67.41123962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -00022885 67.41126251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -00022886 67.41126251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -00022887 67.41129303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -00022888 67.41129303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -00022889 67.41131592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -00022890 67.41132355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -00022891 67.41134644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -00022892 67.41134644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -00022893 67.41136932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -00022894 67.41137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -00022895 67.41140747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e0 -00022896 67.41140747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e0 -00022897 67.41143036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f0 -00022898 67.41143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f0 -00022899 67.41146088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c900 -00022900 67.41146088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c900 -00022901 67.41149139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c910 -00022902 67.41149139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c910 -00022903 67.41152191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c920 -00022904 67.41152191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c920 -00022905 67.41154480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c930 -00022906 67.41154480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c930 -00022907 67.41156769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c940 -00022908 67.41157532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c940 -00022909 67.41160583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c950 -00022910 67.41160583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c950 -00022911 67.41162872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c960 -00022912 67.41163635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c960 -00022913 67.41165924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c970 -00022914 67.41165924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c970 -00022915 67.41168976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c980 -00022916 67.41168976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c980 -00022917 67.41172028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c990 -00022918 67.41172028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c990 -00022919 67.41174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a0 -00022920 67.41175079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a0 -00022921 67.41177368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b0 -00022922 67.41177368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b0 -00022923 67.41180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c0 -00022924 67.41180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c0 -00022925 67.41183472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d0 -00022926 67.41183472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d0 -00022927 67.41185760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e0 -00022928 67.41185760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e0 -00022929 67.41188812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f0 -00022930 67.41188812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f0 -00022931 67.41191864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca00 -00022932 67.41191864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca00 -00022933 67.41194153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca10 -00022934 67.41194916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca10 -00022935 67.41197205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca20 -00022936 67.41197205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca20 -00022937 67.41200256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca30 -00022938 67.41201019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca30 -00022939 67.41203308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca40 -00022940 67.41203308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca40 -00022941 67.41205597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca50 -00022942 67.41205597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca50 -00022943 67.41208649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca60 -00022944 67.41208649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca60 -00022945 67.41211700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca70 -00022946 67.41211700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca70 -00022947 67.41213989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca80 -00022948 67.41214752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca80 -00022949 67.41217041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca90 -00022950 67.41217041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca90 -00022951 67.41220093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa0 -00022952 67.41220856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa0 -00022953 67.41223145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab0 -00022954 67.41223145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab0 -00022955 67.41225433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac0 -00022956 67.41226196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac0 -00022957 67.41228485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad0 -00022958 67.41228485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad0 -00022959 67.41231537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae0 -00022960 67.41231537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae0 -00022961 67.41233826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf0 -00022962 67.41234589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf0 -00022963 67.41236877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb00 -00022964 67.41236877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb00 -00022965 67.41239929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb10 -00022966 67.41240692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb10 -00022967 67.41242981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb20 -00022968 67.41242981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb20 -00022969 67.41245270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb30 -00022970 67.41246033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb30 -00022971 67.41248322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb40 -00022972 67.41248322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb40 -00022973 67.41251373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb50 -00022974 67.41252136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb50 -00022975 67.41254425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb60 -00022976 67.41254425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb60 -00022977 67.41256714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb70 -00022978 67.41257477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb70 -00022979 67.41260529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb80 -00022980 67.41260529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb80 -00022981 67.41262817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb90 -00022982 67.41263580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb90 -00022983 67.41265869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cba0 -00022984 67.41265869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cba0 -00022985 67.41268158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbb0 -00022986 67.41268158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbb0 -00022987 67.41271210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbc0 -00022988 67.41271973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbc0 -00022989 67.41274261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbd0 -00022990 67.41274261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbd0 -00022991 67.41276550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbe0 -00022992 67.41277313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbe0 -00022993 67.41280365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbf0 -00022994 67.41280365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cbf0 -00022995 67.41282654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc00 -00022996 67.41282654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc00 -00022997 67.41285706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc10 -00022998 67.41285706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc10 -00022999 67.41287994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc20 -00023000 67.41287994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc20 -00023001 67.41291046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc30 -00023002 67.41291809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc30 -00023003 67.41294098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc40 -00023004 67.41294098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc40 -00023005 67.41296387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc50 -00023006 67.41297150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc50 -00023007 67.41300201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc60 -00023008 67.41300201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc60 -00023009 67.41302490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -00023010 67.41303253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -00023011 67.41305542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -00023012 67.41305542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -00023013 67.41307831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -00023014 67.41307831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -00023015 67.41310883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -00023016 67.41311646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -00023017 67.41313934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -00023018 67.41313934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -00023019 67.41316223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -00023020 67.41316986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -00023021 67.41320038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -00023022 67.41320038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -00023023 67.41322327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -00023024 67.41323090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -00023025 67.41325378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -00023026 67.41325378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -00023027 67.41327667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -00023028 67.41328430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -00023029 67.41331482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -00023030 67.41331482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -00023031 67.41333771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -00023032 67.41333771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -00023033 67.41336060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -00023034 67.41336823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -00023035 67.41339874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -00023036 67.41339874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -00023037 67.41342163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -00023038 67.41342926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -00023039 67.41345215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -00023040 67.41345215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -00023041 67.41347504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -00023042 67.41348267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -00023043 67.41351318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -00023044 67.41351318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -00023045 67.41353607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -00023046 67.41354370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -00023047 67.41356659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -00023048 67.41356659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -00023049 67.41359711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -00023050 67.41359711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -00023051 67.41362000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -00023052 67.41362762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -00023053 67.41365051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd0 -00023054 67.41365051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd0 -00023055 67.41367340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde0 -00023056 67.41368103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde0 -00023057 67.41371155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf0 -00023058 67.41371155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf0 -00023059 67.41373444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce00 -00023060 67.41374207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce00 -00023061 67.41376495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce10 -00023062 67.41376495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce10 -00023063 67.41379547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce20 -00023064 67.41379547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce20 -00023065 67.41381836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce30 -00023066 67.41382599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce30 -00023067 67.41384888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce40 -00023068 67.41384888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce40 -00023069 67.41387177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce50 -00023070 67.41387939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce50 -00023071 67.41390991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce60 -00023072 67.41390991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce60 -00023073 67.41393280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce70 -00023074 67.41394043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce70 -00023075 67.41396332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce80 -00023076 67.41396332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce80 -00023077 67.41399384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce90 -00023078 67.41399384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce90 -00023079 67.41401672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea0 -00023080 67.41402435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea0 -00023081 67.41404724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb0 -00023082 67.41404724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb0 -00023083 67.41407013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec0 -00023084 67.41407776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec0 -00023085 67.41410828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced0 -00023086 67.41410828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced0 -00023087 67.41413116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee0 -00023088 67.41413879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee0 -00023089 67.41416168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef0 -00023090 67.41416168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef0 -00023091 67.41419220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf00 -00023092 67.41419220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf00 -00023093 67.41422272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf10 -00023094 67.41422272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf10 -00023095 67.41424561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf20 -00023096 67.41424561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf20 -00023097 67.41426849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf30 -00023098 67.41427612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf30 -00023099 67.41430664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf40 -00023100 67.41430664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf40 -00023101 67.41432953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf50 -00023102 67.41433716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf50 -00023103 67.41436005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf60 -00023104 67.41436005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf60 -00023105 67.41439056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf70 -00023106 67.41439056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf70 -00023107 67.41442108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf80 -00023108 67.41442108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf80 -00023109 67.41444397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf90 -00023110 67.41444397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf90 -00023111 67.41446686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa0 -00023112 67.41447449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa0 -00023113 67.41450500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb0 -00023114 67.41450500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb0 -00023115 67.41452789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc0 -00023116 67.41453552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc0 -00023117 67.41455841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd0 -00023118 67.41455841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd0 -00023119 67.41458893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfe0 -00023120 67.41458893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfe0 -00023121 67.41461945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cff0 -00023122 67.41461945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cff0 -00023123 67.41464233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d000 -00023124 67.41464996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d000 -00023125 67.41467285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d010 -00023126 67.41467285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d010 -00023127 67.41470337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d020 -00023128 67.41471100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d020 -00023129 67.41473389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d030 -00023130 67.41473389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d030 -00023131 67.41475677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d040 -00023132 67.41475677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d040 -00023133 67.41478729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d050 -00023134 67.41478729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d050 -00023135 67.41481781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d060 -00023136 67.41481781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d060 -00023137 67.41484070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d070 -00023138 67.41484833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d070 -00023139 67.41487122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d080 -00023140 67.41487122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d080 -00023141 67.41490173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d090 -00023142 67.41490936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d090 -00023143 67.41493225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a0 -00023144 67.41493225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a0 -00023145 67.41495514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b0 -00023146 67.41495514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b0 -00023147 67.41498566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c0 -00023148 67.41498566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c0 -00023149 67.41501617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d0 -00023150 67.41501617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d0 -00023151 67.41503906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e0 -00023152 67.41504669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e0 -00023153 67.41506958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f0 -00023154 67.41506958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f0 -00023155 67.41510010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d100 -00023156 67.41510773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d100 -00023157 67.41513062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d110 -00023158 67.41513062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d110 -00023159 67.41515350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d120 -00023160 67.41515350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d120 -00023161 67.41518402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d130 -00023162 67.41518402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d130 -00023163 67.41521454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d140 -00023164 67.41521454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d140 -00023165 67.41523743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d150 -00023166 67.41524506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d150 -00023167 67.41526794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d160 -00023168 67.41526794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d160 -00023169 67.41529846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d170 -00023170 67.41530609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d170 -00023171 67.41532898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d180 -00023172 67.41532898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d180 -00023173 67.41535187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d190 -00023174 67.41535950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d190 -00023175 67.41538239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a0 -00023176 67.41538239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a0 -00023177 67.41541290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b0 -00023178 67.41541290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b0 -00023179 67.41543579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c0 -00023180 67.41544342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c0 -00023181 67.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d0 -00023182 67.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d0 -00023183 67.41549683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e0 -00023184 67.41550446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e0 -00023185 67.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f0 -00023186 67.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f0 -00023187 67.41555023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d200 -00023188 67.41555786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d200 -00023189 67.41558075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d210 -00023190 67.41558075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d210 -00023191 67.41561127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00023192 67.41561127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00023193 67.41563416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00023194 67.41564178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00023195 67.41566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00023196 67.41566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00023197 67.41569519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00023198 67.41570282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00023199 67.41572571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00023200 67.41572571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00023201 67.41574860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00023202 67.41575623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00023203 67.41577911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00023204 67.41577911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00023205 67.41580963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00023206 67.41580963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00023207 67.41584015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00023208 67.41584015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00023209 67.41586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00023210 67.41586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00023211 67.41589355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00023212 67.41590118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00023213 67.41592407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d0 -00023214 67.41592407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d0 -00023215 67.41594696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e0 -00023216 67.41595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e0 -00023217 67.41597748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f0 -00023218 67.41597748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f0 -00023219 67.41600800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d300 -00023220 67.41601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d300 -00023221 67.41603851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d310 -00023222 67.41603851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d310 -00023223 67.41606140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d320 -00023224 67.41606140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d320 -00023225 67.41609192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d330 -00023226 67.41609955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d330 -00023227 67.41612244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d340 -00023228 67.41612244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d340 -00023229 67.41614532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d350 -00023230 67.41615295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d350 -00023231 67.41617584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d360 -00023232 67.41617584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d360 -00023233 67.41620636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d370 -00023234 67.41621399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d370 -00023235 67.41623688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d380 -00023236 67.41623688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d380 -00023237 67.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d390 -00023238 67.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d390 -00023239 67.41629028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a0 -00023240 67.41629791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a0 -00023241 67.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b0 -00023242 67.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b0 -00023243 67.41634369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c0 -00023244 67.41635132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c0 -00023245 67.41637421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d0 -00023246 67.41637421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d0 -00023247 67.41640472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e0 -00023248 67.41641235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e0 -00023249 67.41643524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f0 -00023250 67.41643524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f0 -00023251 67.41645813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d400 -00023252 67.41645813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d400 -00023253 67.41648865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d410 -00023254 67.41649628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d410 -00023255 67.41651917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d420 -00023256 67.41651917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d420 -00023257 67.41654205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d430 -00023258 67.41654968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d430 -00023259 67.41657257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d440 -00023260 67.41657257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d440 -00023261 67.41660309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d450 -00023262 67.41661072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d450 -00023263 67.41663361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d460 -00023264 67.41663361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d460 -00023265 67.41665649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d470 -00023266 67.41666412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d470 -00023267 67.41669464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d480 -00023268 67.41669464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d480 -00023269 67.41671753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d490 -00023270 67.41671753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d490 -00023271 67.41674042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a0 -00023272 67.41674805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a0 -00023273 67.41677094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b0 -00023274 67.41677094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b0 -00023275 67.41680145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c0 -00023276 67.41680908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c0 -00023277 67.41683197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d0 -00023278 67.41683197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d0 -00023279 67.41685486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e0 -00023280 67.41686249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e0 -00023281 67.41689301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f0 -00023282 67.41689301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f0 -00023283 67.41691589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d500 -00023284 67.41692352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d500 -00023285 67.41694641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d510 -00023286 67.41694641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d510 -00023287 67.41696930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d520 -00023288 67.41696930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d520 -00023289 67.41699982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d530 -00023290 67.41700745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d530 -00023291 67.41703033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -00023292 67.41703033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -00023293 67.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -00023294 67.41706085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -00023295 67.41709137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00023296 67.41709137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00023297 67.41711426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00023298 67.41712189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00023299 67.41714478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00023300 67.41714478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00023301 67.41716766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00023302 67.41716766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00023303 67.41719818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00023304 67.41720581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00023305 67.41722870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00023306 67.41722870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00023307 67.41725159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00023308 67.41725922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00023309 67.41728973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00023310 67.41728973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00023311 67.41731262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00023312 67.41732025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00023313 67.41734314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00023314 67.41734314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00023315 67.41736603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00023316 67.41736603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00023317 67.41739655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -00023318 67.41740417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -00023319 67.41742706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -00023320 67.41742706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -00023321 67.41744995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -00023322 67.41745758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -00023323 67.41748810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -00023324 67.41748810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -00023325 67.41751099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -00023326 67.41751862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -00023327 67.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -00023328 67.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -00023329 67.41756439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -00023330 67.41757202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -00023331 67.41760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -00023332 67.41760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -00023333 67.41762543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -00023334 67.41763306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -00023335 67.41765594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a0 -00023336 67.41765594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a0 -00023337 67.41768646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b0 -00023338 67.41768646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b0 -00023339 67.41770935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c0 -00023340 67.41771698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c0 -00023341 67.41773987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d0 -00023342 67.41773987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d0 -00023343 67.41776276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e0 -00023344 67.41777039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e0 -00023345 67.41780090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f0 -00023346 67.41780090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f0 -00023347 67.41782379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d700 -00023348 67.41783142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d700 -00023349 67.41785431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d710 -00023350 67.41785431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d710 -00023351 67.41788483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d720 -00023352 67.41788483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d720 -00023353 67.41790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d730 -00023354 67.41791534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d730 -00023355 67.41793823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d740 -00023356 67.41793823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d740 -00023357 67.41796112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d750 -00023358 67.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d750 -00023359 67.41799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d760 -00023360 67.41799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d760 -00023361 67.41802216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d770 -00023362 67.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d770 -00023363 67.41805267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d780 -00023364 67.41805267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d780 -00023365 67.41808319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d790 -00023366 67.41808319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d790 -00023367 67.41811371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a0 -00023368 67.41811371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a0 -00023369 67.41813660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b0 -00023370 67.41813660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b0 -00023371 67.41815948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c0 -00023372 67.41816711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c0 -00023373 67.41819763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d0 -00023374 67.41819763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d0 -00023375 67.41822052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e0 -00023376 67.41822815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e0 -00023377 67.41825104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f0 -00023378 67.41825104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f0 -00023379 67.41828156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d800 -00023380 67.41828156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d800 -00023381 67.41831207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d810 -00023382 67.41831207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d810 -00023383 67.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d820 -00023384 67.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d820 -00023385 67.41836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d830 -00023386 67.41836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d830 -00023387 67.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d840 -00023388 67.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d840 -00023389 67.41841888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d850 -00023390 67.41842651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d850 -00023391 67.41844940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d860 -00023392 67.41844940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d860 -00023393 67.41847992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d870 -00023394 67.41847992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d870 -00023395 67.41850281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d880 -00023396 67.41851044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d880 -00023397 67.41852570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d890 -00023398 67.41853333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d890 -00023399 67.41855621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a0 -00023400 67.41856384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a0 -00023401 67.41859436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b0 -00023402 67.41859436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b0 -00023403 67.41861725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c0 -00023404 67.41862488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c0 -00023405 67.41864777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d0 -00023406 67.41864777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d0 -00023407 67.41867828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e0 -00023408 67.41867828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e0 -00023409 67.41870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f0 -00023410 67.41870880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f0 -00023411 67.41873169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d900 -00023412 67.41873169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d900 -00023413 67.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d910 -00023414 67.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d910 -00023415 67.41879272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d920 -00023416 67.41879272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d920 -00023417 67.41881561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d930 -00023418 67.41882324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d930 -00023419 67.41884613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d940 -00023420 67.41884613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d940 -00023421 67.41887665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d950 -00023422 67.41887665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d950 -00023423 67.41890717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d960 -00023424 67.41890717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d960 -00023425 67.41893005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d970 -00023426 67.41893768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d970 -00023427 67.41896057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d980 -00023428 67.41896057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d980 -00023429 67.41899109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d990 -00023430 67.41899872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d990 -00023431 67.41902161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a0 -00023432 67.41902161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a0 -00023433 67.41904449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b0 -00023434 67.41905212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b0 -00023435 67.41907501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c0 -00023436 67.41907501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c0 -00023437 67.41910553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -00023438 67.41911316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -00023439 67.41913605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -00023440 67.41913605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -00023441 67.41915894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -00023442 67.41915894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -00023443 67.41918945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -00023444 67.41919708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -00023445 67.41921997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -00023446 67.41921997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -00023447 67.41924286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -00023448 67.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -00023449 67.41927338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -00023450 67.41927338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -00023451 67.41930389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -00023452 67.41931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -00023453 67.41933441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -00023454 67.41933441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -00023455 67.41935730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -00023456 67.41936493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -00023457 67.41939545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -00023458 67.41939545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -00023459 67.41942596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -00023460 67.41942596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -00023461 67.41944885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -00023462 67.41945648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -00023463 67.41947937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -00023464 67.41947937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -00023465 67.41950989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -00023466 67.41953278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -00023467 67.41956329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -00023468 67.41956329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -00023469 67.41959381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -00023470 67.41959381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -00023471 67.41961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -00023472 67.41962433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -00023473 67.41964722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -00023474 67.41965485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -00023475 67.41967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -00023476 67.41967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -00023477 67.41970825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -00023478 67.41970825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -00023479 67.41973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -00023480 67.41973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -00023481 67.41976166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -00023482 67.41976929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -00023483 67.41979218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -00023484 67.41979218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -00023485 67.41982269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -00023486 67.41982269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -00023487 67.41984558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -00023488 67.41985321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -00023489 67.41987610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -00023490 67.41987610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -00023491 67.41990662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db80 -00023492 67.41990662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db80 -00023493 67.41993713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db90 -00023494 67.41993713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db90 -00023495 67.41996002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba0 -00023496 67.41996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba0 -00023497 67.41999054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb0 -00023498 67.41999054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb0 -00023499 67.42002106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc0 -00023500 67.42002106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc0 -00023501 67.42005157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd0 -00023502 67.42005157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd0 -00023503 67.42007446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe0 -00023504 67.42008209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe0 -00023505 67.42011261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf0 -00023506 67.42011261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf0 -00023507 67.42013550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc00 -00023508 67.42014313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc00 -00023509 67.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc10 -00023510 67.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc10 -00023511 67.42018890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc20 -00023512 67.42019653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc20 -00023513 67.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc30 -00023514 67.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc30 -00023515 67.42024994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc40 -00023516 67.42025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc40 -00023517 67.42028046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc50 -00023518 67.42028046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc50 -00023519 67.42031097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc60 -00023520 67.42031097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc60 -00023521 67.42033386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc70 -00023522 67.42034149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc70 -00023523 67.42035675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc80 -00023524 67.42036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc80 -00023525 67.42038727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -00023526 67.42038727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc90 -00023527 67.42041779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -00023528 67.42041779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca0 -00023529 67.42044067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -00023530 67.42044067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcb0 -00023531 67.42046356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -00023532 67.42047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcc0 -00023533 67.42050171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -00023534 67.42050171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcd0 -00023535 67.42052460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -00023536 67.42052460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dce0 -00023537 67.42054749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -00023538 67.42055511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf0 -00023539 67.42058563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -00023540 67.42058563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd00 -00023541 67.42061615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -00023542 67.42061615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd10 -00023543 67.42063904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -00023544 67.42064667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd20 -00023545 67.42066956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -00023546 67.42066956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd30 -00023547 67.42070007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -00023548 67.42070770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd40 -00023549 67.42073059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -00023550 67.42073059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd50 -00023551 67.42075348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -00023552 67.42076111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd60 -00023553 67.42078400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -00023554 67.42079163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd70 -00023555 67.42082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -00023556 67.42082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd80 -00023557 67.42085266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -00023558 67.42085266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd90 -00023559 67.42087555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -00023560 67.42087555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda0 -00023561 67.42090607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -00023562 67.42090607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb0 -00023563 67.42093658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -00023564 67.42093658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc0 -00023565 67.42096710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -00023566 67.42096710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd0 -00023567 67.42098999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -00023568 67.42098999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde0 -00023569 67.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf0 -00023570 67.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf0 -00023571 67.42104340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de00 -00023572 67.42105103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de00 -00023573 67.42107391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de10 -00023574 67.42107391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de10 -00023575 67.42110443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de20 -00023576 67.42110443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de20 -00023577 67.42112732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de30 -00023578 67.42112732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de30 -00023579 67.42115021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de40 -00023580 67.42115784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de40 -00023581 67.42118073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de50 -00023582 67.42118073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de50 -00023583 67.42121124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de60 -00023584 67.42121124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de60 -00023585 67.42123413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de70 -00023586 67.42124176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de70 -00023587 67.42125702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de80 -00023588 67.42126465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de80 -00023589 67.42129517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de90 -00023590 67.42129517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de90 -00023591 67.42131805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea0 -00023592 67.42131805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea0 -00023593 67.42134094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb0 -00023594 67.42134857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb0 -00023595 67.42137146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec0 -00023596 67.42137909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec0 -00023597 67.42140198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded0 -00023598 67.42140198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded0 -00023599 67.42142487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee0 -00023600 67.42142487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee0 -00023601 67.42146301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def0 -00023602 67.42146301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def0 -00023603 67.42148590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df00 -00023604 67.42149353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df00 -00023605 67.42151642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df10 -00023606 67.42151642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df10 -00023607 67.42153931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df20 -00023608 67.42154694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df20 -00023609 67.42157745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df30 -00023610 67.42157745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df30 -00023611 67.42160034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df40 -00023612 67.42160797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df40 -00023613 67.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df50 -00023614 67.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df50 -00023615 67.42166138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df60 -00023616 67.42166138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df60 -00023617 67.42168427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df70 -00023618 67.42168427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df70 -00023619 67.42170715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df80 -00023620 67.42171478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df80 -00023621 67.42173767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df90 -00023622 67.42173767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df90 -00023623 67.42176819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa0 -00023624 67.42176819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa0 -00023625 67.42179108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb0 -00023626 67.42179108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb0 -00023627 67.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc0 -00023628 67.42182159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc0 -00023629 67.42184448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd0 -00023630 67.42185211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd0 -00023631 67.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe0 -00023632 67.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe0 -00023633 67.42189789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff0 -00023634 67.42189789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff0 -00023635 67.42192841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e000 -00023636 67.42193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e000 -00023637 67.42195129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e010 -00023638 67.42195892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e010 -00023639 67.42198181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e020 -00023640 67.42198181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e020 -00023641 67.42201233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e030 -00023642 67.42201233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e030 -00023643 67.42203522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e040 -00023644 67.42204285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e040 -00023645 67.42205811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e050 -00023646 67.42206573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e050 -00023647 67.42209625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e060 -00023648 67.42209625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e060 -00023649 67.42212677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e070 -00023650 67.42212677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e070 -00023651 67.42214966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e080 -00023652 67.42214966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e080 -00023653 67.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -00023654 67.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e090 -00023655 67.42221069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -00023656 67.42221069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a0 -00023657 67.42224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -00023658 67.42224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b0 -00023659 67.42226410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -00023660 67.42226410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c0 -00023661 67.42229462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -00023662 67.42229462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d0 -00023663 67.42232513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -00023664 67.42233276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e0 -00023665 67.42235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -00023666 67.42235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f0 -00023667 67.42237854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -00023668 67.42237854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e100 -00023669 67.42240906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -00023670 67.42240906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e110 -00023671 67.42243958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -00023672 67.42244720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e120 -00023673 67.42246246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -00023674 67.42247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e130 -00023675 67.42249298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -00023676 67.42249298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e140 -00023677 67.42252350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -00023678 67.42252350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e150 -00023679 67.42255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -00023680 67.42255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e160 -00023681 67.42257690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -00023682 67.42258453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e170 -00023683 67.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -00023684 67.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e180 -00023685 67.42263794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -00023686 67.42264557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e190 -00023687 67.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -00023688 67.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -00023689 67.42269135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -00023690 67.42269135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -00023691 67.42272186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -00023692 67.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -00023693 67.42275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -00023694 67.42276001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -00023695 67.42278290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -00023696 67.42278290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -00023697 67.42280579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -00023698 67.42281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -00023699 67.42284393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -00023700 67.42284393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -00023701 67.42286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -00023702 67.42287445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -00023703 67.42289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -00023704 67.42289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -00023705 67.42292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -00023706 67.42292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -00023707 67.42295837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -00023708 67.42295837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -00023709 67.42298126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -00023710 67.42298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -00023711 67.42301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -00023712 67.42301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -00023713 67.42304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -00023714 67.42304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -00023715 67.42306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -00023716 67.42307281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -00023717 67.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -00023718 67.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -00023719 67.42312622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -00023720 67.42312622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -00023721 67.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -00023722 67.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -00023723 67.42317963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -00023724 67.42318726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -00023725 67.42321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -00023726 67.42321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -00023727 67.42324066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -00023728 67.42324829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -00023729 67.42327118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -00023730 67.42327118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -00023731 67.42329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e300 -00023732 67.42329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e300 -00023733 67.42332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e310 -00023734 67.42332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e310 -00023735 67.42335510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e320 -00023736 67.42335510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e320 -00023737 67.42338562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e330 -00023738 67.42338562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e330 -00023739 67.42340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e340 -00023740 67.42340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e340 -00023741 67.42343903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e350 -00023742 67.42343903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e350 -00023743 67.42346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e360 -00023744 67.42346954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e360 -00023745 67.42349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e370 -00023746 67.42349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e370 -00023747 67.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e380 -00023748 67.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e380 -00023749 67.42355347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e390 -00023750 67.42355347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e390 -00023751 67.42357635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3a0 -00023752 67.42358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3a0 -00023753 67.42360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3b0 -00023754 67.42360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3b0 -00023755 67.42364502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3c0 -00023756 67.42364502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3c0 -00023757 67.42366791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3d0 -00023758 67.42366791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3d0 -00023759 67.42369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3e0 -00023760 67.42369843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3e0 -00023761 67.42372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3f0 -00023762 67.42372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e3f0 -00023763 67.42375183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e400 -00023764 67.42375183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e400 -00023765 67.42377472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e410 -00023766 67.42377472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e410 -00023767 67.42380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e420 -00023768 67.42380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e420 -00023769 67.42382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e430 -00023770 67.42383575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e430 -00023771 67.42385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e440 -00023772 67.42385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e440 -00023773 67.42388153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e450 -00023774 67.42388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e450 -00023775 67.42391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e460 -00023776 67.42391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e460 -00023777 67.42394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e470 -00023778 67.42395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e470 -00023779 67.42397308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e480 -00023780 67.42397308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e480 -00023781 67.42400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e490 -00023782 67.42400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e490 -00023783 67.42403412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a0 -00023784 67.42403412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a0 -00023785 67.42405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b0 -00023786 67.42406464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b0 -00023787 67.42407990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c0 -00023788 67.42408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c0 -00023789 67.42411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d0 -00023790 67.42411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d0 -00023791 67.42414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e0 -00023792 67.42414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e0 -00023793 67.42417145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f0 -00023794 67.42417145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f0 -00023795 67.42420197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e500 -00023796 67.42420197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e500 -00023797 67.42423248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e510 -00023798 67.42423248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e510 -00023799 67.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e520 -00023800 67.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e520 -00023801 67.42427826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e530 -00023802 67.42428589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e530 -00023803 67.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e540 -00023804 67.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e540 -00023805 67.42435455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e550 -00023806 67.42435455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e550 -00023807 67.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e560 -00023808 67.42438507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e560 -00023809 67.42440796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e570 -00023810 67.42440796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e570 -00023811 67.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e580 -00023812 67.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e580 -00023813 67.42446899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -00023814 67.42446899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -00023815 67.42449188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -00023816 67.42449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -00023817 67.42452240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -00023818 67.42452240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -00023819 67.42455292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -00023820 67.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -00023821 67.42458344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -00023822 67.42458344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -00023823 67.42460632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -00023824 67.42461395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -00023825 67.42463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -00023826 67.42463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -00023827 67.42466736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -00023828 67.42466736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -00023829 67.42469025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -00023830 67.42469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -00023831 67.42472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -00023832 67.42472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -00023833 67.42475128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -00023834 67.42475891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -00023835 67.42478180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -00023836 67.42478180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -00023837 67.42480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -00023838 67.42481232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -00023839 67.42483521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -00023840 67.42483521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -00023841 67.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -00023842 67.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -00023843 67.42488861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -00023844 67.42489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -00023845 67.42491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -00023846 67.42491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -00023847 67.42494965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -00023848 67.42495728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -00023849 67.42498016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -00023850 67.42498016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -00023851 67.42500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -00023852 67.42501068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -00023853 67.42503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -00023854 67.42503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -00023855 67.42506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -00023856 67.42507172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -00023857 67.42509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f0 -00023858 67.42509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6f0 -00023859 67.42511749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e700 -00023860 67.42511749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e700 -00023861 67.42514801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e710 -00023862 67.42515564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e710 -00023863 67.42517853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e720 -00023864 67.42517853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e720 -00023865 67.42520142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e730 -00023866 67.42520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e730 -00023867 67.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e740 -00023868 67.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e740 -00023869 67.42526245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e750 -00023870 67.42527008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e750 -00023871 67.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e760 -00023872 67.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e760 -00023873 67.42531586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e770 -00023874 67.42531586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e770 -00023875 67.42534637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e780 -00023876 67.42535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e780 -00023877 67.42537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e790 -00023878 67.42537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e790 -00023879 67.42539978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a0 -00023880 67.42540741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a0 -00023881 67.42543030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b0 -00023882 67.42543030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b0 -00023883 67.42546082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c0 -00023884 67.42546844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c0 -00023885 67.42549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d0 -00023886 67.42549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d0 -00023887 67.42551422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e0 -00023888 67.42552185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7e0 -00023889 67.42555237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f0 -00023890 67.42555237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7f0 -00023891 67.42557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e800 -00023892 67.42557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e800 -00023893 67.42560577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e810 -00023894 67.42560577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e810 -00023895 67.42562866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e820 -00023896 67.42562866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e820 -00023897 67.42565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e830 -00023898 67.42566681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e830 -00023899 67.42568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e840 -00023900 67.42568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e840 -00023901 67.42571259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e850 -00023902 67.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e850 -00023903 67.42575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e860 -00023904 67.42575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e860 -00023905 67.42577362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e870 -00023906 67.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e870 -00023907 67.42580414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e880 -00023908 67.42580414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e880 -00023909 67.42582703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e890 -00023910 67.42583466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e890 -00023911 67.42586517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8a0 -00023912 67.42586517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8a0 -00023913 67.42588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8b0 -00023914 67.42589569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8b0 -00023915 67.42591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8c0 -00023916 67.42591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8c0 -00023917 67.42594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8d0 -00023918 67.42594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8d0 -00023919 67.42597198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8e0 -00023920 67.42597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8e0 -00023921 67.42600250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8f0 -00023922 67.42600250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e8f0 -00023923 67.42602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e900 -00023924 67.42603302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e900 -00023925 67.42606354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e910 -00023926 67.42606354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e910 -00023927 67.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -00023928 67.42609406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e920 -00023929 67.42611694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -00023930 67.42611694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e930 -00023931 67.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -00023932 67.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e940 -00023933 67.42617035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -00023934 67.42617798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e950 -00023935 67.42620087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -00023936 67.42620087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e960 -00023937 67.42622375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -00023938 67.42623138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e970 -00023939 67.42626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -00023940 67.42626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e980 -00023941 67.42628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -00023942 67.42629242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e990 -00023943 67.42631531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -00023944 67.42631531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a0 -00023945 67.42634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -00023946 67.42634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b0 -00023947 67.42637634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -00023948 67.42637634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c0 -00023949 67.42639923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -00023950 67.42640686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d0 -00023951 67.42642975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -00023952 67.42642975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e0 -00023953 67.42646027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -00023954 67.42646027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f0 -00023955 67.42649078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -00023956 67.42649078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea00 -00023957 67.42651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -00023958 67.42652130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea10 -00023959 67.42654419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -00023960 67.42654419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea20 -00023961 67.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -00023962 67.42658234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea30 -00023963 67.42660522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -00023964 67.42660522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea40 -00023965 67.42662811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -00023966 67.42663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea50 -00023967 67.42665863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -00023968 67.42665863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea60 -00023969 67.42668915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -00023970 67.42669678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea70 -00023971 67.42671967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea80 -00023972 67.42671967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea80 -00023973 67.42674255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea90 -00023974 67.42674255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea90 -00023975 67.42678070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa0 -00023976 67.42678070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa0 -00023977 67.42680359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab0 -00023978 67.42680359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab0 -00023979 67.42682648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac0 -00023980 67.42683411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac0 -00023981 67.42685699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead0 -00023982 67.42685699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead0 -00023983 67.42688751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae0 -00023984 67.42689514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae0 -00023985 67.42691803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf0 -00023986 67.42691803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf0 -00023987 67.42694092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb00 -00023988 67.42694855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb00 -00023989 67.42697906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb10 -00023990 67.42697906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb10 -00023991 67.42700958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb20 -00023992 67.42700958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb20 -00023993 67.42703247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb30 -00023994 67.42704010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb30 -00023995 67.42706299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb40 -00023996 67.42707062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb40 -00023997 67.42710114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb50 -00023998 67.42710114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb50 -00023999 67.42712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb60 -00024000 67.42713165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb60 -00024001 67.42715454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb70 -00024002 67.42715454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb70 -00024003 67.42717743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb80 -00024004 67.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb80 -00024005 67.42721558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb90 -00024006 67.42721558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb90 -00024007 67.42723846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba0 -00024008 67.42724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba0 -00024009 67.42726135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb0 -00024010 67.42726898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb0 -00024011 67.42729950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc0 -00024012 67.42729950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc0 -00024013 67.42732239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd0 -00024014 67.42732239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd0 -00024015 67.42734528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe0 -00024016 67.42735291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe0 -00024017 67.42737579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf0 -00024018 67.42737579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf0 -00024019 67.42740631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec00 -00024020 67.42740631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec00 -00024021 67.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec10 -00024022 67.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec10 -00024023 67.42745972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec20 -00024024 67.42745972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec20 -00024025 67.42748260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec30 -00024026 67.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec30 -00024027 67.42751312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec40 -00024028 67.42751312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec40 -00024029 67.42753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec50 -00024030 67.42753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec50 -00024031 67.42756653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec60 -00024032 67.42757416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec60 -00024033 67.42758942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec70 -00024034 67.42759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec70 -00024035 67.42761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec80 -00024036 67.42761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec80 -00024037 67.42765045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec90 -00024038 67.42765045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec90 -00024039 67.42767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eca0 -00024040 67.42768097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eca0 -00024041 67.42769623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecb0 -00024042 67.42770386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecb0 -00024043 67.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecc0 -00024044 67.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecc0 -00024045 67.42776489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecd0 -00024046 67.42776489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecd0 -00024047 67.42778778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece0 -00024048 67.42779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece0 -00024049 67.42781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf0 -00024050 67.42781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf0 -00024051 67.42784882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed00 -00024052 67.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed00 -00024053 67.42787933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed10 -00024054 67.42787933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed10 -00024055 67.42790222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed20 -00024056 67.42790222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed20 -00024057 67.42793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed30 -00024058 67.42793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed30 -00024059 67.42795563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed40 -00024060 67.42796326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed40 -00024061 67.42798615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed50 -00024062 67.42798615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed50 -00024063 67.42800903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed60 -00024064 67.42800903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed60 -00024065 67.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed70 -00024066 67.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed70 -00024067 67.42806244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed80 -00024068 67.42807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed80 -00024069 67.42809296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed90 -00024070 67.42809296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed90 -00024071 67.42812347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda0 -00024072 67.42812347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda0 -00024073 67.42814636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb0 -00024074 67.42814636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb0 -00024075 67.42816925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc0 -00024076 67.42817688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc0 -00024077 67.42819977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd0 -00024078 67.42820740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd0 -00024079 67.42823029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede0 -00024080 67.42823029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede0 -00024081 67.42825317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf0 -00024082 67.42825317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf0 -00024083 67.42828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -00024084 67.42829132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -00024085 67.42830658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -00024086 67.42831421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -00024087 67.42833710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -00024088 67.42834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -00024089 67.42836761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -00024090 67.42836761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -00024091 67.42839813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -00024092 67.42839813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -00024093 67.42842865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -00024094 67.42842865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -00024095 67.42845154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -00024096 67.42845154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -00024097 67.42848969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -00024098 67.42848969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -00024099 67.42851257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -00024100 67.42851257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -00024101 67.42854309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -00024102 67.42854309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -00024103 67.42856598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -00024104 67.42857361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -00024105 67.42860413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -00024106 67.42860413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -00024107 67.42862701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -00024108 67.42863464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -00024109 67.42865753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -00024110 67.42865753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -00024111 67.42868805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -00024112 67.42868805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -00024113 67.42871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -00024114 67.42871857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -00024115 67.42873383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -00024116 67.42874146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -00024117 67.42876434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -00024118 67.42876434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -00024119 67.42879486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -00024120 67.42879486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -00024121 67.42882538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -00024122 67.42882538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -00024123 67.42884827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -00024124 67.42885590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -00024125 67.42888641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -00024126 67.42888641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -00024127 67.42890930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -00024128 67.42890930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef60 -00024129 67.42893219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -00024130 67.42893982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef70 -00024131 67.42896271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -00024132 67.42896271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef80 -00024133 67.42899323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -00024134 67.42900085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef90 -00024135 67.42902374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -00024136 67.42902374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa0 -00024137 67.42904663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb0 -00024138 67.42905426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb0 -00024139 67.42908478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc0 -00024140 67.42908478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc0 -00024141 67.42910767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd0 -00024142 67.42911530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd0 -00024143 67.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe0 -00024144 67.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efe0 -00024145 67.42916107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff0 -00024146 67.42916107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eff0 -00024147 67.42919159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f000 -00024148 67.42919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f000 -00024149 67.42922211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f010 -00024150 67.42922211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f010 -00024151 67.42924500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f020 -00024152 67.42925262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f020 -00024153 67.42928314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f030 -00024154 67.42928314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f030 -00024155 67.42930603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f040 -00024156 67.42931366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f040 -00024157 67.42933655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f050 -00024158 67.42933655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f050 -00024159 67.42935944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f060 -00024160 67.42936707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f060 -00024161 67.42939758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f070 -00024162 67.42939758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f070 -00024163 67.42942047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f080 -00024164 67.42942047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f080 -00024165 67.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f090 -00024166 67.42945099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f090 -00024167 67.42947388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a0 -00024168 67.42948151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a0 -00024169 67.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -00024170 67.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -00024171 67.42952728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -00024172 67.42952728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -00024173 67.42955780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -00024174 67.42955780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -00024175 67.42958832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -00024176 67.42959595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -00024177 67.42961884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -00024178 67.42961884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -00024179 67.42964172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -00024180 67.42964172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -00024181 67.42967224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -00024182 67.42967987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -00024183 67.42970276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -00024184 67.42971039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -00024185 67.42973328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -00024186 67.42973328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -00024187 67.42976379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -00024188 67.42976379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -00024189 67.42979431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -00024190 67.42979431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -00024191 67.42981720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -00024192 67.42982483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -00024193 67.42984772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -00024194 67.42984772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -00024195 67.42987823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -00024196 67.42987823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -00024197 67.42990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -00024198 67.42990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -00024199 67.42993164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -00024200 67.42993164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -00024201 67.42996216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -00024202 67.42996216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -00024203 67.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -00024204 67.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -00024205 67.43001556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -00024206 67.43001556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -00024207 67.43003845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -00024208 67.43003845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -00024209 67.43006897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -00024210 67.43007660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -00024211 67.43009949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -00024212 67.43010712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -00024213 67.43013000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f210 -00024214 67.43013000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f210 -00024215 67.43016052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f220 -00024216 67.43016052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f220 -00024217 67.43018341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f230 -00024218 67.43019104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f230 -00024219 67.43021393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f240 -00024220 67.43021393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f240 -00024221 67.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f250 -00024222 67.43024445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f250 -00024223 67.43027496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f260 -00024224 67.43027496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f260 -00024225 67.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f270 -00024226 67.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f270 -00024227 67.43032837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f280 -00024228 67.43032837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f280 -00024229 67.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f290 -00024230 67.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f290 -00024231 67.43038177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a0 -00024232 67.43038940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a0 -00024233 67.43041229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b0 -00024234 67.43041229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b0 -00024235 67.43043518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c0 -00024236 67.43043518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c0 -00024237 67.43046570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d0 -00024238 67.43046570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d0 -00024239 67.43048859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e0 -00024240 67.43049622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e0 -00024241 67.43051910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f0 -00024242 67.43051910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f0 -00024243 67.43054962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f300 -00024244 67.43054962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f300 -00024245 67.43058014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f310 -00024246 67.43058014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f310 -00024247 67.43060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f320 -00024248 67.43061066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f320 -00024249 67.43063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f330 -00024250 67.43063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f330 -00024251 67.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f340 -00024252 67.43067169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f340 -00024253 67.43069458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f350 -00024254 67.43069458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f350 -00024255 67.43071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f360 -00024256 67.43071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f360 -00024257 67.43074799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f370 -00024258 67.43075562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f370 -00024259 67.43077850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -00024260 67.43077850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -00024261 67.43080139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -00024262 67.43080902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -00024263 67.43083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -00024264 67.43083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -00024265 67.43086243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -00024266 67.43087006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -00024267 67.43089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -00024268 67.43089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -00024269 67.43091583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -00024270 67.43092346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -00024271 67.43095398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -00024272 67.43095398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -00024273 67.43097687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -00024274 67.43097687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -00024275 67.43099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -00024276 67.43100739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -00024277 67.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -00024278 67.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -00024279 67.43106079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -00024280 67.43106842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -00024281 67.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -00024282 67.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -00024283 67.43111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -00024284 67.43112183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -00024285 67.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -00024286 67.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -00024287 67.43117523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -00024288 67.43117523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -00024289 67.43119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -00024290 67.43120575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -00024291 67.43122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -00024292 67.43122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -00024293 67.43125916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -00024294 67.43126678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -00024295 67.43128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -00024296 67.43128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -00024297 67.43131256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -00024298 67.43132019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -00024299 67.43135071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -00024300 67.43135071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -00024301 67.43137360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -00024302 67.43137360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -00024303 67.43140411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -00024304 67.43140411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4e0 -00024305 67.43142700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -00024306 67.43142700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4f0 -00024307 67.43145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -00024308 67.43146515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f500 -00024309 67.43148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -00024310 67.43148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f510 -00024311 67.43151093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -00024312 67.43151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f520 -00024313 67.43154907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -00024314 67.43154907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f530 -00024315 67.43157196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -00024316 67.43157959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f540 -00024317 67.43160248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -00024318 67.43160248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f550 -00024319 67.43162537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -00024320 67.43163300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f560 -00024321 67.43166351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -00024322 67.43166351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f570 -00024323 67.43168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -00024324 67.43169403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f580 -00024325 67.43171692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -00024326 67.43171692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -00024327 67.43174744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -00024328 67.43174744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -00024329 67.43177032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -00024330 67.43177795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -00024331 67.43180084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -00024332 67.43180084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -00024333 67.43182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -00024334 67.43183136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -00024335 67.43186188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -00024336 67.43186188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -00024337 67.43188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -00024338 67.43189240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -00024339 67.43191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -00024340 67.43191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -00024341 67.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -00024342 67.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -00024343 67.43197632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -00024344 67.43197632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -00024345 67.43199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -00024346 67.43199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -00024347 67.43202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -00024348 67.43202972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -00024349 67.43206024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -00024350 67.43206024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -00024351 67.43208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -00024352 67.43209076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -00024353 67.43211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -00024354 67.43211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -00024355 67.43214417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -00024356 67.43214417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -00024357 67.43217468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -00024358 67.43217468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -00024359 67.43219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -00024360 67.43220520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -00024361 67.43222809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -00024362 67.43222809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -00024363 67.43225861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -00024364 67.43225861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -00024365 67.43228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -00024366 67.43228912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -00024367 67.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -00024368 67.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -00024369 67.43234253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f0 -00024370 67.43234253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f0 -00024371 67.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -00024372 67.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f700 -00024373 67.43239594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -00024374 67.43240356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f710 -00024375 67.43242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -00024376 67.43242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f720 -00024377 67.43245697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -00024378 67.43246460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f730 -00024379 67.43248749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -00024380 67.43248749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f740 -00024381 67.43251038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -00024382 67.43251801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f750 -00024383 67.43254089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -00024384 67.43254089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f760 -00024385 67.43257141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -00024386 67.43257904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f770 -00024387 67.43260193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -00024388 67.43260193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f780 -00024389 67.43262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -00024390 67.43262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f790 -00024391 67.43265533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -00024392 67.43266296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a0 -00024393 67.43268585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -00024394 67.43268585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b0 -00024395 67.43270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -00024396 67.43271637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c0 -00024397 67.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -00024398 67.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d0 -00024399 67.43276978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -00024400 67.43277740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e0 -00024401 67.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -00024402 67.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f0 -00024403 67.43282318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -00024404 67.43283081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f800 -00024405 67.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -00024406 67.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f810 -00024407 67.43288422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -00024408 67.43288422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f820 -00024409 67.43290710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -00024410 67.43291473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f830 -00024411 67.43293762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -00024412 67.43293762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f840 -00024413 67.43296814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -00024414 67.43297577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f850 -00024415 67.43299866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -00024416 67.43299866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -00024417 67.43302155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -00024418 67.43302917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -00024419 67.43305969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -00024420 67.43305969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -00024421 67.43308258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -00024422 67.43308258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -00024423 67.43310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -00024424 67.43311310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -00024425 67.43313599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -00024426 67.43313599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -00024427 67.43316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -00024428 67.43317413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -00024429 67.43319702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -00024430 67.43319702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -00024431 67.43321991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -00024432 67.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -00024433 67.43325806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -00024434 67.43325806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -00024435 67.43328094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -00024436 67.43328094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -00024437 67.43330383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -00024438 67.43331146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -00024439 67.43333435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -00024440 67.43333435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -00024441 67.43336487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -00024442 67.43337250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -00024443 67.43339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -00024444 67.43339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -00024445 67.43341827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -00024446 67.43342590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -00024447 67.43345642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -00024448 67.43345642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -00024449 67.43347931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -00024450 67.43348694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -00024451 67.43350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -00024452 67.43350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -00024453 67.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -00024454 67.43354034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -00024455 67.43357086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -00024456 67.43357086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -00024457 67.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -00024458 67.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -00024459 67.43361664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c0 -00024460 67.43362427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c0 -00024461 67.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d0 -00024462 67.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d0 -00024463 67.43367767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e0 -00024464 67.43368530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e0 -00024465 67.43370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f0 -00024466 67.43370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f0 -00024467 67.43373108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa00 -00024468 67.43373871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa00 -00024469 67.43376923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa10 -00024470 67.43376923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa10 -00024471 67.43379211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa20 -00024472 67.43379974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa20 -00024473 67.43382263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa30 -00024474 67.43382263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa30 -00024475 67.43385315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa40 -00024476 67.43385315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa40 -00024477 67.43387604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa50 -00024478 67.43388367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa50 -00024479 67.43390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa60 -00024480 67.43390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa60 -00024481 67.43392944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa70 -00024482 67.43393707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa70 -00024483 67.43396759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa80 -00024484 67.43396759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa80 -00024485 67.43399048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa90 -00024486 67.43399811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa90 -00024487 67.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa0 -00024488 67.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa0 -00024489 67.43405151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab0 -00024490 67.43405151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab0 -00024491 67.43407440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac0 -00024492 67.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac0 -00024493 67.43410492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad0 -00024494 67.43410492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad0 -00024495 67.43412781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae0 -00024496 67.43413544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae0 -00024497 67.43416595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf0 -00024498 67.43416595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf0 -00024499 67.43418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb00 -00024500 67.43419647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb00 -00024501 67.43421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb10 -00024502 67.43421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb10 -00024503 67.43424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb20 -00024504 67.43424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb20 -00024505 67.43427277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb30 -00024506 67.43428040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb30 -00024507 67.43430328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb40 -00024508 67.43430328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb40 -00024509 67.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb50 -00024510 67.43433380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb50 -00024511 67.43436432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb60 -00024512 67.43436432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb60 -00024513 67.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb70 -00024514 67.43439484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb70 -00024515 67.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb80 -00024516 67.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb80 -00024517 67.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -00024518 67.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb90 -00024519 67.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -00024520 67.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba0 -00024521 67.43450165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -00024522 67.43450165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb0 -00024523 67.43452454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -00024524 67.43453217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc0 -00024525 67.43456268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -00024526 67.43456268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd0 -00024527 67.43458557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -00024528 67.43459320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe0 -00024529 67.43461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -00024530 67.43461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf0 -00024531 67.43464661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -00024532 67.43464661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc00 -00024533 67.43467712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -00024534 67.43467712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc10 -00024535 67.43470001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -00024536 67.43470764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc20 -00024537 67.43473053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -00024538 67.43473053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc30 -00024539 67.43476105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -00024540 67.43476105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc40 -00024541 67.43479156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -00024542 67.43479156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc50 -00024543 67.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -00024544 67.43482208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc60 -00024545 67.43484497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -00024546 67.43484497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc70 -00024547 67.43487549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -00024548 67.43488312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc80 -00024549 67.43490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -00024550 67.43490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc90 -00024551 67.43492889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -00024552 67.43492889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca0 -00024553 67.43495941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -00024554 67.43495941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb0 -00024555 67.43498993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -00024556 67.43498993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcc0 -00024557 67.43501282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -00024558 67.43502045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcd0 -00024559 67.43504333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -00024560 67.43504333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fce0 -00024561 67.43507385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcf0 -00024562 67.43508148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcf0 -00024563 67.43510437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd00 -00024564 67.43510437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd00 -00024565 67.43512726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd10 -00024566 67.43512726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd10 -00024567 67.43515778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd20 -00024568 67.43516541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd20 -00024569 67.43518829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd30 -00024570 67.43518829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd30 -00024571 67.43521118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd40 -00024572 67.43521881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd40 -00024573 67.43524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd50 -00024574 67.43524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd50 -00024575 67.43527222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd60 -00024576 67.43527985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd60 -00024577 67.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd70 -00024578 67.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd70 -00024579 67.43532562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd80 -00024580 67.43533325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd80 -00024581 67.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd90 -00024582 67.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd90 -00024583 67.43538666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fda0 -00024584 67.43538666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fda0 -00024585 67.43540955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdb0 -00024586 67.43541718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdb0 -00024587 67.43544006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdc0 -00024588 67.43544006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdc0 -00024589 67.43547058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdd0 -00024590 67.43547821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdd0 -00024591 67.43550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fde0 -00024592 67.43550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fde0 -00024593 67.43553162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdf0 -00024594 67.43553162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fdf0 -00024595 67.43556213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe00 -00024596 67.43556213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe00 -00024597 67.43558502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe10 -00024598 67.43559265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe10 -00024599 67.43560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe20 -00024600 67.43561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe20 -00024601 67.43563843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe30 -00024602 67.43563843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe30 -00024603 67.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe40 -00024604 67.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe40 -00024605 67.43569183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe50 -00024606 67.43569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe50 -00024607 67.43571472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe60 -00024608 67.43572235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe60 -00024609 67.43575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe70 -00024610 67.43575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe70 -00024611 67.43577576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -00024612 67.43577576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe80 -00024613 67.43579865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -00024614 67.43580627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe90 -00024615 67.43582916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -00024616 67.43583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fea0 -00024617 67.43585968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -00024618 67.43585968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2feb0 -00024619 67.43588257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -00024620 67.43588257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fec0 -00024621 67.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -00024622 67.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fed0 -00024623 67.43593597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -00024624 67.43594360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fee0 -00024625 67.43596649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -00024626 67.43596649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef0 -00024627 67.43599701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -00024628 67.43599701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff00 -00024629 67.43601990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -00024630 67.43602753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff10 -00024631 67.43605042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -00024632 67.43605042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff20 -00024633 67.43607330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -00024634 67.43608093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff30 -00024635 67.43611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -00024636 67.43611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff40 -00024637 67.43613434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -00024638 67.43614197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff50 -00024639 67.43616486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -00024640 67.43616486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff60 -00024641 67.43619537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -00024642 67.43619537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff70 -00024643 67.43622589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -00024644 67.43622589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff80 -00024645 67.43624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -00024646 67.43624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff90 -00024647 67.43627167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -00024648 67.43627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa0 -00024649 67.43630981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -00024650 67.43630981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb0 -00024651 67.43633270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -00024652 67.43633270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc0 -00024653 67.43635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -00024654 67.43635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd0 -00024655 67.43638611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe0 -00024656 67.43639374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe0 -00024657 67.43641663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff0 -00024658 67.43641663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff0 -00024659 67.43643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30000 -00024660 67.43643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30000 -00024661 67.43647003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30010 -00024662 67.43647003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30010 -00024663 67.43649292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30020 -00024664 67.43650055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30020 -00024665 67.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30030 -00024666 67.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30030 -00024667 67.43655396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30040 -00024668 67.43655396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30040 -00024669 67.43658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30050 -00024670 67.43658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30050 -00024671 67.43660736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30060 -00024672 67.43661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30060 -00024673 67.43663788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30070 -00024674 67.43663788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30070 -00024675 67.43666840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30080 -00024676 67.43666840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30080 -00024677 67.43669891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30090 -00024678 67.43669891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30090 -00024679 67.43672180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a0 -00024680 67.43672180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a0 -00024681 67.43675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b0 -00024682 67.43675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b0 -00024683 67.43678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c0 -00024684 67.43679047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c0 -00024685 67.43681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d0 -00024686 67.43681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d0 -00024687 67.43683624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e0 -00024688 67.43684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e0 -00024689 67.43686676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f0 -00024690 67.43686676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f0 -00024691 67.43689728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30100 -00024692 67.43690491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30100 -00024693 67.43692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30110 -00024694 67.43692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30110 -00024695 67.43695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30120 -00024696 67.43695831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30120 -00024697 67.43698883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30130 -00024698 67.43698883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30130 -00024699 67.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30140 -00024700 67.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30140 -00024701 67.43703461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30150 -00024702 67.43704224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30150 -00024703 67.43706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30160 -00024704 67.43706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30160 -00024705 67.43709564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30170 -00024706 67.43710327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30170 -00024707 67.43712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30180 -00024708 67.43712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30180 -00024709 67.43714905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30190 -00024710 67.43715668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30190 -00024711 67.43718719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -00024712 67.43718719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -00024713 67.43721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -00024714 67.43721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -00024715 67.43723297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -00024716 67.43724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -00024717 67.43726349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -00024718 67.43726349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -00024719 67.43729401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -00024720 67.43730164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -00024721 67.43732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -00024722 67.43732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -00024723 67.43734741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -00024724 67.43735504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -00024725 67.43738556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -00024726 67.43738556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -00024727 67.43740845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -00024728 67.43741608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -00024729 67.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -00024730 67.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -00024731 67.43746185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -00024732 67.43746948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -00024733 67.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -00024734 67.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -00024735 67.43752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -00024736 67.43752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -00024737 67.43754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -00024738 67.43754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -00024739 67.43757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -00024740 67.43758392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -00024741 67.43760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -00024742 67.43760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -00024743 67.43762970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -00024744 67.43762970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -00024745 67.43766022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -00024746 67.43766022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -00024747 67.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -00024748 67.43769073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -00024749 67.43770599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -00024750 67.43771362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -00024751 67.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -00024752 67.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -00024753 67.43776703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -00024754 67.43776703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -00024755 67.43778992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30300 -00024756 67.43779755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30300 -00024757 67.43782043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30310 -00024758 67.43782043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30310 -00024759 67.43785095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30320 -00024760 67.43785095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30320 -00024761 67.43787384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30330 -00024762 67.43787384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30330 -00024763 67.43790436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30340 -00024764 67.43790436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30340 -00024765 67.43792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30350 -00024766 67.43793488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30350 -00024767 67.43795776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30360 -00024768 67.43796539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30360 -00024769 67.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30370 -00024770 67.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30370 -00024771 67.43801880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30380 -00024772 67.43801880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30380 -00024773 67.43804932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30390 -00024774 67.43804932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30390 -00024775 67.43807220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a0 -00024776 67.43807220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a0 -00024777 67.43810272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b0 -00024778 67.43810272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b0 -00024779 67.43813324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c0 -00024780 67.43813324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c0 -00024781 67.43815613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d0 -00024782 67.43816376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d0 -00024783 67.43818665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e0 -00024784 67.43818665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e0 -00024785 67.43821716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f0 -00024786 67.43821716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f0 -00024787 67.43824768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30400 -00024788 67.43825531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30400 -00024789 67.43827820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30410 -00024790 67.43827820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30410 -00024791 67.43830872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30420 -00024792 67.43830872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30420 -00024793 67.43833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -00024794 67.43833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -00024795 67.43836212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -00024796 67.43836975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -00024797 67.43839264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -00024798 67.43839264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -00024799 67.43841553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -00024800 67.43842316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -00024801 67.43845367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -00024802 67.43845367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -00024803 67.43847656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -00024804 67.43848419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -00024805 67.43850708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -00024806 67.43850708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -00024807 67.43853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -00024808 67.43853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -00024809 67.43856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -00024810 67.43856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -00024811 67.43859100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -00024812 67.43859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -00024813 67.43862152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -00024814 67.43862152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -00024815 67.43865204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -00024816 67.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -00024817 67.43868256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -00024818 67.43868256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -00024819 67.43870544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -00024820 67.43871307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -00024821 67.43873596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -00024822 67.43874359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -00024823 67.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -00024824 67.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -00024825 67.43881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -00024826 67.43881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -00024827 67.43885040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -00024828 67.43885803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -00024829 67.43888092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -00024830 67.43888092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -00024831 67.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -00024832 67.43891144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -00024833 67.43893433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -00024834 67.43893433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -00024835 67.43897247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -00024836 67.43897247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -00024837 67.43899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -00024838 67.43900299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -00024839 67.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a0 -00024840 67.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a0 -00024841 67.43905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b0 -00024842 67.43905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b0 -00024843 67.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c0 -00024844 67.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c0 -00024845 67.43910980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d0 -00024846 67.43911743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d0 -00024847 67.43914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e0 -00024848 67.43914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e0 -00024849 67.43917084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f0 -00024850 67.43917084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f0 -00024851 67.43920135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30600 -00024852 67.43920135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30600 -00024853 67.43922424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30610 -00024854 67.43922424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30610 -00024855 67.43925476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30620 -00024856 67.43925476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30620 -00024857 67.43928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30630 -00024858 67.43928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30630 -00024859 67.43930817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30640 -00024860 67.43931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30640 -00024861 67.43933868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30650 -00024862 67.43933868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30650 -00024863 67.43936920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30660 -00024864 67.43936920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30660 -00024865 67.43939972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30670 -00024866 67.43939972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30670 -00024867 67.43942261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30680 -00024868 67.43943024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30680 -00024869 67.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30690 -00024870 67.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30690 -00024871 67.43948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a0 -00024872 67.43949127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a0 -00024873 67.43951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b0 -00024874 67.43951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b0 -00024875 67.43953705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306c0 -00024876 67.43954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306c0 -00024877 67.43956757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306d0 -00024878 67.43956757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306d0 -00024879 67.43959808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306e0 -00024880 67.43960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306e0 -00024881 67.43962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306f0 -00024882 67.43962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x306f0 -00024883 67.43965149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30700 -00024884 67.43965912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30700 -00024885 67.43968964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30710 -00024886 67.43968964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30710 -00024887 67.43971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30720 -00024888 67.43972015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30720 -00024889 67.43974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30730 -00024890 67.43974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30730 -00024891 67.43976593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30740 -00024892 67.43976593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30740 -00024893 67.43979645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30750 -00024894 67.43980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30750 -00024895 67.43982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30760 -00024896 67.43982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30760 -00024897 67.43984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30770 -00024898 67.43985748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30770 -00024899 67.43988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30780 -00024900 67.43988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30780 -00024901 67.43991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30790 -00024902 67.43991852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30790 -00024903 67.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307a0 -00024904 67.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307a0 -00024905 67.43996429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307b0 -00024906 67.43997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307b0 -00024907 67.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307c0 -00024908 67.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307c0 -00024909 67.44002533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307d0 -00024910 67.44003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307d0 -00024911 67.44005585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307e0 -00024912 67.44005585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307e0 -00024913 67.44008636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307f0 -00024914 67.44008636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x307f0 -00024915 67.44010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30800 -00024916 67.44011688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30800 -00024917 67.44013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30810 -00024918 67.44013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30810 -00024919 67.44016266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30820 -00024920 67.44017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30820 -00024921 67.44020081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30830 -00024922 67.44020081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30830 -00024923 67.44022369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30840 -00024924 67.44023132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30840 -00024925 67.44025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -00024926 67.44025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -00024927 67.44028473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -00024928 67.44028473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -00024929 67.44031525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -00024930 67.44031525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -00024931 67.44033813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -00024932 67.44033813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -00024933 67.44036102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -00024934 67.44036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -00024935 67.44039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -00024936 67.44039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -00024937 67.44042206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -00024938 67.44042969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -00024939 67.44045258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -00024940 67.44045258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -00024941 67.44048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -00024942 67.44048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -00024943 67.44051361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -00024944 67.44051361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -00024945 67.44053650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -00024946 67.44054413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -00024947 67.44056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30900 -00024948 67.44056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30900 -00024949 67.44059753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30910 -00024950 67.44060516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30910 -00024951 67.44062805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30920 -00024952 67.44062805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30920 -00024953 67.44065094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30930 -00024954 67.44065857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30930 -00024955 67.44068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30940 -00024956 67.44068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30940 -00024957 67.44071198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30950 -00024958 67.44071198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30950 -00024959 67.44073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30960 -00024960 67.44074249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30960 -00024961 67.44076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30970 -00024962 67.44076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30970 -00024963 67.44079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30980 -00024964 67.44080353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30980 -00024965 67.44082642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30990 -00024966 67.44082642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30990 -00024967 67.44084930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309a0 -00024968 67.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309a0 -00024969 67.44087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309b0 -00024970 67.44087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309b0 -00024971 67.44091034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c0 -00024972 67.44091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c0 -00024973 67.44094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d0 -00024974 67.44094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d0 -00024975 67.44096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e0 -00024976 67.44096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e0 -00024977 67.44099426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f0 -00024978 67.44100189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f0 -00024979 67.44102478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a00 -00024980 67.44102478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a00 -00024981 67.44104767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a10 -00024982 67.44105530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a10 -00024983 67.44107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a20 -00024984 67.44107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a20 -00024985 67.44110870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a30 -00024986 67.44111633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a30 -00024987 67.44113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a40 -00024988 67.44113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a40 -00024989 67.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a50 -00024990 67.44116974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a50 -00024991 67.44120026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a60 -00024992 67.44120026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a60 -00024993 67.44122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a70 -00024994 67.44123077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a70 -00024995 67.44125366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a80 -00024996 67.44125366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a80 -00024997 67.44127655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -00024998 67.44128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a90 -00024999 67.44131470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -00025000 67.44131470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30aa0 -00025001 67.44133759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -00025002 67.44133759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ab0 -00025003 67.44136047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -00025004 67.44136810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ac0 -00025005 67.44139862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -00025006 67.44139862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ad0 -00025007 67.44142151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -00025008 67.44142914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ae0 -00025009 67.44145203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -00025010 67.44145203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -00025011 67.44147491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -00025012 67.44148254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -00025013 67.44151306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -00025014 67.44151306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -00025015 67.44153595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -00025016 67.44154358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -00025017 67.44156647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -00025018 67.44156647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -00025019 67.44159698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -00025020 67.44159698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -00025021 67.44162750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -00025022 67.44162750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -00025023 67.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -00025024 67.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -00025025 67.44167328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -00025026 67.44168091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -00025027 67.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -00025028 67.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -00025029 67.44173431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -00025030 67.44174194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -00025031 67.44176483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -00025032 67.44176483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -00025033 67.44179535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -00025034 67.44179535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -00025035 67.44182587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -00025036 67.44182587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -00025037 67.44184875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -00025038 67.44185638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -00025039 67.44187927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -00025040 67.44187927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -00025041 67.44190979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -00025042 67.44190979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -00025043 67.44193268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -00025044 67.44194031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -00025045 67.44196320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -00025046 67.44196320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -00025047 67.44199371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -00025048 67.44199371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -00025049 67.44202423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -00025050 67.44202423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -00025051 67.44204712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -00025052 67.44205475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -00025053 67.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c50 -00025054 67.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c50 -00025055 67.44210815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c60 -00025056 67.44211578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c60 -00025057 67.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c70 -00025058 67.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c70 -00025059 67.44216156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c80 -00025060 67.44216156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c80 -00025061 67.44219208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c90 -00025062 67.44219208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c90 -00025063 67.44222260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca0 -00025064 67.44222260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca0 -00025065 67.44224548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb0 -00025066 67.44225311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb0 -00025067 67.44227600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc0 -00025068 67.44227600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc0 -00025069 67.44230652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd0 -00025070 67.44231415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd0 -00025071 67.44233704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce0 -00025072 67.44233704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce0 -00025073 67.44235992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf0 -00025074 67.44235992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf0 -00025075 67.44239044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d00 -00025076 67.44239044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d00 -00025077 67.44242096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -00025078 67.44242096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d10 -00025079 67.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -00025080 67.44245148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d20 -00025081 67.44247437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -00025082 67.44247437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d30 -00025083 67.44251251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -00025084 67.44251251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d40 -00025085 67.44253540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -00025086 67.44253540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d50 -00025087 67.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -00025088 67.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d60 -00025089 67.44258881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -00025090 67.44258881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d70 -00025091 67.44261932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -00025092 67.44262695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d80 -00025093 67.44264984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -00025094 67.44264984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d90 -00025095 67.44267273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -00025096 67.44268036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da0 -00025097 67.44271088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -00025098 67.44271088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db0 -00025099 67.44273376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -00025100 67.44274139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -00025101 67.44276428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -00025102 67.44276428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -00025103 67.44278717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -00025104 67.44278717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -00025105 67.44281769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -00025106 67.44282532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -00025107 67.44284821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -00025108 67.44284821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -00025109 67.44287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -00025110 67.44287872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -00025111 67.44290924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -00025112 67.44290924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -00025113 67.44293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -00025114 67.44293976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -00025115 67.44296265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -00025116 67.44296265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -00025117 67.44298553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -00025118 67.44299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -00025119 67.44302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -00025120 67.44302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -00025121 67.44304657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -00025122 67.44304657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -00025123 67.44307709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -00025124 67.44307709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -00025125 67.44310760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -00025126 67.44310760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -00025127 67.44313812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -00025128 67.44313812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -00025129 67.44316101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -00025130 67.44316864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -00025131 67.44319153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -00025132 67.44319153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -00025133 67.44322205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -00025134 67.44322205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -00025135 67.44324493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -00025136 67.44325256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -00025137 67.44327545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -00025138 67.44327545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -00025139 67.44330597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -00025140 67.44330597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -00025141 67.44333649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -00025142 67.44333649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -00025143 67.44335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -00025144 67.44336700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -00025145 67.44338989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -00025146 67.44338989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -00025147 67.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -00025148 67.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -00025149 67.44345093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -00025150 67.44345093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -00025151 67.44347382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -00025152 67.44347382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -00025153 67.44350433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -00025154 67.44350433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -00025155 67.44353485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -00025156 67.44353485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -00025157 67.44355774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -00025158 67.44356537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -00025159 67.44358826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -00025160 67.44358826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -00025161 67.44361877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -00025162 67.44361877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -00025163 67.44364929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -00025164 67.44364929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -00025165 67.44367218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -00025166 67.44367981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -00025167 67.44370270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -00025168 67.44370270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -00025169 67.44373322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -00025170 67.44374084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -00025171 67.44376373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -00025172 67.44376373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -00025173 67.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -00025174 67.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -00025175 67.44381714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -00025176 67.44381714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -00025177 67.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -00025178 67.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -00025179 67.44387054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -00025180 67.44387817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -00025181 67.44390106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -00025182 67.44390106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -00025183 67.44393158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -00025184 67.44393921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -00025185 67.44396210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -00025186 67.44396210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -00025187 67.44398499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -00025188 67.44399261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -00025189 67.44401550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -00025190 67.44401550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -00025191 67.44404602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -00025192 67.44404602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -00025193 67.44406891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -00025194 67.44407654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -00025195 67.44409943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -00025196 67.44409943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -00025197 67.44412994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d0 -00025198 67.44413757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d0 -00025199 67.44416046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e0 -00025200 67.44416046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e0 -00025201 67.44418335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f0 -00025202 67.44419098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f0 -00025203 67.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31100 -00025204 67.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31100 -00025205 67.44424438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31110 -00025206 67.44425201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31110 -00025207 67.44427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -00025208 67.44427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -00025209 67.44429779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -00025210 67.44429779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -00025211 67.44432831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -00025212 67.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -00025213 67.44435883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -00025214 67.44435883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -00025215 67.44438171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -00025216 67.44438934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -00025217 67.44441223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -00025218 67.44441223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -00025219 67.44444275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -00025220 67.44445038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -00025221 67.44447327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -00025222 67.44447327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -00025223 67.44449615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -00025224 67.44450378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -00025225 67.44453430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -00025226 67.44453430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -00025227 67.44455719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -00025228 67.44455719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -00025229 67.44458008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -00025230 67.44458771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -00025231 67.44461060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -00025232 67.44461060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -00025233 67.44464111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -00025234 67.44464874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -00025235 67.44467163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -00025236 67.44467163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -00025237 67.44469452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -00025238 67.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -00025239 67.44473267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -00025240 67.44473267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -00025241 67.44475555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -00025242 67.44476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -00025243 67.44478607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -00025244 67.44478607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -00025245 67.44481659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -00025246 67.44481659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -00025247 67.44483948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -00025248 67.44484711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -00025249 67.44487000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -00025250 67.44487000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -00025251 67.44489288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -00025252 67.44490051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -00025253 67.44493103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -00025254 67.44493103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -00025255 67.44495392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -00025256 67.44496155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -00025257 67.44498444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -00025258 67.44498444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -00025259 67.44501495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -00025260 67.44501495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -00025261 67.44504547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -00025262 67.44504547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -00025263 67.44506836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -00025264 67.44506836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -00025265 67.44509125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -00025266 67.44509888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -00025267 67.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31300 -00025268 67.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31300 -00025269 67.44515991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31310 -00025270 67.44515991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31310 -00025271 67.44519806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31320 -00025272 67.44519806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31320 -00025273 67.44522095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31330 -00025274 67.44522858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31330 -00025275 67.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31340 -00025276 67.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31340 -00025277 67.44528198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31350 -00025278 67.44528961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31350 -00025279 67.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31360 -00025280 67.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31360 -00025281 67.44533539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31370 -00025282 67.44534302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31370 -00025283 67.44536591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31380 -00025284 67.44536591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31380 -00025285 67.44539642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31390 -00025286 67.44540405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31390 -00025287 67.44542694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a0 -00025288 67.44542694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a0 -00025289 67.44544983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313b0 -00025290 67.44544983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313b0 -00025291 67.44548798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313c0 -00025292 67.44548798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313c0 -00025293 67.44551086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313d0 -00025294 67.44551849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313d0 -00025295 67.44554138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313e0 -00025296 67.44554138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313e0 -00025297 67.44556427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313f0 -00025298 67.44556427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x313f0 -00025299 67.44560242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31400 -00025300 67.44560242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31400 -00025301 67.44562531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31410 -00025302 67.44562531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31410 -00025303 67.44564819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31420 -00025304 67.44565582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31420 -00025305 67.44568634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31430 -00025306 67.44568634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31430 -00025307 67.44570923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31440 -00025308 67.44571686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31440 -00025309 67.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31450 -00025310 67.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31450 -00025311 67.44576263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31460 -00025312 67.44577026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31460 -00025313 67.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31470 -00025314 67.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31470 -00025315 67.44582367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31480 -00025316 67.44583130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31480 -00025317 67.44585419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31490 -00025318 67.44585419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31490 -00025319 67.44588470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314a0 -00025320 67.44588470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314a0 -00025321 67.44590759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314b0 -00025322 67.44591522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314b0 -00025323 67.44593811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314c0 -00025324 67.44593811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314c0 -00025325 67.44596100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314d0 -00025326 67.44596863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314d0 -00025327 67.44599915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314e0 -00025328 67.44599915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314e0 -00025329 67.44602203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314f0 -00025330 67.44602966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x314f0 -00025331 67.44605255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31500 -00025332 67.44605255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31500 -00025333 67.44608307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31510 -00025334 67.44608307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31510 -00025335 67.44611359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -00025336 67.44611359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -00025337 67.44613647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -00025338 67.44613647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -00025339 67.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -00025340 67.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -00025341 67.44619751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -00025342 67.44620514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -00025343 67.44622040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -00025344 67.44622803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -00025345 67.44625092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -00025346 67.44625854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -00025347 67.44628143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -00025348 67.44628143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -00025349 67.44631195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -00025350 67.44631958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -00025351 67.44634247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -00025352 67.44634247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -00025353 67.44636536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -00025354 67.44637299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -00025355 67.44640350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -00025356 67.44640350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -00025357 67.44642639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -00025358 67.44642639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -00025359 67.44645691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -00025360 67.44645691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -00025361 67.44647980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -00025362 67.44648743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -00025363 67.44651031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -00025364 67.44651794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -00025365 67.44654083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -00025366 67.44654846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -00025367 67.44657135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -00025368 67.44657135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -00025369 67.44660187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -00025370 67.44660187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -00025371 67.44663239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -00025372 67.44663239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -00025373 67.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -00025374 67.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -00025375 67.44667816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -00025376 67.44668579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -00025377 67.44671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -00025378 67.44671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -00025379 67.44673920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31680 -00025380 67.44673920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31680 -00025381 67.44676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31690 -00025382 67.44676971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31690 -00025383 67.44679260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a0 -00025384 67.44680023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a0 -00025385 67.44682312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b0 -00025386 67.44683075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b0 -00025387 67.44685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c0 -00025388 67.44685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c0 -00025389 67.44687653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d0 -00025390 67.44688416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d0 -00025391 67.44691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e0 -00025392 67.44691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e0 -00025393 67.44693756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f0 -00025394 67.44693756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f0 -00025395 67.44696045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31700 -00025396 67.44696808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31700 -00025397 67.44699860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31710 -00025398 67.44699860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31710 -00025399 67.44702148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -00025400 67.44702911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -00025401 67.44705200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -00025402 67.44705200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -00025403 67.44707489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -00025404 67.44708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -00025405 67.44711304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -00025406 67.44711304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -00025407 67.44713593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -00025408 67.44714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -00025409 67.44716644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -00025410 67.44717407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -00025411 67.44719696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -00025412 67.44719696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -00025413 67.44722748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -00025414 67.44723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -00025415 67.44725800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -00025416 67.44725800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -00025417 67.44728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -00025418 67.44728851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -00025419 67.44731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -00025420 67.44731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -00025421 67.44734192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -00025422 67.44734192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -00025423 67.44737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -00025424 67.44737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -00025425 67.44739532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -00025426 67.44740295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -00025427 67.44742584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -00025428 67.44743347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -00025429 67.44745636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -00025430 67.44746399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -00025431 67.44748688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -00025432 67.44748688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -00025433 67.44751740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -00025434 67.44751740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -00025435 67.44754791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -00025436 67.44754791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -00025437 67.44757080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -00025438 67.44757843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -00025439 67.44760132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -00025440 67.44760132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -00025441 67.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -00025442 67.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -00025443 67.44766235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31880 -00025444 67.44766235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31880 -00025445 67.44768524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31890 -00025446 67.44768524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31890 -00025447 67.44771576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a0 -00025448 67.44771576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a0 -00025449 67.44774628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b0 -00025450 67.44774628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b0 -00025451 67.44776917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c0 -00025452 67.44777679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c0 -00025453 67.44779968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d0 -00025454 67.44780731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d0 -00025455 67.44783020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e0 -00025456 67.44783020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e0 -00025457 67.44786072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f0 -00025458 67.44786072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f0 -00025459 67.44788361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31900 -00025460 67.44788361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31900 -00025461 67.44791412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31910 -00025462 67.44791412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31910 -00025463 67.44794464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31920 -00025464 67.44794464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31920 -00025465 67.44796753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31930 -00025466 67.44797516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31930 -00025467 67.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31940 -00025468 67.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31940 -00025469 67.44802856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31950 -00025470 67.44802856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31950 -00025471 67.44805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31960 -00025472 67.44805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31960 -00025473 67.44808197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31970 -00025474 67.44808197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31970 -00025475 67.44811249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31980 -00025476 67.44811249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31980 -00025477 67.44814301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31990 -00025478 67.44814301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31990 -00025479 67.44816589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a0 -00025480 67.44817352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a0 -00025481 67.44819641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b0 -00025482 67.44819641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b0 -00025483 67.44822693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319c0 -00025484 67.44822693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319c0 -00025485 67.44825745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319d0 -00025486 67.44825745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319d0 -00025487 67.44828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319e0 -00025488 67.44828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319e0 -00025489 67.44831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319f0 -00025490 67.44831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x319f0 -00025491 67.44834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a00 -00025492 67.44834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a00 -00025493 67.44837189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -00025494 67.44837952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -00025495 67.44840240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -00025496 67.44841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -00025497 67.44842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -00025498 67.44843292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -00025499 67.44846344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -00025500 67.44846344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -00025501 67.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -00025502 67.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -00025503 67.44850922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -00025504 67.44851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -00025505 67.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -00025506 67.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -00025507 67.44857025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -00025508 67.44857788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -00025509 67.44860077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -00025510 67.44860077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -00025511 67.44862366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -00025512 67.44863129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -00025513 67.44866180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -00025514 67.44866180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -00025515 67.44868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -00025516 67.44869232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -00025517 67.44871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -00025518 67.44871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -00025519 67.44874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -00025520 67.44874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -00025521 67.44876862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -00025522 67.44876862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -00025523 67.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -00025524 67.44879913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -00025525 67.44882202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -00025526 67.44882965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -00025527 67.44886017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -00025528 67.44886017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -00025529 67.44888306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -00025530 67.44889069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -00025531 67.44891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -00025532 67.44892120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -00025533 67.44894409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -00025534 67.44894409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -00025535 67.44897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -00025536 67.44898224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -00025537 67.44900513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b70 -00025538 67.44900513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b70 -00025539 67.44902802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b80 -00025540 67.44902802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b80 -00025541 67.44905853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b90 -00025542 67.44906616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b90 -00025543 67.44908905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba0 -00025544 67.44908905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ba0 -00025545 67.44911194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb0 -00025546 67.44911957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bb0 -00025547 67.44914246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc0 -00025548 67.44914246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bc0 -00025549 67.44917297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd0 -00025550 67.44918060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bd0 -00025551 67.44920349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be0 -00025552 67.44920349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31be0 -00025553 67.44922638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf0 -00025554 67.44922638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31bf0 -00025555 67.44925690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c00 -00025556 67.44926453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c00 -00025557 67.44928741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c10 -00025558 67.44928741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c10 -00025559 67.44931030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c20 -00025560 67.44931793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c20 -00025561 67.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c30 -00025562 67.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c30 -00025563 67.44937134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c40 -00025564 67.44937897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c40 -00025565 67.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c50 -00025566 67.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c50 -00025567 67.44942474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c60 -00025568 67.44943237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c60 -00025569 67.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c70 -00025570 67.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c70 -00025571 67.44948578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c80 -00025572 67.44949341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c80 -00025573 67.44951630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c90 -00025574 67.44952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c90 -00025575 67.44954681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca0 -00025576 67.44955444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ca0 -00025577 67.44957733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb0 -00025578 67.44957733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cb0 -00025579 67.44960785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cc0 -00025580 67.44960785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cc0 -00025581 67.44963074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cd0 -00025582 67.44963837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cd0 -00025583 67.44966125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -00025584 67.44966125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -00025585 67.44969177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -00025586 67.44969940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -00025587 67.44972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -00025588 67.44972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -00025589 67.44975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -00025590 67.44975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -00025591 67.44977570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -00025592 67.44977570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -00025593 67.44980621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -00025594 67.44981384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -00025595 67.44982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -00025596 67.44983673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -00025597 67.44985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -00025598 67.44985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -00025599 67.44989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -00025600 67.44989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -00025601 67.44991302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -00025602 67.44992065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -00025603 67.44996643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -00025604 67.44996643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -00025605 67.44998932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -00025606 67.44999695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -00025607 67.45001984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -00025608 67.45001984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -00025609 67.45005035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -00025610 67.45005035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -00025611 67.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -00025612 67.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -00025613 67.45009613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -00025614 67.45010376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -00025615 67.45013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -00025616 67.45013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -00025617 67.45016479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -00025618 67.45016479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -00025619 67.45018768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -00025620 67.45018768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -00025621 67.45021820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -00025622 67.45021820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -00025623 67.45024872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -00025624 67.45025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -00025625 67.45027924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -00025626 67.45027924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -00025627 67.45030212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e40 -00025628 67.45030212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e40 -00025629 67.45033264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e50 -00025630 67.45033264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e50 -00025631 67.45036316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e60 -00025632 67.45037079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e60 -00025633 67.45039368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e70 -00025634 67.45039368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e70 -00025635 67.45041656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e80 -00025636 67.45041656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e80 -00025637 67.45045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e90 -00025638 67.45045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e90 -00025639 67.45047760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ea0 -00025640 67.45048523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ea0 -00025641 67.45050812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31eb0 -00025642 67.45050812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31eb0 -00025643 67.45053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ec0 -00025644 67.45053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ec0 -00025645 67.45056915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ed0 -00025646 67.45056915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ed0 -00025647 67.45059204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ee0 -00025648 67.45059967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ee0 -00025649 67.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ef0 -00025650 67.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ef0 -00025651 67.45065308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f00 -00025652 67.45065308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f00 -00025653 67.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f10 -00025654 67.45069122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f10 -00025655 67.45071411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f20 -00025656 67.45071411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f20 -00025657 67.45073700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f30 -00025658 67.45074463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f30 -00025659 67.45076752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f40 -00025660 67.45076752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f40 -00025661 67.45079803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f50 -00025662 67.45079803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f50 -00025663 67.45082092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f60 -00025664 67.45082855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f60 -00025665 67.45085144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f70 -00025666 67.45085144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f70 -00025667 67.45088196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f80 -00025668 67.45088959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f80 -00025669 67.45091248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f90 -00025670 67.45091248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f90 -00025671 67.45093536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fa0 -00025672 67.45094299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fa0 -00025673 67.45096588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fb0 -00025674 67.45096588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fb0 -00025675 67.45099640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fc0 -00025676 67.45099640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fc0 -00025677 67.45101929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fd0 -00025678 67.45102692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fd0 -00025679 67.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fe0 -00025680 67.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31fe0 -00025681 67.45108032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ff0 -00025682 67.45108795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ff0 -00025683 67.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32000 -00025684 67.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32000 -00025685 67.45113373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32010 -00025686 67.45114136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32010 -00025687 67.45116425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32020 -00025688 67.45116425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32020 -00025689 67.45119476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32030 -00025690 67.45120239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32030 -00025691 67.45122528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32040 -00025692 67.45122528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32040 -00025693 67.45124817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32050 -00025694 67.45125580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32050 -00025695 67.45128632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32060 -00025696 67.45128632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32060 -00025697 67.45130920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32070 -00025698 67.45130920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32070 -00025699 67.45133972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32080 -00025700 67.45133972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32080 -00025701 67.45136261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32090 -00025702 67.45136261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32090 -00025703 67.45139313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a0 -00025704 67.45140076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a0 -00025705 67.45142365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b0 -00025706 67.45142365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b0 -00025707 67.45144653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c0 -00025708 67.45145416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c0 -00025709 67.45148468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d0 -00025710 67.45148468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d0 -00025711 67.45150757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e0 -00025712 67.45151520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e0 -00025713 67.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f0 -00025714 67.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f0 -00025715 67.45156860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32100 -00025716 67.45156860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32100 -00025717 67.45159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32110 -00025718 67.45159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32110 -00025719 67.45162201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32120 -00025720 67.45162201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32120 -00025721 67.45164490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32130 -00025722 67.45165253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32130 -00025723 67.45168304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32140 -00025724 67.45168304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32140 -00025725 67.45170593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32150 -00025726 67.45171356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32150 -00025727 67.45173645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32160 -00025728 67.45173645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32160 -00025729 67.45176697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32170 -00025730 67.45176697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32170 -00025731 67.45179749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32180 -00025732 67.45179749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32180 -00025733 67.45182037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32190 -00025734 67.45182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32190 -00025735 67.45185089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a0 -00025736 67.45185089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a0 -00025737 67.45188141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b0 -00025738 67.45188141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b0 -00025739 67.45190430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c0 -00025740 67.45191193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c0 -00025741 67.45193481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d0 -00025742 67.45193481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d0 -00025743 67.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e0 -00025744 67.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e0 -00025745 67.45199585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f0 -00025746 67.45199585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f0 -00025747 67.45201874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32200 -00025748 67.45202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32200 -00025749 67.45204926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32210 -00025750 67.45204926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32210 -00025751 67.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32220 -00025752 67.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32220 -00025753 67.45211792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32230 -00025754 67.45211792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32230 -00025755 67.45214844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32240 -00025756 67.45214844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32240 -00025757 67.45217133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32250 -00025758 67.45217896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32250 -00025759 67.45220184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32260 -00025760 67.45220184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32260 -00025761 67.45223236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32270 -00025762 67.45223236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32270 -00025763 67.45226288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32280 -00025764 67.45226288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32280 -00025765 67.45228577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32290 -00025766 67.45228577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32290 -00025767 67.45231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a0 -00025768 67.45231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a0 -00025769 67.45234680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b0 -00025770 67.45234680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b0 -00025771 67.45236969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c0 -00025772 67.45237732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c0 -00025773 67.45240021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d0 -00025774 67.45240021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d0 -00025775 67.45243073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e0 -00025776 67.45243835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e0 -00025777 67.45246124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f0 -00025778 67.45246124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f0 -00025779 67.45248413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32300 -00025780 67.45249176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32300 -00025781 67.45251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32310 -00025782 67.45251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32310 -00025783 67.45254517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32320 -00025784 67.45255280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32320 -00025785 67.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32330 -00025786 67.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32330 -00025787 67.45259857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32340 -00025788 67.45259857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32340 -00025789 67.45262909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32350 -00025790 67.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32350 -00025791 67.45265961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32360 -00025792 67.45265961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32360 -00025793 67.45268250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32370 -00025794 67.45269012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32370 -00025795 67.45271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32380 -00025796 67.45271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32380 -00025797 67.45274353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32390 -00025798 67.45275116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32390 -00025799 67.45277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323a0 -00025800 67.45277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323a0 -00025801 67.45279694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323b0 -00025802 67.45280457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323b0 -00025803 67.45283508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323c0 -00025804 67.45283508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323c0 -00025805 67.45285797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00025806 67.45285797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00025807 67.45288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00025808 67.45288849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00025809 67.45291901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00025810 67.45291901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00025811 67.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00025812 67.45294952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00025813 67.45297241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00025814 67.45297241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00025815 67.45299530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00025816 67.45300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00025817 67.45303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00025818 67.45303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00025819 67.45305634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00025820 67.45305634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00025821 67.45307922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00025822 67.45308685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00025823 67.45311737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00025824 67.45311737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00025825 67.45314026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00025826 67.45314789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00025827 67.45317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00025828 67.45317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00025829 67.45319366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00025830 67.45320129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00025831 67.45323181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00025832 67.45323181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00025833 67.45325470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00025834 67.45326233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00025835 67.45328522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00025836 67.45328522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00025837 67.45331573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00025838 67.45331573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00025839 67.45333862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e0 -00025840 67.45334625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e0 -00025841 67.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f0 -00025842 67.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f0 -00025843 67.45339203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32500 -00025844 67.45339966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32500 -00025845 67.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32510 -00025846 67.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32510 -00025847 67.45345306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32520 -00025848 67.45346069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32520 -00025849 67.45348358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32530 -00025850 67.45348358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32530 -00025851 67.45351410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32540 -00025852 67.45351410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32540 -00025853 67.45354462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32550 -00025854 67.45354462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32550 -00025855 67.45356750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32560 -00025856 67.45356750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32560 -00025857 67.45359802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32570 -00025858 67.45359802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32570 -00025859 67.45362854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32580 -00025860 67.45362854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32580 -00025861 67.45365143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32590 -00025862 67.45365906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32590 -00025863 67.45368195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a0 -00025864 67.45368195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a0 -00025865 67.45371246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b0 -00025866 67.45371246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b0 -00025867 67.45374298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c0 -00025868 67.45374298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c0 -00025869 67.45376587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d0 -00025870 67.45377350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d0 -00025871 67.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e0 -00025872 67.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e0 -00025873 67.45382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f0 -00025874 67.45382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f0 -00025875 67.45385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32600 -00025876 67.45385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32600 -00025877 67.45388031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32610 -00025878 67.45388031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32610 -00025879 67.45391083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32620 -00025880 67.45391083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32620 -00025881 67.45394135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32630 -00025882 67.45394135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32630 -00025883 67.45396423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32640 -00025884 67.45397186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32640 -00025885 67.45399475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32650 -00025886 67.45399475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32650 -00025887 67.45402527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32660 -00025888 67.45402527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32660 -00025889 67.45405579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32670 -00025890 67.45405579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32670 -00025891 67.45407867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32680 -00025892 67.45407867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32680 -00025893 67.45410919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32690 -00025894 67.45410919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32690 -00025895 67.45413971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a0 -00025896 67.45413971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a0 -00025897 67.45416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b0 -00025898 67.45417023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b0 -00025899 67.45419312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c0 -00025900 67.45419312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c0 -00025901 67.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d0 -00025902 67.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d0 -00025903 67.45425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e0 -00025904 67.45425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e0 -00025905 67.45427704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f0 -00025906 67.45427704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f0 -00025907 67.45430756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32700 -00025908 67.45430756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32700 -00025909 67.45433807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32710 -00025910 67.45433807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32710 -00025911 67.45436096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32720 -00025912 67.45436859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32720 -00025913 67.45439148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32730 -00025914 67.45439148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32730 -00025915 67.45442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -00025916 67.45442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32740 -00025917 67.45445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -00025918 67.45445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32750 -00025919 67.45447540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -00025920 67.45448303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32760 -00025921 67.45450592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -00025922 67.45450592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32770 -00025923 67.45453644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -00025924 67.45454407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32780 -00025925 67.45456696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -00025926 67.45456696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32790 -00025927 67.45458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -00025928 67.45459747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a0 -00025929 67.45462036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -00025930 67.45462036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b0 -00025931 67.45465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -00025932 67.45465851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c0 -00025933 67.45468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -00025934 67.45468903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -00025935 67.45471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -00025936 67.45471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -00025937 67.45474243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -00025938 67.45474243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -00025939 67.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -00025940 67.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -00025941 67.45479584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -00025942 67.45480347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -00025943 67.45482635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -00025944 67.45482635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -00025945 67.45485687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -00025946 67.45485687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -00025947 67.45487976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -00025948 67.45488739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -00025949 67.45491028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -00025950 67.45491028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -00025951 67.45494080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -00025952 67.45494080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -00025953 67.45497131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -00025954 67.45497131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -00025955 67.45499420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -00025956 67.45500183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -00025957 67.45502472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -00025958 67.45502472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -00025959 67.45505524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -00025960 67.45506287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -00025961 67.45508575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -00025962 67.45508575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -00025963 67.45510864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -00025964 67.45511627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -00025965 67.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -00025966 67.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -00025967 67.45516968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -00025968 67.45516968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -00025969 67.45519257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -00025970 67.45520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -00025971 67.45522308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -00025972 67.45522308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -00025973 67.45525360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -00025974 67.45526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -00025975 67.45528412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -00025976 67.45528412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -00025977 67.45530701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -00025978 67.45531464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -00025979 67.45533752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -00025980 67.45533752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -00025981 67.45536804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -00025982 67.45536804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -00025983 67.45539093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -00025984 67.45539856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -00025985 67.45542145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -00025986 67.45542145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -00025987 67.45545197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -00025988 67.45545959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -00025989 67.45548248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -00025990 67.45549011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -00025991 67.45551300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -00025992 67.45551300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -00025993 67.45553589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -00025994 67.45553589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -00025995 67.45557404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -00025996 67.45557404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -00025997 67.45559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -00025998 67.45559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -00025999 67.45561981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -00026000 67.45562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -00026001 67.45565796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -00026002 67.45565796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -00026003 67.45568085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -00026004 67.45568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -00026005 67.45571136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -00026006 67.45571136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -00026007 67.45573425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -00026008 67.45574188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -00026009 67.45577240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -00026010 67.45577240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -00026011 67.45579529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -00026012 67.45580292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -00026013 67.45582581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -00026014 67.45582581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -00026015 67.45585632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -00026016 67.45585632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -00026017 67.45588684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -00026018 67.45588684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -00026019 67.45590973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -00026020 67.45590973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -00026021 67.45593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -00026022 67.45594025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -00026023 67.45597076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -00026024 67.45597076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -00026025 67.45599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -00026026 67.45600128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -00026027 67.45602417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -00026028 67.45602417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -00026029 67.45605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -00026030 67.45605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -00026031 67.45608521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -00026032 67.45608521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae0 -00026033 67.45610809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -00026034 67.45610809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af0 -00026035 67.45613098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -00026036 67.45613861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b00 -00026037 67.45616913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -00026038 67.45616913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b10 -00026039 67.45619202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -00026040 67.45619965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b20 -00026041 67.45622253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -00026042 67.45622253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b30 -00026043 67.45625305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -00026044 67.45625305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -00026045 67.45628357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -00026046 67.45628357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -00026047 67.45630646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -00026048 67.45631409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -00026049 67.45633698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -00026050 67.45633698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -00026051 67.45636749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -00026052 67.45636749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -00026053 67.45639801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -00026054 67.45639801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -00026055 67.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -00026056 67.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -00026057 67.45645142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -00026058 67.45645142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -00026059 67.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -00026060 67.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -00026061 67.45650482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -00026062 67.45651245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -00026063 67.45653534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -00026064 67.45653534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -00026065 67.45656586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -00026066 67.45656586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -00026067 67.45659637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -00026068 67.45659637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -00026069 67.45661926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -00026070 67.45662689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -00026071 67.45664978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -00026072 67.45664978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -00026073 67.45668030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -00026074 67.45668793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -00026075 67.45671082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -00026076 67.45671082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -00026077 67.45673370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -00026078 67.45673370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -00026079 67.45676422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -00026080 67.45676422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -00026081 67.45679474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -00026082 67.45679474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -00026083 67.45681763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -00026084 67.45682526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -00026085 67.45684814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -00026086 67.45684814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -00026087 67.45687866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ca0 -00026088 67.45688629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ca0 -00026089 67.45690918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cb0 -00026090 67.45690918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cb0 -00026091 67.45693207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cc0 -00026092 67.45693970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cc0 -00026093 67.45696259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cd0 -00026094 67.45696259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cd0 -00026095 67.45699310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ce0 -00026096 67.45700073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ce0 -00026097 67.45702362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cf0 -00026098 67.45702362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32cf0 -00026099 67.45704651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d00 -00026100 67.45704651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d00 -00026101 67.45707703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d10 -00026102 67.45708466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d10 -00026103 67.45710754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d20 -00026104 67.45710754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d20 -00026105 67.45713043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d30 -00026106 67.45713806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d30 -00026107 67.45716858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d40 -00026108 67.45716858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d40 -00026109 67.45719147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d50 -00026110 67.45719910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d50 -00026111 67.45722198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d60 -00026112 67.45722198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d60 -00026113 67.45724487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d70 -00026114 67.45724487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d70 -00026115 67.45728302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d80 -00026116 67.45728302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d80 -00026117 67.45730591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d90 -00026118 67.45730591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d90 -00026119 67.45732880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da0 -00026120 67.45733643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da0 -00026121 67.45736694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32db0 -00026122 67.45736694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32db0 -00026123 67.45738983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dc0 -00026124 67.45739746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dc0 -00026125 67.45742035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd0 -00026126 67.45742035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd0 -00026127 67.45744324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -00026128 67.45745087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -00026129 67.45748138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -00026130 67.45748138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -00026131 67.45750427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -00026132 67.45751190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -00026133 67.45753479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -00026134 67.45753479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -00026135 67.45756531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -00026136 67.45756531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -00026137 67.45759583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -00026138 67.45759583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -00026139 67.45761871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -00026140 67.45762634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -00026141 67.45764923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -00026142 67.45764923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -00026143 67.45767975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -00026144 67.45767975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -00026145 67.45770264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -00026146 67.45771027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -00026147 67.45773315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -00026148 67.45773315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -00026149 67.45776367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -00026150 67.45776367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -00026151 67.45779419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -00026152 67.45779419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -00026153 67.45781708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -00026154 67.45782471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -00026155 67.45784760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -00026156 67.45784760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -00026157 67.45787811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -00026158 67.45787811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -00026159 67.45790863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -00026160 67.45790863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -00026161 67.45793152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -00026162 67.45793152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -00026163 67.45796204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -00026164 67.45796204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -00026165 67.45799255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -00026166 67.45799255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -00026167 67.45801544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -00026168 67.45802307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -00026169 67.45804596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -00026170 67.45804596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -00026171 67.45807648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -00026172 67.45807648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -00026173 67.45810699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -00026174 67.45810699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -00026175 67.45812988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -00026176 67.45813751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -00026177 67.45816040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -00026178 67.45816040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -00026179 67.45819092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -00026180 67.45819855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -00026181 67.45822144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -00026182 67.45822144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -00026183 67.45824432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -00026184 67.45824432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -00026185 67.45827484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -00026186 67.45827484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -00026187 67.45830536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -00026188 67.45830536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -00026189 67.45832825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -00026190 67.45833588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -00026191 67.45835876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -00026192 67.45835876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -00026193 67.45838928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -00026194 67.45839691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -00026195 67.45841980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -00026196 67.45841980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -00026197 67.45844269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -00026198 67.45845032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -00026199 67.45847321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -00026200 67.45847321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -00026201 67.45850372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -00026202 67.45851135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -00026203 67.45853424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -00026204 67.45853424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -00026205 67.45855713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -00026206 67.45855713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -00026207 67.45858765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33060 -00026208 67.45859528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33060 -00026209 67.45861816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33070 -00026210 67.45861816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33070 -00026211 67.45864868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33080 -00026212 67.45864868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33080 -00026213 67.45867920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33090 -00026214 67.45867920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33090 -00026215 67.45870972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a0 -00026216 67.45870972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330a0 -00026217 67.45874023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b0 -00026218 67.45874023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330b0 -00026219 67.45876312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c0 -00026220 67.45876312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330c0 -00026221 67.45879364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330d0 -00026222 67.45879364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330d0 -00026223 67.45882416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330e0 -00026224 67.45882416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330e0 -00026225 67.45884705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f0 -00026226 67.45885468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f0 -00026227 67.45887756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33100 -00026228 67.45887756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33100 -00026229 67.45890808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33110 -00026230 67.45891571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33110 -00026231 67.45893860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33120 -00026232 67.45893860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33120 -00026233 67.45896149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33130 -00026234 67.45896912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33130 -00026235 67.45899200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33140 -00026236 67.45899200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33140 -00026237 67.45903015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33150 -00026238 67.45903015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33150 -00026239 67.45906067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33160 -00026240 67.45906830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33160 -00026241 67.45909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33170 -00026242 67.45909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33170 -00026243 67.45911407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33180 -00026244 67.45911407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33180 -00026245 67.45914459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33190 -00026246 67.45915222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33190 -00026247 67.45917511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a0 -00026248 67.45917511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a0 -00026249 67.45919800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b0 -00026250 67.45920563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b0 -00026251 67.45922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c0 -00026252 67.45922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c0 -00026253 67.45925903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d0 -00026254 67.45926666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d0 -00026255 67.45928955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e0 -00026256 67.45928955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e0 -00026257 67.45931244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f0 -00026258 67.45932007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f0 -00026259 67.45935059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33200 -00026260 67.45935059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33200 -00026261 67.45937347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -00026262 67.45937347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -00026263 67.45939636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -00026264 67.45940399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -00026265 67.45942688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -00026266 67.45942688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -00026267 67.45945740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -00026268 67.45946503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -00026269 67.45948792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -00026270 67.45949554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -00026271 67.45951843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -00026272 67.45951843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -00026273 67.45954895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -00026274 67.45954895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -00026275 67.45957947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -00026276 67.45957947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -00026277 67.45960236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -00026278 67.45960236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -00026279 67.45962524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -00026280 67.45963287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -00026281 67.45966339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -00026282 67.45966339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -00026283 67.45968628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -00026284 67.45969391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -00026285 67.45971680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -00026286 67.45971680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -00026287 67.45974731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -00026288 67.45974731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -00026289 67.45977783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -00026290 67.45977783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -00026291 67.45980072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -00026292 67.45980835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -00026293 67.45983124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -00026294 67.45983124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -00026295 67.45986176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -00026296 67.45986176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -00026297 67.45988464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -00026298 67.45989227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -00026299 67.45991516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -00026300 67.45991516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -00026301 67.45994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -00026302 67.45994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -00026303 67.45997620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -00026304 67.45997620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -00026305 67.45999908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33370 -00026306 67.46000671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33370 -00026307 67.46002960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33380 -00026308 67.46002960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33380 -00026309 67.46006012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33390 -00026310 67.46006775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33390 -00026311 67.46009064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a0 -00026312 67.46009064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a0 -00026313 67.46011353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b0 -00026314 67.46011353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b0 -00026315 67.46014404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c0 -00026316 67.46014404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c0 -00026317 67.46017456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333d0 -00026318 67.46017456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333d0 -00026319 67.46019745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333e0 -00026320 67.46020508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333e0 -00026321 67.46022797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333f0 -00026322 67.46022797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x333f0 -00026323 67.46025848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33400 -00026324 67.46026611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33400 -00026325 67.46028900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33410 -00026326 67.46028900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33410 -00026327 67.46031189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33420 -00026328 67.46031952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33420 -00026329 67.46034241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33430 -00026330 67.46034241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33430 -00026331 67.46037292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33440 -00026332 67.46037292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33440 -00026333 67.46039581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33450 -00026334 67.46040344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33450 -00026335 67.46042633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33460 -00026336 67.46042633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33460 -00026337 67.46045685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33470 -00026338 67.46046448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33470 -00026339 67.46048737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33480 -00026340 67.46048737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33480 -00026341 67.46051025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33490 -00026342 67.46051788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33490 -00026343 67.46054077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334a0 -00026344 67.46054077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334a0 -00026345 67.46057129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334b0 -00026346 67.46057892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334b0 -00026347 67.46060181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334c0 -00026348 67.46060181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334c0 -00026349 67.46062469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334d0 -00026350 67.46062469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334d0 -00026351 67.46066284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334e0 -00026352 67.46066284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334e0 -00026353 67.46068573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334f0 -00026354 67.46068573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x334f0 -00026355 67.46070862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33500 -00026356 67.46071625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33500 -00026357 67.46073914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33510 -00026358 67.46073914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33510 -00026359 67.46076965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33520 -00026360 67.46077728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33520 -00026361 67.46080017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33530 -00026362 67.46080017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33530 -00026363 67.46082306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33540 -00026364 67.46083069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33540 -00026365 67.46086121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33550 -00026366 67.46086121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33550 -00026367 67.46088409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33560 -00026368 67.46089172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33560 -00026369 67.46091461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33570 -00026370 67.46091461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33570 -00026371 67.46093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33580 -00026372 67.46093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33580 -00026373 67.46096802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33590 -00026374 67.46097565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33590 -00026375 67.46099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a0 -00026376 67.46099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335a0 -00026377 67.46102142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b0 -00026378 67.46102905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335b0 -00026379 67.46105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c0 -00026380 67.46105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335c0 -00026381 67.46108246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335d0 -00026382 67.46109009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335d0 -00026383 67.46111298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335e0 -00026384 67.46111298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335e0 -00026385 67.46113586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335f0 -00026386 67.46113586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x335f0 -00026387 67.46117401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33600 -00026388 67.46117401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33600 -00026389 67.46119690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -00026390 67.46119690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -00026391 67.46121979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -00026392 67.46122742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -00026393 67.46125793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -00026394 67.46125793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -00026395 67.46128082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -00026396 67.46128845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -00026397 67.46131134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -00026398 67.46131134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -00026399 67.46133423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -00026400 67.46134186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -00026401 67.46137238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -00026402 67.46137238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -00026403 67.46139526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -00026404 67.46140289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -00026405 67.46142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -00026406 67.46142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -00026407 67.46145630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -00026408 67.46145630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -00026409 67.46148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -00026410 67.46148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -00026411 67.46150970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -00026412 67.46151733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -00026413 67.46154022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -00026414 67.46154022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -00026415 67.46157074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -00026416 67.46157074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -00026417 67.46159363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -00026418 67.46160126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -00026419 67.46162415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -00026420 67.46162415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -00026421 67.46165466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -00026422 67.46165466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -00026423 67.46168518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -00026424 67.46168518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -00026425 67.46170807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -00026426 67.46171570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -00026427 67.46173859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -00026428 67.46173859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -00026429 67.46176910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -00026430 67.46176910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -00026431 67.46179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -00026432 67.46179962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -00026433 67.46182251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -00026434 67.46182251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -00026435 67.46185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -00026436 67.46185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -00026437 67.46188354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -00026438 67.46188354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -00026439 67.46190643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -00026440 67.46191406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -00026441 67.46193695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -00026442 67.46193695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -00026443 67.46196747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -00026444 67.46196747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -00026445 67.46199799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -00026446 67.46199799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -00026447 67.46202087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -00026448 67.46202087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -00026449 67.46205139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -00026450 67.46205139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -00026451 67.46208191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -00026452 67.46208191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -00026453 67.46210480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -00026454 67.46211243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -00026455 67.46213531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -00026456 67.46213531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -00026457 67.46216583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33830 -00026458 67.46216583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33830 -00026459 67.46219635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33840 -00026460 67.46219635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33840 -00026461 67.46221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33850 -00026462 67.46221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33850 -00026463 67.46224976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33860 -00026464 67.46224976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33860 -00026465 67.46228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33870 -00026466 67.46228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33870 -00026467 67.46230316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33880 -00026468 67.46231079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33880 -00026469 67.46233368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33890 -00026470 67.46233368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33890 -00026471 67.46236420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a0 -00026472 67.46236420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a0 -00026473 67.46239471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b0 -00026474 67.46239471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b0 -00026475 67.46241760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c0 -00026476 67.46242523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c0 -00026477 67.46244812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d0 -00026478 67.46244812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d0 -00026479 67.46247864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e0 -00026480 67.46247864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e0 -00026481 67.46250153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f0 -00026482 67.46250916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f0 -00026483 67.46253204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33900 -00026484 67.46253204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33900 -00026485 67.46256256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33910 -00026486 67.46257019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33910 -00026487 67.46259308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33920 -00026488 67.46259308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33920 -00026489 67.46261597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33930 -00026490 67.46262360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33930 -00026491 67.46264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33940 -00026492 67.46264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33940 -00026493 67.46267700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33950 -00026494 67.46268463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33950 -00026495 67.46270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33960 -00026496 67.46270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33960 -00026497 67.46273041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33970 -00026498 67.46273041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33970 -00026499 67.46276093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33980 -00026500 67.46276855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33980 -00026501 67.46279144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33990 -00026502 67.46279144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33990 -00026503 67.46281433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a0 -00026504 67.46282196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a0 -00026505 67.46284485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b0 -00026506 67.46284485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b0 -00026507 67.46287537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c0 -00026508 67.46288300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c0 -00026509 67.46290588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d0 -00026510 67.46290588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d0 -00026511 67.46292877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e0 -00026512 67.46292877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e0 -00026513 67.46296692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f0 -00026514 67.46296692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f0 -00026515 67.46298981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a00 -00026516 67.46298981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a00 -00026517 67.46301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a10 -00026518 67.46302032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a10 -00026519 67.46304321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a20 -00026520 67.46304321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a20 -00026521 67.46307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a30 -00026522 67.46308136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a30 -00026523 67.46310425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a40 -00026524 67.46310425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a40 -00026525 67.46312714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a50 -00026526 67.46313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a50 -00026527 67.46316528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a60 -00026528 67.46316528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a60 -00026529 67.46318817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a70 -00026530 67.46318817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a70 -00026531 67.46321106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a80 -00026532 67.46321869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a80 -00026533 67.46324158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a90 -00026534 67.46324158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a90 -00026535 67.46327209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa0 -00026536 67.46327972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa0 -00026537 67.46330261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab0 -00026538 67.46330261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab0 -00026539 67.46332550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac0 -00026540 67.46333313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac0 -00026541 67.46336365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad0 -00026542 67.46336365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad0 -00026543 67.46338654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae0 -00026544 67.46338654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae0 -00026545 67.46341705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -00026546 67.46341705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -00026547 67.46343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -00026548 67.46343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -00026549 67.46347809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -00026550 67.46347809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -00026551 67.46350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -00026552 67.46350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -00026553 67.46352386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -00026554 67.46353149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -00026555 67.46356201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -00026556 67.46356201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -00026557 67.46358490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -00026558 67.46359253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -00026559 67.46361542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -00026560 67.46361542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -00026561 67.46363831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -00026562 67.46364594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -00026563 67.46367645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -00026564 67.46367645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -00026565 67.46369934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -00026566 67.46369934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -00026567 67.46372223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -00026568 67.46372986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -00026569 67.46376038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -00026570 67.46376038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -00026571 67.46378326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -00026572 67.46379089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -00026573 67.46381378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -00026574 67.46381378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -00026575 67.46383667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -00026576 67.46384430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -00026577 67.46387482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -00026578 67.46387482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -00026579 67.46389771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -00026580 67.46390533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -00026581 67.46392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -00026582 67.46392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -00026583 67.46395874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -00026584 67.46395874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -00026585 67.46398163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -00026586 67.46398926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -00026587 67.46401215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -00026588 67.46401215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -00026589 67.46403503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c50 -00026590 67.46404266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c50 -00026591 67.46407318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c60 -00026592 67.46407318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c60 -00026593 67.46409607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c70 -00026594 67.46410370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c70 -00026595 67.46412659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c80 -00026596 67.46412659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c80 -00026597 67.46415710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c90 -00026598 67.46415710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c90 -00026599 67.46417999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ca0 -00026600 67.46418762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ca0 -00026601 67.46421051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cb0 -00026602 67.46421051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cb0 -00026603 67.46423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -00026604 67.46424103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -00026605 67.46427155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -00026606 67.46427155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -00026607 67.46429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -00026608 67.46430206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -00026609 67.46432495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -00026610 67.46432495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -00026611 67.46435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -00026612 67.46435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -00026613 67.46438599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -00026614 67.46438599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -00026615 67.46440887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -00026616 67.46440887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -00026617 67.46443176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -00026618 67.46443939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -00026619 67.46446991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -00026620 67.46446991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -00026621 67.46449280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -00026622 67.46450043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -00026623 67.46452332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -00026624 67.46452332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -00026625 67.46455383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -00026626 67.46455383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -00026627 67.46458435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -00026628 67.46459198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -00026629 67.46461487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -00026630 67.46461487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -00026631 67.46463776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -00026632 67.46463776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -00026633 67.46466827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -00026634 67.46466827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -00026635 67.46469879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -00026636 67.46469879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -00026637 67.46472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -00026638 67.46472931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -00026639 67.46475220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -00026640 67.46475220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -00026641 67.46478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -00026642 67.46479034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -00026643 67.46481323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -00026644 67.46481323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -00026645 67.46483612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -00026646 67.46483612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -00026647 67.46486664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -00026648 67.46486664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -00026649 67.46489716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -00026650 67.46489716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -00026651 67.46492004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -00026652 67.46492767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -00026653 67.46495056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -00026654 67.46495056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -00026655 67.46498108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -00026656 67.46498871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -00026657 67.46501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -00026658 67.46501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -00026659 67.46503448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -00026660 67.46504211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -00026661 67.46506500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -00026662 67.46506500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -00026663 67.46509552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -00026664 67.46509552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -00026665 67.46511841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -00026666 67.46512604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -00026667 67.46514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -00026668 67.46514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -00026669 67.46517944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -00026670 67.46518707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -00026671 67.46520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -00026672 67.46520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -00026673 67.46523285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -00026674 67.46524048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -00026675 67.46527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -00026676 67.46527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -00026677 67.46529388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -00026678 67.46530151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -00026679 67.46532440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -00026680 67.46532440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -00026681 67.46534729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -00026682 67.46534729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -00026683 67.46537781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -00026684 67.46538544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -00026685 67.46540833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -00026686 67.46540833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -00026687 67.46543121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -00026688 67.46543884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -00026689 67.46546936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -00026690 67.46546936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -00026691 67.46549988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -00026692 67.46549988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -00026693 67.46552277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -00026694 67.46552277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -00026695 67.46554565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -00026696 67.46555328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -00026697 67.46558380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -00026698 67.46558380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -00026699 67.46560669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -00026700 67.46561432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -00026701 67.46563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -00026702 67.46563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -00026703 67.46566772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -00026704 67.46566772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -00026705 67.46569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -00026706 67.46569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -00026707 67.46572113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -00026708 67.46572876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -00026709 67.46575165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -00026710 67.46575165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -00026711 67.46578217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -00026712 67.46578217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -00026713 67.46581268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -00026714 67.46581268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -00026715 67.46583557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -00026716 67.46583557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -00026717 67.46586609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -00026718 67.46586609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -00026719 67.46589661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -00026720 67.46589661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -00026721 67.46591949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -00026722 67.46592712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -00026723 67.46595001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -00026724 67.46595001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -00026725 67.46598053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -00026726 67.46598053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -00026727 67.46601105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -00026728 67.46601105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -00026729 67.46604156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -00026730 67.46604919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -00026731 67.46607208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -00026732 67.46607208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -00026733 67.46610260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -00026734 67.46610260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -00026735 67.46612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -00026736 67.46613312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -00026737 67.46616364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -00026738 67.46616364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -00026739 67.46618652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -00026740 67.46619415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -00026741 67.46621704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -00026742 67.46621704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -00026743 67.46624756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -00026744 67.46625519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -00026745 67.46627808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -00026746 67.46627808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -00026747 67.46630096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -00026748 67.46630096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -00026749 67.46633148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34150 -00026750 67.46633911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34150 -00026751 67.46636200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34160 -00026752 67.46636200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34160 -00026753 67.46638489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -00026754 67.46639252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -00026755 67.46641541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -00026756 67.46641541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -00026757 67.46644592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -00026758 67.46645355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -00026759 67.46647644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -00026760 67.46647644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -00026761 67.46649933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -00026762 67.46650696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -00026763 67.46653748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -00026764 67.46653748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -00026765 67.46656036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -00026766 67.46656036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -00026767 67.46659088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -00026768 67.46659088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -00026769 67.46662140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -00026770 67.46662140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -00026771 67.46664429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -00026772 67.46665192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -00026773 67.46667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -00026774 67.46667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -00026775 67.46669769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -00026776 67.46670532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -00026777 67.46673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -00026778 67.46673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -00026779 67.46675873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -00026780 67.46676636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -00026781 67.46678925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -00026782 67.46678925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -00026783 67.46681976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -00026784 67.46681976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -00026785 67.46685028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -00026786 67.46685028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -00026787 67.46687317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -00026788 67.46688080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -00026789 67.46690369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -00026790 67.46690369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -00026791 67.46693420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -00026792 67.46693420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -00026793 67.46695709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -00026794 67.46696472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -00026795 67.46698761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -00026796 67.46698761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -00026797 67.46701813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d0 -00026798 67.46701813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d0 -00026799 67.46704865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -00026800 67.46704865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -00026801 67.46707153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -00026802 67.46707916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -00026803 67.46710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -00026804 67.46710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -00026805 67.46713257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -00026806 67.46713257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -00026807 67.46716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -00026808 67.46716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -00026809 67.46718597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -00026810 67.46718597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -00026811 67.46721649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -00026812 67.46721649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -00026813 67.46724701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -00026814 67.46724701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -00026815 67.46726990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -00026816 67.46727753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -00026817 67.46730042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -00026818 67.46730042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -00026819 67.46733093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -00026820 67.46733093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -00026821 67.46736145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -00026822 67.46736145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -00026823 67.46738434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -00026824 67.46738434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -00026825 67.46741486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -00026826 67.46741486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -00026827 67.46744537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -00026828 67.46744537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -00026829 67.46746826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -00026830 67.46747589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -00026831 67.46749878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -00026832 67.46749878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -00026833 67.46752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -00026834 67.46752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -00026835 67.46755981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -00026836 67.46755981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -00026837 67.46758270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -00026838 67.46759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -00026839 67.46761322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -00026840 67.46761322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -00026841 67.46764374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34430 -00026842 67.46765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34430 -00026843 67.46767426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34440 -00026844 67.46767426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34440 -00026845 67.46769714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34450 -00026846 67.46769714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34450 -00026847 67.46772766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34460 -00026848 67.46772766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34460 -00026849 67.46775818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34470 -00026850 67.46775818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34470 -00026851 67.46778107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34480 -00026852 67.46778870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34480 -00026853 67.46781158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34490 -00026854 67.46781158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34490 -00026855 67.46784210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a0 -00026856 67.46784973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344a0 -00026857 67.46787262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b0 -00026858 67.46787262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344b0 -00026859 67.46789551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c0 -00026860 67.46790314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344c0 -00026861 67.46792603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d0 -00026862 67.46792603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344d0 -00026863 67.46795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e0 -00026864 67.46795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344e0 -00026865 67.46797943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f0 -00026866 67.46798706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x344f0 -00026867 67.46800995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34500 -00026868 67.46800995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34500 -00026869 67.46804047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34510 -00026870 67.46804810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34510 -00026871 67.46807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34520 -00026872 67.46807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34520 -00026873 67.46809387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34530 -00026874 67.46810150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34530 -00026875 67.46812439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34540 -00026876 67.46812439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34540 -00026877 67.46815491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34550 -00026878 67.46815491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34550 -00026879 67.46817780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34560 -00026880 67.46818542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34560 -00026881 67.46820831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34570 -00026882 67.46820831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34570 -00026883 67.46823883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34580 -00026884 67.46824646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34580 -00026885 67.46826935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34590 -00026886 67.46826935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34590 -00026887 67.46829224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a0 -00026888 67.46829987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a0 -00026889 67.46832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b0 -00026890 67.46832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b0 -00026891 67.46835327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c0 -00026892 67.46836090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c0 -00026893 67.46838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d0 -00026894 67.46838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d0 -00026895 67.46840668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e0 -00026896 67.46840668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e0 -00026897 67.46843719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f0 -00026898 67.46844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f0 -00026899 67.46846771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34600 -00026900 67.46846771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34600 -00026901 67.46849060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34610 -00026902 67.46849823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34610 -00026903 67.46852112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34620 -00026904 67.46852112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34620 -00026905 67.46855164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34630 -00026906 67.46855927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34630 -00026907 67.46858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34640 -00026908 67.46858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34640 -00026909 67.46860504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34650 -00026910 67.46861267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34650 -00026911 67.46864319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34660 -00026912 67.46864319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34660 -00026913 67.46866608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34670 -00026914 67.46867371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34670 -00026915 67.46869659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34680 -00026916 67.46869659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34680 -00026917 67.46871948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34690 -00026918 67.46871948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34690 -00026919 67.46875763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a0 -00026920 67.46875763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a0 -00026921 67.46878052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b0 -00026922 67.46878052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b0 -00026923 67.46880341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c0 -00026924 67.46881104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c0 -00026925 67.46884155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d0 -00026926 67.46884155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d0 -00026927 67.46886444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e0 -00026928 67.46887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e0 -00026929 67.46889496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f0 -00026930 67.46889496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f0 -00026931 67.46892548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34700 -00026932 67.46892548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34700 -00026933 67.46895599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34710 -00026934 67.46895599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34710 -00026935 67.46897888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34720 -00026936 67.46898651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34720 -00026937 67.46900940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34730 -00026938 67.46900940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34730 -00026939 67.46903992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34740 -00026940 67.46903992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34740 -00026941 67.46907043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34750 -00026942 67.46907043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34750 -00026943 67.46909332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34760 -00026944 67.46910095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34760 -00026945 67.46912384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34770 -00026946 67.46912384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34770 -00026947 67.46915436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34780 -00026948 67.46916199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34780 -00026949 67.46918488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34790 -00026950 67.46918488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34790 -00026951 67.46920776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a0 -00026952 67.46920776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a0 -00026953 67.46923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b0 -00026954 67.46923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b0 -00026955 67.46926880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c0 -00026956 67.46926880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c0 -00026957 67.46929169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d0 -00026958 67.46929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d0 -00026959 67.46932220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e0 -00026960 67.46932220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e0 -00026961 67.46935272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f0 -00026962 67.46936035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f0 -00026963 67.46938324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34800 -00026964 67.46938324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34800 -00026965 67.46940613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34810 -00026966 67.46941376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34810 -00026967 67.46943665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34820 -00026968 67.46943665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34820 -00026969 67.46946716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34830 -00026970 67.46947479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34830 -00026971 67.46949768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34840 -00026972 67.46949768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34840 -00026973 67.46952057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34850 -00026974 67.46952820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34850 -00026975 67.46955872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34860 -00026976 67.46955872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34860 -00026977 67.46958160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34870 -00026978 67.46958160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34870 -00026979 67.46960449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34880 -00026980 67.46961212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34880 -00026981 67.46963501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34890 -00026982 67.46963501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34890 -00026983 67.46966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a0 -00026984 67.46967316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a0 -00026985 67.46969604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b0 -00026986 67.46969604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b0 -00026987 67.46971893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c0 -00026988 67.46972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c0 -00026989 67.46975708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d0 -00026990 67.46975708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d0 -00026991 67.46977997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e0 -00026992 67.46978760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e0 -00026993 67.46981049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f0 -00026994 67.46981049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f0 -00026995 67.46983337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34900 -00026996 67.46983337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34900 -00026997 67.46987152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34910 -00026998 67.46987152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34910 -00026999 67.46989441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34920 -00027000 67.46989441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34920 -00027001 67.46991730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34930 -00027002 67.46992493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34930 -00027003 67.46995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34940 -00027004 67.46995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34940 -00027005 67.46997833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34950 -00027006 67.46998596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34950 -00027007 67.47000885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34960 -00027008 67.47000885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34960 -00027009 67.47003174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34970 -00027010 67.47003937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34970 -00027011 67.47006989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34980 -00027012 67.47006989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34980 -00027013 67.47009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34990 -00027014 67.47009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34990 -00027015 67.47011566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349a0 -00027016 67.47012329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349a0 -00027017 67.47015381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349b0 -00027018 67.47015381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349b0 -00027019 67.47017670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349c0 -00027020 67.47018433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349c0 -00027021 67.47020721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349d0 -00027022 67.47020721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349d0 -00027023 67.47023010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349e0 -00027024 67.47023773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349e0 -00027025 67.47026825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349f0 -00027026 67.47026825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x349f0 -00027027 67.47029114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a00 -00027028 67.47029877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a00 -00027029 67.47032166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a10 -00027030 67.47032166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a10 -00027031 67.47035217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a20 -00027032 67.47035217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a20 -00027033 67.47037506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a30 -00027034 67.47038269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a30 -00027035 67.47040558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a40 -00027036 67.47040558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a40 -00027037 67.47042847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a50 -00027038 67.47043610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a50 -00027039 67.47046661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a60 -00027040 67.47046661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a60 -00027041 67.47048950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a70 -00027042 67.47049713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a70 -00027043 67.47052002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a80 -00027044 67.47052002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a80 -00027045 67.47055054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a90 -00027046 67.47055054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a90 -00027047 67.47058105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34aa0 -00027048 67.47058105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34aa0 -00027049 67.47060394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ab0 -00027050 67.47060394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ab0 -00027051 67.47062683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ac0 -00027052 67.47063446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ac0 -00027053 67.47066498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ad0 -00027054 67.47066498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ad0 -00027055 67.47068787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ae0 -00027056 67.47069550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ae0 -00027057 67.47071838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34af0 -00027058 67.47071838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34af0 -00027059 67.47074890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b00 -00027060 67.47074890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b00 -00027061 67.47077942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b10 -00027062 67.47077942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b10 -00027063 67.47080231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b20 -00027064 67.47080994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b20 -00027065 67.47083282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b30 -00027066 67.47083282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b30 -00027067 67.47086334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b40 -00027068 67.47087097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b40 -00027069 67.47089386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b50 -00027070 67.47089386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b50 -00027071 67.47091675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b60 -00027072 67.47091675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b60 -00027073 67.47094727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b70 -00027074 67.47094727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b70 -00027075 67.47097778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b80 -00027076 67.47097778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b80 -00027077 67.47100067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b90 -00027078 67.47100830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b90 -00027079 67.47103119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba0 -00027080 67.47103119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ba0 -00027081 67.47106171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb0 -00027082 67.47106934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bb0 -00027083 67.47109222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc0 -00027084 67.47109222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bc0 -00027085 67.47111511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd0 -00027086 67.47112274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bd0 -00027087 67.47114563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be0 -00027088 67.47114563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34be0 -00027089 67.47117615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf0 -00027090 67.47117615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf0 -00027091 67.47119904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c00 -00027092 67.47120667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c00 -00027093 67.47122955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c10 -00027094 67.47122955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c10 -00027095 67.47126007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c20 -00027096 67.47126770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c20 -00027097 67.47129059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c30 -00027098 67.47129059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c30 -00027099 67.47131348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c40 -00027100 67.47132111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c40 -00027101 67.47134399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c50 -00027102 67.47134399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c50 -00027103 67.47137451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c60 -00027104 67.47138214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c60 -00027105 67.47140503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c70 -00027106 67.47140503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c70 -00027107 67.47142792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c80 -00027108 67.47142792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c80 -00027109 67.47145844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c90 -00027110 67.47146606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c90 -00027111 67.47148895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca0 -00027112 67.47148895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca0 -00027113 67.47151184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb0 -00027114 67.47151947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb0 -00027115 67.47154236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc0 -00027116 67.47154236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc0 -00027117 67.47157288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd0 -00027118 67.47158051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd0 -00027119 67.47160339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce0 -00027120 67.47160339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce0 -00027121 67.47162628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf0 -00027122 67.47163391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf0 -00027123 67.47166443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d00 -00027124 67.47166443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d00 -00027125 67.47168732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d10 -00027126 67.47168732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d10 -00027127 67.47171783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d20 -00027128 67.47171783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d20 -00027129 67.47174072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d30 -00027130 67.47174072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d30 -00027131 67.47177124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d40 -00027132 67.47177887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d40 -00027133 67.47180176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -00027134 67.47180176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -00027135 67.47182465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -00027136 67.47183228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -00027137 67.47186279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -00027138 67.47186279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -00027139 67.47188568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -00027140 67.47189331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -00027141 67.47191620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -00027142 67.47191620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -00027143 67.47193909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -00027144 67.47194672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -00027145 67.47197723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -00027146 67.47197723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -00027147 67.47200012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -00027148 67.47200012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -00027149 67.47202301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -00027150 67.47203064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -00027151 67.47206116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -00027152 67.47206116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -00027153 67.47208405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -00027154 67.47209167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -00027155 67.47211456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -00027156 67.47211456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -00027157 67.47213745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -00027158 67.47214508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -00027159 67.47217560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -00027160 67.47217560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -00027161 67.47219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -00027162 67.47219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -00027163 67.47222137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -00027164 67.47222900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -00027165 67.47225952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -00027166 67.47225952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -00027167 67.47228241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -00027168 67.47229004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -00027169 67.47231293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -00027170 67.47231293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -00027171 67.47233582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -00027172 67.47234344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -00027173 67.47237396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -00027174 67.47237396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -00027175 67.47239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -00027176 67.47240448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -00027177 67.47242737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb0 -00027178 67.47242737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb0 -00027179 67.47245789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec0 -00027180 67.47245789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec0 -00027181 67.47248840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed0 -00027182 67.47248840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed0 -00027183 67.47251129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee0 -00027184 67.47251129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee0 -00027185 67.47253418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef0 -00027186 67.47254181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef0 -00027187 67.47257233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f00 -00027188 67.47257233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f00 -00027189 67.47259521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f10 -00027190 67.47260284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f10 -00027191 67.47262573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f20 -00027192 67.47262573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f20 -00027193 67.47265625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f30 -00027194 67.47265625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f30 -00027195 67.47268677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f40 -00027196 67.47268677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f40 -00027197 67.47270966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f50 -00027198 67.47270966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f50 -00027199 67.47274017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f60 -00027200 67.47274017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f60 -00027201 67.47277069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f70 -00027202 67.47277069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f70 -00027203 67.47279358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f80 -00027204 67.47280121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f80 -00027205 67.47282410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f90 -00027206 67.47282410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f90 -00027207 67.47285461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa0 -00027208 67.47285461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa0 -00027209 67.47288513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb0 -00027210 67.47288513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb0 -00027211 67.47290802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc0 -00027212 67.47291565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc0 -00027213 67.47293854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd0 -00027214 67.47293854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd0 -00027215 67.47296906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe0 -00027216 67.47296906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe0 -00027217 67.47299957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff0 -00027218 67.47299957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff0 -00027219 67.47302246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35000 -00027220 67.47302246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35000 -00027221 67.47305298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35010 -00027222 67.47305298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35010 -00027223 67.47308350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35020 -00027224 67.47308350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35020 -00027225 67.47310638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35030 -00027226 67.47311401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35030 -00027227 67.47313690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35040 -00027228 67.47313690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35040 -00027229 67.47316742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35050 -00027230 67.47316742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35050 -00027231 67.47319794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35060 -00027232 67.47319794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35060 -00027233 67.47322083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35070 -00027234 67.47322845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35070 -00027235 67.47325134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35080 -00027236 67.47325134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35080 -00027237 67.47328186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35090 -00027238 67.47328186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35090 -00027239 67.47331238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a0 -00027240 67.47331238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350a0 -00027241 67.47333527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b0 -00027242 67.47333527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350b0 -00027243 67.47337341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350c0 -00027244 67.47337341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350c0 -00027245 67.47339630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350d0 -00027246 67.47339630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350d0 -00027247 67.47341919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350e0 -00027248 67.47342682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350e0 -00027249 67.47344971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350f0 -00027250 67.47344971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x350f0 -00027251 67.47348022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35100 -00027252 67.47348785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35100 -00027253 67.47351074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35110 -00027254 67.47351074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35110 -00027255 67.47353363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35120 -00027256 67.47354126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35120 -00027257 67.47357178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35130 -00027258 67.47357178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35130 -00027259 67.47359467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35140 -00027260 67.47360229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35140 -00027261 67.47362518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35150 -00027262 67.47362518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35150 -00027263 67.47364807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35160 -00027264 67.47365570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35160 -00027265 67.47368622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -00027266 67.47368622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -00027267 67.47370911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -00027268 67.47371674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -00027269 67.47373962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -00027270 67.47373962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -00027271 67.47377014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -00027272 67.47377014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -00027273 67.47380066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -00027274 67.47380066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -00027275 67.47382355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -00027276 67.47382355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -00027277 67.47384644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -00027278 67.47385406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -00027279 67.47388458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -00027280 67.47388458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -00027281 67.47390747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -00027282 67.47391510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -00027283 67.47393799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -00027284 67.47393799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -00027285 67.47396851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -00027286 67.47396851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -00027287 67.47399902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -00027288 67.47399902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -00027289 67.47402191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -00027290 67.47402191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -00027291 67.47404480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -00027292 67.47405243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -00027293 67.47408295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -00027294 67.47408295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -00027295 67.47410583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -00027296 67.47411346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -00027297 67.47413635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -00027298 67.47413635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -00027299 67.47416687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -00027300 67.47416687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -00027301 67.47419739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -00027302 67.47419739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -00027303 67.47422028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -00027304 67.47422791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -00027305 67.47425079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -00027306 67.47425079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -00027307 67.47428131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -00027308 67.47428131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -00027309 67.47430420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d0 -00027310 67.47431183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d0 -00027311 67.47433472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e0 -00027312 67.47433472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e0 -00027313 67.47436523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f0 -00027314 67.47436523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f0 -00027315 67.47439575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35300 -00027316 67.47439575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35300 -00027317 67.47441864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35310 -00027318 67.47442627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35310 -00027319 67.47444916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35320 -00027320 67.47444916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35320 -00027321 67.47447968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35330 -00027322 67.47447968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35330 -00027323 67.47451019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35340 -00027324 67.47451019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35340 -00027325 67.47453308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35350 -00027326 67.47453308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35350 -00027327 67.47456360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35360 -00027328 67.47456360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35360 -00027329 67.47459412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35370 -00027330 67.47459412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35370 -00027331 67.47461700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35380 -00027332 67.47462463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35380 -00027333 67.47464752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35390 -00027334 67.47464752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35390 -00027335 67.47467804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a0 -00027336 67.47467804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a0 -00027337 67.47470856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b0 -00027338 67.47470856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b0 -00027339 67.47473145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c0 -00027340 67.47473907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c0 -00027341 67.47476196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d0 -00027342 67.47476196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d0 -00027343 67.47479248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e0 -00027344 67.47479248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e0 -00027345 67.47481537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f0 -00027346 67.47482300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f0 -00027347 67.47484589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35400 -00027348 67.47484589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35400 -00027349 67.47487640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35410 -00027350 67.47487640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35410 -00027351 67.47490692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35420 -00027352 67.47490692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35420 -00027353 67.47492981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35430 -00027354 67.47493744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35430 -00027355 67.47496033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35440 -00027356 67.47496033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35440 -00027357 67.47499084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35450 -00027358 67.47499084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35450 -00027359 67.47501373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35460 -00027360 67.47502136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35460 -00027361 67.47504425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35470 -00027362 67.47504425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35470 -00027363 67.47507477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35480 -00027364 67.47507477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35480 -00027365 67.47510529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35490 -00027366 67.47510529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35490 -00027367 67.47512817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a0 -00027368 67.47513580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a0 -00027369 67.47515869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b0 -00027370 67.47515869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b0 -00027371 67.47518921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c0 -00027372 67.47519684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c0 -00027373 67.47521973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d0 -00027374 67.47521973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d0 -00027375 67.47524261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e0 -00027376 67.47524261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e0 -00027377 67.47527313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f0 -00027378 67.47527313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f0 -00027379 67.47530365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35500 -00027380 67.47530365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35500 -00027381 67.47532654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35510 -00027382 67.47533417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35510 -00027383 67.47535706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35520 -00027384 67.47535706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35520 -00027385 67.47538757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35530 -00027386 67.47539520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35530 -00027387 67.47541809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35540 -00027388 67.47541809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35540 -00027389 67.47544098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35550 -00027390 67.47544098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35550 -00027391 67.47547150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35560 -00027392 67.47547150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35560 -00027393 67.47550201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35570 -00027394 67.47550201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35570 -00027395 67.47552490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35580 -00027396 67.47553253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35580 -00027397 67.47555542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35590 -00027398 67.47555542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35590 -00027399 67.47558594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a0 -00027400 67.47559357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a0 -00027401 67.47561646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b0 -00027402 67.47561646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355b0 -00027403 67.47563934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c0 -00027404 67.47564697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355c0 -00027405 67.47566986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d0 -00027406 67.47566986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355d0 -00027407 67.47570038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e0 -00027408 67.47570801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355e0 -00027409 67.47573090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f0 -00027410 67.47573090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x355f0 -00027411 67.47575378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35600 -00027412 67.47575378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35600 -00027413 67.47578430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35610 -00027414 67.47579193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35610 -00027415 67.47581482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35620 -00027416 67.47581482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35620 -00027417 67.47583771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35630 -00027418 67.47584534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35630 -00027419 67.47586823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35640 -00027420 67.47586823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35640 -00027421 67.47589874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35650 -00027422 67.47590637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35650 -00027423 67.47592926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35660 -00027424 67.47592926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35660 -00027425 67.47595215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35670 -00027426 67.47595978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35670 -00027427 67.47599030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35680 -00027428 67.47599030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35680 -00027429 67.47601318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35690 -00027430 67.47601318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35690 -00027431 67.47603607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a0 -00027432 67.47604370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a0 -00027433 67.47606659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b0 -00027434 67.47606659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b0 -00027435 67.47609711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c0 -00027436 67.47610474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c0 -00027437 67.47612762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d0 -00027438 67.47612762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d0 -00027439 67.47615051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e0 -00027440 67.47615814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e0 -00027441 67.47618866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f0 -00027442 67.47618866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f0 -00027443 67.47621155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35700 -00027444 67.47621155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35700 -00027445 67.47623444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35710 -00027446 67.47624207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35710 -00027447 67.47627258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35720 -00027448 67.47627258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35720 -00027449 67.47629547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35730 -00027450 67.47630310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35730 -00027451 67.47632599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35740 -00027452 67.47632599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35740 -00027453 67.47634888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35750 -00027454 67.47635651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35750 -00027455 67.47638702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35760 -00027456 67.47638702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35760 -00027457 67.47640991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35770 -00027458 67.47641754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35770 -00027459 67.47644043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35780 -00027460 67.47644043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35780 -00027461 67.47647095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35790 -00027462 67.47647095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35790 -00027463 67.47650146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a0 -00027464 67.47650146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a0 -00027465 67.47652435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b0 -00027466 67.47652435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b0 -00027467 67.47654724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357c0 -00027468 67.47655487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357c0 -00027469 67.47658539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357d0 -00027470 67.47658539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357d0 -00027471 67.47660828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e0 -00027472 67.47661591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e0 -00027473 67.47663879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f0 -00027474 67.47663879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f0 -00027475 67.47666931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35800 -00027476 67.47666931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35800 -00027477 67.47669983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35810 -00027478 67.47669983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35810 -00027479 67.47672272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35820 -00027480 67.47672272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35820 -00027481 67.47674561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35830 -00027482 67.47675323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35830 -00027483 67.47678375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35840 -00027484 67.47678375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35840 -00027485 67.47680664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35850 -00027486 67.47681427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35850 -00027487 67.47683716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35860 -00027488 67.47683716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35860 -00027489 67.47686768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35870 -00027490 67.47686768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35870 -00027491 67.47689819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35880 -00027492 67.47689819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35880 -00027493 67.47692108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35890 -00027494 67.47692871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35890 -00027495 67.47695160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358a0 -00027496 67.47695160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358a0 -00027497 67.47698212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358b0 -00027498 67.47698212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358b0 -00027499 67.47700500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358c0 -00027500 67.47701263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358c0 -00027501 67.47703552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358d0 -00027502 67.47703552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358d0 -00027503 67.47706604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358e0 -00027504 67.47706604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358e0 -00027505 67.47709656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358f0 -00027506 67.47709656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x358f0 -00027507 67.47711945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35900 -00027508 67.47712708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35900 -00027509 67.47714996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35910 -00027510 67.47714996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35910 -00027511 67.47718048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35920 -00027512 67.47718048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35920 -00027513 67.47721100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35930 -00027514 67.47721100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35930 -00027515 67.47723389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35940 -00027516 67.47723389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35940 -00027517 67.47726440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35950 -00027518 67.47726440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35950 -00027519 67.47729492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35960 -00027520 67.47729492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35960 -00027521 67.47731781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35970 -00027522 67.47732544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35970 -00027523 67.47734833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35980 -00027524 67.47734833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35980 -00027525 67.47737885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35990 -00027526 67.47737885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35990 -00027527 67.47740936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a0 -00027528 67.47740936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a0 -00027529 67.47743225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b0 -00027530 67.47743225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b0 -00027531 67.47746277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c0 -00027532 67.47746277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c0 -00027533 67.47749329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d0 -00027534 67.47749329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d0 -00027535 67.47751617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -00027536 67.47752380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -00027537 67.47754669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -00027538 67.47754669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -00027539 67.47757721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -00027540 67.47757721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -00027541 67.47760773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -00027542 67.47760773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -00027543 67.47763062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -00027544 67.47763824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -00027545 67.47766113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -00027546 67.47766113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -00027547 67.47769165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -00027548 67.47769165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -00027549 67.47772217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -00027550 67.47772217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -00027551 67.47774506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -00027552 67.47774506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -00027553 67.47777557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -00027554 67.47777557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -00027555 67.47780609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -00027556 67.47780609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -00027557 67.47782898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -00027558 67.47783661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -00027559 67.47785950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -00027560 67.47785950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -00027561 67.47789001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -00027562 67.47789764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -00027563 67.47792053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -00027564 67.47792053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -00027565 67.47794342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -00027566 67.47794342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -00027567 67.47797394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -00027568 67.47797394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -00027569 67.47800446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -00027570 67.47800446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -00027571 67.47802734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -00027572 67.47803497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -00027573 67.47805786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -00027574 67.47805786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -00027575 67.47808838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -00027576 67.47809601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -00027577 67.47811890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -00027578 67.47811890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -00027579 67.47814178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b40 -00027580 67.47814941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b40 -00027581 67.47817230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b50 -00027582 67.47817230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b50 -00027583 67.47820282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b60 -00027584 67.47820282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b60 -00027585 67.47822571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b70 -00027586 67.47823334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b70 -00027587 67.47825623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b80 -00027588 67.47825623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b80 -00027589 67.47828674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b90 -00027590 67.47829437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b90 -00027591 67.47831726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ba0 -00027592 67.47831726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ba0 -00027593 67.47834015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bb0 -00027594 67.47834778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bb0 -00027595 67.47837067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bc0 -00027596 67.47837067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bc0 -00027597 67.47840118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd0 -00027598 67.47840881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd0 -00027599 67.47843170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be0 -00027600 67.47843170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be0 -00027601 67.47845459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf0 -00027602 67.47846222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf0 -00027603 67.47849274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c00 -00027604 67.47849274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c00 -00027605 67.47851563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c10 -00027606 67.47852325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c10 -00027607 67.47854614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c20 -00027608 67.47854614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c20 -00027609 67.47856903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c30 -00027610 67.47856903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c30 -00027611 67.47859955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c40 -00027612 67.47860718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c40 -00027613 67.47863007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c50 -00027614 67.47863007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c50 -00027615 67.47865295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c60 -00027616 67.47866058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c60 -00027617 67.47869110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c70 -00027618 67.47869110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c70 -00027619 67.47871399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c80 -00027620 67.47872162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c80 -00027621 67.47874451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c90 -00027622 67.47874451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c90 -00027623 67.47876740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca0 -00027624 67.47876740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca0 -00027625 67.47879791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb0 -00027626 67.47880554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb0 -00027627 67.47882843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc0 -00027628 67.47882843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc0 -00027629 67.47885132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd0 -00027630 67.47885895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd0 -00027631 67.47888947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce0 -00027632 67.47888947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce0 -00027633 67.47891235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf0 -00027634 67.47891998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf0 -00027635 67.47894287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d00 -00027636 67.47894287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d00 -00027637 67.47897339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d10 -00027638 67.47897339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d10 -00027639 67.47900391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d20 -00027640 67.47900391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d20 -00027641 67.47902679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d30 -00027642 67.47902679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d30 -00027643 67.47904968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d40 -00027644 67.47905731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d40 -00027645 67.47908783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d50 -00027646 67.47908783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d50 -00027647 67.47911072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d60 -00027648 67.47911835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d60 -00027649 67.47914124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d70 -00027650 67.47914124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d70 -00027651 67.47917175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d80 -00027652 67.47917175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d80 -00027653 67.47920227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d90 -00027654 67.47920227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d90 -00027655 67.47922516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da0 -00027656 67.47922516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da0 -00027657 67.47925568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db0 -00027658 67.47925568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db0 -00027659 67.47928619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc0 -00027660 67.47928619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc0 -00027661 67.47930908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd0 -00027662 67.47931671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd0 -00027663 67.47933960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de0 -00027664 67.47933960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de0 -00027665 67.47937012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df0 -00027666 67.47937012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df0 -00027667 67.47940063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e00 -00027668 67.47940063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e00 -00027669 67.47942352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e10 -00027670 67.47943115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e10 -00027671 67.47945404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e20 -00027672 67.47946167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e20 -00027673 67.47948456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e30 -00027674 67.47948456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e30 -00027675 67.47951508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e40 -00027676 67.47952271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e40 -00027677 67.47954559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e50 -00027678 67.47954559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e50 -00027679 67.47956848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e60 -00027680 67.47957611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e60 -00027681 67.47960663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e70 -00027682 67.47960663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e70 -00027683 67.47962952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e80 -00027684 67.47962952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e80 -00027685 67.47965240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e90 -00027686 67.47966003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e90 -00027687 67.47968292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea0 -00027688 67.47968292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea0 -00027689 67.47971344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb0 -00027690 67.47972107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb0 -00027691 67.47974396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec0 -00027692 67.47974396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec0 -00027693 67.47976685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed0 -00027694 67.47977448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed0 -00027695 67.47980499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -00027696 67.47980499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -00027697 67.47982788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -00027698 67.47982788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -00027699 67.47985840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -00027700 67.47985840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -00027701 67.47988129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -00027702 67.47988129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -00027703 67.47991180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -00027704 67.47991943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -00027705 67.47995758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -00027706 67.47995758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -00027707 67.47998810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -00027708 67.47998810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -00027709 67.48001099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -00027710 67.48001099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -00027711 67.48004150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -00027712 67.48004150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -00027713 67.48007202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -00027714 67.48007202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -00027715 67.48009491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -00027716 67.48010254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -00027717 67.48012543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -00027718 67.48012543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -00027719 67.48015594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -00027720 67.48016357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -00027721 67.48018646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -00027722 67.48018646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -00027723 67.48020935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -00027724 67.48021698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -00027725 67.48023987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -00027726 67.48023987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -00027727 67.48027039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -00027728 67.48027039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -00027729 67.48029327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -00027730 67.48030090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -00027731 67.48032379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -00027732 67.48032379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -00027733 67.48035431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -00027734 67.48036194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -00027735 67.48038483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -00027736 67.48038483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -00027737 67.48040771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -00027738 67.48041534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -00027739 67.48043823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36040 -00027740 67.48043823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36040 -00027741 67.48046875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36050 -00027742 67.48047638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36050 -00027743 67.48049927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36060 -00027744 67.48049927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36060 -00027745 67.48052216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36070 -00027746 67.48052979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36070 -00027747 67.48056030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36080 -00027748 67.48056030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36080 -00027749 67.48058319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36090 -00027750 67.48059082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36090 -00027751 67.48061371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a0 -00027752 67.48061371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360a0 -00027753 67.48064423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b0 -00027754 67.48064423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360b0 -00027755 67.48068237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c0 -00027756 67.48069000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360c0 -00027757 67.48072052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d0 -00027758 67.48072815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360d0 -00027759 67.48075867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e0 -00027760 67.48076630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360e0 -00027761 67.48080444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f0 -00027762 67.48080444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f0 -00027763 67.48084259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36100 -00027764 67.48084259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36100 -00027765 67.48087311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36110 -00027766 67.48087311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36110 -00027767 67.48090363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36120 -00027768 67.48091125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36120 -00027769 67.48093414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36130 -00027770 67.48093414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36130 -00027771 67.48095703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36140 -00027772 67.48096466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36140 -00027773 67.48099518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36150 -00027774 67.48099518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36150 -00027775 67.48101807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36160 -00027776 67.48102570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36160 -00027777 67.48104858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36170 -00027778 67.48104858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36170 -00027779 67.48107147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36180 -00027780 67.48107910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36180 -00027781 67.48110962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36190 -00027782 67.48110962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36190 -00027783 67.48113251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a0 -00027784 67.48114014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a0 -00027785 67.48116302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b0 -00027786 67.48116302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b0 -00027787 67.48119354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c0 -00027788 67.48119354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c0 -00027789 67.48122406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d0 -00027790 67.48122406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d0 -00027791 67.48124695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e0 -00027792 67.48124695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e0 -00027793 67.48126984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f0 -00027794 67.48127747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f0 -00027795 67.48130798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36200 -00027796 67.48130798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36200 -00027797 67.48133087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36210 -00027798 67.48133850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36210 -00027799 67.48136139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36220 -00027800 67.48136139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36220 -00027801 67.48139191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36230 -00027802 67.48139191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36230 -00027803 67.48142242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36240 -00027804 67.48142242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36240 -00027805 67.48145294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36250 -00027806 67.48145294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36250 -00027807 67.48147583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36260 -00027808 67.48147583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36260 -00027809 67.48150635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36270 -00027810 67.48151398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36270 -00027811 67.48153687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36280 -00027812 67.48153687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36280 -00027813 67.48155975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36290 -00027814 67.48156738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36290 -00027815 67.48159027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a0 -00027816 67.48159027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a0 -00027817 67.48162079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b0 -00027818 67.48162842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b0 -00027819 67.48165131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362c0 -00027820 67.48165131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362c0 -00027821 67.48167419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362d0 -00027822 67.48168182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362d0 -00027823 67.48171234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362e0 -00027824 67.48171234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362e0 -00027825 67.48173523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f0 -00027826 67.48173523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f0 -00027827 67.48176575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36300 -00027828 67.48176575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36300 -00027829 67.48178864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36310 -00027830 67.48178864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36310 -00027831 67.48181915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36320 -00027832 67.48182678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36320 -00027833 67.48184967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36330 -00027834 67.48184967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36330 -00027835 67.48187256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36340 -00027836 67.48188019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36340 -00027837 67.48191071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36350 -00027838 67.48191071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36350 -00027839 67.48193359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36360 -00027840 67.48194122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36360 -00027841 67.48196411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36370 -00027842 67.48196411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36370 -00027843 67.48198700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36380 -00027844 67.48198700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36380 -00027845 67.48202515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36390 -00027846 67.48202515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36390 -00027847 67.48204803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a0 -00027848 67.48204803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a0 -00027849 67.48207092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b0 -00027850 67.48207855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b0 -00027851 67.48210907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c0 -00027852 67.48210907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c0 -00027853 67.48213196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d0 -00027854 67.48213959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d0 -00027855 67.48216248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e0 -00027856 67.48216248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e0 -00027857 67.48218536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f0 -00027858 67.48219299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f0 -00027859 67.48222351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36400 -00027860 67.48222351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36400 -00027861 67.48224640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36410 -00027862 67.48225403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36410 -00027863 67.48227692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36420 -00027864 67.48227692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36420 -00027865 67.48230743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36430 -00027866 67.48230743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36430 -00027867 67.48233795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36440 -00027868 67.48233795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36440 -00027869 67.48236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36450 -00027870 67.48236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36450 -00027871 67.48238373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36460 -00027872 67.48239136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36460 -00027873 67.48242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36470 -00027874 67.48242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36470 -00027875 67.48244476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36480 -00027876 67.48245239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36480 -00027877 67.48247528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36490 -00027878 67.48247528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36490 -00027879 67.48250580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a0 -00027880 67.48250580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364a0 -00027881 67.48253632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b0 -00027882 67.48253632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364b0 -00027883 67.48255920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c0 -00027884 67.48256683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364c0 -00027885 67.48258972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d0 -00027886 67.48258972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364d0 -00027887 67.48262024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e0 -00027888 67.48262024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364e0 -00027889 67.48265076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f0 -00027890 67.48265076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x364f0 -00027891 67.48267365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36500 -00027892 67.48267365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36500 -00027893 67.48270416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36510 -00027894 67.48270416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36510 -00027895 67.48273468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36520 -00027896 67.48273468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36520 -00027897 67.48275757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36530 -00027898 67.48276520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36530 -00027899 67.48278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36540 -00027900 67.48278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36540 -00027901 67.48281860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36550 -00027902 67.48281860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36550 -00027903 67.48284912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36560 -00027904 67.48284912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36560 -00027905 67.48287201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36570 -00027906 67.48287964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36570 -00027907 67.48290253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36580 -00027908 67.48290253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36580 -00027909 67.48293304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36590 -00027910 67.48294067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36590 -00027911 67.48296356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365a0 -00027912 67.48296356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365a0 -00027913 67.48298645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365b0 -00027914 67.48298645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365b0 -00027915 67.48301697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c0 -00027916 67.48302460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c0 -00027917 67.48304749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d0 -00027918 67.48304749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d0 -00027919 67.48307037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e0 -00027920 67.48307800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e0 -00027921 67.48310089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f0 -00027922 67.48310089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f0 -00027923 67.48313141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36600 -00027924 67.48313904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36600 -00027925 67.48316193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36610 -00027926 67.48316193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36610 -00027927 67.48318481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36620 -00027928 67.48318481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36620 -00027929 67.48321533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36630 -00027930 67.48322296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36630 -00027931 67.48324585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36640 -00027932 67.48324585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36640 -00027933 67.48326874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36650 -00027934 67.48327637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36650 -00027935 67.48329926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36660 -00027936 67.48329926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36660 -00027937 67.48332977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36670 -00027938 67.48333740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36670 -00027939 67.48336029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36680 -00027940 67.48336029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36680 -00027941 67.48338318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36690 -00027942 67.48339081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36690 -00027943 67.48342133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a0 -00027944 67.48342133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a0 -00027945 67.48344421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b0 -00027946 67.48345184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b0 -00027947 67.48347473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c0 -00027948 67.48347473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c0 -00027949 67.48349762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d0 -00027950 67.48350525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d0 -00027951 67.48353577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e0 -00027952 67.48353577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e0 -00027953 67.48355865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f0 -00027954 67.48355865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f0 -00027955 67.48358154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36700 -00027956 67.48358917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36700 -00027957 67.48361969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36710 -00027958 67.48361969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36710 -00027959 67.48364258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36720 -00027960 67.48365021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36720 -00027961 67.48367310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36730 -00027962 67.48367310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36730 -00027963 67.48369598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36740 -00027964 67.48370361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36740 -00027965 67.48373413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36750 -00027966 67.48373413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36750 -00027967 67.48375702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36760 -00027968 67.48376465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36760 -00027969 67.48378754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36770 -00027970 67.48378754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36770 -00027971 67.48381805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36780 -00027972 67.48381805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36780 -00027973 67.48384094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36790 -00027974 67.48384857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36790 -00027975 67.48387146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a0 -00027976 67.48387146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a0 -00027977 67.48389435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b0 -00027978 67.48390198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b0 -00027979 67.48393250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c0 -00027980 67.48393250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c0 -00027981 67.48395538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d0 -00027982 67.48396301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d0 -00027983 67.48398590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e0 -00027984 67.48398590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e0 -00027985 67.48401642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f0 -00027986 67.48401642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f0 -00027987 67.48404694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36800 -00027988 67.48404694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36800 -00027989 67.48406982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36810 -00027990 67.48407745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36810 -00027991 67.48410034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36820 -00027992 67.48410034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36820 -00027993 67.48413086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36830 -00027994 67.48413086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36830 -00027995 67.48415375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36840 -00027996 67.48416138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36840 -00027997 67.48418427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36850 -00027998 67.48418427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36850 -00027999 67.48421478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36860 -00028000 67.48421478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36860 -00028001 67.48424530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36870 -00028002 67.48424530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36870 -00028003 67.48426819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36880 -00028004 67.48427582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36880 -00028005 67.48429871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36890 -00028006 67.48429871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36890 -00028007 67.48432922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a0 -00028008 67.48432922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a0 -00028009 67.48435974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b0 -00028010 67.48435974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b0 -00028011 67.48438263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c0 -00028012 67.48438263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c0 -00028013 67.48441315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d0 -00028014 67.48441315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d0 -00028015 67.48444366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e0 -00028016 67.48444366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e0 -00028017 67.48446655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f0 -00028018 67.48447418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f0 -00028019 67.48449707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36900 -00028020 67.48449707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36900 -00028021 67.48452759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36910 -00028022 67.48452759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36910 -00028023 67.48455811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36920 -00028024 67.48455811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36920 -00028025 67.48458099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36930 -00028026 67.48458862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36930 -00028027 67.48461151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36940 -00028028 67.48461151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36940 -00028029 67.48464203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36950 -00028030 67.48464966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36950 -00028031 67.48467255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36960 -00028032 67.48467255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36960 -00028033 67.48469543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36970 -00028034 67.48470306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36970 -00028035 67.48472595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36980 -00028036 67.48472595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36980 -00028037 67.48475647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36990 -00028038 67.48476410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36990 -00028039 67.48478699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369a0 -00028040 67.48478699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369a0 -00028041 67.48480988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369b0 -00028042 67.48480988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369b0 -00028043 67.48484039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369c0 -00028044 67.48484802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369c0 -00028045 67.48487091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369d0 -00028046 67.48487091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369d0 -00028047 67.48489380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369e0 -00028048 67.48490143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369e0 -00028049 67.48492432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f0 -00028050 67.48492432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f0 -00028051 67.48495483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a00 -00028052 67.48496246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a00 -00028053 67.48498535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a10 -00028054 67.48498535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a10 -00028055 67.48500824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a20 -00028056 67.48500824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a20 -00028057 67.48503876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a30 -00028058 67.48504639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a30 -00028059 67.48506927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a40 -00028060 67.48506927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a40 -00028061 67.48509216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a50 -00028062 67.48509979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a50 -00028063 67.48512268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a60 -00028064 67.48512268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a60 -00028065 67.48515320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a70 -00028066 67.48516083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a70 -00028067 67.48518372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a80 -00028068 67.48518372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a80 -00028069 67.48520660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a90 -00028070 67.48521423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a90 -00028071 67.48524475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa0 -00028072 67.48524475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa0 -00028073 67.48526764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab0 -00028074 67.48527527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab0 -00028075 67.48529816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac0 -00028076 67.48529816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac0 -00028077 67.48532104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad0 -00028078 67.48532867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad0 -00028079 67.48535919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae0 -00028080 67.48535919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae0 -00028081 67.48538208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af0 -00028082 67.48538208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af0 -00028083 67.48540497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b00 -00028084 67.48541260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b00 -00028085 67.48544312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b10 -00028086 67.48544312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b10 -00028087 67.48546600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b20 -00028088 67.48547363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b20 -00028089 67.48549652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b30 -00028090 67.48549652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b30 -00028091 67.48551941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b40 -00028092 67.48552704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b40 -00028093 67.48555756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b50 -00028094 67.48555756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b50 -00028095 67.48558044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b60 -00028096 67.48558807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b60 -00028097 67.48561096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b70 -00028098 67.48561096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b70 -00028099 67.48564148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b80 -00028100 67.48564148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b80 -00028101 67.48567200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b90 -00028102 67.48567200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b90 -00028103 67.48569489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba0 -00028104 67.48569489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba0 -00028105 67.48572540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb0 -00028106 67.48572540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb0 -00028107 67.48575592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc0 -00028108 67.48575592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc0 -00028109 67.48577881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd0 -00028110 67.48578644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd0 -00028111 67.48580933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be0 -00028112 67.48580933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be0 -00028113 67.48583984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf0 -00028114 67.48583984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf0 -00028115 67.48587036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c00 -00028116 67.48587036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c00 -00028117 67.48589325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c10 -00028118 67.48590088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c10 -00028119 67.48592377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c20 -00028120 67.48592377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c20 -00028121 67.48595428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c30 -00028122 67.48595428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c30 -00028123 67.48597717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c40 -00028124 67.48598480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c40 -00028125 67.48600769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c50 -00028126 67.48600769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c50 -00028127 67.48603821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c60 -00028128 67.48603821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c60 -00028129 67.48606873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c70 -00028130 67.48606873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c70 -00028131 67.48609161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c80 -00028132 67.48609924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c80 -00028133 67.48612213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c90 -00028134 67.48612213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c90 -00028135 67.48615265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca0 -00028136 67.48616028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca0 -00028137 67.48618317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb0 -00028138 67.48618317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb0 -00028139 67.48620605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc0 -00028140 67.48620605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc0 -00028141 67.48623657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd0 -00028142 67.48623657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd0 -00028143 67.48626709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce0 -00028144 67.48626709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce0 -00028145 67.48628998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf0 -00028146 67.48629761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf0 -00028147 67.48632050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d00 -00028148 67.48632050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d00 -00028149 67.48635101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d10 -00028150 67.48635864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d10 -00028151 67.48638153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d20 -00028152 67.48638153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d20 -00028153 67.48640442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d30 -00028154 67.48640442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d30 -00028155 67.48643494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d40 -00028156 67.48643494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d40 -00028157 67.48646545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d50 -00028158 67.48646545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d50 -00028159 67.48649597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d60 -00028160 67.48649597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d60 -00028161 67.48651886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d70 -00028162 67.48651886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d70 -00028163 67.48654938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d80 -00028164 67.48655701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d80 -00028165 67.48657990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d90 -00028166 67.48657990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d90 -00028167 67.48660278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da0 -00028168 67.48661041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36da0 -00028169 67.48663330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db0 -00028170 67.48663330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36db0 -00028171 67.48666382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc0 -00028172 67.48667145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dc0 -00028173 67.48669434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd0 -00028174 67.48669434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36dd0 -00028175 67.48671722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de0 -00028176 67.48672485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36de0 -00028177 67.48675537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df0 -00028178 67.48675537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36df0 -00028179 67.48677826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e00 -00028180 67.48677826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e00 -00028181 67.48680115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e10 -00028182 67.48680878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e10 -00028183 67.48683167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e20 -00028184 67.48683167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e20 -00028185 67.48686218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e30 -00028186 67.48686981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e30 -00028187 67.48689270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e40 -00028188 67.48689270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e40 -00028189 67.48691559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e50 -00028190 67.48692322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e50 -00028191 67.48695374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e60 -00028192 67.48695374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e60 -00028193 67.48697662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e70 -00028194 67.48698425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e70 -00028195 67.48700714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e80 -00028196 67.48700714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e80 -00028197 67.48703003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e90 -00028198 67.48703766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e90 -00028199 67.48706818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ea0 -00028200 67.48706818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ea0 -00028201 67.48709106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36eb0 -00028202 67.48709869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36eb0 -00028203 67.48712158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ec0 -00028204 67.48712158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ec0 -00028205 67.48715210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ed0 -00028206 67.48715210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ed0 -00028207 67.48717499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ee0 -00028208 67.48718262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ee0 -00028209 67.48720551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ef0 -00028210 67.48720551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ef0 -00028211 67.48722839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f00 -00028212 67.48723602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f00 -00028213 67.48726654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f10 -00028214 67.48726654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f10 -00028215 67.48728943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f20 -00028216 67.48729706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f20 -00028217 67.48731995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f30 -00028218 67.48731995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f30 -00028219 67.48735046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f40 -00028220 67.48735046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f40 -00028221 67.48738098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f50 -00028222 67.48738098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f50 -00028223 67.48740387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f60 -00028224 67.48740387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f60 -00028225 67.48743439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f70 -00028226 67.48743439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f70 -00028227 67.48746490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f80 -00028228 67.48746490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f80 -00028229 67.48749542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f90 -00028230 67.48749542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f90 -00028231 67.48751831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa0 -00028232 67.48751831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fa0 -00028233 67.48754883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb0 -00028234 67.48754883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fb0 -00028235 67.48757935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc0 -00028236 67.48757935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc0 -00028237 67.48760223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd0 -00028238 67.48760986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd0 -00028239 67.48763275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe0 -00028240 67.48763275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe0 -00028241 67.48766327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff0 -00028242 67.48767090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff0 -00028243 67.48769379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37000 -00028244 67.48769379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37000 -00028245 67.48771667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37010 -00028246 67.48772430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37010 -00028247 67.48774719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37020 -00028248 67.48774719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37020 -00028249 67.48777771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37030 -00028250 67.48778534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37030 -00028251 67.48780823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37040 -00028252 67.48780823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37040 -00028253 67.48783112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37050 -00028254 67.48783112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37050 -00028255 67.48786163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37060 -00028256 67.48786926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37060 -00028257 67.48789215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37070 -00028258 67.48789215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37070 -00028259 67.48791504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37080 -00028260 67.48792267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37080 -00028261 67.48794556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37090 -00028262 67.48794556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37090 -00028263 67.48797607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a0 -00028264 67.48798370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a0 -00028265 67.48800659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b0 -00028266 67.48800659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b0 -00028267 67.48802948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c0 -00028268 67.48803711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c0 -00028269 67.48806763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d0 -00028270 67.48806763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d0 -00028271 67.48809052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e0 -00028272 67.48809052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e0 -00028273 67.48811340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f0 -00028274 67.48812103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f0 -00028275 67.48814392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37100 -00028276 67.48814392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37100 -00028277 67.48817444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37110 -00028278 67.48818207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37110 -00028279 67.48820496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37120 -00028280 67.48820496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37120 -00028281 67.48822784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37130 -00028282 67.48823547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37130 -00028283 67.48826599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37140 -00028284 67.48826599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37140 -00028285 67.48828888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37150 -00028286 67.48829651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37150 -00028287 67.48831940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37160 -00028288 67.48831940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37160 -00028289 67.48834229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37170 -00028290 67.48834229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37170 -00028291 67.48837280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37180 -00028292 67.48838043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37180 -00028293 67.48840332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37190 -00028294 67.48840332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37190 -00028295 67.48842621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a0 -00028296 67.48843384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a0 -00028297 67.48846436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b0 -00028298 67.48846436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b0 -00028299 67.48848724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c0 -00028300 67.48849487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c0 -00028301 67.48851776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d0 -00028302 67.48851776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d0 -00028303 67.48854065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e0 -00028304 67.48854828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e0 -00028305 67.48857880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f0 -00028306 67.48857880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f0 -00028307 67.48860168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37200 -00028308 67.48860931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37200 -00028309 67.48863220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37210 -00028310 67.48863220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37210 -00028311 67.48866272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37220 -00028312 67.48866272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37220 -00028313 67.48869324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37230 -00028314 67.48869324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37230 -00028315 67.48871613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37240 -00028316 67.48872375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37240 -00028317 67.48874664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37250 -00028318 67.48874664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37250 -00028319 67.48877716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37260 -00028320 67.48877716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37260 -00028321 67.48880768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37270 -00028322 67.48880768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37270 -00028323 67.48883057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37280 -00028324 67.48883820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37280 -00028325 67.48886108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37290 -00028326 67.48886108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37290 -00028327 67.48889160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a0 -00028328 67.48889923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a0 -00028329 67.48892212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b0 -00028330 67.48892212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b0 -00028331 67.48894501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c0 -00028332 67.48895264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c0 -00028333 67.48897552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00028334 67.48897552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00028335 67.48900604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00028336 67.48900604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00028337 67.48903656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00028338 67.48903656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00028339 67.48905945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00028340 67.48905945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00028341 67.48908997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00028342 67.48909760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00028343 67.48912048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00028344 67.48912048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00028345 67.48914337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00028346 67.48915100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00028347 67.48917389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00028348 67.48917389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00028349 67.48920441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00028350 67.48921204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00028351 67.48923492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00028352 67.48923492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00028353 67.48925781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00028354 67.48925781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00028355 67.48928833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37380 -00028356 67.48929596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37380 -00028357 67.48931885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37390 -00028358 67.48931885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37390 -00028359 67.48934174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a0 -00028360 67.48934937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a0 -00028361 67.48937225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b0 -00028362 67.48937225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b0 -00028363 67.48940277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c0 -00028364 67.48941040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c0 -00028365 67.48943329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d0 -00028366 67.48943329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d0 -00028367 67.48945618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e0 -00028368 67.48946381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e0 -00028369 67.48949432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f0 -00028370 67.48949432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f0 -00028371 67.48951721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37400 -00028372 67.48952484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37400 -00028373 67.48954773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37410 -00028374 67.48954773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37410 -00028375 67.48957062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37420 -00028376 67.48957825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37420 -00028377 67.48960876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37430 -00028378 67.48960876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37430 -00028379 67.48963165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37440 -00028380 67.48963165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37440 -00028381 67.48965454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37450 -00028382 67.48966217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37450 -00028383 67.48969269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37460 -00028384 67.48969269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37460 -00028385 67.48971558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37470 -00028386 67.48972321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37470 -00028387 67.48974609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37480 -00028388 67.48974609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37480 -00028389 67.48977661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37490 -00028390 67.48977661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37490 -00028391 67.48980713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a0 -00028392 67.48980713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a0 -00028393 67.48983002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b0 -00028394 67.48983765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b0 -00028395 67.48986053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c0 -00028396 67.48986053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c0 -00028397 67.48989105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d0 -00028398 67.48989105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d0 -00028399 67.48992157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e0 -00028400 67.48992157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e0 -00028401 67.48994446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f0 -00028402 67.48994446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f0 -00028403 67.48997498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37500 -00028404 67.48997498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37500 -00028405 67.49000549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37510 -00028406 67.49000549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37510 -00028407 67.49002838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37520 -00028408 67.49003601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37520 -00028409 67.49005890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37530 -00028410 67.49005890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37530 -00028411 67.49008942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37540 -00028412 67.49008942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37540 -00028413 67.49011993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37550 -00028414 67.49011993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37550 -00028415 67.49014282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37560 -00028416 67.49014282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37560 -00028417 67.49017334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37570 -00028418 67.49017334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37570 -00028419 67.49020386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37580 -00028420 67.49020386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37580 -00028421 67.49022675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37590 -00028422 67.49023438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37590 -00028423 67.49025726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a0 -00028424 67.49025726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a0 -00028425 67.49028778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b0 -00028426 67.49028778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b0 -00028427 67.49031830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c0 -00028428 67.49031830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c0 -00028429 67.49034119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d0 -00028430 67.49034882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d0 -00028431 67.49037170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e0 -00028432 67.49037170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e0 -00028433 67.49040222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f0 -00028434 67.49040985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f0 -00028435 67.49043274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37600 -00028436 67.49043274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37600 -00028437 67.49045563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37610 -00028438 67.49045563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37610 -00028439 67.49048615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37620 -00028440 67.49048615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37620 -00028441 67.49053955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37630 -00028442 67.49054718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37630 -00028443 67.49057007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37640 -00028444 67.49057007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37640 -00028445 67.49060059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37650 -00028446 67.49060059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37650 -00028447 67.49062347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37660 -00028448 67.49063110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37660 -00028449 67.49065399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37670 -00028450 67.49065399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37670 -00028451 67.49068451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37680 -00028452 67.49068451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37680 -00028453 67.49071503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37690 -00028454 67.49071503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37690 -00028455 67.49073792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a0 -00028456 67.49074554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a0 -00028457 67.49076843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00028458 67.49076843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00028459 67.49079895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00028460 67.49080658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00028461 67.49082947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00028462 67.49082947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00028463 67.49085236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00028464 67.49085236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00028465 67.49088287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00028466 67.49088287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00028467 67.49091339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00028468 67.49091339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00028469 67.49093628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00028470 67.49094391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00028471 67.49096680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00028472 67.49096680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00028473 67.49099731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00028474 67.49100494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00028475 67.49102783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00028476 67.49102783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00028477 67.49105072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37750 -00028478 67.49105835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37750 -00028479 67.49108124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37760 -00028480 67.49108124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37760 -00028481 67.49111176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37770 -00028482 67.49111176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37770 -00028483 67.49113464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37780 -00028484 67.49114227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37780 -00028485 67.49116516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37790 -00028486 67.49116516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37790 -00028487 67.49119568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a0 -00028488 67.49120331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a0 -00028489 67.49122620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b0 -00028490 67.49122620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b0 -00028491 67.49124908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c0 -00028492 67.49125671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c0 -00028493 67.49127960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d0 -00028494 67.49127960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d0 -00028495 67.49131012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e0 -00028496 67.49131775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e0 -00028497 67.49134064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f0 -00028498 67.49134064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f0 -00028499 67.49136353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37800 -00028500 67.49137115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37800 -00028501 67.49140167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37810 -00028502 67.49140167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37810 -00028503 67.49142456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37820 -00028504 67.49143219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37820 -00028505 67.49145508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37830 -00028506 67.49145508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37830 -00028507 67.49147797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37840 -00028508 67.49147797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37840 -00028509 67.49150848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37850 -00028510 67.49151611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37850 -00028511 67.49153900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37860 -00028512 67.49153900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37860 -00028513 67.49156189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37870 -00028514 67.49156952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37870 -00028515 67.49160004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37880 -00028516 67.49160004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37880 -00028517 67.49162292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37890 -00028518 67.49163055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37890 -00028519 67.49165344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a0 -00028520 67.49165344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a0 -00028521 67.49167633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b0 -00028522 67.49168396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b0 -00028523 67.49171448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c0 -00028524 67.49171448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c0 -00028525 67.49173737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d0 -00028526 67.49173737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d0 -00028527 67.49176025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e0 -00028528 67.49176788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e0 -00028529 67.49179840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f0 -00028530 67.49179840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f0 -00028531 67.49182129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37900 -00028532 67.49182892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37900 -00028533 67.49185181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37910 -00028534 67.49185181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37910 -00028535 67.49187469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -00028536 67.49188232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -00028537 67.49191284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -00028538 67.49191284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -00028539 67.49193573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -00028540 67.49194336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -00028541 67.49196625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -00028542 67.49196625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -00028543 67.49199677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -00028544 67.49199677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -00028545 67.49201965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -00028546 67.49202728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -00028547 67.49205017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -00028548 67.49205017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -00028549 67.49207306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -00028550 67.49208069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -00028551 67.49211121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -00028552 67.49211121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -00028553 67.49213409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -00028554 67.49214172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -00028555 67.49216461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -00028556 67.49216461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -00028557 67.49219513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -00028558 67.49219513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -00028559 67.49222565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -00028560 67.49222565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -00028561 67.49224854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -00028562 67.49224854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -00028563 67.49227142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -00028564 67.49227905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -00028565 67.49230957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -00028566 67.49230957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -00028567 67.49233246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -00028568 67.49234009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -00028569 67.49236298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -00028570 67.49236298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -00028571 67.49239349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -00028572 67.49239349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -00028573 67.49242401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -00028574 67.49242401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -00028575 67.49244690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -00028576 67.49245453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -00028577 67.49247742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -00028578 67.49247742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -00028579 67.49250793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -00028580 67.49251556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -00028581 67.49253845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -00028582 67.49253845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -00028583 67.49256134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -00028584 67.49256897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -00028585 67.49259186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -00028586 67.49259186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -00028587 67.49262238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -00028588 67.49262238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -00028589 67.49264526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -00028590 67.49265289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -00028591 67.49267578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -00028592 67.49267578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -00028593 67.49270630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -00028594 67.49271393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -00028595 67.49273682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -00028596 67.49273682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -00028597 67.49275970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b10 -00028598 67.49276733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b10 -00028599 67.49279022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b20 -00028600 67.49279022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b20 -00028601 67.49282074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b30 -00028602 67.49282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b30 -00028603 67.49285126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b40 -00028604 67.49285126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b40 -00028605 67.49287415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b50 -00028606 67.49287415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b50 -00028607 67.49290466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b60 -00028608 67.49291229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b60 -00028609 67.49293518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b70 -00028610 67.49293518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b70 -00028611 67.49295807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b80 -00028612 67.49296570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b80 -00028613 67.49298859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -00028614 67.49298859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -00028615 67.49301910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -00028616 67.49302673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -00028617 67.49304962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -00028618 67.49304962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -00028619 67.49307251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -00028620 67.49308014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -00028621 67.49311066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -00028622 67.49311066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -00028623 67.49313354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -00028624 67.49313354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -00028625 67.49315643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -00028626 67.49316406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -00028627 67.49318695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -00028628 67.49318695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -00028629 67.49321747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -00028630 67.49322510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -00028631 67.49324799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -00028632 67.49324799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -00028633 67.49327087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -00028634 67.49327850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -00028635 67.49330902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -00028636 67.49330902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -00028637 67.49333191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -00028638 67.49333191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -00028639 67.49336243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -00028640 67.49336243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -00028641 67.49338531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -00028642 67.49338531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -00028643 67.49341583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -00028644 67.49342346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -00028645 67.49344635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -00028646 67.49344635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -00028647 67.49346924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -00028648 67.49347687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -00028649 67.49350739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -00028650 67.49350739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -00028651 67.49353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -00028652 67.49353790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -00028653 67.49356079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -00028654 67.49356079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -00028655 67.49358368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -00028656 67.49359131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -00028657 67.49362183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -00028658 67.49362183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -00028659 67.49364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -00028660 67.49364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -00028661 67.49366760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -00028662 67.49367523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -00028663 67.49370575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -00028664 67.49370575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -00028665 67.49372864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -00028666 67.49373627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -00028667 67.49375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -00028668 67.49375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -00028669 67.49378204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d50 -00028670 67.49378967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d50 -00028671 67.49382019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d60 -00028672 67.49382019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d60 -00028673 67.49384308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d70 -00028674 67.49385071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d70 -00028675 67.49387360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d80 -00028676 67.49387360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d80 -00028677 67.49390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d90 -00028678 67.49390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d90 -00028679 67.49393463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da0 -00028680 67.49393463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da0 -00028681 67.49395752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db0 -00028682 67.49395752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db0 -00028683 67.49398041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dc0 -00028684 67.49398804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dc0 -00028685 67.49401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dd0 -00028686 67.49401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37dd0 -00028687 67.49404144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37de0 -00028688 67.49404907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37de0 -00028689 67.49407196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37df0 -00028690 67.49407196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37df0 -00028691 67.49410248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e00 -00028692 67.49410248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e00 -00028693 67.49413300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e10 -00028694 67.49413300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e10 -00028695 67.49415588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e20 -00028696 67.49416351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e20 -00028697 67.49418640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e30 -00028698 67.49418640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e30 -00028699 67.49421692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e40 -00028700 67.49422455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e40 -00028701 67.49424744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e50 -00028702 67.49424744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e50 -00028703 67.49427032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e60 -00028704 67.49427795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e60 -00028705 67.49430084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e70 -00028706 67.49430084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e70 -00028707 67.49433136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e80 -00028708 67.49433899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e80 -00028709 67.49436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e90 -00028710 67.49436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e90 -00028711 67.49438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ea0 -00028712 67.49439240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ea0 -00028713 67.49442291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37eb0 -00028714 67.49442291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37eb0 -00028715 67.49444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ec0 -00028716 67.49445343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ec0 -00028717 67.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed0 -00028718 67.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed0 -00028719 67.49449921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee0 -00028720 67.49450684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee0 -00028721 67.49453735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef0 -00028722 67.49453735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef0 -00028723 67.49456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f00 -00028724 67.49456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f00 -00028725 67.49459076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f10 -00028726 67.49459839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f10 -00028727 67.49462128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f20 -00028728 67.49462128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f20 -00028729 67.49465179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f30 -00028730 67.49465942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f30 -00028731 67.49468231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f40 -00028732 67.49468231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f40 -00028733 67.49470520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f50 -00028734 67.49470520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f50 -00028735 67.49473572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f60 -00028736 67.49473572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f60 -00028737 67.49476624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f70 -00028738 67.49476624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f70 -00028739 67.49478912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f80 -00028740 67.49479675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f80 -00028741 67.49481964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f90 -00028742 67.49481964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f90 -00028743 67.49485016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa0 -00028744 67.49485779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa0 -00028745 67.49488068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb0 -00028746 67.49488068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb0 -00028747 67.49490356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc0 -00028748 67.49491119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fc0 -00028749 67.49493408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd0 -00028750 67.49493408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fd0 -00028751 67.49496460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe0 -00028752 67.49497223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fe0 -00028753 67.49499512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff0 -00028754 67.49499512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ff0 -00028755 67.49501801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38000 -00028756 67.49502563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38000 -00028757 67.49505615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38010 -00028758 67.49505615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38010 -00028759 67.49507904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38020 -00028760 67.49507904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38020 -00028761 67.49510193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38030 -00028762 67.49510956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38030 -00028763 67.49513245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38040 -00028764 67.49513245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38040 -00028765 67.49516296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38050 -00028766 67.49517059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38050 -00028767 67.49519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38060 -00028768 67.49519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38060 -00028769 67.49521637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38070 -00028770 67.49522400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38070 -00028771 67.49525452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38080 -00028772 67.49525452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38080 -00028773 67.49527740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38090 -00028774 67.49528503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38090 -00028775 67.49530792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a0 -00028776 67.49530792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380a0 -00028777 67.49533081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b0 -00028778 67.49533081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380b0 -00028779 67.49536896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c0 -00028780 67.49536896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380c0 -00028781 67.49539185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d0 -00028782 67.49539185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380d0 -00028783 67.49541473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e0 -00028784 67.49542236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380e0 -00028785 67.49545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380f0 -00028786 67.49545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x380f0 -00028787 67.49547577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38100 -00028788 67.49548340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38100 -00028789 67.49550629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38110 -00028790 67.49550629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38110 -00028791 67.49552917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38120 -00028792 67.49553680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38120 -00028793 67.49556732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38130 -00028794 67.49556732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38130 -00028795 67.49559021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38140 -00028796 67.49559784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38140 -00028797 67.49562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38150 -00028798 67.49562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38150 -00028799 67.49565125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38160 -00028800 67.49565125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38160 -00028801 67.49568176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38170 -00028802 67.49568176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38170 -00028803 67.49570465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38180 -00028804 67.49570465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38180 -00028805 67.49572754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38190 -00028806 67.49573517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38190 -00028807 67.49576569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a0 -00028808 67.49576569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a0 -00028809 67.49578857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b0 -00028810 67.49579620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b0 -00028811 67.49581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c0 -00028812 67.49581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c0 -00028813 67.49584961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d0 -00028814 67.49584961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d0 -00028815 67.49588013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e0 -00028816 67.49588013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e0 -00028817 67.49590302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f0 -00028818 67.49591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f0 -00028819 67.49593353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38200 -00028820 67.49593353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38200 -00028821 67.49596405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38210 -00028822 67.49596405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38210 -00028823 67.49598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38220 -00028824 67.49599457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38220 -00028825 67.49601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38230 -00028826 67.49601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38230 -00028827 67.49604797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38240 -00028828 67.49604797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38240 -00028829 67.49607849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38250 -00028830 67.49607849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38250 -00028831 67.49610138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38260 -00028832 67.49610901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38260 -00028833 67.49613190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38270 -00028834 67.49613190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38270 -00028835 67.49616241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38280 -00028836 67.49617004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38280 -00028837 67.49619293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38290 -00028838 67.49619293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38290 -00028839 67.49621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a0 -00028840 67.49621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382a0 -00028841 67.49624634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b0 -00028842 67.49624634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382b0 -00028843 67.49627686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c0 -00028844 67.49627686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382c0 -00028845 67.49629974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d0 -00028846 67.49630737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382d0 -00028847 67.49633026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e0 -00028848 67.49633026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382e0 -00028849 67.49636078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f0 -00028850 67.49636841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x382f0 -00028851 67.49639130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38300 -00028852 67.49639130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38300 -00028853 67.49641418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38310 -00028854 67.49642181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38310 -00028855 67.49644470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38320 -00028856 67.49644470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38320 -00028857 67.49647522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38330 -00028858 67.49647522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38330 -00028859 67.49650574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38340 -00028860 67.49650574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38340 -00028861 67.49652863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38350 -00028862 67.49652863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38350 -00028863 67.49655914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38360 -00028864 67.49656677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38360 -00028865 67.49658966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38370 -00028866 67.49658966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38370 -00028867 67.49661255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38380 -00028868 67.49662018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38380 -00028869 67.49664307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -00028870 67.49664307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -00028871 67.49667358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -00028872 67.49668121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -00028873 67.49670410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -00028874 67.49670410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -00028875 67.49672699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -00028876 67.49673462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -00028877 67.49676514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -00028878 67.49676514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -00028879 67.49678802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -00028880 67.49678802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -00028881 67.49681091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -00028882 67.49681854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -00028883 67.49684143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -00028884 67.49684143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -00028885 67.49687195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -00028886 67.49687958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -00028887 67.49690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -00028888 67.49690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -00028889 67.49692535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -00028890 67.49693298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -00028891 67.49696350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -00028892 67.49696350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -00028893 67.49698639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -00028894 67.49699402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -00028895 67.49701691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -00028896 67.49701691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -00028897 67.49703979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -00028898 67.49703979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -00028899 67.49707031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -00028900 67.49707794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -00028901 67.49710083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -00028902 67.49710083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -00028903 67.49712372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -00028904 67.49713135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -00028905 67.49716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -00028906 67.49716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -00028907 67.49718475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -00028908 67.49719238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -00028909 67.49721527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -00028910 67.49721527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -00028911 67.49723816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -00028912 67.49724579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -00028913 67.49727631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f0 -00028914 67.49727631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f0 -00028915 67.49729919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38500 -00028916 67.49729919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38500 -00028917 67.49732208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38510 -00028918 67.49732971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38510 -00028919 67.49736023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38520 -00028920 67.49736023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38520 -00028921 67.49739075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38530 -00028922 67.49739075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38530 -00028923 67.49741364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38540 -00028924 67.49741364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38540 -00028925 67.49744415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38550 -00028926 67.49744415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38550 -00028927 67.49747467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38560 -00028928 67.49747467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38560 -00028929 67.49749756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38570 -00028930 67.49750519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38570 -00028931 67.49752808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38580 -00028932 67.49752808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38580 -00028933 67.49755859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38590 -00028934 67.49755859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38590 -00028935 67.49758911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385a0 -00028936 67.49758911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385a0 -00028937 67.49761200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385b0 -00028938 67.49761963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385b0 -00028939 67.49764252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385c0 -00028940 67.49764252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385c0 -00028941 67.49767303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385d0 -00028942 67.49767303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385d0 -00028943 67.49769592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385e0 -00028944 67.49770355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385e0 -00028945 67.49772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -00028946 67.49772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x385f0 -00028947 67.49775696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -00028948 67.49775696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38600 -00028949 67.49778748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -00028950 67.49778748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38610 -00028951 67.49781036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -00028952 67.49781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38620 -00028953 67.49784088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -00028954 67.49784088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38630 -00028955 67.49787140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -00028956 67.49787140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38640 -00028957 67.49790192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -00028958 67.49790192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38650 -00028959 67.49792480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -00028960 67.49792480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38660 -00028961 67.49795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -00028962 67.49795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -00028963 67.49798584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -00028964 67.49798584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -00028965 67.49800873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -00028966 67.49801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -00028967 67.49803925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -00028968 67.49803925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -00028969 67.49806976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -00028970 67.49807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -00028971 67.49810028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -00028972 67.49810028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -00028973 67.49812317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -00028974 67.49813080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -00028975 67.49815369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -00028976 67.49815369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -00028977 67.49818420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -00028978 67.49818420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -00028979 67.49820709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -00028980 67.49821472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -00028981 67.49823761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -00028982 67.49823761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -00028983 67.49826813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -00028984 67.49827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -00028985 67.49829865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -00028986 67.49829865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -00028987 67.49832153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -00028988 67.49832916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -00028989 67.49835205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -00028990 67.49835205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -00028991 67.49838257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -00028992 67.49839020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -00028993 67.49841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -00028994 67.49841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -00028995 67.49843597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -00028996 67.49844360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -00028997 67.49847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -00028998 67.49847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -00028999 67.49849701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -00029000 67.49849701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -00029001 67.49851990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -00029002 67.49852753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -00029003 67.49855042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -00029004 67.49855042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -00029005 67.49858093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387d0 -00029006 67.49858856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387d0 -00029007 67.49861145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387e0 -00029008 67.49861145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387e0 -00029009 67.49863434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387f0 -00029010 67.49864197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x387f0 -00029011 67.49867249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38800 -00029012 67.49867249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38800 -00029013 67.49869537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38810 -00029014 67.49870300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38810 -00029015 67.49872589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38820 -00029016 67.49872589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38820 -00029017 67.49874878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38830 -00029018 67.49874878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38830 -00029019 67.49877930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38840 -00029020 67.49878693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38840 -00029021 67.49880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38850 -00029022 67.49880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38850 -00029023 67.49883270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38860 -00029024 67.49884033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38860 -00029025 67.49887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38870 -00029026 67.49887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38870 -00029027 67.49889374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38880 -00029028 67.49890137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38880 -00029029 67.49892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38890 -00029030 67.49892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38890 -00029031 67.49894714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a0 -00029032 67.49895477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a0 -00029033 67.49898529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b0 -00029034 67.49898529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b0 -00029035 67.49900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c0 -00029036 67.49901581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c0 -00029037 67.49903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -00029038 67.49903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -00029039 67.49906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -00029040 67.49906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -00029041 67.49909210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -00029042 67.49909973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -00029043 67.49912262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -00029044 67.49912262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -00029045 67.49914551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -00029046 67.49915314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -00029047 67.49918365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -00029048 67.49918365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -00029049 67.49920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -00029050 67.49921417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -00029051 67.49923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -00029052 67.49923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -00029053 67.49926758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -00029054 67.49926758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -00029055 67.49929047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -00029056 67.49929810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -00029057 67.49932098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -00029058 67.49932098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -00029059 67.49935150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -00029060 67.49935150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -00029061 67.49938202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -00029062 67.49938202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -00029063 67.49940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -00029064 67.49941254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -00029065 67.49943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -00029066 67.49943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -00029067 67.49946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -00029068 67.49946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -00029069 67.49949646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -00029070 67.49949646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -00029071 67.49951935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -00029072 67.49952698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -00029073 67.49954987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -00029074 67.49954987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -00029075 67.49958038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -00029076 67.49958038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -00029077 67.49961090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -00029078 67.49961090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -00029079 67.49963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -00029080 67.49963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -00029081 67.49966431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -00029082 67.49966431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -00029083 67.49969482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -00029084 67.49969482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -00029085 67.49971771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -00029086 67.49972534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -00029087 67.49974823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -00029088 67.49974823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -00029089 67.49977875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -00029090 67.49977875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -00029091 67.49980927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -00029092 67.49980927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -00029093 67.49983215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -00029094 67.49983978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -00029095 67.49986267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -00029096 67.49986267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -00029097 67.49989319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -00029098 67.49989319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -00029099 67.49991608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -00029100 67.49992371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -00029101 67.49994659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -00029102 67.49994659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -00029103 67.49997711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae0 -00029104 67.49997711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae0 -00029105 67.50000763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af0 -00029106 67.50000763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af0 -00029107 67.50003052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00029108 67.50003815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b00 -00029109 67.50006104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00029110 67.50006104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b10 -00029111 67.50009155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00029112 67.50009918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b20 -00029113 67.50012207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00029114 67.50012207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b30 -00029115 67.50014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00029116 67.50014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b40 -00029117 67.50017548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00029118 67.50017548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b50 -00029119 67.50020599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00029120 67.50020599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b60 -00029121 67.50022888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00029122 67.50023651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b70 -00029123 67.50025940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00029124 67.50025940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b80 -00029125 67.50028992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00029126 67.50029755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b90 -00029127 67.50032043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00029128 67.50032043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba0 -00029129 67.50034332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -00029130 67.50035095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb0 -00029131 67.50037384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -00029132 67.50037384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc0 -00029133 67.50040436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -00029134 67.50040436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd0 -00029135 67.50042725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -00029136 67.50043488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be0 -00029137 67.50045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -00029138 67.50045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf0 -00029139 67.50048828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -00029140 67.50049591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c00 -00029141 67.50051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -00029142 67.50051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c10 -00029143 67.50054169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -00029144 67.50054932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c20 -00029145 67.50057220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -00029146 67.50057220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c30 -00029147 67.50060272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -00029148 67.50061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c40 -00029149 67.50063324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -00029150 67.50063324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c50 -00029151 67.50065613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -00029152 67.50066376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c60 -00029153 67.50069427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -00029154 67.50069427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c70 -00029155 67.50071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -00029156 67.50072479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c80 -00029157 67.50074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -00029158 67.50074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c90 -00029159 67.50077820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -00029160 67.50077820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca0 -00029161 67.50080109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -00029162 67.50080872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb0 -00029163 67.50083160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -00029164 67.50083160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc0 -00029165 67.50085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -00029166 67.50086212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd0 -00029167 67.50089264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -00029168 67.50089264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce0 -00029169 67.50091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -00029170 67.50092316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf0 -00029171 67.50094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d00 -00029172 67.50094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d00 -00029173 67.50097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d10 -00029174 67.50097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d10 -00029175 67.50100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d20 -00029176 67.50100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d20 -00029177 67.50102997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d30 -00029178 67.50102997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d30 -00029179 67.50106049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d40 -00029180 67.50106049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d40 -00029181 67.50109100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d50 -00029182 67.50109100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d50 -00029183 67.50111389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d60 -00029184 67.50112152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d60 -00029185 67.50114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d70 -00029186 67.50114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d70 -00029187 67.50117493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d80 -00029188 67.50117493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d80 -00029189 67.50120544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d90 -00029190 67.50120544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d90 -00029191 67.50122833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da0 -00029192 67.50123596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38da0 -00029193 67.50125885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db0 -00029194 67.50125885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38db0 -00029195 67.50128937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc0 -00029196 67.50128937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dc0 -00029197 67.50131989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd0 -00029198 67.50131989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38dd0 -00029199 67.50134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de0 -00029200 67.50135040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38de0 -00029201 67.50137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df0 -00029202 67.50137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38df0 -00029203 67.50140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e00 -00029204 67.50140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e00 -00029205 67.50142670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e10 -00029206 67.50143433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e10 -00029207 67.50145721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e20 -00029208 67.50145721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e20 -00029209 67.50148773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e30 -00029210 67.50148773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e30 -00029211 67.50151825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e40 -00029212 67.50151825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e40 -00029213 67.50154114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e50 -00029214 67.50154877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e50 -00029215 67.50157166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e60 -00029216 67.50157166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e60 -00029217 67.50160217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e70 -00029218 67.50160980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e70 -00029219 67.50163269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e80 -00029220 67.50163269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e80 -00029221 67.50165558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e90 -00029222 67.50165558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e90 -00029223 67.50168610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea0 -00029224 67.50168610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea0 -00029225 67.50171661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb0 -00029226 67.50171661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb0 -00029227 67.50173950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec0 -00029228 67.50174713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec0 -00029229 67.50177002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed0 -00029230 67.50177002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed0 -00029231 67.50180054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee0 -00029232 67.50180817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee0 -00029233 67.50183105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef0 -00029234 67.50183105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef0 -00029235 67.50185394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f00 -00029236 67.50185394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f00 -00029237 67.50188446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f10 -00029238 67.50188446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f10 -00029239 67.50191498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f20 -00029240 67.50191498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f20 -00029241 67.50193787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f30 -00029242 67.50194550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f30 -00029243 67.50196838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f40 -00029244 67.50196838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f40 -00029245 67.50199890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f50 -00029246 67.50200653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f50 -00029247 67.50202942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f60 -00029248 67.50202942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f60 -00029249 67.50205231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f70 -00029250 67.50205994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f70 -00029251 67.50208282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f80 -00029252 67.50208282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f80 -00029253 67.50211334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f90 -00029254 67.50211334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f90 -00029255 67.50213623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa0 -00029256 67.50214386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa0 -00029257 67.50216675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb0 -00029258 67.50216675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb0 -00029259 67.50219727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc0 -00029260 67.50220490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc0 -00029261 67.50222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd0 -00029262 67.50222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd0 -00029263 67.50225067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe0 -00029264 67.50225830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe0 -00029265 67.50228119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff0 -00029266 67.50228119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff0 -00029267 67.50231171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39000 -00029268 67.50231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39000 -00029269 67.50234222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39010 -00029270 67.50234222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39010 -00029271 67.50236511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39020 -00029272 67.50237274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39020 -00029273 67.50240326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39030 -00029274 67.50240326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39030 -00029275 67.50242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39040 -00029276 67.50242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39040 -00029277 67.50244904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39050 -00029278 67.50245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39050 -00029279 67.50247955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39060 -00029280 67.50247955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39060 -00029281 67.50251007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39070 -00029282 67.50251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39070 -00029283 67.50254059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39080 -00029284 67.50254059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39080 -00029285 67.50256348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39090 -00029286 67.50257111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39090 -00029287 67.50260162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a0 -00029288 67.50260162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a0 -00029289 67.50262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b0 -00029290 67.50263214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b0 -00029291 67.50265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c0 -00029292 67.50265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c0 -00029293 67.50267792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d0 -00029294 67.50267792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d0 -00029295 67.50270844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390e0 -00029296 67.50271606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390e0 -00029297 67.50273895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390f0 -00029298 67.50273895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x390f0 -00029299 67.50276184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39100 -00029300 67.50276947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39100 -00029301 67.50279999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39110 -00029302 67.50279999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39110 -00029303 67.50282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39120 -00029304 67.50283051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39120 -00029305 67.50285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39130 -00029306 67.50285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39130 -00029307 67.50287628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39140 -00029308 67.50287628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39140 -00029309 67.50290680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39150 -00029310 67.50291443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39150 -00029311 67.50293732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39160 -00029312 67.50293732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39160 -00029313 67.50296021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39170 -00029314 67.50296783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39170 -00029315 67.50299835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39180 -00029316 67.50299835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39180 -00029317 67.50302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39190 -00029318 67.50302887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39190 -00029319 67.50305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a0 -00029320 67.50305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a0 -00029321 67.50307465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b0 -00029322 67.50308228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b0 -00029323 67.50311279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c0 -00029324 67.50311279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c0 -00029325 67.50313568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -00029326 67.50313568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -00029327 67.50315857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -00029328 67.50316620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -00029329 67.50319672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -00029330 67.50319672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -00029331 67.50321960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -00029332 67.50322723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -00029333 67.50325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -00029334 67.50325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -00029335 67.50327301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -00029336 67.50328064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -00029337 67.50331116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -00029338 67.50331116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -00029339 67.50333405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -00029340 67.50334167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -00029341 67.50336456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -00029342 67.50336456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -00029343 67.50339508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -00029344 67.50339508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -00029345 67.50342560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -00029346 67.50342560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -00029347 67.50344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -00029348 67.50344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -00029349 67.50347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -00029350 67.50347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -00029351 67.50350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -00029352 67.50350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -00029353 67.50353241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -00029354 67.50354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -00029355 67.50356293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -00029356 67.50356293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -00029357 67.50359344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -00029358 67.50359344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -00029359 67.50362396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -00029360 67.50362396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -00029361 67.50364685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -00029362 67.50364685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -00029363 67.50367737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -00029364 67.50367737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -00029365 67.50370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -00029366 67.50370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -00029367 67.50373077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -00029368 67.50373840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -00029369 67.50376129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39330 -00029370 67.50376129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39330 -00029371 67.50379181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39340 -00029372 67.50379181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39340 -00029373 67.50382233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39350 -00029374 67.50382233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39350 -00029375 67.50384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39360 -00029376 67.50385284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39360 -00029377 67.50387573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39370 -00029378 67.50387573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39370 -00029379 67.50390625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39380 -00029380 67.50391388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39380 -00029381 67.50393677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39390 -00029382 67.50393677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39390 -00029383 67.50395966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a0 -00029384 67.50395966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a0 -00029385 67.50399017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b0 -00029386 67.50399017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b0 -00029387 67.50402069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c0 -00029388 67.50402069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c0 -00029389 67.50404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d0 -00029390 67.50405121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d0 -00029391 67.50407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e0 -00029392 67.50407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e0 -00029393 67.50410461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f0 -00029394 67.50411224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f0 -00029395 67.50413513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39400 -00029396 67.50413513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39400 -00029397 67.50415802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39410 -00029398 67.50416565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39410 -00029399 67.50418854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39420 -00029400 67.50418854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39420 -00029401 67.50421906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39430 -00029402 67.50421906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39430 -00029403 67.50424194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39440 -00029404 67.50424957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39440 -00029405 67.50427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39450 -00029406 67.50427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39450 -00029407 67.50430298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39460 -00029408 67.50431061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39460 -00029409 67.50433350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39470 -00029410 67.50433350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39470 -00029411 67.50435638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39480 -00029412 67.50436401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39480 -00029413 67.50438690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39490 -00029414 67.50438690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39490 -00029415 67.50441742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a0 -00029416 67.50442505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a0 -00029417 67.50444794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b0 -00029418 67.50444794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b0 -00029419 67.50447083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c0 -00029420 67.50447845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c0 -00029421 67.50450897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d0 -00029422 67.50450897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d0 -00029423 67.50453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e0 -00029424 67.50453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e0 -00029425 67.50455475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f0 -00029426 67.50456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f0 -00029427 67.50458527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39500 -00029428 67.50458527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39500 -00029429 67.50461578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39510 -00029430 67.50462341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39510 -00029431 67.50464630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39520 -00029432 67.50464630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39520 -00029433 67.50466919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39530 -00029434 67.50467682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39530 -00029435 67.50470734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39540 -00029436 67.50470734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39540 -00029437 67.50473022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39550 -00029438 67.50473022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39550 -00029439 67.50475311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39560 -00029440 67.50476074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39560 -00029441 67.50478363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39570 -00029442 67.50478363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39570 -00029443 67.50481415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39580 -00029444 67.50482178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39580 -00029445 67.50484467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39590 -00029446 67.50484467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39590 -00029447 67.50486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a0 -00029448 67.50487518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a0 -00029449 67.50490570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b0 -00029450 67.50490570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b0 -00029451 67.50492859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c0 -00029452 67.50493622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c0 -00029453 67.50495911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d0 -00029454 67.50495911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d0 -00029455 67.50498199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e0 -00029456 67.50498199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395e0 -00029457 67.50501251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395f0 -00029458 67.50502014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x395f0 -00029459 67.50504303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39600 -00029460 67.50504303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39600 -00029461 67.50506592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39610 -00029462 67.50507355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39610 -00029463 67.50510406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39620 -00029464 67.50510406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39620 -00029465 67.50512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39630 -00029466 67.50513458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39630 -00029467 67.50515747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39640 -00029468 67.50515747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39640 -00029469 67.50518036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -00029470 67.50518799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -00029471 67.50521851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -00029472 67.50521851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -00029473 67.50524139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -00029474 67.50524139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -00029475 67.50526428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -00029476 67.50527191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -00029477 67.50530243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -00029478 67.50530243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -00029479 67.50532532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -00029480 67.50533295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -00029481 67.50535583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -00029482 67.50535583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -00029483 67.50537872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -00029484 67.50538635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -00029485 67.50541687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -00029486 67.50541687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -00029487 67.50543976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -00029488 67.50544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -00029489 67.50547028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -00029490 67.50547028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -00029491 67.50550079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -00029492 67.50550079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -00029493 67.50553131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -00029494 67.50553131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -00029495 67.50555420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -00029496 67.50555420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -00029497 67.50557709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -00029498 67.50558472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -00029499 67.50561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -00029500 67.50561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -00029501 67.50563812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -00029502 67.50564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -00029503 67.50566864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -00029504 67.50566864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -00029505 67.50569916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -00029506 67.50569916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -00029507 67.50572968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -00029508 67.50572968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -00029509 67.50575256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -00029510 67.50575256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -00029511 67.50578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -00029512 67.50578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -00029513 67.50581360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -00029514 67.50581360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -00029515 67.50583649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -00029516 67.50584412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -00029517 67.50586700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -00029518 67.50586700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -00029519 67.50589752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -00029520 67.50589752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -00029521 67.50592804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397f0 -00029522 67.50592804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x397f0 -00029523 67.50595093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39800 -00029524 67.50595856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39800 -00029525 67.50598145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39810 -00029526 67.50598145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39810 -00029527 67.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39820 -00029528 67.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39820 -00029529 67.50603485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39830 -00029530 67.50604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39830 -00029531 67.50606537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39840 -00029532 67.50606537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39840 -00029533 67.50609589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39850 -00029534 67.50609589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39850 -00029535 67.50612640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39860 -00029536 67.50612640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39860 -00029537 67.50614929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39870 -00029538 67.50615692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39870 -00029539 67.50617981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39880 -00029540 67.50617981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39880 -00029541 67.50621033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39890 -00029542 67.50621796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39890 -00029543 67.50624084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a0 -00029544 67.50624084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a0 -00029545 67.50626373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b0 -00029546 67.50626373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b0 -00029547 67.50629425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c0 -00029548 67.50629425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c0 -00029549 67.50632477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d0 -00029550 67.50632477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d0 -00029551 67.50634766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e0 -00029552 67.50635529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e0 -00029553 67.50637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f0 -00029554 67.50637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f0 -00029555 67.50640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39900 -00029556 67.50641632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39900 -00029557 67.50643921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39910 -00029558 67.50643921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39910 -00029559 67.50646210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39920 -00029560 67.50646973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39920 -00029561 67.50649261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39930 -00029562 67.50649261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39930 -00029563 67.50652313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39940 -00029564 67.50653076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39940 -00029565 67.50655365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39950 -00029566 67.50655365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39950 -00029567 67.50657654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39960 -00029568 67.50657654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39960 -00029569 67.50660706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39970 -00029570 67.50661469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39970 -00029571 67.50663757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39980 -00029572 67.50663757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39980 -00029573 67.50666046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39990 -00029574 67.50666809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39990 -00029575 67.50669098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a0 -00029576 67.50669098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a0 -00029577 67.50672150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b0 -00029578 67.50672913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b0 -00029579 67.50675201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c0 -00029580 67.50675201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c0 -00029581 67.50677490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d0 -00029582 67.50678253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d0 -00029583 67.50681305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e0 -00029584 67.50681305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e0 -00029585 67.50683594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f0 -00029586 67.50683594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f0 -00029587 67.50685883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a00 -00029588 67.50686646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a00 -00029589 67.50688934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a10 -00029590 67.50688934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a10 -00029591 67.50691986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a20 -00029592 67.50692749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a20 -00029593 67.50695038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a30 -00029594 67.50695038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a30 -00029595 67.50697327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a40 -00029596 67.50698090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a40 -00029597 67.50701141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a50 -00029598 67.50701141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a50 -00029599 67.50703430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a60 -00029600 67.50704193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a60 -00029601 67.50706482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a70 -00029602 67.50706482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a70 -00029603 67.50708771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a80 -00029604 67.50708771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a80 -00029605 67.50712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a90 -00029606 67.50712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a90 -00029607 67.50714874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa0 -00029608 67.50714874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa0 -00029609 67.50717163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab0 -00029610 67.50717926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab0 -00029611 67.50720978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac0 -00029612 67.50720978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac0 -00029613 67.50723267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad0 -00029614 67.50724030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad0 -00029615 67.50726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae0 -00029616 67.50726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae0 -00029617 67.50728607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af0 -00029618 67.50729370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af0 -00029619 67.50732422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b00 -00029620 67.50732422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b00 -00029621 67.50734711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b10 -00029622 67.50735474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b10 -00029623 67.50737762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b20 -00029624 67.50737762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b20 -00029625 67.50740814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b30 -00029626 67.50740814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b30 -00029627 67.50743866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b40 -00029628 67.50743866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b40 -00029629 67.50746155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b50 -00029630 67.50746155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b50 -00029631 67.50748444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b60 -00029632 67.50749207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b60 -00029633 67.50752258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b70 -00029634 67.50752258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b70 -00029635 67.50754547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b80 -00029636 67.50755310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b80 -00029637 67.50757599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b90 -00029638 67.50757599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b90 -00029639 67.50760651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba0 -00029640 67.50760651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba0 -00029641 67.50763702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bb0 -00029642 67.50763702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bb0 -00029643 67.50765991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bc0 -00029644 67.50766754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bc0 -00029645 67.50769043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bd0 -00029646 67.50769043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bd0 -00029647 67.50772095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be0 -00029648 67.50772095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be0 -00029649 67.50775909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf0 -00029650 67.50775909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf0 -00029651 67.50778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c00 -00029652 67.50778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c00 -00029653 67.50781250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c10 -00029654 67.50781250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c10 -00029655 67.50784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c20 -00029656 67.50784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c20 -00029657 67.50787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c30 -00029658 67.50787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c30 -00029659 67.50789642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c40 -00029660 67.50790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c40 -00029661 67.50792694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c50 -00029662 67.50792694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c50 -00029663 67.50795746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c60 -00029664 67.50796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c60 -00029665 67.50798798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c70 -00029666 67.50798798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c70 -00029667 67.50801086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c80 -00029668 67.50801849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c80 -00029669 67.50804138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c90 -00029670 67.50804138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c90 -00029671 67.50807190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca0 -00029672 67.50807953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca0 -00029673 67.50810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb0 -00029674 67.50810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb0 -00029675 67.50812531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc0 -00029676 67.50812531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc0 -00029677 67.50816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd0 -00029678 67.50816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd0 -00029679 67.50818634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce0 -00029680 67.50818634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce0 -00029681 67.50820923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf0 -00029682 67.50821686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf0 -00029683 67.50823975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d00 -00029684 67.50823975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d00 -00029685 67.50827026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d10 -00029686 67.50827789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d10 -00029687 67.50830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d20 -00029688 67.50830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d20 -00029689 67.50832367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d30 -00029690 67.50833130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d30 -00029691 67.50836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d40 -00029692 67.50836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d40 -00029693 67.50838470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d50 -00029694 67.50839233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d50 -00029695 67.50841522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -00029696 67.50841522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -00029697 67.50843811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -00029698 67.50844574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -00029699 67.50847626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -00029700 67.50847626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -00029701 67.50849915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -00029702 67.50850677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -00029703 67.50852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -00029704 67.50852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -00029705 67.50856018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -00029706 67.50856018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -00029707 67.50858307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -00029708 67.50859070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -00029709 67.50861359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -00029710 67.50861359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -00029711 67.50863647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -00029712 67.50864410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -00029713 67.50867462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -00029714 67.50867462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -00029715 67.50869751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -00029716 67.50870514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -00029717 67.50872803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -00029718 67.50872803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -00029719 67.50875854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -00029720 67.50875854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -00029721 67.50878906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -00029722 67.50878906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -00029723 67.50881195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -00029724 67.50881958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -00029725 67.50884247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -00029726 67.50884247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -00029727 67.50887299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -00029728 67.50887299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -00029729 67.50889587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -00029730 67.50890350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -00029731 67.50892639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -00029732 67.50892639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -00029733 67.50895691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -00029734 67.50895691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -00029735 67.50898743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -00029736 67.50898743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -00029737 67.50901031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb0 -00029738 67.50901794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb0 -00029739 67.50904083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec0 -00029740 67.50904083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec0 -00029741 67.50907135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -00029742 67.50907898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -00029743 67.50910187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -00029744 67.50910187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -00029745 67.50912476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -00029746 67.50912476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -00029747 67.50915527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -00029748 67.50915527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -00029749 67.50918579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -00029750 67.50918579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -00029751 67.50920868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -00029752 67.50921631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -00029753 67.50923920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -00029754 67.50923920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -00029755 67.50926971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -00029756 67.50927734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -00029757 67.50930023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -00029758 67.50930023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -00029759 67.50932312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -00029760 67.50932312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -00029761 67.50937653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -00029762 67.50938416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -00029763 67.50940704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f80 -00029764 67.50940704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f80 -00029765 67.50942993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f90 -00029766 67.50943756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f90 -00029767 67.50946808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa0 -00029768 67.50946808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa0 -00029769 67.50949097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb0 -00029770 67.50949860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb0 -00029771 67.50952148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc0 -00029772 67.50952148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc0 -00029773 67.50955200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd0 -00029774 67.50955200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd0 -00029775 67.50957489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe0 -00029776 67.50958252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe0 -00029777 67.50960541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff0 -00029778 67.50960541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff0 -00029779 67.50962830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a000 -00029780 67.50963593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a000 -00029781 67.50966644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a010 -00029782 67.50966644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a010 -00029783 67.50968933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a020 -00029784 67.50969696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a020 -00029785 67.50971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a030 -00029786 67.50971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a030 -00029787 67.50975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a040 -00029788 67.50975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a040 -00029789 67.50978088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a050 -00029790 67.50978088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a050 -00029791 67.50980377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a060 -00029792 67.50980377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a060 -00029793 67.50982666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a070 -00029794 67.50983429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a070 -00029795 67.50986481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a080 -00029796 67.50986481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a080 -00029797 67.50988770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a090 -00029798 67.50989532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a090 -00029799 67.50991821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0a0 -00029800 67.50991821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0a0 -00029801 67.50994873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0b0 -00029802 67.50994873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0b0 -00029803 67.50997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0c0 -00029804 67.50997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0c0 -00029805 67.51000214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0d0 -00029806 67.51000977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0d0 -00029807 67.51003265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0e0 -00029808 67.51003265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0e0 -00029809 67.51006317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0f0 -00029810 67.51007080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a0f0 -00029811 67.51009369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a100 -00029812 67.51009369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a100 -00029813 67.51011658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a110 -00029814 67.51011658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a110 -00029815 67.51014709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a120 -00029816 67.51014709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a120 -00029817 67.51017761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -00029818 67.51017761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a130 -00029819 67.51020050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -00029820 67.51020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a140 -00029821 67.51023102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -00029822 67.51023102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a150 -00029823 67.51026154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -00029824 67.51026917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a160 -00029825 67.51029205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -00029826 67.51029205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a170 -00029827 67.51031494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -00029828 67.51032257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a180 -00029829 67.51034546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -00029830 67.51034546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a190 -00029831 67.51037598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -00029832 67.51038361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a0 -00029833 67.51040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -00029834 67.51040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b0 -00029835 67.51042938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -00029836 67.51042938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c0 -00029837 67.51045990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -00029838 67.51046753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d0 -00029839 67.51049042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -00029840 67.51049042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e0 -00029841 67.51051331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -00029842 67.51052094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f0 -00029843 67.51054382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -00029844 67.51054382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a200 -00029845 67.51057434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -00029846 67.51058197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a210 -00029847 67.51060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -00029848 67.51060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a220 -00029849 67.51062775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -00029850 67.51063538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a230 -00029851 67.51066589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -00029852 67.51066589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a240 -00029853 67.51068878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -00029854 67.51069641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a250 -00029855 67.51071930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -00029856 67.51071930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a260 -00029857 67.51074219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -00029858 67.51074982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a270 -00029859 67.51078033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -00029860 67.51078033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a280 -00029861 67.51080322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a290 -00029862 67.51080322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a290 -00029863 67.51082611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a0 -00029864 67.51083374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a0 -00029865 67.51086426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b0 -00029866 67.51086426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b0 -00029867 67.51088715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c0 -00029868 67.51089478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c0 -00029869 67.51091766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d0 -00029870 67.51091766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d0 -00029871 67.51094055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e0 -00029872 67.51094818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e0 -00029873 67.51097870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f0 -00029874 67.51097870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f0 -00029875 67.51100159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a300 -00029876 67.51100922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a300 -00029877 67.51103210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a310 -00029878 67.51103210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a310 -00029879 67.51106262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a320 -00029880 67.51106262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a320 -00029881 67.51108551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a330 -00029882 67.51109314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a330 -00029883 67.51111603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a340 -00029884 67.51111603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a340 -00029885 67.51113892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a350 -00029886 67.51114655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a350 -00029887 67.51117706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a360 -00029888 67.51117706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a360 -00029889 67.51119995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a370 -00029890 67.51120758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a370 -00029891 67.51123047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a380 -00029892 67.51123047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a380 -00029893 67.51126099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -00029894 67.51126099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -00029895 67.51129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -00029896 67.51129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -00029897 67.51131439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -00029898 67.51132202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -00029899 67.51134491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -00029900 67.51134491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -00029901 67.51137543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -00029902 67.51137543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -00029903 67.51140594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -00029904 67.51140594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -00029905 67.51142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -00029906 67.51142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -00029907 67.51145935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -00029908 67.51145935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -00029909 67.51148987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -00029910 67.51148987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -00029911 67.51151276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -00029912 67.51152039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -00029913 67.51154327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -00029914 67.51154327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -00029915 67.51157379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -00029916 67.51157379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -00029917 67.51160431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -00029918 67.51160431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -00029919 67.51162720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -00029920 67.51162720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -00029921 67.51165771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -00029922 67.51165771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -00029923 67.51168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -00029924 67.51168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -00029925 67.51171112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -00029926 67.51171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -00029927 67.51174164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -00029928 67.51174164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -00029929 67.51177216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -00029930 67.51177979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -00029931 67.51180267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -00029932 67.51180267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -00029933 67.51182556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -00029934 67.51183319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -00029935 67.51185608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -00029936 67.51185608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -00029937 67.51188660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f0 -00029938 67.51188660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f0 -00029939 67.51190948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a500 -00029940 67.51191711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a500 -00029941 67.51194000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a510 -00029942 67.51194000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a510 -00029943 67.51197052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a520 -00029944 67.51197815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a520 -00029945 67.51200104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a530 -00029946 67.51200104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a530 -00029947 67.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a540 -00029948 67.51203156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a540 -00029949 67.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a550 -00029950 67.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a550 -00029951 67.51208496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a560 -00029952 67.51209259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a560 -00029953 67.51211548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a570 -00029954 67.51211548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a570 -00029955 67.51213837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a580 -00029956 67.51213837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a580 -00029957 67.51216888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a590 -00029958 67.51217651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a590 -00029959 67.51219940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a0 -00029960 67.51219940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a0 -00029961 67.51222229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b0 -00029962 67.51222992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b0 -00029963 67.51225281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c0 -00029964 67.51225281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c0 -00029965 67.51228333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d0 -00029966 67.51229095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d0 -00029967 67.51231384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e0 -00029968 67.51231384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e0 -00029969 67.51233673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f0 -00029970 67.51234436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f0 -00029971 67.51237488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a600 -00029972 67.51237488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a600 -00029973 67.51239777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a610 -00029974 67.51239777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a610 -00029975 67.51242065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a620 -00029976 67.51242828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a620 -00029977 67.51245117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a630 -00029978 67.51245117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a630 -00029979 67.51248932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a640 -00029980 67.51248932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a640 -00029981 67.51251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a650 -00029982 67.51251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a650 -00029983 67.51253510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a660 -00029984 67.51254272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a660 -00029985 67.51257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a670 -00029986 67.51257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a670 -00029987 67.51259613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a680 -00029988 67.51260376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a680 -00029989 67.51262665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a690 -00029990 67.51262665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a690 -00029991 67.51264954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6a0 -00029992 67.51265717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6a0 -00029993 67.51268768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6b0 -00029994 67.51268768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6b0 -00029995 67.51271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6c0 -00029996 67.51271820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6c0 -00029997 67.51274109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6d0 -00029998 67.51274109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6d0 -00029999 67.51277161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6e0 -00030000 67.51277161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6e0 -00030001 67.51280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6f0 -00030002 67.51280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a6f0 -00030003 67.51282501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a700 -00030004 67.51282501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a700 -00030005 67.51285553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a710 -00030006 67.51285553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a710 -00030007 67.51288605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a720 -00030008 67.51288605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a720 -00030009 67.51290894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a730 -00030010 67.51291656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a730 -00030011 67.51293945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a740 -00030012 67.51293945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a740 -00030013 67.51296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a750 -00030014 67.51296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a750 -00030015 67.51300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a760 -00030016 67.51300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a760 -00030017 67.51302338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a770 -00030018 67.51303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a770 -00030019 67.51305389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a780 -00030020 67.51305389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a780 -00030021 67.51308441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a790 -00030022 67.51308441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a790 -00030023 67.51311493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7a0 -00030024 67.51311493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7a0 -00030025 67.51313782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7b0 -00030026 67.51314545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7b0 -00030027 67.51316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c0 -00030028 67.51316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7c0 -00030029 67.51319885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d0 -00030030 67.51320648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7d0 -00030031 67.51322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e0 -00030032 67.51322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7e0 -00030033 67.51325226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f0 -00030034 67.51325989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a7f0 -00030035 67.51328278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a800 -00030036 67.51328278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a800 -00030037 67.51331329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a810 -00030038 67.51332092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a810 -00030039 67.51334381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a820 -00030040 67.51334381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a820 -00030041 67.51336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a830 -00030042 67.51337433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a830 -00030043 67.51340485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a840 -00030044 67.51340485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a840 -00030045 67.51342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a850 -00030046 67.51343536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a850 -00030047 67.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a860 -00030048 67.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a860 -00030049 67.51348114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a870 -00030050 67.51348114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a870 -00030051 67.51351166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a880 -00030052 67.51351929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a880 -00030053 67.51354218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a890 -00030054 67.51354218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a890 -00030055 67.51356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a0 -00030056 67.51357269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a0 -00030057 67.51360321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b0 -00030058 67.51360321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b0 -00030059 67.51362610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c0 -00030060 67.51363373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c0 -00030061 67.51365662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d0 -00030062 67.51365662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d0 -00030063 67.51367950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e0 -00030064 67.51368713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e0 -00030065 67.51371765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f0 -00030066 67.51371765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f0 -00030067 67.51374054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a900 -00030068 67.51374817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a900 -00030069 67.51377106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -00030070 67.51377106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -00030071 67.51380157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -00030072 67.51380157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -00030073 67.51382446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -00030074 67.51383209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -00030075 67.51385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -00030076 67.51385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -00030077 67.51387787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -00030078 67.51388550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -00030079 67.51391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -00030080 67.51391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -00030081 67.51393890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -00030082 67.51394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -00030083 67.51396942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -00030084 67.51396942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -00030085 67.51399994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -00030086 67.51399994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -00030087 67.51402283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -00030088 67.51403046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -00030089 67.51405334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -00030090 67.51405334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -00030091 67.51407623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -00030092 67.51408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -00030093 67.51411438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -00030094 67.51411438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -00030095 67.51413727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -00030096 67.51414490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -00030097 67.51416779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -00030098 67.51416779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -00030099 67.51419830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -00030100 67.51419830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -00030101 67.51422882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -00030102 67.51422882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -00030103 67.51425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -00030104 67.51425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -00030105 67.51427460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -00030106 67.51428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -00030107 67.51431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -00030108 67.51431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -00030109 67.51433563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -00030110 67.51434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -00030111 67.51436615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -00030112 67.51436615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -00030113 67.51439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa70 -00030114 67.51439667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa70 -00030115 67.51442719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa80 -00030116 67.51442719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa80 -00030117 67.51445007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa90 -00030118 67.51445770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa90 -00030119 67.51448059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa0 -00030120 67.51448059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa0 -00030121 67.51451111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab0 -00030122 67.51451111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab0 -00030123 67.51454163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac0 -00030124 67.51454163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac0 -00030125 67.51456451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad0 -00030126 67.51456451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad0 -00030127 67.51459503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae0 -00030128 67.51459503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae0 -00030129 67.51462555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf0 -00030130 67.51462555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf0 -00030131 67.51464844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -00030132 67.51465607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -00030133 67.51467896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -00030134 67.51467896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -00030135 67.51471710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -00030136 67.51471710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -00030137 67.51474762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -00030138 67.51474762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -00030139 67.51477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -00030140 67.51477814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -00030141 67.51480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -00030142 67.51480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -00030143 67.51483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -00030144 67.51483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -00030145 67.51486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -00030146 67.51486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -00030147 67.51488495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -00030148 67.51488495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -00030149 67.51491547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -00030150 67.51491547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -00030151 67.51494598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -00030152 67.51494598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -00030153 67.51496887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -00030154 67.51497650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -00030155 67.51499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -00030156 67.51499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -00030157 67.51502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -00030158 67.51502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -00030159 67.51506042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -00030160 67.51506042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -00030161 67.51508331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -00030162 67.51509094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -00030163 67.51511383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -00030164 67.51511383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -00030165 67.51514435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -00030166 67.51515198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -00030167 67.51517487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -00030168 67.51517487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -00030169 67.51519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -00030170 67.51520538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -00030171 67.51522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -00030172 67.51522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -00030173 67.51525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -00030174 67.51526642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -00030175 67.51528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac60 -00030176 67.51528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac60 -00030177 67.51531219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac70 -00030178 67.51531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac70 -00030179 67.51535034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac80 -00030180 67.51535034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac80 -00030181 67.51538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac90 -00030182 67.51538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac90 -00030183 67.51540375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca0 -00030184 67.51540375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca0 -00030185 67.51542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb0 -00030186 67.51543427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb0 -00030187 67.51546478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc0 -00030188 67.51546478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc0 -00030189 67.51548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acd0 -00030190 67.51549530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acd0 -00030191 67.51551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ace0 -00030192 67.51551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ace0 -00030193 67.51554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -00030194 67.51554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acf0 -00030195 67.51557922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -00030196 67.51557922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad00 -00030197 67.51560211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -00030198 67.51560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad10 -00030199 67.51563263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -00030200 67.51563263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad20 -00030201 67.51566315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -00030202 67.51566315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad30 -00030203 67.51568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -00030204 67.51569366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad40 -00030205 67.51571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -00030206 67.51571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad50 -00030207 67.51574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -00030208 67.51574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad60 -00030209 67.51577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -00030210 67.51577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad70 -00030211 67.51580048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -00030212 67.51580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad80 -00030213 67.51583099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -00030214 67.51583099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad90 -00030215 67.51586151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -00030216 67.51586914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada0 -00030217 67.51589203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -00030218 67.51589203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb0 -00030219 67.51591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -00030220 67.51591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc0 -00030221 67.51594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -00030222 67.51594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add0 -00030223 67.51597595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -00030224 67.51597595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade0 -00030225 67.51599884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -00030226 67.51600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf0 -00030227 67.51602936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -00030228 67.51602936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae00 -00030229 67.51605988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -00030230 67.51606750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae10 -00030231 67.51609039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -00030232 67.51609039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae20 -00030233 67.51611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -00030234 67.51611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae30 -00030235 67.51614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -00030236 67.51614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae40 -00030237 67.51617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae50 -00030238 67.51617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae50 -00030239 67.51619720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae60 -00030240 67.51620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae60 -00030241 67.51622772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae70 -00030242 67.51622772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae70 -00030243 67.51625824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae80 -00030244 67.51626587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae80 -00030245 67.51628876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae90 -00030246 67.51628876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae90 -00030247 67.51631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea0 -00030248 67.51631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea0 -00030249 67.51634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb0 -00030250 67.51634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb0 -00030251 67.51637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec0 -00030252 67.51637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec0 -00030253 67.51639557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed0 -00030254 67.51640320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed0 -00030255 67.51642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee0 -00030256 67.51642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee0 -00030257 67.51645660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef0 -00030258 67.51646423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef0 -00030259 67.51648712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af00 -00030260 67.51648712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af00 -00030261 67.51651001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af10 -00030262 67.51651764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af10 -00030263 67.51654053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af20 -00030264 67.51654053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af20 -00030265 67.51657104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af30 -00030266 67.51657104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af30 -00030267 67.51659393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af40 -00030268 67.51660156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af40 -00030269 67.51662445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af50 -00030270 67.51662445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af50 -00030271 67.51665497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af60 -00030272 67.51666260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af60 -00030273 67.51668549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af70 -00030274 67.51668549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af70 -00030275 67.51670837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af80 -00030276 67.51671600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af80 -00030277 67.51673889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af90 -00030278 67.51673889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af90 -00030279 67.51676941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa0 -00030280 67.51677704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa0 -00030281 67.51679993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb0 -00030282 67.51679993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb0 -00030283 67.51682281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc0 -00030284 67.51682281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc0 -00030285 67.51685333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd0 -00030286 67.51686096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd0 -00030287 67.51688385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe0 -00030288 67.51688385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe0 -00030289 67.51690674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -00030290 67.51691437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -00030291 67.51693726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -00030292 67.51693726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -00030293 67.51696777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -00030294 67.51697540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -00030295 67.51699829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -00030296 67.51699829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -00030297 67.51702118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -00030298 67.51702881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -00030299 67.51705933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -00030300 67.51705933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -00030301 67.51708221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -00030302 67.51708221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -00030303 67.51710510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -00030304 67.51711273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -00030305 67.51713562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -00030306 67.51713562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -00030307 67.51716614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -00030308 67.51717377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -00030309 67.51719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -00030310 67.51719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -00030311 67.51721954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -00030312 67.51722717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -00030313 67.51725769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -00030314 67.51725769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -00030315 67.51728058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -00030316 67.51728821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -00030317 67.51731110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -00030318 67.51731110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -00030319 67.51733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -00030320 67.51734161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -00030321 67.51737213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -00030322 67.51737213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -00030323 67.51739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -00030324 67.51739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -00030325 67.51741791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -00030326 67.51742554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -00030327 67.51745605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -00030328 67.51745605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -00030329 67.51747894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -00030330 67.51748657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -00030331 67.51750946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -00030332 67.51750946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -00030333 67.51753235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -00030334 67.51753998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -00030335 67.51757050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -00030336 67.51757050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -00030337 67.51759338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -00030338 67.51760101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -00030339 67.51762390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -00030340 67.51762390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -00030341 67.51765442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -00030342 67.51765442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -00030343 67.51768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -00030344 67.51768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -00030345 67.51770782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -00030346 67.51770782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -00030347 67.51773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -00030348 67.51773834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -00030349 67.51776886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -00030350 67.51776886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -00030351 67.51779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -00030352 67.51779938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -00030353 67.51782227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -00030354 67.51782227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -00030355 67.51785278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -00030356 67.51785278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -00030357 67.51788330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -00030358 67.51788330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -00030359 67.51790619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b220 -00030360 67.51790619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b220 -00030361 67.51792908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b230 -00030362 67.51793671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b230 -00030363 67.51796722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b240 -00030364 67.51796722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b240 -00030365 67.51799011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b250 -00030366 67.51799774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b250 -00030367 67.51802063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b260 -00030368 67.51802063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b260 -00030369 67.51805115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b270 -00030370 67.51805115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b270 -00030371 67.51808167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b280 -00030372 67.51808167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b280 -00030373 67.51810455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b290 -00030374 67.51810455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b290 -00030375 67.51812744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a0 -00030376 67.51813507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a0 -00030377 67.51816559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b0 -00030378 67.51816559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b0 -00030379 67.51819611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c0 -00030380 67.51819611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c0 -00030381 67.51821899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d0 -00030382 67.51821899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d0 -00030383 67.51824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e0 -00030384 67.51824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e0 -00030385 67.51828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f0 -00030386 67.51828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f0 -00030387 67.51830292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b300 -00030388 67.51831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b300 -00030389 67.51833344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b310 -00030390 67.51833344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b310 -00030391 67.51836395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b320 -00030392 67.51837158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b320 -00030393 67.51839447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b330 -00030394 67.51839447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b330 -00030395 67.51841736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b340 -00030396 67.51842499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b340 -00030397 67.51844788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b350 -00030398 67.51844788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b350 -00030399 67.51847839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b360 -00030400 67.51848602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b360 -00030401 67.51850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b370 -00030402 67.51850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b370 -00030403 67.51853180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b380 -00030404 67.51853180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b380 -00030405 67.51856995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b390 -00030406 67.51856995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b390 -00030407 67.51859283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a0 -00030408 67.51859283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a0 -00030409 67.51861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b0 -00030410 67.51862335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b0 -00030411 67.51864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c0 -00030412 67.51864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c0 -00030413 67.51867676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d0 -00030414 67.51868439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d0 -00030415 67.51870728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e0 -00030416 67.51870728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e0 -00030417 67.51873016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f0 -00030418 67.51873779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f0 -00030419 67.51876831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b400 -00030420 67.51876831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b400 -00030421 67.51879120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b410 -00030422 67.51879883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b410 -00030423 67.51882172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b420 -00030424 67.51882172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b420 -00030425 67.51884460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b430 -00030426 67.51884460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b430 -00030427 67.51888275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b440 -00030428 67.51888275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b440 -00030429 67.51890564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b450 -00030430 67.51890564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b450 -00030431 67.51892853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b460 -00030432 67.51893616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b460 -00030433 67.51896667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b470 -00030434 67.51896667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b470 -00030435 67.51898956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b480 -00030436 67.51899719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b480 -00030437 67.51902008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b490 -00030438 67.51902008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b490 -00030439 67.51904297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a0 -00030440 67.51905060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a0 -00030441 67.51908112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b0 -00030442 67.51908112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b0 -00030443 67.51910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c0 -00030444 67.51910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c0 -00030445 67.51912689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d0 -00030446 67.51913452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d0 -00030447 67.51916504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e0 -00030448 67.51916504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e0 -00030449 67.51918793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f0 -00030450 67.51919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f0 -00030451 67.51921844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b500 -00030452 67.51921844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b500 -00030453 67.51924133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b510 -00030454 67.51924896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b510 -00030455 67.51927948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b520 -00030456 67.51927948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b520 -00030457 67.51930237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b530 -00030458 67.51931000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b530 -00030459 67.51933289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b540 -00030460 67.51933289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b540 -00030461 67.51936340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b550 -00030462 67.51936340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b550 -00030463 67.51939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b560 -00030464 67.51939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b560 -00030465 67.51941681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b570 -00030466 67.51941681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b570 -00030467 67.51944733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b580 -00030468 67.51944733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b580 -00030469 67.51947784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b590 -00030470 67.51947784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b590 -00030471 67.51950073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5a0 -00030472 67.51950836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5a0 -00030473 67.51953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b0 -00030474 67.51953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b0 -00030475 67.51956177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c0 -00030476 67.51956177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c0 -00030477 67.51959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d0 -00030478 67.51959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d0 -00030479 67.51961517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e0 -00030480 67.51962280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e0 -00030481 67.51964569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f0 -00030482 67.51964569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f0 -00030483 67.51967621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b600 -00030484 67.51967621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b600 -00030485 67.51970673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b610 -00030486 67.51970673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b610 -00030487 67.51972961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b620 -00030488 67.51972961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b620 -00030489 67.51976013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b630 -00030490 67.51976013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b630 -00030491 67.51979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b640 -00030492 67.51979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b640 -00030493 67.51981354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b650 -00030494 67.51982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b650 -00030495 67.51984406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b660 -00030496 67.51984406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b660 -00030497 67.51987457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b670 -00030498 67.51988220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b670 -00030499 67.51990509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b680 -00030500 67.51990509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b680 -00030501 67.51992798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b690 -00030502 67.51992798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b690 -00030503 67.51995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6a0 -00030504 67.51995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6a0 -00030505 67.51998901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6b0 -00030506 67.51998901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6b0 -00030507 67.52001190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6c0 -00030508 67.52001953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6c0 -00030509 67.52004242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6d0 -00030510 67.52004242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6d0 -00030511 67.52007294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6e0 -00030512 67.52008057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6e0 -00030513 67.52010345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6f0 -00030514 67.52010345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b6f0 -00030515 67.52012634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b700 -00030516 67.52013397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b700 -00030517 67.52015686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b710 -00030518 67.52015686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b710 -00030519 67.52018738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b720 -00030520 67.52019501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b720 -00030521 67.52021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b730 -00030522 67.52021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b730 -00030523 67.52024078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b740 -00030524 67.52024078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b740 -00030525 67.52027130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b750 -00030526 67.52027893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b750 -00030527 67.52030182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b760 -00030528 67.52030182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b760 -00030529 67.52032471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b770 -00030530 67.52033234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b770 -00030531 67.52035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b780 -00030532 67.52035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b780 -00030533 67.52038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b790 -00030534 67.52039337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b790 -00030535 67.52041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a0 -00030536 67.52041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a0 -00030537 67.52043915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b0 -00030538 67.52044678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b0 -00030539 67.52047729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c0 -00030540 67.52047729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c0 -00030541 67.52050018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d0 -00030542 67.52050018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d0 -00030543 67.52052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e0 -00030544 67.52053070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e0 -00030545 67.52055359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f0 -00030546 67.52055359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f0 -00030547 67.52058411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b800 -00030548 67.52059174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b800 -00030549 67.52061462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b810 -00030550 67.52061462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b810 -00030551 67.52063751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b820 -00030552 67.52064514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b820 -00030553 67.52067566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b830 -00030554 67.52067566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b830 -00030555 67.52069855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b840 -00030556 67.52070618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b840 -00030557 67.52072906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b850 -00030558 67.52072906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b850 -00030559 67.52075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b860 -00030560 67.52075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b860 -00030561 67.52078247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b870 -00030562 67.52079010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b870 -00030563 67.52081299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b880 -00030564 67.52081299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b880 -00030565 67.52083588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b890 -00030566 67.52084351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b890 -00030567 67.52087402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a0 -00030568 67.52087402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a0 -00030569 67.52089691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b0 -00030570 67.52090454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b0 -00030571 67.52092743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c0 -00030572 67.52092743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c0 -00030573 67.52095032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d0 -00030574 67.52095795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d0 -00030575 67.52098846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e0 -00030576 67.52098846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e0 -00030577 67.52101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f0 -00030578 67.52101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f0 -00030579 67.52103424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b900 -00030580 67.52104187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b900 -00030581 67.52107239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b910 -00030582 67.52107239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b910 -00030583 67.52109528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b920 -00030584 67.52110291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b920 -00030585 67.52112579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b930 -00030586 67.52112579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b930 -00030587 67.52114868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b940 -00030588 67.52115631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b940 -00030589 67.52118683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b950 -00030590 67.52118683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b950 -00030591 67.52120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b960 -00030592 67.52120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b960 -00030593 67.52123260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b970 -00030594 67.52124023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b970 -00030595 67.52127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b980 -00030596 67.52127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b980 -00030597 67.52129364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b990 -00030598 67.52130127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b990 -00030599 67.52132416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a0 -00030600 67.52132416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a0 -00030601 67.52134705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b0 -00030602 67.52135468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b0 -00030603 67.52138519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c0 -00030604 67.52138519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c0 -00030605 67.52140808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d0 -00030606 67.52141571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d0 -00030607 67.52143860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e0 -00030608 67.52143860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e0 -00030609 67.52146912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f0 -00030610 67.52146912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f0 -00030611 67.52149963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba00 -00030612 67.52149963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba00 -00030613 67.52152252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba10 -00030614 67.52152252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba10 -00030615 67.52154541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba20 -00030616 67.52155304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba20 -00030617 67.52158356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba30 -00030618 67.52158356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba30 -00030619 67.52160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba40 -00030620 67.52161407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba40 -00030621 67.52163696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba50 -00030622 67.52163696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba50 -00030623 67.52166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba60 -00030624 67.52166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba60 -00030625 67.52169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba70 -00030626 67.52169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba70 -00030627 67.52172089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba80 -00030628 67.52172852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba80 -00030629 67.52175140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba90 -00030630 67.52175140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba90 -00030631 67.52178192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa0 -00030632 67.52178192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa0 -00030633 67.52180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab0 -00030634 67.52181244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab0 -00030635 67.52183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac0 -00030636 67.52183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac0 -00030637 67.52186584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad0 -00030638 67.52186584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad0 -00030639 67.52189636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae0 -00030640 67.52189636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae0 -00030641 67.52191925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf0 -00030642 67.52192688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf0 -00030643 67.52194977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb00 -00030644 67.52194977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb00 -00030645 67.52198029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb10 -00030646 67.52198029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb10 -00030647 67.52201080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb20 -00030648 67.52201080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb20 -00030649 67.52203369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb30 -00030650 67.52204132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb30 -00030651 67.52207184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb40 -00030652 67.52207947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb40 -00030653 67.52210236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb50 -00030654 67.52210999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb50 -00030655 67.52214050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb60 -00030656 67.52214050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb60 -00030657 67.52216339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb70 -00030658 67.52216339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb70 -00030659 67.52218628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb80 -00030660 67.52219391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb80 -00030661 67.52222443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb90 -00030662 67.52222443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb90 -00030663 67.52224731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba0 -00030664 67.52225494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba0 -00030665 67.52227783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb0 -00030666 67.52227783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb0 -00030667 67.52230072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc0 -00030668 67.52230835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc0 -00030669 67.52233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd0 -00030670 67.52233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd0 -00030671 67.52236176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe0 -00030672 67.52236938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe0 -00030673 67.52239227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf0 -00030674 67.52239227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf0 -00030675 67.52242279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc00 -00030676 67.52242279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc00 -00030677 67.52245331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc10 -00030678 67.52245331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc10 -00030679 67.52247620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc20 -00030680 67.52248383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc20 -00030681 67.52250671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc30 -00030682 67.52250671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc30 -00030683 67.52253723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc40 -00030684 67.52253723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc40 -00030685 67.52256775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc50 -00030686 67.52256775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc50 -00030687 67.52259064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc60 -00030688 67.52259064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc60 -00030689 67.52262115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc70 -00030690 67.52262115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc70 -00030691 67.52265167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc80 -00030692 67.52265167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc80 -00030693 67.52267456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc90 -00030694 67.52268219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc90 -00030695 67.52270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca0 -00030696 67.52270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca0 -00030697 67.52273560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb0 -00030698 67.52273560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb0 -00030699 67.52276611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc0 -00030700 67.52276611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc0 -00030701 67.52278900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd0 -00030702 67.52279663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd0 -00030703 67.52281952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce0 -00030704 67.52281952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce0 -00030705 67.52285004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf0 -00030706 67.52285767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf0 -00030707 67.52288055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd00 -00030708 67.52288055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd00 -00030709 67.52290344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd10 -00030710 67.52290344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd10 -00030711 67.52293396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd20 -00030712 67.52293396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd20 -00030713 67.52296448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd30 -00030714 67.52296448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd30 -00030715 67.52298737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd40 -00030716 67.52299500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd40 -00030717 67.52301788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd50 -00030718 67.52301788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd50 -00030719 67.52304840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd60 -00030720 67.52305603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd60 -00030721 67.52307892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd70 -00030722 67.52307892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd70 -00030723 67.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd80 -00030724 67.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd80 -00030725 67.52313232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd90 -00030726 67.52313232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd90 -00030727 67.52316284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda0 -00030728 67.52316284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda0 -00030729 67.52318573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb0 -00030730 67.52319336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb0 -00030731 67.52321625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc0 -00030732 67.52321625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc0 -00030733 67.52324677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd0 -00030734 67.52325439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd0 -00030735 67.52327728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde0 -00030736 67.52327728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde0 -00030737 67.52330017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf0 -00030738 67.52330780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf0 -00030739 67.52333069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be00 -00030740 67.52333069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be00 -00030741 67.52336121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be10 -00030742 67.52336884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be10 -00030743 67.52339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be20 -00030744 67.52339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be20 -00030745 67.52341461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be30 -00030746 67.52342224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be30 -00030747 67.52345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be40 -00030748 67.52345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be40 -00030749 67.52347565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be50 -00030750 67.52347565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be50 -00030751 67.52349854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be60 -00030752 67.52350616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be60 -00030753 67.52352905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be70 -00030754 67.52352905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be70 -00030755 67.52355957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be80 -00030756 67.52356720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be80 -00030757 67.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be90 -00030758 67.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be90 -00030759 67.52361298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bea0 -00030760 67.52362061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bea0 -00030761 67.52365112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3beb0 -00030762 67.52365112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3beb0 -00030763 67.52367401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bec0 -00030764 67.52368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bec0 -00030765 67.52370453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bed0 -00030766 67.52370453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bed0 -00030767 67.52372742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bee0 -00030768 67.52372742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bee0 -00030769 67.52375793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bef0 -00030770 67.52376556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bef0 -00030771 67.52378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf00 -00030772 67.52378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf00 -00030773 67.52381134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf10 -00030774 67.52381897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf10 -00030775 67.52384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf20 -00030776 67.52384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf20 -00030777 67.52387238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf30 -00030778 67.52388000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf30 -00030779 67.52390289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf40 -00030780 67.52390289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf40 -00030781 67.52393341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf50 -00030782 67.52393341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf50 -00030783 67.52396393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf60 -00030784 67.52396393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf60 -00030785 67.52398682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf70 -00030786 67.52399445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf70 -00030787 67.52401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf80 -00030788 67.52401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf80 -00030789 67.52404785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf90 -00030790 67.52404785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf90 -00030791 67.52407074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa0 -00030792 67.52407837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa0 -00030793 67.52410126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb0 -00030794 67.52410126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb0 -00030795 67.52413177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc0 -00030796 67.52413177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc0 -00030797 67.52416229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd0 -00030798 67.52416229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd0 -00030799 67.52418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe0 -00030800 67.52419281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe0 -00030801 67.52421570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff0 -00030802 67.52421570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff0 -00030803 67.52424622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c000 -00030804 67.52424622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c000 -00030805 67.52427673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c010 -00030806 67.52427673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c010 -00030807 67.52429962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c020 -00030808 67.52429962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c020 -00030809 67.52433014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c030 -00030810 67.52433014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c030 -00030811 67.52436066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c040 -00030812 67.52436066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c040 -00030813 67.52439117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c050 -00030814 67.52439117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c050 -00030815 67.52441406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c060 -00030816 67.52442169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c060 -00030817 67.52444458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c070 -00030818 67.52444458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c070 -00030819 67.52447510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c080 -00030820 67.52448273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c080 -00030821 67.52450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c090 -00030822 67.52450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c090 -00030823 67.52452850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a0 -00030824 67.52453613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a0 -00030825 67.52456665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b0 -00030826 67.52456665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b0 -00030827 67.52458954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c0 -00030828 67.52459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c0 -00030829 67.52462006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d0 -00030830 67.52462006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d0 -00030831 67.52464294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e0 -00030832 67.52464294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e0 -00030833 67.52467346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f0 -00030834 67.52468109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f0 -00030835 67.52470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c100 -00030836 67.52470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c100 -00030837 67.52472687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c110 -00030838 67.52473450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c110 -00030839 67.52476501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c120 -00030840 67.52476501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c120 -00030841 67.52478790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c130 -00030842 67.52479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c130 -00030843 67.52481842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c140 -00030844 67.52481842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c140 -00030845 67.52484131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c150 -00030846 67.52484894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c150 -00030847 67.52487946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c160 -00030848 67.52487946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c160 -00030849 67.52490234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c170 -00030850 67.52490234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c170 -00030851 67.52492523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c180 -00030852 67.52493286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c180 -00030853 67.52496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c190 -00030854 67.52496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c190 -00030855 67.52498627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1a0 -00030856 67.52499390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1a0 -00030857 67.52501678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1b0 -00030858 67.52501678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1b0 -00030859 67.52503967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1c0 -00030860 67.52504730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1c0 -00030861 67.52507782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1d0 -00030862 67.52507782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1d0 -00030863 67.52510071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1e0 -00030864 67.52510834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1e0 -00030865 67.52513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1f0 -00030866 67.52513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c1f0 -00030867 67.52516174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c200 -00030868 67.52516174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c200 -00030869 67.52519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c210 -00030870 67.52519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c210 -00030871 67.52523804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c220 -00030872 67.52523804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c220 -00030873 67.52526093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c230 -00030874 67.52526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c230 -00030875 67.52529144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c240 -00030876 67.52529144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c240 -00030877 67.52532196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c250 -00030878 67.52532196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c250 -00030879 67.52535248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c260 -00030880 67.52535248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c260 -00030881 67.52537537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c270 -00030882 67.52538300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c270 -00030883 67.52540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c280 -00030884 67.52540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c280 -00030885 67.52543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c290 -00030886 67.52543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c290 -00030887 67.52546692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2a0 -00030888 67.52546692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2a0 -00030889 67.52548981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2b0 -00030890 67.52549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2b0 -00030891 67.52552032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2c0 -00030892 67.52552032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2c0 -00030893 67.52555084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2d0 -00030894 67.52555847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2d0 -00030895 67.52558136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2e0 -00030896 67.52558136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2e0 -00030897 67.52560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2f0 -00030898 67.52560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c2f0 -00030899 67.52563477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c300 -00030900 67.52563477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c300 -00030901 67.52566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c310 -00030902 67.52566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c310 -00030903 67.52568817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c320 -00030904 67.52569580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c320 -00030905 67.52571869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c330 -00030906 67.52571869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c330 -00030907 67.52574921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c340 -00030908 67.52575684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c340 -00030909 67.52577972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c350 -00030910 67.52577972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c350 -00030911 67.52580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c360 -00030912 67.52581024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c360 -00030913 67.52583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c370 -00030914 67.52583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c370 -00030915 67.52586365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c380 -00030916 67.52586365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c380 -00030917 67.52589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c390 -00030918 67.52589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c390 -00030919 67.52591705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a0 -00030920 67.52591705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a0 -00030921 67.52594757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b0 -00030922 67.52595520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b0 -00030923 67.52597809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c0 -00030924 67.52597809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c0 -00030925 67.52600098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d0 -00030926 67.52600861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d0 -00030927 67.52603149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e0 -00030928 67.52603149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e0 -00030929 67.52606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f0 -00030930 67.52606964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f0 -00030931 67.52609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c400 -00030932 67.52609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c400 -00030933 67.52611542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c410 -00030934 67.52612305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c410 -00030935 67.52615356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c420 -00030936 67.52615356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c420 -00030937 67.52617645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c430 -00030938 67.52617645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c430 -00030939 67.52619934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c440 -00030940 67.52620697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c440 -00030941 67.52622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c450 -00030942 67.52622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c450 -00030943 67.52626038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -00030944 67.52626801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c460 -00030945 67.52629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -00030946 67.52629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c470 -00030947 67.52631378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -00030948 67.52632141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c480 -00030949 67.52635193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -00030950 67.52635193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c490 -00030951 67.52637482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -00030952 67.52638245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a0 -00030953 67.52640533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -00030954 67.52640533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b0 -00030955 67.52642822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -00030956 67.52642822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4c0 -00030957 67.52645874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -00030958 67.52646637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4d0 -00030959 67.52648926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -00030960 67.52648926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4e0 -00030961 67.52651215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -00030962 67.52651978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4f0 -00030963 67.52655029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -00030964 67.52655029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c500 -00030965 67.52657318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c510 -00030966 67.52658081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c510 -00030967 67.52660370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c520 -00030968 67.52660370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c520 -00030969 67.52662659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c530 -00030970 67.52663422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c530 -00030971 67.52666473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c540 -00030972 67.52666473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c540 -00030973 67.52668762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c550 -00030974 67.52669525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c550 -00030975 67.52671814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c560 -00030976 67.52671814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c560 -00030977 67.52674866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c570 -00030978 67.52674866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c570 -00030979 67.52677917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00030980 67.52677917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00030981 67.52680206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00030982 67.52680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00030983 67.52683258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00030984 67.52683258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00030985 67.52686310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00030986 67.52686310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00030987 67.52688599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00030988 67.52689362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00030989 67.52691650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00030990 67.52691650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00030991 67.52694702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00030992 67.52694702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00030993 67.52697754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00030994 67.52697754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00030995 67.52700043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00030996 67.52700806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00030997 67.52703094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00030998 67.52703094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00030999 67.52706146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00031000 67.52706146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00031001 67.52708435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c630 -00031002 67.52709198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c630 -00031003 67.52711487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c640 -00031004 67.52711487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c640 -00031005 67.52714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c650 -00031006 67.52714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c650 -00031007 67.52717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c660 -00031008 67.52717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c660 -00031009 67.52719879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c670 -00031010 67.52720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c670 -00031011 67.52722931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c680 -00031012 67.52722931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c680 -00031013 67.52725983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c690 -00031014 67.52726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c690 -00031015 67.52729034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a0 -00031016 67.52729034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a0 -00031017 67.52731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b0 -00031018 67.52731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b0 -00031019 67.52734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c0 -00031020 67.52734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c0 -00031021 67.52737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d0 -00031022 67.52737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d0 -00031023 67.52739716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e0 -00031024 67.52740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e0 -00031025 67.52742767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f0 -00031026 67.52742767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f0 -00031027 67.52745819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c700 -00031028 67.52746582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c700 -00031029 67.52748871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c710 -00031030 67.52748871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c710 -00031031 67.52751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c720 -00031032 67.52751923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c720 -00031033 67.52754211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c730 -00031034 67.52754211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c730 -00031035 67.52757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c740 -00031036 67.52757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c740 -00031037 67.52759552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c750 -00031038 67.52760315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c750 -00031039 67.52762604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c760 -00031040 67.52762604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c760 -00031041 67.52765656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c770 -00031042 67.52766418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c770 -00031043 67.52768707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c780 -00031044 67.52768707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c780 -00031045 67.52770996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c790 -00031046 67.52771759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c790 -00031047 67.52774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7a0 -00031048 67.52774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7a0 -00031049 67.52777100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7b0 -00031050 67.52777863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7b0 -00031051 67.52780151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7c0 -00031052 67.52780151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7c0 -00031053 67.52782440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7d0 -00031054 67.52783203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7d0 -00031055 67.52786255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e0 -00031056 67.52786255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7e0 -00031057 67.52788544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f0 -00031058 67.52788544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c7f0 -00031059 67.52790833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c800 -00031060 67.52791595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c800 -00031061 67.52793884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c810 -00031062 67.52793884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c810 -00031063 67.52796936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c820 -00031064 67.52797699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c820 -00031065 67.52799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c830 -00031066 67.52799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c830 -00031067 67.52802277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c840 -00031068 67.52803040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c840 -00031069 67.52806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c850 -00031070 67.52806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c850 -00031071 67.52808380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c860 -00031072 67.52808380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c860 -00031073 67.52810669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c870 -00031074 67.52811432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c870 -00031075 67.52813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c880 -00031076 67.52813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c880 -00031077 67.52816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c890 -00031078 67.52817535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c890 -00031079 67.52819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a0 -00031080 67.52819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8a0 -00031081 67.52822113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b0 -00031082 67.52822876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8b0 -00031083 67.52825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c0 -00031084 67.52825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8c0 -00031085 67.52828217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d0 -00031086 67.52828217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8d0 -00031087 67.52830505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e0 -00031088 67.52831268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8e0 -00031089 67.52833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f0 -00031090 67.52833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c8f0 -00031091 67.52837372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c900 -00031092 67.52837372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c900 -00031093 67.52839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c910 -00031094 67.52839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c910 -00031095 67.52841949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c920 -00031096 67.52842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c920 -00031097 67.52845764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c930 -00031098 67.52845764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c930 -00031099 67.52848053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c940 -00031100 67.52848816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c940 -00031101 67.52851105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c950 -00031102 67.52851105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c950 -00031103 67.52853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c960 -00031104 67.52854156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c960 -00031105 67.52857208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c970 -00031106 67.52857208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c970 -00031107 67.52859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c980 -00031108 67.52860260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c980 -00031109 67.52862549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c990 -00031110 67.52862549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c990 -00031111 67.52865601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9a0 -00031112 67.52865601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9a0 -00031113 67.52868652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9b0 -00031114 67.52868652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9b0 -00031115 67.52870941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9c0 -00031116 67.52870941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9c0 -00031117 67.52873230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9d0 -00031118 67.52873993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9d0 -00031119 67.52877045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9e0 -00031120 67.52877045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9e0 -00031121 67.52879333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -00031122 67.52880096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -00031123 67.52882385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -00031124 67.52882385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -00031125 67.52885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -00031126 67.52885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -00031127 67.52888489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -00031128 67.52888489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -00031129 67.52890778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -00031130 67.52890778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -00031131 67.52893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -00031132 67.52893829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -00031133 67.52896881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -00031134 67.52896881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -00031135 67.52899170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -00031136 67.52899933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -00031137 67.52902222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -00031138 67.52902222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -00031139 67.52905273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -00031140 67.52905273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -00031141 67.52908325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -00031142 67.52908325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -00031143 67.52910614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa0 -00031144 67.52911377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa0 -00031145 67.52913666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab0 -00031146 67.52913666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab0 -00031147 67.52916718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac0 -00031148 67.52917480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac0 -00031149 67.52919769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad0 -00031150 67.52919769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad0 -00031151 67.52922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae0 -00031152 67.52922821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae0 -00031153 67.52925110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf0 -00031154 67.52925110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf0 -00031155 67.52928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb00 -00031156 67.52928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb00 -00031157 67.52930450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb10 -00031158 67.52931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb10 -00031159 67.52933502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb20 -00031160 67.52933502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb20 -00031161 67.52936554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb30 -00031162 67.52937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb30 -00031163 67.52939606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb40 -00031164 67.52939606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb40 -00031165 67.52942657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb50 -00031166 67.52942657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb50 -00031167 67.52944946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb60 -00031168 67.52944946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb60 -00031169 67.52947998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb70 -00031170 67.52948761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb70 -00031171 67.52951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb80 -00031172 67.52951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb80 -00031173 67.52953339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb90 -00031174 67.52954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb90 -00031175 67.52957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba0 -00031176 67.52957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba0 -00031177 67.52959442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb0 -00031178 67.52960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb0 -00031179 67.52962494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc0 -00031180 67.52962494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc0 -00031181 67.52964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd0 -00031182 67.52964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd0 -00031183 67.52967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe0 -00031184 67.52968597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe0 -00031185 67.52970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf0 -00031186 67.52970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf0 -00031187 67.52973175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc00 -00031188 67.52973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc00 -00031189 67.52976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc10 -00031190 67.52976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc10 -00031191 67.52979279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc20 -00031192 67.52980042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc20 -00031193 67.52982330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -00031194 67.52982330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -00031195 67.52984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -00031196 67.52985382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -00031197 67.52988434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -00031198 67.52988434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -00031199 67.52990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -00031200 67.52990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -00031201 67.52993011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -00031202 67.52993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -00031203 67.52996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -00031204 67.52996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -00031205 67.52999115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -00031206 67.52999878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -00031207 67.53002167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -00031208 67.53002167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -00031209 67.53004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -00031210 67.53005219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -00031211 67.53008270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -00031212 67.53008270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -00031213 67.53010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -00031214 67.53010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -00031215 67.53013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -00031216 67.53013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -00031217 67.53016663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -00031218 67.53016663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -00031219 67.53018951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -00031220 67.53019714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -00031221 67.53022003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -00031222 67.53022003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -00031223 67.53024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -00031224 67.53025055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -00031225 67.53028107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -00031226 67.53028107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -00031227 67.53030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -00031228 67.53031158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -00031229 67.53033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -00031230 67.53033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -00031231 67.53036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -00031232 67.53036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -00031233 67.53039551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -00031234 67.53039551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -00031235 67.53041840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -00031236 67.53041840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -00031237 67.53044891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -00031238 67.53044891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd90 -00031239 67.53047943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -00031240 67.53047943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cda0 -00031241 67.53050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb0 -00031242 67.53050995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdb0 -00031243 67.53053284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc0 -00031244 67.53053284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdc0 -00031245 67.53056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd0 -00031246 67.53056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdd0 -00031247 67.53059387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde0 -00031248 67.53059387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cde0 -00031249 67.53061676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf0 -00031250 67.53062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cdf0 -00031251 67.53064728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce00 -00031252 67.53064728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce00 -00031253 67.53067780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce10 -00031254 67.53067780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce10 -00031255 67.53070831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce20 -00031256 67.53070831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce20 -00031257 67.53073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce30 -00031258 67.53073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce30 -00031259 67.53076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce40 -00031260 67.53076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce40 -00031261 67.53079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -00031262 67.53079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -00031263 67.53081512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -00031264 67.53082275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -00031265 67.53084564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -00031266 67.53084564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -00031267 67.53087616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -00031268 67.53088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -00031269 67.53090668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -00031270 67.53090668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -00031271 67.53092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -00031272 67.53092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -00031273 67.53096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -00031274 67.53096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -00031275 67.53099060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -00031276 67.53099060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -00031277 67.53101349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -00031278 67.53102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -00031279 67.53104401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -00031280 67.53104401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -00031281 67.53107452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -00031282 67.53108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -00031283 67.53110504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -00031284 67.53110504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -00031285 67.53112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -00031286 67.53113556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -00031287 67.53115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -00031288 67.53115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -00031289 67.53118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -00031290 67.53118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -00031291 67.53121185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -00031292 67.53121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -00031293 67.53124237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -00031294 67.53124237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -00031295 67.53127289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -00031296 67.53128052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -00031297 67.53130341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -00031298 67.53130341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -00031299 67.53132629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -00031300 67.53133392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -00031301 67.53135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -00031302 67.53135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -00031303 67.53138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -00031304 67.53139496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -00031305 67.53141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb0 -00031306 67.53141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb0 -00031307 67.53144073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc0 -00031308 67.53144836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc0 -00031309 67.53147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd0 -00031310 67.53147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd0 -00031311 67.53150177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe0 -00031312 67.53150940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe0 -00031313 67.53153229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff0 -00031314 67.53153229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff0 -00031315 67.53155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d000 -00031316 67.53156281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d000 -00031317 67.53159332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d010 -00031318 67.53159332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d010 -00031319 67.53161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d020 -00031320 67.53161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d020 -00031321 67.53163910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d030 -00031322 67.53164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d030 -00031323 67.53167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d040 -00031324 67.53167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d040 -00031325 67.53170013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d050 -00031326 67.53170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d050 -00031327 67.53173065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d060 -00031328 67.53173065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d060 -00031329 67.53175354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d070 -00031330 67.53176117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d070 -00031331 67.53179169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d080 -00031332 67.53179169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d080 -00031333 67.53181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d090 -00031334 67.53181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d090 -00031335 67.53183746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a0 -00031336 67.53184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a0 -00031337 67.53187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b0 -00031338 67.53187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b0 -00031339 67.53189850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c0 -00031340 67.53190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c0 -00031341 67.53192902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d0 -00031342 67.53192902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d0 -00031343 67.53195190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e0 -00031344 67.53195953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e0 -00031345 67.53199005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f0 -00031346 67.53199005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f0 -00031347 67.53201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d100 -00031348 67.53202057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d100 -00031349 67.53204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d110 -00031350 67.53204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d110 -00031351 67.53207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d120 -00031352 67.53207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d120 -00031353 67.53209686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d130 -00031354 67.53210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d130 -00031355 67.53212738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d140 -00031356 67.53212738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d140 -00031357 67.53215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d150 -00031358 67.53215790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d150 -00031359 67.53218842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d160 -00031360 67.53218842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d160 -00031361 67.53221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d170 -00031362 67.53221893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d170 -00031363 67.53224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d180 -00031364 67.53224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d180 -00031365 67.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d190 -00031366 67.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d190 -00031367 67.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a0 -00031368 67.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a0 -00031369 67.53232574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b0 -00031370 67.53232574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b0 -00031371 67.53234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c0 -00031372 67.53235626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c0 -00031373 67.53238678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d0 -00031374 67.53238678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d0 -00031375 67.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e0 -00031376 67.53241730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e0 -00031377 67.53244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f0 -00031378 67.53244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f0 -00031379 67.53247070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d200 -00031380 67.53247070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d200 -00031381 67.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d210 -00031382 67.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d210 -00031383 67.53252411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d220 -00031384 67.53253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d220 -00031385 67.53255463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d230 -00031386 67.53255463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d230 -00031387 67.53258514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d240 -00031388 67.53258514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d240 -00031389 67.53260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d250 -00031390 67.53261566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d250 -00031391 67.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d260 -00031392 67.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d260 -00031393 67.53266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d270 -00031394 67.53266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d270 -00031395 67.53269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d280 -00031396 67.53269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d280 -00031397 67.53272247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d290 -00031398 67.53273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d290 -00031399 67.53275299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a0 -00031400 67.53275299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a0 -00031401 67.53278351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b0 -00031402 67.53278351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b0 -00031403 67.53281403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c0 -00031404 67.53281403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c0 -00031405 67.53283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d0 -00031406 67.53283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d0 -00031407 67.53286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e0 -00031408 67.53286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e0 -00031409 67.53289795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f0 -00031410 67.53289795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f0 -00031411 67.53292084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d300 -00031412 67.53292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d300 -00031413 67.53295135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d310 -00031414 67.53295135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d310 -00031415 67.53298187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d320 -00031416 67.53298187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d320 -00031417 67.53301239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d330 -00031418 67.53301239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d330 -00031419 67.53303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -00031420 67.53303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -00031421 67.53306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -00031422 67.53306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -00031423 67.53309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -00031424 67.53309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -00031425 67.53311920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -00031426 67.53312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -00031427 67.53314972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -00031428 67.53314972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -00031429 67.53318024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -00031430 67.53318024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -00031431 67.53321075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -00031432 67.53321075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -00031433 67.53323364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -00031434 67.53324127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -00031435 67.53326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -00031436 67.53326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -00031437 67.53329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -00031438 67.53329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -00031439 67.53332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -00031440 67.53332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -00031441 67.53334808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -00031442 67.53334808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -00031443 67.53337860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -00031444 67.53337860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -00031445 67.53340912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -00031446 67.53340912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -00031447 67.53343201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -00031448 67.53343964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -00031449 67.53346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -00031450 67.53346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -00031451 67.53349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -00031452 67.53350067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -00031453 67.53352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -00031454 67.53352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -00031455 67.53354645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -00031456 67.53355408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -00031457 67.53358459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -00031458 67.53358459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -00031459 67.53360748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -00031460 67.53360748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -00031461 67.53363037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d490 -00031462 67.53363800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d490 -00031463 67.53366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4a0 -00031464 67.53366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4a0 -00031465 67.53369141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4b0 -00031466 67.53369904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4b0 -00031467 67.53372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4c0 -00031468 67.53372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4c0 -00031469 67.53374481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4d0 -00031470 67.53375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4d0 -00031471 67.53378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4e0 -00031472 67.53378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4e0 -00031473 67.53380585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4f0 -00031474 67.53380585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d4f0 -00031475 67.53382874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d500 -00031476 67.53383636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d500 -00031477 67.53385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d510 -00031478 67.53385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d510 -00031479 67.53388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d520 -00031480 67.53389740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d520 -00031481 67.53392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d530 -00031482 67.53392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d530 -00031483 67.53394318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d540 -00031484 67.53395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d540 -00031485 67.53398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d550 -00031486 67.53398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d550 -00031487 67.53400421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d560 -00031488 67.53400421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d560 -00031489 67.53403473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d570 -00031490 67.53403473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d570 -00031491 67.53405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d580 -00031492 67.53405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d580 -00031493 67.53408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d590 -00031494 67.53409576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d590 -00031495 67.53411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a0 -00031496 67.53411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5a0 -00031497 67.53414154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b0 -00031498 67.53414917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5b0 -00031499 67.53417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c0 -00031500 67.53417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5c0 -00031501 67.53420258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d0 -00031502 67.53421021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5d0 -00031503 67.53423309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e0 -00031504 67.53423309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5e0 -00031505 67.53425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f0 -00031506 67.53425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d5f0 -00031507 67.53428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d600 -00031508 67.53429413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d600 -00031509 67.53431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d610 -00031510 67.53431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d610 -00031511 67.53433990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d620 -00031512 67.53434753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d620 -00031513 67.53437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d630 -00031514 67.53437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d630 -00031515 67.53440094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d640 -00031516 67.53440857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d640 -00031517 67.53443146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d650 -00031518 67.53443146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d650 -00031519 67.53445435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d660 -00031520 67.53446198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d660 -00031521 67.53449249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d670 -00031522 67.53449249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d670 -00031523 67.53451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d680 -00031524 67.53451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d680 -00031525 67.53453827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d690 -00031526 67.53454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d690 -00031527 67.53457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6a0 -00031528 67.53457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6a0 -00031529 67.53459930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6b0 -00031530 67.53460693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6b0 -00031531 67.53462982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6c0 -00031532 67.53462982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6c0 -00031533 67.53465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6d0 -00031534 67.53466034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6d0 -00031535 67.53469086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6e0 -00031536 67.53469086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6e0 -00031537 67.53471375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6f0 -00031538 67.53472137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d6f0 -00031539 67.53474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d700 -00031540 67.53474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d700 -00031541 67.53477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d710 -00031542 67.53477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d710 -00031543 67.53479767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d720 -00031544 67.53480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d720 -00031545 67.53482819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d730 -00031546 67.53482819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d730 -00031547 67.53485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d740 -00031548 67.53485870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d740 -00031549 67.53488922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d750 -00031550 67.53488922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d750 -00031551 67.53491211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d760 -00031552 67.53491974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d760 -00031553 67.53494263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d770 -00031554 67.53494263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d770 -00031555 67.53497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d780 -00031556 67.53497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d780 -00031557 67.53500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d790 -00031558 67.53500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d790 -00031559 67.53502655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a0 -00031560 67.53502655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7a0 -00031561 67.53504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b0 -00031562 67.53505707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7b0 -00031563 67.53508759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c0 -00031564 67.53508759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7c0 -00031565 67.53511047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d0 -00031566 67.53511810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7d0 -00031567 67.53514099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e0 -00031568 67.53514099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7e0 -00031569 67.53517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f0 -00031570 67.53517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d7f0 -00031571 67.53520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d800 -00031572 67.53520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d800 -00031573 67.53522491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d810 -00031574 67.53522491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d810 -00031575 67.53525543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d820 -00031576 67.53525543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d820 -00031577 67.53528595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d830 -00031578 67.53528595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d830 -00031579 67.53530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d840 -00031580 67.53531647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d840 -00031581 67.53533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d850 -00031582 67.53533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d850 -00031583 67.53536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d860 -00031584 67.53536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d860 -00031585 67.53540039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d870 -00031586 67.53540039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d870 -00031587 67.53542328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d880 -00031588 67.53543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d880 -00031589 67.53545380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d890 -00031590 67.53545380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d890 -00031591 67.53548431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a0 -00031592 67.53548431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a0 -00031593 67.53551483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b0 -00031594 67.53551483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b0 -00031595 67.53553772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c0 -00031596 67.53554535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c0 -00031597 67.53556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d0 -00031598 67.53556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d0 -00031599 67.53559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e0 -00031600 67.53559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e0 -00031601 67.53562164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f0 -00031602 67.53562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f0 -00031603 67.53565216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d900 -00031604 67.53565216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d900 -00031605 67.53568268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d910 -00031606 67.53568268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d910 -00031607 67.53571320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d920 -00031608 67.53571320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d920 -00031609 67.53573608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -00031610 67.53574371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d930 -00031611 67.53576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -00031612 67.53576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d940 -00031613 67.53579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -00031614 67.53579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d950 -00031615 67.53582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -00031616 67.53582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d960 -00031617 67.53585052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -00031618 67.53585052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d970 -00031619 67.53588104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -00031620 67.53588104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d980 -00031621 67.53591156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -00031622 67.53591156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d990 -00031623 67.53593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -00031624 67.53594208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a0 -00031625 67.53596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -00031626 67.53596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b0 -00031627 67.53599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -00031628 67.53600311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c0 -00031629 67.53602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -00031630 67.53602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d0 -00031631 67.53604889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -00031632 67.53605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -00031633 67.53607941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -00031634 67.53607941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -00031635 67.53610992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -00031636 67.53611755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -00031637 67.53614044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -00031638 67.53614044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -00031639 67.53616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -00031640 67.53616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -00031641 67.53619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -00031642 67.53620148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -00031643 67.53622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -00031644 67.53622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -00031645 67.53624725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -00031646 67.53625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -00031647 67.53628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -00031648 67.53628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -00031649 67.53630829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -00031650 67.53631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -00031651 67.53633881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -00031652 67.53633881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -00031653 67.53636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -00031654 67.53636932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -00031655 67.53639984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -00031656 67.53639984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -00031657 67.53642273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -00031658 67.53643036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -00031659 67.53645325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -00031660 67.53645325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -00031661 67.53648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -00031662 67.53648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -00031663 67.53650665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -00031664 67.53651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -00031665 67.53653717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -00031666 67.53653717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -00031667 67.53656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -00031668 67.53656769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -00031669 67.53659821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -00031670 67.53659821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -00031671 67.53662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -00031672 67.53662872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -00031673 67.53665161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -00031674 67.53665161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -00031675 67.53668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db40 -00031676 67.53668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db40 -00031677 67.53671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db50 -00031678 67.53671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db50 -00031679 67.53673553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db60 -00031680 67.53673553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db60 -00031681 67.53675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db70 -00031682 67.53676605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db70 -00031683 67.53679657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db80 -00031684 67.53679657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db80 -00031685 67.53681946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db90 -00031686 67.53682709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db90 -00031687 67.53684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -00031688 67.53684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -00031689 67.53688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -00031690 67.53688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -00031691 67.53691101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -00031692 67.53691101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -00031693 67.53693390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -00031694 67.53693390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -00031695 67.53695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -00031696 67.53696442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -00031697 67.53699493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -00031698 67.53699493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -00031699 67.53701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -00031700 67.53702545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -00031701 67.53704834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -00031702 67.53704834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -00031703 67.53707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -00031704 67.53707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -00031705 67.53710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -00031706 67.53710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -00031707 67.53713226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -00031708 67.53713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -00031709 67.53716278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -00031710 67.53716278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -00031711 67.53719330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -00031712 67.53719330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -00031713 67.53721619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -00031714 67.53722382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -00031715 67.53724670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -00031716 67.53724670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -00031717 67.53727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -00031718 67.53727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -00031719 67.53730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -00031720 67.53730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -00031721 67.53733063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -00031722 67.53733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -00031723 67.53736115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -00031724 67.53736115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -00031725 67.53739166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -00031726 67.53739166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -00031727 67.53742218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -00031728 67.53742218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -00031729 67.53744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -00031730 67.53744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -00031731 67.53747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd00 -00031732 67.53747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd00 -00031733 67.53750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd10 -00031734 67.53750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd10 -00031735 67.53752899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd20 -00031736 67.53753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd20 -00031737 67.53755951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd30 -00031738 67.53755951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd30 -00031739 67.53759003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd40 -00031740 67.53759003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd40 -00031741 67.53762054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd50 -00031742 67.53762054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd50 -00031743 67.53764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd60 -00031744 67.53765106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd60 -00031745 67.53767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd70 -00031746 67.53767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd70 -00031747 67.53770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd80 -00031748 67.53770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd80 -00031749 67.53772736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd90 -00031750 67.53773499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd90 -00031751 67.53775787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda0 -00031752 67.53775787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda0 -00031753 67.53778839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb0 -00031754 67.53778839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb0 -00031755 67.53781891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc0 -00031756 67.53781891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc0 -00031757 67.53784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd0 -00031758 67.53784943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd0 -00031759 67.53787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde0 -00031760 67.53787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde0 -00031761 67.53790283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf0 -00031762 67.53791046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf0 -00031763 67.53793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de00 -00031764 67.53793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de00 -00031765 67.53795624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de10 -00031766 67.53795624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de10 -00031767 67.53798676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de20 -00031768 67.53798676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de20 -00031769 67.53801727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de30 -00031770 67.53801727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de30 -00031771 67.53804016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de40 -00031772 67.53804779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de40 -00031773 67.53807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de50 -00031774 67.53807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de50 -00031775 67.53810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de60 -00031776 67.53810883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de60 -00031777 67.53813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de70 -00031778 67.53813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de70 -00031779 67.53815460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de80 -00031780 67.53816223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de80 -00031781 67.53818512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de90 -00031782 67.53818512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de90 -00031783 67.53821564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea0 -00031784 67.53821564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea0 -00031785 67.53823853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb0 -00031786 67.53824615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb0 -00031787 67.53826904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec0 -00031788 67.53826904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec0 -00031789 67.53829956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded0 -00031790 67.53830719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded0 -00031791 67.53833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee0 -00031792 67.53833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee0 -00031793 67.53835297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def0 -00031794 67.53836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def0 -00031795 67.53838348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df00 -00031796 67.53838348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df00 -00031797 67.53841400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df10 -00031798 67.53842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df10 -00031799 67.53844452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df20 -00031800 67.53844452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df20 -00031801 67.53846741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df30 -00031802 67.53847504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df30 -00031803 67.53850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df40 -00031804 67.53850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df40 -00031805 67.53852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df50 -00031806 67.53852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df50 -00031807 67.53855133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df60 -00031808 67.53855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df60 -00031809 67.53858185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df70 -00031810 67.53858185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df70 -00031811 67.53861237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df80 -00031812 67.53862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df80 -00031813 67.53864288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df90 -00031814 67.53864288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df90 -00031815 67.53866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa0 -00031816 67.53867340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa0 -00031817 67.53870392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb0 -00031818 67.53870392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb0 -00031819 67.53872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc0 -00031820 67.53873444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc0 -00031821 67.53875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd0 -00031822 67.53875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd0 -00031823 67.53878021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe0 -00031824 67.53878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe0 -00031825 67.53881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff0 -00031826 67.53881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff0 -00031827 67.53884125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e000 -00031828 67.53884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e000 -00031829 67.53887177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e010 -00031830 67.53887177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e010 -00031831 67.53890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e020 -00031832 67.53890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e020 -00031833 67.53893280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e030 -00031834 67.53893280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e030 -00031835 67.53895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e040 -00031836 67.53896332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e040 -00031837 67.53898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e050 -00031838 67.53898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e050 -00031839 67.53901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e060 -00031840 67.53902435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e060 -00031841 67.53904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e070 -00031842 67.53904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e070 -00031843 67.53907013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e080 -00031844 67.53907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e080 -00031845 67.53910065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e090 -00031846 67.53910065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e090 -00031847 67.53913116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a0 -00031848 67.53913116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a0 -00031849 67.53915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b0 -00031850 67.53916168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b0 -00031851 67.53918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c0 -00031852 67.53918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c0 -00031853 67.53921509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d0 -00031854 67.53922272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d0 -00031855 67.53924561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e0 -00031856 67.53924561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e0 -00031857 67.53926849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f0 -00031858 67.53927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f0 -00031859 67.53929901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e100 -00031860 67.53929901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e100 -00031861 67.53932953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e110 -00031862 67.53933716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e110 -00031863 67.53936005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e120 -00031864 67.53936005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e120 -00031865 67.53938293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e130 -00031866 67.53939056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e130 -00031867 67.53942108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e140 -00031868 67.53942108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e140 -00031869 67.53944397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e150 -00031870 67.53945160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e150 -00031871 67.53947449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e160 -00031872 67.53947449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e160 -00031873 67.53949738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e170 -00031874 67.53950500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e170 -00031875 67.53953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e180 -00031876 67.53953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e180 -00031877 67.53955841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e190 -00031878 67.53956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e190 -00031879 67.53958893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a0 -00031880 67.53958893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a0 -00031881 67.53961945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b0 -00031882 67.53961945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b0 -00031883 67.53964996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c0 -00031884 67.53964996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c0 -00031885 67.53967285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d0 -00031886 67.53967285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d0 -00031887 67.53969574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e0 -00031888 67.53970337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e0 -00031889 67.53973389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f0 -00031890 67.53973389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f0 -00031891 67.53975677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e200 -00031892 67.53976440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e200 -00031893 67.53978729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e210 -00031894 67.53978729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e210 -00031895 67.53981781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e220 -00031896 67.53981781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e220 -00031897 67.53984833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e230 -00031898 67.53984833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e230 -00031899 67.53987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e240 -00031900 67.53987885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e240 -00031901 67.53990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e250 -00031902 67.53990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e250 -00031903 67.53993225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e260 -00031904 67.53993225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e260 -00031905 67.53995514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e270 -00031906 67.53996277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e270 -00031907 67.53998566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e280 -00031908 67.53998566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e280 -00031909 67.54001617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e290 -00031910 67.54001617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e290 -00031911 67.54004669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a0 -00031912 67.54004669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a0 -00031913 67.54006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b0 -00031914 67.54007721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b0 -00031915 67.54010010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c0 -00031916 67.54010010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c0 -00031917 67.54013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d0 -00031918 67.54013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d0 -00031919 67.54016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e0 -00031920 67.54016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e0 -00031921 67.54018402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f0 -00031922 67.54018402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f0 -00031923 67.54021454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e300 -00031924 67.54021454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e300 -00031925 67.54024506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e310 -00031926 67.54024506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e310 -00031927 67.54026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e320 -00031928 67.54027557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e320 -00031929 67.54029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e330 -00031930 67.54029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e330 -00031931 67.54032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e340 -00031932 67.54033661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e340 -00031933 67.54035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e350 -00031934 67.54035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e350 -00031935 67.54038239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e360 -00031936 67.54039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e360 -00031937 67.54041290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e370 -00031938 67.54041290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e370 -00031939 67.54044342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e380 -00031940 67.54045105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e380 -00031941 67.54047394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e390 -00031942 67.54047394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e390 -00031943 67.54049683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a0 -00031944 67.54050446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a0 -00031945 67.54053497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b0 -00031946 67.54053497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b0 -00031947 67.54055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c0 -00031948 67.54055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c0 -00031949 67.54058075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d0 -00031950 67.54058838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d0 -00031951 67.54061127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3e0 -00031952 67.54061127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3e0 -00031953 67.54064178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3f0 -00031954 67.54064941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3f0 -00031955 67.54067230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e400 -00031956 67.54067230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e400 -00031957 67.54069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e410 -00031958 67.54070282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e410 -00031959 67.54073334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e420 -00031960 67.54073334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e420 -00031961 67.54075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e430 -00031962 67.54075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e430 -00031963 67.54077911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -00031964 67.54078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -00031965 67.54080963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -00031966 67.54080963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -00031967 67.54084015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -00031968 67.54084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -00031969 67.54087067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -00031970 67.54087067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -00031971 67.54089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -00031972 67.54090118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -00031973 67.54093170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -00031974 67.54093170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -00031975 67.54095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -00031976 67.54096222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -00031977 67.54098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -00031978 67.54098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -00031979 67.54100800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -00031980 67.54101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -00031981 67.54104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -00031982 67.54104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -00031983 67.54106903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -00031984 67.54106903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -00031985 67.54109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -00031986 67.54109955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -00031987 67.54113007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -00031988 67.54113007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -00031989 67.54115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -00031990 67.54116058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -00031991 67.54118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -00031992 67.54118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -00031993 67.54120636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -00031994 67.54121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -00031995 67.54124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -00031996 67.54124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -00031997 67.54126740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -00031998 67.54127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -00031999 67.54129791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -00032000 67.54129791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -00032001 67.54132843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -00032002 67.54132843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -00032003 67.54135895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -00032004 67.54135895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -00032005 67.54138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -00032006 67.54138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -00032007 67.54140472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5a0 -00032008 67.54141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5a0 -00032009 67.54144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5b0 -00032010 67.54144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5b0 -00032011 67.54146576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5c0 -00032012 67.54147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5c0 -00032013 67.54149628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5d0 -00032014 67.54149628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5d0 -00032015 67.54152679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5e0 -00032016 67.54152679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5e0 -00032017 67.54155731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5f0 -00032018 67.54155731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e5f0 -00032019 67.54158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e600 -00032020 67.54158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e600 -00032021 67.54161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e610 -00032022 67.54161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e610 -00032023 67.54164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e620 -00032024 67.54164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e620 -00032025 67.54166412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e630 -00032026 67.54167175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e630 -00032027 67.54169464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e640 -00032028 67.54169464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e640 -00032029 67.54172516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e650 -00032030 67.54172516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e650 -00032031 67.54175568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e660 -00032032 67.54175568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e660 -00032033 67.54177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e670 -00032034 67.54178619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e670 -00032035 67.54180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e680 -00032036 67.54180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e680 -00032037 67.54183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e690 -00032038 67.54183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e690 -00032039 67.54186249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a0 -00032040 67.54187012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6a0 -00032041 67.54189301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b0 -00032042 67.54189301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6b0 -00032043 67.54192352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c0 -00032044 67.54192352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6c0 -00032045 67.54195404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d0 -00032046 67.54195404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6d0 -00032047 67.54197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e0 -00032048 67.54198456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e0 -00032049 67.54200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f0 -00032050 67.54200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f0 -00032051 67.54203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e700 -00032052 67.54203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e700 -00032053 67.54206848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e710 -00032054 67.54206848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e710 -00032055 67.54209137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e720 -00032056 67.54209137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e720 -00032057 67.54212189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e730 -00032058 67.54212189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e730 -00032059 67.54215240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e740 -00032060 67.54215240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e740 -00032061 67.54217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e750 -00032062 67.54218292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e750 -00032063 67.54220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e760 -00032064 67.54220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e760 -00032065 67.54223633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e770 -00032066 67.54223633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e770 -00032067 67.54226685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e780 -00032068 67.54226685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e780 -00032069 67.54228973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e790 -00032070 67.54228973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e790 -00032071 67.54232025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a0 -00032072 67.54232025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a0 -00032073 67.54235077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b0 -00032074 67.54235077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b0 -00032075 67.54237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c0 -00032076 67.54238129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c0 -00032077 67.54240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d0 -00032078 67.54240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d0 -00032079 67.54243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e0 -00032080 67.54243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e0 -00032081 67.54246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f0 -00032082 67.54246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f0 -00032083 67.54249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e800 -00032084 67.54250336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e800 -00032085 67.54252625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e810 -00032086 67.54253387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e810 -00032087 67.54255676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e820 -00032088 67.54255676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e820 -00032089 67.54258728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e830 -00032090 67.54259491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e830 -00032091 67.54261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e840 -00032092 67.54261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e840 -00032093 67.54264069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e850 -00032094 67.54264832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e850 -00032095 67.54267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e860 -00032096 67.54267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e860 -00032097 67.54270172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e870 -00032098 67.54270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e870 -00032099 67.54273224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e880 -00032100 67.54273224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e880 -00032101 67.54275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e890 -00032102 67.54276276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e890 -00032103 67.54279327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a0 -00032104 67.54279327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a0 -00032105 67.54281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b0 -00032106 67.54282379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b0 -00032107 67.54284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c0 -00032108 67.54284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c0 -00032109 67.54287720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d0 -00032110 67.54287720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d0 -00032111 67.54290771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e0 -00032112 67.54290771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e0 -00032113 67.54293060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f0 -00032114 67.54293060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f0 -00032115 67.54295349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e900 -00032116 67.54296112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e900 -00032117 67.54299164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e910 -00032118 67.54299164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e910 -00032119 67.54301453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e920 -00032120 67.54302216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e920 -00032121 67.54304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e930 -00032122 67.54304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e930 -00032123 67.54307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e940 -00032124 67.54307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e940 -00032125 67.54310608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e950 -00032126 67.54310608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e950 -00032127 67.54312897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e960 -00032128 67.54312897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e960 -00032129 67.54315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e970 -00032130 67.54315948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e970 -00032131 67.54319000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e980 -00032132 67.54319000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e980 -00032133 67.54321289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e990 -00032134 67.54322052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e990 -00032135 67.54324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a0 -00032136 67.54324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a0 -00032137 67.54327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b0 -00032138 67.54327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b0 -00032139 67.54330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c0 -00032140 67.54330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c0 -00032141 67.54332733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d0 -00032142 67.54333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d0 -00032143 67.54335785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e0 -00032144 67.54335785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e0 -00032145 67.54338837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f0 -00032146 67.54338837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f0 -00032147 67.54341888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea00 -00032148 67.54341888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea00 -00032149 67.54344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea10 -00032150 67.54344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea10 -00032151 67.54347229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea20 -00032152 67.54347229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea20 -00032153 67.54350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -00032154 67.54350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -00032155 67.54352570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -00032156 67.54353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -00032157 67.54355621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -00032158 67.54355621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -00032159 67.54358673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -00032160 67.54358673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -00032161 67.54361725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -00032162 67.54361725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -00032163 67.54364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -00032164 67.54364777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -00032165 67.54367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -00032166 67.54367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -00032167 67.54370117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -00032168 67.54370117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -00032169 67.54372406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -00032170 67.54373169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -00032171 67.54375458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -00032172 67.54375458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -00032173 67.54378510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -00032174 67.54378510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -00032175 67.54381561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -00032176 67.54381561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -00032177 67.54383850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -00032178 67.54384613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -00032179 67.54386902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -00032180 67.54386902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -00032181 67.54389954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -00032182 67.54389954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -00032183 67.54392242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -00032184 67.54393005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -00032185 67.54395294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -00032186 67.54395294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -00032187 67.54398346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -00032188 67.54398346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -00032189 67.54401398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -00032190 67.54401398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -00032191 67.54403687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -00032192 67.54404449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -00032193 67.54406738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -00032194 67.54406738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -00032195 67.54409790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -00032196 67.54410553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -00032197 67.54412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb90 -00032198 67.54412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb90 -00032199 67.54415131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba0 -00032200 67.54415131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba0 -00032201 67.54418182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb0 -00032202 67.54418182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb0 -00032203 67.54421234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc0 -00032204 67.54421234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc0 -00032205 67.54423523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd0 -00032206 67.54424286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd0 -00032207 67.54426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe0 -00032208 67.54426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe0 -00032209 67.54429626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf0 -00032210 67.54430389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf0 -00032211 67.54432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec00 -00032212 67.54432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec00 -00032213 67.54434967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec10 -00032214 67.54435730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec10 -00032215 67.54438019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec20 -00032216 67.54438019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec20 -00032217 67.54441071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec30 -00032218 67.54441071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec30 -00032219 67.54443359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec40 -00032220 67.54444122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec40 -00032221 67.54446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec50 -00032222 67.54446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec50 -00032223 67.54449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec60 -00032224 67.54450226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec60 -00032225 67.54452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec70 -00032226 67.54452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec70 -00032227 67.54454803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec80 -00032228 67.54455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec80 -00032229 67.54458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec90 -00032230 67.54458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec90 -00032231 67.54460907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca0 -00032232 67.54461670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca0 -00032233 67.54463959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb0 -00032234 67.54463959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb0 -00032235 67.54466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc0 -00032236 67.54466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecc0 -00032237 67.54469299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd0 -00032238 67.54470062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd0 -00032239 67.54472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece0 -00032240 67.54472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece0 -00032241 67.54474640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf0 -00032242 67.54475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf0 -00032243 67.54478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed00 -00032244 67.54478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed00 -00032245 67.54480743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed10 -00032246 67.54481506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed10 -00032247 67.54483795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed20 -00032248 67.54483795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed20 -00032249 67.54486084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed30 -00032250 67.54486084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed30 -00032251 67.54489899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed40 -00032252 67.54489899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed40 -00032253 67.54492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed50 -00032254 67.54492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed50 -00032255 67.54494476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed60 -00032256 67.54495239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed60 -00032257 67.54498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed70 -00032258 67.54498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed70 -00032259 67.54500580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed80 -00032260 67.54501343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed80 -00032261 67.54503632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed90 -00032262 67.54503632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed90 -00032263 67.54505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda0 -00032264 67.54505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda0 -00032265 67.54509735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb0 -00032266 67.54509735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb0 -00032267 67.54512024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc0 -00032268 67.54512024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc0 -00032269 67.54514313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd0 -00032270 67.54515076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd0 -00032271 67.54518127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede0 -00032272 67.54518127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede0 -00032273 67.54520416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf0 -00032274 67.54521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf0 -00032275 67.54523468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee00 -00032276 67.54523468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee00 -00032277 67.54525757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee10 -00032278 67.54526520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee10 -00032279 67.54529572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee20 -00032280 67.54529572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee20 -00032281 67.54531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee30 -00032282 67.54532623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee30 -00032283 67.54534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee40 -00032284 67.54534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee40 -00032285 67.54537964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee50 -00032286 67.54537964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee50 -00032287 67.54541016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee60 -00032288 67.54541016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee60 -00032289 67.54543304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee70 -00032290 67.54543304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee70 -00032291 67.54545593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee80 -00032292 67.54546356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee80 -00032293 67.54549408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee90 -00032294 67.54549408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee90 -00032295 67.54551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea0 -00032296 67.54552460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea0 -00032297 67.54554749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb0 -00032298 67.54554749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb0 -00032299 67.54557800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec0 -00032300 67.54557800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec0 -00032301 67.54560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed0 -00032302 67.54560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed0 -00032303 67.54563141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee0 -00032304 67.54563141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee0 -00032305 67.54566193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef0 -00032306 67.54566193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef0 -00032307 67.54569244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef00 -00032308 67.54569244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef00 -00032309 67.54571533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef10 -00032310 67.54572296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef10 -00032311 67.54574585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef20 -00032312 67.54574585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef20 -00032313 67.54577637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef30 -00032314 67.54577637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef30 -00032315 67.54580688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef40 -00032316 67.54580688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef40 -00032317 67.54582977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef50 -00032318 67.54582977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef50 -00032319 67.54586029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef60 -00032320 67.54586029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef60 -00032321 67.54589081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef70 -00032322 67.54589081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef70 -00032323 67.54591370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef80 -00032324 67.54592133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef80 -00032325 67.54594421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef90 -00032326 67.54594421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef90 -00032327 67.54597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa0 -00032328 67.54597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa0 -00032329 67.54600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb0 -00032330 67.54600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb0 -00032331 67.54602814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc0 -00032332 67.54603577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc0 -00032333 67.54605865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd0 -00032334 67.54605865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd0 -00032335 67.54608917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe0 -00032336 67.54608917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe0 -00032337 67.54611969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff0 -00032338 67.54611969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff0 -00032339 67.54614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f000 -00032340 67.54615021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f000 -00032341 67.54617310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f010 -00032342 67.54617310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f010 -00032343 67.54620361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f020 -00032344 67.54620361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f020 -00032345 67.54622650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f030 -00032346 67.54623413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f030 -00032347 67.54625702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f040 -00032348 67.54625702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f040 -00032349 67.54628754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f050 -00032350 67.54628754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f050 -00032351 67.54631805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f060 -00032352 67.54631805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f060 -00032353 67.54634094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f070 -00032354 67.54634857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f070 -00032355 67.54637146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f080 -00032356 67.54637146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f080 -00032357 67.54640198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f090 -00032358 67.54640961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f090 -00032359 67.54643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a0 -00032360 67.54643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a0 -00032361 67.54645538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b0 -00032362 67.54645538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b0 -00032363 67.54648590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c0 -00032364 67.54648590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c0 -00032365 67.54651642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0d0 -00032366 67.54651642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0d0 -00032367 67.54653931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0e0 -00032368 67.54654694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0e0 -00032369 67.54656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0f0 -00032370 67.54656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0f0 -00032371 67.54660034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f100 -00032372 67.54660797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f100 -00032373 67.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f110 -00032374 67.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f110 -00032375 67.54665375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f120 -00032376 67.54666138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f120 -00032377 67.54668427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -00032378 67.54668427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -00032379 67.54671478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -00032380 67.54672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -00032381 67.54674530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -00032382 67.54674530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -00032383 67.54676819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -00032384 67.54676819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -00032385 67.54679871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -00032386 67.54680634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -00032387 67.54682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -00032388 67.54682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -00032389 67.54685211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -00032390 67.54685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -00032391 67.54688263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -00032392 67.54688263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -00032393 67.54691315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -00032394 67.54692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -00032395 67.54694366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -00032396 67.54694366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -00032397 67.54696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -00032398 67.54697418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -00032399 67.54700470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -00032400 67.54700470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -00032401 67.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -00032402 67.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -00032403 67.54705048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -00032404 67.54705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -00032405 67.54708099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -00032406 67.54708099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -00032407 67.54711151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -00032408 67.54711914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -00032409 67.54714203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -00032410 67.54714203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -00032411 67.54716492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -00032412 67.54717255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -00032413 67.54720306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -00032414 67.54720306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -00032415 67.54722595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -00032416 67.54723358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -00032417 67.54725647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -00032418 67.54725647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -00032419 67.54728699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -00032420 67.54728699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -00032421 67.54731750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f290 -00032422 67.54731750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f290 -00032423 67.54734039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2a0 -00032424 67.54734039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2a0 -00032425 67.54737091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2b0 -00032426 67.54737091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2b0 -00032427 67.54740143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2c0 -00032428 67.54740143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2c0 -00032429 67.54742432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2d0 -00032430 67.54743195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2d0 -00032431 67.54745483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2e0 -00032432 67.54745483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2e0 -00032433 67.54748535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2f0 -00032434 67.54748535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f2f0 -00032435 67.54751587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f300 -00032436 67.54751587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f300 -00032437 67.54753876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f310 -00032438 67.54754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f310 -00032439 67.54756927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f320 -00032440 67.54756927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f320 -00032441 67.54759979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f330 -00032442 67.54759979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f330 -00032443 67.54762268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f340 -00032444 67.54763031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f340 -00032445 67.54765320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f350 -00032446 67.54765320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f350 -00032447 67.54768372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f360 -00032448 67.54768372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f360 -00032449 67.54771423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f370 -00032450 67.54771423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f370 -00032451 67.54773712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f380 -00032452 67.54774475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f380 -00032453 67.54776764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f390 -00032454 67.54776764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f390 -00032455 67.54779816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a0 -00032456 67.54779816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a0 -00032457 67.54782104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b0 -00032458 67.54782867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b0 -00032459 67.54785156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c0 -00032460 67.54785156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c0 -00032461 67.54788208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -00032462 67.54788208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -00032463 67.54791260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -00032464 67.54791260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -00032465 67.54793549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -00032466 67.54794312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -00032467 67.54796600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -00032468 67.54796600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -00032469 67.54799652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -00032470 67.54799652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -00032471 67.54802704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -00032472 67.54802704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -00032473 67.54804993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -00032474 67.54804993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -00032475 67.54808044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -00032476 67.54808044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -00032477 67.54811096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -00032478 67.54811096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -00032479 67.54813385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -00032480 67.54814148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -00032481 67.54816437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -00032482 67.54816437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -00032483 67.54819489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -00032484 67.54819489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -00032485 67.54822540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -00032486 67.54822540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -00032487 67.54824829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -00032488 67.54824829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -00032489 67.54827881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -00032490 67.54827881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -00032491 67.54830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -00032492 67.54830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -00032493 67.54833221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -00032494 67.54833984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -00032495 67.54836273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -00032496 67.54836273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -00032497 67.54839325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -00032498 67.54839325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -00032499 67.54842377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -00032500 67.54842377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -00032501 67.54844666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -00032502 67.54845428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -00032503 67.54847717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 -00032504 67.54847717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 -00032505 67.54850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f530 -00032506 67.54850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f530 -00032507 67.54853058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f540 -00032508 67.54853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f540 -00032509 67.54856110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f550 -00032510 67.54856110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f550 -00032511 67.54859161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f560 -00032512 67.54859161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f560 -00032513 67.54862213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f570 -00032514 67.54862213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f570 -00032515 67.54864502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f580 -00032516 67.54865265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f580 -00032517 67.54867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f590 -00032518 67.54867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f590 -00032519 67.54870605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a0 -00032520 67.54871368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a0 -00032521 67.54873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b0 -00032522 67.54873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b0 -00032523 67.54875946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c0 -00032524 67.54875946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c0 -00032525 67.54878998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d0 -00032526 67.54878998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d0 -00032527 67.54882050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e0 -00032528 67.54882050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e0 -00032529 67.54884338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f0 -00032530 67.54885101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f0 -00032531 67.54887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f600 -00032532 67.54887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f600 -00032533 67.54890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f610 -00032534 67.54891205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f610 -00032535 67.54893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f620 -00032536 67.54893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f620 -00032537 67.54895782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f630 -00032538 67.54896545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f630 -00032539 67.54898834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f640 -00032540 67.54898834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f640 -00032541 67.54901886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f650 -00032542 67.54901886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f650 -00032543 67.54904175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f660 -00032544 67.54904938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f660 -00032545 67.54907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f670 -00032546 67.54907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f670 -00032547 67.54910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f680 -00032548 67.54911041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f680 -00032549 67.54913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f690 -00032550 67.54913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f690 -00032551 67.54915619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a0 -00032552 67.54916382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a0 -00032553 67.54918671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b0 -00032554 67.54918671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b0 -00032555 67.54921722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c0 -00032556 67.54921722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c0 -00032557 67.54924774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d0 -00032558 67.54924774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d0 -00032559 67.54927063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e0 -00032560 67.54927063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e0 -00032561 67.54930115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f0 -00032562 67.54930878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f0 -00032563 67.54933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f700 -00032564 67.54933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f700 -00032565 67.54935455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f710 -00032566 67.54936218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f710 -00032567 67.54938507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f720 -00032568 67.54938507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f720 -00032569 67.54941559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f730 -00032570 67.54942322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f730 -00032571 67.54944611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f740 -00032572 67.54944611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f740 -00032573 67.54946899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f750 -00032574 67.54947662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f750 -00032575 67.54950714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f760 -00032576 67.54950714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f760 -00032577 67.54953003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f770 -00032578 67.54953003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f770 -00032579 67.54955292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f780 -00032580 67.54956055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f780 -00032581 67.54958344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f790 -00032582 67.54958344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f790 -00032583 67.54961395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a0 -00032584 67.54962158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a0 -00032585 67.54964447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b0 -00032586 67.54964447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b0 -00032587 67.54966736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c0 -00032588 67.54967499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c0 -00032589 67.54970551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d0 -00032590 67.54970551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d0 -00032591 67.54972839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e0 -00032592 67.54973602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e0 -00032593 67.54975891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f0 -00032594 67.54975891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f0 -00032595 67.54978180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f800 -00032596 67.54978180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f800 -00032597 67.54981995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f810 -00032598 67.54981995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f810 -00032599 67.54984283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f820 -00032600 67.54984283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f820 -00032601 67.54986572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f830 -00032602 67.54987335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f830 -00032603 67.54990387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f840 -00032604 67.54990387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f840 -00032605 67.54992676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -00032606 67.54993439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -00032607 67.54995728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -00032608 67.54995728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -00032609 67.54998779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -00032610 67.54998779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -00032611 67.55001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -00032612 67.55001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -00032613 67.55004120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -00032614 67.55004120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -00032615 67.55006409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -00032616 67.55007172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -00032617 67.55010223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -00032618 67.55010223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -00032619 67.55012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -00032620 67.55013275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -00032621 67.55015564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -00032622 67.55015564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -00032623 67.55018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -00032624 67.55018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -00032625 67.55021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -00032626 67.55021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -00032627 67.55023956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -00032628 67.55024719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f900 -00032629 67.55027008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -00032630 67.55027008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f910 -00032631 67.55030060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -00032632 67.55030060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f920 -00032633 67.55032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -00032634 67.55033112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f930 -00032635 67.55035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -00032636 67.55035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f940 -00032637 67.55038452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -00032638 67.55038452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f950 -00032639 67.55041504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -00032640 67.55041504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f960 -00032641 67.55043793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -00032642 67.55044556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f970 -00032643 67.55046844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -00032644 67.55046844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f980 -00032645 67.55049896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -00032646 67.55049896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f990 -00032647 67.55052948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -00032648 67.55052948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a0 -00032649 67.55055237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -00032650 67.55055237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -00032651 67.55058289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -00032652 67.55058289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -00032653 67.55061340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -00032654 67.55061340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -00032655 67.55063629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -00032656 67.55064392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -00032657 67.55066681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -00032658 67.55066681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -00032659 67.55069733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -00032660 67.55069733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -00032661 67.55072784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -00032662 67.55072784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -00032663 67.55075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -00032664 67.55075836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -00032665 67.55078125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -00032666 67.55078125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -00032667 67.55081177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -00032668 67.55081177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -00032669 67.55083466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -00032670 67.55084229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -00032671 67.55086517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -00032672 67.55086517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -00032673 67.55089569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -00032674 67.55089569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -00032675 67.55092621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -00032676 67.55092621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -00032677 67.55094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -00032678 67.55095673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -00032679 67.55097961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -00032680 67.55097961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -00032681 67.55101013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -00032682 67.55101776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -00032683 67.55104065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -00032684 67.55104065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -00032685 67.55106354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -00032686 67.55106354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -00032687 67.55109406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -00032688 67.55109406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -00032689 67.55112457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -00032690 67.55112457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -00032691 67.55114746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -00032692 67.55115509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -00032693 67.55117798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -00032694 67.55117798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -00032695 67.55120850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -00032696 67.55121613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -00032697 67.55123901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -00032698 67.55123901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -00032699 67.55126190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -00032700 67.55126190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -00032701 67.55129242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -00032702 67.55129242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -00032703 67.55132294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -00032704 67.55132294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -00032705 67.55134583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb70 -00032706 67.55135345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb70 -00032707 67.55137634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb80 -00032708 67.55137634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb80 -00032709 67.55140686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb90 -00032710 67.55141449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb90 -00032711 67.55143738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba0 -00032712 67.55143738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba0 -00032713 67.55146027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb0 -00032714 67.55146790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb0 -00032715 67.55149078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc0 -00032716 67.55149078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc0 -00032717 67.55152130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd0 -00032718 67.55152130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd0 -00032719 67.55155182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe0 -00032720 67.55155182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe0 -00032721 67.55157471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf0 -00032722 67.55157471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf0 -00032723 67.55160522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc00 -00032724 67.55161285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc00 -00032725 67.55163574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -00032726 67.55163574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -00032727 67.55165863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -00032728 67.55166626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -00032729 67.55168915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -00032730 67.55168915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -00032731 67.55171967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -00032732 67.55172729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -00032733 67.55175018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -00032734 67.55175018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -00032735 67.55177307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -00032736 67.55177307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -00032737 67.55180359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -00032738 67.55181122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -00032739 67.55183411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -00032740 67.55183411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -00032741 67.55185699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -00032742 67.55186462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -00032743 67.55188751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -00032744 67.55188751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -00032745 67.55191803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -00032746 67.55192566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -00032747 67.55194855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -00032748 67.55194855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -00032749 67.55197144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -00032750 67.55197144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -00032751 67.55200195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -00032752 67.55200958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -00032753 67.55203247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -00032754 67.55203247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -00032755 67.55205536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -00032756 67.55206299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -00032757 67.55208588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -00032758 67.55208588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -00032759 67.55211639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -00032760 67.55212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -00032761 67.55214691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -00032762 67.55214691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -00032763 67.55216980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -00032764 67.55217743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -00032765 67.55220795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -00032766 67.55220795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -00032767 67.55223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -00032768 67.55223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -00032769 67.55225372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd70 -00032770 67.55226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd70 -00032771 67.55228424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd80 -00032772 67.55228424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd80 -00032773 67.55231476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd90 -00032774 67.55232239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd90 -00032775 67.55234528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda0 -00032776 67.55234528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda0 -00032777 67.55236816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb0 -00032778 67.55237579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb0 -00032779 67.55240631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc0 -00032780 67.55240631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc0 -00032781 67.55242920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd0 -00032782 67.55243683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd0 -00032783 67.55245972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde0 -00032784 67.55245972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde0 -00032785 67.55248260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf0 -00032786 67.55248260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf0 -00032787 67.55251312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe00 -00032788 67.55252075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe00 -00032789 67.55254364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe10 -00032790 67.55254364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe10 -00032791 67.55256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe20 -00032792 67.55257416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe20 -00032793 67.55260468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe30 -00032794 67.55260468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe30 -00032795 67.55262756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe40 -00032796 67.55263519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe40 -00032797 67.55265808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe50 -00032798 67.55265808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe50 -00032799 67.55268860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe60 -00032800 67.55268860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe60 -00032801 67.55271149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe70 -00032802 67.55271912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe70 -00032803 67.55274200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe80 -00032804 67.55274200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe80 -00032805 67.55276489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe90 -00032806 67.55277252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe90 -00032807 67.55280304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea0 -00032808 67.55280304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea0 -00032809 67.55282593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb0 -00032810 67.55283356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb0 -00032811 67.55285645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec0 -00032812 67.55285645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec0 -00032813 67.55288696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed0 -00032814 67.55288696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed0 -00032815 67.55291748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee0 -00032816 67.55291748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee0 -00032817 67.55294037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef0 -00032818 67.55294037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef0 -00032819 67.55296326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff00 -00032820 67.55297089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff00 -00032821 67.55300140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff10 -00032822 67.55300140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff10 -00032823 67.55302429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff20 -00032824 67.55303192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff20 -00032825 67.55305481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff30 -00032826 67.55305481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff30 -00032827 67.55308533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff40 -00032828 67.55308533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff40 -00032829 67.55311584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff50 -00032830 67.55311584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff50 -00032831 67.55313873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff60 -00032832 67.55314636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff60 -00032833 67.55316925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff70 -00032834 67.55316925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff70 -00032835 67.55319977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff80 -00032836 67.55319977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff80 -00032837 67.55322266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff90 -00032838 67.55323029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff90 -00032839 67.55325317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa0 -00032840 67.55325317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa0 -00032841 67.55328369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb0 -00032842 67.55328369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb0 -00032843 67.55331421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc0 -00032844 67.55331421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc0 -00032845 67.55333710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd0 -00032846 67.55334473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd0 -00032847 67.55336761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe0 -00032848 67.55336761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe0 -00032849 67.55339813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff0 -00032850 67.55339813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff0 -00032851 67.55342865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40000 -00032852 67.55342865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40000 -00032853 67.55345154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40010 -00032854 67.55345917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40010 -00032855 67.55348206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40020 -00032856 67.55348206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40020 -00032857 67.55351257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40030 -00032858 67.55351257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40030 -00032859 67.55353546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40040 -00032860 67.55354309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40040 -00032861 67.55356598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40050 -00032862 67.55356598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40050 -00032863 67.55359650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40060 -00032864 67.55359650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40060 -00032865 67.55362701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40070 -00032866 67.55362701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40070 -00032867 67.55364990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40080 -00032868 67.55365753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40080 -00032869 67.55368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40090 -00032870 67.55368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40090 -00032871 67.55371094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a0 -00032872 67.55371857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a0 -00032873 67.55374146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b0 -00032874 67.55374146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b0 -00032875 67.55376434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400c0 -00032876 67.55376434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400c0 -00032877 67.55379486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400d0 -00032878 67.55379486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400d0 -00032879 67.55382538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400e0 -00032880 67.55382538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400e0 -00032881 67.55384827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400f0 -00032882 67.55385590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x400f0 -00032883 67.55387878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40100 -00032884 67.55387878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40100 -00032885 67.55390930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40110 -00032886 67.55391693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40110 -00032887 67.55393982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40120 -00032888 67.55393982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40120 -00032889 67.55396271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40130 -00032890 67.55396271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40130 -00032891 67.55399323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40140 -00032892 67.55399323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40140 -00032893 67.55402374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40150 -00032894 67.55402374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40150 -00032895 67.55404663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -00032896 67.55405426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -00032897 67.55407715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -00032898 67.55407715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -00032899 67.55410767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -00032900 67.55411530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -00032901 67.55413818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -00032902 67.55413818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -00032903 67.55416107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -00032904 67.55416870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -00032905 67.55419159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -00032906 67.55419159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -00032907 67.55422211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -00032908 67.55422211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -00032909 67.55424500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -00032910 67.55425262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -00032911 67.55427551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -00032912 67.55427551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -00032913 67.55430603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -00032914 67.55431366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -00032915 67.55433655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -00032916 67.55433655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -00032917 67.55435944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -00032918 67.55436707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -00032919 67.55438995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -00032920 67.55438995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -00032921 67.55442047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -00032922 67.55442810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -00032923 67.55445099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -00032924 67.55445099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -00032925 67.55447388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -00032926 67.55448151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -00032927 67.55451202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -00032928 67.55451202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -00032929 67.55453491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -00032930 67.55454254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -00032931 67.55456543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -00032932 67.55456543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -00032933 67.55458832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -00032934 67.55459595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -00032935 67.55462646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -00032936 67.55462646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -00032937 67.55464935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -00032938 67.55465698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -00032939 67.55467987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c0 -00032940 67.55467987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c0 -00032941 67.55471039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d0 -00032942 67.55471039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d0 -00032943 67.55474091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e0 -00032944 67.55474091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e0 -00032945 67.55476379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f0 -00032946 67.55476379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f0 -00032947 67.55478668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40300 -00032948 67.55479431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40300 -00032949 67.55482483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40310 -00032950 67.55482483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40310 -00032951 67.55485535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40320 -00032952 67.55485535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40320 -00032953 67.55487823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40330 -00032954 67.55487823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40330 -00032955 67.55490875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40340 -00032956 67.55490875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40340 -00032957 67.55493164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40350 -00032958 67.55493927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40350 -00032959 67.55496216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40360 -00032960 67.55496216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40360 -00032961 67.55498505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40370 -00032962 67.55498505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40370 -00032963 67.55501556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40380 -00032964 67.55502319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40380 -00032965 67.55504608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40390 -00032966 67.55504608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40390 -00032967 67.55506897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a0 -00032968 67.55507660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a0 -00032969 67.55510712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b0 -00032970 67.55510712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b0 -00032971 67.55513000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c0 -00032972 67.55513763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c0 -00032973 67.55516052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d0 -00032974 67.55516052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d0 -00032975 67.55518341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e0 -00032976 67.55519104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e0 -00032977 67.55522156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f0 -00032978 67.55522156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f0 -00032979 67.55524445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40400 -00032980 67.55525208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40400 -00032981 67.55527496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40410 -00032982 67.55527496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40410 -00032983 67.55530548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40420 -00032984 67.55530548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40420 -00032985 67.55533600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40430 -00032986 67.55533600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40430 -00032987 67.55535889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40440 -00032988 67.55536652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40440 -00032989 67.55538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40450 -00032990 67.55538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40450 -00032991 67.55541992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40460 -00032992 67.55541992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40460 -00032993 67.55544281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40470 -00032994 67.55544281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40470 -00032995 67.55546570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40480 -00032996 67.55547333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40480 -00032997 67.55550385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40490 -00032998 67.55550385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40490 -00032999 67.55552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a0 -00033000 67.55552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404a0 -00033001 67.55554962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b0 -00033002 67.55554962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404b0 -00033003 67.55558014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c0 -00033004 67.55558777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404c0 -00033005 67.55561066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d0 -00033006 67.55561066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404d0 -00033007 67.55563354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e0 -00033008 67.55563354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404e0 -00033009 67.55566406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f0 -00033010 67.55566406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x404f0 -00033011 67.55568695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40500 -00033012 67.55569458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40500 -00033013 67.55571747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40510 -00033014 67.55571747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40510 -00033015 67.55574036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40520 -00033016 67.55574036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40520 -00033017 67.55577087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40530 -00033018 67.55577850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40530 -00033019 67.55579376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40540 -00033020 67.55580139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40540 -00033021 67.55582428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40550 -00033022 67.55583191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40550 -00033023 67.55586243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40560 -00033024 67.55586243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40560 -00033025 67.55588531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40570 -00033026 67.55589294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40570 -00033027 67.55591583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40580 -00033028 67.55591583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40580 -00033029 67.55593872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40590 -00033030 67.55593872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40590 -00033031 67.55597687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405a0 -00033032 67.55597687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405a0 -00033033 67.55599976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405b0 -00033034 67.55600739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405b0 -00033035 67.55602264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405c0 -00033036 67.55603027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405c0 -00033037 67.55606079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405d0 -00033038 67.55606079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405d0 -00033039 67.55608368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405e0 -00033040 67.55608368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405e0 -00033041 67.55611420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405f0 -00033042 67.55611420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x405f0 -00033043 67.55613708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40600 -00033044 67.55614471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40600 -00033045 67.55617523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40610 -00033046 67.55617523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40610 -00033047 67.55619812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40620 -00033048 67.55619812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40620 -00033049 67.55622101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40630 -00033050 67.55622864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40630 -00033051 67.55625916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40640 -00033052 67.55625916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40640 -00033053 67.55628204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40650 -00033054 67.55628967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40650 -00033055 67.55631256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40660 -00033056 67.55631256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40660 -00033057 67.55635071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40670 -00033058 67.55635071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40670 -00033059 67.55638123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40680 -00033060 67.55638123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40680 -00033061 67.55641174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40690 -00033062 67.55641174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40690 -00033063 67.55643463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406a0 -00033064 67.55644226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406a0 -00033065 67.55646515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406b0 -00033066 67.55646515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406b0 -00033067 67.55649567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406c0 -00033068 67.55649567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406c0 -00033069 67.55652618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406d0 -00033070 67.55652618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406d0 -00033071 67.55654907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406e0 -00033072 67.55655670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406e0 -00033073 67.55657959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406f0 -00033074 67.55657959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x406f0 -00033075 67.55661011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40700 -00033076 67.55661774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40700 -00033077 67.55664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40710 -00033078 67.55664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40710 -00033079 67.55666351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40720 -00033080 67.55667114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40720 -00033081 67.55669403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40730 -00033082 67.55669403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40730 -00033083 67.55672455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40740 -00033084 67.55672455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40740 -00033085 67.55674744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40750 -00033086 67.55675507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40750 -00033087 67.55677795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40760 -00033088 67.55677795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40760 -00033089 67.55680847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40770 -00033090 67.55681610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40770 -00033091 67.55683899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40780 -00033092 67.55684662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40780 -00033093 67.55686951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40790 -00033094 67.55686951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40790 -00033095 67.55689240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a0 -00033096 67.55690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a0 -00033097 67.55693054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b0 -00033098 67.55693054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b0 -00033099 67.55695343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c0 -00033100 67.55696106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c0 -00033101 67.55698395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d0 -00033102 67.55698395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d0 -00033103 67.55701447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e0 -00033104 67.55701447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e0 -00033105 67.55703735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f0 -00033106 67.55704498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f0 -00033107 67.55706787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40800 -00033108 67.55706787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40800 -00033109 67.55709076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40810 -00033110 67.55709839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40810 -00033111 67.55712891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40820 -00033112 67.55712891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40820 -00033113 67.55715179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40830 -00033114 67.55715942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40830 -00033115 67.55718231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40840 -00033116 67.55718231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40840 -00033117 67.55721283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40850 -00033118 67.55721283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40850 -00033119 67.55724335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40860 -00033120 67.55724335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40860 -00033121 67.55726624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40870 -00033122 67.55727386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40870 -00033123 67.55729675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40880 -00033124 67.55729675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40880 -00033125 67.55732727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40890 -00033126 67.55733490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40890 -00033127 67.55735779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a0 -00033128 67.55735779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a0 -00033129 67.55738068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b0 -00033130 67.55738068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b0 -00033131 67.55741119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c0 -00033132 67.55741119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c0 -00033133 67.55744171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d0 -00033134 67.55744171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d0 -00033135 67.55747223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e0 -00033136 67.55747223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e0 -00033137 67.55749512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f0 -00033138 67.55749512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f0 -00033139 67.55752563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40900 -00033140 67.55753326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40900 -00033141 67.55755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40910 -00033142 67.55755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40910 -00033143 67.55757904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40920 -00033144 67.55758667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40920 -00033145 67.55760956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40930 -00033146 67.55760956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40930 -00033147 67.55764008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40940 -00033148 67.55764771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40940 -00033149 67.55767059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40950 -00033150 67.55767059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40950 -00033151 67.55769348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40960 -00033152 67.55770111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40960 -00033153 67.55773163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40970 -00033154 67.55773163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40970 -00033155 67.55775452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40980 -00033156 67.55775452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40980 -00033157 67.55777740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40990 -00033158 67.55778503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40990 -00033159 67.55780792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409a0 -00033160 67.55780792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409a0 -00033161 67.55783844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409b0 -00033162 67.55784607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409b0 -00033163 67.55786896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409c0 -00033164 67.55786896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409c0 -00033165 67.55789185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409d0 -00033166 67.55789948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409d0 -00033167 67.55792999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409e0 -00033168 67.55792999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409e0 -00033169 67.55795288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409f0 -00033170 67.55796051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x409f0 -00033171 67.55798340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a00 -00033172 67.55798340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a00 -00033173 67.55800629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a10 -00033174 67.55801392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a10 -00033175 67.55804443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a20 -00033176 67.55804443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a20 -00033177 67.55806732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a30 -00033178 67.55806732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a30 -00033179 67.55809021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a40 -00033180 67.55809784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a40 -00033181 67.55812836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a50 -00033182 67.55812836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a50 -00033183 67.55815125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a60 -00033184 67.55815887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a60 -00033185 67.55818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a70 -00033186 67.55818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a70 -00033187 67.55820465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a80 -00033188 67.55821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a80 -00033189 67.55824280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a90 -00033190 67.55824280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a90 -00033191 67.55826569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa0 -00033192 67.55827332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa0 -00033193 67.55829620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab0 -00033194 67.55829620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab0 -00033195 67.55832672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac0 -00033196 67.55832672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac0 -00033197 67.55834961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad0 -00033198 67.55835724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad0 -00033199 67.55838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae0 -00033200 67.55838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae0 -00033201 67.55840302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af0 -00033202 67.55841064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af0 -00033203 67.55844116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b00 -00033204 67.55844116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b00 -00033205 67.55846405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b10 -00033206 67.55847168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b10 -00033207 67.55849457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b20 -00033208 67.55849457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b20 -00033209 67.55852509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b30 -00033210 67.55852509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b30 -00033211 67.55855560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b40 -00033212 67.55855560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b40 -00033213 67.55857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b50 -00033214 67.55857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b50 -00033215 67.55860138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b60 -00033216 67.55860901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b60 -00033217 67.55863953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b70 -00033218 67.55863953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b70 -00033219 67.55866241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b80 -00033220 67.55867004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b80 -00033221 67.55869293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b90 -00033222 67.55869293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b90 -00033223 67.55872345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba0 -00033224 67.55872345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba0 -00033225 67.55875397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb0 -00033226 67.55875397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb0 -00033227 67.55877686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc0 -00033228 67.55878448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc0 -00033229 67.55880737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd0 -00033230 67.55880737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd0 -00033231 67.55883789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be0 -00033232 67.55883789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be0 -00033233 67.55886078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf0 -00033234 67.55886841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf0 -00033235 67.55889130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c00 -00033236 67.55889130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c00 -00033237 67.55892181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c10 -00033238 67.55892181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c10 -00033239 67.55895233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c20 -00033240 67.55895233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c20 -00033241 67.55897522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c30 -00033242 67.55898285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c30 -00033243 67.55900574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c40 -00033244 67.55900574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c40 -00033245 67.55903625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c50 -00033246 67.55903625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c50 -00033247 67.55906677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c60 -00033248 67.55906677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c60 -00033249 67.55908966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c70 -00033250 67.55908966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c70 -00033251 67.55912018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c80 -00033252 67.55912018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c80 -00033253 67.55915070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c90 -00033254 67.55915070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c90 -00033255 67.55917358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca0 -00033256 67.55918121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca0 -00033257 67.55920410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb0 -00033258 67.55920410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb0 -00033259 67.55923462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc0 -00033260 67.55923462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc0 -00033261 67.55926514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd0 -00033262 67.55926514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd0 -00033263 67.55928802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce0 -00033264 67.55929565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce0 -00033265 67.55931854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf0 -00033266 67.55931854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf0 -00033267 67.55934906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d00 -00033268 67.55935669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d00 -00033269 67.55937958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d10 -00033270 67.55937958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d10 -00033271 67.55940247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d20 -00033272 67.55941010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d20 -00033273 67.55944061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d30 -00033274 67.55944061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d30 -00033275 67.55946350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d40 -00033276 67.55947113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d40 -00033277 67.55949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d50 -00033278 67.55949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d50 -00033279 67.55951691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d60 -00033280 67.55951691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d60 -00033281 67.55954742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d70 -00033282 67.55955505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d70 -00033283 67.55957794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d80 -00033284 67.55957794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d80 -00033285 67.55960083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d90 -00033286 67.55960846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d90 -00033287 67.55963898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da0 -00033288 67.55963898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da0 -00033289 67.55966187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db0 -00033290 67.55966949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db0 -00033291 67.55969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc0 -00033292 67.55969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc0 -00033293 67.55971527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd0 -00033294 67.55972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd0 -00033295 67.55975342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de0 -00033296 67.55975342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de0 -00033297 67.55977631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df0 -00033298 67.55977631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df0 -00033299 67.55979919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e00 -00033300 67.55980682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e00 -00033301 67.55983734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e10 -00033302 67.55983734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e10 -00033303 67.55986023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e20 -00033304 67.55986786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e20 -00033305 67.55989075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e30 -00033306 67.55989075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e30 -00033307 67.55991364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e40 -00033308 67.55992126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e40 -00033309 67.55995178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e50 -00033310 67.55995178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e50 -00033311 67.55997467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e60 -00033312 67.55998230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e60 -00033313 67.56000519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e70 -00033314 67.56000519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e70 -00033315 67.56003571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e80 -00033316 67.56003571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e80 -00033317 67.56005859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e90 -00033318 67.56006622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e90 -00033319 67.56008911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ea0 -00033320 67.56008911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ea0 -00033321 67.56011200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40eb0 -00033322 67.56011963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40eb0 -00033323 67.56015015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ec0 -00033324 67.56015015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ec0 -00033325 67.56017303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ed0 -00033326 67.56018066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ed0 -00033327 67.56020355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ee0 -00033328 67.56020355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ee0 -00033329 67.56023407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ef0 -00033330 67.56023407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ef0 -00033331 67.56025696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f00 -00033332 67.56026459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f00 -00033333 67.56028748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f10 -00033334 67.56028748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f10 -00033335 67.56031036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f20 -00033336 67.56031799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f20 -00033337 67.56034851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f30 -00033338 67.56034851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f30 -00033339 67.56037140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f40 -00033340 67.56037903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f40 -00033341 67.56040192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f50 -00033342 67.56040192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f50 -00033343 67.56043243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f60 -00033344 67.56043243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f60 -00033345 67.56046295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f70 -00033346 67.56046295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f70 -00033347 67.56048584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f80 -00033348 67.56049347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f80 -00033349 67.56051636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f90 -00033350 67.56051636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f90 -00033351 67.56054688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fa0 -00033352 67.56054688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fa0 -00033353 67.56056976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fb0 -00033354 67.56057739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fb0 -00033355 67.56060028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fc0 -00033356 67.56060028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fc0 -00033357 67.56063080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fd0 -00033358 67.56063080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fd0 -00033359 67.56066132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fe0 -00033360 67.56066132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40fe0 -00033361 67.56068420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ff0 -00033362 67.56069183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ff0 -00033363 67.56071472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41000 -00033364 67.56071472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41000 -00033365 67.56074524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41010 -00033366 67.56074524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41010 -00033367 67.56077576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41020 -00033368 67.56077576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41020 -00033369 67.56079865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41030 -00033370 67.56079865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41030 -00033371 67.56082916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41040 -00033372 67.56082916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41040 -00033373 67.56085968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41050 -00033374 67.56085968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41050 -00033375 67.56088257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41060 -00033376 67.56089020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41060 -00033377 67.56091309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41070 -00033378 67.56091309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41070 -00033379 67.56094360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41080 -00033380 67.56094360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41080 -00033381 67.56097412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41090 -00033382 67.56097412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41090 -00033383 67.56099701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410a0 -00033384 67.56100464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410a0 -00033385 67.56102753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -00033386 67.56102753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -00033387 67.56105804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -00033388 67.56105804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -00033389 67.56108093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -00033390 67.56108856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -00033391 67.56111145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -00033392 67.56111145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -00033393 67.56114197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -00033394 67.56114197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -00033395 67.56117249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -00033396 67.56117249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -00033397 67.56119537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -00033398 67.56120300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -00033399 67.56122589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -00033400 67.56122589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -00033401 67.56125641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -00033402 67.56125641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -00033403 67.56127930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -00033404 67.56128693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -00033405 67.56130981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -00033406 67.56130981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -00033407 67.56134033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -00033408 67.56134033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -00033409 67.56137085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -00033410 67.56137085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -00033411 67.56139374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -00033412 67.56140137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -00033413 67.56142426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -00033414 67.56142426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -00033415 67.56145477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -00033416 67.56146240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -00033417 67.56148529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -00033418 67.56148529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -00033419 67.56153870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -00033420 67.56153870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -00033421 67.56156158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -00033422 67.56156158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -00033423 67.56159210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -00033424 67.56159210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -00033425 67.56162262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -00033426 67.56162262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -00033427 67.56164551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -00033428 67.56165314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -00033429 67.56167603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -00033430 67.56167603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -00033431 67.56169891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -00033432 67.56170654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -00033433 67.56173706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -00033434 67.56173706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -00033435 67.56175995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -00033436 67.56176758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -00033437 67.56179047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -00033438 67.56179047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -00033439 67.56182098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -00033440 67.56182098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -00033441 67.56184387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -00033442 67.56185150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -00033443 67.56187439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -00033444 67.56187439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -00033445 67.56189728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -00033446 67.56190491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -00033447 67.56193542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -00033448 67.56193542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -00033449 67.56195831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -00033450 67.56196594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -00033451 67.56198883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -00033452 67.56198883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -00033453 67.56201935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -00033454 67.56201935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -00033455 67.56204224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -00033456 67.56204987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -00033457 67.56207275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -00033458 67.56207275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -00033459 67.56209564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -00033460 67.56210327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -00033461 67.56213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -00033462 67.56213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -00033463 67.56215668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -00033464 67.56216431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -00033465 67.56218719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -00033466 67.56218719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -00033467 67.56221771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -00033468 67.56221771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -00033469 67.56224823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -00033470 67.56224823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -00033471 67.56227112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41360 -00033472 67.56227112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41360 -00033473 67.56229401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41370 -00033474 67.56230164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41370 -00033475 67.56233215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41380 -00033476 67.56233215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41380 -00033477 67.56235504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41390 -00033478 67.56236267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41390 -00033479 67.56238556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a0 -00033480 67.56238556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a0 -00033481 67.56241608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b0 -00033482 67.56241608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b0 -00033483 67.56244659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c0 -00033484 67.56244659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c0 -00033485 67.56246948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d0 -00033486 67.56247711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d0 -00033487 67.56250000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e0 -00033488 67.56250000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e0 -00033489 67.56253052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f0 -00033490 67.56253815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f0 -00033491 67.56256104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41400 -00033492 67.56256104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41400 -00033493 67.56258392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41410 -00033494 67.56258392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41410 -00033495 67.56261444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41420 -00033496 67.56261444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41420 -00033497 67.56264496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41430 -00033498 67.56264496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41430 -00033499 67.56266785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41440 -00033500 67.56267548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41440 -00033501 67.56269836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41450 -00033502 67.56269836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41450 -00033503 67.56272888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41460 -00033504 67.56273651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41460 -00033505 67.56275940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41470 -00033506 67.56275940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41470 -00033507 67.56278229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41480 -00033508 67.56278992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41480 -00033509 67.56281281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41490 -00033510 67.56281281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41490 -00033511 67.56284332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414a0 -00033512 67.56284332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414a0 -00033513 67.56286621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414b0 -00033514 67.56287384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414b0 -00033515 67.56289673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414c0 -00033516 67.56289673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414c0 -00033517 67.56292725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414d0 -00033518 67.56293488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414d0 -00033519 67.56295776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e0 -00033520 67.56295776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e0 -00033521 67.56298065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f0 -00033522 67.56298828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f0 -00033523 67.56301117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41500 -00033524 67.56301117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41500 -00033525 67.56304169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41510 -00033526 67.56304169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41510 -00033527 67.56306458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41520 -00033528 67.56307220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41520 -00033529 67.56309509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -00033530 67.56309509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -00033531 67.56312561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -00033532 67.56313324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -00033533 67.56315613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -00033534 67.56315613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -00033535 67.56317902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -00033536 67.56318665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -00033537 67.56320953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -00033538 67.56320953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -00033539 67.56324005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -00033540 67.56324768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -00033541 67.56327057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -00033542 67.56327057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -00033543 67.56329346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -00033544 67.56329346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -00033545 67.56332397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -00033546 67.56333160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -00033547 67.56335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -00033548 67.56335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -00033549 67.56337738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -00033550 67.56338501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -00033551 67.56340790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -00033552 67.56340790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -00033553 67.56343842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -00033554 67.56344604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -00033555 67.56346893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -00033556 67.56346893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -00033557 67.56349182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -00033558 67.56349945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -00033559 67.56352997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -00033560 67.56352997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -00033561 67.56355286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -00033562 67.56356049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -00033563 67.56358337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -00033564 67.56358337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -00033565 67.56360626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -00033566 67.56361389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -00033567 67.56364441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -00033568 67.56364441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -00033569 67.56366730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -00033570 67.56367493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -00033571 67.56369781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -00033572 67.56369781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -00033573 67.56372833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00033574 67.56372833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41690 -00033575 67.56375885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00033576 67.56375885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a0 -00033577 67.56378174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00033578 67.56378937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b0 -00033579 67.56381226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00033580 67.56381226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c0 -00033581 67.56384277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00033582 67.56384277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d0 -00033583 67.56387329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00033584 67.56387329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e0 -00033585 67.56390381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00033586 67.56390381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f0 -00033587 67.56392670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00033588 67.56393433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41700 -00033589 67.56396484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00033590 67.56396484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41710 -00033591 67.56398773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00033592 67.56398773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41720 -00033593 67.56401825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00033594 67.56401825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41730 -00033595 67.56404114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41740 -00033596 67.56404877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41740 -00033597 67.56407928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41750 -00033598 67.56407928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41750 -00033599 67.56410217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41760 -00033600 67.56410980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41760 -00033601 67.56413269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41770 -00033602 67.56413269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41770 -00033603 67.56416321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41780 -00033604 67.56416321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41780 -00033605 67.56419373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41790 -00033606 67.56419373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41790 -00033607 67.56421661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417a0 -00033608 67.56422424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417a0 -00033609 67.56424713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417b0 -00033610 67.56424713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417b0 -00033611 67.56427765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c0 -00033612 67.56427765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c0 -00033613 67.56430817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d0 -00033614 67.56430817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d0 -00033615 67.56433105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e0 -00033616 67.56433105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e0 -00033617 67.56436157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f0 -00033618 67.56436157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f0 -00033619 67.56439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41800 -00033620 67.56439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41800 -00033621 67.56442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41810 -00033622 67.56442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41810 -00033623 67.56444550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41820 -00033624 67.56444550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41820 -00033625 67.56447601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41830 -00033626 67.56448364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41830 -00033627 67.56450653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41840 -00033628 67.56450653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41840 -00033629 67.56452942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41850 -00033630 67.56453705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41850 -00033631 67.56455994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41860 -00033632 67.56455994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41860 -00033633 67.56459045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41870 -00033634 67.56459808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41870 -00033635 67.56462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41880 -00033636 67.56462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41880 -00033637 67.56464386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41890 -00033638 67.56465149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41890 -00033639 67.56468201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a0 -00033640 67.56468201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a0 -00033641 67.56470490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b0 -00033642 67.56471252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b0 -00033643 67.56473541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c0 -00033644 67.56473541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c0 -00033645 67.56475830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d0 -00033646 67.56475830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d0 -00033647 67.56479645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e0 -00033648 67.56479645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e0 -00033649 67.56481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f0 -00033650 67.56481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f0 -00033651 67.56484222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41900 -00033652 67.56484985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41900 -00033653 67.56488037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41910 -00033654 67.56488037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41910 -00033655 67.56490326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41920 -00033656 67.56491089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41920 -00033657 67.56493378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41930 -00033658 67.56493378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41930 -00033659 67.56495667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41940 -00033660 67.56496429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41940 -00033661 67.56499481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41950 -00033662 67.56499481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41950 -00033663 67.56501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41960 -00033664 67.56502533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41960 -00033665 67.56504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41970 -00033666 67.56504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41970 -00033667 67.56507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41980 -00033668 67.56507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41980 -00033669 67.56510925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41990 -00033670 67.56510925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41990 -00033671 67.56513214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419a0 -00033672 67.56513214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419a0 -00033673 67.56515503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419b0 -00033674 67.56516266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419b0 -00033675 67.56519318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c0 -00033676 67.56519318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c0 -00033677 67.56521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d0 -00033678 67.56522369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d0 -00033679 67.56524658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e0 -00033680 67.56524658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e0 -00033681 67.56527710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f0 -00033682 67.56527710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f0 -00033683 67.56530762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a00 -00033684 67.56530762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a00 -00033685 67.56533051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a10 -00033686 67.56533813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a10 -00033687 67.56536102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a20 -00033688 67.56536102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a20 -00033689 67.56539154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -00033690 67.56539154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -00033691 67.56542206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -00033692 67.56542206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -00033693 67.56544495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -00033694 67.56545258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -00033695 67.56547546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -00033696 67.56547546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -00033697 67.56550598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -00033698 67.56550598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -00033699 67.56552887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -00033700 67.56553650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -00033701 67.56555939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -00033702 67.56555939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -00033703 67.56559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -00033704 67.56559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -00033705 67.56562805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -00033706 67.56563568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -00033707 67.56565857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -00033708 67.56565857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -00033709 67.56568146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -00033710 67.56568909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -00033711 67.56571198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -00033712 67.56571198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -00033713 67.56574249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -00033714 67.56574249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -00033715 67.56577301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -00033716 67.56577301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -00033717 67.56579590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -00033718 67.56579590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -00033719 67.56582642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -00033720 67.56583405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -00033721 67.56585693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -00033722 67.56585693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -00033723 67.56587982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -00033724 67.56588745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -00033725 67.56591034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -00033726 67.56591034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -00033727 67.56594086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -00033728 67.56594849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -00033729 67.56597137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -00033730 67.56597137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -00033731 67.56599426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -00033732 67.56600189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -00033733 67.56603241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b90 -00033734 67.56603241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b90 -00033735 67.56605530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ba0 -00033736 67.56606293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ba0 -00033737 67.56608582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bb0 -00033738 67.56608582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bb0 -00033739 67.56610870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc0 -00033740 67.56611633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bc0 -00033741 67.56614685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd0 -00033742 67.56614685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bd0 -00033743 67.56616974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be0 -00033744 67.56616974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41be0 -00033745 67.56619263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf0 -00033746 67.56620026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41bf0 -00033747 67.56623077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c00 -00033748 67.56623077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c00 -00033749 67.56625366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c10 -00033750 67.56626129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c10 -00033751 67.56628418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c20 -00033752 67.56628418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c20 -00033753 67.56630707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c30 -00033754 67.56631470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c30 -00033755 67.56634521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c40 -00033756 67.56634521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c40 -00033757 67.56636810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c50 -00033758 67.56637573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c50 -00033759 67.56639862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c60 -00033760 67.56639862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c60 -00033761 67.56642914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c70 -00033762 67.56642914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c70 -00033763 67.56645966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c80 -00033764 67.56645966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c80 -00033765 67.56648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c90 -00033766 67.56648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c90 -00033767 67.56650543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca0 -00033768 67.56651306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ca0 -00033769 67.56654358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb0 -00033770 67.56654358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cb0 -00033771 67.56656647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc0 -00033772 67.56657410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cc0 -00033773 67.56659698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd0 -00033774 67.56659698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cd0 -00033775 67.56662750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce0 -00033776 67.56662750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ce0 -00033777 67.56665802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf0 -00033778 67.56665802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41cf0 -00033779 67.56668091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d00 -00033780 67.56668854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d00 -00033781 67.56671143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d10 -00033782 67.56671143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d10 -00033783 67.56674194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d20 -00033784 67.56674194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d20 -00033785 67.56677246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d30 -00033786 67.56677246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d30 -00033787 67.56679535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d40 -00033788 67.56679535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d40 -00033789 67.56682587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d50 -00033790 67.56682587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d50 -00033791 67.56685638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d60 -00033792 67.56685638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d60 -00033793 67.56687927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d70 -00033794 67.56688690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d70 -00033795 67.56690979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d80 -00033796 67.56690979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d80 -00033797 67.56694031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d90 -00033798 67.56694031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d90 -00033799 67.56697083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da0 -00033800 67.56697083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da0 -00033801 67.56699371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db0 -00033802 67.56700134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41db0 -00033803 67.56702423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc0 -00033804 67.56702423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dc0 -00033805 67.56705475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dd0 -00033806 67.56705475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41dd0 -00033807 67.56707764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41de0 -00033808 67.56708527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41de0 -00033809 67.56710815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41df0 -00033810 67.56710815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41df0 -00033811 67.56713867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e00 -00033812 67.56713867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e00 -00033813 67.56716919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e10 -00033814 67.56716919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e10 -00033815 67.56719208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e20 -00033816 67.56719971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e20 -00033817 67.56722260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e30 -00033818 67.56722260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e30 -00033819 67.56725311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e40 -00033820 67.56726074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e40 -00033821 67.56728363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e50 -00033822 67.56728363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e50 -00033823 67.56730652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e60 -00033824 67.56731415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e60 -00033825 67.56733704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e70 -00033826 67.56733704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e70 -00033827 67.56736755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e80 -00033828 67.56736755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e80 -00033829 67.56739807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e90 -00033830 67.56739807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e90 -00033831 67.56742096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea0 -00033832 67.56742096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea0 -00033833 67.56745148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb0 -00033834 67.56745911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb0 -00033835 67.56748199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec0 -00033836 67.56748199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec0 -00033837 67.56750488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ed0 -00033838 67.56751251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ed0 -00033839 67.56753540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ee0 -00033840 67.56753540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ee0 -00033841 67.56756592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ef0 -00033842 67.56757355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ef0 -00033843 67.56759644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f00 -00033844 67.56759644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f00 -00033845 67.56761932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f10 -00033846 67.56762695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f10 -00033847 67.56765747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f20 -00033848 67.56765747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f20 -00033849 67.56768036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f30 -00033850 67.56768036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f30 -00033851 67.56770325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f40 -00033852 67.56771088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f40 -00033853 67.56774139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f50 -00033854 67.56774139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f50 -00033855 67.56776428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f60 -00033856 67.56777191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f60 -00033857 67.56779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f70 -00033858 67.56779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f70 -00033859 67.56781769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f80 -00033860 67.56782532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f80 -00033861 67.56785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f90 -00033862 67.56785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f90 -00033863 67.56787872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa0 -00033864 67.56788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa0 -00033865 67.56790924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb0 -00033866 67.56790924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb0 -00033867 67.56793976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc0 -00033868 67.56793976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc0 -00033869 67.56797028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd0 -00033870 67.56797028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd0 -00033871 67.56799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe0 -00033872 67.56799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe0 -00033873 67.56801605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff0 -00033874 67.56802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff0 -00033875 67.56805420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42000 -00033876 67.56805420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42000 -00033877 67.56807709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42010 -00033878 67.56808472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42010 -00033879 67.56810760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42020 -00033880 67.56810760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42020 -00033881 67.56813812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42030 -00033882 67.56813812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42030 -00033883 67.56816864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42040 -00033884 67.56816864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42040 -00033885 67.56819153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42050 -00033886 67.56819916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42050 -00033887 67.56822205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42060 -00033888 67.56822205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42060 -00033889 67.56825256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42070 -00033890 67.56825256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42070 -00033891 67.56827545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42080 -00033892 67.56828308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42080 -00033893 67.56830597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42090 -00033894 67.56830597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42090 -00033895 67.56833649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a0 -00033896 67.56833649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a0 -00033897 67.56836700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b0 -00033898 67.56836700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b0 -00033899 67.56838989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c0 -00033900 67.56839752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c0 -00033901 67.56842041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d0 -00033902 67.56842041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d0 -00033903 67.56845093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e0 -00033904 67.56845093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e0 -00033905 67.56848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f0 -00033906 67.56848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f0 -00033907 67.56850433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42100 -00033908 67.56851196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42100 -00033909 67.56853485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42110 -00033910 67.56853485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42110 -00033911 67.56856537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42120 -00033912 67.56857300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42120 -00033913 67.56859589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42130 -00033914 67.56859589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42130 -00033915 67.56861877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42140 -00033916 67.56862640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42140 -00033917 67.56864929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42150 -00033918 67.56864929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42150 -00033919 67.56867981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42160 -00033920 67.56867981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42160 -00033921 67.56870270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42170 -00033922 67.56871033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42170 -00033923 67.56873322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42180 -00033924 67.56873322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42180 -00033925 67.56876373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42190 -00033926 67.56877136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42190 -00033927 67.56879425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a0 -00033928 67.56879425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a0 -00033929 67.56881714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b0 -00033930 67.56882477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b0 -00033931 67.56884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c0 -00033932 67.56884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c0 -00033933 67.56887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d0 -00033934 67.56887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d0 -00033935 67.56890106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e0 -00033936 67.56890869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e0 -00033937 67.56893158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f0 -00033938 67.56893158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f0 -00033939 67.56896210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42200 -00033940 67.56896973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42200 -00033941 67.56899261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42210 -00033942 67.56899261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42210 -00033943 67.56901550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42220 -00033944 67.56902313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42220 -00033945 67.56904602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42230 -00033946 67.56904602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42230 -00033947 67.56907654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42240 -00033948 67.56908417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42240 -00033949 67.56910706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42250 -00033950 67.56910706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42250 -00033951 67.56912994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42260 -00033952 67.56913757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42260 -00033953 67.56916809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42270 -00033954 67.56916809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42270 -00033955 67.56919098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42280 -00033956 67.56919861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42280 -00033957 67.56922150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42290 -00033958 67.56922150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42290 -00033959 67.56924438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a0 -00033960 67.56924438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a0 -00033961 67.56927490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b0 -00033962 67.56928253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b0 -00033963 67.56930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c0 -00033964 67.56930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c0 -00033965 67.56932831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d0 -00033966 67.56933594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d0 -00033967 67.56936646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e0 -00033968 67.56936646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e0 -00033969 67.56938934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f0 -00033970 67.56939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f0 -00033971 67.56941986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42300 -00033972 67.56941986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42300 -00033973 67.56947327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42310 -00033974 67.56948090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42310 -00033975 67.56950378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42320 -00033976 67.56950378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42320 -00033977 67.56952667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42330 -00033978 67.56953430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42330 -00033979 67.56956482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42340 -00033980 67.56956482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42340 -00033981 67.56958771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42350 -00033982 67.56959534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42350 -00033983 67.56961823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42360 -00033984 67.56961823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42360 -00033985 67.56964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42370 -00033986 67.56964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42370 -00033987 67.56967926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42380 -00033988 67.56967926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42380 -00033989 67.56970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42390 -00033990 67.56970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42390 -00033991 67.56972504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a0 -00033992 67.56973267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a0 -00033993 67.56976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b0 -00033994 67.56976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b0 -00033995 67.56978607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c0 -00033996 67.56979370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c0 -00033997 67.56981659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d0 -00033998 67.56981659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d0 -00033999 67.56983948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e0 -00034000 67.56984711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e0 -00034001 67.56987762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f0 -00034002 67.56987762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f0 -00034003 67.56990051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42400 -00034004 67.56990814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42400 -00034005 67.56993103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42410 -00034006 67.56993103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42410 -00034007 67.56996155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42420 -00034008 67.56996155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42420 -00034009 67.56999207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42430 -00034010 67.56999207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42430 -00034011 67.57001495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42440 -00034012 67.57001495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42440 -00034013 67.57003784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42450 -00034014 67.57004547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42450 -00034015 67.57007599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42460 -00034016 67.57007599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42460 -00034017 67.57009888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42470 -00034018 67.57010651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42470 -00034019 67.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42480 -00034020 67.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42480 -00034021 67.57015991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42490 -00034022 67.57015991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42490 -00034023 67.57019043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424a0 -00034024 67.57019043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424a0 -00034025 67.57021332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424b0 -00034026 67.57022095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424b0 -00034027 67.57024384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c0 -00034028 67.57024384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c0 -00034029 67.57027435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d0 -00034030 67.57027435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d0 -00034031 67.57029724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e0 -00034032 67.57030487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e0 -00034033 67.57032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f0 -00034034 67.57032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f0 -00034035 67.57035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42500 -00034036 67.57035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42500 -00034037 67.57038879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42510 -00034038 67.57038879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42510 -00034039 67.57041168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42520 -00034040 67.57041931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42520 -00034041 67.57044220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42530 -00034042 67.57044220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42530 -00034043 67.57047272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42540 -00034044 67.57048035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42540 -00034045 67.57050323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42550 -00034046 67.57050323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42550 -00034047 67.57052612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42560 -00034048 67.57053375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42560 -00034049 67.57055664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42570 -00034050 67.57055664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42570 -00034051 67.57058716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42580 -00034052 67.57059479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42580 -00034053 67.57061768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42590 -00034054 67.57061768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42590 -00034055 67.57064056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a0 -00034056 67.57064819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a0 -00034057 67.57067871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b0 -00034058 67.57067871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b0 -00034059 67.57070160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c0 -00034060 67.57070923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c0 -00034061 67.57073212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d0 -00034062 67.57073212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d0 -00034063 67.57075500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e0 -00034064 67.57076263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e0 -00034065 67.57079315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f0 -00034066 67.57079315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f0 -00034067 67.57081604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42600 -00034068 67.57081604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42600 -00034069 67.57083893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42610 -00034070 67.57084656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42610 -00034071 67.57087708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42620 -00034072 67.57087708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42620 -00034073 67.57089996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42630 -00034074 67.57090759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42630 -00034075 67.57093048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -00034076 67.57093048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -00034077 67.57095337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -00034078 67.57096100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -00034079 67.57099152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -00034080 67.57099152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -00034081 67.57101440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -00034082 67.57102203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -00034083 67.57104492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -00034084 67.57104492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -00034085 67.57107544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -00034086 67.57107544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -00034087 67.57109833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -00034088 67.57110596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -00034089 67.57112885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -00034090 67.57112885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -00034091 67.57115173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -00034092 67.57115936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -00034093 67.57118988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -00034094 67.57118988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -00034095 67.57121277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -00034096 67.57122040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -00034097 67.57124329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -00034098 67.57124329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -00034099 67.57127380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -00034100 67.57127380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -00034101 67.57130432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -00034102 67.57131195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -00034103 67.57133484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -00034104 67.57133484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -00034105 67.57135773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -00034106 67.57136536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -00034107 67.57138824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -00034108 67.57138824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -00034109 67.57141876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -00034110 67.57142639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -00034111 67.57144928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -00034112 67.57144928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -00034113 67.57147217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -00034114 67.57147980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -00034115 67.57151031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -00034116 67.57151031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -00034117 67.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -00034118 67.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -00034119 67.57155609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427a0 -00034120 67.57156372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427a0 -00034121 67.57158661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427b0 -00034122 67.57158661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427b0 -00034123 67.57161713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427c0 -00034124 67.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427c0 -00034125 67.57164764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427d0 -00034126 67.57164764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427d0 -00034127 67.57167053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427e0 -00034128 67.57167816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427e0 -00034129 67.57170868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427f0 -00034130 67.57170868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x427f0 -00034131 67.57173157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -00034132 67.57173920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -00034133 67.57176208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -00034134 67.57176208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -00034135 67.57179260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -00034136 67.57179260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -00034137 67.57182312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -00034138 67.57182312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -00034139 67.57184601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -00034140 67.57185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -00034141 67.57187653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -00034142 67.57187653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -00034143 67.57190704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -00034144 67.57190704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -00034145 67.57192993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -00034146 67.57193756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -00034147 67.57196045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -00034148 67.57196045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -00034149 67.57199097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -00034150 67.57199097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -00034151 67.57202148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -00034152 67.57202148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -00034153 67.57204437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -00034154 67.57205200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -00034155 67.57207489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -00034156 67.57207489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -00034157 67.57210541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -00034158 67.57210541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -00034159 67.57212830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -00034160 67.57213593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -00034161 67.57215881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -00034162 67.57215881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -00034163 67.57218933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -00034164 67.57218933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -00034165 67.57221985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -00034166 67.57221985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -00034167 67.57224274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -00034168 67.57225037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -00034169 67.57227325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -00034170 67.57227325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -00034171 67.57230377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -00034172 67.57230377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -00034173 67.57233429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -00034174 67.57233429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -00034175 67.57235718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42960 -00034176 67.57236481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42960 -00034177 67.57238770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42970 -00034178 67.57238770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42970 -00034179 67.57241821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42980 -00034180 67.57242584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42980 -00034181 67.57244873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42990 -00034182 67.57244873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42990 -00034183 67.57247162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429a0 -00034184 67.57247162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429a0 -00034185 67.57250214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429b0 -00034186 67.57250214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429b0 -00034187 67.57253265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429c0 -00034188 67.57253265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429c0 -00034189 67.57255554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d0 -00034190 67.57256317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d0 -00034191 67.57258606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e0 -00034192 67.57258606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e0 -00034193 67.57261658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f0 -00034194 67.57262421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f0 -00034195 67.57264709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a00 -00034196 67.57264709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a00 -00034197 67.57266998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a10 -00034198 67.57267761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a10 -00034199 67.57270050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a20 -00034200 67.57270050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a20 -00034201 67.57273102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a30 -00034202 67.57273102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a30 -00034203 67.57275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a40 -00034204 67.57276154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a40 -00034205 67.57278442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a50 -00034206 67.57278442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a50 -00034207 67.57281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a60 -00034208 67.57282257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a60 -00034209 67.57284546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a70 -00034210 67.57284546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a70 -00034211 67.57286835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a80 -00034212 67.57287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a80 -00034213 67.57289886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a90 -00034214 67.57289886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a90 -00034215 67.57292938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa0 -00034216 67.57293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa0 -00034217 67.57295990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab0 -00034218 67.57295990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab0 -00034219 67.57298279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac0 -00034220 67.57298279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac0 -00034221 67.57302094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad0 -00034222 67.57302094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad0 -00034223 67.57304382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae0 -00034224 67.57304382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae0 -00034225 67.57306671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af0 -00034226 67.57307434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af0 -00034227 67.57309723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b00 -00034228 67.57309723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b00 -00034229 67.57312775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b10 -00034230 67.57313538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b10 -00034231 67.57315826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b20 -00034232 67.57315826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b20 -00034233 67.57318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b30 -00034234 67.57318878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b30 -00034235 67.57321930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b40 -00034236 67.57321930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b40 -00034237 67.57324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b50 -00034238 67.57324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b50 -00034239 67.57326508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b60 -00034240 67.57327271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b60 -00034241 67.57329559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b70 -00034242 67.57329559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b70 -00034243 67.57332611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b80 -00034244 67.57333374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b80 -00034245 67.57335663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b90 -00034246 67.57335663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b90 -00034247 67.57337952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba0 -00034248 67.57338715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba0 -00034249 67.57341766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb0 -00034250 67.57341766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb0 -00034251 67.57344055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc0 -00034252 67.57344818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc0 -00034253 67.57347107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd0 -00034254 67.57347107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd0 -00034255 67.57349396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be0 -00034256 67.57350159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be0 -00034257 67.57353210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf0 -00034258 67.57353210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf0 -00034259 67.57355499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c00 -00034260 67.57355499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c00 -00034261 67.57357788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c10 -00034262 67.57358551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c10 -00034263 67.57361603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c20 -00034264 67.57361603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c20 -00034265 67.57363892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c30 -00034266 67.57364655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c30 -00034267 67.57366943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c40 -00034268 67.57366943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c40 -00034269 67.57369232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c50 -00034270 67.57369995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c50 -00034271 67.57373047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c60 -00034272 67.57373047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c60 -00034273 67.57375336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c70 -00034274 67.57375336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c70 -00034275 67.57378387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c80 -00034276 67.57378387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c80 -00034277 67.57381439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c90 -00034278 67.57381439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c90 -00034279 67.57383728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca0 -00034280 67.57384491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca0 -00034281 67.57386780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -00034282 67.57386780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -00034283 67.57389069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -00034284 67.57389832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -00034285 67.57392883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -00034286 67.57392883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -00034287 67.57395172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -00034288 67.57395935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -00034289 67.57398224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -00034290 67.57398224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -00034291 67.57401276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -00034292 67.57401276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -00034293 67.57403564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -00034294 67.57404327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -00034295 67.57406616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -00034296 67.57406616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -00034297 67.57408905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -00034298 67.57409668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -00034299 67.57412720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -00034300 67.57412720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -00034301 67.57415009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -00034302 67.57415771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -00034303 67.57418060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -00034304 67.57418060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -00034305 67.57421112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -00034306 67.57421112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -00034307 67.57424164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -00034308 67.57424164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -00034309 67.57426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -00034310 67.57426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -00034311 67.57428741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -00034312 67.57429504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -00034313 67.57432556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -00034314 67.57432556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -00034315 67.57434845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -00034316 67.57435608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -00034317 67.57437897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -00034318 67.57437897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -00034319 67.57440948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -00034320 67.57440948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -00034321 67.57444000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -00034322 67.57444000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -00034323 67.57446289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -00034324 67.57447052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -00034325 67.57449341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e10 -00034326 67.57449341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e10 -00034327 67.57452393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e20 -00034328 67.57452393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e20 -00034329 67.57455444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e30 -00034330 67.57455444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e30 -00034331 67.57457733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e40 -00034332 67.57457733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e40 -00034333 67.57460785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e50 -00034334 67.57460785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e50 -00034335 67.57463837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e60 -00034336 67.57463837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e60 -00034337 67.57466125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e70 -00034338 67.57466888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e70 -00034339 67.57469177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e80 -00034340 67.57469177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e80 -00034341 67.57472229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e90 -00034342 67.57472992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e90 -00034343 67.57475281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ea0 -00034344 67.57475281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ea0 -00034345 67.57477570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42eb0 -00034346 67.57478333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42eb0 -00034347 67.57480621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ec0 -00034348 67.57480621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ec0 -00034349 67.57483673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ed0 -00034350 67.57483673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ed0 -00034351 67.57485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ee0 -00034352 67.57486725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ee0 -00034353 67.57489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ef0 -00034354 67.57489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ef0 -00034355 67.57492065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f00 -00034356 67.57492828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f00 -00034357 67.57495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f10 -00034358 67.57495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f10 -00034359 67.57497406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f20 -00034360 67.57498169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f20 -00034361 67.57500458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f30 -00034362 67.57500458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f30 -00034363 67.57503510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f40 -00034364 67.57503510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f40 -00034365 67.57505798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f50 -00034366 67.57506561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f50 -00034367 67.57508850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f60 -00034368 67.57508850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f60 -00034369 67.57511902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f70 -00034370 67.57512665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f70 -00034371 67.57514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f80 -00034372 67.57514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f80 -00034373 67.57517242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f90 -00034374 67.57518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f90 -00034375 67.57520294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa0 -00034376 67.57520294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa0 -00034377 67.57523346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb0 -00034378 67.57524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb0 -00034379 67.57526398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc0 -00034380 67.57526398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc0 -00034381 67.57528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -00034382 67.57528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fd0 -00034383 67.57531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -00034384 67.57532501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fe0 -00034385 67.57534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -00034386 67.57534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff0 -00034387 67.57537079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -00034388 67.57537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43000 -00034389 67.57540131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -00034390 67.57540131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43010 -00034391 67.57543182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -00034392 67.57543945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43020 -00034393 67.57546234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -00034394 67.57546234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43030 -00034395 67.57548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -00034396 67.57549286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43040 -00034397 67.57552338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -00034398 67.57552338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43050 -00034399 67.57554626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -00034400 67.57555389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43060 -00034401 67.57557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -00034402 67.57557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43070 -00034403 67.57559967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -00034404 67.57559967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43080 -00034405 67.57563019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -00034406 67.57563782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43090 -00034407 67.57566071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -00034408 67.57566071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a0 -00034409 67.57568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -00034410 67.57569122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b0 -00034411 67.57572174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -00034412 67.57572174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c0 -00034413 67.57574463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -00034414 67.57575226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d0 -00034415 67.57577515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -00034416 67.57577515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e0 -00034417 67.57579803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -00034418 67.57580566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f0 -00034419 67.57583618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -00034420 67.57583618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43100 -00034421 67.57585907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -00034422 67.57585907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43110 -00034423 67.57588196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -00034424 67.57588959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43120 -00034425 67.57592010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43130 -00034426 67.57592010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43130 -00034427 67.57594299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43140 -00034428 67.57595062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43140 -00034429 67.57597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43150 -00034430 67.57597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43150 -00034431 67.57599640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43160 -00034432 67.57600403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43160 -00034433 67.57603455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43170 -00034434 67.57603455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43170 -00034435 67.57605743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43180 -00034436 67.57606506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43180 -00034437 67.57608795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43190 -00034438 67.57608795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43190 -00034439 67.57611847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a0 -00034440 67.57611847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431a0 -00034441 67.57614136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b0 -00034442 67.57614899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431b0 -00034443 67.57617188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431c0 -00034444 67.57617188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431c0 -00034445 67.57619476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -00034446 67.57620239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431d0 -00034447 67.57623291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -00034448 67.57623291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431e0 -00034449 67.57625580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -00034450 67.57626343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x431f0 -00034451 67.57628632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -00034452 67.57628632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43200 -00034453 67.57631683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -00034454 67.57631683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43210 -00034455 67.57634735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -00034456 67.57634735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43220 -00034457 67.57637024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -00034458 67.57637024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -00034459 67.57639313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -00034460 67.57640076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -00034461 67.57643127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -00034462 67.57643127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -00034463 67.57645416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -00034464 67.57646179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -00034465 67.57648468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -00034466 67.57648468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -00034467 67.57651520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -00034468 67.57651520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -00034469 67.57654572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -00034470 67.57654572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -00034471 67.57656860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -00034472 67.57657623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -00034473 67.57659912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -00034474 67.57659912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -00034475 67.57662964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -00034476 67.57663727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -00034477 67.57666016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -00034478 67.57666016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -00034479 67.57668304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -00034480 67.57668304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432e0 -00034481 67.57671356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -00034482 67.57671356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x432f0 -00034483 67.57674408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -00034484 67.57674408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43300 -00034485 67.57676697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -00034486 67.57677460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43310 -00034487 67.57679749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -00034488 67.57679749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43320 -00034489 67.57682800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -00034490 67.57683563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -00034491 67.57685852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -00034492 67.57685852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -00034493 67.57688141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -00034494 67.57688141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -00034495 67.57691193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -00034496 67.57691193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -00034497 67.57694244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -00034498 67.57694244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -00034499 67.57696533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -00034500 67.57697296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -00034501 67.57699585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -00034502 67.57699585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -00034503 67.57702637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -00034504 67.57703400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -00034505 67.57705688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -00034506 67.57705688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -00034507 67.57707977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -00034508 67.57708740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -00034509 67.57711029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -00034510 67.57711029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -00034511 67.57714081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -00034512 67.57714844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -00034513 67.57717133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -00034514 67.57717133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -00034515 67.57719421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -00034516 67.57719421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -00034517 67.57722473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -00034518 67.57723236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -00034519 67.57725525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -00034520 67.57725525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -00034521 67.57727814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -00034522 67.57728577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -00034523 67.57730865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -00034524 67.57730865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -00034525 67.57733917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -00034526 67.57734680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -00034527 67.57736969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -00034528 67.57736969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -00034529 67.57739258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -00034530 67.57740021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -00034531 67.57743073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -00034532 67.57743073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -00034533 67.57745361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -00034534 67.57746124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -00034535 67.57748413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -00034536 67.57748413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -00034537 67.57750702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -00034538 67.57750702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -00034539 67.57753754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -00034540 67.57754517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -00034541 67.57756805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -00034542 67.57756805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -00034543 67.57759094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -00034544 67.57759857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -00034545 67.57762909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -00034546 67.57762909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -00034547 67.57765198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -00034548 67.57765961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -00034549 67.57768250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -00034550 67.57768250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -00034551 67.57770538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43520 -00034552 67.57771301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43520 -00034553 67.57774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43530 -00034554 67.57774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43530 -00034555 67.57776642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43540 -00034556 67.57776642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43540 -00034557 67.57778931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43550 -00034558 67.57779694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43550 -00034559 67.57782745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43560 -00034560 67.57782745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43560 -00034561 67.57785034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43570 -00034562 67.57785797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43570 -00034563 67.57788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43580 -00034564 67.57788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43580 -00034565 67.57790375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43590 -00034566 67.57791138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43590 -00034567 67.57794189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a0 -00034568 67.57794189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a0 -00034569 67.57796478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b0 -00034570 67.57797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b0 -00034571 67.57799530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c0 -00034572 67.57799530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c0 -00034573 67.57802582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d0 -00034574 67.57802582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d0 -00034575 67.57804871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e0 -00034576 67.57805634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e0 -00034577 67.57807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f0 -00034578 67.57807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f0 -00034579 67.57810211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43600 -00034580 67.57810974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43600 -00034581 67.57814026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43610 -00034582 67.57814026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43610 -00034583 67.57816315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43620 -00034584 67.57817078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43620 -00034585 67.57819366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43630 -00034586 67.57819366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43630 -00034587 67.57822418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43640 -00034588 67.57822418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43640 -00034589 67.57825470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43650 -00034590 67.57825470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43650 -00034591 67.57827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43660 -00034592 67.57827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43660 -00034593 67.57830048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43670 -00034594 67.57830811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43670 -00034595 67.57833862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43680 -00034596 67.57833862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43680 -00034597 67.57836151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43690 -00034598 67.57836914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43690 -00034599 67.57839203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a0 -00034600 67.57839203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a0 -00034601 67.57842255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436b0 -00034602 67.57842255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436b0 -00034603 67.57845306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c0 -00034604 67.57845306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c0 -00034605 67.57847595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d0 -00034606 67.57848358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d0 -00034607 67.57850647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e0 -00034608 67.57850647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e0 -00034609 67.57853699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f0 -00034610 67.57853699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f0 -00034611 67.57855988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43700 -00034612 67.57856750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43700 -00034613 67.57859039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43710 -00034614 67.57859039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43710 -00034615 67.57862091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43720 -00034616 67.57862091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43720 -00034617 67.57865143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43730 -00034618 67.57865143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43730 -00034619 67.57867432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43740 -00034620 67.57868195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43740 -00034621 67.57870483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43750 -00034622 67.57870483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43750 -00034623 67.57873535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43760 -00034624 67.57874298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43760 -00034625 67.57876587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43770 -00034626 67.57876587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43770 -00034627 67.57878876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43780 -00034628 67.57878876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43780 -00034629 67.57881927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43790 -00034630 67.57881927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43790 -00034631 67.57884979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a0 -00034632 67.57884979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a0 -00034633 67.57887268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b0 -00034634 67.57888031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b0 -00034635 67.57890320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c0 -00034636 67.57890320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c0 -00034637 67.57893372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -00034638 67.57894135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -00034639 67.57896423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -00034640 67.57896423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -00034641 67.57898712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -00034642 67.57899475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -00034643 67.57901764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -00034644 67.57901764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -00034645 67.57904816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -00034646 67.57905579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -00034647 67.57907867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -00034648 67.57907867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -00034649 67.57910156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -00034650 67.57910919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -00034651 67.57913971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -00034652 67.57913971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -00034653 67.57916260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -00034654 67.57916260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -00034655 67.57919312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -00034656 67.57919312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -00034657 67.57921600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -00034658 67.57921600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -00034659 67.57924652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -00034660 67.57925415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -00034661 67.57927704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -00034662 67.57927704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -00034663 67.57929993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -00034664 67.57930756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -00034665 67.57933807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -00034666 67.57933807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -00034667 67.57936096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -00034668 67.57936859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -00034669 67.57939148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -00034670 67.57939148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -00034671 67.57941437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -00034672 67.57941437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -00034673 67.57945251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -00034674 67.57945251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -00034675 67.57947540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -00034676 67.57948303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -00034677 67.57950592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -00034678 67.57950592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -00034679 67.57953644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -00034680 67.57953644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -00034681 67.57955933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -00034682 67.57956696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -00034683 67.57958984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -00034684 67.57958984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -00034685 67.57961273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -00034686 67.57962036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -00034687 67.57965088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -00034688 67.57965088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -00034689 67.57967377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -00034690 67.57968140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -00034691 67.57970428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -00034692 67.57970428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -00034693 67.57973480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -00034694 67.57973480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -00034695 67.57976532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -00034696 67.57976532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -00034697 67.57978821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -00034698 67.57978821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -00034699 67.57981873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -00034700 67.57981873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -00034701 67.57984924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d0 -00034702 67.57984924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d0 -00034703 67.57987976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e0 -00034704 67.57987976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e0 -00034705 67.57990265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f0 -00034706 67.57990265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f0 -00034707 67.57993317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a00 -00034708 67.57993317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a00 -00034709 67.57996368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a10 -00034710 67.57997131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a10 -00034711 67.57999420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a20 -00034712 67.57999420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a20 -00034713 67.58001709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a30 -00034714 67.58001709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a30 -00034715 67.58004761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -00034716 67.58004761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -00034717 67.58007813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -00034718 67.58007813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -00034719 67.58010864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -00034720 67.58010864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -00034721 67.58013153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -00034722 67.58013153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -00034723 67.58016205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -00034724 67.58016968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -00034725 67.58019257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -00034726 67.58019257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -00034727 67.58022308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -00034728 67.58022308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -00034729 67.58024597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -00034730 67.58024597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -00034731 67.58027649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -00034732 67.58028412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -00034733 67.58030701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -00034734 67.58030701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -00034735 67.58032990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -00034736 67.58033752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -00034737 67.58036804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -00034738 67.58036804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -00034739 67.58039093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -00034740 67.58039856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -00034741 67.58042145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -00034742 67.58042145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -00034743 67.58044434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -00034744 67.58045197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -00034745 67.58048248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -00034746 67.58048248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -00034747 67.58050537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -00034748 67.58051300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -00034749 67.58053589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -00034750 67.58053589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -00034751 67.58056641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -00034752 67.58056641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -00034753 67.58059692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -00034754 67.58059692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -00034755 67.58061981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -00034756 67.58061981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -00034757 67.58064270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -00034758 67.58065033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -00034759 67.58068085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ba0 -00034760 67.58068085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ba0 -00034761 67.58070374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bb0 -00034762 67.58071136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bb0 -00034763 67.58073425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bc0 -00034764 67.58073425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bc0 -00034765 67.58076477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bd0 -00034766 67.58076477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bd0 -00034767 67.58079529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43be0 -00034768 67.58079529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43be0 -00034769 67.58081818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bf0 -00034770 67.58082581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43bf0 -00034771 67.58084869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c00 -00034772 67.58084869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c00 -00034773 67.58087921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c10 -00034774 67.58088684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c10 -00034775 67.58090973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c20 -00034776 67.58090973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c20 -00034777 67.58093262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c30 -00034778 67.58094025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c30 -00034779 67.58096313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c40 -00034780 67.58096313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c40 -00034781 67.58099365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c50 -00034782 67.58099365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c50 -00034783 67.58102417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c60 -00034784 67.58102417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c60 -00034785 67.58104706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c70 -00034786 67.58104706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c70 -00034787 67.58107758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c80 -00034788 67.58108521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c80 -00034789 67.58110809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c90 -00034790 67.58110809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c90 -00034791 67.58113098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ca0 -00034792 67.58113861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ca0 -00034793 67.58116150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cb0 -00034794 67.58116150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cb0 -00034795 67.58119202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cc0 -00034796 67.58119965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cc0 -00034797 67.58122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cd0 -00034798 67.58122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cd0 -00034799 67.58124542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ce0 -00034800 67.58124542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ce0 -00034801 67.58128357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cf0 -00034802 67.58128357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43cf0 -00034803 67.58130646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d00 -00034804 67.58130646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d00 -00034805 67.58132935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d10 -00034806 67.58133698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d10 -00034807 67.58135986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d20 -00034808 67.58135986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d20 -00034809 67.58139038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d30 -00034810 67.58139801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d30 -00034811 67.58142090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d40 -00034812 67.58142090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d40 -00034813 67.58144379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d50 -00034814 67.58145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d50 -00034815 67.58148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d60 -00034816 67.58148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d60 -00034817 67.58150482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d70 -00034818 67.58150482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d70 -00034819 67.58152771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d80 -00034820 67.58153534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d80 -00034821 67.58155823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d90 -00034822 67.58155823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d90 -00034823 67.58158875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da0 -00034824 67.58159637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43da0 -00034825 67.58161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db0 -00034826 67.58161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43db0 -00034827 67.58164215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dc0 -00034828 67.58164978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dc0 -00034829 67.58168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dd0 -00034830 67.58168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43dd0 -00034831 67.58170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43de0 -00034832 67.58170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43de0 -00034833 67.58173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43df0 -00034834 67.58173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43df0 -00034835 67.58175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e00 -00034836 67.58175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e00 -00034837 67.58178711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e10 -00034838 67.58179474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e10 -00034839 67.58181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e20 -00034840 67.58181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e20 -00034841 67.58184052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e30 -00034842 67.58184814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e30 -00034843 67.58187866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e40 -00034844 67.58187866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e40 -00034845 67.58190155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e50 -00034846 67.58190918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e50 -00034847 67.58193207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e60 -00034848 67.58193207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e60 -00034849 67.58195496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e70 -00034850 67.58196259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e70 -00034851 67.58199310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e80 -00034852 67.58199310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e80 -00034853 67.58201599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e90 -00034854 67.58201599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e90 -00034855 67.58203888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ea0 -00034856 67.58204651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ea0 -00034857 67.58207703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43eb0 -00034858 67.58207703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43eb0 -00034859 67.58209991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ec0 -00034860 67.58210754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ec0 -00034861 67.58213043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ed0 -00034862 67.58213043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ed0 -00034863 67.58215332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ee0 -00034864 67.58216095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ee0 -00034865 67.58219147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ef0 -00034866 67.58219147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ef0 -00034867 67.58221436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f00 -00034868 67.58221436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f00 -00034869 67.58223724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f10 -00034870 67.58224487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f10 -00034871 67.58227539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f20 -00034872 67.58227539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f20 -00034873 67.58229828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f30 -00034874 67.58230591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f30 -00034875 67.58232880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f40 -00034876 67.58232880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f40 -00034877 67.58235168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f50 -00034878 67.58235931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f50 -00034879 67.58238983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f60 -00034880 67.58238983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f60 -00034881 67.58241272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f70 -00034882 67.58241272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f70 -00034883 67.58244324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f80 -00034884 67.58244324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f80 -00034885 67.58247375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f90 -00034886 67.58247375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f90 -00034887 67.58249664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa0 -00034888 67.58250427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa0 -00034889 67.58252716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb0 -00034890 67.58252716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb0 -00034891 67.58255005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc0 -00034892 67.58255768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc0 -00034893 67.58258820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd0 -00034894 67.58258820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd0 -00034895 67.58261108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe0 -00034896 67.58261871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe0 -00034897 67.58264160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff0 -00034898 67.58264160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff0 -00034899 67.58267212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -00034900 67.58267212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -00034901 67.58269501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -00034902 67.58270264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -00034903 67.58272552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -00034904 67.58272552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -00034905 67.58275604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -00034906 67.58275604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -00034907 67.58278656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -00034908 67.58278656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -00034909 67.58280945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -00034910 67.58281708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -00034911 67.58283997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -00034912 67.58283997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -00034913 67.58287048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -00034914 67.58287048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -00034915 67.58290100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -00034916 67.58290100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -00034917 67.58292389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -00034918 67.58293152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -00034919 67.58295441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -00034920 67.58295441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -00034921 67.58298492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -00034922 67.58299255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -00034923 67.58301544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -00034924 67.58301544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -00034925 67.58303833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -00034926 67.58303833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -00034927 67.58306885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -00034928 67.58306885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -00034929 67.58309937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -00034930 67.58309937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -00034931 67.58312225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -00034932 67.58312988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -00034933 67.58315277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -00034934 67.58315277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -00034935 67.58318329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -00034936 67.58319092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -00034937 67.58321381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -00034938 67.58321381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -00034939 67.58323669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -00034940 67.58323669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -00034941 67.58326721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44150 -00034942 67.58326721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44150 -00034943 67.58329773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44160 -00034944 67.58329773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44160 -00034945 67.58332062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44170 -00034946 67.58332825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44170 -00034947 67.58335114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44180 -00034948 67.58335114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44180 -00034949 67.58338165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44190 -00034950 67.58338928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44190 -00034951 67.58341217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a0 -00034952 67.58341217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a0 -00034953 67.58343506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b0 -00034954 67.58343506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b0 -00034955 67.58346558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c0 -00034956 67.58346558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c0 -00034957 67.58349609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d0 -00034958 67.58349609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d0 -00034959 67.58351898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e0 -00034960 67.58352661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e0 -00034961 67.58354950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f0 -00034962 67.58354950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f0 -00034963 67.58358002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44200 -00034964 67.58358765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44200 -00034965 67.58361053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44210 -00034966 67.58361053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44210 -00034967 67.58363342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44220 -00034968 67.58364105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44220 -00034969 67.58366394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44230 -00034970 67.58366394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44230 -00034971 67.58369446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44240 -00034972 67.58369446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44240 -00034973 67.58372498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44250 -00034974 67.58372498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44250 -00034975 67.58374786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44260 -00034976 67.58374786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44260 -00034977 67.58378601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44270 -00034978 67.58378601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44270 -00034979 67.58380890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44280 -00034980 67.58380890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44280 -00034981 67.58383179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44290 -00034982 67.58383942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44290 -00034983 67.58386230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a0 -00034984 67.58386230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a0 -00034985 67.58389282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b0 -00034986 67.58390045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b0 -00034987 67.58392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c0 -00034988 67.58392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c0 -00034989 67.58394623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d0 -00034990 67.58395386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d0 -00034991 67.58398438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e0 -00034992 67.58398438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e0 -00034993 67.58400726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f0 -00034994 67.58400726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f0 -00034995 67.58403015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44300 -00034996 67.58403778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44300 -00034997 67.58406067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44310 -00034998 67.58406067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44310 -00034999 67.58409882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44320 -00035000 67.58410645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44320 -00035001 67.58413696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44330 -00035002 67.58413696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44330 -00035003 67.58415985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44340 -00035004 67.58416748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44340 -00035005 67.58419037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44350 -00035006 67.58419037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44350 -00035007 67.58422089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44360 -00035008 67.58422089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44360 -00035009 67.58425140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44370 -00035010 67.58425140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44370 -00035011 67.58427429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44380 -00035012 67.58427429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44380 -00035013 67.58429718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44390 -00035014 67.58430481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44390 -00035015 67.58433533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a0 -00035016 67.58433533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a0 -00035017 67.58435822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b0 -00035018 67.58436584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b0 -00035019 67.58438873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c0 -00035020 67.58438873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c0 -00035021 67.58441925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d0 -00035022 67.58441925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d0 -00035023 67.58444977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e0 -00035024 67.58444977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e0 -00035025 67.58447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f0 -00035026 67.58447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f0 -00035027 67.58449554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44400 -00035028 67.58450317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44400 -00035029 67.58453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44410 -00035030 67.58453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44410 -00035031 67.58455658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44420 -00035032 67.58456421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44420 -00035033 67.58458710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44430 -00035034 67.58458710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44430 -00035035 67.58461761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44440 -00035036 67.58461761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44440 -00035037 67.58464813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44450 -00035038 67.58464813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44450 -00035039 67.58467102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44460 -00035040 67.58467865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44460 -00035041 67.58470154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44470 -00035042 67.58470154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44470 -00035043 67.58473206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44480 -00035044 67.58473206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44480 -00035045 67.58476257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44490 -00035046 67.58476257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44490 -00035047 67.58481598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a0 -00035048 67.58481598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a0 -00035049 67.58484650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b0 -00035050 67.58484650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b0 -00035051 67.58486938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c0 -00035052 67.58486938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c0 -00035053 67.58489990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d0 -00035054 67.58489990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d0 -00035055 67.58493042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e0 -00035056 67.58493042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e0 -00035057 67.58495331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f0 -00035058 67.58496094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f0 -00035059 67.58498383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44500 -00035060 67.58498383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44500 -00035061 67.58501434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44510 -00035062 67.58501434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44510 -00035063 67.58504486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44520 -00035064 67.58504486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44520 -00035065 67.58506775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44530 -00035066 67.58507538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44530 -00035067 67.58509827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44540 -00035068 67.58509827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44540 -00035069 67.58512878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44550 -00035070 67.58513641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44550 -00035071 67.58515930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44560 -00035072 67.58515930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44560 -00035073 67.58518219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44570 -00035074 67.58518219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44570 -00035075 67.58521271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44580 -00035076 67.58521271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44580 -00035077 67.58524323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44590 -00035078 67.58524323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44590 -00035079 67.58526611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a0 -00035080 67.58527374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a0 -00035081 67.58529663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b0 -00035082 67.58529663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b0 -00035083 67.58532715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c0 -00035084 67.58533478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c0 -00035085 67.58535767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d0 -00035086 67.58535767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d0 -00035087 67.58538055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e0 -00035088 67.58538818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e0 -00035089 67.58541107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f0 -00035090 67.58541107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f0 -00035091 67.58544159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44600 -00035092 67.58544159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44600 -00035093 67.58546448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44610 -00035094 67.58547211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44610 -00035095 67.58549500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44620 -00035096 67.58549500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44620 -00035097 67.58552551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44630 -00035098 67.58553314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44630 -00035099 67.58555603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44640 -00035100 67.58555603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44640 -00035101 67.58557892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44650 -00035102 67.58558655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44650 -00035103 67.58560944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44660 -00035104 67.58560944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44660 -00035105 67.58563995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44670 -00035106 67.58564758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44670 -00035107 67.58567047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44680 -00035108 67.58567047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44680 -00035109 67.58569336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44690 -00035110 67.58570099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44690 -00035111 67.58573151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a0 -00035112 67.58573151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446a0 -00035113 67.58575439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446b0 -00035114 67.58575439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446b0 -00035115 67.58578491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446c0 -00035116 67.58578491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446c0 -00035117 67.58580780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446d0 -00035118 67.58580780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446d0 -00035119 67.58583832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446e0 -00035120 67.58584595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446e0 -00035121 67.58586884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446f0 -00035122 67.58586884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x446f0 -00035123 67.58589172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44700 -00035124 67.58589935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44700 -00035125 67.58592987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44710 -00035126 67.58592987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44710 -00035127 67.58595276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44720 -00035128 67.58596039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44720 -00035129 67.58598328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44730 -00035130 67.58598328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44730 -00035131 67.58600616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44740 -00035132 67.58601379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44740 -00035133 67.58604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44750 -00035134 67.58604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44750 -00035135 67.58606720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44760 -00035136 67.58606720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44760 -00035137 67.58609009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44770 -00035138 67.58609772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44770 -00035139 67.58612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44780 -00035140 67.58612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44780 -00035141 67.58615112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44790 -00035142 67.58615875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44790 -00035143 67.58618164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a0 -00035144 67.58618164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a0 -00035145 67.58620453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b0 -00035146 67.58621216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b0 -00035147 67.58624268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -00035148 67.58624268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -00035149 67.58626556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -00035150 67.58627319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -00035151 67.58629608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -00035152 67.58629608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -00035153 67.58632660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -00035154 67.58632660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -00035155 67.58634949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -00035156 67.58635712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -00035157 67.58638000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -00035158 67.58638000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -00035159 67.58640289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -00035160 67.58641052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -00035161 67.58644104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -00035162 67.58644104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -00035163 67.58646393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -00035164 67.58647156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -00035165 67.58649445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -00035166 67.58649445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -00035167 67.58652496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -00035168 67.58652496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -00035169 67.58654785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -00035170 67.58655548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -00035171 67.58657837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -00035172 67.58657837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -00035173 67.58660126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -00035174 67.58660889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -00035175 67.58663940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -00035176 67.58663940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -00035177 67.58666229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -00035178 67.58666992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -00035179 67.58669281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -00035180 67.58669281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -00035181 67.58672333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -00035182 67.58672333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -00035183 67.58675385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -00035184 67.58675385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -00035185 67.58677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -00035186 67.58677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -00035187 67.58680725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -00035188 67.58680725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -00035189 67.58683777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -00035190 67.58683777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -00035191 67.58686066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44920 -00035192 67.58686829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44920 -00035193 67.58689117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44930 -00035194 67.58689117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44930 -00035195 67.58692169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44940 -00035196 67.58692169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44940 -00035197 67.58695221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44950 -00035198 67.58695221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44950 -00035199 67.58697510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44960 -00035200 67.58698273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44960 -00035201 67.58700562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44970 -00035202 67.58700562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44970 -00035203 67.58703613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44980 -00035204 67.58703613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44980 -00035205 67.58705902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44990 -00035206 67.58706665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44990 -00035207 67.58708954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a0 -00035208 67.58708954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a0 -00035209 67.58712006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b0 -00035210 67.58712006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b0 -00035211 67.58715057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c0 -00035212 67.58715057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c0 -00035213 67.58717346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d0 -00035214 67.58718109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d0 -00035215 67.58720398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e0 -00035216 67.58720398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e0 -00035217 67.58723450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f0 -00035218 67.58724213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f0 -00035219 67.58726501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -00035220 67.58726501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a00 -00035221 67.58728790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -00035222 67.58728790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a10 -00035223 67.58731842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -00035224 67.58731842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a20 -00035225 67.58734894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -00035226 67.58734894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a30 -00035227 67.58737183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -00035228 67.58737946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a40 -00035229 67.58740234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -00035230 67.58740234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a50 -00035231 67.58743286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -00035232 67.58744049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a60 -00035233 67.58746338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -00035234 67.58746338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a70 -00035235 67.58748627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -00035236 67.58748627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a80 -00035237 67.58751678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -00035238 67.58751678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a90 -00035239 67.58754730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -00035240 67.58754730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa0 -00035241 67.58757019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -00035242 67.58757782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab0 -00035243 67.58760071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -00035244 67.58760071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac0 -00035245 67.58763123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -00035246 67.58763885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad0 -00035247 67.58766174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -00035248 67.58766174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae0 -00035249 67.58768463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -00035250 67.58769226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af0 -00035251 67.58771515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -00035252 67.58771515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b00 -00035253 67.58774567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -00035254 67.58774567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b10 -00035255 67.58777618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -00035256 67.58777618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b20 -00035257 67.58779907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -00035258 67.58779907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b30 -00035259 67.58782959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -00035260 67.58783722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b40 -00035261 67.58786011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -00035262 67.58786011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b50 -00035263 67.58788300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b60 -00035264 67.58789063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b60 -00035265 67.58791351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b70 -00035266 67.58791351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b70 -00035267 67.58794403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b80 -00035268 67.58795166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b80 -00035269 67.58797455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b90 -00035270 67.58797455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b90 -00035271 67.58799744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba0 -00035272 67.58799744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba0 -00035273 67.58803558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb0 -00035274 67.58803558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb0 -00035275 67.58805847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc0 -00035276 67.58805847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc0 -00035277 67.58808136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -00035278 67.58808899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -00035279 67.58811188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -00035280 67.58811188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -00035281 67.58814240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -00035282 67.58815002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -00035283 67.58817291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -00035284 67.58817291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -00035285 67.58819580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -00035286 67.58820343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -00035287 67.58823395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -00035288 67.58823395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -00035289 67.58825684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -00035290 67.58825684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -00035291 67.58827972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -00035292 67.58828735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -00035293 67.58831024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -00035294 67.58831024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -00035295 67.58834076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -00035296 67.58834839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -00035297 67.58837128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -00035298 67.58837128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -00035299 67.58839417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -00035300 67.58840179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -00035301 67.58843231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -00035302 67.58843231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -00035303 67.58845520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -00035304 67.58845520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -00035305 67.58848572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -00035306 67.58848572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -00035307 67.58850861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -00035308 67.58850861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -00035309 67.58853912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -00035310 67.58854675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -00035311 67.58856964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -00035312 67.58856964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -00035313 67.58859253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -00035314 67.58860016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -00035315 67.58863068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -00035316 67.58863068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -00035317 67.58865356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -00035318 67.58866119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -00035319 67.58868408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -00035320 67.58868408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -00035321 67.58870697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d30 -00035322 67.58870697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d30 -00035323 67.58874512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d40 -00035324 67.58874512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d40 -00035325 67.58876801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d50 -00035326 67.58876801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d50 -00035327 67.58879089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d60 -00035328 67.58879852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d60 -00035329 67.58882904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d70 -00035330 67.58882904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d70 -00035331 67.58885193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d80 -00035332 67.58885956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d80 -00035333 67.58888245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d90 -00035334 67.58889008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d90 -00035335 67.58890533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da0 -00035336 67.58891296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da0 -00035337 67.58894348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db0 -00035338 67.58894348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db0 -00035339 67.58896637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc0 -00035340 67.58896637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc0 -00035341 67.58898926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd0 -00035342 67.58899689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd0 -00035343 67.58901978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de0 -00035344 67.58902740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de0 -00035345 67.58905029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44df0 -00035346 67.58905029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44df0 -00035347 67.58907318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e00 -00035348 67.58907318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e00 -00035349 67.58910370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e10 -00035350 67.58910370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e10 -00035351 67.58913422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e20 -00035352 67.58913422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e20 -00035353 67.58916473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e30 -00035354 67.58916473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e30 -00035355 67.58918762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e40 -00035356 67.58918762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e40 -00035357 67.58921814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e50 -00035358 67.58922577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e50 -00035359 67.58924866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -00035360 67.58924866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -00035361 67.58927155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -00035362 67.58927917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -00035363 67.58930206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -00035364 67.58930206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -00035365 67.58934021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -00035366 67.58934021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -00035367 67.58936310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -00035368 67.58937073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -00035369 67.58939362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -00035370 67.58939362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -00035371 67.58942413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -00035372 67.58942413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -00035373 67.58945465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -00035374 67.58945465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -00035375 67.58947754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -00035376 67.58948517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -00035377 67.58950806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -00035378 67.58950806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -00035379 67.58953857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -00035380 67.58954620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -00035381 67.58956909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -00035382 67.58956909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -00035383 67.58959198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -00035384 67.58959198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -00035385 67.58962250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -00035386 67.58962250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -00035387 67.58964539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -00035388 67.58965302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -00035389 67.58967590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -00035390 67.58967590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -00035391 67.58969879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -00035392 67.58970642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -00035393 67.58973694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -00035394 67.58973694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -00035395 67.58975983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -00035396 67.58976746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -00035397 67.58979034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -00035398 67.58979034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -00035399 67.58982086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -00035400 67.58982086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -00035401 67.58985138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -00035402 67.58985138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -00035403 67.58987427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc0 -00035404 67.58988190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc0 -00035405 67.58990479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd0 -00035406 67.58990479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd0 -00035407 67.58993530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe0 -00035408 67.58993530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe0 -00035409 67.58995819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff0 -00035410 67.58996582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff0 -00035411 67.58998871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45000 -00035412 67.58998871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45000 -00035413 67.59001923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45010 -00035414 67.59001923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45010 -00035415 67.59004974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45020 -00035416 67.59004974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45020 -00035417 67.59008026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45030 -00035418 67.59008026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45030 -00035419 67.59010315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45040 -00035420 67.59011078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45040 -00035421 67.59014130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45050 -00035422 67.59014130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45050 -00035423 67.59016418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45060 -00035424 67.59017181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45060 -00035425 67.59019470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45070 -00035426 67.59020233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45070 -00035427 67.59021759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45080 -00035428 67.59022522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45080 -00035429 67.59025574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45090 -00035430 67.59025574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45090 -00035431 67.59028625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450a0 -00035432 67.59028625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450a0 -00035433 67.59030914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450b0 -00035434 67.59030914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450b0 -00035435 67.59033966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450c0 -00035436 67.59033966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450c0 -00035437 67.59037018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450d0 -00035438 67.59037018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450d0 -00035439 67.59039307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450e0 -00035440 67.59040070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450e0 -00035441 67.59042358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450f0 -00035442 67.59042358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x450f0 -00035443 67.59045410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45100 -00035444 67.59045410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45100 -00035445 67.59048462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45110 -00035446 67.59048462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45110 -00035447 67.59050751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45120 -00035448 67.59051514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45120 -00035449 67.59053802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45130 -00035450 67.59053802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45130 -00035451 67.59056854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45140 -00035452 67.59057617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45140 -00035453 67.59059906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45150 -00035454 67.59059906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45150 -00035455 67.59062195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45160 -00035456 67.59062195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45160 -00035457 67.59065247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45170 -00035458 67.59065247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45170 -00035459 67.59067535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45180 -00035460 67.59068298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45180 -00035461 67.59070587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45190 -00035462 67.59070587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45190 -00035463 67.59073639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451a0 -00035464 67.59073639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451a0 -00035465 67.59075928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b0 -00035466 67.59076691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451b0 -00035467 67.59078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c0 -00035468 67.59078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451c0 -00035469 67.59081268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d0 -00035470 67.59082031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451d0 -00035471 67.59085083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e0 -00035472 67.59085083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451e0 -00035473 67.59087372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f0 -00035474 67.59088135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x451f0 -00035475 67.59090424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45200 -00035476 67.59090424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45200 -00035477 67.59093475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45210 -00035478 67.59093475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45210 -00035479 67.59096527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45220 -00035480 67.59096527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45220 -00035481 67.59098816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45230 -00035482 67.59098816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45230 -00035483 67.59101105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45240 -00035484 67.59101868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45240 -00035485 67.59104919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45250 -00035486 67.59105682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45250 -00035487 67.59108734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45260 -00035488 67.59109497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45260 -00035489 67.59111786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45270 -00035490 67.59111786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45270 -00035491 67.59114075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45280 -00035492 67.59114838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45280 -00035493 67.59117126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45290 -00035494 67.59117126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45290 -00035495 67.59120178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a0 -00035496 67.59120941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452a0 -00035497 67.59123230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b0 -00035498 67.59123230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452b0 -00035499 67.59125519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c0 -00035500 67.59125519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452c0 -00035501 67.59128571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d0 -00035502 67.59129333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452d0 -00035503 67.59131622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e0 -00035504 67.59131622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452e0 -00035505 67.59133911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f0 -00035506 67.59134674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x452f0 -00035507 67.59136963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45300 -00035508 67.59136963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45300 -00035509 67.59140015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45310 -00035510 67.59140778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45310 -00035511 67.59143066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45320 -00035512 67.59143066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45320 -00035513 67.59145355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45330 -00035514 67.59145355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45330 -00035515 67.59149170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45340 -00035516 67.59149170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45340 -00035517 67.59151459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45350 -00035518 67.59151459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45350 -00035519 67.59153748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45360 -00035520 67.59154510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45360 -00035521 67.59156799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45370 -00035522 67.59156799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45370 -00035523 67.59159851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45380 -00035524 67.59160614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45380 -00035525 67.59162903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45390 -00035526 67.59162903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45390 -00035527 67.59165192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a0 -00035528 67.59165955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a0 -00035529 67.59169006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b0 -00035530 67.59169006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b0 -00035531 67.59171295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c0 -00035532 67.59172058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c0 -00035533 67.59174347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d0 -00035534 67.59174347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d0 -00035535 67.59176636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e0 -00035536 67.59177399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e0 -00035537 67.59180450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453f0 -00035538 67.59180450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x453f0 -00035539 67.59182739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45400 -00035540 67.59183502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45400 -00035541 67.59185791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45410 -00035542 67.59185791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45410 -00035543 67.59188843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45420 -00035544 67.59188843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45420 -00035545 67.59191895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45430 -00035546 67.59191895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45430 -00035547 67.59194183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45440 -00035548 67.59194946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45440 -00035549 67.59197235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45450 -00035550 67.59197235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45450 -00035551 67.59200287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45460 -00035552 67.59200287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45460 -00035553 67.59203339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45470 -00035554 67.59203339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45470 -00035555 67.59206390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45480 -00035556 67.59206390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45480 -00035557 67.59208679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45490 -00035558 67.59208679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45490 -00035559 67.59212494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a0 -00035560 67.59212494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a0 -00035561 67.59214783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b0 -00035562 67.59214783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b0 -00035563 67.59217072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c0 -00035564 67.59217834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c0 -00035565 67.59220123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d0 -00035566 67.59220886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d0 -00035567 67.59223938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e0 -00035568 67.59223938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e0 -00035569 67.59226227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f0 -00035570 67.59226227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f0 -00035571 67.59228516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45500 -00035572 67.59228516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45500 -00035573 67.59231567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45510 -00035574 67.59232330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45510 -00035575 67.59234619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45520 -00035576 67.59234619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45520 -00035577 67.59236908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45530 -00035578 67.59236908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45530 -00035579 67.59239960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45540 -00035580 67.59239960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45540 -00035581 67.59242249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45550 -00035582 67.59243011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45550 -00035583 67.59245300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45560 -00035584 67.59245300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45560 -00035585 67.59248352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45570 -00035586 67.59248352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45570 -00035587 67.59250641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45580 -00035588 67.59250641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45580 -00035589 67.59252930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45590 -00035590 67.59253693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45590 -00035591 67.59255981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a0 -00035592 67.59255981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a0 -00035593 67.59259033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b0 -00035594 67.59259033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b0 -00035595 67.59261322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c0 -00035596 67.59261322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c0 -00035597 67.59264374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d0 -00035598 67.59264374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d0 -00035599 67.59266663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e0 -00035600 67.59267426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e0 -00035601 67.59269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f0 -00035602 67.59269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f0 -00035603 67.59272766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45600 -00035604 67.59272766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45600 -00035605 67.59275818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45610 -00035606 67.59275818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45610 -00035607 67.59278870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45620 -00035608 67.59278870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45620 -00035609 67.59281158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45630 -00035610 67.59281158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45630 -00035611 67.59284210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45640 -00035612 67.59284210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45640 -00035613 67.59287262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45650 -00035614 67.59287262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45650 -00035615 67.59289551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45660 -00035616 67.59290314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45660 -00035617 67.59292603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45670 -00035618 67.59292603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45670 -00035619 67.59295654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45680 -00035620 67.59295654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45680 -00035621 67.59298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45690 -00035622 67.59298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45690 -00035623 67.59300995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a0 -00035624 67.59301758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a0 -00035625 67.59304047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b0 -00035626 67.59304047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b0 -00035627 67.59307098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c0 -00035628 67.59307861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c0 -00035629 67.59310150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d0 -00035630 67.59310150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d0 -00035631 67.59312439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e0 -00035632 67.59313202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e0 -00035633 67.59315491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f0 -00035634 67.59315491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f0 -00035635 67.59318542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45700 -00035636 67.59318542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45700 -00035637 67.59320831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -00035638 67.59321594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -00035639 67.59323883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -00035640 67.59323883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -00035641 67.59326935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -00035642 67.59327698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -00035643 67.59329987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -00035644 67.59329987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -00035645 67.59332275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -00035646 67.59333038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -00035647 67.59335327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -00035648 67.59335327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -00035649 67.59338379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -00035650 67.59338379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -00035651 67.59340668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -00035652 67.59341431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -00035653 67.59343719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -00035654 67.59343719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -00035655 67.59346771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -00035656 67.59347534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -00035657 67.59349823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -00035658 67.59349823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -00035659 67.59352112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -00035660 67.59352875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -00035661 67.59355164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -00035662 67.59355164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -00035663 67.59358215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -00035664 67.59358978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -00035665 67.59361267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -00035666 67.59361267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -00035667 67.59363556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -00035668 67.59364319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -00035669 67.59367371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -00035670 67.59367371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -00035671 67.59369659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -00035672 67.59370422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -00035673 67.59372711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -00035674 67.59372711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -00035675 67.59375000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -00035676 67.59375763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -00035677 67.59378815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -00035678 67.59378815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -00035679 67.59381104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45860 -00035680 67.59381104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45860 -00035681 67.59384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45870 -00035682 67.59384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45870 -00035683 67.59387207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45880 -00035684 67.59387207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45880 -00035685 67.59389496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45890 -00035686 67.59390259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45890 -00035687 67.59392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a0 -00035688 67.59392548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a0 -00035689 67.59394836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b0 -00035690 67.59395599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b0 -00035691 67.59398651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c0 -00035692 67.59399414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c0 -00035693 67.59400940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d0 -00035694 67.59401703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d0 -00035695 67.59403992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e0 -00035696 67.59404755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e0 -00035697 67.59407043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f0 -00035698 67.59407043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f0 -00035699 67.59410095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45900 -00035700 67.59410858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45900 -00035701 67.59413147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45910 -00035702 67.59413147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45910 -00035703 67.59415436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45920 -00035704 67.59416199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45920 -00035705 67.59419250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45930 -00035706 67.59419250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45930 -00035707 67.59421539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45940 -00035708 67.59421539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45940 -00035709 67.59423828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45950 -00035710 67.59424591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45950 -00035711 67.59426880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45960 -00035712 67.59426880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45960 -00035713 67.59429932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45970 -00035714 67.59429932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45970 -00035715 67.59432220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45980 -00035716 67.59432983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45980 -00035717 67.59434509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45990 -00035718 67.59435272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45990 -00035719 67.59438324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a0 -00035720 67.59438324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a0 -00035721 67.59440613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -00035722 67.59440613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -00035723 67.59442902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -00035724 67.59442902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -00035725 67.59445953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -00035726 67.59446716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -00035727 67.59449005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -00035728 67.59449005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -00035729 67.59451294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -00035730 67.59451294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -00035731 67.59454346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -00035732 67.59454346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -00035733 67.59456635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -00035734 67.59457397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -00035735 67.59459686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -00035736 67.59459686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -00035737 67.59462738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -00035738 67.59462738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -00035739 67.59465027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -00035740 67.59465790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -00035741 67.59468079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -00035742 67.59468079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -00035743 67.59470367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -00035744 67.59471130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -00035745 67.59474182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -00035746 67.59474182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -00035747 67.59476471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -00035748 67.59477234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -00035749 67.59479523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -00035750 67.59479523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -00035751 67.59482574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -00035752 67.59482574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -00035753 67.59485626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -00035754 67.59485626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -00035755 67.59487915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -00035756 67.59488678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -00035757 67.59490967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -00035758 67.59490967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -00035759 67.59494019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -00035760 67.59494019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -00035761 67.59497070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -00035762 67.59497070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -00035763 67.59499359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -00035764 67.59499359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -00035765 67.59502411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b10 -00035766 67.59502411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b10 -00035767 67.59504700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b20 -00035768 67.59505463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b20 -00035769 67.59507751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -00035770 67.59507751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -00035771 67.59510040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -00035772 67.59510040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -00035773 67.59513092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -00035774 67.59513092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -00035775 67.59515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -00035776 67.59516144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -00035777 67.59518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -00035778 67.59518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -00035779 67.59521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -00035780 67.59521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -00035781 67.59523773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -00035782 67.59523773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -00035783 67.59526062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -00035784 67.59526825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -00035785 67.59529114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -00035786 67.59529877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -00035787 67.59532166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -00035788 67.59532166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -00035789 67.59534454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -00035790 67.59534454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -00035791 67.59537506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be0 -00035792 67.59538269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be0 -00035793 67.59539795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf0 -00035794 67.59540558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf0 -00035795 67.59542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c00 -00035796 67.59543610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c00 -00035797 67.59545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c10 -00035798 67.59545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c10 -00035799 67.59548950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -00035800 67.59549713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c20 -00035801 67.59552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -00035802 67.59552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c30 -00035803 67.59555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -00035804 67.59555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c40 -00035805 67.59558105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -00035806 67.59558105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c50 -00035807 67.59560394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -00035808 67.59560394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c60 -00035809 67.59562683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -00035810 67.59563446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c70 -00035811 67.59565735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -00035812 67.59565735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c80 -00035813 67.59568787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -00035814 67.59568787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c90 -00035815 67.59571075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -00035816 67.59571075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca0 -00035817 67.59574127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -00035818 67.59574127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb0 -00035819 67.59577179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -00035820 67.59577179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc0 -00035821 67.59579468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -00035822 67.59579468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd0 -00035823 67.59581757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -00035824 67.59581757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce0 -00035825 67.59584808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -00035826 67.59585571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf0 -00035827 67.59587860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -00035828 67.59587860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d00 -00035829 67.59590149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -00035830 67.59590149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d10 -00035831 67.59593201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -00035832 67.59593201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d20 -00035833 67.59595490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -00035834 67.59596252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d30 -00035835 67.59601593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -00035836 67.59602356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -00035837 67.59604645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -00035838 67.59605408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -00035839 67.59607697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -00035840 67.59607697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -00035841 67.59609985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -00035842 67.59609985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -00035843 67.59613037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -00035844 67.59613800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -00035845 67.59615326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -00035846 67.59616089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -00035847 67.59618378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -00035848 67.59619141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -00035849 67.59621429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -00035850 67.59621429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -00035851 67.59624481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -00035852 67.59625244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -00035853 67.59627533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -00035854 67.59627533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -00035855 67.59629822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -00035856 67.59630585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -00035857 67.59633636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -00035858 67.59633636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -00035859 67.59635925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -00035860 67.59635925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -00035861 67.59638977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -00035862 67.59638977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -00035863 67.59641266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -00035864 67.59642029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -00035865 67.59645081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -00035866 67.59645081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -00035867 67.59647369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -00035868 67.59647369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -00035869 67.59650421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -00035870 67.59650421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -00035871 67.59653473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -00035872 67.59653473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -00035873 67.59655762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -00035874 67.59656525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -00035875 67.59658813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -00035876 67.59658813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -00035877 67.59661102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -00035878 67.59661102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -00035879 67.59664154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea0 -00035880 67.59664917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea0 -00035881 67.59666443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb0 -00035882 67.59667206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb0 -00035883 67.59669495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec0 -00035884 67.59670258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec0 -00035885 67.59673309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed0 -00035886 67.59673309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed0 -00035887 67.59675598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee0 -00035888 67.59676361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee0 -00035889 67.59678650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef0 -00035890 67.59678650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef0 -00035891 67.59680939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f00 -00035892 67.59680939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f00 -00035893 67.59683990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f10 -00035894 67.59684753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f10 -00035895 67.59687042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f20 -00035896 67.59687042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f20 -00035897 67.59689331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f30 -00035898 67.59690094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f30 -00035899 67.59693146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f40 -00035900 67.59693146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f40 -00035901 67.59695435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f50 -00035902 67.59696198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f50 -00035903 67.59698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f60 -00035904 67.59698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f60 -00035905 67.59700775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f70 -00035906 67.59701538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f70 -00035907 67.59704590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f80 -00035908 67.59704590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f80 -00035909 67.59706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f90 -00035910 67.59706879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f90 -00035911 67.59709167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -00035912 67.59709930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa0 -00035913 67.59712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -00035914 67.59712982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb0 -00035915 67.59715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -00035916 67.59715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc0 -00035917 67.59717560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -00035918 67.59717560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd0 -00035919 67.59720612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -00035920 67.59720612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe0 -00035921 67.59722900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -00035922 67.59723663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ff0 -00035923 67.59725952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -00035924 67.59725952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46000 -00035925 67.59729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -00035926 67.59729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46010 -00035927 67.59731293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -00035928 67.59732056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46020 -00035929 67.59733582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -00035930 67.59734344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46030 -00035931 67.59736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -00035932 67.59736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46040 -00035933 67.59739685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -00035934 67.59739685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46050 -00035935 67.59741974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -00035936 67.59742737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46060 -00035937 67.59744263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -00035938 67.59745026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46070 -00035939 67.59748077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -00035940 67.59748077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46080 -00035941 67.59750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -00035942 67.59750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46090 -00035943 67.59753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -00035944 67.59753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a0 -00035945 67.59756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -00035946 67.59756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b0 -00035947 67.59759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -00035948 67.59759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c0 -00035949 67.59761810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -00035950 67.59762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d0 -00035951 67.59764862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -00035952 67.59764862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e0 -00035953 67.59767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -00035954 67.59768677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f0 -00035955 67.59770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46100 -00035956 67.59770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46100 -00035957 67.59773254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46110 -00035958 67.59773254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46110 -00035959 67.59776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46120 -00035960 67.59776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46120 -00035961 67.59779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46130 -00035962 67.59779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46130 -00035963 67.59781647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46140 -00035964 67.59782410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46140 -00035965 67.59784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46150 -00035966 67.59784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46150 -00035967 67.59787750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46160 -00035968 67.59788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46160 -00035969 67.59790802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46170 -00035970 67.59790802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46170 -00035971 67.59793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46180 -00035972 67.59793854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46180 -00035973 67.59796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46190 -00035974 67.59796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46190 -00035975 67.59799194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a0 -00035976 67.59799194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a0 -00035977 67.59801483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b0 -00035978 67.59802246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b0 -00035979 67.59804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c0 -00035980 67.59804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c0 -00035981 67.59807587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -00035982 67.59808350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d0 -00035983 67.59810638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -00035984 67.59810638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e0 -00035985 67.59812927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -00035986 67.59813690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f0 -00035987 67.59815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -00035988 67.59815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46200 -00035989 67.59819031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -00035990 67.59819794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46210 -00035991 67.59822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -00035992 67.59822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46220 -00035993 67.59824371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -00035994 67.59824371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46230 -00035995 67.59828186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -00035996 67.59828186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46240 -00035997 67.59830475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -00035998 67.59830475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46250 -00035999 67.59832764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -00036000 67.59833527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46260 -00036001 67.59835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -00036002 67.59835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46270 -00036003 67.59838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -00036004 67.59839630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46280 -00036005 67.59841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -00036006 67.59841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46290 -00036007 67.59844971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -00036008 67.59844971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462a0 -00036009 67.59848022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -00036010 67.59848785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462b0 -00036011 67.59851837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -00036012 67.59851837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462c0 -00036013 67.59854126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -00036014 67.59854889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462d0 -00036015 67.59857178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -00036016 67.59857178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462e0 -00036017 67.59859467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -00036018 67.59860229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x462f0 -00036019 67.59863281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -00036020 67.59864044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46300 -00036021 67.59866333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -00036022 67.59866333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46310 -00036023 67.59868622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46320 -00036024 67.59868622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46320 -00036025 67.59871674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46330 -00036026 67.59871674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46330 -00036027 67.59874725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46340 -00036028 67.59875488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46340 -00036029 67.59877777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46350 -00036030 67.59877777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46350 -00036031 67.59880066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46360 -00036032 67.59880829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46360 -00036033 67.59883881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46370 -00036034 67.59883881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46370 -00036035 67.59886169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46380 -00036036 67.59886169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46380 -00036037 67.59889221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46390 -00036038 67.59889221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46390 -00036039 67.59891510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463a0 -00036040 67.59891510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463a0 -00036041 67.59894562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463b0 -00036042 67.59895325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463b0 -00036043 67.59897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463c0 -00036044 67.59897614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463c0 -00036045 67.59899902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d0 -00036046 67.59900665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d0 -00036047 67.59903717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e0 -00036048 67.59903717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e0 -00036049 67.59906006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f0 -00036050 67.59906769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f0 -00036051 67.59909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46400 -00036052 67.59909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46400 -00036053 67.59911346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46410 -00036054 67.59912109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46410 -00036055 67.59915161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46420 -00036056 67.59915161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46420 -00036057 67.59917450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46430 -00036058 67.59918213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46430 -00036059 67.59920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46440 -00036060 67.59920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46440 -00036061 67.59923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46450 -00036062 67.59923553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46450 -00036063 67.59926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46460 -00036064 67.59926605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46460 -00036065 67.59928894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46470 -00036066 67.59929657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46470 -00036067 67.59931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46480 -00036068 67.59931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46480 -00036069 67.59934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46490 -00036070 67.59934998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46490 -00036071 67.59938049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a0 -00036072 67.59938049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a0 -00036073 67.59940338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b0 -00036074 67.59941101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b0 -00036075 67.59943390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c0 -00036076 67.59943390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c0 -00036077 67.59946442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d0 -00036078 67.59947205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d0 -00036079 67.59949493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e0 -00036080 67.59949493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e0 -00036081 67.59951782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f0 -00036082 67.59951782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f0 -00036083 67.59954834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46500 -00036084 67.59954834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46500 -00036085 67.59957886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46510 -00036086 67.59957886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46510 -00036087 67.59960175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46520 -00036088 67.59960938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46520 -00036089 67.59963226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46530 -00036090 67.59963226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46530 -00036091 67.59966278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46540 -00036092 67.59967041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46540 -00036093 67.59969330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46550 -00036094 67.59969330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46550 -00036095 67.59971619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46560 -00036096 67.59972382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46560 -00036097 67.59974670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46570 -00036098 67.59975433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46570 -00036099 67.59978485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46580 -00036100 67.59978485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46580 -00036101 67.59980774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46590 -00036102 67.59981537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46590 -00036103 67.59983826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a0 -00036104 67.59983826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a0 -00036105 67.59986877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b0 -00036106 67.59986877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b0 -00036107 67.59989929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c0 -00036108 67.59989929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c0 -00036109 67.59992218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d0 -00036110 67.59992981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d0 -00036111 67.59995270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e0 -00036112 67.59995270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e0 -00036113 67.59998322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f0 -00036114 67.59998322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f0 -00036115 67.60000610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46600 -00036116 67.60001373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46600 -00036117 67.60003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46610 -00036118 67.60003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46610 -00036119 67.60006714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46620 -00036120 67.60006714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46620 -00036121 67.60009766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46630 -00036122 67.60009766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46630 -00036123 67.60012054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46640 -00036124 67.60012817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46640 -00036125 67.60015106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46650 -00036126 67.60015106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46650 -00036127 67.60018158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46660 -00036128 67.60018921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46660 -00036129 67.60021210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46670 -00036130 67.60021210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46670 -00036131 67.60023499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46680 -00036132 67.60023499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46680 -00036133 67.60026550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46690 -00036134 67.60026550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46690 -00036135 67.60029602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a0 -00036136 67.60029602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a0 -00036137 67.60031891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b0 -00036138 67.60032654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b0 -00036139 67.60034943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c0 -00036140 67.60034943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c0 -00036141 67.60037994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d0 -00036142 67.60038757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d0 -00036143 67.60041046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e0 -00036144 67.60041046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e0 -00036145 67.60043335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f0 -00036146 67.60044098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f0 -00036147 67.60046387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46700 -00036148 67.60046387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46700 -00036149 67.60049438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46710 -00036150 67.60050201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46710 -00036151 67.60052490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46720 -00036152 67.60052490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46720 -00036153 67.60054779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46730 -00036154 67.60054779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46730 -00036155 67.60058594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46740 -00036156 67.60058594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46740 -00036157 67.60060883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46750 -00036158 67.60060883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46750 -00036159 67.60063171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46760 -00036160 67.60063934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46760 -00036161 67.60066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46770 -00036162 67.60066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46770 -00036163 67.60069275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46780 -00036164 67.60070038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46780 -00036165 67.60072327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46790 -00036166 67.60072327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46790 -00036167 67.60074615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a0 -00036168 67.60075378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a0 -00036169 67.60078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b0 -00036170 67.60078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b0 -00036171 67.60080719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c0 -00036172 67.60081482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c0 -00036173 67.60083771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d0 -00036174 67.60083771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d0 -00036175 67.60086060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e0 -00036176 67.60086823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e0 -00036177 67.60089874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f0 -00036178 67.60089874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f0 -00036179 67.60092163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46800 -00036180 67.60092163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46800 -00036181 67.60094452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46810 -00036182 67.60095215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46810 -00036183 67.60098267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46820 -00036184 67.60098267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46820 -00036185 67.60100555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46830 -00036186 67.60101318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46830 -00036187 67.60103607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46840 -00036188 67.60103607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46840 -00036189 67.60105896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46850 -00036190 67.60106659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46850 -00036191 67.60109711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46860 -00036192 67.60109711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46860 -00036193 67.60112000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46870 -00036194 67.60112762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46870 -00036195 67.60115051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46880 -00036196 67.60115051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46880 -00036197 67.60118103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46890 -00036198 67.60118103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46890 -00036199 67.60121155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a0 -00036200 67.60121155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a0 -00036201 67.60123444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b0 -00036202 67.60123444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b0 -00036203 67.60126495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c0 -00036204 67.60126495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c0 -00036205 67.60129547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d0 -00036206 67.60129547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d0 -00036207 67.60131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e0 -00036208 67.60132599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e0 -00036209 67.60134888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f0 -00036210 67.60134888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f0 -00036211 67.60137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46900 -00036212 67.60137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46900 -00036213 67.60140991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46910 -00036214 67.60140991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46910 -00036215 67.60143280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46920 -00036216 67.60144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46920 -00036217 67.60146332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46930 -00036218 67.60146332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46930 -00036219 67.60149384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46940 -00036220 67.60149384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46940 -00036221 67.60152435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46950 -00036222 67.60152435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46950 -00036223 67.60154724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46960 -00036224 67.60154724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46960 -00036225 67.60157776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46970 -00036226 67.60157776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46970 -00036227 67.60160828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46980 -00036228 67.60160828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46980 -00036229 67.60163116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46990 -00036230 67.60163879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46990 -00036231 67.60166168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a0 -00036232 67.60166168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a0 -00036233 67.60169220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b0 -00036234 67.60169220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b0 -00036235 67.60172272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c0 -00036236 67.60172272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c0 -00036237 67.60174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d0 -00036238 67.60175323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d0 -00036239 67.60177612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e0 -00036240 67.60177612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e0 -00036241 67.60180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f0 -00036242 67.60181427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f0 -00036243 67.60183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a00 -00036244 67.60183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a00 -00036245 67.60186005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a10 -00036246 67.60186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a10 -00036247 67.60189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a20 -00036248 67.60189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a20 -00036249 67.60192108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a30 -00036250 67.60192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a30 -00036251 67.60195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a40 -00036252 67.60195160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a40 -00036253 67.60197449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a50 -00036254 67.60198212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a50 -00036255 67.60201263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a60 -00036256 67.60201263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a60 -00036257 67.60203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a70 -00036258 67.60203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a70 -00036259 67.60205841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a80 -00036260 67.60206604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a80 -00036261 67.60209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a90 -00036262 67.60209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a90 -00036263 67.60211945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa0 -00036264 67.60212708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa0 -00036265 67.60214996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab0 -00036266 67.60214996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab0 -00036267 67.60217285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac0 -00036268 67.60218048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac0 -00036269 67.60221100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad0 -00036270 67.60221100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad0 -00036271 67.60223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae0 -00036272 67.60224152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae0 -00036273 67.60226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af0 -00036274 67.60226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af0 -00036275 67.60229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b00 -00036276 67.60229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b00 -00036277 67.60232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b10 -00036278 67.60232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b10 -00036279 67.60234833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b20 -00036280 67.60234833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b20 -00036281 67.60237122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b30 -00036282 67.60237885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b30 -00036283 67.60240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b40 -00036284 67.60240936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b40 -00036285 67.60243225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b50 -00036286 67.60243988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b50 -00036287 67.60246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b60 -00036288 67.60246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b60 -00036289 67.60249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b70 -00036290 67.60249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b70 -00036291 67.60252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b80 -00036292 67.60252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b80 -00036293 67.60254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b90 -00036294 67.60254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b90 -00036295 67.60257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba0 -00036296 67.60257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba0 -00036297 67.60260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb0 -00036298 67.60260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb0 -00036299 67.60263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc0 -00036300 67.60263824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc0 -00036301 67.60266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd0 -00036302 67.60266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd0 -00036303 67.60269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be0 -00036304 67.60269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be0 -00036305 67.60272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf0 -00036306 67.60272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf0 -00036307 67.60274506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c00 -00036308 67.60275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c00 -00036309 67.60277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c10 -00036310 67.60277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c10 -00036311 67.60280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c20 -00036312 67.60280609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c20 -00036313 67.60283661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c30 -00036314 67.60283661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c30 -00036315 67.60285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c40 -00036316 67.60285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c40 -00036317 67.60289001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c50 -00036318 67.60289001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c50 -00036319 67.60292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c60 -00036320 67.60292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c60 -00036321 67.60294342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -00036322 67.60295105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -00036323 67.60297394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -00036324 67.60297394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -00036325 67.60300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -00036326 67.60300446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -00036327 67.60303497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -00036328 67.60303497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -00036329 67.60305786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -00036330 67.60306549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -00036331 67.60308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -00036332 67.60308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -00036333 67.60311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -00036334 67.60311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -00036335 67.60314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -00036336 67.60314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -00036337 67.60317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -00036338 67.60317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -00036339 67.60320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -00036340 67.60320282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -00036341 67.60323334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -00036342 67.60323334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -00036343 67.60325623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -00036344 67.60326385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -00036345 67.60328674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -00036346 67.60328674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -00036347 67.60331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -00036348 67.60332489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -00036349 67.60334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -00036350 67.60334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -00036351 67.60337067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -00036352 67.60337830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -00036353 67.60340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -00036354 67.60340118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -00036355 67.60343170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -00036356 67.60343170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -00036357 67.60345459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -00036358 67.60346222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -00036359 67.60348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -00036360 67.60348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -00036361 67.60351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -00036362 67.60352325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -00036363 67.60354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -00036364 67.60354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -00036365 67.60356903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -00036366 67.60357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -00036367 67.60359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -00036368 67.60359955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -00036369 67.60363007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -00036370 67.60363770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -00036371 67.60366058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -00036372 67.60366058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -00036373 67.60368347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -00036374 67.60368347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -00036375 67.60372162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -00036376 67.60372162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -00036377 67.60374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -00036378 67.60374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -00036379 67.60376740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -00036380 67.60377502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -00036381 67.60379791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -00036382 67.60379791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -00036383 67.60382843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -00036384 67.60383606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -00036385 67.60385895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -00036386 67.60385895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -00036387 67.60388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -00036388 67.60388947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -00036389 67.60391998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -00036390 67.60391998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -00036391 67.60394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -00036392 67.60395050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -00036393 67.60397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -00036394 67.60397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -00036395 67.60399628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -00036396 67.60400391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -00036397 67.60403442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -00036398 67.60403442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -00036399 67.60405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -00036400 67.60405731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -00036401 67.60408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -00036402 67.60408783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -00036403 67.60411835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -00036404 67.60411835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -00036405 67.60414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f10 -00036406 67.60414886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f10 -00036407 67.60417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f20 -00036408 67.60417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f20 -00036409 67.60419464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f30 -00036410 67.60420227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f30 -00036411 67.60423279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f40 -00036412 67.60423279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f40 -00036413 67.60425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f50 -00036414 67.60426331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f50 -00036415 67.60428619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f60 -00036416 67.60428619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f60 -00036417 67.60431671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f70 -00036418 67.60431671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f70 -00036419 67.60434723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f80 -00036420 67.60434723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f80 -00036421 67.60437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f90 -00036422 67.60437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f90 -00036423 67.60439301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fa0 -00036424 67.60440063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fa0 -00036425 67.60443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fb0 -00036426 67.60443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fb0 -00036427 67.60445404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fc0 -00036428 67.60446167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fc0 -00036429 67.60448456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fd0 -00036430 67.60448456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fd0 -00036431 67.60451508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fe0 -00036432 67.60451508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46fe0 -00036433 67.60454559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ff0 -00036434 67.60454559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ff0 -00036435 67.60456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47000 -00036436 67.60457611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47000 -00036437 67.60459900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47010 -00036438 67.60459900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47010 -00036439 67.60462952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47020 -00036440 67.60462952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47020 -00036441 67.60465240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47030 -00036442 67.60466003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47030 -00036443 67.60468292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47040 -00036444 67.60468292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47040 -00036445 67.60471344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47050 -00036446 67.60471344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47050 -00036447 67.60474396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47060 -00036448 67.60474396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47060 -00036449 67.60476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47070 -00036450 67.60477448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47070 -00036451 67.60479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47080 -00036452 67.60479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47080 -00036453 67.60482788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47090 -00036454 67.60483551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47090 -00036455 67.60485840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470a0 -00036456 67.60485840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470a0 -00036457 67.60488129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470b0 -00036458 67.60488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470b0 -00036459 67.60491180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470c0 -00036460 67.60491180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470c0 -00036461 67.60494232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470d0 -00036462 67.60494995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470d0 -00036463 67.60497284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470e0 -00036464 67.60497284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470e0 -00036465 67.60499573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470f0 -00036466 67.60499573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x470f0 -00036467 67.60502625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47100 -00036468 67.60503387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47100 -00036469 67.60505676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47110 -00036470 67.60505676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47110 -00036471 67.60507965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47120 -00036472 67.60508728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47120 -00036473 67.60511017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47130 -00036474 67.60511017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47130 -00036475 67.60514069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47140 -00036476 67.60514832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47140 -00036477 67.60517120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47150 -00036478 67.60517120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47150 -00036479 67.60519409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47160 -00036480 67.60520172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47160 -00036481 67.60523224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47170 -00036482 67.60523224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47170 -00036483 67.60525513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47180 -00036484 67.60526276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47180 -00036485 67.60528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47190 -00036486 67.60528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47190 -00036487 67.60530853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a0 -00036488 67.60530853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a0 -00036489 67.60533905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b0 -00036490 67.60534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b0 -00036491 67.60536957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c0 -00036492 67.60536957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c0 -00036493 67.60539246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d0 -00036494 67.60540009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d0 -00036495 67.60543060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e0 -00036496 67.60543060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e0 -00036497 67.60545349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f0 -00036498 67.60546112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f0 -00036499 67.60548401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47200 -00036500 67.60548401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47200 -00036501 67.60550690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47210 -00036502 67.60551453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47210 -00036503 67.60554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47220 -00036504 67.60554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47220 -00036505 67.60556793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47230 -00036506 67.60556793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47230 -00036507 67.60559845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47240 -00036508 67.60559845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47240 -00036509 67.60562897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47250 -00036510 67.60562897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47250 -00036511 67.60565186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47260 -00036512 67.60565948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47260 -00036513 67.60568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47270 -00036514 67.60568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47270 -00036515 67.60570526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47280 -00036516 67.60571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47280 -00036517 67.60574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47290 -00036518 67.60574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47290 -00036519 67.60576630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472a0 -00036520 67.60577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472a0 -00036521 67.60579681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472b0 -00036522 67.60579681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472b0 -00036523 67.60582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472c0 -00036524 67.60582733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472c0 -00036525 67.60585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472d0 -00036526 67.60585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472d0 -00036527 67.60588074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472e0 -00036528 67.60588837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472e0 -00036529 67.60591125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472f0 -00036530 67.60591125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x472f0 -00036531 67.60594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47300 -00036532 67.60594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47300 -00036533 67.60596466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47310 -00036534 67.60597229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47310 -00036535 67.60599518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47320 -00036536 67.60599518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47320 -00036537 67.60602570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47330 -00036538 67.60602570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47330 -00036539 67.60605621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47340 -00036540 67.60605621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47340 -00036541 67.60607910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47350 -00036542 67.60608673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47350 -00036543 67.60610962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47360 -00036544 67.60610962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47360 -00036545 67.60614014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47370 -00036546 67.60614777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47370 -00036547 67.60617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47380 -00036548 67.60617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47380 -00036549 67.60619354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47390 -00036550 67.60620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47390 -00036551 67.60622406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a0 -00036552 67.60622406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a0 -00036553 67.60625458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b0 -00036554 67.60625458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b0 -00036555 67.60627747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c0 -00036556 67.60628510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c0 -00036557 67.60630798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d0 -00036558 67.60630798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d0 -00036559 67.60633850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e0 -00036560 67.60634613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e0 -00036561 67.60636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f0 -00036562 67.60636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f0 -00036563 67.60639191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47400 -00036564 67.60639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47400 -00036565 67.60642242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47410 -00036566 67.60642242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47410 -00036567 67.60645294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47420 -00036568 67.60646057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47420 -00036569 67.60648346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47430 -00036570 67.60648346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47430 -00036571 67.60650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47440 -00036572 67.60651398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47440 -00036573 67.60654449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47450 -00036574 67.60654449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47450 -00036575 67.60656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -00036576 67.60656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -00036577 67.60659027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -00036578 67.60659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -00036579 67.60662079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -00036580 67.60662079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -00036581 67.60665131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -00036582 67.60665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -00036583 67.60668182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -00036584 67.60668182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -00036585 67.60670471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -00036586 67.60671234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -00036587 67.60674286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -00036588 67.60674286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -00036589 67.60676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -00036590 67.60677338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -00036591 67.60679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -00036592 67.60679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -00036593 67.60681915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -00036594 67.60682678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -00036595 67.60685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -00036596 67.60685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -00036597 67.60688019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -00036598 67.60688782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -00036599 67.60691071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -00036600 67.60691071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -00036601 67.60694122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -00036602 67.60694122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -00036603 67.60697174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -00036604 67.60697174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -00036605 67.60699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -00036606 67.60700226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -00036607 67.60702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -00036608 67.60702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -00036609 67.60705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -00036610 67.60705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -00036611 67.60708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -00036612 67.60708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -00036613 67.60710907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -00036614 67.60710907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -00036615 67.60713959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -00036616 67.60713959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -00036617 67.60717010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -00036618 67.60717010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -00036619 67.60719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c0 -00036620 67.60720062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c0 -00036621 67.60722351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d0 -00036622 67.60722351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d0 -00036623 67.60725403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e0 -00036624 67.60725403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e0 -00036625 67.60728455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f0 -00036626 67.60728455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f0 -00036627 67.60730743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47600 -00036628 67.60731506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47600 -00036629 67.60733795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47610 -00036630 67.60733795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47610 -00036631 67.60736847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47620 -00036632 67.60736847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47620 -00036633 67.60739136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47630 -00036634 67.60739899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47630 -00036635 67.60742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47640 -00036636 67.60742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47640 -00036637 67.60745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47650 -00036638 67.60745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47650 -00036639 67.60748291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47660 -00036640 67.60748291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47660 -00036641 67.60750580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47670 -00036642 67.60751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47670 -00036643 67.60753632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47680 -00036644 67.60753632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47680 -00036645 67.60756683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47690 -00036646 67.60757446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47690 -00036647 67.60759735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a0 -00036648 67.60759735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a0 -00036649 67.60762024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b0 -00036650 67.60762024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b0 -00036651 67.60765076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c0 -00036652 67.60765076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c0 -00036653 67.60768127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d0 -00036654 67.60768127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d0 -00036655 67.60770416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e0 -00036656 67.60771179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e0 -00036657 67.60773468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f0 -00036658 67.60773468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f0 -00036659 67.60776520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47700 -00036660 67.60777283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47700 -00036661 67.60779572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47710 -00036662 67.60779572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47710 -00036663 67.60781860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47720 -00036664 67.60782623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47720 -00036665 67.60784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47730 -00036666 67.60784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47730 -00036667 67.60787964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47740 -00036668 67.60788727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47740 -00036669 67.60791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47750 -00036670 67.60791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47750 -00036671 67.60793304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47760 -00036672 67.60794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47760 -00036673 67.60797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47770 -00036674 67.60797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47770 -00036675 67.60799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47780 -00036676 67.60799408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47780 -00036677 67.60801697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47790 -00036678 67.60802460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47790 -00036679 67.60804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a0 -00036680 67.60804749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a0 -00036681 67.60807800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477b0 -00036682 67.60808563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477b0 -00036683 67.60810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c0 -00036684 67.60810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477c0 -00036685 67.60813141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d0 -00036686 67.60813904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477d0 -00036687 67.60816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e0 -00036688 67.60816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477e0 -00036689 67.60819244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f0 -00036690 67.60820007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x477f0 -00036691 67.60822296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47800 -00036692 67.60822296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47800 -00036693 67.60824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47810 -00036694 67.60824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47810 -00036695 67.60827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47820 -00036696 67.60828400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47820 -00036697 67.60830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47830 -00036698 67.60830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47830 -00036699 67.60832977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47840 -00036700 67.60833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47840 -00036701 67.60836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47850 -00036702 67.60836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47850 -00036703 67.60839081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47860 -00036704 67.60839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47860 -00036705 67.60842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47870 -00036706 67.60842133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47870 -00036707 67.60844421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47880 -00036708 67.60845184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47880 -00036709 67.60848236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47890 -00036710 67.60848236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47890 -00036711 67.60850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478a0 -00036712 67.60850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478a0 -00036713 67.60852814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478b0 -00036714 67.60853577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478b0 -00036715 67.60856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478c0 -00036716 67.60856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478c0 -00036717 67.60858917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478d0 -00036718 67.60859680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478d0 -00036719 67.60861969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478e0 -00036720 67.60861969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478e0 -00036721 67.60865021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478f0 -00036722 67.60865021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x478f0 -00036723 67.60868073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47900 -00036724 67.60868073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47900 -00036725 67.60870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47910 -00036726 67.60871124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47910 -00036727 67.60873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47920 -00036728 67.60873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47920 -00036729 67.60876465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47930 -00036730 67.60876465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47930 -00036731 67.60879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47940 -00036732 67.60879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47940 -00036733 67.60881805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47950 -00036734 67.60881805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47950 -00036735 67.60884857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47960 -00036736 67.60884857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47960 -00036737 67.60887909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47970 -00036738 67.60887909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47970 -00036739 67.60890198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47980 -00036740 67.60890961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47980 -00036741 67.60893250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47990 -00036742 67.60893250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47990 -00036743 67.60896301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479a0 -00036744 67.60896301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479a0 -00036745 67.60899353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479b0 -00036746 67.60899353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479b0 -00036747 67.60901642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479c0 -00036748 67.60902405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479c0 -00036749 67.60904694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479d0 -00036750 67.60904694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479d0 -00036751 67.60907745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479e0 -00036752 67.60907745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479e0 -00036753 67.60910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479f0 -00036754 67.60910797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x479f0 -00036755 67.60913086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a00 -00036756 67.60913086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a00 -00036757 67.60916138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a10 -00036758 67.60916138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a10 -00036759 67.60919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a20 -00036760 67.60919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a20 -00036761 67.60921478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a30 -00036762 67.60922241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a30 -00036763 67.60924530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a40 -00036764 67.60924530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a40 -00036765 67.60927582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a50 -00036766 67.60928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a50 -00036767 67.60930634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a60 -00036768 67.60930634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a60 -00036769 67.60932922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a70 -00036770 67.60932922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a70 -00036771 67.60935974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a80 -00036772 67.60935974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a80 -00036773 67.60939026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a90 -00036774 67.60939026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a90 -00036775 67.60941315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa0 -00036776 67.60942078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa0 -00036777 67.60944366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab0 -00036778 67.60944366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab0 -00036779 67.60947418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac0 -00036780 67.60948181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac0 -00036781 67.60950470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad0 -00036782 67.60950470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad0 -00036783 67.60952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae0 -00036784 67.60953522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae0 -00036785 67.60955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af0 -00036786 67.60955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af0 -00036787 67.60958862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b00 -00036788 67.60958862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b00 -00036789 67.60961151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b10 -00036790 67.60961914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b10 -00036791 67.60964203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b20 -00036792 67.60964203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b20 -00036793 67.60967255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b30 -00036794 67.60968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b30 -00036795 67.60970306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b40 -00036796 67.60970306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b40 -00036797 67.60972595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b50 -00036798 67.60973358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b50 -00036799 67.60975647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b60 -00036800 67.60975647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b60 -00036801 67.60978699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b70 -00036802 67.60979462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b70 -00036803 67.60981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b80 -00036804 67.60981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b80 -00036805 67.60984039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b90 -00036806 67.60984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b90 -00036807 67.60987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba0 -00036808 67.60987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba0 -00036809 67.60990143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb0 -00036810 67.60990906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb0 -00036811 67.60993195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc0 -00036812 67.60993195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc0 -00036813 67.60995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd0 -00036814 67.60995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd0 -00036815 67.60998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be0 -00036816 67.60999298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be0 -00036817 67.61001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf0 -00036818 67.61001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf0 -00036819 67.61003876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c00 -00036820 67.61004639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c00 -00036821 67.61007690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c10 -00036822 67.61007690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c10 -00036823 67.61009979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c20 -00036824 67.61010742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c20 -00036825 67.61013031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c30 -00036826 67.61013031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c30 -00036827 67.61015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c40 -00036828 67.61016083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c40 -00036829 67.61019135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c50 -00036830 67.61019135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c50 -00036831 67.61021423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c60 -00036832 67.61021423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c60 -00036833 67.61023712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -00036834 67.61024475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -00036835 67.61027527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -00036836 67.61027527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -00036837 67.61029816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -00036838 67.61030579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -00036839 67.61032867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -00036840 67.61032867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -00036841 67.61035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -00036842 67.61035919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -00036843 67.61038971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -00036844 67.61038971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -00036845 67.61041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -00036846 67.61042023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -00036847 67.61044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -00036848 67.61044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -00036849 67.61047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -00036850 67.61047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -00036851 67.61050415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -00036852 67.61050415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -00036853 67.61052704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -00036854 67.61053467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -00036855 67.61055756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -00036856 67.61055756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -00036857 67.61058807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -00036858 67.61058807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -00036859 67.61061096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -00036860 67.61061859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -00036861 67.61064148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -00036862 67.61064148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -00036863 67.61067200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -00036864 67.61067200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -00036865 67.61070251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -00036866 67.61070251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -00036867 67.61072540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -00036868 67.61073303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -00036869 67.61075592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -00036870 67.61075592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -00036871 67.61078644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -00036872 67.61079407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -00036873 67.61081696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -00036874 67.61081696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -00036875 67.61083984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -00036876 67.61084747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -00036877 67.61087036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dd0 -00036878 67.61087036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dd0 -00036879 67.61090088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47de0 -00036880 67.61090851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47de0 -00036881 67.61093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47df0 -00036882 67.61093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47df0 -00036883 67.61095428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e00 -00036884 67.61095428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e00 -00036885 67.61098480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e10 -00036886 67.61099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e10 -00036887 67.61101532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e20 -00036888 67.61101532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e20 -00036889 67.61103821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e30 -00036890 67.61104584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e30 -00036891 67.61106873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e40 -00036892 67.61106873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e40 -00036893 67.61109924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e50 -00036894 67.61110687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e50 -00036895 67.61112976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e60 -00036896 67.61112976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e60 -00036897 67.61115265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e70 -00036898 67.61116028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e70 -00036899 67.61119080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e80 -00036900 67.61119080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e80 -00036901 67.61121368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e90 -00036902 67.61121368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e90 -00036903 67.61123657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea0 -00036904 67.61124420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea0 -00036905 67.61126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb0 -00036906 67.61126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb0 -00036907 67.61129761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec0 -00036908 67.61130524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec0 -00036909 67.61132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed0 -00036910 67.61132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed0 -00036911 67.61135101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee0 -00036912 67.61135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee0 -00036913 67.61138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef0 -00036914 67.61138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef0 -00036915 67.61141205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f00 -00036916 67.61141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f00 -00036917 67.61144257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f10 -00036918 67.61144257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f10 -00036919 67.61146545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f20 -00036920 67.61146545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f20 -00036921 67.61149597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f30 -00036922 67.61150360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f30 -00036923 67.61152649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f40 -00036924 67.61152649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f40 -00036925 67.61154938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f50 -00036926 67.61155701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f50 -00036927 67.61158752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f60 -00036928 67.61158752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f60 -00036929 67.61161041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f70 -00036930 67.61161804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f70 -00036931 67.61164093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f80 -00036932 67.61164093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f80 -00036933 67.61166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f90 -00036934 67.61166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f90 -00036935 67.61170197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa0 -00036936 67.61170197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa0 -00036937 67.61172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb0 -00036938 67.61173248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb0 -00036939 67.61175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc0 -00036940 67.61175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc0 -00036941 67.61178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd0 -00036942 67.61178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd0 -00036943 67.61180878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe0 -00036944 67.61181641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe0 -00036945 67.61183929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff0 -00036946 67.61183929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff0 -00036947 67.61186218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48000 -00036948 67.61186981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48000 -00036949 67.61190033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48010 -00036950 67.61190033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48010 -00036951 67.61192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48020 -00036952 67.61193085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48020 -00036953 67.61195374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48030 -00036954 67.61195374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48030 -00036955 67.61198425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48040 -00036956 67.61198425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48040 -00036957 67.61201477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48050 -00036958 67.61201477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48050 -00036959 67.61203766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48060 -00036960 67.61204529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48060 -00036961 67.61206818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48070 -00036962 67.61206818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48070 -00036963 67.61209869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -00036964 67.61209869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -00036965 67.61212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -00036966 67.61212921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -00036967 67.61215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -00036968 67.61215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -00036969 67.61218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -00036970 67.61218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -00036971 67.61221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -00036972 67.61221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -00036973 67.61223602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -00036974 67.61224365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -00036975 67.61226654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -00036976 67.61226654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -00036977 67.61229706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -00036978 67.61229706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -00036979 67.61232758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -00036980 67.61232758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -00036981 67.61235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -00036982 67.61235809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -00036983 67.61238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -00036984 67.61238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -00036985 67.61241150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -00036986 67.61241150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -00036987 67.61243439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -00036988 67.61244202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -00036989 67.61246490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -00036990 67.61246490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -00036991 67.61249542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -00036992 67.61249542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -00036993 67.61252594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -00036994 67.61252594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -00036995 67.61254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -00036996 67.61255646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -00036997 67.61257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -00036998 67.61257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -00036999 67.61260986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -00037000 67.61261749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -00037001 67.61264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -00037002 67.61264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -00037003 67.61266327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -00037004 67.61267090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -00037005 67.61269379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -00037006 67.61269379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -00037007 67.61272430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e0 -00037008 67.61273193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e0 -00037009 67.61275482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f0 -00037010 67.61275482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f0 -00037011 67.61277771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48200 -00037012 67.61277771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48200 -00037013 67.61280823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48210 -00037014 67.61281586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48210 -00037015 67.61283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48220 -00037016 67.61283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48220 -00037017 67.61286163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48230 -00037018 67.61286926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48230 -00037019 67.61289978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48240 -00037020 67.61289978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48240 -00037021 67.61292267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48250 -00037022 67.61293030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48250 -00037023 67.61295319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48260 -00037024 67.61295319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48260 -00037025 67.61297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48270 -00037026 67.61298370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48270 -00037027 67.61301422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48280 -00037028 67.61301422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48280 -00037029 67.61303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48290 -00037030 67.61303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48290 -00037031 67.61306000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a0 -00037032 67.61306763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a0 -00037033 67.61309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b0 -00037034 67.61309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b0 -00037035 67.61312103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c0 -00037036 67.61312866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c0 -00037037 67.61315155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d0 -00037038 67.61315155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482d0 -00037039 67.61317444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e0 -00037040 67.61318207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482e0 -00037041 67.61321259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f0 -00037042 67.61321259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x482f0 -00037043 67.61323547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48300 -00037044 67.61324310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48300 -00037045 67.61326599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48310 -00037046 67.61326599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48310 -00037047 67.61329651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48320 -00037048 67.61329651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48320 -00037049 67.61332703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48330 -00037050 67.61332703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48330 -00037051 67.61334991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48340 -00037052 67.61334991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48340 -00037053 67.61337280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48350 -00037054 67.61338043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48350 -00037055 67.61341095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48360 -00037056 67.61341095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48360 -00037057 67.61343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -00037058 67.61344147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -00037059 67.61346436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -00037060 67.61346436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -00037061 67.61349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -00037062 67.61349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -00037063 67.61352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -00037064 67.61352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -00037065 67.61354828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -00037066 67.61355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -00037067 67.61357880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -00037068 67.61357880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -00037069 67.61360931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -00037070 67.61360931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -00037071 67.61363220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -00037072 67.61363983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -00037073 67.61366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -00037074 67.61366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -00037075 67.61369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -00037076 67.61369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -00037077 67.61372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -00037078 67.61372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -00037079 67.61374664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48420 -00037080 67.61375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48420 -00037081 67.61377716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48430 -00037082 67.61377716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48430 -00037083 67.61380768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48440 -00037084 67.61380768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48440 -00037085 67.61383820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48450 -00037086 67.61383820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48450 -00037087 67.61386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48460 -00037088 67.61386871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48460 -00037089 67.61389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48470 -00037090 67.61389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48470 -00037091 67.61392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48480 -00037092 67.61392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48480 -00037093 67.61394501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48490 -00037094 67.61395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48490 -00037095 67.61397552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a0 -00037096 67.61397552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484a0 -00037097 67.61400604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b0 -00037098 67.61400604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484b0 -00037099 67.61403656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c0 -00037100 67.61403656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484c0 -00037101 67.61405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d0 -00037102 67.61406708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484d0 -00037103 67.61408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e0 -00037104 67.61408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484e0 -00037105 67.61412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f0 -00037106 67.61412811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x484f0 -00037107 67.61415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48500 -00037108 67.61415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48500 -00037109 67.61417389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48510 -00037110 67.61418152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48510 -00037111 67.61420441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48520 -00037112 67.61420441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48520 -00037113 67.61423492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48530 -00037114 67.61423492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48530 -00037115 67.61425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48540 -00037116 67.61426544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48540 -00037117 67.61428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48550 -00037118 67.61428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48550 -00037119 67.61431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48560 -00037120 67.61432648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48560 -00037121 67.61434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48570 -00037122 67.61434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48570 -00037123 67.61437225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48580 -00037124 67.61437988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48580 -00037125 67.61440277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48590 -00037126 67.61440277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48590 -00037127 67.61443329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a0 -00037128 67.61444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a0 -00037129 67.61446381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b0 -00037130 67.61446381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b0 -00037131 67.61448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c0 -00037132 67.61448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c0 -00037133 67.61451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d0 -00037134 67.61452484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d0 -00037135 67.61454773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e0 -00037136 67.61454773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e0 -00037137 67.61457062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f0 -00037138 67.61457825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f0 -00037139 67.61460114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48600 -00037140 67.61460114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48600 -00037141 67.61463165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48610 -00037142 67.61463928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48610 -00037143 67.61466217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48620 -00037144 67.61466217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48620 -00037145 67.61468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48630 -00037146 67.61469269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48630 -00037147 67.61472321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48640 -00037148 67.61472321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48640 -00037149 67.61474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48650 -00037150 67.61475372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48650 -00037151 67.61477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48660 -00037152 67.61477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48660 -00037153 67.61479950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48670 -00037154 67.61479950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48670 -00037155 67.61483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48680 -00037156 67.61483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48680 -00037157 67.61486053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48690 -00037158 67.61486816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48690 -00037159 67.61489105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a0 -00037160 67.61489105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a0 -00037161 67.61492157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b0 -00037162 67.61492157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b0 -00037163 67.61495209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c0 -00037164 67.61495209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c0 -00037165 67.61497498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d0 -00037166 67.61498260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d0 -00037167 67.61500549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e0 -00037168 67.61500549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e0 -00037169 67.61503601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f0 -00037170 67.61503601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f0 -00037171 67.61505890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48700 -00037172 67.61506653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48700 -00037173 67.61508942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48710 -00037174 67.61508942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48710 -00037175 67.61511993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48720 -00037176 67.61511993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48720 -00037177 67.61515045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48730 -00037178 67.61515045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48730 -00037179 67.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48740 -00037180 67.61518097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48740 -00037181 67.61520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48750 -00037182 67.61520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48750 -00037183 67.61523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48760 -00037184 67.61524200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48760 -00037185 67.61526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48770 -00037186 67.61526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48770 -00037187 67.61528778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48780 -00037188 67.61528778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48780 -00037189 67.61531830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48790 -00037190 67.61531830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48790 -00037191 67.61534882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a0 -00037192 67.61534882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a0 -00037193 67.61537170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b0 -00037194 67.61537933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b0 -00037195 67.61540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c0 -00037196 67.61540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c0 -00037197 67.61543274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d0 -00037198 67.61544037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d0 -00037199 67.61546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e0 -00037200 67.61546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e0 -00037201 67.61548615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f0 -00037202 67.61549377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f0 -00037203 67.61551666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48800 -00037204 67.61551666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48800 -00037205 67.61554718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48810 -00037206 67.61555481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48810 -00037207 67.61557770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48820 -00037208 67.61557770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48820 -00037209 67.61560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48830 -00037210 67.61560822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48830 -00037211 67.61563873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48840 -00037212 67.61563873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48840 -00037213 67.61566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48850 -00037214 67.61566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48850 -00037215 67.61568451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48860 -00037216 67.61568451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48860 -00037217 67.61571503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48870 -00037218 67.61571503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48870 -00037219 67.61574554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48880 -00037220 67.61574554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48880 -00037221 67.61577606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48890 -00037222 67.61577606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48890 -00037223 67.61579895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a0 -00037224 67.61579895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a0 -00037225 67.61582947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b0 -00037226 67.61583710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b0 -00037227 67.61585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c0 -00037228 67.61585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c0 -00037229 67.61588287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d0 -00037230 67.61589050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d0 -00037231 67.61591339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e0 -00037232 67.61592102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e0 -00037233 67.61594391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f0 -00037234 67.61595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f0 -00037235 67.61597443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48900 -00037236 67.61598206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48900 -00037237 67.61600494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48910 -00037238 67.61600494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48910 -00037239 67.61603546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48920 -00037240 67.61603546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48920 -00037241 67.61606598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48930 -00037242 67.61606598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48930 -00037243 67.61608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48940 -00037244 67.61609650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48940 -00037245 67.61611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48950 -00037246 67.61611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48950 -00037247 67.61614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48960 -00037248 67.61614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48960 -00037249 67.61618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48970 -00037250 67.61618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48970 -00037251 67.61620331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48980 -00037252 67.61621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48980 -00037253 67.61623383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48990 -00037254 67.61623383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48990 -00037255 67.61626434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a0 -00037256 67.61626434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a0 -00037257 67.61629486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b0 -00037258 67.61629486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b0 -00037259 67.61631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c0 -00037260 67.61631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c0 -00037261 67.61634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d0 -00037262 67.61634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d0 -00037263 67.61637878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e0 -00037264 67.61637878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e0 -00037265 67.61640167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f0 -00037266 67.61640167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f0 -00037267 67.61643219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a00 -00037268 67.61643219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a00 -00037269 67.61645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a10 -00037270 67.61646271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a10 -00037271 67.61648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a20 -00037272 67.61648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a20 -00037273 67.61650848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a30 -00037274 67.61650848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a30 -00037275 67.61653900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a40 -00037276 67.61653900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a40 -00037277 67.61656189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a50 -00037278 67.61656952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a50 -00037279 67.61659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a60 -00037280 67.61659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a60 -00037281 67.61662292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a70 -00037282 67.61662292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a70 -00037283 67.61664581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a80 -00037284 67.61665344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a80 -00037285 67.61667633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a90 -00037286 67.61667633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a90 -00037287 67.61670685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa0 -00037288 67.61670685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa0 -00037289 67.61673737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab0 -00037290 67.61673737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab0 -00037291 67.61676788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac0 -00037292 67.61676788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac0 -00037293 67.61679077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad0 -00037294 67.61679077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad0 -00037295 67.61682892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae0 -00037296 67.61682892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae0 -00037297 67.61685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af0 -00037298 67.61685944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af0 -00037299 67.61688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b00 -00037300 67.61688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b00 -00037301 67.61691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b10 -00037302 67.61691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b10 -00037303 67.61694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b20 -00037304 67.61694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b20 -00037305 67.61696625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b30 -00037306 67.61697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b30 -00037307 67.61699677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b40 -00037308 67.61699677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b40 -00037309 67.61702728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b50 -00037310 67.61702728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b50 -00037311 67.61705017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b60 -00037312 67.61705780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b60 -00037313 67.61707306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b70 -00037314 67.61708069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b70 -00037315 67.61710358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b80 -00037316 67.61710358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b80 -00037317 67.61713409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b90 -00037318 67.61713409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b90 -00037319 67.61715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba0 -00037320 67.61716461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba0 -00037321 67.61718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb0 -00037322 67.61718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb0 -00037323 67.61721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc0 -00037324 67.61721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc0 -00037325 67.61724091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd0 -00037326 67.61724091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd0 -00037327 67.61726379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be0 -00037328 67.61727142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be0 -00037329 67.61729431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf0 -00037330 67.61730194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf0 -00037331 67.61732483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c00 -00037332 67.61732483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c00 -00037333 67.61734772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c10 -00037334 67.61734772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c10 -00037335 67.61737823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c20 -00037336 67.61738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c20 -00037337 67.61740112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c30 -00037338 67.61740875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c30 -00037339 67.61743164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c40 -00037340 67.61743927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c40 -00037341 67.61746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c50 -00037342 67.61746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c50 -00037343 67.61749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c60 -00037344 67.61750031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c60 -00037345 67.61752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c70 -00037346 67.61752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c70 -00037347 67.61754608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c80 -00037348 67.61755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c80 -00037349 67.61758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c90 -00037350 67.61758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c90 -00037351 67.61760712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ca0 -00037352 67.61760712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ca0 -00037353 67.61763000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cb0 -00037354 67.61763763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cb0 -00037355 67.61766052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cc0 -00037356 67.61766052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cc0 -00037357 67.61769104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cd0 -00037358 67.61769104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cd0 -00037359 67.61771393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ce0 -00037360 67.61772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ce0 -00037361 67.61774445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cf0 -00037362 67.61774445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48cf0 -00037363 67.61777496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d00 -00037364 67.61777496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d00 -00037365 67.61779785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d10 -00037366 67.61780548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d10 -00037367 67.61782074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d20 -00037368 67.61782837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d20 -00037369 67.61785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d30 -00037370 67.61785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d30 -00037371 67.61788177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d40 -00037372 67.61788177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d40 -00037373 67.61790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d50 -00037374 67.61791229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d50 -00037375 67.61793518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d60 -00037376 67.61794281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d60 -00037377 67.61796570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d70 -00037378 67.61796570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d70 -00037379 67.61798859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d80 -00037380 67.61798859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d80 -00037381 67.61801910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d90 -00037382 67.61801910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d90 -00037383 67.61804962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da0 -00037384 67.61804962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da0 -00037385 67.61807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db0 -00037386 67.61808014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db0 -00037387 67.61810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc0 -00037388 67.61810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc0 -00037389 67.61813354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd0 -00037390 67.61814117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd0 -00037391 67.61816406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de0 -00037392 67.61816406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de0 -00037393 67.61818695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df0 -00037394 67.61819458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df0 -00037395 67.61821747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e00 -00037396 67.61821747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e00 -00037397 67.61824799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e10 -00037398 67.61825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e10 -00037399 67.61827087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e20 -00037400 67.61827850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e20 -00037401 67.61830139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e30 -00037402 67.61830902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e30 -00037403 67.61833954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e40 -00037404 67.61833954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e40 -00037405 67.61836243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e50 -00037406 67.61837006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e50 -00037407 67.61839294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e60 -00037408 67.61839294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e60 -00037409 67.61841583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e70 -00037410 67.61842346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e70 -00037411 67.61845398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e80 -00037412 67.61845398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e80 -00037413 67.61847687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e90 -00037414 67.61847687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e90 -00037415 67.61849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ea0 -00037416 67.61850739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ea0 -00037417 67.61853027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48eb0 -00037418 67.61853790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48eb0 -00037419 67.61856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ec0 -00037420 67.61856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ec0 -00037421 67.61858368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ed0 -00037422 67.61858368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ed0 -00037423 67.61861420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ee0 -00037424 67.61861420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ee0 -00037425 67.61864471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ef0 -00037426 67.61865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ef0 -00037427 67.61867523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f00 -00037428 67.61867523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f00 -00037429 67.61869812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f10 -00037430 67.61870575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f10 -00037431 67.61873627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f20 -00037432 67.61873627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f20 -00037433 67.61875916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f30 -00037434 67.61876678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f30 -00037435 67.61878967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f40 -00037436 67.61879730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f40 -00037437 67.61882782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f50 -00037438 67.61883545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f50 -00037439 67.61886597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f60 -00037440 67.61886597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f60 -00037441 67.61889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f70 -00037442 67.61889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f70 -00037443 67.61892700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f80 -00037444 67.61892700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f80 -00037445 67.61894989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f90 -00037446 67.61895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f90 -00037447 67.61898041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fa0 -00037448 67.61898041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fa0 -00037449 67.61901093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fb0 -00037450 67.61901093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fb0 -00037451 67.61904144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fc0 -00037452 67.61904144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fc0 -00037453 67.61906433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fd0 -00037454 67.61907196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fd0 -00037455 67.61909485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fe0 -00037456 67.61909485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48fe0 -00037457 67.61912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ff0 -00037458 67.61913300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ff0 -00037459 67.61915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49000 -00037460 67.61915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49000 -00037461 67.61917877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49010 -00037462 67.61917877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49010 -00037463 67.61920929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49020 -00037464 67.61920929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49020 -00037465 67.61923981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49030 -00037466 67.61923981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49030 -00037467 67.61926270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49040 -00037468 67.61927032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49040 -00037469 67.61929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49050 -00037470 67.61929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49050 -00037471 67.61932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49060 -00037472 67.61933136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49060 -00037473 67.61935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49070 -00037474 67.61935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49070 -00037475 67.61937714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49080 -00037476 67.61938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49080 -00037477 67.61940765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49090 -00037478 67.61940765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49090 -00037479 67.61943817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a0 -00037480 67.61943817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a0 -00037481 67.61946869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b0 -00037482 67.61946869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b0 -00037483 67.61949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c0 -00037484 67.61949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c0 -00037485 67.61952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d0 -00037486 67.61952972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d0 -00037487 67.61955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e0 -00037488 67.61955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e0 -00037489 67.61957550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f0 -00037490 67.61958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f0 -00037491 67.61960602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49100 -00037492 67.61960602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49100 -00037493 67.61963654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49110 -00037494 67.61964417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49110 -00037495 67.61966705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49120 -00037496 67.61966705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49120 -00037497 67.61968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49130 -00037498 67.61968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49130 -00037499 67.61972809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49140 -00037500 67.61972809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49140 -00037501 67.61975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49150 -00037502 67.61975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49150 -00037503 67.61977386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49160 -00037504 67.61978149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49160 -00037505 67.61980438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49170 -00037506 67.61981201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49170 -00037507 67.61984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49180 -00037508 67.61984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49180 -00037509 67.61987305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49190 -00037510 67.61987305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49190 -00037511 67.61989594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a0 -00037512 67.61989594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a0 -00037513 67.61992645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b0 -00037514 67.61992645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b0 -00037515 67.61995697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c0 -00037516 67.61996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491c0 -00037517 67.61997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d0 -00037518 67.61998749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491d0 -00037519 67.62001038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e0 -00037520 67.62001038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491e0 -00037521 67.62004089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f0 -00037522 67.62004089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491f0 -00037523 67.62006378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49200 -00037524 67.62007141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49200 -00037525 67.62008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49210 -00037526 67.62009430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49210 -00037527 67.62012482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49220 -00037528 67.62012482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49220 -00037529 67.62014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49230 -00037530 67.62014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49230 -00037531 67.62017059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49240 -00037532 67.62017059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49240 -00037533 67.62020111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49250 -00037534 67.62020111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49250 -00037535 67.62023163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49260 -00037536 67.62023163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49260 -00037537 67.62025452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49270 -00037538 67.62025452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49270 -00037539 67.62028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49280 -00037540 67.62028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49280 -00037541 67.62030792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49290 -00037542 67.62031555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49290 -00037543 67.62033844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492a0 -00037544 67.62033844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492a0 -00037545 67.62036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b0 -00037546 67.62036896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b0 -00037547 67.62039948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c0 -00037548 67.62039948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c0 -00037549 67.62042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d0 -00037550 67.62042999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d0 -00037551 67.62045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e0 -00037552 67.62045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e0 -00037553 67.62048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f0 -00037554 67.62048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f0 -00037555 67.62051392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49300 -00037556 67.62051392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49300 -00037557 67.62053680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49310 -00037558 67.62053680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49310 -00037559 67.62055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49320 -00037560 67.62056732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49320 -00037561 67.62059784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49330 -00037562 67.62059784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49330 -00037563 67.62062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49340 -00037564 67.62062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49340 -00037565 67.62064362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49350 -00037566 67.62064362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49350 -00037567 67.62067413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49360 -00037568 67.62068176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49360 -00037569 67.62070465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49370 -00037570 67.62070465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49370 -00037571 67.62072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49380 -00037572 67.62072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49380 -00037573 67.62075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49390 -00037574 67.62075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49390 -00037575 67.62078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a0 -00037576 67.62078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a0 -00037577 67.62081146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b0 -00037578 67.62081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b0 -00037579 67.62084198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c0 -00037580 67.62084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c0 -00037581 67.62087250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d0 -00037582 67.62088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d0 -00037583 67.62090302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e0 -00037584 67.62090302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e0 -00037585 67.62092590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f0 -00037586 67.62092590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f0 -00037587 67.62095642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49400 -00037588 67.62095642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49400 -00037589 67.62097931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -00037590 67.62098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -00037591 67.62100983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -00037592 67.62100983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -00037593 67.62104034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -00037594 67.62104034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -00037595 67.62107086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -00037596 67.62107086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -00037597 67.62109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -00037598 67.62110138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -00037599 67.62112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -00037600 67.62112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -00037601 67.62115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -00037602 67.62115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -00037603 67.62118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -00037604 67.62118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -00037605 67.62120819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -00037606 67.62120819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -00037607 67.62123871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -00037608 67.62123871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -00037609 67.62126923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -00037610 67.62127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -00037611 67.62129974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -00037612 67.62129974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -00037613 67.62132263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -00037614 67.62132263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -00037615 67.62135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -00037616 67.62135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -00037617 67.62138367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -00037618 67.62139130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -00037619 67.62141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -00037620 67.62141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -00037621 67.62143707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -00037622 67.62143707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -00037623 67.62146759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -00037624 67.62146759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -00037625 67.62149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -00037626 67.62149811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -00037627 67.62152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -00037628 67.62152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -00037629 67.62155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -00037630 67.62155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -00037631 67.62157440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -00037632 67.62158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -00037633 67.62160492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49570 -00037634 67.62160492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49570 -00037635 67.62163544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49580 -00037636 67.62163544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49580 -00037637 67.62166595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49590 -00037638 67.62166595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49590 -00037639 67.62168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a0 -00037640 67.62169647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a0 -00037641 67.62171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b0 -00037642 67.62171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b0 -00037643 67.62174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c0 -00037644 67.62174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c0 -00037645 67.62178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d0 -00037646 67.62178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d0 -00037647 67.62180328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e0 -00037648 67.62181091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e0 -00037649 67.62183380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f0 -00037650 67.62183380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f0 -00037651 67.62186432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49600 -00037652 67.62187195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49600 -00037653 67.62189484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49610 -00037654 67.62189484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49610 -00037655 67.62191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49620 -00037656 67.62191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49620 -00037657 67.62194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49630 -00037658 67.62194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49630 -00037659 67.62197113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49640 -00037660 67.62197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49640 -00037661 67.62200165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49650 -00037662 67.62200165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49650 -00037663 67.62203217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49660 -00037664 67.62203217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49660 -00037665 67.62205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49670 -00037666 67.62205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49670 -00037667 67.62207794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49680 -00037668 67.62208557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49680 -00037669 67.62210846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49690 -00037670 67.62210846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49690 -00037671 67.62213898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496a0 -00037672 67.62213898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496a0 -00037673 67.62216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b0 -00037674 67.62216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b0 -00037675 67.62219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c0 -00037676 67.62219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c0 -00037677 67.62221527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d0 -00037678 67.62222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d0 -00037679 67.62224579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e0 -00037680 67.62224579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e0 -00037681 67.62226868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f0 -00037682 67.62226868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f0 -00037683 67.62229919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49700 -00037684 67.62230682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49700 -00037685 67.62232208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49710 -00037686 67.62232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49710 -00037687 67.62235260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49720 -00037688 67.62236023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49720 -00037689 67.62239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49730 -00037690 67.62239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49730 -00037691 67.62241364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49740 -00037692 67.62242126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49740 -00037693 67.62244415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49750 -00037694 67.62244415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49750 -00037695 67.62246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49760 -00037696 67.62247467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49760 -00037697 67.62250519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49770 -00037698 67.62250519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49770 -00037699 67.62252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49780 -00037700 67.62252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49780 -00037701 67.62255096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49790 -00037702 67.62255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49790 -00037703 67.62258148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497a0 -00037704 67.62258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497a0 -00037705 67.62261200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497b0 -00037706 67.62261200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497b0 -00037707 67.62263489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497c0 -00037708 67.62263489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497c0 -00037709 67.62266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497d0 -00037710 67.62266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497d0 -00037711 67.62268829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497e0 -00037712 67.62269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497e0 -00037713 67.62271881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497f0 -00037714 67.62271881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x497f0 -00037715 67.62274933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49800 -00037716 67.62274933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49800 -00037717 67.62277985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49810 -00037718 67.62277985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49810 -00037719 67.62280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49820 -00037720 67.62281036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49820 -00037721 67.62283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49830 -00037722 67.62283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49830 -00037723 67.62286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49840 -00037724 67.62286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49840 -00037725 67.62289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49850 -00037726 67.62289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49850 -00037727 67.62291718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49860 -00037728 67.62292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49860 -00037729 67.62294769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49870 -00037730 67.62294769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49870 -00037731 67.62297821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49880 -00037732 67.62297821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49880 -00037733 67.62300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49890 -00037734 67.62300873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49890 -00037735 67.62302399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498a0 -00037736 67.62303162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498a0 -00037737 67.62306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498b0 -00037738 67.62306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498b0 -00037739 67.62308502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498c0 -00037740 67.62309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498c0 -00037741 67.62311554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498d0 -00037742 67.62311554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498d0 -00037743 67.62314606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498e0 -00037744 67.62314606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498e0 -00037745 67.62317657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f0 -00037746 67.62317657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f0 -00037747 67.62319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49900 -00037748 67.62320709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49900 -00037749 67.62322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49910 -00037750 67.62322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49910 -00037751 67.62326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49920 -00037752 67.62326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49920 -00037753 67.62328339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49930 -00037754 67.62329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49930 -00037755 67.62331390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49940 -00037756 67.62331390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49940 -00037757 67.62334442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49950 -00037758 67.62334442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49950 -00037759 67.62336731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49960 -00037760 67.62337494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49960 -00037761 67.62339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49970 -00037762 67.62339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49970 -00037763 67.62342072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49980 -00037764 67.62342072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49980 -00037765 67.62345123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49990 -00037766 67.62345123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49990 -00037767 67.62347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a0 -00037768 67.62348175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a0 -00037769 67.62349701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b0 -00037770 67.62350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b0 -00037771 67.62353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c0 -00037772 67.62353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c0 -00037773 67.62355804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d0 -00037774 67.62355804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d0 -00037775 67.62358093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e0 -00037776 67.62358856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e0 -00037777 67.62361908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f0 -00037778 67.62361908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f0 -00037779 67.62364197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a00 -00037780 67.62364197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a00 -00037781 67.62366486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a10 -00037782 67.62367249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a10 -00037783 67.62369537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a20 -00037784 67.62370300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a20 -00037785 67.62372589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a30 -00037786 67.62373352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a30 -00037787 67.62375641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a40 -00037788 67.62375641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a40 -00037789 67.62377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a50 -00037790 67.62378693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a50 -00037791 67.62381744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a60 -00037792 67.62381744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a60 -00037793 67.62384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a70 -00037794 67.62384796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a70 -00037795 67.62387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a80 -00037796 67.62387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a80 -00037797 67.62390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a90 -00037798 67.62390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a90 -00037799 67.62393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa0 -00037800 67.62393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49aa0 -00037801 67.62395477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab0 -00037802 67.62396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ab0 -00037803 67.62398529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac0 -00037804 67.62398529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ac0 -00037805 67.62401581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad0 -00037806 67.62401581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ad0 -00037807 67.62404633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae0 -00037808 67.62404633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ae0 -00037809 67.62406921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af0 -00037810 67.62407684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49af0 -00037811 67.62409973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b00 -00037812 67.62409973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b00 -00037813 67.62413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b10 -00037814 67.62413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b10 -00037815 67.62415314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b20 -00037816 67.62415314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b20 -00037817 67.62417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b30 -00037818 67.62418365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b30 -00037819 67.62421417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b40 -00037820 67.62421417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b40 -00037821 67.62423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b50 -00037822 67.62424469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b50 -00037823 67.62426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b60 -00037824 67.62426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b60 -00037825 67.62429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b70 -00037826 67.62429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b70 -00037827 67.62432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b80 -00037828 67.62432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b80 -00037829 67.62435150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b90 -00037830 67.62435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b90 -00037831 67.62438202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba0 -00037832 67.62438202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba0 -00037833 67.62441254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb0 -00037834 67.62441254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb0 -00037835 67.62443542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc0 -00037836 67.62444305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc0 -00037837 67.62446594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd0 -00037838 67.62447357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd0 -00037839 67.62449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be0 -00037840 67.62449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be0 -00037841 67.62452698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf0 -00037842 67.62452698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf0 -00037843 67.62454987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c00 -00037844 67.62454987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c00 -00037845 67.62457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c10 -00037846 67.62458038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c10 -00037847 67.62461090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c20 -00037848 67.62461090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c20 -00037849 67.62463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c30 -00037850 67.62463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c30 -00037851 67.62465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c40 -00037852 67.62465668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c40 -00037853 67.62468719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c50 -00037854 67.62469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c50 -00037855 67.62471771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c60 -00037856 67.62471771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c60 -00037857 67.62474060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c70 -00037858 67.62474060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c70 -00037859 67.62477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c80 -00037860 67.62477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c80 -00037861 67.62480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c90 -00037862 67.62480927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c90 -00037863 67.62483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca0 -00037864 67.62483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca0 -00037865 67.62485504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb0 -00037866 67.62486267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb0 -00037867 67.62488556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc0 -00037868 67.62489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc0 -00037869 67.62491608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd0 -00037870 67.62491608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd0 -00037871 67.62493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce0 -00037872 67.62493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce0 -00037873 67.62496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf0 -00037874 67.62496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf0 -00037875 67.62499237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d00 -00037876 67.62500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d00 -00037877 67.62502289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d10 -00037878 67.62503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d10 -00037879 67.62505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d20 -00037880 67.62505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d20 -00037881 67.62508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d30 -00037882 67.62508392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d30 -00037883 67.62510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d40 -00037884 67.62511444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d40 -00037885 67.62513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d50 -00037886 67.62514496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d50 -00037887 67.62516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d60 -00037888 67.62516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d60 -00037889 67.62519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d70 -00037890 67.62519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d70 -00037891 67.62522125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d80 -00037892 67.62522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d80 -00037893 67.62525177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d90 -00037894 67.62525177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d90 -00037895 67.62528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da0 -00037896 67.62528229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da0 -00037897 67.62530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db0 -00037898 67.62530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db0 -00037899 67.62532806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc0 -00037900 67.62533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc0 -00037901 67.62535858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd0 -00037902 67.62536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd0 -00037903 67.62538910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de0 -00037904 67.62538910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de0 -00037905 67.62541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df0 -00037906 67.62541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df0 -00037907 67.62544250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e00 -00037908 67.62545013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e00 -00037909 67.62546539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e10 -00037910 67.62547302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e10 -00037911 67.62549591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e20 -00037912 67.62549591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e20 -00037913 67.62552643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e30 -00037914 67.62552643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e30 -00037915 67.62555695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e40 -00037916 67.62555695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e40 -00037917 67.62557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e50 -00037918 67.62557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e50 -00037919 67.62561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e60 -00037920 67.62561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e60 -00037921 67.62564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e70 -00037922 67.62564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e70 -00037923 67.62566376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e80 -00037924 67.62567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e80 -00037925 67.62569427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e90 -00037926 67.62569427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e90 -00037927 67.62572479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea0 -00037928 67.62572479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea0 -00037929 67.62575531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb0 -00037930 67.62575531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb0 -00037931 67.62577820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec0 -00037932 67.62578583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec0 -00037933 67.62580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed0 -00037934 67.62580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed0 -00037935 67.62583923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee0 -00037936 67.62584686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee0 -00037937 67.62586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef0 -00037938 67.62586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef0 -00037939 67.62589264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f00 -00037940 67.62589264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f00 -00037941 67.62592316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f10 -00037942 67.62592316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f10 -00037943 67.62595367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f20 -00037944 67.62595367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f20 -00037945 67.62597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f30 -00037946 67.62598419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f30 -00037947 67.62600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f40 -00037948 67.62600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f40 -00037949 67.62603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f50 -00037950 67.62604523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f50 -00037951 67.62606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f60 -00037952 67.62606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f60 -00037953 67.62609100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f70 -00037954 67.62609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f70 -00037955 67.62612152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f80 -00037956 67.62612152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f80 -00037957 67.62615204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f90 -00037958 67.62615204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f90 -00037959 67.62617493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa0 -00037960 67.62618256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa0 -00037961 67.62620544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fb0 -00037962 67.62620544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fb0 -00037963 67.62623596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fc0 -00037964 67.62624359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fc0 -00037965 67.62626648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fd0 -00037966 67.62626648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fd0 -00037967 67.62628937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fe0 -00037968 67.62629700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fe0 -00037969 67.62631989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ff0 -00037970 67.62631989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ff0 -00037971 67.62635040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a000 -00037972 67.62635040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a000 -00037973 67.62637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a010 -00037974 67.62638092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a010 -00037975 67.62640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a020 -00037976 67.62640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a020 -00037977 67.62643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a030 -00037978 67.62644196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a030 -00037979 67.62646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a040 -00037980 67.62646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a040 -00037981 67.62648773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a050 -00037982 67.62649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a050 -00037983 67.62651825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a060 -00037984 67.62651825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a060 -00037985 67.62654877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a070 -00037986 67.62654877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a070 -00037987 67.62657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a080 -00037988 67.62657928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a080 -00037989 67.62660217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a090 -00037990 67.62660980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a090 -00037991 67.62664032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a0 -00037992 67.62664032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0a0 -00037993 67.62666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b0 -00037994 67.62666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0b0 -00037995 67.62668610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0c0 -00037996 67.62669373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0c0 -00037997 67.62671661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0d0 -00037998 67.62671661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0d0 -00037999 67.62674713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0e0 -00038000 67.62674713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0e0 -00038001 67.62677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0f0 -00038002 67.62677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a0f0 -00038003 67.62680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a100 -00038004 67.62680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a100 -00038005 67.62683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a110 -00038006 67.62683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a110 -00038007 67.62686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a120 -00038008 67.62686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a120 -00038009 67.62688446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a130 -00038010 67.62688446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a130 -00038011 67.62691498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a140 -00038012 67.62691498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a140 -00038013 67.62694550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a150 -00038014 67.62694550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a150 -00038015 67.62697601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a160 -00038016 67.62697601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a160 -00038017 67.62700653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a170 -00038018 67.62700653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a170 -00038019 67.62703705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a180 -00038020 67.62703705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a180 -00038021 67.62705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a190 -00038022 67.62706757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a190 -00038023 67.62709045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a0 -00038024 67.62709808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1a0 -00038025 67.62711334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b0 -00038026 67.62712097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1b0 -00038027 67.62715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c0 -00038028 67.62715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1c0 -00038029 67.62718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d0 -00038030 67.62718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1d0 -00038031 67.62720490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e0 -00038032 67.62721252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1e0 -00038033 67.62723541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f0 -00038034 67.62723541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a1f0 -00038035 67.62726593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a200 -00038036 67.62726593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a200 -00038037 67.62728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a210 -00038038 67.62729645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a210 -00038039 67.62731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a220 -00038040 67.62731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a220 -00038041 67.62734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a230 -00038042 67.62734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a230 -00038043 67.62738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a240 -00038044 67.62738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a240 -00038045 67.62740326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a250 -00038046 67.62741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a250 -00038047 67.62743378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a260 -00038048 67.62743378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a260 -00038049 67.62747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a270 -00038050 67.62747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a270 -00038051 67.62749481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a280 -00038052 67.62750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a280 -00038053 67.62752533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a290 -00038054 67.62752533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a290 -00038055 67.62754822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2a0 -00038056 67.62755585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2a0 -00038057 67.62758636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2b0 -00038058 67.62758636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2b0 -00038059 67.62760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2c0 -00038060 67.62761688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2c0 -00038061 67.62763977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2d0 -00038062 67.62763977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2d0 -00038063 67.62767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2e0 -00038064 67.62767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2e0 -00038065 67.62770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2f0 -00038066 67.62770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a2f0 -00038067 67.62772369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a300 -00038068 67.62773132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a300 -00038069 67.62775421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a310 -00038070 67.62775421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a310 -00038071 67.62778473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a320 -00038072 67.62779236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a320 -00038073 67.62781525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a330 -00038074 67.62781525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a330 -00038075 67.62783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a340 -00038076 67.62784576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a340 -00038077 67.62786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a350 -00038078 67.62786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a350 -00038079 67.62789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a360 -00038080 67.62789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a360 -00038081 67.62792206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a370 -00038082 67.62792206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a370 -00038083 67.62795258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a380 -00038084 67.62795258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a380 -00038085 67.62797546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a390 -00038086 67.62798309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a390 -00038087 67.62800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a0 -00038088 67.62800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a0 -00038089 67.62802887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b0 -00038090 67.62802887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b0 -00038091 67.62805939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c0 -00038092 67.62806702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c0 -00038093 67.62808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d0 -00038094 67.62808990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d0 -00038095 67.62811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e0 -00038096 67.62811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e0 -00038097 67.62814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f0 -00038098 67.62814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f0 -00038099 67.62816620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a400 -00038100 67.62817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a400 -00038101 67.62818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a410 -00038102 67.62819672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a410 -00038103 67.62822723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a420 -00038104 67.62822723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a420 -00038105 67.62825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a430 -00038106 67.62825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a430 -00038107 67.62827301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a440 -00038108 67.62828064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a440 -00038109 67.62830353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a450 -00038110 67.62830353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a450 -00038111 67.62833405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a460 -00038112 67.62834167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a460 -00038113 67.62836456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a470 -00038114 67.62836456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a470 -00038115 67.62838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a480 -00038116 67.62839508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a480 -00038117 67.62842560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a490 -00038118 67.62842560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a490 -00038119 67.62844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a0 -00038120 67.62845612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a0 -00038121 67.62847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b0 -00038122 67.62847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b0 -00038123 67.62850189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c0 -00038124 67.62850189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c0 -00038125 67.62853241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4d0 -00038126 67.62854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4d0 -00038127 67.62855530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4e0 -00038128 67.62856293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4e0 -00038129 67.62858582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4f0 -00038130 67.62858582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4f0 -00038131 67.62861633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a500 -00038132 67.62861633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a500 -00038133 67.62863922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a510 -00038134 67.62864685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a510 -00038135 67.62866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a520 -00038136 67.62866974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a520 -00038137 67.62870026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a530 -00038138 67.62870026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a530 -00038139 67.62872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -00038140 67.62872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -00038141 67.62874603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -00038142 67.62875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -00038143 67.62878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -00038144 67.62878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -00038145 67.62881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -00038146 67.62881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -00038147 67.62883759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -00038148 67.62884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -00038149 67.62886810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -00038150 67.62886810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -00038151 67.62889862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -00038152 67.62889862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -00038153 67.62892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -00038154 67.62892914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -00038155 67.62894440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -00038156 67.62895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -00038157 67.62898254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -00038158 67.62898254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -00038159 67.62900543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -00038160 67.62900543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -00038161 67.62903595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -00038162 67.62903595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -00038163 67.62905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -00038164 67.62906647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -00038165 67.62909698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -00038166 67.62909698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -00038167 67.62911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -00038168 67.62912750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -00038169 67.62915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -00038170 67.62915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -00038171 67.62918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -00038172 67.62918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -00038173 67.62921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -00038174 67.62921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -00038175 67.62923431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -00038176 67.62924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -00038177 67.62926483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -00038178 67.62926483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -00038179 67.62929535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -00038180 67.62929535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -00038181 67.62931824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -00038182 67.62932587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -00038183 67.62934113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -00038184 67.62934875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -00038185 67.62937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -00038186 67.62937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -00038187 67.62940216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -00038188 67.62940216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -00038189 67.62942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -00038190 67.62942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -00038191 67.62945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -00038192 67.62945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -00038193 67.62948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -00038194 67.62948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -00038195 67.62950897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -00038196 67.62950897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -00038197 67.62953949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -00038198 67.62953949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -00038199 67.62956238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -00038200 67.62957001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -00038201 67.62959290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -00038202 67.62959290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -00038203 67.62961578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -00038204 67.62961578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -00038205 67.62967682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -00038206 67.62968445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -00038207 67.62969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -00038208 67.62970734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -00038209 67.62973785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -00038210 67.62973785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -00038211 67.62976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -00038212 67.62976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -00038213 67.62978363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -00038214 67.62979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -00038215 67.62981415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -00038216 67.62981415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -00038217 67.62984467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -00038218 67.62985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -00038219 67.62987518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -00038220 67.62987518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -00038221 67.62989807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d0 -00038222 67.62990570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d0 -00038223 67.62993622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e0 -00038224 67.62993622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e0 -00038225 67.62995911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f0 -00038226 67.62996674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f0 -00038227 67.62998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a800 -00038228 67.62998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a800 -00038229 67.63001251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a810 -00038230 67.63002014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a810 -00038231 67.63005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a820 -00038232 67.63005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a820 -00038233 67.63007355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a830 -00038234 67.63008118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a830 -00038235 67.63010406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a840 -00038236 67.63010406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a840 -00038237 67.63013458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a850 -00038238 67.63013458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a850 -00038239 67.63016510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a860 -00038240 67.63016510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a860 -00038241 67.63019562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a870 -00038242 67.63019562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a870 -00038243 67.63021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a880 -00038244 67.63021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a880 -00038245 67.63024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a890 -00038246 67.63024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a890 -00038247 67.63027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a0 -00038248 67.63028717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a0 -00038249 67.63031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b0 -00038250 67.63031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b0 -00038251 67.63033295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c0 -00038252 67.63034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c0 -00038253 67.63037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d0 -00038254 67.63037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d0 -00038255 67.63039398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e0 -00038256 67.63040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e0 -00038257 67.63042450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f0 -00038258 67.63042450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f0 -00038259 67.63044739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a900 -00038260 67.63045502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a900 -00038261 67.63048553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a910 -00038262 67.63048553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a910 -00038263 67.63050842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a920 -00038264 67.63051605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a920 -00038265 67.63053894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a930 -00038266 67.63053894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a930 -00038267 67.63056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a940 -00038268 67.63056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a940 -00038269 67.63059998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a950 -00038270 67.63059998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a950 -00038271 67.63062286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a960 -00038272 67.63063049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a960 -00038273 67.63065338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a970 -00038274 67.63066101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a970 -00038275 67.63069153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a980 -00038276 67.63069153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a980 -00038277 67.63071442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a990 -00038278 67.63072205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a990 -00038279 67.63074493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -00038280 67.63074493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -00038281 67.63076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -00038282 67.63077545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -00038283 67.63080597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -00038284 67.63080597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -00038285 67.63082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -00038286 67.63082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -00038287 67.63085175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -00038288 67.63085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -00038289 67.63088226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -00038290 67.63088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -00038291 67.63091278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -00038292 67.63091278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -00038293 67.63093567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -00038294 67.63093567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -00038295 67.63096619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -00038296 67.63096619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -00038297 67.63098907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -00038298 67.63099670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -00038299 67.63101959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -00038300 67.63101959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -00038301 67.63105011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -00038302 67.63105011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -00038303 67.63107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -00038304 67.63108063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -00038305 67.63110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -00038306 67.63110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -00038307 67.63112640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -00038308 67.63112640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -00038309 67.63115692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -00038310 67.63115692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -00038311 67.63117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -00038312 67.63118744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -00038313 67.63121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -00038314 67.63121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -00038315 67.63124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -00038316 67.63124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -00038317 67.63126373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -00038318 67.63127136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -00038319 67.63129425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -00038320 67.63129425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -00038321 67.63132477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -00038322 67.63132477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -00038323 67.63135529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab00 -00038324 67.63135529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab00 -00038325 67.63137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab10 -00038326 67.63138580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab10 -00038327 67.63140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab20 -00038328 67.63141632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab20 -00038329 67.63143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab30 -00038330 67.63144684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab30 -00038331 67.63146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -00038332 67.63146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -00038333 67.63149261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -00038334 67.63149261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -00038335 67.63152313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -00038336 67.63152313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -00038337 67.63154602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -00038338 67.63155365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -00038339 67.63157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -00038340 67.63157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -00038341 67.63159943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -00038342 67.63159943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -00038343 67.63162994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -00038344 67.63163757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -00038345 67.63166046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -00038346 67.63166046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -00038347 67.63168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -00038348 67.63168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -00038349 67.63171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -00038350 67.63172150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -00038351 67.63173676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -00038352 67.63174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -00038353 67.63176727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -00038354 67.63176727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -00038355 67.63179779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -00038356 67.63179779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -00038357 67.63182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -00038358 67.63182831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -00038359 67.63185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -00038360 67.63185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -00038361 67.63188171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -00038362 67.63188171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -00038363 67.63191223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -00038364 67.63191223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -00038365 67.63193512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -00038366 67.63194275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -00038367 67.63196564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -00038368 67.63196564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -00038369 67.63199615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -00038370 67.63200378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -00038371 67.63202667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -00038372 67.63202667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -00038373 67.63205719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -00038374 67.63205719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -00038375 67.63208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -00038376 67.63208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -00038377 67.63211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -00038378 67.63211823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -00038379 67.63214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -00038380 67.63214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -00038381 67.63216400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -00038382 67.63216400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -00038383 67.63219452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -00038384 67.63220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -00038385 67.63222504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -00038386 67.63222504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -00038387 67.63224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -00038388 67.63224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -00038389 67.63227844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -00038390 67.63227844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -00038391 67.63230896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -00038392 67.63231659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -00038393 67.63234711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -00038394 67.63234711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -00038395 67.63237000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad40 -00038396 67.63237000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad40 -00038397 67.63240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad50 -00038398 67.63240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad50 -00038399 67.63243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad60 -00038400 67.63243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad60 -00038401 67.63245392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad70 -00038402 67.63245392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad70 -00038403 67.63247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad80 -00038404 67.63248444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad80 -00038405 67.63251495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad90 -00038406 67.63251495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad90 -00038407 67.63254547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada0 -00038408 67.63254547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada0 -00038409 67.63256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb0 -00038410 67.63257599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb0 -00038411 67.63259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc0 -00038412 67.63259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc0 -00038413 67.63262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add0 -00038414 67.63263702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add0 -00038415 67.63265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade0 -00038416 67.63265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade0 -00038417 67.63268280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adf0 -00038418 67.63269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adf0 -00038419 67.63271332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae00 -00038420 67.63271332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae00 -00038421 67.63274384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae10 -00038422 67.63275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae10 -00038423 67.63277435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae20 -00038424 67.63277435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae20 -00038425 67.63280487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae30 -00038426 67.63280487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae30 -00038427 67.63283539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae40 -00038428 67.63283539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae40 -00038429 67.63286591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae50 -00038430 67.63286591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae50 -00038431 67.63288879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae60 -00038432 67.63289642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae60 -00038433 67.63291931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae70 -00038434 67.63291931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae70 -00038435 67.63294983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae80 -00038436 67.63294983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae80 -00038437 67.63298035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae90 -00038438 67.63298035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae90 -00038439 67.63301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aea0 -00038440 67.63301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aea0 -00038441 67.63303375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aeb0 -00038442 67.63304138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aeb0 -00038443 67.63307190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aec0 -00038444 67.63307190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aec0 -00038445 67.63309479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aed0 -00038446 67.63310242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aed0 -00038447 67.63312531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aee0 -00038448 67.63312531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aee0 -00038449 67.63314819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aef0 -00038450 67.63315582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aef0 -00038451 67.63318634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af00 -00038452 67.63318634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af00 -00038453 67.63321686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af10 -00038454 67.63321686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af10 -00038455 67.63323975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af20 -00038456 67.63324738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af20 -00038457 67.63327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af30 -00038458 67.63327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af30 -00038459 67.63330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af40 -00038460 67.63330841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af40 -00038461 67.63333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af50 -00038462 67.63333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af50 -00038463 67.63336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af60 -00038464 67.63336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af60 -00038465 67.63339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -00038466 67.63339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -00038467 67.63342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -00038468 67.63342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -00038469 67.63345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -00038470 67.63345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -00038471 67.63347626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -00038472 67.63348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -00038473 67.63350677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -00038474 67.63350677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -00038475 67.63354492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -00038476 67.63354492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -00038477 67.63356781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -00038478 67.63357544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -00038479 67.63359833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -00038480 67.63359833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -00038481 67.63362885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -00038482 67.63362885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -00038483 67.63365936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -00038484 67.63365936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -00038485 67.63368988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -00038486 67.63368988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -00038487 67.63371277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -00038488 67.63372040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -00038489 67.63375092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -00038490 67.63375092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -00038491 67.63377380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -00038492 67.63378143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -00038493 67.63380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -00038494 67.63380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -00038495 67.63382721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -00038496 67.63383484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -00038497 67.63386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -00038498 67.63386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -00038499 67.63388824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -00038500 67.63389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -00038501 67.63391876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -00038502 67.63391876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -00038503 67.63394928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -00038504 67.63394928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -00038505 67.63397980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -00038506 67.63397980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -00038507 67.63400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -00038508 67.63401031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -00038509 67.63403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d0 -00038510 67.63403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d0 -00038511 67.63406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e0 -00038512 67.63406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e0 -00038513 67.63409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f0 -00038514 67.63410187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f0 -00038515 67.63412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b100 -00038516 67.63412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b100 -00038517 67.63414764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b110 -00038518 67.63415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b110 -00038519 67.63418579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b120 -00038520 67.63418579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b120 -00038521 67.63421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b130 -00038522 67.63421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b130 -00038523 67.63423920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b140 -00038524 67.63424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b140 -00038525 67.63426971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b150 -00038526 67.63426971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b150 -00038527 67.63430023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b160 -00038528 67.63430023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b160 -00038529 67.63433075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b170 -00038530 67.63433075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b170 -00038531 67.63435364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b180 -00038532 67.63436127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b180 -00038533 67.63438416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b190 -00038534 67.63439178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b190 -00038535 67.63442230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1a0 -00038536 67.63442230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1a0 -00038537 67.63444519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1b0 -00038538 67.63445282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1b0 -00038539 67.63447571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1c0 -00038540 67.63447571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1c0 -00038541 67.63449860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1d0 -00038542 67.63450623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1d0 -00038543 67.63453674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1e0 -00038544 67.63453674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1e0 -00038545 67.63455963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1f0 -00038546 67.63456726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b1f0 -00038547 67.63459015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b200 -00038548 67.63459015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b200 -00038549 67.63462067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b210 -00038550 67.63462067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b210 -00038551 67.63465118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b220 -00038552 67.63465118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b220 -00038553 67.63467407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b230 -00038554 67.63468170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b230 -00038555 67.63470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b240 -00038556 67.63470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b240 -00038557 67.63473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b250 -00038558 67.63474274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b250 -00038559 67.63476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b260 -00038560 67.63476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b260 -00038561 67.63478851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b270 -00038562 67.63479614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b270 -00038563 67.63481903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b280 -00038564 67.63482666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b280 -00038565 67.63485718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b290 -00038566 67.63485718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b290 -00038567 67.63488007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2a0 -00038568 67.63488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2a0 -00038569 67.63491058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2b0 -00038570 67.63491058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2b0 -00038571 67.63494110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c0 -00038572 67.63494110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c0 -00038573 67.63497162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -00038574 67.63497162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -00038575 67.63499451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -00038576 67.63500214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -00038577 67.63502502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -00038578 67.63502502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -00038579 67.63505554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -00038580 67.63505554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -00038581 67.63508606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -00038582 67.63508606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -00038583 67.63510895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -00038584 67.63511658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -00038585 67.63513947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -00038586 67.63513947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -00038587 67.63516998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -00038588 67.63517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -00038589 67.63520050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -00038590 67.63520813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -00038591 67.63523102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -00038592 67.63523102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -00038593 67.63525391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -00038594 67.63526154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -00038595 67.63529205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -00038596 67.63529205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -00038597 67.63531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -00038598 67.63532257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -00038599 67.63534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -00038600 67.63534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -00038601 67.63537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -00038602 67.63537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -00038603 67.63540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -00038604 67.63540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -00038605 67.63542938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -00038606 67.63543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -00038607 67.63545990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -00038608 67.63545990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -00038609 67.63549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -00038610 67.63549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -00038611 67.63552094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -00038612 67.63552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -00038613 67.63555145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -00038614 67.63555145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -00038615 67.63557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b420 -00038616 67.63558197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b420 -00038617 67.63561249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -00038618 67.63561249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -00038619 67.63563538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -00038620 67.63564301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -00038621 67.63566589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -00038622 67.63566589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -00038623 67.63569641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -00038624 67.63569641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -00038625 67.63572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -00038626 67.63572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -00038627 67.63574982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -00038628 67.63575745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -00038629 67.63578033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -00038630 67.63578796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -00038631 67.63581085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -00038632 67.63581085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -00038633 67.63584137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -00038634 67.63584900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -00038635 67.63587189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -00038636 67.63587189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -00038637 67.63589478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -00038638 67.63590240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -00038639 67.63593292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -00038640 67.63593292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -00038641 67.63596344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -00038642 67.63596344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -00038643 67.63598633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -00038644 67.63599396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -00038645 67.63601685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -00038646 67.63601685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -00038647 67.63605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -00038648 67.63605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -00038649 67.63607788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -00038650 67.63607788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -00038651 67.63610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -00038652 67.63610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -00038653 67.63613129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -00038654 67.63613892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -00038655 67.63616943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -00038656 67.63616943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -00038657 67.63619232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -00038658 67.63619995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -00038659 67.63622284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -00038660 67.63622284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -00038661 67.63625336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -00038662 67.63625336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -00038663 67.63628387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -00038664 67.63628387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -00038665 67.63630676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -00038666 67.63631439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -00038667 67.63633728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -00038668 67.63633728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -00038669 67.63636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -00038670 67.63636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -00038671 67.63639832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -00038672 67.63639832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -00038673 67.63642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f0 -00038674 67.63642883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f0 -00038675 67.63645172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b600 -00038676 67.63645935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b600 -00038677 67.63648987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b610 -00038678 67.63648987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b610 -00038679 67.63651276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b620 -00038680 67.63652039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b620 -00038681 67.63654327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b630 -00038682 67.63654327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b630 -00038683 67.63656616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b640 -00038684 67.63657379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b640 -00038685 67.63660431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b650 -00038686 67.63660431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b650 -00038687 67.63662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b660 -00038688 67.63663483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b660 -00038689 67.63665771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b670 -00038690 67.63665771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b670 -00038691 67.63668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b680 -00038692 67.63668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b680 -00038693 67.63671875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b690 -00038694 67.63671875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b690 -00038695 67.63674164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a0 -00038696 67.63674927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a0 -00038697 67.63677216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b0 -00038698 67.63677216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b0 -00038699 67.63680267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c0 -00038700 67.63680267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c0 -00038701 67.63683319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d0 -00038702 67.63683319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d0 -00038703 67.63685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e0 -00038704 67.63686371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e0 -00038705 67.63688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f0 -00038706 67.63688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f0 -00038707 67.63692474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b700 -00038708 67.63692474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b700 -00038709 67.63694763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b710 -00038710 67.63695526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b710 -00038711 67.63697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b720 -00038712 67.63697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b720 -00038713 67.63700104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b730 -00038714 67.63700867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b730 -00038715 67.63703918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b740 -00038716 67.63703918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b740 -00038717 67.63706207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b750 -00038718 67.63706970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b750 -00038719 67.63709259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b760 -00038720 67.63709259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b760 -00038721 67.63712311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b770 -00038722 67.63712311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b770 -00038723 67.63715363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b780 -00038724 67.63715363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b780 -00038725 67.63718414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b790 -00038726 67.63718414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b790 -00038727 67.63720703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7a0 -00038728 67.63721466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7a0 -00038729 67.63724518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7b0 -00038730 67.63724518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7b0 -00038731 67.63726807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c0 -00038732 67.63727570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c0 -00038733 67.63729858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d0 -00038734 67.63729858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d0 -00038735 67.63732147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e0 -00038736 67.63732910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e0 -00038737 67.63735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f0 -00038738 67.63735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f0 -00038739 67.63738251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b800 -00038740 67.63739014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b800 -00038741 67.63741302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b810 -00038742 67.63741302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b810 -00038743 67.63744354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b820 -00038744 67.63744354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b820 -00038745 67.63747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b830 -00038746 67.63747406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b830 -00038747 67.63749695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b840 -00038748 67.63750458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b840 -00038749 67.63752747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b850 -00038750 67.63752747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b850 -00038751 67.63755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b860 -00038752 67.63755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b860 -00038753 67.63758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b870 -00038754 67.63758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b870 -00038755 67.63761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b880 -00038756 67.63761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b880 -00038757 67.63764191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b890 -00038758 67.63764954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b890 -00038759 67.63768005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a0 -00038760 67.63768005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a0 -00038761 67.63770294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b0 -00038762 67.63771057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b0 -00038763 67.63773346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c0 -00038764 67.63773346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c0 -00038765 67.63775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d0 -00038766 67.63776398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d0 -00038767 67.63779449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e0 -00038768 67.63779449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e0 -00038769 67.63781738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f0 -00038770 67.63782501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f0 -00038771 67.63784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b900 -00038772 67.63784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b900 -00038773 67.63787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b910 -00038774 67.63787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b910 -00038775 67.63790894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b920 -00038776 67.63790894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b920 -00038777 67.63793945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b930 -00038778 67.63793945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b930 -00038779 67.63796234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b940 -00038780 67.63796997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b940 -00038781 67.63800049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b950 -00038782 67.63800049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b950 -00038783 67.63802338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b960 -00038784 67.63803101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b960 -00038785 67.63805389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b970 -00038786 67.63805389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b970 -00038787 67.63807678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b980 -00038788 67.63808441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b980 -00038789 67.63811493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b990 -00038790 67.63811493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b990 -00038791 67.63813782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a0 -00038792 67.63814545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a0 -00038793 67.63816833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b0 -00038794 67.63816833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b0 -00038795 67.63819885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c0 -00038796 67.63819885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c0 -00038797 67.63822937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d0 -00038798 67.63823700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d0 -00038799 67.63825989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e0 -00038800 67.63825989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e0 -00038801 67.63828278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f0 -00038802 67.63829041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f0 -00038803 67.63831329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba00 -00038804 67.63831329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba00 -00038805 67.63834381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba10 -00038806 67.63835144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba10 -00038807 67.63837433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba20 -00038808 67.63837433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba20 -00038809 67.63839722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba30 -00038810 67.63840485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba30 -00038811 67.63843536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba40 -00038812 67.63843536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba40 -00038813 67.63846588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba50 -00038814 67.63846588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba50 -00038815 67.63848877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba60 -00038816 67.63849640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba60 -00038817 67.63851929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba70 -00038818 67.63851929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba70 -00038819 67.63854980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba80 -00038820 67.63854980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba80 -00038821 67.63858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba90 -00038822 67.63858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba90 -00038823 67.63861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -00038824 67.63861084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -00038825 67.63863373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -00038826 67.63864136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -00038827 67.63867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -00038828 67.63867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -00038829 67.63869476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -00038830 67.63870239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -00038831 67.63872528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -00038832 67.63872528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -00038833 67.63875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -00038834 67.63875580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -00038835 67.63878632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -00038836 67.63878632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -00038837 67.63880920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -00038838 67.63881683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -00038839 67.63883972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -00038840 67.63883972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -00038841 67.63887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -00038842 67.63887024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -00038843 67.63890076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -00038844 67.63890076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -00038845 67.63892365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -00038846 67.63893127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -00038847 67.63895416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -00038848 67.63895416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -00038849 67.63898468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -00038850 67.63899231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -00038851 67.63901520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -00038852 67.63901520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -00038853 67.63904572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -00038854 67.63904572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -00038855 67.63906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -00038856 67.63907623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -00038857 67.63910675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -00038858 67.63910675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -00038859 67.63912964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -00038860 67.63912964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -00038861 67.63916016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -00038862 67.63916016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -00038863 67.63919067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -00038864 67.63919067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -00038865 67.63922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -00038866 67.63922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -00038867 67.63925171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc00 -00038868 67.63925171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc00 -00038869 67.63927460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc10 -00038870 67.63928223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc10 -00038871 67.63930511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc20 -00038872 67.63930511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc20 -00038873 67.63933563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc30 -00038874 67.63934326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc30 -00038875 67.63936615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc40 -00038876 67.63936615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc40 -00038877 67.63938904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc50 -00038878 67.63939667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc50 -00038879 67.63942719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc60 -00038880 67.63942719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc60 -00038881 67.63945007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc70 -00038882 67.63945770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc70 -00038883 67.63948059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc80 -00038884 67.63948059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc80 -00038885 67.63951111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc90 -00038886 67.63951111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc90 -00038887 67.63954163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bca0 -00038888 67.63954926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bca0 -00038889 67.63957214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcb0 -00038890 67.63957214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcb0 -00038891 67.63959503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc0 -00038892 67.63960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc0 -00038893 67.63962555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd0 -00038894 67.63962555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd0 -00038895 67.63965607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce0 -00038896 67.63966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce0 -00038897 67.63968658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf0 -00038898 67.63968658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf0 -00038899 67.63971710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd00 -00038900 67.63971710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd00 -00038901 67.63974762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd10 -00038902 67.63974762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd10 -00038903 67.63977814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd20 -00038904 67.63977814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd20 -00038905 67.63980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd30 -00038906 67.63980865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd30 -00038907 67.63983154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd40 -00038908 67.63983154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd40 -00038909 67.63986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd50 -00038910 67.63986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd50 -00038911 67.63989258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd60 -00038912 67.63989258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd60 -00038913 67.63991547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd70 -00038914 67.63992310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd70 -00038915 67.63994598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd80 -00038916 67.63994598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd80 -00038917 67.63997650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd90 -00038918 67.63998413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd90 -00038919 67.64000702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda0 -00038920 67.64000702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda0 -00038921 67.64002991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb0 -00038922 67.64003754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb0 -00038923 67.64006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc0 -00038924 67.64006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc0 -00038925 67.64009094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd0 -00038926 67.64009857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd0 -00038927 67.64012146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde0 -00038928 67.64012909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde0 -00038929 67.64015198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf0 -00038930 67.64015198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf0 -00038931 67.64018250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be00 -00038932 67.64018250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be00 -00038933 67.64021301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be10 -00038934 67.64021301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be10 -00038935 67.64023590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be20 -00038936 67.64024353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be20 -00038937 67.64026642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be30 -00038938 67.64026642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be30 -00038939 67.64030457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be40 -00038940 67.64030457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be40 -00038941 67.64032745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be50 -00038942 67.64033508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be50 -00038943 67.64035797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be60 -00038944 67.64035797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be60 -00038945 67.64038086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be70 -00038946 67.64038849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be70 -00038947 67.64041901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -00038948 67.64041901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -00038949 67.64044189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -00038950 67.64044952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -00038951 67.64047241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -00038952 67.64047241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -00038953 67.64050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -00038954 67.64050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -00038955 67.64053345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -00038956 67.64054108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -00038957 67.64056396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -00038958 67.64056396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -00038959 67.64058685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -00038960 67.64059448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -00038961 67.64061737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -00038962 67.64062500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -00038963 67.64065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -00038964 67.64065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -00038965 67.64067841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -00038966 67.64068604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -00038967 67.64070892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -00038968 67.64070892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -00038969 67.64073944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -00038970 67.64073944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -00038971 67.64076996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -00038972 67.64077759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -00038973 67.64080048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -00038974 67.64080048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -00038975 67.64083099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -00038976 67.64083099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -00038977 67.64085388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -00038978 67.64086151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -00038979 67.64089203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -00038980 67.64089203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -00038981 67.64092255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -00038982 67.64092255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -00038983 67.64094543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -00038984 67.64095306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -00038985 67.64097595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -00038986 67.64097595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -00038987 67.64100647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -00038988 67.64101410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -00038989 67.64103699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -00038990 67.64103699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -00038991 67.64106750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfe0 -00038992 67.64107513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfe0 -00038993 67.64109802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bff0 -00038994 67.64109802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bff0 -00038995 67.64112854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c000 -00038996 67.64113617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c000 -00038997 67.64115906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c010 -00038998 67.64115906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c010 -00038999 67.64118195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -00039000 67.64118958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c020 -00039001 67.64121246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -00039002 67.64121246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c030 -00039003 67.64125061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -00039004 67.64125061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c040 -00039005 67.64127350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -00039006 67.64128113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c050 -00039007 67.64130402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -00039008 67.64130402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c060 -00039009 67.64133453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -00039010 67.64133453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c070 -00039011 67.64136505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -00039012 67.64136505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c080 -00039013 67.64138794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -00039014 67.64139557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c090 -00039015 67.64141846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -00039016 67.64141846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a0 -00039017 67.64144897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -00039018 67.64145660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b0 -00039019 67.64147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -00039020 67.64147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c0 -00039021 67.64151001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -00039022 67.64151001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d0 -00039023 67.64153290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -00039024 67.64153290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e0 -00039025 67.64156342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -00039026 67.64157104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f0 -00039027 67.64159393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -00039028 67.64159393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c100 -00039029 67.64162445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -00039030 67.64162445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c110 -00039031 67.64165497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -00039032 67.64165497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c120 -00039033 67.64168549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -00039034 67.64168549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c130 -00039035 67.64170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -00039036 67.64171600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c140 -00039037 67.64173889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -00039038 67.64173889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c150 -00039039 67.64176941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -00039040 67.64176941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c160 -00039041 67.64179993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -00039042 67.64179993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c170 -00039043 67.64182281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c180 -00039044 67.64183044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c180 -00039045 67.64185333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c190 -00039046 67.64185333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c190 -00039047 67.64188385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a0 -00039048 67.64189148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a0 -00039049 67.64191437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b0 -00039050 67.64191437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b0 -00039051 67.64194489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c0 -00039052 67.64194489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c0 -00039053 67.64196777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d0 -00039054 67.64196777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d0 -00039055 67.64200592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e0 -00039056 67.64200592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e0 -00039057 67.64202881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f0 -00039058 67.64202881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f0 -00039059 67.64205933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c200 -00039060 67.64205933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c200 -00039061 67.64208984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c210 -00039062 67.64208984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c210 -00039063 67.64212036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c220 -00039064 67.64212036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c220 -00039065 67.64214325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c230 -00039066 67.64215088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c230 -00039067 67.64217377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c240 -00039068 67.64217377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c240 -00039069 67.64220428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c250 -00039070 67.64220428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c250 -00039071 67.64223480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c260 -00039072 67.64223480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c260 -00039073 67.64225769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c270 -00039074 67.64226532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c270 -00039075 67.64228821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c280 -00039076 67.64228821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c280 -00039077 67.64231873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c290 -00039078 67.64232635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c290 -00039079 67.64234924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2a0 -00039080 67.64234924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2a0 -00039081 67.64237213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2b0 -00039082 67.64237976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2b0 -00039083 67.64240265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2c0 -00039084 67.64240265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2c0 -00039085 67.64244080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2d0 -00039086 67.64244080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2d0 -00039087 67.64246368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2e0 -00039088 67.64247131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2e0 -00039089 67.64249420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2f0 -00039090 67.64249420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c2f0 -00039091 67.64252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c300 -00039092 67.64252472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c300 -00039093 67.64255524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c310 -00039094 67.64255524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c310 -00039095 67.64257813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c320 -00039096 67.64258575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c320 -00039097 67.64260864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c330 -00039098 67.64260864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c330 -00039099 67.64263916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c340 -00039100 67.64264679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c340 -00039101 67.64266968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c350 -00039102 67.64266968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c350 -00039103 67.64270020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c360 -00039104 67.64270020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c360 -00039105 67.64272308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c370 -00039106 67.64273071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c370 -00039107 67.64276123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c380 -00039108 67.64276123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c380 -00039109 67.64278412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -00039110 67.64278412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -00039111 67.64281464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -00039112 67.64281464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -00039113 67.64284515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -00039114 67.64284515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -00039115 67.64286804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -00039116 67.64287567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -00039117 67.64289856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -00039118 67.64289856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -00039119 67.64292908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -00039120 67.64292908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -00039121 67.64295959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -00039122 67.64295959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -00039123 67.64298248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -00039124 67.64299011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -00039125 67.64301300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -00039126 67.64302063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -00039127 67.64304352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -00039128 67.64304352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -00039129 67.64307404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -00039130 67.64308167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -00039131 67.64310455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c440 -00039132 67.64310455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c440 -00039133 67.64312744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c450 -00039134 67.64313507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c450 -00039135 67.64315796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c460 -00039136 67.64315796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c460 -00039137 67.64318848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c470 -00039138 67.64319611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c470 -00039139 67.64321899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c480 -00039140 67.64321899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c480 -00039141 67.64324951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c490 -00039142 67.64324951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c490 -00039143 67.64328003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a0 -00039144 67.64328003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a0 -00039145 67.64331055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b0 -00039146 67.64331055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b0 -00039147 67.64333344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c0 -00039148 67.64334106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c0 -00039149 67.64336395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d0 -00039150 67.64336395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d0 -00039151 67.64339447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e0 -00039152 67.64340210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e0 -00039153 67.64342499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f0 -00039154 67.64342499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f0 -00039155 67.64344788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c500 -00039156 67.64345551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c500 -00039157 67.64347839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c510 -00039158 67.64347839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c510 -00039159 67.64350891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c520 -00039160 67.64351654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c520 -00039161 67.64353943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c530 -00039162 67.64353943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c530 -00039163 67.64356232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c540 -00039164 67.64356995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c540 -00039165 67.64360046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c550 -00039166 67.64360046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c550 -00039167 67.64362335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c560 -00039168 67.64363098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c560 -00039169 67.64365387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c570 -00039170 67.64365387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c570 -00039171 67.64367676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c580 -00039172 67.64368439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c580 -00039173 67.64371490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c590 -00039174 67.64371490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c590 -00039175 67.64374542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a0 -00039176 67.64374542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a0 -00039177 67.64376831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b0 -00039178 67.64376831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b0 -00039179 67.64379883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c0 -00039180 67.64379883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c0 -00039181 67.64382935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d0 -00039182 67.64383698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d0 -00039183 67.64385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5e0 -00039184 67.64385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5e0 -00039185 67.64388275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5f0 -00039186 67.64388275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5f0 -00039187 67.64391327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c600 -00039188 67.64391327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c600 -00039189 67.64394379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c610 -00039190 67.64395142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c610 -00039191 67.64397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c620 -00039192 67.64397430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c620 -00039193 67.64399719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c630 -00039194 67.64400482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c630 -00039195 67.64403534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c640 -00039196 67.64403534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c640 -00039197 67.64405823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c650 -00039198 67.64406586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c650 -00039199 67.64408875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c660 -00039200 67.64408875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c660 -00039201 67.64411926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c670 -00039202 67.64411926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c670 -00039203 67.64414978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c680 -00039204 67.64415741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c680 -00039205 67.64418030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c690 -00039206 67.64418030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c690 -00039207 67.64420319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a0 -00039208 67.64421082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6a0 -00039209 67.64423370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b0 -00039210 67.64423370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6b0 -00039211 67.64426422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c0 -00039212 67.64427185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6c0 -00039213 67.64429474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d0 -00039214 67.64429474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6d0 -00039215 67.64431763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e0 -00039216 67.64432526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6e0 -00039217 67.64435577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f0 -00039218 67.64435577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c6f0 -00039219 67.64438629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -00039220 67.64438629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -00039221 67.64440918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -00039222 67.64441681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -00039223 67.64443970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -00039224 67.64444733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -00039225 67.64447021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -00039226 67.64447021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -00039227 67.64450836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -00039228 67.64450836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -00039229 67.64453125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -00039230 67.64453888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -00039231 67.64456177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -00039232 67.64456177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -00039233 67.64459229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -00039234 67.64459229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -00039235 67.64462280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -00039236 67.64463043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -00039237 67.64465332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -00039238 67.64466095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -00039239 67.64468384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -00039240 67.64469147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -00039241 67.64471436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -00039242 67.64472198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -00039243 67.64475250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -00039244 67.64475250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -00039245 67.64478302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -00039246 67.64478302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -00039247 67.64480591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -00039248 67.64481354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -00039249 67.64484406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -00039250 67.64485168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -00039251 67.64488220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -00039252 67.64488983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -00039253 67.64491272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -00039254 67.64492035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -00039255 67.64495087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -00039256 67.64495087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -00039257 67.64497375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -00039258 67.64498138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -00039259 67.64500427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -00039260 67.64500427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -00039261 67.64502716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -00039262 67.64503479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -00039263 67.64506531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c860 -00039264 67.64506531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c860 -00039265 67.64508820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c870 -00039266 67.64509583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c870 -00039267 67.64511871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c880 -00039268 67.64511871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c880 -00039269 67.64514923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c890 -00039270 67.64514923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c890 -00039271 67.64517975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a0 -00039272 67.64517975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a0 -00039273 67.64521027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b0 -00039274 67.64521027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b0 -00039275 67.64523315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c0 -00039276 67.64524078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c0 -00039277 67.64526367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d0 -00039278 67.64526367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d0 -00039279 67.64529419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e0 -00039280 67.64529419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e0 -00039281 67.64532471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f0 -00039282 67.64532471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f0 -00039283 67.64534760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c900 -00039284 67.64534760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c900 -00039285 67.64537811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c910 -00039286 67.64538574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c910 -00039287 67.64540863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c920 -00039288 67.64540863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c920 -00039289 67.64543152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c930 -00039290 67.64543915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c930 -00039291 67.64546204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -00039292 67.64546204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -00039293 67.64549255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -00039294 67.64550018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -00039295 67.64552307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -00039296 67.64552307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -00039297 67.64554596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -00039298 67.64555359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -00039299 67.64558411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -00039300 67.64558411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -00039301 67.64560699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -00039302 67.64560699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -00039303 67.64563751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -00039304 67.64563751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -00039305 67.64566040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -00039306 67.64566040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -00039307 67.64569092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -00039308 67.64569855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -00039309 67.64572144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -00039310 67.64572144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -00039311 67.64574432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -00039312 67.64575195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -00039313 67.64578247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -00039314 67.64578247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -00039315 67.64580536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -00039316 67.64581299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -00039317 67.64583588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -00039318 67.64583588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -00039319 67.64585876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -00039320 67.64586639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -00039321 67.64589691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -00039322 67.64589691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -00039323 67.64591980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -00039324 67.64591980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -00039325 67.64594269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -00039326 67.64595032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -00039327 67.64598083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -00039328 67.64598083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -00039329 67.64600372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -00039330 67.64601135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -00039331 67.64603424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -00039332 67.64603424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -00039333 67.64605713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -00039334 67.64606476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -00039335 67.64609528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa0 -00039336 67.64609528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa0 -00039337 67.64611816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab0 -00039338 67.64611816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab0 -00039339 67.64614868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac0 -00039340 67.64614868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac0 -00039341 67.64617920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad0 -00039342 67.64617920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad0 -00039343 67.64620972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae0 -00039344 67.64620972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae0 -00039345 67.64623260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf0 -00039346 67.64623260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf0 -00039347 67.64625549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb00 -00039348 67.64626312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb00 -00039349 67.64629364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb10 -00039350 67.64629364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb10 -00039351 67.64631653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb20 -00039352 67.64632416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb20 -00039353 67.64634705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb30 -00039354 67.64634705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb30 -00039355 67.64637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb40 -00039356 67.64637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb40 -00039357 67.64640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb50 -00039358 67.64640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb50 -00039359 67.64643097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb60 -00039360 67.64643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb60 -00039361 67.64646149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb70 -00039362 67.64646149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb70 -00039363 67.64649200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb80 -00039364 67.64649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb80 -00039365 67.64652252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb90 -00039366 67.64652252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb90 -00039367 67.64654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba0 -00039368 67.64655304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba0 -00039369 67.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb0 -00039370 67.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb0 -00039371 67.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc0 -00039372 67.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc0 -00039373 67.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd0 -00039374 67.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd0 -00039375 67.64665985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe0 -00039376 67.64665985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe0 -00039377 67.64669800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf0 -00039378 67.64669800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf0 -00039379 67.64672089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc00 -00039380 67.64672089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc00 -00039381 67.64674377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc10 -00039382 67.64675140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc10 -00039383 67.64677429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc20 -00039384 67.64677429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc20 -00039385 67.64680481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc30 -00039386 67.64681244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc30 -00039387 67.64683533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc40 -00039388 67.64683533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc40 -00039389 67.64685822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc50 -00039390 67.64686584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc50 -00039391 67.64689636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc60 -00039392 67.64689636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc60 -00039393 67.64691925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc70 -00039394 67.64692688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc70 -00039395 67.64694977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc80 -00039396 67.64694977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc80 -00039397 67.64697266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc90 -00039398 67.64697266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc90 -00039399 67.64701080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca0 -00039400 67.64701080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca0 -00039401 67.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb0 -00039402 67.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb0 -00039403 67.64705658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc0 -00039404 67.64706421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc0 -00039405 67.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd0 -00039406 67.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd0 -00039407 67.64711761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce0 -00039408 67.64712524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce0 -00039409 67.64714813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf0 -00039410 67.64714813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf0 -00039411 67.64717102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd00 -00039412 67.64717865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd00 -00039413 67.64720917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd10 -00039414 67.64720917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd10 -00039415 67.64723206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd20 -00039416 67.64723969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd20 -00039417 67.64726257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd30 -00039418 67.64726257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd30 -00039419 67.64729309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd40 -00039420 67.64729309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd40 -00039421 67.64732361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd50 -00039422 67.64732361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd50 -00039423 67.64734650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd60 -00039424 67.64735413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd60 -00039425 67.64737701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd70 -00039426 67.64737701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd70 -00039427 67.64740753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd80 -00039428 67.64740753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd80 -00039429 67.64743805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd90 -00039430 67.64743805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd90 -00039431 67.64746094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda0 -00039432 67.64746857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda0 -00039433 67.64749146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb0 -00039434 67.64749146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb0 -00039435 67.64752197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc0 -00039436 67.64752960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc0 -00039437 67.64755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd0 -00039438 67.64755249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd0 -00039439 67.64757538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cde0 -00039440 67.64757538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cde0 -00039441 67.64760590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdf0 -00039442 67.64760590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdf0 -00039443 67.64763641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce00 -00039444 67.64763641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce00 -00039445 67.64765930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce10 -00039446 67.64766693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce10 -00039447 67.64768982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce20 -00039448 67.64768982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce20 -00039449 67.64772034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce30 -00039450 67.64772797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce30 -00039451 67.64775085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce40 -00039452 67.64775085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce40 -00039453 67.64777374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce50 -00039454 67.64778137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce50 -00039455 67.64780426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce60 -00039456 67.64780426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce60 -00039457 67.64783478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce70 -00039458 67.64783478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce70 -00039459 67.64785767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce80 -00039460 67.64786530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce80 -00039461 67.64788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce90 -00039462 67.64788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce90 -00039463 67.64791870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cea0 -00039464 67.64792633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cea0 -00039465 67.64794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ceb0 -00039466 67.64794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ceb0 -00039467 67.64797211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cec0 -00039468 67.64797974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cec0 -00039469 67.64800262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ced0 -00039470 67.64800262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ced0 -00039471 67.64803314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cee0 -00039472 67.64803314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cee0 -00039473 67.64806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cef0 -00039474 67.64806366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cef0 -00039475 67.64808655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf00 -00039476 67.64808655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf00 -00039477 67.64811707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf10 -00039478 67.64812469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf10 -00039479 67.64814758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf20 -00039480 67.64814758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf20 -00039481 67.64817047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf30 -00039482 67.64817810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf30 -00039483 67.64820099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf40 -00039484 67.64820099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf40 -00039485 67.64823151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf50 -00039486 67.64823914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf50 -00039487 67.64826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf60 -00039488 67.64826202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf60 -00039489 67.64828491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf70 -00039490 67.64829254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf70 -00039491 67.64832306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf80 -00039492 67.64832306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf80 -00039493 67.64834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf90 -00039494 67.64835358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf90 -00039495 67.64837646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa0 -00039496 67.64837646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa0 -00039497 67.64840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb0 -00039498 67.64840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb0 -00039499 67.64843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc0 -00039500 67.64843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc0 -00039501 67.64846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd0 -00039502 67.64846039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd0 -00039503 67.64848328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe0 -00039504 67.64849091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe0 -00039505 67.64852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff0 -00039506 67.64852142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff0 -00039507 67.64854431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d000 -00039508 67.64855194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d000 -00039509 67.64857483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d010 -00039510 67.64857483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d010 -00039511 67.64860535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d020 -00039512 67.64860535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d020 -00039513 67.64863586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d030 -00039514 67.64863586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d030 -00039515 67.64865875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d040 -00039516 67.64866638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d040 -00039517 67.64868927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d050 -00039518 67.64868927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d050 -00039519 67.64871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d060 -00039520 67.64871979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d060 -00039521 67.64875031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d070 -00039522 67.64875031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d070 -00039523 67.64877319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d080 -00039524 67.64878082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d080 -00039525 67.64880371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d090 -00039526 67.64880371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d090 -00039527 67.64883423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a0 -00039528 67.64884186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a0 -00039529 67.64886475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b0 -00039530 67.64886475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0b0 -00039531 67.64888763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -00039532 67.64888763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -00039533 67.64891815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -00039534 67.64891815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -00039535 67.64894867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -00039536 67.64894867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -00039537 67.64897156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -00039538 67.64897919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -00039539 67.64900208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -00039540 67.64900208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -00039541 67.64903259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -00039542 67.64904022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -00039543 67.64906311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -00039544 67.64906311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -00039545 67.64908600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -00039546 67.64908600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -00039547 67.64911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -00039548 67.64911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -00039549 67.64914703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -00039550 67.64914703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -00039551 67.64916992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -00039552 67.64917755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -00039553 67.64920044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -00039554 67.64920044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -00039555 67.64923096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -00039556 67.64923859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -00039557 67.64926147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -00039558 67.64926147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -00039559 67.64928436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -00039560 67.64929199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -00039561 67.64931488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -00039562 67.64931488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -00039563 67.64934540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -00039564 67.64935303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -00039565 67.64937592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -00039566 67.64937592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -00039567 67.64939880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -00039568 67.64939880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -00039569 67.64942932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -00039570 67.64943695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -00039571 67.64945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -00039572 67.64945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -00039573 67.64948273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -00039574 67.64949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -00039575 67.64951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -00039576 67.64951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -00039577 67.64954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -00039578 67.64955139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -00039579 67.64957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -00039580 67.64957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -00039581 67.64959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -00039582 67.64960480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d250 -00039583 67.64963531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -00039584 67.64963531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d260 -00039585 67.64965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -00039586 67.64965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d270 -00039587 67.64968109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -00039588 67.64968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d280 -00039589 67.64971161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -00039590 67.64971161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d290 -00039591 67.64974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -00039592 67.64974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a0 -00039593 67.64977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -00039594 67.64977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b0 -00039595 67.64979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -00039596 67.64980316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c0 -00039597 67.64983368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -00039598 67.64983368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d0 -00039599 67.64985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e0 -00039600 67.64985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e0 -00039601 67.64987946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f0 -00039602 67.64988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f0 -00039603 67.64990997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d300 -00039604 67.64990997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d300 -00039605 67.64994049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d310 -00039606 67.64994812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d310 -00039607 67.64997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d320 -00039608 67.64997101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d320 -00039609 67.64999390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d330 -00039610 67.65000153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d330 -00039611 67.65003204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d340 -00039612 67.65003204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d340 -00039613 67.65005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d350 -00039614 67.65005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d350 -00039615 67.65007782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d360 -00039616 67.65008545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d360 -00039617 67.65010834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d370 -00039618 67.65010834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d370 -00039619 67.65013885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d380 -00039620 67.65014648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d380 -00039621 67.65016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d390 -00039622 67.65016937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d390 -00039623 67.65019226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a0 -00039624 67.65019989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a0 -00039625 67.65023041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b0 -00039626 67.65023041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b0 -00039627 67.65025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c0 -00039628 67.65026093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c0 -00039629 67.65028381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d0 -00039630 67.65028381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d0 -00039631 67.65030670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e0 -00039632 67.65031433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e0 -00039633 67.65034485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f0 -00039634 67.65034485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f0 -00039635 67.65036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d400 -00039636 67.65036774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d400 -00039637 67.65039063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d410 -00039638 67.65039825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d410 -00039639 67.65042877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d420 -00039640 67.65042877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d420 -00039641 67.65045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d430 -00039642 67.65045929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d430 -00039643 67.65048218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d440 -00039644 67.65048218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d440 -00039645 67.65050507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d450 -00039646 67.65051270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d450 -00039647 67.65054321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d460 -00039648 67.65054321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d460 -00039649 67.65056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d470 -00039650 67.65056610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d470 -00039651 67.65058899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d480 -00039652 67.65059662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d480 -00039653 67.65062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d490 -00039654 67.65062714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d490 -00039655 67.65065002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a0 -00039656 67.65065765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a0 -00039657 67.65068054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b0 -00039658 67.65068054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b0 -00039659 67.65070343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c0 -00039660 67.65071106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c0 -00039661 67.65074158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d0 -00039662 67.65074158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d0 -00039663 67.65076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e0 -00039664 67.65076447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e0 -00039665 67.65078735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f0 -00039666 67.65079498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f0 -00039667 67.65082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -00039668 67.65082550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -00039669 67.65084839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -00039670 67.65085602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -00039671 67.65087891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -00039672 67.65087891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -00039673 67.65090179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -00039674 67.65090942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -00039675 67.65093994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -00039676 67.65093994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -00039677 67.65096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -00039678 67.65096283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -00039679 67.65098572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -00039680 67.65099335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -00039681 67.65102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -00039682 67.65102386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -00039683 67.65104675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -00039684 67.65105438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -00039685 67.65107727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -00039686 67.65107727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -00039687 67.65110779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -00039688 67.65110779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -00039689 67.65113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -00039690 67.65113831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -00039691 67.65116119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -00039692 67.65116119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -00039693 67.65119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -00039694 67.65119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -00039695 67.65122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -00039696 67.65122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -00039697 67.65124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -00039698 67.65125275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -00039699 67.65127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -00039700 67.65127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -00039701 67.65130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -00039702 67.65130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -00039703 67.65133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -00039704 67.65133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -00039705 67.65135956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -00039706 67.65136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -00039707 67.65139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -00039708 67.65139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -00039709 67.65142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -00039710 67.65142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -00039711 67.65145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -00039712 67.65145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -00039713 67.65147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -00039714 67.65147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -00039715 67.65150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -00039716 67.65150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -00039717 67.65153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -00039718 67.65153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -00039719 67.65155792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -00039720 67.65156555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -00039721 67.65158844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -00039722 67.65158844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -00039723 67.65161896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -00039724 67.65161896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -00039725 67.65164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -00039726 67.65164948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -00039727 67.65167236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -00039728 67.65167236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -00039729 67.65170288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -00039730 67.65170288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -00039731 67.65173340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -00039732 67.65173340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -00039733 67.65175629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -00039734 67.65176392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d710 -00039735 67.65178680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -00039736 67.65178680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d720 -00039737 67.65181732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -00039738 67.65181732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d730 -00039739 67.65184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -00039740 67.65184784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d740 -00039741 67.65187073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -00039742 67.65187073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d750 -00039743 67.65190125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d760 -00039744 67.65190125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d760 -00039745 67.65193176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d770 -00039746 67.65193176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d770 -00039747 67.65195465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d780 -00039748 67.65196228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d780 -00039749 67.65198517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d790 -00039750 67.65198517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d790 -00039751 67.65201569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a0 -00039752 67.65201569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a0 -00039753 67.65204620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b0 -00039754 67.65204620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b0 -00039755 67.65206909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c0 -00039756 67.65207672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c0 -00039757 67.65209961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d0 -00039758 67.65209961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d0 -00039759 67.65213013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e0 -00039760 67.65213013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e0 -00039761 67.65215302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f0 -00039762 67.65216064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f0 -00039763 67.65218353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d800 -00039764 67.65218353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d800 -00039765 67.65221405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d810 -00039766 67.65221405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d810 -00039767 67.65224457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -00039768 67.65224457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d820 -00039769 67.65226746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -00039770 67.65227509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d830 -00039771 67.65229797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -00039772 67.65229797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d840 -00039773 67.65232849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -00039774 67.65233612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d850 -00039775 67.65235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -00039776 67.65235901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d860 -00039777 67.65238190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -00039778 67.65238190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d870 -00039779 67.65241241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -00039780 67.65241241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d880 -00039781 67.65244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -00039782 67.65244293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d890 -00039783 67.65246582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -00039784 67.65247345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a0 -00039785 67.65249634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -00039786 67.65249634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b0 -00039787 67.65252686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -00039788 67.65253448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c0 -00039789 67.65255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -00039790 67.65255737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d0 -00039791 67.65258026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -00039792 67.65258026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e0 -00039793 67.65261078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -00039794 67.65261078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f0 -00039795 67.65264130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -00039796 67.65264130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d900 -00039797 67.65266418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -00039798 67.65267181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d910 -00039799 67.65269470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -00039800 67.65269470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d920 -00039801 67.65272522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -00039802 67.65273285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d930 -00039803 67.65275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -00039804 67.65275574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d940 -00039805 67.65277863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -00039806 67.65277863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d950 -00039807 67.65280914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -00039808 67.65280914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d960 -00039809 67.65283966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -00039810 67.65283966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d970 -00039811 67.65286255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d980 -00039812 67.65287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d980 -00039813 67.65289307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d990 -00039814 67.65289307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d990 -00039815 67.65292358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a0 -00039816 67.65293121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a0 -00039817 67.65295410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b0 -00039818 67.65295410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b0 -00039819 67.65297699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c0 -00039820 67.65298462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c0 -00039821 67.65300751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d0 -00039822 67.65300751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d0 -00039823 67.65303802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e0 -00039824 67.65303802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e0 -00039825 67.65306091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f0 -00039826 67.65306854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f0 -00039827 67.65309143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da00 -00039828 67.65309143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da00 -00039829 67.65312195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da10 -00039830 67.65312958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da10 -00039831 67.65315247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da20 -00039832 67.65315247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da20 -00039833 67.65317535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da30 -00039834 67.65318298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da30 -00039835 67.65320587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da40 -00039836 67.65320587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da40 -00039837 67.65323639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da50 -00039838 67.65324402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da50 -00039839 67.65326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da60 -00039840 67.65326691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da60 -00039841 67.65328979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da70 -00039842 67.65329742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da70 -00039843 67.65332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da80 -00039844 67.65332794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da80 -00039845 67.65335083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da90 -00039846 67.65335083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da90 -00039847 67.65337372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa0 -00039848 67.65338135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa0 -00039849 67.65340424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab0 -00039850 67.65340424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab0 -00039851 67.65343475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac0 -00039852 67.65344238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dac0 -00039853 67.65346527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad0 -00039854 67.65346527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dad0 -00039855 67.65348816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae0 -00039856 67.65349579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dae0 -00039857 67.65352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf0 -00039858 67.65352631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daf0 -00039859 67.65354919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db00 -00039860 67.65354919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db00 -00039861 67.65357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db10 -00039862 67.65357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db10 -00039863 67.65360260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db20 -00039864 67.65360260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db20 -00039865 67.65363312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db30 -00039866 67.65364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db30 -00039867 67.65366364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db40 -00039868 67.65366364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db40 -00039869 67.65368652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db50 -00039870 67.65369415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db50 -00039871 67.65372467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db60 -00039872 67.65372467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db60 -00039873 67.65374756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db70 -00039874 67.65375519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db70 -00039875 67.65377808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db80 -00039876 67.65377808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db80 -00039877 67.65380859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db90 -00039878 67.65380859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db90 -00039879 67.65383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba0 -00039880 67.65383911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dba0 -00039881 67.65386200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb0 -00039882 67.65386200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbb0 -00039883 67.65388489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc0 -00039884 67.65389252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbc0 -00039885 67.65392303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd0 -00039886 67.65392303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbd0 -00039887 67.65394592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe0 -00039888 67.65395355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbe0 -00039889 67.65397644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbf0 -00039890 67.65397644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dbf0 -00039891 67.65400696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc00 -00039892 67.65400696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc00 -00039893 67.65403748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc10 -00039894 67.65403748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc10 -00039895 67.65406036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc20 -00039896 67.65406799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc20 -00039897 67.65409088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc30 -00039898 67.65409088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc30 -00039899 67.65412140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc40 -00039900 67.65412140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc40 -00039901 67.65415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc50 -00039902 67.65415192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc50 -00039903 67.65417480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc60 -00039904 67.65418243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc60 -00039905 67.65420532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc70 -00039906 67.65420532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc70 -00039907 67.65423584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc80 -00039908 67.65424347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc80 -00039909 67.65426636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc90 -00039910 67.65426636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc90 -00039911 67.65428925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca0 -00039912 67.65429688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dca0 -00039913 67.65431976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb0 -00039914 67.65431976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcb0 -00039915 67.65435028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc0 -00039916 67.65435791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcc0 -00039917 67.65438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd0 -00039918 67.65438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd0 -00039919 67.65440369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce0 -00039920 67.65440369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce0 -00039921 67.65443420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf0 -00039922 67.65444183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf0 -00039923 67.65446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd00 -00039924 67.65446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd00 -00039925 67.65448761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd10 -00039926 67.65449524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd10 -00039927 67.65451813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd20 -00039928 67.65451813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd20 -00039929 67.65454865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd30 -00039930 67.65455627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd30 -00039931 67.65457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd40 -00039932 67.65457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd40 -00039933 67.65460205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd50 -00039934 67.65460205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd50 -00039935 67.65463257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd60 -00039936 67.65464020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd60 -00039937 67.65466309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd70 -00039938 67.65466309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd70 -00039939 67.65468597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd80 -00039940 67.65469360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd80 -00039941 67.65471649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd90 -00039942 67.65471649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd90 -00039943 67.65474701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda0 -00039944 67.65475464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda0 -00039945 67.65477753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb0 -00039946 67.65477753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb0 -00039947 67.65480042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc0 -00039948 67.65480804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc0 -00039949 67.65483856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd0 -00039950 67.65483856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd0 -00039951 67.65486145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde0 -00039952 67.65486145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde0 -00039953 67.65489197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf0 -00039954 67.65489197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf0 -00039955 67.65491486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de00 -00039956 67.65491486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de00 -00039957 67.65494537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de10 -00039958 67.65495300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de10 -00039959 67.65497589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de20 -00039960 67.65497589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de20 -00039961 67.65499878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de30 -00039962 67.65500641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de30 -00039963 67.65503693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de40 -00039964 67.65503693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de40 -00039965 67.65505981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de50 -00039966 67.65506744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de50 -00039967 67.65509033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de60 -00039968 67.65509033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de60 -00039969 67.65511322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de70 -00039970 67.65511322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de70 -00039971 67.65514374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de80 -00039972 67.65515137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de80 -00039973 67.65517426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de90 -00039974 67.65517426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de90 -00039975 67.65519714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dea0 -00039976 67.65520477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dea0 -00039977 67.65523529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4deb0 -00039978 67.65523529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4deb0 -00039979 67.65525818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dec0 -00039980 67.65526581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dec0 -00039981 67.65528870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ded0 -00039982 67.65528870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ded0 -00039983 67.65531158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dee0 -00039984 67.65531921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dee0 -00039985 67.65534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4def0 -00039986 67.65534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4def0 -00039987 67.65537262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df00 -00039988 67.65538025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df00 -00039989 67.65540314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df10 -00039990 67.65540314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df10 -00039991 67.65543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df20 -00039992 67.65543365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df20 -00039993 67.65545654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df30 -00039994 67.65546417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df30 -00039995 67.65548706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df40 -00039996 67.65548706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df40 -00039997 67.65550995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df50 -00039998 67.65551758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df50 -00039999 67.65554810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df60 -00040000 67.65554810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df60 -00040001 67.65557098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df70 -00040002 67.65557861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df70 -00040003 67.65560150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df80 -00040004 67.65560150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df80 -00040005 67.65563202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df90 -00040006 67.65563202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df90 -00040007 67.65565491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa0 -00040008 67.65566254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa0 -00040009 67.65568542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb0 -00040010 67.65568542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb0 -00040011 67.65570831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc0 -00040012 67.65571594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc0 -00040013 67.65574646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd0 -00040014 67.65574646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd0 -00040015 67.65576935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe0 -00040016 67.65577698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe0 -00040017 67.65579987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff0 -00040018 67.65579987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff0 -00040019 67.65583038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e000 -00040020 67.65583038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e000 -00040021 67.65586090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e010 -00040022 67.65586090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e010 -00040023 67.65588379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e020 -00040024 67.65589142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e020 -00040025 67.65591431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e030 -00040026 67.65591431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e030 -00040027 67.65594482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e040 -00040028 67.65594482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e040 -00040029 67.65597534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e050 -00040030 67.65597534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e050 -00040031 67.65599823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e060 -00040032 67.65599823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e060 -00040033 67.65602875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e070 -00040034 67.65602875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e070 -00040035 67.65605927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e080 -00040036 67.65605927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e080 -00040037 67.65608215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e090 -00040038 67.65608978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e090 -00040039 67.65611267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a0 -00040040 67.65611267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a0 -00040041 67.65614319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b0 -00040042 67.65615082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b0 -00040043 67.65617371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c0 -00040044 67.65617371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c0 -00040045 67.65619659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d0 -00040046 67.65620422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d0 -00040047 67.65622711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e0 -00040048 67.65622711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e0 -00040049 67.65625763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f0 -00040050 67.65626526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f0 -00040051 67.65628815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e100 -00040052 67.65628815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e100 -00040053 67.65631104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e110 -00040054 67.65631866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e110 -00040055 67.65634918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e120 -00040056 67.65634918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e120 -00040057 67.65637207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e130 -00040058 67.65637207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e130 -00040059 67.65639496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e140 -00040060 67.65640259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e140 -00040061 67.65642548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e150 -00040062 67.65642548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e150 -00040063 67.65645599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e160 -00040064 67.65646362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e160 -00040065 67.65648651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e170 -00040066 67.65648651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e170 -00040067 67.65650940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e180 -00040068 67.65651703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e180 -00040069 67.65654755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e190 -00040070 67.65654755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e190 -00040071 67.65657043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1a0 -00040072 67.65657043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1a0 -00040073 67.65659332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1b0 -00040074 67.65660095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1b0 -00040075 67.65662384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1c0 -00040076 67.65662384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1c0 -00040077 67.65665436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1d0 -00040078 67.65666199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1d0 -00040079 67.65668488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1e0 -00040080 67.65668488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1e0 -00040081 67.65670776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1f0 -00040082 67.65671539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e1f0 -00040083 67.65674591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e200 -00040084 67.65674591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e200 -00040085 67.65676880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e210 -00040086 67.65677643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e210 -00040087 67.65679932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e220 -00040088 67.65679932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e220 -00040089 67.65682220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e230 -00040090 67.65682220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e230 -00040091 67.65685272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e240 -00040092 67.65686035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e240 -00040093 67.65688324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e250 -00040094 67.65688324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e250 -00040095 67.65690613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e260 -00040096 67.65691376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e260 -00040097 67.65694427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e270 -00040098 67.65694427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e270 -00040099 67.65696716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e280 -00040100 67.65697479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e280 -00040101 67.65699768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e290 -00040102 67.65699768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e290 -00040103 67.65702057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a0 -00040104 67.65702820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a0 -00040105 67.65705872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b0 -00040106 67.65705872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b0 -00040107 67.65708160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c0 -00040108 67.65708160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c0 -00040109 67.65710449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d0 -00040110 67.65711212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d0 -00040111 67.65714264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e0 -00040112 67.65714264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e0 -00040113 67.65716553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f0 -00040114 67.65717316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f0 -00040115 67.65719604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e300 -00040116 67.65719604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e300 -00040117 67.65721893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e310 -00040118 67.65722656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e310 -00040119 67.65725708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e320 -00040120 67.65725708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e320 -00040121 67.65727997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e330 -00040122 67.65728760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e330 -00040123 67.65731049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e340 -00040124 67.65731049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e340 -00040125 67.65734100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e350 -00040126 67.65734100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e350 -00040127 67.65737152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e360 -00040128 67.65737152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e360 -00040129 67.65739441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e370 -00040130 67.65740204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e370 -00040131 67.65742493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e380 -00040132 67.65742493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e380 -00040133 67.65745544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e390 -00040134 67.65745544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e390 -00040135 67.65748596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a0 -00040136 67.65748596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a0 -00040137 67.65750885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b0 -00040138 67.65750885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b0 -00040139 67.65753937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c0 -00040140 67.65753937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c0 -00040141 67.65756989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d0 -00040142 67.65756989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d0 -00040143 67.65759277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e0 -00040144 67.65760040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e0 -00040145 67.65762329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f0 -00040146 67.65762329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f0 -00040147 67.65765381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e400 -00040148 67.65765381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e400 -00040149 67.65768433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e410 -00040150 67.65768433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e410 -00040151 67.65770721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e420 -00040152 67.65770721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e420 -00040153 67.65773773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e430 -00040154 67.65773773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e430 -00040155 67.65776825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e440 -00040156 67.65776825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e440 -00040157 67.65779114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e450 -00040158 67.65779877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e450 -00040159 67.65782166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e460 -00040160 67.65782166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e460 -00040161 67.65785217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e470 -00040162 67.65785980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e470 -00040163 67.65788269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e480 -00040164 67.65788269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e480 -00040165 67.65790558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e490 -00040166 67.65791321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e490 -00040167 67.65793610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a0 -00040168 67.65793610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a0 -00040169 67.65796661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b0 -00040170 67.65796661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b0 -00040171 67.65799713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c0 -00040172 67.65799713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c0 -00040173 67.65802002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d0 -00040174 67.65802002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d0 -00040175 67.65805054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e0 -00040176 67.65805817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e0 -00040177 67.65808105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f0 -00040178 67.65808105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f0 -00040179 67.65810394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e500 -00040180 67.65811157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e500 -00040181 67.65813446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e510 -00040182 67.65813446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e510 -00040183 67.65816498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e520 -00040184 67.65817261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e520 -00040185 67.65819550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e530 -00040186 67.65819550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e530 -00040187 67.65821838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e540 -00040188 67.65822601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e540 -00040189 67.65825653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e550 -00040190 67.65825653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e550 -00040191 67.65827942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e560 -00040192 67.65828705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e560 -00040193 67.65830994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e570 -00040194 67.65830994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e570 -00040195 67.65833282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e580 -00040196 67.65833282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e580 -00040197 67.65836334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e590 -00040198 67.65837097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e590 -00040199 67.65839386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5a0 -00040200 67.65839386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5a0 -00040201 67.65841675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5b0 -00040202 67.65842438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5b0 -00040203 67.65845490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5c0 -00040204 67.65845490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5c0 -00040205 67.65847778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5d0 -00040206 67.65848541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5d0 -00040207 67.65850830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5e0 -00040208 67.65850830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5e0 -00040209 67.65853119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5f0 -00040210 67.65853882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e5f0 -00040211 67.65856934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e600 -00040212 67.65856934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e600 -00040213 67.65859222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e610 -00040214 67.65859222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e610 -00040215 67.65862274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e620 -00040216 67.65862274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e620 -00040217 67.65865326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e630 -00040218 67.65865326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e630 -00040219 67.65867615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e640 -00040220 67.65868378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e640 -00040221 67.65870667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e650 -00040222 67.65870667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e650 -00040223 67.65872955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e660 -00040224 67.65873718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e660 -00040225 67.65876770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e670 -00040226 67.65876770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e670 -00040227 67.65879059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e680 -00040228 67.65879822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e680 -00040229 67.65882111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e690 -00040230 67.65882111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e690 -00040231 67.65885162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6a0 -00040232 67.65885162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6a0 -00040233 67.65888214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6b0 -00040234 67.65888214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6b0 -00040235 67.65890503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c0 -00040236 67.65890503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c0 -00040237 67.65892792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d0 -00040238 67.65893555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d0 -00040239 67.65896606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e0 -00040240 67.65896606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e0 -00040241 67.65898895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f0 -00040242 67.65899658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f0 -00040243 67.65901947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e700 -00040244 67.65901947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e700 -00040245 67.65904999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e710 -00040246 67.65904999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e710 -00040247 67.65908051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e720 -00040248 67.65908051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e720 -00040249 67.65910339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e730 -00040250 67.65911102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e730 -00040251 67.65913391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e740 -00040252 67.65913391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e740 -00040253 67.65916443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e750 -00040254 67.65916443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e750 -00040255 67.65919495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e760 -00040256 67.65919495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e760 -00040257 67.65921783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e770 -00040258 67.65921783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e770 -00040259 67.65924835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e780 -00040260 67.65924835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e780 -00040261 67.65927887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e790 -00040262 67.65927887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e790 -00040263 67.65930176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a0 -00040264 67.65930939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7a0 -00040265 67.65933228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b0 -00040266 67.65933228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7b0 -00040267 67.65936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c0 -00040268 67.65936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7c0 -00040269 67.65939331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d0 -00040270 67.65939331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7d0 -00040271 67.65941620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e0 -00040272 67.65941620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7e0 -00040273 67.65944672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f0 -00040274 67.65944672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e7f0 -00040275 67.65947723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e800 -00040276 67.65947723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e800 -00040277 67.65950012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e810 -00040278 67.65950775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e810 -00040279 67.65953064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e820 -00040280 67.65953064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e820 -00040281 67.65956116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e830 -00040282 67.65956116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e830 -00040283 67.65959167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e840 -00040284 67.65959167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e840 -00040285 67.65961456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e850 -00040286 67.65962219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e850 -00040287 67.65964508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e860 -00040288 67.65964508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e860 -00040289 67.65967560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e870 -00040290 67.65967560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e870 -00040291 67.65969849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e880 -00040292 67.65970612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e880 -00040293 67.65972900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e890 -00040294 67.65972900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e890 -00040295 67.65975952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a0 -00040296 67.65975952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a0 -00040297 67.65979004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b0 -00040298 67.65979004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b0 -00040299 67.65981293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c0 -00040300 67.65982056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c0 -00040301 67.65984344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d0 -00040302 67.65984344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d0 -00040303 67.65987396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e0 -00040304 67.65988159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e0 -00040305 67.65990448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f0 -00040306 67.65990448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f0 -00040307 67.65992737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e900 -00040308 67.65992737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e900 -00040309 67.65995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e910 -00040310 67.65995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e910 -00040311 67.65998840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e920 -00040312 67.65998840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e920 -00040313 67.66001129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e930 -00040314 67.66001892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e930 -00040315 67.66004181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e940 -00040316 67.66004181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e940 -00040317 67.66007233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e950 -00040318 67.66007996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e950 -00040319 67.66010284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e960 -00040320 67.66010284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e960 -00040321 67.66012573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e970 -00040322 67.66013336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e970 -00040323 67.66015625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e980 -00040324 67.66015625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e980 -00040325 67.66018677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -00040326 67.66019440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -00040327 67.66021729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -00040328 67.66021729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -00040329 67.66024017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -00040330 67.66024780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -00040331 67.66027832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -00040332 67.66027832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -00040333 67.66030121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -00040334 67.66030884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -00040335 67.66033173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -00040336 67.66033173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -00040337 67.66036224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -00040338 67.66037750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -00040339 67.66040039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -00040340 67.66040039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -00040341 67.66043091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -00040342 67.66043854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -00040343 67.66046143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -00040344 67.66046143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -00040345 67.66048431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -00040346 67.66049194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -00040347 67.66051483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -00040348 67.66051483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -00040349 67.66054535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -00040350 67.66055298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -00040351 67.66057587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -00040352 67.66057587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -00040353 67.66059875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -00040354 67.66059875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -00040355 67.66062927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -00040356 67.66063690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -00040357 67.66065979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -00040358 67.66065979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -00040359 67.66068268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -00040360 67.66069031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -00040361 67.66071320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -00040362 67.66071320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -00040363 67.66074371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -00040364 67.66075134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -00040365 67.66077423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -00040366 67.66077423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -00040367 67.66079712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -00040368 67.66080475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -00040369 67.66083527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -00040370 67.66083527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -00040371 67.66085815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -00040372 67.66086578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -00040373 67.66088867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -00040374 67.66088867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -00040375 67.66091156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -00040376 67.66091156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -00040377 67.66094208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -00040378 67.66094971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -00040379 67.66097260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -00040380 67.66097260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -00040381 67.66099548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -00040382 67.66100311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -00040383 67.66103363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -00040384 67.66103363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -00040385 67.66105652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -00040386 67.66106415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -00040387 67.66108704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -00040388 67.66108704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -00040389 67.66110992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -00040390 67.66111755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -00040391 67.66114807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -00040392 67.66114807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -00040393 67.66117096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -00040394 67.66117096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -00040395 67.66119385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -00040396 67.66120148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -00040397 67.66123199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -00040398 67.66123199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -00040399 67.66126251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -00040400 67.66126251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -00040401 67.66128540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -00040402 67.66128540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -00040403 67.66130829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -00040404 67.66131592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -00040405 67.66134644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -00040406 67.66134644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -00040407 67.66136932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -00040408 67.66137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -00040409 67.66139984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -00040410 67.66139984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -00040411 67.66143036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -00040412 67.66143036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -00040413 67.66146088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -00040414 67.66146088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -00040415 67.66148376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -00040416 67.66149139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -00040417 67.66151428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -00040418 67.66151428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -00040419 67.66154480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -00040420 67.66154480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -00040421 67.66156769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -00040422 67.66157532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -00040423 67.66159821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -00040424 67.66159821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -00040425 67.66162872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -00040426 67.66162872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -00040427 67.66165924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -00040428 67.66165924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -00040429 67.66168213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -00040430 67.66168976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -00040431 67.66171265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -00040432 67.66171265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -00040433 67.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -00040434 67.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -00040435 67.66177368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -00040436 67.66177368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -00040437 67.66179657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -00040438 67.66179657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -00040439 67.66182709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -00040440 67.66182709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -00040441 67.66185760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -00040442 67.66185760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -00040443 67.66188049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -00040444 67.66188812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -00040445 67.66191101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -00040446 67.66191101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -00040447 67.66194153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -00040448 67.66194916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -00040449 67.66197205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -00040450 67.66197205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -00040451 67.66199493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -00040452 67.66200256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -00040453 67.66202545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -00040454 67.66202545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -00040455 67.66205597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -00040456 67.66205597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -00040457 67.66207886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -00040458 67.66208649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -00040459 67.66210938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -00040460 67.66210938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -00040461 67.66213989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -00040462 67.66214752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -00040463 67.66217041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -00040464 67.66217041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -00040465 67.66219330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -00040466 67.66220093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -00040467 67.66222382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -00040468 67.66222382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -00040469 67.66225433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -00040470 67.66226196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -00040471 67.66228485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee20 -00040472 67.66228485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee20 -00040473 67.66230774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee30 -00040474 67.66231537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee30 -00040475 67.66234589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee40 -00040476 67.66234589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee40 -00040477 67.66236877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee50 -00040478 67.66236877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee50 -00040479 67.66239166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee60 -00040480 67.66239929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee60 -00040481 67.66242218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee70 -00040482 67.66242218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee70 -00040483 67.66245270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee80 -00040484 67.66246033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee80 -00040485 67.66248322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee90 -00040486 67.66248322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee90 -00040487 67.66250610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea0 -00040488 67.66251373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea0 -00040489 67.66254425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb0 -00040490 67.66254425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb0 -00040491 67.66256714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec0 -00040492 67.66256714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec0 -00040493 67.66259766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed0 -00040494 67.66259766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed0 -00040495 67.66262054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee0 -00040496 67.66262054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee0 -00040497 67.66265869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef0 -00040498 67.66265869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef0 -00040499 67.66268158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef00 -00040500 67.66268158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef00 -00040501 67.66270447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef10 -00040502 67.66271210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef10 -00040503 67.66274261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef20 -00040504 67.66274261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef20 -00040505 67.66276550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef30 -00040506 67.66277313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef30 -00040507 67.66279602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef40 -00040508 67.66279602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef40 -00040509 67.66281891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef50 -00040510 67.66282654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef50 -00040511 67.66285706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef60 -00040512 67.66285706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef60 -00040513 67.66287994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef70 -00040514 67.66287994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef70 -00040515 67.66291046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef80 -00040516 67.66291046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef80 -00040517 67.66294098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef90 -00040518 67.66294098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef90 -00040519 67.66296387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa0 -00040520 67.66297150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efa0 -00040521 67.66299438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb0 -00040522 67.66299438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efb0 -00040523 67.66301727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc0 -00040524 67.66302490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efc0 -00040525 67.66305542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd0 -00040526 67.66305542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efd0 -00040527 67.66307831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe0 -00040528 67.66308594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4efe0 -00040529 67.66310883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff0 -00040530 67.66310883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eff0 -00040531 67.66313934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f000 -00040532 67.66313934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f000 -00040533 67.66316986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f010 -00040534 67.66316986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f010 -00040535 67.66319275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f020 -00040536 67.66319275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f020 -00040537 67.66322327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f030 -00040538 67.66322327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f030 -00040539 67.66329956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f040 -00040540 67.66329956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f040 -00040541 67.66333008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f050 -00040542 67.66333771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f050 -00040543 67.66336060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f060 -00040544 67.66336060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f060 -00040545 67.66338348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f070 -00040546 67.66338348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f070 -00040547 67.66341400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f080 -00040548 67.66341400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f080 -00040549 67.66344452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f090 -00040550 67.66344452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f090 -00040551 67.66346741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a0 -00040552 67.66347504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a0 -00040553 67.66349792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b0 -00040554 67.66349792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b0 -00040555 67.66352844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c0 -00040556 67.66353607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c0 -00040557 67.66355896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d0 -00040558 67.66355896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d0 -00040559 67.66358185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e0 -00040560 67.66358185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e0 -00040561 67.66361237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f0 -00040562 67.66361237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f0 -00040563 67.66364288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f100 -00040564 67.66364288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f100 -00040565 67.66366577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f110 -00040566 67.66367340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f110 -00040567 67.66369629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f120 -00040568 67.66369629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f120 -00040569 67.66372681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f130 -00040570 67.66373444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f130 -00040571 67.66375732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f140 -00040572 67.66375732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f140 -00040573 67.66378021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f150 -00040574 67.66378784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f150 -00040575 67.66381073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f160 -00040576 67.66381073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f160 -00040577 67.66384125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f170 -00040578 67.66384125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f170 -00040579 67.66387177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f180 -00040580 67.66387177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f180 -00040581 67.66389465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f190 -00040582 67.66389465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f190 -00040583 67.66392517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a0 -00040584 67.66393280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a0 -00040585 67.66395569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b0 -00040586 67.66395569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b0 -00040587 67.66397858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c0 -00040588 67.66398621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c0 -00040589 67.66400909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d0 -00040590 67.66400909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d0 -00040591 67.66403961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e0 -00040592 67.66404724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e0 -00040593 67.66407013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f0 -00040594 67.66407013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f0 -00040595 67.66409302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f200 -00040596 67.66410065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f200 -00040597 67.66413116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f210 -00040598 67.66413116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f210 -00040599 67.66415405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f220 -00040600 67.66415405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f220 -00040601 67.66418457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -00040602 67.66418457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -00040603 67.66420746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -00040604 67.66420746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -00040605 67.66423798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -00040606 67.66424561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -00040607 67.66426849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -00040608 67.66426849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -00040609 67.66429138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -00040610 67.66429901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -00040611 67.66432953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -00040612 67.66432953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -00040613 67.66435242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -00040614 67.66436005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -00040615 67.66438293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -00040616 67.66438293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -00040617 67.66440582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -00040618 67.66441345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -00040619 67.66444397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -00040620 67.66444397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -00040621 67.66446686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -00040622 67.66446686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -00040623 67.66448975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -00040624 67.66449738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -00040625 67.66452789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -00040626 67.66452789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -00040627 67.66455078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -00040628 67.66455841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -00040629 67.66458130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -00040630 67.66458130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -00040631 67.66460419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -00040632 67.66461182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -00040633 67.66464233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -00040634 67.66464233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -00040635 67.66466522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -00040636 67.66467285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -00040637 67.66469574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -00040638 67.66469574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -00040639 67.66472626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -00040640 67.66472626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -00040641 67.66475677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -00040642 67.66475677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -00040643 67.66477966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -00040644 67.66477966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -00040645 67.66481018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f390 -00040646 67.66481018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f390 -00040647 67.66484070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a0 -00040648 67.66484070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a0 -00040649 67.66486359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3b0 -00040650 67.66487122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3b0 -00040651 67.66489410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3c0 -00040652 67.66489410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3c0 -00040653 67.66492462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3d0 -00040654 67.66492462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3d0 -00040655 67.66495514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3e0 -00040656 67.66495514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3e0 -00040657 67.66497803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3f0 -00040658 67.66498566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3f0 -00040659 67.66500854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -00040660 67.66500854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -00040661 67.66503906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -00040662 67.66503906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -00040663 67.66506195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -00040664 67.66506958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -00040665 67.66509247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -00040666 67.66509247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -00040667 67.66512299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -00040668 67.66512299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -00040669 67.66515350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -00040670 67.66515350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -00040671 67.66517639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -00040672 67.66518402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -00040673 67.66520691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -00040674 67.66520691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -00040675 67.66523743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -00040676 67.66524506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -00040677 67.66526794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -00040678 67.66526794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -00040679 67.66529083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -00040680 67.66529083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -00040681 67.66532135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -00040682 67.66532135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -00040683 67.66535187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -00040684 67.66535187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -00040685 67.66537476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -00040686 67.66538239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -00040687 67.66540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -00040688 67.66540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -00040689 67.66543579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -00040690 67.66544342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -00040691 67.66546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -00040692 67.66546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -00040693 67.66548920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -00040694 67.66549683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -00040695 67.66551971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -00040696 67.66551971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -00040697 67.66555023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -00040698 67.66555023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -00040699 67.66557312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -00040700 67.66558075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -00040701 67.66560364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -00040702 67.66560364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -00040703 67.66563416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f560 -00040704 67.66564178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f560 -00040705 67.66566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f570 -00040706 67.66566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f570 -00040707 67.66568756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f580 -00040708 67.66569519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f580 -00040709 67.66571808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f590 -00040710 67.66571808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f590 -00040711 67.66574860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5a0 -00040712 67.66574860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5a0 -00040713 67.66577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5b0 -00040714 67.66577911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5b0 -00040715 67.66580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5c0 -00040716 67.66580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5c0 -00040717 67.66583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5d0 -00040718 67.66584015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5d0 -00040719 67.66586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5e0 -00040720 67.66586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5e0 -00040721 67.66588593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5f0 -00040722 67.66589355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f5f0 -00040723 67.66591644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f600 -00040724 67.66591644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f600 -00040725 67.66594696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f610 -00040726 67.66594696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f610 -00040727 67.66597748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f620 -00040728 67.66597748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f620 -00040729 67.66600037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f630 -00040730 67.66600037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f630 -00040731 67.66603088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f640 -00040732 67.66603851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f640 -00040733 67.66606140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f650 -00040734 67.66606140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f650 -00040735 67.66608429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f660 -00040736 67.66609192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f660 -00040737 67.66611481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f670 -00040738 67.66611481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f670 -00040739 67.66614532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f680 -00040740 67.66615295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f680 -00040741 67.66617584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f690 -00040742 67.66617584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f690 -00040743 67.66619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6a0 -00040744 67.66619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6a0 -00040745 67.66622925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6b0 -00040746 67.66623688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6b0 -00040747 67.66625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6c0 -00040748 67.66625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6c0 -00040749 67.66628265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6d0 -00040750 67.66629028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6d0 -00040751 67.66631317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6e0 -00040752 67.66631317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6e0 -00040753 67.66634369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6f0 -00040754 67.66635132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f6f0 -00040755 67.66637421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f700 -00040756 67.66637421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f700 -00040757 67.66639709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f710 -00040758 67.66640472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f710 -00040759 67.66643524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f720 -00040760 67.66643524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f720 -00040761 67.66645813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f730 -00040762 67.66645813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f730 -00040763 67.66648102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f740 -00040764 67.66648865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f740 -00040765 67.66651154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f750 -00040766 67.66651154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f750 -00040767 67.66654205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f760 -00040768 67.66654968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f760 -00040769 67.66657257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f770 -00040770 67.66657257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f770 -00040771 67.66659546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f780 -00040772 67.66660309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f780 -00040773 67.66663361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f790 -00040774 67.66663361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f790 -00040775 67.66665649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7a0 -00040776 67.66665649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7a0 -00040777 67.66667938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7b0 -00040778 67.66668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7b0 -00040779 67.66670990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7c0 -00040780 67.66670990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7c0 -00040781 67.66674042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7d0 -00040782 67.66674805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7d0 -00040783 67.66677094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7e0 -00040784 67.66677094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7e0 -00040785 67.66679382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7f0 -00040786 67.66680145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f7f0 -00040787 67.66683197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f800 -00040788 67.66683197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f800 -00040789 67.66685486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f810 -00040790 67.66685486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f810 -00040791 67.66687775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f820 -00040792 67.66688538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f820 -00040793 67.66690826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f830 -00040794 67.66690826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f830 -00040795 67.66693878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f840 -00040796 67.66694641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f840 -00040797 67.66696930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f850 -00040798 67.66696930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f850 -00040799 67.66699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f860 -00040800 67.66699982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f860 -00040801 67.66703033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -00040802 67.66703033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -00040803 67.66705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -00040804 67.66706085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -00040805 67.66708374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -00040806 67.66708374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -00040807 67.66710663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -00040808 67.66710663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -00040809 67.66713715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -00040810 67.66714478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -00040811 67.66716766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -00040812 67.66716766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -00040813 67.66719055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -00040814 67.66719818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -00040815 67.66722870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -00040816 67.66722870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -00040817 67.66725159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -00040818 67.66725922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -00040819 67.66728210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -00040820 67.66728210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -00040821 67.66730499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -00040822 67.66731262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -00040823 67.66734314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -00040824 67.66734314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -00040825 67.66736603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -00040826 67.66736603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -00040827 67.66738892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -00040828 67.66739655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -00040829 67.66742706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -00040830 67.66743469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -00040831 67.66746521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -00040832 67.66746521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -00040833 67.66748810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -00040834 67.66749573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -00040835 67.66751862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -00040836 67.66751862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -00040837 67.66754913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -00040838 67.66754913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -00040839 67.66757965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -00040840 67.66757965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -00040841 67.66760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -00040842 67.66761017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -00040843 67.66763306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -00040844 67.66763306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -00040845 67.66766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9d0 -00040846 67.66766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9d0 -00040847 67.66769409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9e0 -00040848 67.66769409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9e0 -00040849 67.66771698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9f0 -00040850 67.66772461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9f0 -00040851 67.66774750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa00 -00040852 67.66774750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa00 -00040853 67.66777802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa10 -00040854 67.66777802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa10 -00040855 67.66780090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa20 -00040856 67.66780853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa20 -00040857 67.66783142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa30 -00040858 67.66783142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa30 -00040859 67.66786194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa40 -00040860 67.66786194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa40 -00040861 67.66789246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa50 -00040862 67.66789246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa50 -00040863 67.66791534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa60 -00040864 67.66792297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa60 -00040865 67.66794586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa70 -00040866 67.66794586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa70 -00040867 67.66797638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa80 -00040868 67.66798401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa80 -00040869 67.66800690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa90 -00040870 67.66800690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa90 -00040871 67.66802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faa0 -00040872 67.66802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faa0 -00040873 67.66806030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fab0 -00040874 67.66806030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fab0 -00040875 67.66809082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fac0 -00040876 67.66809082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fac0 -00040877 67.66811371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fad0 -00040878 67.66812134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fad0 -00040879 67.66814423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fae0 -00040880 67.66814423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fae0 -00040881 67.66818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faf0 -00040882 67.66818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4faf0 -00040883 67.66820526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb00 -00040884 67.66820526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb00 -00040885 67.66822815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb10 -00040886 67.66823578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb10 -00040887 67.66825867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb20 -00040888 67.66825867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb20 -00040889 67.66828918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb30 -00040890 67.66829681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb30 -00040891 67.66831970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb40 -00040892 67.66831970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb40 -00040893 67.66834259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb50 -00040894 67.66835022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb50 -00040895 67.66838074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb60 -00040896 67.66838074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb60 -00040897 67.66840363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb70 -00040898 67.66840363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb70 -00040899 67.66843414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb80 -00040900 67.66843414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb80 -00040901 67.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb90 -00040902 67.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb90 -00040903 67.66848755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba0 -00040904 67.66849518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba0 -00040905 67.66851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb0 -00040906 67.66851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb0 -00040907 67.66854095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc0 -00040908 67.66854858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc0 -00040909 67.66857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd0 -00040910 67.66857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd0 -00040911 67.66860199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe0 -00040912 67.66860962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe0 -00040913 67.66863251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf0 -00040914 67.66863251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf0 -00040915 67.66865540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc00 -00040916 67.66865540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc00 -00040917 67.66868591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc10 -00040918 67.66869354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc10 -00040919 67.66871643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc20 -00040920 67.66871643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc20 -00040921 67.66873932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc30 -00040922 67.66874695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc30 -00040923 67.66877747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc40 -00040924 67.66877747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc40 -00040925 67.66880035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc50 -00040926 67.66880798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc50 -00040927 67.66883087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc60 -00040928 67.66883087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc60 -00040929 67.66886139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc70 -00040930 67.66886139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc70 -00040931 67.66889191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc80 -00040932 67.66889191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc80 -00040933 67.66891479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc90 -00040934 67.66891479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc90 -00040935 67.66893768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca0 -00040936 67.66894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca0 -00040937 67.66897583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb0 -00040938 67.66897583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb0 -00040939 67.66899872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc0 -00040940 67.66900635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc0 -00040941 67.66902924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd0 -00040942 67.66902924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd0 -00040943 67.66905975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce0 -00040944 67.66905975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce0 -00040945 67.66909027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf0 -00040946 67.66909027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf0 -00040947 67.66911316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd00 -00040948 67.66912079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd00 -00040949 67.66914368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -00040950 67.66914368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -00040951 67.66917419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -00040952 67.66917419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -00040953 67.66919708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -00040954 67.66920471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -00040955 67.66922760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -00040956 67.66922760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -00040957 67.66925812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -00040958 67.66925812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -00040959 67.66928864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -00040960 67.66928864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -00040961 67.66931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -00040962 67.66931915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -00040963 67.66934204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -00040964 67.66934204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -00040965 67.66937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -00040966 67.66937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -00040967 67.66940308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -00040968 67.66940308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -00040969 67.66942596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -00040970 67.66942596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -00040971 67.66945648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -00040972 67.66945648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -00040973 67.66948700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -00040974 67.66948700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -00040975 67.66950989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -00040976 67.66951752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -00040977 67.66954041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -00040978 67.66954041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -00040979 67.66957092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -00040980 67.66957092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -00040981 67.66960144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -00040982 67.66960144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -00040983 67.66962433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -00040984 67.66962433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -00040985 67.66965485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -00040986 67.66965485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -00040987 67.66968536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -00040988 67.66968536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -00040989 67.66970825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -00040990 67.66971588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -00040991 67.66973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -00040992 67.66973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -00040993 67.66976929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -00040994 67.66976929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -00040995 67.66979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -00040996 67.66979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -00040997 67.66982269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -00040998 67.66983032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -00040999 67.66985321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -00041000 67.66985321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -00041001 67.66988373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -00041002 67.66989136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -00041003 67.66991425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -00041004 67.66991425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -00041005 67.66993713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -00041006 67.66993713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -00041007 67.66996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -00041008 67.66996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -00041009 67.66999817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -00041010 67.66999817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -00041011 67.67002106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -00041012 67.67002869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -00041013 67.67005157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -00041014 67.67005157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -00041015 67.67008209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff20 -00041016 67.67008209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff20 -00041017 67.67011261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff30 -00041018 67.67011261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff30 -00041019 67.67013550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff40 -00041020 67.67013550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff40 -00041021 67.67016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff50 -00041022 67.67016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff50 -00041023 67.67019653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff60 -00041024 67.67019653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff60 -00041025 67.67021942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff70 -00041026 67.67022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff70 -00041027 67.67024994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff80 -00041028 67.67024994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff80 -00041029 67.67028046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff90 -00041030 67.67028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff90 -00041031 67.67031097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa0 -00041032 67.67031097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa0 -00041033 67.67033386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb0 -00041034 67.67034149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb0 -00041035 67.67036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc0 -00041036 67.67036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc0 -00041037 67.67039490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd0 -00041038 67.67040253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd0 -00041039 67.67042542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe0 -00041040 67.67042542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe0 -00041041 67.67044830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff0 -00041042 67.67044830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff0 -00041043 67.67047882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50000 -00041044 67.67048645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50000 -00041045 67.67050934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50010 -00041046 67.67050934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50010 -00041047 67.67053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50020 -00041048 67.67053986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50020 -00041049 67.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50030 -00041050 67.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50030 -00041051 67.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50040 -00041052 67.67060089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50040 -00041053 67.67062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50050 -00041054 67.67062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50050 -00041055 67.67064667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50060 -00041056 67.67064667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50060 -00041057 67.67067719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50070 -00041058 67.67068481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50070 -00041059 67.67070770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50080 -00041060 67.67070770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50080 -00041061 67.67073059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50090 -00041062 67.67073822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50090 -00041063 67.67076111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a0 -00041064 67.67076111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a0 -00041065 67.67079163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b0 -00041066 67.67079926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b0 -00041067 67.67082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c0 -00041068 67.67082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c0 -00041069 67.67084503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d0 -00041070 67.67085266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d0 -00041071 67.67088318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e0 -00041072 67.67088318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e0 -00041073 67.67090607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f0 -00041074 67.67091370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f0 -00041075 67.67093658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50100 -00041076 67.67093658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50100 -00041077 67.67095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50110 -00041078 67.67095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50110 -00041079 67.67098999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50120 -00041080 67.67099762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50120 -00041081 67.67102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50130 -00041082 67.67102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50130 -00041083 67.67104340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50140 -00041084 67.67105103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50140 -00041085 67.67108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50150 -00041086 67.67108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50150 -00041087 67.67110443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50160 -00041088 67.67111206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50160 -00041089 67.67113495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50170 -00041090 67.67113495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50170 -00041091 67.67115784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50180 -00041092 67.67116547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50180 -00041093 67.67119598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50190 -00041094 67.67119598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50190 -00041095 67.67121887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a0 -00041096 67.67122650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a0 -00041097 67.67124939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b0 -00041098 67.67124939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b0 -00041099 67.67127991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c0 -00041100 67.67127991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c0 -00041101 67.67130280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d0 -00041102 67.67131042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d0 -00041103 67.67133331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e0 -00041104 67.67133331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e0 -00041105 67.67135620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f0 -00041106 67.67136383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f0 -00041107 67.67139435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50200 -00041108 67.67139435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50200 -00041109 67.67141724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50210 -00041110 67.67142487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50210 -00041111 67.67144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50220 -00041112 67.67144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50220 -00041113 67.67147827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50230 -00041114 67.67147827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50230 -00041115 67.67150116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50240 -00041116 67.67150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50240 -00041117 67.67153168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50250 -00041118 67.67153168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50250 -00041119 67.67156219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50260 -00041120 67.67156219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50260 -00041121 67.67159271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50270 -00041122 67.67159271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50270 -00041123 67.67161560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50280 -00041124 67.67162323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50280 -00041125 67.67164612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50290 -00041126 67.67164612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50290 -00041127 67.67167664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a0 -00041128 67.67167664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a0 -00041129 67.67169952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b0 -00041130 67.67170715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b0 -00041131 67.67173004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c0 -00041132 67.67173004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c0 -00041133 67.67176056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d0 -00041134 67.67176056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d0 -00041135 67.67179108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e0 -00041136 67.67179108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e0 -00041137 67.67181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f0 -00041138 67.67182159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f0 -00041139 67.67184448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50300 -00041140 67.67184448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50300 -00041141 67.67187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50310 -00041142 67.67187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50310 -00041143 67.67189789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50320 -00041144 67.67190552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50320 -00041145 67.67192841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50330 -00041146 67.67192841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50330 -00041147 67.67195892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50340 -00041148 67.67195892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50340 -00041149 67.67198944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50350 -00041150 67.67198944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50350 -00041151 67.67201233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50360 -00041152 67.67201996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50360 -00041153 67.67204285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50370 -00041154 67.67204285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50370 -00041155 67.67207336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50380 -00041156 67.67207336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50380 -00041157 67.67210388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50390 -00041158 67.67210388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50390 -00041159 67.67212677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a0 -00041160 67.67212677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a0 -00041161 67.67215729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b0 -00041162 67.67215729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b0 -00041163 67.67218781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c0 -00041164 67.67218781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c0 -00041165 67.67221069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d0 -00041166 67.67221832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d0 -00041167 67.67224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e0 -00041168 67.67224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e0 -00041169 67.67227173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f0 -00041170 67.67227173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f0 -00041171 67.67230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50400 -00041172 67.67230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50400 -00041173 67.67232513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50410 -00041174 67.67233276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50410 -00041175 67.67235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50420 -00041176 67.67235565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50420 -00041177 67.67238617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50430 -00041178 67.67238617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50430 -00041179 67.67240906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50440 -00041180 67.67241669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50440 -00041181 67.67243958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50450 -00041182 67.67243958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50450 -00041183 67.67247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50460 -00041184 67.67247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50460 -00041185 67.67250061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50470 -00041186 67.67250061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50470 -00041187 67.67252350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50480 -00041188 67.67253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50480 -00041189 67.67255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50490 -00041190 67.67255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50490 -00041191 67.67258453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a0 -00041192 67.67259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a0 -00041193 67.67261505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b0 -00041194 67.67261505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b0 -00041195 67.67263794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c0 -00041196 67.67263794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c0 -00041197 67.67266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d0 -00041198 67.67266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d0 -00041199 67.67269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e0 -00041200 67.67269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e0 -00041201 67.67272186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f0 -00041202 67.67272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f0 -00041203 67.67275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50500 -00041204 67.67275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50500 -00041205 67.67278290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50510 -00041206 67.67279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50510 -00041207 67.67281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50520 -00041208 67.67281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50520 -00041209 67.67283630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50530 -00041210 67.67284393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50530 -00041211 67.67286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50540 -00041212 67.67286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50540 -00041213 67.67289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50550 -00041214 67.67289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50550 -00041215 67.67292023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50560 -00041216 67.67292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50560 -00041217 67.67295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50570 -00041218 67.67295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50570 -00041219 67.67298126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50580 -00041220 67.67298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50580 -00041221 67.67301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50590 -00041222 67.67301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50590 -00041223 67.67303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a0 -00041224 67.67304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a0 -00041225 67.67306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b0 -00041226 67.67306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b0 -00041227 67.67309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -00041228 67.67309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c0 -00041229 67.67311859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -00041230 67.67312622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d0 -00041231 67.67314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -00041232 67.67314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e0 -00041233 67.67317963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -00041234 67.67318726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f0 -00041235 67.67321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -00041236 67.67321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50600 -00041237 67.67323303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -00041238 67.67324066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50610 -00041239 67.67326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -00041240 67.67326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50620 -00041241 67.67329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -00041242 67.67330170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50630 -00041243 67.67332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -00041244 67.67332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50640 -00041245 67.67334747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -00041246 67.67335510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50650 -00041247 67.67338562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -00041248 67.67338562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50660 -00041249 67.67340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -00041250 67.67340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50670 -00041251 67.67343140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -00041252 67.67343903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50680 -00041253 67.67346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -00041254 67.67346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50690 -00041255 67.67349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -00041256 67.67350006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a0 -00041257 67.67352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -00041258 67.67352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506b0 -00041259 67.67354584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -00041260 67.67355347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506c0 -00041261 67.67358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -00041262 67.67358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506d0 -00041263 67.67360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -00041264 67.67360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506e0 -00041265 67.67362976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -00041266 67.67363739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506f0 -00041267 67.67366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -00041268 67.67366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -00041269 67.67369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -00041270 67.67369843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -00041271 67.67372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -00041272 67.67372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -00041273 67.67374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -00041274 67.67375183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -00041275 67.67378235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -00041276 67.67378235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -00041277 67.67380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -00041278 67.67380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -00041279 67.67382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -00041280 67.67383575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -00041281 67.67385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -00041282 67.67385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -00041283 67.67388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -00041284 67.67389679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -00041285 67.67391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -00041286 67.67391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -00041287 67.67394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -00041288 67.67395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -00041289 67.67398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -00041290 67.67398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -00041291 67.67400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -00041292 67.67401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -00041293 67.67403412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -00041294 67.67403412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -00041295 67.67405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -00041296 67.67405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -00041297 67.67408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -00041298 67.67409515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -00041299 67.67411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -00041300 67.67411804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -00041301 67.67414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -00041302 67.67414856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -00041303 67.67417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -00041304 67.67417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -00041305 67.67420197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -00041306 67.67420959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -00041307 67.67423248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -00041308 67.67423248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -00041309 67.67426300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -00041310 67.67426300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -00041311 67.67429352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50860 -00041312 67.67429352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50860 -00041313 67.67431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50870 -00041314 67.67431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50870 -00041315 67.67434692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50880 -00041316 67.67434692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50880 -00041317 67.67437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50890 -00041318 67.67437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50890 -00041319 67.67440033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a0 -00041320 67.67440796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a0 -00041321 67.67443085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b0 -00041322 67.67443085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b0 -00041323 67.67446136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c0 -00041324 67.67446136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c0 -00041325 67.67449188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d0 -00041326 67.67449188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d0 -00041327 67.67451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e0 -00041328 67.67452240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e0 -00041329 67.67454529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508f0 -00041330 67.67454529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x508f0 -00041331 67.67457581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50900 -00041332 67.67457581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50900 -00041333 67.67460632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50910 -00041334 67.67460632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50910 -00041335 67.67462921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50920 -00041336 67.67463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50920 -00041337 67.67465973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50930 -00041338 67.67465973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50930 -00041339 67.67469025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50940 -00041340 67.67469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50940 -00041341 67.67472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50950 -00041342 67.67472076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50950 -00041343 67.67474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50960 -00041344 67.67475128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50960 -00041345 67.67477417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50970 -00041346 67.67477417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50970 -00041347 67.67480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50980 -00041348 67.67480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50980 -00041349 67.67482758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50990 -00041350 67.67483521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50990 -00041351 67.67485809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a0 -00041352 67.67485809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509a0 -00041353 67.67489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b0 -00041354 67.67489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509b0 -00041355 67.67491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c0 -00041356 67.67491913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509c0 -00041357 67.67494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d0 -00041358 67.67494965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509d0 -00041359 67.67497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e0 -00041360 67.67497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509e0 -00041361 67.67500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f0 -00041362 67.67501068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x509f0 -00041363 67.67503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a00 -00041364 67.67503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a00 -00041365 67.67505646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a10 -00041366 67.67506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a10 -00041367 67.67509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a20 -00041368 67.67509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a20 -00041369 67.67511749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a30 -00041370 67.67512512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a30 -00041371 67.67514801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a40 -00041372 67.67514801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a40 -00041373 67.67517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a50 -00041374 67.67517853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a50 -00041375 67.67520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -00041376 67.67520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -00041377 67.67523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -00041378 67.67523956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -00041379 67.67526245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -00041380 67.67526245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -00041381 67.67529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -00041382 67.67529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -00041383 67.67532349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -00041384 67.67532349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -00041385 67.67534637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -00041386 67.67535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -00041387 67.67537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -00041388 67.67537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -00041389 67.67540741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -00041390 67.67540741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -00041391 67.67543793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -00041392 67.67543793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -00041393 67.67546082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -00041394 67.67546844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -00041395 67.67549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -00041396 67.67549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -00041397 67.67552185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b10 -00041398 67.67552185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b10 -00041399 67.67554474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b20 -00041400 67.67555237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b20 -00041401 67.67557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b30 -00041402 67.67557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b30 -00041403 67.67560577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b40 -00041404 67.67561340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b40 -00041405 67.67563629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b50 -00041406 67.67563629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b50 -00041407 67.67565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b60 -00041408 67.67566681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b60 -00041409 67.67568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b70 -00041410 67.67568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b70 -00041411 67.67572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b80 -00041412 67.67572784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b80 -00041413 67.67575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b90 -00041414 67.67575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b90 -00041415 67.67577362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba0 -00041416 67.67577362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba0 -00041417 67.67580414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb0 -00041418 67.67581177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb0 -00041419 67.67583466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc0 -00041420 67.67583466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc0 -00041421 67.67585754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd0 -00041422 67.67586517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd0 -00041423 67.67588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be0 -00041424 67.67588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be0 -00041425 67.67591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf0 -00041426 67.67592621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf0 -00041427 67.67594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c00 -00041428 67.67594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c00 -00041429 67.67597198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c10 -00041430 67.67597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c10 -00041431 67.67601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c20 -00041432 67.67601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c20 -00041433 67.67603302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c30 -00041434 67.67603302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c30 -00041435 67.67605591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c40 -00041436 67.67606354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c40 -00041437 67.67608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c50 -00041438 67.67608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c50 -00041439 67.67611694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c60 -00041440 67.67612457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c60 -00041441 67.67614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c70 -00041442 67.67614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c70 -00041443 67.67617035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c80 -00041444 67.67617798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c80 -00041445 67.67620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c90 -00041446 67.67620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c90 -00041447 67.67623138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca0 -00041448 67.67623901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca0 -00041449 67.67626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb0 -00041450 67.67626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb0 -00041451 67.67628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc0 -00041452 67.67629242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc0 -00041453 67.67632294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd0 -00041454 67.67632294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd0 -00041455 67.67634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce0 -00041456 67.67634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce0 -00041457 67.67636871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf0 -00041458 67.67637634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf0 -00041459 67.67640686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d00 -00041460 67.67640686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d00 -00041461 67.67642975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d10 -00041462 67.67643738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d10 -00041463 67.67646027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d20 -00041464 67.67646027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d20 -00041465 67.67648315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d30 -00041466 67.67649078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d30 -00041467 67.67652130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d40 -00041468 67.67652130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d40 -00041469 67.67654419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d50 -00041470 67.67655182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d50 -00041471 67.67657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d60 -00041472 67.67657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d60 -00041473 67.67660522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d70 -00041474 67.67660522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d70 -00041475 67.67663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d80 -00041476 67.67663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d80 -00041477 67.67665863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d90 -00041478 67.67666626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d90 -00041479 67.67668915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da0 -00041480 67.67668915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da0 -00041481 67.67671967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db0 -00041482 67.67671967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db0 -00041483 67.67675018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dc0 -00041484 67.67675018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dc0 -00041485 67.67677307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dd0 -00041486 67.67678070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50dd0 -00041487 67.67680359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50de0 -00041488 67.67680359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50de0 -00041489 67.67683411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50df0 -00041490 67.67684174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50df0 -00041491 67.67686462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e00 -00041492 67.67686462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e00 -00041493 67.67689514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e10 -00041494 67.67689514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e10 -00041495 67.67691803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e20 -00041496 67.67691803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e20 -00041497 67.67695618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e30 -00041498 67.67695618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e30 -00041499 67.67697906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e40 -00041500 67.67698669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e40 -00041501 67.67700958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e50 -00041502 67.67700958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e50 -00041503 67.67704010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e60 -00041504 67.67704010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e60 -00041505 67.67707062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e70 -00041506 67.67707062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e70 -00041507 67.67709351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e80 -00041508 67.67710114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e80 -00041509 67.67712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e90 -00041510 67.67712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e90 -00041511 67.67715454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea0 -00041512 67.67716217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea0 -00041513 67.67718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb0 -00041514 67.67719269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb0 -00041515 67.67721558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec0 -00041516 67.67721558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec0 -00041517 67.67723846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed0 -00041518 67.67724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed0 -00041519 67.67727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee0 -00041520 67.67727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee0 -00041521 67.67730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef0 -00041522 67.67730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef0 -00041523 67.67733002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f00 -00041524 67.67733002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f00 -00041525 67.67736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f10 -00041526 67.67736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f10 -00041527 67.67739105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f20 -00041528 67.67739105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f20 -00041529 67.67741394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f30 -00041530 67.67742157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f30 -00041531 67.67744446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f40 -00041532 67.67744446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f40 -00041533 67.67747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f50 -00041534 67.67747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f50 -00041535 67.67750549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f60 -00041536 67.67751312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f60 -00041537 67.67753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f70 -00041538 67.67753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f70 -00041539 67.67755890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f80 -00041540 67.67756653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f80 -00041541 67.67759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f90 -00041542 67.67759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f90 -00041543 67.67761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa0 -00041544 67.67761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa0 -00041545 67.67764282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb0 -00041546 67.67765045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb0 -00041547 67.67767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc0 -00041548 67.67767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc0 -00041549 67.67770386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd0 -00041550 67.67771149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd0 -00041551 67.67773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe0 -00041552 67.67773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe0 -00041553 67.67775726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff0 -00041554 67.67776489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff0 -00041555 67.67779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51000 -00041556 67.67779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51000 -00041557 67.67781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51010 -00041558 67.67782593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51010 -00041559 67.67784882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51020 -00041560 67.67784882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51020 -00041561 67.67787170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51030 -00041562 67.67787933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51030 -00041563 67.67790985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51040 -00041564 67.67790985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51040 -00041565 67.67793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51050 -00041566 67.67793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51050 -00041567 67.67795563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51060 -00041568 67.67796326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51060 -00041569 67.67799377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51070 -00041570 67.67799377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51070 -00041571 67.67801666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51080 -00041572 67.67802429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51080 -00041573 67.67804718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51090 -00041574 67.67804718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51090 -00041575 67.67807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a0 -00041576 67.67807770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a0 -00041577 67.67810822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b0 -00041578 67.67810822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b0 -00041579 67.67813110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c0 -00041580 67.67813110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c0 -00041581 67.67815399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d0 -00041582 67.67816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d0 -00041583 67.67819214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e0 -00041584 67.67819214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e0 -00041585 67.67821503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f0 -00041586 67.67822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f0 -00041587 67.67824554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51100 -00041588 67.67824554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51100 -00041589 67.67826843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51110 -00041590 67.67827606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51110 -00041591 67.67830658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -00041592 67.67830658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -00041593 67.67832947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -00041594 67.67833710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -00041595 67.67835999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -00041596 67.67835999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -00041597 67.67839050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -00041598 67.67839050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -00041599 67.67842102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -00041600 67.67842102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -00041601 67.67844391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -00041602 67.67845154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -00041603 67.67847443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -00041604 67.67847443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -00041605 67.67850494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -00041606 67.67850494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -00041607 67.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -00041608 67.67853546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -00041609 67.67855835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -00041610 67.67855835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -00041611 67.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -00041612 67.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -00041613 67.67861938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -00041614 67.67861938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -00041615 67.67864227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -00041616 67.67864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -00041617 67.67867279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -00041618 67.67867279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -00041619 67.67870331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -00041620 67.67870331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -00041621 67.67872620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -00041622 67.67873383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -00041623 67.67875671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -00041624 67.67875671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -00041625 67.67878723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -00041626 67.67878723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -00041627 67.67881775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -00041628 67.67881775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -00041629 67.67884064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -00041630 67.67884827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -00041631 67.67887115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -00041632 67.67887115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -00041633 67.67890167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51270 -00041634 67.67890167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51270 -00041635 67.67892456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51280 -00041636 67.67893219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51280 -00041637 67.67895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51290 -00041638 67.67895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51290 -00041639 67.67898560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a0 -00041640 67.67898560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512a0 -00041641 67.67901611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b0 -00041642 67.67901611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512b0 -00041643 67.67903900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c0 -00041644 67.67904663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512c0 -00041645 67.67906952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d0 -00041646 67.67906952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512d0 -00041647 67.67910004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e0 -00041648 67.67910004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512e0 -00041649 67.67913055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f0 -00041650 67.67913055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x512f0 -00041651 67.67915344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51300 -00041652 67.67915344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51300 -00041653 67.67918396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51310 -00041654 67.67918396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51310 -00041655 67.67921448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51320 -00041656 67.67922211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51320 -00041657 67.67924500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51330 -00041658 67.67924500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51330 -00041659 67.67926788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51340 -00041660 67.67927551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51340 -00041661 67.67930603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51350 -00041662 67.67930603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51350 -00041663 67.67932892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51360 -00041664 67.67933655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51360 -00041665 67.67935944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51370 -00041666 67.67935944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51370 -00041667 67.67938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51380 -00041668 67.67938995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51380 -00041669 67.67942047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51390 -00041670 67.67942047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51390 -00041671 67.67944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a0 -00041672 67.67944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a0 -00041673 67.67947388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b0 -00041674 67.67947388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b0 -00041675 67.67950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c0 -00041676 67.67950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c0 -00041677 67.67953491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d0 -00041678 67.67953491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d0 -00041679 67.67955780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e0 -00041680 67.67956543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e0 -00041681 67.67958832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f0 -00041682 67.67958832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f0 -00041683 67.67961884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51400 -00041684 67.67961884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51400 -00041685 67.67964935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51410 -00041686 67.67964935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51410 -00041687 67.67967224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51420 -00041688 67.67967987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51420 -00041689 67.67970276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51430 -00041690 67.67970276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51430 -00041691 67.67973328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51440 -00041692 67.67974091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51440 -00041693 67.67976379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -00041694 67.67976379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -00041695 67.67978668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -00041696 67.67979431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -00041697 67.67981720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -00041698 67.67981720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -00041699 67.67985535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -00041700 67.67985535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -00041701 67.67987823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -00041702 67.67988586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -00041703 67.67990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -00041704 67.67990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -00041705 67.67993927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -00041706 67.67993927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -00041707 67.67996979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -00041708 67.67996979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -00041709 67.67999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -00041710 67.68000031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -00041711 67.68002319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -00041712 67.68002319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -00041713 67.68005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -00041714 67.68006134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -00041715 67.68008423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -00041716 67.68008423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -00041717 67.68010712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -00041718 67.68011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -00041719 67.68013763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -00041720 67.68013763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -00041721 67.68016815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -00041722 67.68017578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -00041723 67.68019867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -00041724 67.68019867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -00041725 67.68022156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -00041726 67.68022919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -00041727 67.68025970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -00041728 67.68025970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -00041729 67.68028259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -00041730 67.68029022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -00041731 67.68031311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -00041732 67.68031311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -00041733 67.68033600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -00041734 67.68034363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -00041735 67.68037415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -00041736 67.68037415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -00041737 67.68039703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -00041738 67.68040466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -00041739 67.68042755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -00041740 67.68042755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -00041741 67.68045807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -00041742 67.68045807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -00041743 67.68048096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -00041744 67.68048859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -00041745 67.68051147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -00041746 67.68051147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -00041747 67.68053436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51600 -00041748 67.68054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51600 -00041749 67.68057251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51610 -00041750 67.68057251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51610 -00041751 67.68059540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51620 -00041752 67.68060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51620 -00041753 67.68062592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51630 -00041754 67.68062592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51630 -00041755 67.68065643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51640 -00041756 67.68065643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51640 -00041757 67.68068695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51650 -00041758 67.68068695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51650 -00041759 67.68070984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51660 -00041760 67.68070984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51660 -00041761 67.68073273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51670 -00041762 67.68074036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51670 -00041763 67.68077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51680 -00041764 67.68077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51680 -00041765 67.68080139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51690 -00041766 67.68080139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51690 -00041767 67.68082428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a0 -00041768 67.68082428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a0 -00041769 67.68085480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b0 -00041770 67.68085480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b0 -00041771 67.68088531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c0 -00041772 67.68088531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c0 -00041773 67.68090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d0 -00041774 67.68091583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d0 -00041775 67.68093872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e0 -00041776 67.68093872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e0 -00041777 67.68096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f0 -00041778 67.68096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f0 -00041779 67.68099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51700 -00041780 67.68099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51700 -00041781 67.68102264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51710 -00041782 67.68103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51710 -00041783 67.68105316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51720 -00041784 67.68105316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51720 -00041785 67.68108368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51730 -00041786 67.68109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51730 -00041787 67.68111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51740 -00041788 67.68111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51740 -00041789 67.68113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51750 -00041790 67.68113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51750 -00041791 67.68116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51760 -00041792 67.68116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51760 -00041793 67.68119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51770 -00041794 67.68119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51770 -00041795 67.68122101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51780 -00041796 67.68122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51780 -00041797 67.68125153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51790 -00041798 67.68125153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51790 -00041799 67.68128204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a0 -00041800 67.68128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a0 -00041801 67.68132019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b0 -00041802 67.68132019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b0 -00041803 67.68135834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c0 -00041804 67.68136597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c0 -00041805 67.68138885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d0 -00041806 67.68139648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d0 -00041807 67.68141937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e0 -00041808 67.68141937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e0 -00041809 67.68144989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f0 -00041810 67.68144989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f0 -00041811 67.68148041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51800 -00041812 67.68148041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51800 -00041813 67.68150330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51810 -00041814 67.68151093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51810 -00041815 67.68153381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51820 -00041816 67.68153381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51820 -00041817 67.68156433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51830 -00041818 67.68156433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51830 -00041819 67.68159485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51840 -00041820 67.68159485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51840 -00041821 67.68161774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51850 -00041822 67.68162537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51850 -00041823 67.68164825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51860 -00041824 67.68164825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51860 -00041825 67.68167877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51870 -00041826 67.68168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51870 -00041827 67.68170929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51880 -00041828 67.68170929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51880 -00041829 67.68173218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51890 -00041830 67.68173218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51890 -00041831 67.68176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a0 -00041832 67.68176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a0 -00041833 67.68179321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b0 -00041834 67.68179321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b0 -00041835 67.68181610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c0 -00041836 67.68182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c0 -00041837 67.68184662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d0 -00041838 67.68184662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d0 -00041839 67.68187714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e0 -00041840 67.68188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e0 -00041841 67.68190765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f0 -00041842 67.68190765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f0 -00041843 67.68193054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51900 -00041844 67.68193817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51900 -00041845 67.68196106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51910 -00041846 67.68196106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51910 -00041847 67.68199158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51920 -00041848 67.68199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51920 -00041849 67.68202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51930 -00041850 67.68202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51930 -00041851 67.68204498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51940 -00041852 67.68205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51940 -00041853 67.68208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51950 -00041854 67.68208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51950 -00041855 67.68210602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51960 -00041856 67.68210602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51960 -00041857 67.68212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51970 -00041858 67.68213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51970 -00041859 67.68215942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51980 -00041860 67.68216705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51980 -00041861 67.68219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51990 -00041862 67.68219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51990 -00041863 67.68222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a0 -00041864 67.68222809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a0 -00041865 67.68225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b0 -00041866 67.68225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b0 -00041867 67.68228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c0 -00041868 67.68228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c0 -00041869 67.68231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d0 -00041870 67.68231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d0 -00041871 67.68233490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e0 -00041872 67.68234253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e0 -00041873 67.68236542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f0 -00041874 67.68236542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f0 -00041875 67.68239594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a00 -00041876 67.68240356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a00 -00041877 67.68242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a10 -00041878 67.68242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a10 -00041879 67.68244934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a20 -00041880 67.68245697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a20 -00041881 67.68247986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a30 -00041882 67.68247986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a30 -00041883 67.68251038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a40 -00041884 67.68251801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a40 -00041885 67.68254089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a50 -00041886 67.68254089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a50 -00041887 67.68256378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a60 -00041888 67.68256378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a60 -00041889 67.68259430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a70 -00041890 67.68260193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a70 -00041891 67.68262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a80 -00041892 67.68262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a80 -00041893 67.68264771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a90 -00041894 67.68265533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a90 -00041895 67.68267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -00041896 67.68267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa0 -00041897 67.68270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -00041898 67.68271637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab0 -00041899 67.68273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -00041900 67.68273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac0 -00041901 67.68276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -00041902 67.68276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad0 -00041903 67.68280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -00041904 67.68280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae0 -00041905 67.68282318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -00041906 67.68282318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af0 -00041907 67.68284607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -00041908 67.68285370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b00 -00041909 67.68287659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -00041910 67.68287659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b10 -00041911 67.68290710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -00041912 67.68291473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b20 -00041913 67.68293762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -00041914 67.68293762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b30 -00041915 67.68296051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -00041916 67.68296814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b40 -00041917 67.68299866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -00041918 67.68299866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b50 -00041919 67.68302155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -00041920 67.68302917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b60 -00041921 67.68305206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -00041922 67.68305206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b70 -00041923 67.68307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -00041924 67.68307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b80 -00041925 67.68310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -00041926 67.68311310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b90 -00041927 67.68313599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -00041928 67.68313599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ba0 -00041929 67.68315887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -00041930 67.68316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bb0 -00041931 67.68319702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -00041932 67.68319702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bc0 -00041933 67.68321991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -00041934 67.68322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd0 -00041935 67.68325043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -00041936 67.68325043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be0 -00041937 67.68327332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -00041938 67.68328094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf0 -00041939 67.68331146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c00 -00041940 67.68331146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c00 -00041941 67.68333435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c10 -00041942 67.68334198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c10 -00041943 67.68336487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c20 -00041944 67.68336487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c20 -00041945 67.68339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c30 -00041946 67.68339539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c30 -00041947 67.68342590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c40 -00041948 67.68342590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c40 -00041949 67.68344879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c50 -00041950 67.68344879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c50 -00041951 67.68347931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c60 -00041952 67.68347931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c60 -00041953 67.68350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c70 -00041954 67.68350983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c70 -00041955 67.68353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c80 -00041956 67.68354034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c80 -00041957 67.68356323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c90 -00041958 67.68356323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c90 -00041959 67.68359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca0 -00041960 67.68359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca0 -00041961 67.68362427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb0 -00041962 67.68362427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb0 -00041963 67.68364716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc0 -00041964 67.68365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc0 -00041965 67.68367767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd0 -00041966 67.68367767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd0 -00041967 67.68370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce0 -00041968 67.68370819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce0 -00041969 67.68373108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf0 -00041970 67.68373871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf0 -00041971 67.68376160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d00 -00041972 67.68376160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d00 -00041973 67.68379211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d10 -00041974 67.68379211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d10 -00041975 67.68382263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d20 -00041976 67.68382263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d20 -00041977 67.68384552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d30 -00041978 67.68385315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d30 -00041979 67.68387604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d40 -00041980 67.68387604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d40 -00041981 67.68390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d50 -00041982 67.68390656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d50 -00041983 67.68392944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d60 -00041984 67.68393707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d60 -00041985 67.68395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d70 -00041986 67.68395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d70 -00041987 67.68399048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d80 -00041988 67.68399048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d80 -00041989 67.68402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d90 -00041990 67.68402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d90 -00041991 67.68404388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da0 -00041992 67.68405151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da0 -00041993 67.68407440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db0 -00041994 67.68407440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db0 -00041995 67.68410492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc0 -00041996 67.68411255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc0 -00041997 67.68413544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd0 -00041998 67.68413544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd0 -00041999 67.68415833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de0 -00042000 67.68416595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de0 -00042001 67.68418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df0 -00042002 67.68418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df0 -00042003 67.68421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e00 -00042004 67.68421936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e00 -00042005 67.68424225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e10 -00042006 67.68424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e10 -00042007 67.68427277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e20 -00042008 67.68427277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e20 -00042009 67.68430328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e30 -00042010 67.68431091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e30 -00042011 67.68433380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e40 -00042012 67.68433380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e40 -00042013 67.68435669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e50 -00042014 67.68436432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e50 -00042015 67.68438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e60 -00042016 67.68438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e60 -00042017 67.68441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e70 -00042018 67.68441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e70 -00042019 67.68444061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e80 -00042020 67.68444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e80 -00042021 67.68447113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e90 -00042022 67.68447113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e90 -00042023 67.68450165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ea0 -00042024 67.68450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ea0 -00042025 67.68453217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51eb0 -00042026 67.68453217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51eb0 -00042027 67.68455505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ec0 -00042028 67.68456268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ec0 -00042029 67.68458557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ed0 -00042030 67.68458557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ed0 -00042031 67.68461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ee0 -00042032 67.68461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ee0 -00042033 67.68463898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ef0 -00042034 67.68464661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ef0 -00042035 67.68466949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f00 -00042036 67.68466949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f00 -00042037 67.68470001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f10 -00042038 67.68470764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f10 -00042039 67.68473053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f20 -00042040 67.68473053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f20 -00042041 67.68475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f30 -00042042 67.68476105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f30 -00042043 67.68478394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f40 -00042044 67.68478394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f40 -00042045 67.68481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f50 -00042046 67.68481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f50 -00042047 67.68484497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f60 -00042048 67.68484497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f60 -00042049 67.68486786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f70 -00042050 67.68486786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f70 -00042051 67.68489838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f80 -00042052 67.68490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f80 -00042053 67.68492889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f90 -00042054 67.68492889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f90 -00042055 67.68495178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa0 -00042056 67.68495941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fa0 -00042057 67.68498230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fb0 -00042058 67.68498230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fb0 -00042059 67.68501282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fc0 -00042060 67.68502045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fc0 -00042061 67.68504333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fd0 -00042062 67.68504333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fd0 -00042063 67.68506622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fe0 -00042064 67.68506622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51fe0 -00042065 67.68509674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ff0 -00042066 67.68510437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ff0 -00042067 67.68512726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52000 -00042068 67.68512726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52000 -00042069 67.68515015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52010 -00042070 67.68515778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52010 -00042071 67.68518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52020 -00042072 67.68518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52020 -00042073 67.68521118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52030 -00042074 67.68521881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52030 -00042075 67.68524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52040 -00042076 67.68524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52040 -00042077 67.68526459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52050 -00042078 67.68527222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52050 -00042079 67.68530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52060 -00042080 67.68530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52060 -00042081 67.68532562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52070 -00042082 67.68532562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52070 -00042083 67.68534851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52080 -00042084 67.68535614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52080 -00042085 67.68537903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52090 -00042086 67.68537903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52090 -00042087 67.68540955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a0 -00042088 67.68541718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a0 -00042089 67.68544006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b0 -00042090 67.68544006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b0 -00042091 67.68546295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c0 -00042092 67.68547058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c0 -00042093 67.68550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d0 -00042094 67.68550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d0 -00042095 67.68552399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -00042096 67.68553162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e0 -00042097 67.68555450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -00042098 67.68555450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f0 -00042099 67.68557739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -00042100 67.68557739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52100 -00042101 67.68560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -00042102 67.68561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52110 -00042103 67.68563843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -00042104 67.68563843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52120 -00042105 67.68566132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -00042106 67.68566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52130 -00042107 67.68569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -00042108 67.68569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52140 -00042109 67.68572235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -00042110 67.68572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52150 -00042111 67.68575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -00042112 67.68575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52160 -00042113 67.68577576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -00042114 67.68577576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52170 -00042115 67.68580627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -00042116 67.68581390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52180 -00042117 67.68583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52190 -00042118 67.68583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52190 -00042119 67.68585968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a0 -00042120 67.68586731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a0 -00042121 67.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b0 -00042122 67.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b0 -00042123 67.68592072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c0 -00042124 67.68592834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c0 -00042125 67.68595123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d0 -00042126 67.68595123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d0 -00042127 67.68597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e0 -00042128 67.68597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e0 -00042129 67.68600464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f0 -00042130 67.68601227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f0 -00042131 67.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52200 -00042132 67.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52200 -00042133 67.68605804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52210 -00042134 67.68606567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52210 -00042135 67.68609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52220 -00042136 67.68609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52220 -00042137 67.68611908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52230 -00042138 67.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52230 -00042139 67.68614960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52240 -00042140 67.68614960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52240 -00042141 67.68617249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52250 -00042142 67.68618011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52250 -00042143 67.68621063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52260 -00042144 67.68621063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52260 -00042145 67.68623352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52270 -00042146 67.68623352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52270 -00042147 67.68626404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52280 -00042148 67.68626404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52280 -00042149 67.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52290 -00042150 67.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52290 -00042151 67.68632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a0 -00042152 67.68632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522a0 -00042153 67.68634796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b0 -00042154 67.68635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522b0 -00042155 67.68637848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c0 -00042156 67.68637848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522c0 -00042157 67.68640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d0 -00042158 67.68640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522d0 -00042159 67.68643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e0 -00042160 67.68643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522e0 -00042161 67.68646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f0 -00042162 67.68647003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x522f0 -00042163 67.68649292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52300 -00042164 67.68649292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52300 -00042165 67.68652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52310 -00042166 67.68653107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52310 -00042167 67.68655396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52320 -00042168 67.68655396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52320 -00042169 67.68657684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52330 -00042170 67.68658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52330 -00042171 67.68661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52340 -00042172 67.68661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52340 -00042173 67.68663788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52350 -00042174 67.68664551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52350 -00042175 67.68666840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52360 -00042176 67.68666840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52360 -00042177 67.68669128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52370 -00042178 67.68669128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52370 -00042179 67.68672180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52380 -00042180 67.68672943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52380 -00042181 67.68675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52390 -00042182 67.68675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52390 -00042183 67.68677521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a0 -00042184 67.68678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a0 -00042185 67.68681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b0 -00042186 67.68681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b0 -00042187 67.68683624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c0 -00042188 67.68684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c0 -00042189 67.68686676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d0 -00042190 67.68686676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d0 -00042191 67.68688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e0 -00042192 67.68689728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e0 -00042193 67.68692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f0 -00042194 67.68692780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f0 -00042195 67.68695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52400 -00042196 67.68695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52400 -00042197 67.68697357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52410 -00042198 67.68698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52410 -00042199 67.68701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52420 -00042200 67.68701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52420 -00042201 67.68703461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52430 -00042202 67.68704224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52430 -00042203 67.68706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52440 -00042204 67.68706512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52440 -00042205 67.68708801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52450 -00042206 67.68709564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52450 -00042207 67.68712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52460 -00042208 67.68712616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52460 -00042209 67.68714905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52470 -00042210 67.68715668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52470 -00042211 67.68717957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52480 -00042212 67.68717957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52480 -00042213 67.68721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52490 -00042214 67.68721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52490 -00042215 67.68724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a0 -00042216 67.68724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a0 -00042217 67.68726349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b0 -00042218 67.68727112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b0 -00042219 67.68729401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c0 -00042220 67.68729401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c0 -00042221 67.68732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d0 -00042222 67.68732452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d0 -00042223 67.68734741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e0 -00042224 67.68735504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e0 -00042225 67.68737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f0 -00042226 67.68737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f0 -00042227 67.68740845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52500 -00042228 67.68740845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52500 -00042229 67.68743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52510 -00042230 67.68743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52510 -00042231 67.68746185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52520 -00042232 67.68746948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52520 -00042233 67.68749237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52530 -00042234 67.68749237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52530 -00042235 67.68752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52540 -00042236 67.68752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52540 -00042237 67.68755341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52550 -00042238 67.68755341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52550 -00042239 67.68757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52560 -00042240 67.68757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52560 -00042241 67.68760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52570 -00042242 67.68760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52570 -00042243 67.68763733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52580 -00042244 67.68763733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52580 -00042245 67.68766785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52590 -00042246 67.68766785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52590 -00042247 67.68769073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a0 -00042248 67.68769836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a0 -00042249 67.68772125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b0 -00042250 67.68772125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b0 -00042251 67.68775177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c0 -00042252 67.68775940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c0 -00042253 67.68778229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d0 -00042254 67.68778229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d0 -00042255 67.68780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e0 -00042256 67.68781281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e0 -00042257 67.68784332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f0 -00042258 67.68784332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x525f0 -00042259 67.68786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52600 -00042260 67.68786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52600 -00042261 67.68789673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52610 -00042262 67.68789673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52610 -00042263 67.68791962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52620 -00042264 67.68791962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52620 -00042265 67.68795013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52630 -00042266 67.68795776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52630 -00042267 67.68798065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52640 -00042268 67.68798065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52640 -00042269 67.68800354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52650 -00042270 67.68801117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52650 -00042271 67.68804169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52660 -00042272 67.68804169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52660 -00042273 67.68806458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52670 -00042274 67.68807220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52670 -00042275 67.68809509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52680 -00042276 67.68809509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52680 -00042277 67.68811798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52690 -00042278 67.68812561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52690 -00042279 67.68815613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a0 -00042280 67.68815613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526a0 -00042281 67.68817902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b0 -00042282 67.68818665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526b0 -00042283 67.68820953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c0 -00042284 67.68820953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526c0 -00042285 67.68824768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d0 -00042286 67.68825531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526d0 -00042287 67.68827820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e0 -00042288 67.68828583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526e0 -00042289 67.68831635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526f0 -00042290 67.68831635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x526f0 -00042291 67.68833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52700 -00042292 67.68833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52700 -00042293 67.68836212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52710 -00042294 67.68836975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52710 -00042295 67.68840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52720 -00042296 67.68840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52720 -00042297 67.68842316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52730 -00042298 67.68843079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52730 -00042299 67.68845367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52740 -00042300 67.68845367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52740 -00042301 67.68847656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52750 -00042302 67.68848419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52750 -00042303 67.68851471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52760 -00042304 67.68851471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52760 -00042305 67.68853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52770 -00042306 67.68854523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52770 -00042307 67.68856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52780 -00042308 67.68856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52780 -00042309 67.68859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52790 -00042310 67.68859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52790 -00042311 67.68862915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527a0 -00042312 67.68862915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527a0 -00042313 67.68865204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527b0 -00042314 67.68865204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527b0 -00042315 67.68868256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527c0 -00042316 67.68868256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527c0 -00042317 67.68871307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d0 -00042318 67.68871307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d0 -00042319 67.68873596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e0 -00042320 67.68874359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e0 -00042321 67.68876648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f0 -00042322 67.68876648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f0 -00042323 67.68879700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52800 -00042324 67.68879700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52800 -00042325 67.68882751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52810 -00042326 67.68882751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52810 -00042327 67.68885040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52820 -00042328 67.68885803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52820 -00042329 67.68888092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52830 -00042330 67.68888092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52830 -00042331 67.68891144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52840 -00042332 67.68891144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52840 -00042333 67.68894196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52850 -00042334 67.68894196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52850 -00042335 67.68896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52860 -00042336 67.68896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52860 -00042337 67.68899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52870 -00042338 67.68899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52870 -00042339 67.68902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52880 -00042340 67.68902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52880 -00042341 67.68904877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52890 -00042342 67.68905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52890 -00042343 67.68907928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a0 -00042344 67.68907928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a0 -00042345 67.68910980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b0 -00042346 67.68910980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b0 -00042347 67.68914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c0 -00042348 67.68914032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c0 -00042349 67.68917084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d0 -00042350 67.68917084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d0 -00042351 67.68919373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e0 -00042352 67.68920135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e0 -00042353 67.68923187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f0 -00042354 67.68923187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f0 -00042355 67.68925476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52900 -00042356 67.68926239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52900 -00042357 67.68928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52910 -00042358 67.68928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52910 -00042359 67.68931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52920 -00042360 67.68931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52920 -00042361 67.68933868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52930 -00042362 67.68934631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52930 -00042363 67.68936920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52940 -00042364 67.68936920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52940 -00042365 67.68939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52950 -00042366 67.68939972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52950 -00042367 67.68943024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52960 -00042368 67.68943024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52960 -00042369 67.68945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52970 -00042370 67.68946075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52970 -00042371 67.68948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -00042372 67.68948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -00042373 67.68951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -00042374 67.68951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -00042375 67.68953705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -00042376 67.68954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -00042377 67.68956757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -00042378 67.68956757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -00042379 67.68959045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -00042380 67.68959808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -00042381 67.68962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -00042382 67.68962860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -00042383 67.68965149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -00042384 67.68965912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -00042385 67.68968201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -00042386 67.68968201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -00042387 67.68971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -00042388 67.68971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -00042389 67.68974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -00042390 67.68974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -00042391 67.68976593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -00042392 67.68977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -00042393 67.68979645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -00042394 67.68979645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -00042395 67.68982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -00042396 67.68982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -00042397 67.68985748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -00042398 67.68985748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -00042399 67.68988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -00042400 67.68988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -00042401 67.68991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -00042402 67.68991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -00042403 67.68994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -00042404 67.68994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -00042405 67.68996429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -00042406 67.68997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -00042407 67.68999481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -00042408 67.68999481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -00042409 67.69002533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -00042410 67.69002533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -00042411 67.69005585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -00042412 67.69005585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -00042413 67.69007874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -00042414 67.69007874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -00042415 67.69010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae0 -00042416 67.69010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae0 -00042417 67.69013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af0 -00042418 67.69013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af0 -00042419 67.69016266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b00 -00042420 67.69017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b00 -00042421 67.69019318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b10 -00042422 67.69019318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b10 -00042423 67.69022369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b20 -00042424 67.69022369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b20 -00042425 67.69025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b30 -00042426 67.69025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b30 -00042427 67.69027710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b40 -00042428 67.69028473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b40 -00042429 67.69030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b50 -00042430 67.69031525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b50 -00042431 67.69034576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b60 -00042432 67.69034576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b60 -00042433 67.69036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b70 -00042434 67.69036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b70 -00042435 67.69039154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b80 -00042436 67.69039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b80 -00042437 67.69042206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b90 -00042438 67.69042206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b90 -00042439 67.69045258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba0 -00042440 67.69046021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba0 -00042441 67.69048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb0 -00042442 67.69048309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb0 -00042443 67.69050598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc0 -00042444 67.69051361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc0 -00042445 67.69054413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd0 -00042446 67.69054413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd0 -00042447 67.69056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be0 -00042448 67.69056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be0 -00042449 67.69058990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf0 -00042450 67.69059753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf0 -00042451 67.69062042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c00 -00042452 67.69062042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c00 -00042453 67.69065094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c10 -00042454 67.69065857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c10 -00042455 67.69068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c20 -00042456 67.69068146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c20 -00042457 67.69070435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c30 -00042458 67.69071198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c30 -00042459 67.69074249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c40 -00042460 67.69074249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c40 -00042461 67.69076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c50 -00042462 67.69076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c50 -00042463 67.69078827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c60 -00042464 67.69079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c60 -00042465 67.69081879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c70 -00042466 67.69081879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c70 -00042467 67.69084930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c80 -00042468 67.69085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c80 -00042469 67.69087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c90 -00042470 67.69087982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c90 -00042471 67.69090271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca0 -00042472 67.69091034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca0 -00042473 67.69094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cb0 -00042474 67.69094086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cb0 -00042475 67.69096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cc0 -00042476 67.69097137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cc0 -00042477 67.69099426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cd0 -00042478 67.69099426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cd0 -00042479 67.69101715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ce0 -00042480 67.69101715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ce0 -00042481 67.69104767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cf0 -00042482 67.69105530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52cf0 -00042483 67.69107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d00 -00042484 67.69107819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d00 -00042485 67.69110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d10 -00042486 67.69110870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d10 -00042487 67.69113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d20 -00042488 67.69113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d20 -00042489 67.69115448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce90 -00042490 67.69657135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64718 -00042491 67.69657898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d678 -00042492 67.69657898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d67a -00042493 67.69660187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x647a0 -00042494 67.69660950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d700 -00042495 67.69660950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d702 -00042496 67.69663239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64780 -00042497 67.69663239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d6e0 -00042498 67.69664001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d6e2 -00042499 67.69666290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x642e0 -00042500 67.69666290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d240 -00042501 67.69666290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d242 -00042502 67.69672394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8f -00042503 67.69673157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce80 -00042504 67.69673157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce80 -00042505 67.69675446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce81 -00042506 67.69676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8e -00042507 67.69676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8e -00042508 67.69678497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8d -00042509 67.69679260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce82 -00042510 67.69679260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce82 -00042511 67.69681549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce83 -00042512 67.69681549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8c -00042513 67.69682312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8c -00042514 67.69685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8b -00042515 67.69685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce84 -00042516 67.69686127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce84 -00042517 67.69687653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce85 -00042518 67.69688416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8a -00042519 67.69688416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8a -00042520 67.69690704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce89 -00042521 67.69691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce86 -00042522 67.69691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce86 -00042523 67.69693756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce87 -00042524 67.69693756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce88 -00042525 67.69694519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce88 -00042526 67.74299622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00042527 67.74317169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00042528 67.74324799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00042529 67.74324799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -00042530 67.74327850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00042531 67.74327850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -00042532 67.74330902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00042533 67.74330902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -00042534 67.74333191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00042535 67.74333191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -00042536 67.74336243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00042537 67.74337006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -00042538 67.74339294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00042539 67.74339294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -00042540 67.74341583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00042541 67.74342346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -00042542 67.74344635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00042543 67.74344635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -00042544 67.74347687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00042545 67.74347687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -00042546 67.74350739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00042547 67.74350739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -00042548 67.74353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00042549 67.74353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -00042550 67.74356079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00042551 67.74356842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -00042552 67.74359131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00042553 67.74359131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -00042554 67.74361420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00042555 67.74362183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -00042556 67.74364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00042557 67.74364471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -00042558 67.74367523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00042559 67.74368286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -00042560 67.74370575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00042561 67.74370575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -00042562 67.74372864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00042563 67.74372864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -00042564 67.74375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00042565 67.74376678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -00042566 67.74378967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00042567 67.74379730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -00042568 67.74382019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00042569 67.74382019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -00042570 67.74384308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00042571 67.74384308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -00042572 67.74388123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00042573 67.74388123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -00042574 67.74390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00042575 67.74390411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -00042576 67.74392700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00042577 67.74393463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -00042578 67.74396515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00042579 67.74396515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -00042580 67.74398804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00042581 67.74399567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -00042582 67.74401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00042583 67.74401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -00042584 67.74404144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00042585 67.74404144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -00042586 67.74407196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00042587 67.74407959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -00042588 67.74410248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00042589 67.74410248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -00042590 67.74412537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00042591 67.74413300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -00042592 67.74416351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00042593 67.74416351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -00042594 67.74418640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00042595 67.74419403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -00042596 67.74421692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00042597 67.74421692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -00042598 67.74423981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00042599 67.74423981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -00042600 67.74427032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00042601 67.74427795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -00042602 67.74430084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00042603 67.74430084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -00042604 67.74432373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00042605 67.74433136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -00042606 67.74436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00042607 67.74436188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -00042608 67.74438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00042609 67.74438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -00042610 67.74440765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00042611 67.74441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -00042612 67.74443817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00042613 67.74443817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -00042614 67.74446869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00042615 67.74447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -00042616 67.74449921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00042617 67.74449921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -00042618 67.74452209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00042619 67.74452972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -00042620 67.74456024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00042621 67.74456024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -00042622 67.74458313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00042623 67.74458313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -00042624 67.74460602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00042625 67.74461365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -00042626 67.74463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00042627 67.74463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -00042628 67.74466705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00042629 67.74467468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -00042630 67.74469757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00042631 67.74469757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -00042632 67.74472046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00042633 67.74472046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -00042634 67.74475098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00042635 67.74475861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -00042636 67.74478149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00042637 67.74478149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -00042638 67.74480438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00042639 67.74481201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -00042640 67.74483490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00042641 67.74483490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -00042642 67.74486542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00042643 67.74486542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -00042644 67.74488831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00042645 67.74489594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -00042646 67.74491882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00042647 67.74491882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -00042648 67.74494934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00042649 67.74495697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -00042650 67.74497986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00042651 67.74497986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -00042652 67.74502563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00042653 67.74502563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -00042654 67.74504852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00042655 67.74505615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -00042656 67.74507904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00042657 67.74507904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -00042658 67.74510956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00042659 67.74511719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -00042660 67.74514008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00042661 67.74514008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -00042662 67.74516296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00042663 67.74517059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -00042664 67.74519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00042665 67.74519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -00042666 67.74522400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00042667 67.74522400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -00042668 67.74524689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00042669 67.74525452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -00042670 67.74527740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00042671 67.74527740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -00042672 67.74530792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00042673 67.74531555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -00042674 67.74533844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00042675 67.74533844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -00042676 67.74536133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00042677 67.74536896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -00042678 67.74539185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00042679 67.74539185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -00042680 67.74542236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00042681 67.74542236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -00042682 67.74544525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00042683 67.74545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -00042684 67.74547577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00042685 67.74547577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -00042686 67.74550629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00042687 67.74551392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -00042688 67.74553680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00042689 67.74553680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -00042690 67.74555969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00042691 67.74555969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -00042692 67.74559021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00042693 67.74559021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -00042694 67.74562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00042695 67.74562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -00042696 67.74564362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00042697 67.74565125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -00042698 67.74567413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00042699 67.74567413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -00042700 67.74570465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00042701 67.74571228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -00042702 67.74573517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00042703 67.74573517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -00042704 67.74575806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00042705 67.74575806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -00042706 67.74578857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00042707 67.74578857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -00042708 67.74581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00042709 67.74581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -00042710 67.74584198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00042711 67.74584961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -00042712 67.74587250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00042713 67.74587250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -00042714 67.74590302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00042715 67.74591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -00042716 67.74593353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00042717 67.74593353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -00042718 67.74595642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00042719 67.74595642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -00042720 67.74598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00042721 67.74598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -00042722 67.74601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00042723 67.74601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -00042724 67.74604034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00042725 67.74604797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -00042726 67.74607086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00042727 67.74607086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -00042728 67.74610138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00042729 67.74610138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -00042730 67.74612427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00042731 67.74613190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -00042732 67.74615479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00042733 67.74615479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -00042734 67.74618530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00042735 67.74618530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -00042736 67.74621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00042737 67.74621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -00042738 67.74623871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00042739 67.74623871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -00042740 67.74626923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00042741 67.74626923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -00042742 67.74629974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00042743 67.74629974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -00042744 67.74632263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00042745 67.74633026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -00042746 67.74635315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00042747 67.74635315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -00042748 67.74638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00042749 67.74638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -00042750 67.74641418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00042751 67.74641418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -00042752 67.74643707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00042753 67.74643707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -00042754 67.74646759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00042755 67.74646759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -00042756 67.74649811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00042757 67.74649811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -00042758 67.74652100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00042759 67.74652863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -00042760 67.74655151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00042761 67.74655151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -00042762 67.74658203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00042763 67.74658203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -00042764 67.74660492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00042765 67.74661255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -00042766 67.74663544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00042767 67.74663544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -00042768 67.74666595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00042769 67.74666595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -00042770 67.74669647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00042771 67.74669647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -00042772 67.74671936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00042773 67.74671936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -00042774 67.74674225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00042775 67.74674988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -00042776 67.74678040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00042777 67.74678040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -00042778 67.74680328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00042779 67.74681091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -00042780 67.74683380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00042781 67.74683380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -00042782 67.74686432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00042783 67.74686432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -00042784 67.74688721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00042785 67.74689484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -00042786 67.74691772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00042787 67.74691772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -00042788 67.74694061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00042789 67.74694824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -00042790 67.74697876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00042791 67.74697876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -00042792 67.74700165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00042793 67.74700165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -00042794 67.74703217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00042795 67.74703217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -00042796 67.74706268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00042797 67.74706268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -00042798 67.74708557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00042799 67.74709320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -00042800 67.74711609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00042801 67.74711609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -00042802 67.74713898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00042803 67.74714661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -00042804 67.74717712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00042805 67.74717712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -00042806 67.74720001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00042807 67.74720001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -00042808 67.74722290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00042809 67.74723053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -00042810 67.74726105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00042811 67.74726105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -00042812 67.74728394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00042813 67.74729156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -00042814 67.74731445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00042815 67.74731445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -00042816 67.74733734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00042817 67.74733734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -00042818 67.74737549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00042819 67.74737549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -00042820 67.74739838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00042821 67.74739838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -00042822 67.74742126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00042823 67.74742889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -00042824 67.74745941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00042825 67.74745941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -00042826 67.74748230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00042827 67.74748993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -00042828 67.74751282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00042829 67.74751282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -00042830 67.74753571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00042831 67.74753571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -00042832 67.74756622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00042833 67.74757385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -00042834 67.74759674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00042835 67.74759674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -00042836 67.74761963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00042837 67.74762726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -00042838 67.74765778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00042839 67.74765778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -00042840 67.74768066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00042841 67.74768829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -00042842 67.74771118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00042843 67.74771118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -00042844 67.74773407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00042845 67.74773407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -00042846 67.74776459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00042847 67.74777222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -00042848 67.74779510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00042849 67.74779510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -00042850 67.74781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00042851 67.74782562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -00042852 67.74785614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00042853 67.74785614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -00042854 67.74787903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00042855 67.74787903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -00042856 67.74790192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00042857 67.74790955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -00042858 67.74793243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00042859 67.74793243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -00042860 67.74796295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00042861 67.74797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -00042862 67.74799347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00042863 67.74799347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -00042864 67.74801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00042865 67.74801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -00042866 67.74804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00042867 67.74805450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -00042868 67.74807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00042869 67.74807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -00042870 67.74810028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00042871 67.74810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -00042872 67.74813080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00042873 67.74813080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -00042874 67.74816132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00042875 67.74816895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -00042876 67.74819183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00042877 67.74819183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -00042878 67.74821472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00042879 67.74822235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -00042880 67.74825287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00042881 67.74825287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -00042882 67.74827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00042883 67.74828339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -00042884 67.74830627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00042885 67.74830627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -00042886 67.74832916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00042887 67.74832916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -00042888 67.74835968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00042889 67.74836731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -00042890 67.74839020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00042891 67.74839020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -00042892 67.74841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00042893 67.74842072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -00042894 67.74845123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00042895 67.74845123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -00042896 67.74847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00042897 67.74848175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -00042898 67.74850464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00042899 67.74850464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -00042900 67.74852753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00042901 67.74852753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -00042902 67.74855804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00042903 67.74856567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -00042904 67.74858856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00042905 67.74858856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -00042906 67.74861145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00042907 67.74861908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -00042908 67.74864960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00042909 67.74864960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -00042910 67.74867249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00042911 67.74867249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -00042912 67.74869537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00042913 67.74870300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -00042914 67.74872589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00042915 67.74872589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -00042916 67.74875641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00042917 67.74876404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -00042918 67.74878693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00042919 67.74878693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -00042920 67.74880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00042921 67.74880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -00042922 67.74884033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00042923 67.74884796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -00042924 67.74887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00042925 67.74887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -00042926 67.74889374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00042927 67.74890137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -00042928 67.74892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00042929 67.74892426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -00042930 67.74895477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00042931 67.74895477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -00042932 67.74897766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00042933 67.74898529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -00042934 67.74900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00042935 67.74900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -00042936 67.74903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00042937 67.74904633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -00042938 67.74906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00042939 67.74906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -00042940 67.74909210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00042941 67.74909210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -00042942 67.74912262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00042943 67.74912262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -00042944 67.74915314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00042945 67.74915314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -00042946 67.74917603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00042947 67.74918365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -00042948 67.74920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00042949 67.74920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -00042950 67.74923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00042951 67.74924469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -00042952 67.74926758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00042953 67.74926758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -00042954 67.74929047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00042955 67.74929047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -00042956 67.74932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00042957 67.74932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -00042958 67.74935150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00042959 67.74935150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -00042960 67.74937439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00042961 67.74938202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -00042962 67.74940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00042963 67.74940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -00042964 67.74943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00042965 67.74944305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -00042966 67.74946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00042967 67.74946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -00042968 67.74948883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00042969 67.74948883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -00042970 67.74951935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00042971 67.74952698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -00042972 67.74954987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00042973 67.74954987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -00042974 67.74957275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00042975 67.74958038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -00042976 67.74960327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00042977 67.74960327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -00042978 67.74963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00042979 67.74963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -00042980 67.74965668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00042981 67.74966431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -00042982 67.74968719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00042983 67.74968719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -00042984 67.74971771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00042985 67.74972534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -00042986 67.74974823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00042987 67.74974823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -00042988 67.74977112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00042989 67.74977112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -00042990 67.74980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00042991 67.74980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -00042992 67.74983215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00042993 67.74983215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -00042994 67.74985504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00042995 67.74986267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -00042996 67.74988556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00042997 67.74988556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -00042998 67.74991608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00042999 67.74991608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -00043000 67.74993896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00043001 67.74994659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -00043002 67.74996948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00043003 67.74996948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -00043004 67.75000000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00043005 67.75000000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -00043006 67.75003052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00043007 67.75003052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -00043008 67.75005341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00043009 67.75005341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -00043010 67.75007629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00043011 67.75008392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -00043012 67.75011444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00043013 67.75011444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -00043014 67.75013733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00043015 67.75014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -00043016 67.75016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00043017 67.75016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -00043018 67.75019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00043019 67.75019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -00043020 67.75022888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00043021 67.75022888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -00043022 67.75025177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00043023 67.75025177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -00043024 67.75027466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00043025 67.75028229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -00043026 67.75031281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00043027 67.75032043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -00043028 67.75034332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00043029 67.75034332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -00043030 67.75036621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00043031 67.75037384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -00043032 67.75039673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00043033 67.75039673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -00043034 67.75042725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00043035 67.75042725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -00043036 67.75045013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00043037 67.75045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -00043038 67.75048065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00043039 67.75048065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -00043040 67.75051117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00043041 67.75051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -00043042 67.75054169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00043043 67.75054169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -00043044 67.75056458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00043045 67.75057220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -00043046 67.75059509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00043047 67.75059509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -00043048 67.75062561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00043049 67.75062561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -00043050 67.75065613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00043051 67.75065613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -00043052 67.75067902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00043053 67.75067902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -00043054 67.75070953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00043055 67.75071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -00043056 67.75074005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00043057 67.75074005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -00043058 67.75076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00043059 67.75077057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -00043060 67.75079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00043061 67.75079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -00043062 67.75082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00043063 67.75083160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -00043064 67.75085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00043065 67.75085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -00043066 67.75087738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00043067 67.75087738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -00043068 67.75091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00043069 67.75091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -00043070 67.75093842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00043071 67.75094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -00043072 67.75096893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00043073 67.75096893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -00043074 67.75099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00043075 67.75099945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -00043076 67.75102997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00043077 67.75102997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -00043078 67.75105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00043079 67.75105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -00043080 67.75107574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00043081 67.75108337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -00043082 67.75111389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00043083 67.75111389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -00043084 67.75113678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00043085 67.75114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -00043086 67.75116730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00043087 67.75116730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -00043088 67.75119019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00043089 67.75119781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -00043090 67.75122833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00043091 67.75122833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -00043092 67.75125122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00043093 67.75125885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -00043094 67.75128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00043095 67.75128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -00043096 67.75131226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00043097 67.75131226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -00043098 67.75134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00043099 67.75134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -00043100 67.75136566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00043101 67.75137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -00043102 67.75139618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00043103 67.75139618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -00043104 67.75142670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00043105 67.75142670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -00043106 67.75144958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00043107 67.75145721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -00043108 67.75148010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00043109 67.75148010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -00043110 67.75151062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00043111 67.75151062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -00043112 67.75154114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00043113 67.75154114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -00043114 67.75156403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00043115 67.75157166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -00043116 67.75159454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00043117 67.75159454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -00043118 67.75162506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00043119 67.75162506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -00043120 67.75165558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00043121 67.75165558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -00043122 67.75167847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00043123 67.75168610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -00043124 67.75170898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00043125 67.75170898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -00043126 67.75173950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00043127 67.75173950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -00043128 67.75176239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00043129 67.75177002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -00043130 67.75179291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00043131 67.75179291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -00043132 67.75182343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00043133 67.75182343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -00043134 67.75185394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00043135 67.75185394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -00043136 67.75187683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00043137 67.75188446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -00043138 67.75190735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00043139 67.75190735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -00043140 67.75193787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00043141 67.75193787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -00043142 67.75196075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00043143 67.75196838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -00043144 67.75199127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00043145 67.75199127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -00043146 67.75202179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00043147 67.75202179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -00043148 67.75205231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00043149 67.75205231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -00043150 67.75207520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00043151 67.75208282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -00043152 67.75210571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00043153 67.75210571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -00043154 67.75213623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00043155 67.75213623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -00043156 67.75216675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00043157 67.75216675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -00043158 67.75218964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00043159 67.75219727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -00043160 67.75222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00043161 67.75222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -00043162 67.75225067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00043163 67.75225067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -00043164 67.75227356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00043165 67.75228119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -00043166 67.75230408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00043167 67.75230408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -00043168 67.75234222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00043169 67.75234222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -00043170 67.75236511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00043171 67.75236511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -00043172 67.75238800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00043173 67.75239563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -00043174 67.75242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00043175 67.75242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -00043176 67.75244904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00043177 67.75245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -00043178 67.75247955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00043179 67.75247955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -00043180 67.75250244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00043181 67.75251007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -00043182 67.75254059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00043183 67.75254059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -00043184 67.75256348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00043185 67.75256348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -00043186 67.75258636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00043187 67.75259399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -00043188 67.75262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00043189 67.75262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -00043190 67.75264740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00043191 67.75265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -00043192 67.75267792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00043193 67.75267792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -00043194 67.75270081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00043195 67.75270844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -00043196 67.75273895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00043197 67.75273895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -00043198 67.75276184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00043199 67.75276184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -00043200 67.75278473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00043201 67.75279236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -00043202 67.75282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00043203 67.75282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -00043204 67.75285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00043205 67.75285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -00043206 67.75287628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00043207 67.75287628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -00043208 67.75289917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00043209 67.75290680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -00043210 67.75293732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00043211 67.75293732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -00043212 67.75296021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00043213 67.75296783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -00043214 67.75299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00043215 67.75299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -00043216 67.75302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00043217 67.75302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -00043218 67.75305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00043219 67.75305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -00043220 67.75307465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00043221 67.75307465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -00043222 67.75309753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00043223 67.75310516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -00043224 67.75313568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00043225 67.75313568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -00043226 67.75315857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00043227 67.75316620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -00043228 67.75318909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00043229 67.75318909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -00043230 67.75321960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00043231 67.75321960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -00043232 67.75325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00043233 67.75325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -00043234 67.75327301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00043235 67.75327301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -00043236 67.75329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00043237 67.75330353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -00043238 67.75333405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00043239 67.75333405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -00043240 67.75335693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00043241 67.75336456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -00043242 67.75338745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00043243 67.75338745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -00043244 67.75341797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00043245 67.75341797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -00043246 67.75344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00043247 67.75344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -00043248 67.75347137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00043249 67.75347137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -00043250 67.75349426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00043251 67.75350189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -00043252 67.75353241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00043253 67.75353241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -00043254 67.75355530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00043255 67.75356293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -00043256 67.75358582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00043257 67.75358582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -00043258 67.75361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00043259 67.75361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -00043260 67.75363922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00043261 67.75364685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -00043262 67.75366974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00043263 67.75366974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -00043264 67.75369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00043265 67.75370026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -00043266 67.75373077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00043267 67.75373077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -00043268 67.75375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00043269 67.75375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -00043270 67.75377655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00043271 67.75378418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -00043272 67.75381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00043273 67.75381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -00043274 67.75383759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00043275 67.75384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -00043276 67.75386810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00043277 67.75386810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -00043278 67.75389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00043279 67.75389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -00043280 67.75392151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00043281 67.75392914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -00043282 67.75395203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00043283 67.75395203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -00043284 67.75397491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00043285 67.75398254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -00043286 67.75401306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00043287 67.75401306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -00043288 67.75403595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00043289 67.75404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -00043290 67.75406647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00043291 67.75406647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -00043292 67.75408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00043293 67.75408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -00043294 67.75411987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00043295 67.75412750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -00043296 67.75415039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00043297 67.75415039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -00043298 67.75417328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00043299 67.75418091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -00043300 67.75421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00043301 67.75421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -00043302 67.75423431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00043303 67.75423431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -00043304 67.75426483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00043305 67.75426483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -00043306 67.75428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00043307 67.75428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -00043308 67.75431824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00043309 67.75432587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -00043310 67.75434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00043311 67.75434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -00043312 67.75437164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00043313 67.75437927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -00043314 67.75440979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00043315 67.75440979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -00043316 67.75443268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00043317 67.75443268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -00043318 67.75445557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00043319 67.75446320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -00043320 67.75448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00043321 67.75448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -00043322 67.75451660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00043323 67.75452423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -00043324 67.75454712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00043325 67.75454712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -00043326 67.75457001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00043327 67.75457001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -00043328 67.75460052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00043329 67.75460815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -00043330 67.75463104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00043331 67.75463104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -00043332 67.75465393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00043333 67.75466156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -00043334 67.75468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00043335 67.75468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -00043336 67.75471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00043337 67.75471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -00043338 67.75473785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00043339 67.75474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -00043340 67.75476837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00043341 67.75476837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -00043342 67.75479889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00043343 67.75480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -00043344 67.75482941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00043345 67.75482941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -00043346 67.75485229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00043347 67.75485992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -00043348 67.75488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00043349 67.75488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -00043350 67.75491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00043351 67.75491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -00043352 67.75493622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00043353 67.75494385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -00043354 67.75496674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00043355 67.75496674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -00043356 67.75499725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00043357 67.75500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -00043358 67.75502777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00043359 67.75502777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -00043360 67.75505066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00043361 67.75505066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -00043362 67.75508118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00043363 67.75508118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -00043364 67.75511169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00043365 67.75511169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -00043366 67.75513458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00043367 67.75514221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -00043368 67.75516510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00043369 67.75516510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -00043370 67.75519562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00043371 67.75520325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -00043372 67.75522614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00043373 67.75522614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -00043374 67.75524902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00043375 67.75524902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -00043376 67.75527954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00043377 67.75527954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -00043378 67.75531006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00043379 67.75531006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -00043380 67.75533295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00043381 67.75534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -00043382 67.75536346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00043383 67.75536346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -00043384 67.75539398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00043385 67.75539398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -00043386 67.75541687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00043387 67.75542450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -00043388 67.75544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00043389 67.75544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -00043390 67.75547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00043391 67.75547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -00043392 67.75550842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00043393 67.75550842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -00043394 67.75553131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00043395 67.75553131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -00043396 67.75556183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00043397 67.75556183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -00043398 67.75559235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00043399 67.75559235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -00043400 67.75561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00043401 67.75562286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -00043402 67.75564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00043403 67.75564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -00043404 67.75567627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00043405 67.75567627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -00043406 67.75569916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00043407 67.75570679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -00043408 67.75572968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00043409 67.75572968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -00043410 67.75576019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00043411 67.75576019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -00043412 67.75579071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00043413 67.75579071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -00043414 67.75581360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00043415 67.75582123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -00043416 67.75584412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00043417 67.75584412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -00043418 67.75587463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00043419 67.75587463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -00043420 67.75589752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00043421 67.75590515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -00043422 67.75592804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00043423 67.75592804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -00043424 67.75595856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00043425 67.75595856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -00043426 67.75598907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00043427 67.75598907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -00043428 67.75601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00043429 67.75601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -00043430 67.75603485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00043431 67.75604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -00043432 67.75607300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00043433 67.75607300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -00043434 67.75609589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00043435 67.75610352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -00043436 67.75612640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00043437 67.75612640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -00043438 67.75615692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00043439 67.75615692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -00043440 67.75618744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00043441 67.75618744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -00043442 67.75621033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00043443 67.75621033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -00043444 67.75623322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00043445 67.75624084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -00043446 67.75627136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00043447 67.75627136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -00043448 67.75629425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00043449 67.75630188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -00043450 67.75632477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00043451 67.75632477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -00043452 67.75635529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00043453 67.75635529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -00043454 67.75637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00043455 67.75638580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -00043456 67.75640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00043457 67.75640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -00043458 67.75643158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00043459 67.75643921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -00043460 67.75646973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00043461 67.75646973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -00043462 67.75649261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00043463 67.75649261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -00043464 67.75651550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00043465 67.75652313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -00043466 67.75655365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00043467 67.75655365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -00043468 67.75657654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00043469 67.75658417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -00043470 67.75660706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00043471 67.75660706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -00043472 67.75662994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00043473 67.75662994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -00043474 67.75666046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00043475 67.75666809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -00043476 67.75669098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00043477 67.75669098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -00043478 67.75671387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00043479 67.75672150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -00043480 67.75675201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00043481 67.75675201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -00043482 67.75677490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00043483 67.75677490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -00043484 67.75679779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00043485 67.75680542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -00043486 67.75682831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00043487 67.75682831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -00043488 67.75685883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00043489 67.75686646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -00043490 67.75688934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00043491 67.75688934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -00043492 67.75691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00043493 67.75691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -00043494 67.75694275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00043495 67.75695038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -00043496 67.75697327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00043497 67.75697327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -00043498 67.75699615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00043499 67.75700378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -00043500 67.75702667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00043501 67.75702667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -00043502 67.75705719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00043503 67.75705719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -00043504 67.75708008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00043505 67.75708771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -00043506 67.75711060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00043507 67.75711060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -00043508 67.75714111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00043509 67.75714874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -00043510 67.75717163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00043511 67.75717163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -00043512 67.75719452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00043513 67.75719452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -00043514 67.75722504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00043515 67.75722504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -00043516 67.75725555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00043517 67.75725555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -00043518 67.75727844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00043519 67.75728607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -00043520 67.75730896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00043521 67.75730896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -00043522 67.75733948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00043523 67.75733948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -00043524 67.75737000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00043525 67.75737000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -00043526 67.75739288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00043527 67.75739288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -00043528 67.75742340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00043529 67.75742340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -00043530 67.75745392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00043531 67.75745392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -00043532 67.75747681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00043533 67.75747681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -00043534 67.75750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00043535 67.75750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -00043536 67.75753784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00043537 67.75753784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -00043538 67.75756073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00043539 67.75756836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -00043540 67.75759125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00043541 67.75759125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -00043542 67.75762177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00043543 67.75762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -00043544 67.75765228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00043545 67.75765228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -00043546 67.75767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00043547 67.75767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -00043548 67.75770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00043549 67.75770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -00043550 67.75773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00043551 67.75773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -00043552 67.75775909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00043553 67.75776672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -00043554 67.75778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00043555 67.75778961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -00043556 67.75782013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00043557 67.75782013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -00043558 67.75785065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00043559 67.75785065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -00043560 67.75787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00043561 67.75787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -00043562 67.75790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00043563 67.75790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -00043564 67.75793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00043565 67.75793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -00043566 67.75795746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00043567 67.75796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -00043568 67.75798798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00043569 67.75798798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -00043570 67.75801849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00043571 67.75801849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -00043572 67.75804138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00043573 67.75804901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -00043574 67.75807190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00043575 67.75807190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -00043576 67.75810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00043577 67.75810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -00043578 67.75813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00043579 67.75813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -00043580 67.75815582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00043581 67.75816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -00062814 67.90443420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00062815 67.90443420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00062816 67.90444183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12640 -00062817 67.90444183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -00062818 67.90446472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00062819 67.90446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00062820 67.90446472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12650 -00062821 67.90446472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -00062822 67.90449524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00062823 67.90449524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00062824 67.90450287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12660 -00062825 67.90450287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -00062826 67.90452576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00062827 67.90452576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00062828 67.90452576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12670 -00062829 67.90452576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -00062830 67.90454865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00062831 67.90454865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00062832 67.90455627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12680 -00062833 67.90455627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -00062834 67.90457916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00062835 67.90457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00062836 67.90457916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12690 -00062837 67.90457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -00062838 67.90460968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00062839 67.90460968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00062840 67.90460968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126a0 -00062841 67.90461731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17480 -00062842 67.90464020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00062843 67.90464020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00062844 67.90464020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126b0 -00062845 67.90464020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17490 -00062846 67.90466309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00062847 67.90466309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00062848 67.90466309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126c0 -00062849 67.90467072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a0 -00062850 67.90470123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00062851 67.90470123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00062852 67.90470123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126d0 -00062853 67.90470123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b0 -00062854 67.90472412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00062855 67.90472412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00062856 67.90472412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x126e0 -00062857 67.90473175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c0 -00068682 67.94660187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00068683 67.94660187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00068684 67.94660187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c0 -00068685 67.94660187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d000 -00068686 67.94662476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00068687 67.94662476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00068688 67.94663239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d0 -00068689 67.94663239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d010 -00068690 67.94665527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00068691 67.94665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00068692 67.94665527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e0 -00068693 67.94665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d020 -00068694 67.94667816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00068695 67.94667816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00068696 67.94668579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f0 -00068697 67.94668579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d030 -00068698 67.94671631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00068699 67.94671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00068700 67.94671631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18200 -00068701 67.94671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d040 -00068702 67.94673920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00068703 67.94673920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00068704 67.94674683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18210 -00068705 67.94674683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d050 -00068706 67.94676971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00068707 67.94676971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00068708 67.94676971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18220 -00068709 67.94676971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d060 -00068710 67.94680023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00068711 67.94680023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00068712 67.94680023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18230 -00068713 67.94680023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d070 -00068714 67.94683075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00068715 67.94683075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00068716 67.94683075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18240 -00068717 67.94683075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d080 -00068718 67.94685364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00068719 67.94685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00068720 67.94686127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18250 -00068721 67.94686127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d090 -00068722 67.94688416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00068723 67.94688416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00068724 67.94688416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18260 -00068725 67.94688416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a0 -00075098 67.99265289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00075099 67.99265289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00075100 67.99265289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e0 -00075101 67.99265289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23460 -00075102 67.99267578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00075103 67.99267578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00075104 67.99268341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f0 -00075105 67.99268341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23470 -00075106 67.99271393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00075107 67.99271393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00075108 67.99271393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e600 -00075109 67.99271393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23480 -00075110 67.99273682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00075111 67.99273682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00075112 67.99274445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e610 -00075113 67.99274445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23490 -00075114 67.99276733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00075115 67.99276733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00075116 67.99276733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e620 -00075117 67.99276733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a0 -00075118 67.99279022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00075119 67.99279022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00075120 67.99279785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e630 -00075121 67.99279785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00075122 67.99282837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00075123 67.99282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00075124 67.99282837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e640 -00075125 67.99282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00075126 67.99285126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00075127 67.99285126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00075128 67.99285889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e650 -00075129 67.99285889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00075130 67.99288177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00075131 67.99288177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00075132 67.99288177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e660 -00075133 67.99288177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00075134 67.99291229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00075135 67.99291229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00075136 67.99291229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e670 -00075137 67.99291229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00075138 67.99294281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00075139 67.99294281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00075140 67.99294281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e680 -00075141 67.99294281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00080142 68.02875519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00080143 68.02875519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00080144 68.02875519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b0 -00080145 68.02876282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28330 -00080146 68.02878571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00080147 68.02878571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00080148 68.02878571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c0 -00080149 68.02878571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28340 -00080150 68.02881622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00080151 68.02881622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00080152 68.02881622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d0 -00080153 68.02881622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28350 -00080154 68.02884674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00080155 68.02884674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00080156 68.02884674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e0 -00080157 68.02884674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28360 -00080158 68.02886963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00080159 68.02886963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00080160 68.02886963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f0 -00080161 68.02886963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28370 -00080162 68.02889252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00080163 68.02890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00080164 68.02890015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -00080165 68.02890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00080166 68.02893066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00080167 68.02893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00080168 68.02893066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -00080169 68.02893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00080170 68.02896118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00080171 68.02896118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00080172 68.02896118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -00080173 68.02896118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00080174 68.02898407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00080175 68.02898407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00080176 68.02898407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -00080177 68.02898407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00080178 68.02901459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00080179 68.02901459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00080180 68.02901459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -00080181 68.02901459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00080182 68.02904510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00080183 68.02904510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00080184 68.02904510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -00080185 68.02904510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00085190 68.06498718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00085191 68.06498718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00085192 68.06499481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d220 -00085193 68.06499481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28380 -00085194 68.06501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00085195 68.06501770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00085196 68.06501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d230 -00085197 68.06502533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28390 -00085198 68.06504059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00085199 68.06504822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00085200 68.06504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d240 -00085201 68.06504822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283a0 -00085202 68.06507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00085203 68.06507874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00085204 68.06507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d250 -00085205 68.06507874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283b0 -00085206 68.06510162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00085207 68.06510162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00085208 68.06510925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d260 -00085209 68.06510925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283c0 -00085210 68.06513214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00085211 68.06513214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00085212 68.06513214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d270 -00085213 68.06513214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283d0 -00085214 68.06515503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00085215 68.06515503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00085216 68.06516266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d280 -00085217 68.06516266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283e0 -00085218 68.06519318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00085219 68.06519318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00085220 68.06519318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d290 -00085221 68.06519318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x283f0 -00085222 68.06521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00085223 68.06521606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00085224 68.06521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a0 -00085225 68.06522369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28400 -00085226 68.06523895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00085227 68.06524658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00085228 68.06524658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b0 -00085229 68.06524658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28410 -00085230 68.06527710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00085231 68.06527710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00085232 68.06527710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c0 -00085233 68.06527710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28420 -00090436 68.10249329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00090437 68.10249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00090438 68.10249329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -00090439 68.10249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00090440 68.10252380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00090441 68.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00090442 68.10252380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -00090443 68.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00090444 68.10254669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00090445 68.10254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00090446 68.10255432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -00090447 68.10255432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00090448 68.10257721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00090449 68.10257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00090450 68.10257721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -00090451 68.10257721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00090452 68.10260773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00090453 68.10260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00090454 68.10260773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -00090455 68.10260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00090456 68.10263824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00090457 68.10263824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00090458 68.10263824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -00090459 68.10263824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32480 -00090460 68.10266113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00090461 68.10266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00090462 68.10266876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -00090463 68.10266876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32490 -00090464 68.10269165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00090465 68.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00090466 68.10269165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -00090467 68.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a0 -00090468 68.10272217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00090469 68.10272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00090470 68.10272980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -00090471 68.10272980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b0 -00090472 68.10275269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00090473 68.10275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00090474 68.10275269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -00090475 68.10275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c0 -00090476 68.10277557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00090477 68.10277557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00090478 68.10278320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -00090479 68.10278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d0 -00095462 68.13851166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00095463 68.13851166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00095464 68.13851166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d0 -00095465 68.13851166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d0 -00095466 68.13853455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00095467 68.13854218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00095468 68.13854218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e0 -00095469 68.13854218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e0 -00095470 68.13856506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00095471 68.13856506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00095472 68.13856506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f0 -00095473 68.13856506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f0 -00095474 68.13859558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00095475 68.13859558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00095476 68.13859558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32400 -00095477 68.13859558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37300 -00095478 68.13862610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00095479 68.13862610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00095480 68.13862610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32410 -00095481 68.13862610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37310 -00095482 68.13864899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00095483 68.13864899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00095484 68.13865662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32420 -00095485 68.13865662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37320 -00095486 68.13867950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00095487 68.13867950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00095488 68.13867950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32430 -00095489 68.13867950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37330 -00095490 68.13871002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00095491 68.13871002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00095492 68.13871002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32440 -00095493 68.13871002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37340 -00095494 68.13874054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00095495 68.13874054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00095496 68.13874054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32450 -00095497 68.13874054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37350 -00095498 68.13876343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00095499 68.13876343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00095500 68.13877106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32460 -00095501 68.13877106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37360 -00095502 68.13879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00095503 68.13879395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00095504 68.13879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32470 -00095505 68.13879395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37370 -00100759 68.17653656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a0 -00100760 68.17653656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00100761 68.17653656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c580 -00100762 68.17655945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00100763 68.17655945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b0 -00100764 68.17655945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00100765 68.17656708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c590 -00100766 68.17658997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00100767 68.17659760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c0 -00100768 68.17659760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00100769 68.17659760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5a0 -00100770 68.17662048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00100771 68.17662048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d0 -00100772 68.17662048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00100773 68.17662811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5b0 -00100774 68.17664337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00100775 68.17665100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376e0 -00100776 68.17665100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00100777 68.17665100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c0 -00100778 68.17668152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00100779 68.17668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00100780 68.17668152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x376f0 -00100781 68.17668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d0 -00100782 68.17670441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00100783 68.17671204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00100784 68.17671204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37700 -00100785 68.17671204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e0 -00100786 68.17673492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00100787 68.17673492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00100788 68.17673492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37710 -00100789 68.17673492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f0 -00100790 68.17675781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00100791 68.17676544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00100792 68.17676544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37720 -00100793 68.17676544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c600 -00100794 68.17679596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00100795 68.17679596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00100796 68.17679596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37730 -00100797 68.17679596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c610 -00100798 68.17681885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00100799 68.17681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00100800 68.17682648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37740 -00100801 68.17682648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c620 -00100802 68.17684937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37750 -00126315 68.45584869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126316 68.45597076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126317 68.49684143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126318 68.49692535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126319 68.49692535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126320 68.49700165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126321 68.49700928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00126322 68.49702454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126323 68.49703979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126324 68.49722290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00126325 68.50016785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126326 68.50022888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126327 68.50030518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126328 68.50036621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126329 68.50057220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126330 68.50066376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126331 68.50076294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126332 68.50086212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126333 68.50104523 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126334 68.50553894 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE8158E60BF0 -00126335 68.50672913 [vmhook-eac [core number = 13]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE8158E60BF0 -00126336 68.51545715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126337 68.51551819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00126338 68.51553345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126339 68.51554108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126340 68.51554871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126341 68.51557159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126342 68.51572418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126343 68.51589966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53210 -00126344 68.51597595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126345 68.51598358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126346 68.51606750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126347 68.51606750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53360 -00126348 68.51608276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126349 68.51610565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126350 68.51644135 [vmhook-eac [core number = 15]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A5DBCC0 -00126351 68.51877594 [vmhook-eac [core number = 15]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A5DBCC0 -00126352 68.53457642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53080 -00126353 68.53497314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53118 -00126354 68.54080963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126355 68.58212280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126356 68.58234406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126357 68.58572388 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126359 68.62862396 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126360 68.62866211 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126361 68.62867737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00126362 68.62868500 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00126363 68.62881470 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126364 68.62881470 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126365 68.62886810 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126366 68.62889862 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126367 68.63607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126368 68.67875671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126369 68.73136139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126370 68.76880646 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126371 68.81106567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126372 68.84264374 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126373 68.89179230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126374 68.93133545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126375 68.98717499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126376 69.03473663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126377 69.07107544 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126378 69.22763824 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126379 69.26657104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126380 69.45732880 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126381 69.49327087 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126382 69.53356934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126383 69.56562805 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126384 69.60489655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126385 69.64158630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126386 69.68342590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00126387 71.13549805 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126388 71.13553619 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126389 71.13555145 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00126390 71.13556671 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00126391 71.13568115 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126392 71.13568115 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126393 71.13573456 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00126394 71.13576508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00126395 72.81327057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126396 72.81352234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126397 72.81533813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00126398 72.81558228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00126399 72.81578827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126400 72.81631470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126401 72.81632996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126402 72.81667328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126403 72.81668854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126404 72.81699371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126405 72.81701660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126406 72.81803894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126407 72.81805420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126408 72.81847382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126409 72.81848907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126410 72.81878662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126411 72.81880951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126412 72.81924438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126413 72.81926727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126414 72.81978607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126415 72.81981659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126416 72.82033539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126417 72.82035828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126418 72.82080841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126419 72.82083130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126420 72.82127380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126421 72.82129669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126422 72.82174683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126423 72.82176971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126424 72.82228851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126425 72.82231140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126426 72.82286835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126427 72.82289124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126428 72.82337189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126429 72.82339478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126430 72.82370758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126431 72.82373047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126432 72.82406616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126433 72.82408142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126434 72.82460785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126435 72.82463074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126436 72.82512665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126437 72.82514954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126438 72.82579041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126439 72.82582092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126440 72.82665253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126441 72.82667542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126442 72.82714844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126443 72.82717133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126444 72.82770538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126445 72.82772827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126446 72.82829285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126447 72.82832336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126448 72.82871246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126449 72.82873535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126450 72.82923126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126451 72.82925415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126452 72.82977295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126453 72.82979584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126454 72.83062744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126455 72.83065796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126456 72.83115387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126457 72.83118439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126458 72.83221436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126459 72.83222961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126460 72.83256531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126461 72.83258820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126462 72.83310699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126463 72.83312988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126464 72.83346558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126465 72.83348846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126466 72.83404541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126467 72.83409882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126468 72.83444977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126469 72.83448029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126470 72.83483887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126471 72.83486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126472 72.83535004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126473 72.83537292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126474 72.83583069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126475 72.83585358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126476 72.83638763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126477 72.83641815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126478 72.83697510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126479 72.83699036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126480 72.83744049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126481 72.83745575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126482 72.83794403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126483 72.83797455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126484 72.83837128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126485 72.83840179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126486 72.83876801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126487 72.83879852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126488 72.83931732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126489 72.83933258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126490 72.83974457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126491 72.83976746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126492 72.84027100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126493 72.84028625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126494 72.84081268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126495 72.84083557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126496 72.84120941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126497 72.84123230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126498 72.84178162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126499 72.84180450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126500 72.84220886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126501 72.84223175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126502 72.84268951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126503 72.84271240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126504 72.84308624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126505 72.84310150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126506 72.84355927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126507 72.84358215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126508 72.84406281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126509 72.84409332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126510 72.84449005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126511 72.84452057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126512 72.84503937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126513 72.84506226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126514 72.84554291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126515 72.84556580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126516 72.84601593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126517 72.84603882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126518 72.84648132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126519 72.84650421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126520 72.84699249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126521 72.84700775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126522 72.84753418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126523 72.84754944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126524 72.84790802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126525 72.84793854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126526 72.84841156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126527 72.84843445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126528 72.84880829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126529 72.84883118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126530 72.84941101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126531 72.84943390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126532 72.84995270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126533 72.84997559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126534 72.85038757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126535 72.85041046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126536 72.85096741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126537 72.85099030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126538 72.85132599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126539 72.85134888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126540 72.85173798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126541 72.85176086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126542 72.85215759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126543 72.85218048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126544 72.85266876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126545 72.85268402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126546 72.85320282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126547 72.85322571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126548 72.85390472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126549 72.85393524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126550 72.85457611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126551 72.85459900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126552 72.85501099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126553 72.85503387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126554 72.85543060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126555 72.85545349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126556 72.85588837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126557 72.85591888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126558 72.85624695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126559 72.85627747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126560 72.85664368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126561 72.85666656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126562 72.85714722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126563 72.85717010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126564 72.85757446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126565 72.85759735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126566 72.85804749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126567 72.85807037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126568 72.85840607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126569 72.85842896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126570 72.85894775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126571 72.85897064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126572 72.85938263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126573 72.85939789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126574 72.85988617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126575 72.85990143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126576 72.86038971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126577 72.86041260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126578 72.86074829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126579 72.86077118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126580 72.86122131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126581 72.86124420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126582 72.86164856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126583 72.86167908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126584 72.86204529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126585 72.86207581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126586 72.86259460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126587 72.86261749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126588 72.86317444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126589 72.86319733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126590 72.86371613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126591 72.86374664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126592 72.86441040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126593 72.86443329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126594 72.86479950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126595 72.86482239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126596 72.86516571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126597 72.86518097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126598 72.86566925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126599 72.86569214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126600 72.86636353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126601 72.86637878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126602 72.86683655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126603 72.86685181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126604 72.86753082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126605 72.86756134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126606 72.86796570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126607 72.86799622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126608 72.86840057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126609 72.86842346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126610 72.86895752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126611 72.86898804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126612 72.86953735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126613 72.86956024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126614 72.87007904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126615 72.87010193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126616 72.87065887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126617 72.87068176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126618 72.87116241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126619 72.87118530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126620 72.87155914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126621 72.87158203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126622 72.87187958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126623 72.87190247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126624 72.87238312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126625 72.87240601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126626 72.87294006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126627 72.87296295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126628 72.87345123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126629 72.87347412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126630 72.87391663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126631 72.87393951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126632 72.87442780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126633 72.87444305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126634 72.87493134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126635 72.87494659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126636 72.87543488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126637 72.87545776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126638 72.87599945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126639 72.87602234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126640 72.87652588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126641 72.87655640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126642 72.87712097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126643 72.87713623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126644 72.87765503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126645 72.87768555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126646 72.87819672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126647 72.87821198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126648 72.87896729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126649 72.87899780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126650 72.87944031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126651 72.87946320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126652 72.87991333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126653 72.87992859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126654 72.88089752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126655 72.88092041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126656 72.88136292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126657 72.88138580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126658 72.88179779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126659 72.88182068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126660 72.88235474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126661 72.88237762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126662 72.88291931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126663 72.88294220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126664 72.88346863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126665 72.88349152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126666 72.88397217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126667 72.88400269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126668 72.88444519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126669 72.88446808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126670 72.88504028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126671 72.88507080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126672 72.88564301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126673 72.88567352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126674 72.88610840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126675 72.88613892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126676 72.88665771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126677 72.88668060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126678 72.88712311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126679 72.88714600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126680 72.88766479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126681 72.88768768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126682 72.88822174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126683 72.88825226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126684 72.88869476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126685 72.88871765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126686 72.88931274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126687 72.88932800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126688 72.89003754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126689 72.89006042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126690 72.89064789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126691 72.89067841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126692 72.89134216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126693 72.89136505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126694 72.89195251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126695 72.89198303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126696 72.89246368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126697 72.89248657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126698 72.89296722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126699 72.89299011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126700 72.89332581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126701 72.89334869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126702 72.89375305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126703 72.89377594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126704 72.89459229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126705 72.89461517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126706 72.89508820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126707 72.89511108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126708 72.89570618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126709 72.89572906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126710 72.89620209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126711 72.89622498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126712 72.89672089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126713 72.89675140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126714 72.89735413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126715 72.89737701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126716 72.89778900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126717 72.89781189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126718 72.89825439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126719 72.89827728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126720 72.89871979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126721 72.89874268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126722 72.89919281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126723 72.89921570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126724 72.89965820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126725 72.89968109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126726 72.90019989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126727 72.90022278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126728 72.90074158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126729 72.90076447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126730 72.90139771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126731 72.90142059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126732 72.90186310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126733 72.90188599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126734 72.90251160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126735 72.90254211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126736 72.90298462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126737 72.90300751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126738 72.90347290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126739 72.90350342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126740 72.90389252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126741 72.90391541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126742 72.90432739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126743 72.90435028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126744 72.90479279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126745 72.90481567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126746 72.90522003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126747 72.90525055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126748 72.90565491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126749 72.90567780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126750 72.90612793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126751 72.90615082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126752 72.90659332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126753 72.90661621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126754 72.90695953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126755 72.90697479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126756 72.90749359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126757 72.90751648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126758 72.90811157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126759 72.90813446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126760 72.90850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126761 72.90853119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126762 72.90901184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126763 72.90903473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126764 72.90953827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126765 72.90955353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126766 72.91008759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126767 72.91011047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126768 72.91064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126769 72.91067505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126770 72.91115570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126771 72.91117859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126772 72.91169739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126773 72.91172791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126774 72.91226196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126775 72.91228485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126776 72.91276550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126777 72.91278839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126778 72.91323853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126779 72.91326141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126780 72.91375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126781 72.91378784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126782 72.91432190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126783 72.91435242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126784 72.91472626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126785 72.91474915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126786 72.91535187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126787 72.91538239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126788 72.91609955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c6a8 -00126789 72.91625214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126790 72.91677094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126791 72.91679382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126792 72.91712952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126793 72.91715240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126794 72.91748810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126795 72.91751862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126796 72.91865540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126797 72.91870880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126798 72.91911316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126799 72.91914368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126800 72.91943359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126801 72.91946411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126802 72.91989899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126803 72.91992188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126804 72.92044067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126805 72.92046356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126806 72.92095947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126807 72.92098236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126808 72.92139435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126809 72.92141724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126810 72.92185974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126811 72.92188263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126812 72.92237091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126813 72.92238617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126814 72.92290497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126815 72.92292786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126816 72.92348480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126817 72.92351532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126818 72.92399597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126819 72.92401886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126820 72.92435455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126821 72.92436981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126822 72.92471313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126823 72.92474365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126824 72.92531586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126825 72.92534637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126826 72.92583466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126827 72.92586517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126828 72.92650604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126829 72.92652893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126830 72.92736053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126831 72.92737579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126832 72.92782593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126833 72.92784882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126834 72.92836761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126835 72.92839050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126836 72.92896271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126837 72.92899323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126838 72.92938232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126839 72.92940521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126840 72.92990112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126841 72.92992401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126842 72.93044281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126843 72.93047333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126844 72.93133545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126845 72.93135834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126846 72.93190002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126847 72.93192291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126848 72.93296051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126849 72.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126850 72.93331909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126851 72.93334198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126852 72.93386078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126853 72.93389130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126854 72.93421936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126855 72.93424988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126856 72.93476105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126857 72.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126858 72.93511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126859 72.93514252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126860 72.93549347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126861 72.93551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126862 72.93600464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126863 72.93603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126864 72.93647003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126865 72.93650055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126866 72.93703461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126867 72.93705750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126868 72.93761444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126869 72.93763733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126870 72.93808746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126871 72.93811798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126872 72.93864441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126873 72.93867493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126874 72.93909454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126875 72.93912506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126876 72.93949127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126877 72.93952179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126878 72.94004059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126879 72.94006348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126880 72.94049072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126881 72.94051361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126882 72.94100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126883 72.94104004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126884 72.94155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126885 72.94158173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126886 72.94191742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126887 72.94194031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126888 72.94248199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126889 72.94251251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126890 72.94287872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126891 72.94290924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126892 72.94335938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126893 72.94338226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126894 72.94375610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126895 72.94377899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126896 72.94428253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126897 72.94429779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126898 72.94477844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126899 72.94480896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126900 72.94524384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126901 72.94526672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126902 72.94584656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126903 72.94586182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126904 72.94635010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126905 72.94637299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126906 72.94681549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126907 72.94683838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126908 72.94728088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126909 72.94731140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126910 72.94779205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126911 72.94781494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126912 72.94833374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126913 72.94834900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126914 72.94868469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126915 72.94870758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126916 72.94915771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126917 72.94918060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126918 72.94956207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126919 72.94958496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126920 72.95016479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126921 72.95018768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126922 72.95070648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126923 72.95072937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126924 72.95113373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126925 72.95116425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126926 72.95171356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126927 72.95173645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126928 72.95211029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126929 72.95213318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126930 72.95259094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126931 72.95261383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126932 72.95303345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126933 72.95306396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126934 72.95354462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126935 72.95356750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126936 72.95410156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126937 72.95411682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126938 72.95479584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126939 72.95481873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126940 72.95548248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126941 72.95550537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126942 72.95590973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126943 72.95593262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126944 72.95632935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126945 72.95635223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126946 72.95678711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126947 72.95681000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126948 72.95714569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126949 72.95716858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126950 72.95753479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126951 72.95756531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126952 72.95803833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126953 72.95806885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126954 72.95847321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126955 72.95849609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126956 72.95895386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126957 72.95899200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126958 72.95936584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126959 72.95938873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126960 72.95996094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126961 72.95998383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126962 72.96041870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126963 72.96044159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126964 72.96092224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126965 72.96094513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126966 72.96143341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126967 72.96145630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126968 72.96179199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126969 72.96181488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126970 72.96226501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126971 72.96228790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126972 72.96269226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126973 72.96272278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126974 72.96306610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126975 72.96308136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126976 72.96360016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126977 72.96363068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126978 72.96418762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126979 72.96421051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126980 72.96472931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126981 72.96475220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126982 72.96542358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126983 72.96543884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126984 72.96581268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126985 72.96583557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126986 72.96620941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126987 72.96623230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126988 72.96674347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126989 72.96677399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126990 72.96745300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126991 72.96747589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126992 72.96792603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126993 72.96794891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126994 72.96862793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126995 72.96865082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126996 72.96905518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126997 72.96907806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00126998 72.96949005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00126999 72.96951294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127000 72.97003174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127001 72.97005463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127002 72.97058105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127003 72.97059631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127004 72.97113037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127005 72.97115326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127006 72.97170258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127007 72.97171783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127008 72.97220612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127009 72.97222137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127010 72.97259521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127011 72.97261810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127012 72.97294617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127013 72.97296906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127014 72.97348785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127015 72.97351837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127016 72.97405243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127017 72.97408295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127018 72.97457123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127019 72.97460175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127020 72.97504425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127021 72.97506714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127022 72.97555542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127023 72.97557068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127024 72.97605896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127025 72.97608185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127026 72.97656250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127027 72.97658539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127028 72.97710419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127029 72.97712708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127030 72.97763824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127031 72.97766113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127032 72.97820282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127033 72.97821808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127034 72.97873688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127035 72.97876740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127036 72.97927856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127037 72.97929382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127038 72.98015594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127039 72.98017120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127040 72.98066711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127041 72.98069000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127042 72.98113251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127043 72.98115540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127044 72.98213196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127045 72.98215485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127046 72.98260498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127047 72.98262024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127048 72.98303223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127049 72.98306274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127050 72.98359680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127051 72.98361969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127052 72.98413849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127053 72.98416138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127054 72.98464966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127055 72.98468018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127056 72.98516846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127057 72.98518372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127058 72.98563385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127059 72.98565674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127060 72.98623657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127061 72.98625946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127062 72.98686981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127063 72.98689270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127064 72.98736572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127065 72.98739624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127066 72.98792267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127067 72.98794556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127068 72.98838806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127069 72.98841858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127070 72.98893738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127071 72.98896790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127072 72.98950195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127073 72.98953247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127074 72.98997498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127075 72.98999786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127076 72.99059296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127077 72.99061584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127078 72.99128723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127079 72.99131012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127080 72.99190521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127081 72.99192810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127082 72.99260712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127083 72.99263000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127084 72.99322510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127085 72.99324799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127086 72.99375916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127087 72.99378204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127088 72.99430084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127089 72.99432373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127090 72.99466705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127091 72.99469757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127092 72.99510193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127093 72.99512482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127094 72.99598694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127095 72.99600983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127096 72.99645233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127097 72.99648285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127098 72.99707031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127099 72.99709320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127100 72.99756622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127101 72.99758911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127102 72.99807739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127103 72.99809265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127104 72.99867249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127105 72.99868774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127106 72.99914551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127107 72.99916840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127108 72.99961090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127109 72.99963379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127110 73.00009918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127111 73.00012207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127112 73.00057220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127113 73.00059509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127114 73.00111389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127115 73.00114441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127116 73.00168610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127117 73.00171661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127118 73.00231171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127119 73.00233459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127120 73.00296783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127121 73.00299835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127122 73.00343323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127123 73.00346375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127124 73.00408936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127125 73.00411224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127126 73.00455475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127127 73.00458527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127128 73.00502777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127129 73.00505066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127130 73.00543976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127131 73.00546265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127132 73.00587463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127133 73.00589752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127134 73.00637817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127135 73.00640106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127136 73.00680542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127137 73.00682831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127138 73.00724030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127139 73.00725555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127140 73.00773621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127141 73.00776672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127142 73.00826263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127143 73.00829315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127144 73.00865173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127145 73.00867462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127146 73.00919342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127147 73.00922394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127148 73.00981903 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127149 73.00983429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127150 73.01020813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127151 73.01023102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127152 73.01071167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127153 73.01074219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127154 73.01126862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127155 73.01129913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127156 73.01181793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127157 73.01184845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127158 73.01232910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127159 73.01235199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127160 73.01283264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127161 73.01285553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127162 73.01337433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127163 73.01340485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127164 73.01396179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127165 73.01398468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127166 73.01447296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127167 73.01449585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127168 73.01499176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127169 73.01501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127170 73.01554871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127171 73.01557922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127172 73.01612091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127173 73.01614380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127174 73.01651764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127175 73.01654053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127176 73.01717377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127177 73.01719666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127178 73.01792145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cde8 -00127179 73.01798248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127180 73.01815796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127181 73.01988983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127182 73.01992035 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127183 73.02035522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127184 73.02120209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127185 73.02123260 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127186 73.02134705 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127187 73.02222443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127188 73.02224731 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127189 73.02236938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127190 73.02320099 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127191 73.02322388 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127192 73.02334595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127193 73.02420807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127194 73.02422333 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127195 73.02435303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127196 73.02519989 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127197 73.02522278 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127198 73.02534485 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127199 73.02622223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127200 73.02624512 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127201 73.02636719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127202 73.02720642 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127203 73.02722931 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127204 73.02735138 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127205 73.02825928 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127206 73.02828217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127207 73.02841187 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127208 73.02924347 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127209 73.02926636 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127210 73.02938843 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127211 73.03028107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127212 73.03031158 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127213 73.03043365 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127214 73.03128052 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127215 73.03129578 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127216 73.03142548 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127217 73.03226471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127218 73.03228760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127219 73.03240967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127220 73.03322601 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127221 73.03324890 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127222 73.03337097 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127223 73.03422546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127224 73.03425598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127225 73.03437805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127226 73.03519440 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127227 73.03521729 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127228 73.03533936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127229 73.03619385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127230 73.03621674 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127231 73.03633881 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127232 73.03715515 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127233 73.03717804 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127234 73.03730011 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127235 73.03814697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127236 73.03817749 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127237 73.03829956 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127238 73.03911591 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127239 73.03913879 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127240 73.03926086 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127241 73.04010010 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127242 73.04013062 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127243 73.04025269 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127244 73.04106903 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127245 73.04109192 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127246 73.04121399 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127247 73.04206848 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127248 73.04209137 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127249 73.04221344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127250 73.04303741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127251 73.04306030 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127252 73.04318237 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127253 73.04400635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127254 73.04402924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127255 73.04415131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127256 73.04501343 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127257 73.04503632 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127258 73.04515839 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127259 73.04601288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127260 73.04603577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127261 73.04616547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127262 73.04700470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127263 73.04703522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127264 73.04715729 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127265 73.04798889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127266 73.04801178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127267 73.04813385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127268 73.04891205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127269 73.04895020 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127270 73.04907227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127271 73.04985046 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127272 73.04986572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127273 73.05004883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127274 73.05082703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127275 73.05085754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127276 73.05101776 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127277 73.05182648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127278 73.05184937 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127279 73.05201721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127280 73.05280304 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127281 73.05283356 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127282 73.05296326 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127283 73.05374908 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127284 73.05377197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127285 73.05389404 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127286 73.05473328 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127287 73.05475616 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127288 73.05488586 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127289 73.05570221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127290 73.05573273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127291 73.05585480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127292 73.05668640 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127293 73.05670929 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127294 73.05683136 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127295 73.05761719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127296 73.05764771 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127297 73.05776978 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127298 73.05861664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127299 73.05863953 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127300 73.05883789 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127301 73.05965424 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127302 73.05967712 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127303 73.05979919 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127304 73.06063080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127305 73.06066132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127306 73.06078339 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127307 73.06163025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127308 73.06166077 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127309 73.06178284 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127310 73.06259918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127311 73.06262207 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127312 73.06274414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127313 73.06359863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127314 73.06362152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127315 73.06375122 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127316 73.06455994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127317 73.06459045 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127318 73.06471252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127319 73.06555176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127320 73.06558228 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127321 73.06571198 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127322 73.06649780 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127323 73.06652069 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127324 73.06664276 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127325 73.06752014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127326 73.06753540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127327 73.06766510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127328 73.06845093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127329 73.06848145 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127330 73.06860352 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127331 73.06939697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127332 73.06941986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127333 73.06954193 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127334 73.07035828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127335 73.07038116 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127336 73.07050323 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127337 73.07133484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127338 73.07135773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127339 73.07148743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127340 73.07226563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127341 73.07229614 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127342 73.07241821 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127343 73.07322693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127344 73.07325745 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127345 73.07337952 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127346 73.07419586 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127347 73.07421875 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127348 73.07434082 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127349 73.07518005 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127350 73.07520294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127351 73.07533264 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127352 73.07614899 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127353 73.07617188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127354 73.07630157 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127355 73.07717133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127356 73.07719421 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127357 73.07731628 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127358 73.07814026 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127359 73.07816315 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127360 73.07828522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127361 73.07913971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127362 73.07916260 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127363 73.07928467 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127364 73.08010101 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127365 73.08013153 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127366 73.08024597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127367 73.08110809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127368 73.08113098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127369 73.08125305 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127370 73.08207703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127371 73.08209991 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127372 73.08222198 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127373 73.08302307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127374 73.08304596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127375 73.08316803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127376 73.08395386 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127377 73.08398438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127378 73.08409882 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127379 73.08488464 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127380 73.08494568 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127381 73.08506775 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127382 73.08584595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127383 73.08587646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127384 73.08600616 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127385 73.08679199 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127386 73.08680725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127387 73.08697510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127388 73.08776093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127389 73.08778381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127390 73.08791351 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127391 73.08869171 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127392 73.08871460 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127393 73.08883667 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127394 73.08966064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127395 73.08969116 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127396 73.08981323 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127397 73.09061432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127398 73.09064484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127399 73.09076691 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127400 73.09159851 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127401 73.09162140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127402 73.09175873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127403 73.09253693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127404 73.09255981 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127405 73.09268951 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127406 73.09348297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127407 73.09351349 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127408 73.09363556 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127409 73.09441376 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127410 73.09443665 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127411 73.09455872 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127412 73.09537506 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127413 73.09539795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127414 73.09552765 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127415 73.09630585 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127416 73.09632874 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127417 73.09645081 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127418 73.09727478 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127419 73.09729767 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127420 73.09741974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127421 73.09820557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127422 73.09822845 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127423 73.09835815 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127424 73.09916687 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127425 73.09919739 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127426 73.09931183 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127427 73.10009766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127428 73.10012054 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127429 73.10024261 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127430 73.10102081 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127431 73.10105133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127432 73.10117340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127433 73.10195923 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127434 73.10198212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127435 73.10210419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127436 73.10288239 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127437 73.10294342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127438 73.10306549 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127439 73.10385132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127440 73.10387421 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127441 73.10399628 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127442 73.10478973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127443 73.10481262 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127444 73.10503387 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127445 73.10585785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127446 73.10588074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127447 73.10601044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127448 73.10678101 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127449 73.10681152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127450 73.10695648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127451 73.10773468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127452 73.10776520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127453 73.10789490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127454 73.10866547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127455 73.10868835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127456 73.10881042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127457 73.10964203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127458 73.10966492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127459 73.10979462 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127460 73.11059570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127461 73.11061859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127462 73.11074066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127463 73.11151886 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127464 73.11154938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127465 73.11166382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127466 73.11248779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127467 73.11251068 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127468 73.11264038 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127469 73.11341858 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127470 73.11344910 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127471 73.11357117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127472 73.11436462 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127473 73.11439514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127474 73.11452484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127475 73.11529541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127476 73.11531830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127477 73.11544037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127478 73.11626434 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d8 -00127479 73.11734009 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127480 73.11820221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127481 73.12007141 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127482 73.12548065 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127483 73.12739563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127484 73.13497925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127485 73.13672638 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127486 73.13688660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127487 73.13879395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127488 73.14799500 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127489 73.15063477 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127490 73.15091705 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127491 73.15352631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127492 73.15543365 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127493 73.15705109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127494 73.16128540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127495 73.16273499 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00127496 73.16364288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127497 73.16585541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00127498 73.16623688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00127499 73.16623688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00127500 73.16626740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00127501 73.16626740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00127502 73.16629028 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00127503 73.16629791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00127504 73.16632080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00127505 73.16632080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00127506 73.16635132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00127507 73.16635132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00127508 73.16637421 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00127509 73.16638184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00127510 73.16640472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00127511 73.16640472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00127512 73.16643524 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00127513 73.16643524 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00127514 73.16645813 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00127515 73.16646576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00127516 73.16648865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00127517 73.16648865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00127518 73.16651154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00127519 73.16651154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00127520 73.16654205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00127521 73.16654968 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00127522 73.16657257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00127523 73.16657257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00127524 73.16659546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00127525 73.16659546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00127526 73.16662598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00127527 73.16663361 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00127528 73.16665649 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00127529 73.16665649 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00127530 73.16667938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00127531 73.16668701 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00127532 73.16670990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00127533 73.16670990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00127534 73.16674042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00127535 73.16674042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00127536 73.16676331 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00127537 73.16677094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00127538 73.16679382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00127539 73.16679382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00127540 73.16682434 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00127541 73.16682434 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00127542 73.16684723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00127543 73.16685486 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00127544 73.16687775 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00127545 73.16687775 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00127546 73.16690826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00127547 73.16691589 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00127548 73.16693878 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00127549 73.16694641 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00127550 73.16696930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00127551 73.16696930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00127552 73.16699219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00127553 73.16699982 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00127554 73.16703033 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00127555 73.16703033 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00127556 73.16705322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00127557 73.16705322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00127558 73.16707611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00127559 73.16708374 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00127560 73.16710663 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00127561 73.16710663 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00127562 73.16713715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00127563 73.16713715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00127564 73.16716003 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00127565 73.16716766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00127566 73.16719055 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00127567 73.16719055 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00127568 73.16722107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00127569 73.16722107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00127570 73.16724396 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00127571 73.16725159 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00127572 73.16727448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00127573 73.16727448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00127574 73.16730499 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00127575 73.16730499 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00127576 73.16732788 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00127577 73.16733551 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00127578 73.16735840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00127579 73.16735840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00127580 73.16738892 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00127581 73.16738892 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00127582 73.16741943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00127583 73.16741943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00127584 73.16744232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00127585 73.16744232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00127586 73.16746521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00127587 73.16747284 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00127588 73.16750336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00127589 73.16750336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00127590 73.16752625 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00127591 73.16752625 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00127592 73.16754913 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00127593 73.16755676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00127594 73.16758728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00127595 73.16758728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00127596 73.16761017 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00127597 73.16761017 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00127598 73.16763306 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00127599 73.16764069 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00127600 73.16766357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00127601 73.16766357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00127602 73.16769409 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00127603 73.16769409 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00127604 73.16771698 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00127605 73.16772461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00127606 73.16774750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00127607 73.16774750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00127608 73.16777802 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00127609 73.16777802 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00127610 73.16780090 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00127611 73.16780853 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00127612 73.16783142 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00127613 73.16783142 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00127614 73.16786194 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00127615 73.16786194 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00127616 73.16788483 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00127617 73.16790771 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00127618 73.16793823 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00127619 73.16793823 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00127620 73.16796112 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00127621 73.16796112 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00127622 73.16800690 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00127623 73.16801453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00127624 73.16803741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00127625 73.16803741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00127626 73.16806030 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00127627 73.16806030 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00127628 73.16809082 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00127629 73.16809845 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00127630 73.16812134 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00127631 73.16812134 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00127632 73.16814423 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00127633 73.16814423 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00127634 73.16817474 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00127635 73.16818237 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00127636 73.16820526 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00127637 73.16820526 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00127638 73.16822815 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00127639 73.16822815 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00127640 73.16825867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00127641 73.16825867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00127642 73.16828918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00127643 73.16828918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00127644 73.16831207 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00127645 73.16831970 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00127646 73.16834259 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00127647 73.16834259 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00127648 73.16837311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00127649 73.16837311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00127650 73.16839600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00127651 73.16840363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00127652 73.16842651 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00127653 73.16842651 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00127654 73.16845703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00127655 73.16845703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00127656 73.16847992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00127657 73.16848755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00127658 73.16851044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00127659 73.16851044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00127660 73.16854095 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00127661 73.16854095 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00127662 73.16856384 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00127663 73.16857147 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00127664 73.16859436 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00127665 73.16859436 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00127666 73.16861725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00127667 73.16861725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00127668 73.16864777 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00127669 73.16865540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00127670 73.16867828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00127671 73.16867828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00127672 73.16870117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00127673 73.16870117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00127674 73.16873169 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00127675 73.16873932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00127676 73.16876221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00127677 73.16876221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00127678 73.16878510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00127679 73.16879272 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00127680 73.16881561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00127681 73.16881561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00127682 73.16884613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00127683 73.16884613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00127684 73.16886902 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00127685 73.16887665 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00127686 73.16889954 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00127687 73.16890717 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00127688 73.16893005 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00127689 73.16893768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00127690 73.16896057 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00127691 73.16896057 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00127692 73.16898346 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00127693 73.16899109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00127694 73.16901398 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00127695 73.16901398 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00127696 73.16904449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00127697 73.16904449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00127698 73.16906738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00127699 73.16907501 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00127700 73.16909790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00127701 73.16909790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00127702 73.16912842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00127703 73.16912842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00127704 73.16915131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00127705 73.16915894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00127706 73.16918182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00127707 73.16918182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00127708 73.16921234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00127709 73.16921234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00127710 73.16924286 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00127711 73.16924286 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00127712 73.16926575 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00127713 73.16926575 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00127714 73.16929626 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00127715 73.16929626 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00127716 73.16932678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00127717 73.16932678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00127718 73.16934967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00127719 73.16934967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00127720 73.16937256 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00127721 73.16938019 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00127722 73.16941071 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00127723 73.16941071 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00127724 73.16943359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00127725 73.16943359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00127726 73.16945648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00127727 73.16946411 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00127728 73.16949463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00127729 73.16949463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00127730 73.16951752 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00127731 73.16951752 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00127732 73.16954041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00127733 73.16954803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00127734 73.16957092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00127735 73.16957092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00127736 73.16960144 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00127737 73.16960907 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00127738 73.16963196 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00127739 73.16963196 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00127740 73.16965485 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00127741 73.16965485 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00127742 73.16968536 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00127743 73.16969299 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00127744 73.16971588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00127745 73.16971588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00127746 73.16973877 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00127747 73.16973877 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00127748 73.16976929 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00127749 73.16976929 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00127750 73.16979980 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00127751 73.16979980 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00127752 73.16982269 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00127753 73.16982269 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00127754 73.16985321 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00127755 73.16985321 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00127756 73.16988373 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00127757 73.16988373 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00127758 73.16995239 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00127759 73.16996002 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00127760 73.16998291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00127761 73.16998291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00127762 73.17000580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00127763 73.17001343 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00127764 73.17004395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00127765 73.17004395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00127766 73.17006683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00127767 73.17006683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00127768 73.17008972 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00127769 73.17009735 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00127770 73.17012787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00127771 73.17012787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00127772 73.17015076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00127773 73.17015076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00127774 73.17017365 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00127775 73.17018127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00127776 73.17021179 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00127777 73.17021179 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00127778 73.17023468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00127779 73.17023468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00127780 73.17025757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00127781 73.17026520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00127782 73.17028809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00127783 73.17028809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00127784 73.17031860 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00127785 73.17032623 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00127786 73.17034149 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00127787 73.17034912 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00127788 73.17037201 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00127789 73.17037201 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00127790 73.17040253 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00127791 73.17041016 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00127792 73.17043304 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00127793 73.17043304 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00127794 73.17045593 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00127795 73.17045593 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00127796 73.17048645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00127797 73.17048645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00127798 73.17051697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00127799 73.17051697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00127800 73.17053986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00127801 73.17053986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00127802 73.17056274 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00127803 73.17057037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00127804 73.17060089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00127805 73.17060089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00127806 73.17062378 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00127807 73.17062378 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00127808 73.17064667 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00127809 73.17065430 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00127810 73.17068481 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00127811 73.17068481 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00127812 73.17070770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00127813 73.17071533 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00127814 73.17073822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00127815 73.17073822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00127816 73.17076111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00127817 73.17076111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00127818 73.17079163 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00127819 73.17079926 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00127820 73.17082214 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00127821 73.17082214 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00127822 73.17084503 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00127823 73.17084503 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00127824 73.17087555 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00127825 73.17088318 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00127826 73.17091370 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00127827 73.17091370 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00127828 73.17093658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00127829 73.17093658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00127830 73.17095947 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00127831 73.17096710 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00127832 73.17099762 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00127833 73.17099762 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00127834 73.17102051 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00127835 73.17102051 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00127836 73.17104340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00127837 73.17105103 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00127838 73.17108154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00127839 73.17108154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00127840 73.17110443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00127841 73.17111206 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00127842 73.17113495 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00127843 73.17113495 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00127844 73.17115784 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00127845 73.17115784 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00127846 73.17118835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00127847 73.17119598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00127848 73.17121887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00127849 73.17121887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00127850 73.17124176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00127851 73.17124176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00127852 73.17127228 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00127853 73.17127991 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00127854 73.17130280 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00127855 73.17130280 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00127856 73.17132568 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00127857 73.17132568 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00127858 73.17135620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00127859 73.17135620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00127860 73.17138672 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00127861 73.17138672 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00127862 73.17140961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00127863 73.17140961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00127864 73.17144012 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00127865 73.17144012 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00127866 73.17147064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00127867 73.17147064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00127868 73.17149353 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00127869 73.17150116 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00127870 73.17151642 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00127871 73.17152405 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00127872 73.17155457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00127873 73.17155457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00127874 73.17157745 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00127875 73.17158508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00127876 73.17160797 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00127877 73.17160797 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00127878 73.17163849 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00127879 73.17163849 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00127880 73.17166138 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00127881 73.17166901 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00127882 73.17169189 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00127883 73.17169189 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00127884 73.17171478 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00127885 73.17171478 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00127886 73.17174530 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00127887 73.17175293 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00127888 73.17177582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00127889 73.17177582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00127890 73.17179871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00127891 73.17180634 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00127892 73.17182922 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00127893 73.17183685 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00127894 73.17185974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00127895 73.17185974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00127896 73.17191315 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00127897 73.17191315 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00127898 73.17195129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00127899 73.17195129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00127900 73.17197418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00127901 73.17197418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00127902 73.17199707 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00127903 73.17200470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00127904 73.17203522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00127905 73.17203522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00127906 73.17205811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00127907 73.17205811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00127908 73.17208099 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00127909 73.17208862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00127910 73.17211151 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00127911 73.17211151 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00127912 73.17214203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00127913 73.17214203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00127914 73.17216492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00127915 73.17217255 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00127916 73.17219543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00127917 73.17219543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00127918 73.17222595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00127919 73.17222595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00127920 73.17224884 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00127921 73.17225647 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00127922 73.17227936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00127923 73.17227936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00127924 73.17230988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00127925 73.17230988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00127926 73.17233276 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00127927 73.17234039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00127928 73.17236328 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00127929 73.17236328 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00127930 73.17239380 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00127931 73.17239380 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00127932 73.17241669 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00127933 73.17242432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00127934 73.17244720 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00127935 73.17244720 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00127936 73.17247009 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00127937 73.17247772 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00127938 73.17250824 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00127939 73.17250824 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00127940 73.17253113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00127941 73.17253113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00127942 73.17255402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00127943 73.17256165 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00127944 73.17259216 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00127945 73.17259216 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00127946 73.17261505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00127947 73.17261505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00127948 73.17263794 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00127949 73.17264557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00127950 73.17266846 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00127951 73.17266846 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00127952 73.17269897 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00127953 73.17269897 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00127954 73.17272186 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00127955 73.17272949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00127956 73.17275238 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00127957 73.17275238 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00127958 73.17278290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00127959 73.17278290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00127960 73.17280579 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00127961 73.17281342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00127962 73.17283630 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00127963 73.17283630 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00127964 73.17286682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00127965 73.17286682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00127966 73.17289734 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00127967 73.17290497 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00127968 73.17292786 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00127969 73.17292786 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00127970 73.17295074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00127971 73.17295074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00127972 73.17298126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00127973 73.17298889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00127974 73.17301178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00127975 73.17301178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00127976 73.17303467 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00127977 73.17303467 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00127978 73.17306519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00127979 73.17306519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00127980 73.17309570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00127981 73.17309570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00127982 73.17311859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00127983 73.17311859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00127984 73.17314911 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00127985 73.17314911 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00127986 73.17317963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00127987 73.17317963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00127988 73.17320251 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00127989 73.17321014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00127990 73.17322540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00127991 73.17323303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00127992 73.17326355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00127993 73.17326355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00127994 73.17328644 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00127995 73.17329407 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00127996 73.17331696 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00127997 73.17331696 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00127998 73.17334747 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00127999 73.17334747 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00128000 73.17337036 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00128001 73.17337799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00128002 73.17340088 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00128003 73.17340088 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00128004 73.17342377 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00128005 73.17342377 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00128006 73.17345428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00128007 73.17346191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00128008 73.17348480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00128009 73.17348480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00128010 73.17350769 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00128011 73.17350769 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00128012 73.17353821 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00128013 73.17354584 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00128014 73.17356873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00128015 73.17356873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00128016 73.17359161 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00128017 73.17359161 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00128018 73.17362213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00128019 73.17362213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00128020 73.17365265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00128021 73.17365265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00128022 73.17367554 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00128023 73.17367554 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00128024 73.17370605 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00128025 73.17370605 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00128026 73.17373657 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00128027 73.17373657 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00128028 73.17375946 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00128029 73.17376709 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00128030 73.17378998 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00128031 73.17378998 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00128032 73.17382050 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00128033 73.17382050 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00128034 73.17384338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00128035 73.17385101 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00128036 73.17387390 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00128037 73.17387390 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00128038 73.17394257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00128039 73.17394257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00128040 73.17396545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00128041 73.17396545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00128042 73.17398834 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00128043 73.17399597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00128044 73.17401886 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00128045 73.17401886 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00128046 73.17404938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00128047 73.17405701 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00128048 73.17407990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00128049 73.17407990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00128050 73.17410278 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00128051 73.17410278 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00128052 73.17413330 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00128053 73.17414093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00128054 73.17416382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00128055 73.17416382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00128056 73.17418671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00128057 73.17418671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00128058 73.17421722 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00128059 73.17421722 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00128060 73.17424774 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00128061 73.17424774 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00128062 73.17427063 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00128063 73.17427826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00128064 73.17430115 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00128065 73.17430115 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00128066 73.17433167 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00128067 73.17433167 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00128068 73.17435455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00128069 73.17436218 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00128070 73.17438507 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00128071 73.17438507 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00128072 73.17441559 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00128073 73.17441559 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00128074 73.17444611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00128075 73.17444611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00128076 73.17446899 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00128077 73.17446899 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00128078 73.17449951 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00128079 73.17449951 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00128080 73.17453003 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00128081 73.17453003 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00128082 73.17455292 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00128083 73.17455292 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00128084 73.17457581 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00128085 73.17458344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00128086 73.17461395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00128087 73.17461395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00128088 73.17463684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00128089 73.17464447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00128090 73.17465973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00128091 73.17466736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00128092 73.17469788 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00128093 73.17469788 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00128094 73.17472076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00128095 73.17472839 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00128096 73.17475128 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00128097 73.17475128 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00128098 73.17477417 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00128099 73.17477417 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00128100 73.17480469 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00128101 73.17481232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00128102 73.17483521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00128103 73.17483521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00128104 73.17485809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00128105 73.17485809 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00128106 73.17496490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00128107 73.17497253 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00128108 73.17499542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00128109 73.17499542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00128110 73.17501831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00128111 73.17501831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00128112 73.17504883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00128113 73.17505646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00128114 73.17507935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00128115 73.17507935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00128116 73.17510223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00128117 73.17510223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00128118 73.17513275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00128119 73.17513275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00128120 73.17516327 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00128121 73.17516327 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00128122 73.17518616 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00128123 73.17518616 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00128124 73.17520905 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00128125 73.17521667 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00128126 73.17524719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00128127 73.17524719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00128128 73.17527008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00128129 73.17527008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00128130 73.17529297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00128131 73.17530060 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00128132 73.17533112 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00128133 73.17533112 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00128134 73.17535400 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00128135 73.17536163 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00128136 73.17538452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00128137 73.17538452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00128138 73.17540741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00128139 73.17540741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00128140 73.17543793 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00128141 73.17544556 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00128142 73.17546844 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00128143 73.17546844 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00128144 73.17549133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00128145 73.17549133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00128146 73.17552185 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00128147 73.17552948 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00128148 73.17555237 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00128149 73.17555237 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00128150 73.17557526 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00128151 73.17557526 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00128152 73.17560577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00128153 73.17561340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00128154 73.17563629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00128155 73.17563629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00128156 73.17565918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00128157 73.17566681 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00128158 73.17568970 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00128159 73.17568970 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00128160 73.17572021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00128161 73.17572021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00128162 73.17574310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00128163 73.17575073 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00128164 73.17577362 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00128165 73.17577362 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00128166 73.17580414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00128167 73.17580414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00128168 73.17582703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00128169 73.17583466 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00128170 73.17585754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00128171 73.17585754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00128172 73.17589569 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00128173 73.17589569 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00128174 73.17592621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00128175 73.17592621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00128176 73.17595673 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00128177 73.17595673 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00128178 73.17597961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00128179 73.17598724 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00128180 73.17601013 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00128181 73.17601013 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00128182 73.17604065 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00128183 73.17604065 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00128184 73.17606354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00128185 73.17607117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00128186 73.17609406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00128187 73.17609406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00128188 73.17612457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00128189 73.17612457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00128190 73.17614746 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00128191 73.17615509 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00128192 73.17617798 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00128193 73.17617798 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00128194 73.17620850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00128195 73.17620850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00128196 73.17623901 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00128197 73.17623901 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00128198 73.17626190 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00128199 73.17626190 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00128200 73.17628479 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00128201 73.17629242 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00128202 73.17632294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00128203 73.17632294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00128204 73.17634583 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00128205 73.17634583 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00128206 73.17636871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00128207 73.17637634 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00128208 73.17640686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00128209 73.17640686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00128210 73.17642975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00128211 73.17642975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00128212 73.17645264 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00128213 73.17646027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00128214 73.17648315 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00128215 73.17648315 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00128216 73.17651367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00128217 73.17651367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00128218 73.17653656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00128219 73.17654419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00128220 73.17656708 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00128221 73.17656708 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00128222 73.17659760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00128223 73.17660522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00128224 73.17662048 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00128225 73.17662811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00128226 73.17665100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00128227 73.17665100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00128228 73.17668152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00128229 73.17668152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00128230 73.17671204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00128231 73.17671204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00128232 73.17673492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00128233 73.17673492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00128234 73.17675781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00128235 73.17676544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00128236 73.17679596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00128237 73.17679596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00128238 73.17681885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00128239 73.17681885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00128240 73.17684174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00128241 73.17684937 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00128242 73.17687988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00128243 73.17687988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00128244 73.17691040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00128245 73.17691040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00128246 73.17693329 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00128247 73.17694092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00128248 73.17696381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00128249 73.17696381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00128250 73.17699432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00128251 73.17699432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00128252 73.17701721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00128253 73.17702484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00128254 73.17704773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00128255 73.17704773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00128256 73.17707825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00128257 73.17707825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00128258 73.17710114 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00128259 73.17710876 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00128260 73.17713165 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00128261 73.17713165 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00128262 73.17716217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00128263 73.17716217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00128264 73.17718506 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00128265 73.17719269 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00128266 73.17721558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00128267 73.17721558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00128268 73.17723846 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00128269 73.17724609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00128270 73.17727661 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00128271 73.17727661 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00128272 73.17729950 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00128273 73.17729950 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00128274 73.17732239 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00128275 73.17733002 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00128276 73.17736053 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00128277 73.17736053 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00128278 73.17738342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00128279 73.17738342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00128280 73.17740631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00128281 73.17741394 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00128282 73.17743683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00128283 73.17743683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00128284 73.17746735 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00128285 73.17746735 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00128286 73.17749023 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00128287 73.17749786 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00128288 73.17752075 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00128289 73.17752075 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00128290 73.17755127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00128291 73.17755890 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00128292 73.17757416 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00128293 73.17758179 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00128294 73.17760468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00128295 73.17760468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00128296 73.17763519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00128297 73.17763519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00128298 73.17766571 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00128299 73.17766571 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00128300 73.17768860 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00128301 73.17768860 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00128302 73.17771149 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00128303 73.17771912 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00128304 73.17774963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00128305 73.17774963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00128306 73.17777252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00128307 73.17777252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00128308 73.17779541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00128309 73.17780304 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00128310 73.17783356 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00128311 73.17783356 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00128312 73.17785645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00128313 73.17785645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00128314 73.17790985 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00128315 73.17791748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00128316 73.17794800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00128317 73.17794800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00128318 73.17797089 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00128319 73.17797852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00128320 73.17800140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00128321 73.17800140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00128322 73.17803192 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00128323 73.17803192 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00128324 73.17806244 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00128325 73.17806244 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00128326 73.17808533 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00128327 73.17808533 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00128328 73.17810822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00128329 73.17811584 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00128330 73.17814636 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00128331 73.17814636 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00128332 73.17816925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00128333 73.17816925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00128334 73.17819214 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00128335 73.17819977 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00128336 73.17823029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00128337 73.17823029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00128338 73.17825317 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00128339 73.17825317 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00128340 73.17827606 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00128341 73.17828369 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00128342 73.17831421 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00128343 73.17831421 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00128344 73.17833710 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00128345 73.17834473 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00128346 73.17836761 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00128347 73.17836761 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00128348 73.17839050 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00128349 73.17839050 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00128350 73.17842102 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00128351 73.17842865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00128352 73.17845154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00128353 73.17845154 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00128354 73.17847443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00128355 73.17847443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00128356 73.17850494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00128357 73.17851257 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00128358 73.17853546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00128359 73.17853546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00128360 73.17855835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00128361 73.17855835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00128362 73.17858887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00128363 73.17858887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00128364 73.17861938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00128365 73.17861938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00128366 73.17864227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00128367 73.17864227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00128368 73.17866516 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00128369 73.17867279 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00128370 73.17870331 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00128371 73.17870331 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00128372 73.17872620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00128373 73.17873383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00128374 73.17875671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00128375 73.17875671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00128376 73.17878723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00128377 73.17878723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00128378 73.17881012 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00128379 73.17881775 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00128380 73.17884064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00128381 73.17884064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00128382 73.17886353 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00128383 73.17886353 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00128384 73.17890167 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00128385 73.17890930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00128386 73.17893219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00128387 73.17893219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00128388 73.17895508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00128389 73.17895508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00128390 73.17898560 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00128391 73.17898560 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00128392 73.17901611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00128393 73.17901611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00128394 73.17903900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00128395 73.17903900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00128396 73.17906189 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00128397 73.17906952 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00128398 73.17910004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00128399 73.17910004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00128400 73.17912292 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00128401 73.17913055 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00128402 73.17915344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00128403 73.17915344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00128404 73.17918396 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00128405 73.17918396 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00128406 73.17920685 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00128407 73.17921448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00128408 73.17923737 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00128409 73.17923737 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00128410 73.17926025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00128411 73.17926025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00128412 73.17929077 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00128413 73.17929840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00128414 73.17932129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00128415 73.17932129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00128416 73.17934418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00128417 73.17934418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00128418 73.17937469 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00128419 73.17938232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00128420 73.17940521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00128421 73.17940521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00128422 73.17942810 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00128423 73.17943573 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00128424 73.17945862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00128425 73.17945862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00128426 73.17948914 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00128427 73.17948914 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00128428 73.17951202 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00128429 73.17951965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00128430 73.17954254 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00128431 73.17954254 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00128432 73.17957306 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00128433 73.17957306 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00128434 73.17959595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00128435 73.17960358 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00128436 73.17962646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00128437 73.17962646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00128438 73.17965698 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00128439 73.17965698 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00128440 73.17967987 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00128441 73.17968750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00128442 73.17971039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00128443 73.17971039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00128444 73.17974091 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00128445 73.17974091 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00128446 73.17976379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00128447 73.17977142 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00128448 73.17979431 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00128449 73.17979431 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00128450 73.17981720 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00128451 73.17982483 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00128452 73.17985535 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00128453 73.17985535 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00128454 73.17987823 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00128455 73.17989349 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00128456 73.17998505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00128457 73.17999268 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00128458 73.18001556 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00128459 73.18001556 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00128460 73.18004608 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00128461 73.18004608 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00128462 73.18006897 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00128463 73.18007660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00128464 73.18009949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00128465 73.18009949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00128466 73.18013000 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00128467 73.18013763 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00128468 73.18015289 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00128469 73.18016052 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00128470 73.18018341 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00128471 73.18018341 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00128472 73.18021393 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00128473 73.18021393 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00128474 73.18024445 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00128475 73.18024445 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00128476 73.18026733 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00128477 73.18026733 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00128478 73.18029785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00128479 73.18029785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00128480 73.18032837 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00128481 73.18032837 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00128482 73.18035126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00128483 73.18035126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00128484 73.18037415 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00128485 73.18038177 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00128486 73.18041229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00128487 73.18041229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00128488 73.18043518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00128489 73.18044281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00128490 73.18046570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00128491 73.18046570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00128492 73.18049622 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00128493 73.18049622 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00128494 73.18051910 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00128495 73.18052673 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00128496 73.18054962 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00128497 73.18054962 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00128498 73.18057251 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00128499 73.18057251 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00128500 73.18060303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00128501 73.18061066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00128502 73.18063354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00128503 73.18063354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00128504 73.18065643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00128505 73.18066406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00128506 73.18069458 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00128507 73.18069458 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00128508 73.18071747 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00128509 73.18071747 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00128510 73.18074036 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00128511 73.18074799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00128512 73.18077087 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00128513 73.18077087 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00128514 73.18080139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00128515 73.18080139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00128516 73.18082428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00128517 73.18083191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00128518 73.18085480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00128519 73.18085480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00128520 73.18089294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00128521 73.18089294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00128522 73.18091583 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00128523 73.18092346 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00128524 73.18094635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00128525 73.18094635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00128526 73.18096924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00128527 73.18097687 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00128528 73.18099976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00128529 73.18100739 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00128530 73.18103027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00128531 73.18103027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00128532 73.18105316 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00128533 73.18106079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00128534 73.18109131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00128535 73.18109131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00128536 73.18111420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00128537 73.18111420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00128538 73.18113708 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00128539 73.18114471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00128540 73.18116760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00128541 73.18116760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00128542 73.18119812 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00128543 73.18119812 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00128544 73.18122101 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00128545 73.18122864 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00128546 73.18125153 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00128547 73.18125153 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00128548 73.18128204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00128549 73.18128967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00128550 73.18130493 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00128551 73.18131256 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00128552 73.18133545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00128553 73.18133545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00128554 73.18136597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00128555 73.18136597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00128556 73.18139648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00128557 73.18139648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00128558 73.18141937 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00128559 73.18141937 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00128560 73.18144989 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00128561 73.18144989 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00128562 73.18148041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00128563 73.18148041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00128564 73.18150330 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00128565 73.18150330 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00128566 73.18152618 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00128567 73.18153381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00128568 73.18156433 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00128569 73.18156433 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00128570 73.18158722 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00128571 73.18158722 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00128572 73.18161011 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00128573 73.18161774 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00128574 73.18164825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00128575 73.18164825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00128576 73.18167114 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00128577 73.18167114 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00128578 73.18169403 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00128579 73.18170166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00128580 73.18172455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00128581 73.18172455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00128582 73.18175507 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00128583 73.18175507 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00128584 73.18177795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00128585 73.18178558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00128586 73.18180847 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00128587 73.18180847 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00128588 73.18183899 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00128589 73.18183899 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00128590 73.18186188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00128591 73.18186951 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00128592 73.18192291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00128593 73.18192291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00128594 73.18195343 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00128595 73.18196106 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00128596 73.18198395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00128597 73.18198395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00128598 73.18200684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00128599 73.18200684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00128600 73.18203735 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00128601 73.18204498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00128602 73.18206787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00128603 73.18206787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00128604 73.18209076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00128605 73.18209839 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00128606 73.18212128 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00128607 73.18212128 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00128608 73.18215179 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00128609 73.18215179 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00128610 73.18218994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00128611 73.18219757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00128612 73.18222046 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00128613 73.18222046 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00128614 73.18224335 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00128615 73.18224335 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00128616 73.18227386 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00128617 73.18228149 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00128618 73.18230438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00128619 73.18230438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00128620 73.18232727 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00128621 73.18232727 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00128622 73.18235779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00128623 73.18235779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00128624 73.18238831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00128625 73.18238831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00128626 73.18241119 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00128627 73.18241882 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00128628 73.18244171 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00128629 73.18244171 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00128630 73.18247223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00128631 73.18247223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00128632 73.18249512 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00128633 73.18250275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00128634 73.18252563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00128635 73.18252563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00128636 73.18255615 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00128637 73.18255615 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00128638 73.18257904 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00128639 73.18258667 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00128640 73.18260956 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00128641 73.18260956 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00128642 73.18264008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00128643 73.18264008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00128644 73.18266296 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00128645 73.18267059 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00128646 73.18269348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00128647 73.18269348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00128648 73.18271637 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00128649 73.18271637 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00128650 73.18274689 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00128651 73.18275452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00128652 73.18277740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00128653 73.18277740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00128654 73.18280029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00128655 73.18280029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00128656 73.18283081 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00128657 73.18283844 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00128658 73.18286133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00128659 73.18286133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00128660 73.18289185 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00128661 73.18289948 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00128662 73.18291473 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00128663 73.18292236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00128664 73.18295288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00128665 73.18295288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00128666 73.18297577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00128667 73.18298340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00128668 73.18300629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00128669 73.18300629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00128670 73.18303680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00128671 73.18303680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00128672 73.18305969 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00128673 73.18306732 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00128674 73.18309021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00128675 73.18309021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00128676 73.18311310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00128677 73.18311310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00128678 73.18314362 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00128679 73.18315125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00128680 73.18317413 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00128681 73.18317413 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00128682 73.18319702 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00128683 73.18319702 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00128684 73.18322754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00128685 73.18323517 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00128686 73.18325806 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00128687 73.18325806 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00128688 73.18328094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00128689 73.18328857 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00128690 73.18331146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00128691 73.18331146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00128692 73.18334198 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00128693 73.18334198 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00128694 73.18336487 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00128695 73.18337250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00128696 73.18339539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00128697 73.18339539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00128698 73.18342590 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00128699 73.18342590 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00128700 73.18344879 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00128701 73.18345642 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00128702 73.18347931 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00128703 73.18347931 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00128704 73.18350983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00128705 73.18350983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00128706 73.18353271 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00128707 73.18354034 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00128708 73.18356323 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00128709 73.18356323 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00128710 73.18359375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00128711 73.18359375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00128712 73.18361664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00128713 73.18362427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00128714 73.18364716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00128715 73.18364716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00128716 73.18367004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00128717 73.18367004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00128718 73.18370056 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00128719 73.18370819 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00128720 73.18373108 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00128721 73.18373108 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00128722 73.18375397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00128723 73.18375397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00128724 73.18378448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00128725 73.18379211 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00128726 73.18381500 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00128727 73.18381500 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00128728 73.18383789 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00128729 73.18384552 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00128730 73.18386841 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00128731 73.18386841 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00128732 73.18391418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00128733 73.18391418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00128734 73.18394470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00128735 73.18394470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00128736 73.18396759 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00128737 73.18397522 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00128738 73.18399811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00128739 73.18399811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00128740 73.18402863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00128741 73.18402863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00128742 73.18405151 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00128743 73.18405914 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00128744 73.18408203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00128745 73.18408203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00128746 73.18411255 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00128747 73.18411255 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00128748 73.18414307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00128749 73.18414307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00128750 73.18416595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00128751 73.18416595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00128752 73.18418884 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00128753 73.18419647 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00128754 73.18422699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00128755 73.18422699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00128756 73.18424988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00128757 73.18424988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00128758 73.18427277 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00128759 73.18428040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00128760 73.18431091 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00128761 73.18431091 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00128762 73.18433380 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00128763 73.18433380 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00128764 73.18435669 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00128765 73.18436432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00128766 73.18438721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00128767 73.18438721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00128768 73.18441772 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00128769 73.18441772 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00128770 73.18444061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00128771 73.18444824 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00128772 73.18447113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00128773 73.18447113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00128774 73.18450165 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00128775 73.18450928 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00128776 73.18452454 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00128777 73.18453217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00128778 73.18455505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00128779 73.18455505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00128780 73.18458557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00128781 73.18458557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00128782 73.18461609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00128783 73.18461609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00128784 73.18463898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00128785 73.18463898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00128786 73.18466187 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00128787 73.18466949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00128788 73.18470001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00128789 73.18470001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00128790 73.18472290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00128791 73.18472290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00128792 73.18474579 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00128793 73.18475342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00128794 73.18478394 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00128795 73.18478394 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00128796 73.18480682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00128797 73.18480682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00128798 73.18482971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00128799 73.18483734 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00128800 73.18486023 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00128801 73.18486023 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00128802 73.18489838 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00128803 73.18489838 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00128804 73.18492126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00128805 73.18492126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00128806 73.18494415 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00128807 73.18495178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00128808 73.18498230 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00128809 73.18498230 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00128810 73.18500519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00128811 73.18501282 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00128812 73.18503571 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00128813 73.18503571 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00128814 73.18505859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00128815 73.18505859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00128816 73.18508911 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00128817 73.18509674 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00128818 73.18511963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00128819 73.18511963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00128820 73.18514252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00128821 73.18514252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00128822 73.18517303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00128823 73.18518066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00128824 73.18520355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00128825 73.18520355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00128826 73.18522644 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00128827 73.18522644 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00128828 73.18525696 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00128829 73.18526459 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00128830 73.18528748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00128831 73.18528748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00128832 73.18531036 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00128833 73.18531036 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00128834 73.18534088 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00128835 73.18534088 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00128836 73.18537140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00128837 73.18537140 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00128838 73.18539429 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00128839 73.18539429 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00128840 73.18541718 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00128841 73.18542480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00128842 73.18545532 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00128843 73.18545532 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00128844 73.18547821 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00128845 73.18548584 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00128846 73.18550873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00128847 73.18550873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00128848 73.18553925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00128849 73.18553925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00128850 73.18556213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00128851 73.18556976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00128852 73.18559265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -00128996 73.18775177 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00128997 73.18775177 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00128998 73.18777466 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00128999 73.18778229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00129000 73.18780518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00129001 73.18780518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00129002 73.18783569 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00129003 73.18783569 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00129004 73.18785858 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00129005 73.18786621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00129006 73.18796539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00129007 73.18796539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00129008 73.18799591 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00129009 73.18799591 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00129010 73.18801880 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00129011 73.18802643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00129012 73.18804932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00129013 73.18804932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00129014 73.18807983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00129015 73.18807983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00129016 73.18810272 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00129017 73.18811035 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00129018 73.18813324 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00129019 73.18813324 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00129020 73.18816376 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00129021 73.18816376 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00129022 73.18819427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00129023 73.18819427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00129024 73.18821716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00129025 73.18821716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00129026 73.18824005 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00129027 73.18824768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00129028 73.18827820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00129029 73.18827820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00129030 73.18830109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00129031 73.18830109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00129032 73.18832397 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00129033 73.18833160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00129034 73.18836212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00129035 73.18836212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00129036 73.18838501 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00129037 73.18838501 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00129038 73.18840790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00129039 73.18841553 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00145158 73.40291595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00145159 73.40291595 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20988 -00145160 73.40292358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00145161 73.40292358 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20988 -00145162 73.40295410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20998 -00145163 73.40295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00145164 73.40295410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20998 -00145165 73.40295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00145166 73.40297699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a8 -00145167 73.40298462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00145168 73.40298462 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209a8 -00145169 73.40298462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00145170 73.40300751 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b8 -00145171 73.40300751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00145172 73.40300751 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209b8 -00145173 73.40301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00145174 73.40303040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c8 -00145175 73.40303802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00145176 73.40303802 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209c8 -00145177 73.40303802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00145178 73.40306854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d8 -00145179 73.40306854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00145180 73.40306854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209d8 -00145181 73.40306854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00145182 73.40309143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e8 -00145183 73.40309906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00145184 73.40309906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209e8 -00145185 73.40309906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00145186 73.40312195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f8 -00145187 73.40312195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00145188 73.40312195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x209f8 -00145189 73.40312958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00145190 73.40315247 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a08 -00145191 73.40315247 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a08 -00145192 73.40315247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00145193 73.40316010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00145194 73.40318298 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a18 -00145195 73.40318298 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a18 -00145196 73.40319061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00145197 73.40319061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00145198 73.40320587 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a28 -00145199 73.40321350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a28 -00145200 73.40321350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00145201 73.40322113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00150356 73.44107819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -00150357 73.44107819 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -00150358 73.44110870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -00150359 73.44110870 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -00150360 73.44111633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -00150361 73.44111633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -00150362 73.44113922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -00150363 73.44113922 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -00150364 73.44113922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -00150365 73.44113922 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -00150366 73.44116211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -00150367 73.44116211 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -00150368 73.44116974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -00150369 73.44116974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -00150370 73.44120026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -00150371 73.44120026 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -00150372 73.44120026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -00150373 73.44120026 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -00150374 73.44122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -00150375 73.44123077 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -00150376 73.44123077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -00150377 73.44123077 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -00150378 73.44125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -00150379 73.44125366 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -00150380 73.44125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -00150381 73.44125366 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -00150382 73.44127655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -00150383 73.44128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -00150384 73.44128418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -00150385 73.44128418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -00150386 73.44131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -00150387 73.44131470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -00150388 73.44131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -00150389 73.44131470 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -00150390 73.44133759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -00150391 73.44134521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -00150392 73.44134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -00150393 73.44134521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -00150394 73.44136810 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25918 -00150395 73.44136810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -00150396 73.44136810 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25918 -00150397 73.44136810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -00150398 73.44139862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25928 -00150399 73.44139862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -00155250 73.47718811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -00155251 73.47718811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a298 -00155252 73.47718811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -00155253 73.47719574 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a298 -00155254 73.47721863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -00155255 73.47721863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a8 -00155256 73.47721863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -00155257 73.47721863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2a8 -00155258 73.47724915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -00155259 73.47724915 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b8 -00155260 73.47725677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -00155261 73.47725677 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2b8 -00155262 73.47727966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -00155263 73.47727966 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c8 -00155264 73.47727966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -00155265 73.47727966 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2c8 -00155266 73.47730255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -00155267 73.47730255 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d8 -00155268 73.47731018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -00155269 73.47731018 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2d8 -00155270 73.47734070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -00155271 73.47734070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e8 -00155272 73.47734070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -00155273 73.47734070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2e8 -00155274 73.47736359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -00155275 73.47736359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f8 -00155276 73.47737122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -00155277 73.47737122 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f8 -00155278 73.47739410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -00155279 73.47739410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a308 -00155280 73.47739410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -00155281 73.47739410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a308 -00155282 73.47741699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -00155283 73.47741699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a318 -00155284 73.47742462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -00155285 73.47742462 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a318 -00155286 73.47745514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -00155287 73.47745514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a328 -00155288 73.47745514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -00155289 73.47745514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a328 -00155290 73.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -00155291 73.47747803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a338 -00155292 73.47748566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -00155293 73.47748566 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a338 -00160993 73.51219940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -00160994 73.51219940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00160995 73.51219940 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -00160996 73.51219940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00160997 73.51219940 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -00160998 73.51222229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -00160999 73.51222229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -00161000 73.51222229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00161001 73.51222229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -00161002 73.51222992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00161003 73.51222992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -00161004 73.51225281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -00161005 73.51225281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -00161006 73.51225281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00161007 73.51225281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -00161008 73.51225281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00161009 73.51225281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -00161010 73.51228333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -00161011 73.51228333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -00161012 73.51228333 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00161013 73.51228333 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -00161014 73.51229095 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00161015 73.51229095 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -00161016 73.51230621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -00161017 73.51230621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -00161018 73.51231384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00161019 73.51231384 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -00161020 73.51231384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00161021 73.51231384 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -00161022 73.51232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -00161023 73.51233673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -00161024 73.51233673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00161025 73.51233673 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb28 -00161026 73.51233673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00161027 73.51233673 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb28 -00161028 73.51236725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -00161029 73.51236725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -00161030 73.51237488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00161031 73.51237488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb38 -00161032 73.51237488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00161033 73.51237488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb38 -00161034 73.51239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -00161035 73.51239777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -00161036 73.51239777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00168222 73.54447937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00168223 73.54447937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17378 -00168224 73.54447937 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -00168225 73.54447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e98 -00168226 73.54447937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00168227 73.54447937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17378 -00168228 73.54448700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -00168229 73.54448700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e98 -00168230 73.54450226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00168231 73.54450226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17388 -00168232 73.54450989 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -00168233 73.54450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea8 -00168234 73.54450989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17388 -00168235 73.54450989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00168236 73.54450989 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -00168237 73.54450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea8 -00168238 73.54454041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17398 -00168239 73.54454041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00168240 73.54454041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -00168241 73.54454041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00168242 73.54454041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17398 -00168243 73.54454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb8 -00168244 73.54454041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -00168245 73.54454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb8 -00168246 73.54456329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00168247 73.54456329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a8 -00168248 73.54457092 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -00168249 73.54457092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00168250 73.54457092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a8 -00168251 73.54457092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec8 -00168252 73.54457092 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -00168253 73.54457092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec8 -00168254 73.54459381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00168255 73.54459381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b8 -00168256 73.54459381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -00168257 73.54459381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00168258 73.54459381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b8 -00168259 73.54459381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed8 -00168260 73.54460144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -00168261 73.54460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed8 -00168262 73.54462433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00168263 73.54462433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c8 -00168264 73.54462433 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -00168265 73.54462433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00178452 73.58168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed8 -00178453 73.58168030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -00178454 73.58168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -00178455 73.58168030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -00178456 73.58168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ed8 -00178457 73.58168030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -00178458 73.58168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -00178459 73.58168030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -00178460 73.58170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee8 -00178461 73.58171082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -00178462 73.58171082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -00178463 73.58171082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -00178464 73.58171082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee8 -00178465 73.58171082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -00178466 73.58171082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -00178467 73.58171082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -00178468 73.58173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef8 -00178469 73.58173370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -00178470 73.58173370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -00178471 73.58173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef8 -00178472 73.58173370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -00178473 73.58174133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -00178474 73.58174133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -00178475 73.58174133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -00178476 73.58175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f08 -00178477 73.58176422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -00178478 73.58176422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f08 -00178479 73.58176422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -00178480 73.58176422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -00178481 73.58176422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -00178482 73.58176422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -00178483 73.58176422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -00178484 73.58179474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -00178485 73.58179474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -00178486 73.58179474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -00178487 73.58179474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -00178488 73.58179474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -00178489 73.58179474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -00178490 73.58179474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -00178491 73.58179474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -00178492 73.58181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -00178493 73.58182526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -00178494 73.58182526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -00178495 73.58182526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -00187930 73.61604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c958 -00187931 73.61604309 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b8 -00187932 73.61604309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db8 -00187933 73.61604309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -00187934 73.61604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c958 -00187935 73.61604309 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b8 -00187936 73.61605072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20db8 -00187937 73.61605072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -00187938 73.61607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c968 -00187939 73.61607361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c8 -00187940 73.61607361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc8 -00187941 73.61607361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -00187942 73.61607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c968 -00187943 73.61607361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c8 -00187944 73.61607361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dc8 -00187945 73.61607361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -00187946 73.61610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c978 -00187947 73.61610413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d8 -00187948 73.61610413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd8 -00187949 73.61610413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -00187950 73.61610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c978 -00187951 73.61610413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d8 -00187952 73.61611176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20dd8 -00187953 73.61611176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -00187954 73.61612701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c988 -00187955 73.61612701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e8 -00187956 73.61613464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de8 -00187957 73.61613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -00187958 73.61613464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c988 -00187959 73.61613464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e8 -00187960 73.61613464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20de8 -00187961 73.61613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -00187962 73.61615753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c998 -00187963 73.61615753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f8 -00187964 73.61615753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df8 -00187965 73.61615753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -00187966 73.61615753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c998 -00187967 73.61616516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f8 -00187968 73.61616516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20df8 -00187969 73.61616516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -00187970 73.61618805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9a8 -00187971 73.61619568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11208 -00187972 73.61619568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e08 -00187973 73.61619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -00197354 73.65015411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -00197355 73.65015411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -00197356 73.65015411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25758 -00197357 73.65015411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -00197358 73.65015411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -00197359 73.65015411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -00197360 73.65015411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25758 -00197361 73.65015411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -00197362 73.65018463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -00197363 73.65018463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -00197364 73.65018463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25768 -00197365 73.65018463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -00197366 73.65019226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -00197367 73.65019226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -00197368 73.65019226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25768 -00197369 73.65019226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -00197370 73.65021515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -00197371 73.65021515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -00197372 73.65021515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -00197373 73.65021515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c08 -00197374 73.65021515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -00197375 73.65021515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -00197376 73.65021515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -00197377 73.65021515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c08 -00197378 73.65023804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -00197379 73.65023804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -00197380 73.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -00197381 73.65024567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c18 -00197382 73.65024567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -00197383 73.65024567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -00197384 73.65024567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -00197385 73.65024567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c18 -00197386 73.65026855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -00197387 73.65026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -00197388 73.65026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -00197389 73.65026855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c28 -00197390 73.65026855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -00197391 73.65026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -00197392 73.65026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -00197393 73.65027618 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c28 -00197394 73.65029907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -00197395 73.65029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -00197396 73.65029907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a8 -00197397 73.65030670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c38 -00206837 73.68438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -00206838 73.68438721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -00206839 73.68438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d18 -00206840 73.68438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a148 -00206841 73.68438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -00206842 73.68438721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -00206843 73.68438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a148 -00206844 73.68441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d28 -00206845 73.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -00206846 73.68441772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -00206847 73.68441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d28 -00206848 73.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -00206849 73.68441772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a158 -00206850 73.68442535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -00206851 73.68442535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a158 -00206852 73.68444061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d38 -00206853 73.68444061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -00206854 73.68444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d38 -00206855 73.68444824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -00206856 73.68444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a168 -00206857 73.68444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -00206858 73.68444824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -00206859 73.68445587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a168 -00206860 73.68447113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d48 -00206861 73.68447113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -00206862 73.68447113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d48 -00206863 73.68447113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -00206864 73.68447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -00206865 73.68447876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a178 -00206866 73.68447876 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -00206867 73.68447876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a178 -00206868 73.68450165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d58 -00206869 73.68450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d58 -00206870 73.68450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -00206871 73.68450928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -00206872 73.68450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -00206873 73.68450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a188 -00206874 73.68450928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -00206875 73.68450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a188 -00206876 73.68453217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d68 -00206877 73.68453217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d68 -00206878 73.68453217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -00206879 73.68453979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a728 -00206880 73.68453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -00213614 73.70898438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49218 -00213615 73.70898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb8 -00213616 73.70898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -00213617 73.70898438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd8 -00213618 73.70898438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49218 -00213619 73.70898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fb8 -00213620 73.70899200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -00213621 73.70899200 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbd8 -00213622 73.70901489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49228 -00213623 73.70901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -00213624 73.70901489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe8 -00213625 73.70901489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49228 -00213626 73.70901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -00213627 73.70901489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbe8 -00213628 73.70902252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc8 -00213629 73.70902252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fc8 -00213630 73.70904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -00213631 73.70904541 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf8 -00213632 73.70904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -00213633 73.70905304 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dbf8 -00213634 73.70905304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49238 -00213635 73.70905304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49238 -00213636 73.70906067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd8 -00213637 73.70906830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fd8 -00213638 73.70906830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -00213639 73.70907593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc08 -00213640 73.70907593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -00213641 73.70907593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc08 -00213642 73.70909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49248 -00213643 73.70909119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49248 -00213644 73.70909882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe8 -00213645 73.70909882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -00213646 73.70909882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc18 -00213647 73.70909882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17fe8 -00213648 73.70909882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -00213649 73.70910645 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc18 -00213650 73.70912170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49258 -00213651 73.70912170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49258 -00213652 73.70912933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -00213653 73.70912933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc28 -00213654 73.70912933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -00213655 73.70912933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc28 -00213656 73.70913696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff8 -00213657 73.70913696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ff8 -00257620 73.90086365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -00257621 73.90086365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba8 -00257622 73.90087128 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -00257623 73.90087128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -00257624 73.90087128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ba8 -00257625 73.90087128 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -00257626 73.90089417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -00257627 73.90089417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb8 -00257628 73.90089417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -00257629 73.90090179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -00257630 73.90090179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bb8 -00257631 73.90090179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -00257632 73.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -00257633 73.90092468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc8 -00257634 73.90092468 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -00257635 73.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -00257636 73.90092468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bc8 -00257637 73.90092468 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -00257638 73.90095520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -00257639 73.90095520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd8 -00257640 73.90096283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -00257641 73.90096283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bd8 -00257642 73.90096283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -00257643 73.90096283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -00257644 73.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -00257645 73.90098572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be8 -00257646 73.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -00257647 73.90098572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be8 -00257648 73.90098572 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -00257649 73.90099335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -00257650 73.90100861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -00257651 73.90100861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -00257652 73.90101624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -00257653 73.90101624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -00257654 73.90101624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -00257655 73.90101624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -00257656 73.90104675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -00257657 73.90104675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -00257658 73.90104675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -00257659 73.90104675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -00257660 73.90104675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -00257661 73.90104675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -00257662 73.90106964 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f8 -00257663 73.90106964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -00262268 73.92414856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -00262269 73.92414856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -00262270 73.92414856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34168 -00262271 73.92414856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a888 -00262272 73.92414856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -00262273 73.92414856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34168 -00262274 73.92417145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -00262275 73.92417145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -00262276 73.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34178 -00262277 73.92417908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a898 -00262278 73.92417908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -00262279 73.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34178 -00262280 73.92420197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -00262281 73.92420197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34188 -00262282 73.92420197 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -00262283 73.92420959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34188 -00262284 73.92420959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -00262285 73.92420959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8a8 -00262286 73.92424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34198 -00262287 73.92424011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -00262288 73.92424011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -00262289 73.92424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34198 -00262290 73.92424011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -00262291 73.92424011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8b8 -00262292 73.92426300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a8 -00262293 73.92426300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -00262294 73.92427063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a8 -00262295 73.92427063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -00262296 73.92427826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -00262297 73.92427826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8c8 -00262298 73.92429352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -00262299 73.92429352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -00262300 73.92429352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -00262301 73.92430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -00262302 73.92431641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -00262303 73.92431641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8d8 -00262304 73.92431641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -00262305 73.92432404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -00262306 73.92433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -00262307 73.92433929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -00262308 73.92434692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -00262309 73.92435455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8e8 -00262310 73.92437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d8 -00262311 73.92437744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a8f8 -00268195 73.95298004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -00268196 73.95298004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee8 -00268197 73.95298767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6e8 -00268198 73.95298767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -00268199 73.95298767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ee8 -00268200 73.95301056 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f8 -00268201 73.95301056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -00268202 73.95301056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef8 -00268203 73.95301056 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e6f8 -00268204 73.95301056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -00268205 73.95301056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ef8 -00268206 73.95303345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e708 -00268207 73.95303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -00268208 73.95303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f08 -00268209 73.95304108 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e708 -00268210 73.95304108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -00268211 73.95304108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f08 -00268212 73.95307159 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e718 -00268213 73.95307159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -00268214 73.95307159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -00268215 73.95307159 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e718 -00268216 73.95307159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -00268217 73.95307159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -00268218 73.95309448 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e728 -00268219 73.95309448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -00268220 73.95309448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -00268221 73.95310211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e728 -00268222 73.95310211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -00268223 73.95310211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -00268224 73.95312500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e738 -00268225 73.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -00268226 73.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f38 -00268227 73.95312500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e738 -00268228 73.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -00268229 73.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f38 -00268230 73.95315552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e748 -00268231 73.95315552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -00268232 73.95315552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -00268233 73.95315552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e748 -00268234 73.95315552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -00268235 73.95315552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -00268236 73.95318604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e758 -00268237 73.95318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -00268238 73.95318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -00273886 73.98181915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a8 -00273887 73.98181915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a8 -00273888 73.98181915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -00273889 73.98182678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a8 -00273890 73.98182678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a8 -00273891 73.98182678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -00273892 73.98184967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b8 -00273893 73.98184967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b8 -00273894 73.98184967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -00273895 73.98184967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b8 -00273896 73.98184967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -00273897 73.98185730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b8 -00273898 73.98187256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c8 -00273899 73.98188019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -00273900 73.98188019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c8 -00273901 73.98188019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c8 -00273902 73.98188019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -00273903 73.98188019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c8 -00273904 73.98191071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d8 -00273905 73.98191071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -00273906 73.98191071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d8 -00273907 73.98191071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -00273908 73.98191071 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d8 -00273909 73.98191071 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422d8 -00273910 73.98194122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e8 -00273911 73.98194122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -00273912 73.98194122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e8 -00273913 73.98194122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -00273914 73.98194122 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e8 -00273915 73.98194885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422e8 -00273916 73.98196411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f8 -00273917 73.98196411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -00273918 73.98196411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f8 -00273919 73.98196411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -00273920 73.98197174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f8 -00273921 73.98197174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x422f8 -00273922 73.98198700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51508 -00273923 73.98198700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -00273924 73.98199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51508 -00273925 73.98199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -00273926 73.98199463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42308 -00273927 73.98200226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42308 -00273928 73.98202515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51518 -00273929 73.98202515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -00278585 74.01308441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -00278586 74.01308441 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -00278587 74.01308441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -00278588 74.01309204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -00278589 74.01312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -00278590 74.01312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -00278591 74.01312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -00278592 74.01312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -00278593 74.01314545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -00278594 74.01314545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -00278595 74.01315308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -00278596 74.01315308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -00278597 74.01317596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -00278598 74.01317596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46188 -00278599 74.01317596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -00278600 74.01317596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46188 -00278601 74.01320648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46198 -00278602 74.01320648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -00278603 74.01320648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x46198 -00278604 74.01320648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -00278605 74.01323700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a8 -00278606 74.01323700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -00278607 74.01324463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a8 -00278608 74.01324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -00278609 74.01326752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b8 -00278610 74.01326752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -00278611 74.01326752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b8 -00278612 74.01326752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -00278613 74.01329041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -00278614 74.01329041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -00278615 74.01329041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -00278616 74.01329803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -00278617 74.01332855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -00278618 74.01332855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -00278619 74.01332855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -00278620 74.01332855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -00278621 74.01335144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -00278622 74.01335907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -00278623 74.01335907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -00278624 74.01335907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -00278625 74.01338196 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -00278626 74.01338196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -00278627 74.01338196 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -00278628 74.01338959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -00282242 74.04055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -00282243 74.04055786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -00282244 74.04055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -00282245 74.04055786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -00282246 74.04058075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -00282247 74.04058838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -00282248 74.04058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -00282249 74.04058838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -00282250 74.04061127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -00282251 74.04061127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -00282252 74.04061127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -00282253 74.04061127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -00282254 74.04064178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d08 -00282255 74.04064941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -00282256 74.04064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d08 -00282257 74.04064941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -00282258 74.04067230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d18 -00282259 74.04067230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -00282260 74.04067230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d18 -00282261 74.04067230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -00282262 74.04069519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d28 -00282263 74.04070282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -00282264 74.04070282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d28 -00282265 74.04070282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -00282266 74.04073334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d38 -00282267 74.04073334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -00282268 74.04073334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d38 -00282269 74.04073334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -00282270 74.04076385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d48 -00282271 74.04076385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -00282272 74.04076385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d48 -00282273 74.04076385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -00282274 74.04078674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d58 -00282275 74.04078674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -00282276 74.04079437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d58 -00282277 74.04079437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -00282278 74.04081726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d68 -00282279 74.04081726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -00282280 74.04081726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d68 -00282281 74.04081726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -00282282 74.04084778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d78 -00282283 74.04084778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -00282284 74.04084778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d78 -00282285 74.04084778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -00286184 74.07048035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -00286185 74.07048035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -00286186 74.07048798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -00286187 74.07048798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -00286188 74.07051849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -00286189 74.07051849 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -00286190 74.07051849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -00286191 74.07051849 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -00286192 74.07054138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -00286193 74.07054138 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -00286194 74.07054901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -00286195 74.07054901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -00286196 74.07057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -00286197 74.07057190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -00286198 74.07057190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -00286199 74.07057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -00286200 74.07059479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -00286201 74.07060242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da48 -00286202 74.07062531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -00286203 74.07062531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -00286204 74.07063293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -00286205 74.07063293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da58 -00286206 74.07064819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -00286207 74.07065582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -00286208 74.07065582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -00286209 74.07065582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da68 -00286210 74.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -00286211 74.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -00286212 74.07068634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -00286213 74.07068634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da78 -00286214 74.07070923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -00286215 74.07071686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -00286216 74.07071686 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -00286217 74.07071686 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da88 -00286218 74.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a8 -00286219 74.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a8 -00286220 74.07073975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -00286221 74.07074738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da98 -00286222 74.07077026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -00286223 74.07077026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4daa8 -00286224 74.07078552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b8 -00286225 74.07078552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b8 -00286226 74.07079315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -00286227 74.07080078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dab8 -00290355 74.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a968 -00290356 74.10137939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf8 -00290357 74.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a968 -00290358 74.10137939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf8 -00290359 74.10140228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a978 -00290360 74.10140228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c08 -00290361 74.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a978 -00290362 74.10140991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c08 -00290363 74.10143280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a988 -00290364 74.10143280 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c18 -00290365 74.10143280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a988 -00290366 74.10144043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c18 -00290367 74.10146332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a998 -00290368 74.10146332 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c28 -00290369 74.10146332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a998 -00290370 74.10146332 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c28 -00290371 74.10149384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a8 -00290372 74.10149384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c38 -00290373 74.10149384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a8 -00290374 74.10149384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c38 -00290375 74.10152435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b8 -00290376 74.10152435 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c48 -00290377 74.10152435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b8 -00290378 74.10152435 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c48 -00290379 74.10154724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c8 -00290380 74.10154724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c58 -00290381 74.10155487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c8 -00290382 74.10155487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c58 -00290383 74.10157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d8 -00290384 74.10157776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c68 -00290385 74.10157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d8 -00290386 74.10157776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00290387 74.10157776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c68 -00290388 74.10160828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e8 -00290389 74.10160828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c78 -00290390 74.10161591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e8 -00290391 74.10161591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c78 -00290392 74.10182953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f8 -00290393 74.10182953 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c88 -00290394 74.10183716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f8 -00290395 74.10183716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c88 -00290396 74.10186005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa08 -00290397 74.10186005 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c98 -00290398 74.10186005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa08 -00292798 74.12934113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -00292799 74.12934113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -00292800 74.12937164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -00292801 74.12937927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -00292802 74.12940216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -00292803 74.12940216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -00292804 74.12942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -00292805 74.12943268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -00292806 74.12945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -00292807 74.12945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -00292808 74.12948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -00292809 74.12948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -00292810 74.12950897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -00292811 74.12951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -00292812 74.12953949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -00292813 74.12953949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -00292814 74.12957001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -00292815 74.12957001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -00292816 74.12959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -00292817 74.12960052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -00292818 74.12962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -00292819 74.12962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -00292820 74.12965393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -00292821 74.12965393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -00292822 74.12967682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -00292823 74.12968445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -00292824 74.12970734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -00292825 74.12970734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -00292826 74.12973785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -00292827 74.12973785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -00292828 74.12976837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -00292829 74.12976837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -00292830 74.12979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -00292831 74.12979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -00292832 74.12981415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e558 -00292833 74.12982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e558 -00292834 74.12985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e568 -00292835 74.12985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e568 -00292836 74.12987518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e578 -00292837 74.12987518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e578 -00292838 74.12989807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e588 -00292839 74.12990570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e588 -00292840 74.12993622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e598 -00292841 74.12993622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e598 -00294604 74.15595245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c98 -00294605 74.15595245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c98 -00294606 74.15598297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca8 -00294607 74.15598297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca8 -00294608 74.15600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb8 -00294609 74.15601349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb8 -00294610 74.15603638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc8 -00294611 74.15603638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc8 -00294612 74.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd8 -00294613 74.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd8 -00294614 74.15608978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -00294615 74.15609741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -00294616 74.15612030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -00294617 74.15612030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -00294618 74.15615082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -00294619 74.15615082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -00294620 74.15618134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -00294621 74.15618134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -00294622 74.15620422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -00294623 74.15620422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -00294624 74.15622711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -00294625 74.15623474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -00294626 74.15626526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -00294627 74.15626526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -00294628 74.15628815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -00294629 74.15629578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -00294630 74.15631866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -00294631 74.15631866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -00294632 74.15634918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -00294633 74.15634918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -00294634 74.15637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -00294635 74.15637970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -00294636 74.15640259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -00294637 74.15640259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -00294638 74.15642548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -00294639 74.15642548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -00294640 74.15645599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -00294641 74.15646362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -00294642 74.15648651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -00294643 74.15648651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -00294644 74.15650940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -00294645 74.15651703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -00294646 74.15654755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -00294647 74.15654755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -00295142 74.18552399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295143 74.18605804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295144 74.18828583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295145 74.19142151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295146 74.19548035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295147 74.19644928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295148 74.20327759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295149 74.20607758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295150 74.23327637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295151 74.23525238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295152 74.23935699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295153 74.24868774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295154 74.25409698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295155 74.25833893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295156 74.26631927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295157 74.27107239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295158 74.27288055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295159 74.27613831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295160 74.27814484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295161 74.28284454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295162 74.29254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295163 74.29669952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295164 74.30430603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295165 74.30821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295166 74.31359100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295167 74.31507111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295168 74.31836700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295169 74.32270813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295170 74.32943726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295171 74.33293152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295172 74.33369446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295173 74.34694672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295174 74.35627747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295175 74.39386749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295176 74.40892029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295177 74.41603088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295178 74.41840363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295179 74.41919708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295180 74.42059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295181 74.42810822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295182 74.43140411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295183 74.43306732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295184 74.43616486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295185 74.44784546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295186 74.45185852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295187 74.45333099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295188 74.47546387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295189 74.48474121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295190 74.48831940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295191 74.49129486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295192 74.49426270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295193 74.50393677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295194 74.50779724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295195 74.50942993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295196 74.51651764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295197 74.52721405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295198 74.54390717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295199 74.54683685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295200 74.55220032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295201 74.55603790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295202 74.56445313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295203 74.58289337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295204 74.58954620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295205 74.59217072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295206 74.59678650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295207 74.60360718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295208 74.60531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295209 74.60621643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295210 74.60783386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295211 74.61253357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295212 74.61488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295213 74.62197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295214 74.62741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295215 74.65270233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295216 74.66259003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295217 74.66647339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295218 74.66790009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295219 74.66996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295220 74.67238617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295221 74.67436981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295222 74.67973328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295223 74.69485474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295224 74.69869995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295225 74.70382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295226 74.70452118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295227 74.70603180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295228 74.71334076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295229 74.72236633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295230 74.72816467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295231 74.73344421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295232 74.73719788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295233 74.74738312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295234 74.75063324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295235 74.75850677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295236 74.77069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295237 74.77539825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295238 74.77659607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295239 74.78402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295240 74.78572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295241 74.78865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295242 74.79410553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295243 74.79904938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295244 74.80107117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295245 74.80342865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295246 74.81639862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295247 74.82321167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295248 74.82891846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295249 74.83402252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295250 74.83519745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295251 74.83739471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295252 74.83848572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295253 74.83940125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295254 74.84315491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295255 74.84460449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295256 74.84878540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295257 74.84958649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295258 74.85203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295259 74.85413361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295260 74.85546875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295261 74.85613251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295262 74.86120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295263 74.86231232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295264 74.86373138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295265 74.86791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295266 74.87080383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295273 74.91218567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295274 74.91400909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295275 74.91490936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295276 74.91767883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295277 74.92873383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295278 74.93040466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295279 74.93146515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295280 74.93224335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295281 74.93626404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295282 74.93673706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295283 74.93997955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295284 74.94427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295285 74.95007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295286 74.95331573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295287 74.95468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295288 74.95540619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295289 74.96205139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295290 74.96532440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295291 74.96612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295292 74.96939850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295293 74.97023773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295294 74.97457886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295295 74.97541809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295296 74.98056030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295297 74.98725128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295298 74.98993683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295299 74.99388885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295300 74.99521637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295301 74.99769592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295302 74.99905396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295303 75.00535583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295304 75.00943756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295305 75.01004791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295306 75.01349640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295307 75.01398468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295308 75.01465607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295309 75.01718140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295310 75.01822662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295311 75.02186584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295312 75.02310944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295313 75.02434540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295314 75.02853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295315 75.03174591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295316 75.03266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295317 75.03795624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295318 75.03958893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295319 75.04023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295320 75.05078125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295321 75.05514526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295322 75.05666351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295323 75.05786133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295324 75.06240082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295325 75.06394196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295326 75.06893158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295327 75.07258606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295328 75.07775116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295329 75.09130096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295330 75.09217072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295331 75.09376526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295332 75.09487915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295333 75.10260773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295334 75.10459137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295335 75.10509491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295336 75.10751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295337 75.10812378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295338 75.10919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295339 75.11267853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295340 75.11354065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295341 75.11540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295342 75.11659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295343 75.11793518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295344 75.12028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295345 75.12380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295346 75.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295347 75.13084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295348 75.13617706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295349 75.14183044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295350 75.15391541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295351 75.15586853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295352 75.16092682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295353 75.16636658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295354 75.16841888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295355 75.16959381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295356 75.17230988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295357 75.17990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295358 75.18596649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295359 75.18915558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295360 75.18959808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295361 75.19003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295362 75.19142914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295363 75.19705963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295364 75.19944000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295365 75.20268250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295366 75.20509338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295367 75.20763397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295368 75.21911621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295369 75.21988678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295370 75.22112274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295371 75.23117065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295372 75.24007416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295373 75.24389648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295374 75.24856567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295375 75.25337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295376 75.25418091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295377 75.25631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295378 75.25685883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295379 75.26004791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295380 75.26385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295381 75.26516724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295382 75.26959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295383 75.27220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295384 75.27491760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295385 75.27871704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295386 75.27928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295387 75.28031158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295388 75.28089905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295389 75.28317261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295390 75.28385162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295391 75.28493500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295392 75.28762817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295393 75.29119873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295394 75.29193115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295395 75.29387665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295396 75.29759216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295397 75.29963684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295398 75.30113983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295399 75.30171204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295400 75.30643463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295401 75.31069183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295438 75.40538025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295439 75.40836334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295440 75.41208649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295441 75.41429901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295442 75.41483307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295443 75.41656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295444 75.41726685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295445 75.41914368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295446 75.42172241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295447 75.42674255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295448 75.42864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295449 75.43309021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295450 75.43456268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295451 75.43682098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295452 75.43810272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295453 75.43959808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295454 75.44136810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295455 75.44358063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295456 75.44653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295457 75.44728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295458 75.44877625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295459 75.45265198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295460 75.45314789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295461 75.45601654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295462 75.45708466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295463 75.46378326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295464 75.46580505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295465 75.46806335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295466 75.47481537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295467 75.48151398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295468 75.48405457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295469 75.48545074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295470 75.48679352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295471 75.48857880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295472 75.49028778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295473 75.49187469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295474 75.49678802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295475 75.49878693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295476 75.50023651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295477 75.50137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295478 75.50578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295479 75.51074219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295480 75.51454926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295481 75.51545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295482 75.51638031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295483 75.52548981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295484 75.53028107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295485 75.53137970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295486 75.54267120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295487 75.55826569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295488 75.55914307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295489 75.56005859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295490 75.56658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295491 75.56809235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295492 75.57704926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295493 75.58095551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295494 75.58140564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295495 75.58280945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295496 75.58482361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295497 75.58668518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295498 75.58740997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295499 75.58807373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295500 75.59657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295501 75.59770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295502 75.60256958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295503 75.60479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295504 75.60665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295505 75.60926819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295506 75.61032867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295507 75.61143494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295508 75.61225128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295509 75.61286926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295510 75.61466980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295511 75.61648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295512 75.61818695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295513 75.61915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295514 75.61992645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295515 75.62594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295516 75.62738800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295517 75.62832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295518 75.63092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295519 75.63150787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295520 75.63294983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295521 75.63413239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295522 75.63558960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295523 75.64218903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295524 75.64464569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295525 75.64885712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295526 75.65641785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295527 75.66016388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295528 75.66595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295529 75.66830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295530 75.67625427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295531 75.68060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295532 75.68859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295533 75.69157410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295534 75.69342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295535 75.70733643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295536 75.70860291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295537 75.71285248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295538 75.71560669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295539 75.71809387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295540 75.71920013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295541 75.72102356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295542 75.72261047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295543 75.72770691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295544 75.73133850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295545 75.74488068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295546 75.74713898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295547 75.74778748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295548 75.74842834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295549 75.74906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295550 75.74974060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295551 75.75631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295552 75.75809479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295553 75.78096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295554 75.78192902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295555 75.85580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295556 75.87491608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295557 75.87825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295558 75.87864685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295559 75.89068604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295560 75.91223145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295561 75.92138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295562 75.93249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295563 75.94419861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295564 75.95739746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295565 75.96060944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295566 75.97090912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295567 75.97317505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295568 75.97420502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295569 76.14906311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295570 76.14910126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295571 76.14911652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00295572 76.14913177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00295573 76.14925385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295574 76.14925385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00295575 76.14931488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00295576 76.14933014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00295577 76.29479218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295578 76.30464935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295579 76.30541229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295580 76.30599976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295581 76.32274628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295582 76.32926178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295583 76.33134460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295584 76.33553314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295585 76.34202576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295586 76.34545135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295587 76.34865570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295588 76.35633850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295589 76.36799622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295590 76.38151550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295591 76.38262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295592 76.39108276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295593 76.39182281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295594 76.41156769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295595 76.41212463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295596 76.41613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295597 76.41741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295598 76.43846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295599 76.44786835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295600 76.45929718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295601 76.46464539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295602 76.46610260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295603 76.46786499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295604 76.47238159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295605 76.47485352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295606 76.47865295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295607 76.48915863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295608 76.50874329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295609 76.52153015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295610 76.52980804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295611 76.53456116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295612 76.56701660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295613 76.56872559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295614 76.58187866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295615 76.63049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295616 76.70119476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295617 76.70994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295618 76.71429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295619 76.72222900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295620 76.73076630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295621 76.73354340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295622 76.73558044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295623 76.73740387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295624 76.74140930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295625 76.74251556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295626 76.74923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295627 76.76570129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295628 76.76735687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295629 76.76819611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295630 76.77395630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295631 76.77590942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295632 76.78398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295633 76.79767609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295634 76.80560303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295635 76.81227112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295636 76.82317352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295637 76.82991028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295638 76.83164215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295639 76.83309174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295640 76.85351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295641 76.87344360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295642 76.88168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295643 76.88356781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295644 76.89115143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295645 76.89592743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295646 76.90907288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295647 76.91004944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295648 76.91478729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295649 76.92333221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295650 76.97115326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295651 76.97550201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295652 76.97786713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295653 76.97856903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295654 76.99073029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295655 77.00971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295656 77.01910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295657 77.02106476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295658 77.02230835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295659 77.02519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295660 77.02571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295661 77.02929688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295662 77.03330231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295663 77.03900909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295664 77.04254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295665 77.05914307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295666 77.07842255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295667 77.09386444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295668 77.09547424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295669 77.10254669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295670 77.10897827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295671 77.11540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295672 77.12681580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295673 77.12953949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295674 77.14084625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295675 77.14127350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295676 77.14855957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295677 77.14911652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295678 77.15328979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295679 77.16933441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295680 77.16985321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295681 77.17049408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295682 77.17727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295683 77.18193054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295684 77.19567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295685 77.19857025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295686 77.20809937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295687 77.20980835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295688 77.21383667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295689 77.24243164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295690 77.24463654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295691 77.24553680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295692 77.25944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295693 77.26661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295694 77.27447510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295695 77.27688599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295696 77.31056976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295697 77.32403564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295698 77.35005188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295699 77.35486603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295700 77.37804413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295701 77.37985992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295702 77.38861847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295703 77.38929749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295704 77.39694214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295705 77.40030670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295706 77.40072632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295707 77.40833282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295708 77.41851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295709 77.42259979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295710 77.43460846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295711 77.43750763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295712 77.44184113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295713 77.44495392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295714 77.44937134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295715 77.48314667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295716 77.49430084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295717 77.51242828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295718 77.52042389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295719 77.52317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295720 77.52979279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295721 77.53045654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295722 77.53755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295723 77.53957367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295724 77.56811523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295725 77.57707214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295726 77.58898163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295727 77.60219574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295728 77.60309601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295729 77.60558319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295730 77.60742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295731 77.61473846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295732 77.61554718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295733 77.62017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295734 77.62258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295735 77.64446259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295736 77.67072296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295737 77.68972015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295738 77.69429779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295739 77.69920349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295740 77.70126343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295741 77.70301819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295742 77.70353699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295743 77.70507050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295744 77.70606995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295745 77.70758820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295746 77.70905304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295747 77.71027374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295748 77.71335602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295749 77.71459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295750 77.71506500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295751 77.71711731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295752 77.71807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295753 77.71885681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295754 77.72079468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295755 77.72226715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295756 77.72769165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295757 77.73006439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295758 77.73361206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295759 77.73522186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295760 77.73725128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295761 77.74192810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295762 77.74908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295763 77.75251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295764 77.75411224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295765 77.75547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295766 77.75738525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295767 77.75814056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295768 77.76015472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295769 77.76498413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295770 77.76816559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295771 77.76930237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295772 77.78239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295773 77.78279114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295774 77.78710175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295775 77.79364777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295776 77.79611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295777 77.79703522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295778 77.80062866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295779 77.80328369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295780 77.80735016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295781 77.81278992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295782 77.81798553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295783 77.83058167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295784 77.83236694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295785 77.83679962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295786 77.83777618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295787 77.83872986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295788 77.84111786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295789 77.84188843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295790 77.84250641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295791 77.84325409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295792 77.84564972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295793 77.85000610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295794 77.85350037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295795 77.85394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295796 77.85465240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295797 77.85569763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295798 77.85767365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295799 77.85820770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295800 77.85965729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295801 77.86296844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295802 77.86484528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295803 77.86742401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295804 77.87024689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295805 77.87081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295806 77.87269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295807 77.87656403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295808 77.88249969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295809 77.88313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295810 77.88385773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295811 77.88455963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295812 77.88555908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295813 77.89020538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295814 77.89282227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295815 77.89710236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295816 77.90545654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295817 77.90586853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295818 77.92350006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295819 77.92576599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295820 77.93011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295821 77.93177795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295822 77.93515015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295823 77.93563080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295824 77.93796539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295825 77.93865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295826 77.94402313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295827 77.94530487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295828 77.95304108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295829 77.95555115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295830 77.95644379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295831 77.95993805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295832 77.96267700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295833 77.96501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295834 77.96617889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295835 77.96830750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295836 77.97096252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295837 77.97386932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295838 77.97511292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295839 77.97662354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295840 77.97967529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295841 77.98139191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295842 77.98192596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295843 77.98777771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295844 77.99359131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295845 77.99410248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295846 77.99887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295847 78.00089264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295848 78.00483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295849 78.00641632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295850 78.00718689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295851 78.01091003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295852 78.01461792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295853 78.01563263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295854 78.01824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295855 78.02128601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295856 78.02245331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295857 78.02627563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295858 78.02720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295859 78.02899933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295860 78.03280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295861 78.03595734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295862 78.03845978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295863 78.03916168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295864 78.04271698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295865 78.04552460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295866 78.05393219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295867 78.05474854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295868 78.05514526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295869 78.05979156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295870 78.06206512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295871 78.08345032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295872 78.08620453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295873 78.08750153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295874 78.09108734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295875 78.09568024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295876 78.10262299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295877 78.10751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295878 78.10827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295879 78.10969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295880 78.11231232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295881 78.11353302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295882 78.11495972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295883 78.11639404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295884 78.11697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295885 78.12077332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295886 78.12310028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295887 78.12364960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295888 78.12505341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295889 78.12720490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295890 78.12837219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295891 78.12944794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295892 78.13572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295893 78.13831329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295894 78.14149475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295895 78.14538574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295896 78.14977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295897 78.15791321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295898 78.16286469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295899 78.16400146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295900 78.16774750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295901 78.18019867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295902 78.18195343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295903 78.18279266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295904 78.18348694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295905 78.18392181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295906 78.18580627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295907 78.19358063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295908 78.19574738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295909 78.19752502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295910 78.20217133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295911 78.20449066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295912 78.21925354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295913 78.23224640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295914 78.23318481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295915 78.23476410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295916 78.23887634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295917 78.24543762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295918 78.24659729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295919 78.24885559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295920 78.24999237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295921 78.25230408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295922 78.25464630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295923 78.25617218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295924 78.25865936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295925 78.26939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295926 78.26984406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295927 78.28245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295928 78.28299713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295929 78.28365326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295930 78.28556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295931 78.28759766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295932 78.29011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295933 78.30183411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295934 78.30829620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295935 78.31140900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295936 78.31247711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295937 78.31508636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295938 78.31899261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295939 78.32103729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295940 78.32328033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295941 78.32769012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295942 78.33607483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295943 78.33911896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295944 78.35984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295945 78.36594391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295946 78.36956024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295947 78.37442780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295948 78.37638092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295949 78.37715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295950 78.37795258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295951 78.38116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295952 78.38320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295953 78.38430023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295954 78.38667297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295955 78.38805389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295956 78.39431000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295957 78.40245056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295958 78.40303802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295959 78.40581512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295960 78.40720367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295961 78.40773773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295962 78.41103363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295963 78.41242981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295964 78.41466522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295965 78.41556549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295966 78.42169952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295967 78.42333984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295968 78.42594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295969 78.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295970 78.43202972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295971 78.43461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295972 78.43952942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295973 78.44025421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295974 78.44174957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295975 78.44235992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295976 78.44279480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295977 78.44683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295978 78.46060944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295979 78.47691345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295980 78.48095703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295981 78.48225403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295982 78.48383331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295983 78.48490143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295984 78.48540497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295985 78.48647308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295986 78.49356842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295987 78.49882507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295988 78.50554657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295989 78.50610352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295990 78.50923157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295991 78.51458740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295992 78.52094269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295993 78.52556610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295994 78.52719879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295995 78.53678894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295996 78.53794098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295997 78.54074097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295998 78.54270172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00295999 78.54319000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296000 78.54708099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296001 78.54871368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296002 78.54970551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296003 78.55046082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296004 78.55390930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296005 78.55598450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296006 78.55728912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296007 78.55913544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296008 78.56458282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296009 78.56802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296010 78.57440186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296011 78.57540131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296012 78.57769775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296013 78.58116150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296014 78.58171844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296015 78.58698273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296016 78.59041595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296017 78.59078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296018 78.59457397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296019 78.59494781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296020 78.59828186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296021 78.59867859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296022 78.60388947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296023 78.60425568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296024 78.60466766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296025 78.60501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296026 78.61112976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296027 78.61148071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296028 78.61484528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296029 78.61522675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296030 78.61624908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296031 78.61661530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296032 78.61886597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296033 78.61923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296034 78.61985016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296035 78.62020111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296036 78.62431335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296037 78.62471008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296038 78.63958740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296039 78.63998413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296040 78.64857483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296041 78.64895630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296042 78.65098572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296043 78.65136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296044 78.65151978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296045 78.65190125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296046 78.65565491 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00296047 78.65568542 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00296048 78.65570831 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00296049 78.65571594 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00296050 78.65583801 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00296051 78.65584564 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00296052 78.65590668 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00296053 78.65592194 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00296054 78.65753174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296055 78.65789795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296056 78.66130829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296057 78.66165924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296058 78.66371155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296059 78.66408539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296060 78.68125153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296061 78.68164825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296062 78.68643951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296063 78.68679810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296064 78.68950653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296065 78.68987274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296066 78.70006561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296067 78.70045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296068 78.70356750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296069 78.70399475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296070 78.72984314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296071 78.73039246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296072 78.76538849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296073 78.76576233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296074 78.78709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296075 78.78746033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296076 78.78906250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296077 78.78947449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296078 78.79129028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296079 78.79166412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296080 78.80059814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296081 78.80096436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296082 78.83900452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296083 78.83943176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296084 78.84196472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296085 78.84230804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296086 78.84537506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296087 78.84574890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296088 78.85122681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296089 78.85167694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296090 78.88306427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296091 78.88346863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296092 78.88783264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296093 78.88824463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296094 78.91835785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296095 78.91872406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296096 78.93312836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296097 78.93356323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296098 78.94234467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296099 78.94271088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296100 78.95901489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296101 78.95938873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296102 78.96900177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296103 78.96939850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296104 78.97703552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296105 78.97738647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296106 78.97873688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296107 78.97914124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296108 78.98326111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296109 78.98363495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00296110 78.99538422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00296111 78.99539185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00296112 78.99541473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00296113 78.99541473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00296114 78.99544525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00296115 78.99545288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00296116 78.99547577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00296117 78.99547577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00296118 78.99549866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00296119 78.99550629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00296120 78.99552917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00296121 78.99552917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00296122 78.99555969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00296123 78.99555969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00296124 78.99558258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00296125 78.99559021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00296126 78.99561310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00296127 78.99561310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00296128 78.99564362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00296129 78.99564362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00296130 78.99566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00296131 78.99567413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00296132 78.99569702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00296133 78.99569702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00296134 78.99572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00296135 78.99572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00296136 78.99575043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00296137 78.99575806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00296138 78.99578094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00296139 78.99578094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00296140 78.99581146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00296141 78.99581146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00296142 78.99584198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00296143 78.99584198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00296144 78.99586487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00296145 78.99586487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00296146 78.99588776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00296147 78.99589539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00296148 78.99592590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00296149 78.99592590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00296150 78.99594879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00296151 78.99594879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00296152 78.99597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00296153 78.99597931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00296154 78.99600983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00296155 78.99600983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00296156 78.99603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00296157 78.99604034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00296158 78.99606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00296159 78.99606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00296160 78.99608612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00296161 78.99608612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00296162 78.99611664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00296163 78.99612427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00296164 78.99614716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00296165 78.99614716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00296166 78.99617004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00296167 78.99617767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00296168 78.99620819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00296169 78.99620819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00296170 78.99623108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00296171 78.99623108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00296172 78.99625397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00296173 78.99626160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00296174 78.99628448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00296175 78.99628448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00296176 78.99631500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00296177 78.99631500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00296178 78.99634552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00296179 78.99634552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00296180 78.99636841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00296181 78.99636841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00296182 78.99639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00296183 78.99640656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00296184 78.99642944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00296185 78.99642944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00296186 78.99645233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00296187 78.99645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00296188 78.99648285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00296189 78.99648285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00296190 78.99651337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00296191 78.99651337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00296192 78.99653625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00296193 78.99654388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00296194 78.99656677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00296195 78.99656677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00296196 78.99659729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00296197 78.99659729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00296198 78.99662018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00296199 78.99662781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00296200 78.99665070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00296201 78.99665070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00296202 78.99668121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00296203 78.99668121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00296204 78.99671173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00296205 78.99671173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00296206 78.99673462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00296207 78.99673462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00296208 78.99676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00296209 78.99676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00296210 78.99679565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00296211 78.99679565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00296212 78.99681854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00296213 78.99681854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00296214 78.99684143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00296215 78.99684906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00296216 78.99687958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00296217 78.99687958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00296218 78.99690247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00296219 78.99691010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00296220 78.99692535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00296221 78.99693298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00296222 78.99696350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00296223 78.99696350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00296224 78.99698639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00296225 78.99699402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00296226 78.99701691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00296227 78.99701691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00296228 78.99703979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00296229 78.99703979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00296230 78.99707031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00296231 78.99707794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00296232 78.99710083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00296233 78.99710083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00296234 78.99714661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00296235 78.99714661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00296236 78.99716949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00296237 78.99717712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00296238 78.99720001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00296239 78.99720001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00296240 78.99723053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00296241 78.99723053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00296242 78.99725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00296243 78.99726105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00296244 78.99728394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00296245 78.99728394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00296246 78.99731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00296247 78.99732208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00296248 78.99734497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00296249 78.99734497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00296250 78.99736786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00296251 78.99737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00296252 78.99739838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00296253 78.99739838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00296254 78.99742889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00296255 78.99742889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00296256 78.99745178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00296257 78.99745941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00296258 78.99748230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00296259 78.99748230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00296260 78.99751282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00296261 78.99752045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00296262 78.99753571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00296263 78.99754333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00296264 78.99756622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00296265 78.99756622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00296266 78.99759674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00296267 78.99759674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00296268 78.99762726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00296269 78.99762726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00296270 78.99765015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00296271 78.99765015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00296272 78.99767303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00296273 78.99768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00296274 78.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00296275 78.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00296276 78.99773407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00296277 78.99773407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00296278 78.99775696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00296279 78.99776459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00296280 78.99779510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00296281 78.99779510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00296282 78.99781799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00296283 78.99782562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00296284 78.99784851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00296285 78.99784851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00298434 79.02824402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -00298435 79.02824402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -00298436 79.02826691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -00298437 79.02827454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -00298438 79.02829742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -00298439 79.02829742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -00298440 79.02832794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -00298441 79.02833557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -00298442 79.02835846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -00298443 79.02835846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -00298444 79.02838135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -00298445 79.02838135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -00298446 79.02841187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -00298447 79.02841949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -00298448 79.02844238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -00298449 79.02844238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -00298450 79.02846527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -00298451 79.02846527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -00298452 79.02849579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -00298453 79.02849579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -00298454 79.02852631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -00298455 79.02852631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -00298456 79.02854919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -00298457 79.02855682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -00298458 79.02857971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -00298459 79.02857971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -00298460 79.02861786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -00298461 79.02861786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -00298462 79.02865601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -00298463 79.02865601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -00298464 79.02868652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -00298465 79.02869415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -00298466 79.02871704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -00298467 79.02871704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -00298468 79.02873993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -00298469 79.02873993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -00298470 79.02877045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -00298471 79.02877808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -00298472 79.02880096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -00298473 79.02880096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -00298474 79.02882385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -00298475 79.02882385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -00298476 79.02885437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -00298477 79.02885437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -00300972 79.06539154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -00300973 79.06539154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -00300974 79.06542206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -00300975 79.06542206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -00300976 79.06544495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -00300977 79.06544495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -00300978 79.06547546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -00300979 79.06547546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -00300980 79.06550598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -00300981 79.06550598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -00300982 79.06552887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -00300983 79.06553650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -00300984 79.06555939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -00300985 79.06555939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -00300986 79.06558990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -00300987 79.06558990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -00300988 79.06561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -00300989 79.06562042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -00300990 79.06564331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -00300991 79.06564331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -00300992 79.06567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -00300993 79.06567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -00300994 79.06569672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -00300995 79.06570435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -00300996 79.06572723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -00300997 79.06572723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -00300998 79.06575012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -00300999 79.06575012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -00301000 79.06578064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -00301001 79.06578827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -00301002 79.06581116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -00301003 79.06581116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -00301004 79.06583405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -00301005 79.06583405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -00301006 79.06586456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -00301007 79.06587219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -00301008 79.06589508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -00301009 79.06589508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -00301010 79.06591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -00301011 79.06592560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -00301012 79.06594849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -00301013 79.06594849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -00301014 79.06597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -00301015 79.06597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -00303568 79.10278320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf878 -00303569 79.10279083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf878 -00303570 79.10281372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf888 -00303571 79.10281372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf888 -00303572 79.10284424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf898 -00303573 79.10284424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf898 -00303574 79.10287476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a8 -00303575 79.10287476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a8 -00303576 79.10289764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b8 -00303577 79.10289764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b8 -00303578 79.10292816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c8 -00303579 79.10292816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c8 -00303580 79.10295868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d8 -00303581 79.10295868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d8 -00303582 79.10298157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e8 -00303583 79.10298157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e8 -00303584 79.10300446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f8 -00303585 79.10301208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f8 -00303586 79.10304260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf908 -00303587 79.10304260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf908 -00303588 79.10306549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf918 -00303589 79.10306549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf918 -00303590 79.10308838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf928 -00303591 79.10309601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf928 -00303592 79.10312653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf938 -00303593 79.10312653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf938 -00303594 79.10314941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf948 -00303595 79.10314941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf948 -00303596 79.10317230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf958 -00303597 79.10317993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf958 -00303598 79.10320282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf968 -00303599 79.10320282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf968 -00303600 79.10323334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf978 -00303601 79.10324097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf978 -00303602 79.10326385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf988 -00303603 79.10326385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf988 -00303604 79.10328674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf998 -00303605 79.10328674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf998 -00303606 79.10331726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -00303607 79.10332489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -00303608 79.10334778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -00303609 79.10334778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -00303610 79.10337067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -00303611 79.10337067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -00308452 79.14304352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da8 -00308453 79.14304352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -00308454 79.14304352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da8 -00308455 79.14304352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -00308456 79.14307404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db8 -00308457 79.14307404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -00308458 79.14307404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db8 -00308459 79.14307404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -00308460 79.14309692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc8 -00308461 79.14310455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -00308462 79.14310455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc8 -00308463 79.14310455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -00308464 79.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd8 -00308465 79.14312744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -00308466 79.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd8 -00308467 79.14313507 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -00308468 79.14315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de8 -00308469 79.14315796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -00308470 79.14315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de8 -00308471 79.14315796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -00308472 79.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df8 -00308473 79.14318848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -00308474 79.14319611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df8 -00308475 79.14319611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -00308476 79.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -00308477 79.14321899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -00308478 79.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -00308479 79.14321899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -00308480 79.14324188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -00308481 79.14324188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -00308482 79.14324951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -00308483 79.14324951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -00308484 79.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -00308485 79.14328003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -00308486 79.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -00308487 79.14328003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -00308488 79.14330292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -00308489 79.14331055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -00308490 79.14331055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -00308491 79.14331055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -00308492 79.14333344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -00308493 79.14333344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -00308494 79.14333344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -00308495 79.14334106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -00314523 79.17990112 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -00314524 79.17990112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00314525 79.17990112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c38 -00314526 79.17990112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00314527 79.17990112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c38 -00314528 79.17992401 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -00314529 79.17992401 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -00314530 79.17992401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00314531 79.17992401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c48 -00314532 79.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00314533 79.17993164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c48 -00314534 79.17994690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -00314535 79.17995453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -00314536 79.17995453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00314537 79.17995453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c58 -00314538 79.17995453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00314539 79.17995453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c58 -00314540 79.17997742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -00314541 79.17997742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -00314542 79.17997742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00314543 79.17997742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c68 -00314544 79.17998505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00314545 79.17998505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c68 -00314546 79.18000793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -00314547 79.18000793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -00314548 79.18001556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00314549 79.18001556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c78 -00314550 79.18001556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00314551 79.18001556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c78 -00314552 79.18003082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -00314553 79.18003845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -00314554 79.18003845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00314555 79.18003845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c88 -00314556 79.18004608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00314557 79.18004608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c88 -00314558 79.18006134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -00314559 79.18006134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -00314560 79.18006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00314561 79.18006897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c98 -00314562 79.18006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00314563 79.18006897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c98 -00314564 79.18009186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -00314565 79.18009949 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -00314566 79.18009949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00358332 79.40029144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d98 -00358333 79.40029144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -00358334 79.40029907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -00358335 79.40029907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d98 -00358336 79.40029907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -00358337 79.40029907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -00358338 79.40032959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da8 -00358339 79.40032959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -00358340 79.40032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -00358341 79.40032959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da8 -00358342 79.40032959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -00358343 79.40032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -00358344 79.40035248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db8 -00358345 79.40035248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -00358346 79.40036011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -00358347 79.40036011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db8 -00358348 79.40036011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -00358349 79.40036011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -00358350 79.40038300 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc8 -00358351 79.40038300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -00358352 79.40038300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -00358353 79.40038300 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dc8 -00358354 79.40038300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -00358355 79.40039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -00358356 79.40040588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd8 -00358357 79.40041351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -00358358 79.40041351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -00358359 79.40041351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26dd8 -00358360 79.40041351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -00358361 79.40041351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -00358362 79.40044403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de8 -00358363 79.40044403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -00358364 79.40044403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -00358365 79.40044403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26de8 -00358366 79.40045166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -00358367 79.40045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -00358368 79.40046692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df8 -00358369 79.40047455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -00358370 79.40047455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -00358371 79.40047455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26df8 -00358372 79.40047455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -00358373 79.40047455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -00358374 79.40049744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e08 -00358375 79.40049744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef8 -00365875 79.43758392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -00365876 79.43758392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd08 -00365877 79.43758392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -00365878 79.43758392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -00365879 79.43758392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -00365880 79.43761444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd18 -00365881 79.43761444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -00365882 79.43761444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd18 -00365883 79.43761444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -00365884 79.43761444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -00365885 79.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -00365886 79.43763733 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd28 -00365887 79.43763733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -00365888 79.43764496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd28 -00365889 79.43764496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -00365890 79.43764496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -00365891 79.43764496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -00365892 79.43766785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd38 -00365893 79.43766785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -00365894 79.43766785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd38 -00365895 79.43766785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -00365896 79.43766785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -00365897 79.43767548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -00365898 79.43769836 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd48 -00365899 79.43769836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -00365900 79.43770599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -00365901 79.43770599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd48 -00365902 79.43770599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -00365903 79.43770599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -00365904 79.43772888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd58 -00365905 79.43772888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -00365906 79.43772888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -00365907 79.43772888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd58 -00365908 79.43773651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -00365909 79.43773651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -00365910 79.43775177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd68 -00365911 79.43775940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -00365912 79.43775940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -00365913 79.43775940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd68 -00365914 79.43775940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -00365915 79.43775940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -00365916 79.43778229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd78 -00365917 79.43778229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b8 -00365918 79.43778229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -00373718 79.47782898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c8 -00373719 79.47782898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -00373720 79.47782898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -00373721 79.47782898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c8 -00373722 79.47782898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -00373723 79.47783661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -00373724 79.47785950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d8 -00373725 79.47785950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -00373726 79.47785950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -00373727 79.47785950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310d8 -00373728 79.47785950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -00373729 79.47785950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -00373730 79.47789001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e8 -00373731 79.47789001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -00373732 79.47789001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -00373733 79.47789764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310e8 -00373734 79.47789764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -00373735 79.47789764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -00373736 79.47792053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -00373737 79.47792053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -00373738 79.47792053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f8 -00373739 79.47792816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -00373740 79.47792816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -00373741 79.47792816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x310f8 -00373742 79.47795105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31108 -00373743 79.47795105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -00373744 79.47795105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -00373745 79.47795105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31108 -00373746 79.47795105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -00373747 79.47795105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -00373748 79.47797394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -00373749 79.47797394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -00373750 79.47798157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -00373751 79.47798157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -00373752 79.47798157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -00373753 79.47798157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -00373754 79.47801208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -00373755 79.47801208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -00373756 79.47801208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -00373757 79.47801208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -00373758 79.47801208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -00373759 79.47801971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -00373760 79.47803497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -00373761 79.47803497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -00381766 79.51920319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -00381767 79.51920319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c8 -00381768 79.51920319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec28 -00381769 79.51920319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -00381770 79.51920319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365c8 -00381771 79.51920319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec28 -00381772 79.51923370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -00381773 79.51923370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d8 -00381774 79.51923370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec38 -00381775 79.51924133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -00381776 79.51924133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365d8 -00381777 79.51924133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec38 -00381778 79.51926422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -00381779 79.51926422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e8 -00381780 79.51926422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -00381781 79.51926422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec48 -00381782 79.51926422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e8 -00381783 79.51927185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec48 -00381784 79.51928711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -00381785 79.51928711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f8 -00381786 79.51929474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -00381787 79.51929474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec58 -00381788 79.51929474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f8 -00381789 79.51929474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec58 -00381790 79.51932526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -00381791 79.51932526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -00381792 79.51932526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec68 -00381793 79.51932526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36608 -00381794 79.51932526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec68 -00381795 79.51932526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36608 -00381796 79.51934814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -00381797 79.51934814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -00381798 79.51935577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec78 -00381799 79.51935577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36618 -00381800 79.51935577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec78 -00381801 79.51935577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36618 -00381802 79.51937866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -00381803 79.51937866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -00381804 79.51937866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec88 -00381805 79.51937866 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36628 -00381806 79.51938629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec88 -00381807 79.51938629 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36628 -00381808 79.51940155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -00381809 79.51940155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -00389288 79.55747986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a48 -00389289 79.55747986 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b8 -00389290 79.55747986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -00389291 79.55748749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a48 -00389292 79.55748749 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5b8 -00389293 79.55748749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -00389294 79.55751038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a58 -00389295 79.55751038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c8 -00389296 79.55751038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -00389297 79.55751038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a58 -00389298 79.55751038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5c8 -00389299 79.55751801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -00389300 79.55753326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a68 -00389301 79.55753326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d8 -00389302 79.55754089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -00389303 79.55754089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a68 -00389304 79.55754089 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5d8 -00389305 79.55754089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -00389306 79.55757141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a78 -00389307 79.55757141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e8 -00389308 79.55757141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a78 -00389309 79.55757141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -00389310 79.55757141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5e8 -00389311 79.55757141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -00389312 79.55759430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a88 -00389313 79.55759430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f8 -00389314 79.55760193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a88 -00389315 79.55760193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -00389316 79.55760193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b5f8 -00389317 79.55760193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -00389318 79.55762482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -00389319 79.55762482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b608 -00389320 79.55762482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -00389321 79.55762482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -00389322 79.55762482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b608 -00389323 79.55763245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -00389324 79.55764771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -00389325 79.55764771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b618 -00389326 79.55765533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -00389327 79.55765533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -00389328 79.55765533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b618 -00389329 79.55765533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -00389330 79.55768585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab8 -00389331 79.55768585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b628 -00397158 79.59747314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -00397159 79.59747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd8 -00397160 79.59747314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea18 -00397161 79.59747314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -00397162 79.59749603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -00397163 79.59749603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea28 -00397164 79.59749603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -00397165 79.59749603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -00397166 79.59750366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea28 -00397167 79.59750366 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -00397168 79.59752655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -00397169 79.59752655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea38 -00397170 79.59752655 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -00397171 79.59752655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -00397172 79.59752655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea38 -00397173 79.59752655 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -00397174 79.59755707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c08 -00397175 79.59755707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea48 -00397176 79.59755707 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -00397177 79.59756470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c08 -00397178 79.59756470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea48 -00397179 79.59756470 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -00397180 79.59758759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c18 -00397181 79.59758759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea58 -00397182 79.59758759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -00397183 79.59758759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c18 -00397184 79.59758759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea58 -00397185 79.59758759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -00397186 79.59761047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c28 -00397187 79.59761047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea68 -00397188 79.59761047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -00397189 79.59761810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c28 -00397190 79.59761810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea68 -00397191 79.59761810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -00397192 79.59764099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c38 -00397193 79.59764099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea78 -00397194 79.59764099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -00397195 79.59764099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c38 -00397196 79.59764099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea78 -00397197 79.59764099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -00397198 79.59767151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c48 -00397199 79.59767151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea88 -00397200 79.59767151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d8 -00397201 79.59767914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c48 -00404471 79.63598633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f8 -00404472 79.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc38 -00404473 79.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc38 -00404474 79.63600922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -00404475 79.63600922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -00404476 79.63600922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc48 -00404477 79.63601685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc48 -00404478 79.63603973 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -00404479 79.63604736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -00404480 79.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc58 -00404481 79.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc58 -00404482 79.63607025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45928 -00404483 79.63607025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45928 -00404484 79.63607025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc68 -00404485 79.63607788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc68 -00404486 79.63609314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45938 -00404487 79.63610077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45938 -00404488 79.63610077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc78 -00404489 79.63610077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc78 -00404490 79.63613129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45948 -00404491 79.63613129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45948 -00404492 79.63613129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc88 -00404493 79.63613129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc88 -00404494 79.63615417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45958 -00404495 79.63615417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45958 -00404496 79.63616180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc98 -00404497 79.63616180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc98 -00404498 79.63617706 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45968 -00404499 79.63618469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45968 -00404500 79.63618469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca8 -00404501 79.63618469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca8 -00404502 79.63620758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45978 -00404503 79.63620758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45978 -00404504 79.63620758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb8 -00404505 79.63621521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb8 -00404506 79.63623810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -00404507 79.63624573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -00404508 79.63624573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc8 -00404509 79.63624573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc8 -00404510 79.63626862 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -00404511 79.63626862 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -00404512 79.63626862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd8 -00404513 79.63627625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd8 -00404514 79.63629150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a8 -00409849 79.67641449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f28 -00409850 79.67641449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad48 -00409851 79.67642212 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad48 -00409852 79.67644501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f38 -00409853 79.67644501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f38 -00409854 79.67644501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad58 -00409855 79.67644501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad58 -00409856 79.67647552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f48 -00409857 79.67647552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f48 -00409858 79.67647552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad68 -00409859 79.67648315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad68 -00409860 79.67649841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f58 -00409861 79.67650604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f58 -00409862 79.67650604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad78 -00409863 79.67651367 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad78 -00409864 79.67652893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f68 -00409865 79.67652893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f68 -00409866 79.67652893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad88 -00409867 79.67653656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad88 -00409868 79.67655945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f78 -00409869 79.67655945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f78 -00409870 79.67655945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad98 -00409871 79.67655945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad98 -00409872 79.67658997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f88 -00409873 79.67658997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada8 -00409874 79.67658997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f88 -00409875 79.67658997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada8 -00409876 79.67661285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f98 -00409877 79.67661285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb8 -00409878 79.67662048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f98 -00409879 79.67662048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb8 -00409880 79.67664337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00409881 79.67664337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc8 -00409882 79.67664337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa8 -00409883 79.67664337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc8 -00409884 79.67664337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fa8 -00409885 79.67667389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add8 -00409886 79.67667389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb8 -00409887 79.67667389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add8 -00409888 79.67688751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fb8 -00409889 79.67691803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade8 -00409890 79.67691803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade8 -00409891 79.67691803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc8 -00409892 79.67691803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42fc8 -00422127 79.95777893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422128 79.95816803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422129 79.95836639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422130 79.95874786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422131 79.96118164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422132 79.96154785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422133 79.96185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422134 79.96223450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422135 79.96765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422136 79.96802521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422137 79.96995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422138 79.97032166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422139 79.97102356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422140 79.97139740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422141 79.98031616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422142 79.98070526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422143 80.01246643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422144 80.01283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422145 80.01335907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422146 80.01373291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422147 80.01834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422148 80.01875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422149 80.03926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422150 80.03961945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422151 80.04032135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422152 80.04071808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422153 80.04215240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422154 80.04252625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422155 80.04273224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422156 80.04313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422157 80.04837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422158 80.04875183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422159 80.05159760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422160 80.05196381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422161 80.05577087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422162 80.05612946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422163 80.05690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422164 80.05725861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422165 80.05963898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422166 80.06001282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422167 80.06243134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422168 80.06281281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422169 80.06937408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422170 80.06975555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422171 80.07228851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422172 80.07270813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422173 80.07387543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422174 80.07427979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422175 80.07762909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422176 80.07802582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422177 80.07917786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422178 80.07955933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422179 80.09279633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422180 80.09315491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422181 80.09518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422182 80.09555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422183 80.09606171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422184 80.09642792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422185 80.09706116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422186 80.09745026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422187 80.09999847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422188 80.10036469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422189 80.10578918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422190 80.10617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422191 80.10905457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422192 80.10942841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422193 80.11174774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422194 80.11214447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422195 80.11627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422196 80.11663055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422197 80.11778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422198 80.11814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422199 80.11919403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422200 80.11959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422201 80.12126160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422202 80.12163544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422203 80.12580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422204 80.12628937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422205 80.13665009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422206 80.13703918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422207 80.14064026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422208 80.14100647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422209 80.14317322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422210 80.14355469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422211 80.14959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422212 80.14996338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422213 80.15033722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422214 80.15070343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422215 80.15615845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422216 80.15656281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422217 80.15927887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422218 80.15966797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422219 80.16730499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422220 80.16768646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422221 80.17134094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422222 80.17173767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422223 80.17871857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422224 80.17908478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422225 80.18107605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422226 80.18149567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422227 80.18195343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422228 80.18237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422229 80.18380737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422230 80.18415833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422231 80.19219971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422232 80.19256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422233 80.19432068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422234 80.19467926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422235 80.19531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422236 80.19568634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422237 80.19931793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422238 80.19972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422239 80.20261383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422240 80.20302582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422241 80.20499420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422242 80.20534515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422243 80.20749664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422244 80.20784760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422245 80.20973969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422246 80.21009064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422247 80.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422248 80.21306610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422249 80.21434784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422250 80.21470642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422251 80.21536255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422252 80.21572113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422253 80.21667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422254 80.21707153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422255 80.21830750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422256 80.21874237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422257 80.22202301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422258 80.22239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422259 80.22277069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422260 80.22308350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422261 80.22374725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422262 80.22410583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422263 80.22541046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422264 80.22576904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422265 80.22602081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422266 80.22637177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422267 80.22663116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422268 80.22695160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422269 80.22808838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422270 80.22844696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422271 80.23140717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422272 80.23176575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422273 80.23450470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422274 80.23485565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422275 80.23773956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422276 80.23812103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422277 80.24321747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422278 80.24356842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422279 80.26056671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422280 80.26093292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422281 80.28769684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422282 80.28812408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422283 80.28838348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422284 80.28880310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422285 80.30464935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422286 80.30502319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422287 80.33241272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422288 80.33287811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422289 80.33341980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422290 80.33387756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422291 80.35192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422292 80.35231018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422293 80.35298920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422294 80.35340881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422295 80.35622406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422296 80.35666656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422297 80.35707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422298 80.35751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422299 80.35876465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422300 80.35919952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422301 80.36224365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422302 80.36268616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422303 80.36354828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422304 80.36399078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422305 80.36559296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422306 80.36602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422307 80.36666107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422308 80.36706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422309 80.36785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422310 80.36830139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422311 80.37510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422312 80.37554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422313 80.38124847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422314 80.38169861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422315 80.38269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422316 80.38312531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422317 80.38649750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422318 80.38690186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422319 80.38726044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422320 80.38771820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422321 80.39002228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422322 80.39048767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422323 80.41939545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422324 80.41979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422325 80.42092896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422326 80.42129517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422327 80.42225647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422328 80.42263031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422329 80.42454529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422330 80.42489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422331 80.42717743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422332 80.42757416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422333 80.43293762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422334 80.43331909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422335 80.44399261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422336 80.44436646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422337 80.45517731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422338 80.45554352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422339 80.45822144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422340 80.45865631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422341 80.45956421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422342 80.45994568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422343 80.46029663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422344 80.46066284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422345 80.46457672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422346 80.46494293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422347 80.46769714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422348 80.46807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422349 80.47188568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422350 80.47229767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422351 80.47573090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422352 80.47611237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422353 80.48371887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422354 80.48409271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422355 80.48596191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422356 80.48632050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422357 80.49302673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422358 80.49339294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422359 80.49645996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422360 80.49687958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422361 80.49713898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422362 80.49752045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422363 80.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422364 80.50637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422365 80.50972748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422366 80.51007843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422367 80.51333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422368 80.51369476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422369 80.51407623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422370 80.51444244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422371 80.51580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422372 80.51618195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422373 80.51873016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422374 80.51908875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422375 80.52112579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422376 80.52149200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422377 80.52512360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422378 80.52549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422379 80.53649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422380 80.53688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422381 80.53770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422382 80.53809357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422384 80.54436493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422385 80.54473877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422386 80.55101776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422387 80.55138397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422388 80.55467224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422389 80.55504608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422390 80.55599976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422391 80.55637360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422392 80.56284332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422393 80.56320953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422394 80.56464386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422395 80.56501007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422396 80.56929779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422397 80.56970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422398 80.57144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422399 80.57182312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422400 80.57274628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422401 80.57310486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422402 80.57678986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422403 80.57715607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422404 80.58182526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422405 80.58219910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422406 80.58512878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422407 80.58550262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422408 80.58910370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422409 80.58953094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422410 80.59040070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422411 80.59078979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422412 80.59970856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422413 80.60006714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422414 80.60227203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422415 80.60263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422416 80.60366821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422417 80.60408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422418 80.61223602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422419 80.61259460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422420 80.61599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422421 80.61637115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422422 80.61855316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422423 80.61895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422424 80.62148285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422425 80.62190247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422426 80.62232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422427 80.62272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422428 80.62996674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422429 80.63034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422430 80.63276672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422431 80.63312531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422432 80.63349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422433 80.63388062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422434 80.63571930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422435 80.63605499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422436 80.63846588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422437 80.63882446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422438 80.64129639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422439 80.64169312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422440 80.64282990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422441 80.64319611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422442 80.64433289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422443 80.64471436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422444 80.64555359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422445 80.64596558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422446 80.65045166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422447 80.65081787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422448 80.65438080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422449 80.65475464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422450 80.65502167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422451 80.65538025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422452 80.66330719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422453 80.66369629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422454 80.66572571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422455 80.66609192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422456 80.66684723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422457 80.66720581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422458 80.66887665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422459 80.66928864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422460 80.67358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422461 80.67394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422462 80.67558289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422463 80.67597198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422464 80.67754364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422465 80.67792511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422466 80.67888641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422467 80.67926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422468 80.68049622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422469 80.68085480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422470 80.68424225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422471 80.68459320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422472 80.68733978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422473 80.68772125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422474 80.69075775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422475 80.69113922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422476 80.69591522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422477 80.69628143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422478 80.69748688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422479 80.69786835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422480 80.70428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422481 80.70464325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422482 80.70635223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422483 80.70672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422484 80.70889282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422485 80.70928192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422486 80.71553040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422487 80.71589661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422488 80.71631622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422489 80.71668243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422490 80.71782684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422491 80.71820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422492 80.71966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422493 80.72003174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422494 80.72459412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422495 80.72499847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422496 80.72811890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422497 80.72853851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422498 80.73188782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422499 80.73226929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422500 80.73278809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422501 80.73316193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422502 80.73669434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422503 80.73712158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422504 80.74197388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422505 80.74237061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422506 80.74326324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422507 80.74363708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422508 80.74421692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422509 80.74456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422510 80.74641418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422511 80.74682617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422512 80.74817657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422513 80.74857330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422514 80.74976349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422515 80.75018311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422516 80.75377655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422517 80.75420380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422518 80.75680542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422519 80.75720978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422520 80.75980377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422521 80.76021576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422522 80.76318359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422523 80.76354218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422524 80.77165222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422525 80.77209473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422526 80.77375793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422527 80.77418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422598 80.90971375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422599 80.91006470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422600 80.91281128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422601 80.91316223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422602 80.91605377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422603 80.91641235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422604 80.91720581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422605 80.91758728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422606 80.92398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422607 80.92436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422608 80.92520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422609 80.92557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422610 80.92589569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422611 80.92627716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422612 80.92895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422613 80.92930603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422614 80.92961121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422615 80.92999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422616 80.93424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422617 80.93461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422618 80.93599701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422619 80.93636322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422620 80.93846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422621 80.93884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422622 80.94333649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422623 80.94373322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422624 80.94573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422625 80.94608307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422626 80.94795990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422627 80.94834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422628 80.95542145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422629 80.95577240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422630 80.96280670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422631 80.96315765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422632 80.98722076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422633 80.98760986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422634 80.99034119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422635 80.99069977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422636 80.99573517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422637 80.99614716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422638 80.99883270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422639 80.99920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422640 81.00204468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422641 81.00244141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422642 81.00351715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422643 81.00389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422644 81.00979614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422645 81.01016235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422646 81.02629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422647 81.02667999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422648 81.02694702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422649 81.02731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422650 81.02890778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422651 81.02933502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422652 81.03072357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422653 81.03112030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422654 81.03659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422655 81.03693390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422656 81.03895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422657 81.03931427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422658 81.04351044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422659 81.04389191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422660 81.04531097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422661 81.04566193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422662 81.04727936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422663 81.04763031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422664 81.05020142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422665 81.05057526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422666 81.05244446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422667 81.05284882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422668 81.05559540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422669 81.05594635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422670 81.05760956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422671 81.05797577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422672 81.06137848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422673 81.06174469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422674 81.06310272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422675 81.06346893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422676 81.06551361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422677 81.06589508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422678 81.07051849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422679 81.07086945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422680 81.07372284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422681 81.07407379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422682 81.07492828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422683 81.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422684 81.07786560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422685 81.07824707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422686 81.07904053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422687 81.07942963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422688 81.08176422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422689 81.08213043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422690 81.08528137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422691 81.08564758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422692 81.08692169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422693 81.08728027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422694 81.15457916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422695 81.16197205 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422696 81.16200256 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422697 81.16202545 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00422698 81.16204071 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00422699 81.16216278 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422700 81.16216278 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422701 81.16222382 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422702 81.16224670 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422703 81.22200012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422704 81.28922272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422705 81.35652161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422706 81.43040466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422707 81.50085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422708 81.56809235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422709 81.63540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422710 81.70230103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422711 81.76946259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422712 81.83605957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422713 81.90203094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422714 81.96895599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422715 82.03593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422716 82.10285187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422717 82.16988373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422718 82.20891571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422719 82.20931244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422720 82.20954132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422721 82.20990753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422722 82.21063995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422723 82.21101379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422724 82.21118927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422725 82.21157837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422726 82.21184540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422727 82.21222687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422728 82.22296143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422729 82.22338867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422730 82.23329926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422731 82.23372650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422732 82.24975586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422733 82.25014496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422734 82.26546478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422735 82.26591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422736 82.28673553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422737 82.28717804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422738 82.28919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422739 82.28962708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422740 82.29422760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422741 82.29465485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422742 82.32317352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422743 82.32363129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422744 82.32613373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422745 82.32653046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422746 82.32771301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422747 82.32808685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422748 82.33569336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422749 82.33610535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422750 82.34815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422751 82.34854126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422752 82.35000610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422753 82.35042572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422754 82.35355377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422755 82.35404968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422756 82.39834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422757 82.39875793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422758 82.40086365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422759 82.40124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422760 82.42884827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422761 82.42922211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422762 82.45575714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422763 82.45613861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422764 82.45684814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422765 82.45721436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422766 82.48559570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422767 82.48596954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422768 82.50078583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422769 82.50117493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422770 82.51731110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422771 82.51769257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422772 82.51840210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422773 82.51877594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422774 82.52178192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422775 82.52216339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422776 82.54896545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422777 82.54933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422778 82.55978394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422779 82.56015015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422780 82.57280731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422781 82.57318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422782 82.58076477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422783 82.58116913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422784 82.59152222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422785 82.59188843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422786 82.60581970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422787 82.60619354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422788 82.60923767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422789 82.60959625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422790 82.61141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422791 82.61177826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422792 82.61277008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422793 82.61312103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422794 82.62934875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422795 82.62969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422796 82.63105774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422797 82.63140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422798 82.65531158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422799 82.65567017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422800 82.66253662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422801 82.66290283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422802 82.68624115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422803 82.68661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422804 82.72088623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422805 82.72126007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422806 82.73168182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422807 82.73203278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422808 82.73865509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422809 82.73902893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422810 82.74106598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422811 82.74147797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422812 82.74235535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422813 82.74277496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422814 82.74448395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422815 82.74490356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422816 82.75324249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422817 82.75361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422818 82.76197052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422819 82.76238251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422820 82.76307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422821 82.76350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422822 82.76406860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422823 82.76441956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422824 82.76541138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422825 82.76577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422826 82.76657867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422827 82.76696014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422828 82.77826691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422829 82.77869415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422830 82.78093719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422831 82.78137207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422832 82.80100250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422833 82.80142975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422834 82.83007813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422835 82.83043671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422836 82.83722687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422837 82.83762360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422838 82.90493774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422839 82.90774536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422840 82.90811920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422841 82.91626740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422842 82.91661835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422843 82.91854095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422844 82.91889191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422845 82.92314148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422846 82.92349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422847 82.92840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422848 82.92876434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422849 82.96218109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422850 82.96257019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422851 82.97979736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422852 82.98021698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422853 83.04730988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422854 83.04872894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422855 83.04911041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422856 83.05244446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422857 83.05284119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422858 83.05619812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422859 83.05661011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422860 83.06293488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422861 83.06328583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422862 83.07687378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422863 83.07724762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422864 83.08042145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422865 83.08080292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422866 83.08601379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422867 83.08636475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422868 83.08763885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422869 83.08799744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422870 83.09477997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422871 83.09515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422872 83.11313629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422873 83.11350250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422874 83.11373138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422875 83.11415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422876 83.11632538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422877 83.11667633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422878 83.12618256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422879 83.12655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422880 83.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422881 83.12873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422882 83.12931061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422883 83.12973785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422884 83.13572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422885 83.13610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422886 83.13868713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422887 83.13906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422888 83.14466858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422889 83.14505768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422890 83.14663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422891 83.14705658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422892 83.15802765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422893 83.15838623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422894 83.17877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422895 83.17913055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422896 83.18099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422897 83.18135071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422898 83.22144318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422899 83.22189331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422900 83.22243500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422901 83.22282410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422902 83.23139191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422903 83.23176575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422904 83.27189636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422905 83.27236176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422906 83.27585602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422907 83.27629852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422908 83.28042603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422909 83.28086090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422910 83.28189850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422911 83.28234100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422912 83.28305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422913 83.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422914 83.28660583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422915 83.28700256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422916 83.30842590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422917 83.30887604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422918 83.31134033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422919 83.31176758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422920 83.31819916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422921 83.31863403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422922 83.35964966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422923 83.36009979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422924 83.36959076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422925 83.37003326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422926 83.38007355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422927 83.38050842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422928 83.38463593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422929 83.38507843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422930 83.38676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422931 83.38714600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422932 83.40414429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422933 83.40454865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422934 83.44264221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422935 83.44303131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422936 83.46549988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422937 83.46586609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422938 83.46920013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422939 83.46956635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422940 83.47599792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422941 83.47644806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422942 83.48346710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422943 83.48387146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422944 83.50474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422945 83.50512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422946 83.51490021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422947 83.51530457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422948 83.51983643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422949 83.52021027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422950 83.53326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422951 83.53365326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422952 83.53459930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422953 83.53497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422954 83.53773499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422955 83.53810883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422956 83.54190826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422957 83.54228210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422958 83.56657410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422959 83.56694794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422960 83.56711578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422961 83.56748962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422962 83.61749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422963 83.61787415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422964 83.62437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422965 83.62474060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422966 83.64533997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422967 83.64572144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422968 83.65550995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422969 83.65589142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422970 83.66890717 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422971 83.66895294 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422972 83.66898346 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00422973 83.66901398 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00422974 83.66913605 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422975 83.66913605 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422976 83.66918945 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00422977 83.66921234 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00422978 83.67432404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422979 83.67473602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422980 83.70605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422981 83.70644379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422982 83.71842957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422983 83.71883392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422984 83.72663879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422985 83.72706604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422986 83.73442078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422987 83.73482513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422988 83.75350189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422989 83.75386810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422990 83.78208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422991 83.78251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422992 83.80056000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422993 83.80096436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422994 83.80284882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422995 83.80318451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422996 83.85617828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422997 83.85659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422998 83.86245728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00422999 83.86288452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423000 83.86597443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423001 83.86634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423002 83.88019562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423003 83.88057709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423004 83.88090515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423005 83.88133240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423006 83.88309479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423007 83.88356781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423008 83.88452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423009 83.88491058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423010 83.88851166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423011 83.88896942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423012 83.89479828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423013 83.89517975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423014 83.89778900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423015 83.89823914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423016 83.90024567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423017 83.90068817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423018 83.90243530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423019 83.90287018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423020 83.90398407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423021 83.90442657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423022 83.91629791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423023 83.91665649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423024 83.91864777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423025 83.91899872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423026 83.91937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423027 83.91974640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423028 83.93206024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423029 83.93242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423030 83.93315887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423031 83.93353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423032 83.95172882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423033 83.95210266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423034 83.95344543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423035 83.95381165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423036 83.96305084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423037 83.96343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423038 83.96372223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423039 83.96409607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423040 83.97277832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423041 83.97314453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423042 83.97466278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423043 83.97503662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423044 83.97904205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423045 83.97947693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423046 83.97991943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423047 83.98030853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423048 83.98512268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423049 83.98554230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423050 83.98675537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423051 83.98714447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423052 83.99358368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423053 83.99394989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423054 84.01730347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423055 84.01768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423056 84.01926422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423057 84.01961517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423058 84.02033234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423059 84.02071381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423060 84.02232361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423061 84.02270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423062 84.02953339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423063 84.02989197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423064 84.03326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423065 84.03363800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423066 84.03631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423067 84.03668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423068 84.03697968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423069 84.03735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423070 84.04341888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423071 84.04378510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423072 84.04435730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423073 84.04473877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423074 84.05562592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423075 84.05600739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423076 84.10235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423077 84.10274506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423078 84.10682678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423079 84.10719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423080 84.11204529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423081 84.11239624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423082 84.11291504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423083 84.11328125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423084 84.11479950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423085 84.11518097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423086 84.11750031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423087 84.11789703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423088 84.12226105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423089 84.12266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423090 84.12648010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423091 84.12685394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423092 84.13748932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423093 84.13785553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423094 84.13881683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423095 84.13922882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423096 84.13986969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423097 84.14022064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423098 84.14276123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423099 84.14315796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423100 84.14369965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423101 84.14406586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423102 84.14768982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423103 84.14804077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423104 84.14995575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423105 84.15033722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423106 84.15107727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423107 84.15145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423108 84.15679932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423109 84.15718079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423110 84.15748596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423111 84.15789032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423112 84.16099548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423113 84.16138458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423114 84.18053436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423115 84.18090057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423116 84.18489075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423117 84.18526459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423118 84.19061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423119 84.19097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423120 84.19844818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423121 84.19886017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423122 84.20012665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423123 84.20050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423124 84.20314026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423125 84.20352936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423126 84.20378876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423127 84.20416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423128 84.20559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423129 84.20595551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423130 84.20641327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423131 84.20678711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423132 84.20978546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423133 84.21015930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423134 84.21408081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423135 84.21443939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423136 84.21467590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423137 84.21504974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423138 84.21754456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423139 84.21791077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423140 84.22023010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423141 84.22060394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423142 84.22389984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423143 84.22425842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423144 84.22926331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423145 84.22966766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423146 84.24526215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423147 84.24569702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423148 84.25463104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423149 84.25500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423150 84.26512909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423151 84.26552582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423152 84.27470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423153 84.27512360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423154 84.27572632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423155 84.27616119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423156 84.27664948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423157 84.27706909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423158 84.31782532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423159 84.31829071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423160 84.32611084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423161 84.32652283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423162 84.32934570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423163 84.32978821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423164 84.33084106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423165 84.33127594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423166 84.33160400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423167 84.33203125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423168 84.33348846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423169 84.33389282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423170 84.33677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423171 84.33721924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423172 84.33957672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423173 84.34001923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423174 84.34060669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423175 84.34105682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423176 84.34165955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423177 84.34210205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423178 84.34384155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423179 84.34429932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423180 84.36114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423181 84.36150360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423182 84.36466217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423183 84.36502075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423184 84.36712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423185 84.36753845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423186 84.36771393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423187 84.36813354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423188 84.37063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423189 84.37108612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423190 84.37998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423191 84.38040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423192 84.38102722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423193 84.38146210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423194 84.38240814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423195 84.38277435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423196 84.38536072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423197 84.38580322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423198 84.38825226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423199 84.38868713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423200 84.38898468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423201 84.38935852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423202 84.38953400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423203 84.38996124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423204 84.39028931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423205 84.39072418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423206 84.39709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423207 84.39752960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423208 84.40325165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423209 84.40364838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423210 84.40586853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423211 84.40631104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423212 84.40785980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423213 84.40823364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423214 84.41275787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423215 84.41312408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423216 84.41387177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423217 84.41426849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423218 84.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423219 84.41645813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423220 84.42086029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423221 84.42121887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423222 84.42267609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423223 84.42304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423224 84.43054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423225 84.43092346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423226 84.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423227 84.43471527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423228 84.43788147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423229 84.43826294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423230 84.44121552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423231 84.44158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423232 84.44241333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423233 84.44278717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423234 84.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423235 84.44470978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423236 84.45144653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423237 84.45182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423238 84.45573425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423239 84.45610809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423240 84.45760345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423241 84.45798492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423242 84.46847534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423243 84.46886444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423244 84.46952820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423245 84.46990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423246 84.47359467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423247 84.47397614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423248 84.47474670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423249 84.47512054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423250 84.47548676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423251 84.47586060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423252 84.47802734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423253 84.47839355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423254 84.48075867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423255 84.48114014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423256 84.48769379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423257 84.48806763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423258 84.49140167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423259 84.49182129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423260 84.49877930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423261 84.49915314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423262 84.50089264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423263 84.50126648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423264 84.50237274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423265 84.50274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423266 84.50382996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423267 84.50421906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423268 84.50724792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423269 84.50762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423270 84.51013947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423271 84.51050568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423272 84.51243591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423273 84.51280975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423274 84.51498413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423275 84.51538849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423276 84.51590729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423277 84.51627350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423278 84.52897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423279 84.52937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423280 84.53863525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423281 84.53902435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423282 84.54212952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423283 84.54250336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423284 84.54389191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423285 84.54426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423286 84.54515076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423287 84.54553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423288 84.54932404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423289 84.54971313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423290 84.55075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423291 84.55113220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423292 84.55477142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423293 84.55515289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423294 84.55629730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423295 84.55667877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423296 84.55847168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423297 84.55883789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423298 84.55990601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423299 84.56027222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423300 84.56186676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423301 84.56224823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423302 84.56623840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423303 84.56658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423304 84.56735229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423305 84.56772614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423306 84.56844330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423307 84.56881714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423308 84.57044220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423309 84.57083893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423310 84.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423311 84.57199097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423312 84.57312775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423313 84.57353973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423314 84.58470154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423315 84.58508301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423316 84.58683014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423317 84.58721924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423318 84.58867645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423319 84.58908844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423320 84.59115601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423321 84.59155273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423322 84.59823608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423323 84.59860992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423324 84.59883118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423325 84.59920502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423326 84.60710144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423327 84.60745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423328 84.61109161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423329 84.61146545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423330 84.61302185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423331 84.61341095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423332 84.61427307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423333 84.61463928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423334 84.61667633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423335 84.61704254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423336 84.62199402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423337 84.62236786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423338 84.62293243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423339 84.62331390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423340 84.62371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423341 84.62410736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423342 84.62674713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423343 84.62711334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423344 84.63125610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00423345 84.63126373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00423346 84.63128662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00423347 84.63128662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00423348 84.63128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423349 84.63131714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00423350 84.63131714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00423351 84.63156128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00423352 84.63156128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00423353 84.63159180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00423354 84.63159180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00423355 84.63161469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00423356 84.63162231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00423357 84.63164520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00423358 84.63164520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00423359 84.63167572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00423360 84.63167572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00423361 84.63168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423362 84.63169861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00423363 84.63170624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00423364 84.63172913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00423365 84.63172913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00423366 84.63175964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00423367 84.63175964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00423368 84.63179016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00423369 84.63179016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00423370 84.63181305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00423371 84.63181305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00423372 84.63184357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00423373 84.63184357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00423374 84.63187408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00423375 84.63187408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00423376 84.63189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00423377 84.63190460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00423378 84.63192749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00423379 84.63192749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00423380 84.63195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00423381 84.63195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00423382 84.63198090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00423383 84.63198853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00423384 84.63201141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00423385 84.63201141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00423386 84.63204193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00423387 84.63204193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00423388 84.63206482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00423389 84.63207245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00423390 84.63209534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00423391 84.63209534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00423392 84.63211823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00423393 84.63212585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00423394 84.63214874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00423395 84.63215637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00423396 84.63217926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00423397 84.63217926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00423398 84.63220215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00423399 84.63220978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00423400 84.63224030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00423401 84.63224030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00423402 84.63226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00423403 84.63227081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00423404 84.63229370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00423405 84.63229370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00423406 84.63231659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00423407 84.63231659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00423408 84.63234711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00423409 84.63235474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00423410 84.63237762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00423411 84.63237762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00423412 84.63240051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00423413 84.63240051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00423414 84.63243103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00423415 84.63243866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00423416 84.63246155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00423417 84.63246155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00423418 84.63247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423419 84.63248444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00423420 84.63249207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00423421 84.63273621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00423422 84.63273621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00423423 84.63275909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00423424 84.63275909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00423425 84.63278961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00423426 84.63279724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00423427 84.63282013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00423428 84.63282013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00423429 84.63284302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00423430 84.63284302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00423431 84.63287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00423432 84.63287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423433 84.63287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00423434 84.63290405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00423435 84.63290405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00423436 84.63292694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00423437 84.63293457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00423438 84.63295746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00423439 84.63295746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00423440 84.63298798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00423441 84.63298798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00423442 84.63302612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00423443 84.63303375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00423444 84.63305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00423445 84.63305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00423446 84.63307953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00423447 84.63308716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00423448 84.63311005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00423449 84.63311005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00423450 84.63314819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00423451 84.63315582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00423452 84.63319397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00423453 84.63320160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00423454 84.63323212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00423455 84.63323212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00423456 84.63325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00423457 84.63325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00423458 84.63329315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00423459 84.63330078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00423460 84.63332367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00423461 84.63333130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00423462 84.63335419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00423463 84.63335419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00423464 84.63338470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00423465 84.63338470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00423466 84.63341522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00423467 84.63342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00423468 84.63346100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00423469 84.63346100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00423470 84.63348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00423471 84.63349152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00423472 84.63352966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00423473 84.63353729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00423474 84.63356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00423475 84.63356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00423476 84.63359070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00423477 84.63359070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00423478 84.63362122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00423479 84.63362122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00423480 84.63364410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00423481 84.63364410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00423482 84.63366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00423483 84.63367462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00423484 84.63368988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423485 84.63370514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00423486 84.63370514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00423487 84.63394928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00423488 84.63394928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00423489 84.63397217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00423490 84.63397980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00423491 84.63400269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00423492 84.63400269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00423493 84.63402557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00423494 84.63403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00423495 84.63406372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00423496 84.63406372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00423497 84.63407898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423498 84.63408661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00423499 84.63408661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00423500 84.63410950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00423501 84.63411713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00423502 84.63414764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00423503 84.63414764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00423504 84.63417053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00423505 84.63417816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00423506 84.63420105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00423507 84.63420105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00423508 84.63422394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00423509 84.63423157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00423510 84.63426208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00423511 84.63426208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00423512 84.63428497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00423513 84.63428497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00423514 84.63430786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00423515 84.63431549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00423516 84.63434601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00423517 84.63434601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00423518 84.63436890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00423519 84.63436890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00423520 84.63439178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00423521 84.63439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00423522 84.63442230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00423523 84.63442230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00423524 84.63445282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00423525 84.63446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00423526 84.63448334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00423527 84.63448334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00423528 84.63449860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423529 84.63450623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00423530 84.63450623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00423531 84.63453674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00423532 84.63475037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00423533 84.63478088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00423534 84.63478088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00423535 84.63480377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00423536 84.63481140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00423537 84.63483429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00423538 84.63483429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00423539 84.63485718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00423540 84.63486481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00423541 84.63489532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00423542 84.63489532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00423543 84.63489532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423544 84.63491821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00423545 84.63491821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00423546 84.63494110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00423547 84.63494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00423548 84.63497925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00423549 84.63497925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00423550 84.63500214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00423551 84.63500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00423552 84.63503265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00423553 84.63503265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00423554 84.63505554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00423555 84.63505554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00423556 84.63508606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00423557 84.63509369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00423558 84.63511658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00423559 84.63511658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00423560 84.63513947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00423561 84.63513947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00423562 84.63516998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00423563 84.63517761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00423564 84.63520050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00423565 84.63520050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00423566 84.63522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00423567 84.63523102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00423568 84.63525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00423569 84.63525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00423570 84.63528442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00423571 84.63528442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00423572 84.63530731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00423573 84.63531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00423574 84.63533783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00423575 84.63533783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00423576 84.63536835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00423577 84.63536835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00423578 84.63539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00423579 84.63539886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00423580 84.63542175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00423581 84.63542175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00423582 84.63545227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00423583 84.63545227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00423584 84.63548279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00423585 84.63548279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00423586 84.63550568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00423587 84.63550568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00423588 84.63553619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00423589 84.63553619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00423590 84.63556671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00423591 84.63556671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00423592 84.63558960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00423593 84.63559723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00423594 84.63562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00423595 84.63562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00423596 84.63565063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00423597 84.63565063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00423598 84.63567352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00423599 84.63568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00423600 84.63570404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00423601 84.63570404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00423602 84.63573456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00423603 84.63573456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00423604 84.63575745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00423605 84.63576508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00423606 84.63578796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00423607 84.63578796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00423608 84.63581085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00423609 84.63581848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00423610 84.63584900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00423611 84.63584900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00423612 84.63587189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00423613 84.63587189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00423614 84.63589478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00423615 84.63590240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00423616 84.63593292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00423617 84.63593292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00423618 84.63595581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00423619 84.63595581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00423620 84.63597870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00423621 84.63598633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00423622 84.63600922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00423623 84.63600922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00423624 84.63603973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00423625 84.63603973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00423626 84.63606262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00423627 84.63607025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00423628 84.63609314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00423629 84.63609314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00423630 84.63612366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00423631 84.63613129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00423632 84.63615417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00423633 84.63615417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00423634 84.63617706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00423635 84.63617706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00423636 84.63620758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00423637 84.63620758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00423638 84.63623810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00423639 84.63623810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00423640 84.63626099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00423641 84.63626862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00423642 84.63629150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00423643 84.63629150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00423644 84.63632202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00423645 84.63632202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00423646 84.63634491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00423647 84.63635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00423648 84.63637543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00423649 84.63637543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00423650 84.63640594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00423651 84.63640594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00423652 84.63642883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00423653 84.63643646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00423654 84.63645935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00423655 84.63645935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00423656 84.63648987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00423657 84.63648987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00423658 84.63652039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00423659 84.63652039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00423660 84.63654327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00423661 84.63654327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00423662 84.63656616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00423663 84.63657379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00423664 84.63660431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00423665 84.63660431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00423666 84.63662720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00423667 84.63662720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00423668 84.63665009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00423669 84.63665771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00423670 84.63668823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00423671 84.63668823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00423672 84.63671112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00423673 84.63671112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00423674 84.63673401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00423675 84.63674164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00423676 84.63676453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00423677 84.63676453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00423678 84.63679504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00423679 84.63680267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00423680 84.63682556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00423681 84.63682556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00423682 84.63684845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00423683 84.63684845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00423684 84.63687897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00423685 84.63688660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00423686 84.63690948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00423687 84.63690948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00423688 84.63693237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00423689 84.63693237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00423690 84.63696289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00423691 84.63696289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00423692 84.63699341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00423693 84.63699341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00423694 84.63701630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423695 84.63701630 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00423696 84.63702393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00423697 84.63704681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00423698 84.63704681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00423699 84.63728333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00423700 84.63728333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00423701 84.63730621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00423702 84.63731384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00423703 84.63733673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00423704 84.63733673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00423705 84.63735962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00423706 84.63735962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00423707 84.63739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00423708 84.63739777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00423709 84.63740540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423710 84.63742065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00423711 84.63742065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00423712 84.63744354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00423713 84.63745117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00423714 84.63748169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00423715 84.63748169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00423716 84.63750458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00423717 84.63750458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00423718 84.63752747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00423719 84.63753510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00423720 84.63755798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00423721 84.63755798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00423722 84.63758850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00423723 84.63759613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00423724 84.63761902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00423725 84.63761902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00423726 84.63764191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00423727 84.63764191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00423728 84.63767242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00423729 84.63768005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00423730 84.63770294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00423731 84.63770294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00423732 84.63772583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00423733 84.63773346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00423734 84.63775635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00423735 84.63775635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00423736 84.63778687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00423737 84.63778687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00423738 84.63780975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00423739 84.63781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00423740 84.63784027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00423741 84.63784027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00423742 84.63787079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00423743 84.63787079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00423744 84.63789368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00423745 84.63790131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00423746 84.63792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00423747 84.63792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00423748 84.63795471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00423749 84.63795471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00423750 84.63796234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423751 84.63797760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00423752 84.63798523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00423753 84.63820648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00423754 84.63821411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00423755 84.63823700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00423756 84.63823700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00423757 84.63826752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00423758 84.63827515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00423759 84.63829803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00423760 84.63829803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00423761 84.63832092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00423762 84.63832092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00423763 84.63834381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423764 84.63835144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00423765 84.63835144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00423766 84.63838196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00423767 84.63838196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00423768 84.63840485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00423769 84.63840485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00423770 84.63843536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00423771 84.63843536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00423772 84.63846588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00423773 84.63846588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00423774 84.63848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00423775 84.63849640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00423776 84.63851929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00423777 84.63851929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00423778 84.63854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00423779 84.63854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00423780 84.63857269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00423781 84.63858032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00423782 84.63860321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00423783 84.63860321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00423784 84.63863373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00423785 84.63863373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00423786 84.63865662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00423787 84.63866425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00423788 84.63868713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00423789 84.63868713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00423790 84.63871002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00423791 84.63871765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00423792 84.63874817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00423793 84.63874817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00423794 84.63877106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00423795 84.63877106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00423796 84.63879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00423797 84.63880157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00423798 84.63883209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00423799 84.63883209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00423800 84.63885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00423801 84.63885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00423802 84.63887787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00423803 84.63888550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00423804 84.63890839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00423805 84.63890839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00423806 84.63893890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00423807 84.63893890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00423808 84.63894653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423809 84.63896179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00423810 84.63896942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00423811 84.63919067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00423812 84.63919067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00423813 84.63922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00423814 84.63922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00423815 84.63924408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00423816 84.63925171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00423817 84.63927460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00423818 84.63927460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00423819 84.63930511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00423820 84.63930511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00423821 84.63931274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423822 84.63933563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00423823 84.63933563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00423824 84.63935852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00423825 84.63935852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00423826 84.63938904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00423827 84.63938904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00423828 84.63941956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00423829 84.63941956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00423830 84.63944244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00423831 84.63944244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00423832 84.63946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00423833 84.63947296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00423834 84.63950348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00423835 84.63950348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00423836 84.63952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00423837 84.63952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00423838 84.63954926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00423839 84.63955688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00423840 84.63958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00423841 84.63958740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423842 84.63958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00423843 84.63961029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00423844 84.63961792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00423845 84.63988495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00423846 84.63989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00423847 84.63991547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00423848 84.63991547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00423849 84.63995361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00423850 84.63996124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00423851 84.63998413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00423852 84.63998413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00423853 84.64002228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00423854 84.64002228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00423855 84.64002228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00423856 84.64005280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00423857 84.64005280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00423858 84.64007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00423859 84.64008331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00423860 84.64010620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00423861 84.64010620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00423862 84.64013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00423863 84.64013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00423864 84.64015961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00423865 84.64016724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00423866 84.64019012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00423867 84.64019012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00423868 84.64022064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00423869 84.64022064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00423870 84.64025116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00423871 84.64025116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00423872 84.64027405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00423873 84.64027405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00423874 84.64031219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00423875 84.64031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00423876 84.64034271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00423877 84.64035034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00423878 84.64038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00423879 84.64038849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00423880 84.64041901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00423881 84.64041901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00423882 84.64044952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00423883 84.64044952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00423884 84.64047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00423885 84.64048004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00423886 84.64050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00423887 84.64050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00423888 84.64053345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00423889 84.64053345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00423890 84.64055634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00423891 84.64056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00423892 84.64058685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00423893 84.64058685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00423894 84.64061737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00423895 84.64061737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00423896 84.64064026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00423897 84.64064789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00423898 84.64067078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00423899 84.64067078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00423900 84.64070129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00423901 84.64070129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00423902 84.64073181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00423903 84.64073181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00423904 84.64075470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00423905 84.64075470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00423906 84.64077759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00423907 84.64078522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00423908 84.64081573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00423909 84.64081573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00423910 84.64083862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00423911 84.64084625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00423912 84.64086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00423913 84.64086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00423914 84.64089966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00423915 84.64089966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00423916 84.64092255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00423917 84.64093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00423918 84.64095306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00423919 84.64095306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00423920 84.64097595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00423921 84.64097595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00423922 84.64100647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00423923 84.64101410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00423924 84.64103699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00423925 84.64103699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00423926 84.64105988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00423927 84.64105988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00423928 84.64109039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00423929 84.64109802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00423930 84.64112091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00423931 84.64112091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00423932 84.64114380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00423933 84.64114380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00423934 84.64117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00423935 84.64117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00423936 84.64120483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00423937 84.64120483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00423938 84.64122772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00423939 84.64123535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00423940 84.64125824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00423941 84.64125824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00423942 84.64128876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00423943 84.64128876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00423944 84.64131165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00423945 84.64131927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00423946 84.64134216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00423947 84.64134216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00423948 84.64137268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00423949 84.64137268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00423950 84.64139557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00423951 84.64140320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00423952 84.64142609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00423953 84.64142609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00423954 84.64145660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00423955 84.64145660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00423956 84.64148712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00423957 84.64148712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00423958 84.64151001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00423959 84.64151001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00423960 84.64153290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00423961 84.64154053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00423962 84.64157104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00423963 84.64157104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00423964 84.64159393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00423965 84.64159393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00423966 84.64161682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00423967 84.64162445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00423968 84.64165497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00423969 84.64165497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00423970 84.64167786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00423971 84.64167786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00423972 84.64170074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00423973 84.64170837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00423974 84.64173126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00423975 84.64173126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00423976 84.64176178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00423977 84.64176178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00423978 84.64178467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00423979 84.64179230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00423980 84.64181519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00423981 84.64181519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00423982 84.64184570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00423983 84.64185333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00423984 84.64187622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00423985 84.64187622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00423986 84.64189911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00423987 84.64189911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00424088 84.64337921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00424089 84.64337921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00424090 84.64340210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00424091 84.64340973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00424092 84.64344025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00424093 84.64344025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00424094 84.64346313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00424095 84.64346313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00424096 84.64348602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00424097 84.64349365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00424098 84.64351654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00424099 84.64351654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00424100 84.64354706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00424101 84.64354706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00424102 84.64356995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00424103 84.64357758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00424104 84.64360046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00424105 84.64360046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00424106 84.64363098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00424107 84.64363861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00424108 84.64366150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00424109 84.64366150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00424110 84.64368439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00424111 84.64368439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00424112 84.64371490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00424113 84.64371490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00424114 84.64374542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00424115 84.64374542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00424116 84.64376831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00424117 84.64376831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00424118 84.64379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00424119 84.64379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00424120 84.64382935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00424121 84.64382935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00424122 84.64385223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00424123 84.64385223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00424124 84.64387512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00424125 84.64388275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00424126 84.64391327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00424127 84.64391327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00424128 84.64393616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00424129 84.64393616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00424130 84.64395905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00424131 84.64396667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00426338 84.67620850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -00426339 84.67621613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -00426340 84.67624664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -00426341 84.67624664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -00426342 84.67626953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -00426343 84.67626953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -00426344 84.67629242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -00426345 84.67630005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -00426346 84.67632294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -00426347 84.67632294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -00426348 84.67635345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -00426349 84.67635345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -00426350 84.67637634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -00426351 84.67638397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -00426352 84.67640686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -00426353 84.67640686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -00426354 84.67643738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -00426355 84.67643738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -00426356 84.67646027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -00426357 84.67646790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -00426358 84.67649078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -00426359 84.67649078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -00426360 84.67652130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -00426361 84.67652130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -00426362 84.67655182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -00426363 84.67655182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -00426364 84.67657471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -00426365 84.67657471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -00426366 84.67660522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -00426367 84.67660522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -00426368 84.67663574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -00426369 84.67663574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -00426370 84.67665863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -00426371 84.67665863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -00426372 84.67668152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -00426373 84.67668915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -00426374 84.67671967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -00426375 84.67671967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -00426376 84.67674255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -00426377 84.67674255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -00426378 84.67676544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -00426379 84.67677307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -00426380 84.67680359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -00426381 84.67680359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -00428354 84.70533752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -00428355 84.70534515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -00428356 84.70536804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -00428357 84.70536804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -00428358 84.70539856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -00428359 84.70539856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -00428360 84.70542145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -00428361 84.70542908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -00428362 84.70545197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -00428363 84.70545197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -00428364 84.70547485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -00428365 84.70548248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -00428366 84.70551300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -00428367 84.70551300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -00428368 84.70553589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -00428369 84.70553589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -00428370 84.70555878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -00428371 84.70556641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -00428372 84.70559692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -00428373 84.70559692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -00428374 84.70561981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -00428375 84.70561981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -00428376 84.70564270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -00428377 84.70565033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -00428378 84.70567322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -00428379 84.70567322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -00428380 84.70570374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -00428381 84.70570374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -00428382 84.70572662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -00428383 84.70573425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -00428384 84.70575714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -00428385 84.70575714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -00428386 84.70578766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -00428387 84.70579529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -00428388 84.70581818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -00428389 84.70581818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -00428390 84.70584106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -00428391 84.70584106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -00428392 84.70587158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -00428393 84.70587158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -00428394 84.70590210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -00428395 84.70590210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -00428396 84.70592499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -00428397 84.70592499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -00458368 84.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d08 -00458369 84.89916992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed8 -00458370 84.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -00458371 84.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d08 -00458372 84.89917755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed8 -00458373 84.89917755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -00458374 84.89919281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d18 -00458375 84.89920044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee8 -00458376 84.89920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -00458377 84.89920044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d18 -00458378 84.89920044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee8 -00458379 84.89920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -00458380 84.89922333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d28 -00458381 84.89922333 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef8 -00458382 84.89922333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -00458383 84.89922333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d28 -00458384 84.89923096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef8 -00458385 84.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -00458386 84.89924622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00458387 84.89925385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d38 -00458388 84.89925385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f08 -00458389 84.89925385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d38 -00458390 84.89925385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -00458391 84.89925385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f08 -00458392 84.89925385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -00458393 84.89928436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d48 -00458394 84.89928436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d48 -00458395 84.89928436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -00458396 84.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -00458397 84.89949799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f18 -00458398 84.89950562 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f18 -00458399 84.89952850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d58 -00458400 84.89952850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d58 -00458401 84.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -00458402 84.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -00458403 84.89953613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f28 -00458404 84.89953613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f28 -00458405 84.89955902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d68 -00458406 84.89955902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d68 -00458407 84.89955902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -00458408 84.89955902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -00458409 84.89956665 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f38 -00458410 84.89957428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f38 -00458411 84.89958191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d78 -00463550 84.92610168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -00463551 84.92610168 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18358 -00463552 84.92610168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -00463553 84.92610931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -00463554 84.92610931 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18358 -00463555 84.92610931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -00463556 84.92613220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -00463557 84.92613220 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18368 -00463558 84.92613220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -00463559 84.92613220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -00463560 84.92613220 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18368 -00463561 84.92613220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -00463562 84.92615509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -00463563 84.92615509 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18378 -00463564 84.92615509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -00463565 84.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -00463566 84.92616272 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18378 -00463567 84.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -00463568 84.92618561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -00463569 84.92618561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -00463570 84.92618561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18388 -00463571 84.92618561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d48 -00463572 84.92618561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18388 -00463573 84.92619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d48 -00463574 84.92621613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -00463575 84.92621613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -00463576 84.92622375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18398 -00463577 84.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d58 -00463578 84.92622375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x18398 -00463579 84.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d58 -00463580 84.92623901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -00463581 84.92624664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -00463582 84.92624664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a8 -00463583 84.92624664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d68 -00463584 84.92625427 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a8 -00463585 84.92625427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d68 -00463586 84.92626953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -00463587 84.92626953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -00463588 84.92627716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b8 -00463589 84.92627716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -00463590 84.92627716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b8 -00463591 84.92627716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -00463592 84.92630005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -00463593 84.92630005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -00468486 84.95138550 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -00468487 84.95138550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15088 -00468488 84.95138550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -00468489 84.95138550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00468490 84.95138550 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -00468491 84.95138550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15088 -00468492 84.95138550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a838 -00468493 84.95140839 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -00468494 84.95140839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15098 -00468495 84.95140839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -00468496 84.95141602 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -00468497 84.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15098 -00468498 84.95141602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a848 -00468499 84.95164490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -00468500 84.95165253 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -00468501 84.95166016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a8 -00468502 84.95166779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -00468503 84.95166779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a8 -00468504 84.95166779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a858 -00468505 84.95169067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b8 -00468506 84.95169067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -00468507 84.95169067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150b8 -00468508 84.95169830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a868 -00468509 84.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c8 -00468510 84.95172119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -00468511 84.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150c8 -00468512 84.95172119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a878 -00468513 84.95175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -00468514 84.95175171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -00468515 84.95175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150d8 -00468516 84.95175171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a888 -00468517 84.95175934 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -00468518 84.95175934 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -00468519 84.95177460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -00468520 84.95177460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -00468521 84.95178223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150e8 -00468522 84.95178223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a898 -00468523 84.95178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00468524 84.95178223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -00468525 84.95178223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -00468526 84.95180511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f8 -00468527 84.95180511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -00468528 84.95180511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x150f8 -00468529 84.95180511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8a8 -00474384 84.98207092 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00474385 84.98207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d88 -00474386 84.98207855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -00474387 84.98207855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00474388 84.98207855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d88 -00474389 84.98207855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -00474390 84.98210907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00474391 84.98210907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -00474392 84.98210907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d98 -00474393 84.98210907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00474394 84.98210907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -00474395 84.98210907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d98 -00474396 84.98213959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00474397 84.98213959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da8 -00474398 84.98213959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -00474399 84.98213959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00474400 84.98213959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da8 -00474401 84.98213959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -00474402 84.98216248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -00474403 84.98216248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -00474404 84.98216248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db8 -00474405 84.98217010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -00474406 84.98217010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -00474407 84.98217010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db8 -00474408 84.98219299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -00474409 84.98219299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc8 -00474410 84.98219299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b8 -00474411 84.98219299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -00474412 84.98220062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc8 -00474413 84.98220062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b8 -00474414 84.98222351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -00474415 84.98222351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd8 -00474416 84.98222351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c8 -00474417 84.98222351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -00474418 84.98222351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd8 -00474419 84.98222351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7c8 -00474420 84.98225403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b8 -00474421 84.98225403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de8 -00474422 84.98225403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d8 -00474423 84.98225403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b8 -00474424 84.98226166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de8 -00474425 84.98226166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7d8 -00474426 84.98228455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c8 -00474427 84.98228455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df8 -00479810 85.00920105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32038 -00479811 85.00920105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a98 -00479812 85.00920105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -00479813 85.00920868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32038 -00479814 85.00920868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a98 -00479815 85.00920868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -00479816 85.00923157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32048 -00479817 85.00923157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa8 -00479818 85.00923157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -00479819 85.00923157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32048 -00479820 85.00923157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa8 -00479821 85.00923157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -00479822 85.00926208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32058 -00479823 85.00926208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab8 -00479824 85.00926208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32058 -00479825 85.00926971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -00479826 85.00926971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab8 -00479827 85.00926971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -00479828 85.00928497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32068 -00479829 85.00929260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32068 -00479830 85.00929260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac8 -00479831 85.00929260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -00479832 85.00929260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac8 -00479833 85.00930023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -00479834 85.00931549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32078 -00479835 85.00931549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32078 -00479836 85.00932312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad8 -00479837 85.00932312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -00479838 85.00932312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad8 -00479839 85.00932312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -00479840 85.00934601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32088 -00479841 85.00935364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32088 -00479842 85.00935364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae8 -00479843 85.00935364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c528 -00479844 85.00935364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae8 -00479845 85.00935364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c528 -00479846 85.00937653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32098 -00479847 85.00937653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32098 -00479848 85.00938416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af8 -00479849 85.00938416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c538 -00479850 85.00938416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af8 -00479851 85.00938416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c538 -00479852 85.00939941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a8 -00479853 85.00939941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a8 -00485130 85.03684235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -00485131 85.03684235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e8 -00485132 85.03684235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a8 -00485133 85.03684235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -00485134 85.03684235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x357e8 -00485135 85.03684235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262a8 -00485136 85.03687286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -00485137 85.03687286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f8 -00485138 85.03687286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -00485139 85.03688049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -00485140 85.03688049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x357f8 -00485141 85.03688049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -00485142 85.03690338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -00485143 85.03690338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35808 -00485144 85.03690338 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -00485145 85.03690338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -00485146 85.03690338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35808 -00485147 85.03690338 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -00485148 85.03693390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -00485149 85.03693390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -00485150 85.03693390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35818 -00485151 85.03693390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -00485152 85.03693390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -00485153 85.03693390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35818 -00485154 85.03695679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -00485155 85.03695679 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -00485156 85.03695679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35828 -00485157 85.03695679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -00485158 85.03696442 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -00485159 85.03696442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35828 -00485160 85.03699493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -00485161 85.03699493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35838 -00485162 85.03699493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -00485163 85.03699493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -00485164 85.03699493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35838 -00485165 85.03699493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -00485166 85.03701782 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -00485167 85.03702545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35848 -00485168 85.03702545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -00485169 85.03702545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35848 -00485170 85.03703308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -00485171 85.03703308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -00485172 85.03704834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26318 -00485173 85.03704834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35858 -00490756 85.06585693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e68 -00490757 85.06585693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39208 -00490758 85.06585693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -00490759 85.06585693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e68 -00490760 85.06585693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39208 -00490761 85.06585693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -00490762 85.06587982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e78 -00490763 85.06587982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39218 -00490764 85.06588745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -00490765 85.06588745 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e78 -00490766 85.06588745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39218 -00490767 85.06588745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -00490768 85.06591034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e88 -00490769 85.06591034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -00490770 85.06591034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39228 -00490771 85.06591034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e88 -00490772 85.06591797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -00490773 85.06591797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39228 -00490774 85.06594849 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e98 -00490775 85.06594849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -00490776 85.06594849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39238 -00490777 85.06594849 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e98 -00490778 85.06594849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -00490779 85.06594849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39238 -00490780 85.06597137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea8 -00490781 85.06597137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -00490782 85.06597137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39248 -00490783 85.06597137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ea8 -00490784 85.06597900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -00490785 85.06597900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39248 -00490786 85.06599426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb8 -00490787 85.06600189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -00490788 85.06600189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39258 -00490789 85.06600189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29eb8 -00490790 85.06600189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -00490791 85.06600189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39258 -00490792 85.06603241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec8 -00490793 85.06603241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -00490794 85.06603241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39268 -00490795 85.06603241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ec8 -00490796 85.06603241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -00490797 85.06603241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39268 -00490798 85.06606293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ed8 -00490799 85.06606293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -00496713 85.09530640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -00496714 85.09530640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27108 -00496715 85.09530640 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf8 -00496716 85.09531403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -00496717 85.09531403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dcf8 -00496718 85.09533691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27118 -00496719 85.09534454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -00496720 85.09534454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27118 -00496721 85.09534454 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd08 -00496722 85.09534454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -00496723 85.09534454 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd08 -00496724 85.09536743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27128 -00496725 85.09536743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -00496726 85.09536743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27128 -00496727 85.09537506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd18 -00496728 85.09537506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -00496729 85.09537506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd18 -00496730 85.09539032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27138 -00496731 85.09539795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -00496732 85.09539795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27138 -00496733 85.09539795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd28 -00496734 85.09539795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -00496735 85.09540558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd28 -00496736 85.09542084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27148 -00496737 85.09542084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27148 -00496738 85.09542084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -00496739 85.09542847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd38 -00496740 85.09542847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -00496741 85.09542847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd38 -00496742 85.09545135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27158 -00496743 85.09545898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27158 -00496744 85.09545898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -00496745 85.09545898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd48 -00496746 85.09545898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -00496747 85.09545898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd48 -00496748 85.09548187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27168 -00496749 85.09548187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27168 -00496750 85.09548187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -00496751 85.09548950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd58 -00496752 85.09548950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -00496753 85.09548950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd58 -00496754 85.09550476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27178 -00496755 85.09551239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27178 -00496756 85.09551239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -00502600 85.12475586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa8 -00502601 85.12476349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da8 -00502602 85.12476349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad98 -00502603 85.12476349 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa8 -00502604 85.12476349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da8 -00502605 85.12476349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad98 -00502606 85.12478638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab8 -00502607 85.12478638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada8 -00502608 85.12478638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db8 -00502609 85.12479401 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab8 -00502610 85.12479401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada8 -00502611 85.12479401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db8 -00502612 85.12481689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac8 -00502613 85.12481689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb8 -00502614 85.12481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc8 -00502615 85.12481689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac8 -00502616 85.12481689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb8 -00502617 85.12481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc8 -00502618 85.12484741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad8 -00502619 85.12484741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc8 -00502620 85.12484741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd8 -00502621 85.12484741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad8 -00502622 85.12484741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd8 -00502623 85.12484741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc8 -00502624 85.12487793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae8 -00502625 85.12487793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de8 -00502626 85.12487793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add8 -00502627 85.12488556 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae8 -00502628 85.12488556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de8 -00502629 85.12488556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add8 -00502630 85.12490845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af8 -00502631 85.12490845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df8 -00502632 85.12490845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade8 -00502633 85.12490845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af8 -00502634 85.12490845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40df8 -00502635 85.12490845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade8 -00502636 85.12493134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b08 -00502637 85.12493134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e08 -00502638 85.12493134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf8 -00502639 85.12493896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b08 -00502640 85.12493896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e08 -00502641 85.12493896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf8 -00502642 85.12496948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b18 -00502643 85.12496948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e18 -00508222 85.15174103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e748 -00508223 85.15174103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -00508224 85.15174103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -00508225 85.15174103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e748 -00508226 85.15174103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -00508227 85.15174103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -00508228 85.15177155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e758 -00508229 85.15177155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -00508230 85.15177155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -00508231 85.15177155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e758 -00508232 85.15177155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -00508233 85.15177155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -00508234 85.15179443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e768 -00508235 85.15179443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -00508236 85.15180206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -00508237 85.15180206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e768 -00508238 85.15180206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -00508239 85.15180206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -00508240 85.15182495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -00508241 85.15182495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -00508242 85.15182495 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -00508243 85.15182495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e778 -00508244 85.15182495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -00508245 85.15183258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -00508246 85.15185547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -00508247 85.15185547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -00508248 85.15185547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e788 -00508249 85.15185547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -00508250 85.15185547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -00508251 85.15185547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -00508252 85.15188599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -00508253 85.15188599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -00508254 85.15188599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e798 -00508255 85.15188599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -00508256 85.15189362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -00508257 85.15189362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -00508258 85.15190887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -00508259 85.15190887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -00508260 85.15191650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7a8 -00508261 85.15191650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -00508262 85.15191650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -00508263 85.15192413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -00508264 85.15193939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e7b8 -00508265 85.15193939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44858 -00513803 85.17849731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39178 -00513804 85.17849731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48208 -00513805 85.17849731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32078 -00513806 85.17849731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48208 -00513807 85.17850494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32078 -00513808 85.17852020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39188 -00513809 85.17852020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39188 -00513810 85.17852783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48218 -00513811 85.17852783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32088 -00513812 85.17852783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48218 -00513813 85.17852783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32088 -00513814 85.17855072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39198 -00513815 85.17855072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39198 -00513816 85.17855072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48228 -00513817 85.17855072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32098 -00513818 85.17855072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48228 -00513819 85.17855072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32098 -00513820 85.17858124 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a8 -00513821 85.17858124 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a8 -00513822 85.17858887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48238 -00513823 85.17858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a8 -00513824 85.17858887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48238 -00513825 85.17858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320a8 -00513826 85.17860413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b8 -00513827 85.17861176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b8 -00513828 85.17861176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48248 -00513829 85.17861176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b8 -00513830 85.17861176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48248 -00513831 85.17861176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320b8 -00513832 85.17863464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c8 -00513833 85.17863464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c8 -00513834 85.17863464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48258 -00513835 85.17864227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c8 -00513836 85.17864227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48258 -00513837 85.17864227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c8 -00513838 85.17866516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d8 -00513839 85.17866516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d8 -00513840 85.17866516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -00513841 85.17866516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48268 -00513842 85.17866516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -00513843 85.17866516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48268 -00513844 85.17869568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e8 -00513845 85.17869568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e8 -00513846 85.17869568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e8 -00519695 85.20708466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf68 -00519696 85.20708466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -00519697 85.20708466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -00519698 85.20709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf68 -00519699 85.20709229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -00519700 85.20709229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -00519701 85.20711517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf78 -00519702 85.20711517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -00519703 85.20711517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -00519704 85.20711517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf78 -00519705 85.20711517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -00519706 85.20711517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -00519707 85.20714569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf88 -00519708 85.20714569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -00519709 85.20714569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf88 -00519710 85.20714569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -00519711 85.20714569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -00519712 85.20714569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -00519713 85.20717621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf98 -00519714 85.20717621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -00519715 85.20717621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf98 -00519716 85.20717621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -00519717 85.20717621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -00519718 85.20718384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -00519719 85.20719910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa8 -00519720 85.20720673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -00519721 85.20720673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa8 -00519722 85.20720673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -00519723 85.20720673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -00519724 85.20720673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -00519725 85.20722961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb8 -00519726 85.20722961 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -00519727 85.20722961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb8 -00519728 85.20722961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -00519729 85.20723724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -00519730 85.20723724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -00519731 85.20726013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc8 -00519732 85.20726776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -00519733 85.20726776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc8 -00519734 85.20726776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -00519735 85.20726776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -00519736 85.20726776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -00519737 85.20729065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd8 -00519738 85.20729065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd8 -00548054 85.40505981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50778 -00548055 85.40507507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50778 -00548056 85.40509796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50788 -00548057 85.40510559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50788 -00548058 85.40513611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50798 -00548059 85.40513611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50798 -00548060 85.40515900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a8 -00548061 85.40516663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a8 -00548062 85.40518951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b8 -00548063 85.40518951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b8 -00548064 85.40521240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c8 -00548065 85.40521240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c8 -00548066 85.40524292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d8 -00548067 85.40525055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d8 -00548068 85.40527344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e8 -00548069 85.40527344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e8 -00548070 85.40529633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f8 -00548071 85.40529633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f8 -00548072 85.40532684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50808 -00548073 85.40533447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50808 -00548074 85.40535736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50818 -00548075 85.40535736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50818 -00548076 85.40538025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50828 -00548077 85.40538788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50828 -00548078 85.40541077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50838 -00548079 85.40541077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50838 -00548080 85.40544128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50848 -00548081 85.40544128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50848 -00548082 85.40546417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50858 -00548083 85.40547180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50858 -00548084 85.40549469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50868 -00548085 85.40549469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50868 -00548086 85.40552521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50878 -00548087 85.40552521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50878 -00548088 85.40554810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50888 -00548089 85.40555573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50888 -00548090 85.40557861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50898 -00548091 85.40557861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50898 -00548092 85.40560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a8 -00548093 85.40560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a8 -00548094 85.40563202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b8 -00548095 85.40563965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b8 -00548096 85.40566254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c8 -00548097 85.40566254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c8 -00549262 85.46989441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549263 85.53713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549264 85.60421753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549265 85.61527252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549266 85.61566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549267 85.61670685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549268 85.61707306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549269 85.61891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549270 85.61933136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549271 85.64363861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549272 85.64403534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549273 85.64857483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549274 85.64895630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549275 85.65158081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549276 85.65196991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549277 85.65242004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549278 85.65282440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549279 85.65612030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549280 85.65651703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549281 85.65772247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549282 85.65808868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549283 85.66238403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549284 85.66275787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549285 85.66706848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549286 85.66745758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549287 85.66861725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549288 85.66899109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549289 85.67278290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549290 85.67315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549291 85.67814636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549292 85.67852020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549293 85.67974091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549294 85.68013763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549295 85.68071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549296 85.68109894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549297 85.68364716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549298 85.68401337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549299 85.68450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549300 85.68490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549301 85.68791199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549302 85.68830109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549303 85.68975067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549304 85.69011688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549305 85.70692444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549306 85.70729828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549307 85.72452545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549308 85.72492981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549309 85.72743988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549310 85.72784424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549311 85.73122406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549312 85.73163605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549313 85.73783112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549314 85.73828888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549315 85.74140167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549316 85.74180603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549317 85.74395752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549318 85.74434662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549319 85.75932312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549320 85.75971985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549321 85.76307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549322 85.76344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549323 85.76600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549324 85.76641846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549325 85.76657867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549326 85.76699829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549327 85.77044678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549328 85.77085114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549329 85.77418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549330 85.77460480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549331 85.77837372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549332 85.77878571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549333 85.78114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549334 85.78153992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549335 85.78266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549336 85.78308868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549337 85.78345490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549338 85.78385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549339 85.85177612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549340 85.85212708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549341 85.85284424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549342 85.85330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549343 85.85894012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549344 85.85932159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549345 85.85981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549346 85.86018372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549347 85.86058807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549348 85.86100769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549349 85.86264801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549350 85.86307526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549351 85.86594391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549352 85.86636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549353 85.86745453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549354 85.86785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549355 85.93519592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549356 86.00244141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549357 86.06969452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549358 86.13700104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549359 86.17575836 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00549360 86.17578888 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00549361 86.17581177 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00549362 86.17581940 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00549363 86.17594147 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00549364 86.17594910 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00549365 86.17601013 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00549366 86.17602539 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00549367 86.20434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549368 86.26954651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549369 86.26997375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549370 86.27033234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549371 86.27069855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549372 86.33800507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549373 86.36576080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549374 86.36614227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549375 86.37282562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549376 86.37324524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549377 86.37356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549378 86.37393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549379 86.38124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549380 86.38166046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549381 86.38349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549382 86.38386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549383 86.38742065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549384 86.38779449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549385 86.38861847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549386 86.38900757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549387 86.39288330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549388 86.39330292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549389 86.39421844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549390 86.39466858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549391 86.39627075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549392 86.39667511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549393 86.39882660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549394 86.39923859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549395 86.40025330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549396 86.40065002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549397 86.40596771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549398 86.40634155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549399 86.40833282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549400 86.40872192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549401 86.41006470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549402 86.41041565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549403 86.41090393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549404 86.41126251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549405 86.41175079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549406 86.41210175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549407 86.41363525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549408 86.41397858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549409 86.41538239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549410 86.41574860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549411 86.41950989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549412 86.41986847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549413 86.42156982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549414 86.42193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549415 86.42288971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549416 86.42326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549417 86.42342377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549418 86.42382050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549419 86.42422485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549420 86.42459869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549421 86.42501068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549422 86.42539215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549423 86.42658234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549424 86.42697906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549425 86.43281555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549426 86.43317413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549427 86.43418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549428 86.43456268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549429 86.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549430 86.43550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549431 86.43715668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549432 86.43754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549433 86.43775177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549434 86.43816376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549435 86.44050598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549436 86.44088745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549437 86.44217682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549438 86.44255066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549439 86.44435883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549440 86.44473267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549441 86.44571686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549442 86.44614410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549443 86.44667816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549444 86.44703674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549445 86.44861603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549446 86.44898224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549447 86.45172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549448 86.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549449 86.45254517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549450 86.45290375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549451 86.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549452 86.45372009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549453 86.45414734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549454 86.45453644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549455 86.45648956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549456 86.45694733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549457 86.50568390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549458 86.50605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549459 86.51455688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549460 86.51496124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549461 86.51513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549462 86.51553345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549463 86.51616669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549464 86.51654816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549465 86.51868439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549466 86.51905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549467 86.51997375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549468 86.52038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549469 86.52426910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549470 86.52462006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549471 86.53986359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549472 86.54022980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549473 86.55380249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549474 86.55418396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549475 86.55571747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549476 86.55971527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549477 86.56354523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549478 86.57009888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549479 86.57138824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549480 86.57806396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549481 86.58068085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -00549482 86.58142090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00549483 86.58142853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00549484 86.58145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00549485 86.58145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00549486 86.58148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00549487 86.58148193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00549488 86.58150482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00549489 86.58151245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00549490 86.58153534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00549491 86.58153534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00549492 86.58155823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00549493 86.58156586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00549494 86.58158875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00549495 86.58159637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00549496 86.58161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00549497 86.58161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00549498 86.58164215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00549499 86.58164978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00549500 86.58167267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00549501 86.58168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00549502 86.58170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00549503 86.58170319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00549504 86.58172607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00549505 86.58173370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00549506 86.58175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00549507 86.58175659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00549508 86.58178711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00549509 86.58178711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00549510 86.58181000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00549511 86.58181763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00549512 86.58184052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00549513 86.58184052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00549514 86.58187103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00549515 86.58187103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00549516 86.58189392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00549517 86.58190155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00549518 86.58192444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00549519 86.58192444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00549520 86.58195496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00549521 86.58195496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00549522 86.58197784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00549523 86.58198547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00549524 86.58200836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00549525 86.58200836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00549526 86.58203888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00549527 86.58203888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00549528 86.58206940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00549529 86.58206940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00549530 86.58209229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00549531 86.58209229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00549532 86.58211517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00549533 86.58212280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00549534 86.58215332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00549535 86.58215332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00549536 86.58217621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00549537 86.58217621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00549538 86.58219910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00549539 86.58220673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00549540 86.58223724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00549541 86.58223724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00549542 86.58226013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00549543 86.58226013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00549544 86.58228302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00549545 86.58229065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00549546 86.58231354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00549547 86.58231354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00549548 86.58234406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00549549 86.58234406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00549550 86.58236694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00549551 86.58237457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00549552 86.58239746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00549553 86.58239746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00549554 86.58242798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00549555 86.58243561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00549556 86.58245850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00549557 86.58245850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00549558 86.58248138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00549559 86.58248138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00549560 86.58251190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00549561 86.58251190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00549562 86.58254242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00549563 86.58254242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00549564 86.58256531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00549565 86.58256531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00549566 86.58258820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00549567 86.58259583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00549568 86.58262634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00549569 86.58262634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00549570 86.58264923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00549571 86.58264923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00549572 86.58267975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00549573 86.58267975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00549574 86.58271027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00549575 86.58271027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00549576 86.58273315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00549577 86.58274078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00549578 86.58275604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00549579 86.58276367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00549580 86.58278656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00549581 86.58279419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00549582 86.58281708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00549583 86.58281708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00549584 86.58283997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00549585 86.58283997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00549586 86.58287048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00549587 86.58287048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00549588 86.58290100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00549589 86.58290100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00549590 86.58292389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00549591 86.58292389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00549592 86.58294678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00549593 86.58295441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00549594 86.58298492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00549595 86.58298492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00549596 86.58300781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00549597 86.58301544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00549598 86.58303070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00549599 86.58303833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00549600 86.58306885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00549601 86.58306885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00549602 86.58309174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00549603 86.58309937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00549604 86.58312225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00549605 86.58312225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00549606 86.58316803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00549607 86.58316803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00549608 86.58319092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00549609 86.58319092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00549610 86.58322144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00549611 86.58322906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00549612 86.58325195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00549613 86.58325195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00549614 86.58328247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00549615 86.58328247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00549616 86.58330536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00549617 86.58330536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00549618 86.58333588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00549619 86.58333588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00549620 86.58335876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00549621 86.58335876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00549622 86.58338928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00549623 86.58338928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00549624 86.58341980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00549625 86.58342743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00549626 86.58345032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00549627 86.58345032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00549628 86.58347321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00549629 86.58347321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00549630 86.58350372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00549631 86.58350372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00549632 86.58353424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00549633 86.58353424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00549634 86.58355713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00549635 86.58355713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00549636 86.58358765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00549637 86.58358765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00549638 86.58361816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00549639 86.58361816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00549640 86.58364105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00549641 86.58364105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00549642 86.58366394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00549643 86.58367157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00549644 86.58370209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00549645 86.58370209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00549646 86.58372498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00549647 86.58373260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00549648 86.58374786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00549649 86.58375549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00549650 86.58378601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00549651 86.58378601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00549652 86.58381653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00549653 86.58381653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00549654 86.58383942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00549655 86.58383942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00549656 86.58386993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00549657 86.58386993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00549658 86.58390045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00549659 86.58390045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00549660 86.58392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00549661 86.58392334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00549662 86.58395386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00549663 86.58395386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00549664 86.58398438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00549665 86.58398438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00549666 86.58401489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00549667 86.58401489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00549668 86.58403778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00549669 86.58403778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00549670 86.58406067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00549671 86.58406830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00549672 86.58409882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00549673 86.58409882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00549674 86.58412170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00549675 86.58412170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00549676 86.58414459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00549677 86.58415222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00549678 86.58418274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00549679 86.58418274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00549680 86.58420563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00549681 86.58420563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00549682 86.58422852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00549683 86.58423615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00549684 86.58426666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00549685 86.58427429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00549686 86.58429718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00549687 86.58430481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00549688 86.58432770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00549689 86.58433533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00549690 86.58435822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00549691 86.58435822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00549692 86.58438110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00549693 86.58438873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00549694 86.58441925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00549695 86.58441925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00549696 86.58444214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00549697 86.58444977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00549698 86.58446503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00549699 86.58447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00549700 86.58449554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00549701 86.58449554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00549702 86.58452606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00549703 86.58453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00549704 86.58455658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00549705 86.58455658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00549706 86.58457947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00549707 86.58457947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00549708 86.58460999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00549709 86.58461761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00549710 86.58464050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00549711 86.58464050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00549712 86.58466339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00549713 86.58466339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00549714 86.58469391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00549715 86.58469391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00549716 86.58472443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00549717 86.58472443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00549718 86.58474731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00549719 86.58474731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00549720 86.58477783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00549721 86.58477783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00549722 86.58480835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00549723 86.58480835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00549724 86.58483124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00549725 86.58483124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00549726 86.58485413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00549727 86.58486176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00549728 86.58489227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00549729 86.58489227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00549730 86.58492279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00549731 86.58492279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00549732 86.58494568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00549733 86.58495331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00549734 86.58497620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00549735 86.58497620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00549736 86.58500671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00549737 86.58500671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00549738 86.58502960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00549739 86.58503723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00549740 86.58506012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00549741 86.58506012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00549742 86.58509064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00549743 86.58509064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00549744 86.58512115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00549745 86.58512115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00549746 86.58514404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00549747 86.58514404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00549748 86.58517456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00549749 86.58517456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00549750 86.58519745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00549751 86.58520508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00549752 86.58522034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00549753 86.58522797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00549754 86.58525085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00549755 86.58525085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00549756 86.58528137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00549757 86.58528900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00549758 86.58531189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00549759 86.58531189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00549760 86.58533478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00549761 86.58533478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00549762 86.58536530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00549763 86.58537292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00549764 86.58539581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00549765 86.58539581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00549766 86.58541870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00549767 86.58542633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00549768 86.58544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00549769 86.58544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00549770 86.58547974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00549771 86.58547974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00549772 86.58550262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00549773 86.58551025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00549774 86.58553314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00549775 86.58553314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00549776 86.58556366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00549777 86.58556366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00549778 86.58558655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00549779 86.58559418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00549780 86.58561707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00549781 86.58561707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00549782 86.58564758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00549783 86.58564758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00549784 86.58567047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00549785 86.58567810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00549786 86.58570099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00549787 86.58570099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00549788 86.58573151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00549789 86.58573151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00549790 86.58576202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00549791 86.58576202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00549792 86.58578491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00549793 86.58578491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00549794 86.58580780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00549795 86.58581543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00549796 86.58584595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00549797 86.58584595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00549798 86.58586884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00549799 86.58586884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00549800 86.58589172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00549801 86.58589935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00549802 86.58592987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00549803 86.58592987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00549804 86.58595276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00549805 86.58596039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00549806 86.58598328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00549807 86.58599091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00549808 86.58601379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00549809 86.58601379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00549810 86.58604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00549811 86.58604431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00549812 86.58606720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00549813 86.58607483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00549814 86.58609772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00549815 86.58609772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00549816 86.58612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00549817 86.58612823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00549818 86.58615875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00549819 86.58615875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00549820 86.58618164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00549821 86.58618164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00549822 86.58620453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00549823 86.58620453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00549824 86.58623505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00549825 86.58624268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00549826 86.58626556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00549827 86.58626556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00549828 86.58628845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00549829 86.58629608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00549830 86.58632660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00549831 86.58632660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00549832 86.58634949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00549833 86.58634949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00549834 86.58637238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00549835 86.58638000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00549836 86.58640289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00549837 86.58640289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00549838 86.58643341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00549839 86.58644104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00549840 86.58646393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00549841 86.58646393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00549842 86.58648682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00549843 86.58648682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00549844 86.58651733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00549845 86.58652496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00549846 86.58654785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00549847 86.58654785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00549848 86.58657074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00549849 86.58657837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00549850 86.58660126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00549851 86.58660126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00549852 86.58663177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00549853 86.58663940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00549854 86.58666229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00549855 86.58666229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00549856 86.58668518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00549857 86.58668518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00549858 86.58671570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00549859 86.58672333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00549860 86.58674622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00549861 86.58674622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00549862 86.58676910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00549863 86.58677673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00549864 86.58679962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00549865 86.58679962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00549866 86.58683014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00549867 86.58683777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00549868 86.58686066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00549869 86.58686066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00549870 86.58688354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00549871 86.58688354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00549872 86.58691406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00549873 86.58692169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00549874 86.58694458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00549875 86.58694458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00549876 86.58697510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00549877 86.58697510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00549878 86.58699799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00549879 86.58699799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00549880 86.58702850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00549881 86.58702850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00549882 86.58705139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00549883 86.58705139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00549884 86.58708191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00549885 86.58708191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00549886 86.58711243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00549887 86.58711243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00549888 86.58713531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00549889 86.58714294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00549890 86.58716583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00549891 86.58716583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00549892 86.58719635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00549893 86.58719635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00549894 86.58721924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00549895 86.58722687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00549896 86.58724976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00549897 86.58724976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00549898 86.58728027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00549899 86.58728027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00549900 86.58730316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00549901 86.58731079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00549902 86.58733368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00549903 86.58733368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00549904 86.58735657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00549905 86.58736420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00549906 86.58739471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00549907 86.58739471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00549908 86.58741760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00549909 86.58741760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00549910 86.58744049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00549911 86.58744812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00549912 86.58747864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00549913 86.58747864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00549914 86.58750153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00549915 86.58750153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00549916 86.58752441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00550536 86.59623718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00550537 86.59624481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00550538 86.59626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00550539 86.59626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00550540 86.59629059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00550541 86.59629822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00550542 86.59632874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00550543 86.59632874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00550544 86.59635162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00550545 86.59635162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00550546 86.59637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00550547 86.59638214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00550548 86.59641266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00550549 86.59641266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00550550 86.59643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00550551 86.59644318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00550552 86.59646606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00550553 86.59646606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00550554 86.59649658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00550555 86.59649658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00550556 86.59651947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00550557 86.59652710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00550558 86.59654999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00550559 86.59654999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00550560 86.59657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00550561 86.59657288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00550562 86.59660339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00550563 86.59661102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00550564 86.59663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00550565 86.59663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00550566 86.59665680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00550567 86.59665680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00550568 86.59668732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00550569 86.59669495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00550570 86.59671783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00550571 86.59671783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00550572 86.59674072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00550573 86.59674072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00550574 86.59677124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00550575 86.59677124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00550576 86.59680176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00550577 86.59680176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00550578 86.59682465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00550579 86.59683228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00552998 86.63076019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00552999 86.63076019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00553000 86.63078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00553001 86.63079071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00553002 86.63081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -00553003 86.63081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -00553004 86.63084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -00553005 86.63084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -00553006 86.63086700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -00553007 86.63087463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -00553008 86.63089752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -00553009 86.63089752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -00553010 86.63092804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -00553011 86.63092804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -00553012 86.63095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -00553013 86.63095856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -00553014 86.63098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -00553015 86.63098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -00553016 86.63100433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -00553017 86.63100433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -00553018 86.63103485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -00553019 86.63104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -00553020 86.63106537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -00553021 86.63106537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -00553022 86.63108826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -00553023 86.63108826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -00553024 86.63111877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -00553025 86.63112640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -00553026 86.63114929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -00553027 86.63114929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -00553028 86.63117218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -00553029 86.63117218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -00553030 86.63120270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -00553031 86.63120270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -00553032 86.63123322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -00553033 86.63123322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -00553034 86.63125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -00553035 86.63125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -00553036 86.63128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -00553037 86.63128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -00553038 86.63131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -00553039 86.63131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -00553040 86.63134003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -00553041 86.63134003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -00554979 86.65840912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -00554980 86.65840912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -00554981 86.65843964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -00554982 86.65844727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -00554983 86.65847015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -00554984 86.65847015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -00554985 86.65849304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -00554986 86.65849304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -00554987 86.65852356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -00554988 86.65853119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -00554989 86.65855408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -00554990 86.65855408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -00554991 86.65857697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -00554992 86.65857697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -00554993 86.65860748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -00554994 86.65860748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -00554995 86.65863800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -00554996 86.65863800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -00554997 86.65866089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -00554998 86.65866852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -00554999 86.65869141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -00555000 86.65869141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -00555001 86.65872192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -00555002 86.65872192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -00555003 86.65874481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -00555004 86.65875244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -00555005 86.65877533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -00555006 86.65877533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -00555007 86.65880585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -00555008 86.65880585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -00555009 86.65882874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -00555010 86.65883636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -00555011 86.65885925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -00555012 86.65885925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -00555013 86.65888977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -00555014 86.65888977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -00555015 86.65891266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -00555016 86.65892029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -00555017 86.65894318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -00555018 86.65894318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -00555019 86.65896606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -00555020 86.65896606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -00555021 86.65899658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -00555022 86.65900421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -00557193 86.68940735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -00557194 86.68941498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -00557195 86.68943787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -00557196 86.68943787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -00557197 86.68946838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -00557198 86.68946838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -00557199 86.68949890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -00557200 86.68949890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -00557201 86.68952179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -00557202 86.68952179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -00557203 86.68955231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -00557204 86.68955231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -00557205 86.68958282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -00557206 86.68958282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -00557207 86.68960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -00557208 86.68960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -00557209 86.68963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -00557210 86.68963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -00557211 86.68966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -00557212 86.68966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -00557213 86.68968964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -00557214 86.68969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -00557215 86.68972015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -00557216 86.68972015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -00557217 86.68975067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -00557218 86.68975067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -00557219 86.68977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -00557220 86.68978119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -00557221 86.68980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -00557222 86.68980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -00557223 86.68982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -00557224 86.68982697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -00557225 86.68985748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -00557226 86.68986511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -00557227 86.68988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -00557228 86.68988800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -00557229 86.68991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -00557230 86.68991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -00557231 86.68994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10268 -00557232 86.68994904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10268 -00557233 86.68997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10278 -00557234 86.68997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10278 -00557235 86.68999481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10288 -00557236 86.69000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10288 -00572663 86.90287781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -00572664 86.90288544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -00572665 86.90290833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -00572666 86.90290833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -00572667 86.90293884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -00572668 86.90293884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -00572669 86.90296936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -00572670 86.90296936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -00572671 86.90299225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -00572672 86.90299988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -00572673 86.90303040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f8 -00572674 86.90303040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f8 -00572675 86.90305328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e508 -00572676 86.90305328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e508 -00572677 86.90307617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e518 -00572678 86.90308380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e518 -00572679 86.90310669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e528 -00572680 86.90310669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e528 -00572681 86.90313721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e538 -00572682 86.90314484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e538 -00572683 86.90316772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e548 -00572684 86.90316772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e548 -00572685 86.90319061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e558 -00572686 86.90319061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e558 -00572687 86.90322113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e568 -00572688 86.90322876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e568 -00572689 86.90324402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e578 -00572690 86.90325165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e578 -00572691 86.90327454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e588 -00572692 86.90328217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e588 -00572693 86.90330505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e598 -00572694 86.90330505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e598 -00572695 86.90333557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a8 -00572696 86.90333557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a8 -00572697 86.90336609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b8 -00572698 86.90336609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b8 -00572699 86.90338898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c8 -00572700 86.90338898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c8 -00572701 86.90341949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d8 -00572702 86.90341949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d8 -00572703 86.90345001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e8 -00572704 86.90345001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e8 -00572705 86.90347290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f8 -00572706 86.90347290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f8 -00574743 86.93186188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a8 -00574744 86.93186188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a8 -00574745 86.93188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b8 -00574746 86.93189240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b8 -00574747 86.93191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c8 -00574748 86.93191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c8 -00574749 86.93194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d8 -00574750 86.93194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d8 -00574751 86.93196869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e8 -00574752 86.93197632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e8 -00574753 86.93199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f8 -00574754 86.93199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f8 -00574755 86.93202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32608 -00574756 86.93202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32608 -00574757 86.93205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32618 -00574758 86.93206024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32618 -00574759 86.93208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32628 -00574760 86.93208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32628 -00574761 86.93210602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32638 -00574762 86.93210602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32638 -00574763 86.93213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32648 -00574764 86.93214417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32648 -00574765 86.93216705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32658 -00574766 86.93216705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32658 -00574767 86.93218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32668 -00574768 86.93219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32668 -00574769 86.93222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32678 -00574770 86.93222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32678 -00574771 86.93225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32688 -00574772 86.93225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32688 -00574773 86.93227386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32698 -00574774 86.93228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32698 -00574775 86.93230438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a8 -00574776 86.93230438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326a8 -00574777 86.93233490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b8 -00574778 86.93233490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326b8 -00574779 86.93235779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c8 -00574780 86.93236542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326c8 -00574781 86.93238831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d8 -00574782 86.93238831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d8 -00574783 86.93241882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e8 -00574784 86.93241882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e8 -00574785 86.93244171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -00574786 86.93244934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -00576705 86.95919037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f8 -00576706 86.95919800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x362f8 -00576707 86.95922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36308 -00576708 86.95922852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36308 -00576709 86.95925140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36318 -00576710 86.95925140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36318 -00576711 86.95927429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36328 -00576712 86.95928192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36328 -00576713 86.95931244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36338 -00576714 86.95931244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36338 -00576715 86.95933533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36348 -00576716 86.95933533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36348 -00576717 86.95935822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36358 -00576718 86.95936584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36358 -00576719 86.95938873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36368 -00576720 86.95938873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36368 -00576721 86.95942688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36378 -00576722 86.95942688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36378 -00576723 86.95945740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36388 -00576724 86.95945740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36388 -00576725 86.95948029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -00576726 86.95948792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -00576727 86.95951080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -00576728 86.95951080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -00576729 86.95954132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -00576730 86.95954132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -00576731 86.95956421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c8 -00576732 86.95957184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363c8 -00576733 86.95959473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d8 -00576734 86.95959473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363d8 -00576735 86.95962524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e8 -00576736 86.95962524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363e8 -00576737 86.95964813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f8 -00576738 86.95965576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x363f8 -00576739 86.95967865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36408 -00576740 86.95967865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36408 -00576741 86.95970917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36418 -00576742 86.95970917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36418 -00576743 86.95973206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36428 -00576744 86.95973969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36428 -00576745 86.95976257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36438 -00576746 86.95977020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36438 -00576747 86.95979309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36448 -00576748 86.95979309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36448 -00578713 86.98716736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -00578714 86.98717499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -00578715 86.98719788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -00578716 86.98719788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -00578717 86.98722839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -00578718 86.98722839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -00578719 86.98725891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -00578720 86.98725891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -00578721 86.98728180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -00578722 86.98728943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -00578723 86.98731232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -00578724 86.98731232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -00578725 86.98734283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -00578726 86.98734283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -00578727 86.98736572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -00578728 86.98737335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -00578729 86.98739624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -00578730 86.98739624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -00578731 86.98742676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -00578732 86.98742676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -00578733 86.98744965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -00578734 86.98745728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -00578735 86.98748016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -00578736 86.98748016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -00578737 86.98751068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -00578738 86.98751068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -00578739 86.98753357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -00578740 86.98754120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -00578741 86.98756409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -00578742 86.98756409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -00578743 86.98758698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -00578744 86.98759460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -00578745 86.98762512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -00578746 86.98762512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -00578747 86.98764801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -00578748 86.98764801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -00578749 86.98767090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -00578750 86.98767853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -00578751 86.98770905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -00578752 86.98770905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -00578753 86.98773193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f8 -00578754 86.98773193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f8 -00578755 86.98775482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a308 -00578756 86.98776245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a308 -00580787 87.01609039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -00580788 87.01609039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -00580789 87.01611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -00580790 87.01612091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -00580791 87.01614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -00580792 87.01614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -00580793 87.01617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -00580794 87.01617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -00580795 87.01619720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c8 -00580796 87.01620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2c8 -00580797 87.01622772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d8 -00580798 87.01622772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2d8 -00580799 87.01625824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e8 -00580800 87.01625824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2e8 -00580801 87.01628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f8 -00580802 87.01628876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2f8 -00580803 87.01631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e308 -00580804 87.01631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e308 -00580805 87.01634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e318 -00580806 87.01634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e318 -00580807 87.01636505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e328 -00580808 87.01637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e328 -00580809 87.01639557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e338 -00580810 87.01639557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e338 -00580811 87.01642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e348 -00580812 87.01642609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e348 -00580813 87.01644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e358 -00580814 87.01645660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e358 -00580815 87.01647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e368 -00580816 87.01647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e368 -00580817 87.01650238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e378 -00580818 87.01651001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e378 -00580819 87.01653290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e388 -00580820 87.01654053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e388 -00580821 87.01656342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e398 -00580822 87.01656342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e398 -00580823 87.01658630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a8 -00580824 87.01659393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3a8 -00580825 87.01662445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b8 -00580826 87.01662445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3b8 -00580827 87.01664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c8 -00580828 87.01664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3c8 -00580829 87.01667023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d8 -00580830 87.01667786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e3d8 -00582555 87.04072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c8 -00582556 87.04073334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419c8 -00582557 87.04075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d8 -00582558 87.04075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419d8 -00582559 87.04077911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e8 -00582560 87.04077911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419e8 -00582561 87.04080963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f8 -00582562 87.04080963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x419f8 -00582563 87.04083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a08 -00582564 87.04083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a08 -00582565 87.04085541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a18 -00582566 87.04086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a18 -00582567 87.04088593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a28 -00582568 87.04088593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a28 -00582569 87.04091644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a38 -00582570 87.04091644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a38 -00582571 87.04093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a48 -00582572 87.04094696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a48 -00582573 87.04096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a58 -00582574 87.04096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a58 -00582575 87.04100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a68 -00582576 87.04100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a68 -00582577 87.04102325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a78 -00582578 87.04103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a78 -00582579 87.04105377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a88 -00582580 87.04106140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a88 -00582581 87.04108429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a98 -00582582 87.04108429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a98 -00582583 87.04111481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa8 -00582584 87.04111481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa8 -00582585 87.04113770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab8 -00582586 87.04113770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab8 -00582587 87.04116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac8 -00582588 87.04116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac8 -00582589 87.04119110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad8 -00582590 87.04119110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad8 -00582591 87.04121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae8 -00582592 87.04122162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae8 -00582593 87.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af8 -00582594 87.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af8 -00582595 87.04127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b08 -00582596 87.04127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b08 -00582597 87.04129791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b18 -00582598 87.04129791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b18 -00584641 87.06977844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -00584642 87.06978607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -00584643 87.06980896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -00584644 87.06980896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -00584645 87.06983948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -00584646 87.06983948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -00584647 87.06986237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -00584648 87.06987000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -00584649 87.06989288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -00584650 87.06989288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -00584651 87.06992340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -00584652 87.06992340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -00584653 87.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -00584654 87.06995392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -00584655 87.06997681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -00584656 87.06997681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -00584657 87.06999969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -00584658 87.07000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -00584659 87.07003021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -00584660 87.07003784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -00584661 87.07006073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -00584662 87.07006073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -00584663 87.07008362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -00584664 87.07009125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -00584665 87.07012177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -00584666 87.07012177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -00584667 87.07014465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -00584668 87.07014465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -00584669 87.07016754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -00584670 87.07017517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -00584671 87.07019806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -00584672 87.07019806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -00584673 87.07022858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -00584674 87.07022858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -00584675 87.07028198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -00584676 87.07028198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -00584677 87.07030487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -00584678 87.07030487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -00584679 87.07032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -00584680 87.07033539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -00584681 87.07035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -00584682 87.07035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -00584683 87.07038879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -00584684 87.07039642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -00586624 87.09754181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498e8 -00586625 87.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f8 -00586626 87.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x498f8 -00586627 87.09759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49908 -00586628 87.09759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49908 -00586629 87.09761810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49918 -00586630 87.09762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49918 -00586631 87.09764862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -00586632 87.09764862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -00586633 87.09767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -00586634 87.09767914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -00586635 87.09770203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -00586636 87.09770966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -00586637 87.09773254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -00586638 87.09773254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -00586639 87.09776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -00586640 87.09776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -00586641 87.09779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -00586642 87.09779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -00586643 87.09781647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -00586644 87.09781647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -00586645 87.09784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49998 -00586646 87.09784698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49998 -00586647 87.09787750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a8 -00586648 87.09787750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a8 -00586649 87.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b8 -00586650 87.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b8 -00586651 87.09792328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c8 -00586652 87.09793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c8 -00586653 87.09796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d8 -00586654 87.09796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d8 -00586655 87.09798431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e8 -00586656 87.09798431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e8 -00586657 87.09800720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f8 -00586658 87.09801483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f8 -00586659 87.09804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a08 -00586660 87.09804535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a08 -00586661 87.09806824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a18 -00586662 87.09807587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a18 -00586663 87.09809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a28 -00586664 87.09809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a28 -00586665 87.09812164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a38 -00586666 87.09812164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a38 -00586667 87.09815216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a48 -00588503 87.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a8 -00588504 87.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a8 -00588505 87.12388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b8 -00588506 87.12388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b8 -00588507 87.12390900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c8 -00588508 87.12390900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c8 -00588509 87.12393951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d8 -00588510 87.12393951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d8 -00588511 87.12397003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e8 -00588512 87.12397003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e8 -00588513 87.12399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f8 -00588514 87.12400055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f8 -00588515 87.12402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d408 -00588516 87.12402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d408 -00588517 87.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d418 -00588518 87.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d418 -00588519 87.12407684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d428 -00588520 87.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d428 -00588521 87.12410736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d438 -00588522 87.12410736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d438 -00588523 87.12413788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d448 -00588524 87.12413788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d448 -00588525 87.12416077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d458 -00588526 87.12416840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d458 -00588527 87.12419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d468 -00588528 87.12419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d468 -00588529 87.12421417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d478 -00588530 87.12421417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d478 -00588531 87.12424469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d488 -00588532 87.12425232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d488 -00588533 87.12427521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d498 -00588534 87.12427521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d498 -00588535 87.12429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a8 -00588536 87.12430573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4a8 -00588537 87.12432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b8 -00588538 87.12433624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4b8 -00588539 87.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c8 -00588540 87.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4c8 -00588541 87.12438202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d8 -00588542 87.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4d8 -00588543 87.12441254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e8 -00588544 87.12441254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4e8 -00588545 87.12444305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f8 -00588546 87.12444305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d4f8 -00590459 87.15116882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c8 -00590460 87.15116882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c8 -00590461 87.15119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d8 -00590462 87.15119171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d8 -00590463 87.15122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e8 -00590464 87.15122223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e8 -00590465 87.15125275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f8 -00590466 87.15125275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510f8 -00590467 87.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51108 -00590468 87.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51108 -00590469 87.15130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51118 -00590470 87.15130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51118 -00590471 87.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51128 -00590472 87.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51128 -00590473 87.15135956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51138 -00590474 87.15136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51138 -00590475 87.15139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51148 -00590476 87.15139008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51148 -00590477 87.15142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51158 -00590478 87.15142059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51158 -00590479 87.15144348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51168 -00590480 87.15145111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51168 -00590481 87.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51178 -00590482 87.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51178 -00590483 87.15150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51188 -00590484 87.15150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51188 -00590485 87.15152740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51198 -00590486 87.15153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51198 -00590487 87.15155792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a8 -00590488 87.15155792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a8 -00590489 87.15158081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b8 -00590490 87.15158081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b8 -00590491 87.15161133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c8 -00590492 87.15161896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c8 -00590493 87.15164185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d8 -00590494 87.15164185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d8 -00590495 87.15166473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e8 -00590496 87.15166473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e8 -00590497 87.15169525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f8 -00590498 87.15170288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f8 -00590499 87.15172577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51208 -00590500 87.15172577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51208 -00590501 87.15174866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51218 -00590502 87.15175629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51218 -00591369 87.49990845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00591370 87.50019073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00591371 88.09281158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591372 88.09294128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591373 88.09307098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591374 88.09319305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591375 88.09331512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591376 88.09343719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591377 88.09355927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591378 88.09368134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591379 88.09381104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591380 88.09393311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591381 88.09405518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591382 88.09418488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591383 88.09430695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591384 88.09442902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591385 88.09455109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591386 88.09467316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591387 88.09479523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591388 88.09492493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591389 88.09501648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591390 88.09513855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591391 88.09526062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591392 88.09538269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591393 88.09550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591394 88.09563446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591395 88.09575653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591396 88.09587860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591397 88.09600830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591398 88.09613037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591399 88.09625244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591400 88.09637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591401 88.09649658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591402 88.09661865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591403 88.09674835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591404 88.09687042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591405 88.09699249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591406 88.09712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591407 88.09724426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591408 88.09736633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591409 88.09748840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591410 88.09761047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591411 88.09773254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591412 88.09786224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591413 88.09798431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591414 88.09811401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591415 88.09823608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591416 88.09835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591417 88.09845734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591418 88.09857941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591419 88.09870148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591420 88.09883118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591421 88.09895325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591422 88.09907532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591423 88.09919739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591424 88.09931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591425 88.09944153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591426 88.09957123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591427 88.09969330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591428 88.09981537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591429 88.09991455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591430 88.10003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591431 88.10015869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591432 88.10028839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591433 88.10041046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591434 88.10053253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591435 88.10066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591436 88.10078430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591437 88.10087585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591438 88.10100555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591439 88.10112762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591440 88.10124969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591441 88.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591442 88.10149384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591443 88.10161591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591444 88.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591445 88.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591446 88.10196686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591447 88.10209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591448 88.10221100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591449 88.10233307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591450 88.10245514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591451 88.10258484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591452 88.10270691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591453 88.10282898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591454 88.10295868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591455 88.10308075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591456 88.10317230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591457 88.10330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591458 88.10342407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591459 88.10354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591460 88.10364532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591461 88.10376740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591462 88.10388947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591463 88.10401154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591464 88.10414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591465 88.10426331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591466 88.10439301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591467 88.10451508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591468 88.10463715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591469 88.10475922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591470 88.10488129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591471 88.10500336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591472 88.10514069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591473 88.10526276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591474 88.10539246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591475 88.10550690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591476 88.10560608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591477 88.10573578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591478 88.10585785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591479 88.10598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591480 88.10610199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591481 88.10622406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591482 88.10635376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591483 88.10647583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591484 88.10659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591485 88.10672760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591486 88.10684967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591487 88.10697174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591488 88.10709381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591489 88.10721588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591490 88.10734558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591491 88.10746765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591492 88.10758972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591493 88.10771942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591494 88.10784149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591495 88.10796356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591496 88.10809326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591497 88.10820770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591498 88.10833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591499 88.10845947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591500 88.10858154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591501 88.10870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591502 88.10883331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591503 88.10895538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591504 88.10908508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591505 88.10919952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591506 88.10932159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591507 88.10944366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591508 88.10957336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591509 88.10969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591510 88.10981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591511 88.10994720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591512 88.11006927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591513 88.11019135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591514 88.11031342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591515 88.11043549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591516 88.11055756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591517 88.11067963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591518 88.11080933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591519 88.11093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591520 88.11106110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591521 88.11118317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591522 88.11130524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591523 88.11142731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591524 88.11154938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591525 88.11167145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591526 88.11180115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591527 88.11192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591528 88.11204529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591529 88.11218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00591530 88.11310577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591531 88.20897675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591532 88.21008301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591533 88.21036530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591534 88.21092987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591535 88.21123505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591536 88.21150208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591537 88.21181488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591538 88.21215820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591539 88.21249390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591540 88.21280670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591541 88.21314240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591542 88.21347046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591543 88.21383667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591544 88.21421814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591545 88.21456146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591546 88.22170258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591547 88.22199249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591548 88.22235870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591549 88.22269440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591550 88.22311401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591551 88.22360229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591552 88.22394562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591553 88.22430420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591554 88.22469330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591555 88.22499084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591556 88.22532654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591557 88.22569275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591558 88.22618866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591559 88.22653198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591560 88.22711182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591561 88.22739410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591562 88.22776031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591563 88.22804260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591564 88.22840118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591565 88.22869110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591566 88.22897339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591567 88.22931671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591568 88.22965240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591569 88.22999573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591570 88.23037720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591571 88.23071289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591572 88.23106384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591573 88.23138428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591574 88.23168945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591575 88.23204803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591576 88.23236847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591577 88.23271942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591578 88.23307800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591579 88.23336029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591580 88.23372650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591581 88.23403168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591582 88.23435974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591583 88.24639893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591584 88.24682617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591585 88.24726868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591586 88.24768066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591587 88.24814606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591588 88.24859619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591589 88.24902344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591590 88.24945068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591591 88.24982452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591592 88.25019073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591593 88.25047302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591594 88.25080109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591595 88.25297546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591596 88.25333405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591597 88.25370026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591598 88.25401306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591599 88.25440216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591600 88.25468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591601 88.25498199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591602 88.25621796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591603 88.28286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591604 88.28324127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591605 88.28366852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591606 88.28408051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591607 88.28438568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591608 88.28467560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591609 88.28499603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591610 88.28527832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591611 88.28556061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591612 88.28591156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591613 88.28622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591614 88.28656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591615 88.28684235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591616 88.28720856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591617 88.28970337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591618 88.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591619 88.29039764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591620 88.29067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591621 88.29101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591622 88.29132843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591623 88.29161835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591624 88.29198456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591625 88.29235840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591626 88.29272461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591627 88.29314423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591628 88.29343414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591629 88.29370117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591630 88.29404449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591631 88.29447174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591632 88.29479218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591633 88.29521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591634 88.29551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591635 88.29581451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591636 88.29616547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591637 88.29650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591638 88.29685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591639 88.29721832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591640 88.29754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591641 88.29783630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591642 88.29809570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591643 88.29842377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591644 88.29875946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591645 88.29910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591646 88.29943085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591647 88.29977417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591648 88.30012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591649 88.30046844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591650 88.48891449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591651 88.48927307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591652 88.48961639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591653 88.48998260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591654 88.49032593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591655 88.49079132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591656 88.49112701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591657 88.49145508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591658 88.49201202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591659 88.49234772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591660 88.49264526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591661 88.49300385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591662 88.49337006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591663 88.49371338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591664 88.49406433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591665 88.49440002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591666 88.49475861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591667 88.49512482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591668 88.49548340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591669 88.49584961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591670 88.49617004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591671 88.49653625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591672 88.49688721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591673 88.49721527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591674 88.49761200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591675 88.49803925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591676 88.49843597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591677 88.49887085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591678 88.49926758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591679 88.49961090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591680 88.49995422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591681 88.50023651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591682 88.50055695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591683 88.50104523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591684 88.50137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591685 88.50177002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591686 88.50210571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591687 88.50244904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591688 88.50283051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591689 88.50315094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591690 88.50347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591691 88.50380707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591692 88.50414276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591693 88.50447083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591694 88.50483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591695 88.50519562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591696 88.50561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591697 88.50594330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591698 88.50635529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591699 88.50669098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591700 88.50701904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591701 88.50731659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591702 88.50763702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591703 88.50796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591704 88.50827789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591705 88.50859833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591706 88.50892639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591707 88.50926208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591708 88.50954437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591709 88.50991058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591710 88.51030731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591711 88.51060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591712 88.51094818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591713 88.51129913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591714 88.51166534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591715 88.51201630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591716 88.51237488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591717 88.51272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591718 88.51309204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591719 88.51344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591720 88.51377106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591721 88.51412201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591722 88.51448822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591723 88.51478577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591724 88.51518250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00591725 88.66989899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00591726 88.67020416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00591727 88.67036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00591728 88.67036438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00591729 88.67039490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00591730 88.67039490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00591731 88.67042542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00591732 88.67042542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00591733 88.67044830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00591734 88.67044830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00591735 88.67047882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00591736 88.67048645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00591737 88.67050934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00591738 88.67050934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00591739 88.67053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00591740 88.67053986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00591741 88.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00591742 88.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00591743 88.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00591744 88.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00591745 88.67061615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00591746 88.67062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00591747 88.67064667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00591748 88.67064667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00591749 88.67067719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00591750 88.67068481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00591751 88.67070770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00591752 88.67070770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00591753 88.67073059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00591754 88.67073059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00591755 88.67076111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00591756 88.67076111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00591757 88.67079163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00591758 88.67079163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00591759 88.67081451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00591760 88.67082214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00591761 88.67084503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00591762 88.67084503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00591763 88.67087555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00591764 88.67088318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00591765 88.67090607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00591766 88.67090607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00591767 88.67092896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00591768 88.67092896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00591769 88.67095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00591770 88.67095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00591771 88.67098999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00591772 88.67098999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00591773 88.67101288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00591774 88.67102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00591775 88.67104340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00591776 88.67104340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00591777 88.67107391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00591778 88.67108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00591779 88.67110443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00591780 88.67110443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00591781 88.67112732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00591782 88.67112732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00591783 88.67115784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00591784 88.67115784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00591785 88.67118835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00591786 88.67118835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00591787 88.67121124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00591788 88.67121887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00591789 88.67124176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00591790 88.67124176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00591791 88.67127228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00591792 88.67127991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00591793 88.67130280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00591794 88.67130280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00591795 88.67132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00591796 88.67132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00591797 88.67135620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00591798 88.67135620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00591799 88.67138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00591800 88.67138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00591801 88.67140961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00591802 88.67141724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00591803 88.67144012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00591804 88.67144012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00591805 88.67147064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00591806 88.67147064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00591807 88.67149353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00591808 88.67150116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00591809 88.67152405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00591810 88.67152405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00591811 88.67155457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00591812 88.67156219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00591813 88.67158508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00591814 88.67158508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00591815 88.67160797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00591816 88.67160797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00591817 88.67163849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00591818 88.67163849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00591819 88.67166901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00591820 88.67166901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00591821 88.67169189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00591822 88.67169952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00591823 88.67172241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00591824 88.67172241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00591825 88.67175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00591826 88.67175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00591827 88.67177582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00591828 88.67178345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00591829 88.67180634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00591830 88.67180634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00591831 88.67183685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00591832 88.67183685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00591833 88.67186737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00591834 88.67186737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00591835 88.67189026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00591836 88.67189026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00591837 88.67191315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00591838 88.67192078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00591839 88.67195129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00591840 88.67195129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00591841 88.67197418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00591842 88.67198181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00591843 88.67200470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00591844 88.67200470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00591845 88.67203522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00591846 88.67203522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00591847 88.67206573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00591848 88.67206573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00591849 88.67208862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00591850 88.67208862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00591851 88.67213440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00591852 88.67214203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00591853 88.67216492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00591854 88.67216492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00591855 88.67219543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00591856 88.67219543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00591857 88.67222595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00591858 88.67222595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00591859 88.67224884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00591860 88.67224884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00591861 88.67227173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00591862 88.67227936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00591863 88.67230988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00591864 88.67230988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00591865 88.67233276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00591866 88.67233276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00591867 88.67236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00591868 88.67236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00591869 88.67239380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00591870 88.67239380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00591871 88.67241669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00591872 88.67242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00591873 88.67244720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00591874 88.67244720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00591875 88.67247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00591876 88.67247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00591877 88.67250824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00591878 88.67250824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00591879 88.67253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00591880 88.67253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00591881 88.67255402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00591882 88.67256165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00591883 88.67259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00591884 88.67259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00591885 88.67261505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00591886 88.67262268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00591887 88.67264557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00591888 88.67264557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00591889 88.67266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00591890 88.67266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00591891 88.67269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00591892 88.67270660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00591893 88.67272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00591894 88.67272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00591895 88.67275238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00591896 88.67276001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00591897 88.67279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00591898 88.67279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00591899 88.67281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00591900 88.67281342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00591901 88.67283630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00591902 88.67284393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00591903 88.67286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00591904 88.67286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00591905 88.67289734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00591906 88.67290497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00591907 88.67292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00591908 88.67292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00591909 88.67295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00591910 88.67295074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00591911 88.67298126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00591912 88.67298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00591913 88.67301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00591914 88.67301178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00591915 88.67303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00591916 88.67304230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00591917 88.67306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00591918 88.67306519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00591919 88.67309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00591920 88.67309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00591921 88.67311859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00591922 88.67312622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00591923 88.67314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00591924 88.67314911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00591925 88.67317963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00591926 88.67318726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00591927 88.67321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00591928 88.67321014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00591929 88.67323303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00591930 88.67323303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00591931 88.67326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00591932 88.67326355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00591933 88.67329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00591934 88.67329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00591935 88.67331696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00591936 88.67332458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00591937 88.67334747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00591938 88.67334747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00591939 88.67337799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00591940 88.67337799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00591941 88.67340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00591942 88.67340851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00591943 88.67343140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00591944 88.67343140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00591945 88.67346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00591946 88.67346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00591947 88.67349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00591948 88.67349243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00591949 88.67351532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00591950 88.67352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00591951 88.67354584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00591952 88.67354584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00591953 88.67357635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00591954 88.67357635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00591955 88.67359924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00591956 88.67360687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00591957 88.67362976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00591958 88.67362976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00591959 88.67366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00591960 88.67366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00591961 88.67369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00591962 88.67369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00591963 88.67371368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00591964 88.67371368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00591965 88.67374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00591966 88.67374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00591967 88.67377472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00591968 88.67377472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00591969 88.67379761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00591970 88.67380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00591971 88.67382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00591972 88.67382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00591973 88.67385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00591974 88.67385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00591975 88.67388153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00591976 88.67388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00591977 88.67391205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00591978 88.67391205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00591979 88.67394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00591980 88.67394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00591981 88.67397308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00591982 88.67397308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00591983 88.67399597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00591984 88.67399597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00591985 88.67401886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00591986 88.67402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00591987 88.67405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00591988 88.67405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00591989 88.67413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00591990 88.67413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00591991 88.67415619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00591992 88.67416382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00591993 88.67418671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00591994 88.67418671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00591995 88.67421722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00591996 88.67421722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00591997 88.67424774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00591998 88.67424774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00591999 88.67427063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00592000 88.67427826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00592001 88.67430115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00592002 88.67430115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00592003 88.67433167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00592004 88.67433167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00592005 88.67435455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00592006 88.67436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00592007 88.67438507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00592008 88.67438507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00592009 88.67441559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00592010 88.67441559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00592011 88.67444611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00592012 88.67444611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00592013 88.67446899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00592014 88.67447662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00592015 88.67449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00592016 88.67449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00592017 88.67453003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00592018 88.67453766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00592019 88.67456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00592020 88.67456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00592021 88.67458344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00592022 88.67458344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00592023 88.67461395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00592024 88.67461395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00592025 88.67464447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00592026 88.67464447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00592027 88.67466736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00592028 88.67467499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00592029 88.67469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00592030 88.67469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00592031 88.67472839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00592032 88.67472839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00592033 88.67475891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00592034 88.67475891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00592035 88.67478180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00592036 88.67478180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00592037 88.67481232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00592038 88.67481232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00592039 88.67484283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00592040 88.67484283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00592041 88.67486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00592042 88.67486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00592043 88.67489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00592044 88.67489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00592045 88.67492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00592046 88.67492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00592047 88.67494965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00592048 88.67495728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00592049 88.67498016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00592050 88.67498016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00592051 88.67501068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00592052 88.67501068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00592053 88.67504120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00592054 88.67504120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00592055 88.67506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00592056 88.67506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00592057 88.67509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00592058 88.67509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00592059 88.67512512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00592060 88.67512512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00592061 88.67514801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00592062 88.67515564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00592063 88.67517853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00592064 88.67517853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00592065 88.67520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00592066 88.67520905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00592067 88.67523956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00592068 88.67523956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00592069 88.67526245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00592070 88.67527008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00592071 88.67529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00592072 88.67529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00592073 88.67532349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00592074 88.67533112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00592075 88.67535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00592076 88.67535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00592077 88.67537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00592078 88.67537689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00592079 88.67540741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00592080 88.67540741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00592081 88.67543793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00592082 88.67543793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00592083 88.67546082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00592084 88.67546844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00592085 88.67549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00592086 88.67549133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00592087 88.67552185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00592088 88.67552948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00592089 88.67555237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00592090 88.67555237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00592091 88.67557526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00592092 88.67558289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00592093 88.67561340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00592094 88.67561340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00592095 88.67563629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00592096 88.67564392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00592097 88.67566681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00592098 88.67566681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00592099 88.67568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00592100 88.67568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00592101 88.67572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00592102 88.67572784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00592103 88.67575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00592104 88.67575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00592105 88.67577362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00592106 88.67578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00592107 88.67581177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00592108 88.67581177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00592109 88.67583466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00592110 88.67584229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00592111 88.67586517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00592112 88.67586517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00592113 88.67588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00592114 88.67588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00592115 88.67591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00592116 88.67592621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00592117 88.67594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00592118 88.67594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00592119 88.67597198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00592120 88.67597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00592121 88.67601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00592122 88.67601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00592123 88.67603302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00592124 88.67603302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00592125 88.67605591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00592126 88.67606354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00592127 88.67608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00592128 88.67608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00592129 88.67611694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00592130 88.67612457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00592131 88.67614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00592132 88.67614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00592133 88.67617035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00592134 88.67617798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00592135 88.67620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00592136 88.67620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00592137 88.67623138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00592138 88.67623901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00592139 88.67626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00592140 88.67626190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00592141 88.67628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00592142 88.67628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00592143 88.67631531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00592144 88.67632294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00592145 88.67634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00592146 88.67634583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00592147 88.67636871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00592148 88.67637634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00592149 88.67640686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00592150 88.67640686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00592151 88.67642975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00592152 88.67642975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00592153 88.67645264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00592154 88.67646027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00592155 88.67648315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00592156 88.67648315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00592157 88.67651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00592158 88.67652130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00592159 88.67654419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00592160 88.67654419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00592161 88.67656708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00592162 88.67656708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00592163 88.67659760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00592164 88.67660522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00592165 88.67662811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00592166 88.67662811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00592167 88.67665100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00592168 88.67665863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00592169 88.67668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00592170 88.67668152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00592171 88.67671204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00592172 88.67671967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00592173 88.67674255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00592174 88.67674255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00592175 88.67676544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00592176 88.67676544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00592177 88.67679596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00592178 88.67680359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00592179 88.67682648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00592180 88.67682648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00592181 88.67684937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00592182 88.67685699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00592183 88.67687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00592184 88.67687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00592185 88.67691040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00592186 88.67691040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00592187 88.67694092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00592188 88.67694092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00592189 88.67696381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00592190 88.67696381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00592191 88.67699432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00592192 88.67700195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00592193 88.67702484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00592194 88.67702484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00592195 88.67704773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00592196 88.67705536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00592197 88.67707825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00592198 88.67707825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00592199 88.67710876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00592200 88.67710876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00592201 88.67713165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00592202 88.67713928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00592203 88.67716217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00592204 88.67716217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00592205 88.67719269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00592206 88.67720032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00592207 88.67722321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00592208 88.67722321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00592209 88.67724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00592210 88.67725372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00592211 88.67727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00592212 88.67727661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00592213 88.67730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00592214 88.67730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00592215 88.67733765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00592216 88.67733765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00592217 88.67736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00592218 88.67736053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00592219 88.67739105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00592220 88.67739868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00592221 88.67742157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00592222 88.67742157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00592223 88.67744446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00592224 88.67745209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00592225 88.67747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00592226 88.67747498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00592227 88.67750549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00592228 88.67750549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00592229 88.67752838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00592230 88.67753601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00592231 88.67755890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00592232 88.67755890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00592233 88.67758942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00592234 88.67759705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00592235 88.67761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00592236 88.67761993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00592237 88.67764282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00592238 88.67764282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00592239 88.67767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00592240 88.67767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00592241 88.67770386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00592242 88.67770386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00592243 88.67772675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00592244 88.67773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00592245 88.67775726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00592246 88.67775726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00592247 88.67778778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00592248 88.67778778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00592249 88.67781067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00592250 88.67781830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00592251 88.67784119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00592252 88.67784119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00592253 88.67787170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00592254 88.67787170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00592255 88.67790222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00592256 88.67790222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00592257 88.67792511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00592258 88.67793274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00592259 88.67795563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00592260 88.67795563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00592261 88.67798615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00592262 88.67799377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00592263 88.67801666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00592264 88.67801666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00592265 88.67803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00592266 88.67803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00592267 88.67807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00592268 88.67807007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00592269 88.67810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00592270 88.67810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00592271 88.67812347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00592272 88.67813110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00592273 88.67815399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00592274 88.67815399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00592275 88.67818451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00592276 88.67818451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00592277 88.67820740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00592278 88.67821503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00592279 88.67823792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00592280 88.67823792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00592281 88.67826843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00592282 88.67826843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00592283 88.67829895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00592284 88.67829895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00592285 88.67832184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00592286 88.67832947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00592287 88.67835236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00592288 88.67835236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00592289 88.67838287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00592290 88.67838287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00592291 88.67840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00592292 88.67841339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00592293 88.67843628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00592294 88.67843628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00592295 88.67846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00592296 88.67846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00592297 88.67849731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00592298 88.67849731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00592299 88.67852020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00592300 88.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00592301 88.67855072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00592302 88.67855072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00592303 88.67858124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00592304 88.67858124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00592305 88.67860413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00592306 88.67861176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00592307 88.67863464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00592308 88.67863464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00592309 88.67866516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00592310 88.67866516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00592311 88.67869568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00592312 88.67869568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00592313 88.67871857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00592314 88.67871857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00592315 88.67874908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00592316 88.67874908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00592317 88.67877960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00592318 88.67877960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00592319 88.67880249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00592320 88.67881012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00592321 88.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00592322 88.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00592323 88.67886353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00592324 88.67886353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00592325 88.67888641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00592326 88.67889404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00592327 88.67891693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00592328 88.67891693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00592329 88.67894745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00592330 88.67894745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00592331 88.67897797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00592332 88.67897797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00592333 88.67900085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00592334 88.67900085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00592335 88.67902374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00592336 88.67903137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00592337 88.67906189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00592338 88.67906189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00592339 88.67908478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00592340 88.67909241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00592341 88.67911530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00592342 88.67911530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00592343 88.67914581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00592344 88.67914581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00592345 88.67917633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00592346 88.67917633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00592347 88.67919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00592348 88.67920685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00592349 88.67922974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00592350 88.67922974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00592351 88.67926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00592352 88.67926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00592353 88.67928314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00592354 88.67929077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00592355 88.67931366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00592356 88.67931366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00592357 88.67934418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00592358 88.67934418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00592359 88.67937469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00592360 88.67937469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00592361 88.67939758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00592362 88.67939758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00592363 88.67942047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00592364 88.67942810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00592365 88.67945862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00592366 88.67945862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00592367 88.67948151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00592368 88.67948914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00592369 88.67951202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00592370 88.67951202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00592371 88.67954254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00592372 88.67954254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00592373 88.67956543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00592374 88.67957306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00592375 88.67959595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00592376 88.67959595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00592377 88.67961884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00592378 88.67962646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00592379 88.67965698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00592380 88.67965698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00592381 88.67967987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00592382 88.67967987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00592383 88.67970276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00592384 88.67971039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00592385 88.67974091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00592386 88.67974091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00592387 88.67976379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00592388 88.67977142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00592389 88.67979431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00592390 88.67979431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00592391 88.67981720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00592392 88.67982483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00592393 88.67985535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00592394 88.67985535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00592395 88.67987823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00592396 88.67987823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00592397 88.67990112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00592398 88.67990875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00592399 88.67993927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00592400 88.67993927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00592401 88.67996216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00592402 88.67996979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00592403 88.67999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00592404 88.67999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00592405 88.68001556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00592406 88.68001556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00592407 88.68004608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00592408 88.68005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00592409 88.68007660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00592410 88.68007660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00592411 88.68009949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00592412 88.68010712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00592413 88.68013763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00592414 88.68013763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00592415 88.68016052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00592416 88.68016052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00592417 88.68018341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00592418 88.68019104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00592419 88.68021393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00592420 88.68021393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00592421 88.68024445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00592422 88.68025208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00592423 88.68027496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00592424 88.68027496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00592425 88.68029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00592426 88.68030548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00592427 88.68033600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00592428 88.68033600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00592429 88.68035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00592430 88.68035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00592431 88.68038177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00592432 88.68038940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00592433 88.68041229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00592434 88.68041229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00592435 88.68044281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00592436 88.68045044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00592437 88.68047333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00592438 88.68047333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00592439 88.68049622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00592440 88.68049622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00592441 88.68052673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00592442 88.68053436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00592443 88.68055725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00592444 88.68055725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00592445 88.68058014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00592446 88.68058777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00592447 88.68061066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00592448 88.68061066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00592449 88.68064117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00592450 88.68064117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00592451 88.68066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00592452 88.68067169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00592453 88.68069458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00592454 88.68069458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00592455 88.68072510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00592456 88.68073273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00592457 88.68075562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00592458 88.68075562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00592459 88.68077850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00592460 88.68078613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00592461 88.68080902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00592462 88.68080902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00592463 88.68083954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00592464 88.68083954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00592465 88.68086243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00592466 88.68087006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00592467 88.68089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00592468 88.68089294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00592469 88.68092346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00592470 88.68093109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00592471 88.68095398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00592472 88.68095398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00592473 88.68097687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00592474 88.68097687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00592475 88.68100739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00592476 88.68101501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00592477 88.68103790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00592478 88.68103790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00592479 88.68106079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00592480 88.68106842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00592481 88.68109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00592482 88.68109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00592483 88.68112183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00592484 88.68112183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00592485 88.68115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00592486 88.68115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00592487 88.68117523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00592488 88.68117523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00592489 88.68120575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00592490 88.68121338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00592491 88.68123627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00592492 88.68123627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00592493 88.68125916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00592494 88.68126678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00592495 88.68128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00592496 88.68128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00592497 88.68132019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00592498 88.68132019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00592499 88.68134308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00592500 88.68135071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00592501 88.68137360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00592502 88.68137360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00592503 88.68140411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00592504 88.68141174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00592505 88.68143463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00592506 88.68143463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00592507 88.68145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00592508 88.68145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00592509 88.68148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00592510 88.68148804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00592511 88.68151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00592512 88.68151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00592513 88.68154144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00592514 88.68154907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00592515 88.68157196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00592516 88.68157196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00592517 88.68160248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00592518 88.68161011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00592519 88.68163300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00592520 88.68163300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00592521 88.68165588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00592522 88.68165588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00592523 88.68168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00592524 88.68168640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00592525 88.68171692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00592526 88.68171692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00592527 88.68173981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00592528 88.68174744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00592529 88.68177032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00592530 88.68177032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00592531 88.68180084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00592532 88.68180847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00592533 88.68183136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00592534 88.68183136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00592535 88.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00592536 88.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00592537 88.68188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00592538 88.68188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00592539 88.68191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00592540 88.68191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00592541 88.68193817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00592542 88.68194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00592543 88.68196869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00592544 88.68196869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00592545 88.68199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00592546 88.68199921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00592547 88.68202209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00592548 88.68202972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00592549 88.68205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00592550 88.68205261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00592551 88.68208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00592552 88.68208313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00592553 88.68211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00592554 88.68211365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00592555 88.68213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00592556 88.68213654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00592557 88.68215942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00592558 88.68216705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00592559 88.68219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00592560 88.68219757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00592561 88.68222046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00592562 88.68222809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00592563 88.68225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00592564 88.68225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00592565 88.68228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00592566 88.68228149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00592567 88.68231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00592568 88.68231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00592569 88.68233490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00592570 88.68233490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00592571 88.68235779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00592572 88.68236542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00592573 88.68239594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00592574 88.68239594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00592575 88.68241882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00592576 88.68242645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00592577 88.68244934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00592578 88.68244934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00592579 88.68247986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00592580 88.68247986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00592581 88.68251038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00592582 88.68251038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00592583 88.68253326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00592584 88.68253326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00592585 88.68256378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00592586 88.68256378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00592587 88.68259430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00592588 88.68259430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00592589 88.68261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00592590 88.68262482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00592591 88.68264771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00592592 88.68264771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00592593 88.68267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00592594 88.68267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00592595 88.68270111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00592596 88.68270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00592597 88.68273163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00592598 88.68273163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00592599 88.68276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00592600 88.68276215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00592601 88.68279266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00592602 88.68279266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00592603 88.68281555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00592604 88.68281555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00592605 88.68283844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00592606 88.68284607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00592607 88.68287659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00592608 88.68287659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00592609 88.68289948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00592610 88.68290710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00592611 88.68292999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00592612 88.68292999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00592613 88.68296051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00592614 88.68296051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00592615 88.68298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00592616 88.68299103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00592617 88.68301392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00592618 88.68301392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00592619 88.68303680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00592620 88.68304443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00592621 88.68307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00592622 88.68307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00592623 88.68309784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00592624 88.68309784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00592625 88.68312073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00592626 88.68312836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00592627 88.68315887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00592628 88.68315887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00592629 88.68318176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00592630 88.68318939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00592631 88.68321228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00592632 88.68321228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00592633 88.68323517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00592634 88.68324280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00592635 88.68327332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00592636 88.68327332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00592637 88.68329620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00592638 88.68329620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00592639 88.68331909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00592640 88.68332672 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592641 88.68332672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00592642 88.68335724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00592643 88.68335724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00592644 88.68335724 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592645 88.68338013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00592646 88.68338776 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00592647 88.68338776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00592648 88.68339539 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00592649 88.68341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00592650 88.68341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00592651 88.68343353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00592652 88.68344116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00592653 88.68347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00592654 88.68347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00592655 88.68349457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00592656 88.68350220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00592657 88.68351746 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592658 88.68351746 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00592659 88.68352509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00592660 88.68352509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00592661 88.68355560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00592662 88.68355560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00592663 88.68358612 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00592664 88.68358612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00592665 88.68358612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00592666 88.68360138 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00592667 88.68360901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00592668 88.68360901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00592669 88.68363190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00592670 88.68363953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00592671 88.68367004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00592672 88.68367004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00592673 88.68369293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00592674 88.68370056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00592675 88.68372345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00592676 88.68372345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00592677 88.68375397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00592678 88.68375397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00592679 88.68378448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00592680 88.68378448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00592681 88.68380737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00592682 88.68380737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00592683 88.68383026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00592684 88.68383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00592685 88.68386841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00592686 88.68386841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00592687 88.68389130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00592688 88.68389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00592689 88.68392181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00592690 88.68392181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00592691 88.68395233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00592692 88.68395233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00592693 88.68397522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00592694 88.68398285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00592695 88.68400574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00592696 88.68400574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00592697 88.68402863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00592698 88.68403625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00592699 88.68406677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00592700 88.68406677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00592701 88.68408966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00592702 88.68409729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00592703 88.68412018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00592704 88.68412018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00592705 88.68415070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00592706 88.68415070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00592707 88.68417358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00592708 88.68418121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00592709 88.68420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00592710 88.68420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00592711 88.68422699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00592712 88.68423462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00592713 88.68426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00592714 88.68426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00592715 88.68428802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00592716 88.68428802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00592717 88.68431091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00592718 88.68431854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00592719 88.68434906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00592720 88.68434906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00592721 88.68437195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00592722 88.68437958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00592723 88.68440247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00592724 88.68440247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00592725 88.68442535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00592726 88.68442535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00592727 88.68445587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00592728 88.68446350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00592729 88.68448639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00592730 88.68448639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00592731 88.68450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00592732 88.68451691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00592733 88.68454742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00592734 88.68454742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00592735 88.68457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00592736 88.68457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00592737 88.68460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00592738 88.68460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00592739 88.68462372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00592740 88.68462372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00592741 88.68465424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00592742 88.68466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00592743 88.68468475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00592744 88.68468475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00592745 88.68470764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00592746 88.68471527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00592747 88.68474579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00592748 88.68474579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00592749 88.68476868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00592750 88.68476868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00592751 88.68479156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00592752 88.68479919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00592753 88.68482208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00592754 88.68482208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00592755 88.68485260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00592756 88.68486023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00592757 88.68488312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00592758 88.68488312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00592759 88.68490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00592760 88.68490601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00592761 88.68493652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00592762 88.68494415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00592763 88.68496704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00592764 88.68496704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00592765 88.68498993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00592766 88.68499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00592767 88.68502045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00592768 88.68502045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00592769 88.68505096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00592770 88.68505096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00592771 88.68507385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00592772 88.68508148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00592773 88.68510437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00592774 88.68510437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00592775 88.68513489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00592776 88.68514252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00592777 88.68516541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00592778 88.68516541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00592779 88.68518829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00592780 88.68519592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00592781 88.68521881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00592782 88.68521881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00592783 88.68524933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00592784 88.68524933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00592785 88.68527222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00592786 88.68527985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00592787 88.68530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00592788 88.68530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00592789 88.68533325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00592790 88.68534088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00592791 88.68536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00592792 88.68536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00592793 88.68538666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00592794 88.68538666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00592795 88.68541718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00592796 88.68541718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00592797 88.68544769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00592798 88.68544769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00592799 88.68547058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00592800 88.68547821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00592801 88.68550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00592802 88.68550110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00592803 88.68553162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00592804 88.68553162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00592805 88.68555450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00592806 88.68556213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00592807 88.68558502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00592808 88.68558502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00592809 88.68561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00592810 88.68561554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00592811 88.68564606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00592812 88.68564606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00592813 88.68566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00592814 88.68566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00592815 88.68569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00592816 88.68569946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00592817 88.68572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00592818 88.68572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00592819 88.68575287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00592820 88.68576050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00592821 88.68578339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00592822 88.68578339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00592823 88.68581390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00592824 88.68581390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00592825 88.68583679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00592826 88.68584442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00592827 88.68586731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00592828 88.68586731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00592829 88.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00592830 88.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00592831 88.68592834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00592832 88.68592834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00592833 88.68595123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00592834 88.68595886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00592835 88.68598175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00592836 88.68598175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00592837 88.68601227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00592838 88.68601227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00592839 88.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00592840 88.68604279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00592841 88.68606567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00592842 88.68606567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00592843 88.68609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00592844 88.68609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00592845 88.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00592846 88.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00592847 88.68614960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00592848 88.68614960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00592849 88.68617249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00592850 88.68618011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00592851 88.68621063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00592852 88.68621063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00592853 88.68623352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00592854 88.68624115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00592855 88.68626404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00592856 88.68626404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00592857 88.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00592858 88.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00592859 88.68631744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00592860 88.68632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00592861 88.68634796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00592862 88.68634796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00592863 88.68637085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00592864 88.68637848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00592865 88.68640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00592866 88.68640900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00592867 88.68643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00592868 88.68643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00593829 88.70003510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -00593830 88.70003510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -00593831 88.70006561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -00593832 88.70007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -00593833 88.70009613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -00593834 88.70009613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -00593835 88.70011902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -00593836 88.70012665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -00593837 88.70015717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -00593838 88.70015717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -00593839 88.70018005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -00593840 88.70018768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -00593841 88.70021057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -00593842 88.70021057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -00593843 88.70023346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -00593844 88.70023346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -00593845 88.70026398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -00593846 88.70027161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -00593847 88.70029449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -00593848 88.70029449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -00593849 88.70031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -00593850 88.70032501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -00593851 88.70035553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -00593852 88.70035553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -00593853 88.70037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -00593854 88.70037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -00593855 88.70040894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -00593856 88.70040894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -00593857 88.70045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -00593858 88.70045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -00593859 88.70047760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -00593860 88.70048523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -00593861 88.70053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -00593862 88.70053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -00593863 88.70055389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -00593864 88.70055389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -00593865 88.70058441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -00593866 88.70059204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -00593867 88.70061493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -00593868 88.70061493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -00593869 88.70063782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -00593870 88.70064545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -00593871 88.70066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -00593872 88.70066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -00608349 88.90163422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21778 -00608350 88.90164185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21778 -00608351 88.90166473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21788 -00608352 88.90166473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21788 -00608353 88.90168762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21798 -00608354 88.90168762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21798 -00608355 88.90171814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a8 -00608356 88.90171814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217a8 -00608357 88.90174866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b8 -00608358 88.90174866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217b8 -00608359 88.90177155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c8 -00608360 88.90177917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217c8 -00608361 88.90180206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d8 -00608362 88.90180206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217d8 -00608363 88.90184021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e8 -00608364 88.90184021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e8 -00608365 88.90186310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f8 -00608366 88.90187073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f8 -00608367 88.90189362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21808 -00608368 88.90189362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21808 -00608369 88.90191650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21818 -00608370 88.90191650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21818 -00608371 88.90194702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21828 -00608372 88.90195465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21828 -00608373 88.90197754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -00608374 88.90197754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -00608375 88.90200043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -00608376 88.90200806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -00608377 88.90203857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -00608378 88.90203857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -00608379 88.90206146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -00608380 88.90206146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -00608381 88.90209198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -00608382 88.90209198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -00608383 88.90211487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -00608384 88.90211487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -00608385 88.90214539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -00608386 88.90215302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -00608387 88.90217590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -00608388 88.90217590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -00608389 88.90219879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -00608390 88.90220642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -00608391 88.90223694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -00608392 88.90223694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -00610405 88.93059540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -00610406 88.93060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -00610407 88.93063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -00610408 88.93063354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -00610409 88.93065643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -00610410 88.93066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -00610411 88.93068695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -00610412 88.93068695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -00610413 88.93070984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -00610414 88.93071747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -00610415 88.93074799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -00610416 88.93074799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -00610417 88.93077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -00610418 88.93077087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -00610419 88.93079376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -00610420 88.93080139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -00610421 88.93083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -00610422 88.93083191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -00610423 88.93085480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -00610424 88.93086243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -00610425 88.93088531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -00610426 88.93088531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -00610427 88.93090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -00610428 88.93090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -00610429 88.93093872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -00610430 88.93094635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -00610431 88.93096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -00610432 88.93096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -00610433 88.93099213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -00610434 88.93099976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -00610435 88.93103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -00610436 88.93103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -00610437 88.93105316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -00610438 88.93105316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -00610439 88.93107605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -00610440 88.93108368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -00610441 88.93111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -00610442 88.93111420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -00610443 88.93113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -00610444 88.93114471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -00610445 88.93116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -00610446 88.93116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -00610447 88.93119049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -00610448 88.93119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -00612269 88.95693970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f8 -00612270 88.95694733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f8 -00612271 88.95697021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29208 -00612272 88.95697021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29208 -00612273 88.95700073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29218 -00612274 88.95700073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29218 -00612275 88.95702362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29228 -00612276 88.95702362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29228 -00612277 88.95704651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29238 -00612278 88.95705414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29238 -00612279 88.95708466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29248 -00612280 88.95708466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29248 -00612281 88.95710754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29258 -00612282 88.95710754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29258 -00612283 88.95713043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29268 -00612284 88.95713043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29268 -00612285 88.95716095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29278 -00612286 88.95716858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29278 -00612287 88.95719147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29288 -00612288 88.95719910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29288 -00612289 88.95722198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29298 -00612290 88.95722198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29298 -00612291 88.95724487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a8 -00612292 88.95724487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292a8 -00612293 88.95727539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b8 -00612294 88.95728302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292b8 -00612295 88.95730591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c8 -00612296 88.95730591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292c8 -00612297 88.95732880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d8 -00612298 88.95733643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292d8 -00612299 88.95736694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e8 -00612300 88.95736694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292e8 -00612301 88.95738983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f8 -00612302 88.95738983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x292f8 -00612303 88.95741272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29308 -00612304 88.95741272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29308 -00612305 88.95744324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29318 -00612306 88.95744324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29318 -00612307 88.95746613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29328 -00612308 88.95747375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29328 -00612309 88.95749664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29338 -00612310 88.95749664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29338 -00612311 88.95751953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29348 -00612312 88.95751953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29348 -00614181 88.98385620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -00614182 88.98385620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -00614183 88.98387909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -00614184 88.98388672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -00614185 88.98390961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd8 -00614186 88.98390961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd8 -00614187 88.98393250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde8 -00614188 88.98394012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde8 -00614189 88.98397064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf8 -00614190 88.98397064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf8 -00614191 88.98399353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce08 -00614192 88.98400116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce08 -00614193 88.98401642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce18 -00614194 88.98402405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce18 -00614195 88.98405457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce28 -00614196 88.98405457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce28 -00614197 88.98407745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce38 -00614198 88.98407745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce38 -00614199 88.98410034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce48 -00614200 88.98410034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce48 -00614201 88.98413086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce58 -00614202 88.98413086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce58 -00614203 88.98415375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce68 -00614204 88.98416138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce68 -00614205 88.98418427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce78 -00614206 88.98419189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce78 -00614207 88.98421478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce88 -00614208 88.98421478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce88 -00614209 88.98424530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce98 -00614210 88.98424530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce98 -00614211 88.98426819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea8 -00614212 88.98427582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea8 -00614213 88.98429871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb8 -00614214 88.98429871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb8 -00614215 88.98432922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec8 -00614216 88.98432922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec8 -00614217 88.98435974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced8 -00614218 88.98436737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced8 -00614219 88.98438263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee8 -00614220 88.98439026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee8 -00614221 88.98441315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef8 -00614222 88.98441315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef8 -00614223 88.98444366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf08 -00614224 88.98445129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf08 -00616213 89.01263428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -00616214 89.01264191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -00616215 89.01266479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -00616216 89.01266479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -00616217 89.01268768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -00616218 89.01268768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -00616219 89.01271820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -00616220 89.01272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -00616221 89.01274872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -00616222 89.01274872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -00616223 89.01277161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -00616224 89.01277924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -00616225 89.01280975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -00616226 89.01280975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -00616227 89.01283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -00616228 89.01284027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -00616229 89.01286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -00616230 89.01286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -00616231 89.01288605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -00616232 89.01288605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -00616233 89.01292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -00616234 89.01292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -00616235 89.01294708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -00616236 89.01294708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -00616237 89.01296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -00616238 89.01297760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -00616239 89.01300812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -00616240 89.01300812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -00616241 89.01303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -00616242 89.01303864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -00616243 89.01306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -00616244 89.01306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -00616245 89.01308441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -00616246 89.01308441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -00616247 89.01312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -00616248 89.01312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -00616249 89.01314545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -00616250 89.01314545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -00616251 89.01316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -00616252 89.01317596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -00616253 89.01320648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -00616254 89.01320648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -00616255 89.01322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -00616256 89.01323700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -00618031 89.03836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -00618032 89.03836823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -00618033 89.03839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -00618034 89.03839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -00618035 89.03842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -00618036 89.03842926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -00618037 89.03845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -00618038 89.03845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -00618039 89.03847504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -00618040 89.03847504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -00618041 89.03850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -00618042 89.03850555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -00618043 89.03853607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -00618044 89.03853607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -00618045 89.03855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -00618046 89.03856659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -00618047 89.03858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -00618048 89.03858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -00618049 89.03862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -00618050 89.03862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -00618051 89.03865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -00618052 89.03865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -00618053 89.03867340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -00618054 89.03867340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -00618055 89.03870392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -00618056 89.03870392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -00618057 89.03873444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -00618058 89.03873444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -00618059 89.03875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -00618060 89.03876495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -00618061 89.03878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -00618062 89.03878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -00618063 89.03881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -00618064 89.03881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -00618065 89.03884125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -00618066 89.03884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -00618067 89.03887177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -00618068 89.03887177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -00618069 89.03890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -00618070 89.03890228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -00618071 89.03893280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -00618072 89.03893280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -00618073 89.03895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -00618074 89.03895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -00620006 89.06627655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b8 -00620007 89.06630707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c8 -00620008 89.06630707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c8 -00620009 89.06633759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d8 -00620010 89.06633759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d8 -00620011 89.06636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e8 -00620012 89.06636810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e8 -00620013 89.06639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f8 -00620014 89.06639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f8 -00620015 89.06642151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38408 -00620016 89.06642914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38408 -00620017 89.06645203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38418 -00620018 89.06645203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38418 -00620019 89.06647491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38428 -00620020 89.06647491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38428 -00620021 89.06650543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38438 -00620022 89.06650543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38438 -00620023 89.06653595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38448 -00620024 89.06653595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38448 -00620025 89.06655884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38458 -00620026 89.06656647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38458 -00620027 89.06658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38468 -00620028 89.06658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38468 -00620029 89.06661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38478 -00620030 89.06661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38478 -00620031 89.06664276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38488 -00620032 89.06665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38488 -00620033 89.06667328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38498 -00620034 89.06667328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38498 -00620035 89.06670380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a8 -00620036 89.06670380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a8 -00620037 89.06673431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b8 -00620038 89.06673431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b8 -00620039 89.06675720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c8 -00620040 89.06676483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c8 -00620041 89.06678772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d8 -00620042 89.06678772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d8 -00620043 89.06681824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e8 -00620044 89.06681824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e8 -00620045 89.06684113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f8 -00620046 89.06684875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x384f8 -00620047 89.06687164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38508 -00620048 89.06687164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38508 -00620049 89.06690216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38518 -00621799 89.09164429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc8 -00621800 89.09165192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc8 -00621801 89.09168243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd8 -00621802 89.09168243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbd8 -00621803 89.09170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe8 -00621804 89.09170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbe8 -00621805 89.09172821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf8 -00621806 89.09173584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbf8 -00621807 89.09176636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc08 -00621808 89.09176636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc08 -00621809 89.09178925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc18 -00621810 89.09179688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc18 -00621811 89.09181976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc28 -00621812 89.09181976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc28 -00621813 89.09184265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc38 -00621814 89.09185028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc38 -00621815 89.09188080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc48 -00621816 89.09188080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc48 -00621817 89.09190369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -00621818 89.09190369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -00621819 89.09192657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -00621820 89.09193420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -00621821 89.09196472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -00621822 89.09196472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -00621823 89.09198761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -00621824 89.09199524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -00621825 89.09201813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -00621826 89.09201813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -00621827 89.09204102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -00621828 89.09204102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -00621829 89.09207153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -00621830 89.09207916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -00621831 89.09210205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -00621832 89.09210205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -00621833 89.09212494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -00621834 89.09213257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -00621835 89.09216309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -00621836 89.09216309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -00621837 89.09218597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -00621838 89.09218597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -00621839 89.09220886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -00621840 89.09221649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -00621841 89.09224701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -00621842 89.09224701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -00623745 89.11920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f898 -00623746 89.11920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f898 -00623747 89.11922455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a8 -00623748 89.11923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a8 -00623749 89.11925507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b8 -00623750 89.11925507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b8 -00623751 89.11928558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c8 -00623752 89.11929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c8 -00623753 89.11931610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d8 -00623754 89.11931610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d8 -00623755 89.11933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e8 -00623756 89.11933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e8 -00623757 89.11936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f8 -00623758 89.11936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f8 -00623759 89.11940002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f908 -00623760 89.11940002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f908 -00623761 89.11942291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f918 -00623762 89.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f918 -00623763 89.11945343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f928 -00623764 89.11945343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f928 -00623765 89.11948395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f938 -00623766 89.11948395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f938 -00623767 89.11950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f948 -00623768 89.11951447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f948 -00623769 89.11953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f958 -00623770 89.11953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f958 -00623771 89.11956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f968 -00623772 89.11956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f968 -00623773 89.11959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f978 -00623774 89.11959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f978 -00623775 89.11962128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f988 -00623776 89.11962128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f988 -00623777 89.11965179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f998 -00623778 89.11965179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f998 -00623779 89.11968231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a8 -00623780 89.11968231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9a8 -00623781 89.11970520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b8 -00623782 89.11971283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b8 -00623783 89.11973572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c8 -00623784 89.11973572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c8 -00623785 89.11976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d8 -00623786 89.11976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d8 -00623787 89.11979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e8 -00623788 89.11979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e8 -00625669 89.14633942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b8 -00625670 89.14634705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b8 -00625671 89.14637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c8 -00625672 89.14637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c8 -00625673 89.14640045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d8 -00625674 89.14640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d8 -00625675 89.14643097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e8 -00625676 89.14643097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e8 -00625677 89.14645386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f8 -00625678 89.14645386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f8 -00625679 89.14648438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43508 -00625680 89.14649200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43508 -00625681 89.14651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43518 -00625682 89.14651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43518 -00625683 89.14653778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43528 -00625684 89.14654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43528 -00625685 89.14657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43538 -00625686 89.14657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43538 -00625687 89.14659882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43548 -00625688 89.14659882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43548 -00625689 89.14662170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43558 -00625690 89.14662933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43558 -00625691 89.14665222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43568 -00625692 89.14665222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43568 -00625693 89.14668274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43578 -00625694 89.14669037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43578 -00625695 89.14671326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43588 -00625696 89.14671326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43588 -00625697 89.14673615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43598 -00625698 89.14674377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43598 -00625699 89.14677429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a8 -00625700 89.14677429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a8 -00625701 89.14679718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b8 -00625702 89.14680481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b8 -00625703 89.14682770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c8 -00625704 89.14682770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c8 -00625705 89.14685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d8 -00625706 89.14685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d8 -00625707 89.14688110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e8 -00625708 89.14688873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e8 -00625709 89.14691162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f8 -00625710 89.14691925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f8 -00625711 89.14694214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43608 -00625712 89.14694214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43608 -00627600 89.17353058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47108 -00627601 89.17355347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47118 -00627602 89.17356110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47118 -00627603 89.17358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47128 -00627604 89.17358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47128 -00627605 89.17361450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47138 -00627606 89.17361450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47138 -00627607 89.17363739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47148 -00627608 89.17363739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47148 -00627609 89.17366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47158 -00627610 89.17366028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47158 -00627611 89.17369080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47168 -00627612 89.17369843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47168 -00627613 89.17372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47178 -00627614 89.17372131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47178 -00627615 89.17374420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47188 -00627616 89.17375183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47188 -00627617 89.17378235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47198 -00627618 89.17378235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47198 -00627619 89.17380524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a8 -00627620 89.17381287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471a8 -00627621 89.17383575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b8 -00627622 89.17384338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471b8 -00627623 89.17385864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c8 -00627624 89.17386627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471c8 -00627625 89.17389679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d8 -00627626 89.17389679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471d8 -00627627 89.17391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e8 -00627628 89.17391968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471e8 -00627629 89.17394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f8 -00627630 89.17394257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f8 -00627631 89.17397308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47208 -00627632 89.17398071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47208 -00627633 89.17399597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47218 -00627634 89.17400360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47218 -00627635 89.17402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47228 -00627636 89.17402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47228 -00627637 89.17405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47238 -00627638 89.17405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47238 -00627639 89.17407990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47248 -00627640 89.17408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47248 -00627641 89.17410278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47258 -00627642 89.17411041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47258 -00627643 89.17414093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47268 -00629619 89.20204926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b028 -00629620 89.20205688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b028 -00629621 89.20207977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b038 -00629622 89.20207977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b038 -00629623 89.20210266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b048 -00629624 89.20211029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b048 -00629625 89.20214081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b058 -00629626 89.20214081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b058 -00629627 89.20216370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b068 -00629628 89.20216370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b068 -00629629 89.20218658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b078 -00629630 89.20219421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b078 -00629631 89.20221710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b088 -00629632 89.20221710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b088 -00629633 89.20224762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b098 -00629634 89.20225525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b098 -00629635 89.20227814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a8 -00629636 89.20227814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a8 -00629637 89.20230103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b8 -00629638 89.20230103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b8 -00629639 89.20233154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c8 -00629640 89.20233917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c8 -00629641 89.20236206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d8 -00629642 89.20236206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0d8 -00629643 89.20238495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e8 -00629644 89.20239258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0e8 -00629645 89.20241547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f8 -00629646 89.20241547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0f8 -00629647 89.20244598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b108 -00629648 89.20245361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b108 -00629649 89.20247650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b118 -00629650 89.20247650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b118 -00629651 89.20249939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b128 -00629652 89.20249939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b128 -00629653 89.20252991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b138 -00629654 89.20253754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b138 -00629655 89.20256042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b148 -00629656 89.20256042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b148 -00629657 89.20258331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b158 -00629658 89.20259094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b158 -00629659 89.20261383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b168 -00629660 89.20261383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b168 -00629661 89.20264435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b178 -00629662 89.20264435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b178 -00633620 89.84380341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633621 89.84397888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633622 89.84414673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633623 89.84431458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633624 89.84515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633625 89.84532166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633626 89.84757996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633627 89.84774780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633628 89.84791565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633629 89.84807587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633630 89.84969330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633631 89.84985352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633632 89.85077667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633633 89.85276031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633634 89.86498260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633635 89.86743164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633636 89.86759186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633637 89.86853027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633638 89.86954498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633639 89.86962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633640 89.86973572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633641 89.86990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633642 89.87193298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633643 89.87271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633644 89.87597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633645 89.87670135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633646 89.87686920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633647 89.87718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633648 89.88056183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633649 89.88433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633650 89.88462830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633651 89.88691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633652 89.88748932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633653 89.88935089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633654 89.88963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633655 89.88980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633656 89.89063263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633657 89.89143372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633658 89.89160156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633659 89.89242554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633660 89.89259338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633661 89.89334869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633662 89.89408112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633663 89.89437103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633664 89.89465332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633665 89.89657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633666 89.90320587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633667 89.90353394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633668 89.90454102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633669 89.90463257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633670 89.90473938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633671 89.90502167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633672 89.90533447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633673 89.90695953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633674 89.90763855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633675 89.90779877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633676 89.90808868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633677 89.90836334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633678 89.90949249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633679 89.90977478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633680 89.91005707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633681 89.91033936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633682 89.91134644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633683 89.91140747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633684 89.91151428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633685 89.91439056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633686 89.91467285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633687 89.91561890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633688 89.91695404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633689 89.91723633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633690 89.91792297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633691 89.91820526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633692 89.91926575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633693 89.91934204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633694 89.91944122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633695 89.91997528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633696 89.92108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633697 89.92124939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633698 89.92190552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633699 89.92218781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633700 89.92247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633701 89.92329407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633702 89.92357635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633703 89.92468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633704 89.92475128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633705 89.92485046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633706 89.92536926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633707 89.92598724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633708 89.92798615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633709 89.92826843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633710 89.92903900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633711 89.92983246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633712 89.93000031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633713 89.93098450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633714 89.93174744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633715 89.93277740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633716 89.93285370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633717 89.93295288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633718 89.93323517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633719 89.93340302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633720 89.93655396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633721 89.93752289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633722 89.93758392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633723 89.93769073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633724 89.93785858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633725 89.93869781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633726 89.93994904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633727 89.94058228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633728 89.94126129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633729 89.94158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633730 89.94187164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633731 89.94246674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633732 89.94341278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633733 89.94369507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633734 89.94437408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633735 89.94499969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633736 89.94705963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633737 89.94764709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633738 89.94830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633739 89.94931030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633740 89.94938660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00633741 89.94949341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633742 89.94977570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633743 89.95009613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633744 89.95100403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633745 89.95128632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633746 89.95216370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633747 89.95288849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633748 89.96722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633749 89.96752167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633750 89.96780396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633751 89.96807098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633752 89.96835327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633753 89.96906281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633754 89.96923065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633755 89.96969604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633756 89.96987152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633757 89.97051239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633758 89.97125244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633759 89.97232056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633760 89.97249603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633761 89.97276306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633762 89.97293091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633763 89.97561646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633764 89.97578430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633765 89.97801971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633766 89.97861481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633767 89.97889709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633768 89.97906494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633769 89.97934723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633770 89.97962952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633771 89.98015594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633772 89.98072052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633773 89.98313141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633774 89.98341370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633775 89.98497009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633776 89.98611450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633777 89.99908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633778 89.99925995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633779 89.99954224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633780 89.99982452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633781 90.00048065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633782 90.00180817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633783 90.00243378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633784 90.00361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633785 90.00649261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633786 90.00737762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633787 90.00754547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633788 90.00816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633789 90.00833130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633790 90.00861359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633791 90.01030731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633792 90.01058197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633793 90.01117706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633794 90.01463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00633795 90.01487732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633796 90.01939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633797 90.01982880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633798 90.02017212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633799 90.02134705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633800 90.02177429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633801 90.02214813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633802 90.02250671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633803 90.02285004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633804 90.02326202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633805 90.02367401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633806 90.02401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633807 90.02468109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633808 90.02506256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633809 90.02540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633810 90.02574921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633811 90.02626801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633812 90.02671051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633813 90.02715302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633814 90.02750397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633815 90.02786255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633816 90.02820587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633817 90.02856445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633818 90.02897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633819 90.02932739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633820 90.02977753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633821 90.03012085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633822 90.03054047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633823 90.03088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633824 90.03122711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633825 90.03155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633826 90.03190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633827 90.03223419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633828 90.03263092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633829 90.03297424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633830 90.03332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633831 90.03366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633832 90.03402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633833 90.03436279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633834 90.03469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633835 90.03513336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633836 90.03546906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633837 90.03588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633838 90.03623199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633839 90.03658295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633840 90.03692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633841 90.03727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633842 90.03765106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633843 90.03798676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633844 90.03836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633845 90.03879547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633846 90.04005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633847 90.04041290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633848 90.04116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633849 90.04161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633850 90.04199219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633851 90.04325867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633852 90.04375458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633853 90.04412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633854 90.04464722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633855 90.04498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633856 90.04536438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633857 90.04572296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633858 90.04607391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633859 90.04640961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633860 90.04674530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633861 90.04714966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633862 90.04752350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633863 90.04788971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633864 90.04823303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633865 90.04857635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633866 90.04891968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633867 90.04924774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633868 90.05095673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633869 90.05136108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633870 90.05171204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633871 90.05204773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633872 90.05240631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633873 90.05274963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633874 90.05309296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633875 90.05343628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633876 90.05377960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633877 90.05411530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633878 90.05451202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633879 90.05484772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633880 90.05533600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633881 90.05567169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633882 90.05604553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633883 90.05638885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633884 90.05673218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633885 90.05720520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633886 90.05755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633887 90.05796814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633888 90.05838776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633889 90.05872345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633890 90.05905151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633891 90.05939484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633892 90.05972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633893 90.06008148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633894 90.06041718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633895 90.06078339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633896 90.06112671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633897 90.06147003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633898 90.06181335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633899 90.06214905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633900 90.06251526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633901 90.06290436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633902 90.06334686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633903 90.08698273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633904 90.08744049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633905 90.08788300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633906 90.08823395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633907 90.08865356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633908 90.08898926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633909 90.08940125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633910 90.08974457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633911 90.09009552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633912 90.09043121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633913 90.09199524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633914 90.09237671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633915 90.10560608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633916 90.10611725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633917 90.10666656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633918 90.10707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633919 90.10742950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633920 90.10776520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633921 90.10810089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633922 90.10842896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633923 90.10876465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633924 90.10916901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633925 90.10951233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633926 90.10984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633927 90.11019897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633928 90.11066437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633929 90.11103058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633930 90.11135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633931 90.11171722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633932 90.11205292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633933 90.11238098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633934 90.11273193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633935 90.11306000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633936 90.11339569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633937 90.11373138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633938 90.11412811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633939 90.11540985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633940 90.11551666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633941 90.11559296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633942 90.11565399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633943 90.11717224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633944 90.11776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633945 90.11812592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633946 90.11846161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633947 90.11885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633948 90.11920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633949 90.11965179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633950 90.12001801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633951 90.12039948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633952 90.12078094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633953 90.12111664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633954 90.12147522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633955 90.12181854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633956 90.12216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633957 90.12255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633958 90.12298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633959 90.12337494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633960 90.12372589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633961 90.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633962 90.12441254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633963 90.12475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633964 90.12509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633965 90.12543488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633966 90.12610626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633967 90.12645721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633968 90.12680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633969 90.12714386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633970 90.12747955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633971 90.12786102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633972 90.12837219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633973 90.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633974 90.12905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633975 90.12939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633976 90.12983704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633977 90.13018036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633978 90.13051605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633979 90.13086700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633980 90.13121796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633981 90.13156891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633982 90.13191986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633983 90.13224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633984 90.13262177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633985 90.13295746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633986 90.13329315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633987 90.13362122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633988 90.13395691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633989 90.13483429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -00633990 90.13892365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -00633991 90.13923645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00633992 90.25985718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00633993 90.25986481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00633994 90.25988770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00633995 90.25989532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00633996 90.25992584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00633997 90.25992584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00633998 90.25994873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00633999 90.25995636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00634000 90.25997925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00634001 90.25997925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00634002 90.26000977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00634003 90.26000977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00634004 90.26003265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00634005 90.26004028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00634006 90.26006317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00634007 90.26006317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00634008 90.26008606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00634009 90.26009369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00634010 90.26011658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00634011 90.26012421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00634012 90.26014709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00634013 90.26014709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00634014 90.26016998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00634015 90.26017761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00634016 90.26020813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00634017 90.26020813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00634018 90.26023102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00634019 90.26023102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00634020 90.26025391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00634021 90.26026154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00634022 90.26028442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00634023 90.26028442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00634024 90.26031494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00634025 90.26031494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00634026 90.26033783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00634027 90.26034546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00634028 90.26036835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00634029 90.26036835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00634030 90.26039886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00634031 90.26040649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00634032 90.26042938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00634033 90.26042938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00634034 90.26045227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00634035 90.26045227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00634036 90.26048279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00634037 90.26048279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00634038 90.26051331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00634039 90.26051331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00634040 90.26053619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00634041 90.26054382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00634042 90.26056671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00634043 90.26056671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00634044 90.26059723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00634045 90.26059723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00634046 90.26062012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00634047 90.26062775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00634048 90.26065063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00634049 90.26065063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00634050 90.26068115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00634051 90.26068115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00634052 90.26071167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00634053 90.26071167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00634054 90.26073456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00634055 90.26073456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00634056 90.26076508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00634057 90.26076508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00634058 90.26079559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00634059 90.26079559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00634060 90.26081848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00634061 90.26082611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00634062 90.26084900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00634063 90.26084900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00634064 90.26087952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00634065 90.26087952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00634066 90.26090240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00634067 90.26091003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00634068 90.26093292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00634069 90.26093292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00634070 90.26096344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00634071 90.26096344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00634072 90.26099396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00634073 90.26099396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00634074 90.26101685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00634075 90.26101685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00634076 90.26103973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00634077 90.26104736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00634078 90.26107788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00634079 90.26107788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00634080 90.26110077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00634081 90.26110840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00634082 90.26113129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00634083 90.26113129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00634084 90.26116180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00634085 90.26116180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00634086 90.26118469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00634087 90.26119232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00634088 90.26121521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00634089 90.26121521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00634090 90.26123810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00634091 90.26123810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00634092 90.26126862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00634093 90.26127625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00634094 90.26129913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00634095 90.26129913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00634096 90.26132202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00634097 90.26132965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00634098 90.26136017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00634099 90.26136017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00634100 90.26138306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00634101 90.26138306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00634102 90.26140594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00634103 90.26141357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00634104 90.26143646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00634105 90.26143646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00634106 90.26146698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00634107 90.26146698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00634108 90.26148987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00634109 90.26149750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00634110 90.26152039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00634111 90.26152039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00634112 90.26155090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00634113 90.26155853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00634114 90.26158142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00634115 90.26158142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00634116 90.26162720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00634117 90.26162720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00634118 90.26165009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00634119 90.26165771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00634120 90.26168060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00634121 90.26168060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00634122 90.26171112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00634123 90.26171112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00634124 90.26173401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00634125 90.26174164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00634126 90.26176453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00634127 90.26176453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00634128 90.26179504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00634129 90.26179504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00634130 90.26182556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00634131 90.26182556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00634132 90.26184845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00634133 90.26184845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00634134 90.26187897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00634135 90.26187897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00634136 90.26190948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00634137 90.26190948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00634138 90.26193237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00634139 90.26194000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00634140 90.26196289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00634141 90.26196289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00634142 90.26199341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00634143 90.26199341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00634144 90.26201630 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00634145 90.26202393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00634146 90.26204681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00634147 90.26204681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00634148 90.26207733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00634149 90.26207733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00634150 90.26210022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00634151 90.26210785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00634152 90.26213074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00634153 90.26213074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00634154 90.26215363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00634155 90.26216125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00634156 90.26219177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00634157 90.26219177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00634158 90.26221466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00634159 90.26221466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00634160 90.26223755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00634161 90.26224518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00634162 90.26227570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00634163 90.26227570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00634164 90.26229858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00634165 90.26229858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00634166 90.26232147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00634167 90.26232910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00634168 90.26235199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00634169 90.26235199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00634170 90.26238251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00634171 90.26239014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00634172 90.26241302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00634173 90.26241302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00634174 90.26243591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00634175 90.26243591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00634176 90.26246643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00634177 90.26247406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00634178 90.26249695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00634179 90.26249695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00634180 90.26251984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00634181 90.26251984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00634182 90.26255035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00634183 90.26255035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00634184 90.26258087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00634185 90.26258087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00634186 90.26260376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00634187 90.26261139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00634188 90.26263428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00634189 90.26263428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00634190 90.26266479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00634191 90.26266479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00634192 90.26268768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00634193 90.26269531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00634194 90.26271820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00634195 90.26271820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00634196 90.26274872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00634197 90.26274872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00634198 90.26277161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00634199 90.26277924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00634200 90.26280212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00634201 90.26280212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00634202 90.26282501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00634203 90.26283264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00634204 90.26286316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00634205 90.26286316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00634206 90.26288605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00634207 90.26288605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00634208 90.26290894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00634209 90.26291656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00634210 90.26294708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00634211 90.26294708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00634212 90.26296997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00634213 90.26297760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00634214 90.26300049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00634215 90.26300049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00634216 90.26303101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00634217 90.26303101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00634218 90.26305389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00634219 90.26306152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00634220 90.26308441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00634221 90.26308441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00634222 90.26310730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00634223 90.26310730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00634224 90.26313782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00634225 90.26314545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00634226 90.26316833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00634227 90.26316833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00634228 90.26319122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00634229 90.26319122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00634230 90.26322174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00634231 90.26322937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00634232 90.26325226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00634233 90.26325226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00634234 90.26327515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00634235 90.26328278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00634236 90.26330566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00634237 90.26330566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00634238 90.26333618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00634239 90.26333618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00634240 90.26335907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00634241 90.26336670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00634242 90.26338959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00634243 90.26338959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00634244 90.26342010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00634245 90.26342010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00634246 90.26344299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00634247 90.26345062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00634248 90.26347351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00634249 90.26347351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00634250 90.26350403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00634251 90.26350403 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00634252 90.26353455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00634253 90.26353455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00634254 90.26355743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00634255 90.26355743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00634256 90.26358032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00634257 90.26358795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00634258 90.26361847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00634259 90.26361847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00634260 90.26364136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00634261 90.26364899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00634262 90.26367188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00634263 90.26367188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00634264 90.26370239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00634265 90.26370239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00634266 90.26373291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00634267 90.26373291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00634268 90.26375580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00634269 90.26376343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00634270 90.26378632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00634271 90.26378632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00634272 90.26381683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00634273 90.26382446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00634274 90.26384735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00634275 90.26384735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00634276 90.26387024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00634277 90.26387787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00634278 90.26390076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00634279 90.26390076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00634280 90.26393127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00634281 90.26393890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00634282 90.26396179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00634283 90.26396179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00634284 90.26398468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00634285 90.26399231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00634286 90.26402283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00634287 90.26402283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00634288 90.26404572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00634289 90.26405334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00634290 90.26407623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00634291 90.26407623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00634292 90.26409912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00634293 90.26410675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00634294 90.26413727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00634295 90.26413727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00634296 90.26416016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00634297 90.26416779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00634298 90.26419067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00634299 90.26419067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00634300 90.26422119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00634301 90.26422119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00634302 90.26425171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00634303 90.26425171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00634304 90.26427460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00634305 90.26428223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00634306 90.26430511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00634307 90.26430511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00634308 90.26433563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00634309 90.26433563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00634310 90.26436615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00634311 90.26436615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00634312 90.26438904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00634313 90.26439667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00634314 90.26441956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00634315 90.26442719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00634316 90.26445770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00634317 90.26445770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00634318 90.26448059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00634319 90.26448822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00634320 90.26451111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00634321 90.26451111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00634322 90.26453400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00634323 90.26453400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00634324 90.26456451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00634325 90.26457214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00634326 90.26459503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00634327 90.26459503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00634328 90.26461792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00634329 90.26462555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00634330 90.26465607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00634331 90.26465607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00634332 90.26467896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00634333 90.26467896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00634334 90.26470184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00634335 90.26470947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00634336 90.26473236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00634337 90.26473236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00634338 90.26476288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00634339 90.26477051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00634340 90.26479340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00634341 90.26480103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00634342 90.26482391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00634343 90.26482391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00634344 90.26485443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00634345 90.26485443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00634346 90.26487732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00634347 90.26488495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00634348 90.26490784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00634349 90.26490784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00634350 90.26493073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00634351 90.26493835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00634352 90.26496887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00634353 90.26496887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00634354 90.26499176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00634355 90.26499176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00634356 90.26501465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00634357 90.26502228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00634358 90.26505280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00634359 90.26505280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00634360 90.26507568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00634361 90.26507568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00634362 90.26509857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00634363 90.26510620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00634364 90.26512909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00634365 90.26512909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00634366 90.26515961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00634367 90.26516724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00634368 90.26519012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00634369 90.26519012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00634370 90.26521301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00634371 90.26521301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00634372 90.26524353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00634373 90.26525116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00634374 90.26527405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00634375 90.26527405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00634376 90.26529694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00634377 90.26529694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00634378 90.26532745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00634379 90.26532745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00634380 90.26535797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00634381 90.26535797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00634382 90.26538086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00634383 90.26538849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00634384 90.26541138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00634385 90.26541138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00634386 90.26544189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00634387 90.26544189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00634388 90.26546478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00634389 90.26547241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00634390 90.26549530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00634391 90.26549530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00634392 90.26552582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00634393 90.26552582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00634394 90.26555634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00634395 90.26555634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00634396 90.26557922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00634397 90.26557922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00634398 90.26560974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00634399 90.26560974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00634400 90.26564026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00634401 90.26564026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00634402 90.26566315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00634403 90.26567078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00634404 90.26569366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00634405 90.26569366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00634406 90.26572418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00634407 90.26572418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00634408 90.26574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00634409 90.26575470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00634410 90.26577759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00634411 90.26577759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00634412 90.26580811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00634413 90.26580811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00634414 90.26583099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00634415 90.26583862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00634416 90.26586151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00634417 90.26586151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00634418 90.26588440 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00634419 90.26589203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00634420 90.26592255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00634421 90.26592255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00634422 90.26594543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00634423 90.26595306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00634424 90.26597595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00634425 90.26597595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00634426 90.26600647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00634427 90.26600647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00634428 90.26602936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00634429 90.26603699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00634430 90.26605988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00634431 90.26605988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00646598 90.40417480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa8 -00646599 90.40417480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00646600 90.40417480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa8 -00646601 90.40417480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00646602 90.40419769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb8 -00646603 90.40419769 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00646604 90.40420532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb8 -00646605 90.40420532 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00646606 90.40422821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc8 -00646607 90.40422821 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00646608 90.40422821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc8 -00646609 90.40422821 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00646610 90.40425873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd8 -00646611 90.40425873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00646612 90.40425873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd8 -00646613 90.40425873 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00646614 90.40428925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe8 -00646615 90.40428925 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00646616 90.40429688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe8 -00646617 90.40429688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00646618 90.40431976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff8 -00646619 90.40431976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00646620 90.40431976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff8 -00646621 90.40431976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00646622 90.40434265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15008 -00646623 90.40434265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00646624 90.40435028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15008 -00646625 90.40435028 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00646626 90.40438080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15018 -00646627 90.40438080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00646628 90.40438080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15018 -00646629 90.40438080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00646630 90.40440369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15028 -00646631 90.40441132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00646632 90.40441132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15028 -00646633 90.40441132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00646634 90.40443420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15038 -00646635 90.40443420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15038 -00646636 90.40443420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00646637 90.40444183 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00646638 90.40445709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15048 -00646639 90.40446472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15048 -00646640 90.40446472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00646641 90.40446472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00650572 90.43033600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -00650573 90.43033600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00650574 90.43033600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -00650575 90.43034363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -00650576 90.43034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00650577 90.43034363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -00650578 90.43036652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -00650579 90.43036652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00650580 90.43036652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -00650581 90.43036652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -00650582 90.43036652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00650583 90.43036652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -00650584 90.43039703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -00650585 90.43039703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00650586 90.43039703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -00650587 90.43039703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -00650588 90.43039703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00650589 90.43039703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -00650590 90.43042755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -00650591 90.43042755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00650592 90.43042755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -00650593 90.43042755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -00650594 90.43042755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00650595 90.43042755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -00650596 90.43045044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -00650597 90.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00650598 90.43045044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -00650599 90.43045807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -00650600 90.43045807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00650601 90.43045807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -00650602 90.43048096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -00650603 90.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00650604 90.43048096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -00650605 90.43048096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -00650606 90.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00650607 90.43048096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -00650608 90.43051147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -00650609 90.43051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00650610 90.43051147 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -00650611 90.43051147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -00650612 90.43051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00650613 90.43051147 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -00650614 90.43054199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -00650615 90.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00655392 90.45486450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00655393 90.45486450 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -00655394 90.45486450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd18 -00655395 90.45486450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00655396 90.45487213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd18 -00655397 90.45487213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -00655398 90.45490265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00655399 90.45490265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd28 -00655400 90.45490265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -00655401 90.45490265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00655402 90.45490265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd28 -00655403 90.45490265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -00655404 90.45493317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00655405 90.45494080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd38 -00655406 90.45494080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00655407 90.45494080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd38 -00655408 90.45494080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -00655409 90.45494080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -00655410 90.45497131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00655411 90.45497131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00655412 90.45497131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd48 -00655413 90.45497894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd48 -00655414 90.45497894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -00655415 90.45497894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -00655416 90.45500183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00655417 90.45500183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00655418 90.45500946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd58 -00655419 90.45500946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd58 -00655420 90.45501709 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -00655421 90.45501709 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -00655422 90.45503235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00655423 90.45503998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00655424 90.45503998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd68 -00655425 90.45504761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd68 -00655426 90.45505524 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -00655427 90.45506287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -00655428 90.45507050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00655429 90.45507050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00655430 90.45507813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd78 -00655431 90.45507813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd78 -00655432 90.45509338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -00655433 90.45510101 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -00655434 90.45510101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00655435 90.45510864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00660432 90.48167419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -00660433 90.48167419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e8 -00660434 90.48167419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f278 -00660435 90.48167419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -00660436 90.48167419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4e8 -00660437 90.48167419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f278 -00660438 90.48169708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -00660439 90.48169708 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f8 -00660440 90.48169708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f288 -00660441 90.48169708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -00660442 90.48170471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf4f8 -00660443 90.48170471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f288 -00660444 90.48171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -00660445 90.48172760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf508 -00660446 90.48172760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -00660447 90.48172760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f298 -00660448 90.48172760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf508 -00660449 90.48172760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f298 -00660450 90.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -00660451 90.48175049 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf518 -00660452 90.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -00660453 90.48175812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a8 -00660454 90.48175812 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf518 -00660455 90.48175812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2a8 -00660456 90.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -00660457 90.48178864 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf528 -00660458 90.48178864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -00660459 90.48178864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b8 -00660460 90.48178864 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf528 -00660461 90.48178864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2b8 -00660462 90.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -00660463 90.48181152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf538 -00660464 90.48181915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -00660465 90.48181915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c8 -00660466 90.48181915 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf538 -00660467 90.48181915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2c8 -00660468 90.48184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -00660469 90.48184204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf548 -00660470 90.48184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -00660471 90.48184204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d8 -00660472 90.48184204 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf548 -00660473 90.48184967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f2d8 -00660474 90.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -00660475 90.48187256 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0xf558 -00665686 90.50710297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -00665687 90.50710297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a68 -00665688 90.50710297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c8 -00665689 90.50711060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -00665690 90.50711060 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a68 -00665691 90.50711060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c8 -00665692 90.50713348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -00665693 90.50713348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a78 -00665694 90.50713348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d8 -00665695 90.50713348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -00665696 90.50713348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a78 -00665697 90.50713348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d8 -00665698 90.50716400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -00665699 90.50716400 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a88 -00665700 90.50716400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -00665701 90.50717163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e8 -00665702 90.50717163 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a88 -00665703 90.50717163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e8 -00665704 90.50719452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -00665705 90.50719452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a98 -00665706 90.50719452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -00665707 90.50719452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f8 -00665708 90.50719452 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a98 -00665709 90.50720215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f8 -00665710 90.50721741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -00665711 90.50721741 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa8 -00665712 90.50722504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -00665713 90.50722504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a08 -00665714 90.50722504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa8 -00665715 90.50722504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a08 -00665716 90.50724792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -00665717 90.50724792 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab8 -00665718 90.50724792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -00665719 90.50724792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a18 -00665720 90.50724792 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab8 -00665721 90.50725555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a18 -00665722 90.50727844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -00665723 90.50727844 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac8 -00665724 90.50728607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -00665725 90.50728607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a28 -00665726 90.50728607 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac8 -00665727 90.50728607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a28 -00665728 90.50730896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -00665729 90.50730896 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad8 -00670746 90.53208160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e98 -00670747 90.53208923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -00670748 90.53208923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -00670749 90.53208923 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e98 -00670750 90.53208923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -00670751 90.53208923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -00670752 90.53211212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -00670753 90.53211212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -00670754 90.53211212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea8 -00670755 90.53211975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -00670756 90.53211975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -00670757 90.53211975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea8 -00670758 90.53215027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -00670759 90.53215027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -00670760 90.53215027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb8 -00670761 90.53215027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -00670762 90.53215027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -00670763 90.53215027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb8 -00670764 90.53217316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -00670765 90.53217316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -00670766 90.53218079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -00670767 90.53218079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -00670768 90.53218079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec8 -00670769 90.53218079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec8 -00670770 90.53220367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -00670771 90.53220367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -00670772 90.53220367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed8 -00670773 90.53220367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -00670774 90.53220367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -00670775 90.53220367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed8 -00670776 90.53223419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -00670777 90.53223419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -00670778 90.53223419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee8 -00670779 90.53223419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -00670780 90.53223419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -00670781 90.53223419 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee8 -00670782 90.53226471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -00670783 90.53226471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -00670784 90.53226471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef8 -00670785 90.53226471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -00670786 90.53226471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -00670787 90.53226471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef8 -00670788 90.53228760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f08 -00670789 90.53229523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -00676243 90.55928040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a58 -00676244 90.55928040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b8 -00676245 90.55928040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -00676246 90.55928040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a58 -00676247 90.55928802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -00676248 90.55931091 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -00676249 90.55931854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a68 -00676250 90.55931854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -00676251 90.55931854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -00676252 90.55931854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a68 -00676253 90.55931854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -00676254 90.55934143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -00676255 90.55934143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a78 -00676256 90.55934143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -00676257 90.55934143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -00676258 90.55934143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a78 -00676259 90.55934906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -00676260 90.55936432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -00676261 90.55937195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a88 -00676262 90.55937195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -00676263 90.55937195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -00676264 90.55937195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a88 -00676265 90.55937195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -00676266 90.55939484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -00676267 90.55939484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a98 -00676268 90.55939484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -00676269 90.55939484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -00676270 90.55940247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a98 -00676271 90.55940247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -00676272 90.55942535 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -00676273 90.55943298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa8 -00676274 90.55943298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -00676275 90.55943298 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -00676276 90.55943298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa8 -00676277 90.55943298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -00676278 90.55945587 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -00676279 90.55945587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab8 -00676280 90.55945587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -00676281 90.55945587 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -00676282 90.55946350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab8 -00676283 90.55946350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -00676284 90.55948639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -00676285 90.55948639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -00676286 90.55948639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -00681790 90.58666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16388 -00681791 90.58666992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -00681792 90.58666992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -00681793 90.58667755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16388 -00681794 90.58667755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -00681795 90.58667755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -00681796 90.58670044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16398 -00681797 90.58670044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -00681798 90.58670044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -00681799 90.58670044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16398 -00681800 90.58670044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -00681801 90.58670044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -00681802 90.58672333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a8 -00681803 90.58672333 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -00681804 90.58673096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -00681805 90.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163a8 -00681806 90.58673096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -00681807 90.58673096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -00681808 90.58676147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b8 -00681809 90.58676147 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -00681810 90.58676147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163b8 -00681811 90.58676147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -00681812 90.58676147 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -00681813 90.58676147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -00681814 90.58678436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c8 -00681815 90.58678436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163c8 -00681816 90.58679199 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -00681817 90.58679199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -00681818 90.58679199 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -00681819 90.58679199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -00681820 90.58680725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d8 -00681821 90.58681488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163d8 -00681822 90.58681488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -00681823 90.58681488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -00681824 90.58682251 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -00681825 90.58682251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -00681826 90.58684540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e8 -00681827 90.58684540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163e8 -00681828 90.58684540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -00681829 90.58684540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -00681830 90.58684540 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -00681831 90.58684540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -00681832 90.58686829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f8 -00681833 90.58687592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x163f8 -00687426 90.61411285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -00687427 90.61411285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -00687428 90.61412048 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d8 -00687429 90.61412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -00687430 90.61412048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -00687431 90.61412048 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d8 -00687432 90.61414337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e78 -00687433 90.61414337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -00687434 90.61414337 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e8 -00687435 90.61414337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e78 -00687436 90.61414337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -00687437 90.61415100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e8 -00687438 90.61416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e88 -00687439 90.61416626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -00687440 90.61417389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -00687441 90.61417389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e88 -00687442 90.61417389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -00687443 90.61417389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -00687444 90.61420441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e98 -00687445 90.61420441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31188 -00687446 90.61420441 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -00687447 90.61420441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e98 -00687448 90.61420441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31188 -00687449 90.61420441 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -00687450 90.61422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea8 -00687451 90.61423492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31198 -00687452 90.61423492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -00687453 90.61423492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea8 -00687454 90.61423492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31198 -00687455 90.61423492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -00687456 90.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb8 -00687457 90.61425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a8 -00687458 90.61425781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -00687459 90.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19eb8 -00687460 90.61425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a8 -00687461 90.61426544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -00687462 90.61428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec8 -00687463 90.61428833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b8 -00687464 90.61428833 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -00687465 90.61428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ec8 -00687466 90.61428833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b8 -00687467 90.61428833 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -00687468 90.61431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ed8 -00687469 90.61431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c8 -00692942 90.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -00692943 90.64130402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -00692944 90.64130402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f08 -00692945 90.64130402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -00692946 90.64130402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -00692947 90.64130402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f08 -00692948 90.64133453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -00692949 90.64133453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -00692950 90.64133453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f18 -00692951 90.64133453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -00692952 90.64133453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -00692953 90.64133453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f18 -00692954 90.64136505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -00692955 90.64136505 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c78 -00692956 90.64136505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f28 -00692957 90.64136505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -00692958 90.64136505 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c78 -00692959 90.64136505 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f28 -00692960 90.64138794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -00692961 90.64138794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c88 -00692962 90.64138794 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f38 -00692963 90.64139557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -00692964 90.64139557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c88 -00692965 90.64139557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f38 -00692966 90.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -00692967 90.64141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -00692968 90.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -00692969 90.64141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -00692970 90.64144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -00692971 90.64144897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -00692972 90.64145660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -00692973 90.64145660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -00692974 90.64147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -00692975 90.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -00692976 90.64147949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f48 -00692977 90.64147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -00692978 90.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -00692979 90.64148712 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f48 -00692980 90.64150238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -00692981 90.64150238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -00692982 90.64151001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f58 -00692983 90.64151001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -00692984 90.64151001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -00692985 90.64151001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f58 -00698476 90.66833496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27768 -00698477 90.66834259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -00698478 90.66834259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38708 -00698479 90.66834259 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27768 -00698480 90.66834259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -00698481 90.66834259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38708 -00698482 90.66836548 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27778 -00698483 90.66836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -00698484 90.66836548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38718 -00698485 90.66836548 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27778 -00698486 90.66837311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -00698487 90.66837311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38718 -00698488 90.66839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -00698489 90.66839600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38728 -00698490 90.66839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -00698491 90.66839600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38728 -00698492 90.66839600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27788 -00698493 90.66840363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27788 -00698494 90.66841888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -00698495 90.66841888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38738 -00698496 90.66842651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -00698497 90.66842651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38738 -00698498 90.66842651 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27798 -00698499 90.66842651 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27798 -00698500 90.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -00698501 90.66845703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38748 -00698502 90.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -00698503 90.66845703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38748 -00698504 90.66845703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -00698505 90.66845703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -00698506 90.66847992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -00698507 90.66847992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38758 -00698508 90.66848755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -00698509 90.66848755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38758 -00698510 90.66848755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -00698511 90.66848755 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -00698512 90.66851044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -00698513 90.66851044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38768 -00698514 90.66851044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -00698515 90.66851044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38768 -00698516 90.66851044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -00698517 90.66851807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -00698518 90.66854095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38778 -00698519 90.66854095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -00703832 90.69423676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf68 -00703833 90.69423676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae38 -00703834 90.69423676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a8 -00703835 90.69424438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf68 -00703836 90.69424438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae38 -00703837 90.69424438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a8 -00703838 90.69427490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf78 -00703839 90.69427490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae48 -00703840 90.69427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b8 -00703841 90.69427490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf78 -00703842 90.69427490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae48 -00703843 90.69427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b8 -00703844 90.69429779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf88 -00703845 90.69429779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -00703846 90.69429779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf88 -00703847 90.69430542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c8 -00703848 90.69430542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -00703849 90.69430542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c8 -00703850 90.69432068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf98 -00703851 90.69432831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -00703852 90.69432831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf98 -00703853 90.69432831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d8 -00703854 90.69432831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -00703855 90.69433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d8 -00703856 90.69435883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa8 -00703857 90.69435883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa8 -00703858 90.69435883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -00703859 90.69435883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e8 -00703860 90.69435883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -00703861 90.69435883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e8 -00703862 90.69438934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb8 -00703863 90.69438934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb8 -00703864 90.69438934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f8 -00703865 90.69439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f8 -00703866 90.69441223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc8 -00703867 90.69441223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc8 -00703868 90.69441986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a08 -00703869 90.69441986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a08 -00703870 90.69443512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd8 -00703871 90.69444275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd8 -00703872 90.69444275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a18 -00703873 90.69445038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a18 -00703874 90.69447327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe8 -00703875 90.69447327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe8 -00743573 90.89945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -00743574 90.89945984 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -00743575 90.89945984 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -00743576 90.89949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -00743577 90.89949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408a8 -00743578 90.89949036 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -00743579 90.89949799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -00743580 90.89951324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -00743581 90.89952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408b8 -00743582 90.89952087 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -00743583 90.89952087 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -00743584 90.89954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -00743585 90.89954376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408c8 -00743586 90.89954376 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -00743587 90.89955139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -00743588 90.89957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d8 -00743589 90.89957428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408d8 -00743590 90.89957428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -00743591 90.89957428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -00743592 90.89960480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e8 -00743593 90.89960480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408e8 -00743594 90.89960480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -00743595 90.89961243 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -00743596 90.89962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f8 -00743597 90.89963531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x408f8 -00743598 90.89963531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -00743599 90.89963531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -00743600 90.89965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40908 -00743601 90.89965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40908 -00743602 90.89965820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -00743603 90.89966583 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -00743604 90.89968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40918 -00743605 90.89969635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40918 -00743606 90.89969635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -00743607 90.89969635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -00743608 90.89971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40928 -00743609 90.89971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40928 -00743610 90.89971924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -00743611 90.89972687 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -00743612 90.89974213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40938 -00743613 90.89974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40938 -00743614 90.89974976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -00743615 90.89974976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -00743616 90.89977264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40948 -00747494 90.92843628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c8 -00747495 90.92843628 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b8 -00747496 90.92844391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c8 -00747497 90.92844391 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496b8 -00747498 90.92846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d8 -00747499 90.92846680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c8 -00747500 90.92846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d8 -00747501 90.92846680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496c8 -00747502 90.92848969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -00747503 90.92848969 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d8 -00747504 90.92849731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -00747505 90.92849731 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496d8 -00747506 90.92852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -00747507 90.92852783 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e8 -00747508 90.92852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -00747509 90.92852783 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496e8 -00747510 90.92855072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -00747511 90.92855072 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f8 -00747512 90.92855835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -00747513 90.92855835 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x496f8 -00747514 90.92858124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -00747515 90.92858124 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49708 -00747516 90.92858124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -00747517 90.92858887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49708 -00747518 90.92861176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -00747519 90.92861176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49718 -00747520 90.92861176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -00747521 90.92861176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49718 -00747522 90.92864227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -00747523 90.92864227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49728 -00747524 90.92864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -00747525 90.92864990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49728 -00747526 90.92867279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -00747527 90.92867279 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49738 -00747528 90.92867279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -00747529 90.92867279 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49738 -00747530 90.92869568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44858 -00747531 90.92869568 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49748 -00747532 90.92870331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44858 -00747533 90.92870331 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49748 -00747534 90.92872620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44868 -00747535 90.92872620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49758 -00747536 90.92872620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44868 -00747537 90.92872620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x49758 -00751326 90.95674896 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c8 -00751327 90.95675659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -00751328 90.95675659 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c8 -00751329 90.95675659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48578 -00751330 90.95677948 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d8 -00751331 90.95677948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -00751332 90.95677948 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d8 -00751333 90.95678711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48588 -00751334 90.95681000 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e8 -00751335 90.95681000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -00751336 90.95681000 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e8 -00751337 90.95681000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48598 -00751338 90.95684052 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f8 -00751339 90.95684052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -00751340 90.95684052 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f8 -00751341 90.95684814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -00751342 90.95686340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d108 -00751343 90.95687103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -00751344 90.95687103 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d108 -00751345 90.95687103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -00751346 90.95689392 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d118 -00751347 90.95689392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -00751348 90.95689392 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d118 -00751349 90.95690155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -00751350 90.95692444 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d128 -00751351 90.95692444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -00751352 90.95692444 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d128 -00751353 90.95692444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -00751354 90.95695496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d138 -00751355 90.95695496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -00751356 90.95695496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d138 -00751357 90.95696259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -00751358 90.95697784 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d148 -00751359 90.95698547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f8 -00751360 90.95698547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d148 -00751361 90.95698547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f8 -00751362 90.95700836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d158 -00751363 90.95700836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48608 -00751364 90.95700836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d158 -00751365 90.95701599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48608 -00751366 90.95703888 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d168 -00751367 90.95704651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48618 -00751368 90.95704651 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d168 -00751369 90.95704651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48618 -00755098 90.98439789 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a58 -00755099 90.98439789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -00755100 90.98440552 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a58 -00755101 90.98440552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -00755102 90.98442841 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a68 -00755103 90.98442841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -00755104 90.98442841 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a68 -00755105 90.98442841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -00755106 90.98445129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a78 -00755107 90.98445892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -00755108 90.98445892 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a78 -00755109 90.98445892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -00755110 90.98448944 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a88 -00755111 90.98448944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -00755112 90.98448944 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a88 -00755113 90.98448944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -00755114 90.98451233 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a98 -00755115 90.98451996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -00755116 90.98451996 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a98 -00755117 90.98451996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -00755118 90.98454285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa8 -00755119 90.98454285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -00755120 90.98454285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa8 -00755121 90.98454285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -00755122 90.98457336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab8 -00755123 90.98457336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -00755124 90.98457336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab8 -00755125 90.98457336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -00755126 90.98460388 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac8 -00755127 90.98460388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -00755128 90.98460388 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac8 -00755129 90.98461151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -00755130 90.98462677 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad8 -00755131 90.98463440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -00755132 90.98463440 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad8 -00755133 90.98463440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -00755134 90.98465729 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae8 -00755135 90.98465729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -00755136 90.98465729 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae8 -00755137 90.98466492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -00755138 90.98468781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af8 -00755139 90.98468781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -00755140 90.98468781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af8 -00755141 90.98468781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -00758242 91.01316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50128 -00758243 91.01316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50128 -00758244 91.01319885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50138 -00758245 91.01320648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50138 -00758246 91.01322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50148 -00758247 91.01322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50148 -00758248 91.01325226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50158 -00758249 91.01325226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50158 -00758250 91.01328278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50168 -00758251 91.01328278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50168 -00758252 91.01331329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -00758253 91.01331329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -00758254 91.01333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -00758255 91.01333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -00758256 91.01336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -00758257 91.01336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -00758258 91.01339722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -00758259 91.01339722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -00758260 91.01342010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -00758261 91.01342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -00758262 91.01344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -00758263 91.01345062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -00758264 91.01348114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -00758265 91.01348114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -00758266 91.01350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -00758267 91.01351166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -00758268 91.01353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -00758269 91.01353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -00758270 91.01356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -00758271 91.01356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -00758272 91.01358795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -00758273 91.01359558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -00758274 91.01361847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -00758275 91.01361847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -00758276 91.01364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -00758277 91.01364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -00758278 91.01367188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -00758279 91.01367950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -00758280 91.01370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -00758281 91.01370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -00758282 91.01372528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -00758283 91.01373291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -00758284 91.01376343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -00758285 91.01376343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -00759652 91.19018555 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00759653 91.19022369 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00759654 91.19024658 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00759655 91.19026184 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00759656 91.19038391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00759657 91.19038391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00759658 91.19044495 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00759659 91.19046783 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00759660 91.75543213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53358 -00759661 91.75675201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759662 91.75680542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759663 91.75701141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759664 91.75704193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759665 91.75708008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759666 91.75719452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759667 91.75738525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759668 91.75741577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759669 91.75745392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759670 91.75755310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759671 91.75775146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759672 91.75778198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759673 91.75782013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759674 91.75791931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759675 91.75811005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759676 91.75814056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759677 91.75817871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759678 91.75827789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759679 91.75846863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759680 91.75849152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759681 91.75852966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759682 91.75862885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759683 91.75882721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759684 91.75885773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759685 91.75889587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759686 91.75899506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759687 91.75918579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759688 91.75920868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759689 91.75924683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759690 91.75934601 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759691 91.75953674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759692 91.75956726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759693 91.75960541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759694 91.75972748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759695 91.75994110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759696 91.75996399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759697 91.76000214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759698 91.76136017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759699 91.76156616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759700 91.76159668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759701 91.76163483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759702 91.76175690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759703 91.76194763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759704 91.76197052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759705 91.76200867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759706 91.76211548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759707 91.76231384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759708 91.76232910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759709 91.76236725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759710 91.76247406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759711 91.76267242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759712 91.76270294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759713 91.76274109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759714 91.76429749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759715 91.76450348 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759716 91.76452637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759717 91.76457214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759718 91.76467133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759719 91.76488495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759720 91.76490021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759721 91.76494598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759722 91.76505280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759723 91.76525879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759724 91.76528931 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759725 91.76532745 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759726 91.76543427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759727 91.76565552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759728 91.76568604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759729 91.76573181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759730 91.76583862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759731 91.76604462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759732 91.76606750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759733 91.76610565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759734 91.76865387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759735 91.76885986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759736 91.76888275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759737 91.76892090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759738 91.76902771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759739 91.76923370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759740 91.76925659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759741 91.76930237 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759742 91.76940155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759743 91.76960754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759744 91.76963043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759745 91.76966858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759746 91.76977539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759747 91.76998138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759748 91.77000427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759749 91.77005005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759750 91.77243805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759751 91.77263641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759752 91.77267456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759753 91.77272034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759754 91.77282715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759755 91.77303314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759756 91.77305603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759757 91.77310181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759758 91.77320862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759759 91.77340698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759760 91.77342987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759761 91.77347565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759762 91.77359009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759763 91.77378845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759764 91.77381897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759765 91.77386475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759766 91.77397156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759767 91.77417755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759768 91.77420044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759769 91.77424622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759770 91.77435303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759771 91.77456665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759772 91.77459717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759773 91.77463531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759774 91.77474976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759775 91.77495575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759776 91.77497864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759777 91.77502441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759778 91.77513885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759779 91.77533722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759780 91.77536774 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759781 91.77540588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759782 91.77552032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759783 91.77572632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759784 91.77574921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759785 91.77579498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759786 91.77590942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759787 91.77610779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759788 91.77613831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759789 91.77617645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759790 91.77629089 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759791 91.77649689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759792 91.77652740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759793 91.77657318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759794 91.77667999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759795 91.77688599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759796 91.77691650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759797 91.77695465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759798 91.77706909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759799 91.77727509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759800 91.77729797 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759801 91.77734375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759802 91.77745056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759803 91.77765656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759804 91.77767944 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759805 91.77772522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759806 91.77783966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759807 91.77803802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759808 91.77806854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759809 91.77811432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759810 91.78265381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759811 91.78285980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759812 91.78289032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759813 91.78292847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759814 91.78304291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759815 91.78324127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759816 91.78327179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759817 91.78330994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759818 91.78341675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759819 91.78361511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759820 91.78363800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759821 91.78368378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759822 91.78379059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759823 91.78399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759824 91.78401947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759825 91.78405762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759826 91.78416443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759827 91.78436279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759828 91.78439331 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759829 91.78443146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759830 91.78453827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759831 91.78474426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759832 91.78476715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759833 91.78480530 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759834 91.78491211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759835 91.78511047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759836 91.78514099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759837 91.78518677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759838 91.78529358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759839 91.78549194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759840 91.78551483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759841 91.78555298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759842 91.78568268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759843 91.78588867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759844 91.78591919 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759845 91.78595734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759846 91.78607178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759847 91.78627014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759848 91.78630066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759849 91.78633881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759850 91.78645325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759851 91.78665161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759852 91.78667450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759853 91.78672028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759854 91.78682709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759855 91.78703308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759856 91.78705597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759857 91.78709412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759858 91.78720856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759859 91.78741455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759860 91.78743744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759861 91.78747559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759862 91.78758240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759863 91.78778839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759864 91.78781128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759865 91.78784943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759866 91.78796387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759867 91.78816986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759868 91.78819275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759869 91.78823090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759870 91.78833771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759871 91.78854370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759872 91.78856659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759873 91.78860474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759874 91.78871918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759875 91.78891754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759876 91.78894043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759877 91.78898621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759878 91.78909302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759879 91.78929138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759880 91.78932190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759881 91.78936005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759882 91.78947449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759883 91.78968048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759884 91.78969574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759885 91.78974152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759886 91.78984833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759887 91.79005432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759888 91.79007721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759889 91.79011536 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759890 91.79022980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759891 91.79043579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759892 91.79045868 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759893 91.79049683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759894 91.79061127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759895 91.79080963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759896 91.79083252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759897 91.79087830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759898 91.79098511 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759899 91.79119110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759900 91.79121399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759901 91.79125977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759902 91.79136658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759903 91.79157257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759904 91.79158783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759905 91.79163361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759906 91.79174805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759907 91.79194641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759908 91.79197693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759909 91.79202271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759910 91.79212952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759911 91.79232788 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759912 91.79235077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759913 91.79239655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759914 91.79250336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759915 91.79270935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759916 91.79273224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759917 91.79277802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759918 91.79464722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759919 91.79485321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759920 91.79488373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759921 91.79492188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759922 91.79503632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759923 91.79523468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759924 91.79526520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759925 91.79531097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759926 91.79541779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759927 91.79561615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759928 91.79564667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759929 91.79568481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759930 91.79579163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759931 91.79599762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759932 91.79602814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759933 91.79607391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759934 91.79618073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759935 91.79637909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759936 91.79640198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759937 91.79644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759938 91.79655457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759939 91.79676056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759940 91.79678345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759941 91.79682922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759942 91.79693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759943 91.79714203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759944 91.79716492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759945 91.79720306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759946 91.79731750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759947 91.79751587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759948 91.79753876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759949 91.79758453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759950 91.79769897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759951 91.79789734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759952 91.79792023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759953 91.79796600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759954 91.79808044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759955 91.79827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759956 91.79830170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759957 91.79833984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759958 91.79845428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759959 91.79865265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759960 91.79868317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759961 91.79872894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759962 91.79883575 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759963 91.79904175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759964 91.79906464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759965 91.79910278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759966 91.79921722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759967 91.79941559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759968 91.79944611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759969 91.79948425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759970 91.79959869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759971 91.79981232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759972 91.79984283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759973 91.79988861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759974 91.80000305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759975 91.80020142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759976 91.80022430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759977 91.80027008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759978 91.80037689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759979 91.80058289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759980 91.80059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759981 91.80064392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759982 91.80076599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759983 91.80097198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759984 91.80099487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759985 91.80104065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759986 91.80115509 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759987 91.80135345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759988 91.80138397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759989 91.80142212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759990 91.80153656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759991 91.80173492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759992 91.80175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759993 91.80180359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759994 91.80191040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759995 91.80211639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00759996 91.80214691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759997 91.80218506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00759998 91.80229950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00759999 91.80249786 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760000 91.80252075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760001 91.80256653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760002 91.80267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760003 91.80287933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760004 91.80290222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760005 91.80294037 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760006 91.80306244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760007 91.80326080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760008 91.80329132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760009 91.80333710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760010 91.80344391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760011 91.80364990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760012 91.80367279 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760013 91.80371857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760014 91.80383301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760015 91.80403137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760016 91.80405426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760017 91.80410004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760018 91.80421448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760019 91.80441284 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760020 91.80444336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760021 91.80448914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760022 91.80460358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760023 91.80480194 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760024 91.80482483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760025 91.80487061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760026 91.80498505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760027 91.80518341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760028 91.80520630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760029 91.80525208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760030 91.80536652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760031 91.80556488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760032 91.80559540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760033 91.80564117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760034 91.80574799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760035 91.80595398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760036 91.80597687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760037 91.80602264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760038 91.80613708 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760039 91.80633545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760040 91.80635834 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760041 91.80640411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760042 91.80651855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760043 91.80671692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760044 91.80674744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760045 91.80679321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760046 91.80690765 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760047 91.80710602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760048 91.80712891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760049 91.80717468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760050 91.80728912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760051 91.80748749 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760052 91.80751038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760053 91.80755615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760054 91.80767059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760055 91.80787659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760056 91.80789948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760057 91.80794525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760058 91.80805969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760059 91.80826569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760060 91.80828094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760061 91.80833435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760062 91.80844116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760063 91.80864716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760064 91.80867004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760065 91.80871582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760066 91.80882263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760067 91.80902863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760068 91.80905914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760069 91.80909729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760070 91.80921173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760071 91.80941772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760072 91.80944061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760073 91.80948639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760074 91.80960083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760075 91.80980682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760076 91.80982971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760077 91.80987549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760078 91.80998993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760079 91.81018829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760080 91.81021118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760081 91.81025696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760082 91.81037140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760083 91.81056976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760084 91.81060028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760085 91.81064606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760086 91.81076050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760087 91.81096649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760088 91.81098938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760089 91.81103516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760090 91.81114197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760091 91.81134796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760092 91.81137085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760093 91.81141663 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760094 91.81152344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760095 91.81172943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760096 91.81175995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760097 91.81179810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760098 91.81192017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760099 91.81213379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760100 91.81216431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760101 91.81221008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760102 91.81232452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760103 91.81252289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760104 91.81255341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760105 91.81259918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760106 91.81271362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760107 91.81291962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760108 91.81295013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760109 91.81298828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760110 91.81311035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760111 91.81330872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760112 91.81333160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760113 91.81338501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760114 91.81349945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760115 91.81369781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760116 91.81372070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760117 91.81377411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760118 91.81388855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760119 91.81408691 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760120 91.81410980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760121 91.81415558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760122 91.81427002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760123 91.81449890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760124 91.81453705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760125 91.81458282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760126 91.81469727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760127 91.81489563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760128 91.81492615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760129 91.81497955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760130 91.81509399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760131 91.81529236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760132 91.81531525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760133 91.81536102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760134 91.81547546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760135 91.81568146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760136 91.81570435 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760137 91.81575012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760138 91.81585693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760139 91.81607056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760140 91.81609344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760141 91.81613922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760142 91.81625366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760143 91.81645203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760144 91.81648254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760145 91.81652832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760146 91.81664276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760147 91.81684113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760148 91.81687164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760149 91.81691742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760150 91.81703186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760151 91.81723785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760152 91.81726074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760153 91.81730652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760154 91.81742096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760155 91.81761932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760156 91.81764221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760157 91.81768799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760158 91.81780243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760159 91.81800842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760160 91.81803894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760161 91.81807709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760162 91.81819153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760163 91.81838989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760164 91.81842041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760165 91.81847382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760166 91.81858826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760167 91.81878662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760168 91.81880951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760169 91.81886292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760170 91.81897736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760171 91.81918335 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760172 91.81920624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760173 91.81925201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760174 91.81936646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760175 91.81957245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760176 91.81959534 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760177 91.81964111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760178 91.81975555 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760179 91.81996918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760180 91.81999207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760181 91.82004547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760182 91.82015991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760183 91.82035828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760184 91.82038116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760185 91.82043457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760186 91.82054138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760187 91.82074738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760188 91.82077789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760189 91.82081604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760190 91.82093811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760191 91.82113647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760192 91.82116699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760193 91.82121277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760194 91.82133484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760195 91.82156372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760196 91.82158661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760197 91.82163239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760198 91.82175446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760199 91.82196045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760200 91.82198334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760201 91.82203674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760202 91.82215118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760203 91.82236481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760204 91.82238770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760205 91.82244110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760206 91.82256317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760207 91.82276154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760208 91.82279205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760209 91.82283783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760210 91.82295990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760211 91.82315826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760212 91.82318115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760213 91.82323456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760214 91.82334900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760215 91.82355499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760216 91.82357025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760217 91.82362366 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760218 91.82373810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760219 91.82393646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760220 91.82395935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760221 91.82400513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760222 91.82412720 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760223 91.82432556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760224 91.82434845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760225 91.82439423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760226 91.82450867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760227 91.82471466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760228 91.82474518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760229 91.82479095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760230 91.82490540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760231 91.82510376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760232 91.82513428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760233 91.82518768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760234 91.82530212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760235 91.82550049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760236 91.82553101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760237 91.82557678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760238 91.82569885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760239 91.82589722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760240 91.82592010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760241 91.82597351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760242 91.82609558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760243 91.82630157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760244 91.82633209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760245 91.82637787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760246 91.82649994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760247 91.82669830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760248 91.82672882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760249 91.82677460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760250 91.82688904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760251 91.82708740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760252 91.82711792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760253 91.82716370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760254 91.82727814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760255 91.82748413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760256 91.82750702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760257 91.82755280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760258 91.82767487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760259 91.82787323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760260 91.82789612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760261 91.82794952 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760262 91.82806396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760263 91.82826996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760264 91.82829285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760265 91.82833862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760266 91.82845306 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760267 91.82865143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760268 91.82868195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760269 91.82872772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760270 91.82884216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760271 91.82904053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760272 91.82907104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760273 91.82911682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760274 91.82923126 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760275 91.82943726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760276 91.82945251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760277 91.82950592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760278 91.82962036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760279 91.82982635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760280 91.82984924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760281 91.82989502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760282 91.83000946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760283 91.83021545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760284 91.83023071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760285 91.83028412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760286 91.83039856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760287 91.83059692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760288 91.83062744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760289 91.83066559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760290 91.83078766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760291 91.83098602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760292 91.83101654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760293 91.83106232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760294 91.83117676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760295 91.83138275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760296 91.83140564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760297 91.83145142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760298 91.83156586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760299 91.83177185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760300 91.83179474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760301 91.83184052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760302 91.83196259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760303 91.83216095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760304 91.83218384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760305 91.83222961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760306 91.83234406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760307 91.83255005 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760308 91.83257294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760309 91.83262634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760310 91.83274078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760311 91.83294678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760312 91.83296967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760313 91.83301544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760314 91.83314514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760315 91.83335114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00760316 91.83337402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760317 91.83342743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00760318 91.83354950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531b0 -00760319 91.83375549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00761399 91.89916992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00761400 91.89916992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00761401 91.89919281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00761402 91.89919281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00761403 91.89921570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00761404 91.89922333 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00761405 91.89925385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00761406 91.89925385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00761407 91.89927673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00761408 91.89927673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00761409 91.89929962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00761410 91.89930725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00761411 91.89933777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00761412 91.89933777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00761413 91.89936066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00761414 91.89936066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00761415 91.89938354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00761416 91.89939117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00761417 91.89941406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00761418 91.89941406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00761419 91.89944458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00761420 91.89944458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00761421 91.89946747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00761422 91.89947510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00761423 91.89949799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00761424 91.89949799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00761425 91.89952850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00761426 91.89953613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00761427 91.89955139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00761428 91.89955902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00761429 91.89958191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00761430 91.89958954 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00761431 91.89961243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00761432 91.89961243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00761433 91.89964294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00761434 91.89964294 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00761435 91.89966583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00761436 91.89967346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00761437 91.89969635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00761438 91.89969635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00761439 91.89972687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00761440 91.89973450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00761441 91.89975739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00761442 91.89975739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00770747 92.02904510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -00770748 92.02905273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -00770749 92.02907562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -00770750 92.02907562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -00770751 92.02909851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -00770752 92.02909851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -00770753 92.02912903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -00770754 92.02912903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -00770755 92.02915955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -00770756 92.02915955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -00770757 92.02918243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -00770758 92.02918243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -00770759 92.02921295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -00770760 92.02921295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -00770761 92.02924347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -00770762 92.02924347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -00770763 92.02926636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -00770764 92.02926636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -00770765 92.02928925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -00770766 92.02929688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -00770767 92.02932739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -00770768 92.02932739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -00770769 92.02935028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -00770770 92.02935028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -00770771 92.02937317 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -00770772 92.02938080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -00770773 92.02941132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -00770774 92.02941132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -00770775 92.02943420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -00770776 92.02943420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -00770777 92.02945709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -00770778 92.02946472 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -00770779 92.02948761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -00770780 92.02948761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -00770781 92.02951813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -00770782 92.02951813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -00770783 92.02954102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -00770784 92.02954865 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -00770785 92.02957153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -00770786 92.02957153 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -00770787 92.02960205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -00770788 92.02960205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -00770789 92.02962494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -00770790 92.02963257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -00773252 92.06392670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c8 -00773253 92.06395721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d8 -00773254 92.06396484 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d8 -00773255 92.06398773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e8 -00773256 92.06398773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e8 -00773257 92.06401062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f8 -00773258 92.06401062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f8 -00773259 92.06404114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19308 -00773260 92.06404114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19308 -00773261 92.06407166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19318 -00773262 92.06407166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19318 -00773263 92.06409454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19328 -00773264 92.06409454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19328 -00773265 92.06412506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19338 -00773266 92.06412506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19338 -00773267 92.06415558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19348 -00773268 92.06415558 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19348 -00773269 92.06417847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19358 -00773270 92.06417847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19358 -00773271 92.06420135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19368 -00773272 92.06420898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19368 -00773273 92.06423950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19378 -00773274 92.06423950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19378 -00773275 92.06426239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19388 -00773276 92.06427002 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19388 -00773277 92.06429291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19398 -00773278 92.06429291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19398 -00773279 92.06432343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a8 -00773280 92.06432343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a8 -00773281 92.06434631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b8 -00773282 92.06435394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b8 -00773283 92.06437683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c8 -00773284 92.06437683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c8 -00773285 92.06439972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d8 -00773286 92.06439972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d8 -00773287 92.06443024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e8 -00773288 92.06443787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e8 -00773289 92.06446075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f8 -00773290 92.06446075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f8 -00773291 92.06449890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19408 -00773292 92.06450653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19408 -00773293 92.06454468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19418 -00773294 92.06454468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19418 -00773295 92.06456757 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19428 -00782495 92.19245148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a8 -00782496 92.19245911 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a8 -00782497 92.19248962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b8 -00782498 92.19248962 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b8 -00782499 92.19251251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c8 -00782500 92.19251251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c8 -00782501 92.19253540 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d8 -00782502 92.19254303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d8 -00782503 92.19256592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -00782504 92.19256592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -00782505 92.19259644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -00782506 92.19259644 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -00782507 92.19261932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b408 -00782508 92.19262695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b408 -00782509 92.19264984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b418 -00782510 92.19264984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b418 -00782511 92.19268036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b428 -00782512 92.19268036 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b428 -00782513 92.19270325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b438 -00782514 92.19271088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b438 -00782515 92.19273376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b448 -00782516 92.19273376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b448 -00782517 92.19276428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b458 -00782518 92.19276428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b458 -00782519 92.19278717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b468 -00782520 92.19279480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b468 -00782521 92.19281769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b478 -00782522 92.19281769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b478 -00782523 92.19284821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b488 -00782524 92.19284821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b488 -00782525 92.19287109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b498 -00782526 92.19287872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b498 -00782527 92.19290161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a8 -00782528 92.19290161 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a8 -00782529 92.19292450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b8 -00782530 92.19292450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b8 -00782531 92.19295502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c8 -00782532 92.19296265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c8 -00782533 92.19298553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d8 -00782534 92.19298553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d8 -00782535 92.19300842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e8 -00782536 92.19300842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e8 -00782537 92.19303894 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f8 -00782538 92.19304657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f8 -00797559 92.40151978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -00797560 92.40152740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -00797561 92.40155792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -00797562 92.40155792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -00797563 92.40158081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -00797564 92.40158081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -00797565 92.40160370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -00797566 92.40161133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -00797567 92.40164185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -00797568 92.40164185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -00797569 92.40166473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -00797570 92.40166473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -00797571 92.40168762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -00797572 92.40169525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -00797573 92.40171814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -00797574 92.40171814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -00797575 92.40174866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -00797576 92.40174866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -00797577 92.40177155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -00797578 92.40177917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -00797579 92.40180206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -00797580 92.40180206 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -00797581 92.40183258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -00797582 92.40183258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -00797583 92.40185547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -00797584 92.40186310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -00797585 92.40188599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -00797586 92.40188599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -00797587 92.40191650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -00797588 92.40191650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -00797589 92.40193939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -00797590 92.40194702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -00797591 92.40196991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -00797592 92.40196991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -00797593 92.40200043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -00797594 92.40200043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -00797595 92.40202332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -00797596 92.40203094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -00797597 92.40205383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -00797598 92.40205383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -00797599 92.40207672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -00797600 92.40207672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -00797601 92.40210724 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -00797602 92.40211487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -00799849 92.43357849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f8 -00799850 92.43358612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f8 -00799851 92.43360901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d208 -00799852 92.43360901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d208 -00799853 92.43363953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d218 -00799854 92.43364716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d218 -00799855 92.43367004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d228 -00799856 92.43367004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d228 -00799857 92.43369293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d238 -00799858 92.43369293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d238 -00799859 92.43372345 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d248 -00799860 92.43373108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d248 -00799861 92.43375397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d258 -00799862 92.43375397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d258 -00799863 92.43377686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d268 -00799864 92.43377686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d268 -00799865 92.43380737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d278 -00799866 92.43381500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d278 -00799867 92.43383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d288 -00799868 92.43383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d288 -00799869 92.43386078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d298 -00799870 92.43386078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d298 -00799871 92.43389130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a8 -00799872 92.43389130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a8 -00799873 92.43392181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b8 -00799874 92.43392181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b8 -00799875 92.43394470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c8 -00799876 92.43394470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c8 -00799877 92.43396759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d8 -00799878 92.43397522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d8 -00799879 92.43400574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e8 -00799880 92.43400574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e8 -00799881 92.43402863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f8 -00799882 92.43402863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f8 -00799883 92.43405151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -00799884 92.43405914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -00799885 92.43408966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -00799886 92.43408966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -00799887 92.43411255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -00799888 92.43411255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -00799889 92.43413544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -00799890 92.43414307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -00799891 92.43416595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -00799892 92.43416595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -00802251 92.46703339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -00802252 92.46703339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -00802253 92.46705627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -00802254 92.46705627 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -00802255 92.46708679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -00802256 92.46709442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -00802257 92.46711731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -00802258 92.46711731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -00802259 92.46714020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -00802260 92.46714020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -00802261 92.46717072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -00802262 92.46717072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -00802263 92.46720123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -00802264 92.46720123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -00802265 92.46722412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -00802266 92.46723175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -00802267 92.46725464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -00802268 92.46725464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -00802269 92.46728516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -00802270 92.46728516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -00802271 92.46730804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -00802272 92.46731567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -00802273 92.46733856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -00802274 92.46733856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -00802275 92.46736908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -00802276 92.46736908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -00802277 92.46739960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -00802278 92.46739960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -00802279 92.46742249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -00802280 92.46742249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -00802281 92.46745300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -00802282 92.46745300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -00802283 92.46748352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -00802284 92.46748352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -00802285 92.46750641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -00802286 92.46751404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -00802287 92.46752930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -00802288 92.46753693 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -00802289 92.46756744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e38 -00802290 92.46756744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e38 -00802291 92.46759033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e48 -00802292 92.46759796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e48 -00802293 92.46762085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e58 -00802294 92.46762085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e58 -00802773 92.49848938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00802774 92.49851227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00802775 92.49855042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00802776 92.49996185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531e0 -00802777 92.49998474 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00802778 92.50002289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53130 -00802779 93.69754028 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802780 93.69758606 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802781 93.69760895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -00802782 93.69761658 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -00802783 93.69773865 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802784 93.69773865 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802785 93.69780731 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -00802786 93.69782257 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -00802787 95.86157227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00802788 95.86158752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00802789 95.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00802790 95.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00802791 95.86165619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00802792 95.86166382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00802793 95.86168671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00802794 95.86168671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00802795 95.86171722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00802796 95.86171722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00802797 95.86174011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00802798 95.86174011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00802799 95.86176300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00802800 95.86176300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00802801 95.86179352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00802802 95.86180115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00802803 95.86181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00802804 95.86182404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00802805 95.86184692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00802806 95.86184692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00802807 95.86187744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00802808 95.86187744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00802809 95.86190033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00802810 95.86190033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00802811 95.86193085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00802812 95.86193085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00802813 95.86196136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00802814 95.86196899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00802815 95.86202240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00802816 95.86202240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00802817 95.86204529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00802818 95.86204529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00802819 95.86207581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00802820 95.86208344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00802821 95.86210632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00802822 95.86210632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00802823 95.86212921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00802824 95.86212921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00802825 95.86215973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00802826 95.86215973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00802827 95.86219025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00802828 95.86219025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00802829 95.86221313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00802830 95.86222076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00802831 95.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00802832 95.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00802833 95.86227417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00802834 95.86227417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00802835 95.86229706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00802836 95.86230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00802837 95.86232758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00802838 95.86232758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00802839 95.86235809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00802840 95.86235809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00802841 95.86238861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00802842 95.86238861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00802843 95.86241150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00802844 95.86241913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00802845 95.86244202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00802846 95.86244202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00802847 95.86247253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00802848 95.86247253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00802849 95.86250305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00802850 95.86250305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00802851 95.86252594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00802852 95.86252594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00802853 95.86255646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00802854 95.86255646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00802855 95.86258698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00802856 95.86259460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00802857 95.86260986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00802858 95.86261749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00802859 95.86264038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00802860 95.86264038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00802861 95.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00802862 95.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00802863 95.86269379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00802864 95.86269379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00802865 95.86271667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00802866 95.86272430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00802867 95.86274719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00802868 95.86275482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00802869 95.86277771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00802870 95.86277771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00802871 95.86280060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00802872 95.86280060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00802873 95.86283112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00802874 95.86283112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00802875 95.86285400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00802876 95.86286163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00802877 95.86287689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00802878 95.86288452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00802879 95.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00802880 95.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00802881 95.86293793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00802882 95.86293793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00802883 95.86296082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00802884 95.86296082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00802885 95.86299133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00802886 95.86299896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00802887 95.86301422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00802888 95.86302185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00802889 95.86304474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00802890 95.86304474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00802891 95.86307526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00802892 95.86307526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00802893 95.86309814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00802894 95.86309814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00802895 95.86312103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00802896 95.86312103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00802897 95.86315155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00802898 95.86315155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00802899 95.86317444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00802900 95.86318207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00802901 95.86320496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00802902 95.86320496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00802903 95.86323547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00802904 95.86323547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00802905 95.86325836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00802906 95.86325836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00802907 95.86328125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00802908 95.86328888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00802909 95.86331177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00802910 95.86331177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00802911 95.86334991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00802912 95.86335754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00802913 95.86338043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00802914 95.86338806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00802915 95.86341095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00802916 95.86341095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00802917 95.86343384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00802918 95.86343384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00802919 95.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00802920 95.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00802921 95.86348724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00802922 95.86349487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00802923 95.86351776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00802924 95.86351776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00802925 95.86354828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00802926 95.86354828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00802927 95.86357117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00802928 95.86357117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00802929 95.86359406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00802930 95.86360168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00802931 95.86362457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00802932 95.86363220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00802933 95.86365509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00802934 95.86365509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00802935 95.86367798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00802936 95.86367798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00802937 95.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00802938 95.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00802939 95.86373138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00802940 95.86373138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00802941 95.86375427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00802942 95.86376190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00802943 95.86379242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00802944 95.86379242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00802945 95.86381531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00802946 95.86382294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00802947 95.86384583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00802948 95.86384583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00802949 95.86387634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00802950 95.86387634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00802951 95.86390686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00802952 95.86390686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00802953 95.86392975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00802954 95.86392975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00802955 95.86395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00802956 95.86395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00802957 95.86398315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00802958 95.86399078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00802959 95.86400604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00802960 95.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00802961 95.86403656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00802962 95.86403656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00802963 95.86406708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00802964 95.86406708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00802965 95.86408997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00802966 95.86408997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00802967 95.86411285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00802968 95.86412048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00802969 95.86414337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00802970 95.86415100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00802971 95.86417389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00802972 95.86417389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00802973 95.86419678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00802974 95.86419678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00802975 95.86422729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00802976 95.86422729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00802977 95.86425018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00802978 95.86425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00802979 95.86427307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00802980 95.86428070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00802981 95.86430359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00802982 95.86430359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00802983 95.86433411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00802984 95.86433411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00802985 95.86435699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00802986 95.86435699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00802987 95.86438751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00802988 95.86438751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00802989 95.86441803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00802990 95.86441803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00802991 95.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00802992 95.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00802993 95.86446381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00802994 95.86446381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00802995 95.86450195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00802996 95.86450195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00802997 95.86453247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00802998 95.86453247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00802999 95.86455536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00803000 95.86455536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00803001 95.86460114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00803002 95.86460876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00803003 95.86463165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00803004 95.86463928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00803005 95.86466217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00803006 95.86466217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00803007 95.86469269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00803008 95.86470032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00803009 95.86472321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00803010 95.86472321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00803011 95.86474609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00803012 95.86474609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00803013 95.86477661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00803014 95.86478424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00803015 95.86479950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00803016 95.86480713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00803017 95.86483002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00803018 95.86483002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00803019 95.86486053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00803020 95.86486053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00803021 95.86488342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00803022 95.86488342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00803023 95.86490631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00803024 95.86490631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00803025 95.86493683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00803026 95.86494446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00803027 95.86496735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00803028 95.86496735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00803029 95.86499786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00803030 95.86500549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00803031 95.86505890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00803032 95.86505890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00803033 95.86508179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00803034 95.86508179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00803035 95.86510468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00803036 95.86511230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00803037 95.86514282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00803038 95.86514282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00803039 95.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00803040 95.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00803041 95.86519623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00803042 95.86519623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00803043 95.86521912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00803044 95.86521912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00803045 95.86524963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00803046 95.86525726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00803047 95.86527252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00803048 95.86528015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00803049 95.86530304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00803050 95.86530304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00803051 95.86533356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00803052 95.86533356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00803053 95.86535645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00803054 95.86535645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00803055 95.86537933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00803056 95.86538696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00803057 95.86540985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00803058 95.86541748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00803059 95.86544037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00803060 95.86544037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00803061 95.86546326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00803062 95.86546326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00803063 95.86549377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00803064 95.86549377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00803065 95.86551666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00803066 95.86552429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00803067 95.86553955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00803068 95.86554718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00803069 95.86557770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00803070 95.86557770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00803071 95.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00803072 95.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00803073 95.86562347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00803074 95.86562347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00803075 95.86565399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00803076 95.86565399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00803077 95.86567688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00803078 95.86568451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00803079 95.86569977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00803080 95.86570740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00803081 95.86573792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00803082 95.86573792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00803083 95.86576080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00803084 95.86576080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00803085 95.86579132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00803086 95.86579132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00803087 95.86581421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00803088 95.86581421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00803089 95.86585236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00803090 95.86585999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00803091 95.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00803092 95.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00803093 95.86593628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00803094 95.86593628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00803095 95.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00803096 95.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00803097 95.86598969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00803098 95.86599731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00803099 95.86602020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00803100 95.86602020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00803101 95.86605072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00803102 95.86605072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00803103 95.86608124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00803104 95.86608124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00803105 95.86610413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00803106 95.86610413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00803107 95.86613464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00803108 95.86613464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00803109 95.86616516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00803110 95.86616516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00803111 95.86618805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00803112 95.86619568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00803113 95.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00803114 95.86621857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00803115 95.86624908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00803116 95.86624908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00803117 95.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00803118 95.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00803119 95.86629486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00803120 95.86629486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00803121 95.86632538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00803122 95.86632538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00803123 95.86634827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00803124 95.86635590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00803125 95.86637115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00803126 95.86637878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00803127 95.86640930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00803128 95.86640930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00803129 95.86643219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00803130 95.86643219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00803131 95.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00803132 95.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00803133 95.86648560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00803134 95.86649323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00803135 95.86650848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00803136 95.86651611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00803137 95.86653900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00803138 95.86653900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00803139 95.86656952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00803140 95.86656952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00803141 95.86659241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00803142 95.86659241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00803143 95.86661530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00803144 95.86662292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00803145 95.86664581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00803146 95.86664581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00803147 95.86667633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00803148 95.86667633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00803149 95.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00803150 95.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00803151 95.86672974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00803152 95.86672974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00803153 95.86675262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00803154 95.86675262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00803155 95.86677551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00803156 95.86678314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00803157 95.86680603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00803158 95.86680603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00803159 95.86683655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00803160 95.86683655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00803161 95.86685944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00803162 95.86685944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00803163 95.86688995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00803164 95.86688995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00803165 95.86691284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00803166 95.86692047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00803167 95.86693573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00803168 95.86694336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00803169 95.86696625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00803170 95.86696625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00803171 95.86699677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00803172 95.86699677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00803173 95.86701965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00803174 95.86701965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00803175 95.86705017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00803176 95.86705017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00803177 95.86707306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00803178 95.86708069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00803179 95.86709595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00803180 95.86710358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00803181 95.86712646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00803182 95.86712646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00803183 95.86715698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00803184 95.86715698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00803185 95.86717987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00803186 95.86717987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00803187 95.86720276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00803188 95.86720276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00803189 95.86723328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00803190 95.86724091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00803191 95.86725616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00803192 95.86726379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00803193 95.86728668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00803194 95.86728668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00803195 95.86731720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00803196 95.86731720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00803197 95.86734009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00803198 95.86734009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00803199 95.86736298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00803200 95.86737061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00803201 95.86739349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00803202 95.86740112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00803203 95.86742401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00803204 95.86742401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00803205 95.86744690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00803206 95.86744690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00803207 95.86747742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00803208 95.86747742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00803209 95.86750031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00803210 95.86750793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00803211 95.86752319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00803212 95.86753082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00803213 95.86756134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00803214 95.86756134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00803215 95.86758423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00803216 95.86758423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00803217 95.86760712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00803218 95.86760712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00803219 95.86763763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00803220 95.86763763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00803221 95.86766052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00803222 95.86766815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00803223 95.86768341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00803224 95.86769104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00803225 95.86772156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00803226 95.86772156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00803227 95.86774445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00803228 95.86774445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00803229 95.86776733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00803230 95.86776733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00803231 95.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00803232 95.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00803233 95.86782074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00803234 95.86782837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00803235 95.86785126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00803236 95.86785126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00803237 95.86788177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00803238 95.86788177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00803239 95.86790466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00803240 95.86790466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00803241 95.86792755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00803242 95.86792755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00803243 95.86795807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00803244 95.86795807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00803245 95.86798096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00803246 95.86798859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00803247 95.86801147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00803248 95.86801147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00803249 95.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00803250 95.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00803251 95.86806488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00803252 95.86806488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00803253 95.86808777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00803254 95.86809540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00803255 95.86811829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00803256 95.86811829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00803257 95.86814117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00803258 95.86814880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00803259 95.86817169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00803260 95.86817169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00803261 95.86820221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00803262 95.86820221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00803263 95.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00803264 95.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00803265 95.86824799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00803266 95.86825562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00803267 95.86827850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00803268 95.86827850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00803269 95.86830902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00803270 95.86830902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00803271 95.86833191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00803272 95.86833191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00803273 95.86835480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00803274 95.86835480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00803275 95.86838531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00803276 95.86838531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00803277 95.86840820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00803278 95.86841583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00803279 95.86843872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00803280 95.86843872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00803281 95.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00803282 95.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00803283 95.86849213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00803284 95.86849213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00803285 95.86851501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00803286 95.86851501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00803287 95.86854553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00803288 95.86855316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00803289 95.86856842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00803290 95.86857605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00803291 95.86859894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00803292 95.86859894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00803293 95.86862946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00803294 95.86862946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00803295 95.86865234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00803296 95.86865234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00803297 95.86867523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00803298 95.86868286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00803299 95.86870575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00803300 95.86871338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00803301 95.86873627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00803302 95.86873627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00803303 95.86875916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00803304 95.86875916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00803305 95.86878967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00803306 95.86878967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00803307 95.86881256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00803308 95.86881256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00803309 95.86883545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00803310 95.86884308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00803311 95.86887360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00803312 95.86887360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00803313 95.86889648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00803314 95.86890411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00803315 95.86894989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00803316 95.86894989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00803317 95.86898804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00803318 95.86899567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00803319 95.86901855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00803320 95.86901855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00803321 95.86904144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00803322 95.86904144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00803323 95.86907196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00803324 95.86907196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00803325 95.86910248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00803326 95.86910248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00803327 95.86912537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00803328 95.86912537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00803329 95.86914825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00803330 95.86915588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00803331 95.86918640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00803332 95.86918640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00803333 95.86920929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00803334 95.86920929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00803335 95.86923218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00803336 95.86923981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00803337 95.86927032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00803338 95.86927032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00803339 95.86931610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00803340 95.86931610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00803341 95.86934662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00803342 95.86934662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00803343 95.86936951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00803344 95.86937714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00803345 95.86940002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00803346 95.86940002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00803347 95.86943054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00803348 95.86943054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00803349 95.86946106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00803350 95.86946106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00803351 95.86948395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00803352 95.86948395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00803353 95.86950684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00803354 95.86951447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00803355 95.86954498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00803356 95.86954498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00803357 95.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00803358 95.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00803359 95.86959839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00803360 95.86959839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00803361 95.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00803362 95.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00803363 95.86965942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00803364 95.86965942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00803365 95.86968231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00803366 95.86968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00803367 95.86971283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00803368 95.86971283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00803369 95.86974335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00803370 95.86974335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00803371 95.86976624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00803372 95.86977386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -00803373 95.86979675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00803374 95.86979675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -00803375 95.86982727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00803376 95.86982727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -00803377 95.86985779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00803378 95.86985779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -00803379 95.86988068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00803380 95.86988831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -00803381 95.86990356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00803382 95.86991119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -00803383 95.86994171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00803384 95.86994171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -00803385 95.86996460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00803386 95.86996460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -00803387 95.86998749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00803388 95.86998749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -00803389 95.87001801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00803390 95.87001801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -00803391 95.87004089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00803392 95.87004852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -00803393 95.87006378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00803394 95.87007141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -00803395 95.87010193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00803396 95.87010193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -00803397 95.87012482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00803398 95.87012482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -00803399 95.87014771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00803400 95.87014771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -00803401 95.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00803402 95.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -00803403 95.87020111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00803404 95.87020874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -00803405 95.87023163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00803406 95.87023163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -00803407 95.87026215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00803408 95.87026215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -00803409 95.87028503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00803410 95.87028503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -00803411 95.87030792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00803412 95.87030792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -00803413 95.87033844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00803414 95.87034607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -00803415 95.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00803416 95.87036896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -00803417 95.87039185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00803418 95.87039185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -00803419 95.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00803420 95.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -00803421 95.87044525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00803422 95.87044525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -00803423 95.87046814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00803424 95.87047577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -00803425 95.87049866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00803426 95.87049866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -00803427 95.87053680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00803428 95.87053680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -00803429 95.87055969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00803430 95.87055969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -00803431 95.87058258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00803432 95.87059021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -00803433 95.87061310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00803434 95.87062073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -00803435 95.87064362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00803436 95.87064362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -00803437 95.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00803438 95.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -00803439 95.87069702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00803440 95.87069702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -00803441 95.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00803442 95.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -00803443 95.87075043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00803444 95.87075806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -00803445 95.87078094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00803446 95.87078094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -00803447 95.87081146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00803448 95.87081146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -00803449 95.87083435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00803450 95.87083435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -00803451 95.87085724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00803452 95.87086487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -00803453 95.87088776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00803454 95.87089539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -00803455 95.87091064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00803456 95.87091827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -00803457 95.87094116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00803458 95.87094116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -00803459 95.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00803460 95.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -00803461 95.87099457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00803462 95.87099457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -00803463 95.87101746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00803464 95.87102509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -00803465 95.87104797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00803466 95.87105560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -00803467 95.87107849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00803468 95.87107849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -00803469 95.87110138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00803470 95.87110138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -00803471 95.87113190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00803472 95.87113190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -00803473 95.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00803474 95.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -00803475 95.87117767 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00803476 95.87118530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -00803477 95.87120819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00803478 95.87121582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -00803479 95.87123871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00803480 95.87123871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -00803481 95.87126160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00803482 95.87126160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -00803483 95.87129211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00803484 95.87129211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -00803485 95.87131500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00803486 95.87131500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -00803487 95.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00803488 95.87134552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -00803489 95.87136841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00803490 95.87137604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -00803491 95.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00803492 95.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -00803493 95.87142181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00803494 95.87142181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -00803495 95.87145233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00803496 95.87145233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -00803497 95.87147522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00803498 95.87148285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -00803499 95.87149811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00803500 95.87150574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00803501 95.87153625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00803502 95.87153625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00803503 95.87155914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00803504 95.87155914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00803505 95.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00803506 95.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00803507 95.87161255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00803508 95.87161255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00803509 95.87163544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00803510 95.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00803511 95.87166595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00803512 95.87166595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00803513 95.87169647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00803514 95.87169647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00803515 95.87171936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00803516 95.87171936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -00803517 95.87174225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00803518 95.87174225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -00803519 95.87177277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00803520 95.87177277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -00803521 95.87179565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00803522 95.87180328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -00803523 95.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00803524 95.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -00803525 95.87184906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00803526 95.87184906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -00803527 95.87187958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00803528 95.87187958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -00803529 95.87190247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00803530 95.87190247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -00803531 95.87193298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00803532 95.87193298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -00803533 95.87195587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00803534 95.87196350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -00803535 95.87198639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00803536 95.87198639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -00803537 95.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00803538 95.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -00803539 95.87203979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00803540 95.87203979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -00803541 95.87206268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00803542 95.87207031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -00803543 95.87209320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00803544 95.87209320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -00803545 95.87212372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00803546 95.87212372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -00803547 95.87214661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00803548 95.87214661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -00803549 95.87216949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00803550 95.87216949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -00803551 95.87220001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00803552 95.87220001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -00803553 95.87222290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00803554 95.87223053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -00803555 95.87224579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00803556 95.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -00803557 95.87228394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00803558 95.87228394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -00803559 95.87230682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00803560 95.87230682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -00803561 95.87232971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00803562 95.87232971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -00803563 95.87236023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00803564 95.87236023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -00803565 95.87238312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00803566 95.87239075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -00803567 95.87241364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00803568 95.87241364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -00803569 95.87244415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00803570 95.87244415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -00803571 95.87246704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00803572 95.87246704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -00803573 95.87248993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00803574 95.87248993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -00803575 95.87252045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00803576 95.87252808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -00803577 95.87254333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00803578 95.87255096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -00803579 95.87257385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00803580 95.87257385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -00803581 95.87260437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00803582 95.87260437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -00803583 95.87262726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00803584 95.87262726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -00803585 95.87265015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00803586 95.87265778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -00803587 95.87268066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00803588 95.87268829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -00803589 95.87271118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00803590 95.87271118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -00803591 95.87273407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00803592 95.87273407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -00803593 95.87276459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00803594 95.87276459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -00803595 95.87278748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00803596 95.87278748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -00803597 95.87281036 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00803598 95.87281799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -00803599 95.87284088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00803600 95.87284851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -00803601 95.87287140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00803602 95.87287140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -00803603 95.87289429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00803604 95.87289429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -00803605 95.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00803606 95.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -00803607 95.87294769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00803608 95.87295532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -00803609 95.87297058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00803610 95.87297821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -00803611 95.87300110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00803612 95.87300110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -00803613 95.87303162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00803614 95.87303162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -00803615 95.87305450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00803616 95.87305450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -00803617 95.87308502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00803618 95.87308502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -00803619 95.87310791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00803620 95.87311554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -00803621 95.87313080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00803622 95.87313843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -00803623 95.87316132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00803624 95.87316132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -00803625 95.87319183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00803626 95.87319183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -00803627 95.87321472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00803628 95.87321472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -00803629 95.87324524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00803630 95.87324524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -00803631 95.87326813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00803632 95.87327576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -00803633 95.87329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00803634 95.87329865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -00803635 95.87332153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00803636 95.87332153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -00803637 95.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00803638 95.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -00803639 95.87337494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00803640 95.87338257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -00803641 95.87339783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00803642 95.87340546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -00803643 95.87343597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00803644 95.87343597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -00803645 95.87345886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00803646 95.87345886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -00803647 95.87348175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00803648 95.87348938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -00803649 95.87351990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00803650 95.87351990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -00803651 95.87354279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00803652 95.87355042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -00803653 95.87357330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00803654 95.87357330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -00803655 95.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00803656 95.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -00803657 95.87362671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00803658 95.87363434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -00803659 95.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00803660 95.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -00803661 95.87368011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00803662 95.87368774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -00803663 95.87371063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00803664 95.87371826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -00803665 95.87374115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00803666 95.87374115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -00803667 95.87376404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00803668 95.87376404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -00803669 95.87379456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00803670 95.87379456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -00803671 95.87381744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00803672 95.87381744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -00803673 95.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00803674 95.87384796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -00803675 95.87387085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00803676 95.87387848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -00803677 95.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00803678 95.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -00803679 95.87392426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00803680 95.87392426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -00803681 95.87395477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00803682 95.87395477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -00803683 95.87397766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00803684 95.87397766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -00803685 95.87400055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00803686 95.87400818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -00803687 95.87403107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00803688 95.87403870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -00803689 95.87406158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00803690 95.87406158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -00803691 95.87408447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00803692 95.87408447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -00803693 95.87411499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00803694 95.87411499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -00803695 95.87413788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00803696 95.87413788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -00803697 95.87416077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00803698 95.87416840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -00803699 95.87419128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00803700 95.87419891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -00803701 95.87422180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00803702 95.87422180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -00803703 95.87424469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00803704 95.87424469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -00803705 95.87427521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00803706 95.87427521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -00803707 95.87429810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00803708 95.87430573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -00803709 95.87432098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00803710 95.87432861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -00803711 95.87435150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00803712 95.87435150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -00803713 95.87438202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00803714 95.87438202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -00803715 95.87440491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00803716 95.87440491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -00803717 95.87443542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00803718 95.87443542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -00803719 95.87445831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00803720 95.87446594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -00803721 95.87448883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00803722 95.87448883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -00803723 95.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00803724 95.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -00803725 95.87454224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00803726 95.87454987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -00803727 95.87456512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00803728 95.87457275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -00803729 95.87459564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00803730 95.87459564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -00803731 95.87462616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00803732 95.87462616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -00803733 95.87464905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00803734 95.87464905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -00803735 95.87467194 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00803736 95.87467957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -00803737 95.87470245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00803738 95.87471008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -00803739 95.87473297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00803740 95.87473297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -00803741 95.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00803742 95.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -00803743 95.87478638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00803744 95.87478638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -00803745 95.87480927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00803746 95.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -00803747 95.87483215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00803748 95.87483978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -00803749 95.87487030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00803750 95.87487030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -00803751 95.87489319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00803752 95.87489319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -00803753 95.87491608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00803754 95.87491608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -00803755 95.87494659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00803756 95.87494659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -00803757 95.87496948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00803758 95.87497711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -00803759 95.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00803760 95.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -00803761 95.87503052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00803762 95.87503052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -00803763 95.87505341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00803764 95.87505341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -00803765 95.87507629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00803766 95.87507629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -00803767 95.87510681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00803768 95.87510681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -00803769 95.87512970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00803770 95.87513733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -00803771 95.87516022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00803772 95.87516022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -00803773 95.87519073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00803774 95.87519073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -00803775 95.87521362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00803776 95.87521362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -00803777 95.87523651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00803778 95.87523651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -00803779 95.87526703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00803780 95.87526703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -00803781 95.87528992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00803782 95.87529755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -00803783 95.87532043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00803784 95.87532043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -00803785 95.87535095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00803786 95.87535095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -00803787 95.87537384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00803788 95.87537384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -00803789 95.87539673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00803790 95.87540436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -00803791 95.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00803792 95.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -00803793 95.87545776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00803794 95.87545776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -00803795 95.87548065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00803796 95.87548065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -00803797 95.87550354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00803798 95.87550354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -00803799 95.87553406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00803800 95.87554169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -00803801 95.87555695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00803802 95.87556458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -00803803 95.87558746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00803804 95.87558746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -00803805 95.87561798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00803806 95.87561798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -00803807 95.87564087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00803808 95.87564087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -00803809 95.87566376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00803810 95.87567139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -00803811 95.87569427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00803812 95.87570190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -00803813 95.87572479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00803814 95.87572479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -00803815 95.87574768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00803816 95.87575531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -00803817 95.87578583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00803818 95.87578583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -00803819 95.87580872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00803820 95.87580872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -00803821 95.87583160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00803822 95.87583923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -00803823 95.87586212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00803824 95.87586212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -00803825 95.87589264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00803826 95.87589264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -00803827 95.87591553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00803828 95.87592316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -00803829 95.87594604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00803830 95.87594604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -00803831 95.87597656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00803832 95.87598419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -00803833 95.87600708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00803834 95.87600708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -00803835 95.87602997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00803836 95.87602997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -00803837 95.87606049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00803838 95.87606049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -00803839 95.87609100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00803840 95.87609100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -00803841 95.87611389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00803842 95.87612152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -00803843 95.87614441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00803844 95.87614441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -00803845 95.87617493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00803846 95.87618256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -00803847 95.87620544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00803848 95.87620544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -00803849 95.87622833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00803850 95.87623596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -00803851 95.87625885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00803852 95.87625885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -00803853 95.87628937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00803854 95.87628937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -00803855 95.87631226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00803856 95.87631989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -00803857 95.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00803858 95.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -00803859 95.87637329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00803860 95.87637329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -00803861 95.87639618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00803862 95.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -00803863 95.87642670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00803864 95.87642670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -00803865 95.87645721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00803866 95.87645721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -00803867 95.87648773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00803868 95.87648773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -00803869 95.87651062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00803870 95.87651062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -00803871 95.87654114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00803872 95.87654114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -00803873 95.87657166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00803874 95.87657166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -00803875 95.87659454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00803876 95.87659454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -00803877 95.87661743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00803878 95.87662506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -00803879 95.87665558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00803880 95.87665558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -00803881 95.87667847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00803882 95.87668610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -00803883 95.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00803884 95.87671661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -00803885 95.87673950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00803886 95.87673950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -00803887 95.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00803888 95.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -00803889 95.87680054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00803890 95.87680054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -00803891 95.87682343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00803892 95.87682343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00803893 95.87685394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00803894 95.87685394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00803895 95.87688446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00803896 95.87689209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00803897 95.87691498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00803898 95.87691498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00803899 95.87693787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00803900 95.87693787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00803901 95.87696838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00803902 95.87697601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00803903 95.87699890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00803904 95.87699890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00803905 95.87702179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00803906 95.87702179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00803907 95.87705231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00803908 95.87705231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00803909 95.87708282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00803910 95.87708282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00803911 95.87711334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00803912 95.87711334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00803913 95.87713623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00803914 95.87713623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -00803915 95.87716675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00803916 95.87716675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -00803917 95.87718964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00803918 95.87718964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -00803919 95.87721252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00803920 95.87722015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -00803921 95.87724304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00803922 95.87725067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -00803923 95.87727356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00803924 95.87727356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -00803925 95.87729645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00803926 95.87729645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -00803927 95.87732697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00803928 95.87732697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -00803929 95.87734985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00803930 95.87734985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -00803931 95.87737274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00803932 95.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -00803933 95.87740326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00803934 95.87741089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -00803935 95.87743378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00803936 95.87743378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -00803937 95.87745667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00803938 95.87745667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -00803939 95.87749481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00803940 95.87749481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -00803941 95.87751770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00803942 95.87751770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -00803943 95.87754822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00803944 95.87754822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -00803945 95.87757111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00803946 95.87757111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -00803947 95.87760162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00803948 95.87760162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -00803949 95.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00803950 95.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -00803951 95.87764740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00803952 95.87765503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -00803953 95.87767792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00803954 95.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -00803955 95.87770844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00803956 95.87770844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -00803957 95.87773132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00803958 95.87773132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -00803959 95.87776184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00803960 95.87776184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -00803961 95.87778473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00803962 95.87778473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -00803963 95.87781525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00803964 95.87781525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -00803965 95.87784576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00803966 95.87785339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -00803967 95.87787628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00803968 95.87787628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -00803969 95.87790680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00803970 95.87791443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -00803971 95.87795258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00803972 95.87795258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -00803973 95.87797546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00803974 95.87797546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -00803975 95.87800598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00803976 95.87800598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -00803977 95.87803650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00803978 95.87804413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -00803979 95.87805939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00803980 95.87806702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -00803981 95.87808990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00803982 95.87808990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -00803983 95.87812042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00803984 95.87812042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -00803985 95.87814331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00803986 95.87814331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -00803987 95.87816620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00803988 95.87816620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -00803989 95.87819672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00803990 95.87820435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -00803991 95.87821960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00803992 95.87822723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -00803993 95.87825012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00803994 95.87825012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -00803995 95.87828064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00803996 95.87828064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -00803997 95.87830353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00803998 95.87830353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -00803999 95.87832642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00804000 95.87832642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -00804001 95.87835693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00804002 95.87836456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -00804003 95.87837982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00804004 95.87838745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -00804005 95.87841034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00804006 95.87841034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -00804007 95.87844086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00804008 95.87844086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -00804009 95.87846375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00804010 95.87846375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -00804011 95.87848663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00804012 95.87849426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -00804013 95.87851715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00804014 95.87852478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -00804015 95.87854004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00804016 95.87854767 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -00804017 95.87857056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00804018 95.87857056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -00804019 95.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00804020 95.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -00804021 95.87862396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00804022 95.87862396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -00804023 95.87864685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00804024 95.87865448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -00804025 95.87867737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00804026 95.87868500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -00804027 95.87870789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00804028 95.87870789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -00804029 95.87873077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00804030 95.87873840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -00804031 95.87876129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00804032 95.87876129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -00804033 95.87879181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00804034 95.87879944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -00804035 95.87882233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00804036 95.87882233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -00804037 95.87884521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00804038 95.87885284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -00804039 95.87888336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00804040 95.87888336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -00804041 95.87890625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00804042 95.87891388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -00804043 95.87893677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00804044 95.87893677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -00804045 95.87895966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00804046 95.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -00804047 95.87899017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00804048 95.87899780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -00804049 95.87901306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00804050 95.87902069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -00804051 95.87904358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00804052 95.87904358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -00804053 95.87907410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00804054 95.87907410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -00804055 95.87909698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00804056 95.87909698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -00804057 95.87911987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00804058 95.87912750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -00804059 95.87915039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00804060 95.87915802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -00804061 95.87918091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00804062 95.87918091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -00804063 95.87920380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00804064 95.87920380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -00804065 95.87923431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00804066 95.87923431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -00804067 95.87925720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00804068 95.87925720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -00804069 95.87928009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00804070 95.87928772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -00804071 95.87931061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00804072 95.87931824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -00804073 95.87934113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00804074 95.87934113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00804075 95.87936401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00804076 95.87936401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00804077 95.87939453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00804078 95.87939453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00804079 95.87941742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00804080 95.87942505 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00804081 95.87944031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00804082 95.87944794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00804083 95.87947845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00804084 95.87947845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00804085 95.87950134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00804086 95.87950134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -00804087 95.87953186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00804088 95.87953186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -00804089 95.87955475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00804090 95.87956238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -00804091 95.87959290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00804092 95.87959290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -00804093 95.87961578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00804094 95.87961578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -00804095 95.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00804096 95.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -00804097 95.87966919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00804098 95.87966919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -00804099 95.87969208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00804100 95.87969971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -00804101 95.87971497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00804102 95.87972260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -00804103 95.87975311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00804104 95.87975311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -00804105 95.87977600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00804106 95.87977600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -00804107 95.87979889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00804108 95.87979889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -00804109 95.87982941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00804110 95.87982941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -00804111 95.87985229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00804112 95.87985992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -00804113 95.87987518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00804114 95.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -00804115 95.87991333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00804116 95.87991333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -00804117 95.87993622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00804118 95.87993622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -00804119 95.87995911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00804120 95.87995911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -00804121 95.87998962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00804122 95.87998962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -00804123 95.88001251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00804124 95.88002014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -00804125 95.88003540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00804126 95.88004303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -00804127 95.88007355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00804128 95.88007355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -00804129 95.88009644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00804130 95.88009644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -00804131 95.88011932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00804132 95.88011932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -00804133 95.88014984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00804134 95.88014984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -00804135 95.88017273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00804136 95.88018036 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -00804137 95.88020325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00804138 95.88020325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -00804139 95.88023376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00804140 95.88023376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -00804141 95.88025665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -00804142 95.88025665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -00804143 95.88027954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -00804144 95.88027954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -00804145 95.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -00804146 95.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -00804147 95.88033295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -00804148 95.88034058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -00804149 95.88036346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -00804150 95.88036346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -00804151 95.88039398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -00804152 95.88039398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -00804153 95.88041687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -00804154 95.88041687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -00804155 95.88043976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -00804156 95.88044739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -00804157 95.88047028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -00804158 95.88047028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -00804159 95.88050079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -00804160 95.88050842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -00804161 95.88053131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -00804162 95.88053131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -00804163 95.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -00804164 95.88056183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -00804165 95.88058472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -00804166 95.88059235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -00804167 95.88061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -00804168 95.88061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -00804169 95.88063812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -00804170 95.88063812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -00804171 95.88066864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -00804172 95.88066864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -00804173 95.88069153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -00804174 95.88069153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -00804175 95.88071442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -00804176 95.88072205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -00804177 95.88074493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -00804178 95.88075256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -00804179 95.88077545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -00804180 95.88077545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -00804181 95.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -00804182 95.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -00804183 95.88082886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -00804184 95.88082886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -00804185 95.88085175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -00804186 95.88085175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -00804187 95.88087463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -00804188 95.88088226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -00804189 95.88090515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -00804190 95.88090515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -00804191 95.88093567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -00804192 95.88093567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -00804193 95.88095856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -00804194 95.88095856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -00804195 95.88098907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -00804196 95.88098907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -00804197 95.88101196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -00804198 95.88101196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -00804199 95.88103485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -00804200 95.88104248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -00804201 95.88106537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -00804202 95.88106537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -00804203 95.88109589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -00804204 95.88109589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -00804205 95.88111877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -00804206 95.88111877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -00804207 95.88114929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -00804208 95.88114929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -00804209 95.88117218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -00804210 95.88117218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -00804211 95.88119507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -00804212 95.88120270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -00804213 95.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -00804214 95.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -00804215 95.88125610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -00804216 95.88125610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -00804217 95.88127899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -00804218 95.88127899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -00804219 95.88130188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -00804220 95.88130188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -00804221 95.88133240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -00804222 95.88133240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -00804223 95.88135529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -00804224 95.88136292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -00804225 95.88138580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -00804226 95.88138580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -00804227 95.88141632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -00804228 95.88141632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -00804229 95.88143921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -00804230 95.88143921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -00804231 95.88146210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -00804232 95.88146210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -00804233 95.88150024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -00804234 95.88150024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -00804235 95.88152313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -00804236 95.88153076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -00804237 95.88155365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -00804238 95.88155365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -00804239 95.88158417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -00804240 95.88158417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -00804241 95.88160706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -00804242 95.88161469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -00804243 95.88163757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -00804244 95.88163757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -00804245 95.88166046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -00804246 95.88166046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -00804247 95.88169098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -00804248 95.88169098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -00804249 95.88171387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -00804250 95.88172150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -00804251 95.88174438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -00804252 95.88174438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -00804253 95.88176727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -00804254 95.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -00804255 95.88179779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -00804256 95.88180542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -00804257 95.88182831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -00804258 95.88182831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -00804259 95.88185883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -00804260 95.88185883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -00804261 95.88188171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -00804262 95.88189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -00804263 95.88193512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -00804264 95.88193512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -00804265 95.88195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -00804266 95.88196564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -00804267 95.88198853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -00804268 95.88198853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -00804269 95.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -00804270 95.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -00804271 95.88204956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -00804272 95.88204956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -00804273 95.88207245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -00804274 95.88207245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -00804275 95.88210297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -00804276 95.88210297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -00804277 95.88212585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -00804278 95.88212585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -00804279 95.88214874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00804280 95.88215637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -00804281 95.88217926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00804282 95.88217926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -00804283 95.88220978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00804284 95.88220978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -00804285 95.88223267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00804286 95.88223267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -00804287 95.88225555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00804288 95.88225555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -00804289 95.88228607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00804290 95.88229370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -00804291 95.88230896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00804292 95.88231659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -00804293 95.88233948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00804294 95.88233948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -00804295 95.88237000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00804296 95.88237000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -00804297 95.88239288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00804298 95.88239288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -00804299 95.88241577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00804300 95.88241577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -00804301 95.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00804302 95.88245392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -00804303 95.88246918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00804304 95.88247681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -00804305 95.88249969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00804306 95.88249969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -00804307 95.88253021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00804308 95.88253021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -00804309 95.88255310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00804310 95.88255310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -00804311 95.88257599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00804312 95.88257599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -00804313 95.88260651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00804314 95.88261414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -00804315 95.88263702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00804316 95.88263702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -00804317 95.88266754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00804318 95.88266754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -00804319 95.88269806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00804320 95.88269806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -00804321 95.88272858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00804322 95.88272858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -00804323 95.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00804324 95.88275909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -00804325 95.88278198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00804326 95.88278198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -00804327 95.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00804328 95.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -00804329 95.88283539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -00804330 95.88284302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -00804331 95.88286591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -00804332 95.88286591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -00804333 95.88289642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -00804334 95.88289642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -00804335 95.88292694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -00804336 95.88292694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -00804337 95.88294983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -00804338 95.88294983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -00804339 95.88297272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -00804340 95.88298035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -00804341 95.88301086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -00804342 95.88301086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -00804343 95.88303375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -00804344 95.88303375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -00804345 95.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -00804346 95.88306427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -00804347 95.88309479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -00804348 95.88309479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -00804349 95.88311768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -00804350 95.88312531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -00804351 95.88314819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -00804352 95.88314819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -00804353 95.88317108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -00804354 95.88317108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -00804355 95.88320160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -00804356 95.88320923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -00804357 95.88323212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -00804358 95.88323212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -00804359 95.88325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -00804360 95.88325500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -00804361 95.88328552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -00804362 95.88329315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -00804363 95.88331604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -00804364 95.88331604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -00804365 95.88333893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -00804366 95.88334656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -00804367 95.88336945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -00804368 95.88336945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -00804369 95.88339996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -00804370 95.88339996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -00804371 95.88342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -00804372 95.88342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -00804373 95.88345337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -00804374 95.88345337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -00804375 95.88347626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -00804376 95.88348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -00804377 95.88350677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -00804378 95.88350677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -00804379 95.88352966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -00804380 95.88352966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -00804381 95.88356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -00804382 95.88356018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -00804383 95.88358307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -00804384 95.88358307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -00804385 95.88360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -00804386 95.88361359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -00804387 95.88363647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -00804388 95.88364410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -00804389 95.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -00804390 95.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -00804391 95.88368988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -00804392 95.88368988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -00804393 95.88372040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -00804394 95.88372040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -00804395 95.88374329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -00804396 95.88375092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -00804397 95.88377380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -00804398 95.88377380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -00804399 95.88380432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -00804400 95.88380432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -00804401 95.88383484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -00804402 95.88383484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -00804403 95.88385773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -00804404 95.88386536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -00804405 95.88388824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -00804406 95.88388824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -00804407 95.88391876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -00804408 95.88391876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -00804409 95.88394165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -00804410 95.88394165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -00804411 95.88396454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -00804412 95.88396454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -00804413 95.88399506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -00804414 95.88399506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -00804415 95.88401794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -00804416 95.88402557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -00804417 95.88404846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -00804418 95.88404846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -00804419 95.88407898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -00804420 95.88407898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -00804421 95.88410187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -00804422 95.88410187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -00804423 95.88412476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -00804424 95.88412476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -00804425 95.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -00804426 95.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -00804427 95.88417816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -00804428 95.88418579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -00804429 95.88420105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -00804430 95.88420868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -00804431 95.88423920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -00804432 95.88423920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -00804433 95.88426208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -00804434 95.88426208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -00804435 95.88428497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -00804436 95.88428497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -00804437 95.88431549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -00804438 95.88432312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -00804439 95.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -00804440 95.88434601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -00804441 95.88436127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -00804442 95.88436890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -00804443 95.88439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -00804444 95.88439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -00804445 95.88442230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -00804446 95.88442230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -00804447 95.88444519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -00804448 95.88444519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -00804449 95.88447571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -00804450 95.88448334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -00804451 95.88449860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -00804452 95.88450623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -00804453 95.88452911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -00804454 95.88452911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -00804455 95.88455963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -00804456 95.88455963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -00804457 95.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -00804458 95.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -00804459 95.88460541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -00804460 95.88461304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -00804461 95.88463593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -00804462 95.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -00804463 95.88466644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -00804464 95.88466644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -00804465 95.88468933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -00804466 95.88468933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -00804467 95.88471985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -00804468 95.88471985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -00804469 95.88474274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -00804470 95.88474274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -00804471 95.88476563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -00804472 95.88477325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -00804473 95.88479614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -00804474 95.88480377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -00804475 95.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -00804476 95.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -00804477 95.88484955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -00804478 95.88484955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -00804479 95.88488007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -00804480 95.88488007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -00804481 95.88490295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -00804482 95.88490295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -00804483 95.88492584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -00804484 95.88493347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -00804485 95.88495636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -00804486 95.88495636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -00804487 95.88498688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -00804488 95.88498688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -00804489 95.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -00804490 95.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -00804491 95.88504028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -00804492 95.88504028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -00804493 95.88506317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -00804494 95.88506317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -00804495 95.88508606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -00804496 95.88509369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -00804497 95.88511658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -00804498 95.88511658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -00804499 95.88514709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -00804500 95.88514709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -00804501 95.88516998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -00804502 95.88516998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -00804503 95.88520050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -00804504 95.88520050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -00804505 95.88522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -00804506 95.88522339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -00804507 95.88524628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -00804508 95.88525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -00804509 95.88527679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -00804510 95.88527679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -00804511 95.88530731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -00804512 95.88530731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -00804513 95.88533020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -00804514 95.88533020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -00804515 95.88535309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -00804516 95.88535309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -00804517 95.88538361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -00804518 95.88539124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -00804519 95.88540649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -00804520 95.88541412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -00804521 95.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -00804522 95.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -00804523 95.88546753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -00804524 95.88547516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -00804525 95.88549805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -00804526 95.88549805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -00804527 95.88552094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -00804528 95.88552094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -00804529 95.88555145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -00804530 95.88555145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -00804531 95.88558197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -00804532 95.88558197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -00804533 95.88560486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -00804534 95.88561249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -00804535 95.88563538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -00804536 95.88563538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -00804537 95.88566589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -00804538 95.88566589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -00804539 95.88569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -00804540 95.88569641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -00804541 95.88571930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -00804542 95.88571930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -00804543 95.88574982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -00804544 95.88574982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -00804545 95.88577271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -00804546 95.88578033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -00804547 95.88579559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -00804548 95.88580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -00804549 95.88583374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -00804550 95.88583374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -00804551 95.88585663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -00804552 95.88585663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -00804553 95.88587952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -00804554 95.88587952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -00804555 95.88591003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -00804556 95.88591003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -00804557 95.88593292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -00804558 95.88594055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -00804559 95.88596344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -00804560 95.88596344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -00804561 95.88599396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -00804562 95.88599396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -00804563 95.88602448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -00804564 95.88602448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -00804565 95.88604736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -00804566 95.88605499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -00804567 95.88607788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -00804568 95.88607788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -00804569 95.88610840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -00804570 95.88610840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -00804571 95.88613129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -00804572 95.88613892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -00804573 95.88616180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -00804574 95.88616180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -00804575 95.88619232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -00804576 95.88619232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -00804577 95.88621521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -00804578 95.88622284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -00804579 95.88624573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -00804580 95.88624573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -00804581 95.88626862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -00804582 95.88627625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -00804583 95.88629913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -00804584 95.88630676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -00804585 95.88632965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -00804586 95.88632965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -00804587 95.88635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -00804588 95.88635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -00804589 95.88638306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -00804590 95.88638306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -00804591 95.88640594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -00804592 95.88641357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -00804593 95.88642883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -00804594 95.88643646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -00804595 95.88646698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -00804596 95.88646698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -00804597 95.88648987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -00804598 95.88648987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -00804599 95.88651276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -00804600 95.88651276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -00804601 95.88654327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -00804602 95.88654327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -00804603 95.88656616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -00804604 95.88657379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -00804605 95.88658905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -00804606 95.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -00804607 95.88662720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -00804608 95.88662720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -00804609 95.88665009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -00804610 95.88665009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -00804611 95.88667297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -00804612 95.88667297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -00804613 95.88670349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -00804614 95.88670349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -00804615 95.88672638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -00804616 95.88673401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -00804617 95.88674927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -00804618 95.88675690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -00804619 95.88678741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -00804620 95.88678741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -00804621 95.88681030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -00804622 95.88681793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -00804623 95.88684082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -00804624 95.88684845 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -00804625 95.88687134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -00804626 95.88687134 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -00804627 95.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -00804628 95.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -00804629 95.88693237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -00804630 95.88693237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -00804631 95.88695526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -00804632 95.88695526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -00804633 95.88698578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -00804634 95.88698578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -00804635 95.88701630 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -00804636 95.88701630 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -00804637 95.88703918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -00804638 95.88704681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -00804639 95.88706207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -00804640 95.88706970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -00804641 95.88710022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -00804642 95.88710022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -00804643 95.88712311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -00804644 95.88712311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -00804645 95.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -00804646 95.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -00804647 95.88717651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -00804648 95.88717651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -00804649 95.88719940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -00804650 95.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -00804651 95.88722229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -00804652 95.88722992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -00804653 95.88726044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -00804654 95.88726044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -00804655 95.88728333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -00804656 95.88728333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -00804657 95.88730621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -00804658 95.88730621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -00804659 95.88733673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -00804660 95.88733673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -00804661 95.88735962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -00804662 95.88736725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -00804663 95.88738251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -00804664 95.88739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -00804665 95.88742065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -00804666 95.88742065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -00804667 95.88744354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -00804668 95.88744354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -00804669 95.88746643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -00804670 95.88746643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -00804671 95.88749695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -00804672 95.88749695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -00804673 95.88751984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -00804674 95.88752747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -00804675 95.88754272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -00804676 95.88755035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -00804677 95.88758087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -00804678 95.88758087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -00804679 95.88760376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -00804680 95.88760376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -00804681 95.88762665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -00804682 95.88762665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -00804683 95.88765717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -00804684 95.88765717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -00804685 95.88768005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -00804686 95.88768768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -00804687 95.88770294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -00804688 95.88771057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -00804689 95.88774109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -00804690 95.88774109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -00804691 95.88776398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -00804692 95.88776398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -00804693 95.88778687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -00804694 95.88778687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -00804695 95.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -00804696 95.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -00804697 95.88784027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -00804698 95.88784790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -00804699 95.88786316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -00804700 95.88787079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -00804701 95.88790131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00804702 95.88790131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -00804703 95.88792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00804704 95.88792419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -00804705 95.88794708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00804706 95.88794708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -00804707 95.88797760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00804708 95.88797760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -00804709 95.88800049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00804710 95.88800812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -00804711 95.88802338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00804712 95.88803101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -00804713 95.88805389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00804714 95.88805389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -00804715 95.88808441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00804716 95.88808441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -00804717 95.88810730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00804718 95.88810730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -00804719 95.88813782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00804720 95.88813782 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -00804721 95.88816071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00804722 95.88816833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -00804723 95.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00804724 95.88819122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -00804725 95.88821411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00804726 95.88821411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -00804727 95.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00804728 95.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -00804729 95.88826752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00804730 95.88826752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -00804731 95.88829803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00804732 95.88829803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -00804733 95.88832092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00804734 95.88832855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -00804735 95.88834381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00804736 95.88835144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -00804737 95.88837433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00804738 95.88837433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -00804739 95.88840485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00804740 95.88840485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -00804741 95.88842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00804742 95.88842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -00804743 95.88845062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00804744 95.88845825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -00804745 95.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -00804746 95.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -00804747 95.88852692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -00804748 95.88852692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -00804749 95.88856506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -00804750 95.88856506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -00804751 95.88859558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -00804752 95.88859558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -00804753 95.88861847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -00804754 95.88861847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -00804755 95.88864899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -00804756 95.88864899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -00804757 95.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -00804758 95.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -00804759 95.88869476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -00804760 95.88870239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -00804761 95.88872528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -00804762 95.88873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -00804763 95.88875580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -00804764 95.88875580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -00804765 95.88877869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -00804766 95.88877869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -00804767 95.88880920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -00804768 95.88880920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -00804769 95.88883209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -00804770 95.88883209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -00804771 95.88885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -00804772 95.88886261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -00804773 95.88888550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -00804774 95.88889313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -00804775 95.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -00804776 95.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -00804777 95.88893890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -00804778 95.88894653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -00804779 95.88896942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -00804780 95.88896942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -00804781 95.88899994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00804782 95.88900757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -00804783 95.88903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00804784 95.88904572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -00804785 95.88907623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00804786 95.88907623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -00804787 95.88910675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00804788 95.88910675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -00804789 95.88912964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00804790 95.88912964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -00804791 95.88916016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00804792 95.88916779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -00804793 95.88918304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00804794 95.88919067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -00804795 95.88921356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00804796 95.88921356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -00804797 95.88924408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -00804798 95.88924408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -00804799 95.88926697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -00804800 95.88926697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -00804801 95.88928986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -00804802 95.88928986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -00804803 95.88932037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -00804804 95.88932800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -00804805 95.88934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -00804806 95.88935089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -00804807 95.88936615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -00804808 95.88937378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -00804809 95.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -00804810 95.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -00804811 95.88942719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -00804812 95.88942719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -00804813 95.88945007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -00804814 95.88945007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -00804815 95.88948059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -00804816 95.88948822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -00804817 95.88950348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -00804818 95.88951111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -00804819 95.88953400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -00804820 95.88953400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -00804821 95.88956451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -00804822 95.88956451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -00804823 95.88958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -00804824 95.88959503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -00804825 95.88961029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -00804826 95.88961792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -00804827 95.88964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -00804828 95.88964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -00804829 95.88967133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -00804830 95.88967133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -00804831 95.88969421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -00804832 95.88969421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -00804833 95.88972473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -00804834 95.88972473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -00804835 95.88975525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -00804836 95.88976288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -00804837 95.88977814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -00804838 95.88978577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -00804839 95.88980865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -00804840 95.88980865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -00804841 95.88983917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -00804842 95.88984680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -00804843 95.88986969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -00804844 95.88986969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -00804845 95.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -00804846 95.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -00804847 95.88992310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -00804848 95.88992310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -00804849 95.88995361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -00804850 95.88995361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -00804851 95.88997650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -00804852 95.88997650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -00804853 95.88999939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -00804854 95.89000702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -00804855 95.89003754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -00804856 95.89003754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -00804857 95.89006042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -00804858 95.89006042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -00804859 95.89008331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -00804860 95.89009094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -00804861 95.89012146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -00804862 95.89012146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -00804863 95.89014435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -00804864 95.89015198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -00804865 95.89017487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -00804866 95.89017487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -00804867 95.89020538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -00804868 95.89020538 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -00804869 95.89022827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -00804870 95.89023590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -00804871 95.89025116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -00804872 95.89025879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -00804873 95.89028168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -00804874 95.89028168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -00804875 95.89031219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -00804876 95.89031219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -00804877 95.89033508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -00804878 95.89033508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -00804879 95.89035797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -00804880 95.89036560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -00804881 95.89038849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -00804882 95.89039612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -00804883 95.89041901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -00804884 95.89041901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -00804885 95.89044189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -00804886 95.89044189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -00804887 95.89047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -00804888 95.89047241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -00804889 95.89049530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -00804890 95.89049530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -00804891 95.89051819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -00804892 95.89052582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -00804893 95.89054871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -00804894 95.89055634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -00804895 95.89057159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -00804896 95.89057922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -00804897 95.89060211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -00804898 95.89060211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -00804899 95.89063263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -00804900 95.89063263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -00804901 95.89065552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -00804902 95.89065552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -00804903 95.89067841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -00804904 95.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -00804905 95.89070892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -00804906 95.89071655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -00804907 95.89073944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -00804908 95.89073944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -00804909 95.89078522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -00804910 95.89078522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -00804911 95.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -00804912 95.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -00804913 95.89085388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -00804914 95.89085388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -00804915 95.89087677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -00804916 95.89087677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -00804917 95.89090729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -00804918 95.89090729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -00804919 95.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -00804920 95.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -00804921 95.89095306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -00804922 95.89096069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -00804923 95.89098358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -00804924 95.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -00804925 95.89101410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -00804926 95.89101410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -00804927 95.89103699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -00804928 95.89103699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -00804929 95.89106750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -00804930 95.89106750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -00804931 95.89109039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -00804932 95.89109039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -00804933 95.89111328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -00804934 95.89112091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -00804935 95.89114380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -00804936 95.89115143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -00804937 95.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -00804938 95.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -00804939 95.89119720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -00804940 95.89119720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -00804941 95.89122772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -00804942 95.89122772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -00804943 95.89125061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -00804944 95.89125061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -00804945 95.89127350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -00804946 95.89128113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -00804947 95.89130402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -00804948 95.89131165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -00804949 95.89133453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -00804950 95.89133453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -00804951 95.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -00804952 95.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -00804953 95.89138794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -00804954 95.89139557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -00804955 95.89141083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -00804956 95.89141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -00804957 95.89143372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -00804958 95.89144135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -00804959 95.89147186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -00804960 95.89147186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -00804961 95.89149475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -00804962 95.89149475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -00804963 95.89151764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -00804964 95.89151764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -00804965 95.89154816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -00804966 95.89155579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -00804967 95.89157104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -00804968 95.89157867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -00804969 95.89159393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -00804970 95.89160156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -00804971 95.89163208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -00804972 95.89163208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -00804973 95.89165497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -00804974 95.89165497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -00804975 95.89167786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -00804976 95.89167786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -00804977 95.89170837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -00804978 95.89170837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -00804979 95.89173126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -00804980 95.89173889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -00804981 95.89176178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -00804982 95.89176178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -00804983 95.89179230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -00804984 95.89179230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -00804985 95.89181519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -00804986 95.89181519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -00804987 95.89183807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -00804988 95.89183807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -00804989 95.89186859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -00804990 95.89186859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -00804991 95.89189148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -00804992 95.89189911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -00804993 95.89192200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -00804994 95.89192200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -00804995 95.89195251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -00804996 95.89195251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -00804997 95.89197540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -00804998 95.89197540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -00804999 95.89199829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -00805000 95.89200592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -00805001 95.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -00805002 95.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -00805003 95.89205170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -00805004 95.89205933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -00805005 95.89208221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -00805006 95.89208221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -00805007 95.89210510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -00805008 95.89210510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -00805009 95.89213562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -00805010 95.89213562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -00805011 95.89215851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -00805012 95.89215851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -00805013 95.89218903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -00805014 95.89218903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -00805015 95.89221191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -00805016 95.89221954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -00805017 95.89224243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -00805018 95.89224243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -00805019 95.89226532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -00805020 95.89226532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -00805021 95.89229584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -00805022 95.89229584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -00805023 95.89231873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -00805024 95.89232635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -00805025 95.89234924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -00805026 95.89234924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -00805027 95.89237976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -00805028 95.89237976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -00805029 95.89240265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -00805030 95.89240265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -00805031 95.89242554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -00805032 95.89242554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -00805033 95.89245605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -00805034 95.89246368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -00805035 95.89247894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -00805036 95.89248657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -00805037 95.89250946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -00805038 95.89250946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -00805039 95.89253998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -00805040 95.89253998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -00805041 95.89256287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -00805042 95.89256287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -00805043 95.89258575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -00805044 95.89259338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -00805045 95.89261627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -00805046 95.89262390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -00805047 95.89264679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -00805048 95.89264679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -00805049 95.89266968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -00805050 95.89266968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -00805051 95.89270020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -00805052 95.89270020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -00805053 95.89272308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -00805054 95.89272308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -00805055 95.89274597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -00805056 95.89275360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -00805057 95.89277649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -00805058 95.89278412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -00805059 95.89280701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -00805060 95.89280701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -00805061 95.89282990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -00805062 95.89282990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -00805063 95.89286041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -00805064 95.89286041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -00805065 95.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -00805066 95.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -00805067 95.89290619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -00805068 95.89291382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -00805069 95.89293671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -00805070 95.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -00805071 95.89296722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -00805072 95.89296722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -00805073 95.89299011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -00805074 95.89299011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -00805075 95.89302063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -00805076 95.89302063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -00805077 95.89304352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -00805078 95.89304352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -00805079 95.89306641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -00805080 95.89307404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -00805081 95.89310455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -00805082 95.89310455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -00805083 95.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -00805084 95.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -00805085 95.89315033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -00805086 95.89315033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -00805087 95.89318085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -00805088 95.89318085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -00805089 95.89320374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -00805090 95.89321136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -00805091 95.89322662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -00805092 95.89323425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -00805093 95.89325714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -00805094 95.89325714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -00805095 95.89328766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -00805096 95.89328766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -00805097 95.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -00805098 95.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -00805099 95.89334106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -00805100 95.89334106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -00805101 95.89336395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -00805102 95.89337158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -00805103 95.89339447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -00805104 95.89339447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -00805105 95.89341736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -00805106 95.89341736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -00805107 95.89344788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -00805108 95.89345551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -00805109 95.89347076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -00805110 95.89347839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -00805111 95.89350128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -00805112 95.89350128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -00805113 95.89353180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -00805114 95.89353180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -00805115 95.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -00805116 95.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -00805117 95.89357758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -00805118 95.89357758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -00805119 95.89360809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -00805120 95.89361572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -00805121 95.89363861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -00805122 95.89363861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -00805123 95.89366150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -00805124 95.89366150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -00805125 95.89369202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -00805126 95.89369202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -00805127 95.89371490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -00805128 95.89372253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -00805129 95.89373779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -00805130 95.89374542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -00805131 95.89377594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -00805132 95.89377594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -00805133 95.89379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -00805134 95.89380646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -00805135 95.89382935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -00805136 95.89383698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -00805137 95.89386749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -00805138 95.89387512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -00805139 95.89390564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -00805140 95.89390564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -00805141 95.89393616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -00805142 95.89393616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -00805143 95.89396667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -00805144 95.89397430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -00805145 95.89398956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -00805146 95.89399719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -00805147 95.89402008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -00805148 95.89402008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -00805149 95.89405060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -00805150 95.89405060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -00805151 95.89407349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -00805152 95.89407349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -00805153 95.89409637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -00805154 95.89409637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -00805155 95.89412689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -00805156 95.89413452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -00805157 95.89414978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -00805158 95.89415741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -00805159 95.89418030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -00805160 95.89418030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -00805161 95.89421082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -00805162 95.89421082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -00805163 95.89423370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -00805164 95.89423370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -00805165 95.89425659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -00805166 95.89426422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -00805167 95.89428711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -00805168 95.89429474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -00805169 95.89431763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -00805170 95.89431763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -00805171 95.89434052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -00805172 95.89434052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -00805173 95.89437103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00805174 95.89437103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00805175 95.89439392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00805176 95.89440155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00805177 95.89441681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00805178 95.89442444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00805179 95.89445496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00805180 95.89445496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00805181 95.89447784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00805182 95.89448547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00805183 95.89450836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00805184 95.89451599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00805185 95.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00805186 95.89453888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00805187 95.89456940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00805188 95.89456940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00805189 95.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00805190 95.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00805191 95.89461517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00805192 95.89461517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00805193 95.89464569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00805194 95.89464569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00805195 95.89466858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -00805196 95.89467621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -00805197 95.89469147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -00805198 95.89469910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -00805199 95.89472961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -00805200 95.89472961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -00805201 95.89475250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -00805202 95.89475250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -00805203 95.89477539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -00805204 95.89477539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -00805205 95.89480591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -00805206 95.89480591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -00805207 95.89482880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -00805208 95.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -00805209 95.89485168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -00805210 95.89485931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -00805211 95.89488983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -00805212 95.89488983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -00805213 95.89491272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -00805214 95.89491272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -00805215 95.89493561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -00805216 95.89493561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -00805217 95.89496613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -00805218 95.89496613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -00805219 95.89498901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -00805220 95.89499664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -00805221 95.89501953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -00805222 95.89501953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -00805223 95.89505005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -00805224 95.89505005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -00805225 95.89507294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -00805226 95.89507294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -00805227 95.89509583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -00805228 95.89509583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -00805229 95.89512634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -00805230 95.89512634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -00805231 95.89514923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -00805232 95.89515686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -00805233 95.89517975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -00805234 95.89517975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -00805235 95.89520264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -00805236 95.89520264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -00805237 95.89523315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -00805238 95.89523315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -00805239 95.89525604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -00805240 95.89525604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -00805241 95.89528656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -00805242 95.89528656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -00805243 95.89530945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -00805244 95.89531708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -00805245 95.89533234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -00805246 95.89533997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -00805247 95.89536285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -00805248 95.89536285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -00805249 95.89539337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -00805250 95.89539337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -00805251 95.89541626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -00805252 95.89542389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -00805253 95.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -00805254 95.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -00805255 95.89547729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -00805256 95.89547729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -00805257 95.89550018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -00805258 95.89550018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -00805259 95.89552307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -00805260 95.89552307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -00805261 95.89555359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -00805262 95.89555359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -00805263 95.89557648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -00805264 95.89558411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -00805265 95.89560699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -00805266 95.89560699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -00805267 95.89563751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -00805268 95.89563751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -00805269 95.89566040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -00805270 95.89566040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -00805271 95.89568329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -00805272 95.89568329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -00805273 95.89571381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -00805274 95.89571381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -00805275 95.89573669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -00805276 95.89574432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -00805277 95.89575958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -00805278 95.89576721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -00805279 95.89579773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -00805280 95.89579773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -00805281 95.89582062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -00805282 95.89582062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -00805283 95.89584351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -00805284 95.89584351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -00805285 95.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -00805286 95.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -00805287 95.89589691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -00805288 95.89590454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -00805289 95.89591980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -00805290 95.89592743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -00805291 95.89595795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -00805292 95.89595795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -00805293 95.89598083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -00805294 95.89598083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -00805295 95.89600372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -00805296 95.89600372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -00805297 95.89603424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -00805298 95.89604187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -00805299 95.89605713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -00805300 95.89606476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -00805301 95.89608765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -00805302 95.89608765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -00805303 95.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -00805304 95.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -00805305 95.89614105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -00805306 95.89614105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -00805307 95.89616394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -00805308 95.89616394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -00805309 95.89619446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -00805310 95.89620209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -00805311 95.89621735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -00805312 95.89622498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -00805313 95.89624786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -00805314 95.89624786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -00805315 95.89627838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -00805316 95.89627838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -00805317 95.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -00805318 95.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -00805319 95.89632416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -00805320 95.89632416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -00805321 95.89635468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -00805322 95.89635468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -00805323 95.89637756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -00805324 95.89638519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -00805325 95.89640808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -00805326 95.89640808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -00805327 95.89643860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -00805328 95.89643860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -00805329 95.89646149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -00805330 95.89646149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -00805331 95.89648438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -00805332 95.89649200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -00805333 95.89651489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -00805334 95.89651489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -00805335 95.89653778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -00805336 95.89654541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -00805337 95.89656830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -00805338 95.89656830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -00805339 95.89659882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -00805340 95.89659882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -00805341 95.89662170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -00805342 95.89662170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -00805343 95.89665222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -00805344 95.89665222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -00805345 95.89667511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -00805346 95.89668274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -00805347 95.89671326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -00805348 95.89671326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -00805349 95.89673615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -00805350 95.89673615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -00805351 95.89675903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -00805352 95.89676666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -00805353 95.89679718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -00805354 95.89679718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -00805355 95.89682007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -00805356 95.89682007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -00805357 95.89684296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -00805358 95.89685059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -00805359 95.89687347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -00805360 95.89687347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -00805361 95.89690399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -00805362 95.89691162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -00805363 95.89693451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -00805364 95.89693451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -00805365 95.89695740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -00805366 95.89696503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -00805367 95.89698792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -00805368 95.89699554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -00805369 95.89701843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -00805370 95.89701843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -00805371 95.89704132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -00805372 95.89704132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -00805373 95.89707184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -00805374 95.89707184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -00805375 95.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -00805376 95.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -00805377 95.89711761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -00805378 95.89712524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -00805379 95.89714813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -00805380 95.89715576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -00805381 95.89717865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -00805382 95.89717865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -00806283 95.90965271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -00806284 95.90966034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -00806285 95.90968323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -00806286 95.90968323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -00806287 95.90970612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -00806288 95.90971375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -00806289 95.90974426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -00806290 95.90974426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -00806291 95.90976715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -00806292 95.90976715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -00806293 95.90979004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -00806294 95.90979767 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -00806295 95.90982056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -00806296 95.90982056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -00806297 95.90985107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -00806298 95.90985870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -00806299 95.90988159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -00806300 95.90988159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -00806301 95.90990448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -00806302 95.90990448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -00806303 95.90993500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00806304 95.90994263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -00806305 95.90996552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00806306 95.90996552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -00806307 95.90998840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -00806308 95.90999603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -00806309 95.91001892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -00806310 95.91001892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -00806311 95.91004944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -00806312 95.91004944 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -00806313 95.91007233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -00806314 95.91007996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -00806315 95.91010284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -00806316 95.91010284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -00806317 95.91013336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -00806318 95.91013336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -00806319 95.91015625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -00806320 95.91016388 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -00806321 95.91018677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -00806322 95.91018677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -00806323 95.91021729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -00806324 95.91021729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -00806325 95.91024780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -00806326 95.91024780 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -00808185 95.93618774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -00808186 95.93619537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -00808187 95.93621826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -00808188 95.93621826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -00808189 95.93624115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -00808190 95.93624115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -00808191 95.93627167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -00808192 95.93627167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -00808193 95.93629456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -00808194 95.93629456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -00808195 95.93631744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -00808196 95.93632507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -00808197 95.93635559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -00808198 95.93635559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -00808199 95.93637848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -00808200 95.93637848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -00808201 95.93640137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -00808202 95.93640900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -00808203 95.93643188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -00808204 95.93643188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -00808205 95.93646240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -00808206 95.93646240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -00808207 95.93648529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -00808208 95.93649292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -00808209 95.93651581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -00808210 95.93651581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -00808211 95.93654633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -00808212 95.93655396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -00808213 95.93657684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -00808214 95.93657684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -00808215 95.93659973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -00808216 95.93659973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -00808217 95.93663025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -00808218 95.93663025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -00808219 95.93665314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -00808220 95.93666077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -00808221 95.93668365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -00808222 95.93668365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -00808223 95.93671417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -00808224 95.93671417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -00808225 95.93673706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -00808226 95.93673706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -00808227 95.93675995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -00808228 95.93675995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -00810037 95.96195221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d8 -00810038 95.96195984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2d8 -00810039 95.96198273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e8 -00810040 95.96198273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2e8 -00810041 95.96201324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f8 -00810042 95.96201324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf2f8 -00810043 95.96203613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf308 -00810044 95.96204376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf308 -00810045 95.96206665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf318 -00810046 95.96206665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf318 -00810047 95.96208954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf328 -00810048 95.96208954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf328 -00810049 95.96212006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf338 -00810050 95.96212769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf338 -00810051 95.96215057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf348 -00810052 95.96215057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf348 -00810053 95.96217346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf358 -00810054 95.96218109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf358 -00810055 95.96220398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf368 -00810056 95.96221161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf368 -00810057 95.96223450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf378 -00810058 95.96223450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf378 -00810059 95.96225739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf388 -00810060 95.96226501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf388 -00810061 95.96228790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf398 -00810062 95.96228790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf398 -00810063 95.96231842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a8 -00810064 95.96231842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3a8 -00810065 95.96234131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b8 -00810066 95.96234894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3b8 -00810067 95.96237183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c8 -00810068 95.96237183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3c8 -00810069 95.96240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d8 -00810070 95.96240997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3d8 -00810071 95.96242523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e8 -00810072 95.96243286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3e8 -00810073 95.96245575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f8 -00810074 95.96245575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf3f8 -00810075 95.96248627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf408 -00810076 95.96248627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf408 -00810077 95.96251678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf418 -00810078 95.96251678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf418 -00810079 95.96253967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf428 -00810080 95.96253967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xf428 -00812055 95.98977661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e8 -00812056 95.98977661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e8 -00812057 95.98979950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f8 -00812058 95.98979950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f8 -00812059 95.98982239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13208 -00812060 95.98983002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13208 -00812061 95.98985291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13218 -00812062 95.98985291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13218 -00812063 95.98988342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13228 -00812064 95.98988342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13228 -00812065 95.98990631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13238 -00812066 95.98991394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13238 -00812067 95.98993683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13248 -00812068 95.98993683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13248 -00812069 95.98996735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13258 -00812070 95.98996735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13258 -00812071 95.98999023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13268 -00812072 95.98999786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13268 -00812073 95.99002075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13278 -00812074 95.99002075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13278 -00812075 95.99005127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13288 -00812076 95.99005127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13288 -00812077 95.99008179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13298 -00812078 95.99008179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13298 -00812079 95.99010468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a8 -00812080 95.99010468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a8 -00812081 95.99012756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b8 -00812082 95.99013519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b8 -00812083 95.99016571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c8 -00812084 95.99016571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c8 -00812085 95.99018860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d8 -00812086 95.99018860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d8 -00812087 95.99021149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e8 -00812088 95.99021912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e8 -00812089 95.99024963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f8 -00812090 95.99024963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f8 -00812091 95.99027252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13308 -00812092 95.99028015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13308 -00812093 95.99029541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13318 -00812094 95.99030304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13318 -00812095 95.99032593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13328 -00812096 95.99032593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13328 -00812097 95.99035645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13338 -00812098 95.99036407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13338 -00815091 96.01721954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -00815092 96.01721954 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00815093 96.01721954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -00815094 96.01721954 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -00815095 96.01725006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -00815096 96.01725006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00815097 96.01725006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -00815098 96.01725006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -00815099 96.01727295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -00815100 96.01727295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -00815101 96.01728058 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00815102 96.01728058 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -00815103 96.01729584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -00815104 96.01730347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -00815105 96.01730347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00815106 96.01730347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -00815107 96.01733398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -00815108 96.01733398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -00815109 96.01733398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00815110 96.01733398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -00815111 96.01735687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e88 -00815112 96.01735687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e88 -00815113 96.01736450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00815114 96.01736450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -00815115 96.01737976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e98 -00815116 96.01737976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e98 -00815117 96.01738739 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00815118 96.01739502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -00815119 96.01741028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea8 -00815120 96.01741791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea8 -00815121 96.01741791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00815122 96.01741791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -00815123 96.01744080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb8 -00815124 96.01744080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb8 -00815125 96.01744843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00815126 96.01744843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -00815127 96.01747131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec8 -00815128 96.01747131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec8 -00815129 96.01747131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00815130 96.01747894 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -00815131 96.01749420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -00815132 96.01749420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -00815133 96.01750183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00815134 96.01750183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -00819497 96.04359436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00819498 96.04359436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -00819499 96.04360199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a818 -00819500 96.04360199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -00819501 96.04360199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -00819502 96.04360199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a818 -00819503 96.04363251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00819504 96.04363251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -00819505 96.04363251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a828 -00819506 96.04363251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -00819507 96.04363251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -00819508 96.04363251 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a828 -00819509 96.04365540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00819510 96.04366302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -00819511 96.04366302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a838 -00819512 96.04366302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -00819513 96.04366302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -00819514 96.04366302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a838 -00819515 96.04368591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00819516 96.04368591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -00819517 96.04368591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -00819518 96.04368591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a848 -00819519 96.04369354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -00819520 96.04369354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a848 -00819521 96.04370880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00819522 96.04371643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -00819523 96.04371643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -00819524 96.04371643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a858 -00819525 96.04371643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -00819526 96.04371643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a858 -00819527 96.04374695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00819528 96.04374695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -00819529 96.04374695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a868 -00819530 96.04374695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -00819531 96.04374695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -00819532 96.04374695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a868 -00819533 96.04376984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00819534 96.04377747 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -00819535 96.04377747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -00819536 96.04377747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a878 -00819537 96.04377747 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -00819538 96.04377747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a878 -00819539 96.04380035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00819540 96.04380035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -00825387 96.07191467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -00825388 96.07191467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -00825389 96.07191467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -00825390 96.07191467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -00825391 96.07191467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -00825392 96.07191467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -00825393 96.07194519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -00825394 96.07194519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -00825395 96.07194519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -00825396 96.07194519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -00825397 96.07194519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -00825398 96.07194519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -00825399 96.07197571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -00825400 96.07197571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -00825401 96.07197571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -00825402 96.07197571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -00825403 96.07198334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -00825404 96.07198334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -00825405 96.07199860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -00825406 96.07200623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -00825407 96.07200623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -00825408 96.07200623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -00825409 96.07200623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -00825410 96.07200623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -00825411 96.07202911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -00825412 96.07202911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -00825413 96.07202911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -00825414 96.07202911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -00825415 96.07203674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -00825416 96.07203674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -00825417 96.07205963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -00825418 96.07205963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -00825419 96.07206726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -00825420 96.07206726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -00825421 96.07206726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -00825422 96.07206726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -00825423 96.07208252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -00825424 96.07209015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -00825425 96.07209015 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -00825426 96.07209015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -00825427 96.07209778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -00825428 96.07209778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -00825429 96.07211304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -00825430 96.07211304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -00831635 96.10160828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -00831636 96.10161591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -00831637 96.10161591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -00831638 96.10161591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -00831639 96.10161591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -00831640 96.10161591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -00831641 96.10163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -00831642 96.10163879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -00831643 96.10163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -00831644 96.10163879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -00831645 96.10164642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -00831646 96.10164642 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -00831647 96.10166168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -00831648 96.10166168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -00831649 96.10166168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -00831650 96.10166931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -00831651 96.10166931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -00831652 96.10166931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -00831653 96.10169220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -00831654 96.10169220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -00831655 96.10169220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -00831656 96.10169220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -00831657 96.10169220 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -00831658 96.10169983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -00831659 96.10172272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -00831660 96.10172272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -00831661 96.10172272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -00831662 96.10172272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -00831663 96.10173035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -00831664 96.10173035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -00831665 96.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -00831666 96.10174561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -00831667 96.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -00831668 96.10174561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -00831669 96.10175323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -00831670 96.10175323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -00831671 96.10177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -00831672 96.10177612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -00831673 96.10177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -00831674 96.10177612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -00831675 96.10177612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -00831676 96.10178375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -00831677 96.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -00831678 96.10180664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -00838383 96.12788391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00838384 96.12788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -00838385 96.12788391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12388 -00838386 96.12788391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -00838387 96.12788391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -00838388 96.12788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -00838389 96.12788391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12388 -00838390 96.12789154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -00838391 96.12790680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00838392 96.12790680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -00838393 96.12791443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12398 -00838394 96.12791443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -00838395 96.12791443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -00838396 96.12791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -00838397 96.12791443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12398 -00838398 96.12791443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -00838399 96.12794495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00838400 96.12794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -00838401 96.12794495 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a8 -00838402 96.12794495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -00838403 96.12795258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -00838404 96.12795258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -00838405 96.12795258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123a8 -00838406 96.12795258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -00838407 96.12796783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00838408 96.12797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -00838409 96.12797546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b8 -00838410 96.12797546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -00838411 96.12797546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -00838412 96.12797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -00838413 96.12797546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123b8 -00838414 96.12798309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -00838415 96.12799835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00838416 96.12799835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -00838417 96.12799835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c8 -00838418 96.12799835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -00838419 96.12800598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -00838420 96.12800598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -00838421 96.12800598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123c8 -00838422 96.12800598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -00838423 96.12802887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00838424 96.12802887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -00838425 96.12802887 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x123d8 -00838426 96.12802887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -00845527 96.15361786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11578 -00845528 96.15362549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b68 -00845529 96.15362549 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -00845530 96.15362549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29788 -00845531 96.15362549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b68 -00845532 96.15362549 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -00845533 96.15362549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29788 -00845534 96.15362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11578 -00845535 96.15364838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b78 -00845536 96.15364838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -00845537 96.15364838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29798 -00845538 96.15365601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b78 -00845539 96.15365601 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -00845540 96.15365601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11588 -00845541 96.15365601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29798 -00845542 96.15365601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11588 -00845543 96.15368652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -00845544 96.15368652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -00845545 96.15368652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a8 -00845546 96.15368652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -00845547 96.15368652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -00845548 96.15368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11598 -00845549 96.15368652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a8 -00845550 96.15368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11598 -00845551 96.15370941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -00845552 96.15370941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -00845553 96.15370941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b8 -00845554 96.15371704 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -00845555 96.15371704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -00845556 96.15371704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a8 -00845557 96.15371704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b8 -00845558 96.15371704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x115a8 -00845559 96.15373993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -00845560 96.15373993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -00845561 96.15373993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c8 -00845562 96.15373993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -00845563 96.15373993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -00845564 96.15373993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c8 -00845565 96.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b8 -00845566 96.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x115b8 -00845567 96.15376282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -00845568 96.15376282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb8 -00845569 96.15377045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d8 -00845570 96.15377045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -00852767 96.17958069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d008 -00852768 96.17958832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -00852769 96.17958832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -00852770 96.17958832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19408 -00852771 96.17958832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d008 -00852772 96.17958832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -00852773 96.17958832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -00852774 96.17958832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19408 -00852775 96.17961884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d018 -00852776 96.17961884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -00852777 96.17961884 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -00852778 96.17961884 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19418 -00852779 96.17961884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d018 -00852780 96.17961884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -00852781 96.17961884 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -00852782 96.17961884 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19418 -00852783 96.17964935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d028 -00852784 96.17964935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -00852785 96.17964935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -00852786 96.17964935 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19428 -00852787 96.17964935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d028 -00852788 96.17964935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -00852789 96.17964935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -00852790 96.17964935 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19428 -00852791 96.17967224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d038 -00852792 96.17967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -00852793 96.17967224 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -00852794 96.17967224 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19438 -00852795 96.17967987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d038 -00852796 96.17967987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -00852797 96.17967987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -00852798 96.17967987 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19438 -00852799 96.17970276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d048 -00852800 96.17970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -00852801 96.17970276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -00852802 96.17970276 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19448 -00852803 96.17970276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d048 -00852804 96.17970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -00852805 96.17970276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -00852806 96.17970276 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19448 -00852807 96.17973328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d058 -00852808 96.17973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e58 -00852809 96.17973328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -00852810 96.17973328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19458 -00860591 96.20795441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -00860592 96.20796204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -00860593 96.20796204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -00860594 96.20796204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d198 -00860595 96.20796204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -00860596 96.20796204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -00860597 96.20796204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -00860598 96.20796204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d198 -00860599 96.20798492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -00860600 96.20798492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -00860601 96.20798492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -00860602 96.20798492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a8 -00860603 96.20798492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -00860604 96.20798492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -00860605 96.20799255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -00860606 96.20799255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a8 -00860607 96.20801544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -00860608 96.20801544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -00860609 96.20801544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -00860610 96.20801544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b8 -00860611 96.20801544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -00860612 96.20801544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -00860613 96.20801544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -00860614 96.20801544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b8 -00860615 96.20804596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -00860616 96.20804596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -00860617 96.20804596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -00860618 96.20804596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c8 -00860619 96.20805359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -00860620 96.20805359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -00860621 96.20805359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -00860622 96.20805359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c8 -00860623 96.20807648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -00860624 96.20807648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -00860625 96.20807648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -00860626 96.20807648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d8 -00860627 96.20807648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -00860628 96.20807648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -00860629 96.20807648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -00860630 96.20807648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d8 -00860631 96.20809937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad8 -00860632 96.20809937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -00860633 96.20809937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -00860634 96.20809937 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e8 -00916201 96.40668488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c028 -00916202 96.40669250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d58 -00916203 96.40669250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29808 -00916204 96.40669250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38368 -00916205 96.40669250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29808 -00916206 96.40669250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38368 -00916207 96.40671539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c038 -00916208 96.40672302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -00916209 96.40672302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c038 -00916210 96.40672302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -00916211 96.40672302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29818 -00916212 96.40672302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38378 -00916213 96.40672302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29818 -00916214 96.40672302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38378 -00916215 96.40674591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c048 -00916216 96.40674591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -00916217 96.40674591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c048 -00916218 96.40674591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -00916219 96.40675354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29828 -00916220 96.40675354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38388 -00916221 96.40675354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29828 -00916222 96.40675354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38388 -00916223 96.40676880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c058 -00916224 96.40676880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -00916225 96.40677643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c058 -00916226 96.40677643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -00916227 96.40677643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29838 -00916228 96.40677643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38398 -00916229 96.40678406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29838 -00916230 96.40678406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38398 -00916231 96.40680695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c068 -00916232 96.40680695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -00916233 96.40680695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c068 -00916234 96.40680695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -00916235 96.40680695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -00916236 96.40680695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a8 -00916237 96.40680695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -00916238 96.40680695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a8 -00916239 96.40682983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c078 -00916240 96.40682983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -00916241 96.40683746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c078 -00916242 96.40683746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -00916243 96.40683746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -00916244 96.40683746 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b8 -00924743 96.43758392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c678 -00924744 96.43759155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -00924745 96.43759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -00924746 96.43759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -00924747 96.43759155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c678 -00924748 96.43759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -00924749 96.43762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -00924750 96.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -00924751 96.43762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c688 -00924752 96.43762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -00924753 96.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -00924754 96.43762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -00924755 96.43762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c688 -00924756 96.43762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -00924757 96.43764496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -00924758 96.43764496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -00924759 96.43764496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c698 -00924760 96.43765259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -00924761 96.43765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -00924762 96.43765259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -00924763 96.43765259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c698 -00924764 96.43765259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -00924765 96.43767548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -00924766 96.43767548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -00924767 96.43767548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a8 -00924768 96.43767548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -00924769 96.43767548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -00924770 96.43767548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -00924771 96.43767548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a8 -00924772 96.43768311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -00924773 96.43770599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -00924774 96.43770599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -00924775 96.43770599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b8 -00924776 96.43770599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -00924777 96.43770599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -00924778 96.43770599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b8 -00924779 96.43770599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -00924780 96.43770599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -00924781 96.43773651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -00924782 96.43773651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -00924783 96.43773651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c8 -00924784 96.43773651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -00924785 96.43773651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -00924786 96.43773651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c8 -00931920 96.46575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -00931921 96.46575928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -00931922 96.46575928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31818 -00931923 96.46576691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -00931924 96.46576691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -00931925 96.46578217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -00931926 96.46578979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -00931927 96.46578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -00931928 96.46578979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -00931929 96.46578979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -00931930 96.46578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -00931931 96.46582031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -00931932 96.46582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -00931933 96.46582031 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -00931934 96.46582031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -00931935 96.46582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -00931936 96.46582031 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -00931937 96.46584320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -00931938 96.46585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -00931939 96.46585083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -00931940 96.46585083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -00931941 96.46585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -00931942 96.46585083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -00931943 96.46587372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -00931944 96.46587372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31858 -00931945 96.46587372 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -00931946 96.46588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -00931947 96.46588135 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31858 -00931948 96.46588135 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -00931949 96.46590424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -00931950 96.46590424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31868 -00931951 96.46590424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -00931952 96.46590424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -00931953 96.46590424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31868 -00931954 96.46590424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -00931955 96.46593475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -00931956 96.46593475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31878 -00931957 96.46593475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -00931958 96.46593475 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -00931959 96.46594238 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31878 -00931960 96.46594238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -00931961 96.46595764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb88 -00931962 96.46596527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb88 -00931963 96.46596527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31888 -00937947 96.49456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa28 -00937948 96.49456787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -00937949 96.49456787 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -00937950 96.49456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa28 -00937951 96.49457550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -00937952 96.49457550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -00937953 96.49459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa38 -00937954 96.49459839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -00937955 96.49459839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -00937956 96.49459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa38 -00937957 96.49459839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -00937958 96.49459839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -00937959 96.49462128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -00937960 96.49462128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -00937961 96.49462128 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -00937962 96.49462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -00937963 96.49462891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -00937964 96.49462891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -00937965 96.49465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -00937966 96.49465942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -00937967 96.49465942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -00937968 96.49465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -00937969 96.49465942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -00937970 96.49465942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -00937971 96.49468231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -00937972 96.49468231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -00937973 96.49468231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -00937974 96.49468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -00937975 96.49468994 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -00937976 96.49468994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -00937977 96.49471283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -00937978 96.49471283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -00937979 96.49471283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -00937980 96.49471283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -00937981 96.49471283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -00937982 96.49471283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -00937983 96.49473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -00937984 96.49473572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -00937985 96.49474335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -00937986 96.49474335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -00937987 96.49474335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -00937988 96.49474335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -00937989 96.49477386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa98 -00937990 96.49477386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35728 -00943412 96.52094269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43318 -00943413 96.52094269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f78 -00943414 96.52094269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b88 -00943415 96.52094269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f78 -00943416 96.52094269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b88 -00943417 96.52096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43328 -00943418 96.52096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43328 -00943419 96.52096558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -00943420 96.52096558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b98 -00943421 96.52097321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -00943422 96.52097321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b98 -00943423 96.52098846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43338 -00943424 96.52099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43338 -00943425 96.52099609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -00943426 96.52099609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba8 -00943427 96.52099609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -00943428 96.52099609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ba8 -00943429 96.52102661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43348 -00943430 96.52102661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43348 -00943431 96.52102661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -00943432 96.52102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb8 -00943433 96.52102661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -00943434 96.52102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bb8 -00943435 96.52104950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43358 -00943436 96.52105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43358 -00943437 96.52105713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb8 -00943438 96.52105713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc8 -00943439 96.52105713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb8 -00943440 96.52105713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bc8 -00943441 96.52108002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43368 -00943442 96.52108002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43368 -00943443 96.52108002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc8 -00943444 96.52108002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd8 -00943445 96.52108765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc8 -00943446 96.52108765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd8 -00943447 96.52111053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43378 -00943448 96.52111053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43378 -00943449 96.52111053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd8 -00943450 96.52111053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be8 -00943451 96.52111053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd8 -00943452 96.52111053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be8 -00943453 96.52113342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43388 -00943454 96.52114105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43388 -00943455 96.52114105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe8 -00949355 96.54926300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f8 -00949356 96.54926300 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f8 -00949357 96.54926300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce8 -00949358 96.54927063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x471f8 -00949359 96.54927063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f8 -00949360 96.54927063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce8 -00949361 96.54928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47208 -00949362 96.54929352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -00949363 96.54929352 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf8 -00949364 96.54929352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47208 -00949365 96.54929352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -00949366 96.54929352 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf8 -00949367 96.54931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47218 -00949368 96.54931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47218 -00949369 96.54931641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd08 -00949370 96.54932404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -00949371 96.54932404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd08 -00949372 96.54932404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -00949373 96.54934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47228 -00949374 96.54934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47228 -00949375 96.54934692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd18 -00949376 96.54934692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b928 -00949377 96.54934692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd18 -00949378 96.54934692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b928 -00949379 96.54937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47238 -00949380 96.54937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47238 -00949381 96.54937744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd28 -00949382 96.54938507 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b938 -00949383 96.54938507 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd28 -00949384 96.54938507 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b938 -00949385 96.54940033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47248 -00949386 96.54940033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47248 -00949387 96.54940796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd38 -00949388 96.54940796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b948 -00949389 96.54940796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd38 -00949390 96.54940796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b948 -00949391 96.54943085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47258 -00949392 96.54943085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47258 -00949393 96.54943085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd48 -00949394 96.54943085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b958 -00949395 96.54943848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd48 -00949396 96.54943848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b958 -00949397 96.54946136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47268 -00949398 96.54946136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47268 -00954987 96.57611847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad78 -00954988 96.57612610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40718 -00954989 96.57612610 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f348 -00954990 96.57612610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad78 -00954991 96.57612610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40718 -00954992 96.57612610 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f348 -00954993 96.57615662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad88 -00954994 96.57615662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40728 -00954995 96.57615662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f358 -00954996 96.57615662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad88 -00954997 96.57615662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40728 -00954998 96.57615662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f358 -00954999 96.57617950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad98 -00955000 96.57618713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad98 -00955001 96.57618713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f368 -00955002 96.57618713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40738 -00955003 96.57618713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f368 -00955004 96.57618713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40738 -00955005 96.57621002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada8 -00955006 96.57621002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ada8 -00955007 96.57621002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f378 -00955008 96.57621002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40748 -00955009 96.57621765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f378 -00955010 96.57621765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40748 -00955011 96.57624054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb8 -00955012 96.57624054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adb8 -00955013 96.57624054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f388 -00955014 96.57624054 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40758 -00955015 96.57624054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f388 -00955016 96.57624054 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40758 -00955017 96.57626343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc8 -00955018 96.57627106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4adc8 -00955019 96.57627106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f398 -00955020 96.57627106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40768 -00955021 96.57627869 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f398 -00955022 96.57627869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40768 -00955023 96.57628632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add8 -00955024 96.57629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4add8 -00955025 96.57630157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a8 -00955026 96.57630157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40778 -00955027 96.57630157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f3a8 -00955028 96.57630157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40778 -00955029 96.57631683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade8 -00955030 96.57631683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ade8 -00961115 96.60669708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f078 -00961116 96.60669708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a8 -00961117 96.60669708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f078 -00961118 96.60669708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a8 -00961119 96.60671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f088 -00961120 96.60672760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b8 -00961121 96.60672760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f088 -00961122 96.60672760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b8 -00961123 96.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f098 -00961124 96.60675049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c8 -00961125 96.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f098 -00961126 96.60675812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c8 -00961127 96.60678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a8 -00961128 96.60678101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d8 -00961129 96.60678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a8 -00961130 96.60678101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d8 -00961131 96.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -00961132 96.60681152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e8 -00961133 96.60681915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -00961134 96.60681915 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e8 -00961135 96.60684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -00961136 96.60684204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -00961137 96.60684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -00961138 96.60684204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -00961139 96.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -00961140 96.60687256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -00961141 96.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -00961142 96.60687256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -00961143 96.60689545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -00961144 96.60689545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -00961145 96.60690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -00961146 96.60690308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -00961147 96.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -00961148 96.60693359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -00961149 96.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -00961150 96.60693359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -00961151 96.60695648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -00961152 96.60695648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -00961153 96.60696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -00961154 96.60696411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -00961155 96.60698700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -00961156 96.60698700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -00961157 96.60698700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -00961158 96.60698700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -00964701 96.63228607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52808 -00964702 96.63228607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48228 -00964703 96.63229370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52808 -00964704 96.63229370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48228 -00964705 96.63231659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52818 -00964706 96.63231659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48238 -00964707 96.63231659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52818 -00964708 96.63231659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48238 -00964709 96.63234711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52828 -00964710 96.63235474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48248 -00964711 96.63235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52828 -00964712 96.63235474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48248 -00964713 96.63237762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52838 -00964714 96.63237762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52838 -00964715 96.63237762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48258 -00964716 96.63238525 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48258 -00964717 96.63240051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52848 -00964718 96.63240814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48268 -00964719 96.63240814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52848 -00964720 96.63240814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48268 -00964721 96.63243866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52858 -00964722 96.63243866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48278 -00964723 96.63243866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52858 -00964724 96.63243866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48278 -00964725 96.63246155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48288 -00964726 96.63246155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -00964727 96.63246918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48288 -00964728 96.63246918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -00964729 96.63249207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48298 -00964730 96.63249207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -00964731 96.63249207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48298 -00964732 96.63249207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -00964733 96.63251495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a8 -00964734 96.63251495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482a8 -00964735 96.63251495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -00964736 96.63252258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -00964737 96.63254547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b8 -00964738 96.63255310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482b8 -00964739 96.63255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -00964740 96.63255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -00964741 96.63257599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c8 -00964742 96.63257599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x482c8 -00964743 96.63257599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -00964744 96.63258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -00967213 96.66484833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb78 -00967214 96.66484833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb78 -00967215 96.66487122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb88 -00967216 96.66487122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb88 -00967217 96.66489410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb98 -00967218 96.66490173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb98 -00967219 96.66492462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba8 -00967220 96.66492462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cba8 -00967221 96.66495514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb8 -00967222 96.66495514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbb8 -00967223 96.66497803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc8 -00967224 96.66498566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbc8 -00967225 96.66500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd8 -00967226 96.66500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbd8 -00967227 96.66503906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe8 -00967228 96.66503906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbe8 -00967229 96.66506195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf8 -00967230 96.66506958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cbf8 -00967231 96.66509247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc08 -00967232 96.66509247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc08 -00967233 96.66512299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc18 -00967234 96.66512299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc18 -00967235 96.66515350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc28 -00967236 96.66515350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc28 -00967237 96.66517639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc38 -00967238 96.66517639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc38 -00967239 96.66520691 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc48 -00967240 96.66520691 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc48 -00967241 96.66523743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc58 -00967242 96.66523743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc58 -00967243 96.66526031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc68 -00967244 96.66526031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc68 -00967245 96.66528320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc78 -00967246 96.66529083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc78 -00967247 96.66532135 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc88 -00967248 96.66532135 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc88 -00967249 96.66534424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc98 -00967250 96.66535187 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc98 -00967251 96.66537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca8 -00967252 96.66537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca8 -00967253 96.66540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb8 -00967254 96.66540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb8 -00967255 96.66542816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc8 -00967256 96.66543579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc8 -00969673 96.69927979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -00969674 96.69928741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -00969675 96.69931793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -00969676 96.69931793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -00969677 96.69934082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -00969678 96.69934845 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -00969679 96.69937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -00969680 96.69937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -00969681 96.69940186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -00969682 96.69940186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -00969683 96.69942474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -00969684 96.69943237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -00969685 96.69945526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -00969686 96.69945526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -00969687 96.69947815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -00969688 96.69947815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -00969689 96.69950867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d8 -00969690 96.69951630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d8 -00969691 96.69953918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e8 -00969692 96.69953918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e8 -00969693 96.69956207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f8 -00969694 96.69956970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f8 -00969695 96.69959259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -00969696 96.69960022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -00969697 96.69962311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -00969698 96.69962311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -00969699 96.69964600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -00969700 96.69965363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -00969701 96.69967651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -00969702 96.69967651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -00969703 96.69970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -00969704 96.69970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -00969705 96.69972992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -00969706 96.69973755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -00969707 96.69976044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -00969708 96.69976044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -00969709 96.69979095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51978 -00969710 96.69979858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51978 -00969711 96.69982147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -00969712 96.69982147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -00969713 96.69984436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -00969714 96.69985199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -00969715 96.69987488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -00969716 96.69987488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -00970355 97.48077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -00970356 97.48087311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00970357 97.48087311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -00970358 97.48088074 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -00970359 97.48091125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00970360 97.48091125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -00970361 97.48094940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00970362 97.48094940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -00970363 97.48097229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00970364 97.48097992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -00970365 97.48100281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00970366 97.48100281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -00970367 97.48103333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00970368 97.48103333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -00970369 97.48106384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00970370 97.48106384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -00970371 97.48108673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00970372 97.48108673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -00970373 97.48111725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00970374 97.48111725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -00970375 97.48114777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00970376 97.48114777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -00970377 97.48117065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00970378 97.48117065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -00970379 97.48119354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00970380 97.48120117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -00970381 97.48123169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00970382 97.48123932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -00970383 97.48126984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00970384 97.48126984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -00970385 97.48129272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00970386 97.48130035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -00970387 97.48132324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00970388 97.48132324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -00970389 97.48135376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00970390 97.48135376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -00970391 97.48139191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00970392 97.48139191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -00970393 97.48142242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00970394 97.48143005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -00970395 97.48145294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00970396 97.48145294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -00970397 97.48147583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00970398 97.48148346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -00970399 97.48151398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00970400 97.48151398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -00970401 97.48155212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00970402 97.48155212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -00970403 97.48157501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00970404 97.48158264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -00970405 97.48160553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00970406 97.48160553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -00970407 97.48162842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00970408 97.48162842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -00970409 97.48165894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00970410 97.48166656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -00970411 97.48168945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00970412 97.48168945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -00970413 97.48171234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00970414 97.48171997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -00970415 97.48175049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00970416 97.48175049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -00970417 97.48177338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00970418 97.48177338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -00970419 97.48179626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00970420 97.48180389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -00970421 97.48182678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00970422 97.48182678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -00970423 97.48185730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00970424 97.48185730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -00970425 97.48188019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00970426 97.48188782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -00970427 97.48191071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00970428 97.48191071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -00970429 97.48194122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00970430 97.48194885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -00970431 97.48197174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00970432 97.48197174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -00970433 97.48199463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00970434 97.48199463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -00970435 97.48202515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00970436 97.48202515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -00970437 97.48205566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00970438 97.48205566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -00970439 97.48205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -00970440 97.48207855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00970441 97.48208618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -00970442 97.48210907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00970443 97.48210907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -00970444 97.48213959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00970445 97.48213959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -00970446 97.48216248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00970447 97.48217010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -00970448 97.48219299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00970449 97.48219299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -00970450 97.48222351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00970451 97.48222351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -00970452 97.48225403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00970453 97.48225403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -00970454 97.48227692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00970455 97.48227692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -00970456 97.48230743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00970457 97.48230743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -00970458 97.48233795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00970459 97.48233795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -00970460 97.48236084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00970461 97.48236847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -00970462 97.48239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00970463 97.48239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -00970464 97.48242188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00970465 97.48242188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -00970466 97.48244476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00970467 97.48245239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -00970468 97.48247528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00970469 97.48247528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -00970470 97.48250580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00970471 97.48250580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -00970472 97.48253632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00970473 97.48253632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -00970474 97.48255920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00970475 97.48255920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -00970476 97.48258209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00970477 97.48258972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -00970478 97.48262024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00970479 97.48262024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -00970480 97.48264313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00970481 97.48264313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -00970482 97.48268890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00970483 97.48269653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -00970484 97.48271942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00970485 97.48271942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -00970486 97.48274231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00970487 97.48274231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -00970488 97.48277283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00970489 97.48278046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -00970490 97.48280334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00970491 97.48280334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -00970492 97.48282623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00970493 97.48283386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -00970494 97.48286438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00970495 97.48286438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -00970496 97.48288727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00970497 97.48288727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -00970498 97.48291016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00970499 97.48291779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -00970500 97.48294067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00970501 97.48294067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -00970502 97.48297119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00970503 97.48297119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -00970504 97.48299408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00970505 97.48300171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -00970506 97.48302460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00970507 97.48302460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -00970508 97.48305511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00970509 97.48306274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -00970510 97.48308563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00970511 97.48308563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -00970512 97.48310852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00970513 97.48310852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -00970514 97.48313904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00970515 97.48313904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -00970516 97.48316956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00970517 97.48316956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -00970518 97.48319244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00970519 97.48319244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -00970520 97.48322296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00970521 97.48322296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -00970522 97.48325348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00970523 97.48325348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -00970524 97.48327637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00970525 97.48328400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -00970526 97.48330688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00970527 97.48330688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -00970528 97.48333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00970529 97.48333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -00970530 97.48336029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00970531 97.48336792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -00970532 97.48339081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00970533 97.48339081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -00970534 97.48342133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00970535 97.48342133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -00970536 97.48345184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00970537 97.48345184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -00970538 97.48347473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00970539 97.48347473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -00970540 97.48349762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00970541 97.48350525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -00970542 97.48353577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00970543 97.48353577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -00970544 97.48355865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00970545 97.48356628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -00970546 97.48358917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00970547 97.48358917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -00970548 97.48361969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00970549 97.48361969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -00970550 97.48364258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00970551 97.48365021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -00970552 97.48367310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00970553 97.48367310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -00970554 97.48369598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00970555 97.48369598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -00970556 97.48372650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00970557 97.48373413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -00970558 97.48375702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00970559 97.48375702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -00970560 97.48377991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00970561 97.48378754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -00970562 97.48381805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00970563 97.48381805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -00970564 97.48384094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00970565 97.48384094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -00970566 97.48386383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00970567 97.48387146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -00970568 97.48389435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00970569 97.48389435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -00970570 97.48392487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00970571 97.48392487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -00970572 97.48394775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00970573 97.48395538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -00970574 97.48397827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00970575 97.48397827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -00970576 97.48400879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00970577 97.48401642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -00970578 97.48403931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00970579 97.48403931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -00970580 97.48406219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00970581 97.48406219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -00970582 97.48409271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00970583 97.48409271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -00970584 97.48412323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00970585 97.48412323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -00970586 97.48414612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00970587 97.48414612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -00970588 97.48416901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00970589 97.48417664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -00970590 97.48420715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00970591 97.48420715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -00970592 97.48423004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00970593 97.48423767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -00970594 97.48426056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00970595 97.48426056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -00970596 97.48429108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00970597 97.48429108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -00970598 97.48431396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00970599 97.48432159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -00970600 97.48434448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00970601 97.48434448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -00970602 97.48437500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00970603 97.48437500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -00970604 97.48440552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00970605 97.48440552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -00970606 97.48442841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00970607 97.48442841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -00970608 97.48445129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00970609 97.48445892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -00970610 97.48448944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00970611 97.48448944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -00970612 97.48451233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00970613 97.48451996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -00970614 97.48454285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00970615 97.48454285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -00970616 97.48457336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00970617 97.48457336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -00970618 97.48459625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00970619 97.48460388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -00970620 97.48462677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00970621 97.48462677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -00970622 97.48464966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00970623 97.48465729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -00970624 97.48468781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00970625 97.48468781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -00970626 97.48471069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00970627 97.48471069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -00970628 97.48473358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00970629 97.48474121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -00970630 97.48477173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00970631 97.48477173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -00970632 97.48479462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00970633 97.48479462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -00970634 97.48481750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00970635 97.48482513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -00970636 97.48484802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00970637 97.48484802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -00970638 97.48487854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00970639 97.48488617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -00970640 97.48490906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00970641 97.48490906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -00970642 97.48493195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00970643 97.48493195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -00970644 97.48496246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00970645 97.48497009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -00970646 97.48499298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00970647 97.48499298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -00970648 97.48501587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00970649 97.48501587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -00970650 97.48504639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00970651 97.48504639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -00970652 97.48507690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00970653 97.48507690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -00970654 97.48509979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00970655 97.48510742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -00970656 97.48513031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00970657 97.48513031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -00970658 97.48516083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00970659 97.48516083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -00970660 97.48518372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00970661 97.48519135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -00970662 97.48521423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00970663 97.48521423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -00970664 97.48524475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00970665 97.48524475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -00970666 97.48527527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00970667 97.48527527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -00970668 97.48529816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00970669 97.48530579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -00970670 97.48532867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00970671 97.48532867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -00970672 97.48535919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00970673 97.48535919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -00970674 97.48538208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00970675 97.48538971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -00970676 97.48541260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00970677 97.48541260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -00970678 97.48550415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00970679 97.48550415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -00970680 97.48552704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00970681 97.48553467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -00970682 97.48556519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00970683 97.48556519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -00970684 97.48558807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00970685 97.48558807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -00970686 97.48561096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00970687 97.48561859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -00970688 97.48564148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00970689 97.48564148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -00970690 97.48567200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00970691 97.48567963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -00970692 97.48570251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00970693 97.48570251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -00970694 97.48572540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00970695 97.48572540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -00970696 97.48575592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00970697 97.48576355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -00970698 97.48578644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00970699 97.48578644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -00970700 97.48580933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00970701 97.48580933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -00970702 97.48583984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00970703 97.48583984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -00970704 97.48587036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00970705 97.48587036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -00970706 97.48589325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00970707 97.48590088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -00970708 97.48592377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00970709 97.48592377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -00970710 97.48595428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00970711 97.48595428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -00970712 97.48597717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00970713 97.48598480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -00970714 97.48600769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00970715 97.48600769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -00970716 97.48603821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00970717 97.48603821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -00970718 97.48606873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00970719 97.48606873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -00970720 97.48609161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00970721 97.48609161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -00970722 97.48612213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00970723 97.48612213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -00970724 97.48615265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00970725 97.48615265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -00970726 97.48617554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00970727 97.48618317 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -00970728 97.48620605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00970729 97.48620605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -00970730 97.48623657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00970731 97.48623657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -00970732 97.48626709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00970733 97.48626709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -00970734 97.48628998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00970735 97.48628998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -00970736 97.48632050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00970737 97.48632050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -00970738 97.48635101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00970739 97.48635101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -00970740 97.48637390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00970741 97.48637390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -00970742 97.48639679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00970743 97.48640442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -00970744 97.48643494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00970745 97.48643494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -00970746 97.48645782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00970747 97.48646545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -00970748 97.48648834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00970749 97.48648834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -00970750 97.48651886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00970751 97.48651886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -00970752 97.48654175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00970753 97.48654938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -00970754 97.48657227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00970755 97.48657227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -00970756 97.48659515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00970757 97.48660278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -00970758 97.48663330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00970759 97.48663330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -00970760 97.48665619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00970761 97.48665619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -00970762 97.48667908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00970763 97.48668671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -00970764 97.48671722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00970765 97.48671722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -00970766 97.48674011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00970767 97.48674774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -00970768 97.48677063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00970769 97.48677063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -00970770 97.48679352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00970771 97.48680115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -00970772 97.48683167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00970773 97.48683167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -00970774 97.48686218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00970775 97.48686981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -00970776 97.48690033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00970777 97.48690796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -00970778 97.48693848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00970779 97.48693848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -00970780 97.48696136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00970781 97.48696136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -00970782 97.48699188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00970783 97.48699188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -00970784 97.48702240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00970785 97.48702240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -00970786 97.48704529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00970787 97.48705292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -00970788 97.48707581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00970789 97.48707581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -00970790 97.48710632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00970791 97.48710632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -00970792 97.48712921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00970793 97.48713684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -00970794 97.48715973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00970795 97.48715973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -00970796 97.48719025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00970797 97.48719025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -00970798 97.48722076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00970799 97.48722076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -00970800 97.48724365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00970801 97.48724365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -00970802 97.48727417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00970803 97.48727417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -00970804 97.48730469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00970805 97.48730469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -00970806 97.48732758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00970807 97.48733521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -00970808 97.48735809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00970809 97.48735809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -00970810 97.48738861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00970811 97.48738861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -00970812 97.48742676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00970813 97.48742676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -00970814 97.48746490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00970815 97.48746490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -00970816 97.48749542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00970817 97.48749542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -00970818 97.48751831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00970819 97.48751831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -00970820 97.48754883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00970821 97.48754883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -00970822 97.48757935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00970823 97.48757935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -00970824 97.48760223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00970825 97.48760223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -00970826 97.48762512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00970827 97.48763275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -00970828 97.48767090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00970829 97.48767090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -00970830 97.48770142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00970831 97.48770142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -00970832 97.48772430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00970833 97.48772430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -00970834 97.48774719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00970835 97.48775482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -00970836 97.48778534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00970837 97.48778534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -00970838 97.48780823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00970839 97.48780823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -00970840 97.48783112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00970841 97.48783875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -00970842 97.48786926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00970843 97.48786926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -00970844 97.48789215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00970845 97.48789978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -00970846 97.48792267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00970847 97.48792267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -00970848 97.48794556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00970849 97.48794556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -00970850 97.48798370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00970851 97.48798370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -00970852 97.48801422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00970853 97.48802185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -00970854 97.48804474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00970855 97.48804474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -00970856 97.48806763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00970857 97.48807526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -00970858 97.48810577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00970859 97.48810577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -00970860 97.48812866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00970861 97.48812866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -00970862 97.48815155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00970863 97.48815918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -00970864 97.48818207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00970865 97.48818207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -00970866 97.48821259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00970867 97.48822021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -00970868 97.48825073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00970869 97.48825073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -00970870 97.48828125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00970871 97.48828125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -00970872 97.48830414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00970873 97.48830414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -00970874 97.48833466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00970875 97.48834229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -00970876 97.48836517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00970877 97.48836517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -00970878 97.48838806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00970879 97.48839569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -00970880 97.48842621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00970881 97.48842621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -00970882 97.48844910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00970883 97.48844910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -00970884 97.48847198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00970885 97.48847961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -00970886 97.48850250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00970887 97.48850250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -00970888 97.48853302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00970889 97.48854065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -00970890 97.48856354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00970891 97.48856354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -00970892 97.48858643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00970893 97.48858643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -00970894 97.48861694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00970895 97.48862457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -00970896 97.48864746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00970897 97.48864746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -00970898 97.48867035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00970899 97.48867798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -00970900 97.48870087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00970901 97.48870087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -00970902 97.48873138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00970903 97.48873138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -00970904 97.48875427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00970905 97.48876190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -00970906 97.48878479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00970907 97.48878479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -00970908 97.48881531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00970909 97.48881531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -00970910 97.48883820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00970911 97.48884583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -00970912 97.48886871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00970913 97.48886871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -00970914 97.48889923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00970915 97.48889923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -00970916 97.48892975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00970917 97.48892975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -00970918 97.48895264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00970919 97.48895264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -00970920 97.48897552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00970921 97.48898315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -00970922 97.48901367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00970923 97.48901367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -00970924 97.48903656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00970925 97.48903656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -00970926 97.48905945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00970927 97.48906708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -00970928 97.48909760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00970929 97.48909760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -00970930 97.48912048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00970931 97.48912811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -00970932 97.48915100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00970933 97.48915100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -00970934 97.48917389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00970935 97.48917389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -00970936 97.48920441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00970937 97.48921204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -00970938 97.48923492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00970939 97.48923492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -00970940 97.48925781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00970941 97.48926544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -00972743 97.51507568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -00972744 97.51507568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -00972745 97.51510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -00972746 97.51511383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -00972747 97.51513672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -00972748 97.51513672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -00972749 97.51515961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -00972750 97.51515961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -00972751 97.51519012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -00972752 97.51519012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -00972753 97.51522064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -00972754 97.51522064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -00972755 97.51524353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00972756 97.51525116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -00972757 97.51527405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00972758 97.51527405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -00972759 97.51531219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00972760 97.51531219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -00972761 97.51535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00972762 97.51535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -00972763 97.51538086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00972764 97.51538086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -00972765 97.51540375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00972766 97.51540375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -00972767 97.51542664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00972768 97.51543427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -00972769 97.51546478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00972770 97.51546478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -00972771 97.51548767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00972772 97.51548767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -00972773 97.51551056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00972774 97.51551819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -00972775 97.51554871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00972776 97.51555634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -00972777 97.51558685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -00972778 97.51558685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -00972779 97.51561737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -00972780 97.51562500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -00972781 97.51566315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -00972782 97.51566315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -00972783 97.51568604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -00972784 97.51569366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -00972785 97.51571655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -00972786 97.51571655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -00975380 97.55307770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -00975381 97.55307770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -00975382 97.55310059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -00975383 97.55310059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -00975384 97.55312347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -00975385 97.55313110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -00975386 97.55316162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -00975387 97.55316162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -00975388 97.55318451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -00975389 97.55319214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -00975390 97.55321503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -00975391 97.55321503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -00975392 97.55323792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -00975393 97.55323792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -00975394 97.55326843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -00975395 97.55327606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -00975396 97.55329895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -00975397 97.55329895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -00975398 97.55332184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -00975399 97.55332947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -00975400 97.55335999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -00975401 97.55335999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -00975402 97.55338287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -00975403 97.55338287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -00975404 97.55340576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -00975405 97.55341339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -00975406 97.55343628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -00975407 97.55343628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -00975408 97.55346680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -00975409 97.55346680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -00975410 97.55348969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -00975411 97.55349731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -00975412 97.55352020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -00975413 97.55352020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -00975414 97.55355072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -00975415 97.55355072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -00975416 97.55357361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -00975417 97.55358124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -00975418 97.55360413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -00975419 97.55360413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -00975420 97.55363464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -00975421 97.55363464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -00975422 97.55366516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -00975423 97.55366516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -00977741 97.58712006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -00977742 97.58715057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -00977743 97.58715057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -00977744 97.58717346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -00977745 97.58717346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -00977746 97.58720398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -00977747 97.58720398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -00977748 97.58723450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -00977749 97.58723450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -00977750 97.58725739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -00977751 97.58726501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -00977752 97.58728790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -00977753 97.58728790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -00977754 97.58731842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -00977755 97.58731842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -00977756 97.58734131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -00977757 97.58734894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -00977758 97.58737183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -00977759 97.58737183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -00977760 97.58739471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -00977761 97.58740234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -00977762 97.58743286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -00977763 97.58743286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -00977764 97.58745575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf748 -00977765 97.58745575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf748 -00977766 97.58747864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf758 -00977767 97.58748627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf758 -00977768 97.58751678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf768 -00977769 97.58751678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf768 -00977770 97.58753967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf778 -00977771 97.58753967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf778 -00977772 97.58756256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf788 -00977773 97.58757019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf788 -00977774 97.58759308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf798 -00977775 97.58759308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf798 -00977776 97.58762360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a8 -00977777 97.58762360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7a8 -00977778 97.58764648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b8 -00977779 97.58765411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7b8 -00977780 97.58767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c8 -00977781 97.58767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7c8 -00977782 97.58770752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d8 -00977783 97.58771515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7d8 -00977784 97.58773804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xf7e8 -00979834 97.61711884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -00979835 97.61712646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -00979836 97.61714935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -00979837 97.61714935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -00979838 97.61717987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -00979839 97.61718750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -00979840 97.61721039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -00979841 97.61721039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -00979842 97.61723328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -00979843 97.61723328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -00979844 97.61726379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -00979845 97.61726379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -00979846 97.61729431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -00979847 97.61729431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -00979848 97.61731720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -00979849 97.61731720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -00979850 97.61734772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -00979851 97.61734772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -00979852 97.61737823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -00979853 97.61737823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -00979854 97.61740112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -00979855 97.61740875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -00979856 97.61743164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -00979857 97.61743164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -00979858 97.61746216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -00979859 97.61746216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -00979860 97.61748505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -00979861 97.61749268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -00979862 97.61751556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -00979863 97.61751556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -00979864 97.61754608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -00979865 97.61754608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -00979866 97.61756897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -00979867 97.61757660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -00979868 97.61759949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -00979869 97.61759949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -00979870 97.61762238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -00979871 97.61763000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -00979872 97.61766052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -00979873 97.61766052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -00979874 97.61768341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -00979875 97.61768341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -00979876 97.61770630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -00979877 97.61771393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -00981820 97.64577484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -00981821 97.64578247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -00981822 97.64580536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -00981823 97.64580536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -00981824 97.64582825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -00981825 97.64583588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -00981826 97.64585876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -00981827 97.64585876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -00981828 97.64588928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -00981829 97.64588928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -00981830 97.64591217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -00981831 97.64591980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -00981832 97.64594269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -00981833 97.64594269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -00981834 97.64597321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -00981835 97.64597321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -00981836 97.64599609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -00981837 97.64600372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -00981838 97.64602661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -00981839 97.64602661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -00981840 97.64605713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -00981841 97.64605713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -00981842 97.64608765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -00981843 97.64608765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -00981844 97.64611053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -00981845 97.64611053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -00981846 97.64614105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -00981847 97.64614105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -00981848 97.64617157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -00981849 97.64617157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -00981850 97.64619446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -00981851 97.64620209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -00981852 97.64622498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -00981853 97.64622498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -00981854 97.64625549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -00981855 97.64625549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -00981856 97.64627838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -00981857 97.64628601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -00981858 97.64630890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17738 -00981859 97.64630890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17738 -00981860 97.64633942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17748 -00981861 97.64633942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17748 -00981862 97.64636230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17758 -00981863 97.64636993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17758 -00983981 97.67660522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b988 -00983982 97.67662811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b998 -00983983 97.67662811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b998 -00983984 97.67665100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a8 -00983985 97.67665100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a8 -00983986 97.67668152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b8 -00983987 97.67668152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b8 -00983988 97.67671204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c8 -00983989 97.67671204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9c8 -00983990 97.67673492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d8 -00983991 97.67673492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9d8 -00983992 97.67675781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e8 -00983993 97.67676544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9e8 -00983994 97.67679596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f8 -00983995 97.67679596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9f8 -00983996 97.67681885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba08 -00983997 97.67682648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba08 -00983998 97.67684937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba18 -00983999 97.67684937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba18 -00984000 97.67687988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba28 -00984001 97.67687988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba28 -00984002 97.67690277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba38 -00984003 97.67691040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba38 -00984004 97.67693329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba48 -00984005 97.67693329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba48 -00984006 97.67696381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba58 -00984007 97.67696381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba58 -00984008 97.67699432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba68 -00984009 97.67699432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba68 -00984010 97.67701721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba78 -00984011 97.67701721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba78 -00984012 97.67704010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba88 -00984013 97.67704773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba88 -00984014 97.67707825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba98 -00984015 97.67707825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba98 -00984016 97.67710114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa8 -00984017 97.67710114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1baa8 -00984018 97.67713165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab8 -00984019 97.67713165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bab8 -00984020 97.67716217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac8 -00984021 97.67716217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bac8 -00984022 97.67718506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad8 -00984023 97.67719269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bad8 -00984024 97.67721558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bae8 -00985734 97.70325470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -00985735 97.70326233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -00985736 97.70330048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f068 -00985737 97.70330048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f068 -00985738 97.70333862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f078 -00985739 97.70334625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f078 -00985740 97.70337677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f088 -00985741 97.70338440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f088 -00985742 97.70341492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f098 -00985743 97.70342255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f098 -00985744 97.70345306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a8 -00985745 97.70345306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0a8 -00985746 97.70347595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b8 -00985747 97.70348358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b8 -00985748 97.70350647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c8 -00985749 97.70350647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c8 -00985750 97.70354462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d8 -00985751 97.70355225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d8 -00985752 97.70358276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e8 -00985753 97.70358276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e8 -00985754 97.70361328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f8 -00985755 97.70362091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f8 -00985756 97.70365906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f108 -00985757 97.70366669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f108 -00985758 97.70369720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -00985759 97.70369720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -00985760 97.70372772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -00985761 97.70372772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -00985762 97.70375824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -00985763 97.70376587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -00985764 97.70379639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -00985765 97.70380402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -00985766 97.70382690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00985767 97.70383453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -00985768 97.70386505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00985769 97.70387268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -00985770 97.70389557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00985771 97.70390320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -00985772 97.70393372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -00985773 97.70394135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -00985774 97.70397949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -00985775 97.70398712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -00985776 97.70401764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -00985777 97.70402527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -00999981 97.90475464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad88 -00999982 97.90475464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad88 -00999983 97.90477753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad98 -00999984 97.90477753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad98 -00999985 97.90480804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada8 -00999986 97.90480804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ada8 -00999987 97.90483093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb8 -00999988 97.90483856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adb8 -00999989 97.90485382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc8 -00999990 97.90486145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adc8 -00999991 97.90489197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add8 -00999992 97.90489197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3add8 -00999993 97.90491486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade8 -00999994 97.90491486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ade8 -00999995 97.90493774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf8 -00999996 97.90493774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3adf8 -00999997 97.90497589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae08 -00999998 97.90497589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae08 -00999999 97.90499878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae18 -01000000 97.90499878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae18 -01000001 97.90502167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae28 -01000002 97.90502930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae28 -01000003 97.90505981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae38 -01000004 97.90505981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae38 -01000005 97.90508270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae48 -01000006 97.90509033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae48 -01000007 97.90511322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae58 -01000008 97.90511322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae58 -01000009 97.90513611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae68 -01000010 97.90513611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae68 -01000011 97.90516663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae78 -01000012 97.90517426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae78 -01000013 97.90519714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae88 -01000014 97.90519714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae88 -01000015 97.90522003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae98 -01000016 97.90522003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae98 -01000017 97.90525055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea8 -01000018 97.90525818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea8 -01000019 97.90528107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb8 -01000020 97.90528107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb8 -01000021 97.90530396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec8 -01000022 97.90531158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec8 -01000023 97.90533447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -01000024 97.90533447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -01002047 97.93436432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -01002048 97.93437195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -01002049 97.93439484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -01002050 97.93440247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -01002051 97.93442535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee38 -01002052 97.93442535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee38 -01002053 97.93444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee48 -01002054 97.93444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee48 -01002055 97.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee58 -01002056 97.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee58 -01002057 97.93450165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee68 -01002058 97.93450165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee68 -01002059 97.93452454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee78 -01002060 97.93453217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee78 -01002061 97.93455505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee88 -01002062 97.93456268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee88 -01002063 97.93458557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee98 -01002064 97.93458557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee98 -01002065 97.93460846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea8 -01002066 97.93460846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eea8 -01002067 97.93463898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb8 -01002068 97.93463898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eeb8 -01002069 97.93466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec8 -01002070 97.93466949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eec8 -01002071 97.93468475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed8 -01002072 97.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eed8 -01002073 97.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee8 -01002074 97.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eee8 -01002075 97.93474579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef8 -01002076 97.93474579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eef8 -01002077 97.93476868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef08 -01002078 97.93476868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef08 -01002079 97.93479919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef18 -01002080 97.93479919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef18 -01002081 97.93482208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef28 -01002082 97.93482971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef28 -01002083 97.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef38 -01002084 97.93485260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef38 -01002085 97.93488312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef48 -01002086 97.93488312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef48 -01002087 97.93490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef58 -01002088 97.93490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef58 -01002089 97.93492889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef68 -01002090 97.93492889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef68 -01004047 97.96273041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -01004048 97.96273041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -01004049 97.96276093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -01004050 97.96276093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -01004051 97.96278381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -01004052 97.96278381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -01004053 97.96280670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -01004054 97.96281433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -01004055 97.96283722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -01004056 97.96284485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -01004057 97.96286774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -01004058 97.96286774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -01004059 97.96289063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -01004060 97.96289063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -01004061 97.96292114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d08 -01004062 97.96292114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d08 -01004063 97.96295166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d18 -01004064 97.96295166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d18 -01004065 97.96297455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d28 -01004066 97.96298218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d28 -01004067 97.96300507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d38 -01004068 97.96300507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d38 -01004069 97.96303558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d48 -01004070 97.96303558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d48 -01004071 97.96305847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d58 -01004072 97.96306610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d58 -01004073 97.96308899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d68 -01004074 97.96309662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d68 -01004075 97.96311951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d78 -01004076 97.96311951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d78 -01004077 97.96315002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d88 -01004078 97.96315765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d88 -01004079 97.96318054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d98 -01004080 97.96318054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d98 -01004081 97.96320343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da8 -01004082 97.96321106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da8 -01004083 97.96324158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db8 -01004084 97.96324158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db8 -01004085 97.96326447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc8 -01004086 97.96326447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc8 -01004087 97.96328735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd8 -01004088 97.96329498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd8 -01004089 97.96331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de8 -01004090 97.96331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de8 -01006091 97.99149323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01006092 97.99149323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01006093 97.99152374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01006094 97.99152374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01006095 97.99154663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01006096 97.99155426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01006097 97.99157715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01006098 97.99157715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01006099 97.99160004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01006100 97.99160004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01006101 97.99163055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01006102 97.99163055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01006103 97.99165344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01006104 97.99166107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01006105 97.99167633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01006106 97.99168396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01006107 97.99171448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01006108 97.99171448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01006109 97.99173737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01006110 97.99173737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01006111 97.99176788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01006112 97.99176788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01006113 97.99179840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01006114 97.99179840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01006115 97.99182129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01006116 97.99182892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01006117 97.99185181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -01006118 97.99185181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -01006119 97.99187469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d58 -01006120 97.99187469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d58 -01006121 97.99190521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d68 -01006122 97.99191284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d68 -01006123 97.99193573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d78 -01006124 97.99193573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d78 -01006125 97.99195862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d88 -01006126 97.99196625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d88 -01006127 97.99199677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d98 -01006128 97.99199677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d98 -01006129 97.99201965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da8 -01006130 97.99201965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da8 -01006131 97.99204254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db8 -01006132 97.99205017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db8 -01006133 97.99207306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc8 -01006134 97.99207306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc8 -01008071 98.01969910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -01008072 98.01969910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -01008073 98.01972198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -01008074 98.01972198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -01008075 98.01975250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -01008076 98.01976013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -01008077 98.01977539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01008078 98.01978302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01008079 98.01980591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01008080 98.01980591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01008081 98.01983643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01008082 98.01983643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01008083 98.01985931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01008084 98.01985931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01008085 98.01988983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01008086 98.01988983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01008087 98.01992035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01008088 98.01992035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01008089 98.01995087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01008090 98.01995087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01008091 98.01997375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01008092 98.01998138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01008093 98.02000427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01008094 98.02000427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01008095 98.02003479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01008096 98.02003479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01008097 98.02006531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01008098 98.02006531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01008099 98.02008820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01008100 98.02009583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01008101 98.02011871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01008102 98.02011871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01008103 98.02014923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01008104 98.02015686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01008105 98.02017975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01008106 98.02017975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01008107 98.02020264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01008108 98.02021027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01008109 98.02023315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01008110 98.02023315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01008111 98.02026367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01008112 98.02026367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01008113 98.02028656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01008114 98.02028656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01010571 98.05558777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f878 -01010572 98.05558777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f878 -01010573 98.05561066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f888 -01010574 98.05561829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f888 -01010575 98.05564117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f898 -01010576 98.05564117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f898 -01010577 98.05566406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a8 -01010578 98.05567169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a8 -01010579 98.05570221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b8 -01010580 98.05570221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b8 -01010581 98.05572510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c8 -01010582 98.05572510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c8 -01010583 98.05574799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d8 -01010584 98.05575562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d8 -01010585 98.05578613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e8 -01010586 98.05578613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e8 -01010587 98.05580902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f8 -01010588 98.05580902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f8 -01010589 98.05583191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f908 -01010590 98.05583954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f908 -01010591 98.05586243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f918 -01010592 98.05586243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f918 -01010593 98.05589294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f928 -01010594 98.05590057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f928 -01010595 98.05592346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f938 -01010596 98.05592346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f938 -01010597 98.05594635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f948 -01010598 98.05595398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f948 -01010599 98.05598450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f958 -01010600 98.05598450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f958 -01010601 98.05600739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f968 -01010602 98.05600739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f968 -01010603 98.05603027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f978 -01010604 98.05603790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f978 -01010605 98.05606079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f988 -01010606 98.05606079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f988 -01010607 98.05609131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f998 -01010608 98.05609131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f998 -01010609 98.05611420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a8 -01010610 98.05612183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a8 -01010611 98.05614471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b8 -01010612 98.05614471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b8 -01010613 98.05617523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c8 -01010614 98.05618286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c8 -01012824 98.09436798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01012825 98.09436798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01012826 98.09439087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01012827 98.09439850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01012828 98.09442902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01012829 98.09442902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01012830 98.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01012831 98.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01012832 98.09447479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01012833 98.09448242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01012834 98.09450531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01012835 98.09450531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01012836 98.09453583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01012837 98.09454346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01012838 98.09456635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01012839 98.09456635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01012840 98.09458923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01012841 98.09458923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01012842 98.09461975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01012843 98.09462738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01012844 98.09465027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01012845 98.09465027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01012846 98.09467316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01012847 98.09467316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01012848 98.09470367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01012849 98.09470367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01012850 98.09473419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01012851 98.09473419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01012852 98.09475708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01012853 98.09476471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01012854 98.09478760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01012855 98.09478760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01012856 98.09481812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01012857 98.09481812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01012858 98.09484100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01012859 98.09484863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01012860 98.09487152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01012861 98.09487152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01012862 98.09490204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01012863 98.09490204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01012864 98.09492493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01012865 98.09493256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01012866 98.09495544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01012867 98.09496307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01015510 98.13303375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01015511 98.13303375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01015512 98.13305664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01015513 98.13306427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01015514 98.13308716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01015515 98.13308716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01015516 98.13311005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01015517 98.13311768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01015518 98.13314819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01015519 98.13314819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01015520 98.13318634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01015521 98.13318634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01015522 98.13321686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01015523 98.13322449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01015524 98.13324738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01015525 98.13324738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01015526 98.13327026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01015527 98.13327789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01015528 98.13330841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01015529 98.13330841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01015530 98.13333130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01015531 98.13333130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01015532 98.13335419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01015533 98.13336182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01015534 98.13339233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01015535 98.13339233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01015536 98.13343048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01015537 98.13343048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01015538 98.13345337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01015539 98.13345337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01015540 98.13347626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01015541 98.13348389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01015542 98.13350677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01015543 98.13350677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01015544 98.13353729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01015545 98.13354492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01015546 98.13356781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01015547 98.13356781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01015548 98.13359070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01015549 98.13359070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01015550 98.13362122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01015551 98.13362885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01015552 98.13365173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01015553 98.13365173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01017841 98.16637421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01017842 98.16639709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01017843 98.16640472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01017844 98.16643524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01017845 98.16643524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01017846 98.16645813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01017847 98.16645813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01017848 98.16648102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01017849 98.16648865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01017850 98.16651154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01017851 98.16651154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01017852 98.16654205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01017853 98.16654968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01017854 98.16657257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01017855 98.16657257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01017856 98.16659546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01017857 98.16659546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01017858 98.16662598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01017859 98.16663361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01017860 98.16665649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01017861 98.16665649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01017862 98.16667938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01017863 98.16667938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01017864 98.16670990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01017865 98.16670990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01017866 98.16674042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01017867 98.16674042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01017868 98.16676331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01017869 98.16677094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01017870 98.16679382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01017871 98.16679382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01017872 98.16682434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01017873 98.16682434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01017874 98.16684723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01017875 98.16685486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01017876 98.16687775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01017877 98.16687775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01017878 98.16690826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01017879 98.16690826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01017880 98.16693878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01017881 98.16693878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01017882 98.16696167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01017883 98.16696167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01017884 98.16699219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01020038 98.19799042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10368 -01020039 98.19799042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10368 -01020040 98.19801331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10378 -01020041 98.19802094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10378 -01020042 98.19805145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10388 -01020043 98.19805145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10388 -01020044 98.19807434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10398 -01020045 98.19807434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10398 -01020046 98.19809723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a8 -01020047 98.19810486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103a8 -01020048 98.19812775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b8 -01020049 98.19812775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103b8 -01020050 98.19815826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c8 -01020051 98.19815826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103c8 -01020052 98.19818115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d8 -01020053 98.19818878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103d8 -01020054 98.19821167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e8 -01020055 98.19821167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103e8 -01020056 98.19824219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f8 -01020057 98.19824982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x103f8 -01020058 98.19827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10408 -01020059 98.19827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10408 -01020060 98.19829559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10418 -01020061 98.19829559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10418 -01020062 98.19832611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10428 -01020063 98.19832611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10428 -01020064 98.19835663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10438 -01020065 98.19835663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10438 -01020066 98.19837952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10448 -01020067 98.19838715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10448 -01020068 98.19841003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -01020069 98.19841003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -01020070 98.19844055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10468 -01020071 98.19844055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10468 -01020072 98.19846344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10478 -01020073 98.19847107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10478 -01020074 98.19849396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10488 -01020075 98.19849396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10488 -01020076 98.19852448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10498 -01020077 98.19852448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10498 -01020078 98.19854736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a8 -01020079 98.19855499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a8 -01020080 98.19857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b8 -01020081 98.19857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b8 -01035103 98.40828705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -01035104 98.40828705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -01035105 98.40830994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -01035106 98.40830994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -01035107 98.40834045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -01035108 98.40834808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -01035109 98.40837097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -01035110 98.40837097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -01035111 98.40839386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -01035112 98.40840149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -01035113 98.40843201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -01035114 98.40843201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -01035115 98.40845490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -01035116 98.40845490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -01035117 98.40847778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -01035118 98.40848541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -01035119 98.40850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -01035120 98.40850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -01035121 98.40853882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -01035122 98.40854645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -01035123 98.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -01035124 98.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -01035125 98.40859222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -01035126 98.40859985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -01035127 98.40863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -01035128 98.40863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -01035129 98.40865326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -01035130 98.40865326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -01035131 98.40867615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -01035132 98.40868378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -01035133 98.40870667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -01035134 98.40870667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -01035135 98.40874481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -01035136 98.40874481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -01035137 98.40876770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -01035138 98.40876770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -01035139 98.40879059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -01035140 98.40879822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -01035141 98.40882874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -01035142 98.40882874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -01035143 98.40885162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -01035144 98.40885925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -01035145 98.40888214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -01035146 98.40888214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -01037089 98.43698883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -01037090 98.43698883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31828 -01037091 98.43701935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -01037092 98.43702698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31838 -01037093 98.43704987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -01037094 98.43704987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31848 -01037095 98.43707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31858 -01037096 98.43707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31858 -01037097 98.43710327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31868 -01037098 98.43711090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31868 -01037099 98.43713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31878 -01037100 98.43713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31878 -01037101 98.43715668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31888 -01037102 98.43715668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31888 -01037103 98.43718719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31898 -01037104 98.43718719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31898 -01037105 98.43721771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a8 -01037106 98.43721771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318a8 -01037107 98.43724060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b8 -01037108 98.43724823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318b8 -01037109 98.43727112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c8 -01037110 98.43727112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318c8 -01037111 98.43730164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d8 -01037112 98.43730164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318d8 -01037113 98.43732452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e8 -01037114 98.43733215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318e8 -01037115 98.43735504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f8 -01037116 98.43735504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x318f8 -01037117 98.43738556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31908 -01037118 98.43738556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31908 -01037119 98.43741608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31918 -01037120 98.43741608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31918 -01037121 98.43743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31928 -01037122 98.43743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31928 -01037123 98.43746185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31938 -01037124 98.43746948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31938 -01037125 98.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31948 -01037126 98.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31948 -01037127 98.43752289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31958 -01037128 98.43752289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31958 -01037129 98.43754578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31968 -01037130 98.43755341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31968 -01037131 98.43758392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31978 -01037132 98.43758392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31978 -01038962 98.46391296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a8 -01038963 98.46391296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a8 -01038964 98.46393585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b8 -01038965 98.46393585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b8 -01038966 98.46395874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c8 -01038967 98.46396637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c8 -01038968 98.46398926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d8 -01038969 98.46399689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d8 -01038970 98.46401978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e8 -01038971 98.46402740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e8 -01038972 98.46405029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f8 -01038973 98.46405029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f8 -01038974 98.46407318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35308 -01038975 98.46407318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35308 -01038976 98.46410370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35318 -01038977 98.46411133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35318 -01038978 98.46413422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -01038979 98.46413422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -01038980 98.46415710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -01038981 98.46415710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -01038982 98.46418762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -01038983 98.46419525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -01038984 98.46421814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -01038985 98.46422577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -01038986 98.46424103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -01038987 98.46424866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -01038988 98.46427155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -01038989 98.46427155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -01038990 98.46430206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -01038991 98.46430206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -01038992 98.46432495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -01038993 98.46432495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -01038994 98.46435547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -01038995 98.46435547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -01038996 98.46437836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -01038997 98.46438599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -01038998 98.46440887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -01038999 98.46440887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -01039000 98.46443176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -01039001 98.46443176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -01039002 98.46446228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -01039003 98.46446228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -01039004 98.46448517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -01039005 98.46448517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -01041005 98.49298096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39278 -01041006 98.49298096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39278 -01041007 98.49300385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39288 -01041008 98.49300385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39288 -01041009 98.49302673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39298 -01041010 98.49303436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39298 -01041011 98.49305725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a8 -01041012 98.49306488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a8 -01041013 98.49308777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b8 -01041014 98.49308777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b8 -01041015 98.49311066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c8 -01041016 98.49311066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c8 -01041017 98.49314117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d8 -01041018 98.49314117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d8 -01041019 98.49316406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e8 -01041020 98.49317169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e8 -01041021 98.49318695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f8 -01041022 98.49319458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f8 -01041023 98.49322510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39308 -01041024 98.49322510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39308 -01041025 98.49324799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39318 -01041026 98.49324799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39318 -01041027 98.49327087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39328 -01041028 98.49327087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39328 -01041029 98.49330139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39338 -01041030 98.49330139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39338 -01041031 98.49332428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39348 -01041032 98.49333191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39348 -01041033 98.49334717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39358 -01041034 98.49335480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39358 -01041035 98.49338531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39368 -01041036 98.49338531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39368 -01041037 98.49340820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39378 -01041038 98.49340820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39378 -01041039 98.49343109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39388 -01041040 98.49343109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39388 -01041041 98.49346161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39398 -01041042 98.49346924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39398 -01041043 98.49348450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a8 -01041044 98.49349213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393a8 -01041045 98.49351501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b8 -01041046 98.49351501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393b8 -01041047 98.49354553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c8 -01041048 98.49354553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c8 -01042997 98.52153015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -01042998 98.52153015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -01042999 98.52156067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -01043000 98.52156067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -01043001 98.52159119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -01043002 98.52159882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -01043003 98.52162933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -01043004 98.52163696 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -01043005 98.52166748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -01043006 98.52167511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -01043007 98.52170563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -01043008 98.52171326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -01043009 98.52174377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -01043010 98.52174377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -01043011 98.52176666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -01043012 98.52177429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -01043013 98.52182770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -01043014 98.52182770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -01043015 98.52185822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -01043016 98.52185822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -01043017 98.52188110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -01043018 98.52188873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -01043019 98.52190399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -01043020 98.52191162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -01043021 98.52194214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -01043022 98.52194214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -01043023 98.52196503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -01043024 98.52197266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -01043025 98.52199554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -01043026 98.52199554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -01043027 98.52202606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -01043028 98.52202606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -01043029 98.52204895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -01043030 98.52205658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -01043031 98.52207947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -01043032 98.52207947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -01043033 98.52210236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -01043034 98.52210999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -01043035 98.52214050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -01043036 98.52214050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -01043037 98.52216339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -01043038 98.52216339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -01043039 98.52219391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -01043040 98.52219391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -01044870 98.54837036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -01044871 98.54839325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -01044872 98.54840088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -01044873 98.54843140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -01044874 98.54843140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -01044875 98.54845428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -01044876 98.54845428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -01044877 98.54847717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -01044878 98.54848480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -01044879 98.54851532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -01044880 98.54851532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -01044881 98.54853821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -01044882 98.54853821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -01044883 98.54856873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -01044884 98.54856873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -01044885 98.54859161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -01044886 98.54859161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -01044887 98.54862213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -01044888 98.54862976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -01044889 98.54865265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -01044890 98.54865265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -01044891 98.54867554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -01044892 98.54868317 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -01044893 98.54870605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -01044894 98.54871368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -01044895 98.54873657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -01044896 98.54873657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -01044897 98.54875946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -01044898 98.54876709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -01044899 98.54878998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -01044900 98.54878998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -01044901 98.54882050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -01044902 98.54882050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -01044903 98.54884338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -01044904 98.54885101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -01044905 98.54887390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -01044906 98.54887390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -01044907 98.54890442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -01044908 98.54891205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -01044909 98.54893494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -01044910 98.54893494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -01044911 98.54895782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -01044912 98.54895782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -01044913 98.54898834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -01047588 98.58753967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46028 -01047589 98.58753967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46028 -01047590 98.58756256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46038 -01047591 98.58756256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46038 -01047592 98.58759308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46048 -01047593 98.58759308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46048 -01047594 98.58762360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46058 -01047595 98.58762360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46058 -01047596 98.58764648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46068 -01047597 98.58765411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46068 -01047598 98.58767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46078 -01047599 98.58767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46078 -01047600 98.58770752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46088 -01047601 98.58770752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46088 -01047602 98.58773041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46098 -01047603 98.58773804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46098 -01047604 98.58776093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a8 -01047605 98.58776093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460a8 -01047606 98.58779144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b8 -01047607 98.58779144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460b8 -01047608 98.58781433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c8 -01047609 98.58782196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460c8 -01047610 98.58784485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d8 -01047611 98.58784485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460d8 -01047612 98.58787537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e8 -01047613 98.58787537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460e8 -01047614 98.58790588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f8 -01047615 98.58790588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x460f8 -01047616 98.58792877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46108 -01047617 98.58792877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46108 -01047618 98.58795166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46118 -01047619 98.58795929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46118 -01047620 98.58798981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46128 -01047621 98.58798981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46128 -01047622 98.58801270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46138 -01047623 98.58802032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46138 -01047624 98.58804321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46148 -01047625 98.58804321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46148 -01047626 98.58807373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -01047627 98.58807373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -01047628 98.58809662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -01047629 98.58810425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -01047630 98.58812714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -01047631 98.58812714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -01049968 98.62165833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01049969 98.62165833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01049970 98.62168121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01049971 98.62168121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01049972 98.62171173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01049973 98.62171173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01049974 98.62174225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01049975 98.62174225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01049976 98.62176514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01049977 98.62177277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01049978 98.62179565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01049979 98.62179565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01049980 98.62182617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01049981 98.62182617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01049982 98.62184906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01049983 98.62185669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01049984 98.62187958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01049985 98.62187958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01049986 98.62191010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01049987 98.62191010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01049988 98.62193298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01049989 98.62194061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01049990 98.62196350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01049991 98.62196350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01049992 98.62199402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01049993 98.62199402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01049994 98.62202454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01049995 98.62202454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01049996 98.62204742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01049997 98.62204742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01049998 98.62207031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01049999 98.62207794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01050000 98.62210846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01050001 98.62210846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01050002 98.62213135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01050003 98.62213135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01050004 98.62215424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01050005 98.62216187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01050006 98.62219238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -01050007 98.62219238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -01050008 98.62221527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -01050009 98.62222290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -01050010 98.62224579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -01050011 98.62224579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -01052556 98.65872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb68 -01052557 98.65872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb68 -01052558 98.65874481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb78 -01052559 98.65875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb78 -01052560 98.65877533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb88 -01052561 98.65877533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb88 -01052562 98.65880585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb98 -01052563 98.65880585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb98 -01052564 98.65883636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba8 -01052565 98.65883636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba8 -01052566 98.65885925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -01052567 98.65885925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -01052568 98.65888977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -01052569 98.65888977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -01052570 98.65892029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -01052571 98.65892029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -01052572 98.65894318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -01052573 98.65895081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -01052574 98.65896606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01052575 98.65897369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01052576 98.65900421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01052577 98.65900421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01052578 98.65902710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01052579 98.65903473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01052580 98.65905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01052581 98.65905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01052582 98.65908813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01052583 98.65908813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01052584 98.65911102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01052585 98.65911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01052586 98.65914154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01052587 98.65914154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01052588 98.65916443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01052589 98.65917206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01052590 98.65920258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01052591 98.65920258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01052592 98.65922546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01052593 98.65922546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01052594 98.65924835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01052595 98.65925598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01052596 98.65928650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01052597 98.65928650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01052598 98.65930939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01052599 98.65930939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01054155 98.71069336 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01054156 98.71073151 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01054157 98.71075439 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01054158 98.71076202 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01054159 98.71088409 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01054160 98.71089172 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01054161 98.71095276 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01054162 98.71097565 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01054163 98.76209259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01054164 98.76210022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01054165 98.76212311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01054166 98.76213074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01054167 98.76215363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01054168 98.76215363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01054169 98.76218414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01054170 98.76219177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01054171 98.76221466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01054172 98.76221466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01054173 98.76223755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01054174 98.76224518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01054175 98.76227570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01054176 98.76227570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01054177 98.76229858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01054178 98.76230621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01054179 98.76232910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01054180 98.76232910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01054181 98.76235199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01054182 98.76235962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01054183 98.76239014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01054184 98.76239014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01054185 98.76241302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01054186 98.76242065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01054187 98.76244354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01054188 98.76244354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01054189 98.76247406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01054190 98.76247406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01054191 98.76250458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01054192 98.76250458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01054193 98.76252747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01054194 98.76252747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01054195 98.76255035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01054196 98.76255798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01054197 98.76258850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01054198 98.76258850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01064218 98.90762329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -01064219 98.90762329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -01064220 98.90764618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -01064221 98.90764618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -01064222 98.90767670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -01064223 98.90767670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -01064224 98.90770721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -01064225 98.90770721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -01064226 98.90773010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -01064227 98.90773773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -01064228 98.90776062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -01064229 98.90776062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -01064230 98.90779114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -01064231 98.90779877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -01064232 98.90782166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -01064233 98.90782166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -01064234 98.90784454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a68 -01064235 98.90784454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a68 -01064236 98.90787506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a78 -01064237 98.90787506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a78 -01064238 98.90790558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a88 -01064239 98.90790558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a88 -01064240 98.90792847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a98 -01064241 98.90793610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a98 -01064242 98.90795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa8 -01064243 98.90795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa8 -01064244 98.90798950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab8 -01064245 98.90799713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab8 -01064246 98.90802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac8 -01064247 98.90802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac8 -01064248 98.90804291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad8 -01064249 98.90804291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad8 -01064250 98.90807343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae8 -01064251 98.90807343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae8 -01064252 98.90810394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -01064253 98.90810394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -01064254 98.90812683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -01064255 98.90813446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -01064256 98.90815735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -01064257 98.90815735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -01064258 98.90818787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -01064259 98.90819550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -01064260 98.90821838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -01064261 98.90821838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -01066354 98.93877411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca8 -01066355 98.93878174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ca8 -01066356 98.93881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb8 -01066357 98.93881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cb8 -01066358 98.93883514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc8 -01066359 98.93883514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cc8 -01066360 98.93886566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd8 -01066361 98.93886566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cd8 -01066362 98.93889618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce8 -01066363 98.93890381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ce8 -01066364 98.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf8 -01066365 98.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18cf8 -01066366 98.93895721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d08 -01066367 98.93896484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d08 -01066368 98.93898773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d18 -01066369 98.93898773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d18 -01066370 98.93901062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d28 -01066371 98.93901825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d28 -01066372 98.93904877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d38 -01066373 98.93904877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d38 -01066374 98.93907166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d48 -01066375 98.93907166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d48 -01066376 98.93909454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d58 -01066377 98.93910217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d58 -01066378 98.93913269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d68 -01066379 98.93913269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d68 -01066380 98.93915558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d78 -01066381 98.93916321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d78 -01066382 98.93918610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d88 -01066383 98.93919373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d88 -01066384 98.93922424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d98 -01066385 98.93923187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d98 -01066386 98.93926239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da8 -01066387 98.93926239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18da8 -01066388 98.93929291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db8 -01066389 98.93929291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18db8 -01066390 98.93932343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc8 -01066391 98.93932343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dc8 -01066392 98.93934631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd8 -01066393 98.93935394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18dd8 -01066394 98.93937683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de8 -01066395 98.93937683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18de8 -01066396 98.93940735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df8 -01066397 98.93941498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18df8 -01068344 98.96797180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -01068345 98.96797180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -01068346 98.96800232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae8 -01068347 98.96800232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae8 -01068348 98.96802521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf8 -01068349 98.96802521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caf8 -01068350 98.96804810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb08 -01068351 98.96805573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb08 -01068352 98.96808624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb18 -01068353 98.96808624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb18 -01068354 98.96810913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb28 -01068355 98.96810913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb28 -01068356 98.96813202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb38 -01068357 98.96813202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb38 -01068358 98.96816254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb48 -01068359 98.96817017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb48 -01068360 98.96819305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -01068361 98.96819305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb58 -01068362 98.96821594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb68 -01068363 98.96822357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb68 -01068364 98.96824646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb78 -01068365 98.96824646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb78 -01068366 98.96828461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb88 -01068367 98.96828461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb88 -01068368 98.96830750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb98 -01068369 98.96830750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb98 -01068370 98.96833038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba8 -01068371 98.96833801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cba8 -01068372 98.96836853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb8 -01068373 98.96836853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbb8 -01068374 98.96839905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc8 -01068375 98.96839905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbc8 -01068376 98.96842194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd8 -01068377 98.96842194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbd8 -01068378 98.96844482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe8 -01068379 98.96845245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbe8 -01068380 98.96847534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf8 -01068381 98.96848297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cbf8 -01068382 98.96850586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -01068383 98.96850586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -01068384 98.96852875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -01068385 98.96852875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -01068386 98.96855927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -01068387 98.96856689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -01070184 98.99464417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -01070185 98.99464417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -01070186 98.99466705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -01070187 98.99467468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -01070188 98.99469757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -01070189 98.99469757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -01070190 98.99472809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -01070191 98.99473572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -01070192 98.99475861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -01070193 98.99475861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -01070194 98.99478149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -01070195 98.99478912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -01070196 98.99481964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -01070197 98.99481964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -01070198 98.99485016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -01070199 98.99485779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -01070200 98.99488068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -01070201 98.99488068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -01070202 98.99490356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -01070203 98.99491119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -01070204 98.99493408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -01070205 98.99493408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -01070206 98.99496460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20508 -01070207 98.99497223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20508 -01070208 98.99499512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20518 -01070209 98.99499512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20518 -01070210 98.99501801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20528 -01070211 98.99501801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20528 -01070212 98.99504852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -01070213 98.99505615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -01070214 98.99507904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -01070215 98.99507904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -01070216 98.99510956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -01070217 98.99510956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -01070218 98.99514771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -01070219 98.99514771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -01070220 98.99518585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -01070221 98.99518585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -01070222 98.99521637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -01070223 98.99521637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -01070224 98.99524689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20598 -01070225 98.99524689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20598 -01070226 98.99528503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a8 -01070227 98.99528503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a8 -01072290 99.02516174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -01072291 99.02516174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -01072292 99.02519226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -01072293 99.02519226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -01072294 99.02521515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -01072295 99.02521515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -01072296 99.02523804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -01072297 99.02524567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -01072298 99.02526855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -01072299 99.02527618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -01072300 99.02529907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -01072301 99.02530670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -01072302 99.02532196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -01072303 99.02532959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -01072304 99.02536011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -01072305 99.02536011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -01072306 99.02539063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -01072307 99.02539063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -01072308 99.02541351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -01072309 99.02541351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -01072310 99.02543640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -01072311 99.02544403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -01072312 99.02547455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -01072313 99.02547455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -01072314 99.02550507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -01072315 99.02550507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -01072316 99.02552795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -01072317 99.02552795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -01072318 99.02555847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -01072319 99.02555847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -01072320 99.02558136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -01072321 99.02558899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -01072322 99.02561188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -01072323 99.02561188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -01072324 99.02563477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -01072325 99.02563477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -01072326 99.02566528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -01072327 99.02566528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -01072328 99.02568817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -01072329 99.02569580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -01072330 99.02571869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -01072331 99.02571869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -01072332 99.02574921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -01072333 99.02574921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -01074332 99.05451202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f8 -01074333 99.05451965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x285f8 -01074334 99.05455017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28608 -01074335 99.05455017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28608 -01074336 99.05457306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28618 -01074337 99.05457306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28618 -01074338 99.05459595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28628 -01074339 99.05459595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28628 -01074340 99.05462646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28638 -01074341 99.05463409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28638 -01074342 99.05465698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28648 -01074343 99.05465698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28648 -01074344 99.05467987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28658 -01074345 99.05467987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28658 -01074346 99.05471039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28668 -01074347 99.05471039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28668 -01074348 99.05473328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28678 -01074349 99.05474091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28678 -01074350 99.05475616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28688 -01074351 99.05476379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28688 -01074352 99.05478668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28698 -01074353 99.05478668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28698 -01074354 99.05481720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a8 -01074355 99.05481720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286a8 -01074356 99.05484009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b8 -01074357 99.05484772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286b8 -01074358 99.05487061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c8 -01074359 99.05487061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286c8 -01074360 99.05490112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d8 -01074361 99.05490112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286d8 -01074362 99.05492401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e8 -01074363 99.05492401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286e8 -01074364 99.05494690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f8 -01074365 99.05494690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x286f8 -01074366 99.05497742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28708 -01074367 99.05498505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28708 -01074368 99.05500793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28718 -01074369 99.05500793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28718 -01074370 99.05503082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28728 -01074371 99.05503082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28728 -01074372 99.05506134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28738 -01074373 99.05506134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28738 -01074374 99.05508423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28748 -01074375 99.05509186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28748 -01076312 99.08299255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d8 -01076313 99.08300018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3d8 -01076314 99.08302307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e8 -01076315 99.08303070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3e8 -01076316 99.08305359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f8 -01076317 99.08305359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3f8 -01076318 99.08307648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c408 -01076319 99.08307648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c408 -01076320 99.08310699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c418 -01076321 99.08310699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c418 -01076322 99.08312988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c428 -01076323 99.08313751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c428 -01076324 99.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -01076325 99.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -01076326 99.08319092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -01076327 99.08319092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -01076328 99.08321381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -01076329 99.08322144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -01076330 99.08323669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -01076331 99.08324432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -01076332 99.08326721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -01076333 99.08326721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -01076334 99.08329773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -01076335 99.08329773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -01076336 99.08332825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c498 -01076337 99.08332825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c498 -01076338 99.08335114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a8 -01076339 99.08335876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a8 -01076340 99.08338928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b8 -01076341 99.08338928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b8 -01076342 99.08341980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c8 -01076343 99.08341980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c8 -01076344 99.08344269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d8 -01076345 99.08345032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d8 -01076346 99.08347321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e8 -01076347 99.08347321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e8 -01076348 99.08350372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f8 -01076349 99.08350372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f8 -01076350 99.08353424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c508 -01076351 99.08353424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c508 -01076352 99.08355713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -01076353 99.08356476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -01076354 99.08358765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -01076355 99.08358765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -01078238 99.11084747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -01078239 99.11084747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -01078240 99.11087036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -01078241 99.11087036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -01078242 99.11090088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -01078243 99.11090851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -01078244 99.11092377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -01078245 99.11093140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -01078246 99.11095428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -01078247 99.11095428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -01078248 99.11098480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30058 -01078249 99.11098480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30058 -01078250 99.11100769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30068 -01078251 99.11100769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30068 -01078252 99.11103058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30078 -01078253 99.11103821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30078 -01078254 99.11106873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30088 -01078255 99.11106873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30088 -01078256 99.11109161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30098 -01078257 99.11109161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30098 -01078258 99.11111450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a8 -01078259 99.11111450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300a8 -01078260 99.11114502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b8 -01078261 99.11114502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300b8 -01078262 99.11117554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c8 -01078263 99.11117554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300c8 -01078264 99.11119843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d8 -01078265 99.11119843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300d8 -01078266 99.11122894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e8 -01078267 99.11122894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300e8 -01078268 99.11125946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f8 -01078269 99.11125946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x300f8 -01078270 99.11128235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30108 -01078271 99.11128235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30108 -01078272 99.11130524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30118 -01078273 99.11130524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30118 -01078274 99.11133575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30128 -01078275 99.11134338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30128 -01078276 99.11135864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -01078277 99.11136627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -01078278 99.11138916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -01078279 99.11138916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -01078280 99.11141968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -01078281 99.11141968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -01080192 99.13940430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d18 -01080193 99.13941193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d18 -01080194 99.13943481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d28 -01080195 99.13943481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d28 -01080196 99.13946533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d38 -01080197 99.13946533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d38 -01080198 99.13949585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d48 -01080199 99.13949585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d48 -01080200 99.13951874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d58 -01080201 99.13951874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d58 -01080202 99.13954926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -01080203 99.13954926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d68 -01080204 99.13957977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -01080205 99.13957977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d78 -01080206 99.13960266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -01080207 99.13961029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d88 -01080208 99.13963318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -01080209 99.13964081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d98 -01080210 99.13967133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -01080211 99.13967896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da8 -01080212 99.13970947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db8 -01080213 99.13971710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db8 -01080214 99.13975525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc8 -01080215 99.13975525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc8 -01080216 99.13979340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd8 -01080217 99.13979340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd8 -01080218 99.13983154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de8 -01080219 99.13983917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de8 -01080220 99.13986206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df8 -01080221 99.13986206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df8 -01080222 99.13989258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e08 -01080223 99.13990021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e08 -01080224 99.13992310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e18 -01080225 99.13992310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e18 -01080226 99.13994598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e28 -01080227 99.13995361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e28 -01080228 99.13998413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e38 -01080229 99.13998413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e38 -01080230 99.14000702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e48 -01080231 99.14000702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e48 -01080232 99.14002991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e58 -01080233 99.14003754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e58 -01080234 99.14006042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e68 -01080235 99.14006042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e68 -01082047 99.16641235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37708 -01082048 99.16641235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37708 -01082049 99.16643524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37718 -01082050 99.16643524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37718 -01082051 99.16646576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37728 -01082052 99.16647339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37728 -01082053 99.16649628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37738 -01082054 99.16649628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37738 -01082055 99.16651917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37748 -01082056 99.16651917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37748 -01082057 99.16654968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37758 -01082058 99.16654968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37758 -01082059 99.16657257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37768 -01082060 99.16658020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37768 -01082061 99.16659546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37778 -01082062 99.16660309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37778 -01082063 99.16663361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -01082064 99.16663361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37788 -01082065 99.16665649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -01082066 99.16665649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37798 -01082067 99.16667938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -01082068 99.16668701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377a8 -01082069 99.16670990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -01082070 99.16670990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377b8 -01082071 99.16674042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -01082072 99.16674042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377c8 -01082073 99.16677094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -01082074 99.16677094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377d8 -01082075 99.16679382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -01082076 99.16679382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377e8 -01082077 99.16682434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f8 -01082078 99.16683197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x377f8 -01082079 99.16685486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37808 -01082080 99.16685486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37808 -01082081 99.16687775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37818 -01082082 99.16688538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37818 -01082083 99.16690826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37828 -01082084 99.16690826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37828 -01082085 99.16693878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -01082086 99.16694641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -01082087 99.16696167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -01082088 99.16696930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -01082089 99.16699219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -01082090 99.16699219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -01084171 99.19749451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -01084172 99.19749451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -01084173 99.19752502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -01084174 99.19752502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -01084175 99.19754791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -01084176 99.19754791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -01084177 99.19757080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -01084178 99.19757843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -01084179 99.19760895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -01084180 99.19760895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -01084181 99.19763184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -01084182 99.19763947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -01084183 99.19766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -01084184 99.19766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -01084185 99.19769287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -01084186 99.19769287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -01084187 99.19772339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -01084188 99.19772339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -01084189 99.19774628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -01084190 99.19774628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -01084191 99.19776917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -01084192 99.19777679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -01084193 99.19780731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -01084194 99.19780731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -01084195 99.19783020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -01084196 99.19783783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -01084197 99.19786072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -01084198 99.19786072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -01084199 99.19789124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -01084200 99.19789124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -01084201 99.19792175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -01084202 99.19792175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -01084203 99.19794464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -01084204 99.19794464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -01084205 99.19796753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -01084206 99.19797516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -01084207 99.19800568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -01084208 99.19800568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -01084209 99.19802856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -01084210 99.19803619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -01084211 99.19805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -01084212 99.19805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -01084213 99.19808960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -01084214 99.19808960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -01096089 99.43238831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -01096090 99.43352509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01096091 99.43352509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01096092 99.43354797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01096093 99.43355560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01096094 99.43357849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01096095 99.43357849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01096096 99.43360901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01096097 99.43360901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01096098 99.43363953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01096099 99.43363953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01096100 99.43366241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01096101 99.43366241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01096102 99.43369293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01096103 99.43369293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01096104 99.43372345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01096105 99.43372345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01096106 99.43374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01096107 99.43374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01096108 99.43376923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01096109 99.43377686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01096110 99.43380737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01096111 99.43380737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01096112 99.43383026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01096113 99.43383789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01096114 99.43386078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01096115 99.43386078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01096116 99.43389130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01096117 99.43389130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01096118 99.43391418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01096119 99.43392181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01096120 99.43394470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01096121 99.43394470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01096122 99.43396759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01096123 99.43397522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01096124 99.43400574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01096125 99.43400574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01096126 99.43402863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01096127 99.43402863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01096128 99.43405151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01096129 99.43405914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01096130 99.43408966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01096131 99.43408966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01096132 99.43411255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01096210 99.43527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01096211 99.43527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01096212 99.43529510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01096213 99.43530273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01096214 99.43534851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01096215 99.43534851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01096216 99.43537140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01096217 99.43537140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01096218 99.43540192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01096219 99.43540192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01096220 99.43543243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01096221 99.43543243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01096222 99.43545532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01096223 99.43546295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01096224 99.43548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01096225 99.43548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01096226 99.43551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01096227 99.43551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01096228 99.43554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01096229 99.43554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01096230 99.43556976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01096231 99.43556976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01096232 99.43560028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01096233 99.43560028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01096234 99.43563080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01096235 99.43563080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01096236 99.43565369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01096237 99.43565369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01096238 99.43567657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01096239 99.43568420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01096240 99.43571472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01096241 99.43571472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01096242 99.43573761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01096243 99.43574524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01096244 99.43576813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01096245 99.43576813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01096246 99.43579865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01096247 99.43579865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01096248 99.43582153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01096249 99.43582916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01096250 99.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01096251 99.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01096252 99.43587494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01096253 99.43588257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01098037 99.46150208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01098038 99.46153259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01098039 99.46153259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01098040 99.46155548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01098041 99.46156311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01098042 99.46158600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01098043 99.46158600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01098044 99.46161652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01098045 99.46161652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01098046 99.46164703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01098047 99.46164703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01098048 99.46166992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01098049 99.46166992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01098050 99.46169281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01098051 99.46170044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01098052 99.46173096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01098053 99.46173096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01098054 99.46175385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01098055 99.46175385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01098056 99.46177673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01098057 99.46178436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01098058 99.46181488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01098059 99.46181488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01098060 99.46183777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01098061 99.46184540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01098062 99.46186829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01098063 99.46186829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01098064 99.46189117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01098065 99.46189117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01098066 99.46192169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01098067 99.46192932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01098068 99.46195221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01098069 99.46195221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01098070 99.46197510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01098071 99.46198273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01098072 99.46201324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01098073 99.46201324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01098074 99.46203613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01098075 99.46203613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01098076 99.46205902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01098077 99.46206665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01098078 99.46208954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01098079 99.46208954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01098080 99.46212006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01100176 99.49237823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01100177 99.49238586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01100178 99.49240875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01100179 99.49240875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01100180 99.49243164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01100181 99.49243927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01100182 99.49246979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01100183 99.49246979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01100184 99.49249268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01100185 99.49249268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01100186 99.49251556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01100187 99.49252319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01100188 99.49255371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01100189 99.49255371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01100190 99.49257660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01100191 99.49258423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01100192 99.49260712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01100193 99.49260712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01100194 99.49263000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01100195 99.49263000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01100196 99.49266052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01100197 99.49266815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01100198 99.49269104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01100199 99.49269104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01100200 99.49271393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01100201 99.49271393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01100202 99.49274445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01100203 99.49275208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01100204 99.49277496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01100205 99.49277496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01100206 99.49279785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01100207 99.49279785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01100208 99.49282837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01100209 99.49282837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01100210 99.49285889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01100211 99.49285889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01100212 99.49288177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01100213 99.49288940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01100214 99.49291229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01100215 99.49291229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01100216 99.49294281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01100217 99.49294281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01100218 99.49296570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01100219 99.49297333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01102009 99.51882172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01102010 99.51882172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01102011 99.51884460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01102012 99.51884460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01102013 99.51887512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01102014 99.51887512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01102015 99.51889801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01102016 99.51890564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01102017 99.51892853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01102018 99.51893616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01102019 99.51896667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01102020 99.51896667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01102021 99.51898956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01102022 99.51898956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01102023 99.51901245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01102024 99.51902008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01102025 99.51904297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01102026 99.51904297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01102027 99.51907349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01102028 99.51907349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01102029 99.51909637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01102030 99.51910400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01102031 99.51912689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01102032 99.51912689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01102033 99.51915741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01102034 99.51915741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01102035 99.51918030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01102036 99.51918793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01102037 99.51921082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01102038 99.51921082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01102039 99.51924133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01102040 99.51924133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01102041 99.51926422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01102042 99.51927185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01102043 99.51929474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01102044 99.51929474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01102045 99.51932526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01102046 99.51932526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01102047 99.51934814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01102048 99.51934814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01102049 99.51937103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01102050 99.51937103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01102051 99.51940155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01102052 99.51940155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01104041 99.54770660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a8 -01104042 99.54770660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108a8 -01104043 99.54772949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b8 -01104044 99.54773712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108b8 -01104045 99.54776001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c8 -01104046 99.54776001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108c8 -01104047 99.54779053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d8 -01104048 99.54779053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108d8 -01104049 99.54781342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e8 -01104050 99.54782104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108e8 -01104051 99.54784393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f8 -01104052 99.54784393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x108f8 -01104053 99.54787445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10908 -01104054 99.54788208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10908 -01104055 99.54790497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10918 -01104056 99.54790497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10918 -01104057 99.54792786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10928 -01104058 99.54792786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10928 -01104059 99.54795837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10938 -01104060 99.54795837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10938 -01104061 99.54798889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10948 -01104062 99.54798889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10948 -01104063 99.54801178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10958 -01104064 99.54801941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10958 -01104065 99.54804230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10968 -01104066 99.54804230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10968 -01104067 99.54807281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10978 -01104068 99.54807281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10978 -01104069 99.54809570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10988 -01104070 99.54810333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10988 -01104071 99.54812622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10998 -01104072 99.54812622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10998 -01104073 99.54815674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a8 -01104074 99.54815674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a8 -01104075 99.54817963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01104076 99.54818726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01104077 99.54821014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01104078 99.54821014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01104079 99.54823303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01104080 99.54824066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01104081 99.54827118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01104082 99.54827118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01104083 99.54829407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01104084 99.54829407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01105957 99.57516479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -01105958 99.57516479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -01105959 99.57519531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -01105960 99.57519531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -01105961 99.57521820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -01105962 99.57522583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -01105963 99.57524109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -01105964 99.57524872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -01105965 99.57527924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -01105966 99.57527924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -01105967 99.57530212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -01105968 99.57530975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -01105969 99.57533264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -01105970 99.57533264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -01105971 99.57536316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -01105972 99.57536316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -01105973 99.57538605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -01105974 99.57539368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -01105975 99.57541656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -01105976 99.57541656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -01105977 99.57543945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -01105978 99.57543945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -01105979 99.57546997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -01105980 99.57547760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -01105981 99.57550049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -01105982 99.57550049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -01105983 99.57552338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -01105984 99.57553101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -01105985 99.57556152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -01105986 99.57556152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -01105987 99.57558441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -01105988 99.57558441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -01105989 99.57560730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -01105990 99.57561493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -01105991 99.57563782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -01105992 99.57563782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -01105993 99.57566833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -01105994 99.57566833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -01105995 99.57569122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -01105996 99.57569885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -01105997 99.57572174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -01105998 99.57572174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -01105999 99.57575226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -01106000 99.57575989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -01108103 99.60601807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -01108104 99.60602570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -01108105 99.60604858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -01108106 99.60604858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -01108107 99.60607147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -01108108 99.60607910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -01108109 99.60610199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -01108110 99.60610199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -01108111 99.60613251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -01108112 99.60613251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -01108113 99.60615540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -01108114 99.60616302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -01108115 99.60620117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -01108116 99.60620117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -01108117 99.60623169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -01108118 99.60623932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -01108119 99.60626221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -01108120 99.60626221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -01108121 99.60629272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -01108122 99.60629272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -01108123 99.60631561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -01108124 99.60632324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -01108125 99.60634613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -01108126 99.60634613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -01108127 99.60637665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -01108128 99.60638428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -01108129 99.60639954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -01108130 99.60640717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -01108131 99.60643005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -01108132 99.60643768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -01108133 99.60646820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -01108134 99.60646820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -01108135 99.60649872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -01108136 99.60649872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -01108137 99.60652924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -01108138 99.60652924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -01108139 99.60655212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -01108140 99.60655212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -01108141 99.60658264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -01108142 99.60658264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -01108143 99.60661316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -01108144 99.60661316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -01108145 99.60663605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -01108146 99.60664368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -01110001 99.63314056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e8 -01110002 99.63314056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e8 -01110003 99.63316345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f8 -01110004 99.63316345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f8 -01110005 99.63319397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c308 -01110006 99.63319397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c308 -01110007 99.63322449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c318 -01110008 99.63322449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c318 -01110009 99.63324738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c328 -01110010 99.63325500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c328 -01110011 99.63327789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c338 -01110012 99.63327789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c338 -01110013 99.63330841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c348 -01110014 99.63330841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c348 -01110015 99.63333130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c358 -01110016 99.63333893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c358 -01110017 99.63336945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c368 -01110018 99.63337708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c368 -01110019 99.63341522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c378 -01110020 99.63341522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c378 -01110021 99.63345337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c388 -01110022 99.63345337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c388 -01110023 99.63349152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c398 -01110024 99.63349915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c398 -01110025 99.63352203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a8 -01110026 99.63352203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3a8 -01110027 99.63355255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b8 -01110028 99.63355255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3b8 -01110029 99.63358307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -01110030 99.63358307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -01110031 99.63360596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -01110032 99.63360596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -01110033 99.63362885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -01110034 99.63363647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -01110035 99.63366699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -01110036 99.63366699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -01110037 99.63370514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -01110038 99.63370514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -01110039 99.63372803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -01110040 99.63373566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -01110041 99.63375854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -01110042 99.63375854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -01110043 99.63378906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -01110044 99.63378906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -01111973 99.66132355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -01111974 99.66133118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -01111975 99.66135406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -01111976 99.66135406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -01111977 99.66138458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -01111978 99.66138458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -01111979 99.66141510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -01111980 99.66141510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -01111981 99.66143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -01111982 99.66143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -01111983 99.66146851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -01111984 99.66147614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -01111985 99.66150665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -01111986 99.66150665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -01111987 99.66153717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -01111988 99.66153717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -01111989 99.66156006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -01111990 99.66156769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -01111991 99.66159058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -01111992 99.66159058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -01111993 99.66162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -01111994 99.66162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -01111995 99.66165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -01111996 99.66165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -01111997 99.66167450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -01111998 99.66167450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -01111999 99.66170502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20158 -01112000 99.66170502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20158 -01112001 99.66173553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20168 -01112002 99.66173553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20168 -01112003 99.66175842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20178 -01112004 99.66176605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20178 -01112005 99.66178894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20188 -01112006 99.66179657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20188 -01112007 99.66182709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20198 -01112008 99.66183472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20198 -01112009 99.66186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a8 -01112010 99.66186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a8 -01112011 99.66189575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b8 -01112012 99.66189575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b8 -01112013 99.66193390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -01112014 99.66194153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -01112015 99.66196442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -01112016 99.66196442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -01114105 99.69174957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -01114106 99.69175720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -01114107 99.69178009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -01114108 99.69178009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -01114109 99.69181061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -01114110 99.69181061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -01114111 99.69183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -01114112 99.69184113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -01114113 99.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -01114114 99.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -01114115 99.69189453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24378 -01114116 99.69189453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24378 -01114117 99.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24388 -01114118 99.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24388 -01114119 99.69194794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24398 -01114120 99.69194794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24398 -01114121 99.69197083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a8 -01114122 99.69197845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a8 -01114123 99.69200897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b8 -01114124 99.69200897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b8 -01114125 99.69203186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c8 -01114126 99.69203186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c8 -01114127 99.69205475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d8 -01114128 99.69206238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d8 -01114129 99.69209290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e8 -01114130 99.69209290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e8 -01114131 99.69211578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f8 -01114132 99.69211578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f8 -01114133 99.69213867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24408 -01114134 99.69214630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24408 -01114135 99.69216919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24418 -01114136 99.69216919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24418 -01114137 99.69219971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24428 -01114138 99.69220734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24428 -01114139 99.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24438 -01114140 99.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24438 -01114141 99.69225311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24448 -01114142 99.69225311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24448 -01114143 99.69228363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24458 -01114144 99.69229126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24458 -01114145 99.69231415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24468 -01114146 99.69231415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24468 -01114147 99.69233704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24478 -01114148 99.69233704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24478 -01129679 99.90819550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d8 -01129680 99.90819550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429d8 -01129681 99.90821838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e8 -01129682 99.90822601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429e8 -01129683 99.90824890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f8 -01129684 99.90824890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x429f8 -01129685 99.90827179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a08 -01129686 99.90827179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a08 -01129687 99.90830231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a18 -01129688 99.90830994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a18 -01129689 99.90833282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a28 -01129690 99.90833282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a28 -01129691 99.90835571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a38 -01129692 99.90835571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a38 -01129693 99.90838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a48 -01129694 99.90839386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a48 -01129695 99.90841675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a58 -01129696 99.90841675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a58 -01129697 99.90843964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a68 -01129698 99.90843964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a68 -01129699 99.90847015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a78 -01129700 99.90847015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a78 -01129701 99.90850067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a88 -01129702 99.90850067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a88 -01129703 99.90852356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a98 -01129704 99.90853119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a98 -01129705 99.90855408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa8 -01129706 99.90855408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42aa8 -01129707 99.90858459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab8 -01129708 99.90858459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ab8 -01129709 99.90860748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac8 -01129710 99.90861511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ac8 -01129711 99.90863800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad8 -01129712 99.90863800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ad8 -01129713 99.90866852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae8 -01129714 99.90866852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae8 -01129715 99.90869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af8 -01129716 99.90869904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af8 -01129717 99.90872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b08 -01129718 99.90872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b08 -01129719 99.90875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b18 -01129720 99.90875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b18 -01129721 99.90878296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b28 -01129722 99.90878296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b28 -01131677 99.93675232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46848 -01131678 99.93675232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46848 -01131679 99.93678284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46858 -01131680 99.93678284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46858 -01131681 99.93680573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46868 -01131682 99.93680573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46868 -01131683 99.93682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46878 -01131684 99.93682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46878 -01131685 99.93685913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46888 -01131686 99.93686676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46888 -01131687 99.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46898 -01131688 99.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46898 -01131689 99.93691254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a8 -01131690 99.93691254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a8 -01131691 99.93694305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -01131692 99.93694305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -01131693 99.93696594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -01131694 99.93696594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -01131695 99.93698883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -01131696 99.93699646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -01131697 99.93702698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -01131698 99.93702698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -01131699 99.93704987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -01131700 99.93705750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -01131701 99.93708038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -01131702 99.93708038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -01131703 99.93711090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -01131704 99.93711090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -01131705 99.93713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -01131706 99.93714142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -01131707 99.93716431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -01131708 99.93717194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -01131709 99.93718719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -01131710 99.93719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -01131711 99.93722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -01131712 99.93722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -01131713 99.93724823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -01131714 99.93724823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -01131715 99.93727112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -01131716 99.93727112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -01131717 99.93730164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -01131718 99.93730164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -01131719 99.93732452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -01131720 99.93733215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -01133563 99.96351624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a338 -01133564 99.96351624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a338 -01133565 99.96354675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a348 -01133566 99.96355438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a348 -01133567 99.96356964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a358 -01133568 99.96357727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a358 -01133569 99.96360016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a368 -01133570 99.96360016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a368 -01133571 99.96363068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a378 -01133572 99.96363068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a378 -01133573 99.96365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a388 -01133574 99.96365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a388 -01133575 99.96367645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a398 -01133576 99.96368408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a398 -01133577 99.96370697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a8 -01133578 99.96371460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a8 -01133579 99.96373749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b8 -01133580 99.96373749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b8 -01133581 99.96376038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c8 -01133582 99.96376038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c8 -01133583 99.96379089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d8 -01133584 99.96379089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d8 -01133585 99.96381378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e8 -01133586 99.96381378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e8 -01133587 99.96383667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f8 -01133588 99.96384430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f8 -01133589 99.96386719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a408 -01133590 99.96387482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a408 -01133591 99.96389771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a418 -01133592 99.96389771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a418 -01133593 99.96392059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a428 -01133594 99.96392059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a428 -01133595 99.96395111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a438 -01133596 99.96395111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a438 -01133597 99.96397400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a448 -01133598 99.96398163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a448 -01133599 99.96399689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a458 -01133600 99.96400452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a458 -01133601 99.96403503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a468 -01133602 99.96403503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a468 -01133603 99.96405792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a478 -01133604 99.96405792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a478 -01133605 99.96408081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a488 -01133606 99.96408081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a488 -01135602 99.99217987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -01135603 99.99217987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -01135604 99.99220276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -01135605 99.99221039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -01135606 99.99223328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -01135607 99.99223328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -01135608 99.99226379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -01135609 99.99226379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -01135610 99.99228668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -01135611 99.99228668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -01135612 99.99231720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -01135613 99.99231720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -01135614 99.99234009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -01135615 99.99234772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -01135616 99.99237061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -01135617 99.99237061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -01135618 99.99239349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -01135619 99.99240112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -01135620 99.99243164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -01135621 99.99243164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -01135622 99.99245453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -01135623 99.99245453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -01135624 99.99247742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -01135625 99.99248505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -01135626 99.99251556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -01135627 99.99251556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -01135628 99.99253845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -01135629 99.99254608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -01135630 99.99256134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -01135631 99.99256897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -01135632 99.99259186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -01135633 99.99259186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -01135634 99.99262238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -01135635 99.99262238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -01135636 99.99264526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -01135637 99.99264526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -01135638 99.99267578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -01135639 99.99267578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -01135640 99.99269867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -01135641 99.99270630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -01135642 99.99272156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -01135643 99.99272919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -01135644 99.99275208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -01135645 99.99275208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -01136606 100.00661469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -01136607 100.00661469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -01136608 100.00664520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -01136609 100.00664520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -01136610 100.00666809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -01136611 100.00667572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -01136612 100.00669861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -01136613 100.00669861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -01136614 100.00672913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -01136615 100.00672913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -01136616 100.00675201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -01136617 100.00675964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -01136618 100.00678253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -01136619 100.00678253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -01136620 100.00681305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -01136621 100.00681305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -01136622 100.00684357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -01136623 100.00684357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -01136624 100.00686646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -01136625 100.00686646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -01136626 100.00688934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -01136627 100.00689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -01136628 100.00692749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -01136629 100.00692749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -01136630 100.00695038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -01136631 100.00695038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -01136632 100.00697327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -01136633 100.00698090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -01136634 100.00701141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -01136635 100.00701141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -01136636 100.00703430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -01136637 100.00704193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -01136638 100.00706482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -01136639 100.00706482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -01136640 100.00708771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -01136641 100.00708771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -01136642 100.00711823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -01136643 100.00712585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -01136644 100.00714874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -01136645 100.00714874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -01136646 100.00717163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -01136647 100.00717163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -01136648 100.00720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -01136649 100.00720978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -01137988 100.05074310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137989 100.05231476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137990 100.05253601 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137991 100.07220459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137992 100.07262421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137993 100.07281494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137994 100.09852600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137995 100.09897614 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01137996 100.09918213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137997 100.13867188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01137998 100.14973450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01137999 100.15032959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138000 100.15053558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138001 100.19017029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138002 100.19068146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138003 100.19087982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138004 100.23867798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138005 100.23931885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138006 100.23947144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138007 100.23958588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138008 100.23968506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138009 100.23989868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138010 100.24008942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138011 100.25909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138012 100.25950623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138013 100.25971985 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138014 100.29038239 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138015 100.29094696 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138016 100.29114532 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138017 100.31341553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138018 100.31410217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138019 100.31439209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138020 100.34234619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138021 100.34296417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138022 100.34315491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138023 100.45497131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138024 100.45569611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138025 100.45590210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138026 100.48425293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138027 100.48477173 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138028 100.48497009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138029 100.63789368 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138030 100.64292145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138031 100.64314270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138032 100.66744995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138033 100.66794586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138034 100.66812897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138035 100.69162750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138036 100.69214630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138037 100.69232941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138038 100.72891235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138039 100.72937775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138040 100.72958374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138041 100.76532745 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138042 100.76586151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138043 100.76605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138044 100.99185181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138045 100.99254608 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138046 100.99273682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138047 100.99275208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138048 100.99282837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138049 100.99293518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138050 100.99302673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138051 101.01725006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138052 101.03959656 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138053 101.04009247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138054 101.04029083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138055 101.06584930 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138056 101.08142853 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138057 101.08164215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138058 101.08592224 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138059 101.08644104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138060 101.08662415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138061 101.08663177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138062 101.08665466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138063 101.08681488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138064 101.08686066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138065 101.10221863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138066 101.11901855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138067 101.14645386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138068 101.17640686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138069 101.17685699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138070 101.17706299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138071 101.21468353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138072 101.21759033 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138073 101.21762848 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138074 101.21765137 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01138075 101.21766663 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01138076 101.21778870 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138077 101.21778870 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01138078 101.21784210 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01138079 101.21786499 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01138080 101.37303925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138081 101.37368011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01138082 101.37388611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01138083 101.45757294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01138084 101.45758057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01138085 101.45760345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01138086 101.45760345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01138087 101.45763397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01138088 101.45764160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01138089 101.45765686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01138090 101.45766449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01138091 101.45768738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01138092 101.45768738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01138093 101.45771790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01138094 101.45771790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01138095 101.45774078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01138096 101.45774078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01138097 101.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01138098 101.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01138099 101.45780182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01138100 101.45780182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01138101 101.45782471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01138102 101.45783234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01138103 101.45785522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01138104 101.45785522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01138105 101.45787811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01138106 101.45787811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01138107 101.45791626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01138108 101.45791626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01138109 101.45793915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01138110 101.45793915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01138111 101.45796204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01138112 101.45796967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01138113 101.45799255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01138114 101.45800018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01138115 101.45802307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01138116 101.45802307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01138117 101.45804596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01138118 101.45804596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01138119 101.45807648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01138120 101.45807648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01138121 101.45809937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01138122 101.45810699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01138123 101.45812225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01138124 101.45812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01138125 101.45816040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01138126 101.45816040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01138127 101.45818329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01138128 101.45818329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01138129 101.45820618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01138130 101.45820618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01138131 101.45823669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01138132 101.45823669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01138133 101.45825958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01138134 101.45826721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01138135 101.45829010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01138136 101.45829773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01138137 101.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01138138 101.45832062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01138139 101.45835114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01138140 101.45835114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01138141 101.45837402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01138142 101.45838165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01138143 101.45840454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01138144 101.45841217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01138145 101.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01138146 101.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01138147 101.45846558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01138148 101.45846558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01138149 101.45848846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01138150 101.45848846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01138151 101.45851898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01138152 101.45851898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01138153 101.45854187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01138154 101.45854950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01138155 101.45856476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01138156 101.45857239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01138157 101.45859528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01138158 101.45859528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01138159 101.45862579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01138160 101.45862579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01138161 101.45864868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01138162 101.45864868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01138163 101.45867157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01138164 101.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01138165 101.45870209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01138166 101.45870972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01138167 101.45873260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01138168 101.45873260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01138169 101.45875549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01138170 101.45875549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01138171 101.45878601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01138172 101.45878601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01138173 101.45880890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01138174 101.45881653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01138175 101.45883942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01138176 101.45883942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01138177 101.45886993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01138178 101.45886993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01138179 101.45890045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01138180 101.45890045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01138181 101.45892334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01138182 101.45893097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01138183 101.45895386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01138184 101.45895386 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01138185 101.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01138186 101.45899200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01138187 101.45900726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01138188 101.45901489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01138189 101.45903778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01138190 101.45903778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01138191 101.45906830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01138192 101.45906830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01138193 101.45909119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01138194 101.45909119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01138195 101.45912170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01138196 101.45912170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01138197 101.45915222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01138198 101.45915222 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01138199 101.45918274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01138200 101.45918274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01138201 101.45920563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01138202 101.45920563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01138203 101.45922852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01138204 101.45923615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01138205 101.45926666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01138206 101.45926666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01138207 101.45931244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01138208 101.45931244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01138209 101.45933533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01138210 101.45934296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01138211 101.45936584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01138212 101.45936584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01138213 101.45938873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01138214 101.45938873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01138215 101.45941925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01138216 101.45942688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01138217 101.45944977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01138218 101.45944977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01138219 101.45947266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01138220 101.45948029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01138221 101.45951080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01138222 101.45951080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01138223 101.45954132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01138224 101.45954132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01138225 101.45956421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01138226 101.45956421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01138227 101.45958710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01138228 101.45958710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01138229 101.45961761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01138230 101.45961761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01138231 101.45964050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01138232 101.45964813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01138233 101.45966339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01138234 101.45967102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01138235 101.45970154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01138236 101.45970154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01138237 101.45972443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01138238 101.45972443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01138239 101.45974731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01138240 101.45974731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01138241 101.45977783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01138242 101.45978546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01138243 101.45980072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01138244 101.45980835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01138245 101.45983124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01138246 101.45983124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01138247 101.45986176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01138248 101.45986938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01138249 101.45989227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01138250 101.45989227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01138251 101.45991516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01138252 101.45992279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01138253 101.45994568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01138254 101.45994568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01138255 101.45997620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01138256 101.45997620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01138257 101.45999908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01138258 101.46000671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01138259 101.46002960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01138260 101.46002960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01138261 101.46006012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01138262 101.46006775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01138263 101.46009064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01138264 101.46009064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01138265 101.46011353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01138266 101.46011353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01138267 101.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01138268 101.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01138269 101.46017456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01138270 101.46017456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01138271 101.46019745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01138272 101.46020508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01138273 101.46022797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01138274 101.46023560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01138275 101.46025848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01138276 101.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01138277 101.46028900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01138278 101.46028900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01138279 101.46031189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01138280 101.46031189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01138281 101.46034241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01138282 101.46034241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01138283 101.46036530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01138284 101.46036530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01138285 101.46038818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01138286 101.46039581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01138287 101.46041870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01138288 101.46042633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01138289 101.46045685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01138290 101.46045685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01138291 101.46047974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01138292 101.46047974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01138293 101.46050262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01138294 101.46051025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01138295 101.46054077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01138296 101.46054077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01138297 101.46056366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01138298 101.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01138299 101.46059418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01138300 101.46059418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01138301 101.46061707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01138302 101.46061707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01138303 101.46064758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01138304 101.46065521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01138305 101.46067810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01138306 101.46067810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01138307 101.46070099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01138308 101.46070862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01138309 101.46073914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01138310 101.46073914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01138311 101.46076202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01138312 101.46076202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01138313 101.46078491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01138314 101.46079254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01138315 101.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01138316 101.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01138317 101.46084595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01138318 101.46084595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01138319 101.46086884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01138320 101.46086884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01138321 101.46089935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01138322 101.46089935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01138323 101.46092224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01138324 101.46092987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01138325 101.46094513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01138326 101.46095276 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01138327 101.46097565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01138328 101.46097565 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01138329 101.46100616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01138330 101.46100616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01138331 101.46102905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01138332 101.46102905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01138333 101.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01138334 101.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01138335 101.46108246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01138336 101.46109009 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01138337 101.46110535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01138338 101.46111298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01138339 101.46113586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01138340 101.46113586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01138341 101.46116638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01138342 101.46116638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01138343 101.46118927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01138344 101.46118927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01138345 101.46121979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01138346 101.46121979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01138347 101.46124268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01138348 101.46125031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01138349 101.46127319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01138350 101.46127319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01138351 101.46129608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01138352 101.46129608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01138353 101.46132660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01138354 101.46132660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01138355 101.46134949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01138356 101.46135712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01138357 101.46137238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01138358 101.46138000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01138359 101.46141052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01138360 101.46141052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01138361 101.46143341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01138362 101.46144104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01138363 101.46145630 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01138364 101.46146393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01138365 101.46149445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01138366 101.46149445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01138367 101.46151733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01138368 101.46151733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01138369 101.46154022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01138370 101.46154022 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01138371 101.46157074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01138372 101.46157074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01138373 101.46159363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01138374 101.46160126 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01138375 101.46162415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01138376 101.46162415 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01138377 101.46165466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01138378 101.46165466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01138379 101.46167755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01138380 101.46167755 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01138381 101.46170044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01138382 101.46170807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01138383 101.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01138384 101.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01138385 101.46176147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01138386 101.46176147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01138387 101.46178436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01138388 101.46178436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01138389 101.46181488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01138390 101.46181488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01138391 101.46183777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01138392 101.46184540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01138393 101.46186066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01138394 101.46186829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01138395 101.46189117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01138396 101.46189117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01138397 101.46192169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01138398 101.46192169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01138399 101.46194458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01138400 101.46194458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01138401 101.46196747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01138402 101.46197510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01138403 101.46199799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01138404 101.46200562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01138405 101.46202850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01138406 101.46202850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01138407 101.46205139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01138408 101.46205139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01138409 101.46208191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01138410 101.46208191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01138411 101.46210480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01138412 101.46210480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01138413 101.46212769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01138414 101.46213531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01138415 101.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01138416 101.46216583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01138417 101.46218872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01138418 101.46218872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01138419 101.46221161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01138420 101.46221161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01138421 101.46224213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01138422 101.46224213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01138423 101.46226501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01138424 101.46227264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01138425 101.46228790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01138426 101.46229553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01138427 101.46232605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01138428 101.46232605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01138429 101.46234894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01138430 101.46234894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01138431 101.46237183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01138432 101.46237183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01138433 101.46240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01138434 101.46240997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01138435 101.46242523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01138436 101.46243286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01138437 101.46245575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01138438 101.46245575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01138439 101.46248627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01138440 101.46248627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01138441 101.46250916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01138442 101.46250916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01138443 101.46253204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01138444 101.46253967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01138445 101.46256256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01138446 101.46257019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01138447 101.46259308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01138448 101.46259308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01138449 101.46261597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01138450 101.46261597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01138451 101.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01138452 101.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01138453 101.46266937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01138454 101.46267700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01138455 101.46269226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01138456 101.46269989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01138457 101.46272278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01138458 101.46272278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01138459 101.46275330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01138460 101.46275330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01138461 101.46277618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01138462 101.46277618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01138463 101.46280670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01138464 101.46280670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01138465 101.46282959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01138466 101.46283722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01138467 101.46285248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01138468 101.46286011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01138469 101.46288300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01138470 101.46288300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01138471 101.46291351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01138472 101.46291351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01138473 101.46293640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01138474 101.46293640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01138475 101.46296692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01138476 101.46296692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01138477 101.46298981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01138478 101.46299744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01138479 101.46302032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01138480 101.46302032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01138481 101.46304321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01138482 101.46304321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01138483 101.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01138484 101.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01138485 101.46309662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01138486 101.46310425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01138487 101.46311951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01138488 101.46312714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01138489 101.46315765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01138490 101.46315765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01138491 101.46318054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01138492 101.46318054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01138493 101.46320343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01138494 101.46320343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01138495 101.46323395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01138496 101.46324158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01138497 101.46325684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01138498 101.46326447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01138499 101.46328735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01138500 101.46328735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01138501 101.46331787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01138502 101.46331787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01138503 101.46334076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01138504 101.46334076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01138505 101.46336365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01138506 101.46336365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01138507 101.46339417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01138508 101.46340179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01138509 101.46342468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01138510 101.46342468 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01138511 101.46344757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01138512 101.46344757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01138513 101.46347809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01138514 101.46347809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01138515 101.46350861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01138516 101.46350861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01138517 101.46353149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01138518 101.46353149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01138519 101.46356201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01138520 101.46356201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01138521 101.46360016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01138522 101.46360016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01138523 101.46362305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01138524 101.46363068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01138525 101.46365356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01138526 101.46366119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01138527 101.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01138528 101.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01138529 101.46371460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01138530 101.46371460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01138531 101.46373749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01138532 101.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01138533 101.46376801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01138534 101.46376801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01138535 101.46379852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01138536 101.46379852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01138537 101.46382141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01138538 101.46382904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01138539 101.46385193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01138540 101.46385193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01138541 101.46387482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01138542 101.46388245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01138543 101.46391296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01138544 101.46391296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01138545 101.46393585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01138546 101.46393585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01138547 101.46396637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01138548 101.46396637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01138549 101.46399689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01138550 101.46399689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01138551 101.46401978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01138552 101.46401978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01138553 101.46404266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01138554 101.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01138555 101.46407318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01138556 101.46407318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01138557 101.46410370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01138558 101.46411133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01138559 101.46413422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01138560 101.46413422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01138561 101.46415710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01138562 101.46416473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01138563 101.46419525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01138564 101.46419525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01138565 101.46421814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01138566 101.46421814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01139963 101.48361969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01139964 101.48361969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01139965 101.48365021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01139966 101.48365021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01139967 101.48368073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01139968 101.48368073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01139969 101.48370361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01139970 101.48371124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01139971 101.48373413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01139972 101.48373413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01139973 101.48376465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01139974 101.48377228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01139975 101.48379517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01139976 101.48379517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01139977 101.48381805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01139978 101.48382568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01139979 101.48385620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01139980 101.48385620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01139981 101.48387909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01139982 101.48388672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01139983 101.48390961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01139984 101.48390961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01139985 101.48393250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01139986 101.48394012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01139987 101.48397064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01139988 101.48397064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01139989 101.48399353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01139990 101.48400116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01139991 101.48402405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01139992 101.48402405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01139993 101.48405457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01139994 101.48405457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01139995 101.48408508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01139996 101.48408508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01139997 101.48410797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01139998 101.48410797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01139999 101.48413086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01140000 101.48413086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01140001 101.48416138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01140002 101.48416138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01140003 101.48418427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01140004 101.48419189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01140005 101.48421478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01140006 101.48421478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01142157 101.51432037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01142158 101.51432037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01142159 101.51435089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01142160 101.51435089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01142161 101.51437378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01142162 101.51438141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01142163 101.51440430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01142164 101.51440430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01142165 101.51443481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01142166 101.51443481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01142167 101.51445770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01142168 101.51446533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01142169 101.51448822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01142170 101.51448822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01142171 101.51451874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01142172 101.51451874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01142173 101.51454163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01142174 101.51454926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01142175 101.51457214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01142176 101.51457214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01142177 101.51459503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01142178 101.51459503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01142179 101.51462555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01142180 101.51463318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01142181 101.51465607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01142182 101.51465607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01142183 101.51467896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01142184 101.51468658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01142185 101.51471710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01142186 101.51471710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01142187 101.51473999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01142188 101.51473999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01142189 101.51476288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01142190 101.51477051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01142191 101.51479340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01142192 101.51479340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01142193 101.51482391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01142194 101.51482391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01142195 101.51484680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01142196 101.51485443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01142197 101.51487732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01142198 101.51487732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01142199 101.51490784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01142200 101.51491547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01144066 101.54088593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01144067 101.54088593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01144068 101.54091644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01144069 101.54092407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01144070 101.54093933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01144071 101.54094696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01144072 101.54096985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01144073 101.54096985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01144074 101.54100037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01144075 101.54100037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01144076 101.54102325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01144077 101.54102325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01144078 101.54104614 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01144079 101.54104614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01144080 101.54105377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01144081 101.54105377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01144082 101.54107666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01144083 101.54108429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01144084 101.54110718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01144085 101.54110718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01144086 101.54113007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01144087 101.54113007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01144088 101.54116058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01144089 101.54116058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01144090 101.54118347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01144091 101.54118347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01144092 101.54120636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01144093 101.54121399 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01144094 101.54123688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01144095 101.54124451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01144096 101.54126740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01144097 101.54126740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01144098 101.54129028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01144099 101.54129028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01144100 101.54132080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01144101 101.54132080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01144102 101.54134369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01144103 101.54134369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01144104 101.54136658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01144105 101.54137421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01144106 101.54139709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01144107 101.54140472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01144108 101.54142761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01144109 101.54142761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01146167 101.56876373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01146168 101.56876373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01146169 101.56878662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01146170 101.56879425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01146171 101.56881714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01146172 101.56881714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01146173 101.56884766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01146174 101.56884766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01146175 101.56887054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01146176 101.56887817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01146177 101.56890106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a08 -01146178 101.56890106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a08 -01146179 101.56893158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a18 -01146180 101.56893158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a18 -01146181 101.56896210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a28 -01146182 101.56896210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a28 -01146183 101.56898499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a38 -01146184 101.56898499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a38 -01146185 101.56900787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a48 -01146186 101.56901550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a48 -01146187 101.56904602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a58 -01146188 101.56904602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a58 -01146189 101.56906891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a68 -01146190 101.56907654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a68 -01146191 101.56909180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -01146192 101.56909943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -01146193 101.56912994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -01146194 101.56912994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -01146195 101.56915283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -01146196 101.56916046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -01146197 101.56918335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -01146198 101.56918335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -01146199 101.56920624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -01146200 101.56920624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -01146201 101.56923676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -01146202 101.56924438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -01146203 101.56926727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -01146204 101.56926727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -01146205 101.56929016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -01146206 101.56929016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -01146207 101.56932068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -01146208 101.56932831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -01146209 101.56935120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -01146210 101.56935120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -01148231 101.59658051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14848 -01148232 101.59658051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14848 -01148233 101.59661102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14858 -01148234 101.59661102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14858 -01148235 101.59663391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14868 -01148236 101.59664154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14868 -01148237 101.59665680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14878 -01148238 101.59666443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14878 -01148239 101.59669495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14888 -01148240 101.59669495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14888 -01148241 101.59671783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14898 -01148242 101.59671783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14898 -01148243 101.59674072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a8 -01148244 101.59674072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a8 -01148245 101.59677124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b8 -01148246 101.59677124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b8 -01148247 101.59679413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c8 -01148248 101.59680176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c8 -01148249 101.59681702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d8 -01148250 101.59682465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d8 -01148251 101.59684753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e8 -01148252 101.59684753 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e8 -01148253 101.59687805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f8 -01148254 101.59687805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f8 -01148255 101.59690094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14908 -01148256 101.59690094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14908 -01148257 101.59693146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14918 -01148258 101.59693146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14918 -01148259 101.59695435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14928 -01148260 101.59696198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14928 -01148261 101.59697723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14938 -01148262 101.59698486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14938 -01148263 101.59700775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14948 -01148264 101.59700775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14948 -01148265 101.59703827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14958 -01148266 101.59703827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14958 -01148267 101.59706116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14968 -01148268 101.59706879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14968 -01148269 101.59709167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14978 -01148270 101.59709167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14978 -01148271 101.59712219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14988 -01148272 101.59712219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14988 -01148273 101.59714508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14998 -01148274 101.59714508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14998 -01151402 101.62246704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01151403 101.62246704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18188 -01151404 101.62246704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01151405 101.62246704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18188 -01151406 101.62248993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01151407 101.62249756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18198 -01151408 101.62249756 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01151409 101.62249756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18198 -01151410 101.62252045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01151411 101.62252045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a8 -01151412 101.62252808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01151413 101.62252808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181a8 -01151414 101.62255096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01151415 101.62255096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b8 -01151416 101.62255096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01151417 101.62255096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181b8 -01151418 101.62258148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01151419 101.62258148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c8 -01151420 101.62258911 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01151421 101.62258911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181c8 -01151422 101.62261200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01151423 101.62261200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d8 -01151424 101.62261200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01151425 101.62261200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181d8 -01151426 101.62263489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01151427 101.62263489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e8 -01151428 101.62264252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01151429 101.62264252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181e8 -01151430 101.62266541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01151431 101.62266541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f8 -01151432 101.62266541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01151433 101.62266541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x181f8 -01151434 101.62269592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01151435 101.62269592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18208 -01151436 101.62270355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01151437 101.62270355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18208 -01151438 101.62272644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01151439 101.62272644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18218 -01151440 101.62272644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01151441 101.62272644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18218 -01151442 101.62274933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01151443 101.62275696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18228 -01151444 101.62275696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01151445 101.62275696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18228 -01156322 101.65050507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01156323 101.65050507 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01156324 101.65050507 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be18 -01156325 101.65051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01156326 101.65051270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01156327 101.65051270 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be18 -01156328 101.65054321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01156329 101.65054321 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be28 -01156330 101.65054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01156331 101.65054321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01156332 101.65054321 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be28 -01156333 101.65055084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01156334 101.65056610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01156335 101.65057373 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be38 -01156336 101.65057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01156337 101.65057373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01156338 101.65057373 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be38 -01156339 101.65057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01156340 101.65059662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01156341 101.65059662 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be48 -01156342 101.65059662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01156343 101.65059662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01156344 101.65059662 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be48 -01156345 101.65060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01156346 101.65062714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01156347 101.65062714 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be58 -01156348 101.65062714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01156349 101.65062714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01156350 101.65062714 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be58 -01156351 101.65062714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01156352 101.65065765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01156353 101.65065765 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be68 -01156354 101.65065765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01156355 101.65065765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01156356 101.65066528 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be68 -01156357 101.65066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01156358 101.65068817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01156359 101.65068817 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be78 -01156360 101.65068817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01156361 101.65068817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01156362 101.65068817 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be78 -01156363 101.65068817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01156364 101.65071106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01156365 101.65071106 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be88 -01161874 101.67731476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01161875 101.67731476 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -01161876 101.67731476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01161877 101.67731476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01161878 101.67731476 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -01161879 101.67732239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01161880 101.67734528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01161881 101.67735291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01161882 101.67735291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -01161883 101.67735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01161884 101.67735291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -01161885 101.67735291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01161886 101.67737579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01161887 101.67737579 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -01161888 101.67737579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01161889 101.67738342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01161890 101.67738342 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -01161891 101.67738342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01161892 101.67740631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01161893 101.67740631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -01161894 101.67740631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01161895 101.67740631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01161896 101.67740631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f898 -01161897 101.67740631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01161898 101.67743683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01161899 101.67743683 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a8 -01161900 101.67743683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01161901 101.67743683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01161902 101.67743683 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a8 -01161903 101.67743683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01161904 101.67746735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01161905 101.67746735 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b8 -01161906 101.67746735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01161907 101.67746735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01161908 101.67746735 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b8 -01161909 101.67746735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01161910 101.67749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01161911 101.67749023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c8 -01161912 101.67749786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01161913 101.67749786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01161914 101.67749786 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c8 -01161915 101.67749786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01161916 101.67752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01161917 101.67752075 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d8 -01167894 101.70649719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01167895 101.70649719 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b8 -01167896 101.70649719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf8 -01167897 101.70649719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01167898 101.70649719 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b8 -01167899 101.70650482 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xedf8 -01167900 101.70652008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01167901 101.70652008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c8 -01167902 101.70652771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01167903 101.70652771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c8 -01167904 101.70652771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee08 -01167905 101.70652771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee08 -01167906 101.70655060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01167907 101.70655060 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d8 -01167908 101.70655060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01167909 101.70655060 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d8 -01167910 101.70655060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee18 -01167911 101.70655823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee18 -01167912 101.70658112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01167913 101.70658112 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e8 -01167914 101.70658875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01167915 101.70658875 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e8 -01167916 101.70658875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -01167917 101.70658875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee28 -01167918 101.70661163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01167919 101.70661163 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f8 -01167920 101.70661163 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -01167921 101.70661163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01167922 101.70661926 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f8 -01167923 101.70661926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee38 -01167924 101.70664215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01167925 101.70664215 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23808 -01167926 101.70664215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -01167927 101.70664215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01167928 101.70664215 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23808 -01167929 101.70664215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee48 -01167930 101.70666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01167931 101.70666504 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23818 -01167932 101.70666504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -01167933 101.70667267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01167934 101.70667267 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23818 -01167935 101.70667267 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xee58 -01167936 101.70670319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01167937 101.70670319 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23828 -01208074 101.89968109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29178 -01208075 101.89968109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -01208076 101.89968109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01208077 101.89968109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29178 -01208078 101.89968109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -01208079 101.89968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01208080 101.89970398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29188 -01208081 101.89971161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -01208082 101.89971161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01208083 101.89971161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29188 -01208084 101.89971161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -01208085 101.89971161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01208086 101.89973450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29198 -01208087 101.89973450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -01208088 101.89973450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01208089 101.89973450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29198 -01208090 101.89974213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -01208091 101.89974213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01208092 101.89976501 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a8 -01208093 101.89977264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -01208094 101.89977264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01208095 101.89977264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291a8 -01208096 101.89977264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -01208097 101.89977264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01208098 101.89979553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b8 -01208099 101.89979553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -01208100 101.89979553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01208101 101.89979553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b8 -01208102 101.89980316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -01208103 101.89980316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01208104 101.89981842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c8 -01208105 101.89982605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -01208106 101.89982605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01208107 101.89982605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c8 -01208108 101.89982605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -01208109 101.89982605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01208110 101.89985657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d8 -01208111 101.89985657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -01208112 101.89985657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01208113 101.89985657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d8 -01208114 101.89985657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -01208115 101.89985657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01208116 101.89988708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e8 -01208117 101.89988708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d398 -01214364 101.93019104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e8 -01214365 101.93019104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01214366 101.93019104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b8 -01214367 101.93019104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x414e8 -01214368 101.93019104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01214369 101.93019867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291b8 -01214370 101.93021393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f8 -01214371 101.93021393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01214372 101.93022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c8 -01214373 101.93022156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x414f8 -01214374 101.93022156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01214375 101.93022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291c8 -01214376 101.93024445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41508 -01214377 101.93024445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01214378 101.93024445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41508 -01214379 101.93024445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d8 -01214380 101.93024445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01214381 101.93025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291d8 -01214382 101.93027496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41518 -01214383 101.93027496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01214384 101.93027496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41518 -01214385 101.93027496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e8 -01214386 101.93027496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01214387 101.93027496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291e8 -01214388 101.93030548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41528 -01214389 101.93030548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01214390 101.93030548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41528 -01214391 101.93030548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f8 -01214392 101.93030548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01214393 101.93031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x291f8 -01214394 101.93032837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41538 -01214395 101.93032837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01214396 101.93033600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41538 -01214397 101.93033600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29208 -01214398 101.93033600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01214399 101.93033600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29208 -01214400 101.93035889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41548 -01214401 101.93035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -01214402 101.93035889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41548 -01214403 101.93035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29218 -01214404 101.93035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -01214405 101.93036652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29218 -01214406 101.93038940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41558 -01214407 101.93039703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -01219593 101.95531464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c828 -01219594 101.95532227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -01219595 101.95532227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c8 -01219596 101.95532227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309c8 -01219597 101.95533752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c838 -01219598 101.95534515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -01219599 101.95534515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c838 -01219600 101.95534515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -01219601 101.95534515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d8 -01219602 101.95535278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309d8 -01219603 101.95537567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c848 -01219604 101.95537567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -01219605 101.95537567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c848 -01219606 101.95537567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -01219607 101.95537567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e8 -01219608 101.95537567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309e8 -01219609 101.95539856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c858 -01219610 101.95540619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -01219611 101.95540619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c858 -01219612 101.95540619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -01219613 101.95540619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f8 -01219614 101.95540619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x309f8 -01219615 101.95542908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -01219616 101.95542908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -01219617 101.95542908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -01219618 101.95542908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -01219619 101.95543671 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a08 -01219620 101.95543671 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a08 -01219621 101.95545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -01219622 101.95545959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -01219623 101.95545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -01219624 101.95545959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -01219625 101.95545959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a18 -01219626 101.95545959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a18 -01219627 101.95549011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -01219628 101.95549011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -01219629 101.95549011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -01219630 101.95549011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -01219631 101.95549774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a28 -01219632 101.95549774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a28 -01219633 101.95551300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -01219634 101.95551300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -01219635 101.95552063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -01219636 101.95552063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd8 -01224969 101.98156738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34038 -01224970 101.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30108 -01224971 101.98157501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48418 -01224972 101.98157501 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34038 -01224973 101.98159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30118 -01224974 101.98159790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48428 -01224975 101.98159790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34048 -01224976 101.98159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30118 -01224977 101.98159790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48428 -01224978 101.98159790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34048 -01224979 101.98162842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30128 -01224980 101.98162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48438 -01224981 101.98162842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34058 -01224982 101.98162842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30128 -01224983 101.98162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48438 -01224984 101.98162842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34058 -01224985 101.98165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -01224986 101.98165894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48448 -01224987 101.98165894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34068 -01224988 101.98165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -01224989 101.98165894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48448 -01224990 101.98166656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34068 -01224991 101.98168182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -01224992 101.98168182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48458 -01224993 101.98168945 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34078 -01224994 101.98168945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -01224995 101.98168945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48458 -01224996 101.98168945 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34078 -01224997 101.98171234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -01224998 101.98171234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48468 -01224999 101.98171234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34088 -01225000 101.98171234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -01225001 101.98171234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48468 -01225002 101.98171997 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34088 -01225003 101.98174286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30168 -01225004 101.98175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48478 -01225005 101.98175049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30168 -01225006 101.98175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48478 -01225007 101.98177338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30178 -01225008 101.98177338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48488 -01225009 101.98177338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30178 -01225010 101.98177338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48488 -01225011 101.98179626 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34098 -01225012 101.98179626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30188 -01230501 102.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -01230502 102.00848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b98 -01230503 102.00848389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37808 -01230504 102.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -01230505 102.00848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b98 -01230506 102.00849152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37808 -01230507 102.00851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -01230508 102.00852203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba8 -01230509 102.00852203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37818 -01230510 102.00852203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -01230511 102.00852203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba8 -01230512 102.00852203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37818 -01230513 102.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -01230514 102.00854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb8 -01230515 102.00854492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37828 -01230516 102.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -01230517 102.00855255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb8 -01230518 102.00855255 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37828 -01230519 102.00857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed8 -01230520 102.00857544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc8 -01230521 102.00857544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -01230522 102.00857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed8 -01230523 102.00857544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc8 -01230524 102.00857544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -01230525 102.00859833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee8 -01230526 102.00859833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd8 -01230527 102.00859833 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -01230528 102.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee8 -01230529 102.00860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd8 -01230530 102.00860596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -01230531 102.00863647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef8 -01230532 102.00863647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be8 -01230533 102.00863647 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -01230534 102.00863647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef8 -01230535 102.00863647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be8 -01230536 102.00863647 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -01230537 102.00865936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf08 -01230538 102.00865936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf8 -01230539 102.00865936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -01230540 102.00866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf08 -01230541 102.00866699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -01230542 102.00866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf8 -01230543 102.00868988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf18 -01230544 102.00868988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37878 -01235429 102.03249359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc8 -01235430 102.03250122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01235431 102.03250122 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -01235432 102.03250122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fc8 -01235433 102.03250122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01235434 102.03250122 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -01235435 102.03252411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd8 -01235436 102.03252411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01235437 102.03252411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fd8 -01235438 102.03252411 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -01235439 102.03252411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01235440 102.03253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -01235441 102.03254700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe8 -01235442 102.03254700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01235443 102.03254700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36fe8 -01235444 102.03255463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01235445 102.03255463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -01235446 102.03255463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -01235447 102.03257751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -01235448 102.03257751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01235449 102.03258514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -01235450 102.03258514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01235451 102.03258514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -01235452 102.03258514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -01235453 102.03260040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -01235454 102.03260803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01235455 102.03260803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -01235456 102.03260803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01235457 102.03261566 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -01235458 102.03261566 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -01235459 102.03263092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -01235460 102.03263092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -01235461 102.03263092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -01235462 102.03263092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -01235463 102.03263855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -01235464 102.03263855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -01235465 102.03266144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -01235466 102.03266144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -01235467 102.03266144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -01235468 102.03266907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -01235469 102.03266907 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -01235470 102.03266907 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -01235471 102.03268433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37038 -01235472 102.03268433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f338 -01241235 102.06181335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -01241236 102.06181335 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e8 -01241237 102.06182098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -01241238 102.06182098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e8 -01241239 102.06184387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -01241240 102.06184387 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f8 -01241241 102.06184387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -01241242 102.06184387 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f8 -01241243 102.06186676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -01241244 102.06186676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -01241245 102.06186676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e508 -01241246 102.06187439 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e508 -01241247 102.06189728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -01241248 102.06189728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -01241249 102.06189728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e518 -01241250 102.06189728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e518 -01241251 102.06192780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -01241252 102.06192780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -01241253 102.06192780 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e528 -01241254 102.06193542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e528 -01241255 102.06195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -01241256 102.06195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -01241257 102.06195831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e538 -01241258 102.06195831 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e538 -01241259 102.06198120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -01241260 102.06198120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -01241261 102.06198120 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e548 -01241262 102.06198883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e548 -01241263 102.06201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -01241264 102.06201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -01241265 102.06201935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e558 -01241266 102.06201935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e558 -01241267 102.06203461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -01241268 102.06204224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -01241269 102.06204224 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e568 -01241270 102.06204224 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e568 -01241271 102.06206512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -01241272 102.06206512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -01241273 102.06206512 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e578 -01241274 102.06207275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e578 -01241275 102.06209564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b038 -01241276 102.06209564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b038 -01241277 102.06209564 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e588 -01241278 102.06209564 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e588 -01244967 102.08933258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -01244968 102.08933258 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -01244969 102.08933258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -01244970 102.08933258 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d08 -01244971 102.08935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -01244972 102.08936310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -01244973 102.08936310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -01244974 102.08936310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d18 -01244975 102.08938599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -01244976 102.08938599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -01244977 102.08938599 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d28 -01244978 102.08938599 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d28 -01244979 102.08941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -01244980 102.08941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -01244981 102.08941650 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d38 -01244982 102.08942413 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d38 -01244983 102.08943939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -01244984 102.08943939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -01244985 102.08944702 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d48 -01244986 102.08944702 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d48 -01244987 102.08946228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -01244988 102.08946991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -01244989 102.08946991 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d58 -01244990 102.08947754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d58 -01244991 102.08949280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -01244992 102.08950043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -01244993 102.08950043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d68 -01244994 102.08950043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d68 -01244995 102.08952332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -01244996 102.08952332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -01244997 102.08953094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d78 -01244998 102.08953857 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d78 -01244999 102.08954620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -01245000 102.08954620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -01245001 102.08956146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d88 -01245002 102.08956146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d88 -01245003 102.08957672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -01245004 102.08958435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -01245005 102.08958435 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d98 -01245006 102.08958435 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d98 -01245007 102.08960724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -01245008 102.08960724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -01245009 102.08961487 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da8 -01245010 102.08962250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41da8 -01248554 102.11563873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e8 -01248555 102.11563873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e8 -01248556 102.11564636 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45348 -01248557 102.11566925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f8 -01248558 102.11567688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f8 -01248559 102.11567688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45358 -01248560 102.11567688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45358 -01248561 102.11569977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42608 -01248562 102.11569977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42608 -01248563 102.11570740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45368 -01248564 102.11570740 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45368 -01248565 102.11572266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42618 -01248566 102.11573029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42618 -01248567 102.11573792 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45378 -01248568 102.11573792 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45378 -01248569 102.11575317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -01248570 102.11575317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -01248571 102.11576080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45388 -01248572 102.11576080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45388 -01248573 102.11578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -01248574 102.11578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -01248575 102.11579895 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45398 -01248576 102.11579895 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x45398 -01248577 102.11581421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -01248578 102.11581421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -01248579 102.11582184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a8 -01248580 102.11582184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453a8 -01248581 102.11583710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -01248582 102.11583710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -01248583 102.11585236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b8 -01248584 102.11585236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453b8 -01248585 102.11586761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -01248586 102.11587524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -01248587 102.11587524 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c8 -01248588 102.11587524 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453c8 -01248589 102.11589813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -01248590 102.11589813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -01248591 102.11590576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d8 -01248592 102.11591339 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453d8 -01248593 102.11592102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -01248594 102.11592865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -01248595 102.11593628 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e8 -01248596 102.11593628 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x453e8 -01248597 102.11595154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42698 -01252063 102.14147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e68 -01252064 102.14147949 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48878 -01252065 102.14148712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e68 -01252066 102.14148712 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48878 -01252067 102.14151001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e78 -01252068 102.14151001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48888 -01252069 102.14151001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e78 -01252070 102.14151001 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48888 -01252071 102.14153290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e88 -01252072 102.14153290 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48898 -01252073 102.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e88 -01252074 102.14154053 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48898 -01252075 102.14157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e98 -01252076 102.14157104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a8 -01252077 102.14157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e98 -01252078 102.14157104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a8 -01252079 102.14159393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea8 -01252080 102.14159393 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b8 -01252081 102.14160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea8 -01252082 102.14160156 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b8 -01252083 102.14162445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb8 -01252084 102.14162445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb8 -01252085 102.14165497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec8 -01252086 102.14165497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec8 -01252087 102.14165497 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c8 -01252088 102.14165497 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c8 -01252089 102.14168549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed8 -01252090 102.14168549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed8 -01252091 102.14168549 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d8 -01252092 102.14169312 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d8 -01252093 102.14170837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee8 -01252094 102.14170837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee8 -01252095 102.14171600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e8 -01252096 102.14171600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e8 -01252097 102.14173889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef8 -01252098 102.14173889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef8 -01252099 102.14173889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f8 -01252100 102.14173889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f8 -01252101 102.14176941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f08 -01252102 102.14176941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f08 -01252103 102.14176941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48908 -01252104 102.14176941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x48908 -01252105 102.14179230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f18 -01252106 102.14179993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f18 -01255471 102.16653442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -01255472 102.16653442 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe8 -01255473 102.16654205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -01255474 102.16654205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe8 -01255475 102.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -01255476 102.16656494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf8 -01255477 102.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -01255478 102.16656494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf8 -01255479 102.16659546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -01255480 102.16659546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -01255481 102.16659546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc08 -01255482 102.16659546 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc08 -01255483 102.16661835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -01255484 102.16662598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -01255485 102.16664124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -01255486 102.16664886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -01255487 102.16667175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -01255488 102.16667175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -01255489 102.16670227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -01255490 102.16670227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -01255491 102.16673279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -01255492 102.16673279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -01255493 102.16674805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc18 -01255494 102.16674805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc18 -01255495 102.16675568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -01255496 102.16675568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -01255497 102.16677094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc28 -01255498 102.16677856 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc28 -01255499 102.16679382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -01255500 102.16679382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -01255501 102.16680145 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc38 -01255502 102.16680908 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc38 -01255503 102.16681671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -01255504 102.16682434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -01255505 102.16683197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc48 -01255506 102.16683197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc48 -01255507 102.16684723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -01255508 102.16684723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -01255509 102.16686249 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc58 -01255510 102.16686249 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc58 -01255511 102.16687012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49638 -01255512 102.16687012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49638 -01255513 102.16689301 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc68 -01255514 102.16689301 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc68 -01259059 102.19287872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf18 -01259060 102.19287872 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -01259061 102.19288635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf18 -01259062 102.19288635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -01259063 102.19290924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf28 -01259064 102.19290924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -01259065 102.19290924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf28 -01259066 102.19290924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -01259067 102.19293976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf38 -01259068 102.19293976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -01259069 102.19293976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf38 -01259070 102.19293976 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -01259071 102.19296265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf48 -01259072 102.19296265 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -01259073 102.19297028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf48 -01259074 102.19297028 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -01259075 102.19300079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf58 -01259076 102.19300079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -01259077 102.19300079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf58 -01259078 102.19300079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -01259079 102.19302368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf68 -01259080 102.19302368 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -01259081 102.19303131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf68 -01259082 102.19303131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -01259083 102.19305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf78 -01259084 102.19305420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01259085 102.19305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf78 -01259086 102.19305420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01259087 102.19308472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf88 -01259088 102.19308472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01259089 102.19308472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf88 -01259090 102.19308472 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01259091 102.19311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf98 -01259092 102.19311523 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01259093 102.19311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf98 -01259094 102.19312286 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01259095 102.19313812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa8 -01259096 102.19314575 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01259097 102.19314575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa8 -01259098 102.19314575 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01259099 102.19316864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -01259100 102.19316864 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01259101 102.19316864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -01259102 102.19317627 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01263953 103.54177856 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01263954 103.56086731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263955 103.56106567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263956 103.56125641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263957 103.56144714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263958 103.56163025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263959 103.56182098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263960 103.56256866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263961 103.56279755 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263962 103.56384277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263963 103.56384277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263964 103.59113312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263965 103.59558868 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263966 103.59580231 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263967 103.72465515 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263968 103.72470093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263969 103.72471619 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01263970 103.72473145 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01263971 103.72487640 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263972 103.72487640 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01263973 103.72493744 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01263974 103.72496033 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01263975 103.79125214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263976 103.79147339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263977 103.79165649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263978 103.79203796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263979 103.82959747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263980 103.90769196 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263981 103.91307831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263982 103.91500092 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263983 103.91522217 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263984 103.94238281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263985 103.95021820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01263986 103.95043945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263987 103.97075653 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263988 104.02598572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263989 104.02637482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263990 104.02645111 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263991 104.02657318 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263992 104.02681732 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263993 104.02694702 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263994 104.02698517 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263995 104.02703094 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263996 104.02718353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263997 104.02719879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263998 104.02725983 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01263999 104.02747345 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264000 104.02748108 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264001 104.02761841 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264002 104.02774811 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264003 104.02780914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264004 104.02780914 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264005 104.02796936 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264006 104.02797699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264007 104.02828217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264008 104.02829742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264009 104.02839661 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264010 104.02845001 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264011 104.02848053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264012 104.02856445 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264013 104.02862549 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264014 104.02885437 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264015 104.02896881 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264016 104.02899933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264017 104.02909088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264018 104.02919769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264019 104.02932739 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264020 104.02943420 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264021 104.02966309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264022 104.02967072 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264023 104.02976990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264024 104.02999115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264025 104.03002930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264026 104.03004456 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264027 104.03019714 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264028 104.03027344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264029 104.03042603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264030 104.03045654 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264031 104.03068542 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264032 104.03075409 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264033 104.03089142 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264034 104.03091431 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264035 104.03099823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264036 104.03127289 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264037 104.03130341 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264038 104.03135681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264039 104.03144073 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264040 104.03148651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264041 104.03173065 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264042 104.03173828 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264043 104.03186798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264044 104.03188324 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264045 104.03207397 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264046 104.03218079 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264047 104.03227234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264048 104.03237915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264049 104.03247833 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264050 104.03263855 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264051 104.03266907 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264052 104.03268433 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264053 104.03282928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264054 104.03292084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264055 104.03296661 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264056 104.03318787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264057 104.03323364 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264058 104.03327179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264059 104.03330231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264060 104.03340149 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264061 104.03363800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264062 104.03367615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264063 104.03373718 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264064 104.03385925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264065 104.03399658 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264066 104.03417969 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264067 104.03429413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264068 104.03429413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264069 104.03430176 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264070 104.03446198 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264071 104.03462982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264072 104.03465271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264073 104.03481293 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264074 104.03487396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264075 104.03500366 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264076 104.03507233 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264077 104.03511047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264078 104.03536987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264079 104.03540802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264080 104.03546143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264081 104.03557587 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264082 104.03569794 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264083 104.03575897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264084 104.03583527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264085 104.03610992 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264086 104.03612518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264087 104.03617096 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264088 104.03642273 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264089 104.03668213 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264090 104.03681946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264091 104.03682709 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264092 104.03682709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264093 104.03705597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264094 104.03725433 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264095 104.03726959 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264096 104.03726959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264097 104.03751373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264098 104.03763580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264099 104.03772736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264100 104.03772736 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264101 104.03778076 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264102 104.03797150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264103 104.03815460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264104 104.03816986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264105 104.03816986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264106 104.03846741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264107 104.03852081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264108 104.03866577 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264109 104.03890991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264110 104.03897858 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264111 104.03929901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264112 104.03929901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264113 104.03963470 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264114 104.03968811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264115 104.03989410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264116 104.07596588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264117 104.13819885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264118 104.14026642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264119 104.14045715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264120 104.17987823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264121 104.18542480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264122 104.18566132 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264123 104.24685669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264124 104.25360870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264125 104.25395966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264126 104.25432587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264127 104.25516510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264128 104.25545502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264129 104.35966492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264130 104.39443207 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264131 104.39465332 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264132 104.45230865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264133 104.46791840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264134 104.46809387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264135 104.46832275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264136 104.46849060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264137 104.46870422 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264138 104.46887207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264139 104.47126770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264140 104.47148132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264141 104.50135040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264142 104.51027679 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264143 104.51045990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264144 104.51067352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264145 104.51084900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264146 104.51106262 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264147 104.51123047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264148 104.51143646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264149 104.51160431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264150 104.51274872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264151 104.51295471 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264152 104.60997772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264153 104.61738586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264154 104.61774445 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264155 104.61825562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264156 104.61845398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264157 104.64196777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264158 104.73114014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264159 104.73135376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264160 104.75405121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264161 104.75496674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264162 104.75514984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264163 104.78231812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264164 104.79642487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01264165 104.79663086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01264166 105.56639862 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01264167 105.58553314 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264168 105.58553314 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264169 106.23107910 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264170 106.23113251 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264171 106.23114777 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01264172 106.23116302 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01264173 106.23128510 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264174 106.23129272 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01264175 106.23134613 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01264176 106.23136902 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01264177 107.06068420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01264178 107.06069183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01264179 107.06071472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01264180 107.06072235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01264181 107.06074524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01264182 107.06075287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01264183 107.06077576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01264184 107.06078339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01264185 107.06080627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01264186 107.06080627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01264187 107.06082916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01264188 107.06082916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01264189 107.06085968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01264190 107.06085968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01264191 107.06088257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01264192 107.06089020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01264193 107.06090546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01264194 107.06091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01264195 107.06094360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01264196 107.06094360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01264197 107.06096649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01264198 107.06096649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01264199 107.06098938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01264200 107.06098938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01264201 107.06101990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01264202 107.06101990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01264203 107.06104279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01264204 107.06105042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01264205 107.06106567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01264206 107.06107330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01264207 107.06110382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01264208 107.06110382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01264209 107.06112671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01264210 107.06112671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01264211 107.06115723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01264212 107.06115723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01264213 107.06118774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01264214 107.06118774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01264215 107.06121063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01264216 107.06121826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01264217 107.06124115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01264218 107.06124115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01264219 107.06127167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01264220 107.06127167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01264221 107.06130219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01264222 107.06130219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01264223 107.06132507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01264224 107.06132507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01264225 107.06134796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01264226 107.06135559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01264227 107.06137848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01264228 107.06138611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01264229 107.06140900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01264230 107.06140900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01264231 107.06143188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01264232 107.06143188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01264233 107.06146240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01264234 107.06146240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01264235 107.06149292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01264236 107.06149292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01264237 107.06151581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01264238 107.06151581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01264239 107.06153870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01264240 107.06153870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01264241 107.06156921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01264242 107.06157684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01264243 107.06159210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01264244 107.06159973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01264245 107.06162262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01264246 107.06162262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01264247 107.06165314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01264248 107.06165314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01264249 107.06168365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01264250 107.06168365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01264251 107.06170654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01264252 107.06170654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01264253 107.06173706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01264254 107.06173706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01264255 107.06176758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01264256 107.06176758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01264257 107.06179810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01264258 107.06179810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01264259 107.06182098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01264260 107.06182098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01264261 107.06185150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01264262 107.06185150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01264263 107.06187439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01264264 107.06188202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01264265 107.06189728 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01264266 107.06190491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01264267 107.06193542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01264268 107.06193542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01264269 107.06195831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01264270 107.06195831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01264271 107.06198120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01264272 107.06198120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01264273 107.06201172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01264274 107.06201935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01264275 107.06203461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01264276 107.06204224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01264277 107.06206512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01264278 107.06206512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01264279 107.06209564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01264280 107.06209564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01264281 107.06211853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01264282 107.06211853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01264283 107.06214142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01264284 107.06214905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01264285 107.06217194 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01264286 107.06217957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01264287 107.06220245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01264288 107.06221008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01264289 107.06223297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01264290 107.06223297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01264291 107.06225586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01264292 107.06225586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01264293 107.06228638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01264294 107.06229401 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01264295 107.06231689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01264296 107.06232452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01264297 107.06233978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01264298 107.06234741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01264299 107.06237793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01264300 107.06237793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01264301 107.06241608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01264302 107.06241608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01264303 107.06244659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01264304 107.06244659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01264305 107.06246948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01264306 107.06246948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01264307 107.06249237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01264308 107.06250000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01264309 107.06253052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01264310 107.06253052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01264311 107.06255341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01264312 107.06256104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01264313 107.06258392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01264314 107.06259155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01264315 107.06261444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01264316 107.06261444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01264317 107.06264496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01264318 107.06264496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01264319 107.06266785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01264320 107.06266785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01264321 107.06269073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01264322 107.06269073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01264323 107.06272125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01264324 107.06272888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01264325 107.06274414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01264326 107.06275177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01264327 107.06277466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01264328 107.06278229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01264329 107.06280518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01264330 107.06281281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01264331 107.06283569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01264332 107.06283569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01264333 107.06285858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01264334 107.06286621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01264335 107.06288910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01264336 107.06288910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01264337 107.06291962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01264338 107.06292725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01264339 107.06295013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01264340 107.06295013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01264341 107.06297302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01264342 107.06297302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01264343 107.06300354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01264344 107.06300354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01264345 107.06302643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01264346 107.06302643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01264347 107.06304932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01264348 107.06305695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01264349 107.06307983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01264350 107.06308746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01264351 107.06311035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01264352 107.06311035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01264353 107.06313324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01264354 107.06313324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01264355 107.06316376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01264356 107.06316376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01264357 107.06318665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01264358 107.06319427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01264359 107.06320953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01264360 107.06321716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01264361 107.06324768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01264362 107.06324768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01264363 107.06327057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01264364 107.06327057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01264365 107.06329346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01264366 107.06330109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01264367 107.06333160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01264368 107.06333160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01264369 107.06335449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01264370 107.06336212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01264371 107.06338501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01264372 107.06338501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01264373 107.06340790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01264374 107.06340790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01264375 107.06343842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01264376 107.06344604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01264377 107.06346893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01264378 107.06346893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01264379 107.06349182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01264380 107.06349182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01264381 107.06352234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01264382 107.06352997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01264383 107.06355286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01264384 107.06355286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01264385 107.06357574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01264386 107.06358337 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01264387 107.06360626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01264388 107.06360626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01264389 107.06363678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01264390 107.06363678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01264391 107.06365967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01264392 107.06366730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01264393 107.06369019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01264394 107.06369019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01264395 107.06372070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01264396 107.06372833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01264397 107.06375122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01264398 107.06375122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01264399 107.06377411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01264400 107.06377411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01264401 107.06380463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01264402 107.06380463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01264403 107.06383514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01264404 107.06383514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01264405 107.06385803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01264406 107.06385803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01264407 107.06388855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01264408 107.06388855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01264409 107.06391907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01264410 107.06391907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01264411 107.06394196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01264412 107.06394958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01264413 107.06396484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01264414 107.06397247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01264415 107.06400299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01264416 107.06400299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01264417 107.06402588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01264418 107.06403351 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01264419 107.06405640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01264420 107.06405640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01264421 107.06408691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01264422 107.06408691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01264423 107.06411743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01264424 107.06411743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01264425 107.06414032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01264426 107.06414795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01264427 107.06417084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01264428 107.06417084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01264429 107.06420135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01264430 107.06420135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01264431 107.06422424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01264432 107.06423187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01264433 107.06425476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01264434 107.06425476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01264435 107.06428528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01264436 107.06428528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01264437 107.06430817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01264438 107.06431580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01264439 107.06433868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01264440 107.06433868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01264441 107.06436157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01264442 107.06436920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01264443 107.06439972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01264444 107.06439972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01264445 107.06442261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01264446 107.06442261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01264447 107.06445313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01264448 107.06445313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01264449 107.06448364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01264450 107.06448364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01264451 107.06450653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01264452 107.06451416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01264453 107.06453705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01264454 107.06453705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01264455 107.06455994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01264456 107.06456757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01264457 107.06459808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01264458 107.06459808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01264459 107.06462097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01264460 107.06462097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01264461 107.06465149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01264462 107.06465149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01264463 107.06468201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01264464 107.06468201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01264465 107.06471252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01264466 107.06471252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01264467 107.06473541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01264468 107.06473541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01264469 107.06475830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01264470 107.06476593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01264471 107.06479645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01264472 107.06479645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01264473 107.06481934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01264474 107.06482697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01264475 107.06484985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01264476 107.06484985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01264477 107.06488037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01264478 107.06488037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01264479 107.06490326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01264480 107.06491089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01264481 107.06493378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01264482 107.06493378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01264483 107.06495667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01264484 107.06496429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01264485 107.06499481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01264486 107.06499481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01264487 107.06501770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01264488 107.06501770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01264489 107.06504059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01264490 107.06504822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01264491 107.06507874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01264492 107.06507874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01264493 107.06510162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01264494 107.06510925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01264495 107.06513214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01264496 107.06513214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01264497 107.06515503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01264498 107.06515503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01264499 107.06518555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01264500 107.06519318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01264501 107.06521606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01264502 107.06521606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01264503 107.06523895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01264504 107.06523895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01264505 107.06526947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01264506 107.06527710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01264507 107.06529999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01264508 107.06529999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01264509 107.06532288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01264510 107.06533051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01264511 107.06535339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01264512 107.06535339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01264513 107.06538391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01264514 107.06538391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01264515 107.06540680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01264516 107.06541443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01264517 107.06543732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01264518 107.06543732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01264519 107.06546783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01264520 107.06547546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01264521 107.06549835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01264522 107.06549835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01264523 107.06552124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01264524 107.06552124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01264525 107.06555176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01264526 107.06555176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01264527 107.06558228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01264528 107.06558228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01264529 107.06560516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01264530 107.06560516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01264531 107.06563568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01264532 107.06563568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01264533 107.06566620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01264534 107.06566620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01264535 107.06568909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01264536 107.06569672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01264537 107.06571960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01264538 107.06571960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01264539 107.06575012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01264540 107.06575012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01264541 107.06577301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01264542 107.06578064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01264543 107.06580353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01264544 107.06580353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01264545 107.06583405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01264546 107.06583405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01264547 107.06586456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01264548 107.06586456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01264549 107.06588745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01264550 107.06588745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01264551 107.06591034 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01264552 107.06591797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01264553 107.06594849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01264554 107.06594849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01264555 107.06597137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01264556 107.06597137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01264557 107.06599426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01264558 107.06600189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01264559 107.06603241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01264560 107.06603241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01264561 107.06605530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01264562 107.06606293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01264563 107.06608582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01264564 107.06608582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01264565 107.06610870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01264566 107.06610870 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01264567 107.06613922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01264568 107.06614685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01264569 107.06616974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01264570 107.06616974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01264571 107.06619263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01264572 107.06619263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01264573 107.06622314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01264574 107.06623077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01264575 107.06625366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01264576 107.06625366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01264577 107.06627655 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01264578 107.06628418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01264579 107.06630707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01264580 107.06630707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01264581 107.06633759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01264582 107.06634521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01264583 107.06636810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01264584 107.06636810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01264585 107.06639099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01264586 107.06639099 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01264587 107.06642151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01264588 107.06642914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01264589 107.06645203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01264590 107.06645203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01264591 107.06647491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01264592 107.06648254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01264593 107.06650543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01264594 107.06650543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01264595 107.06653595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01264596 107.06653595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01264597 107.06655884 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01264598 107.06656647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01264599 107.06658936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01264600 107.06658936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01264601 107.06661987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01264602 107.06662750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01264603 107.06665039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01264604 107.06665039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01264605 107.06667328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01264606 107.06667328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01264607 107.06670380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01264608 107.06670380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01264609 107.06673431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01264610 107.06673431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01264611 107.06675720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01264612 107.06676483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01264613 107.06678772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01264614 107.06678772 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01264615 107.06681824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01264616 107.06681824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01264617 107.06684113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01264618 107.06684875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01264619 107.06687164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01264620 107.06687164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01264621 107.06690216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01264622 107.06690216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01264623 107.06693268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01264624 107.06693268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01264625 107.06695557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01264626 107.06695557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01264627 107.06698608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01264628 107.06698608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01264629 107.06701660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01264630 107.06701660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01264631 107.06703949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01264632 107.06704712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01264633 107.06707001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01264634 107.06707001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01264635 107.06710052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01264636 107.06710052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01264637 107.06712341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01264638 107.06713104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01264639 107.06715393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01264640 107.06715393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01264641 107.06718445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01264642 107.06718445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01264643 107.06721497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01264644 107.06721497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01264645 107.06723785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01264646 107.06723785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01264647 107.06726074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01264648 107.06726837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01264649 107.06729889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01264650 107.06729889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01264651 107.06732178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01264652 107.06732941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01264653 107.06735229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01264654 107.06735229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01264655 107.06738281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01264656 107.06738281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01264657 107.06741333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01264658 107.06741333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01264659 107.06743622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01264660 107.06743622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01264661 107.06745911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01264662 107.06746674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01264663 107.06749725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01264664 107.06749725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01264665 107.06752014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01264666 107.06752777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01264667 107.06755066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01264668 107.06755066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01264669 107.06758118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01264670 107.06758118 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01264671 107.06760406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01264672 107.06761169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01264673 107.06763458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01264674 107.06763458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01264675 107.06765747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01264676 107.06765747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01264677 107.06768799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01264678 107.06769562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01264679 107.06771851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01264680 107.06771851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01264681 107.06774139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01264682 107.06774902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01264683 107.06777954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01264684 107.06777954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01264685 107.06780243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01264686 107.06780243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01264687 107.06782532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01264688 107.06783295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01264689 107.06785583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01264690 107.06785583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01264691 107.06788635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01264692 107.06788635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01264693 107.06790924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01264694 107.06791687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01264695 107.06793976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01264696 107.06793976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01264697 107.06797028 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01264698 107.06797791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01264699 107.06800079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01264700 107.06800079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01264701 107.06802368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01264702 107.06802368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01264703 107.06805420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01264704 107.06805420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01264705 107.06808472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01264706 107.06808472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01264707 107.06810760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01264708 107.06811523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01264709 107.06813812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01264710 107.06813812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01264711 107.06816864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01264712 107.06816864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01264713 107.06819153 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01264714 107.06819916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01264715 107.06822205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01264716 107.06822205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01264717 107.06825256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01264718 107.06825256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01264719 107.06827545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01264720 107.06828308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01264721 107.06830597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01264722 107.06830597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01264723 107.06833649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01264724 107.06833649 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01264725 107.06836700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01264726 107.06836700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01264727 107.06838989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01264728 107.06838989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01264729 107.06841278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01264730 107.06842041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01264731 107.06845093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01264732 107.06845093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01264733 107.06847382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01264734 107.06847382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01264735 107.06849670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01264736 107.06850433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01264737 107.06853485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01264738 107.06853485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01264739 107.06855774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01264740 107.06856537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01264741 107.06858826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01264742 107.06858826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01264743 107.06861115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01264744 107.06861115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01264745 107.06864166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01264746 107.06864929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01264747 107.06867218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01264748 107.06867218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01264749 107.06869507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01264750 107.06870270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01264751 107.06873322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01264752 107.06873322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01264753 107.06875610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01264754 107.06875610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01264755 107.06877899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01264756 107.06878662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01264757 107.06880951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01264758 107.06880951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01264759 107.06884003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01264760 107.06884003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01264761 107.06886292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01264762 107.06887054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01264763 107.06889343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01264764 107.06889343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01264765 107.06892395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01264766 107.06893158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01264767 107.06895447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01264768 107.06895447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01264769 107.06897736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01264770 107.06897736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01264771 107.06900787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01264772 107.06900787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01264773 107.06903839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01264774 107.06903839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01264775 107.06906128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01264776 107.06906128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01264777 107.06909180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01264778 107.06909180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01264779 107.06912231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01264780 107.06912231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01264781 107.06914520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01264782 107.06915283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01264783 107.06917572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01264784 107.06917572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01264785 107.06920624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01264786 107.06920624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01264787 107.06922913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01264788 107.06923676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01264789 107.06925964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01264790 107.06925964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01264791 107.06929016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01264792 107.06929016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01264793 107.06931305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01264794 107.06932068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01264795 107.06934357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01264796 107.06934357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01264797 107.06936646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01264798 107.06937408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01264799 107.06940460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01264800 107.06940460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01264801 107.06942749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01264802 107.06942749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01264803 107.06945801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01264804 107.06945801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01264805 107.06948853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01264806 107.06948853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01264807 107.06951141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01264808 107.06951904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01264809 107.06954193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01264810 107.06954193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01264811 107.06956482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01264812 107.06956482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01264813 107.06959534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01264814 107.06960297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01264815 107.06962585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01264816 107.06962585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01264817 107.06964874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01264818 107.06965637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01264819 107.06968689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01264820 107.06968689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01264821 107.06970978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01264822 107.06970978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01264823 107.06973267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01264824 107.06974030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01264825 107.06976318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01264826 107.06976318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01264827 107.06979370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01264828 107.06980133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01264829 107.06982422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01264830 107.06982422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01264831 107.06984711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01264832 107.06984711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01264833 107.06987762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01264834 107.06988525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01264835 107.06990814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01264836 107.06990814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01264837 107.06993103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01264838 107.06993866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01264839 107.06996155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01264840 107.06996155 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01264841 107.06999207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01264842 107.06999207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01264843 107.07001495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01264844 107.07002258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01264845 107.07004547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01264846 107.07004547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01264847 107.07007599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01264848 107.07008362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01264849 107.07010651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01264850 107.07010651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01264851 107.07012939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01264852 107.07012939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01264853 107.07015991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01264854 107.07015991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01264855 107.07019043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01264856 107.07019043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01264857 107.07021332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01264858 107.07021332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01264859 107.07023621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01264860 107.07024384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01264861 107.07027435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01264862 107.07027435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01264863 107.07029724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01264864 107.07030487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01264865 107.07032776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01264866 107.07032776 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01264867 107.07035828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01264868 107.07035828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01264869 107.07038116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01264870 107.07038879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01264871 107.07041931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01264872 107.07042694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01264873 107.07046509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01264874 107.07047272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01264875 107.07051086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01264876 107.07051849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01264877 107.07054901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01264878 107.07054901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01264879 107.07058716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01264880 107.07058716 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01264881 107.07061005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01264882 107.07061768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01264883 107.07064056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01264884 107.07064056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01264885 107.07067108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01264886 107.07067108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01264887 107.07069397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01264888 107.07070160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01264889 107.07072449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01264890 107.07072449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01264891 107.07075500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01264892 107.07075500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01264893 107.07078552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01264894 107.07078552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01264895 107.07080841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01264896 107.07080841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01264897 107.07083893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01264898 107.07083893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01264899 107.07086945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01264900 107.07086945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01264901 107.07089996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01264902 107.07090759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01264903 107.07093811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01264904 107.07093811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01264905 107.07096100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01264906 107.07096100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01264907 107.07099915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01264908 107.07099915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01264909 107.07103729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01264910 107.07103729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01264911 107.07106781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01264912 107.07106781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01264913 107.07109070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01264914 107.07109070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01264915 107.07111359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01264916 107.07112122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01264917 107.07115173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01264918 107.07115173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01264919 107.07117462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01264920 107.07118225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01264921 107.07120514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01264922 107.07120514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01264923 107.07123566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01264924 107.07123566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01264925 107.07125854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01264926 107.07126617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01264927 107.07128906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01264928 107.07128906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01264929 107.07131195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01264930 107.07131958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01264931 107.07135010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01264932 107.07135010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01264933 107.07137299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01264934 107.07138062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01264935 107.07140350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01264936 107.07140350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01264937 107.07143402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01264938 107.07143402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01264939 107.07146454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01264940 107.07146454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01264941 107.07148743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01264942 107.07148743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01264943 107.07151031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01264944 107.07151794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01264945 107.07154846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01264946 107.07154846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01264947 107.07157135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01264948 107.07157898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01264949 107.07160187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01264950 107.07160187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01264951 107.07163239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01264952 107.07163239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01264953 107.07166290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01264954 107.07166290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01264955 107.07168579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01264956 107.07168579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01264957 107.07170868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01264958 107.07171631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01264959 107.07174683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01264960 107.07174683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01264961 107.07176971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01264962 107.07177734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01264963 107.07180023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01264964 107.07180023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01264965 107.07183075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01264966 107.07183075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01264967 107.07185364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01264968 107.07186127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01264969 107.07188416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01264970 107.07188416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01264971 107.07190704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01264972 107.07191467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01264973 107.07194519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01264974 107.07194519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01264975 107.07196808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01264976 107.07197571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01264977 107.07199860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01264978 107.07199860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01264979 107.07202911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01264980 107.07202911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01264981 107.07205200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01264982 107.07205963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01264983 107.07208252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01264984 107.07208252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01264985 107.07210541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01264986 107.07210541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01264987 107.07213593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01264988 107.07214355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01264989 107.07216644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01264990 107.07216644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01264991 107.07218933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01264992 107.07219696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01264993 107.07222748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01264994 107.07222748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01264995 107.07225037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01264996 107.07225037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01264997 107.07227325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01264998 107.07228088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01264999 107.07230377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01265000 107.07230377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01265001 107.07233429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01265002 107.07233429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01265003 107.07235718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01265004 107.07236481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01265005 107.07238770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01265006 107.07238770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01265007 107.07241821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01265008 107.07242584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01265009 107.07244873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01265010 107.07244873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01265011 107.07247162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01265012 107.07247162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01265013 107.07250214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01265014 107.07250214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01265015 107.07253265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01265016 107.07253265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01265017 107.07255554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01265018 107.07256317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01265019 107.07258606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01265020 107.07258606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01265021 107.07261658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01265022 107.07261658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01265023 107.07263947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01265024 107.07264709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01265025 107.07266998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01265026 107.07266998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01265027 107.07270050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01265028 107.07270050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01265029 107.07273102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01265030 107.07273102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01265031 107.07275391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01265032 107.07276154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01265033 107.07278442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01265034 107.07278442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01265035 107.07281494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01265036 107.07282257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01265037 107.07284546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01265038 107.07284546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01265039 107.07286835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01265040 107.07286835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01265041 107.07289886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01265042 107.07289886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01265043 107.07292938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01265044 107.07292938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01265045 107.07295227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01265046 107.07295990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01265047 107.07298279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01265048 107.07298279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01265049 107.07301331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01265050 107.07301331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01265051 107.07303619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01265052 107.07304382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01265053 107.07306671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01265054 107.07306671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01265055 107.07309723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01265056 107.07309723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01265057 107.07312775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01265058 107.07312775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01265059 107.07315063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01265060 107.07315063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01265061 107.07318115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01265062 107.07318115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01265063 107.07321167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01265064 107.07321167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01265065 107.07323456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01265066 107.07323456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01265067 107.07325745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01265068 107.07326508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01265069 107.07329559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01265070 107.07329559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01265071 107.07331848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01265072 107.07332611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01265073 107.07334900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01265074 107.07334900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01265075 107.07337952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01265076 107.07337952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01265077 107.07340240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01265078 107.07341003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01265079 107.07343292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01265080 107.07343292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01265081 107.07345581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01265082 107.07346344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01265083 107.07349396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01265084 107.07349396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01265085 107.07351685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01265086 107.07351685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01265087 107.07353973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01265088 107.07354736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01265089 107.07357788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01265090 107.07357788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01265091 107.07360077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01265092 107.07360077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01265093 107.07362366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01265094 107.07363129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01265095 107.07365417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01265096 107.07365417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01265097 107.07368469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01265098 107.07369232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01265099 107.07370758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01265100 107.07371521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01265101 107.07373810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01265102 107.07373810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01265103 107.07376862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01265104 107.07377625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01265105 107.07379913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01265106 107.07379913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01265107 107.07382202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01265108 107.07382202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01265109 107.07385254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01265110 107.07385254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01265111 107.07388306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01265112 107.07388306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01265113 107.07390594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01265114 107.07390594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01265115 107.07393646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01265116 107.07393646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01265117 107.07396698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01265118 107.07396698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01265119 107.07398987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01265120 107.07399750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01265121 107.07402039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01265122 107.07402039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01265123 107.07405090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01265124 107.07405090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01265125 107.07407379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01265126 107.07408142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01265127 107.07410431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01265128 107.07410431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01265129 107.07413483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01265130 107.07413483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01265131 107.07415771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01265132 107.07416534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01265133 107.07418823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01265134 107.07418823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01265135 107.07421112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01265136 107.07421112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01265137 107.07424164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01265138 107.07424927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01265139 107.07427216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01265140 107.07427216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01265141 107.07429504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01265142 107.07430267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01265143 107.07433319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01265144 107.07433319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01265145 107.07435608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01265146 107.07435608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01265147 107.07437897 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01265148 107.07438660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01265149 107.07440948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01265150 107.07440948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01265151 107.07444000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01265152 107.07444000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01265153 107.07447052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01265154 107.07447052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01265155 107.07449341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01265156 107.07449341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01265157 107.07452393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01265158 107.07453156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01265159 107.07455444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01265160 107.07455444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01265161 107.07457733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01265162 107.07457733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01265163 107.07460785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01265164 107.07460785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01265165 107.07463837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01265166 107.07463837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01265167 107.07466125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01265168 107.07466888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01265169 107.07469177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01265170 107.07469177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01265171 107.07472229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01265172 107.07472229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01265173 107.07474518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01265174 107.07475281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01265175 107.07477570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01265176 107.07477570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01265177 107.07480621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01265178 107.07480621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01265179 107.07482910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01265180 107.07483673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01265181 107.07485962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01265182 107.07485962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01265183 107.07489014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01265184 107.07489014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01265185 107.07491302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01265186 107.07492065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01265187 107.07494354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01265188 107.07494354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01265189 107.07496643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01265190 107.07497406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01265191 107.07500458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01265192 107.07500458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01265193 107.07502747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01265194 107.07502747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01265195 107.07505035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01265196 107.07505798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01265197 107.07508850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01265198 107.07508850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01265199 107.07511139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01265200 107.07511902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01265201 107.07514191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01265202 107.07514191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01265203 107.07516479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01265204 107.07516479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01265205 107.07519531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01265206 107.07520294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01265207 107.07522583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01265208 107.07522583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01265209 107.07524872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01265210 107.07524872 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01265211 107.07527924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01265212 107.07528687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01265213 107.07530975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01265214 107.07530975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01265215 107.07533264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01265216 107.07534027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01265217 107.07536316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01265218 107.07536316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01265219 107.07539368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01265220 107.07539368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01265221 107.07541656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01265222 107.07542419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01265223 107.07544708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01265224 107.07544708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01265225 107.07547760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01265226 107.07548523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01265227 107.07550812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01265228 107.07550812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01265229 107.07553101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01265230 107.07553101 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01265231 107.07556152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01265232 107.07556152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01265233 107.07559204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01265234 107.07559204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01265235 107.07561493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01265236 107.07562256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01265237 107.07564545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01265238 107.07564545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01265239 107.07567596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01265240 107.07567596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01265241 107.07569885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01265242 107.07570648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01265243 107.07572937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01265244 107.07572937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01265245 107.07575989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01265246 107.07575989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01265247 107.07578278 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01265248 107.07579041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01265249 107.07581329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01265250 107.07581329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01265251 107.07584381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01265252 107.07584381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01265253 107.07587433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01265254 107.07587433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01265255 107.07589722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01265256 107.07589722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01265257 107.07592010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01265258 107.07592773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01265259 107.07595825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01265260 107.07595825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01265261 107.07604980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01265262 107.07605743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01265263 107.07608032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01265264 107.07608032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01265265 107.07611084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01265266 107.07611847 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01265267 107.07614136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01265268 107.07614136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01265269 107.07616425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01265270 107.07616425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01265271 107.07619476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01265272 107.07619476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01265273 107.07622528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01265274 107.07622528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01265275 107.07624817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01265276 107.07625580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01265277 107.07627869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01265278 107.07627869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01265279 107.07630920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01265280 107.07630920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01265281 107.07633209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01265282 107.07633972 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01265283 107.07636261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01265284 107.07636261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01265285 107.07639313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01265286 107.07639313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01265287 107.07641602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01265288 107.07642365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01265289 107.07644653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01265290 107.07644653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01265291 107.07647705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01265292 107.07647705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01265293 107.07650757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01265294 107.07650757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01265295 107.07653046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01265296 107.07653046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01265297 107.07655334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01265298 107.07656097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01265299 107.07659149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01265300 107.07659149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01265301 107.07661438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01265302 107.07661438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01265303 107.07663727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01265304 107.07664490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01265305 107.07667542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01265306 107.07667542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01265307 107.07669830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01265308 107.07670593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01265309 107.07672882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01265310 107.07672882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01265311 107.07675171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01265312 107.07675171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01265313 107.07678223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01265314 107.07678986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01265315 107.07681274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01265316 107.07681274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01265317 107.07683563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01265318 107.07684326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01265319 107.07687378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01265320 107.07687378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01265321 107.07689667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01265322 107.07689667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01265323 107.07691956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01265324 107.07692719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01265325 107.07695007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01265326 107.07695007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01265327 107.07698059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01265328 107.07698059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01265329 107.07700348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01265330 107.07701111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01265331 107.07703400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01265332 107.07703400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01265333 107.07706451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01265334 107.07707214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01265335 107.07709503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01265336 107.07709503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01265337 107.07711792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01265338 107.07711792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01265339 107.07714844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01265340 107.07714844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01265341 107.07717896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01265342 107.07717896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01265343 107.07720184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01265344 107.07720184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01265345 107.07723236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01265346 107.07723236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01265347 107.07726288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01265348 107.07726288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01265349 107.07728577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01265350 107.07729340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01265351 107.07731628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01265352 107.07731628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01265353 107.07734680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01265354 107.07734680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01265355 107.07738495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01265356 107.07738495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01265357 107.07741547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01265358 107.07741547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01265359 107.07743835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01265360 107.07744598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01265361 107.07746887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01265362 107.07746887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01265363 107.07749939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01265364 107.07749939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01265365 107.07752228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01265366 107.07752991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01265367 107.07755280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01265368 107.07755280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01265369 107.07758331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01265370 107.07759094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01265371 107.07761383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01265372 107.07761383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01265373 107.07763672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01265374 107.07763672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01265375 107.07766724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01265376 107.07766724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01265377 107.07769775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01265378 107.07769775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01265379 107.07772064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01265380 107.07772827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01265381 107.07775116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01265382 107.07775116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01265383 107.07778168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01265384 107.07778931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01265385 107.07781219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01265386 107.07781219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01265387 107.07783508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01265388 107.07783508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01265389 107.07786560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01265390 107.07786560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01265391 107.07789612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01265392 107.07789612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01265393 107.07791901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01265394 107.07792664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01265395 107.07794952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01265396 107.07794952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01265397 107.07798004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01265398 107.07798004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01265399 107.07800293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01265400 107.07801056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01265401 107.07803345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01265402 107.07803345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01265403 107.07806396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01265404 107.07806396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01265405 107.07809448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01265406 107.07809448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01265407 107.07811737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01265408 107.07811737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01265409 107.07814026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01265410 107.07814789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01265411 107.07817841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01265412 107.07817841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01265413 107.07820129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01265414 107.07820892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01265415 107.07823181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01265416 107.07823181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01265417 107.07826233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01265418 107.07826233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01265419 107.07828522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01265420 107.07829285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01265421 107.07831573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01265422 107.07831573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01265423 107.07833862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01265424 107.07834625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01265425 107.07837677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01265426 107.07837677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01265427 107.07839966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01265428 107.07839966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01265429 107.07842255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01265430 107.07843018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01265431 107.07846069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01265432 107.07846069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01265433 107.07848358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01265434 107.07849121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01265435 107.07851410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01265436 107.07851410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01265437 107.07853699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01265438 107.07853699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01265439 107.07856750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01265440 107.07857513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01265441 107.07859802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01265442 107.07859802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01265443 107.07862091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01265444 107.07862854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01265445 107.07865906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01265446 107.07865906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01265447 107.07868195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01265448 107.07868195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01265449 107.07870483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01265450 107.07871246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01265451 107.07874298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01265452 107.07874298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01265453 107.07876587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01265454 107.07876587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01265455 107.07878876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01265456 107.07879639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01265457 107.07881927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01265458 107.07881927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01265459 107.07884979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01265460 107.07885742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01265461 107.07887268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01265462 107.07888031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01265463 107.07890320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01265464 107.07890320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01265465 107.07893372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01265466 107.07894135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01265467 107.07896423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01265468 107.07896423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01265469 107.07898712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01265470 107.07898712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01265471 107.07901764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01265472 107.07901764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01265473 107.07904816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01265474 107.07904816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01265475 107.07907104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01265476 107.07907104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01265477 107.07909393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01265478 107.07910156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01265479 107.07913208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01265480 107.07913208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01265481 107.07915497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01265482 107.07916260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01265483 107.07918549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01265484 107.07918549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01265485 107.07921600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01265486 107.07921600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01265487 107.07923889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01265488 107.07924652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01265489 107.07926941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01265490 107.07926941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01265491 107.07929230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01265492 107.07929230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01265493 107.07932281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01265494 107.07933044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01265495 107.07935333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01265496 107.07935333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01265497 107.07937622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01265498 107.07937622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01265499 107.07940674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01265500 107.07941437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01265501 107.07943726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01265502 107.07943726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01265503 107.07946777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01265504 107.07946777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01265505 107.07949066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01265506 107.07949829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01265507 107.07952881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01265508 107.07952881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01265509 107.07955170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01265510 107.07955170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01265511 107.07957458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01265512 107.07958221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01265513 107.07961273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01265514 107.07961273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01265515 107.07963562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01265516 107.07963562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01265517 107.07965851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01265518 107.07966614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01265519 107.07968903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01265520 107.07968903 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01265521 107.07971954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01265522 107.07972717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01265523 107.07975006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01265524 107.07975006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01265525 107.07977295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01265526 107.07977295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01265527 107.07980347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01265528 107.07981110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01265529 107.07983398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01265530 107.07983398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01265531 107.07985687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01265532 107.07986450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01265533 107.07988739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01265534 107.07988739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01265535 107.07991791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01265536 107.07991791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01265537 107.07994080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01265538 107.07994843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01265539 107.07997131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01265540 107.07997131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01265541 107.08000183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01265542 107.08000183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01265543 107.08002472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01265544 107.08003235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01265545 107.08005524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01265546 107.08005524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01265547 107.08008575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01265548 107.08009338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01265549 107.08011627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01265550 107.08011627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01265551 107.08013916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01265552 107.08013916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01265553 107.08016968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01265554 107.08016968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01265555 107.08020020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01265556 107.08020020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01265557 107.08022308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01265558 107.08022308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01265559 107.08024597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01265560 107.08025360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01265561 107.08028412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01265562 107.08028412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01265563 107.08030701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01265564 107.08031464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01265565 107.08033752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01265566 107.08033752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01265567 107.08036804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01265568 107.08036804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01265569 107.08039093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01265570 107.08039856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01265571 107.08042145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01265572 107.08042145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01265573 107.08044434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01265574 107.08045197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01265575 107.08048248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01265576 107.08048248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01265577 107.08050537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01265578 107.08051300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01265579 107.08053589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01265580 107.08053589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01265581 107.08056641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01265582 107.08056641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01265583 107.08058929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01265584 107.08059692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01265585 107.08061981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01265586 107.08061981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01265587 107.08064270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01265588 107.08064270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01265589 107.08067322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01265590 107.08068085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01265591 107.08070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01265592 107.08070374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01265593 107.08072662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01265594 107.08072662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01265595 107.08075714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01265596 107.08076477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01265597 107.08078766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01265598 107.08078766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01265599 107.08081055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01265600 107.08081818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01265601 107.08084106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01265602 107.08084106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01265603 107.08087158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01265604 107.08087158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01265605 107.08089447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01265606 107.08090210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01265607 107.08092499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01265608 107.08092499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01265609 107.08095551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01265610 107.08096313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01265611 107.08098602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01265612 107.08098602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01265613 107.08100891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01265614 107.08100891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01265615 107.08103943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01265616 107.08103943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01265617 107.08106995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01265618 107.08106995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01265619 107.08109283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01265620 107.08110046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01265621 107.08112335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01265622 107.08112335 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01265623 107.08115387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01265624 107.08115387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01265625 107.08117676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01265626 107.08118439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01265627 107.08120728 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01265628 107.08120728 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01265629 107.08123779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01265630 107.08123779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01265631 107.08126068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01265632 107.08126831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01265633 107.08129120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01265634 107.08129120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01265635 107.08132172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01265636 107.08132172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01265637 107.08134460 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01265638 107.08135223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01265639 107.08137512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01265640 107.08137512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01265641 107.08139801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01265642 107.08140564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01265643 107.08143616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01265644 107.08143616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01265645 107.08145905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01265646 107.08145905 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01265647 107.08148193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01265648 107.08148956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01265649 107.08152008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01265650 107.08152008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01265651 107.08154297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01265652 107.08154297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01265653 107.08156586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01265654 107.08157349 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01265655 107.08159637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01265656 107.08159637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01265657 107.08162689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01265658 107.08163452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01265659 107.08165741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01265660 107.08165741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01265661 107.08168030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01265662 107.08168030 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01265663 107.08171082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01265664 107.08171844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01265665 107.08174133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01265666 107.08174133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01265667 107.08176422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01265668 107.08176422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01265669 107.08179474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01265670 107.08179474 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01265671 107.08182526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01265672 107.08182526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01265673 107.08184814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01265674 107.08185577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01265675 107.08187866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01265676 107.08187866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01265677 107.08190918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01265678 107.08190918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01265679 107.08193207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01265680 107.08193970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01265681 107.08196259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01265682 107.08196259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01265683 107.08199310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01265684 107.08199310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01265685 107.08201599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01265686 107.08202362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01265687 107.08204651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01265688 107.08204651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01265689 107.08207703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01265690 107.08207703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01265691 107.08209991 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01265692 107.08210754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01265693 107.08213043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01265694 107.08213043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01265695 107.08215332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01265696 107.08216095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01265697 107.08219147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01265698 107.08219147 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01265699 107.08221436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01265700 107.08221436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01265701 107.08223724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01265702 107.08224487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01265703 107.08227539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01265704 107.08227539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01265705 107.08229828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01265706 107.08229828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01265707 107.08232117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01265708 107.08232880 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01265709 107.08235168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01265710 107.08235168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01265711 107.08238220 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01265712 107.08238983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01265713 107.08240509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01265714 107.08241272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01265715 107.08243561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01265716 107.08243561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01265717 107.08246613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01265718 107.08247375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01265719 107.08249664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01265720 107.08249664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01265721 107.08251953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01265722 107.08251953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01265723 107.08255005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01265724 107.08255005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01265725 107.08258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01265726 107.08258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01265727 107.08260345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01265728 107.08261108 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01265729 107.08263397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01265730 107.08263397 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01265731 107.08266449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01265732 107.08266449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01265733 107.08268738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01265734 107.08269501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01265735 107.08271790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01265736 107.08271790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01265737 107.08274841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01265738 107.08274841 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01265739 107.08277130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01265740 107.08277893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01265741 107.08280182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01265742 107.08280182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01265743 107.08283234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01265744 107.08283234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01265745 107.08286285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01265746 107.08286285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01265747 107.08288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01265748 107.08288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01265749 107.08290863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01265750 107.08291626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01265751 107.08294678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01265752 107.08294678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01265753 107.08296967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01265754 107.08296967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01265755 107.08299255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01265756 107.08300018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01265757 107.08303070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01265758 107.08303070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01265759 107.08305359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01265760 107.08306122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01265761 107.08308411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01265762 107.08308411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01265763 107.08310699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01265764 107.08310699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01265765 107.08313751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01265766 107.08314514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01265767 107.08316803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01265768 107.08316803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01265769 107.08319092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01265770 107.08319092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01265771 107.08322144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01265772 107.08322906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01265773 107.08325195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01265774 107.08325195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01265775 107.08327484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01265776 107.08327484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01265777 107.08330536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01265778 107.08330536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01265779 107.08333588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01265780 107.08333588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01265781 107.08335876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01265782 107.08336639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01265783 107.08338928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01265784 107.08338928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01265785 107.08341980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01265786 107.08341980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01265787 107.08344269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01265788 107.08345032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01265789 107.08347321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01265790 107.08347321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01265791 107.08350372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01265792 107.08350372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01265793 107.08353424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01265794 107.08353424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01265795 107.08355713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01265796 107.08355713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01265797 107.08358765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01265798 107.08358765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01265799 107.08361816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01265800 107.08361816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01265801 107.08364105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01265802 107.08364105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01265803 107.08366394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01265804 107.08367157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01265805 107.08370209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01265806 107.08370209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01265807 107.08372498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01265808 107.08372498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01265809 107.08374786 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01265810 107.08375549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01265811 107.08378601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01265812 107.08378601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01265813 107.08380890 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01265814 107.08381653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01265815 107.08383942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01265816 107.08383942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01265817 107.08386230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01265818 107.08386230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01265819 107.08389282 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01265820 107.08390045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01265821 107.08392334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01265822 107.08392334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01265823 107.08394623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01265824 107.08394623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01265825 107.08397675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01265826 107.08398438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01265827 107.08400726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01265828 107.08400726 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01265829 107.08403015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01265830 107.08403778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01265831 107.08406067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01265832 107.08406067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01265833 107.08409119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01265834 107.08409119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01265835 107.08411407 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01265836 107.08412170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01265837 107.08414459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01265838 107.08414459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01265839 107.08417511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01265840 107.08417511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01265841 107.08419800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01265842 107.08420563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01265843 107.08422852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01265844 107.08423615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01265845 107.08426666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01265846 107.08427429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01265847 107.08429718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01265848 107.08430481 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01265849 107.08433533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01265850 107.08434296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01265851 107.08436584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01265852 107.08436584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01265853 107.08438873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01265854 107.08439636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01265855 107.08441925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01265856 107.08441925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01265857 107.08444977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01265858 107.08445740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01265859 107.08448029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01265860 107.08448029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01265861 107.08450317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01265862 107.08450317 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01265863 107.08453369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01265864 107.08454132 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01265865 107.08456421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01265866 107.08456421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01265867 107.08458710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01265868 107.08459473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01265869 107.08461761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01265870 107.08461761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01265871 107.08464813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01265872 107.08464813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01265873 107.08467102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01265874 107.08467865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01265875 107.08470154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01265876 107.08470154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01265877 107.08473206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01265878 107.08473206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01265879 107.08475494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01265880 107.08476257 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01265881 107.08478546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01265882 107.08478546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01265883 107.08481598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01265884 107.08481598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01265885 107.08483887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01265886 107.08484650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01265887 107.08486938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01265888 107.08486938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01265889 107.08489227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01265890 107.08489990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01265891 107.08493042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01265892 107.08493042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01265893 107.08495331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01265894 107.08495331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01265895 107.08497620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01265896 107.08498383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01265897 107.08501434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01265898 107.08501434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01265899 107.08503723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01265900 107.08503723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01265901 107.08506012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01265902 107.08506775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01265903 107.08509064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01265904 107.08509064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01265905 107.08512115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01265906 107.08512878 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01265907 107.08515167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01265908 107.08515167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01265909 107.08517456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01265910 107.08517456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01265911 107.08520508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01265912 107.08521271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01265913 107.08523560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01265914 107.08523560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01265915 107.08525848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01265916 107.08525848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01265917 107.08528900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01265918 107.08528900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01265919 107.08531952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01265920 107.08531952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01265921 107.08534241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01265922 107.08535004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01265923 107.08537292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01265924 107.08537292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01265925 107.08540344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01265926 107.08540344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01265927 107.08542633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01265928 107.08543396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01265929 107.08545685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01265930 107.08545685 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01265931 107.08548737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01265932 107.08549500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01265933 107.08551788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01265934 107.08551788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01265935 107.08554077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01265936 107.08554840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01265937 107.08557129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01265938 107.08557129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01265939 107.08560181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01265940 107.08560181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01265941 107.08562469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01265942 107.08563232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01265943 107.08565521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01265944 107.08565521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01265945 107.08568573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01265946 107.08568573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01265947 107.08570862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01265948 107.08571625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01265949 107.08573914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01265950 107.08573914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01265951 107.08576965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01265952 107.08576965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01265953 107.08580017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01265954 107.08580017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01265955 107.08582306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01265956 107.08582306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01265957 107.08584595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01265958 107.08585358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01265959 107.08588409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01265960 107.08588409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01265961 107.08590698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01265962 107.08590698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01265963 107.08592987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01265964 107.08593750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01265965 107.08596802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01265966 107.08596802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01265967 107.08599091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01265968 107.08599854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01265969 107.08602142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01265970 107.08602142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01265971 107.08604431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01265972 107.08604431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01265973 107.08607483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01265974 107.08608246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01265975 107.08610535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01265976 107.08610535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01265977 107.08612823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01265978 107.08613586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01265979 107.08616638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01265980 107.08616638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01265981 107.08618927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01265982 107.08618927 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01265983 107.08621216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01265984 107.08621979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01265985 107.08624268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01265986 107.08624268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01265987 107.08627319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01265988 107.08627319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01265989 107.08629608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01265990 107.08630371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01265991 107.08632660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01265992 107.08632660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01265993 107.08635712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01265994 107.08635712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01265995 107.08638000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01265996 107.08638763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01265997 107.08641052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01265998 107.08641052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01265999 107.08644104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01266000 107.08644104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01266001 107.08647156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01266002 107.08647156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01266003 107.08649445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01266004 107.08649445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01266005 107.08652496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01266006 107.08652496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01266007 107.08655548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01266008 107.08655548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01266009 107.08657837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01266010 107.08658600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01266011 107.08660889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01266012 107.08660889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01266013 107.08663940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01266014 107.08663940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01266015 107.08666229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01266016 107.08666992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01266017 107.08669281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01266018 107.08669281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01266019 107.08672333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01266020 107.08672333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01266021 107.08674622 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01266022 107.08675385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01266023 107.08677673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01266024 107.08677673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01266025 107.08679962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01266026 107.08680725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01266027 107.08683777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01266028 107.08683777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01266029 107.08686066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01266030 107.08686066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01266031 107.08688354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01266032 107.08689117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01266033 107.08692169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01266034 107.08692169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01266035 107.08694458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01266036 107.08694458 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01266037 107.08696747 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01266038 107.08697510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01266039 107.08699799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01266040 107.08699799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01266041 107.08702850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01266042 107.08703613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01266043 107.08705902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01266044 107.08705902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01266045 107.08708191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01266046 107.08708191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01266047 107.08711243 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01266048 107.08712006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01266049 107.08714294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01266050 107.08714294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01266051 107.08716583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01266052 107.08716583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01266053 107.08719635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01266054 107.08719635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01266055 107.08722687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01266056 107.08722687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01266057 107.08724976 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01266058 107.08725739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01266059 107.08728027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01266060 107.08728027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01266061 107.08731079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01266062 107.08731079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01266063 107.08733368 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01266064 107.08734131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01266065 107.08736420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01266066 107.08736420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01266067 107.08739471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01266068 107.08739471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01266069 107.08741760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01266070 107.08742523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01266071 107.08744812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01266072 107.08744812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01266073 107.08747864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01266074 107.08747864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01266075 107.08750916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01266076 107.08750916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01266077 107.08753204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01266078 107.08753204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01266079 107.08755493 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01266080 107.08756256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01266081 107.08759308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01266082 107.08759308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01266083 107.08761597 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01266084 107.08762360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01266085 107.08764648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01266086 107.08764648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01266087 107.08767700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01266088 107.08767700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01266089 107.08769989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01266090 107.08770752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01266091 107.08773041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01266092 107.08773041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01266093 107.08775330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01266094 107.08775330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01266095 107.08778381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01266096 107.08779144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01266097 107.08781433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01266098 107.08781433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01266099 107.08783722 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01266100 107.08784485 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01266101 107.08786774 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01266102 107.08787537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01266103 107.08789825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01266104 107.08789825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01266105 107.08792114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01266106 107.08792877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01266107 107.08795166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01266108 107.08795166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01266109 107.08798218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01266110 107.08798218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01266111 107.08800507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01266112 107.08801270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01266113 107.08803558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01266114 107.08803558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01266115 107.08806610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01266116 107.08806610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01266117 107.08808899 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01266118 107.08809662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01266119 107.08811951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01266120 107.08811951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01266121 107.08815002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01266122 107.08815002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01266123 107.08817291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01266124 107.08818054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01266125 107.08820343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01266126 107.08820343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01266127 107.08823395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01266128 107.08823395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01266129 107.08826447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01266130 107.08826447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01266131 107.08828735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01266132 107.08828735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01266133 107.08831024 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01266134 107.08831787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01266135 107.08834839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01266136 107.08834839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01266137 107.08837128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01266138 107.08837128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01266139 107.08839417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01266140 107.08840179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01266141 107.08843231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01266142 107.08843231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01266143 107.08845520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01266144 107.08846283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01266145 107.08848572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01266146 107.08848572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01266147 107.08850861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01266148 107.08850861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01266149 107.08853912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01266150 107.08854675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01266151 107.08856964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01266152 107.08856964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01266153 107.08859253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01266154 107.08859253 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01266155 107.08862305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01266156 107.08863068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01266157 107.08865356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01266158 107.08865356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01266159 107.08867645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01266160 107.08868408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01266161 107.08870697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01266162 107.08870697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01266163 107.08873749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01266164 107.08873749 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01266165 107.08876038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01266166 107.08876801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01266167 107.08879089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01266168 107.08879089 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01266169 107.08882141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01266170 107.08882141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01266171 107.08884430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01266172 107.08885193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01266173 107.08887482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01266174 107.08887482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01266175 107.08890533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01266176 107.08890533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01266177 107.08892822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01266178 107.08893585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01266179 107.08895874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01266180 107.08895874 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01266181 107.08898926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01266182 107.08898926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01266183 107.08901978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01266184 107.08901978 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01266185 107.08904266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01266186 107.08904266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01266187 107.08906555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01266188 107.08907318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01266189 107.08910370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01266190 107.08910370 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01266191 107.08912659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01266192 107.08912659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01266193 107.08914948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01266194 107.08915710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01266195 107.08918762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01266196 107.08918762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01266197 107.08921051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01266198 107.08921814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01266199 107.08924103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01266200 107.08924103 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01266201 107.08926392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01266202 107.08926392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01266203 107.08929443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01266204 107.08930206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01266205 107.08932495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01266206 107.08932495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01266207 107.08934784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01266208 107.08934784 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01266209 107.08937836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01266210 107.08938599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01266211 107.08940887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01266212 107.08940887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01266213 107.08943176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01266214 107.08943939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01266215 107.08946228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01266216 107.08946228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01266217 107.08949280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01266218 107.08949280 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01266219 107.08951569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01266220 107.08952332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01266221 107.08954620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01266222 107.08954620 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01266223 107.08957672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01266224 107.08958435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01266225 107.08960724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01266226 107.08960724 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01266227 107.08963013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01266228 107.08963013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01266229 107.08966064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01266230 107.08966064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01266231 107.08969116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01266232 107.08969116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01266233 107.08971405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01266234 107.08972168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01266235 107.08974457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01266236 107.08974457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01266237 107.08977509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01266238 107.08977509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01266239 107.08979797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01266240 107.08980560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01266241 107.08982849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01266242 107.08982849 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01266243 107.08985901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01266244 107.08985901 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01266245 107.08988190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01266246 107.08988953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01266247 107.08991241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01266248 107.08991241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01266249 107.08994293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01266250 107.08994293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01266251 107.08996582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01266252 107.08997345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01266253 107.08999634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01266254 107.08999634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01266255 107.09001923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01266256 107.09002686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01266257 107.09005737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01266258 107.09005737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01266259 107.09008026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01266260 107.09008026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01266261 107.09010315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01266262 107.09011078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01266263 107.09014130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01266264 107.09014130 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01266265 107.09016418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01266266 107.09016418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01266267 107.09018707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01266268 107.09019470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01266269 107.09021759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01266270 107.09021759 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01266271 107.09024811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01266272 107.09025574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01266273 107.09027863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01266274 107.09027863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01266275 107.09030151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01266276 107.09030151 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01266277 107.09033203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01266278 107.09033966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01266279 107.09036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01266280 107.09036255 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01266281 107.09038544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01266282 107.09038544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01266283 107.09041595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01266284 107.09041595 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01266285 107.09044647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01266286 107.09044647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01266287 107.09046936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01266288 107.09047699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01266289 107.09049988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01266290 107.09049988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01266291 107.09053040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01266292 107.09053040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01266293 107.09055328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01266294 107.09056091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01266295 107.09058380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01266296 107.09058380 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01266297 107.09061432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01266298 107.09061432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01266299 107.09065247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01266300 107.09066010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01266301 107.09069061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01266302 107.09069061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01266303 107.09073639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01266304 107.09073639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01266305 107.09076691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01266306 107.09076691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01266307 107.09078979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01266308 107.09078979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01266309 107.09081268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01266310 107.09082031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01266311 107.09085083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01266312 107.09085083 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01266313 107.09087372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01266314 107.09088135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01266315 107.09090424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01266316 107.09090424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01266317 107.09093475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01266318 107.09093475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01266319 107.09096527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01266320 107.09096527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01266321 107.09098816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01266322 107.09098816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01266323 107.09101105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01266324 107.09101868 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01266325 107.09104919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01266326 107.09104919 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01266327 107.09107208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01266328 107.09107208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01266329 107.09109497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01266330 107.09110260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01266331 107.09113312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01266332 107.09113312 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01266333 107.09115601 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01266334 107.09116364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01266335 107.09118652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01266336 107.09118652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01266337 107.09120941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01266338 107.09121704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01266339 107.09124756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01266340 107.09124756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01266341 107.09127045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01266342 107.09127045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01266343 107.09129333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01266344 107.09130096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01266345 107.09133148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01266346 107.09133148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01266347 107.09135437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01266348 107.09136200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01266349 107.09138489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01266350 107.09138489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01266351 107.09140778 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01266352 107.09141541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01266353 107.09144592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01266354 107.09144592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01266355 107.09146881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01266356 107.09146881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01266357 107.09149170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01266358 107.09149933 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01266359 107.09152985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01266360 107.09152985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01266361 107.09155273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01266362 107.09156036 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01266363 107.09158325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01266364 107.09158325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01266365 107.09160614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01266366 107.09161377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01266367 107.09164429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01266368 107.09164429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01266369 107.09166718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01266370 107.09166718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01266371 107.09169006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01266372 107.09169769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01266373 107.09172821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01266374 107.09172821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01266375 107.09175110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01266376 107.09175873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01266377 107.09178162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01266378 107.09178162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01266379 107.09180450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01266380 107.09180450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01266381 107.09183502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01266382 107.09184265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01266383 107.09186554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01266384 107.09186554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01266385 107.09188843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01266386 107.09189606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01266387 107.09192657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01266388 107.09192657 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01266389 107.09194946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01266390 107.09194946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01266391 107.09197235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01266392 107.09197998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01266393 107.09200287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01266394 107.09200287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01266395 107.09203339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01266396 107.09204102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01266397 107.09206390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01266398 107.09206390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01266399 107.09208679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01266400 107.09209442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01266401 107.09212494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01266402 107.09212494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01266403 107.09214783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01266404 107.09214783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01266405 107.09217834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01266406 107.09217834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01266407 107.09220123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01266408 107.09220123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01266409 107.09223175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01266410 107.09223938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01266411 107.09226227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01266412 107.09226227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01266413 107.09228516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01266414 107.09228516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01266415 107.09231567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01266416 107.09232330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01266417 107.09234619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01266418 107.09234619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01266419 107.09236908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01266420 107.09237671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01266421 107.09239960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01266422 107.09239960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01266423 107.09243011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01266424 107.09243011 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01266425 107.09246063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01266426 107.09246063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01266427 107.09248352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01266428 107.09248352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01266429 107.09251404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01266430 107.09252167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01266431 107.09254456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01266432 107.09254456 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01266433 107.09256744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01266434 107.09257507 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01266435 107.09259796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01266436 107.09259796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01266437 107.09262848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01266438 107.09262848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01266439 107.09265137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01266440 107.09265900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01266441 107.09268188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01266442 107.09268188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01266443 107.09271240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01266444 107.09272003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01266445 107.09274292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01266446 107.09274292 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01266447 107.09276581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01266448 107.09276581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01266449 107.09279633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01266450 107.09279633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01266451 107.09282684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01266452 107.09282684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01266453 107.09284973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01266454 107.09284973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01266455 107.09288025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01266456 107.09288025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01266457 107.09291077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01266458 107.09291077 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01266459 107.09293365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01266460 107.09294128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01266461 107.09296417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01266462 107.09296417 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01266463 107.09299469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01266464 107.09299469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01266465 107.09301758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01266466 107.09302521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01266467 107.09304810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01266468 107.09304810 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01266469 107.09307861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01266470 107.09307861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01266471 107.09310150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01266472 107.09310913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01266473 107.09313202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01266474 107.09313202 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01266475 107.09315491 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01266476 107.09316254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01266477 107.09319305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01266478 107.09319305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01266479 107.09321594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01266480 107.09321594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01266481 107.09323883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01266482 107.09324646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01266483 107.09327698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01266484 107.09327698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01266485 107.09329987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01266486 107.09329987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01266487 107.09332275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01266488 107.09333038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01266489 107.09335327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01266490 107.09335327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01266491 107.09338379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01266492 107.09339142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01266493 107.09341431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01266494 107.09341431 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01266495 107.09343719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01266496 107.09344482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01266497 107.09347534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01266498 107.09347534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01266499 107.09349823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01266500 107.09349823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01266501 107.09352112 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01266502 107.09352875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01266503 107.09355164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01266504 107.09355164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01266505 107.09358215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01266506 107.09358215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01266507 107.09360504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01266508 107.09361267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01266509 107.09363556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01266510 107.09363556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01266511 107.09366608 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01266512 107.09367371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01266513 107.09369659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01266514 107.09369659 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01266515 107.09371948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01266516 107.09371948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01266517 107.09375000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01266518 107.09375000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01266519 107.09378052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01266520 107.09378052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01266521 107.09380341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01266522 107.09380341 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01266523 107.09383392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01266524 107.09383392 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01266525 107.09386444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01266526 107.09386444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01266527 107.09388733 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01266528 107.09389496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01266529 107.09391785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01266530 107.09391785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01266531 107.09394836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01266532 107.09394836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01266533 107.09397125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01266534 107.09397888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01266535 107.09400177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01266536 107.09400177 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01266537 107.09403229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01266538 107.09403229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01266539 107.09405518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01266540 107.09406281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01266541 107.09408569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01266542 107.09408569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01266543 107.09410858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01266544 107.09411621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01266545 107.09414673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01266546 107.09414673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01266547 107.09416962 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01266548 107.09417725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01266549 107.09420013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01266550 107.09420013 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01266551 107.09423065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01266552 107.09423065 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01266553 107.09425354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01266554 107.09426117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01266555 107.09428406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01266556 107.09428406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01266557 107.09430695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01266558 107.09430695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01266559 107.09433746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01266560 107.09434509 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01266561 107.09436798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01266562 107.09436798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01266563 107.09439087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01266564 107.09439850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01266565 107.09442902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01266566 107.09442902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01266567 107.09445190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01266568 107.09445190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01266569 107.09448242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01266570 107.09448242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01266571 107.09450531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01266572 107.09451294 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01266573 107.09454346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01266574 107.09454346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01266575 107.09456635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01266576 107.09456635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01266577 107.09458923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01266578 107.09459686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01266579 107.09462738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01266580 107.09462738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01266581 107.09465027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01266582 107.09465790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01266583 107.09467316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01266584 107.09468079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01266585 107.09470367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01266586 107.09470367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01266587 107.09473419 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01266588 107.09474182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01266589 107.09476471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01266590 107.09476471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01266591 107.09478760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01266592 107.09478760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01266593 107.09481812 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01266594 107.09482574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01266595 107.09484863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01266596 107.09484863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01266597 107.09487152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01266598 107.09487152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01266599 107.09490204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01266600 107.09490204 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01266601 107.09493256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01266602 107.09493256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01266603 107.09495544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01266604 107.09496307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01266605 107.09498596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01266606 107.09498596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01266607 107.09501648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01266608 107.09501648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01266609 107.09503937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01266610 107.09504700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01266611 107.09506989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01266612 107.09506989 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01266613 107.09510040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01266614 107.09510040 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01266615 107.09512329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01266616 107.09513092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01266617 107.09515381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01266618 107.09515381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01266619 107.09518433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01266620 107.09518433 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01266621 107.09521484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01266622 107.09521484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01266623 107.09523773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01266624 107.09523773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01266625 107.09526062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01266626 107.09526825 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01266627 107.09529877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01266628 107.09529877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01266629 107.09532166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01266630 107.09532928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01266631 107.09534454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01266632 107.09535217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01266633 107.09538269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01266634 107.09538269 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01266635 107.09540558 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01266636 107.09541321 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01266637 107.09543610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01266638 107.09543610 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01266639 107.09545898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01266640 107.09546661 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01266641 107.09548950 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01266642 107.09549713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01266643 107.09552002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01266644 107.09552002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01266645 107.09554291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01266646 107.09555054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01266647 107.09558105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01266648 107.09558105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01266649 107.09560394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01266650 107.09560394 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01266651 107.09562683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01266652 107.09563446 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01266653 107.09565735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01266654 107.09565735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01266655 107.09568787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01266656 107.09569550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01266657 107.09571838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01266658 107.09571838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01266659 107.09574127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01266660 107.09574127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01266661 107.09577179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01266662 107.09577942 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01266663 107.09580231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01266664 107.09580231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01266665 107.09582520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01266666 107.09582520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01266667 107.09585571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01266668 107.09585571 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01266669 107.09588623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01266670 107.09588623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01266671 107.09590912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01266672 107.09591675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01266673 107.09593964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01266674 107.09593964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01266675 107.09597015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01266676 107.09597015 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01266677 107.09599304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01266678 107.09600067 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01266679 107.09602356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01266680 107.09602356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01266681 107.09605408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01266682 107.09605408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01266683 107.09608459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01266684 107.09608459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01266685 107.09610748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01266686 107.09610748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01266687 107.09613800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01266688 107.09613800 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01266689 107.09616852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01266690 107.09616852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01266691 107.09619141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01266692 107.09619141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01266693 107.09621429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01266694 107.09622192 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01266695 107.09625244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01266696 107.09625244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01266697 107.09627533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01266698 107.09628296 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01266699 107.09630585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01266700 107.09630585 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01266701 107.09633636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01266702 107.09633636 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01266703 107.09635925 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01266704 107.09636688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01266705 107.09638977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01266706 107.09638977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01266707 107.09641266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01266708 107.09641266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01266709 107.09645081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01266710 107.09645081 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01266711 107.09647369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01266712 107.09647369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01266713 107.09649658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01266714 107.09650421 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01266715 107.09653473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01266716 107.09653473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01266717 107.09655762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01266718 107.09656525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01266719 107.09658813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01266720 107.09658813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01266721 107.09661102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01266722 107.09661102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01266723 107.09664154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01266724 107.09664917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01266725 107.09667206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01266726 107.09667206 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01266727 107.09669495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01266728 107.09669495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01266729 107.09672546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01266730 107.09673309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01266731 107.09675598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01266732 107.09675598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01266733 107.09677887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01266734 107.09678650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01266735 107.09680939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01266736 107.09680939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01266737 107.09683990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01266738 107.09683990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01266739 107.09686279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01266740 107.09687042 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01266741 107.09689331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01266742 107.09689331 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01266743 107.09692383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01266744 107.09692383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01266745 107.09694672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01266746 107.09695435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01266747 107.09697723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01266748 107.09697723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01266749 107.09700775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01266750 107.09700775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01266751 107.09703827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01266752 107.09703827 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01266753 107.09706116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01266754 107.09706116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01266755 107.09709167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01266756 107.09709167 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01266757 107.09712219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01266758 107.09712219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01266759 107.09714508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01266760 107.09715271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01266761 107.09717560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01266762 107.09717560 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01266763 107.09720612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01266764 107.09720612 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01266765 107.09722900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01266766 107.09723663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01266767 107.09725952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01266768 107.09725952 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01266769 107.09729004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01266770 107.09729004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01266771 107.09732056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01266772 107.09732056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01266773 107.09734344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01266774 107.09734344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01266775 107.09736633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01266776 107.09737396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01266777 107.09740448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01266778 107.09740448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01266779 107.09742737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01266780 107.09742737 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01266781 107.09745026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01266782 107.09745789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01266783 107.09748840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01266784 107.09748840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01266785 107.09751129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01266786 107.09751892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01266787 107.09754181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01266788 107.09754181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01266789 107.09756470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01266790 107.09756470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01266791 107.09759521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01266792 107.09760284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01266793 107.09762573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01266794 107.09762573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01266795 107.09764862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01266796 107.09764862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01266797 107.09767914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01266798 107.09768677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01266799 107.09770966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01266800 107.09770966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01266801 107.09773254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01266802 107.09774017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01266803 107.09776306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01266804 107.09776306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01266805 107.09779358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01266806 107.09779358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01266807 107.09781647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01266808 107.09782410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01266809 107.09784698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01266810 107.09784698 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01266811 107.09787750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01266812 107.09788513 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01266813 107.09790802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01266814 107.09790802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01266815 107.09793091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01266816 107.09793091 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01266817 107.09796143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01266818 107.09796143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01266819 107.09799194 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01266820 107.09799194 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01266821 107.09801483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01266822 107.09801483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01266823 107.09804535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01266824 107.09804535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01266825 107.09807587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01266826 107.09807587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01266827 107.09809875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01266828 107.09810638 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01266829 107.09814453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01266830 107.09814453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01266831 107.09816742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01266832 107.09817505 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01266833 107.09819794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01266834 107.09819794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01266835 107.09824371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01266836 107.09824371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01266837 107.09826660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01266838 107.09827423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01266839 107.09829712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01266840 107.09829712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01266841 107.09832001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01266842 107.09832001 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01266843 107.09835052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01266844 107.09835815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01266845 107.09838104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01266846 107.09838104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01266847 107.09840393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01266848 107.09840393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01266849 107.09844208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01266850 107.09844208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01266851 107.09846497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01266852 107.09846497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01266853 107.09848785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01266854 107.09849548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01266855 107.09851837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01266856 107.09851837 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01266857 107.09854889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01266858 107.09855652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01266859 107.09857941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01266860 107.09857941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01266861 107.09860229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01266862 107.09860992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01266863 107.09864044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01266864 107.09864044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01266865 107.09867096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01266866 107.09867859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01266867 107.09870148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01266868 107.09870148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01266869 107.09872437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01266870 107.09872437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01266871 107.09875488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01266872 107.09875488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01266873 107.09878540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01266874 107.09878540 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01266875 107.09880829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01266876 107.09880829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01266877 107.09883881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01266878 107.09883881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01266879 107.09886932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01266880 107.09886932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01266881 107.09889221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01266882 107.09889984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01266883 107.09892273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01266884 107.09892273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01266885 107.09895325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01266886 107.09895325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01266887 107.09898376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01266888 107.09898376 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01266889 107.09900665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01266890 107.09900665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01266891 107.09903717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01266892 107.09903717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01266893 107.09906769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01266894 107.09906769 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01266895 107.09909058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01266896 107.09909821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01266897 107.09912109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01266898 107.09912109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01266899 107.09915161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01266900 107.09915161 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01266901 107.09917450 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01266902 107.09918213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01266903 107.09920502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01266904 107.09920502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01266905 107.09923553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01266906 107.09923553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01266907 107.09925842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01266908 107.09926605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01266909 107.09928894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01266910 107.09928894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01266911 107.09931183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01266912 107.09931946 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01266913 107.09934998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01266914 107.09934998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01266915 107.09937286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01266916 107.09937286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01266917 107.09939575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01266918 107.09940338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01266919 107.09943390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01266920 107.09943390 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01266921 107.09945679 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01266922 107.09946442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01266923 107.09948730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01266924 107.09948730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01266925 107.09951019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01266926 107.09951019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01266927 107.09954071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01266928 107.09954834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01266929 107.09957123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01266930 107.09957123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01266931 107.09959412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01266932 107.09959412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01266933 107.09963226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01266934 107.09963226 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01266935 107.09965515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01266936 107.09965515 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01266937 107.09967804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01266938 107.09968567 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01266939 107.09970856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01266940 107.09970856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01266941 107.09973907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01266942 107.09973907 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01266943 107.09976196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01266944 107.09976959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01266945 107.09979248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01266946 107.09979248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01266947 107.09982300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01266948 107.09982300 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01266949 107.09984589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01266950 107.09985352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01266951 107.09987640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01266952 107.09987640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01266953 107.09990692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01266954 107.09990692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01266955 107.09993744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01266956 107.09993744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01266957 107.09996033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01266958 107.09996033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01266959 107.09999084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01266960 107.09999084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01266961 107.10002136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01266962 107.10002136 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01266963 107.10004425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01266964 107.10004425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01266965 107.10006714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01266966 107.10007477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01266967 107.10010529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01266968 107.10010529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01266969 107.10012817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01266970 107.10013580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01266971 107.10015869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01266972 107.10015869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01266973 107.10018921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01266974 107.10018921 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01266975 107.10021210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01266976 107.10021973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01266977 107.10024261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01266978 107.10024261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01266979 107.10026550 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01266980 107.10027313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01266981 107.10030365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01266982 107.10030365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01266983 107.10032654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01266984 107.10032654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01266985 107.10034943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01266986 107.10035706 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01266987 107.10038757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01266988 107.10038757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01266989 107.10041046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01266990 107.10041046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01266991 107.10044098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01266992 107.10044098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01266993 107.10046387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01266994 107.10046387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01266995 107.10049438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01266996 107.10050201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01266997 107.10052490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01266998 107.10052490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01266999 107.10054779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01267000 107.10054779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01267001 107.10057831 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01267002 107.10058594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01267003 107.10060883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01267004 107.10060883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01267005 107.10063171 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01267006 107.10063934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01267007 107.10066223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01267008 107.10066223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01267009 107.10069275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01267010 107.10069275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01267011 107.10071564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01267012 107.10072327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01267013 107.10074615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01267014 107.10074615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01267015 107.10077667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01267016 107.10077667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01267017 107.10079956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01267018 107.10080719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01267019 107.10083008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01267020 107.10083008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01267021 107.10086060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01267022 107.10086060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01267023 107.10089111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01267024 107.10089111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01267025 107.10091400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01267026 107.10091400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01267027 107.10094452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01267028 107.10094452 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01267029 107.10097504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01267030 107.10097504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01267031 107.10099792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01267032 107.10099792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01267033 107.10102844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01267034 107.10102844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01267035 107.10105896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01267036 107.10105896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01267037 107.10108185 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01267038 107.10108948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01267039 107.10111237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01267040 107.10111237 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01267041 107.10114288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01267042 107.10114288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01267043 107.10117340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01267044 107.10117340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01267045 107.10119629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01267046 107.10119629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01267047 107.10121918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01267048 107.10122681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01267049 107.10125732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01267050 107.10125732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01267051 107.10128021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01267052 107.10128021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01267053 107.10130310 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01267054 107.10131073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01267055 107.10134125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01267056 107.10134125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01267057 107.10136414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01267058 107.10136414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01267059 107.10138702 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01267060 107.10139465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01267061 107.10141754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01267062 107.10141754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01267063 107.10144806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01267064 107.10145569 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01267065 107.10147858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01267066 107.10147858 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01267067 107.10150146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01267068 107.10150909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01267069 107.10153961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01267070 107.10153961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01267071 107.10156250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01267072 107.10156250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01267073 107.10158539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01267074 107.10159302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01267075 107.10161591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01267076 107.10161591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01267077 107.10164642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01267078 107.10165405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01267079 107.10167694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01267080 107.10167694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01267081 107.10169983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01267082 107.10169983 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01267083 107.10173035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01267084 107.10173798 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01267085 107.10176086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01267086 107.10176086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01267087 107.10178375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01267088 107.10179138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01267089 107.10181427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01267090 107.10181427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01267091 107.10184479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01267092 107.10184479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01267093 107.10186768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01267094 107.10187531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01267095 107.10189819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01267096 107.10189819 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01267097 107.10192871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01267098 107.10192871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01267099 107.10195160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01267100 107.10195923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01267101 107.10198212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01267102 107.10198212 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01267103 107.10201263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01267104 107.10201263 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01267105 107.10203552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01267106 107.10204315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01267107 107.10206604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01267108 107.10206604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01267109 107.10209656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01267110 107.10209656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01267111 107.10212708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01267112 107.10212708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01267113 107.10214996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01267114 107.10214996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01267115 107.10217285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01267116 107.10218048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01267117 107.10221100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01267118 107.10221100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01267119 107.10223389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01267120 107.10223389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01267121 107.10225677 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01267122 107.10226440 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01267123 107.10229492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01267124 107.10229492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01267125 107.10231781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01267126 107.10232544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01267127 107.10234833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01267128 107.10234833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01267129 107.10237122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01267130 107.10237122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01267131 107.10240173 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01267132 107.10240936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01267133 107.10243225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01267134 107.10243225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01267135 107.10245514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01267136 107.10246277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01267137 107.10249329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01267138 107.10249329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01267139 107.10251617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01267140 107.10251617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01267141 107.10253906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01267142 107.10254669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01267143 107.10256958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01267144 107.10256958 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01267145 107.10260010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01267146 107.10260010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01267147 107.10262299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01267148 107.10263062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01267149 107.10265350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01267150 107.10265350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01267151 107.10268402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01267152 107.10269165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01267153 107.10271454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01267154 107.10271454 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01267155 107.10273743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01267156 107.10273743 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01267157 107.10276794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01267158 107.10276794 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01267159 107.10279846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01267160 107.10279846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01267161 107.10282135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01267162 107.10282898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01267163 107.10285187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01267164 107.10285187 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01267165 107.10288239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01267166 107.10288239 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01267167 107.10290527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01267168 107.10291290 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01267169 107.10293579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01267170 107.10293579 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01267171 107.10296631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01267172 107.10296631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01267173 107.10299683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01267174 107.10299683 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01267175 107.10301971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01267176 107.10301971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01267177 107.10304260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01267178 107.10305023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01267179 107.10308075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01267180 107.10308075 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01267181 107.10310364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01267182 107.10310364 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01267183 107.10312653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01267184 107.10313416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01267185 107.10316467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01267186 107.10316467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01267187 107.10318756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01267188 107.10319519 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01267189 107.10321808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01267190 107.10321808 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01267191 107.10324860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01267192 107.10324860 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01267193 107.10327148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01267194 107.10327911 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01267195 107.10330200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01267196 107.10330200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01267197 107.10332489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01267198 107.10332489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01267199 107.10335541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01267200 107.10336304 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01267201 107.10338593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01267202 107.10338593 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01267203 107.10340881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01267204 107.10341644 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01267205 107.10344696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01267206 107.10344696 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01267207 107.10346985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01267208 107.10346985 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01267209 107.10349274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01267210 107.10350037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01267211 107.10352325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01267212 107.10352325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01267213 107.10355377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01267214 107.10356140 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01267215 107.10358429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01267216 107.10358429 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01267217 107.10360718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01267218 107.10360718 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01267219 107.10363770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01267220 107.10364532 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01267221 107.10366821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01267222 107.10366821 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01267223 107.10369110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01267224 107.10369110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01267225 107.10372162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01267226 107.10372162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01267227 107.10375214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01267228 107.10375214 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01267229 107.10377502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01267230 107.10378265 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01267231 107.10380554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01267232 107.10380554 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01267233 107.10383606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01267234 107.10383606 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01267235 107.10385895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01267236 107.10386658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01267237 107.10388947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01267238 107.10388947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01267239 107.10391998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01267240 107.10391998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01267241 107.10394287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01267242 107.10395050 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01267243 107.10397339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01267244 107.10397339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01267245 107.10399628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01267246 107.10400391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01267247 107.10403442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01267248 107.10403442 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01267249 107.10405731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01267250 107.10405731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01267251 107.10408020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01267252 107.10408783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01267253 107.10411835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01267254 107.10411835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01267255 107.10414124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01267256 107.10414886 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01267257 107.10417175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01267258 107.10417175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01267259 107.10419464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01267260 107.10419464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01267261 107.10422516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01267262 107.10423279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01267263 107.10425568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01267264 107.10425568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01267265 107.10427856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01267266 107.10427856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01267267 107.10430908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01267268 107.10431671 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01267269 107.10433960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01267270 107.10433960 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01267271 107.10436249 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01267272 107.10437012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01267273 107.10439301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01267274 107.10439301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01267275 107.10442352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01267276 107.10442352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01267277 107.10444641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01267278 107.10445404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01267279 107.10449982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01267280 107.10449982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01267281 107.10452271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01267282 107.10452271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01267283 107.10455322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01267284 107.10455322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01267285 107.10458374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01267286 107.10458374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01267287 107.10460663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01267288 107.10460663 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01267289 107.10463715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01267290 107.10463715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01267291 107.10466766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01267292 107.10466766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01267293 107.10469055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01267294 107.10469818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01267295 107.10472107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01267296 107.10472107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01267297 107.10475159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01267298 107.10475159 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01267299 107.10477448 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01267300 107.10478210 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01267301 107.10480499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01267302 107.10480499 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01267303 107.10483551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01267304 107.10483551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01267305 107.10485840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01267306 107.10486603 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01267307 107.10488892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01267308 107.10488892 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01267309 107.10491180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01267310 107.10491943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01267311 107.10494995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01267312 107.10494995 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01267313 107.10497284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01267314 107.10497284 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01267315 107.10499573 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01267316 107.10500336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01267317 107.10503387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01267318 107.10503387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01267319 107.10506439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01267320 107.10506439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01267321 107.10511017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01267322 107.10511017 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01267323 107.10514069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01267324 107.10514069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01267325 107.10517120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01267326 107.10517883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01267327 107.10520935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01267328 107.10520935 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01267329 107.10523224 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01267330 107.10523987 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01267331 107.10527039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01267332 107.10527039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01267333 107.10529327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01267334 107.10529327 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01267335 107.10531616 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01267336 107.10532379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01267337 107.10534668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01267338 107.10534668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01267339 107.10537720 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01267340 107.10538483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01267341 107.10540771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01267342 107.10540771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01267343 107.10543060 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01267344 107.10543823 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01267345 107.10546875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01267346 107.10546875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01267347 107.10549164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01267348 107.10549164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01267349 107.10552216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01267350 107.10552216 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01267351 107.10555267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01267352 107.10555267 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01267353 107.10558319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01267354 107.10559082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01267355 107.10561371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01267356 107.10561371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01267357 107.10563660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01267358 107.10563660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01267359 107.10566711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01267360 107.10566711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01267361 107.10569763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01267362 107.10569763 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01267363 107.10572052 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01267364 107.10572815 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01267365 107.10575104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01267366 107.10575104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01267367 107.10578156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01267368 107.10578156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01267369 107.10580444 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01267370 107.10581207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01267371 107.10583496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01267372 107.10583496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01267373 107.10586548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01267374 107.10586548 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01267375 107.10589600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01267376 107.10589600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01267377 107.10591888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01267378 107.10591888 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01267379 107.10594940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01267380 107.10594940 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01267381 107.10597992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01267382 107.10597992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01267383 107.10600281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01267384 107.10601044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01267385 107.10603333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01267386 107.10603333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01267387 107.10606384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01267388 107.10606384 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01267389 107.10608673 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01267390 107.10609436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01267391 107.10611725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01267392 107.10611725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01267393 107.10614777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01267394 107.10614777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01267395 107.10617828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01267396 107.10617828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01267397 107.10620117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01267398 107.10620117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01267399 107.10622406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01267400 107.10623169 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01267401 107.10626221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01267402 107.10626221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01267403 107.10628510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01267404 107.10629272 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01267405 107.10631561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01267406 107.10631561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01267407 107.10634613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01267408 107.10634613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01267409 107.10637665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01267410 107.10637665 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01267411 107.10639954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01267412 107.10639954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01267413 107.10642242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01267414 107.10643005 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01267415 107.10646057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01267416 107.10646057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01267417 107.10648346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01267418 107.10649109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01267419 107.10651398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01267420 107.10651398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01267421 107.10654449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01267422 107.10654449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01267423 107.10657501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01267424 107.10657501 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01267425 107.10659790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01267426 107.10659790 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01267427 107.10662079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01267428 107.10662842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01267429 107.10665894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01267430 107.10665894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01267431 107.10668182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01267432 107.10668182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01267433 107.10670471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01267434 107.10671234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01267435 107.10674286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01267436 107.10674286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01267437 107.10676575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01267438 107.10677338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01267439 107.10679626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01267440 107.10679626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01267441 107.10681915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01267442 107.10681915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01267443 107.10684967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01267444 107.10685730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01267445 107.10688019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01267446 107.10688019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01267447 107.10690308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01267448 107.10690308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01267449 107.10693359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01267450 107.10694122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01267451 107.10696411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01267452 107.10696411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01267453 107.10698700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01267454 107.10699463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01267455 107.10701752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01267456 107.10701752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01267457 107.10704803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01267458 107.10704803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01267459 107.10707092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01267460 107.10707855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01267461 107.10710144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01267462 107.10710144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01267463 107.10713196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01267464 107.10713959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01267465 107.10716248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01267466 107.10716248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01267467 107.10718536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01267468 107.10718536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01267469 107.10721588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01267470 107.10721588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01267471 107.10724640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01267472 107.10724640 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01267473 107.10726929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01267474 107.10727692 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01267475 107.10729980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01267476 107.10729980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01267477 107.10733032 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01267478 107.10733795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01267479 107.10736084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01267480 107.10736084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01267481 107.10738373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01267482 107.10738373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01267483 107.10741425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01267484 107.10741425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01267485 107.10744476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01267486 107.10744476 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01267487 107.10746765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01267488 107.10747528 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01267489 107.10749817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01267490 107.10749817 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01267491 107.10752869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01267492 107.10752869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01267493 107.10755157 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01267494 107.10755920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01267495 107.10758209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01267496 107.10758209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01267497 107.10761261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01267498 107.10761261 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01267499 107.10764313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01267500 107.10764313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01267501 107.10766602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01267502 107.10766602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01267503 107.10769653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01267504 107.10769653 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01267505 107.10772705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01267506 107.10772705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01267507 107.10774994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01267508 107.10775757 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01267509 107.10778046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01267510 107.10778046 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01267511 107.10781097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01267512 107.10781097 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01267513 107.10784149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01267514 107.10784149 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01267515 107.10786438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01267516 107.10786438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01267517 107.10789490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01267518 107.10789490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01267519 107.10792542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01267520 107.10792542 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01267521 107.10794830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01267522 107.10794830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01267523 107.10797119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01267524 107.10797882 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01267525 107.10800934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01267526 107.10800934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01267527 107.10803223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01267528 107.10803223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01267529 107.10805511 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01267530 107.10806274 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01267531 107.10809326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01267532 107.10809326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01267533 107.10811615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01267534 107.10812378 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01267535 107.10814667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01267536 107.10814667 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01267537 107.10816956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01267538 107.10816956 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01267539 107.10820007 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01267540 107.10820770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01267541 107.10823059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01267542 107.10823059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01267543 107.10825348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01267544 107.10826111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01267545 107.10829163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01267546 107.10829163 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01267547 107.10831451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01267548 107.10831451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01267549 107.10833740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01267550 107.10834503 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01267551 107.10836792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01267552 107.10836792 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01267553 107.10839844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01267554 107.10839844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01267555 107.10842896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01267556 107.10842896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01267557 107.10845184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01267558 107.10845184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01267559 107.10848236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01267560 107.10848999 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01267561 107.10851288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01267562 107.10851288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01267563 107.10853577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01267564 107.10854340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01267565 107.10856628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01267566 107.10856628 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01267567 107.10859680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01267568 107.10859680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01267569 107.10862732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01267570 107.10862732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01267571 107.10865021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01267572 107.10865021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01267573 107.10868073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01267574 107.10868835 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01267575 107.10871124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01267576 107.10871124 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01267577 107.10873413 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01267578 107.10874176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01267579 107.10876465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01267580 107.10876465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01267581 107.10879517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01267582 107.10879517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01267583 107.10881805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01267584 107.10882568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01267585 107.10884857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01267586 107.10884857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01267587 107.10887909 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01267588 107.10888672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01267589 107.10890961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01267590 107.10890961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01267591 107.10893250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01267592 107.10893250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01267593 107.10896301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01267594 107.10896301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01267595 107.10899353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01267596 107.10899353 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01267597 107.10901642 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01267598 107.10902405 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01267599 107.10904694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01267600 107.10904694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01267601 107.10907745 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01267602 107.10908508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01267603 107.10910797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01267604 107.10910797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01267605 107.10913086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01267606 107.10913086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01267607 107.10916138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01267608 107.10916138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01267609 107.10919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01267610 107.10919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01267611 107.10921478 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01267612 107.10922241 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01267613 107.10924530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01267614 107.10924530 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01267615 107.10927582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01267616 107.10928345 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01267617 107.10930634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01267618 107.10930634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01267619 107.10932922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01267620 107.10932922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01267621 107.10935974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01267622 107.10935974 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01267623 107.10939026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01267624 107.10939026 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01267625 107.10941315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01267626 107.10942078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01267627 107.10944366 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01267628 107.10945129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01267629 107.10948181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01267630 107.10948181 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01267631 107.10950470 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01267632 107.10951233 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01267633 107.10953522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01267634 107.10953522 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01267635 107.10955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01267636 107.10955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01267637 107.10958862 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01267638 107.10959625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01267639 107.10961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01267640 107.10961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01267641 107.10964203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01267642 107.10964966 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01267643 107.10968018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01267644 107.10968018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01267645 107.10970306 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01267646 107.10971069 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01267647 107.10973358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01267648 107.10973358 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01267649 107.10975647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01267650 107.10975647 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01267651 107.10978699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01267652 107.10979462 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01267653 107.10981750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01267654 107.10981750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01267655 107.10984039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01267656 107.10984802 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01267657 107.10987854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01267658 107.10987854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01267659 107.10990143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01267660 107.10990143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01267661 107.10992432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01267662 107.10993195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01267663 107.10995483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01267664 107.10995483 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01267665 107.10998535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01267666 107.10999298 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01267667 107.11001587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01267668 107.11001587 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01267669 107.11003876 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01267670 107.11004639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01267671 107.11007690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01267672 107.11007690 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01267673 107.11009979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01267674 107.11009979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01267675 107.11012268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01267676 107.11013031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01267677 107.11015320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01267678 107.11015320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01267679 107.11018372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01267680 107.11018372 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01267681 107.11021423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01267682 107.11021423 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01267683 107.11023712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01267684 107.11023712 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01267685 107.11026764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01267686 107.11027527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01267687 107.11029816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01267688 107.11029816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01267689 107.11032104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01267690 107.11032867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01267691 107.11035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01267692 107.11035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01267693 107.11038208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01267694 107.11038208 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01267695 107.11040497 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01267696 107.11041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01267697 107.11043549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01267698 107.11043549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01267699 107.11046600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01267700 107.11047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01267701 107.11049652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01267702 107.11049652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01267703 107.11051941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01267704 107.11052704 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01267705 107.11054993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01267706 107.11054993 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01267707 107.11058044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01267708 107.11058044 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01267709 107.11060333 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01267710 107.11061096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01267711 107.11063385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01267712 107.11063385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01267713 107.11066437 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01267714 107.11067200 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01267715 107.11069489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01267716 107.11069489 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01267717 107.11071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01267718 107.11071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01267719 107.11074829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01267720 107.11074829 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01267721 107.11077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01267722 107.11077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01267723 107.11080170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01267724 107.11080170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01267725 107.11083221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01267726 107.11083221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01267727 107.11086273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01267728 107.11086273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01267729 107.11088562 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01267730 107.11089325 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01267731 107.11090851 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01267732 107.11091614 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01267733 107.11094666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01267734 107.11094666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01267735 107.11096954 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01267736 107.11097717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01267737 107.11100006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01267738 107.11100006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01267739 107.11103058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01267740 107.11103058 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01267741 107.11105347 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01267742 107.11106110 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01267743 107.11108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01267744 107.11108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01267745 107.11110687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01267746 107.11110687 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01267747 107.11113739 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01267748 107.11114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01267749 107.11116791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01267750 107.11116791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01267751 107.11119080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01267752 107.11119843 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01267753 107.11122894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01267754 107.11122894 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01267755 107.11125183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01267756 107.11125183 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01267757 107.11127472 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01267758 107.11128235 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01267759 107.11130524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01267760 107.11130524 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01267761 107.11133575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01267762 107.11133575 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01267763 107.11135864 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01267764 107.11136627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01267765 107.11138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01267766 107.11138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01267767 107.11141968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01267768 107.11142731 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01267769 107.11145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01267770 107.11145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01267771 107.11147308 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01267772 107.11148071 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01267773 107.11150360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01267774 107.11150360 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01267775 107.11153412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01267776 107.11153412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01267777 107.11155701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01267778 107.11156464 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01267779 107.11158752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01267780 107.11158752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01267781 107.11161804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01267782 107.11161804 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01267783 107.11164093 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01267784 107.11164856 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01267785 107.11167145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01267786 107.11167145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01267787 107.11170197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01267788 107.11170197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01267789 107.11173248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01267790 107.11173248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01267791 107.11175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01267792 107.11175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01267793 107.11178589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01267794 107.11178589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01267795 107.11181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01267796 107.11181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01267797 107.11183929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01267798 107.11183929 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01267799 107.11186218 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01267800 107.11186981 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01267801 107.11190033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01267802 107.11190033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01267803 107.11192322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01267804 107.11193085 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01267805 107.11195374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01267806 107.11195374 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01267807 107.11198425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01267808 107.11198425 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01267809 107.11200714 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01267810 107.11201477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01267811 107.11203766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01267812 107.11203766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01267813 107.11206818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01267814 107.11207581 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01267815 107.11210632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01267816 107.11210632 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01267817 107.11213684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01267818 107.11214447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01267819 107.11216736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01267820 107.11216736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01267821 107.11219025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01267822 107.11219788 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01267823 107.11222076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01267824 107.11222076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01267825 107.11225128 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01267826 107.11225891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01267827 107.11228180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01267828 107.11228180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01267829 107.11230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01267830 107.11230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01267831 107.11233521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01267832 107.11234283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01267833 107.11236572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01267834 107.11236572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01267835 107.11238861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01267836 107.11239624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01267837 107.11241913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01267838 107.11241913 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01267839 107.11244965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01267840 107.11245728 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01267841 107.11248016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01267842 107.11248016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01267843 107.11250305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01267844 107.11250305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01267845 107.11253357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01267846 107.11254120 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01267847 107.11256409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01267848 107.11256409 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01267849 107.11260223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01267850 107.11260223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01267851 107.11264038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01267852 107.11264038 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01267853 107.11267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01267854 107.11267853 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01267855 107.11270142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01267856 107.11270142 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01267857 107.11273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01267858 107.11273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01267859 107.11275482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01267860 107.11276245 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01267861 107.11278534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01267862 107.11278534 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01267863 107.11281586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01267864 107.11281586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01267865 107.11284637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01267866 107.11284637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01267867 107.11286926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01267868 107.11287689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01267869 107.11290741 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01267870 107.11291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01267871 107.11294556 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01267872 107.11295319 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01267873 107.11299133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01267874 107.11299133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01267875 107.11302948 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01267876 107.11303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01267877 107.11307526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01267878 107.11307526 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01267879 107.11310577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01267880 107.11310577 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01267881 107.11313629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01267882 107.11313629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01267883 107.11315918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01267884 107.11316681 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01267885 107.11318970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01267886 107.11318970 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01267887 107.11321259 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01267888 107.11322021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01267889 107.11325073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01267890 107.11325073 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01267891 107.11327362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01267892 107.11327362 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01267893 107.11329651 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01267894 107.11330414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01267895 107.11333466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01267896 107.11333466 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01267897 107.11335754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01267898 107.11336517 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01267899 107.11338806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01267900 107.11338806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01267901 107.11341095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01267902 107.11341095 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01267903 107.11344910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01267904 107.11344910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01267905 107.11347198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01267906 107.11347198 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01267907 107.11349487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01267908 107.11350250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01267909 107.11353302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01267910 107.11353302 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01267911 107.11355591 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01267912 107.11356354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01267913 107.11358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01267914 107.11358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01267915 107.11360931 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01267916 107.11361694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01267917 107.11364746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01267918 107.11364746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01267919 107.11367035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01267920 107.11367035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01267921 107.11369324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01267922 107.11370087 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01267923 107.11373138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01267924 107.11373138 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01267925 107.11375427 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01267926 107.11376190 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01267927 107.11378479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01267928 107.11378479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01267929 107.11380768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01267930 107.11380768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01267931 107.11383820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01267932 107.11384583 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01267933 107.11386871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01267934 107.11386871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01267935 107.11389160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01267936 107.11389923 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01267937 107.11392975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01267938 107.11392975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01267939 107.11395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01267940 107.11395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01267941 107.11397552 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01267942 107.11398315 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01267943 107.11400604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01267944 107.11400604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01267945 107.11403656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01267946 107.11403656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01267947 107.11405945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01267948 107.11406708 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01267949 107.11408997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01267950 107.11408997 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01267951 107.11412048 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01267952 107.11412811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01267953 107.11415100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01267954 107.11415100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01267955 107.11417389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01267956 107.11417389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01267957 107.11420441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01267958 107.11420441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01267959 107.11423492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01267960 107.11423492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01267961 107.11425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01267962 107.11426544 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01267963 107.11428833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01267964 107.11428833 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01267965 107.11431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01267966 107.11431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01267967 107.11434174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01267968 107.11434937 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01267969 107.11437225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01267970 107.11437225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01267971 107.11440277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01267972 107.11440277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01267973 107.11443329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01267974 107.11443329 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01267975 107.11445618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01267976 107.11445618 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01267977 107.11448669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01267978 107.11448669 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01267979 107.11451721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01267980 107.11451721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01267981 107.11454010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01267982 107.11454010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01267983 107.11456299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01267984 107.11457062 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01267985 107.11460114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01267986 107.11460114 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01267987 107.11462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01267988 107.11463165 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01268317 107.11934662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01268318 107.11934662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01268319 107.11936951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01268320 107.11936951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01268321 107.11940002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01268322 107.11940765 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01268323 107.11943054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01268324 107.11943054 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01268325 107.11945343 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01268326 107.11946106 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01268327 107.11949158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01268328 107.11949158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01268329 107.11951447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01268330 107.11951447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01268331 107.11953735 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01268332 107.11954498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01268333 107.11956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01268334 107.11956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01268335 107.11959839 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01268336 107.11960602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01268337 107.11962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01268338 107.11962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01268339 107.11965179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01268340 107.11965179 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01268341 107.11968231 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01268342 107.11968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01268343 107.11971283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01268344 107.11971283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01268345 107.11973572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01268346 107.11973572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01268347 107.11976624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01268348 107.11976624 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01268349 107.11979675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01268350 107.11979675 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01268351 107.11981964 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01268352 107.11982727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01268353 107.11985016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01268354 107.11985016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01268355 107.11988068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01268356 107.11988068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01268357 107.11990356 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01268358 107.11991119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01268359 107.11993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01268360 107.11993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01270967 107.15718079 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -01270968 107.15718842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe478 -01270969 107.15721893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -01270970 107.15721893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe488 -01270971 107.15724182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -01270972 107.15724182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe498 -01270973 107.15726471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -01270974 107.15727234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4a8 -01270975 107.15730286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -01270976 107.15730286 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4b8 -01270977 107.15732574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -01270978 107.15732574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c8 -01270979 107.15734863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -01270980 107.15735626 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d8 -01270981 107.15737915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e8 -01270982 107.15737915 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e8 -01270983 107.15740967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f8 -01270984 107.15741730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f8 -01270985 107.15744019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe508 -01270986 107.15744019 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe508 -01270987 107.15746307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe518 -01270988 107.15746307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe518 -01270989 107.15749359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe528 -01270990 107.15750122 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe528 -01270991 107.15752411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe538 -01270992 107.15752411 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe538 -01270993 107.15754700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe548 -01270994 107.15754700 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe548 -01270995 107.15757751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe558 -01270996 107.15757751 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe558 -01270997 107.15760803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe568 -01270998 107.15760803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe568 -01270999 107.15763092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe578 -01271000 107.15763092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe578 -01271001 107.15765381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe588 -01271002 107.15766144 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe588 -01271003 107.15769196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe598 -01271004 107.15769196 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe598 -01271005 107.15771484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a8 -01271006 107.15772247 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a8 -01271007 107.15774536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -01271008 107.15774536 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -01271009 107.15777588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -01271010 107.15777588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -01273644 107.19759369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -01273645 107.19759369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -01273646 107.19763184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -01273647 107.19763947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -01273648 107.19767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -01273649 107.19767761 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -01273650 107.19771576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -01273651 107.19772339 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -01273652 107.19775391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01273653 107.19776154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01273654 107.19779968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01273655 107.19779968 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01273656 107.19783783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01273657 107.19784546 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01273658 107.19787598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01273659 107.19788361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01273660 107.19792175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01273661 107.19792175 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01273662 107.19795990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01273663 107.19795990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01273664 107.19799805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01273665 107.19800568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01273666 107.19804382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01273667 107.19804382 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01273668 107.19808197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01273669 107.19808197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01273670 107.19812012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01273671 107.19812775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01273672 107.19815826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01273673 107.19816589 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01273674 107.19820404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01273675 107.19820404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01273676 107.19824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01273677 107.19824219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01273678 107.19828033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01273679 107.19828796 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01273680 107.19831848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01273681 107.19832611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01273682 107.19836426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01273683 107.19836426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01273684 107.19840240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01273685 107.19841003 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01273686 107.19844818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01273687 107.19844818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01309997 107.40268707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -01309998 107.40268707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19188 -01309999 107.40268707 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -01310000 107.40268707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164d8 -01310001 107.40268707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19188 -01310002 107.40268707 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -01310003 107.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -01310004 107.40270996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19198 -01310005 107.40270996 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -01310006 107.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164e8 -01310007 107.40270996 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -01310008 107.40270996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19198 -01310009 107.40274048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -01310010 107.40274048 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -01310011 107.40274048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a8 -01310012 107.40274048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x164f8 -01310013 107.40275574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -01310014 107.40275574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a8 -01310015 107.40277863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -01310016 107.40277863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -01310017 107.40277863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b8 -01310018 107.40277863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16508 -01310019 107.40277863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -01310020 107.40277863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b8 -01310021 107.40280151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -01310022 107.40280151 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -01310023 107.40280151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c8 -01310024 107.40280151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16518 -01310025 107.40280151 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -01310026 107.40280151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c8 -01310027 107.40283203 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -01310028 107.40283203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d8 -01310029 107.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -01310030 107.40283203 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -01310031 107.40283203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d8 -01310032 107.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16528 -01310033 107.40285492 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -01310034 107.40285492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e8 -01310035 107.40287018 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -01310036 107.40287018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e8 -01310037 107.40287018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -01310038 107.40287018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16538 -01310039 107.40289307 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -01310040 107.40289307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f8 -01316048 107.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a458 -01316049 107.43197632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -01316050 107.43198395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31108 -01316051 107.43198395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -01316052 107.43198395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a458 -01316053 107.43201447 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -01316054 107.43201447 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -01316055 107.43201447 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31118 -01316056 107.43201447 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -01316057 107.43202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a468 -01316058 107.43202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a468 -01316059 107.43203735 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -01316060 107.43203735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -01316061 107.43203735 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31128 -01316062 107.43203735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -01316063 107.43206024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a478 -01316064 107.43206024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a478 -01316065 107.43206024 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31138 -01316066 107.43206024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -01316067 107.43206024 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31138 -01316068 107.43206024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -01316069 107.43209076 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31148 -01316070 107.43209076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -01316071 107.43209076 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31148 -01316072 107.43210602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -01316073 107.43210602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a488 -01316074 107.43210602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a488 -01316075 107.43211365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -01316076 107.43212891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -01316077 107.43212891 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31158 -01316078 107.43212891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -01316079 107.43214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a498 -01316080 107.43214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a498 -01316081 107.43215179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -01316082 107.43215179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d088 -01316083 107.43215179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31168 -01316084 107.43215179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d088 -01316085 107.43218231 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -01316086 107.43218231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a8 -01316087 107.43218231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d098 -01316088 107.43218231 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31178 -01316089 107.43218231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d098 -01316090 107.43218231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a8 -01316091 107.43220520 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x31188 -01321089 107.45648956 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -01321090 107.45648956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -01321091 107.45648956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20528 -01321092 107.45648956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -01321093 107.45651245 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -01321094 107.45651245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -01321095 107.45651245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -01321096 107.45651245 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -01321097 107.45651245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20538 -01321098 107.45651245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -01321099 107.45653534 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -01321100 107.45653534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -01321101 107.45653534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -01321102 107.45655060 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -01321103 107.45655060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20548 -01321104 107.45655060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -01321105 107.45657349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -01321106 107.45657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -01321107 107.45657349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -01321108 107.45657349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -01321109 107.45657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20558 -01321110 107.45657349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -01321111 107.45660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d858 -01321112 107.45660400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -01321113 107.45660400 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -01321114 107.45660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d858 -01321115 107.45660400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20568 -01321116 107.45660400 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -01321117 107.45662689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d868 -01321118 107.45662689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -01321119 107.45662689 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -01321120 107.45662689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d868 -01321121 107.45664215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20578 -01321122 107.45664215 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -01321123 107.45664978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -01321124 107.45664978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -01321125 107.45666504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -01321126 107.45666504 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -01321127 107.45666504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20588 -01321128 107.45666504 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -01321129 107.45668030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -01321130 107.45668793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -01321131 107.45668793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20598 -01321132 107.45668793 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -01326828 107.48412323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -01326829 107.48412323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c8 -01326830 107.48412323 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38188 -01326831 107.48412323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -01326832 107.48412323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c8 -01326833 107.48414612 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38198 -01326834 107.48414612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -01326835 107.48414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d8 -01326836 107.48414612 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x38198 -01326837 107.48414612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -01326838 107.48414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d8 -01326839 107.48416901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a8 -01326840 107.48416901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -01326841 107.48416901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e8 -01326842 107.48416901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a8 -01326843 107.48416901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -01326844 107.48416901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e8 -01326845 107.48419952 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b8 -01326846 107.48419952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -01326847 107.48419952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f8 -01326848 107.48419952 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b8 -01326849 107.48421478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -01326850 107.48421478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f8 -01326851 107.48422241 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c8 -01326852 107.48423767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -01326853 107.48423767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21408 -01326854 107.48423767 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c8 -01326855 107.48423767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -01326856 107.48423767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21408 -01326857 107.48426056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -01326858 107.48426056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24168 -01326859 107.48426056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21418 -01326860 107.48426056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -01326861 107.48426056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24168 -01326862 107.48426056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21418 -01326863 107.48429108 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -01326864 107.48429108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24178 -01326865 107.48429108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21428 -01326866 107.48429108 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -01326867 107.48429108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24178 -01326868 107.48429108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21428 -01326869 107.48431396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f8 -01326870 107.48431396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24188 -01326871 107.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21438 -01332287 107.51062775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -01332288 107.51062775 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -01332289 107.51062775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa8 -01332290 107.51062775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -01332291 107.51062775 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -01332292 107.51062775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27aa8 -01332293 107.51065826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -01332294 107.51065826 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -01332295 107.51065826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab8 -01332296 107.51066589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -01332297 107.51066589 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -01332298 107.51066589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ab8 -01332299 107.51069641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -01332300 107.51069641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -01332301 107.51069641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac8 -01332302 107.51069641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -01332303 107.51069641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -01332304 107.51069641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac8 -01332305 107.51071930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -01332306 107.51071930 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -01332307 107.51071930 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad8 -01332308 107.51071930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -01332309 107.51071930 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -01332310 107.51071930 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad8 -01332311 107.51074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -01332312 107.51074219 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -01332313 107.51074219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae8 -01332314 107.51074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -01332315 107.51074219 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -01332316 107.51074219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae8 -01332317 107.51077271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -01332318 107.51078033 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af8 -01332319 107.51078033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -01332320 107.51078033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -01332321 107.51078033 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af8 -01332322 107.51078033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -01332323 107.51081085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -01332324 107.51081085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b08 -01332325 107.51081085 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -01332326 107.51081085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -01332327 107.51081085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b08 -01332328 107.51081085 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -01332329 107.51083374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -01332330 107.51083374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b18 -01337646 107.53668213 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f378 -01337647 107.53668213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f8 -01337648 107.53668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28208 -01337649 107.53668213 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f378 -01337650 107.53668213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f8 -01337651 107.53670502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28218 -01337652 107.53670502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28218 -01337653 107.53670502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b308 -01337654 107.53672028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f388 -01337655 107.53672028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b308 -01337656 107.53672028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f388 -01337657 107.53672791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28228 -01337658 107.53674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28228 -01337659 107.53674316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b318 -01337660 107.53674316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b318 -01337661 107.53675842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f398 -01337662 107.53675842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f398 -01337663 107.53675842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28238 -01337664 107.53676605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28238 -01337665 107.53676605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b328 -01337666 107.53676605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b328 -01337667 107.53678131 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a8 -01337668 107.53679657 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a8 -01337669 107.53679657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28248 -01337670 107.53679657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28248 -01337671 107.53679657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b338 -01337672 107.53679657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b338 -01337673 107.53681946 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b8 -01337674 107.53681946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28258 -01337675 107.53681946 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b8 -01337676 107.53681946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28258 -01337677 107.53681946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b348 -01337678 107.53681946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b348 -01337679 107.53684235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c8 -01337680 107.53684235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28268 -01337681 107.53684235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c8 -01337682 107.53684235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28268 -01337683 107.53685760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b358 -01337684 107.53685760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b358 -01337685 107.53687286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28278 -01337686 107.53687286 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d8 -01337687 107.53687286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28278 -01337688 107.53687286 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d8 -01337689 107.53688049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b368 -01343265 107.56394196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd8 -01343266 107.56394196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -01343267 107.56394196 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e08 -01343268 107.56394196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbd8 -01343269 107.56394196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -01343270 107.56394196 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e08 -01343271 107.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe8 -01343272 107.56396484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -01343273 107.56396484 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e18 -01343274 107.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbe8 -01343275 107.56396484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -01343276 107.56398010 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e18 -01343277 107.56400299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -01343278 107.56400299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf8 -01343279 107.56400299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e28 -01343280 107.56400299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -01343281 107.56400299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bbf8 -01343282 107.56400299 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e28 -01343283 107.56403351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -01343284 107.56403351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc08 -01343285 107.56403351 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e38 -01343286 107.56403351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -01343287 107.56403351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc08 -01343288 107.56403351 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e38 -01343289 107.56405640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -01343290 107.56405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc18 -01343291 107.56405640 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e48 -01343292 107.56405640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -01343293 107.56405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc18 -01343294 107.56407166 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e48 -01343295 107.56408691 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -01343296 107.56409454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc28 -01343297 107.56409454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -01343298 107.56409454 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e58 -01343299 107.56409454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc28 -01343300 107.56409454 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e58 -01343301 107.56412506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -01343302 107.56412506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -01343303 107.56412506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc38 -01343304 107.56412506 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e68 -01343305 107.56412506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc38 -01343306 107.56412506 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e68 -01343307 107.56414795 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -01343308 107.56414795 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -01348657 107.59013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -01348658 107.59013367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -01348659 107.59013367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -01348660 107.59013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -01348661 107.59013367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -01348662 107.59013367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -01348663 107.59015656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -01348664 107.59017181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32708 -01348665 107.59017181 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -01348666 107.59017181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32708 -01348667 107.59017181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -01348668 107.59017181 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -01348669 107.59019470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32718 -01348670 107.59019470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -01348671 107.59019470 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -01348672 107.59019470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32718 -01348673 107.59019470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -01348674 107.59019470 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -01348675 107.59021759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32728 -01348676 107.59021759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -01348677 107.59021759 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -01348678 107.59021759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32728 -01348679 107.59021759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -01348680 107.59023285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -01348681 107.59024811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32738 -01348682 107.59024811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -01348683 107.59025574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -01348684 107.59025574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32738 -01348685 107.59025574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -01348686 107.59025574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -01348687 107.59028625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32748 -01348688 107.59028625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -01348689 107.59028625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32748 -01348690 107.59028625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -01348691 107.59028625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -01348692 107.59028625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -01348693 107.59030914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32758 -01348694 107.59030914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -01348695 107.59030914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32758 -01348696 107.59030914 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -01348697 107.59030914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -01348698 107.59030914 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -01348699 107.59033966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32768 -01348700 107.59033966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32768 -01354313 107.61769104 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a228 -01354314 107.61769104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -01354315 107.61769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d48 -01354316 107.61769867 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a228 -01354317 107.61769867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -01354318 107.61771393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d58 -01354319 107.61772919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a238 -01354320 107.61772919 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -01354321 107.61772919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d58 -01354322 107.61772919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a238 -01354323 107.61772919 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -01354324 107.61775208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d68 -01354325 107.61775208 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a248 -01354326 107.61775208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -01354327 107.61775208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d68 -01354328 107.61775208 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a248 -01354329 107.61775208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -01354330 107.61778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d78 -01354331 107.61778259 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a258 -01354332 107.61778259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -01354333 107.61778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d78 -01354334 107.61778259 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a258 -01354335 107.61778259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -01354336 107.61780548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d88 -01354337 107.61782074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a268 -01354338 107.61782074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d88 -01354339 107.61782074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -01354340 107.61782074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a268 -01354341 107.61782074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -01354342 107.61784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d98 -01354343 107.61784363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a278 -01354344 107.61784363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -01354345 107.61784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d98 -01354346 107.61784363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a278 -01354347 107.61784363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -01354348 107.61786652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da8 -01354349 107.61786652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a288 -01354350 107.61786652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -01354351 107.61786652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32da8 -01354352 107.61786652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a288 -01354353 107.61786652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -01354354 107.61789703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32db8 -01354355 107.61789703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a298 -01354356 107.61789703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36208 -01359560 107.64324951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39868 -01359561 107.64326477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36348 -01359562 107.64326477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -01359563 107.64326477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36348 -01359564 107.64326477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -01359565 107.64328766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36358 -01359566 107.64328766 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -01359567 107.64328766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36358 -01359568 107.64328766 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -01359569 107.64330292 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -01359570 107.64331818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -01359571 107.64331818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36368 -01359572 107.64331818 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -01359573 107.64331818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36368 -01359574 107.64331818 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -01359575 107.64334106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -01359576 107.64334106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -01359577 107.64334106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36378 -01359578 107.64335632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36378 -01359579 107.64335632 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -01359580 107.64335632 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -01359581 107.64336395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -01359582 107.64336395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -01359583 107.64337921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36388 -01359584 107.64337921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36388 -01359585 107.64339447 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -01359586 107.64339447 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -01359587 107.64340210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -01359588 107.64340210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -01359589 107.64340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -01359590 107.64340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36398 -01359591 107.64341736 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -01359592 107.64341736 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -01359593 107.64343262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -01359594 107.64343262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -01359595 107.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -01359596 107.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x363a8 -01359597 107.64344025 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -01359598 107.64344025 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -01359599 107.64345551 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -01359600 107.64345551 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -01359601 107.64345551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -01359602 107.64345551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x363b8 -01359603 107.64347076 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -01364725 107.66921997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -01364726 107.66921997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51058 -01364727 107.66921997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf8 -01364728 107.66921997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -01364729 107.66921997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51058 -01364730 107.66921997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf8 -01364731 107.66925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -01364732 107.66925049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51068 -01364733 107.66925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc08 -01364734 107.66925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -01364735 107.66925049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51068 -01364736 107.66925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc08 -01364737 107.66927338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -01364738 107.66927338 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51078 -01364739 107.66927338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc18 -01364740 107.66927338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -01364741 107.66927338 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51078 -01364742 107.66927338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc18 -01364743 107.66929626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -01364744 107.66929626 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51088 -01364745 107.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc28 -01364746 107.66931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -01364747 107.66931152 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51088 -01364748 107.66931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc28 -01364749 107.66933441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -01364750 107.66933441 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51098 -01364751 107.66933441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -01364752 107.66933441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -01364753 107.66933441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -01364754 107.66933441 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51098 -01364755 107.66936493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -01364756 107.66936493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -01364757 107.66936493 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a8 -01364758 107.66936493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -01364759 107.66936493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -01364760 107.66936493 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a8 -01364761 107.66938782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -01364762 107.66938782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -01364763 107.66938782 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b8 -01364764 107.66940308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -01364765 107.66940308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -01364766 107.66940308 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b8 -01364767 107.66942596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a08 -01364768 107.66942596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc68 -01369119 107.69480896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01369120 107.69480896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -01369121 107.69482422 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40378 -01369122 107.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce78 -01369123 107.69484711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -01369124 107.69484711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40388 -01369125 107.69486237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce88 -01369126 107.69486237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce88 -01369127 107.69487000 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -01369128 107.69487000 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40398 -01369129 107.69490051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce98 -01369130 107.69490051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -01369131 107.69490051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403a8 -01369132 107.69490051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce98 -01369133 107.69492340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -01369134 107.69492340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403b8 -01369135 107.69493866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea8 -01369136 107.69495392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea8 -01369137 107.69496155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -01369138 107.69496155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403c8 -01369139 107.69499207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb8 -01369140 107.69499207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -01369141 107.69499207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403d8 -01369142 107.69499207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb8 -01369143 107.69501495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -01369144 107.69501495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403e8 -01369145 107.69503021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec8 -01369146 107.69503021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec8 -01369147 107.69503784 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -01369148 107.69503784 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x403f8 -01369149 107.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced8 -01369150 107.69506836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -01369151 107.69507599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40408 -01369152 107.69507599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced8 -01369153 107.69510651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -01369154 107.69510651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40418 -01369155 107.69511414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee8 -01369156 107.69511414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee8 -01369157 107.69512939 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -01369158 107.69512939 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40428 -01369159 107.69515228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef8 -01369160 107.69515228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -01369161 107.69515228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40438 -01369162 107.69516754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef8 -01389895 107.90209198 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389896 107.90314484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389897 107.90335846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389898 107.92977905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389899 107.93321228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389900 107.93340302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389901 108.05316162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389902 108.05328369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389903 108.05335999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389904 108.05355835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389905 108.05363464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389906 108.05364227 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389907 108.05371857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389908 108.05383301 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389909 108.05391693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389910 108.05401611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389911 108.05431366 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389912 108.05437469 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389913 108.05451202 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389914 108.05492401 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389915 108.05528259 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389916 108.07993317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389917 108.08015442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389918 108.11443329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389919 108.11615753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389920 108.11634064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389921 108.11655426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389922 108.11672211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389923 108.12646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389924 108.12665558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389925 108.12756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389926 108.12774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389927 108.14379883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389928 108.14402771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389929 108.21825409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389930 108.21903229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389931 108.21923828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389932 108.24998474 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389933 108.25240326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389934 108.25260925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389935 108.27112579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389936 108.27531433 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389937 108.27549744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389938 108.27571106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389939 108.27587891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389940 108.27608490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389941 108.27625275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389942 108.27645111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389943 108.27661896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389944 108.27680969 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389945 108.27699280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389946 108.27740479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389947 108.27759552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389948 108.29650879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389949 108.36555481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389950 108.36574554 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389951 108.36597443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389952 108.36614227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389953 108.36636353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389954 108.36653137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389955 108.36737061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389956 108.36782074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389957 108.36880493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389958 108.36891937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389959 108.36916351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389960 108.38631439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389961 108.38693237 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389962 108.38859558 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389963 108.38900757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389964 108.40202332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389965 108.46801758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389966 108.46824646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389967 108.46846771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389968 108.46871948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389969 108.47274017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389970 108.47372437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389971 108.47411346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389972 108.47599030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389973 108.47743988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389974 108.58036804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389975 108.58059692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389976 108.58082581 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389977 108.58103943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389978 108.58127594 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389979 108.58148956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389980 108.58171082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389981 108.58287048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389982 108.58382416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389983 108.58405304 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389984 108.58444977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389985 108.58515167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389986 108.58628082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389987 108.58777618 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389988 108.59855652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01389989 108.59878540 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389990 108.67755890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389991 108.70205688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389992 108.70215607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389993 108.70228577 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389994 108.70246124 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389995 108.70246124 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389996 108.70252991 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389997 108.70262909 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389998 108.70265961 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01389999 108.70281982 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390000 108.70289612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390001 108.70323181 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390002 108.70323181 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390003 108.71080017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390004 108.71099091 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390005 108.71115875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390006 108.71131897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390007 108.73773956 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390008 108.73777008 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390009 108.73779297 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390010 108.73780823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01390011 108.73792267 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390012 108.73793030 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390013 108.73798370 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390014 108.73800659 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390015 108.74585724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390016 108.74607086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390017 108.77310944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390018 108.77441406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390019 108.77460480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390020 108.77488708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390021 108.77505493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390022 108.77526855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390023 108.77545166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390024 108.77568054 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390025 108.77584839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390026 108.77606201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390027 108.77622986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390028 108.77645874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390029 108.77662659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390030 108.77684784 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390031 108.77702332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390032 108.77724457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390033 108.77740479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390034 108.79011536 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390035 108.79033661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390036 108.87136078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390037 108.87292480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390038 108.87315369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390039 108.89778900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390040 108.89865875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390041 108.89885712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390042 108.89907074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390043 108.89922333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390044 108.89942932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390045 108.89959717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390046 108.89981079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390047 108.89997864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390048 108.90020752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390049 108.90037537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390050 108.90068817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390051 108.90084839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390052 108.90120697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390053 108.90137482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390054 108.90813446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390055 108.90834045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390056 108.96504211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390057 108.96568298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390058 108.96568298 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390059 108.96588898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390060 108.96590424 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390061 109.04271698 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390062 109.08914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390063 109.11067963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390064 109.11202240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390065 109.11205292 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390066 109.11214447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390067 109.11225891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390068 109.11225891 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390069 109.11241913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390070 109.14200592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390071 109.14266968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390072 109.14288330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390073 109.18875122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390074 109.21772766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390075 109.24832916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390076 109.26163483 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390077 109.26211548 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390078 109.26246643 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390079 109.26309204 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390080 109.26333618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390081 109.28942108 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390082 109.28979492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390083 109.29026794 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390084 109.29049683 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390085 109.29081726 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390086 109.33225250 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390087 109.33254242 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390088 109.33515167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390089 109.34500885 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390090 109.45758820 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390091 109.61349487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01390092 109.63230896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390093 109.63231659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390094 110.03735352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390095 110.03805542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390096 110.03839874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390097 110.04041290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390098 110.13323212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390099 110.19311523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390100 110.21617889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390101 110.21640015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390102 110.23709106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390103 110.23827362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390104 110.23850250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390105 110.26203918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390106 110.26375580 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390107 110.26398468 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390108 110.28810120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390109 110.28893280 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390110 110.28915405 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390111 110.29036713 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390112 110.35509491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390113 110.35588837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390114 110.35594177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390115 110.35613251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390116 110.35614777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390117 110.40184021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390118 110.40268707 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390119 110.40268707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390120 110.40290833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390121 110.40291595 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390122 110.42904663 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390123 110.43054199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390124 110.43083191 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390125 110.49319458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390126 110.52658844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390127 110.55158997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390128 110.55404663 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390129 110.55574036 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390130 110.55595398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390131 110.57627106 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390132 110.57721710 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390133 110.60430145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390134 110.60572052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390135 110.60577393 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390136 110.60618591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390137 110.60638428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390138 110.62496948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390139 110.64592743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390140 110.64614105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390141 110.67192078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390142 110.67816925 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390143 110.68109894 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390144 110.68144989 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390145 110.74831390 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390146 110.74887848 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390147 110.75998688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390148 110.76670837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01390149 110.76695251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390150 110.79193878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390152 110.83779907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390153 110.83860779 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390156 110.89826202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390157 110.89850616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390158 110.89875031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390159 110.95589447 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390160 111.09674072 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390161 111.24539948 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390162 111.24545288 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390163 111.24547577 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390164 111.24550629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01390165 111.24565887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390166 111.24565887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390167 111.24573517 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01390168 111.24575806 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01390169 111.43241119 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390170 111.43599701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390171 111.54231262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390172 111.56504059 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390173 111.63414764 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01390174 111.63763428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390175 111.65726471 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390176 111.65727997 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390177 111.74049377 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390178 111.82259369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390179 111.92949677 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390180 112.03165436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390181 112.14459229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390182 112.27023315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390183 112.42076111 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390184 112.53143311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390185 112.54972076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01390186 112.54974365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01390187 112.55375671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390188 112.67530060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390189 112.68405914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390190 112.81209564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01390191 112.83200073 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01390192 112.86201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01390193 112.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01390194 112.86206818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01390195 112.86208344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01390196 112.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01390197 112.86212921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01390198 112.86216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01390199 112.86216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01390200 112.86219788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01390201 112.86220551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01390202 112.86223602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01390203 112.86223602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01390204 112.86225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01390205 112.86225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01390206 112.86228180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01390207 112.86228180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01390208 112.86231232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01390209 112.86231232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01390210 112.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01390211 112.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01390212 112.86235809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01390213 112.86237335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01390214 112.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01390215 112.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01390216 112.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01390217 112.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01390218 112.86244965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01390219 112.86244965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01390220 112.86248016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01390221 112.86248016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01390222 112.86250305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01390223 112.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01390224 112.86252594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01390225 112.86254120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01390226 112.86256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01390227 112.86256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01390228 112.86259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01390229 112.86259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01390230 112.86261749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01390231 112.86261749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01390232 112.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01390233 112.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01390234 112.86267853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01390235 112.86267853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01390236 112.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01390237 112.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01390238 112.86275482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01390239 112.86277008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01390240 112.86280060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01390241 112.86280060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01390242 112.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01390243 112.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01390244 112.86284637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01390245 112.86286163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01390246 112.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01390247 112.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01390248 112.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01390249 112.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01390250 112.86295319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01390251 112.86296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01390252 112.86299896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01390253 112.86299896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01390254 112.86302948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01390255 112.86302948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01390256 112.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01390257 112.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01390258 112.86307526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01390259 112.86309052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01390260 112.86311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01390261 112.86311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01390262 112.86314392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01390263 112.86314392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01390264 112.86316681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01390265 112.86316681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01390266 112.86319733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01390267 112.86319733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01390268 112.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01390269 112.86323547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01390270 112.86324310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01390271 112.86325836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01390272 112.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01390273 112.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01390274 112.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01390275 112.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01390276 112.86333466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01390277 112.86333466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01390278 112.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01390279 112.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01390280 112.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01390281 112.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01390282 112.86341095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01390283 112.86341095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01390284 112.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01390285 112.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01390286 112.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01390287 112.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01390288 112.86348724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01390289 112.86350250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01390290 112.86351013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01390291 112.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01390292 112.86354828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01390293 112.86354828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01390294 112.86357880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01390295 112.86357880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01390296 112.86360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01390297 112.86360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01390298 112.86363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01390299 112.86363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01390300 112.86365509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01390301 112.86365509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01390302 112.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01390303 112.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01390304 112.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01390305 112.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01390306 112.86373138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01390307 112.86373138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01390308 112.86375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01390309 112.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01390310 112.86378479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01390311 112.86379242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01390312 112.86382294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01390313 112.86382294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01390314 112.86384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01390315 112.86384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01390316 112.86388397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01390317 112.86388397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01390318 112.86390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01390319 112.86390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01390320 112.86393738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01390321 112.86394501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01390322 112.86396027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01390323 112.86397552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01390324 112.86399841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01390325 112.86399841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01390326 112.86403656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01390327 112.86403656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01390328 112.86408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01390329 112.86408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01390330 112.86411285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01390331 112.86411285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01390332 112.86414337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01390333 112.86415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01390334 112.86416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01390335 112.86418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01390336 112.86420441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01390337 112.86420441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01390338 112.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01390339 112.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01390340 112.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01390341 112.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01390342 112.86428070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01390343 112.86428070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01390344 112.86430359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01390345 112.86430359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01390346 112.86433411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01390347 112.86433411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01390348 112.86435699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01390349 112.86435699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01390350 112.86438751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01390351 112.86438751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01390352 112.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01390353 112.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01390354 112.86443329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01390355 112.86443329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01390356 112.86446381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01390357 112.86447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01390358 112.86448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01390359 112.86450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01390360 112.86452484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01390361 112.86452484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01390362 112.86454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01390363 112.86454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01390364 112.86457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01390365 112.86458588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01390366 112.86461639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01390367 112.86461639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01390368 112.86466217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01390369 112.86466217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01390370 112.86469269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01390371 112.86469269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01390372 112.86473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01390373 112.86473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01390374 112.86475372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01390375 112.86475372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01390376 112.86478424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01390377 112.86478424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01390378 112.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01390379 112.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01390380 112.86483002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01390381 112.86483002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01390382 112.86486053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01390383 112.86486053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01390384 112.86488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01390385 112.86488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01390386 112.86490631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01390387 112.86492157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01390388 112.86493683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01390389 112.86494446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01390390 112.86497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01390391 112.86497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01390392 112.86499786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01390393 112.86499786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01390394 112.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01390395 112.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01390396 112.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01390397 112.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01390398 112.86507416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01390399 112.86507416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01390400 112.86509705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01390401 112.86509705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01390402 112.86512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01390403 112.86512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01390404 112.86515045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01390405 112.86515045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01390406 112.86518097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01390407 112.86518097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01390408 112.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01390409 112.86521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01390410 112.86522675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01390411 112.86524200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01390412 112.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01390413 112.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01390414 112.86529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01390415 112.86529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01390416 112.86531830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01390417 112.86531830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01390418 112.86534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01390419 112.86534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01390420 112.86537170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01390421 112.86537170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01390422 112.86539459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01390423 112.86539459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01390424 112.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01390425 112.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01390426 112.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01390427 112.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01390428 112.86547089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01390429 112.86547089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01390430 112.86550140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01390431 112.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01390432 112.86552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01390433 112.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01390434 112.86556244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01390435 112.86556244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01390436 112.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01390437 112.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01390438 112.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01390439 112.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01390440 112.86563873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01390441 112.86563873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01390442 112.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01390443 112.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01390444 112.86569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01390445 112.86569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01390446 112.86573029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01390447 112.86573029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01390448 112.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01390449 112.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01390450 112.86577606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01390451 112.86577606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01390452 112.86581421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01390453 112.86582947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01390454 112.86586761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01390455 112.86586761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01390456 112.86589813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01390457 112.86590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01390458 112.86593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01390459 112.86593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01390460 112.86595917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01390461 112.86595917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01390462 112.86598206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01390463 112.86598206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01390464 112.86601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01390465 112.86602020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01390466 112.86603546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01390467 112.86605072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01390468 112.86607361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01390469 112.86607361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01390470 112.86609650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01390471 112.86609650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01390472 112.86612701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01390473 112.86612701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01390474 112.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01390475 112.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01390476 112.86617279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01390477 112.86617279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01390478 112.86620331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01390479 112.86620331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01390480 112.86622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01390481 112.86622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01390482 112.86624908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01390483 112.86624908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01390484 112.86627960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01390485 112.86627960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01390486 112.86630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01390487 112.86631775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01390488 112.86633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01390489 112.86634064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01390490 112.86637115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01390491 112.86637115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01390492 112.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01390493 112.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01390494 112.86641693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01390495 112.86641693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01390496 112.86644745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01390497 112.86644745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01390498 112.86647034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01390499 112.86647034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01390500 112.86649323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01390501 112.86649323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01390502 112.86652374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01390503 112.86652374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01390504 112.86654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01390505 112.86654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01390506 112.86656952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01390507 112.86656952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01390508 112.86660004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01390509 112.86660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01390510 112.86662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01390511 112.86663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01390512 112.86666107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01390513 112.86666107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01390514 112.86669159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01390515 112.86669159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01390516 112.86671448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01390517 112.86671448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01390518 112.86673737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01390519 112.86673737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01390520 112.86676788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01390521 112.86676788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01390522 112.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01390523 112.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01390524 112.86681366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01390525 112.86681366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01390526 112.86684418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01390527 112.86684418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01390528 112.86686707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01390529 112.86686707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01390530 112.86688995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01390531 112.86690521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01390532 112.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01390533 112.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01390534 112.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01390535 112.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01390536 112.86698151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01390537 112.86698151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01390538 112.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01390539 112.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01390540 112.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01390541 112.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01390542 112.86705780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01390543 112.86705780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01390544 112.86708832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01390545 112.86708832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01390546 112.86711121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01390547 112.86711121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01390548 112.86713409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01390549 112.86713409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01390550 112.86716461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01390551 112.86717224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01390552 112.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01390553 112.86720276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01390554 112.86722565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01390555 112.86722565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01390556 112.86724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01390557 112.86724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01390558 112.86727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01390559 112.86727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01390560 112.86730194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01390561 112.86730194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01390562 112.86732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01390563 112.86732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01390564 112.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01390565 112.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01390566 112.86737823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01390567 112.86737823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01390568 112.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01390569 112.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01390570 112.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01390571 112.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01390572 112.86745453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01390573 112.86745453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01390574 112.86748505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01390575 112.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01390576 112.86750793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01390577 112.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01390578 112.86754608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01390579 112.86754608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01390580 112.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01390581 112.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01390582 112.86759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01390583 112.86759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01390584 112.86762238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01390585 112.86762238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01390586 112.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01390587 112.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01390588 112.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01390589 112.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01390590 112.86769867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01390591 112.86769867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01390592 112.86772156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01390593 112.86772156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01390594 112.86775208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01390595 112.86775208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01390596 112.86777496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01390597 112.86779022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01390598 112.86779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01390599 112.86781311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01390600 112.86784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01390601 112.86784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01390602 112.86786652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01390603 112.86786652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01390604 112.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01390605 112.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01390606 112.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01390607 112.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01390608 112.86794281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01390609 112.86794281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01390610 112.86796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01390611 112.86796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01390612 112.86799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01390613 112.86799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01390614 112.86801910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01390615 112.86801910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01390616 112.86804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01390617 112.86805725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01390618 112.86807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01390619 112.86808014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01390620 112.86811066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01390621 112.86811066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01390622 112.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01390623 112.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01390624 112.86815643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01390625 112.86815643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01390626 112.86818695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01390627 112.86818695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01390628 112.86820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01390629 112.86820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01390630 112.86824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01390631 112.86824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01390632 112.86826324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01390633 112.86826324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01390634 112.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01390635 112.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01390636 112.86831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01390637 112.86831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01390638 112.86833954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01390639 112.86835480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01390640 112.86836243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01390641 112.86837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01390642 112.86840057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01390643 112.86840057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01390644 112.86843109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01390645 112.86843109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01390646 112.86845398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01390647 112.86845398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01390648 112.86847687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01390649 112.86847687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01390650 112.86850739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01390651 112.86850739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01390652 112.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01390653 112.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01390654 112.86855316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01390655 112.86855316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01390656 112.86858368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01390657 112.86858368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01390658 112.86860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01390659 112.86860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01390660 112.86863708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01390661 112.86864471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01390662 112.86865997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01390663 112.86867523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01390664 112.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01390665 112.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01390666 112.86872101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01390667 112.86872101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01390668 112.86875153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01390669 112.86875153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01390670 112.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01390671 112.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01390672 112.86879730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01390673 112.86879730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01390674 112.86882782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01390675 112.86882782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01390676 112.86885071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01390677 112.86885071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01390678 112.86887360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01390679 112.86887360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01390680 112.86890411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01390681 112.86890411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01390682 112.86892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01390683 112.86894226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01390684 112.86896515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01390685 112.86896515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01390686 112.86899567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01390687 112.86899567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01390688 112.86901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01390689 112.86903381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01390690 112.86907196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01390691 112.86907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01390692 112.86911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01390693 112.86911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01390694 112.86913300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01390695 112.86913300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01390696 112.86915588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01390697 112.86917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01390698 112.86919403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01390699 112.86919403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01390700 112.86922455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01390701 112.86922455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01390702 112.86924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01390703 112.86924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01390704 112.86927032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01390705 112.86927032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01390706 112.86930084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01390707 112.86930847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01390708 112.86933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01390709 112.86933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01390710 112.86936188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01390711 112.86936188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01390712 112.86939240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01390713 112.86939240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01390714 112.86941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01390715 112.86941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01390716 112.86943817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01390717 112.86943817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01390718 112.86946869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01390719 112.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01390720 112.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01390721 112.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01390722 112.86952972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01390723 112.86952972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01390724 112.86955261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01390725 112.86955261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01390726 112.86958313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01390727 112.86958313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01390728 112.86960602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01390729 112.86962128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01390730 112.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01390731 112.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01390732 112.86966705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01390733 112.86966705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01390734 112.86969757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01390735 112.86969757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01390736 112.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01390737 112.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01390738 112.86975861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01390739 112.86975861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01390740 112.86978912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01390741 112.86978912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01390742 112.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01390743 112.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01390744 112.86983490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01390745 112.86983490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01390746 112.86986542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01390747 112.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01390748 112.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01390749 112.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01390750 112.86992645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01390751 112.86992645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01390752 112.86994934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01390753 112.86994934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01390754 112.86997986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01390755 112.86998749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01390756 112.87000275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01390757 112.87001801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01390758 112.87004089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01390759 112.87004089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01390760 112.87006378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01390761 112.87006378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01390762 112.87009430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01390763 112.87009430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01390764 112.87011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01390765 112.87011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01390766 112.87015533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01390767 112.87015533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01390768 112.87018585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01390769 112.87018585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01390770 112.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01390771 112.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01390772 112.87023163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01390773 112.87023163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01390774 112.87026215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01390775 112.87026215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01390776 112.87028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01390777 112.87028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01390778 112.87030792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01390779 112.87032318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01390780 112.87033844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01390781 112.87034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01390782 112.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01390783 112.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01390784 112.87039948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01390785 112.87039948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01390786 112.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01390787 112.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01390788 112.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01390789 112.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01390790 112.87047577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01390791 112.87047577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01390792 112.87049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01390793 112.87049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01390794 112.87052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01390795 112.87052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01390796 112.87055206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01390797 112.87055206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01390798 112.87058258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01390799 112.87059021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01390800 112.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01390801 112.87062073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01390802 112.87064362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01390803 112.87064362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01390804 112.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01390805 112.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01390806 112.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01390807 112.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01390808 112.87071991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01390809 112.87071991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01390810 112.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01390811 112.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01390812 112.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01390813 112.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01390814 112.87079620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01390815 112.87079620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01390816 112.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01390817 112.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01390818 112.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01390819 112.87085724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01390820 112.87088776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01390821 112.87088776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01390822 112.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01390823 112.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01390824 112.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01390825 112.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01390826 112.87096405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01390827 112.87096405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01390828 112.87098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01390829 112.87098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01390830 112.87102509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01390831 112.87102509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01390832 112.87105560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01390833 112.87105560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01390834 112.87107849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01390835 112.87107849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01390836 112.87110138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01390837 112.87110138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01390838 112.87113190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01390839 112.87113190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01390840 112.87115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01390841 112.87115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01390842 112.87117767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01390843 112.87117767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01390844 112.87120819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01390845 112.87121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01390846 112.87123108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01390847 112.87124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01390848 112.87126923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01390849 112.87126923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01390850 112.87129974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01390851 112.87129974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01390852 112.87132263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01390853 112.87132263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01390854 112.87134552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01390855 112.87134552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01390856 112.87137604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01390857 112.87137604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01390858 112.87139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01390859 112.87139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01390860 112.87142181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01390861 112.87142181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01390862 112.87145233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01390863 112.87145233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01390864 112.87147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01390865 112.87149048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01390866 112.87149811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01390867 112.87151337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01390868 112.87153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01390869 112.87153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01390870 112.87156677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01390871 112.87156677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01390872 112.87158966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01390873 112.87158966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01390874 112.87161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01390875 112.87161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01390876 112.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01390877 112.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01390878 112.87166595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01390879 112.87166595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01390880 112.87169647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01390881 112.87169647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01390882 112.87171936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01390883 112.87171936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01390884 112.87174225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01390885 112.87174225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01390886 112.87177277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01390887 112.87178040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01390888 112.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01390889 112.87181091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01390890 112.87183380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01390891 112.87183380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01390892 112.87185669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01390893 112.87185669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01390894 112.87188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01390895 112.87188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01390896 112.87191010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01390897 112.87191010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01390898 112.87193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01390899 112.87193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01390900 112.87196350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01390901 112.87196350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01390902 112.87198639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01390903 112.87198639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01390904 112.87200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01390905 112.87200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01390906 112.87203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01390907 112.87204742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01390908 112.87206268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01390909 112.87207794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01390910 112.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01390911 112.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01390912 112.87213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01390913 112.87213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01390914 112.87215424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01390915 112.87215424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01390916 112.87217712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01390917 112.87217712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01390918 112.87220764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01390919 112.87220764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01390920 112.87223053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01390921 112.87223053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01390922 112.87225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01390923 112.87225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01390924 112.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01390925 112.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01390926 112.87232208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01390927 112.87232208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01390928 112.87234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01390929 112.87236023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01390930 112.87239838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01390931 112.87239838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01390932 112.87242126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01390933 112.87242126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01390934 112.87245178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01390935 112.87245178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01390936 112.87247467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01390937 112.87248993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01390938 112.87249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01390939 112.87251282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01390940 112.87253571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01390941 112.87253571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01390942 112.87256622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01390943 112.87256622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01390944 112.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01390945 112.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01390946 112.87261200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01390947 112.87261200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01390948 112.87264252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01390949 112.87264252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01390950 112.87266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01390951 112.87266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01390952 112.87268829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01390953 112.87268829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01390954 112.87271881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01390955 112.87271881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01390956 112.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01390957 112.87275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01390958 112.87276459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01390959 112.87277985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01390960 112.87280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01390961 112.87280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01390962 112.87283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01390963 112.87283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01390964 112.87285614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01390965 112.87285614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01390966 112.87288666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01390967 112.87288666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01390968 112.87290955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01390969 112.87290955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01390970 112.87293243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01390971 112.87293243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01390972 112.87296295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01390973 112.87296295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01390974 112.87298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01390975 112.87298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01390976 112.87300873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01390977 112.87302399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01390978 112.87303925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01390979 112.87304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01390980 112.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01390981 112.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01390982 112.87310028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01390983 112.87310028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01390984 112.87312317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01390985 112.87312317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01390986 112.87315369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01390987 112.87315369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01390988 112.87317657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01390989 112.87317657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01390990 112.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01390991 112.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01390992 112.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01390993 112.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01390994 112.87325287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01390995 112.87325287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01390996 112.87328339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01390997 112.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01390998 112.87330627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01390999 112.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01391000 112.87334442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01391001 112.87334442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01391002 112.87336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01391003 112.87336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01391004 112.87339783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01391005 112.87339783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01391006 112.87342072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01391007 112.87342072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01391008 112.87344360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01391009 112.87344360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01391010 112.87347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01391011 112.87347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01391012 112.87349701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01391013 112.87349701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01391014 112.87351990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01391015 112.87351990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01391016 112.87355042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01391017 112.87355042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01391018 112.87357330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01391019 112.87358856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01391020 112.87359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01391021 112.87361145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01391022 112.87364197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01391023 112.87364197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01391024 112.87366486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01391025 112.87366486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01391026 112.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01391027 112.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01391028 112.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01391029 112.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01391030 112.87374115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01391031 112.87374115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01391032 112.87376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01391033 112.87376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01391034 112.87379456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01391035 112.87379456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01391036 112.87381744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01391037 112.87381744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01391038 112.87384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01391039 112.87385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01391040 112.87387848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01391041 112.87387848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01391042 112.87390900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01391043 112.87390900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01391044 112.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01391045 112.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01391046 112.87395477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01391047 112.87395477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01391048 112.87398529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01391049 112.87398529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01391050 112.87400818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01391051 112.87400818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01391052 112.87403870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01391053 112.87403870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01391054 112.87406158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01391055 112.87406158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01391056 112.87408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01391057 112.87408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01391058 112.87411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01391059 112.87412262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01391060 112.87413788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01391061 112.87415314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01391062 112.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01391063 112.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01391064 112.87419891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01391065 112.87419891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01391066 112.87422943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01391067 112.87422943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01391068 112.87425232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01391069 112.87425232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01391070 112.87427521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01391071 112.87427521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01391072 112.87430573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01391073 112.87430573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01391074 112.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01391075 112.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01391076 112.87435150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01391077 112.87435150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01391078 112.87438202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01391079 112.87439728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01391080 112.87440491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01391081 112.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01391082 112.87444305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01391083 112.87444305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01391084 112.87447357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01391085 112.87447357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01391086 112.87449646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01391087 112.87449646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01391088 112.87451935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01391089 112.87451935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01391090 112.87454987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01391091 112.87454987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01391092 112.87457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01391093 112.87457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01391094 112.87459564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01391095 112.87459564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01391096 112.87462616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01391097 112.87462616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01391098 112.87464905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01391099 112.87464905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01391100 112.87467194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01391101 112.87467194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01391102 112.87470245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01391103 112.87471008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01391104 112.87472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01391105 112.87474060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01391106 112.87476349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01391107 112.87476349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01391108 112.87479401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01391109 112.87479401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01391110 112.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01391111 112.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01391112 112.87483978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01391113 112.87483978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01391114 112.87487030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01391115 112.87487030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01391116 112.87489319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01391117 112.87489319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01391118 112.87491608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01391119 112.87491608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01391120 112.87494659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01391121 112.87495422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01391122 112.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01391123 112.87498474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01391124 112.87500763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01391125 112.87500763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01391126 112.87503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01391127 112.87503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01391128 112.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01391129 112.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01391130 112.87508392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01391131 112.87508392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01391132 112.87510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01391133 112.87510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01391134 112.87513733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01391135 112.87513733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01391136 112.87516022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01391137 112.87516022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01391138 112.87519073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01391139 112.87519073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01391140 112.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01391141 112.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01391142 112.87523651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01391143 112.87525177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01391144 112.87526703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01391145 112.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01391146 112.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01391147 112.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01391148 112.87532806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01391149 112.87532806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01391150 112.87535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01391151 112.87535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01391152 112.87538147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01391153 112.87538147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01391154 112.87540436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01391155 112.87540436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01391156 112.87542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01391157 112.87542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01391158 112.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01391159 112.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01391160 112.87548065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01391161 112.87548065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01391162 112.87550354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01391163 112.87551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01391164 112.87553406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01391165 112.87554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01391166 112.87557220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01391167 112.87557220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01391168 112.87559509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01391169 112.87559509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01391170 112.87562561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01391171 112.87562561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01391172 112.87564850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01391173 112.87564850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01391174 112.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01391175 112.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01391176 112.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01391177 112.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01391178 112.87572479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01391179 112.87572479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01391180 112.87574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01391181 112.87574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01391182 112.87577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01391183 112.87577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01391184 112.87580109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01391185 112.87581635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01391186 112.87582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01391187 112.87583923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01391188 112.87586212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01391189 112.87586212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01391190 112.87589264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01391191 112.87589264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01391192 112.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01391193 112.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01391194 112.87594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01391195 112.87594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01391196 112.87596893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01391197 112.87598419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01391198 112.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01391199 112.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01391200 112.87602997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01391201 112.87602997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01391202 112.87606049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01391203 112.87606049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01391204 112.87609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01391205 112.87609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01391206 112.87612152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01391207 112.87613678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01391208 112.87615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01391209 112.87615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01391210 112.87618256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01391211 112.87618256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01391212 112.87621307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01391213 112.87621307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01391214 112.87623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01391215 112.87623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01391216 112.87625885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01391217 112.87627411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01391218 112.87629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01391219 112.87629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01391220 112.87632751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01391221 112.87632751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01391222 112.87635040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01391223 112.87635040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01391224 112.87638092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01391225 112.87638092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01391226 112.87640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01391227 112.87640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01391228 112.87642670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01391229 112.87644196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01391230 112.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01391231 112.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01391232 112.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01391233 112.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01391234 112.87651825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01391235 112.87651825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01391236 112.87654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01391237 112.87654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01391238 112.87657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01391239 112.87657928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01391240 112.87660980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01391241 112.87660980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01391242 112.87663269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01391243 112.87663269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01391244 112.87665558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01391245 112.87665558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01391246 112.87668610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01391247 112.87668610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01391248 112.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01391249 112.87672424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01391250 112.87674713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01391251 112.87674713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01391252 112.87677765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01391253 112.87677765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01391254 112.87680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01391255 112.87680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01391256 112.87682343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01391257 112.87682343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01391258 112.87685394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01391259 112.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01391260 112.87687683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01391261 112.87689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01391262 112.87691498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01391263 112.87691498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01391264 112.87693787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01391265 112.87693787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01391266 112.87696838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01391267 112.87696838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01391268 112.87700653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01391269 112.87700653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01391270 112.87702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01391271 112.87702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01391272 112.87705231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01391273 112.87705231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01391274 112.87709808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01391275 112.87709808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01391276 112.87712097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01391277 112.87712097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01391278 112.87714386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01391279 112.87714386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01391280 112.87717438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01391281 112.87717438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01391282 112.87721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01391283 112.87721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01391284 112.87723541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01391285 112.87723541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01391286 112.87725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01391287 112.87725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01391288 112.87728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01391289 112.87729645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01391290 112.87732697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01391291 112.87732697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01391292 112.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01391293 112.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01391294 112.87737274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01391295 112.87737274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01391296 112.87740326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01391297 112.87740326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01391298 112.87742615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01391299 112.87744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01391300 112.87746429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01391301 112.87746429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01391302 112.87749481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01391303 112.87749481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01391304 112.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01391305 112.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01391306 112.87754059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01391307 112.87754059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01391308 112.87757111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01391309 112.87757874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01391310 112.87760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01391311 112.87760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01391312 112.87763214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01391313 112.87763214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01391314 112.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01391315 112.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01391316 112.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01391317 112.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01391318 112.87770844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01391319 112.87772369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01391320 112.87774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01391321 112.87774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01391322 112.87776947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01391323 112.87776947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01391324 112.87779999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01391325 112.87779999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01391326 112.87782288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01391327 112.87782288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01391328 112.87786102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01391329 112.87786102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01391330 112.87789154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01391331 112.87789154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01391332 112.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01391333 112.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01391334 112.87793732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01391335 112.87795258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01391336 112.87797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01391337 112.87797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01391338 112.87800598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01391339 112.87800598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01391340 112.87802887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01391341 112.87802887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01391342 112.87805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01391343 112.87805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01391344 112.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01391345 112.87808990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01391346 112.87812042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01391347 112.87812042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01391348 112.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01391349 112.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01391350 112.87816620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01391351 112.87816620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01391352 112.87819672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01391353 112.87819672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01391354 112.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01391355 112.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01391356 112.87825775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01391357 112.87825775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01391358 112.87828827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01391359 112.87828827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01391360 112.87831116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01391361 112.87831116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01391362 112.87833405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01391363 112.87834930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01391364 112.87837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01391365 112.87837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01391366 112.87840271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01391367 112.87840271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01391368 112.87842560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01391369 112.87842560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01391370 112.87844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01391371 112.87844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01391372 112.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01391373 112.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01391374 112.87850189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01391375 112.87851715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01391376 112.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01391377 112.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01391378 112.87856293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01391379 112.87856293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01391380 112.87859344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01391381 112.87860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01391382 112.87861633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01391383 112.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01391384 112.87865448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01391385 112.87865448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01391386 112.87868500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01391387 112.87868500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01391388 112.87870789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01391389 112.87870789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01391390 112.87873077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01391391 112.87873077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01391392 112.87876129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01391393 112.87876129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01391394 112.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01391395 112.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01391396 112.87880707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01391397 112.87880707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01391398 112.87883759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01391399 112.87884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01391400 112.87886047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01391401 112.87887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01391402 112.87889862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01391403 112.87889862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01391404 112.87892151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01391405 112.87892151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01391406 112.87895203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01391407 112.87895203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01391408 112.87897491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01391409 112.87897491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01391410 112.87901306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01391411 112.87901306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01391412 112.87904358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01391413 112.87904358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01391414 112.87906647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01391415 112.87906647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01391416 112.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01391417 112.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01391418 112.87911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01391419 112.87911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01391420 112.87914276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01391421 112.87914276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01391422 112.87916565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01391423 112.87918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01391424 112.87919617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01391425 112.87920380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01391426 112.87923431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01391427 112.87923431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01391428 112.87925720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01391429 112.87925720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01391430 112.87928009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01391431 112.87928009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01391432 112.87931061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01391433 112.87931061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01391434 112.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01391435 112.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01391436 112.87935638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01391437 112.87935638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01391438 112.87938690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01391439 112.87940216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01391440 112.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01391441 112.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01391442 112.87944794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01391443 112.87944794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01391444 112.87947845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01391445 112.87947845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01391446 112.87950134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01391447 112.87950134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01391448 112.87952423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01391449 112.87953949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01391450 112.87956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01391451 112.87956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01391452 112.87959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01391453 112.87959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01391454 112.87961578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01391455 112.87961578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01391456 112.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01391457 112.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01391458 112.87966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01391459 112.87967682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01391460 112.87970734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01391461 112.87970734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01391462 112.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01391463 112.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01391464 112.87975311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01391465 112.87975311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01391466 112.87978363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01391467 112.87978363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01391468 112.87980652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01391469 112.87980652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01391470 112.87983704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01391471 112.87983704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01391472 112.87985992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01391473 112.87985992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01391474 112.87989807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01391475 112.87989807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01391476 112.87992096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01391477 112.87992096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01391478 112.87995148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01391479 112.87995148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01391480 112.87998962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01391481 112.87998962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01391482 112.88001251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01391483 112.88001251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01391484 112.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01391485 112.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01391486 112.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01391487 112.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01391488 112.88008881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01391489 112.88010406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01391490 112.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01391491 112.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01391492 112.88014984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01391493 112.88014984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01391494 112.88018036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01391495 112.88018036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01391496 112.88020325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01391497 112.88020325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01391498 112.88023376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01391499 112.88024139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01391500 112.88027191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01391501 112.88027191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01391502 112.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01391503 112.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01391504 112.88031769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01391505 112.88031769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01391506 112.88034821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01391507 112.88034821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01391508 112.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01391509 112.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01391510 112.88039398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01391511 112.88039398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01391512 112.88042450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01391513 112.88043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01391514 112.88044739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01391515 112.88046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01391516 112.88048553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01391517 112.88048553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01391518 112.88050842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01391519 112.88050842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01391520 112.88053894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01391521 112.88053894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01391522 112.88056183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01391523 112.88057709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01391524 112.88059998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01391525 112.88059998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01391526 112.88063049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01391527 112.88063049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01391528 112.88065338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01391529 112.88065338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01391530 112.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01391531 112.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01391532 112.88070679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01391533 112.88071442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01391534 112.88074493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01391535 112.88074493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01391536 112.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01391537 112.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01391538 112.88079071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01391539 112.88079071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01391540 112.88082123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01391541 112.88082123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01391542 112.88084412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01391543 112.88084412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01391544 112.88086700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01391545 112.88086700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01391546 112.88089752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01391547 112.88089752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01391548 112.88092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01391549 112.88092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01391550 112.88095856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01391551 112.88095856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01391552 112.88098907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01391553 112.88098907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01391554 112.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01391555 112.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01391556 112.88103485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01391557 112.88105011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01391558 112.88106537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01391559 112.88107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01391560 112.88110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01391561 112.88110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01391562 112.88112640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01391563 112.88112640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01391564 112.88114929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01391565 112.88114929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01391566 112.88117981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01391567 112.88117981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01391568 112.88120270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01391569 112.88120270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01391570 112.88122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01391571 112.88122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01391572 112.88125610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01391573 112.88125610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01391574 112.88127899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01391575 112.88127899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01391576 112.88130188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01391577 112.88130188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01391578 112.88133240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01391579 112.88134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01391580 112.88135529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01391581 112.88137054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01391582 112.88139343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01391583 112.88139343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01391584 112.88142395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01391585 112.88142395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01391586 112.88144684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01391587 112.88144684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01391588 112.88146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01391589 112.88146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01391590 112.88150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01391591 112.88150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01391592 112.88152313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01391593 112.88152313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01391594 112.88154602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01391595 112.88154602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01391596 112.88157654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01391597 112.88157654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01391598 112.88159943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01391599 112.88159943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01391600 112.88162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01391601 112.88162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01391602 112.88165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01391603 112.88166046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01391604 112.88167572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01391605 112.88169098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01391606 112.88171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01391607 112.88171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01391608 112.88174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01391609 112.88174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01391610 112.88176727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01391611 112.88176727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01391612 112.88179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01391613 112.88179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01391614 112.88182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01391615 112.88182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01391616 112.88184357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01391617 112.88184357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01391618 112.88186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01391619 112.88186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01391620 112.88189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01391621 112.88189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01391622 112.88191986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01391623 112.88191986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01391624 112.88194275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01391625 112.88195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01391626 112.88197327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01391627 112.88198090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01391628 112.88201141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01391629 112.88201141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01391630 112.88203430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01391631 112.88203430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01391632 112.88205719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01391633 112.88205719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01391634 112.88208771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01391635 112.88208771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01391636 112.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01391637 112.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01391638 112.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01391639 112.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01391640 112.88216400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01391641 112.88216400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01391642 112.88218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01391643 112.88218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01391644 112.88221741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01391645 112.88221741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01391646 112.88224030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01391647 112.88225555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01391648 112.88226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01391649 112.88227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01391650 112.88230133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01391651 112.88230133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01391652 112.88233185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01391653 112.88233185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01391654 112.88235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01391655 112.88235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01391656 112.88237762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01391657 112.88237762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01391658 112.88240814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01391659 112.88240814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01391660 112.88243103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01391661 112.88243103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01391662 112.88245392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01391663 112.88245392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01391664 112.88248444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01391665 112.88248444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01391666 112.88250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01391667 112.88250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01391668 112.88253784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01391669 112.88254547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01391670 112.88257599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01391671 112.88257599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01391672 112.88259888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01391673 112.88259888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01391674 112.88262177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01391675 112.88262177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01391676 112.88265228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01391677 112.88265228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01391678 112.88267517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01391679 112.88267517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01391680 112.88269806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01391681 112.88269806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01391682 112.88272858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01391683 112.88272858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01391684 112.88275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01391685 112.88275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01391686 112.88277435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01391687 112.88277435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01391688 112.88281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01391689 112.88281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01391690 112.88284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01391691 112.88284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01391692 112.88286591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01391693 112.88286591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01391694 112.88290405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01391695 112.88291931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01391696 112.88295746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01391697 112.88297272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01391698 112.88299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01391699 112.88299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01391700 112.88301849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01391701 112.88301849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01391702 112.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01391703 112.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01391704 112.88309479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01391705 112.88309479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01391706 112.88314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01391707 112.88314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01391708 112.88317108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01391709 112.88317108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01391710 112.88320160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01391711 112.88320160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01391712 112.88322449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01391713 112.88323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01391714 112.88326263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01391715 112.88326263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01391716 112.88329315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01391717 112.88329315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01391718 112.88331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01391719 112.88331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01391720 112.88333893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01391721 112.88333893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01391722 112.88336945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01391723 112.88336945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01391724 112.88339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01391725 112.88340759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01391726 112.88343048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01391727 112.88343048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01391728 112.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01391729 112.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01391730 112.88348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01391731 112.88348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01391732 112.88350677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01391733 112.88352203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01391734 112.88354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01391735 112.88354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01391736 112.88356781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01391737 112.88356781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01391738 112.88359833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01391739 112.88359833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01391740 112.88362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01391741 112.88362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01391742 112.88365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01391743 112.88365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01391744 112.88367462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01391745 112.88368988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01391746 112.88371277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01391747 112.88371277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01391748 112.88373566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01391749 112.88373566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01391750 112.88376617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01391751 112.88376617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01391752 112.88378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01391753 112.88378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01391754 112.88381195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01391755 112.88381195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01391756 112.88384247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01391757 112.88385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01391758 112.88386536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01391759 112.88388062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01391760 112.88390350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01391761 112.88390350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01391762 112.88392639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01391763 112.88392639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01391764 112.88395691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01391765 112.88395691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01391766 112.88397980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01391767 112.88397980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01391768 112.88400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01391769 112.88400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01391770 112.88403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01391771 112.88403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01391772 112.88405609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01391773 112.88407135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01391774 112.88409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01391775 112.88409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01391776 112.88412476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01391777 112.88412476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01391778 112.88414764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01391779 112.88414764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01391780 112.88417053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01391781 112.88417053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01391782 112.88420105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01391783 112.88420105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01391784 112.88422394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01391785 112.88423920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01391786 112.88424683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01391787 112.88426208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01391788 112.88428497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01391789 112.88428497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01391790 112.88431549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01391791 112.88431549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01391792 112.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01391793 112.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01391794 112.88436127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01391795 112.88436127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01391796 112.88439178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01391797 112.88439178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01391798 112.88441467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01391799 112.88441467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01391800 112.88444519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01391801 112.88445282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01391802 112.88448334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01391803 112.88448334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01391804 112.88450623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01391805 112.88450623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01391806 112.88452911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01391807 112.88454437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01391808 112.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01391809 112.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01391810 112.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01391811 112.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01391812 112.88462067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01391813 112.88462067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01391814 112.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01391815 112.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01391816 112.88467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01391817 112.88467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01391818 112.88469696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01391819 112.88471222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01391820 112.88471985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01391821 112.88473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01391822 112.88475800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01391823 112.88475800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01391824 112.88478851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01391825 112.88478851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01391826 112.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01391827 112.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01391828 112.88484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01391829 112.88484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01391830 112.88486481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01391831 112.88486481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01391832 112.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01391833 112.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01391834 112.88491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01391835 112.88491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01391836 112.88495636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01391837 112.88495636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01391838 112.88497925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01391839 112.88497925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01391840 112.88500214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01391841 112.88501740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01391842 112.88503265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01391843 112.88504028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01391844 112.88507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01391845 112.88507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01391846 112.88509369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01391847 112.88509369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01391848 112.88511658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01391849 112.88511658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01391850 112.88514709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01391851 112.88514709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01391852 112.88516998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01391853 112.88516998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01391854 112.88520050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01391855 112.88520050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01391856 112.88522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01391857 112.88522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01391858 112.88524628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01391859 112.88524628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01391860 112.88527679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01391861 112.88527679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01391862 112.88529968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01391863 112.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01391864 112.88533783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01391865 112.88533783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01391866 112.88536072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01391867 112.88536072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01391868 112.88539124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01391869 112.88539124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01391870 112.88541412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01391871 112.88541412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01391872 112.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01391873 112.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01391874 112.88546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01391875 112.88546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01391876 112.88549042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01391877 112.88549042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01391878 112.88551331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01391879 112.88551331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01391880 112.88554382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01391881 112.88554382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01391882 112.88556671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01391883 112.88556671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01391884 112.88559723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01391885 112.88560486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01391886 112.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01391887 112.88563538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01391888 112.88565826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01391889 112.88565826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01391890 112.88568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01391891 112.88568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01391892 112.88571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01391893 112.88571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01391894 112.88573456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01391895 112.88573456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01391896 112.88575745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01391897 112.88575745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01391898 112.88578796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01391899 112.88578796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01391900 112.88581085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01391901 112.88581085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01391902 112.88583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01391903 112.88583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01391904 112.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01391905 112.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01391906 112.88588715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01391907 112.88590240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01391908 112.88591003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01391909 112.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01391910 112.88595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01391911 112.88595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01391912 112.88597870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01391913 112.88597870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01391914 112.88600159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01391915 112.88600159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01391916 112.88603210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01391917 112.88603210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01391918 112.88605499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01391919 112.88605499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01391920 112.88607788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01391921 112.88607788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01391922 112.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01391923 112.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01391924 112.88613129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01391925 112.88613129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01391926 112.88615417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01391927 112.88616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01391928 112.88618469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01391929 112.88619232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01391930 112.88622284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01391931 112.88622284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01391932 112.88624573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01391933 112.88624573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01391934 112.88626862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01391935 112.88626862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01391936 112.88629913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01391937 112.88629913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01391938 112.88632202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01391939 112.88632202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01391940 112.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01391941 112.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01391942 112.88637543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01391943 112.88637543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01391944 112.88639832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01391945 112.88639832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01391946 112.88642883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01391947 112.88642883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01391948 112.88645172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01391949 112.88645172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01391950 112.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01391951 112.88648987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01391952 112.88650513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01391953 112.88651276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01391954 112.88654327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01391955 112.88654327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01391956 112.88656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01391957 112.88656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01391958 112.88658905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01391959 112.88658905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01391960 112.88661957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01391961 112.88661957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01391962 112.88664246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01391963 112.88664246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01391964 112.88666534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01391965 112.88666534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01391966 112.88669586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01391967 112.88669586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01391968 112.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01391969 112.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01391970 112.88674927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01391971 112.88674927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01391972 112.88677216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01391973 112.88678741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01391974 112.88679504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01391975 112.88681030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01391976 112.88683319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01391977 112.88683319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01391978 112.88686371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01391979 112.88686371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01391980 112.88688660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01391981 112.88688660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01391982 112.88690948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01391983 112.88690948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01391984 112.88694000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01391985 112.88694000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01391986 112.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01391987 112.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01391988 112.88698578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01391989 112.88698578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01391990 112.88701630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01391991 112.88701630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01391992 112.88703918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01391993 112.88703918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01391994 112.88706207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01391995 112.88707733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01391996 112.88709259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01391997 112.88710022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01391998 112.88713074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01391999 112.88713074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01392000 112.88715363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01392001 112.88715363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01392002 112.88718414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01392003 112.88718414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01392004 112.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01392005 112.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01392006 112.88722992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01392007 112.88722992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01392008 112.88726044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01392009 112.88726044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01392010 112.88728333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01392011 112.88728333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01392012 112.88730621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01392013 112.88730621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01392014 112.88733673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01392015 112.88733673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01392016 112.88735962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01392017 112.88737488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01392018 112.88738251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01392019 112.88739777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01392020 112.88742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01392021 112.88742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01392022 112.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01392023 112.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01392024 112.88747406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01392025 112.88747406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01392026 112.88750458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01392027 112.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01392028 112.88754272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01392029 112.88754272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01392030 112.88758087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01392031 112.88758850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01392032 112.88761902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01392033 112.88761902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01392034 112.88764191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01392035 112.88764191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01392036 112.88766479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01392037 112.88766479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01392038 112.88769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01392039 112.88769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01392040 112.88771820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01392041 112.88771820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01392042 112.88774109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01392043 112.88774109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01392044 112.88777161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01392045 112.88777924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01392046 112.88779449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01392047 112.88780975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01392048 112.88783264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01392049 112.88783264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01392050 112.88785553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01392051 112.88785553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01392052 112.88788605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01392053 112.88788605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01392054 112.88790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01392055 112.88790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01392056 112.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01392057 112.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01392058 112.88796234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01392059 112.88796234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01392060 112.88798523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01392061 112.88798523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01392062 112.88801575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01392063 112.88801575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01392064 112.88803864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01392065 112.88803864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01392066 112.88806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01392067 112.88807678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01392068 112.88809204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01392069 112.88809967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01392070 112.88811493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01392071 112.88813019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01392072 112.88815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01392073 112.88815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01392074 112.88817596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01392075 112.88817596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01392076 112.88820648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01392077 112.88820648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01392078 112.88822937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01392079 112.88822937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01392080 112.88825226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01392081 112.88825226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01392082 112.88828278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01392083 112.88828278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01392084 112.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01392085 112.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01392086 112.88833618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01392087 112.88833618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01392088 112.88835907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01392089 112.88837433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01392090 112.88838196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01392091 112.88839722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01392092 112.88842010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01392093 112.88842010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01392094 112.88845062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01392095 112.88845062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01392096 112.88847351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01392097 112.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01392098 112.88851166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01392099 112.88851166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01392100 112.88853455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01392101 112.88853455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01392102 112.88856506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01392103 112.88856506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01392104 112.88858795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01392105 112.88858795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01392106 112.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01392107 112.88862610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01392108 112.88864899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01392109 112.88864899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01392110 112.88867950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01392111 112.88867950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01392112 112.88870239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01392113 112.88870239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01392114 112.88873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01392115 112.88874054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01392116 112.88875580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01392117 112.88877106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01392118 112.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01392119 112.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01392120 112.88881683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01392121 112.88881683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01392122 112.88884735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01392123 112.88884735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01392124 112.88887024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01392125 112.88887024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01392126 112.88889313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01392127 112.88889313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01392128 112.88892365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01392129 112.88893127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01392130 112.88896179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01392131 112.88896179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01392132 112.88898468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01392133 112.88898468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01392134 112.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01392135 112.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01392136 112.88906097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01392137 112.88906097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01392138 112.88909149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01392139 112.88909149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01392140 112.88911438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01392141 112.88911438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01392142 112.88913727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01392143 112.88915253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01392144 112.88916779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01392145 112.88917542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01392146 112.88920593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01392147 112.88920593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01392148 112.88922882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01392149 112.88922882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01392150 112.88925171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01392151 112.88925171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01392152 112.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01392153 112.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01392154 112.88930511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01392155 112.88930511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01392156 112.88932800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01392157 112.88932800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01392158 112.88935852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01392159 112.88935852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01392160 112.88938141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01392161 112.88938141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01392162 112.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01392163 112.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01392164 112.88943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01392165 112.88943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01392166 112.88945770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01392167 112.88947296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01392168 112.88948822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01392169 112.88949585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01392170 112.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01392171 112.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01392172 112.88954926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01392173 112.88954926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01392174 112.88957214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01392175 112.88957214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01392176 112.88960266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01392177 112.88960266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01392178 112.88962555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01392179 112.88962555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01392180 112.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01392181 112.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01392182 112.88967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01392183 112.88967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01392184 112.88970184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01392185 112.88970184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01392186 112.88972473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01392187 112.88972473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01392188 112.88976288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01392189 112.88976288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01392190 112.88979340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01392191 112.88979340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01392192 112.88984680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01392193 112.88984680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01392194 112.88986969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01392195 112.88986969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01392196 112.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01392197 112.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01392198 112.88992310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01392199 112.88993073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01392200 112.88996124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01392201 112.88996124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01392202 112.88998413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01392203 112.88998413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01392204 112.89000702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01392205 112.89000702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01392206 112.89003754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01392207 112.89003754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01392208 112.89006042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01392209 112.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01392210 112.89009857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01392211 112.89009857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01392212 112.89012146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01392213 112.89012146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01392214 112.89015198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01392215 112.89015198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01392216 112.89017487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01392217 112.89017487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01392218 112.89020538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01392219 112.89021301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01392220 112.89024353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01392221 112.89024353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01392222 112.89028168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01392223 112.89028931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01392224 112.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01392225 112.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01392226 112.89034271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01392227 112.89034271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01392228 112.89036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01392229 112.89036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01392230 112.89039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01392231 112.89039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01392232 112.89041901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01392233 112.89041901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01392234 112.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01392235 112.89045715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01392236 112.89048004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01392237 112.89048004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01392238 112.89051056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01392239 112.89051056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01392240 112.89053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01392241 112.89053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01392242 112.89055634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01392243 112.89055634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01392244 112.89058685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01392245 112.89058685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01392246 112.89060974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01392247 112.89062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01392248 112.89064026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01392249 112.89064789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01392250 112.89067841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01392251 112.89067841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01392252 112.89070129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01392253 112.89070129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01392254 112.89072418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01392255 112.89072418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01392256 112.89075470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01392257 112.89075470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01392258 112.89077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01392259 112.89077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01392260 112.89080048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01392261 112.89080048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01392262 112.89083099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01392263 112.89083099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01392264 112.89085388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01392265 112.89085388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01392266 112.89087677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01392267 112.89087677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01392268 112.89090729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01392269 112.89091492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01392270 112.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01392271 112.89094543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01392272 112.89096832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01392273 112.89096832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01392274 112.89099884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01392275 112.89099884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01392276 112.89102173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01392277 112.89102173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01392278 112.89104462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01392279 112.89104462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01392280 112.89107513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01392281 112.89107513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01392282 112.89109802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01392283 112.89109802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01392284 112.89112091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01392285 112.89112091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01392286 112.89115143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01392287 112.89115143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01392288 112.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01392289 112.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01392290 112.89119720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01392291 112.89119720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01392292 112.89122772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01392293 112.89123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01392294 112.89125061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01392295 112.89126587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01392296 112.89128876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01392297 112.89128876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01392298 112.89131165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01392299 112.89131165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01392300 112.89134216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01392301 112.89134216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01392302 112.89136505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01392303 112.89136505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01392304 112.89139557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01392305 112.89139557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01392306 112.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01392307 112.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01392308 112.89144135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01392309 112.89144135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01392310 112.89147186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01392311 112.89147186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01392312 112.89149475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01392313 112.89149475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01392314 112.89154816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01392315 112.89154816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01392316 112.89157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01392317 112.89157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01392318 112.89160919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01392319 112.89160919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01392320 112.89163208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01392321 112.89163208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01392322 112.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01392323 112.89167023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01392324 112.89168549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01392325 112.89170074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01392326 112.89170837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01392327 112.89172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01392328 112.89175415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01392329 112.89175415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01392330 112.89177704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01392331 112.89177704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01392332 112.89179993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01392333 112.89179993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01392334 112.89183044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01392335 112.89183044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01392336 112.89185333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01392337 112.89185333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01392338 112.89187622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01392339 112.89187622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01392340 112.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01392341 112.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01392342 112.89192963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01392343 112.89192963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01392344 112.89195251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01392345 112.89195251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01392346 112.89198303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01392347 112.89199066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01392348 112.89200592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01392349 112.89202118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01392350 112.89204407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01392351 112.89204407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01392352 112.89206696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01392353 112.89206696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01392354 112.89209747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01392355 112.89209747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01392356 112.89212036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01392357 112.89212036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01392358 112.89215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01392359 112.89215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01392360 112.89217377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01392361 112.89217377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01392362 112.89219666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01392363 112.89219666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01392364 112.89222717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01392365 112.89222717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01392366 112.89225006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01392367 112.89225006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01392368 112.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01392369 112.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01392370 112.89230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01392371 112.89231110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01392372 112.89232635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01392373 112.89234161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01392374 112.89236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01392375 112.89236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01392376 112.89238739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01392377 112.89238739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01392378 112.89241791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01392379 112.89241791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01392380 112.89244080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01392381 112.89244080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01392382 112.89246368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01392383 112.89246368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01392384 112.89249420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01392385 112.89249420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01392386 112.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01392387 112.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01392388 112.89254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01392389 112.89254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01392390 112.89257050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01392391 112.89257050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01392392 112.89259338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01392393 112.89260864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01392394 112.89262390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01392395 112.89263153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01392396 112.89266205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01392397 112.89266205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01392398 112.89268494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01392399 112.89268494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01392400 112.89270782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01392401 112.89270782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01392402 112.89273834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01392403 112.89273834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01392404 112.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01392405 112.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01392406 112.89278412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01392407 112.89278412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01392408 112.89281464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01392409 112.89281464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01392410 112.89283752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01392411 112.89283752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01392412 112.89286041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01392413 112.89286041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01392414 112.89289093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01392415 112.89290619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01392416 112.89291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01392417 112.89292908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01392418 112.89295197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01392419 112.89295197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01392420 112.89298248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01392421 112.89298248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01392422 112.89300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01392423 112.89300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01392424 112.89302826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01392425 112.89302826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01392426 112.89305878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01392427 112.89305878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01392428 112.89308167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01392429 112.89308167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01392430 112.89310455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01392431 112.89310455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01392432 112.89313507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01392433 112.89313507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01392434 112.89315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01392435 112.89315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01392436 112.89318085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01392437 112.89318085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01392438 112.89321136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01392439 112.89321899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01392440 112.89323425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01392441 112.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01392442 112.89327240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01392443 112.89327240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01392444 112.89330292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01392445 112.89330292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01392446 112.89332581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01392447 112.89332581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01392448 112.89334869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01392449 112.89334869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01392450 112.89337921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01392451 112.89337921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01392452 112.89340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01392453 112.89340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01392454 112.89342499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01392455 112.89342499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01392456 112.89345551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01392457 112.89345551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01392458 112.89347839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01392459 112.89347839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01392460 112.89350128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01392461 112.89350128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01392462 112.89353180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01392463 112.89353943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01392464 112.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01392465 112.89356995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01392466 112.89359283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01392467 112.89359283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01392468 112.89361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01392469 112.89361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01392470 112.89364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01392471 112.89364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01392472 112.89366913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01392473 112.89366913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01392474 112.89369965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01392475 112.89369965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01392476 112.89372253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01392477 112.89372253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01392478 112.89374542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01392479 112.89374542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01392480 112.89377594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01392481 112.89377594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01392482 112.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01392483 112.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01392484 112.89382172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01392485 112.89383698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01392486 112.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01392487 112.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01392488 112.89389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01392489 112.89389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01392490 112.89391327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01392491 112.89391327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01392492 112.89393616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01392493 112.89393616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01392494 112.89396667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01392495 112.89396667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01392496 112.89398956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01392497 112.89398956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01392498 112.89401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01392499 112.89401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01392500 112.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01392501 112.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01392502 112.89406586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01392503 112.89406586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01392504 112.89409637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01392505 112.89409637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01392506 112.89411926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01392507 112.89413452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01392508 112.89414215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01392509 112.89415741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01392510 112.89418030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01392511 112.89418030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01392512 112.89421082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01392513 112.89421082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01392514 112.89423370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01392515 112.89423370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01392516 112.89425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01392517 112.89425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01392518 112.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01392519 112.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01392520 112.89431000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01392521 112.89431000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01392522 112.89433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01392523 112.89433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01392524 112.89436340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01392525 112.89436340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01392526 112.89438629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01392527 112.89438629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01392528 112.89440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01392529 112.89442444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01392530 112.89443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01392531 112.89445496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01392532 112.89446259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01392533 112.89447784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01392534 112.89450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01392535 112.89450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01392536 112.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01392537 112.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01392538 112.89455414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01392539 112.89455414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01392540 112.89457703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01392541 112.89457703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01392542 112.89460754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01392543 112.89460754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01392544 112.89463043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01392545 112.89463043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01392546 112.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01392547 112.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01392548 112.89468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01392549 112.89468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01392550 112.89470673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01392551 112.89470673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01392552 112.89472961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01392553 112.89474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01392554 112.89476013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01392555 112.89476776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01392556 112.89479828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01392557 112.89479828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01392558 112.89482117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01392559 112.89482117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01392560 112.89485168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01392561 112.89485168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01392562 112.89487457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01392563 112.89487457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01392564 112.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01392565 112.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01392566 112.89492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01392567 112.89492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01392568 112.89495087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01392569 112.89495087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01392570 112.89497375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01392571 112.89498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01392572 112.89501190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01392573 112.89501190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01392574 112.89504242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01392575 112.89504242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01392576 112.89506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01392577 112.89506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01392578 112.89508820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01392579 112.89508820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01392580 112.89511871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01392581 112.89511871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01392582 112.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01392583 112.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01392584 112.89516449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01392585 112.89517975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01392586 112.89519501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01392587 112.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01392588 112.89523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01392589 112.89523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01392590 112.89525604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01392591 112.89525604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01392592 112.89528656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01392593 112.89528656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01392594 112.89530945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01392595 112.89530945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01392596 112.89533234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01392597 112.89533234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01392598 112.89536285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01392599 112.89536285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01392600 112.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01392601 112.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01392602 112.89540863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01392603 112.89540863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01392604 112.89543915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01392605 112.89543915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01392606 112.89546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01392607 112.89546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01392608 112.89548492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01392609 112.89550018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01392610 112.89551544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01392611 112.89552307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01392612 112.89555359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01392613 112.89555359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01392614 112.89557648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01392615 112.89557648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01392616 112.89560699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01392617 112.89560699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01392618 112.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01392619 112.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01392620 112.89565277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01392621 112.89565277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01392622 112.89568329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01392623 112.89568329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01392624 112.89570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01392625 112.89570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01392626 112.89572906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01392627 112.89572906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01392628 112.89575958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01392629 112.89575958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01392630 112.89578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01392631 112.89578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01392632 112.89580536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01392633 112.89582062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01392634 112.89583588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01392635 112.89584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01392636 112.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01392637 112.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01392638 112.89589691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01392639 112.89589691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01392640 112.89591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01392641 112.89591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01392642 112.89595032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01392643 112.89595032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01392644 112.89597321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01392645 112.89597321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01392646 112.89600372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01392647 112.89601135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01392648 112.89604187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01392649 112.89604187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01392650 112.89606476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01392651 112.89606476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01392652 112.89608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01392653 112.89608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01392654 112.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01392655 112.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01392656 112.89614105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01392657 112.89614105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01392658 112.89616394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01392659 112.89617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01392660 112.89619446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01392661 112.89620209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01392662 112.89623260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01392663 112.89623260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01392664 112.89625549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01392665 112.89625549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01392666 112.89627838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01392667 112.89627838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01392668 112.89630890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01392669 112.89630890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01392670 112.89633179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01392671 112.89633179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01392672 112.89635468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01392673 112.89635468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01392674 112.89638519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01392675 112.89638519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01392676 112.89640808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01392677 112.89640808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01392678 112.89643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01392679 112.89643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01392680 112.89646149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01392681 112.89647675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01392682 112.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01392683 112.89649963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01392684 112.89652252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01392685 112.89652252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01392686 112.89655304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01392687 112.89655304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01392688 112.89657593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01392689 112.89657593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01392690 112.89659882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01392691 112.89659882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01392692 112.89662933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01392693 112.89662933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01392694 112.89665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01392695 112.89665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01392696 112.89667511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01392697 112.89667511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01392698 112.89670563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01392699 112.89670563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01392700 112.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01392701 112.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01392702 112.89676666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01392703 112.89676666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01392704 112.89679718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01392705 112.89679718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01392706 112.89682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01392707 112.89682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01392708 112.89684296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01392709 112.89684296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01392710 112.89687347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01392711 112.89688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01392712 112.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01392713 112.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01392714 112.89693451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01392715 112.89693451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01392716 112.89695740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01392717 112.89695740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01392718 112.89698792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01392719 112.89698792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01392720 112.89701080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01392721 112.89701080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01392722 112.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01392723 112.89704895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01392724 112.89707184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01392725 112.89707184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01392726 112.89710236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01392727 112.89710236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01392728 112.89712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01392729 112.89712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01392730 112.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01392731 112.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01392732 112.89717865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01392733 112.89719391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01392734 112.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01392735 112.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01392736 112.89723969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01392737 112.89723969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01392738 112.89727020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01392739 112.89727020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01392740 112.89730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01392741 112.89730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01393673 112.91007996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01393674 112.91010284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01393675 112.91010284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01393676 112.91013336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01393677 112.91013336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01393678 112.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01393679 112.91017151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01393680 112.91019440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01393681 112.91019440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01393682 112.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01393683 112.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01393684 112.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01393685 112.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01393686 112.91027069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01393687 112.91028595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01393688 112.91030121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01393689 112.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01393690 112.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01393691 112.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01393692 112.91036224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01393693 112.91036224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01393694 112.91038513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01393695 112.91038513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01393696 112.91041565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01393697 112.91041565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01393698 112.91043854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01393699 112.91043854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01393700 112.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01393701 112.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01393702 112.91049194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01393703 112.91049194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01393704 112.91051483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01393705 112.91051483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01393706 112.91053772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01393707 112.91053772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01393708 112.91057587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01393709 112.91057587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01393710 112.91060638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01393711 112.91060638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01393712 112.91062927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01393713 112.91062927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01393714 112.91065979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01393715 112.91065979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01393716 112.91068268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01395670 112.93826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01395671 112.93827820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01395672 112.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01395673 112.93830109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01395674 112.93833160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01395675 112.93833160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01395676 112.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01395677 112.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01395678 112.93837738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01395679 112.93837738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01395680 112.93840790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01395681 112.93840790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01395682 112.93843079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01395683 112.93844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01395684 112.93846893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01395685 112.93846893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01395686 112.93849945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01395687 112.93849945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01395688 112.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01395689 112.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01395690 112.93857574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01395691 112.93857574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01395692 112.93861389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01395693 112.93861389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01395694 112.93865204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01395695 112.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01395696 112.93869781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01395697 112.93869781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01395698 112.93872833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01395699 112.93873596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01395700 112.93877411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01395701 112.93877411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01395702 112.93881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01395703 112.93881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01395704 112.93885803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01395705 112.93885803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01395706 112.93889618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01395707 112.93889618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01395708 112.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01395709 112.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01395710 112.93897247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01395711 112.93897247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01395712 112.93901062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01395713 112.93901825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01397702 112.96923065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae8 -01397703 112.96925354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -01397704 112.96925354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -01397705 112.96927643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb08 -01397706 112.96927643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb08 -01397707 112.96930695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb18 -01397708 112.96932220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb18 -01397709 112.96934509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb28 -01397710 112.96934509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb28 -01397711 112.96936798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb38 -01397712 112.96936798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb38 -01397713 112.96939850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb48 -01397714 112.96939850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb48 -01397715 112.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb58 -01397716 112.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb58 -01397717 112.96944427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb68 -01397718 112.96945953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb68 -01397719 112.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb78 -01397720 112.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb78 -01397721 112.96951294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb88 -01397722 112.96951294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb88 -01397723 112.96953583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb98 -01397724 112.96953583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb98 -01397725 112.96955872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba8 -01397726 112.96955872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba8 -01397727 112.96958923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb8 -01397728 112.96958923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb8 -01397729 112.96961212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc8 -01397730 112.96962738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc8 -01397731 112.96965027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd8 -01397732 112.96965027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd8 -01397733 112.96967316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe8 -01397734 112.96967316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe8 -01397735 112.96970367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf8 -01397736 112.96970367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbf8 -01397737 112.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc08 -01397738 112.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc08 -01397739 112.96975708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc18 -01397740 112.96976471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc18 -01397741 112.96979523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc28 -01397742 112.96979523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc28 -01397743 112.96981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc38 -01397744 112.96981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc38 -01397745 112.96984100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc48 -01399663 112.99741364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01399664 112.99741364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -01399665 112.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01399666 112.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -01399667 112.99746704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01399668 112.99746704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -01399669 112.99748993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01399670 112.99750519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -01399671 112.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01399672 112.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -01399673 112.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01399674 112.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -01399675 112.99758148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01399676 112.99758148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -01399677 112.99760437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01399678 112.99760437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -01399679 112.99763489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01399680 112.99764252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -01399681 112.99767303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01399682 112.99767303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -01399683 112.99769592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01399684 112.99769592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -01399685 112.99771881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01399686 112.99771881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -01399687 112.99774933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01399688 112.99774933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -01399689 112.99777222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01399690 112.99778748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -01399691 112.99781036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01399692 112.99781036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -01399693 112.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01399694 112.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -01399695 112.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01399696 112.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -01399697 112.99788666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01399698 112.99788666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -01399699 112.99791718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -01399700 112.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -01399701 112.99795532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -01399702 112.99795532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -01399703 112.99797821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -01399704 112.99797821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -01399705 112.99800110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13988 -01399706 112.99800110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13988 -01401775 113.02902985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a38 -01401776 113.02902985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a38 -01401777 113.02906799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a48 -01401778 113.02906799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a48 -01401779 113.02910614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a58 -01401780 113.02910614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a58 -01401781 113.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a68 -01401782 113.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a68 -01401783 113.02918243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a78 -01401784 113.02918243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a78 -01401785 113.02922058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a88 -01401786 113.02922058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a88 -01401787 113.02925873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a98 -01401788 113.02925873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a98 -01401789 113.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa8 -01401790 113.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17aa8 -01401791 113.02933502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab8 -01401792 113.02935028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ab8 -01401793 113.02937317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac8 -01401794 113.02938843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ac8 -01401795 113.02941132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad8 -01401796 113.02942657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ad8 -01401797 113.02944946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae8 -01401798 113.02946472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae8 -01401799 113.02948761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af8 -01401800 113.02950287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af8 -01401801 113.02953339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b08 -01401802 113.02953339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b08 -01401803 113.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b18 -01401804 113.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b18 -01401805 113.02960968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b28 -01401806 113.02960968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b28 -01401807 113.02964783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b38 -01401808 113.02965546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b38 -01401809 113.02968597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b48 -01401810 113.02969360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b48 -01401811 113.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b58 -01401812 113.02973175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b58 -01401813 113.02976227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b68 -01401814 113.02976990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b68 -01401815 113.02980042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b78 -01401816 113.02980804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b78 -01401817 113.02983856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b88 -01401818 113.02984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b88 -01403479 113.05565643 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af78 -01403480 113.05566406 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af78 -01403481 113.05569458 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af88 -01403482 113.05569458 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af88 -01403483 113.05571747 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -01403484 113.05571747 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -01403485 113.05574036 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -01403486 113.05574036 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -01403487 113.05577087 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb8 -01403488 113.05577087 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb8 -01403489 113.05579376 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc8 -01403490 113.05580902 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc8 -01403491 113.05583191 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd8 -01403492 113.05583191 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd8 -01403493 113.05586243 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe8 -01403494 113.05586243 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe8 -01403495 113.05588531 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff8 -01403496 113.05588531 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff8 -01403497 113.05590820 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b008 -01403498 113.05590820 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b008 -01403499 113.05593872 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b018 -01403500 113.05594635 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b018 -01403501 113.05597687 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b028 -01403502 113.05597687 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b028 -01403503 113.05599976 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b038 -01403504 113.05599976 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b038 -01403505 113.05602264 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b048 -01403506 113.05602264 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b048 -01403507 113.05605316 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b058 -01403508 113.05605316 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b058 -01403509 113.05607605 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b068 -01403510 113.05609131 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b068 -01403511 113.05611420 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b078 -01403512 113.05611420 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b078 -01403513 113.05613708 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b088 -01403514 113.05613708 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b088 -01403515 113.05616760 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b098 -01403516 113.05616760 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b098 -01403517 113.05619049 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a8 -01403518 113.05619049 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a8 -01403519 113.05622101 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b8 -01403520 113.05622101 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b8 -01403521 113.05624390 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -01403522 113.05625916 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -01405268 113.08132935 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -01405269 113.08134460 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -01405270 113.08136749 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -01405271 113.08136749 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -01405272 113.08139801 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -01405273 113.08139801 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -01405274 113.08142090 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -01405275 113.08142090 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -01405276 113.08144379 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -01405277 113.08144379 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -01405278 113.08147430 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -01405279 113.08147430 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -01405280 113.08149719 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -01405281 113.08151245 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -01405282 113.08153534 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -01405283 113.08153534 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -01405284 113.08155823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -01405285 113.08155823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -01405286 113.08158875 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -01405287 113.08158875 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -01405288 113.08161163 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -01405289 113.08161163 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -01405290 113.08164215 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -01405291 113.08164978 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -01405292 113.08168030 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -01405293 113.08168030 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -01405294 113.08170319 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -01405295 113.08170319 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -01405296 113.08172607 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -01405297 113.08172607 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -01405298 113.08175659 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -01405299 113.08175659 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -01405300 113.08177948 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -01405301 113.08179474 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -01405302 113.08181763 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -01405303 113.08181763 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -01405304 113.08184052 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -01405305 113.08184052 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -01405306 113.08187103 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -01405307 113.08187103 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -01405308 113.08189392 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -01405309 113.08189392 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -01405310 113.08191681 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -01405311 113.08193207 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -01407208 113.10912323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -01407209 113.10912323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -01407210 113.10914612 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -01407211 113.10914612 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -01407212 113.10916901 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -01407213 113.10916901 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -01407214 113.10919952 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -01407215 113.10920715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -01407216 113.10923767 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -01407217 113.10923767 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -01407218 113.10926056 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -01407219 113.10926056 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -01407220 113.10928345 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -01407221 113.10928345 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -01407222 113.10931396 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -01407223 113.10931396 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -01407224 113.10933685 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -01407225 113.10935211 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -01407226 113.10937500 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -01407227 113.10937500 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -01407228 113.10939789 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -01407229 113.10939789 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -01407230 113.10942841 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -01407231 113.10942841 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -01407232 113.10945129 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -01407233 113.10945129 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -01407234 113.10948181 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c8 -01407235 113.10948944 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c8 -01407236 113.10951996 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d8 -01407237 113.10951996 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d8 -01407238 113.10954285 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -01407239 113.10954285 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -01407240 113.10956573 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -01407241 113.10956573 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -01407242 113.10959625 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -01407243 113.10959625 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -01407244 113.10961914 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -01407245 113.10963440 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -01407246 113.10965729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -01407247 113.10965729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -01407248 113.10968018 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -01407249 113.10968018 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -01407250 113.10971069 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -01407251 113.10971069 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -01408876 113.13286591 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -01408877 113.13286591 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -01408878 113.13288879 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -01408879 113.13288879 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -01408880 113.13291168 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -01408881 113.13292694 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -01408882 113.13294983 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -01408883 113.13294983 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -01408884 113.13298035 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -01408885 113.13298035 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -01408886 113.13300323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -01408887 113.13300323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -01408888 113.13303375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -01408889 113.13303375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -01408890 113.13305664 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -01408891 113.13307190 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -01408892 113.13309479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -01408893 113.13309479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -01408894 113.13322449 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -01408895 113.13323212 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -01408896 113.13326263 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -01408897 113.13326263 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -01408898 113.13328552 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -01408899 113.13328552 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -01408900 113.13330841 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -01408901 113.13330841 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d8 -01408902 113.13333893 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -01408903 113.13333893 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e8 -01408904 113.13336182 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -01408905 113.13337708 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f8 -01408906 113.13339996 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -01408907 113.13339996 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25908 -01408908 113.13343048 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25918 -01408909 113.13343048 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25918 -01408910 113.13345337 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25928 -01408911 113.13345337 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25928 -01408912 113.13347626 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25938 -01408913 113.13347626 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25938 -01408914 113.13350677 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25948 -01408915 113.13352966 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25948 -01408916 113.13356781 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25958 -01408917 113.13356781 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25958 -01408918 113.13359070 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25968 -01408919 113.13359070 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x25968 -01410784 113.16021729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b8 -01410785 113.16021729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b8 -01410786 113.16024017 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c8 -01410787 113.16024017 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c8 -01410788 113.16027069 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d8 -01410789 113.16027832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d8 -01410790 113.16030884 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e8 -01410791 113.16030884 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e8 -01410792 113.16033173 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f8 -01410793 113.16033173 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f8 -01410794 113.16035461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29408 -01410795 113.16035461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29408 -01410796 113.16038513 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29418 -01410797 113.16038513 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29418 -01410798 113.16040802 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29428 -01410799 113.16042328 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29428 -01410800 113.16044617 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29438 -01410801 113.16044617 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29438 -01410802 113.16047668 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29448 -01410803 113.16047668 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29448 -01410804 113.16049957 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29458 -01410805 113.16049957 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29458 -01410806 113.16052246 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29468 -01410807 113.16053772 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29468 -01410808 113.16056061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29478 -01410809 113.16056061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29478 -01410810 113.16059113 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29488 -01410811 113.16059113 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29488 -01410812 113.16061401 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29498 -01410813 113.16061401 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29498 -01410814 113.16063690 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a8 -01410815 113.16063690 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a8 -01410816 113.16066742 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b8 -01410817 113.16067505 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b8 -01410818 113.16070557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c8 -01410819 113.16070557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c8 -01410820 113.16072845 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d8 -01410821 113.16072845 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d8 -01410822 113.16075897 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -01410823 113.16075897 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -01410824 113.16078186 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -01410825 113.16078186 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -01410826 113.16080475 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -01410827 113.16082001 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -01412912 113.19062042 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -01412913 113.19062042 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -01412914 113.19065857 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -01412915 113.19065857 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -01412916 113.19068146 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -01412917 113.19068146 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -01412918 113.19070435 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -01412919 113.19070435 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -01412920 113.19073486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -01412921 113.19073486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -01412922 113.19075775 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -01412923 113.19077301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -01412924 113.19079590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -01412925 113.19079590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -01412926 113.19081879 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -01412927 113.19081879 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -01412928 113.19084930 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -01412929 113.19084930 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -01412930 113.19087219 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -01412931 113.19087219 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -01412932 113.19090271 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -01412933 113.19090271 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -01412934 113.19092560 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -01412935 113.19094086 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -01412936 113.19096375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -01412937 113.19096375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -01412938 113.19098663 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -01412939 113.19098663 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -01412940 113.19101715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -01412941 113.19101715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -01412942 113.19104004 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -01412943 113.19104004 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -01412944 113.19106293 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -01412945 113.19107819 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -01412946 113.19110107 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -01412947 113.19110107 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -01412948 113.19113159 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -01412949 113.19113159 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -01412950 113.19115448 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -01412951 113.19115448 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -01412952 113.19117737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -01412953 113.19117737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -01412954 113.19120789 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -01412955 113.19120789 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -01428484 113.40999603 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc8 -01428485 113.40999603 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcc8 -01428486 113.41001892 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd8 -01428487 113.41001892 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcd8 -01428488 113.41004944 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce8 -01428489 113.41004944 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce8 -01428490 113.41007233 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf8 -01428491 113.41008759 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf8 -01428492 113.41011047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd08 -01428493 113.41011047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd08 -01428494 113.41014099 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd18 -01428495 113.41014099 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd18 -01428496 113.41016388 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd28 -01428497 113.41016388 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd28 -01428498 113.41018677 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd38 -01428499 113.41020203 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd38 -01428500 113.41022491 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -01428501 113.41022491 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -01428502 113.41025543 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -01428503 113.41025543 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -01428504 113.41027832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -01428505 113.41027832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -01428506 113.41030121 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -01428507 113.41030121 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -01428508 113.41033173 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -01428509 113.41033173 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -01428510 113.41035461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -01428511 113.41036987 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -01428512 113.41039276 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -01428513 113.41039276 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -01428514 113.41041565 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -01428515 113.41041565 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -01428516 113.41044617 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -01428517 113.41044617 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -01428518 113.41046906 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -01428519 113.41046906 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -01428520 113.41049957 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -01428521 113.41050720 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -01428522 113.41053772 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -01428523 113.41053772 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -01428524 113.41056061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -01428525 113.41056061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -01428526 113.41058350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -01428527 113.41058350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -01430498 113.43868256 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -01430499 113.43868256 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -01430500 113.43870544 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -01430501 113.43872070 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -01430502 113.43874359 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -01430503 113.43874359 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -01430504 113.43877411 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -01430505 113.43877411 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -01430506 113.43879700 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01430507 113.43879700 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01430508 113.43881989 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01430509 113.43881989 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01430510 113.43885040 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01430511 113.43885803 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01430512 113.43888855 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01430513 113.43888855 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01430514 113.43891144 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01430515 113.43891144 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01430516 113.43893433 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01430517 113.43893433 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01430518 113.43896484 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01430519 113.43896484 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01430520 113.43898773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01430521 113.43898773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01430522 113.43901062 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01430523 113.43902588 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01430524 113.43905640 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01430525 113.43905640 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01430526 113.43907928 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01430527 113.43907928 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01430528 113.43910217 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01430529 113.43910217 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01430530 113.43913269 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01430531 113.43913269 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01430532 113.43915558 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -01430533 113.43917084 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -01430534 113.43919373 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -01430535 113.43919373 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -01430536 113.43921661 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -01430537 113.43921661 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -01430538 113.43924713 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -01430539 113.43924713 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -01430540 113.43927002 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -01430541 113.43927002 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -01432082 113.55487823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432084 113.66011810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432085 113.67924500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432086 113.67926025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432087 113.68441772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432088 113.75463867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432089 113.75467682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432090 113.75469971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432091 113.75471497 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01432092 113.75482941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432093 113.75482941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432094 113.75489044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432095 113.75492096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432096 113.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432104 114.07550812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432105 114.13526917 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432109 114.18078613 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432110 114.22872162 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432111 114.27814484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432119 114.37707520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432120 114.39214325 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432128 114.69973755 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432129 114.80001068 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432130 114.84029388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432131 114.88448334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432132 114.93922424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432133 114.97995758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432134 115.02449799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432135 115.08442688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432136 115.14308929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432137 115.18534088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432138 115.23869324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432139 115.28432465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432140 115.34098053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432141 115.34128571 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432142 115.40572357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432143 115.47721863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432144 115.53747559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432145 115.58557129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432146 115.65589905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432147 115.68134308 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432148 115.70262909 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432149 115.70264435 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432150 115.70868683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432151 115.75775909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432152 115.80149841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432153 115.84690857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432154 115.90210724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432155 115.97492218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432156 116.05184937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432157 116.11142731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432158 116.24458313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432159 116.26199341 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432160 116.26203156 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432161 116.26205444 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432162 116.26206970 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01432163 116.26218414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432164 116.26218414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432165 116.26224518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01432166 116.26227570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01432167 116.28596497 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432168 116.30017090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432169 116.32585144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432170 116.33053589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432171 116.39405823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432172 116.52783203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432173 116.60169220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432174 116.60483551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01432175 116.60486603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01432176 116.61104584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432177 116.61548615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432178 116.61573029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432179 117.70500183 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01432180 117.72289276 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432181 117.72290802 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01432183 118.18350983 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432184 118.18429565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432185 118.18448639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432186 118.18450928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432187 118.18457794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432188 118.18467712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432189 118.18475342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432190 118.20148468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432191 118.24401855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432192 118.28926849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432193 118.29007721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01432194 118.29029083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432195 118.31827545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432196 118.33994293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432197 118.34024048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432198 118.34041595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432199 118.34107208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432200 118.34164429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432201 118.34332275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432202 118.34355164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432203 118.34371948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432204 118.34416962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432205 118.34434509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432206 118.34451294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432207 118.34477997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432208 118.34500885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432209 118.34517670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432210 118.34534454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432211 118.34559631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432212 118.34576416 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432213 118.34616089 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432214 118.34727478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432215 118.34783936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432216 118.34822083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432217 118.34900665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432218 118.34931183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432219 118.34976196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432220 118.35001373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432222 118.35206604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432223 118.35225677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432224 118.35244751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432225 118.35263062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432226 118.35280609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432227 118.35298920 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432228 118.35317993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432229 118.35352325 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432230 118.35395813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432231 118.42944336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432232 118.42996216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432236 118.46251678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01432237 118.46252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01432238 118.46255493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01432239 118.46255493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01432240 118.46257782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01432241 118.46257782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01432242 118.46260834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01432243 118.46260834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01432244 118.46263123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01432245 118.46264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01432246 118.46265411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01432247 118.46266937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01432248 118.46269226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01432249 118.46269226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01432250 118.46272278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01432251 118.46272278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01432252 118.46274567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01432253 118.46274567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01432254 118.46276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01432255 118.46276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01432256 118.46279907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01432257 118.46279907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01432258 118.46282196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01432259 118.46282196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01432260 118.46284485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01432261 118.46284485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01432262 118.46287537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01432263 118.46287537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01432264 118.46289825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01432265 118.46289825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01432266 118.46292114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01432267 118.46293640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01432268 118.46295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01432269 118.46296692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01432270 118.46298981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01432271 118.46298981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01432272 118.46301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01432273 118.46301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01432274 118.46304321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01432275 118.46304321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01432276 118.46306610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01432277 118.46306610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01432278 118.46308899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01432279 118.46308899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01432280 118.46311951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01432281 118.46311951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01432282 118.46314240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01432283 118.46314240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01432284 118.46316528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01432285 118.46316528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01432286 118.46319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01432287 118.46320343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01432288 118.46321869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01432289 118.46323395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01432290 118.46325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01432291 118.46325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01432292 118.46327972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01432293 118.46327972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01432294 118.46331024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01432295 118.46331024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01432296 118.46333313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01432297 118.46333313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01432298 118.46336365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01432299 118.46336365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01432300 118.46338654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01432301 118.46338654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01432302 118.46340942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01432303 118.46340942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01432304 118.46343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01432305 118.46344757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01432306 118.46346283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01432307 118.46347809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01432308 118.46350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01432309 118.46350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01432310 118.46352386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01432311 118.46352386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01432312 118.46355438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01432313 118.46355438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01432314 118.46357727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01432315 118.46357727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01432316 118.46361542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01432317 118.46361542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01432318 118.46363831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01432319 118.46363831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01432320 118.46366882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01432321 118.46366882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01432322 118.46369171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01432323 118.46370697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01432324 118.46372986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01432325 118.46372986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01432326 118.46376038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01432327 118.46376038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01432328 118.46378326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01432329 118.46378326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01432330 118.46380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01432331 118.46382141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01432332 118.46383667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01432333 118.46384430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01432334 118.46387482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01432335 118.46387482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01432336 118.46389771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01432337 118.46389771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01432338 118.46392059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01432339 118.46393585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01432340 118.46395874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01432341 118.46395874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01432342 118.46398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01432343 118.46398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01432344 118.46402740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01432345 118.46402740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01432346 118.46407318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01432347 118.46407318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01432348 118.46410370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01432349 118.46410370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01432350 118.46412659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01432351 118.46412659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01432352 118.46415710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01432353 118.46416473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01432354 118.46419525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01432355 118.46419525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01432356 118.46421814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01432357 118.46421814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01432358 118.46424103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01432359 118.46424103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01432360 118.46427917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01432361 118.46429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01432362 118.46431732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01432363 118.46431732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01432364 118.46434784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01432365 118.46434784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01432366 118.46437073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01432367 118.46437073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01432368 118.46439362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01432369 118.46439362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01432370 118.46442413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01432371 118.46442413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01432372 118.46444702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01432373 118.46444702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01432374 118.46451569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01432375 118.46451569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01432376 118.46453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01432377 118.46453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01432378 118.46456146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01432379 118.46457672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01432380 118.46459198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01432381 118.46459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01432382 118.46463013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01432383 118.46463013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01432384 118.46465302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01432385 118.46465302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01432386 118.46467590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01432387 118.46467590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01432388 118.46470642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01432389 118.46470642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01432390 118.46472931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01432391 118.46472931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01432392 118.46475220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01432393 118.46475220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01432394 118.46478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01432395 118.46478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01432396 118.46480560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01432397 118.46480560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01432398 118.46482849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01432399 118.46482849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01432400 118.46485901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01432401 118.46486664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01432402 118.46488190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01432403 118.46489716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01432404 118.46492004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01432405 118.46492004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01432406 118.46495056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01432407 118.46495056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01432408 118.46497345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01432409 118.46497345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01432410 118.46499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01432411 118.46499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01432412 118.46502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01432413 118.46502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01432414 118.46504974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01432415 118.46504974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01432416 118.46507263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01432417 118.46508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01432418 118.46511078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01432419 118.46511078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01432420 118.46514130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01432421 118.46514130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01432422 118.46516418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01432423 118.46516418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01432424 118.46518707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01432425 118.46520233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01432426 118.46522522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01432427 118.46522522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01432428 118.46525574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01432429 118.46525574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01432430 118.46527863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01432431 118.46527863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01432432 118.46530914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01432433 118.46530914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01432434 118.46533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01432435 118.46533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01432436 118.46535492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01432437 118.46537018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01432438 118.46539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01432439 118.46539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01432440 118.46542358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01432441 118.46542358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01432442 118.46544647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01432443 118.46544647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01432444 118.46546936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01432445 118.46548462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01432446 118.46549988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01432447 118.46550751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01432448 118.46553802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01432449 118.46553802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01432450 118.46556091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01432451 118.46556091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01432452 118.46558380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01432453 118.46558380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01432454 118.46561432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01432455 118.46561432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01432456 118.46563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01432457 118.46563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01432458 118.46566772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01432459 118.46566772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01432460 118.46569061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01432461 118.46569061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01432462 118.46571350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01432463 118.46571350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01432464 118.46574402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01432465 118.46574402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01432466 118.46576691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01432467 118.46578217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01432468 118.46578979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01432469 118.46580505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01432470 118.46582794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01432471 118.46582794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01432472 118.46585846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01432473 118.46585846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01432474 118.46588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01432475 118.46588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01432476 118.46590424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01432477 118.46590424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01432478 118.46593475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01432479 118.46593475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01432480 118.46595764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01432481 118.46595764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01432482 118.46598053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01432483 118.46598053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01432484 118.46601105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01432485 118.46601105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01432486 118.46603394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01432487 118.46603394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01432488 118.46606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01432489 118.46607208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01432490 118.46608734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01432491 118.46610260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01432492 118.46612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01432493 118.46612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01432494 118.46614838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01432495 118.46614838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01432496 118.46617889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01432497 118.46617889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01432498 118.46620178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01432499 118.46620178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01432500 118.46622467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01432501 118.46622467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01432502 118.46625519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01432503 118.46626282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01432504 118.46629333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01432505 118.46629333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01432506 118.46631622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01432507 118.46631622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01432508 118.46633911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01432509 118.46633911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01432510 118.46636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01432511 118.46636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01432512 118.46639252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01432513 118.46640778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01432514 118.46643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01432515 118.46643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01432516 118.46646118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01432517 118.46646118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01432518 118.46648407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01432519 118.46648407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01432520 118.46650696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01432521 118.46650696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01432522 118.46653748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01432523 118.46653748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01432524 118.46656036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01432525 118.46657562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01432526 118.46659851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01432527 118.46659851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01432528 118.46662140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01432529 118.46662140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01432530 118.46665192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01432531 118.46665192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01432532 118.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01432533 118.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01432534 118.46669769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01432535 118.46671295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01432536 118.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01432537 118.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01432538 118.46676636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01432539 118.46676636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01432540 118.46678925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01432541 118.46678925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01432542 118.46681976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01432543 118.46681976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01432544 118.46684265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01432545 118.46684265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01432546 118.46686554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01432547 118.46688080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01432548 118.46690369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01432549 118.46690369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01432550 118.46693420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01432551 118.46693420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01432552 118.46695709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01432553 118.46697235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01432554 118.46699524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01432555 118.46699524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01432556 118.46701813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01432557 118.46701813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01432558 118.46704865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01432559 118.46704865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01432560 118.46707153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01432561 118.46707153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01432562 118.46709442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01432563 118.46710968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01432564 118.46713257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01432565 118.46713257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01432566 118.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01432567 118.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01432568 118.46718597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01432569 118.46718597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01432570 118.46721649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01432571 118.46721649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01432572 118.46723938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01432573 118.46725464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01432574 118.46727753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01432575 118.46727753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01432576 118.46730042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01432577 118.46730042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01432578 118.46733093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01432579 118.46733093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01432580 118.46735382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01432581 118.46735382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01432582 118.46737671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01432583 118.46739197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01432584 118.46741486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01432585 118.46741486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01432586 118.46744537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01432587 118.46744537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01432588 118.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01432589 118.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01432590 118.46749115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01432591 118.46750641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01432592 118.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01432593 118.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01432594 118.46755981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01432595 118.46755981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01432596 118.46758270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01432597 118.46759796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01432598 118.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01432599 118.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01432600 118.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01432601 118.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01432602 118.46767426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01432603 118.46767426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01432604 118.46769714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01432605 118.46769714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01432606 118.46772766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01432607 118.46772766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01432608 118.46776581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01432609 118.46776581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01432610 118.46778870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01432611 118.46778870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01432612 118.46781158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01432613 118.46781158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01432614 118.46784210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01432615 118.46784210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01432616 118.46786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01432617 118.46786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01432618 118.46788788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01432619 118.46790314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01432620 118.46792603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01432621 118.46792603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01432622 118.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01432623 118.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01432624 118.46797943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01432625 118.46797943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01432626 118.46800995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01432627 118.46800995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01432628 118.46803284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01432629 118.46804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01432630 118.46805573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01432631 118.46807098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01432632 118.46809387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01432633 118.46809387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01432634 118.46812439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01432635 118.46812439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01432636 118.46814728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01432637 118.46814728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01432638 118.46817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01432639 118.46817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01432640 118.46820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01432641 118.46820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01432642 118.46822357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01432643 118.46822357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01432644 118.46824646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01432645 118.46824646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01432646 118.46827698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01432647 118.46827698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01432648 118.46829987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01432649 118.46829987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01432650 118.46832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01432651 118.46833801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01432652 118.46835327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01432653 118.46836853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01432654 118.46839142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01432655 118.46839142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01432656 118.46841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01432657 118.46841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01432658 118.46844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01432659 118.46844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01432660 118.46846771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01432661 118.46846771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01432662 118.46849060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01432663 118.46849060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01432664 118.46852112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01432665 118.46852112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01432666 118.46854401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01432667 118.46854401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01432668 118.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01432669 118.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01432670 118.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01432671 118.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01432672 118.46862030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01432673 118.46863556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01432674 118.46864319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01432675 118.46865845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01432676 118.46868134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01432677 118.46868134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01432678 118.46871185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01432679 118.46871185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01432680 118.46873474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01432681 118.46873474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01432682 118.46876526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01432683 118.46876526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01432684 118.46878815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01432685 118.46878815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01432686 118.46881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01432687 118.46881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01432688 118.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01432689 118.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01432690 118.46886444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01432691 118.46886444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01432692 118.46888733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01432693 118.46888733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01432694 118.46891785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01432695 118.46892548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01432696 118.46894073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01432697 118.46895599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01432698 118.46897888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01432699 118.46897888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01432700 118.46900177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01432701 118.46900177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01432702 118.46903229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01432703 118.46903229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01432704 118.46905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01432705 118.46905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01432706 118.46907806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01432707 118.46907806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01432708 118.46910858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01432709 118.46910858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01432710 118.46913147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01432711 118.46913147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01432712 118.46916199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01432713 118.46916199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01432714 118.46918488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01432715 118.46918488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01432716 118.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01432717 118.46922302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01432718 118.46923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01432719 118.46924591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01432720 118.46927643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01432721 118.46927643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01432722 118.46929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01432723 118.46929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01432724 118.46932220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01432725 118.46932220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01432726 118.46935272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01432727 118.46935272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01432728 118.46937561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01432729 118.46937561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01432730 118.46939850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01432731 118.46939850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01432732 118.46942902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01432733 118.46942902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01432734 118.46945190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01432735 118.46945190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01432736 118.46947479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01432737 118.46947479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01432738 118.46950531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01432739 118.46952057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01432740 118.46952820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01432741 118.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01432742 118.46956635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01432743 118.46956635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01432744 118.46959686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01432745 118.46959686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01432746 118.46961975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01432747 118.46961975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01432748 118.46964264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01432749 118.46964264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01432750 118.46967316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01432751 118.46967316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01432752 118.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01432753 118.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01432754 118.46971893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01432755 118.46971893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01432756 118.46974945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01432757 118.46974945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01432758 118.46977234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01432759 118.46977234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01432760 118.46979523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01432761 118.46981049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01432762 118.46982574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01432763 118.46983337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01432764 118.46986389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01432765 118.46986389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01432766 118.46988678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01432767 118.46988678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01432768 118.46991730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01432769 118.46991730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01432770 118.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01432771 118.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01432772 118.46996307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01432773 118.46996307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01432774 118.46999359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01432775 118.46999359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01432776 118.47001648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01432777 118.47001648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01432778 118.47003937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01432779 118.47003937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01432780 118.47006989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01432781 118.47006989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01432782 118.47009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01432783 118.47009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01432784 118.47011566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01432785 118.47013092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01432786 118.47014618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01432787 118.47015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01432788 118.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01432789 118.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01432790 118.47020721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01432791 118.47020721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01432792 118.47023010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01432793 118.47023010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01432794 118.47026062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01432795 118.47026062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01432796 118.47028351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01432797 118.47028351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01432798 118.47031403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01432799 118.47031403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01432800 118.47033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01432801 118.47033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01432802 118.47035980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01432803 118.47035980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01432804 118.47039032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01432805 118.47039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01432806 118.47041321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01432807 118.47042847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01432808 118.47045135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01432809 118.47045135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01432810 118.47047424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01432811 118.47047424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01432812 118.47050476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01432813 118.47051239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01432814 118.47052765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01432815 118.47054291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01432816 118.47056580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01432817 118.47056580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01432818 118.47058868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01432819 118.47058868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01432820 118.47061920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01432821 118.47061920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01432822 118.47064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01432823 118.47065735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01432824 118.47068024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01432825 118.47068024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01432826 118.47071075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01432827 118.47071075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01432828 118.47073364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01432829 118.47073364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01432830 118.47075653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01432831 118.47075653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01432832 118.47078705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01432833 118.47078705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01432834 118.47080994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01432835 118.47080994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01432836 118.47083282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01432837 118.47083282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01432838 118.47086334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01432839 118.47086334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01432840 118.47088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01432841 118.47088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01432842 118.47090912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01432843 118.47090912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01432844 118.47093964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01432845 118.47094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01432847 118.47096252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01432848 118.47097778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01432849 118.47100067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01432850 118.47100067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01432851 118.47109222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01432852 118.47109222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01432853 118.47111511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01432854 118.47111511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01432855 118.47114563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01432856 118.47115326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01432858 118.47118378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01432859 118.47118378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01432860 118.47120667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01432861 118.47120667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01432862 118.47122955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01432863 118.47122955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01432864 118.47126007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01432865 118.47126007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01432866 118.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01432867 118.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01432868 118.47130585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01432869 118.47132111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01432870 118.47134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01432871 118.47134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01432872 118.47137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01432873 118.47137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01432874 118.47139740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01432875 118.47139740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01432876 118.47142029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01432877 118.47142029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01432878 118.47143555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01432879 118.47145081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01432880 118.47146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01432881 118.47148895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01432882 118.47148895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01432883 118.47151184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01432884 118.47151184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01432885 118.47154236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01432886 118.47154236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01432887 118.47156525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01432888 118.47156525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01432889 118.47158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01432890 118.47160339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01432891 118.47162628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01432892 118.47162628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01432893 118.47165680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01432894 118.47165680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01432895 118.47167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01432896 118.47167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01432897 118.47170258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01432898 118.47170258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01432899 118.47173309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01432900 118.47174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01432901 118.47177124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01432902 118.47177124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01432903 118.47179413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01432904 118.47179413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01432905 118.47181702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01432906 118.47181702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01432907 118.47184753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01432908 118.47184753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01432909 118.47187042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01432910 118.47187042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01432911 118.47190094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01432912 118.47190857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01432913 118.47193909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01432914 118.47193909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01432915 118.47196198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01432916 118.47196198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01432917 118.47198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01432918 118.47198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01432919 118.47201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01432920 118.47201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01432921 118.47203827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01432922 118.47205353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01432923 118.47207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01432924 118.47207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01432925 118.47209930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01432926 118.47209930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01432927 118.47212982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01432928 118.47212982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01432929 118.47215271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01432930 118.47215271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01432931 118.47217560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01432932 118.47217560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01432933 118.47220612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01432934 118.47222137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01432935 118.47224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01432936 118.47224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01432937 118.47226715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01432938 118.47226715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01432939 118.47229767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01432940 118.47229767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01432941 118.47232056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01432942 118.47232056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01432943 118.47234344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01432944 118.47235870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01432945 118.47238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01432946 118.47238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01432947 118.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01432948 118.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01432949 118.47243500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01432950 118.47243500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01432951 118.47245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01432952 118.47245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01432953 118.47248840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01432954 118.47249603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01432955 118.47252655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01432956 118.47252655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01432957 118.47254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01432958 118.47254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01432959 118.47257233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01432960 118.47257233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01432961 118.47260284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01432962 118.47260284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01432963 118.47262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01432964 118.47262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01432965 118.47265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01432966 118.47266388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01432967 118.47269440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01432968 118.47269440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01432969 118.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01432970 118.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01432971 118.47274017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01432972 118.47274017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01432973 118.47277069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01432974 118.47277069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01432975 118.47279358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01432976 118.47280884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01432977 118.47283173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01432978 118.47283173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01432979 118.47285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01432980 118.47285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01432981 118.47288513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01432982 118.47288513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01432983 118.47290802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01432984 118.47290802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01432985 118.47293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01432986 118.47293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01432987 118.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01432988 118.47296906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01432989 118.47299957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01432990 118.47299957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01432991 118.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01432992 118.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01432993 118.47305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01432994 118.47305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01432995 118.47307587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01432996 118.47307587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01432997 118.47309875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01432998 118.47311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01432999 118.47313690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01433000 118.47313690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01433001 118.47316742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01433002 118.47316742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01433003 118.47319031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01433004 118.47319031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01433005 118.47321320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01433006 118.47321320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01433007 118.47324371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01433008 118.47324371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01433009 118.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01433010 118.47328186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01433011 118.47330475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01433012 118.47330475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01433013 118.47332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01433014 118.47332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01433015 118.47335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01433016 118.47335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01433017 118.47338104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01433018 118.47338104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01433019 118.47341156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01433020 118.47341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01433021 118.47344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01433022 118.47344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01433023 118.47347260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01433024 118.47347260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01433025 118.47349548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01433026 118.47349548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01433027 118.47352600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01433028 118.47352600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01433029 118.47354889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01433030 118.47356415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01433031 118.47358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01433032 118.47358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01433033 118.47360992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01433034 118.47360992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01433035 118.47364044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01433036 118.47364044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01433037 118.47366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01433038 118.47366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01433039 118.47368622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01433040 118.47370148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01433041 118.47372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01433042 118.47372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01433043 118.47375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01433044 118.47375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01433045 118.47377777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01433046 118.47377777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01433047 118.47380829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01433048 118.47380829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01433049 118.47383118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01433050 118.47383118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01433051 118.47385406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01433052 118.47386932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01433053 118.47389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01433054 118.47389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01433055 118.47392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01433056 118.47392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01433057 118.47394562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01433058 118.47394562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01433059 118.47396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01433060 118.47396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01433061 118.47399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01433062 118.47400665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01433063 118.47403717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01433064 118.47403717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01433065 118.47406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01433066 118.47406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01433067 118.47408295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01433068 118.47408295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01433069 118.47411346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01433070 118.47411346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01433071 118.47413635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01433072 118.47413635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01433073 118.47416687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01433074 118.47417450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01433075 118.47420502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01433076 118.47420502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01433077 118.47422791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01433078 118.47422791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01433079 118.47425079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01433080 118.47425079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01433081 118.47428131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01433082 118.47428131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01433083 118.47430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01433084 118.47431946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01433085 118.47434235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01433086 118.47434235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01433087 118.47436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01433088 118.47436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01433089 118.47439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01433090 118.47439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01433091 118.47441864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01433092 118.47441864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01433093 118.47444153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01433094 118.47445679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01433095 118.47447968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01433096 118.47447968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01433097 118.47451019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01433098 118.47451019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01433099 118.47453308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01433100 118.47453308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01433101 118.47456360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01433102 118.47456360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01433103 118.47458649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01433104 118.47458649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01433105 118.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01433106 118.47462463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01433107 118.47464752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01433108 118.47464752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01433109 118.47467804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01433110 118.47467804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01433111 118.47470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01433112 118.47470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01433113 118.47472382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01433114 118.47472382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01433115 118.47475433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01433116 118.47476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01433117 118.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01433118 118.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01433119 118.47481537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01433120 118.47481537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01433121 118.47483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01433122 118.47483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01433123 118.47486877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01433124 118.47486877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01433125 118.47489166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01433126 118.47489166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01433127 118.47492218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01433128 118.47492981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01433129 118.47496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01433130 118.47496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01433131 118.47498322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01433132 118.47498322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01433133 118.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01433134 118.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01433135 118.47503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01433136 118.47503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01433137 118.47505951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01433138 118.47507477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01433139 118.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01433140 118.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01433141 118.47512054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01433142 118.47512054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01433143 118.47515106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01433144 118.47515106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01433145 118.47517395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01433146 118.47517395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01433147 118.47519684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01433148 118.47519684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01433149 118.47522736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01433150 118.47523499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01433151 118.47526550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01433152 118.47526550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01433153 118.47528839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01433154 118.47528839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01433155 118.47531891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01433156 118.47531891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01433157 118.47534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01433158 118.47534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01433159 118.47536469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01433160 118.47537994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01433161 118.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01433162 118.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01433163 118.47543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01433164 118.47543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01433165 118.47545624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01433166 118.47545624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01433167 118.47547913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01433168 118.47547913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01433169 118.47550964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01433170 118.47551727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01433171 118.47554779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01433172 118.47554779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01433173 118.47557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01433174 118.47557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01433175 118.47559357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01433176 118.47559357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01433177 118.47562408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01433178 118.47562408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01433179 118.47564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01433180 118.47566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01433181 118.47566986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01433182 118.47568512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01433183 118.47571564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01433184 118.47571564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01433185 118.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01433186 118.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01433187 118.47576141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01433188 118.47576141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01433189 118.47579193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01433190 118.47579193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01433191 118.47581482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01433192 118.47583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01433193 118.47585297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01433194 118.47585297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01433195 118.47587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01433196 118.47587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01433197 118.47590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01433198 118.47590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01433199 118.47592926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01433200 118.47592926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01433201 118.47595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01433202 118.47596741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01433203 118.47599030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01433204 118.47599030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01433205 118.47602081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01433206 118.47602081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01433207 118.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01433208 118.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01433209 118.47606659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01433210 118.47606659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01433211 118.47609711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01433212 118.47609711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01433213 118.47612000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01433214 118.47613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01433215 118.47615814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01433216 118.47615814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01433217 118.47618866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01433218 118.47618866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01433219 118.47621155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01433220 118.47621155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01433221 118.47623444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01433222 118.47623444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01433223 118.47626495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01433224 118.47627258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01433225 118.47630310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01433226 118.47630310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01433227 118.47632599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01433228 118.47632599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01433229 118.47634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01433230 118.47634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01433231 118.47637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01433232 118.47637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01433233 118.47640228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01433234 118.47641754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01433235 118.47644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01433236 118.47644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01433237 118.47647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01433238 118.47647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01433239 118.47649384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01433240 118.47649384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01433241 118.47651672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01433242 118.47651672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01433243 118.47654724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01433244 118.47654724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01433245 118.47657013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01433246 118.47658539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01433247 118.47660828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01433248 118.47660828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01433249 118.47663116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01433250 118.47663116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01433251 118.47666168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01433252 118.47666168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01433253 118.47668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01433254 118.47668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01433255 118.47670746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01433256 118.47672272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01433257 118.47674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01433258 118.47674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01433259 118.47677612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01433260 118.47677612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01433261 118.47679901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01433262 118.47679901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01433263 118.47682190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01433264 118.47682190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01433265 118.47685242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01433266 118.47686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01433267 118.47689056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01433268 118.47689056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01433269 118.47691345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01433270 118.47691345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01433271 118.47694397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01433272 118.47694397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01433273 118.47696686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01433274 118.47696686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01433275 118.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01433276 118.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01433277 118.47702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01433278 118.47702789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01433279 118.47705841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01433280 118.47705841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01433281 118.47708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01433282 118.47708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01433283 118.47710419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01433284 118.47710419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01433285 118.47713470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01433286 118.47713470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01433287 118.47715759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01433288 118.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01433289 118.47719574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01433290 118.47719574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01433291 118.47721863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01433292 118.47721863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01433293 118.47724915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01433294 118.47724915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01433295 118.47727203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01433296 118.47727203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01433297 118.47730255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01433298 118.47731018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01433299 118.47732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01433300 118.47734070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01433301 118.47736359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01433302 118.47736359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01433303 118.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01433304 118.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01433305 118.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01433306 118.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01433307 118.47743988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01433308 118.47743988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01433309 118.47746277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01433310 118.47747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01433311 118.47750092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01433312 118.47750092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01433313 118.47753143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01433314 118.47753143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01433315 118.47755432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01433316 118.47755432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01433317 118.47757721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01433318 118.47757721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01433319 118.47760773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01433320 118.47762299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01433321 118.47764587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01433322 118.47764587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01433323 118.47766876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01433324 118.47766876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01433325 118.47769928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01433326 118.47769928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01433327 118.47772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01433328 118.47772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01433329 118.47774506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01433330 118.47774506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01433331 118.47777557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01433332 118.47778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01433333 118.47781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01433334 118.47781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01433335 118.47783661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01433336 118.47783661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01433337 118.47785950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01433338 118.47785950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01433339 118.47789001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01433340 118.47789001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01433341 118.47791290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01433342 118.47792816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01433343 118.47795105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01433344 118.47795105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01433345 118.47797394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01433346 118.47797394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01433347 118.47800446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01433348 118.47800446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01433349 118.47802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01433350 118.47802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01433351 118.47805786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01433352 118.47806549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01433353 118.47809601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01433354 118.47809601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01433355 118.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01433356 118.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01433357 118.47814178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01433358 118.47814178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01433359 118.47817230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01433360 118.47817230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01433361 118.47819519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01433362 118.47819519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01433363 118.47821808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01433364 118.47823334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01433365 118.47825623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01433366 118.47825623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01433367 118.47828674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01433368 118.47828674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01433369 118.47830963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01433370 118.47830963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01433371 118.47833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01433372 118.47833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01433373 118.47836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01433374 118.47837067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01433375 118.47840118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01433376 118.47840118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01433377 118.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01433378 118.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01433379 118.47845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01433380 118.47845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01433381 118.47847748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01433382 118.47847748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01433383 118.47850037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01433384 118.47851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01433385 118.47853851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01433386 118.47853851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01433387 118.47856903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01433388 118.47856903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01433389 118.47859192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01433390 118.47859192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01433391 118.47861481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01433392 118.47861481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01433393 118.47864532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01433394 118.47865295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01433395 118.47868347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01433396 118.47868347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01433397 118.47870636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01433398 118.47870636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01433399 118.47872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01433400 118.47872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01433401 118.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01433402 118.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01433403 118.47878265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01433404 118.47879791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01433405 118.47882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01433406 118.47882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01433407 118.47885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01433408 118.47885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01433409 118.47887421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01433410 118.47887421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01433411 118.47889709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01433412 118.47889709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01433413 118.47892761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01433414 118.47892761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01433415 118.47895050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01433416 118.47896576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01433417 118.47898865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01433418 118.47898865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01433419 118.47901154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01433420 118.47901154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01433421 118.47904205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01433422 118.47904205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01433423 118.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01433424 118.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01433425 118.47908783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01433426 118.47910309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01433427 118.47912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01433428 118.47912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01433429 118.47915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01433430 118.47915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01433431 118.47917938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01433432 118.47917938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01433433 118.47920990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01433434 118.47920990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01433435 118.47923279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01433436 118.47923279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01433437 118.47925568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01433438 118.47927094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01433439 118.47929382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01433440 118.47929382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01433441 118.47932434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01433442 118.47932434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01433443 118.47934723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01433444 118.47934723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01433445 118.47937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01433446 118.47938538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01433447 118.47940826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01433448 118.47940826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01433449 118.47943878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01433450 118.47943878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01433451 118.47946167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01433452 118.47946167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01433453 118.47948456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01433454 118.47948456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01433455 118.47951508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01433456 118.47952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01433457 118.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01433458 118.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01433459 118.47957611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01433460 118.47957611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01433461 118.47960663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01433462 118.47960663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01433463 118.47962952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01433464 118.47962952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01433465 118.47965240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01433466 118.47966766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01433467 118.47969055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01433468 118.47969055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01433469 118.47972107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01433470 118.47972107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01433471 118.47974396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01433472 118.47974396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01433473 118.47976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01433474 118.47976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01433475 118.47979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01433476 118.47980499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01433477 118.47983551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01433478 118.47983551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01433479 118.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01433480 118.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01433481 118.47988129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01433482 118.47988129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01433483 118.47991180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01433484 118.47991180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01433485 118.47993469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01433486 118.47994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01433487 118.47997284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01433488 118.47997284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01433489 118.48000336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01433490 118.48000336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01433491 118.48002625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01433492 118.48002625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01433493 118.48004913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01433494 118.48004913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01433495 118.48007965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01433496 118.48007965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01433497 118.48010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01433498 118.48011780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01433499 118.48014069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01433500 118.48014069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01433501 118.48016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01433502 118.48016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01433503 118.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01433504 118.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01433505 118.48021698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01433506 118.48021698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01433507 118.48023987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01433508 118.48025513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01433509 118.48027802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01433510 118.48027802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01433511 118.48030853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01433512 118.48030853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01433513 118.48033142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01433514 118.48033142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01433515 118.48036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01433516 118.48036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01433517 118.48038483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01433518 118.48040009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01433519 118.48042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01433520 118.48042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01433521 118.48044586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01433522 118.48044586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01433523 118.48047638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01433524 118.48047638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01433525 118.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01433526 118.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01433527 118.48052216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01433528 118.48053741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01433529 118.48056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01433530 118.48056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01433531 118.48059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01433532 118.48059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01433533 118.48061371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01433534 118.48061371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01433535 118.48063660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01433536 118.48063660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01433537 118.48066711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01433538 118.48067474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01433539 118.48070526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01433540 118.48070526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01433541 118.48072815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01433542 118.48072815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01433543 118.48075867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01433544 118.48075867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01433545 118.48078156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01433546 118.48078156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01433547 118.48080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01433548 118.48081970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01433549 118.48084259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01433550 118.48084259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01433551 118.48087311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01433552 118.48087311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01433553 118.48089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01433554 118.48089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01433555 118.48091888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01433556 118.48091888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01433557 118.48094940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01433558 118.48094940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01433559 118.48097229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01433560 118.48098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01433561 118.48101044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01433562 118.48101044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01433563 118.48103333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01433564 118.48103333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01433565 118.48106384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01433566 118.48106384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01433567 118.48108673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01433568 118.48108673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01433569 118.48111725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01433570 118.48112488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01433571 118.48115540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01433572 118.48115540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01433573 118.48117828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01433574 118.48117828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01433575 118.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01433576 118.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01433577 118.48123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01433578 118.48123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01433579 118.48125458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01433580 118.48126984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01433581 118.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01433582 118.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01433583 118.48131561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01433584 118.48131561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01433585 118.48134613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01433586 118.48134613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01433587 118.48136902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01433588 118.48136902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01433589 118.48139191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01433590 118.48140717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01433591 118.48143005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01433592 118.48143005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01433593 118.48146057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01433594 118.48146057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01433595 118.48148346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01433596 118.48148346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01433597 118.48151398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01433598 118.48151398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01433599 118.48153687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01433600 118.48155212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01433601 118.48157501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01433602 118.48157501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01433603 118.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01433604 118.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01433605 118.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01433606 118.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01433607 118.48165131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01433608 118.48165131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01433609 118.48167419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01433610 118.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01433611 118.48171234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01433612 118.48171234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01433613 118.48174286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01433614 118.48174286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01433615 118.48176575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01433616 118.48176575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01433617 118.48178864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01433618 118.48178864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01433619 118.48181915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01433620 118.48181915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01433621 118.48184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01433622 118.48185730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01433623 118.48188019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01433624 118.48188019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01433625 118.48191071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01433626 118.48191071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01433627 118.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01433628 118.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01433629 118.48195648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01433630 118.48195648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01433631 118.48198700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01433632 118.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01433633 118.48202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01433634 118.48202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01433635 118.48204803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01433636 118.48204803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01433637 118.48207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01433638 118.48207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01433639 118.48210144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01433640 118.48210144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01433641 118.48212433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01433642 118.48212433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01433643 118.48214722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01433644 118.48216248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01433645 118.48218536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01433646 118.48218536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01433647 118.48221588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01433648 118.48221588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01433649 118.48223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01433650 118.48223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01433651 118.48226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01433652 118.48226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01433653 118.48229218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01433654 118.48230743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01433655 118.48233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01433656 118.48233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01433657 118.48235321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01433658 118.48235321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01433659 118.48238373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01433660 118.48238373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01433661 118.48240662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01433662 118.48240662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01433663 118.48242950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01433664 118.48244476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01433665 118.48246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01433666 118.48246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01433667 118.48249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01433668 118.48249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01433669 118.48252106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01433670 118.48252106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01433671 118.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01433672 118.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01433673 118.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01433674 118.48258209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01433675 118.48261261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01433676 118.48261261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01433677 118.48263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01433678 118.48263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01433679 118.48266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01433680 118.48266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01433681 118.48268890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01433682 118.48268890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01433683 118.48271179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01433684 118.48272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01433685 118.48274994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01433686 118.48274994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01433687 118.48278046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01433688 118.48278046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01433689 118.48280334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01433690 118.48280334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01433691 118.48282623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01433692 118.48282623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01433693 118.48285675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01433694 118.48285675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01433695 118.48287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01433696 118.48289490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01433697 118.48291779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01433698 118.48291779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01433699 118.48294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01433700 118.48294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01433701 118.48297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01433702 118.48297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01433703 118.48299408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01433704 118.48299408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01433705 118.48302460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01433706 118.48302460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01433707 118.48304749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01433708 118.48304749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01433709 118.48307037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01433710 118.48308563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01433711 118.48310089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01433712 118.48310852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01433713 118.48313904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01433714 118.48313904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01433715 118.48316193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01433716 118.48316193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01433717 118.48318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01433718 118.48318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01433719 118.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01433720 118.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01433721 118.48323822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01433722 118.48323822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01433723 118.48326111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01433724 118.48326111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01433725 118.48329163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01433726 118.48329926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01433727 118.48332977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01433728 118.48332977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01433729 118.48335266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01433730 118.48335266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01433731 118.48337555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01433732 118.48337555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01433733 118.48340607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01433734 118.48340607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01433735 118.48344421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01433736 118.48344421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01433737 118.48346710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01433738 118.48346710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01433739 118.48349762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01433740 118.48349762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01433741 118.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01433742 118.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01433743 118.48354340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01433744 118.48354340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01433745 118.48357391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01433746 118.48357391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01433747 118.48359680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01433748 118.48361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01433749 118.48363495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01433750 118.48363495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01433751 118.48365784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01433752 118.48365784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01433753 118.48368835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01433754 118.48368835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01433755 118.48371124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01433756 118.48371124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01433757 118.48373413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01433758 118.48374939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01433759 118.48377228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01433760 118.48377228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01433761 118.48380280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01433762 118.48380280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01433763 118.48382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01433764 118.48382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01433765 118.48385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01433766 118.48385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01433767 118.48387909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01433768 118.48389435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01433769 118.48390198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01433770 118.48391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01433771 118.48394012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01433772 118.48394012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01433773 118.48397064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01433774 118.48397064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01433775 118.48399353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01433776 118.48399353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01433777 118.48401642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01433778 118.48401642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01433779 118.48404694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01433780 118.48404694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01433781 118.48406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01433782 118.48406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01433783 118.48409271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01433784 118.48409271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01433785 118.48412323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01433786 118.48412323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01433787 118.48414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01433788 118.48414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01433789 118.48416901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01433790 118.48418427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01433791 118.48419952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01433792 118.48421478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01433793 118.48423767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01433794 118.48423767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01433795 118.48426056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01433796 118.48426056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01433797 118.48429108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01433798 118.48429108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01433799 118.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01433800 118.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01433801 118.48433685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01433802 118.48433685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01433803 118.48436737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01433804 118.48436737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01433805 118.48439026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01433806 118.48439026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01433807 118.48441315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01433808 118.48441315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01433809 118.48445129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01433810 118.48445129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01433811 118.48448181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01433812 118.48448181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01433813 118.48450470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01433814 118.48450470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01433815 118.48452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01433816 118.48452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01433817 118.48455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01433818 118.48457336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01433819 118.48458099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01433820 118.48459625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01433821 118.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01433822 118.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01433823 118.48464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01433824 118.48464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01433825 118.48467255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01433826 118.48467255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01433827 118.48469543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01433828 118.48469543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01433829 118.48472595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01433830 118.48472595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01433831 118.48474884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01433832 118.48474884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01433833 118.48477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01433834 118.48477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01433835 118.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01433836 118.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01433837 118.48482513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01433838 118.48482513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01433839 118.48484802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01433840 118.48486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01433841 118.48487854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01433842 118.48488617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01433843 118.48491669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01433844 118.48491669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01433845 118.48493958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01433846 118.48493958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01433847 118.48497009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01433848 118.48497009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01433849 118.48499298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01433850 118.48499298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01433851 118.48501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01433852 118.48501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01433853 118.48504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01433854 118.48504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01433855 118.48506927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01433856 118.48506927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01433857 118.48509216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01433858 118.48509216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01433859 118.48512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01433860 118.48512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01433861 118.48514557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01433862 118.48516083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01433863 118.48516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01433864 118.48518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01433865 118.48520660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01433866 118.48520660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01433867 118.48523712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01433868 118.48523712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01433869 118.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01433870 118.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01433871 118.48528290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01433872 118.48528290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01433873 118.48531342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01433874 118.48531342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01433875 118.48533630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01433876 118.48533630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01433877 118.48536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01433878 118.48536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01433879 118.48538971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01433880 118.48538971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01433881 118.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01433882 118.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01433883 118.48544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01433884 118.48545074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01433885 118.48546600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01433886 118.48548126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01433887 118.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01433888 118.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01433889 118.48552704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01433890 118.48552704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01433891 118.48555756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01433892 118.48555756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01433893 118.48558044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01433894 118.48558044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01433895 118.48560333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01433896 118.48560333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01433897 118.48563385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01433898 118.48563385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01433899 118.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01433900 118.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01433901 118.48567963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01433902 118.48567963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01433903 118.48571014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01433904 118.48571014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01433905 118.48573303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01433906 118.48574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01433907 118.48576355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01433908 118.48577118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01433909 118.48580170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01433910 118.48580170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01433911 118.48582458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01433912 118.48582458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01433913 118.48584747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01433914 118.48584747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01433915 118.48587799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01433916 118.48587799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01433917 118.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01433918 118.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01433919 118.48592377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01433920 118.48592377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01433921 118.48595428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01433922 118.48595428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01433923 118.48597717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01433924 118.48597717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01433925 118.48600006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01433926 118.48600006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01433927 118.48603058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01433928 118.48603821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01433929 118.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01433930 118.48606873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01433931 118.48609161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01433932 118.48609161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01433933 118.48612213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01433934 118.48612213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01433935 118.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01433936 118.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01433937 118.48616791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01433938 118.48616791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01433939 118.48619843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01433940 118.48619843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01433941 118.48622131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01433942 118.48622131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01433943 118.48624420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01433944 118.48624420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01433945 118.48627472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01433946 118.48627472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01433947 118.48629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01433948 118.48629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01433949 118.48632050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01433950 118.48633575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01433951 118.48635101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01433952 118.48635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01433953 118.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01433954 118.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01433955 118.48641205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01433956 118.48641205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01433957 118.48643494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01433958 118.48643494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01433959 118.48646545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01433960 118.48646545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01433961 118.48648834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01433962 118.48650360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01433963 118.48652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01433964 118.48652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01433965 118.48655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01433966 118.48655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01433967 118.48657990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01433968 118.48657990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01433969 118.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01433970 118.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01433971 118.48663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01433972 118.48664093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01433973 118.48667145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01433974 118.48667145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01433975 118.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01433976 118.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01433977 118.48671722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01433978 118.48671722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01433979 118.48674774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01433980 118.48674774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01433981 118.48677063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01433982 118.48677063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01433983 118.48679352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01433984 118.48679352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01433985 118.48682404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01433986 118.48683167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01433987 118.48686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01433988 118.48686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01433989 118.48688507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01433990 118.48688507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01433991 118.48691559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01433992 118.48691559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01433993 118.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01433994 118.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01433995 118.48696136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01433996 118.48697662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01433997 118.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01433998 118.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01433999 118.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01434000 118.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01434001 118.48705292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01434002 118.48705292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01434003 118.48707581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01434004 118.48707581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01434005 118.48710632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01434006 118.48711395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01434007 118.48714447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01434008 118.48714447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01434009 118.48716736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01434010 118.48716736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01434011 118.48719025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01434012 118.48719025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01434013 118.48722076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01434014 118.48722076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01434015 118.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01434016 118.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01434017 118.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01434018 118.48728180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01434019 118.48731232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01434020 118.48731232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01434021 118.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01434022 118.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01434023 118.48735809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01434024 118.48735809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01434025 118.48738861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01434026 118.48738861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01434027 118.48741150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01434028 118.48742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01434029 118.48744965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01434030 118.48744965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01434031 118.48747253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01434032 118.48747253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01434033 118.48750305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01434034 118.48750305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01434035 118.48752594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01434036 118.48752594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01434037 118.48754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01434038 118.48756409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01434039 118.48758698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01434040 118.48758698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01434041 118.48761749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01434042 118.48761749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01434043 118.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01434044 118.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01434045 118.48767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01434046 118.48767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01434047 118.48769379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01434048 118.48770905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01434049 118.48773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01434050 118.48773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01434051 118.48775482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01434052 118.48775482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01434053 118.48778534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01434054 118.48778534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01434055 118.48780823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01434056 118.48780823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01434057 118.48783112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01434058 118.48783112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01434059 118.48786163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01434060 118.48786926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01434061 118.48789978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01434062 118.48789978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01434063 118.48792267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01434064 118.48792267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01434065 118.48794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01434066 118.48794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01434067 118.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01434068 118.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01434069 118.48799896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01434070 118.48801422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01434071 118.48803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01434072 118.48803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01434073 118.48806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01434074 118.48806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01434075 118.48809052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01434076 118.48809052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01434077 118.48811340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01434078 118.48811340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01434079 118.48814392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01434080 118.48814392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01434081 118.48816681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01434082 118.48818207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01434083 118.48820496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01434084 118.48820496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01434085 118.48822784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01434086 118.48822784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01434087 118.48825836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01434088 118.48825836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01434089 118.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01434090 118.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01434091 118.48830414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01434092 118.48831940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01434093 118.48834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01434094 118.48834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01434095 118.48837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01434096 118.48837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01434097 118.48839569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01434098 118.48839569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01434099 118.48842621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01434100 118.48842621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01434101 118.48844910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01434102 118.48846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01434103 118.48848724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01434104 118.48848724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01434105 118.48851013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01434106 118.48851013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01434107 118.48854065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01434108 118.48854065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01434109 118.48856354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01434110 118.48856354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01434111 118.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01434112 118.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01434113 118.48861694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01434114 118.48862457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01434115 118.48865509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01434116 118.48865509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01434117 118.48867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01434118 118.48867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01434119 118.48870087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01434120 118.48871613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01434121 118.48873901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01434122 118.48873901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01434123 118.48876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01434124 118.48876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01434125 118.48879242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01434126 118.48879242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01434127 118.48882294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01434128 118.48882294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01434129 118.48884583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01434130 118.48886108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01434131 118.48888397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01434132 118.48888397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01434133 118.48890686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01434134 118.48890686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01434135 118.48893738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01434136 118.48893738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01434137 118.48896027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01434138 118.48896027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01434139 118.48898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01434140 118.48898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01434141 118.48901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01434142 118.48902130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01434143 118.48905182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01434144 118.48905182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01434145 118.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01434146 118.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01434147 118.48909760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01434148 118.48909760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01434149 118.48913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01434150 118.48913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01434151 118.48916626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01434152 118.48916626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01434153 118.48918915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01434154 118.48918915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01434155 118.48921967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01434156 118.48921967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01434157 118.48924255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01434158 118.48925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01434159 118.48928070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01434160 118.48928070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01434161 118.48930359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01434162 118.48930359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01434163 118.48933411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01434164 118.48933411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01434165 118.48935699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01434166 118.48935699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01434167 118.48937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01434168 118.48939514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01434169 118.48941803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01434170 118.48941803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01434171 118.48944855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01434172 118.48944855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01434173 118.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01434174 118.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01434175 118.48949432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01434176 118.48949432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01434177 118.48952484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01434178 118.48952484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01434179 118.48954773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01434180 118.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01434181 118.48958588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01434182 118.48958588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01434183 118.48961639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01434184 118.48961639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01434185 118.48963928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01434186 118.48963928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01434187 118.48966217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01434188 118.48967743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01434189 118.48969269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01434190 118.48970032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01434191 118.48973083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01434192 118.48973083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01434193 118.48975372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01434194 118.48975372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01434195 118.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01434196 118.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01434197 118.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01434198 118.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01434199 118.48984528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01434200 118.48984528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01434201 118.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01434202 118.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01434203 118.48989105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01434204 118.48989105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01434205 118.48992157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01434206 118.48992157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01434207 118.48994446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01434208 118.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01434209 118.48998260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01434210 118.48998260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01434211 118.49001312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01434212 118.49001312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01434213 118.49003601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01434214 118.49003601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01434215 118.49005890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01434216 118.49005890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01434217 118.49008942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01434218 118.49009705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01434219 118.49012756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01434220 118.49012756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01434221 118.49015045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01434222 118.49015045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01434223 118.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01434224 118.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01434225 118.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01434226 118.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01434227 118.49024200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01434228 118.49024200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01434229 118.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01434230 118.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01434231 118.49028778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01434232 118.49028778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01434233 118.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01434234 118.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01434235 118.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01434236 118.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01434237 118.49037933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01434238 118.49037933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01434239 118.49040985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01434240 118.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01434241 118.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01434242 118.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01434243 118.49047089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01434244 118.49047089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01434245 118.49049377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01434246 118.49049377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01434247 118.49052429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01434248 118.49053192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01434249 118.49056244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01434250 118.49056244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01434251 118.49058533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01434252 118.49058533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01434253 118.49062347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01434254 118.49062347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01434255 118.49064636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01434256 118.49064636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01434257 118.49067688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01434258 118.49068451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01434259 118.49071503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01434260 118.49071503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01434261 118.49073792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01434262 118.49073792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01434263 118.49076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01434264 118.49076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01434265 118.49079132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01434266 118.49080658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01434267 118.49082947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01434268 118.49082947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01434269 118.49085236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01434270 118.49085236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01434271 118.49088287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01434272 118.49088287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01434273 118.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01434274 118.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01434275 118.49092865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01434276 118.49092865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01434277 118.49095917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01434278 118.49096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01434279 118.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01434280 118.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01434281 118.49102020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01434282 118.49102020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01434283 118.49104309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01434284 118.49105835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01434285 118.49108124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01434286 118.49108124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01434287 118.49111176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01434288 118.49111176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01434289 118.49113464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01434290 118.49113464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01434291 118.49116516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01434292 118.49116516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01434293 118.49118805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01434294 118.49120331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01434295 118.49122620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01434296 118.49122620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01434297 118.49124908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01434298 118.49124908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01434299 118.49127960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01434300 118.49128723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01434301 118.49131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01434302 118.49131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01434303 118.49134064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01434304 118.49134064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01434305 118.49136353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01434306 118.49136353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01434307 118.49139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01434308 118.49139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01434309 118.49143219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01434310 118.49143219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01434311 118.49145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01434312 118.49145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01434313 118.49147797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01434314 118.49147797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01434315 118.49150848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01434316 118.49150848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01434317 118.49153137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01434318 118.49153137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01434319 118.49156189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01434320 118.49156952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01434321 118.49160004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01434322 118.49160004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01434323 118.49162292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01434324 118.49162292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01434325 118.49164581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01434326 118.49166107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01434327 118.49168396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01434328 118.49168396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01434329 118.49171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01434330 118.49171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01434331 118.49173737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01434332 118.49173737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01434333 118.49176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01434334 118.49176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01434335 118.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01434336 118.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01434337 118.49182892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01434338 118.49182892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01434339 118.49185181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01434340 118.49185181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01434341 118.49187469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01434342 118.49187469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01434343 118.49190521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01434344 118.49190521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01434345 118.49192810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01434346 118.49194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01434347 118.49196625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01434348 118.49196625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01434349 118.49199677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01434350 118.49199677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01434351 118.49201965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01434352 118.49201965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01434353 118.49204254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01434354 118.49204254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01434355 118.49207306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01434356 118.49208069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01434357 118.49211121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01434358 118.49211121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01434359 118.49213409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01434360 118.49213409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01434361 118.49217224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01434362 118.49217224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01434363 118.49219513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01434364 118.49219513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01434365 118.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01434366 118.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01434367 118.49227142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01434368 118.49227142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01434369 118.49230194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01434370 118.49230194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01434371 118.49232483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01434372 118.49232483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01434373 118.49235535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01434374 118.49235535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01434375 118.49237823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01434376 118.49237823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01434377 118.49241638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01434378 118.49241638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01434379 118.49243927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01434380 118.49243927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01434381 118.49246979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01434382 118.49246979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01434383 118.49249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01434384 118.49250793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01434385 118.49251556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01434386 118.49253082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01434387 118.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01434388 118.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01434389 118.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01434390 118.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01434391 118.49260712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01434392 118.49260712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01434393 118.49263000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01434394 118.49263000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01434395 118.49266052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01434396 118.49266052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01434397 118.49268341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01434398 118.49268341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01434399 118.49271393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01434400 118.49271393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01434401 118.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01434402 118.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01434403 118.49275970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01434404 118.49275970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01434405 118.49279022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01434406 118.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01434407 118.49281311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01434408 118.49282837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01434409 118.49285126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01434410 118.49285126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01434411 118.49287415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01434412 118.49287415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01434413 118.49290466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01434414 118.49290466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01434415 118.49292755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01434416 118.49292755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01434417 118.49295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01434418 118.49295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01434419 118.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01434420 118.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01434421 118.49300385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01434422 118.49300385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01434423 118.49302673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01434424 118.49302673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01434425 118.49305725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01434426 118.49305725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01434427 118.49308014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01434428 118.49308014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01434429 118.49311066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01434430 118.49311829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01434431 118.49313354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01434432 118.49314880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01434433 118.49317169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01434434 118.49317169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01434435 118.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01434436 118.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01434437 118.49322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01434438 118.49322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01434439 118.49324799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01434440 118.49324799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01434441 118.49327087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01434442 118.49327087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01434443 118.49330139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01434444 118.49330139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01434445 118.49332428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01434446 118.49332428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01434447 118.49334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01434448 118.49334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01434449 118.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01434450 118.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01434451 118.49340057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01434452 118.49341583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01434453 118.49342346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01434454 118.49343872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01434455 118.49346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01434456 118.49346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01434457 118.49349213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01434458 118.49349213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01434459 118.49351501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01434460 118.49351501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01434461 118.49354553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01434462 118.49354553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01434463 118.49356842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01434464 118.49356842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01434465 118.49359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01434466 118.49359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01434467 118.49362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01434468 118.49362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01434469 118.49364471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01434470 118.49364471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01434471 118.49366760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01434472 118.49366760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01434473 118.49369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01434474 118.49369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01434475 118.49372101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01434476 118.49373627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01434477 118.49374390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01434478 118.49375916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01434479 118.49378204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01434480 118.49378204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01434481 118.49381256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01434482 118.49381256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01434483 118.49383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01434484 118.49383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01434485 118.49386597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01434486 118.49386597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01434487 118.49388885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01434488 118.49388885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01434489 118.49391174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01434490 118.49391174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01434491 118.49394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01434492 118.49394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01434493 118.49396515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01434494 118.49396515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01434495 118.49400330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01434496 118.49400330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01434497 118.49402618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01434498 118.49402618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01434499 118.49405670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01434500 118.49405670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01434501 118.49407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01434502 118.49407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01434503 118.49410248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01434504 118.49411774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01434505 118.49414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01434506 118.49414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01434507 118.49417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01434508 118.49417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01434509 118.49419403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01434510 118.49419403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01434511 118.49422455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01434512 118.49422455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01434513 118.49424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01434514 118.49424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01434515 118.49427032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01434516 118.49428558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01434517 118.49430847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01434518 118.49430847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01434519 118.49433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01434520 118.49433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01434521 118.49436188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01434522 118.49436188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01434523 118.49438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01434524 118.49438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01434525 118.49441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01434526 118.49442291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01434527 118.49445343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01434528 118.49445343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01434529 118.49447632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01434530 118.49447632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01434531 118.49449921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01434532 118.49449921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01434533 118.49452972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01434534 118.49453735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01434535 118.49456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01434536 118.49456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01434537 118.49459076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01434538 118.49459076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01434539 118.49462128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01434540 118.49462128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01434541 118.49464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01434542 118.49464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01434543 118.49466705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01434544 118.49466705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01434545 118.49469757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01434546 118.49470520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01434547 118.49473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01434548 118.49473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01434549 118.49475861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01434550 118.49475861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01434551 118.49478149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01434552 118.49478149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01434553 118.49481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01434554 118.49481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01434555 118.49483490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01434556 118.49485016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01434557 118.49487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01434558 118.49487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01434559 118.49489594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01434560 118.49489594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01434561 118.49492645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01434562 118.49492645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01434563 118.49494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01434564 118.49494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01434565 118.49497223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01434566 118.49498749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01434567 118.49501801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01434568 118.49501801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01434569 118.49504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01434570 118.49504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01434571 118.49506378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01434572 118.49506378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01434573 118.49509430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01434574 118.49509430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01434575 118.49511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01434576 118.49511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01434577 118.49514008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01434578 118.49515533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01434579 118.49517059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01434580 118.49517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01434581 118.49519348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01434582 118.49520874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01434583 118.49523163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01434584 118.49523163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01434585 118.49525452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01434586 118.49525452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01434587 118.49528503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01434588 118.49528503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01434589 118.49530792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01434590 118.49530792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01434591 118.49533081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01434592 118.49533081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01434593 118.49536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01434594 118.49536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01434595 118.49538422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01434596 118.49538422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01434597 118.49541473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01434598 118.49541473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01434599 118.49543762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01434600 118.49545288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01434601 118.49546051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01434602 118.49547577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01434603 118.49549866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01434604 118.49549866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01434605 118.49552917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01434606 118.49552917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01434607 118.49555206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01434608 118.49555206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01434609 118.49557495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01434610 118.49557495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01434611 118.49560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01434612 118.49560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01434613 118.49562836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01434614 118.49562836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01434615 118.49565125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01434616 118.49565125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01434617 118.49568176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01434618 118.49568176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01434619 118.49570465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01434620 118.49570465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01434621 118.49572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01434622 118.49574280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01434623 118.49575806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01434624 118.49577332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01434625 118.49579620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01434626 118.49579620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01434627 118.49581909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01434628 118.49581909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01434629 118.49584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01434630 118.49584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01434631 118.49587250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01434632 118.49587250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01434633 118.49589539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01434634 118.49589539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01434635 118.49592590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01434636 118.49592590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01434637 118.49594879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01434638 118.49594879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01434639 118.49597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01434640 118.49597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01434641 118.49600220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01434642 118.49600220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01434643 118.49602509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01434644 118.49602509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01434645 118.49604797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01434646 118.49606323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01434647 118.49607849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01434648 118.49608612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01434649 118.49611664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01434650 118.49611664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01434651 118.49613953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01434652 118.49613953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01434653 118.49617004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01434654 118.49617004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01434655 118.49619293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01434656 118.49619293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01434657 118.49621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01434658 118.49621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01434659 118.49624634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01434660 118.49624634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01434661 118.49626923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01434662 118.49626923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01434663 118.49629211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01434664 118.49629211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01434665 118.49632263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01434666 118.49633026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01434667 118.49634552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01434668 118.49636078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01434669 118.49638367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01434670 118.49638367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01434671 118.49640656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01434672 118.49640656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01434673 118.49643707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01434674 118.49643707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01434675 118.49645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01434676 118.49647522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01434677 118.49649811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01434678 118.49649811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01434679 118.49652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01434680 118.49652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01434681 118.49655151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01434682 118.49655151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01434683 118.49657440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01434684 118.49657440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01434685 118.49660492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01434686 118.49660492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01434687 118.49662781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01434688 118.49662781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01434689 118.49665070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01434690 118.49665070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01434691 118.49668121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01434692 118.49668121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01434693 118.49670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01434694 118.49671936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01434695 118.49672699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01434696 118.49674225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01434697 118.49676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01434698 118.49676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01434699 118.49679565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01434700 118.49679565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01434701 118.49681854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01434702 118.49681854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01434703 118.49684143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01434704 118.49684143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01434705 118.49687195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01434706 118.49687195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01434707 118.49689484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01434708 118.49689484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01434709 118.49692535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01434710 118.49692535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01434711 118.49694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01434712 118.49694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01434713 118.49697113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01434714 118.49697113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01434715 118.49700165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01434716 118.49700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01434717 118.49702454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01434718 118.49703979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01434719 118.49706268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01434720 118.49706268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01434721 118.49708557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01434722 118.49708557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01434723 118.49711609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01434724 118.49711609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01434725 118.49713898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01434726 118.49713898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01434727 118.49716187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01434728 118.49716187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01434729 118.49719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01434730 118.49719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01434731 118.49721527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01434732 118.49721527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01434733 118.49723816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01434734 118.49723816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01434735 118.49726868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01434736 118.49726868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01434737 118.49729156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01434738 118.49729156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01434739 118.49732208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01434740 118.49732971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01434741 118.49736023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01434742 118.49736023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01434743 118.49738312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01434744 118.49738312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01434745 118.49740601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01434746 118.49740601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01434747 118.49743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01434748 118.49743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01434749 118.49745941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01434750 118.49745941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01434751 118.49748230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01434752 118.49748230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01434753 118.49751282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01434754 118.49751282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01434755 118.49753571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01434756 118.49753571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01434757 118.49755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01434758 118.49755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01434759 118.49758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01434760 118.49758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01434761 118.49761200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01434762 118.49762726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01434763 118.49763489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01434764 118.49765015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01434765 118.49767303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01434766 118.49767303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01434767 118.49770355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01434768 118.49770355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01434769 118.49772644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01434770 118.49772644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01434771 118.49775696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01434772 118.49775696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01434773 118.49777985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01434774 118.49777985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01434775 118.49780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01434776 118.49780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01434777 118.49783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01434778 118.49783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01434779 118.49785614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01434780 118.49785614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01434781 118.49787903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01434782 118.49787903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01434783 118.49790955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01434784 118.49791718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01434785 118.49793243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01434786 118.49794769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01434787 118.49797058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01434788 118.49797058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01434789 118.49799347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01434790 118.49799347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01434791 118.49802399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01434792 118.49802399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01434793 118.49804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01434794 118.49804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01434795 118.49807739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01434796 118.49807739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01434797 118.49810028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01434798 118.49810028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01434799 118.49812317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01434800 118.49812317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01434801 118.49815369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01434802 118.49815369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01434803 118.49817657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01434804 118.49817657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01434805 118.49819946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01434806 118.49819946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01434807 118.49822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01434808 118.49823761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01434809 118.49825287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01434810 118.49826813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01434811 118.49829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01434812 118.49829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01434813 118.49831390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01434814 118.49831390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01434815 118.49834442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01434816 118.49834442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01434817 118.49836731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01434818 118.49836731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01434819 118.49839020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01434820 118.49839020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01434821 118.49842072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01434822 118.49842834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01434823 118.49845886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01434824 118.49845886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01434825 118.49848175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01434826 118.49848175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01434827 118.49851227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01434828 118.49851227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01434829 118.49853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01434830 118.49853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01434831 118.49855804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01434832 118.49855804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01434833 118.49858856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01434834 118.49858856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01434835 118.49861145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01434836 118.49861145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01434837 118.49863434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01434838 118.49864960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01434839 118.49866486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01434840 118.49867249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01434841 118.49870300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01434842 118.49870300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01434843 118.49872589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01434844 118.49872589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01434845 118.49874878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01434846 118.49874878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01434847 118.49877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01434848 118.49877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01434849 118.49880219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01434850 118.49880219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01434851 118.49882507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01434852 118.49882507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01434853 118.49885559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01434854 118.49885559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01434855 118.49887848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01434856 118.49887848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01434857 118.49890900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01434858 118.49890900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01434859 118.49893188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01434860 118.49893188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01434861 118.49895477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01434862 118.49897003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01434863 118.49898529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01434864 118.49899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01434865 118.49902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01434866 118.49902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01434867 118.49904633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01434868 118.49904633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01434869 118.49906921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01434870 118.49906921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01434871 118.49909973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01434872 118.49909973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01434873 118.49912262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01434874 118.49912262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01434875 118.49914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01434876 118.49914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01434877 118.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01434878 118.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01434879 118.49919891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01434880 118.49919891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01434881 118.49922180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01434882 118.49922180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01434883 118.49925232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01434884 118.49926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01434885 118.49927521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01434886 118.49929047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01434887 118.49930573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01434888 118.49931335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01434889 118.49934387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01434890 118.49934387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01434891 118.49936676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01434892 118.49936676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01434893 118.49938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01434894 118.49938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01434895 118.49942017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01434896 118.49942780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01434897 118.49945831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01434898 118.49945831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01434899 118.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01434900 118.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01434901 118.49950409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01434902 118.49950409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01434903 118.49953461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01434904 118.49953461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01434905 118.49955750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01434906 118.49957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01434907 118.49958038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01434908 118.49959564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01434909 118.49962616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01434910 118.49962616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01434911 118.49964905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01434912 118.49964905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01434913 118.49967194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01434914 118.49967194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01434915 118.49970245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01434916 118.49970245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01434917 118.49972534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01434918 118.49974060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01434919 118.49976349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01434920 118.49976349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01434921 118.49978638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01434922 118.49978638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01434923 118.49987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01434924 118.49987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01434926 118.49990082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01434927 118.49990082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01434928 118.49993134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01434929 118.49993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01434930 118.49996948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01434931 118.49996948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01434932 118.49999237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01434933 118.49999237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01434934 118.50002289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01434935 118.50002289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01434936 118.50004578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01434937 118.50004578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01434938 118.50006866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01434939 118.50008392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01434940 118.50010681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01434941 118.50010681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01434942 118.50013733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01434943 118.50013733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01434944 118.50016022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01434945 118.50016022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01434946 118.50018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01434947 118.50018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01434948 118.50021362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01434949 118.50021362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01434950 118.50023651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01434951 118.50025177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01434952 118.50027466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01434953 118.50027466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01434954 118.50029755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01434955 118.50029755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01434956 118.50032806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01434957 118.50032806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01434958 118.50035095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01434959 118.50035095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01434960 118.50037384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01434961 118.50038910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01434962 118.50041962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01434963 118.50041962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01434964 118.50044250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01434965 118.50044250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01434966 118.50046539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01434967 118.50046539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01434968 118.50049591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01434969 118.50049591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01434970 118.50051880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01434971 118.50053406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01434972 118.50055695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01434973 118.50055695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01434974 118.50057983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01434975 118.50057983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01434976 118.50061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01434977 118.50061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01434978 118.50063324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01434979 118.50063324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01434980 118.50065613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01434981 118.50067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01434982 118.50069427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01434983 118.50069427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01434984 118.50072479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01434985 118.50072479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01434986 118.50074768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01434987 118.50074768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01434988 118.50077820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01434989 118.50077820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01434990 118.50080109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01434991 118.50081635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01434992 118.50082397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01434993 118.50083923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01434994 118.50086212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01434995 118.50086212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01434996 118.50089264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01434997 118.50089264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01434998 118.50091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01434999 118.50091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01435000 118.50093842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01435001 118.50093842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01435002 118.50096893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01435003 118.50096893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01435004 118.50099182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01435005 118.50100708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01435006 118.50102997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01435007 118.50104523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01435008 118.50106812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01435009 118.50106812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01435010 118.50109100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01435011 118.50109100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01435012 118.50112152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01435013 118.50112152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01435014 118.50114441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01435015 118.50114441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01435016 118.50117493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01435017 118.50118256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01435018 118.50121307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01435019 118.50121307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01435020 118.50123596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01435021 118.50123596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01435022 118.50125885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01435023 118.50125885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01435024 118.50128937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01435025 118.50128937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01435026 118.50131226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01435027 118.50132751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01435028 118.50135040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01435029 118.50135040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01435030 118.50137329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01435031 118.50137329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01435032 118.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01435033 118.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01435034 118.50142670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01435035 118.50142670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01435036 118.50144958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01435037 118.50146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01435038 118.50148773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01435039 118.50148773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01435040 118.50151825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01435041 118.50151825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01435042 118.50154114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01435043 118.50154114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01435044 118.50157166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01435045 118.50157166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01435046 118.50159454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01435047 118.50160980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01435048 118.50163269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01435049 118.50163269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01435050 118.50165558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01435051 118.50165558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01435052 118.50168610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01435053 118.50168610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01435054 118.50170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01435055 118.50170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01435056 118.50173187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01435057 118.50174713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01435058 118.50177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01435059 118.50177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01435060 118.50180054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01435061 118.50180054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01435062 118.50182343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01435063 118.50182343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01435064 118.50184631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01435065 118.50184631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01435066 118.50187683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01435067 118.50188446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01435068 118.50191498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01435069 118.50191498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01435070 118.50193787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01435071 118.50193787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01435072 118.50196838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01435073 118.50196838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01435074 118.50199127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01435075 118.50199127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01435076 118.50201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01435077 118.50202942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01435078 118.50205231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01435079 118.50205231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01435080 118.50208282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01435081 118.50208282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01435082 118.50210571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01435083 118.50210571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01435084 118.50212860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01435085 118.50212860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01435086 118.50215912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01435087 118.50215912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01435088 118.50218201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01435089 118.50219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01435090 118.50222015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01435091 118.50222015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01435092 118.50224304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01435093 118.50224304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01435094 118.50227356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01435095 118.50227356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01435096 118.50229645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01435097 118.50229645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01435098 118.50232697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01435099 118.50233459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01435100 118.50236511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01435101 118.50236511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01435102 118.50238800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01435103 118.50238800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01435104 118.50241089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01435105 118.50241089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01435106 118.50244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01435107 118.50244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01435108 118.50246429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01435109 118.50247955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01435110 118.50250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01435111 118.50250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01435112 118.50252533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01435113 118.50252533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01435114 118.50255585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01435115 118.50255585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01435116 118.50257874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01435117 118.50257874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01435118 118.50260162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01435119 118.50260162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01435120 118.50263214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01435121 118.50263977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01435122 118.50267029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01435123 118.50267029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01435124 118.50269318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01435125 118.50269318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01435126 118.50272369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01435127 118.50272369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01435128 118.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01435129 118.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01435130 118.50276947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01435131 118.50278473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01435132 118.50280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01435133 118.50280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01435134 118.50283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01435135 118.50283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01435136 118.50286102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01435137 118.50286102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01435138 118.50288391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01435139 118.50288391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01435140 118.50291443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01435141 118.50291443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01435142 118.50293732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01435143 118.50295258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01438146 118.54531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01438147 118.54533386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01438149 118.54535675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01438150 118.54535675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01438151 118.54537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01438152 118.54537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01438153 118.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01438154 118.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01438155 118.54543304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01438156 118.54543304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01438157 118.54545593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01438158 118.54545593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01438159 118.54548645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01438160 118.54549408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01438161 118.54552460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01438162 118.54552460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01438163 118.54554749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01438164 118.54554749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01438165 118.54557800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01438166 118.54557800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01438167 118.54560089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01438168 118.54560089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01438169 118.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01438170 118.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01438171 118.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01438172 118.54566193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01438173 118.54569244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01438174 118.54569244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01438175 118.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01438176 118.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01438177 118.54573822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01438178 118.54573822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01438179 118.54576874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01438180 118.54576874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01438181 118.54579163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01438182 118.54580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01438183 118.54582977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01438184 118.54582977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01438185 118.54585266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01438186 118.54585266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01438187 118.54588318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01438188 118.54588318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01438189 118.54590607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01438190 118.54590607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01440221 118.57431030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a8 -01440222 118.57431030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109a8 -01440224 118.57433319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01440225 118.57433319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109b8 -01440226 118.57436371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01440227 118.57436371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109c8 -01440228 118.57438660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01440229 118.57438660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109d8 -01440230 118.57442474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01440231 118.57442474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109e8 -01440232 118.57444763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01440233 118.57444763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x109f8 -01440234 118.57447815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a08 -01440235 118.57447815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a08 -01440236 118.57450104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a18 -01440237 118.57450104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a18 -01440238 118.57453918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a28 -01440239 118.57453918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a28 -01440240 118.57456970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a38 -01440241 118.57457733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a38 -01440242 118.57461548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a48 -01440243 118.57461548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a48 -01440244 118.57464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a58 -01440245 118.57465363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a58 -01440246 118.57468414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a68 -01440247 118.57468414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a68 -01440248 118.57470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -01440249 118.57470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -01440250 118.57472992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -01440251 118.57472992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -01440252 118.57476044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -01440253 118.57476044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -01440254 118.57478333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -01440255 118.57479858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -01440256 118.57482147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -01440257 118.57482147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -01440258 118.57484436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -01440259 118.57484436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -01440260 118.57487488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -01440261 118.57487488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -01440262 118.57489777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -01440263 118.57489777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -01440264 118.57492828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -01440265 118.57492828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -01442908 118.61196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -01442909 118.61198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -01442911 118.61200714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -01442912 118.61200714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -01442913 118.61203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -01442914 118.61203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -01442915 118.61206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -01442916 118.61206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -01442917 118.61208344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -01442918 118.61208344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -01442919 118.61212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -01442920 118.61212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -01442921 118.61214447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df8 -01442922 118.61214447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df8 -01442923 118.61218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e08 -01442924 118.61218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e08 -01442925 118.61221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e18 -01442926 118.61221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e18 -01442927 118.61223602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e28 -01442928 118.61223602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e28 -01442929 118.61225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e38 -01442930 118.61225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e38 -01442931 118.61228943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e48 -01442932 118.61229706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e48 -01442933 118.61232758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e58 -01442934 118.61232758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e58 -01442935 118.61235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e68 -01442936 118.61235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e68 -01442937 118.61238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e78 -01442938 118.61238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e78 -01442939 118.61240387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e88 -01442940 118.61240387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e88 -01442941 118.61242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e98 -01442942 118.61244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e98 -01442943 118.61246490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea8 -01442944 118.61246490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ea8 -01442945 118.61249542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb8 -01442946 118.61249542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15eb8 -01442947 118.61251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec8 -01442948 118.61251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ec8 -01442949 118.61254120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed8 -01442950 118.61254120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ed8 -01442951 118.61257172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee8 -01442952 118.61257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ee8 -01445292 118.64534760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a808 -01445293 118.64534760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a808 -01445294 118.64537811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a818 -01445295 118.64537811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a818 -01445296 118.64540100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a828 -01445297 118.64540100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a828 -01445298 118.64542389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a838 -01445299 118.64543915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a838 -01445300 118.64546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a848 -01445301 118.64546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a848 -01445302 118.64549255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a858 -01445303 118.64549255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a858 -01445304 118.64551544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a868 -01445305 118.64551544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a868 -01445306 118.64554596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a878 -01445307 118.64554596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a878 -01445308 118.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a888 -01445309 118.64558411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a888 -01445310 118.64560699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a898 -01445311 118.64560699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a898 -01445312 118.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a8 -01445313 118.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a8 -01445314 118.64566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b8 -01445315 118.64566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b8 -01445316 118.64568329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c8 -01445317 118.64568329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c8 -01445318 118.64570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d8 -01445319 118.64572144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d8 -01445320 118.64574432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e8 -01445321 118.64574432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e8 -01445322 118.64577484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f8 -01445323 118.64577484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f8 -01445324 118.64579773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a908 -01445325 118.64579773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a908 -01445326 118.64582062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a918 -01445327 118.64582062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a918 -01445328 118.64585114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a928 -01445329 118.64585114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a928 -01445330 118.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a938 -01445331 118.64588928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a938 -01445332 118.64591217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a948 -01445333 118.64591217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a948 -01445334 118.64594269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a958 -01445335 118.64594269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a958 -01448775 118.69550323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -01448776 118.69550323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -01448777 118.69554138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -01448778 118.69554901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -01448779 118.69557953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -01448780 118.69558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -01448781 118.69561768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -01448782 118.69562531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -01448783 118.69566345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -01448784 118.69566345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -01448785 118.69570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -01448786 118.69570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -01448787 118.69574738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -01448788 118.69574738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -01448789 118.69578552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -01448790 118.69578552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -01448791 118.69582367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -01448792 118.69582367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -01448793 118.69586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -01448794 118.69586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -01448795 118.69589996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -01448796 118.69589996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -01448797 118.69593811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -01448798 118.69593811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -01448799 118.69597626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -01448800 118.69598389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -01448801 118.69601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -01448802 118.69601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -01448803 118.69605255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -01448804 118.69605255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -01448805 118.69609070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -01448806 118.69610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -01448807 118.69612885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -01448808 118.69614410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -01448809 118.69618225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -01448810 118.69618225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -01448811 118.69622040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -01448812 118.69622040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -01448813 118.69625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -01448814 118.69625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -01448815 118.69629669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -01448816 118.69629669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -01448817 118.69633484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -01448818 118.69633484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -01463297 118.91183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e8 -01463298 118.91184998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e8 -01463299 118.91187286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f8 -01463300 118.91188812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f8 -01463301 118.91191101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da08 -01463302 118.91191101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da08 -01463303 118.91194916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da18 -01463304 118.91194916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da18 -01463305 118.91198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da28 -01463306 118.91198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da28 -01463307 118.91202545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da38 -01463308 118.91202545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da38 -01463309 118.91206360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da48 -01463310 118.91206360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da48 -01463311 118.91210175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da58 -01463312 118.91210175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da58 -01463313 118.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da68 -01463314 118.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da68 -01463315 118.91216278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da78 -01463316 118.91217804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da78 -01463317 118.91220856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da88 -01463318 118.91221619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da88 -01463319 118.91224670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da98 -01463320 118.91225433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da98 -01463321 118.91228485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa8 -01463322 118.91229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa8 -01463323 118.91233063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab8 -01463324 118.91233063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab8 -01463325 118.91236877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac8 -01463326 118.91236877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac8 -01463327 118.91240692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad8 -01463328 118.91240692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad8 -01463329 118.91244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae8 -01463330 118.91244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae8 -01463331 118.91248322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf8 -01463332 118.91249847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf8 -01463333 118.91252136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db08 -01463334 118.91253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db08 -01463335 118.91257477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db18 -01463336 118.91257477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db18 -01463337 118.91261292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db28 -01463338 118.91261292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db28 -01463339 118.91265106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db38 -01463340 118.91265106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db38 -01465208 118.93982697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41588 -01465209 118.93982697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41588 -01465210 118.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41598 -01465211 118.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41598 -01465212 118.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a8 -01465213 118.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a8 -01465214 118.93990326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b8 -01465215 118.93991852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b8 -01465216 118.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c8 -01465217 118.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c8 -01465218 118.93996429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -01465219 118.93996429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -01465220 118.93999481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -01465221 118.93999481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -01465222 118.94001770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -01465223 118.94003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -01465224 118.94005585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -01465225 118.94005585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -01465226 118.94008636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -01465227 118.94008636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -01465228 118.94010925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -01465229 118.94010925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -01465230 118.94013214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -01465231 118.94013214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -01465232 118.94016266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -01465233 118.94017029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -01465234 118.94020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -01465235 118.94020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -01465236 118.94022369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -01465237 118.94022369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -01465238 118.94024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -01465239 118.94024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -01465240 118.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -01465241 118.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -01465242 118.94029999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -01465243 118.94031525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -01465244 118.94033813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -01465245 118.94033813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -01465246 118.94036102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -01465247 118.94036102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -01465248 118.94039154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -01465249 118.94039154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -01465250 118.94041443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -01465251 118.94042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -01467242 118.96875763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45518 -01467243 118.96875763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45518 -01467244 118.96878052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45528 -01467245 118.96878052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45528 -01467246 118.96880341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45538 -01467247 118.96881866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45538 -01467248 118.96884155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45548 -01467249 118.96884155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45548 -01467250 118.96887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45558 -01467251 118.96887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45558 -01467252 118.96889496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45568 -01467253 118.96889496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45568 -01467254 118.96891785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45578 -01467255 118.96893311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45578 -01467256 118.96896362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45588 -01467257 118.96896362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45588 -01467258 118.96898651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45598 -01467259 118.96898651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45598 -01467260 118.96900940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a8 -01467261 118.96900940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a8 -01467262 118.96903992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b8 -01467263 118.96904755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b8 -01467264 118.96907806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c8 -01467265 118.96907806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455c8 -01467266 118.96910095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d8 -01467267 118.96910095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455d8 -01467268 118.96912384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e8 -01467269 118.96912384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455e8 -01467270 118.96915436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f8 -01467271 118.96916199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x455f8 -01467272 118.96919250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45608 -01467273 118.96919250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45608 -01467274 118.96921539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45618 -01467275 118.96921539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45618 -01467276 118.96923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45628 -01467277 118.96923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45628 -01467278 118.96926880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45638 -01467279 118.96926880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45638 -01467280 118.96929169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45648 -01467281 118.96930695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45648 -01467282 118.96932983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45658 -01467283 118.96932983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45658 -01467284 118.96936035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45668 -01467285 118.96936035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45668 -01469502 119.00084686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -01469503 119.00084686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -01469504 119.00086975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -01469505 119.00088501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -01469506 119.00090790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -01469507 119.00090790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -01469508 119.00093079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -01469509 119.00093079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -01469510 119.00096130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -01469511 119.00096130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -01469512 119.00098419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -01469513 119.00098419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -01469514 119.00102234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -01469515 119.00102234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -01469516 119.00105286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c28 -01469517 119.00105286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c28 -01469518 119.00107574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c38 -01469519 119.00107574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c38 -01469520 119.00111389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c48 -01469521 119.00111389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c48 -01469522 119.00115204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c58 -01469523 119.00115204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c58 -01469524 119.00117493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -01469525 119.00119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -01469526 119.00121307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -01469527 119.00121307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -01469528 119.00124359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -01469529 119.00124359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -01469530 119.00126648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -01469531 119.00126648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -01469532 119.00128937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -01469533 119.00128937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -01469534 119.00131989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -01469535 119.00132751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -01469536 119.00135803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -01469537 119.00135803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -01469538 119.00138092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd8 -01469539 119.00138092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd8 -01469540 119.00141144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce8 -01469541 119.00141144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce8 -01469542 119.00143433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf8 -01469543 119.00143433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf8 -01469544 119.00145721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d08 -01469545 119.00147247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d08 -01471680 119.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc8 -01471681 119.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc8 -01471682 119.03163910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd8 -01471683 119.03163910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd8 -01471684 119.03166962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe8 -01471685 119.03166962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe8 -01471686 119.03169250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff8 -01471687 119.03169250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff8 -01471688 119.03171539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e008 -01471689 119.03173065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e008 -01471690 119.03175354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e018 -01471691 119.03175354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e018 -01471692 119.03178406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e028 -01471693 119.03178406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e028 -01471694 119.03180695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e038 -01471695 119.03180695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e038 -01471696 119.03182983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e048 -01471697 119.03182983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e048 -01471698 119.03186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e058 -01471699 119.03187561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e058 -01471700 119.03189850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e068 -01471701 119.03189850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e068 -01471702 119.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e078 -01471703 119.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e078 -01471704 119.03195190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e088 -01471705 119.03195190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e088 -01471706 119.03197479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e098 -01471707 119.03197479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e098 -01471708 119.03199768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a8 -01471709 119.03201294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a8 -01471710 119.03203583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b8 -01471711 119.03203583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b8 -01471712 119.03206635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c8 -01471713 119.03206635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c8 -01471714 119.03208923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d8 -01471715 119.03208923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d8 -01471716 119.03211212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e8 -01471717 119.03211212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e8 -01471718 119.03214264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f8 -01471719 119.03215027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0f8 -01471720 119.03218079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e108 -01471721 119.03218079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e108 -01471722 119.03220367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e118 -01471723 119.03220367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e118 -01473768 119.06086731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52108 -01473769 119.06087494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52108 -01473770 119.06090546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52118 -01473771 119.06090546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52118 -01473772 119.06092834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -01473773 119.06092834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -01473774 119.06095123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -01473775 119.06095123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -01473776 119.06098175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -01473777 119.06098175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -01473778 119.06100464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -01473779 119.06101990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -01473780 119.06104279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -01473781 119.06104279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -01473782 119.06106567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -01473783 119.06106567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -01473784 119.06109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -01473785 119.06109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -01473786 119.06111908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -01473787 119.06111908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -01473788 119.06114197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -01473789 119.06115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -01473790 119.06118774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -01473791 119.06118774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -01473792 119.06121063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -01473793 119.06121063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -01473794 119.06123352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -01473795 119.06123352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -01473796 119.06126404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -01473797 119.06126404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521e8 -01473798 119.06128693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -01473799 119.06128693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x521f8 -01473800 119.06130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -01473801 119.06132507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52208 -01473802 119.06134796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -01473803 119.06134796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52218 -01473804 119.06137848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -01473805 119.06137848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52228 -01473806 119.06140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -01473807 119.06140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52238 -01473808 119.06142426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -01473809 119.06142426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52248 -01473810 119.06145477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -01473811 119.06145477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52258 -01474163 119.09738159 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474164 119.09758759 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474165 119.09770203 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474166 119.09785461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474167 119.09793091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474168 119.09796143 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474169 119.09807587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474170 119.09825134 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474171 119.09835815 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474172 119.09847260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474173 119.09857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474174 119.09872437 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474175 119.09898376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474176 119.09947968 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474178 119.14264679 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474180 119.18174744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474181 119.18801880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474186 119.26850891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474194 119.30133820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474195 119.30155182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474196 119.31251526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474197 119.33831787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474198 119.34881592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474199 119.37400055 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474200 119.38401031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474201 119.39257813 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474202 119.41405487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474203 119.41802216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474204 119.43050385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474205 119.43743896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474206 119.49666595 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474207 119.51308441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474208 119.56522369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474209 119.56542969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474210 119.56562042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474211 119.56579590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474212 119.56597900 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474213 119.56615448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474214 119.56633759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474215 119.56650543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474216 119.56669617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474217 119.56686401 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474219 119.60275269 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474220 119.60379028 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474221 119.61232758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474222 119.61309814 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474224 119.62084961 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474225 119.62139130 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474226 119.63890076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474227 119.63909149 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474229 119.64542389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474231 119.69384003 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474232 119.69403076 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474233 119.69422150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474234 119.69438934 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474235 119.69458008 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474236 119.69475555 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474237 119.69493866 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474238 119.69510651 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474239 119.69529724 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474240 119.69546509 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474241 119.69564056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474242 119.69582367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474243 119.69599915 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474244 119.69618225 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474245 119.69635773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474246 119.69652557 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474247 119.69671631 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474248 119.69688416 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474249 119.69705963 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474250 119.69724274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474251 119.69741821 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474252 119.69758606 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474253 119.69777679 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474254 119.69794464 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474255 119.69813538 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474256 119.69830322 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474257 119.69848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474258 119.69866180 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474259 119.69884491 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474260 119.69900513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474261 119.69920349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474262 119.69936371 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474263 119.69956207 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474264 119.69972229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474266 119.71118164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474267 119.71155548 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474268 119.71195221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474269 119.71221924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474270 119.71361542 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474271 119.71407318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474272 119.71429443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474273 119.72455597 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01474278 119.73415375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474279 119.73534393 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474280 119.73546600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474281 119.73567963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474282 119.74523926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474283 119.74525452 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474284 119.75476837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474285 119.75641632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474286 119.75662231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474287 119.77507782 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474288 119.77616882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474289 119.77638245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474291 119.79636383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474292 119.79779816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01474293 119.79801941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474294 119.81666565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474295 119.83083344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474296 119.99282837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474297 119.99334717 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474298 119.99369049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474299 119.99402618 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474300 119.99420166 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474301 119.99442291 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474302 119.99616241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474303 119.99688721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474306 120.22064972 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474307 120.22144318 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474320 121.02381134 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474321 121.02428436 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474323 121.09790802 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474324 121.27474213 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474325 121.27478027 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474326 121.27478790 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474327 121.27480316 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01474328 121.27493286 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474329 121.27493286 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474330 121.27497864 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474331 121.27500916 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474332 121.29315948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474333 121.56564331 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474334 121.74642181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01474335 121.76454163 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474336 121.76455688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474337 122.12616730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474338 122.94985962 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474339 123.64125061 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474340 123.76595306 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01474341 123.78189850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474342 123.78193665 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474343 123.78196716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474344 123.78197479 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01474345 123.78210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474346 123.78210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474347 123.78215790 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01474348 123.78218079 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01474349 123.78437042 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474350 123.78437042 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01474351 124.04244232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01474352 124.06777954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01474353 124.06777954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01474354 124.06780243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01474355 124.06780243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01474356 124.06782532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01474357 124.06784058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01474358 124.06786346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01474359 124.06786346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01474360 124.06789398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01474361 124.06790161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01474362 124.06793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01474363 124.06793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01474364 124.06795502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01474365 124.06795502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01474366 124.06797791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01474367 124.06797791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01474368 124.06800842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01474369 124.06800842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01474370 124.06803131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01474371 124.06804657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01474372 124.06806946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01474373 124.06806946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01474374 124.06809235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01474375 124.06809235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01474376 124.06812286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01474377 124.06812286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01474378 124.06814575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01474379 124.06814575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01474380 124.06817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01474381 124.06818390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01474382 124.06821442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01474383 124.06821442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01474384 124.06823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01474385 124.06823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01474386 124.06826019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01474387 124.06826019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01474388 124.06829071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01474389 124.06829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01474390 124.06832886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01474391 124.06832886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01474392 124.06835175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01474393 124.06835175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01474394 124.06837463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01474395 124.06837463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01474396 124.06840515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01474397 124.06840515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01474398 124.06842804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01474399 124.06842804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01474400 124.06845093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01474401 124.06845093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01474402 124.06848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01474403 124.06848907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01474404 124.06851959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01474405 124.06851959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01474406 124.06854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01474407 124.06854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01474408 124.06857300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01474409 124.06857300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01474410 124.06859589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01474411 124.06861115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01474412 124.06863403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01474413 124.06863403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01474414 124.06865692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01474415 124.06865692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01474416 124.06868744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01474417 124.06868744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01474418 124.06871033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01474419 124.06871033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01474420 124.06873322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01474421 124.06874847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01474422 124.06877136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01474423 124.06877136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01474424 124.06880188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01474425 124.06880188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01474426 124.06882477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01474427 124.06882477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01474428 124.06884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01474429 124.06886292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01474430 124.06888580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01474431 124.06888580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01474432 124.06891632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01474433 124.06891632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01474434 124.06893921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01474435 124.06893921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01474436 124.06896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01474437 124.06896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01474438 124.06899261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01474439 124.06899261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01474440 124.06901550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01474441 124.06903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01474442 124.06905365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01474443 124.06905365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01474444 124.06908417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01474445 124.06908417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01474446 124.06910706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01474447 124.06910706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01474448 124.06912994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01474449 124.06912994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01474450 124.06916046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01474451 124.06916809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01474452 124.06919861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01474453 124.06919861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01474454 124.06922150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01474455 124.06922150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01474456 124.06924438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01474457 124.06924438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01474458 124.06927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01474459 124.06927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01474460 124.06929779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01474461 124.06931305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01474462 124.06933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01474463 124.06933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01474464 124.06936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01474465 124.06936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01474466 124.06938934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01474467 124.06938934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01474468 124.06941223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01474469 124.06941223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01474470 124.06944275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01474471 124.06945038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01474472 124.06948090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01474473 124.06948090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01474474 124.06950378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01474475 124.06950378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01474476 124.06955719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01474477 124.06955719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01474478 124.06958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01474479 124.06958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01474480 124.06960297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01474481 124.06960297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01474482 124.06963348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01474483 124.06963348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01474484 124.06965637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01474485 124.06965637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01474486 124.06968689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01474487 124.06968689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01474488 124.06972504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01474489 124.06972504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01474490 124.06974792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01474491 124.06974792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01474492 124.06977081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01474493 124.06977081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01474494 124.06980133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01474495 124.06980133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01474496 124.06982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01474497 124.06982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01474498 124.06986237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01474499 124.06986237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01474500 124.06988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01474501 124.06988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01474502 124.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01474503 124.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01474504 124.06993866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01474505 124.06993866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01474506 124.06996155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01474507 124.06997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01474508 124.06999969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01474509 124.06999969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01474510 124.07003021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01474511 124.07003021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01474512 124.07005310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01474513 124.07005310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01474514 124.07008362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01474515 124.07008362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01474516 124.07010651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01474517 124.07012177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01474518 124.07012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01474519 124.07014465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01474520 124.07016754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01474521 124.07016754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01474522 124.07019806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01474523 124.07019806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01474524 124.07022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01474525 124.07022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01474526 124.07024384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01474527 124.07024384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01474528 124.07027435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01474529 124.07028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01474530 124.07031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01474531 124.07031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01474532 124.07033539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01474533 124.07033539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01474534 124.07035828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01474535 124.07035828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01474536 124.07039642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01474537 124.07039642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01474538 124.07042694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01474539 124.07042694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01474540 124.07044983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01474541 124.07044983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01474542 124.07048035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01474543 124.07048035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01474544 124.07050323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01474545 124.07051849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01474546 124.07054138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01474547 124.07054138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01474548 124.07056427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01474549 124.07056427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01474550 124.07059479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01474551 124.07059479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01474552 124.07061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01474553 124.07061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01474554 124.07064056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01474555 124.07065582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01474556 124.07067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01474557 124.07067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01474558 124.07070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01474559 124.07070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01474560 124.07073212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01474561 124.07073212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01474562 124.07075500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01474563 124.07075500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01474564 124.07078552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01474565 124.07078552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01474566 124.07080841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01474567 124.07082367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01474568 124.07084656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01474569 124.07084656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01474570 124.07087708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01474571 124.07087708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01474572 124.07089996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01474573 124.07089996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01474574 124.07092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01474575 124.07092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01474576 124.07096100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01474577 124.07096100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01474578 124.07099152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01474579 124.07099152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01474580 124.07101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01474581 124.07101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01474582 124.07103729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01474583 124.07103729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01474584 124.07106781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01474585 124.07106781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01474586 124.07109070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01474587 124.07109070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01474588 124.07111359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01474589 124.07112885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01474590 124.07115173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01474591 124.07115173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01474592 124.07118225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01474593 124.07118225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01474594 124.07120514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01474595 124.07120514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01474596 124.07123566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01474597 124.07123566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01474598 124.07125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01474599 124.07127380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01474600 124.07129669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01474601 124.07129669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01474602 124.07131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01474603 124.07131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01474604 124.07135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01474605 124.07135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01474606 124.07137299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01474607 124.07137299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01474608 124.07141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01474609 124.07141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01474610 124.07143402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01474611 124.07143402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01474612 124.07146454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01474613 124.07146454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01474614 124.07148743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01474615 124.07148743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01474616 124.07151031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01474617 124.07152557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01474618 124.07154846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01474619 124.07154846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01474620 124.07157898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01474621 124.07157898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01474622 124.07160187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01474623 124.07160187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01474624 124.07163239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01474625 124.07163239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01474626 124.07165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01474627 124.07165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01474628 124.07167816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01474629 124.07167816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01474630 124.07170868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01474631 124.07171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01474632 124.07173157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01474633 124.07174683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01474634 124.07176971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01474635 124.07176971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01474636 124.07179260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01474637 124.07179260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01474638 124.07182312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01474639 124.07182312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01474640 124.07184601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01474641 124.07184601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01474642 124.07186890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01474643 124.07188416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01474644 124.07190704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01474645 124.07190704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01474646 124.07193756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01474647 124.07193756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01474648 124.07196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01474649 124.07196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01474650 124.07199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01474651 124.07199860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01474652 124.07201385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01474653 124.07202911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01474654 124.07205200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01474655 124.07205200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01474656 124.07207489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01474657 124.07207489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01474658 124.07210541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01474659 124.07210541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01474660 124.07212830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01474661 124.07214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01474662 124.07216644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01474663 124.07216644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01474664 124.07218933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01474665 124.07218933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01474666 124.07221985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01474667 124.07221985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01474668 124.07224274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01474669 124.07224274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01474670 124.07226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01474671 124.07226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01474672 124.07229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01474673 124.07230377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01474674 124.07231903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01474675 124.07233429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01474676 124.07235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01474677 124.07235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01474678 124.07238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01474679 124.07238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01474680 124.07241058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01474681 124.07241058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01474682 124.07243347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01474683 124.07243347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01474684 124.07246399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01474685 124.07247162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01474686 124.07250214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01474687 124.07250214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01474688 124.07252502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01474689 124.07252502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01474690 124.07254791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01474691 124.07254791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01474692 124.07257843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01474693 124.07258606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01474694 124.07260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01474695 124.07261658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01474696 124.07263947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01474697 124.07263947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01474698 124.07266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01474699 124.07266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01474700 124.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01474701 124.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01474702 124.07271576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01474703 124.07271576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01474704 124.07273865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01474705 124.07275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01474706 124.07278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01474707 124.07278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01474708 124.07280731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01474709 124.07280731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01474710 124.07283020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01474711 124.07283020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01474712 124.07286072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01474713 124.07286072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01474714 124.07288361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01474715 124.07289886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01474716 124.07292175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01474717 124.07292175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01474718 124.07294464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01474719 124.07294464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01474720 124.07297516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01474721 124.07297516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01474722 124.07299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01474723 124.07299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01474724 124.07302094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01474725 124.07303619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01474726 124.07305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01474727 124.07305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01474728 124.07308960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01474729 124.07308960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01474730 124.07311249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01474731 124.07311249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01474732 124.07314301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01474733 124.07314301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01474734 124.07316589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01474735 124.07318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01474736 124.07320404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01474737 124.07320404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01474738 124.07322693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01474739 124.07322693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01474740 124.07325745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01474741 124.07325745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01474742 124.07328033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01474743 124.07328033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01474744 124.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01474745 124.07331848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01474746 124.07334137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01474747 124.07334137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01474748 124.07337189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01474749 124.07337189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01474750 124.07339478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01474751 124.07339478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01474752 124.07341766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01474753 124.07341766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01474754 124.07344818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01474755 124.07345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01474756 124.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01474757 124.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01474758 124.07350922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01474759 124.07350922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01474760 124.07353973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01474761 124.07353973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01474762 124.07356262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01474763 124.07356262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01474764 124.07358551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01474765 124.07360077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01474766 124.07362366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01474767 124.07362366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01474768 124.07365417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01474769 124.07365417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01474770 124.07367706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01474771 124.07367706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01474772 124.07369995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01474773 124.07369995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01474774 124.07373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01474775 124.07373810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01474776 124.07375336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01474777 124.07376862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01474778 124.07379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01474779 124.07379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01474780 124.07381439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01474781 124.07381439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01474782 124.07384491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01474783 124.07384491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01474784 124.07386780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01474785 124.07386780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01474786 124.07389069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01474787 124.07389069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01474788 124.07392120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01474789 124.07392120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01474790 124.07394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01474791 124.07395935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01474792 124.07398224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01474793 124.07398224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01474794 124.07401276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01474795 124.07401276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01474796 124.07403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01474797 124.07403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01474798 124.07405853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01474799 124.07405853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01474800 124.07408905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01474801 124.07409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01474802 124.07412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01474803 124.07412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01474804 124.07415009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01474805 124.07415009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01474806 124.07417297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01474807 124.07417297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01474808 124.07420349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01474809 124.07420349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01474810 124.07422638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01474811 124.07424164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01474812 124.07426453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01474813 124.07426453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01474814 124.07428741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01474815 124.07428741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01474816 124.07431793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01474817 124.07431793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01474818 124.07434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01474819 124.07434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01474820 124.07437897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01474821 124.07437897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01474822 124.07440948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01474823 124.07440948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01474824 124.07443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01474825 124.07443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01474826 124.07445526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01474827 124.07445526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01474828 124.07448578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01474829 124.07448578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01474830 124.07450867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01474831 124.07450867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01474832 124.07453156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01474833 124.07453156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01474834 124.07456970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01474835 124.07456970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01474836 124.07460022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01474837 124.07460022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01474838 124.07462311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01474839 124.07462311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01474840 124.07464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01474841 124.07464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01474842 124.07467651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01474843 124.07467651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01474844 124.07469940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01474845 124.07471466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01474846 124.07473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01474847 124.07473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01474848 124.07476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01474849 124.07476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01474850 124.07479095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01474851 124.07479095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01474852 124.07481384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01474853 124.07482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01474854 124.07485199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01474855 124.07485199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01474856 124.07488251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01474857 124.07488251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01474858 124.07490540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01474859 124.07490540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01474860 124.07492828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01474861 124.07492828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01474862 124.07495880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01474863 124.07496643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01474864 124.07499695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01474865 124.07499695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01474866 124.07501984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01474867 124.07501984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01474868 124.07504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01474869 124.07504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01474870 124.07507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01474871 124.07507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01474872 124.07509613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01474873 124.07511139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01474874 124.07513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01474875 124.07513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01474876 124.07516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01474877 124.07516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01474878 124.07518768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01474879 124.07518768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01474880 124.07521057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01474881 124.07521057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01474882 124.07524109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01474883 124.07524872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01474884 124.07527924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01474885 124.07527924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01474886 124.07530212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01474887 124.07530212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01474888 124.07532501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01474889 124.07532501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01474890 124.07535553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01474891 124.07535553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01474892 124.07537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01474893 124.07539368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01474894 124.07541656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01474895 124.07541656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01474896 124.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01474897 124.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01474898 124.07546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01474899 124.07546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01474900 124.07549286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01474901 124.07549286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01474902 124.07552338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01474903 124.07552338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01474904 124.07554626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01474905 124.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01474906 124.07558441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01474907 124.07558441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01474908 124.07560730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01474909 124.07560730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01474910 124.07563782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01474911 124.07564545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01474912 124.07567596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01474913 124.07567596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01474914 124.07569885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01474915 124.07569885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01474916 124.07572174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01474917 124.07572174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01474918 124.07575226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01474919 124.07575226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01474920 124.07577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01474921 124.07579041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01474922 124.07581329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01474923 124.07581329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01474924 124.07584381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01474925 124.07584381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01474926 124.07586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01474927 124.07586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01474928 124.07588959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01474929 124.07590485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01474930 124.07592010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01474931 124.07592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01474932 124.07595825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01474933 124.07595825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01474934 124.07598114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01474935 124.07598114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01474936 124.07600403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01474937 124.07600403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01474938 124.07603455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01474939 124.07603455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01474940 124.07605743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01474941 124.07605743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01474942 124.07608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01474943 124.07609558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01474944 124.07611847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01474945 124.07611847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01474946 124.07614899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01474947 124.07614899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01474948 124.07617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01474949 124.07617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01474950 124.07619476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01474951 124.07619476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01474952 124.07622528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01474953 124.07622528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01474954 124.07626343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01474955 124.07626343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01474956 124.07628632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01474957 124.07628632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01474958 124.07631683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01474959 124.07631683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01474960 124.07633972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01474961 124.07635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01474962 124.07637787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01474963 124.07637787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01474964 124.07640076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01474965 124.07640076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01474966 124.07643127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01474967 124.07643127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01474968 124.07645416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01474969 124.07645416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01474970 124.07647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01474971 124.07649231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01474972 124.07651520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01474973 124.07651520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01474974 124.07654572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01474975 124.07654572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01474976 124.07656860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01474977 124.07656860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01474978 124.07659149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01474979 124.07659149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01474980 124.07662201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01474981 124.07662201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01474982 124.07664490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01474983 124.07664490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01474984 124.07668304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01474985 124.07668304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01474986 124.07671356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01474987 124.07671356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01474988 124.07673645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01474989 124.07673645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01474990 124.07675934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01474991 124.07675934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01474992 124.07678986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01474993 124.07679749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01474994 124.07682800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01474995 124.07682800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01474996 124.07685089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01474997 124.07685089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01474998 124.07687378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01474999 124.07687378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01475000 124.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01475001 124.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01475002 124.07694244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01475003 124.07694244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01475004 124.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01475005 124.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01475006 124.07698822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01475007 124.07698822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01475008 124.07701874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01475009 124.07701874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01475010 124.07704163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01475011 124.07704163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01475012 124.07707214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01475013 124.07707977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01475014 124.07711029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01475015 124.07711029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01475016 124.07713318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01475017 124.07713318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01475018 124.07715607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01475019 124.07715607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01475020 124.07719421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01475021 124.07719421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01475022 124.07722473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01475023 124.07722473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01475024 124.07724762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01475025 124.07724762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01475026 124.07727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01475027 124.07727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01475028 124.07730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01475029 124.07730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01475030 124.07732391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01475031 124.07732391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01475032 124.07734680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01475033 124.07736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01475034 124.07739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01475035 124.07739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01475036 124.07741547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01475037 124.07741547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01475038 124.07743835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01475039 124.07743835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01475040 124.07746887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01475041 124.07746887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01475042 124.07749176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01475043 124.07750702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01475044 124.07752991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01475045 124.07752991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01475046 124.07755280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01475047 124.07755280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01475048 124.07758331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01475049 124.07758331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01475050 124.07760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01475051 124.07760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01475052 124.07762909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01475053 124.07764435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01475054 124.07766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01475055 124.07766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01475056 124.07769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01475057 124.07769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01475058 124.07772064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01475059 124.07772064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01475060 124.07774353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01475061 124.07775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01475062 124.07777405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01475063 124.07778931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01475064 124.07781219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01475065 124.07781219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01475066 124.07783508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01475067 124.07783508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01475068 124.07786560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01475069 124.07786560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01475070 124.07788849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01475071 124.07788849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01475072 124.07791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01475073 124.07791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01475074 124.07798004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01475075 124.07798004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01475076 124.07800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01475077 124.07801819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01475078 124.07802582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01475079 124.07804108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01475080 124.07806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01475081 124.07806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01475082 124.07809448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01475083 124.07809448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01475084 124.07811737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01475085 124.07811737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01475086 124.07814026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01475087 124.07814026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01475088 124.07817078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01475089 124.07817078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01475090 124.07819366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01475091 124.07819366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01475092 124.07822418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01475093 124.07822418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01475094 124.07824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01475095 124.07824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01475096 124.07828522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01475097 124.07828522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01475098 124.07830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01475099 124.07830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01475100 124.07833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01475101 124.07833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01475102 124.07836151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01475103 124.07836151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01475104 124.07838440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01475105 124.07838440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01475106 124.07842255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01475107 124.07842255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01475108 124.07845306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01475109 124.07845306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01475110 124.07847595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01475111 124.07847595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01475112 124.07849884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01475113 124.07849884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01475114 124.07852936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01475115 124.07853699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01475116 124.07855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01475117 124.07856750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01475118 124.07859039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01475119 124.07859039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01475120 124.07862091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01475121 124.07862091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01475122 124.07864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01475123 124.07864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01475124 124.07866669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01475125 124.07866669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01475126 124.07869720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01475127 124.07869720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01475128 124.07872009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01475129 124.07873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01475130 124.07875824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01475131 124.07875824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01475132 124.07878113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01475133 124.07878113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01475134 124.07881165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01475135 124.07881165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01475136 124.07883453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01475137 124.07884979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01475138 124.07887268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01475139 124.07887268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01475140 124.07889557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01475141 124.07889557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01475142 124.07892609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01475143 124.07892609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01475144 124.07894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01475145 124.07894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01475146 124.07897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01475147 124.07897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01475148 124.07900238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01475149 124.07900238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01475150 124.07902527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01475151 124.07902527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01475152 124.07905579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01475153 124.07906342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01475154 124.07909393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01475155 124.07909393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01475156 124.07911682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01475157 124.07911682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01475158 124.07913971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01475159 124.07913971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01475160 124.07917023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01475161 124.07917023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01475162 124.07919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01475163 124.07920837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01475164 124.07923126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01475165 124.07923126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01475166 124.07925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01475167 124.07925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01475168 124.07928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01475169 124.07928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01475170 124.07930756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01475171 124.07930756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01475172 124.07933807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01475173 124.07933807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01475174 124.07936096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01475175 124.07937622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01475176 124.07939911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01475177 124.07939911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01475178 124.07942200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01475179 124.07942200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01475180 124.07945251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01475181 124.07946014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01475182 124.07949066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01475183 124.07949066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01475184 124.07951355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01475185 124.07951355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01475186 124.07953644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01475187 124.07953644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01475188 124.07956696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01475189 124.07956696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01475190 124.07958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01475191 124.07958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01475192 124.07961273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01475193 124.07961273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01475194 124.07964325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01475195 124.07965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01475196 124.07966614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01475197 124.07968140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01475198 124.07970428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01475199 124.07970428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01475200 124.07973480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01475201 124.07973480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01475202 124.07975769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01475203 124.07975769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01475204 124.07978058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01475205 124.07978058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01475206 124.07981873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01475207 124.07981873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01475208 124.07987213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01475209 124.07987213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01475210 124.07989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01475211 124.07989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01475212 124.07993317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01475213 124.07993317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01475214 124.07996368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01475215 124.07996368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01475216 124.07998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01475217 124.07998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01475218 124.08000946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01475219 124.08000946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01475220 124.08003998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01475221 124.08003998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01475222 124.08006287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01475223 124.08006287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01475224 124.08009338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01475225 124.08009338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01475226 124.08011627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01475227 124.08011627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01475228 124.08013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01475229 124.08015442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01475230 124.08017731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01475231 124.08017731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01475232 124.08021545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01475233 124.08021545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01475234 124.08026886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01475235 124.08026886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01475236 124.08029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01475237 124.08029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01475238 124.08032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01475239 124.08032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01475240 124.08034515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01475241 124.08034515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01475242 124.08036804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01475243 124.08038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01475244 124.08040619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01475245 124.08040619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01475246 124.08043671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01475247 124.08043671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01475248 124.08045959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01475249 124.08045959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01475250 124.08049011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01475251 124.08049011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01475252 124.08051300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01475253 124.08052826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01475254 124.08053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01475255 124.08055115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01475256 124.08057404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01475257 124.08057404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01475258 124.08060455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01475259 124.08060455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01475260 124.08062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01475261 124.08062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01475262 124.08065033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01475263 124.08065033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01475264 124.08068085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01475265 124.08068085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01475266 124.08070374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01475267 124.08070374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01475268 124.08072662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01475269 124.08072662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01475270 124.08075714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01475271 124.08075714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01475272 124.08079529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01475273 124.08079529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01475274 124.08081818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01475275 124.08081818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01475276 124.08084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01475277 124.08084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01475278 124.08087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01475279 124.08088684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01475280 124.08089447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01475281 124.08090973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01475282 124.08093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01475283 124.08093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01475284 124.08096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01475285 124.08096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01475286 124.08098602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01475287 124.08098602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01475288 124.08100891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01475289 124.08100891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01475290 124.08103943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01475291 124.08103943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01475292 124.08106232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01475293 124.08106232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01475294 124.08108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01475295 124.08108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01475296 124.08111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01475297 124.08111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01475298 124.08113861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01475299 124.08113861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01475300 124.08116150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01475301 124.08116150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01475302 124.08119202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01475303 124.08119965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01475304 124.08121490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01475305 124.08123016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01475306 124.08125305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01475307 124.08125305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01475308 124.08128357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01475309 124.08128357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01475310 124.08130646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01475311 124.08130646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01475312 124.08132935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01475313 124.08132935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01475314 124.08135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01475315 124.08135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01475316 124.08138275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01475317 124.08138275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01475318 124.08140564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01475319 124.08140564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01475320 124.08143616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01475321 124.08143616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01475322 124.08145905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01475323 124.08145905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01475324 124.08148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01475325 124.08149719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01475326 124.08151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01475327 124.08152008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01475328 124.08155060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01475329 124.08155060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01475330 124.08157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01475331 124.08157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01475332 124.08159637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01475333 124.08159637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01475334 124.08162689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01475335 124.08162689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01475336 124.08164978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01475337 124.08164978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01475338 124.08168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01475339 124.08168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01475340 124.08170319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01475341 124.08171844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01475342 124.08174133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01475343 124.08174133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01475344 124.08176422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01475345 124.08176422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01475346 124.08179474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01475347 124.08179474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01475348 124.08181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01475349 124.08181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01475350 124.08185577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01475351 124.08185577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01475352 124.08187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01475353 124.08187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01475354 124.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01475355 124.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01475356 124.08193207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01475357 124.08193207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01475358 124.08195496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01475359 124.08195496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01475360 124.08198547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01475361 124.08198547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01475362 124.08200836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01475363 124.08202362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01475364 124.08204651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01475365 124.08204651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01475366 124.08207703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01475367 124.08207703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01475368 124.08212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01475369 124.08212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01475370 124.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01475371 124.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01475372 124.08217621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01475373 124.08217621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01475374 124.08219910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01475375 124.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01475376 124.08222961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01475377 124.08223724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01475378 124.08226776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01475379 124.08226776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01475380 124.08229065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01475381 124.08229065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01475382 124.08231354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01475383 124.08231354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01475384 124.08234406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01475385 124.08234406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01475386 124.08236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01475387 124.08236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01475388 124.08238983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01475389 124.08238983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01475390 124.08242035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01475391 124.08242035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01475392 124.08244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01475393 124.08244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01475394 124.08247375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01475395 124.08247375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01475396 124.08249664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01475397 124.08251190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01475398 124.08251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01475399 124.08253479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01475400 124.08255768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01475401 124.08255768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01475402 124.08258820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01475403 124.08258820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01475404 124.08261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01475405 124.08261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01475406 124.08263397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01475407 124.08263397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01475408 124.08267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01475409 124.08267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01475410 124.08270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01475411 124.08270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01475412 124.08272552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01475413 124.08272552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01475414 124.08274841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01475415 124.08274841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01475416 124.08277893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01475417 124.08277893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01475418 124.08280182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01475419 124.08280182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01475420 124.08283234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01475421 124.08283234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01475422 124.08285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01475423 124.08285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01475424 124.08287811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01475425 124.08287811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01475426 124.08290863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01475427 124.08291626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01475428 124.08293152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01475429 124.08294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01475430 124.08296967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01475431 124.08296967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01475432 124.08299255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01475433 124.08299255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01475434 124.08302307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01475435 124.08302307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01475436 124.08304596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01475437 124.08306122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01475438 124.08308411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01475439 124.08308411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01475440 124.08310699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01475441 124.08310699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01475442 124.08313751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01475443 124.08313751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01475444 124.08316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01475445 124.08316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01475446 124.08319855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01475447 124.08319855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01475448 124.08322906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01475449 124.08322906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01475450 124.08325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01475451 124.08325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01475452 124.08327484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01475453 124.08327484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01475454 124.08330536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01475455 124.08330536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01475456 124.08332825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01475457 124.08332825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01475458 124.08335114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01475459 124.08335114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01475460 124.08338165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01475461 124.08338165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01475462 124.08340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01475463 124.08340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01475464 124.08342743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01475465 124.08344269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01475466 124.08345795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01475467 124.08346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01475468 124.08349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01475469 124.08349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01475470 124.08351898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01475471 124.08351898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01475472 124.08354187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01475473 124.08354187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01475474 124.08357239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01475475 124.08357239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01475476 124.08359528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01475477 124.08359528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01475478 124.08362579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01475479 124.08362579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01475480 124.08364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01475481 124.08364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01475482 124.08367157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01475483 124.08367157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01475484 124.08370209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01475485 124.08370209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01475486 124.08372498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01475487 124.08374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01475488 124.08374786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01475489 124.08376312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01475490 124.08378601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01475491 124.08378601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01475492 124.08381653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01475493 124.08381653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01475494 124.08383942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01475495 124.08383942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01475496 124.08386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01475497 124.08386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01475498 124.08389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01475499 124.08389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01475500 124.08391571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01475501 124.08391571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01475502 124.08393860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01475503 124.08393860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01475504 124.08396912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01475505 124.08396912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01475506 124.08399200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01475507 124.08399200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01475508 124.08402252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01475509 124.08403015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01475510 124.08404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01475511 124.08406067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01475512 124.08408356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01475513 124.08408356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01475514 124.08410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01475515 124.08410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01475516 124.08413696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01475517 124.08413696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01475518 124.08415985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01475519 124.08415985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01475520 124.08418274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01475521 124.08418274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01475522 124.08421326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01475523 124.08421326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01475524 124.08423615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01475525 124.08423615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01475526 124.08425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01475527 124.08425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01475528 124.08428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01475529 124.08428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01475530 124.08431244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01475531 124.08432770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01475532 124.08435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01475533 124.08435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01475534 124.08438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01475535 124.08438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01475536 124.08440399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01475537 124.08440399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01475538 124.08442688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01475539 124.08444214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01475540 124.08446503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01475541 124.08446503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01475542 124.08449554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01475543 124.08449554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01475544 124.08451843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01475545 124.08451843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01475546 124.08454132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01475547 124.08454132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01475548 124.08457184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01475549 124.08457947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01475550 124.08460999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01475551 124.08460999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01475552 124.08463287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01475553 124.08463287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01475554 124.08465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01475555 124.08465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01475556 124.08468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01475557 124.08468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01475558 124.08470917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01475559 124.08472443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01475560 124.08474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01475561 124.08474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01475562 124.08477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01475563 124.08477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01475564 124.08480072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01475565 124.08480072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01475566 124.08482361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01475567 124.08482361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01475568 124.08485413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01475569 124.08486176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01475570 124.08487701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01475571 124.08489227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01475572 124.08491516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01475573 124.08491516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01475574 124.08493805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01475575 124.08493805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01475576 124.08496857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01475577 124.08497620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01475578 124.08500671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01475579 124.08500671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01475580 124.08502960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01475581 124.08502960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01475582 124.08505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01475583 124.08505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01475584 124.08508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01475585 124.08508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01475586 124.08510590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01475587 124.08512115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01475588 124.08514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01475589 124.08514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01475590 124.08517456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01475591 124.08517456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01475592 124.08521271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01475593 124.08521271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01475594 124.08523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01475595 124.08523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01475596 124.08525848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01475597 124.08525848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01475598 124.08528900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01475599 124.08528900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01475600 124.08531189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01475601 124.08531189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01475602 124.08533478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01475603 124.08533478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01475604 124.08536530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01475605 124.08536530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01475606 124.08538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01475607 124.08538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01475608 124.08541107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01475609 124.08541107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01475610 124.08544159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01475611 124.08544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01475612 124.08546448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01475613 124.08547974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01475614 124.08550262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01475615 124.08550262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01475616 124.08553314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01475617 124.08553314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01475618 124.08555603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01475619 124.08555603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01475620 124.08557892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01475621 124.08557892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01475622 124.08560944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01475623 124.08560944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01475624 124.08563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01475625 124.08563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01475626 124.08565521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01475627 124.08567047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01475628 124.08569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01475629 124.08569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01475630 124.08573151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01475631 124.08573151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01475632 124.08576202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01475633 124.08576965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01475634 124.08580017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01475635 124.08580017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01475636 124.08582306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01475637 124.08582306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01475638 124.08584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01475639 124.08584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01475640 124.08587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01475641 124.08589172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01475642 124.08589935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01475643 124.08591461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01475644 124.08593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01475645 124.08593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01475646 124.08596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01475647 124.08596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01475648 124.08599091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01475649 124.08599091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01475650 124.08601379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01475651 124.08601379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01475652 124.08604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01475653 124.08604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01475654 124.08606720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01475655 124.08608246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01475656 124.08610535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01475657 124.08610535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01475658 124.08614349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01475659 124.08614349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01475660 124.08618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01475661 124.08618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01475662 124.08620453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01475663 124.08620453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01475664 124.08623505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01475665 124.08623505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01475666 124.08625793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01475667 124.08625793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01475668 124.08628845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01475669 124.08629608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01475670 124.08631134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01475671 124.08632660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01475672 124.08634949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01475673 124.08634949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01475674 124.08637238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01475675 124.08637238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01475676 124.08640289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01475677 124.08640289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01475678 124.08642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01475679 124.08642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01475680 124.08644867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01475681 124.08644867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01475682 124.08647919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01475683 124.08647919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01475684 124.08650208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01475685 124.08650208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01475686 124.08652496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01475687 124.08652496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01475688 124.08655548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01475689 124.08655548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01475690 124.08657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01475691 124.08659363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01475692 124.08661652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01475693 124.08661652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01475694 124.08663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01475695 124.08663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01475696 124.08666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01475697 124.08668518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01475698 124.08669281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01475699 124.08670807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01475700 124.08673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01475701 124.08673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01475702 124.08676147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01475703 124.08676147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01475704 124.08678436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01475705 124.08678436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01475706 124.08680725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01475707 124.08680725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01475708 124.08683777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01475709 124.08683777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01475710 124.08686066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01475711 124.08686066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01475712 124.08688354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01475713 124.08689880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01475714 124.08692169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01475715 124.08692169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01475716 124.08695221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01475717 124.08695221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01475718 124.08697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01475719 124.08697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01475720 124.08699799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01475721 124.08701324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01475722 124.08704376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01475723 124.08704376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01475724 124.08706665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01475725 124.08706665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01475726 124.08708954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01475727 124.08708954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01475728 124.08712006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01475729 124.08712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01475730 124.08714294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01475731 124.08715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01475732 124.08718109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01475733 124.08718109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01475734 124.08720398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01475735 124.08720398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01475736 124.08723450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01475737 124.08723450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01475738 124.08725739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01475739 124.08725739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01475740 124.08728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01475741 124.08728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01475742 124.08731079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01475743 124.08731079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01475744 124.08733368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01475745 124.08733368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01475746 124.08735657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01475747 124.08735657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01475748 124.08738708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01475749 124.08738708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01475750 124.08740997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01475751 124.08742523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01475752 124.08744049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01475753 124.08744812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01475754 124.08746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01475755 124.08747864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01475756 124.08750153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01475757 124.08750153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01475758 124.08752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01475759 124.08752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01475760 124.08755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01475761 124.08755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01475762 124.08757782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01475763 124.08757782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01475764 124.08760071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01475765 124.08760071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01475766 124.08763123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01475767 124.08763123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01475768 124.08765411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01475769 124.08765411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01475770 124.08767700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01475771 124.08767700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01475772 124.08770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01475773 124.08771515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01475774 124.08773041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01475775 124.08774567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01475776 124.08776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01475777 124.08776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01475778 124.08779144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01475779 124.08779144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01475780 124.08782196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01475781 124.08782196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01475782 124.08784485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01475783 124.08784485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01475784 124.08787537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01475785 124.08787537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01475786 124.08789825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01475787 124.08789825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01475788 124.08792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01475789 124.08792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01475790 124.08795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01475791 124.08795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01475792 124.08797455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01475793 124.08797455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01475794 124.08799744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01475795 124.08799744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01475796 124.08802795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01475797 124.08803558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01475798 124.08805084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01475799 124.08806610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01475800 124.08808899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01475801 124.08808899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01475802 124.08811188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01475803 124.08811188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01475804 124.08814240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01475805 124.08814240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01475806 124.08816528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01475807 124.08816528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01475808 124.08819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01475809 124.08819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01475810 124.08821869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01475811 124.08821869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01475812 124.08824158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01475813 124.08824158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01475814 124.08827209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01475815 124.08827209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01475816 124.08829498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01475817 124.08829498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01475818 124.08831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01475819 124.08833313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01475820 124.08834839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01475821 124.08835602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01475822 124.08838654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01475823 124.08838654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01475824 124.08840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01475825 124.08840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01475826 124.08843231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01475827 124.08843231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01475828 124.08846283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01475829 124.08846283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01475830 124.08848572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01475831 124.08848572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01475832 124.08850861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01475833 124.08850861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01475834 124.08853912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01475835 124.08853912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01475836 124.08856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01475837 124.08856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01475838 124.08859253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01475839 124.08859253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01475840 124.08863068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01475841 124.08863068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01475842 124.08865356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01475843 124.08865356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01475844 124.08867645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01475845 124.08867645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01475846 124.08870697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01475847 124.08871460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01475848 124.08874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01475849 124.08874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01475850 124.08876801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01475851 124.08876801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01475852 124.08879089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01475853 124.08879089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01475854 124.08882141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01475855 124.08882141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01475856 124.08884430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01475857 124.08884430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01475858 124.08886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01475859 124.08886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01475860 124.08889771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01475861 124.08889771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01475862 124.08892059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01475863 124.08892059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01475864 124.08894348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01475865 124.08894348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01475866 124.08897400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01475867 124.08898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01475868 124.08899689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01475869 124.08901215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01475870 124.08903503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01475871 124.08903503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01475872 124.08906555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01475873 124.08906555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01475874 124.08908844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01475875 124.08908844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01475876 124.08911133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01475877 124.08912659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01475878 124.08914948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01475879 124.08914948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01475880 124.08917999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01475881 124.08917999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01475882 124.08920288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01475883 124.08920288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01475884 124.08922577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01475885 124.08922577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01475886 124.08925629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01475887 124.08925629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01475888 124.08927917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01475889 124.08929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01475890 124.08930206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01475891 124.08931732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01475892 124.08934021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01475893 124.08934021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01475894 124.08937073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01475895 124.08937073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01475896 124.08939362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01475897 124.08939362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01475898 124.08942413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01475899 124.08942413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01475900 124.08944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01475901 124.08944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01475902 124.08946991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01475903 124.08946991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01475904 124.08950043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01475905 124.08950043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01475906 124.08952332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01475907 124.08952332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01475908 124.08954620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01475909 124.08954620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01475910 124.08957672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01475911 124.08958435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01475912 124.08959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01475913 124.08961487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01475914 124.08963776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01475915 124.08963776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01475916 124.08966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01475917 124.08967590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01475918 124.08971405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01475919 124.08971405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01475920 124.08974457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01475921 124.08974457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01475922 124.08976746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01475923 124.08976746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01475924 124.08979034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01475925 124.08980560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01475926 124.08982849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01475927 124.08982849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01475928 124.08985901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01475929 124.08985901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01475930 124.08988190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01475931 124.08988190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01475932 124.08990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01475933 124.08990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01475934 124.08993530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01475935 124.08993530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01475936 124.08995819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01475937 124.08997345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01475938 124.08999634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01475939 124.08999634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01475940 124.09001923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01475941 124.09003448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01475942 124.09005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01475943 124.09005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01475944 124.09008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01475945 124.09008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01475946 124.09012604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01475947 124.09012604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01475948 124.09016418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01475949 124.09016418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01475950 124.09018707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01475951 124.09018707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01475952 124.09021759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01475953 124.09021759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01475954 124.09024048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01475955 124.09025574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01475956 124.09027863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01475957 124.09027863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01475958 124.09030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01475959 124.09030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01475960 124.09033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01475961 124.09033966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01475962 124.09037018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01475963 124.09037018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01475964 124.09039307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01475965 124.09039307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01475966 124.09041595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01475967 124.09041595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01475968 124.09044647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01475969 124.09044647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01475970 124.09046936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01475971 124.09046936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01475972 124.09049225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01475973 124.09049225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01475974 124.09052277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01475975 124.09052277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01475976 124.09054565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01475977 124.09054565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01475978 124.09057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01475979 124.09057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01475980 124.09059906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01475981 124.09061432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01475982 124.09062195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01475983 124.09063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01475984 124.09066010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01475985 124.09066010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01475986 124.09069061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01475987 124.09069061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01475988 124.09071350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01475989 124.09072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01475990 124.09073639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01475991 124.09075165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01475992 124.09077454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01475993 124.09077454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01475994 124.09080505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01475995 124.09080505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01475996 124.09082794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01475997 124.09082794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01475998 124.09085083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01475999 124.09085083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01476000 124.09088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01476001 124.09088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01476002 124.09091949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01476003 124.09091949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01476004 124.09097290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01476005 124.09097290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01476006 124.09099579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01476007 124.09099579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01476008 124.09101868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01476009 124.09101868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01476010 124.09104919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01476011 124.09104919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01476012 124.09107208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01476013 124.09108734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01476014 124.09111023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01476015 124.09111023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01476016 124.09113312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01476017 124.09113312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01476018 124.09116364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01476019 124.09116364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01476020 124.09118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01476021 124.09118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01476022 124.09120941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01476023 124.09120941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01476024 124.09123993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01476025 124.09124756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01476026 124.09126282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01476027 124.09127808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01476028 124.09130096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01476029 124.09130096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01476030 124.09133148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01476031 124.09133148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01476032 124.09135437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01476033 124.09135437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01476034 124.09137726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01476035 124.09139252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01476036 124.09141541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01476037 124.09141541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01476038 124.09144592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01476039 124.09144592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01476040 124.09146881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01476041 124.09146881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01476042 124.09149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01476043 124.09149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01476044 124.09152222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01476045 124.09152222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01476046 124.09156036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01476047 124.09156036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01476048 124.09158325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01476049 124.09158325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01476050 124.09160614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01476051 124.09160614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01476052 124.09164429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01476053 124.09164429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01476054 124.09167480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01476055 124.09167480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01476056 124.09169769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01476057 124.09169769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01476058 124.09172821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01476059 124.09172821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01476060 124.09175110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01476061 124.09175110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01476062 124.09177399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01476063 124.09177399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01476064 124.09180450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01476065 124.09180450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01476066 124.09182739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01476067 124.09182739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01476068 124.09185028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01476069 124.09186554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01476070 124.09188080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01476071 124.09188843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01476072 124.09190369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01476073 124.09191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01476074 124.09194183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01476075 124.09194183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01476076 124.09196472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01476077 124.09196472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01476078 124.09199524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01476079 124.09199524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01476080 124.09201813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01476081 124.09201813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01476082 124.09204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01476083 124.09204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01476084 124.09207153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01476085 124.09207153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01476086 124.09209442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01476087 124.09209442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01476088 124.09212494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01476089 124.09212494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01476090 124.09214783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01476091 124.09214783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01476092 124.09217072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01476093 124.09218597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01476094 124.09220123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01476095 124.09220886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01476096 124.09223938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01476097 124.09223938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01476098 124.09226227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01476099 124.09226227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01476100 124.09228516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01476101 124.09228516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01476102 124.09231567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01476103 124.09231567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01476104 124.09233856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01476105 124.09233856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01476106 124.09236145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01476107 124.09236145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01476108 124.09239197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01476109 124.09239197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01476110 124.09249115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01476111 124.09249115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01476112 124.09252167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01476113 124.09252167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01476114 124.09254456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01476115 124.09254456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01476116 124.09256744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01476117 124.09258270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01476118 124.09260559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01476119 124.09260559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01476120 124.09263611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01476121 124.09263611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01476122 124.09265900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01476123 124.09265900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01476124 124.09268188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01476125 124.09268188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01476126 124.09271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01476127 124.09271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01476128 124.09273529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01476129 124.09273529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01476130 124.09275818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01476131 124.09275818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01476132 124.09278870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01476133 124.09278870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01476134 124.09281158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01476135 124.09281158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01476136 124.09284210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01476137 124.09284973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01476138 124.09286499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01476139 124.09288025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01476140 124.09288788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01476141 124.09290314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01476142 124.09292603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01476143 124.09292603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01476144 124.09295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01476145 124.09295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01476146 124.09297943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01476147 124.09297943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01476148 124.09300232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01476149 124.09300232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01476150 124.09303284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01476151 124.09303284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01476152 124.09305573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01476153 124.09305573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01476154 124.09307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01476155 124.09307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01476156 124.09310913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01476157 124.09310913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01476158 124.09313202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01476159 124.09313202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01476160 124.09315491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01476161 124.09317017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01476162 124.09318542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01476163 124.09319305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01476164 124.09322357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01476165 124.09322357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01476166 124.09324646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01476167 124.09324646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01476168 124.09327698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01476169 124.09327698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01476170 124.09329987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01476171 124.09329987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01476172 124.09332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01476173 124.09332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01476174 124.09335327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01476175 124.09335327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01476176 124.09337616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01476177 124.09337616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01476178 124.09339905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01476179 124.09339905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01476180 124.09342957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01476181 124.09342957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01476182 124.09345245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01476183 124.09345245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01476184 124.09347534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01476185 124.09349060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01476186 124.09350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01476187 124.09351349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01476188 124.09352875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01476189 124.09354401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01476190 124.09356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01476191 124.09356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01476192 124.09359741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01476193 124.09359741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01476194 124.09362030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01476195 124.09362030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01476196 124.09365845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01476197 124.09365845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01476198 124.09368134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01476199 124.09368134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01476200 124.09371185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01476201 124.09371185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01476202 124.09373474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01476203 124.09373474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01476204 124.09375763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01476205 124.09375763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01476206 124.09378815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01476207 124.09378815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01476208 124.09381104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01476209 124.09381104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01476210 124.09383392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01476211 124.09383392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01476212 124.09386444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01476213 124.09386444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01476214 124.09388733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01476215 124.09390259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01476216 124.09391022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01476217 124.09392548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01476218 124.09394836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01476219 124.09394836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01476220 124.09397888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01476221 124.09397888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01476222 124.09400177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01476223 124.09400177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01476224 124.09403229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01476225 124.09403229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01476226 124.09405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01476227 124.09405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01476228 124.09407806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01476229 124.09407806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01476230 124.09410858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01476231 124.09410858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01476232 124.09413147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01476233 124.09413147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01476234 124.09415436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01476235 124.09415436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01476236 124.09418488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01476237 124.09418488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01476238 124.09420776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01476239 124.09422302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01476240 124.09423065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01476241 124.09424591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01476242 124.09426880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01476243 124.09426880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01476244 124.09429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01476245 124.09429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01476246 124.09432220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01476247 124.09432220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01476248 124.09434509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01476249 124.09434509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01476250 124.09437561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01476251 124.09437561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01476252 124.09439850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01476253 124.09439850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01476254 124.09442902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01476255 124.09442902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01476256 124.09445190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01476257 124.09445190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01476258 124.09447479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01476259 124.09447479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01476260 124.09450531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01476261 124.09450531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01476262 124.09452820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01476263 124.09454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01476264 124.09455109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01476265 124.09456635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01476266 124.09458923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01476267 124.09458923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01476268 124.09461975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01476269 124.09461975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01476270 124.09464264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01476271 124.09464264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01476272 124.09468079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01476273 124.09468079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01476274 124.09470367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01476275 124.09470367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01476276 124.09473419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01476277 124.09473419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01476278 124.09475708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01476279 124.09475708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01476280 124.09478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01476281 124.09479523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01476282 124.09482574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01476283 124.09482574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01476284 124.09484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01476285 124.09484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01476286 124.09487152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01476287 124.09487152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01476288 124.09490204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01476289 124.09490204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01476290 124.09492493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01476291 124.09494019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01476292 124.09494781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01476293 124.09496307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01476294 124.09498596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01476295 124.09498596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01476296 124.09501648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01476297 124.09501648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01476298 124.09503937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01476299 124.09503937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01476300 124.09506226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01476301 124.09506226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01476302 124.09509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01476303 124.09509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01476304 124.09511566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01476305 124.09511566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01476306 124.09514618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01476307 124.09514618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01476308 124.09516907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01476309 124.09516907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01476310 124.09519196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01476311 124.09519196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01476312 124.09522247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01476313 124.09522247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01476314 124.09524536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01476315 124.09526062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01476316 124.09526825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01476317 124.09528351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01476318 124.09530640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01476319 124.09530640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01476320 124.09533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01476321 124.09533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01476322 124.09535980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01476323 124.09535980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01476324 124.09538269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01476325 124.09538269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01476326 124.09541321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01476327 124.09541321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01476328 124.09543610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01476329 124.09543610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01476330 124.09545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01476331 124.09545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01476332 124.09548950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01476333 124.09548950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01476334 124.09551239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01476335 124.09551239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01476336 124.09554291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01476337 124.09555054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01476338 124.09556580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01476339 124.09558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01476340 124.09560394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01476341 124.09560394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01476342 124.09562683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01476343 124.09562683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01476344 124.09565735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01476345 124.09565735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01476346 124.09568024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01476347 124.09568024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01476348 124.09570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01476349 124.09570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01476350 124.09573364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01476351 124.09573364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01476352 124.09575653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01476353 124.09575653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01476354 124.09577942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01476355 124.09577942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01476356 124.09580994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01476357 124.09580994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01476358 124.09583282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01476359 124.09584808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01476360 124.09585571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01476361 124.09587097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01476362 124.09588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01476363 124.09589386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01476364 124.09592438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01476365 124.09592438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01476366 124.09594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01476367 124.09594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01476368 124.09597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01476369 124.09597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01476370 124.09600067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01476371 124.09600067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01476372 124.09602356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01476373 124.09602356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01476374 124.09605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01476375 124.09605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01476376 124.09607697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01476377 124.09607697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01476378 124.09609985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01476379 124.09609985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01476380 124.09613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01476381 124.09613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01476382 124.09615326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01476383 124.09616852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01476384 124.09617615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01476385 124.09619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01476386 124.09621429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01476387 124.09621429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01476388 124.09624481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01476389 124.09624481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01476390 124.09626770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01476391 124.09626770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01476392 124.09629059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01476393 124.09629059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01476394 124.09632111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01476395 124.09632111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01476396 124.09634399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01476397 124.09634399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01476398 124.09637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01476399 124.09637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01476400 124.09639740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01476401 124.09639740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01476402 124.09642029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01476403 124.09642029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01476404 124.09645081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01476405 124.09645081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01476406 124.09647369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01476407 124.09648895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01476408 124.09649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01476409 124.09651184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01476410 124.09653473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01476411 124.09653473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01476412 124.09656525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01476413 124.09656525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01476414 124.09658813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01476415 124.09658813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01476416 124.09661102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01476417 124.09661102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01476418 124.09664154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01476419 124.09664154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01476420 124.09666443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01476421 124.09667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01476422 124.09670258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01476423 124.09670258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01476424 124.09673309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01476425 124.09673309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01476426 124.09675598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01476427 124.09675598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01476428 124.09677887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01476429 124.09677887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01476430 124.09680939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01476431 124.09680939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01476432 124.09683228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01476433 124.09683228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01476434 124.09685516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01476435 124.09685516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01476436 124.09688568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01476437 124.09689331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01476438 124.09690857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01476439 124.09692383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01476440 124.09694672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01476441 124.09694672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01476442 124.09696960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01476443 124.09696960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01476444 124.09700012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01476445 124.09700012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01476446 124.09702301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01476447 124.09702301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01476448 124.09704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01476449 124.09704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01476450 124.09707642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01476451 124.09707642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01476452 124.09709930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01476453 124.09709930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01476454 124.09712982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01476455 124.09712982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01476456 124.09715271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01476457 124.09715271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01476458 124.09717560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01476459 124.09719086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01476460 124.09720612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01476461 124.09721375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01476462 124.09724426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01476463 124.09724426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01476464 124.09726715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01476465 124.09726715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01476466 124.09729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01476467 124.09729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01476468 124.09732056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01476469 124.09732056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01476470 124.09734344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01476471 124.09734344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01476472 124.09736633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01476473 124.09736633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01476474 124.09740448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01476475 124.09741974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01476476 124.09743500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01476477 124.09744263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01476478 124.09748840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01476479 124.09748840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01476480 124.09751129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01476481 124.09751129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01476482 124.09753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01476483 124.09753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01476484 124.09756470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01476485 124.09756470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01476486 124.09758759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01476487 124.09760284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01476488 124.09761047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01476489 124.09762573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01476490 124.09764862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01476491 124.09764862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01476492 124.09767914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01476493 124.09767914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01476494 124.09770203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01476495 124.09770203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01476496 124.09772491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01476497 124.09772491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01476498 124.09775543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01476499 124.09775543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01476500 124.09777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01476501 124.09777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01476502 124.09780121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01476503 124.09780121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01476504 124.09783173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01476505 124.09783173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01476506 124.09785461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01476507 124.09785461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01476508 124.09788513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01476509 124.09788513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01476510 124.09790802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01476511 124.09792328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01476512 124.09793091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01476513 124.09794617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01476514 124.09796906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01476515 124.09796906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01476516 124.09799957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01476517 124.09799957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01476518 124.09802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01476519 124.09802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01476520 124.09804535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01476521 124.09804535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01476522 124.09807587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01476523 124.09807587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01476524 124.09809875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01476525 124.09809875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01476526 124.09812164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01476527 124.09812164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01476528 124.09815216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01476529 124.09815979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01476530 124.09819031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01476531 124.09819031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01476532 124.09821320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01476533 124.09821320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01476534 124.09824371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01476535 124.09824371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01476536 124.09826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01476537 124.09826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01476538 124.09830475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01476539 124.09830475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01476540 124.09832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01476541 124.09832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01476542 124.09835815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01476543 124.09835815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01476544 124.09838104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01476545 124.09838104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01476546 124.09840393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01476547 124.09840393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01476548 124.09843445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01476549 124.09843445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01476550 124.09845734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01476551 124.09847260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01476552 124.09849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01476553 124.09849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01476554 124.09851837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01476555 124.09851837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01476556 124.09854889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01476557 124.09854889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01476558 124.09857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01476559 124.09857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01476560 124.09860992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01476561 124.09860992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01476562 124.09864044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01476563 124.09864044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01476564 124.09866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01476565 124.09866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01476566 124.09868622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01476567 124.09868622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01476568 124.09871674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01476569 124.09872437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01476570 124.09875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01476571 124.09875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01476572 124.09877777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01476573 124.09877777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01476574 124.09880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01476575 124.09880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01476576 124.09883118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01476577 124.09883118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01476578 124.09885406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01476579 124.09886932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01476580 124.09889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01476581 124.09889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01476582 124.09891510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01476583 124.09891510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01476584 124.09894562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01476585 124.09894562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01476586 124.09898376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01476587 124.09898376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01476588 124.09900665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01476589 124.09900665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01476590 124.09903717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01476591 124.09903717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01476592 124.09906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01476593 124.09906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01476594 124.09908295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01476595 124.09908295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01476596 124.09911346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01476597 124.09911346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01476598 124.09913635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01476599 124.09915161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01476600 124.09917450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01476601 124.09917450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01476602 124.09919739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01476603 124.09919739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01476604 124.09922791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01476605 124.09922791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01476606 124.09925079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01476607 124.09925079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01476608 124.09927368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01476609 124.09927368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01476610 124.09930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01476611 124.09930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01476612 124.09932709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01476613 124.09934235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01476614 124.09934998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01476615 124.09936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01476616 124.09939575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01476617 124.09939575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01476618 124.09941864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01476619 124.09941864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01476620 124.09944153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01476621 124.09944153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01476622 124.09947205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01476623 124.09947205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01476624 124.09949493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01476625 124.09949493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01476626 124.09951782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01476627 124.09951782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01476628 124.09954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01476629 124.09954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01476630 124.09957123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01476631 124.09958649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01476632 124.09959412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01476633 124.09960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01476634 124.09962463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01476635 124.09963226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01476636 124.09966278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01476637 124.09966278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01476638 124.09968567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01476639 124.09968567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01476640 124.09970856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01476641 124.09972382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01476642 124.09973907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01476643 124.09974670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01476644 124.09977722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01476645 124.09977722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01476646 124.09980011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01476647 124.09980011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01476648 124.09983063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01476649 124.09983063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01476650 124.09985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01476651 124.09985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01476652 124.09987640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01476653 124.09987640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01476654 124.09990692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01476655 124.09990692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01476656 124.09992981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01476657 124.09992981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01476658 124.09995270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01476659 124.09995270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01476660 124.09998322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01476661 124.09998322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01476662 124.10000610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01476663 124.10002136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01476664 124.10002899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01476665 124.10004425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01476666 124.10006714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01476667 124.10006714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01476668 124.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01476669 124.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01476670 124.10012054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01476671 124.10012054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01476672 124.10014343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01476673 124.10014343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01476674 124.10017395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01476675 124.10017395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01476676 124.10019684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01476677 124.10019684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01476678 124.10022736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01476679 124.10022736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01476680 124.10025024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01476681 124.10025024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01476682 124.10027313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01476683 124.10027313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01476684 124.10030365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01476685 124.10030365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01476686 124.10032654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01476687 124.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01476688 124.10034943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01476689 124.10036469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01476690 124.10038757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01476691 124.10038757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01476692 124.10041809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01476693 124.10041809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01476694 124.10044098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01476695 124.10044098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01476696 124.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01476697 124.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01476698 124.10049438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01476699 124.10049438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01476700 124.10051727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01476701 124.10051727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01476702 124.10054779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01476703 124.10054779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01476704 124.10057068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01476705 124.10057068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01476706 124.10059357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01476707 124.10060883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01476708 124.10062408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01476709 124.10063171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01476710 124.10066223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01476711 124.10066223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01476712 124.10068512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01476713 124.10068512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01476714 124.10070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01476715 124.10070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01476716 124.10074615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01476717 124.10074615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01476718 124.10077667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01476719 124.10077667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01476720 124.10079956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01476721 124.10079956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01476722 124.10082245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01476723 124.10082245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01476724 124.10085297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01476725 124.10085297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01476726 124.10087585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01476727 124.10087585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01476728 124.10089874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01476729 124.10089874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01476730 124.10092926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01476731 124.10092926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01476732 124.10095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01476733 124.10095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01476734 124.10098267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01476735 124.10099030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01476736 124.10100555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01476737 124.10102081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01476738 124.10104370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01476739 124.10104370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01476740 124.10106659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01476741 124.10106659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01476742 124.10109711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01476743 124.10109711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01476744 124.10112000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01476745 124.10112000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01476746 124.10114288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01476747 124.10114288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01476748 124.10117340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01476749 124.10117340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01476750 124.10119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01476751 124.10119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01476752 124.10121918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01476753 124.10121918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01476754 124.10124969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01476755 124.10124969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01476756 124.10127258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01476757 124.10127258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01476758 124.10129547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01476759 124.10131073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01476760 124.10132599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01476761 124.10134125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01476762 124.10136414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01476763 124.10136414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01476764 124.10138702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01476765 124.10138702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01476766 124.10141754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01476767 124.10141754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01476768 124.10144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01476769 124.10144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01476770 124.10146332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01476771 124.10146332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01476772 124.10149384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01476773 124.10149384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01476774 124.10151672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01476775 124.10151672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01476776 124.10153961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01476777 124.10153961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01476778 124.10157013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01476779 124.10157776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01476780 124.10159302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01476781 124.10160828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01476782 124.10163116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01476783 124.10163116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01476784 124.10165405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01476785 124.10165405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01476786 124.10168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01476787 124.10168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01476788 124.10170746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01476789 124.10170746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01476790 124.10173798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01476791 124.10173798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01476792 124.10176086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01476793 124.10176086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01476794 124.10178375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01476795 124.10178375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01476796 124.10181427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01476797 124.10181427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01476798 124.10183716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01476799 124.10183716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01476800 124.10186005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01476801 124.10186005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01476802 124.10189056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01476803 124.10189819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01476804 124.10191345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01476805 124.10192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01476806 124.10195160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01476807 124.10195160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01476808 124.10197449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01476809 124.10197449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01476810 124.10200500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01476811 124.10200500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01476812 124.10202789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01476813 124.10202789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01476814 124.10205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01476815 124.10205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01476816 124.10208130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01476817 124.10208130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01476818 124.10210419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01476819 124.10210419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01476820 124.10213470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01476821 124.10213470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01476822 124.10215759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01476823 124.10215759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01476824 124.10218048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01476825 124.10219574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01476826 124.10221100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01476827 124.10221863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01476828 124.10224915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01476829 124.10224915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01476830 124.10227203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01476831 124.10227203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01476832 124.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01476833 124.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01476834 124.10232544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01476835 124.10232544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01476836 124.10234833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01476837 124.10234833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01476838 124.10237122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01476839 124.10237122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01476840 124.10240173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01476841 124.10240173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01476842 124.10242462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01476843 124.10242462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01476844 124.10244751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01476845 124.10244751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01476846 124.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01476847 124.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01476848 124.10250092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01476849 124.10251617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01476850 124.10253143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01476851 124.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01476852 124.10256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01476853 124.10256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01476854 124.10259247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01476855 124.10259247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01476856 124.10261536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01476857 124.10261536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01476858 124.10264587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01476859 124.10264587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01476860 124.10266876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01476861 124.10266876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01476862 124.10269165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01476863 124.10269165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01476864 124.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01476865 124.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01476866 124.10274506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01476867 124.10274506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01476868 124.10276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01476869 124.10276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01476870 124.10279846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01476871 124.10280609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01476872 124.10282135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01476873 124.10283661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01476874 124.10285950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01476875 124.10285950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01476876 124.10289001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01476877 124.10289001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01476878 124.10291290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01476879 124.10291290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01476880 124.10293579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01476881 124.10293579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01476882 124.10296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01476883 124.10296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01476884 124.10298920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01476885 124.10298920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01476886 124.10301208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01476887 124.10301208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01476888 124.10304260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01476889 124.10304260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01476890 124.10308075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01476891 124.10308075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01476892 124.10310364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01476893 124.10310364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01476894 124.10312653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01476895 124.10312653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01476896 124.10315704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01476897 124.10315704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01476898 124.10317993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01476899 124.10317993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01476900 124.10320282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01476901 124.10321808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01476902 124.10324860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01476903 124.10324860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01476904 124.10327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01476905 124.10327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01476906 124.10329437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01476907 124.10329437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01476908 124.10332489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01476909 124.10332489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01476910 124.10334778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01476911 124.10336304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01476912 124.10338593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01476913 124.10338593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01476914 124.10340881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01476915 124.10340881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01476916 124.10343933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01476917 124.10343933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01476918 124.10346222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01476919 124.10346222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01476920 124.10348511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01476921 124.10350037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01476922 124.10357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01476923 124.10357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01476924 124.10359955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01476925 124.10361481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01476926 124.10364532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01476927 124.10364532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01476928 124.10366821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01476929 124.10366821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01476930 124.10369110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01476931 124.10369110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01476932 124.10372162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01476933 124.10372162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01476934 124.10374451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01476935 124.10374451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01476936 124.10376740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01476937 124.10376740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01476938 124.10379791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01476939 124.10379791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01476940 124.10382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01476941 124.10382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01476942 124.10384369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01476943 124.10384369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01476944 124.10387421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01476945 124.10387421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01476946 124.10389709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01476947 124.10391235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01476948 124.10391998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01476949 124.10393524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01476950 124.10395813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01476951 124.10395813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01476952 124.10398865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01476953 124.10398865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01476954 124.10401154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01476955 124.10401154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01476956 124.10404205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01476957 124.10404205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01476958 124.10406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01476959 124.10406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01476960 124.10408783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01476961 124.10408783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01476962 124.10412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01476963 124.10412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01476964 124.10416412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01476965 124.10416412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01476966 124.10419464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01476967 124.10420227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01476968 124.10423279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01476969 124.10423279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01476970 124.10425568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01476971 124.10425568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01476972 124.10427856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01476973 124.10427856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01476974 124.10430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01476975 124.10430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01476976 124.10433197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01476977 124.10433197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01476978 124.10435486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01476979 124.10437012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01476980 124.10439301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01476981 124.10439301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01476982 124.10442352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01476983 124.10442352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01476984 124.10444641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01476985 124.10444641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01476986 124.10447693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01476987 124.10447693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01476988 124.10449982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01476989 124.10451508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01476990 124.10452271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01476991 124.10453796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01476992 124.10456085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01476993 124.10456085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01476994 124.10459137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01476995 124.10459137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01476996 124.10461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01476997 124.10461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01476998 124.10463715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01476999 124.10463715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01477000 124.10466766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01477001 124.10466766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01477002 124.10469055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01477003 124.10469055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01477004 124.10471344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01477005 124.10471344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01477006 124.10474396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01477007 124.10474396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01477008 124.10476685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01477009 124.10476685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01477010 124.10479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01477011 124.10480499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01477012 124.10482025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01477013 124.10483551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01477014 124.10485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01477015 124.10485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01477016 124.10488129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01477017 124.10488129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01477018 124.10491180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01477019 124.10491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01477020 124.10494995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01477021 124.10494995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01477022 124.10497284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01477023 124.10497284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01477024 124.10499573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01477025 124.10499573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01477026 124.10502625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01477027 124.10502625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01477028 124.10504913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01477029 124.10506439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01477030 124.10508728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01477031 124.10508728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01477032 124.10511017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01477033 124.10511017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01477034 124.10514069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01477035 124.10514069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01477036 124.10516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01477037 124.10516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01477038 124.10519409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01477039 124.10519409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01477040 124.10521698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01477041 124.10523224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01477042 124.10525513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01477043 124.10525513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01477044 124.10527802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01477045 124.10527802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01477046 124.10530853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01477047 124.10530853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01477048 124.10533142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01477049 124.10533142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01477050 124.10535431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01477051 124.10536957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01477052 124.10539246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01477053 124.10539246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01477054 124.10542297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01477055 124.10542297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01477056 124.10544586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01477057 124.10544586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01477058 124.10546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01477059 124.10546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01477060 124.10549927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01477061 124.10549927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01477062 124.10552216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01477063 124.10553741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01477064 124.10556030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01477065 124.10556030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01477066 124.10559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01477067 124.10559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01477068 124.10561371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01477069 124.10561371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01477070 124.10563660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01477071 124.10563660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01477072 124.10566711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01477073 124.10567474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01477074 124.10570526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01477075 124.10570526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01477076 124.10572815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01477077 124.10572815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01477078 124.10575104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01477079 124.10575104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01477080 124.10578156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01477081 124.10578156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01477082 124.10580444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01477083 124.10581970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01477084 124.10584259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01477085 124.10584259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01477086 124.10586548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01477087 124.10586548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01477088 124.10589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01477089 124.10589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01477090 124.10591888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01477091 124.10591888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01477092 124.10594940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01477093 124.10594940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01477094 124.10597229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01477095 124.10598755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01477096 124.10601044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01477097 124.10601044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01477098 124.10603333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01477099 124.10603333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01477100 124.10606384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01477101 124.10606384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01477102 124.10608673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01477103 124.10608673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01477104 124.10610962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01477105 124.10612488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01477106 124.10614777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01477107 124.10614777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01477108 124.10617828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01477109 124.10617828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01477110 124.10620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01477111 124.10620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01477112 124.10622406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01477113 124.10622406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01477114 124.10625458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01477115 124.10626221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01477116 124.10629272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01477117 124.10629272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01477118 124.10631561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01477119 124.10631561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01477120 124.10634613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01477121 124.10634613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01477122 124.10636902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01477123 124.10636902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01477124 124.10639191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01477125 124.10640717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01477126 124.10643005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01477127 124.10643005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01477128 124.10646057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01477129 124.10646057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01477130 124.10648346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01477131 124.10648346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01477132 124.10650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01477133 124.10650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01477134 124.10653687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01477135 124.10653687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01477136 124.10655975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01477137 124.10657501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01477138 124.10659790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01477139 124.10659790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01477140 124.10662079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01477141 124.10662079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01477142 124.10665131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01477143 124.10665131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01477144 124.10667419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01477145 124.10667419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01477146 124.10669708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01477147 124.10671234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01477148 124.10674286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01477149 124.10674286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01477150 124.10676575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01477151 124.10676575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01477152 124.10678864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01477153 124.10678864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01477154 124.10681915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01477155 124.10681915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01477156 124.10684204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01477157 124.10685730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01477158 124.10688019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01477159 124.10688019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01477160 124.10690308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01477161 124.10690308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01477162 124.10693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01477163 124.10693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01477164 124.10695648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01477165 124.10695648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01477166 124.10697937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01477167 124.10699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01477168 124.10701752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01477169 124.10701752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01477170 124.10704803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01477171 124.10704803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01477172 124.10707092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01477173 124.10707092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01477174 124.10709381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01477175 124.10709381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01477176 124.10712433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01477177 124.10712433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01477178 124.10714722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01477179 124.10716248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01477180 124.10718536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01477181 124.10718536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01477182 124.10721588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01477183 124.10721588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01477184 124.10723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01477185 124.10723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01477186 124.10726166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01477187 124.10726166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01477188 124.10729218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01477189 124.10729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01477190 124.10733032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01477191 124.10733032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01477192 124.10735321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01477193 124.10735321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01477194 124.10737610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01477195 124.10737610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01477196 124.10740662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01477197 124.10740662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01477198 124.10742950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01477199 124.10744476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01477200 124.10746765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01477201 124.10746765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01477202 124.10749817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01477203 124.10749817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01477204 124.10752106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01477205 124.10752106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01477206 124.10754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01477207 124.10754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01477208 124.10757446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01477209 124.10757446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01477210 124.10759735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01477211 124.10761261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01477212 124.10763550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01477213 124.10763550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01477214 124.10765839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01477215 124.10765839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01477216 124.10768890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01477217 124.10768890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01477218 124.10771179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01477219 124.10771179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01477220 124.10773468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01477221 124.10774994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01477222 124.10777283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01477223 124.10777283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01477224 124.10780334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01477225 124.10780334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01477226 124.10782623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01477227 124.10782623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01477228 124.10784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01477229 124.10784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01477230 124.10787964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01477231 124.10787964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01477232 124.10790253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01477233 124.10791779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01477234 124.10794067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01477235 124.10794067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01477236 124.10797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01477237 124.10797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01477238 124.10799408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01477239 124.10799408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01477240 124.10801697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01477241 124.10801697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01477242 124.10804749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01477243 124.10805511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01477244 124.10808563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01477245 124.10808563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01477246 124.10810852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01477247 124.10810852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01477248 124.10813141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01477249 124.10813141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01477250 124.10816193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01477251 124.10816193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01477252 124.10818481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01477253 124.10820007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01477254 124.10822296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01477255 124.10822296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01477256 124.10824585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01477257 124.10824585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01477258 124.10827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01477259 124.10827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01477260 124.10829926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01477261 124.10829926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01477262 124.10832977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01477263 124.10832977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01477264 124.10835266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01477265 124.10836792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01477266 124.10839081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01477267 124.10839081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01477268 124.10841370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01477269 124.10841370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01477270 124.10844421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01477271 124.10844421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01477272 124.10846710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01477273 124.10846710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01477274 124.10848999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01477275 124.10850525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01477276 124.10852814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01477277 124.10852814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01477278 124.10855865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01477279 124.10855865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01477280 124.10858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01477281 124.10858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01477282 124.10860443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01477283 124.10860443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01477284 124.10863495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01477285 124.10865021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01477286 124.10867310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01477287 124.10867310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01477288 124.10869598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01477289 124.10869598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01477290 124.10872650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01477291 124.10872650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01477292 124.10874939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01477293 124.10874939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01477294 124.10877228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01477295 124.10877228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01477296 124.10880280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01477297 124.10881042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01477298 124.10884094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01477299 124.10884094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01477300 124.10886383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01477301 124.10886383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01477302 124.10888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01477303 124.10888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01477304 124.10891724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01477305 124.10891724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01477306 124.10894012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01477307 124.10895538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01477308 124.10897827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01477309 124.10897827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01477310 124.10900116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01477311 124.10900116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01477312 124.10903168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01477313 124.10903168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01477314 124.10905457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01477315 124.10905457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01477316 124.10908508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01477317 124.10908508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01477318 124.10910797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01477319 124.10912323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01477320 124.10914612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01477321 124.10914612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01477322 124.10916901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01477323 124.10916901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01477324 124.10919952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01477325 124.10919952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01477326 124.10922241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01477327 124.10922241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01477328 124.10924530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01477329 124.10926056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01477330 124.10928345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01477331 124.10928345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01477332 124.10931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01477333 124.10931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01477334 124.10933685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01477335 124.10933685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01477336 124.10935974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01477337 124.10935974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01477338 124.10939026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01477339 124.10939789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01477340 124.10942841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01477341 124.10942841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01477342 124.10945129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01477343 124.10945129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01477344 124.10948181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01477345 124.10948181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01477346 124.10950470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01477347 124.10950470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01477348 124.10952759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01477349 124.10952759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01477350 124.10956573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01477351 124.10956573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01477352 124.10959625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01477353 124.10959625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01477354 124.10961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01477355 124.10961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01477356 124.10964203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01477357 124.10964203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01477358 124.10967255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01477359 124.10967255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01477360 124.10969543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01477361 124.10971069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01477362 124.10973358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01477363 124.10973358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01477364 124.10975647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01477365 124.10975647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01477366 124.10978699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01477367 124.10978699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01477368 124.10980988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01477369 124.10980988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01477370 124.10984039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01477371 124.10984802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01477372 124.10987854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01477373 124.10987854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01477374 124.10990143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01477375 124.10990143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01477376 124.10992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01477377 124.10992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01477378 124.10995483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01477379 124.10995483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01477380 124.10997772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01477381 124.10997772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01477382 124.11000061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01477383 124.11001587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01477384 124.11003876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01477385 124.11003876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01477386 124.11006927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01477387 124.11006927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01477388 124.11009216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01477389 124.11009216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01477390 124.11011505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01477391 124.11011505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01477392 124.11014557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01477393 124.11015320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01477394 124.11018372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01477395 124.11018372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01477396 124.11020660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01477397 124.11020660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01477398 124.11023712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01477399 124.11023712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01477400 124.11026001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01477401 124.11026001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01477402 124.11028290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01477403 124.11028290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01477404 124.11031342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01477405 124.11032104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01477406 124.11035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01477407 124.11035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01477408 124.11037445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01477409 124.11037445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01477410 124.11039734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01477411 124.11039734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01477412 124.11042786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01477413 124.11042786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01477414 124.11045074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01477415 124.11046600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01477416 124.11048889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01477417 124.11048889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01477418 124.11051178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01477419 124.11051178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01477420 124.11054230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01477421 124.11054230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01477422 124.11056519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01477423 124.11056519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01477424 124.11059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01477425 124.11060333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01477426 124.11063385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01477427 124.11063385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01477428 124.11065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01477429 124.11065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01477430 124.11067963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01477431 124.11067963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01477432 124.11071014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01477433 124.11071014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01477434 124.11073303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01477435 124.11074829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01477436 124.11077118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01477437 124.11077118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01477438 124.11079407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01477439 124.11079407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01477440 124.11082458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01477441 124.11082458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01477442 124.11084747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01477443 124.11084747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01477444 124.11087036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01477445 124.11087036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01477446 124.11090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01477447 124.11090851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01477448 124.11093903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01477449 124.11093903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01477450 124.11096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01477451 124.11096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01477452 124.11099243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01477453 124.11099243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01477454 124.11103821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01477455 124.11103821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01477456 124.11106873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01477457 124.11106873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01477458 124.11109161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01477459 124.11109161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01477460 124.11111450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01477461 124.11111450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01477462 124.11114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01477463 124.11115265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01477464 124.11118317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01477465 124.11118317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01477466 124.11120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01477467 124.11120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01477468 124.11122894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01477469 124.11122894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01477470 124.11125946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01477471 124.11125946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01477472 124.11128235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01477473 124.11129761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01477474 124.11132050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01477475 124.11132050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01477476 124.11135101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01477477 124.11135101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01477478 124.11137390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01477479 124.11137390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01477480 124.11139679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01477481 124.11139679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01477482 124.11142731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01477483 124.11142731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01477484 124.11145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01477485 124.11146545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01477486 124.11148834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01477487 124.11148834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01477488 124.11151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01477489 124.11151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01477490 124.11154175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01477491 124.11154175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01477492 124.11156464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01477493 124.11156464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01477494 124.11158752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01477495 124.11160278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01477496 124.11162567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01477497 124.11162567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01477498 124.11165619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01477499 124.11165619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01477500 124.11167908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01477501 124.11167908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01477502 124.11170197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01477503 124.11170197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01477504 124.11173248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01477505 124.11174774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01477506 124.11177063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01477507 124.11177063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01477508 124.11179352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01477509 124.11179352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01477510 124.11182404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01477511 124.11182404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01477512 124.11184692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01477513 124.11184692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01477514 124.11186981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01477515 124.11186981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01477516 124.11190033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01477517 124.11190796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01477518 124.11193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01477519 124.11193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01477520 124.11196136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01477521 124.11196136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01477522 124.11198425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01477523 124.11198425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01477524 124.11201477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01477525 124.11201477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01477526 124.11203766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01477527 124.11205292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01477528 124.11207581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01477529 124.11207581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01477530 124.11209869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01477531 124.11209869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01477532 124.11212921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01477533 124.11212921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01477534 124.11215210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01477535 124.11215210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01477536 124.11218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01477537 124.11218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01477538 124.11220551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01477539 124.11222076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01477540 124.11224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01477541 124.11224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01477542 124.11226654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01477543 124.11226654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01477544 124.11229706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01477545 124.11229706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01477546 124.11231995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01477547 124.11231995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01477548 124.11234283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01477549 124.11235809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01477550 124.11238098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01477551 124.11238098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01477552 124.11241150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01477553 124.11241150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01477554 124.11243439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01477555 124.11243439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01477556 124.11245728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01477557 124.11245728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01477558 124.11248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01477559 124.11249542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01477560 124.11252594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01477561 124.11252594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01477562 124.11254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01477563 124.11254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01477564 124.11257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01477565 124.11257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01477566 124.11260223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01477567 124.11260223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01477568 124.11262512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01477569 124.11262512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01477570 124.11265564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01477571 124.11266327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01477572 124.11269379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01477573 124.11269379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01477574 124.11271667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01477575 124.11271667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01477576 124.11273956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01477577 124.11273956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01477578 124.11277008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01477579 124.11277008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01477580 124.11279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01477581 124.11280823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01477582 124.11283112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01477583 124.11283112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01477584 124.11285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01477585 124.11285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01477586 124.11288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01477587 124.11288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01477588 124.11290741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01477589 124.11290741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01477590 124.11293793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01477591 124.11293793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01477592 124.11296082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01477593 124.11297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01477594 124.11299896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01477595 124.11299896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01477596 124.11302185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01477597 124.11302185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01477598 124.11305237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01477599 124.11305237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01477600 124.11307526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01477601 124.11307526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01477602 124.11309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01477603 124.11311340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01477604 124.11313629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01477605 124.11313629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01477606 124.11316681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01477607 124.11316681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01477608 124.11318970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01477609 124.11318970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01477610 124.11321259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01477611 124.11321259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01477612 124.11324310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01477613 124.11324310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01477614 124.11326599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01477615 124.11328125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01477616 124.11330414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01477617 124.11330414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01477618 124.11333466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01477619 124.11333466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01477620 124.11335754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01477621 124.11335754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01477622 124.11338043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01477623 124.11338043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01477624 124.11341095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01477625 124.11341858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01477626 124.11344910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01477627 124.11344910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01477628 124.11347198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01477629 124.11347198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01477630 124.11349487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01477631 124.11349487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01477632 124.11352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01477633 124.11352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01477634 124.11354828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01477635 124.11356354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01477636 124.11358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01477637 124.11358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01477638 124.11360931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01477639 124.11360931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01477640 124.11363983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01477641 124.11363983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01477642 124.11366272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01477643 124.11366272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01477644 124.11369324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01477645 124.11369324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01477646 124.11371613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01477647 124.11373138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01477648 124.11375427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01477649 124.11375427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01477650 124.11377716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01477651 124.11377716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01477652 124.11380768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01477653 124.11380768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01477654 124.11383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01477655 124.11383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01477656 124.11385345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01477657 124.11386871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01477658 124.11389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01477659 124.11389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01477660 124.11392212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01477661 124.11392212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01477662 124.11394501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01477663 124.11394501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01477664 124.11396790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01477665 124.11396790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01477666 124.11399841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01477667 124.11399841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01477668 124.11402130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01477669 124.11403656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01477670 124.11405945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01477671 124.11405945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01477672 124.11408997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01477673 124.11408997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01477674 124.11411285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01477675 124.11411285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01477676 124.11413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01477677 124.11413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01477678 124.11416626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01477679 124.11417389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01477680 124.11420441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01477681 124.11420441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01477682 124.11422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01477683 124.11422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01477684 124.11425018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01477685 124.11425018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01477686 124.11428070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01477687 124.11428070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01477688 124.11430359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01477689 124.11430359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01477690 124.11432648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01477691 124.11434174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01477692 124.11436462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01477693 124.11436462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01477694 124.11439514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01477695 124.11439514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01477696 124.11441803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01477697 124.11441803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01477698 124.11444855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01477699 124.11444855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01477700 124.11447144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01477701 124.11448669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01477702 124.11450958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01477703 124.11450958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01477704 124.11453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01477705 124.11453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01477706 124.11456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01477707 124.11456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01477708 124.11458588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01477709 124.11458588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01477710 124.11460876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01477711 124.11462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01477712 124.11464691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01477713 124.11464691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01477714 124.11467743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01477715 124.11467743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01477716 124.11470032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01477717 124.11470032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01477718 124.11472321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01477719 124.11472321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01477720 124.11475372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01477721 124.11476135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01477722 124.11479187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01477723 124.11479187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01477724 124.11481476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01477725 124.11481476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01477726 124.11484528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01477727 124.11484528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01477728 124.11486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01477729 124.11486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01477730 124.11489105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01477731 124.11489105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01477732 124.11492157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01477733 124.11492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01477734 124.11495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01477735 124.11495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01477736 124.11498260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01477737 124.11498260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01477738 124.11500549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01477739 124.11500549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01477740 124.11503601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01477741 124.11503601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01477742 124.11505890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01477743 124.11507416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01477744 124.11509705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01477745 124.11509705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01477746 124.11511993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01477747 124.11511993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01477748 124.11515045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01477749 124.11515045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01477750 124.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01477751 124.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01477752 124.11519623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01477753 124.11519623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01477754 124.11522675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01477755 124.11524200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01477756 124.11526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01477757 124.11526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01477758 124.11528778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01477759 124.11528778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01477760 124.11531830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01477761 124.11531830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01477762 124.11534119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01477763 124.11534119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01477764 124.11536407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01477765 124.11537933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01477766 124.11540222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01477767 124.11540222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01477768 124.11543274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01477769 124.11543274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01477770 124.11545563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01477771 124.11545563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01477772 124.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01477773 124.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01477774 124.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01477775 124.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01477776 124.11553192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01477777 124.11554718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01477778 124.11557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01477779 124.11557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01477780 124.11560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01477781 124.11560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01477782 124.11562347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01477783 124.11562347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01477784 124.11564636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01477785 124.11564636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01477786 124.11567688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01477787 124.11568451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01477788 124.11571503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01477789 124.11571503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01477790 124.11573792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01477791 124.11573792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01477792 124.11576080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01477793 124.11576080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01477794 124.11579132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01477795 124.11579132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01477796 124.11581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01477797 124.11582947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01477798 124.11585236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01477799 124.11585236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01477800 124.11587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01477801 124.11587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01477802 124.11590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01477803 124.11590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01477804 124.11592865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01477805 124.11592865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01477806 124.11595154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01477807 124.11595154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01477808 124.11598206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01477809 124.11599731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01477810 124.11602020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01477811 124.11602020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01477812 124.11604309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01477813 124.11604309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01477814 124.11607361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01477815 124.11607361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01477816 124.11609650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01477817 124.11609650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01477818 124.11611938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01477819 124.11613464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01477820 124.11615753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01477821 124.11615753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01477822 124.11618805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01477823 124.11618805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01477824 124.11621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01477825 124.11621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01477826 124.11623383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01477827 124.11623383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01477828 124.11626434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01477829 124.11626434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01477830 124.11628723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01477831 124.11630249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01477832 124.11632538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01477833 124.11632538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01477834 124.11634827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01477835 124.11634827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01477836 124.11637878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01477837 124.11637878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01477838 124.11640167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01477839 124.11640167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01477840 124.11643219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01477841 124.11643982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01477842 124.11647034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01477843 124.11647034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01477844 124.11649323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01477845 124.11649323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01477846 124.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01477847 124.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01477848 124.11654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01477849 124.11654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01477850 124.11656952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01477851 124.11658478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01477852 124.11660767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01477853 124.11660767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01477854 124.11663055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01477855 124.11663055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01477856 124.11666107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01477857 124.11666107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01477858 124.11668396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01477859 124.11668396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01477860 124.11670685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01477861 124.11670685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01477862 124.11673737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01477863 124.11674500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01477864 124.11677551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01477865 124.11677551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01477866 124.11679840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01477867 124.11679840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01477868 124.11682892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01477869 124.11682892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01477870 124.11685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01477871 124.11685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01477872 124.11687469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01477873 124.11688995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01477874 124.11691284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01477875 124.11691284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01477876 124.11694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01477877 124.11694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01477878 124.11696625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01477879 124.11696625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01477880 124.11698914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01477881 124.11698914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01477882 124.11701965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01477883 124.11701965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01477884 124.11704254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01477885 124.11705780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01477886 124.11708069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01477887 124.11708069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01477888 124.11710358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01477889 124.11710358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01477890 124.11713409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01477891 124.11713409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01477892 124.11715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01477893 124.11715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01477894 124.11718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01477895 124.11719513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01477896 124.11722565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01477897 124.11722565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01477898 124.11724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01477899 124.11724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01477900 124.11727142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01477901 124.11727142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01477902 124.11730194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01477903 124.11730194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01477904 124.11732483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01477905 124.11732483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01477906 124.11734772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01477907 124.11736298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01477908 124.11738586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01477909 124.11738586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01477910 124.11741638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01477911 124.11741638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01477912 124.11743927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01477913 124.11743927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01477914 124.11746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01477915 124.11746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01477916 124.11749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01477917 124.11750031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01477918 124.11753082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01477919 124.11753082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01477920 124.11755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01477921 124.11755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01477922 124.11758423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01477923 124.11758423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01477924 124.11760712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01477925 124.11760712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01477926 124.11763000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01477927 124.11764526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01477928 124.11766815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01477929 124.11766815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01477930 124.11769867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01477931 124.11769867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01477932 124.11772156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01477933 124.11772156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01477934 124.11774445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01477935 124.11774445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01477936 124.11777496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01477937 124.11777496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01477938 124.11779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01477939 124.11781311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01477940 124.11783600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01477941 124.11783600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01477942 124.11785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01477943 124.11785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01477944 124.11788940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01477945 124.11788940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01477946 124.11791229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01477947 124.11791229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01477948 124.11794281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01477949 124.11795044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01477950 124.11798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01477951 124.11798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01477952 124.11800385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01477953 124.11800385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01477954 124.11802673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01477955 124.11802673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01477956 124.11805725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01477957 124.11805725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01477958 124.11808014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01477959 124.11808014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01477960 124.11810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01477961 124.11811829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01477962 124.11814117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01477963 124.11814117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01477964 124.11817169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01477965 124.11817169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01477966 124.11819458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01477967 124.11819458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01477968 124.11821747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01477969 124.11821747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01477970 124.11824799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01477971 124.11825562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01477972 124.11827087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01477973 124.11828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01477974 124.11830902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01477975 124.11830902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01477976 124.11833954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01477977 124.11833954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01477978 124.11836243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01477979 124.11836243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01477980 124.11838531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01477981 124.11838531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01477982 124.11841583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01477983 124.11842346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01477984 124.11845398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01477985 124.11845398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01477986 124.11847687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01477987 124.11847687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01477988 124.11849976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01477989 124.11849976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01477990 124.11853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01477991 124.11853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01477992 124.11855316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01477993 124.11856842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01477994 124.11859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01477995 124.11859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01477996 124.11861420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01477997 124.11861420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01477998 124.11864471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01477999 124.11864471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01478000 124.11866760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01478001 124.11866760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01478002 124.11869812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01478003 124.11869812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01478004 124.11872101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01478005 124.11873627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01478006 124.11875916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01478007 124.11875916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01478008 124.11878204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01478009 124.11878204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01478010 124.11881256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01478011 124.11881256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01478012 124.11883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01478013 124.11883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01478014 124.11885834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01478015 124.11887360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01478016 124.11889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01478017 124.11889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01478018 124.11892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01478019 124.11892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01478020 124.11894989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01478021 124.11894989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01478022 124.11897278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01478023 124.11897278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01478024 124.11900330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01478025 124.11901093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01478026 124.11904144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01478027 124.11904144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01478028 124.11906433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01478029 124.11906433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01478030 124.11909485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01478031 124.11909485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01478032 124.11911774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01478033 124.11911774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01478034 124.11914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01478035 124.11915588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01478036 124.11917114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01478037 124.11917877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01478038 124.11920929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01478039 124.11920929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01478040 124.11923218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01478041 124.11923218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01478042 124.11925507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01478043 124.11925507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01478044 124.11928558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01478045 124.11928558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01478046 124.11930847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01478047 124.11932373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01478048 124.11934662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01478049 124.11934662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01478050 124.11936951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01478051 124.11936951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01478052 124.11940002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01478053 124.11940002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01478054 124.11942291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01478055 124.11942291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01478056 124.11944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01478057 124.11946106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01478058 124.11947632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01478059 124.11949158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01478060 124.11951447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01478061 124.11951447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01478062 124.11953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01478063 124.11953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01478064 124.11956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01478065 124.11956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01478066 124.11959076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01478067 124.11960602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01478068 124.11962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01478069 124.11962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01478070 124.11965179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01478071 124.11965179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01478072 124.11968231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01478073 124.11968231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01478074 124.11970520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01478075 124.11970520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01478076 124.11972809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01478077 124.11974335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01478078 124.11976624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01478079 124.11976624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01478080 124.11979675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01478081 124.11979675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01478082 124.11981964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01478083 124.11981964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01478084 124.11985016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01478085 124.11985016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01478086 124.11987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01478087 124.11988831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01478088 124.11991119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01478089 124.11991119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01478090 124.11993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01478091 124.11993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01478092 124.11996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01478093 124.11996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01478094 124.11998749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01478095 124.11998749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01478096 124.12001038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01478097 124.12001038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01478098 124.12004089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01478099 124.12004852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01478100 124.12007904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01478101 124.12007904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01478102 124.12010193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01478103 124.12010193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01478104 124.12012482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01478105 124.12012482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01478106 124.12015533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01478107 124.12015533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01478108 124.12017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01478109 124.12019348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01478110 124.12021637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01478111 124.12021637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01478112 124.12024689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01478113 124.12024689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01478114 124.12026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01478115 124.12026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01478116 124.12029266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01478117 124.12029266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01478118 124.12032318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01478119 124.12033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01478120 124.12034607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01478121 124.12036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01478122 124.12038422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01478123 124.12038422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01478124 124.12040710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01478125 124.12040710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01478126 124.12043762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01478127 124.12043762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01478128 124.12046051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01478129 124.12046051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01478130 124.12048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01478131 124.12049866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01478132 124.12052155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01478133 124.12052155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01478134 124.12055206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01478135 124.12055206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01478136 124.12057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01478137 124.12057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01478138 124.12059784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01478139 124.12059784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01478140 124.12062836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01478141 124.12064362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01478142 124.12066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01478143 124.12066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01478144 124.12068939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01478145 124.12068939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01478146 124.12071991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01478147 124.12071991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01478148 124.12074280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01478149 124.12074280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01478150 124.12076569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01478151 124.12076569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01478152 124.12079620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01478153 124.12080383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01478154 124.12083435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01478155 124.12083435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01478156 124.12085724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01478157 124.12085724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01478158 124.12088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01478159 124.12088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01478160 124.12091064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01478161 124.12091064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01478162 124.12093353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01478163 124.12093353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01478164 124.12095642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01478165 124.12097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01478166 124.12098694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01478167 124.12100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01478168 124.12102509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01478169 124.12102509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01478170 124.12104797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01478171 124.12104797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01478172 124.12107849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01478173 124.12107849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01478174 124.12110138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01478175 124.12110138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01478176 124.12112427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01478177 124.12112427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01478178 124.12115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01478179 124.12116241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01478180 124.12119293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01478181 124.12119293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01478182 124.12121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01478183 124.12121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01478184 124.12123871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01478185 124.12123871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01478186 124.12126923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01478187 124.12126923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01478188 124.12130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01478189 124.12130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01478190 124.12133026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01478191 124.12133026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01478192 124.12135315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01478193 124.12135315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01478194 124.12138367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01478195 124.12138367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01478196 124.12140656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01478197 124.12142181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01478198 124.12144470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01478199 124.12144470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01478200 124.12147522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01478201 124.12147522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01478202 124.12149811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01478203 124.12149811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01478204 124.12152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01478205 124.12152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01478206 124.12155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01478207 124.12155914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01478208 124.12158966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01478209 124.12158966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01478210 124.12161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01478211 124.12161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01478212 124.12163544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01478213 124.12163544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01478214 124.12166595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01478215 124.12166595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01478216 124.12168884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01478217 124.12168884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01478218 124.12171173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01478219 124.12172699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01478220 124.12174988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01478221 124.12174988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01478222 124.12178040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01478223 124.12178040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01478224 124.12180328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01478225 124.12180328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01478226 124.12183380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01478227 124.12183380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01478228 124.12185669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01478229 124.12187195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01478230 124.12189484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01478231 124.12189484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01478232 124.12191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01478233 124.12191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01478234 124.12194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01478235 124.12194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01478236 124.12197113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01478237 124.12197113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01478238 124.12199402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01478239 124.12200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01478240 124.12202454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01478241 124.12203217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01478242 124.12206268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01478243 124.12206268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01478244 124.12208557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01478245 124.12208557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01478246 124.12210846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01478247 124.12210846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01478248 124.12213898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01478249 124.12213898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01478250 124.12216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01478251 124.12216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01478252 124.12226868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01478253 124.12226868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01478254 124.12229156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01478255 124.12229156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01478256 124.12231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01478257 124.12232971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01478258 124.12234497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01478259 124.12235260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01478260 124.12238312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01478261 124.12238312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01478262 124.12240601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01478263 124.12240601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01478264 124.12242889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01478265 124.12242889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01478266 124.12245941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01478267 124.12246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01478268 124.12249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01478269 124.12249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01478270 124.12252045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01478271 124.12252045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01478272 124.12255096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01478273 124.12255096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01478274 124.12257385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01478275 124.12258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01478276 124.12261200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01478277 124.12261200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01478278 124.12263489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01478279 124.12263489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01478280 124.12267303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01478281 124.12268829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01478282 124.12271118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01478283 124.12271118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01478284 124.12274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01478285 124.12274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01478286 124.12276459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01478287 124.12276459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01478288 124.12278748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01478289 124.12278748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01478290 124.12282562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01478291 124.12282562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01478292 124.12285614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01478293 124.12285614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01478294 124.12287903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01478295 124.12287903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01478296 124.12290192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01478297 124.12290192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01478298 124.12293243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01478299 124.12293243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01478300 124.12295532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01478301 124.12295532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01478302 124.12298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01478303 124.12298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01478304 124.12300873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01478305 124.12300873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01478306 124.12303162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01478307 124.12303162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01478308 124.12306213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01478309 124.12306976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01478310 124.12308502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01478311 124.12310028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01478312 124.12312317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01478313 124.12312317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01478314 124.12314606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01478315 124.12314606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01478316 124.12317657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01478317 124.12317657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01478318 124.12319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01478319 124.12319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01478320 124.12322235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01478321 124.12322235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01478322 124.12325287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01478323 124.12325287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01478324 124.12327576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01478325 124.12327576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01478326 124.12329865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01478327 124.12329865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01478328 124.12332916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01478329 124.12332916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01478330 124.12335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01478331 124.12335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01478332 124.12338257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01478333 124.12339020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01478334 124.12340546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01478335 124.12342072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01478336 124.12344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01478337 124.12344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01478338 124.12346649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01478339 124.12346649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01478340 124.12349701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01478341 124.12349701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01478342 124.12351990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01478343 124.12351990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01478344 124.12354279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01478345 124.12354279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01478346 124.12357330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01478347 124.12357330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01478348 124.12359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01478349 124.12359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01478350 124.12361908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01478351 124.12361908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01478352 124.12364960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01478353 124.12364960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01478354 124.12367249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01478355 124.12368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01478356 124.12370300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01478357 124.12371063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01478358 124.12374115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01478359 124.12374115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01478360 124.12376404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01478361 124.12376404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01478362 124.12378693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01478363 124.12378693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01478364 124.12381744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01478365 124.12381744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01478366 124.12384033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01478367 124.12384033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01478368 124.12386322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01478369 124.12387848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01478370 124.12390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01478371 124.12390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01478372 124.12393188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01478373 124.12393188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01478374 124.12395477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01478375 124.12395477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01478376 124.12397766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01478377 124.12397766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01478378 124.12400818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01478379 124.12401581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01478380 124.12403107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01478381 124.12404633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01478382 124.12406921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01478383 124.12406921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01478384 124.12409973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01478385 124.12409973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01478386 124.12412262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01478387 124.12412262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01478388 124.12414551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01478389 124.12414551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01478390 124.12417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01478391 124.12417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01478392 124.12419891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01478393 124.12419891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01478394 124.12422180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01478395 124.12422180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01478396 124.12425232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01478397 124.12425232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01478398 124.12427521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01478399 124.12427521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01478400 124.12429810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01478401 124.12429810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01478402 124.12432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01478403 124.12433624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01478404 124.12435150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01478405 124.12436676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01478406 124.12438965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01478407 124.12438965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01478408 124.12441254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01478409 124.12441254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01478410 124.12444305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01478411 124.12444305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01478412 124.12446594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01478413 124.12446594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01478414 124.12449646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01478415 124.12449646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01478416 124.12451935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01478417 124.12451935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01478418 124.12454224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01478419 124.12454224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01478420 124.12457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01478421 124.12457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01478422 124.12461090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01478423 124.12461090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01478424 124.12463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01478425 124.12463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01478426 124.12465668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01478427 124.12465668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01478428 124.12468719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01478429 124.12468719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01478430 124.12471008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01478431 124.12472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01478432 124.12474823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01478433 124.12474823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01478434 124.12477112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01478435 124.12477112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01478436 124.12480164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01478437 124.12480164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01478438 124.12482452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01478439 124.12482452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01478440 124.12484741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01478441 124.12484741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01478442 124.12487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01478443 124.12487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01478444 124.12490082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01478445 124.12490082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01478446 124.12493134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01478447 124.12493134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01478448 124.12496948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01478449 124.12496948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01478450 124.12499237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01478451 124.12499237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01478452 124.12501526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01478453 124.12501526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01478454 124.12504578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01478455 124.12504578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01478456 124.12506866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01478457 124.12506866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01478458 124.12509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01478459 124.12510681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01478460 124.12512970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01478461 124.12512970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01478462 124.12516022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01478463 124.12516022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01478464 124.12518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01478465 124.12518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01478466 124.12520599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01478467 124.12520599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01478468 124.12523651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01478469 124.12523651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01478470 124.12525940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01478471 124.12525940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01478472 124.12528992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01478473 124.12529755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01478474 124.12531281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01478475 124.12532806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01478476 124.12535095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01478477 124.12535095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01478478 124.12537384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01478479 124.12537384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01478480 124.12540436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01478481 124.12540436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01478482 124.12542725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01478483 124.12542725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01478484 124.12545013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01478485 124.12545013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01478486 124.12548065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01478487 124.12548065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01478488 124.12551880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01478489 124.12551880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01478490 124.12554169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01478491 124.12554169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01478492 124.12556458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01478493 124.12556458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01478494 124.12560272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01478495 124.12560272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01478496 124.12563324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01478497 124.12563324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01478498 124.12565613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01478499 124.12565613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01478500 124.12568665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01478501 124.12568665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01478502 124.12570953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01478503 124.12572479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01478504 124.12574768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01478505 124.12574768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01478506 124.12577057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01478507 124.12577057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01478508 124.12580109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01478509 124.12580109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01478510 124.12582397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01478511 124.12582397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01478512 124.12584686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01478513 124.12586212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01478514 124.12587738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01478515 124.12588501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01478516 124.12591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01478517 124.12591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01478518 124.12593842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01478519 124.12593842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01478520 124.12596130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01478521 124.12596130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01478522 124.12599182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01478523 124.12599182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01478524 124.12601471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01478525 124.12602997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01478526 124.12605286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01478527 124.12605286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01478528 124.12608337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01478529 124.12608337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01478530 124.12610626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01478531 124.12610626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01478532 124.12612915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01478533 124.12612915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01478534 124.12615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01478535 124.12615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01478536 124.12618256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01478537 124.12619781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01478538 124.12622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01478539 124.12622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01478540 124.12624359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01478541 124.12624359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01478542 124.12627411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01478543 124.12627411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01478544 124.12629700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01478545 124.12631226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01478546 124.12631989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01478547 124.12633514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01478548 124.12635803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01478549 124.12635803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01478550 124.12638855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01478551 124.12638855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01478552 124.12641144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01478553 124.12641144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01478554 124.12644196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01478555 124.12644196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01478556 124.12646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01478557 124.12646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01478558 124.12648773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01478559 124.12648773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01478560 124.12651825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01478561 124.12651825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01478562 124.12654114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01478563 124.12654114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01478564 124.12656403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01478565 124.12656403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01478566 124.12659454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01478567 124.12660217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01478568 124.12661743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01478569 124.12663269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01478570 124.12665558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01478571 124.12665558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01478572 124.12667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01478573 124.12667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01478574 124.12670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01478575 124.12670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01478576 124.12673187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01478577 124.12673187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01478578 124.12675476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01478579 124.12675476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01478580 124.12678528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01478581 124.12678528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01478582 124.12680817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01478583 124.12682343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01478584 124.12684631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01478585 124.12684631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01478586 124.12687683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01478587 124.12687683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01478588 124.12689972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01478589 124.12689972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01478590 124.12692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01478591 124.12693787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01478592 124.12696075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01478593 124.12696075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01478594 124.12699127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01478595 124.12699127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01478596 124.12701416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01478597 124.12701416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01478598 124.12703705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01478599 124.12703705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01478600 124.12706757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01478601 124.12707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01478602 124.12710571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01478603 124.12710571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01478604 124.12712860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01478605 124.12712860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01478606 124.12715149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01478607 124.12715149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01478608 124.12718201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01478609 124.12718201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01478610 124.12720490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01478611 124.12720490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01478612 124.12723541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01478613 124.12723541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01478614 124.12725830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01478615 124.12725830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01478616 124.12728119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01478617 124.12728119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01478618 124.12731171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01478619 124.12731171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01478620 124.12733459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01478621 124.12734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01478622 124.12735748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01478623 124.12737274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01478624 124.12738800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01478625 124.12739563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01478626 124.12742615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01478627 124.12742615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01478628 124.12744904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01478629 124.12744904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01478630 124.12747192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01478631 124.12747192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01478632 124.12750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01478633 124.12750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01478634 124.12752533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01478635 124.12752533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01478636 124.12754822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01478637 124.12754822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01478638 124.12757874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01478639 124.12757874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01478640 124.12760162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01478641 124.12760162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01478642 124.12763214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01478643 124.12763977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01478644 124.12765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01478645 124.12767029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01478646 124.12769318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01478647 124.12769318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01478648 124.12771606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01478649 124.12771606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01478650 124.12774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01478651 124.12774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01478652 124.12776947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01478653 124.12776947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01478654 124.12779236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01478655 124.12779236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01478656 124.12782288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01478657 124.12782288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01478658 124.12784576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01478659 124.12784576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01478660 124.12786865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01478661 124.12786865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01478662 124.12789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01478663 124.12789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01478664 124.12792206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01478665 124.12792206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01478666 124.12795258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01478667 124.12796021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01478668 124.12797546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01478669 124.12799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01478670 124.12801361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01478671 124.12801361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01478672 124.12803650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01478673 124.12803650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01478674 124.12806702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01478675 124.12806702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01478676 124.12808990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01478677 124.12808990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01478678 124.12811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01478679 124.12811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01478680 124.12814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01478681 124.12814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01478682 124.12816620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01478683 124.12816620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01478684 124.12818909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01478685 124.12818909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01478686 124.12821960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01478687 124.12821960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01478688 124.12824249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01478689 124.12824249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01478690 124.12826538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01478691 124.12828064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01478692 124.12829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01478693 124.12830353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01478694 124.12833405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01478695 124.12833405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01478696 124.12835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01478697 124.12835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01478698 124.12838745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01478699 124.12838745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01478700 124.12841034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01478701 124.12841034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01478702 124.12843323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01478703 124.12843323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01478704 124.12846375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01478705 124.12846375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01478706 124.12848663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01478707 124.12848663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01478708 124.12850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01478709 124.12850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01478710 124.12854004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01478711 124.12854004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01478712 124.12856293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01478713 124.12857819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01478714 124.12858582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01478715 124.12860107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01478716 124.12862396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01478717 124.12862396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01478718 124.12865448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01478719 124.12865448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01478720 124.12867737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01478721 124.12867737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01478722 124.12870026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01478723 124.12870026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01478724 124.12873077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01478725 124.12874603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01478726 124.12876892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01478727 124.12876892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01478728 124.12879181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01478729 124.12879181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01478730 124.12882233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01478731 124.12882233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01478732 124.12884521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01478733 124.12884521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01478734 124.12886810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01478735 124.12886810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01478736 124.12889862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01478737 124.12889862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01478738 124.12892151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01478739 124.12893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01478740 124.12894440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01478741 124.12895966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01478742 124.12898254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01478743 124.12898254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01478744 124.12901306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01478745 124.12901306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01478746 124.12903595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01478747 124.12903595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01478748 124.12905884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01478749 124.12905884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01478750 124.12908936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01478751 124.12910461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01478752 124.12912750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01478753 124.12912750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01478754 124.12915039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01478755 124.12915039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01478756 124.12918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01478757 124.12918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01478758 124.12920380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01478759 124.12920380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01478760 124.12922668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01478761 124.12924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01478762 124.12926483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01478763 124.12926483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01478764 124.12929535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01478765 124.12929535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01478766 124.12931824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01478767 124.12931824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01478768 124.12934113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01478769 124.12934113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01478770 124.12937164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01478771 124.12937164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01478772 124.12939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01478773 124.12939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01478774 124.12941742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01478775 124.12941742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01478776 124.12944794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01478777 124.12944794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01478778 124.12947083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01478779 124.12947083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01478780 124.12950134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01478781 124.12950897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01478782 124.12952423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01478783 124.12953949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01478784 124.12956238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01478785 124.12956238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01478786 124.12958527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01478787 124.12958527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01478788 124.12961578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01478789 124.12961578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01478790 124.12963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01478791 124.12963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01478792 124.12966156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01478793 124.12966156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01478794 124.12969208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01478795 124.12969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01478796 124.12973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01478797 124.12973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01478798 124.12975311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01478799 124.12975311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01478800 124.12977600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01478801 124.12977600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01478802 124.12980652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01478803 124.12980652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01478804 124.12982941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01478805 124.12982941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01478806 124.12985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01478807 124.12985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01478808 124.12988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01478809 124.12988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01478810 124.12990570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01478811 124.12992096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01478812 124.12993622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01478813 124.12994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01478814 124.12997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01478815 124.12997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01478816 124.12999725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01478817 124.12999725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01478818 124.13002014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01478819 124.13002014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01478820 124.13005066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01478821 124.13005066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01478822 124.13007355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01478823 124.13007355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01478824 124.13009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01478825 124.13009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01478826 124.13012695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01478827 124.13012695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01478828 124.13014984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01478829 124.13014984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01478830 124.13017273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01478831 124.13017273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01478832 124.13020325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01478833 124.13021088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01478834 124.13022614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01478835 124.13024139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01478836 124.13026428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01478837 124.13026428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01478838 124.13029480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01478839 124.13029480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01478840 124.13031769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01478841 124.13031769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01478842 124.13034058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01478843 124.13034058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01478844 124.13037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01478845 124.13037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01478846 124.13039398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01478847 124.13039398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01478848 124.13041687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01478849 124.13041687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01478850 124.13044739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01478851 124.13044739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01478852 124.13047028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01478853 124.13047028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01478854 124.13049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01478855 124.13049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01478856 124.13052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01478857 124.13053131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01478858 124.13056183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01478859 124.13056183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01478860 124.13058472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01478861 124.13058472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01478862 124.13060760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01478863 124.13060760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01478864 124.13063812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01478865 124.13063812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01478866 124.13066101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01478867 124.13066101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01478868 124.13069153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01478869 124.13069916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01478870 124.13072968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01478871 124.13072968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01478872 124.13075256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01478873 124.13075256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01478874 124.13077545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01478875 124.13077545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01478876 124.13080597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01478877 124.13080597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01478878 124.13082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01478879 124.13082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01478880 124.13085175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01478881 124.13086700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01478882 124.13088226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01478883 124.13088989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01478884 124.13092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01478885 124.13092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01478886 124.13094330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01478887 124.13094330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01478888 124.13096619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01478889 124.13096619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01478890 124.13099670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01478891 124.13099670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01478892 124.13101959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01478893 124.13101959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01478894 124.13105011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01478895 124.13105011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01478896 124.13107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01478897 124.13107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01478898 124.13109589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01478899 124.13109589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01478900 124.13112640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01478901 124.13112640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01478902 124.13114929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01478903 124.13114929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01478904 124.13117218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01478905 124.13117218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01478906 124.13120270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01478907 124.13121033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01478908 124.13122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01478909 124.13124084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01478910 124.13126373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01478911 124.13126373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01478912 124.13128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01478913 124.13128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01478914 124.13131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01478915 124.13131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01478916 124.13134003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01478917 124.13134003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01478918 124.13136292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01478919 124.13136292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01478920 124.13139343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01478921 124.13139343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01478922 124.13141632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01478923 124.13141632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01478924 124.13144684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01478925 124.13144684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01478926 124.13146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01478927 124.13146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01478928 124.13149261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01478929 124.13150787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01478930 124.13152313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01478931 124.13153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01478932 124.13156128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01478933 124.13156128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01478934 124.13158417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01478935 124.13158417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01478936 124.13160706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01478937 124.13160706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01478938 124.13163757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01478939 124.13163757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01478940 124.13166046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01478941 124.13166046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01478942 124.13168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01478943 124.13168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01478944 124.13171387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01478945 124.13171387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01478946 124.13173676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01478947 124.13173676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01478948 124.13175964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01478949 124.13175964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01478950 124.13179016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01478951 124.13179779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01478952 124.13181305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01478953 124.13182831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01478954 124.13185120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01478955 124.13185120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01478956 124.13188171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01478957 124.13188171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01478958 124.13190460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01478959 124.13190460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01478960 124.13192749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01478961 124.13192749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01478962 124.13195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01478963 124.13195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01478964 124.13198090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01478965 124.13198090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01478966 124.13200378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01478967 124.13200378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01478968 124.13203430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01478969 124.13203430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01478970 124.13205719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01478971 124.13205719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01478972 124.13208008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01478973 124.13208008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01478974 124.13211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01478975 124.13211823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01478976 124.13213348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01478977 124.13214874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01478978 124.13217163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01478979 124.13217163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01478980 124.13220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01478981 124.13220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01478982 124.13222504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01478983 124.13222504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01478984 124.13224792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01478985 124.13224792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01478986 124.13227844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01478987 124.13227844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01478988 124.13230133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01478989 124.13230133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01478990 124.13232422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01478991 124.13232422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01478992 124.13235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01478993 124.13235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01478994 124.13237762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01478995 124.13237762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01478996 124.13240051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01478997 124.13240051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01478998 124.13243103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01478999 124.13243103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01479000 124.13245392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01479001 124.13246918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01479002 124.13247681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01479003 124.13249207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01479004 124.13251495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01479005 124.13251495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01479006 124.13254547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01479007 124.13254547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01479008 124.13256836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01479009 124.13256836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01479010 124.13259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01479011 124.13259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01479012 124.13262177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01479013 124.13262177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01479014 124.13264465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01479015 124.13264465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01479016 124.13267517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01479017 124.13267517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01479018 124.13269806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01479019 124.13269806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01479020 124.13272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01479021 124.13272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01479022 124.13275146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01479023 124.13275909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01479024 124.13277435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01479025 124.13278961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01479026 124.13281250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01479027 124.13281250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01479028 124.13283539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01479029 124.13283539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01479030 124.13286591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01479031 124.13286591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01479032 124.13288879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01479033 124.13288879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01479034 124.13291168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01479035 124.13291168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01479036 124.13294220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01479037 124.13294220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01479038 124.13296509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01479039 124.13298035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01479040 124.13300323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01479041 124.13300323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01479042 124.13303375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01479043 124.13303375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01479044 124.13305664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01479045 124.13305664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01479046 124.13307953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01479047 124.13309479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01479048 124.13311768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01479049 124.13311768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01479050 124.13314819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01479051 124.13314819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01479052 124.13317108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01479053 124.13317108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01479054 124.13319397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01479055 124.13319397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01479056 124.13322449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01479057 124.13323212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01479058 124.13326263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01479059 124.13326263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01479060 124.13328552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01479061 124.13328552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01479062 124.13330841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01479063 124.13330841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01479064 124.13333893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01479065 124.13335419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01479066 124.13337708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01479067 124.13337708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01479068 124.13339996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01479069 124.13339996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01479070 124.13343048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01479071 124.13343048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01479072 124.13345337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01479073 124.13345337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01479074 124.13347626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01479075 124.13347626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01479076 124.13350677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01479077 124.13350677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01479078 124.13352966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01479079 124.13352966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01479080 124.13355255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01479081 124.13355255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01479082 124.13358307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01479083 124.13358307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01479084 124.13360596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01479085 124.13362122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01479086 124.13362885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01479087 124.13364410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01479088 124.13366699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01479089 124.13366699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01479090 124.13369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01479091 124.13369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01479092 124.13372040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01479093 124.13372040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01479094 124.13375092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01479095 124.13375092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01479096 124.13377380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01479097 124.13377380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01479098 124.13379669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01479099 124.13379669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01479100 124.13382721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01479101 124.13382721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01479102 124.13385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01479103 124.13385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01479104 124.13387299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01479105 124.13387299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01479106 124.13390350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01479107 124.13390350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01479108 124.13392639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01479109 124.13394165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01479110 124.13394928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01479111 124.13396454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01479112 124.13398743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01479113 124.13398743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01479114 124.13401794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01479115 124.13401794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01479116 124.13404083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01479117 124.13404083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01479118 124.13406372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01479119 124.13406372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01479120 124.13409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01479121 124.13409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01479122 124.13411713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01479123 124.13411713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01479124 124.13414764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01479125 124.13414764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01479126 124.13417053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01479127 124.13417053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01479128 124.13419342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01479129 124.13419342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01479130 124.13422394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01479131 124.13422394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01479132 124.13424683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01479133 124.13426208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01479134 124.13426971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01479135 124.13428497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01479136 124.13430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01479137 124.13430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01479138 124.13433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01479139 124.13433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01479140 124.13436127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01479141 124.13436127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01479142 124.13438416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01479143 124.13438416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01479144 124.13441467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01479145 124.13441467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01479146 124.13443756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01479147 124.13443756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01479148 124.13446045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01479149 124.13446045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01479150 124.13449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01479151 124.13449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01479152 124.13451385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01479153 124.13451385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01479154 124.13454437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01479155 124.13455200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01479156 124.13456726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01479157 124.13458252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01479158 124.13460541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01479159 124.13460541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01479160 124.13462830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01479161 124.13462830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01479162 124.13465881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01479163 124.13466644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01479164 124.13469696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01479165 124.13469696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01479166 124.13471985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01479167 124.13471985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01479168 124.13474274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01479169 124.13474274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01479170 124.13477325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01479171 124.13477325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01479172 124.13479614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01479173 124.13481140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01479174 124.13481903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01479175 124.13483429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01479176 124.13485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01479177 124.13485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01479178 124.13488770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01479179 124.13488770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01479180 124.13491058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01479181 124.13491058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01479182 124.13494110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01479183 124.13494110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01479184 124.13496399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01479185 124.13496399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01479186 124.13498688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01479187 124.13498688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01479188 124.13501740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01479189 124.13501740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01479190 124.13504028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01479191 124.13504028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01479192 124.13506317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01479193 124.13506317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01479194 124.13509369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01479195 124.13509369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01479196 124.13511658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01479197 124.13513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01479198 124.13513947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01479199 124.13515472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01479200 124.13517761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01479201 124.13517761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01479202 124.13520813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01479203 124.13520813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01479204 124.13523102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01479205 124.13523102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01479206 124.13525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01479207 124.13525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01479208 124.13528442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01479209 124.13528442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01479210 124.13530731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01479211 124.13530731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01479212 124.13533783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01479213 124.13533783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01479214 124.13536072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01479215 124.13536072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01479216 124.13538361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01479217 124.13538361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01479218 124.13541412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01479219 124.13541412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01479220 124.13543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01479221 124.13545227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01479222 124.13549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01479223 124.13551331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01479224 124.13553619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01479225 124.13553619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01479226 124.13556671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01479227 124.13556671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01479228 124.13558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01479229 124.13558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01479230 124.13561249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01479231 124.13561249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01479232 124.13564301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01479233 124.13564301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01479234 124.13566589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01479235 124.13566589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01479236 124.13569641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01479237 124.13569641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01479238 124.13571930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01479239 124.13571930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01479240 124.13574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01479241 124.13574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01479242 124.13577271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01479243 124.13578033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01479244 124.13579559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01479245 124.13581085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01479246 124.13583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01479247 124.13583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01479248 124.13585663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01479249 124.13585663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01479250 124.13588715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01479251 124.13588715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01479252 124.13591003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01479253 124.13591003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01479254 124.13593292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01479255 124.13593292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01479256 124.13596344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01479257 124.13596344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01479258 124.13598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01479259 124.13598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01479260 124.13600922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01479261 124.13600922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01479262 124.13603973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01479263 124.13603973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01479264 124.13606262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01479265 124.13606262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01479266 124.13609314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01479267 124.13610077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01479268 124.13611603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01479269 124.13613129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01479270 124.13615417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01479271 124.13615417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01479272 124.13617706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01479273 124.13617706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01479274 124.13620758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01479275 124.13620758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01479276 124.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01479277 124.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01479278 124.13625336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01479279 124.13625336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01479280 124.13628387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01479281 124.13628387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01479282 124.13630676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01479283 124.13630676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01479284 124.13632965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01479285 124.13632965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01479286 124.13636017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01479287 124.13636017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01479288 124.13638306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01479289 124.13639832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01479290 124.13640594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01479291 124.13642120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01479292 124.13645172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01479293 124.13645172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01479294 124.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01479295 124.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01479296 124.13649750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01479297 124.13649750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01479298 124.13652802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01479299 124.13652802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01479300 124.13655090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01479301 124.13655090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01479302 124.13657379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01479303 124.13657379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01479304 124.13660431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01479305 124.13660431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01479306 124.13662720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01479307 124.13662720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01479308 124.13665009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01479309 124.13665009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01479310 124.13668823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01479311 124.13668823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01479312 124.13671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01479313 124.13672638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01479314 124.13675690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01479315 124.13675690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01479316 124.13677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01479317 124.13677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01479318 124.13680267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01479319 124.13680267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01479320 124.13683319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01479321 124.13684845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01479322 124.13687134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01479323 124.13687134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01479324 124.13689423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01479325 124.13689423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01479326 124.13692474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01479327 124.13692474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01479328 124.13694763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01479329 124.13694763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01479330 124.13697052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01479331 124.13697052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01479332 124.13700104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01479333 124.13700104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01479334 124.13702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01479335 124.13703918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01479336 124.13706207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01479337 124.13706207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01479338 124.13708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01479339 124.13708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01479340 124.13711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01479341 124.13711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01479342 124.13713837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01479343 124.13715363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01479344 124.13717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01479345 124.13717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01479346 124.13719940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01479347 124.13719940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01479348 124.13722992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01479349 124.13722992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01479350 124.13725281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01479351 124.13725281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01479352 124.13729095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01479353 124.13729095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01479354 124.13732147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01479355 124.13732147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01479356 124.13734436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01479357 124.13734436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01479358 124.13736725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01479359 124.13736725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01479360 124.13739777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01479361 124.13740540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01479362 124.13743591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01479363 124.13743591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01479364 124.13745880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01479365 124.13745880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01479366 124.13748169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01479367 124.13748169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01479368 124.13751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01479369 124.13751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01479370 124.13753510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01479371 124.13755035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01479372 124.13755798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01479373 124.13757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01479374 124.13760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01479375 124.13760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01479376 124.13762665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01479377 124.13762665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01479378 124.13764954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01479379 124.13764954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01479380 124.13768005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01479381 124.13768005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01479382 124.13770294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01479383 124.13770294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01479384 124.13772583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01479385 124.13774109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01479386 124.13776398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01479387 124.13776398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01479388 124.13779449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01479389 124.13779449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01479390 124.13781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01479391 124.13781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01479392 124.13784027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01479393 124.13784027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01479394 124.13787842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01479395 124.13787842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01479396 124.13790894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01479397 124.13790894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01479398 124.13793182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01479399 124.13793182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01479400 124.13795471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01479401 124.13795471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01479402 124.13800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01479403 124.13800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01479404 124.13802338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01479405 124.13802338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01479406 124.13804626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01479407 124.13804626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01479408 124.13807678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01479409 124.13807678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01479410 124.13811493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01479411 124.13811493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01479412 124.13813782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01479413 124.13813782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01479414 124.13816071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01479415 124.13816071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01479416 124.13819122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01479417 124.13819122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01479418 124.13821411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01479419 124.13821411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01479420 124.13823700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01479421 124.13823700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01479422 124.13826752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01479423 124.13827515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01479424 124.13830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01479425 124.13830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01479426 124.13832855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01479427 124.13832855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01479428 124.13835144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01479429 124.13835144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01479430 124.13838196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01479431 124.13839722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01479432 124.13842010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01479433 124.13842010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01479434 124.13844299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01479435 124.13844299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01479436 124.13847351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01479437 124.13847351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01479438 124.13849640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01479439 124.13851166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01479440 124.13853455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01479441 124.13853455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01479442 124.13855743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01479443 124.13855743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01479444 124.13858795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01479445 124.13858795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01479446 124.13861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01479447 124.13861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01479448 124.13863373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01479449 124.13864899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01479450 124.13867188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01479451 124.13867188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01479452 124.13870239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01479453 124.13870239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01479454 124.13872528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01479455 124.13872528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01479456 124.13875580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01479457 124.13876343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01479458 124.13879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01479459 124.13879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01479460 124.13881683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01479461 124.13881683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01479462 124.13883972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01479463 124.13883972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01479464 124.13887024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01479465 124.13887024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01479466 124.13889313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01479467 124.13890839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01479468 124.13893127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01479469 124.13893127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01479470 124.13895416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01479471 124.13895416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01479472 124.13898468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01479473 124.13898468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01479474 124.13900757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01479475 124.13900757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01479476 124.13903046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01479477 124.13904572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01479478 124.13906860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01479479 124.13906860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01479480 124.13909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01479481 124.13909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01479482 124.13912201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01479483 124.13912201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01479484 124.13915253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01479485 124.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01479486 124.13919067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01479487 124.13919067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01479488 124.13921356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01479489 124.13921356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01479490 124.13923645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01479491 124.13923645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01479492 124.13926697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01479493 124.13926697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01479494 124.13928986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01479495 124.13930511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01479496 124.13932800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01479497 124.13932800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01479498 124.13935089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01479499 124.13935089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01479500 124.13938141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01479501 124.13938141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01479502 124.13940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01479503 124.13940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01479504 124.13942719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01479505 124.13944244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01479506 124.13946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01479507 124.13946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01479508 124.13949585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01479509 124.13949585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01479510 124.13951874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01479511 124.13951874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01479512 124.13954926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01479513 124.13954926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01479514 124.13958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01479515 124.13958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01479516 124.13961029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01479517 124.13961029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01479518 124.13963318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01479519 124.13963318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01479520 124.13966370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01479521 124.13966370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01479522 124.13968658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01479523 124.13970184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01479524 124.13972473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01479525 124.13972473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01479526 124.13974762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01479527 124.13974762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01479528 124.13977814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01479529 124.13977814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01479530 124.13980103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01479531 124.13980103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01479532 124.13982391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01479533 124.13983917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01479534 124.13986206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01479535 124.13986206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01479536 124.13989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01479537 124.13989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01479538 124.13991547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01479539 124.13991547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01479540 124.13994598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01479541 124.13994598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01479542 124.13996887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01479543 124.13998413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01479544 124.14000702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01479545 124.14000702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01479546 124.14002991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01479547 124.14002991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01479548 124.14006042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01479549 124.14006042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01479550 124.14008331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01479551 124.14008331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01479552 124.14010620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01479553 124.14012146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01479554 124.14014435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01479555 124.14014435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01479556 124.14017487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01479557 124.14017487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01479558 124.14019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01479559 124.14019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01479560 124.14023590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01479561 124.14023590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01479562 124.14025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01479563 124.14025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01479564 124.14028931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01479565 124.14028931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01479566 124.14031219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01479567 124.14032745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01479568 124.14035034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01479569 124.14035034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01479570 124.14038086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01479571 124.14038086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01479572 124.14040375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01479573 124.14040375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01479574 124.14042664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01479575 124.14042664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01479576 124.14045715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01479577 124.14046478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01479578 124.14049530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01479579 124.14049530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01479580 124.14051819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01479581 124.14051819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01479582 124.14054108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01479583 124.14054108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01479584 124.14057159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01479585 124.14057922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01479586 124.14060974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01479587 124.14060974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01479588 124.14063263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01479589 124.14063263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01479590 124.14065552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01479591 124.14065552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01479592 124.14068604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01479593 124.14070129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01479594 124.14072418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01479595 124.14072418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01479596 124.14074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01479597 124.14074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01479598 124.14077759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01479599 124.14078522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01479600 124.14081573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01479601 124.14081573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01479602 124.14083862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01479603 124.14083862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01479604 124.14086151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01479605 124.14086151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01479606 124.14089203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01479607 124.14089203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01479608 124.14091492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01479609 124.14093018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01479610 124.14095306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01479611 124.14095306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01479612 124.14097595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01479613 124.14097595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01479614 124.14100647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01479615 124.14100647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01479616 124.14102936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01479617 124.14102936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01479618 124.14105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01479619 124.14105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01479620 124.14108276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01479621 124.14109802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01479622 124.14110565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01479623 124.14112091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01479624 124.14114380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01479625 124.14114380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01479626 124.14117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01479627 124.14117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01479628 124.14119720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01479629 124.14119720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01479630 124.14122009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01479631 124.14123535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01479632 124.14125824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01479633 124.14125824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01479634 124.14128876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01479635 124.14128876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01479636 124.14131165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01479637 124.14131165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01479638 124.14133453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01479639 124.14134979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01479640 124.14136505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01479641 124.14137268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01479642 124.14140320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01479643 124.14140320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01479644 124.14142609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01479645 124.14142609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01479646 124.14145660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01479647 124.14145660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01479648 124.14147949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01479649 124.14149475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01479650 124.14151764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01479651 124.14151764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01479652 124.14154053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01479653 124.14154053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01479654 124.14157104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01479655 124.14157104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01479656 124.14159393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01479657 124.14159393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01479658 124.14163208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01479659 124.14163208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01479660 124.14165497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01479661 124.14165497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01479662 124.14168549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01479663 124.14168549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01479664 124.14170837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01479665 124.14170837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01479666 124.14173126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01479667 124.14173126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01479668 124.14176178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01479669 124.14176178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01479670 124.14178467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01479671 124.14179993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01479672 124.14182281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01479673 124.14182281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01479674 124.14185333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01479675 124.14185333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01479676 124.14187622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01479677 124.14187622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01479678 124.14189911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01479679 124.14189911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01479680 124.14192963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01479681 124.14193726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01479682 124.14196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01479683 124.14196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01479684 124.14199066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01479685 124.14199066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01479686 124.14201355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01479687 124.14201355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01479688 124.14204407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01479689 124.14205170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01479690 124.14208221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01479691 124.14208221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01479692 124.14210510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01479693 124.14210510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01479694 124.14212799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01479695 124.14212799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01479696 124.14215851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01479697 124.14215851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01479698 124.14218140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01479699 124.14218140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01479700 124.14220428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01479701 124.14221954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01479702 124.14225006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01479703 124.14225006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01479704 124.14227295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01479705 124.14227295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01479706 124.14229584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01479707 124.14229584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01479708 124.14232635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01479709 124.14232635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01479710 124.14234924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01479711 124.14234924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01479712 124.14237213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01479713 124.14238739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01479714 124.14241028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01479715 124.14241028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01479716 124.14244080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01479717 124.14244080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01479718 124.14246368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01479719 124.14246368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01479720 124.14248657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01479721 124.14250183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01479722 124.14252472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01479723 124.14252472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01479724 124.14255524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01479725 124.14255524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01479726 124.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01479727 124.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01479728 124.14260101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01479729 124.14260101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01479730 124.14263153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01479731 124.14264679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01479732 124.14266968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01479733 124.14266968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01479734 124.14269257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01479735 124.14269257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01479736 124.14272308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01479737 124.14272308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01479738 124.14274597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01479739 124.14274597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01479740 124.14278412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01479741 124.14278412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01479742 124.14280701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01479743 124.14280701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01479744 124.14283752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01479745 124.14283752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01479746 124.14286041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01479747 124.14286041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01479748 124.14288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01479749 124.14289856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01479750 124.14292145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01479751 124.14292145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01479752 124.14295197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01479753 124.14295197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01479754 124.14297485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01479755 124.14297485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01479756 124.14300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01479757 124.14300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01479758 124.14302826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01479759 124.14302826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01479760 124.14305115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01479761 124.14306641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01479762 124.14308167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01479763 124.14308929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01479764 124.14311981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01479765 124.14311981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01479766 124.14314270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01479767 124.14314270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01479768 124.14316559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01479769 124.14316559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01479770 124.14319611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01479771 124.14320374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01479772 124.14323425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01479773 124.14323425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01479774 124.14325714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01479775 124.14325714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01479776 124.14328003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01479777 124.14328003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01479778 124.14331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01479779 124.14331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01479780 124.14333344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01479781 124.14334869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01479782 124.14335632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01479783 124.14337158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01479784 124.14340210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01479785 124.14340210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01479786 124.14342499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01479787 124.14342499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01479788 124.14344788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01479789 124.14344788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01479790 124.14347839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01479791 124.14348602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01479792 124.14351654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01479793 124.14351654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01479794 124.14353943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01479795 124.14353943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01479796 124.14356232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01479797 124.14356232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01479798 124.14359283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01479799 124.14360046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01479800 124.14363098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01479801 124.14363098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01479802 124.14365387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01479803 124.14365387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01479804 124.14367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01479805 124.14367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01479806 124.14370728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01479807 124.14370728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01479808 124.14373016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01479809 124.14373016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01479810 124.14375305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01479811 124.14375305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01479812 124.14378357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01479813 124.14379883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01479814 124.14382172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01479815 124.14382172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01479816 124.14384460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01479817 124.14384460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01479818 124.14387512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01479819 124.14387512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01479820 124.14389801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01479821 124.14389801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01479822 124.14392090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01479823 124.14393616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01479824 124.14395905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01479825 124.14395905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01479826 124.14398956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01479827 124.14398956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01479828 124.14401245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01479829 124.14401245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01479830 124.14403534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01479831 124.14403534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01479832 124.14406586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01479833 124.14407349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01479834 124.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01479835 124.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01479836 124.14412689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01479837 124.14412689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01479838 124.14415741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01479839 124.14415741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01479840 124.14418030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01479841 124.14418030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01479842 124.14420319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01479843 124.14421844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01479844 124.14424133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01479845 124.14424133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01479846 124.14427185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01479847 124.14427185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01479848 124.14429474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01479849 124.14429474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01479850 124.14431763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01479851 124.14431763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01479852 124.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01479853 124.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01479854 124.14438629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01479855 124.14438629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01479856 124.14440918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01479857 124.14440918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01479858 124.14443207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01479859 124.14443207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01479860 124.14446259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01479861 124.14446259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01479862 124.14448547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01479863 124.14448547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01479864 124.14450836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01479865 124.14452362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01479866 124.14455414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01479867 124.14455414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01479868 124.14457703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01479869 124.14457703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01479870 124.14459991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01479871 124.14459991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01479872 124.14463043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01479873 124.14463043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01479874 124.14466858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01479875 124.14466858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01479876 124.14469147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01479877 124.14469147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01479878 124.14471436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01479879 124.14471436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01479880 124.14474487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01479881 124.14474487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01479882 124.14476776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01479883 124.14478302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01479884 124.14480591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01479885 124.14480591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01479886 124.14482880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01479887 124.14482880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01479888 124.14485931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01479889 124.14485931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01479890 124.14488220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01479891 124.14488220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01479892 124.14490509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01479893 124.14492035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01479894 124.14495087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01479895 124.14495087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01479896 124.14497375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01479897 124.14497375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01479898 124.14499664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01479899 124.14499664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01479900 124.14502716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01479901 124.14502716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01479902 124.14505005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01479903 124.14505005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01479904 124.14507294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01479905 124.14507294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01479906 124.14510345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01479907 124.14511108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01479908 124.14514160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01479909 124.14514160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01479910 124.14516449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01479911 124.14516449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01479912 124.14518738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01479913 124.14518738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01479914 124.14521790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01479915 124.14522552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01479916 124.14525604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01479917 124.14525604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01479918 124.14527893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01479919 124.14527893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01479920 124.14530182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01479921 124.14530182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01479922 124.14533234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01479923 124.14533234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01479924 124.14535522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01479925 124.14535522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01479926 124.14539337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01479927 124.14539337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01479928 124.14542389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01479929 124.14542389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01479930 124.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01479931 124.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01479932 124.14546967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01479933 124.14546967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01479934 124.14550018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01479935 124.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01479936 124.14553833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01479937 124.14553833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01479938 124.14556122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01479939 124.14556122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01479940 124.14558411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01479941 124.14558411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01479942 124.14561462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01479943 124.14562225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01479944 124.14563751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01479945 124.14565277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01479946 124.14567566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01479947 124.14567566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01479948 124.14570618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01479949 124.14570618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01479950 124.14572906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01479951 124.14572906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01479952 124.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01479953 124.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01479954 124.14578247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01479955 124.14578247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01479956 124.14580536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01479957 124.14582062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01479958 124.14584351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01479959 124.14584351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01479960 124.14586639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01479961 124.14586639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01479962 124.14589691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01479963 124.14589691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01479964 124.14591980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01479965 124.14591980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01479966 124.14594269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01479967 124.14595795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01479968 124.14598083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01479969 124.14598083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01479970 124.14601135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01479971 124.14601135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01479972 124.14603424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01479973 124.14603424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01479974 124.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01479975 124.14607239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01479976 124.14610291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01479977 124.14610291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01479978 124.14612579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01479979 124.14612579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01479980 124.14614868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01479981 124.14614868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01479982 124.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01479983 124.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01479984 124.14620209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01479985 124.14621735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01479986 124.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01479987 124.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01479988 124.14626312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01479989 124.14626312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01479990 124.14629364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01479991 124.14629364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01479992 124.14631653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01479993 124.14631653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01479994 124.14633942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01479995 124.14633942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01479996 124.14636993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01479997 124.14636993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01479998 124.14639282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01479999 124.14640808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01480000 124.14643097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01480001 124.14643097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01480002 124.14645386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01480003 124.14645386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01480004 124.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01480005 124.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01480006 124.14650726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01480007 124.14652252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01480008 124.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01480009 124.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01480010 124.14657593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01480011 124.14657593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01480012 124.14659882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01480013 124.14659882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01480014 124.14662170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01480015 124.14662170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01480016 124.14665222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01480017 124.14665985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01480018 124.14669037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01480019 124.14669037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01480020 124.14671326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01480021 124.14671326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01480022 124.14673615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01480023 124.14673615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01480024 124.14676666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01480025 124.14676666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01480026 124.14678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01480027 124.14680481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01480028 124.14682770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01480029 124.14682770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01480030 124.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01480031 124.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01480032 124.14688110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01480033 124.14688110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01480034 124.14690399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01480035 124.14690399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01480036 124.14693451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01480037 124.14693451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01480038 124.14695740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01480039 124.14697266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01480040 124.14699554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01480041 124.14699554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01480042 124.14701843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01480043 124.14701843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01480044 124.14704895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01480045 124.14704895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01480046 124.14707184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01480047 124.14707184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01480048 124.14709473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01480049 124.14710999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01480050 124.14713287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01480051 124.14713287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01480052 124.14716339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01480053 124.14716339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01480054 124.14718628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01480055 124.14718628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01480056 124.14720917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01480057 124.14720917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01480058 124.14723969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01480059 124.14725494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01480060 124.14727783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01480061 124.14727783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01480062 124.14730072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01480063 124.14730072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01480064 124.14733124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01480065 124.14733124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01480066 124.14735413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01480067 124.14735413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01480068 124.14737701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01480069 124.14739227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01480070 124.14741516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01480071 124.14741516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01480072 124.14744568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01480073 124.14744568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01480074 124.14746857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01480075 124.14746857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01480076 124.14749146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01480077 124.14749146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01480078 124.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01480079 124.14752960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01480080 124.14756012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01480081 124.14756012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01480082 124.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01480083 124.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01480084 124.14760590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01480085 124.14762115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01480086 124.14765167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01480087 124.14765167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01480088 124.14767456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01480089 124.14767456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01480090 124.14769745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01480091 124.14769745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01480092 124.14772797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01480093 124.14772797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01480094 124.14775085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01480095 124.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01480096 124.14777374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01480097 124.14778900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01480098 124.14781189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01480099 124.14781189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01480100 124.14784241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01480101 124.14784241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01480102 124.14786530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01480103 124.14786530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01480104 124.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01480105 124.14790344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01480106 124.14792633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01480107 124.14792633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01480108 124.14795685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01480109 124.14795685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01480110 124.14797974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01480111 124.14797974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01480112 124.14800262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01480113 124.14800262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01480114 124.14803314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01480115 124.14803314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01480116 124.14805603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01480117 124.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01480118 124.14809418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01480119 124.14809418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01480120 124.14812469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01480121 124.14812469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01480122 124.14814758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01480123 124.14814758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01480124 124.14817047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01480125 124.14817047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01480126 124.14820099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01480127 124.14820862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01480128 124.14823914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01480129 124.14823914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01480130 124.14826202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01480131 124.14826202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01480132 124.14828491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01480133 124.14828491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01480134 124.14831543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01480135 124.14831543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01480136 124.14833832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01480137 124.14833832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01480138 124.14836121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01480139 124.14836121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01480140 124.14840698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01480141 124.14840698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01480142 124.14842987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01480143 124.14842987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01480144 124.14845276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01480145 124.14845276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01480146 124.14848328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01480147 124.14848328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01480148 124.14850616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01480149 124.14852142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01480150 124.14854431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01480151 124.14854431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01480152 124.14856720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01480153 124.14856720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01480154 124.14859772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01480155 124.14859772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01480156 124.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01480157 124.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01480158 124.14864349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01480159 124.14865875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01480160 124.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01480161 124.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01480162 124.14871216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01480163 124.14871216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01480164 124.14873505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01480165 124.14873505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01480166 124.14875793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01480167 124.14875793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01480168 124.14878845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01480169 124.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01480170 124.14882660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01480171 124.14882660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01480172 124.14884949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01480173 124.14884949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01480174 124.14888000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01480175 124.14888000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01480176 124.14890289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01480177 124.14891815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01480178 124.14892578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01480179 124.14894104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01480180 124.14896393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01480181 124.14896393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01480182 124.14899445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01480183 124.14899445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01480184 124.14901733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01480185 124.14901733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01480186 124.14904022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01480187 124.14904022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01480188 124.14907074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01480189 124.14907074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01480730 124.15676117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -01480731 124.15676117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -01480732 124.15678406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -01480733 124.15678406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -01480734 124.15681458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -01480735 124.15681458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -01480736 124.15683746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -01480737 124.15683746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -01480738 124.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -01480739 124.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -01480740 124.15689087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -01480741 124.15689087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -01480742 124.15691376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -01480743 124.15692902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -01480744 124.15695190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -01480745 124.15695190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -01480746 124.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -01480747 124.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -01480748 124.15700531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -01480749 124.15700531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -01480750 124.15702820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -01480751 124.15702820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -01480752 124.15705872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -01480753 124.15706635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -01480754 124.15709686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -01480755 124.15709686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -01480756 124.15711975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -01480757 124.15711975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -01480758 124.15714264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -01480759 124.15714264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -01480760 124.15717316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -01480761 124.15718079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -01480762 124.15721130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -01480763 124.15721130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -01480764 124.15723419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -01480765 124.15723419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -01480766 124.15725708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01480767 124.15725708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01480768 124.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01480769 124.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01480770 124.15731049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01480771 124.15731049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01480772 124.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01480773 124.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01482058 124.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -01482059 124.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -01482060 124.17519379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -01482061 124.17520905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -01482062 124.17521667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -01482063 124.17523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -01482064 124.17525482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -01482065 124.17525482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -01482066 124.17528534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -01482067 124.17528534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -01482068 124.17530823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -01482069 124.17530823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -01482070 124.17533112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -01482071 124.17533112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -01482072 124.17536163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -01482073 124.17536163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -01482074 124.17538452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -01482075 124.17538452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -01482076 124.17540741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -01482077 124.17540741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -01482078 124.17543793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -01482079 124.17543793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -01482080 124.17546082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -01482081 124.17546082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -01482082 124.17549133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -01482083 124.17549133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -01482084 124.17551422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -01482085 124.17552948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -01482086 124.17555237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -01482087 124.17555237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -01482088 124.17557526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -01482089 124.17557526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -01482090 124.17560577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -01482091 124.17560577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -01482092 124.17562866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -01482093 124.17562866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -01482094 124.17565155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -01482095 124.17565155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -01482096 124.17568207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -01482097 124.17568207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -01482098 124.17570496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -01482099 124.17570496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -01482100 124.17572784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10268 -01482101 124.17572784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10268 -01484441 124.20807648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -01484442 124.20807648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -01484443 124.20809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -01484444 124.20811462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -01484445 124.20813751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -01484446 124.20813751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -01484447 124.20816803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -01484448 124.20816803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -01484449 124.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -01484450 124.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -01484451 124.20821381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -01484452 124.20821381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -01484453 124.20824432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -01484454 124.20824432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -01484455 124.20826721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -01484456 124.20828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -01484457 124.20830536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -01484458 124.20830536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -01484459 124.20833588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -01484460 124.20833588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -01484461 124.20835876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -01484462 124.20835876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -01484463 124.20838165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -01484464 124.20838165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -01484465 124.20841217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -01484466 124.20841980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -01484467 124.20845032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -01484468 124.20845032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -01484469 124.20847321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -01484470 124.20847321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -01484471 124.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -01484472 124.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -01484473 124.20852661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -01484474 124.20852661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -01484475 124.20854950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c98 -01484476 124.20854950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c98 -01484477 124.20857239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca8 -01484478 124.20858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca8 -01484479 124.20861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb8 -01484480 124.20861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb8 -01484481 124.20864105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc8 -01484482 124.20864105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc8 -01484483 124.20866394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd8 -01484484 124.20866394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd8 -01516243 125.34683228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01516244 125.34683990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01516245 125.34938812 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516246 125.77555084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01516247 125.77556610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01516248 125.78548431 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01516249 125.80468750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516250 125.80469513 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516251 125.81112671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516252 125.83496857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516253 125.85015106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516254 125.87920380 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516255 125.89389038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516256 125.92936707 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516257 125.93181610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516258 125.96756744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516259 125.96943665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516260 125.97034454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516261 125.98104095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516262 125.98345947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516263 125.98742676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516264 125.98936462 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516265 126.01070404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516266 126.01142883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516267 126.01142883 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -01516268 126.01261902 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -01516269 126.01296997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516270 126.02447510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516271 126.03866577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516272 126.04784393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516273 126.05014038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516274 126.06980896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516275 126.07051849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516276 126.07171631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516277 126.07600403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516278 126.08959961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516279 126.11618805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516280 126.13477325 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516281 126.13710022 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516282 126.13854980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516283 126.14918518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516284 126.15388489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516285 126.16540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516286 126.17589569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516287 126.17704010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516288 126.18943024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516289 126.19721985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516290 126.19832611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516291 126.20713043 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516292 126.20856476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516293 126.20947266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516294 126.21391296 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516295 126.22713470 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516296 126.26229858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516297 126.26352692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516298 126.28148651 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516299 126.28917694 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516300 126.28921509 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516301 126.28923798 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516302 126.28925323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01516303 126.28936768 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516304 126.28938293 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516305 126.28943634 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01516306 126.28945923 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01516307 126.29077911 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516308 126.29249573 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516309 126.29387665 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516310 126.31969452 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516311 126.32154846 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516312 126.32678223 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516313 126.34133911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516314 126.35431671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516315 126.35457611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516316 126.37756348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516317 126.46820068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516318 126.48316193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516319 126.49827576 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516320 126.51339722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516321 126.52722168 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516322 126.53195190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516323 126.53453064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516324 126.53708649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516325 126.54110718 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516326 126.54565430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516327 126.55023193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516328 126.55434418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516329 126.56024170 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516330 126.56459808 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516331 126.57247925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516332 126.58654785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516333 126.60090637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516334 126.61697388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516335 126.61730194 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516336 126.61761475 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516337 126.63165283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516338 126.64610291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516339 126.65937805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516340 126.67282104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516341 126.68532562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516342 126.69753265 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516343 126.70876312 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516344 126.71318817 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516345 126.72795868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516346 126.74255371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516347 126.75682831 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516348 126.77104950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516349 126.78614807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516350 126.79868317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516351 126.81240082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516352 126.82714844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516353 126.83846283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516354 126.84966278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516355 126.86076355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516356 126.87380219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516357 126.89054871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516358 126.90628052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516359 126.92053986 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516360 127.02845764 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516361 127.33995819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516362 127.34621429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516363 127.58146667 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516364 127.58188629 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516365 127.58238983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516366 127.58248901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -01516367 127.58271027 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516368 127.59867859 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516369 127.59937286 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516370 127.60048676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516371 127.60083008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516372 127.60137939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516373 127.60173035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516374 127.62274933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516375 127.62791443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516376 127.63217926 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516377 127.63599396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516378 127.63947296 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516380 127.80711365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01516382 127.82777405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516383 127.82778931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01516396 128.59722900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516398 128.63311768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516401 128.74694824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01516402 128.77857971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01516403 128.77857971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01516404 128.77861023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01516405 128.77861023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01516406 128.77864075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01516407 128.77865601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01516408 128.77867126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01516409 128.77867126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01516410 128.77870178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01516411 128.77870178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01516412 128.77873230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01516413 128.77873230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01516414 128.77874756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01516415 128.77874756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01516416 128.77877808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01516417 128.77879333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01516418 128.77880859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01516419 128.77880859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01516420 128.77883911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01516421 128.77883911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01516422 128.77886963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01516423 128.77886963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01516424 128.77890015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01516425 128.77890015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01516426 128.77891541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01516427 128.77893066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01516428 128.77896118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01516429 128.77896118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01516430 128.77897644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01516431 128.77897644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01516432 128.77900696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01516433 128.77900696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01516434 128.77903748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01516435 128.77903748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01516436 128.77905273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01516437 128.77906799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01516438 128.77909851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01516439 128.77909851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01516440 128.77912903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01516441 128.77912903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01516442 128.77914429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01516443 128.77914429 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01516444 128.77917480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01516445 128.77917480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01516446 128.77920532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01516447 128.77920532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01516448 128.77923584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01516449 128.77923584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01516450 128.77926636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01516451 128.77926636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01516452 128.77929688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01516453 128.77929688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01516454 128.77931213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01516455 128.77932739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01516456 128.77935791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01516457 128.77935791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01516458 128.77937317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01516459 128.77937317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01516460 128.77940369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01516461 128.77940369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01516462 128.77943420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01516463 128.77943420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01516464 128.77944946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01516465 128.77946472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01516466 128.77949524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01516467 128.77949524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01516468 128.77952576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01516469 128.77952576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01516470 128.77954102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01516471 128.77954102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01516472 128.77957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01516473 128.77957153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01516474 128.77960205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01516475 128.77960205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01516476 128.77963257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01516477 128.77963257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01516478 128.77966309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01516479 128.77966309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01516480 128.77969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01516481 128.77969360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01516482 128.77970886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01516483 128.77970886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01516484 128.77973938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01516485 128.77975464 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01516486 128.77976990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01516487 128.77976990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01516488 128.77980042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01516489 128.77980042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01516490 128.77983093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01516491 128.77983093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01516492 128.77984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01516493 128.77984619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01516494 128.77987671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01516495 128.77989197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01516496 128.77992249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01516497 128.77992249 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01516498 128.77993774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01516499 128.77993774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01516500 128.77996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01516501 128.77996826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01516502 128.77999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01516503 128.77999878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01516504 128.78001404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01516505 128.78002930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01516506 128.78005981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01516507 128.78005981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01516508 128.78009033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01516509 128.78009033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01516510 128.78010559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01516511 128.78010559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01516512 128.78013611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01516513 128.78013611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01516514 128.78016663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01516515 128.78016663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01516516 128.78019714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01516517 128.78019714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01516518 128.78022766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01516519 128.78022766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01516520 128.78024292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01516521 128.78024292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01516522 128.78027344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01516523 128.78027344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01516524 128.78030396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01516525 128.78031921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01516526 128.78034973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01516527 128.78034973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01516528 128.78038025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01516529 128.78038025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01516530 128.78041077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01516531 128.78041077 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01516532 128.78044128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01516533 128.78044128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01516534 128.78047180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01516535 128.78047180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01516536 128.78048706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01516537 128.78048706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01516538 128.78051758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01516539 128.78053284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01516540 128.78056335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01516541 128.78056335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01516542 128.78057861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01516543 128.78057861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01516544 128.78060913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01516545 128.78060913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01516546 128.78063965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01516547 128.78063965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01516548 128.78067017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01516549 128.78067017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01516550 128.78073120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01516551 128.78073120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01516552 128.78076172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01516553 128.78076172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01516554 128.78079224 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01516555 128.78080750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01516556 128.78082275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01516557 128.78082275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01516558 128.78085327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01516559 128.78085327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01516560 128.78088379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01516561 128.78088379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01516562 128.78089905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01516563 128.78089905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01516564 128.78092957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01516565 128.78094482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01516566 128.78096008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01516567 128.78096008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01516568 128.78099060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01516569 128.78099060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01516570 128.78102112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01516571 128.78102112 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01516572 128.78103638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01516573 128.78103638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01516574 128.78106689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01516575 128.78108215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01516576 128.78109741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01516577 128.78111267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01516578 128.78112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01516579 128.78112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01516580 128.78115845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01516581 128.78115845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01516582 128.78118896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01516583 128.78118896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01516584 128.78120422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01516585 128.78121948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01516586 128.78125000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01516587 128.78125000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01516588 128.78128052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01516589 128.78128052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01516590 128.78129578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01516591 128.78129578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01516592 128.78132629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01516593 128.78132629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01516594 128.78135681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01516595 128.78135681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01516596 128.78138733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01516597 128.78138733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01516598 128.78141785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01516599 128.78141785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01516600 128.78143311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01516601 128.78143311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01516602 128.78146362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01516603 128.78146362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01516604 128.78149414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01516605 128.78150940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01516606 128.78152466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01516607 128.78152466 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01516608 128.78155518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01516609 128.78155518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01516610 128.78158569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01516611 128.78158569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01516612 128.78160095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01516613 128.78160095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01516614 128.78163147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01516615 128.78164673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01516616 128.78167725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01516617 128.78167725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01516618 128.78169250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01516619 128.78169250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01516620 128.78172302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01516621 128.78172302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01516622 128.78175354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01516623 128.78175354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01516624 128.78176880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01516625 128.78178406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01516626 128.78181458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01516627 128.78181458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01516628 128.78182983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01516629 128.78182983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01516630 128.78186035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01516631 128.78186035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01516632 128.78189087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01516633 128.78189087 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01516634 128.78190613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01516635 128.78192139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01516636 128.78195190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01516637 128.78195190 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01516638 128.78198242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01516639 128.78198242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01516640 128.78199768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01516641 128.78199768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01516642 128.78202820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01516643 128.78202820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01516644 128.78205872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01516645 128.78205872 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01516646 128.78207397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01516647 128.78208923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01516648 128.78211975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01516649 128.78211975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01516650 128.78215027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01516651 128.78215027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01516652 128.78216553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01516653 128.78216553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01516654 128.78219604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01516655 128.78219604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01516656 128.78222656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01516657 128.78222656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01516658 128.78225708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01516659 128.78225708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01516660 128.78228760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01516661 128.78228760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01516662 128.78230286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01516663 128.78230286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01516664 128.78233337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01516665 128.78234863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01516666 128.78237915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01516667 128.78237915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01516668 128.78239441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01516669 128.78239441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01516670 128.78242493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01516671 128.78242493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01516672 128.78245544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01516673 128.78245544 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01516674 128.78247070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01516675 128.78248596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01516676 128.78251648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01516677 128.78251648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01516678 128.78254700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01516679 128.78254700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01516680 128.78256226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01516681 128.78256226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01516682 128.78259277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01516683 128.78259277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01516684 128.78262329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01516685 128.78262329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01516686 128.78265381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01516687 128.78265381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01516688 128.78268433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01516689 128.78268433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01516690 128.78269958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01516691 128.78269958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01516692 128.78273010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01516693 128.78273010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01516694 128.78276062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01516695 128.78276062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01516696 128.78279114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01516697 128.78279114 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01516698 128.78282166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01516699 128.78282166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01516700 128.78285217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01516701 128.78285217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01516702 128.78286743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01516703 128.78286743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01516704 128.78289795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01516705 128.78289795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01516706 128.78292847 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01516707 128.78294373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01516708 128.78295898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01516709 128.78295898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01516710 128.78298950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01516711 128.78298950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01516712 128.78302002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01516713 128.78302002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01516714 128.78303528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01516715 128.78303528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01516716 128.78306580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01516717 128.78308105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01516718 128.78311157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01516719 128.78311157 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01516720 128.78312683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01516721 128.78312683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01516722 128.78315735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01516723 128.78315735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01516724 128.78318787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01516725 128.78318787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01516726 128.78321838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01516727 128.78321838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01516728 128.78324890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01516729 128.78324890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01516730 128.78326416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01516731 128.78326416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01516732 128.78329468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01516733 128.78329468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01516734 128.78332520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01516735 128.78334045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01516736 128.78335571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01516737 128.78335571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01516738 128.78338623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01516739 128.78338623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01516740 128.78341675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01516741 128.78341675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01516742 128.78343201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01516743 128.78343201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01516744 128.78346252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01516745 128.78347778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01516746 128.78350830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01516747 128.78350830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01516748 128.78352356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01516749 128.78352356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01516750 128.78355408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01516751 128.78355408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01516752 128.78358459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01516753 128.78358459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01516754 128.78359985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01516755 128.78361511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01516756 128.78364563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01516757 128.78364563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01516758 128.78366089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01516759 128.78366089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01516760 128.78369141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01516761 128.78369141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01516762 128.78372192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01516763 128.78372192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01516764 128.78373718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01516765 128.78375244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01516766 128.78378296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01516767 128.78378296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01516768 128.78381348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01516769 128.78381348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01516770 128.78382874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01516771 128.78382874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01516772 128.78385925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01516773 128.78385925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01516774 128.78388977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01516775 128.78390503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01516776 128.78392029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01516777 128.78392029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01516778 128.78395081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01516779 128.78395081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01516780 128.78398132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01516781 128.78398132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01516782 128.78399658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01516783 128.78399658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01516784 128.78402710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01516785 128.78404236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01516786 128.78405762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01516787 128.78405762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01516788 128.78408813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01516789 128.78408813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01516790 128.78411865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01516791 128.78411865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01516792 128.78413391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01516793 128.78413391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01516794 128.78416443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01516795 128.78417969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01516796 128.78421021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01516797 128.78421021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01516798 128.78422546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01516799 128.78422546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01516800 128.78425598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01516801 128.78425598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01516802 128.78428650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01516803 128.78428650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01516804 128.78430176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01516805 128.78431702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01516806 128.78434753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01516807 128.78434753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01516808 128.78437805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01516809 128.78437805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01516810 128.78439331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01516811 128.78439331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01516812 128.78442383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01516813 128.78442383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01516814 128.78445435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01516815 128.78445435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01516816 128.78448486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01516817 128.78448486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01516818 128.78451538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01516819 128.78451538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01516820 128.78453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01516821 128.78453064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01516822 128.78456116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01516823 128.78456116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01516824 128.78459167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01516825 128.78459167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01516826 128.78460693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01516827 128.78462219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01516828 128.78465271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01516829 128.78465271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01516830 128.78468323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01516831 128.78468323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01516832 128.78469849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01516833 128.78469849 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01516834 128.78472900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01516835 128.78472900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01516836 128.78475952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01516837 128.78477478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01516838 128.78479004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01516839 128.78479004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01516840 128.78482056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01516841 128.78482056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01516842 128.78485107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01516843 128.78485107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01516844 128.78494263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01516845 128.78494263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01516846 128.78497314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01516847 128.78497314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01516848 128.78500366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01516849 128.78500366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01516850 128.78503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01516851 128.78503418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01516852 128.78506470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01516853 128.78506470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01516854 128.78509521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01516855 128.78509521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01516856 128.78511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01516857 128.78511047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01516858 128.78514099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01516859 128.78514099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01516860 128.78517151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01516861 128.78517151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01516862 128.78520203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01516863 128.78520203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01516864 128.78523254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01516865 128.78523254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01516866 128.78524780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01516867 128.78524780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01516868 128.78527832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01516869 128.78529358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01516870 128.78532410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01516871 128.78532410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01516872 128.78533936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01516873 128.78533936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01516874 128.78536987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01516875 128.78536987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01516876 128.78540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01516877 128.78540039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01516878 128.78541565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01516879 128.78543091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01516880 128.78546143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01516881 128.78546143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01516882 128.78549194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01516883 128.78549194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01516884 128.78550720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01516885 128.78550720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01516886 128.78553772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01516887 128.78553772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01516888 128.78556824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01516889 128.78556824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01516890 128.78559875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01516891 128.78559875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01516892 128.78562927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01516893 128.78562927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01516894 128.78564453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01516895 128.78564453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01516896 128.78567505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01516897 128.78569031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01516898 128.78572083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01516899 128.78572083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01516900 128.78573608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01516901 128.78573608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01516902 128.78576660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01516903 128.78576660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01516904 128.78579712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01516905 128.78579712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01516906 128.78581238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01516907 128.78581238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01516908 128.78584290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01516909 128.78585815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01516910 128.78588867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01516911 128.78588867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01516912 128.78590393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01516913 128.78590393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01516914 128.78593445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01516915 128.78593445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01516916 128.78596497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01516917 128.78596497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01516918 128.78598022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01516919 128.78599548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01516920 128.78602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01516921 128.78602600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01516922 128.78604126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01516923 128.78604126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01516924 128.78607178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01516925 128.78607178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01516926 128.78610229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01516927 128.78610229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01516928 128.78611755 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01516929 128.78613281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01516930 128.78616333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01516931 128.78616333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01516932 128.78619385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01516933 128.78619385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01516934 128.78620911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01516935 128.78620911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01516936 128.78623962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01516937 128.78625488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01516938 128.78628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01516939 128.78628540 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01516940 128.78630066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01516941 128.78630066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01516942 128.78633118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01516943 128.78633118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01516944 128.78636169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01516945 128.78636169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01516946 128.78637695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01516947 128.78637695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01516948 128.78640747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01516949 128.78642273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01516950 128.78643799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01516951 128.78643799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01516952 128.78646851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01516953 128.78646851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01516954 128.78649902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01516955 128.78649902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01516956 128.78651428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01516957 128.78651428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01516958 128.78654480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01516959 128.78656006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01516960 128.78659058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01516961 128.78659058 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01516962 128.78660583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01516963 128.78660583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01516964 128.78663635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01516965 128.78663635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01516966 128.78666687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01516967 128.78666687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01516968 128.78668213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01516969 128.78669739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01516970 128.78672791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01516971 128.78672791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01516972 128.78675842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01516973 128.78675842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01516974 128.78677368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01516975 128.78677368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01516976 128.78680420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01516977 128.78680420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01516978 128.78683472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01516979 128.78683472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01516980 128.78686523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01516981 128.78686523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01516982 128.78689575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01516983 128.78689575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01516984 128.78691101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01516985 128.78691101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01516986 128.78694153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01516987 128.78694153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01516988 128.78697205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01516989 128.78698730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01516990 128.78700256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01516991 128.78700256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01516992 128.78703308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01516993 128.78703308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01516994 128.78706360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01516995 128.78706360 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01516996 128.78707886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01516997 128.78707886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01516998 128.78710938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01516999 128.78712463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01517000 128.78715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01517001 128.78715515 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01517002 128.78717041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01517003 128.78717041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01517004 128.78720093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01517005 128.78720093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01517006 128.78723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01517007 128.78723145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01517008 128.78724670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01517009 128.78726196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01517010 128.78729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01517011 128.78729248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01517012 128.78730774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01517013 128.78730774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01517014 128.78733826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01517015 128.78733826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01517016 128.78736877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01517017 128.78736877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01517018 128.78739929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01517019 128.78739929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01517020 128.78742981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01517021 128.78742981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01517022 128.78746033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01517023 128.78746033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01517024 128.78747559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01517025 128.78747559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01517026 128.78750610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01517027 128.78750610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01517028 128.78753662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01517029 128.78755188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01517030 128.78756714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01517031 128.78756714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01517032 128.78759766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01517033 128.78759766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01517034 128.78762817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01517035 128.78762817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01517036 128.78764343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01517037 128.78764343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01517038 128.78767395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01517039 128.78768921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01517040 128.78770447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01517041 128.78770447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01517042 128.78773499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01517043 128.78773499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01517044 128.78776550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01517045 128.78776550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01517046 128.78779602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01517047 128.78779602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01517048 128.78781128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01517049 128.78782654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01517050 128.78785706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01517051 128.78785706 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01517052 128.78787231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01517053 128.78787231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01517054 128.78790283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01517055 128.78790283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01517056 128.78793335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01517057 128.78793335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01517058 128.78794861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01517059 128.78796387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01517060 128.78799438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01517061 128.78799438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01517062 128.78802490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01517063 128.78802490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01517064 128.78804016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01517065 128.78804016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01517066 128.78807068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01517067 128.78807068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01517068 128.78810120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01517069 128.78810120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01517070 128.78811646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01517071 128.78813171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01517072 128.78816223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01517073 128.78816223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01517074 128.78819275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01517075 128.78819275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01517076 128.78820801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01517077 128.78820801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01517078 128.78823853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01517079 128.78823853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01517080 128.78826904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01517081 128.78826904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01517082 128.78829956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01517083 128.78829956 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01517084 128.78833008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01517085 128.78833008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01517086 128.78834534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01517087 128.78834534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01517088 128.78837585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01517089 128.78837585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01517090 128.78840637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01517091 128.78842163 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01517092 128.78843689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01517093 128.78843689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01517094 128.78846741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01517095 128.78846741 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01517096 128.78849792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01517097 128.78849792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01517098 128.78851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01517099 128.78851318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01517100 128.78854370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01517101 128.78855896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01517102 128.78858948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01517103 128.78858948 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01517104 128.78860474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01517105 128.78860474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01517106 128.78863525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01517107 128.78863525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01517108 128.78866577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01517109 128.78866577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01517110 128.78868103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01517111 128.78869629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01517112 128.78872681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01517113 128.78872681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01517114 128.78874207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01517115 128.78874207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01517116 128.78877258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01517117 128.78877258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01517118 128.78880310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01517119 128.78880310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01517120 128.78881836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01517121 128.78883362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01517122 128.78886414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01517123 128.78886414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01517124 128.78889465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01517125 128.78889465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01517126 128.78890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01517127 128.78890991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01517128 128.78894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01517129 128.78894043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01517130 128.78897095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01517131 128.78898621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01517132 128.78900146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01517133 128.78900146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01517134 128.78903198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01517135 128.78903198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01517136 128.78906250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01517137 128.78906250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01517138 128.78907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01517139 128.78907776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01517140 128.78910828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01517141 128.78912354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01517142 128.78913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01517143 128.78913879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01517144 128.78916931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01517145 128.78916931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01517146 128.78919983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01517147 128.78919983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01517148 128.78921509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01517149 128.78921509 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01517150 128.78924561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01517151 128.78926086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01517152 128.78929138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01517153 128.78929138 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01517154 128.78930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01517155 128.78930664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01517156 128.78933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01517157 128.78933716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01517158 128.78936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01517159 128.78936768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01517160 128.78938293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01517161 128.78939819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01517162 128.78942871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01517163 128.78942871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01517164 128.78945923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01517165 128.78945923 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01517166 128.78947449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01517167 128.78947449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01517168 128.78950500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01517169 128.78950500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01517170 128.78953552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01517171 128.78953552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01517172 128.78955078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01517173 128.78956604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01517174 128.78959656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01517175 128.78959656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01517176 128.78961182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01517177 128.78961182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01517178 128.78964233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01517179 128.78964233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01517180 128.78967285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01517181 128.78967285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01517182 128.78970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01517183 128.78970337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01517184 128.78973389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01517185 128.78973389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01517186 128.78976440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01517187 128.78976440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01517188 128.78977966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01517189 128.78977966 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01517190 128.78981018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01517191 128.78981018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01517192 128.78984070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01517193 128.78985596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01517194 128.78987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01517195 128.78987122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01517196 128.78990173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01517197 128.78990173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01517198 128.78993225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01517199 128.78993225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01517200 128.78994751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01517201 128.78994751 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01517202 128.78997803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01517203 128.78999329 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01517204 128.79000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01517205 128.79000854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01517206 128.79003906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01517207 128.79003906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01517208 128.79006958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01517209 128.79006958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01517210 128.79010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01517211 128.79010010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01517212 128.79011536 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01517213 128.79013062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01517214 128.79016113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01517215 128.79016113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01517216 128.79017639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01517217 128.79017639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01517218 128.79020691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01517219 128.79020691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01517220 128.79023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01517221 128.79023743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01517222 128.79025269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01517223 128.79026794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01517224 128.79029846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01517225 128.79029846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01517226 128.79032898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01517227 128.79032898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01517228 128.79034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01517229 128.79034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01517230 128.79037476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01517231 128.79037476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01517232 128.79040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01517233 128.79040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01517234 128.79043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01517235 128.79043579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01517236 128.79046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01517237 128.79046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01517238 128.79049683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01517239 128.79049683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01517240 128.79051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01517241 128.79051208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01517242 128.79054260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01517243 128.79055786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01517244 128.79057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01517245 128.79057312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01517246 128.79060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01517247 128.79060364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01517248 128.79063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01517249 128.79063416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01517250 128.79064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01517251 128.79064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01517252 128.79067993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01517253 128.79067993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01517254 128.79071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01517255 128.79072571 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01517256 128.79074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01517257 128.79074097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01517258 128.79077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01517259 128.79077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01517260 128.79080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01517261 128.79080200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01517262 128.79081726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01517263 128.79081726 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01517264 128.79084778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01517265 128.79086304 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01517266 128.79089355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01517267 128.79089355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01517268 128.79090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01517269 128.79090881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01517270 128.79093933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01517271 128.79093933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01517272 128.79096985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01517273 128.79096985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01517274 128.79098511 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01517275 128.79100037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01517276 128.79103088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01517277 128.79103088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01517278 128.79104614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01517279 128.79104614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01517280 128.79107666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01517281 128.79107666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01517282 128.79110718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01517283 128.79110718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01517284 128.79112244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01517285 128.79113770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01517286 128.79116821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01517287 128.79116821 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01517288 128.79119873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01517289 128.79119873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01517290 128.79121399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01517291 128.79121399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01517292 128.79124451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01517293 128.79124451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01517294 128.79129028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01517295 128.79129028 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01517296 128.79130554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01517297 128.79130554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01517298 128.79133606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01517299 128.79133606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01517300 128.79136658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01517301 128.79136658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01517302 128.79138184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01517303 128.79138184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01517304 128.79141235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01517305 128.79142761 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01517306 128.79144287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01517307 128.79144287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01517308 128.79147339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01517309 128.79147339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01517310 128.79150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01517311 128.79150391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01517312 128.79151917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01517313 128.79151917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01517314 128.79154968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01517315 128.79156494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01517316 128.79159546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01517317 128.79159546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01517318 128.79161072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01517319 128.79161072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01517320 128.79164124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01517321 128.79164124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01517322 128.79167175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01517323 128.79167175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01517324 128.79168701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01517325 128.79170227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01517326 128.79173279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -01517327 128.79173279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -01517328 128.79176331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -01517329 128.79176331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -01517330 128.79177856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -01517331 128.79177856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -01517332 128.79180908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -01517333 128.79180908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -01517334 128.79183960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -01517335 128.79183960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -01517336 128.79187012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -01517337 128.79187012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -01517338 128.79190063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -01517339 128.79190063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -01517340 128.79191589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -01517341 128.79191589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -01517342 128.79194641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -01517343 128.79194641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -01517344 128.79197693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -01517345 128.79199219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -01517346 128.79200745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -01517347 128.79200745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -01517348 128.79203796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -01517349 128.79203796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -01517350 128.79206848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -01517351 128.79206848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -01517352 128.79208374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -01517353 128.79208374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -01517354 128.79211426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -01517355 128.79212952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -01517356 128.79216003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -01517357 128.79216003 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -01517358 128.79217529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -01517359 128.79217529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -01517360 128.79220581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -01517361 128.79220581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -01517362 128.79223633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -01517363 128.79223633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -01517364 128.79225159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -01517365 128.79226685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -01517366 128.79229736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -01517367 128.79229736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -01517368 128.79231262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -01517369 128.79231262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -01517370 128.79234314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -01517371 128.79234314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -01517372 128.79237366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -01517373 128.79237366 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -01517374 128.79240417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -01517375 128.79240417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -01517376 128.79243469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -01517377 128.79243469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -01517378 128.79246521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -01517379 128.79246521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -01517380 128.79248047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -01517381 128.79248047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -01517382 128.79251099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -01517383 128.79251099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -01517384 128.79254150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -01517385 128.79255676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -01517386 128.79257202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -01517387 128.79257202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -01517388 128.79260254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -01517389 128.79260254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -01517390 128.79263306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -01517391 128.79263306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -01517392 128.79264832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -01517393 128.79264832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -01517394 128.79267883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -01517395 128.79269409 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -01517396 128.79270935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -01517397 128.79270935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -01517398 128.79273987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -01517399 128.79273987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -01517400 128.79277039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -01517401 128.79277039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -01517402 128.79280090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -01517403 128.79280090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -01517404 128.79281616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -01517405 128.79283142 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -01517406 128.79286194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -01517407 128.79286194 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -01517408 128.79287720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -01517409 128.79287720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -01517410 128.79290771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -01517411 128.79290771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -01517412 128.79293823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -01517413 128.79293823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -01517414 128.79295349 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -01517415 128.79296875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -01517416 128.79299927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -01517417 128.79299927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -01517418 128.79302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -01517419 128.79302979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -01517420 128.79304504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -01517421 128.79304504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -01517422 128.79307556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -01517423 128.79307556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -01517424 128.79310608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -01517425 128.79310608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -01517426 128.79313660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -01517427 128.79313660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -01517428 128.79316711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -01517429 128.79316711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -01517430 128.79319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -01517431 128.79319763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -01517432 128.79321289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -01517433 128.79321289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -01517434 128.79324341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -01517435 128.79325867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -01517436 128.79327393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -01517437 128.79327393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -01517438 128.79330444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -01517439 128.79330444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -01517440 128.79333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -01517441 128.79333496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -01517442 128.79335022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -01517443 128.79335022 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -01517444 128.79338074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -01517445 128.79339600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -01517446 128.79342651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -01517447 128.79342651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -01517448 128.79344177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -01517449 128.79344177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -01517450 128.79347229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -01517451 128.79347229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -01517452 128.79350281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -01517453 128.79350281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -01517454 128.79351807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -01517455 128.79351807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -01517456 128.79356384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -01517457 128.79356384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -01517458 128.79359436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -01517459 128.79359436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -01517460 128.79360962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -01517461 128.79360962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -01517462 128.79364014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -01517463 128.79364014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -01517464 128.79367065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -01517465 128.79367065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -01517466 128.79368591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -01517467 128.79370117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -01517468 128.79373169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -01517469 128.79373169 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -01517470 128.79374695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -01517471 128.79374695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -01517472 128.79377747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -01517473 128.79377747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -01517474 128.79380798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -01517475 128.79380798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -01517476 128.79382324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -01517477 128.79383850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -01517478 128.79386902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -01517479 128.79386902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -01517480 128.79389954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -01517481 128.79389954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -01517482 128.79391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -01517483 128.79391479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -01517484 128.79394531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -01517485 128.79394531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -01517486 128.79397583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -01517487 128.79399109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -01517488 128.79400635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -01517489 128.79400635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -01517490 128.79403687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -01517491 128.79403687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -01517492 128.79406738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -01517493 128.79406738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -01517494 128.79408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -01517495 128.79408264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -01517496 128.79411316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -01517497 128.79412842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -01517498 128.79414368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -01517499 128.79414368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -01517500 128.79417419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -01517501 128.79417419 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -01517502 128.79420471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -01517503 128.79420471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -01517504 128.79421997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -01517505 128.79421997 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -01517506 128.79425049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -01517507 128.79426575 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -01517508 128.79429626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -01517509 128.79429626 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -01517510 128.79431152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -01517511 128.79431152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -01517512 128.79434204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -01517513 128.79434204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -01517514 128.79437256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -01517515 128.79437256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -01517516 128.79438782 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -01517517 128.79440308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -01517518 128.79443359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -01517519 128.79443359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -01517520 128.79446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -01517521 128.79446411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -01517522 128.79447937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -01517523 128.79447937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -01517524 128.79450989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -01517525 128.79450989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -01517526 128.79454041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -01517527 128.79454041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -01517528 128.79457092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -01517529 128.79457092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -01517530 128.79460144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -01517531 128.79460144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -01517532 128.79461670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -01517533 128.79461670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -01517534 128.79464722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -01517535 128.79466248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -01517536 128.79469299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -01517537 128.79470825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -01517538 128.79472351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -01517539 128.79473877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -01517540 128.79476929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -01517541 128.79476929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -01517542 128.79478455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -01517543 128.79478455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -01517544 128.79481506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -01517545 128.79481506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -01517546 128.79484558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -01517547 128.79484558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -01517548 128.79487610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -01517549 128.79487610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -01517550 128.79490662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -01517551 128.79490662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -01517552 128.79493713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -01517553 128.79493713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -01517554 128.79495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -01517555 128.79495239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -01517556 128.79498291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -01517557 128.79498291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -01517558 128.79501343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -01517559 128.79501343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -01517560 128.79504395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -01517561 128.79504395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -01517562 128.79507446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -01517563 128.79507446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -01517564 128.79510498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -01517565 128.79510498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -01517566 128.79512024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -01517567 128.79512024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -01517568 128.79515076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -01517569 128.79516602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -01517570 128.79518127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -01517571 128.79518127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -01517572 128.79521179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -01517573 128.79521179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -01517574 128.79524231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -01517575 128.79524231 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -01517576 128.79525757 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -01517577 128.79527283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -01517578 128.79528809 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01517579 128.79530334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -01517580 128.79530334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -01517581 128.79533386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -01517582 128.79533386 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -01517583 128.79533386 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01517584 128.79534912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -01517585 128.79534912 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01517586 128.79534912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -01517587 128.79536438 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01517588 128.79537964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -01517589 128.79537964 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -01517590 128.79541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -01517591 128.79541016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -01517592 128.79544067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -01517593 128.79544067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -01517594 128.79547119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -01517595 128.79547119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -01517596 128.79550171 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01517597 128.79550171 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01517598 128.79550171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -01517599 128.79550171 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -01517600 128.79551697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -01517601 128.79551697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -01517602 128.79554749 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -01517603 128.79556274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -01517604 128.79556274 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01517605 128.79557800 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01517606 128.79557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -01517607 128.79557800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -01517608 128.79560852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -01517609 128.79560852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -01517610 128.79563904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -01517611 128.79563904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -01517612 128.79565430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -01517613 128.79565430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -01517614 128.79568481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -01517615 128.79570007 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -01517616 128.79573059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -01517617 128.79573059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -01517618 128.79574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -01517619 128.79574585 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -01517620 128.79577637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -01517621 128.79577637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -01517622 128.79580688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -01517623 128.79580688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -01517624 128.79582214 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -01517625 128.79583740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -01517626 128.79586792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -01517627 128.79586792 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -01517628 128.79589844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -01517629 128.79589844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -01517630 128.79591370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -01517631 128.79591370 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -01517632 128.79594421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -01517633 128.79594421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -01517634 128.79597473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -01517635 128.79597473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -01517636 128.79600525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -01517637 128.79600525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -01517638 128.79603577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -01517639 128.79603577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -01517640 128.79605103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -01517641 128.79605103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -01517642 128.79608154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -01517643 128.79608154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -01517644 128.79611206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -01517645 128.79612732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -01517646 128.79614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -01517647 128.79614258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -01517648 128.79617310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -01517649 128.79617310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -01517650 128.79620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -01517651 128.79620361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -01517652 128.79621887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -01517653 128.79621887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -01517654 128.79624939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -01517655 128.79626465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -01517656 128.79629517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -01517657 128.79629517 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -01517658 128.79631042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -01517659 128.79631042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -01517660 128.79634094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -01517661 128.79634094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -01517662 128.79637146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -01517663 128.79637146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -01517664 128.79638672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -01517665 128.79638672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -01517666 128.79641724 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -01517667 128.79643250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -01517668 128.79644775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -01517669 128.79644775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -01517670 128.79647827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -01517671 128.79647827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -01517672 128.79650879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -01517673 128.79650879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -01517674 128.79652405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -01517675 128.79652405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -01517676 128.79655457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -01517677 128.79656982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -01517678 128.79660034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -01517679 128.79660034 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -01517680 128.79661560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -01517681 128.79661560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -01517682 128.79664612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -01517683 128.79664612 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -01517684 128.79667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -01517685 128.79667664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -01517686 128.79669189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -01517687 128.79670715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -01517688 128.79673767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -01517689 128.79673767 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -01517690 128.79676819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -01517691 128.79676819 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -01517692 128.79678345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -01517693 128.79678345 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -01517694 128.79681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -01517695 128.79681396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -01517696 128.79684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -01517697 128.79684448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -01517698 128.79687500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -01517699 128.79687500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -01517700 128.79690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -01517701 128.79690552 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -01517702 128.79692078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -01517703 128.79692078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -01517704 128.79695129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -01517705 128.79695129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -01517706 128.79698181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -01517707 128.79699707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -01517708 128.79701233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -01517709 128.79701233 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -01517710 128.79704285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -01517711 128.79704285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -01517712 128.79707336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -01517713 128.79707336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -01517714 128.79708862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -01517715 128.79708862 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -01517716 128.79711914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -01517717 128.79713440 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -01517718 128.79716492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -01517719 128.79716492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -01517720 128.79718018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -01517721 128.79718018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -01517722 128.79721069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -01517723 128.79721069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -01517724 128.79724121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -01517725 128.79724121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -01517726 128.79725647 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -01517727 128.79727173 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -01517728 128.79730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -01517729 128.79730225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -01517730 128.79731750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -01517731 128.79731750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -01517732 128.79734802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -01517733 128.79734802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -01517734 128.79737854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -01517735 128.79737854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -01517736 128.79740906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -01517737 128.79740906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -01517738 128.79743958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -01517739 128.79743958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -01517740 128.79747009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -01517741 128.79747009 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -01517742 128.79748535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -01517743 128.79748535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -01517744 128.79751587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -01517745 128.79751587 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -01517746 128.79754639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -01517747 128.79756165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -01517748 128.79757690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -01517749 128.79757690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -01517750 128.79760742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -01517751 128.79760742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -01517752 128.79763794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -01517753 128.79763794 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -01517754 128.79765320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -01517755 128.79765320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -01517756 128.79768372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -01517757 128.79769897 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -01517758 128.79771423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -01517759 128.79771423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -01517760 128.79774475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -01517761 128.79774475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -01517762 128.79777527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -01517763 128.79777527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -01517764 128.79780579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -01517765 128.79780579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -01517766 128.79782104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -01517767 128.79782104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -01517768 128.79785156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -01517769 128.79786682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -01517770 128.79788208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -01517771 128.79788208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -01517772 128.79791260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -01517773 128.79791260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -01517774 128.79794312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -01517775 128.79794312 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -01517776 128.79795837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -01517777 128.79795837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -01517778 128.79798889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -01517779 128.79800415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -01517780 128.79803467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -01517781 128.79803467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -01517782 128.79804993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -01517783 128.79804993 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -01517784 128.79808044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -01517785 128.79808044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -01517786 128.79811096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -01517787 128.79811096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -01517788 128.79812622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -01517789 128.79814148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -01517790 128.79817200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -01517791 128.79817200 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -01517792 128.79820251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -01517793 128.79820251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -01517794 128.79821777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -01517795 128.79821777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -01517796 128.79824829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -01517797 128.79824829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -01517798 128.79827881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -01517799 128.79827881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -01517800 128.79830933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -01517801 128.79830933 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -01517802 128.79833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -01517803 128.79833984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -01517804 128.79835510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -01517805 128.79835510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -01517806 128.79838562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -01517807 128.79838562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -01517808 128.79841614 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -01517809 128.79843140 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -01517810 128.79844666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -01517811 128.79844666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -01517812 128.79847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -01517813 128.79847717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -01517814 128.79850769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -01517815 128.79850769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -01517816 128.79852295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -01517817 128.79852295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -01517818 128.79855347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -01517819 128.79856873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -01517820 128.79859924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -01517821 128.79859924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -01517822 128.79861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -01517823 128.79861450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -01517824 128.79864502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -01517825 128.79864502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -01517826 128.79867554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -01517827 128.79867554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -01517828 128.79869080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -01517829 128.79869080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -01517830 128.79872131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -01517831 128.79873657 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -01517832 128.79875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -01517833 128.79875183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -01517834 128.79878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -01517835 128.79878235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -01517836 128.79881287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -01517837 128.79881287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -01517838 128.79882813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -01517839 128.79882813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -01517840 128.79885864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -01517841 128.79887390 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -01517842 128.79890442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -01517843 128.79890442 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -01517844 128.79891968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -01517845 128.79891968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -01517846 128.79895020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -01517847 128.79895020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -01517848 128.79898071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -01517849 128.79898071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -01517850 128.79899597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -01517851 128.79901123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -01517852 128.79904175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -01517853 128.79904175 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -01517854 128.79907227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -01517855 128.79907227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -01517856 128.79908752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -01517857 128.79908752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -01517858 128.79911804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -01517859 128.79911804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -01517860 128.79914856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -01517861 128.79914856 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -01517862 128.79917908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -01517863 128.79917908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -01517864 128.79920959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -01517865 128.79920959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -01517866 128.79922485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -01517867 128.79922485 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -01517868 128.79925537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -01517869 128.79925537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -01517870 128.79928589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -01517871 128.79930115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -01517872 128.79931641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -01517873 128.79931641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -01517874 128.79934692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -01517875 128.79934692 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -01517876 128.79937744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -01517877 128.79937744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -01517878 128.79939270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -01517879 128.79939270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -01517880 128.79942322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -01517881 128.79943848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -01517882 128.79946899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -01517883 128.79946899 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -01517884 128.79948425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -01517885 128.79948425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -01517886 128.79951477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -01517887 128.79951477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -01517888 128.79954529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -01517889 128.79954529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -01517890 128.79956055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -01517891 128.79956055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -01517892 128.79959106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -01517893 128.79960632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -01517894 128.79962158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -01517895 128.79962158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -01517896 128.79965210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -01517897 128.79965210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -01517898 128.79968262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -01517899 128.79968262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -01517900 128.79971313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -01517901 128.79971313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -01517902 128.79972839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -01517903 128.79974365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -01517904 128.79977417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -01517905 128.79977417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -01517906 128.79978943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -01517907 128.79978943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -01517908 128.79981995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -01517909 128.79981995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -01517910 128.79985046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -01517911 128.79985046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -01517912 128.79986572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -01517913 128.79988098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -01517914 128.79991150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -01517915 128.79991150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -01517916 128.79994202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -01517917 128.79994202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -01517918 128.79995728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -01517919 128.79995728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -01517920 128.79998779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -01517921 128.79998779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -01517922 128.80001831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -01517923 128.80001831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -01517924 128.80004883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -01517925 128.80004883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -01517926 128.80007935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01517927 128.80007935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01517928 128.80010986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01517929 128.80010986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01517930 128.80012512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01517931 128.80012512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01517932 128.80015564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01517933 128.80017090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01517934 128.80018616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01517935 128.80018616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01517936 128.80021667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01517937 128.80021667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01517938 128.80024719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01517939 128.80024719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01517940 128.80026245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01517941 128.80026245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01517942 128.80029297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01517943 128.80030823 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01517944 128.80033875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01517945 128.80033875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01517946 128.80035400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01517947 128.80035400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01517948 128.80038452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01517949 128.80038452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01517950 128.80041504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01517951 128.80041504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01517952 128.80044556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01517953 128.80044556 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01517954 128.80047607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01517955 128.80047607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01517956 128.80050659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01517957 128.80050659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01517958 128.80052185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01517959 128.80052185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01517960 128.80055237 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01517961 128.80056763 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01517962 128.80058289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01517963 128.80058289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01517964 128.80061340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01517965 128.80061340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01517966 128.80064392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01517967 128.80064392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01517968 128.80065918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01517969 128.80065918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01517970 128.80068970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -01517971 128.80070496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -01517972 128.80073547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -01517973 128.80073547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -01517974 128.80075073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -01517975 128.80075073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -01517976 128.80078125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -01517977 128.80078125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -01517978 128.80081177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -01517979 128.80081177 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -01517980 128.80082703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -01517981 128.80084229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -01517982 128.80087280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -01517983 128.80087280 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -01517984 128.80090332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -01517985 128.80090332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -01517986 128.80091858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -01517987 128.80091858 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -01517988 128.80094910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -01517989 128.80094910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -01517990 128.80097961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -01517991 128.80097961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -01517992 128.80099487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -01517993 128.80101013 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -01517994 128.80104065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -01517995 128.80104065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -01517996 128.80105591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -01517997 128.80105591 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -01517998 128.80108643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -01517999 128.80108643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -01518000 128.80111694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -01518001 128.80111694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -01518002 128.80113220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -01518003 128.80114746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -01518004 128.80117798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -01518005 128.80117798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -01518006 128.80120850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -01518007 128.80120850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -01518008 128.80122375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -01518009 128.80122375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -01518010 128.80125427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -01518011 128.80126953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -01518012 128.80130005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -01518013 128.80130005 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -01518014 128.80131531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -01518015 128.80131531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -01518016 128.80134583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -01518017 128.80134583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -01518018 128.80137634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -01518019 128.80137634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -01518020 128.80139160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -01518021 128.80139160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -01518022 128.80142212 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -01518023 128.80143738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -01518024 128.80145264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -01518025 128.80145264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -01518026 128.80148315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -01518027 128.80148315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -01518028 128.80151367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -01518029 128.80151367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -01518030 128.80152893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -01518031 128.80152893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -01518032 128.80155945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -01518033 128.80157471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -01518034 128.80160522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -01518035 128.80160522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -01518036 128.80162048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -01518037 128.80162048 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -01518038 128.80165100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -01518039 128.80165100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -01518040 128.80168152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -01518041 128.80168152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -01518042 128.80169678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -01518043 128.80171204 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -01518044 128.80174255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -01518045 128.80174255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -01518046 128.80177307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -01518047 128.80177307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -01518048 128.80178833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -01518049 128.80178833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -01518050 128.80181885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -01518051 128.80181885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -01518052 128.80184937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -01518053 128.80184937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -01518054 128.80187988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -01518055 128.80187988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -01518056 128.80191040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -01518057 128.80191040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -01518058 128.80192566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -01518059 128.80192566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -01518060 128.80195618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -01518061 128.80195618 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -01518062 128.80198669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -01518063 128.80200195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -01518064 128.80201721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -01518065 128.80201721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -01518066 128.80204773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -01518067 128.80204773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -01518068 128.80207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -01518069 128.80207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -01518070 128.80209351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -01518071 128.80209351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -01518072 128.80212402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -01518073 128.80213928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -01518074 128.80216980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -01518075 128.80216980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -01518076 128.80218506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -01518077 128.80218506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -01518078 128.80221558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -01518079 128.80221558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -01518080 128.80224609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -01518081 128.80224609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -01518082 128.80226135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -01518083 128.80227661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -01518084 128.80230713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -01518085 128.80230713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -01518086 128.80232239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -01518087 128.80232239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -01518088 128.80235291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -01518089 128.80235291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -01518090 128.80238342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -01518091 128.80238342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -01518092 128.80241394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -01518093 128.80241394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -01518094 128.80244446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -01518095 128.80244446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -01518096 128.80247498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -01518097 128.80247498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -01518098 128.80249023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -01518099 128.80249023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -01518100 128.80252075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -01518101 128.80252075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -01518102 128.80255127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -01518103 128.80256653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -01518104 128.80258179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -01518105 128.80258179 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -01518106 128.80261230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -01518107 128.80261230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -01518108 128.80264282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -01518109 128.80264282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -01518110 128.80265808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -01518111 128.80265808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -01518112 128.80268860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -01518113 128.80268860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -01518114 128.80271912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -01518115 128.80271912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -01518116 128.80274963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -01518117 128.80274963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -01518118 128.80278015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -01518119 128.80278015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -01518120 128.80281067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -01518121 128.80281067 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -01518122 128.80282593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -01518123 128.80282593 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -01518124 128.80285645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -01518125 128.80287170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -01518126 128.80288696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -01518127 128.80288696 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -01518128 128.80291748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -01518129 128.80291748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -01518130 128.80294800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -01518131 128.80294800 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -01518132 128.80296326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -01518133 128.80296326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -01518134 128.80299377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -01518135 128.80300903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -01518136 128.80303955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -01518137 128.80303955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -01518138 128.80305481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -01518139 128.80305481 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -01518140 128.80308533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -01518141 128.80308533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -01518142 128.80311584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -01518143 128.80311584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -01518144 128.80313110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -01518145 128.80314636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -01518146 128.80317688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -01518147 128.80317688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -01518148 128.80320740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -01518149 128.80320740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -01518150 128.80322266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -01518151 128.80322266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -01518152 128.80325317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -01518153 128.80325317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -01518154 128.80328369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -01518155 128.80328369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -01518156 128.80331421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -01518157 128.80331421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -01518158 128.80334473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -01518159 128.80334473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -01518160 128.80335999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -01518161 128.80335999 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -01518162 128.80339050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -01518163 128.80339050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -01518164 128.80342102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -01518165 128.80343628 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -01518166 128.80345154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -01518167 128.80345154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -01518168 128.80348206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -01518169 128.80348206 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -01518170 128.80351257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -01518171 128.80351257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -01518172 128.80352783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -01518173 128.80352783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -01518174 128.80355835 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -01518175 128.80357361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -01518176 128.80360413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -01518177 128.80360413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -01518178 128.80361938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -01518179 128.80361938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -01518180 128.80364990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -01518181 128.80364990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -01518182 128.80368042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -01518183 128.80368042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -01518184 128.80369568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -01518185 128.80371094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -01518186 128.80374146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -01518187 128.80374146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -01518188 128.80375671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -01518189 128.80375671 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -01518190 128.80378723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -01518191 128.80378723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -01518192 128.80381775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -01518193 128.80381775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -01518194 128.80383301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -01518195 128.80384827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -01518196 128.80387878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -01518197 128.80387878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -01518198 128.80390930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -01518199 128.80390930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -01518200 128.80392456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -01518201 128.80392456 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -01518202 128.80395508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -01518203 128.80395508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -01518204 128.80398560 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -01518205 128.80400085 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -01518206 128.80401611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -01518207 128.80401611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -01518208 128.80404663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -01518209 128.80404663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -01518210 128.80407715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -01518211 128.80407715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -01518212 128.80409241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -01518213 128.80409241 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -01518214 128.80412292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -01518215 128.80413818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -01518216 128.80415344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -01518217 128.80415344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -01518218 128.80418396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -01518219 128.80418396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -01518220 128.80421448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -01518221 128.80421448 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -01518222 128.80422974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -01518223 128.80422974 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -01518224 128.80426025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -01518225 128.80427551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -01518226 128.80430603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -01518227 128.80430603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -01518228 128.80432129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -01518229 128.80432129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -01518230 128.80435181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -01518231 128.80435181 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -01518232 128.80438232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -01518233 128.80438232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -01518234 128.80439758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -01518235 128.80441284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -01518236 128.80444336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -01518237 128.80444336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -01518238 128.80447388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -01518239 128.80447388 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -01518240 128.80448914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -01518241 128.80448914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -01518242 128.80451965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -01518243 128.80451965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -01518244 128.80455017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -01518245 128.80455017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -01518246 128.80456543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -01518247 128.80458069 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -01518248 128.80461121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -01518249 128.80461121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -01518250 128.80462646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -01518251 128.80462646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -01518252 128.80465698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -01518253 128.80465698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -01518254 128.80468750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -01518255 128.80468750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -01518256 128.80471802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -01518257 128.80471802 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -01518258 128.80474854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -01518259 128.80474854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -01518260 128.80477905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -01518261 128.80477905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -01518262 128.80479431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -01518263 128.80479431 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -01518264 128.80482483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -01518265 128.80482483 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -01518266 128.80485535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -01518267 128.80487061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -01518268 128.80488586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -01518269 128.80488586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -01518270 128.80491638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -01518271 128.80491638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -01518272 128.80494690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -01518273 128.80494690 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -01518274 128.80496216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -01518275 128.80496216 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -01518276 128.80499268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -01518277 128.80500793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -01518278 128.80502319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -01518279 128.80502319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -01518280 128.80505371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -01518281 128.80505371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -01518282 128.80508423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -01518283 128.80508423 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -01518284 128.80511475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -01518285 128.80511475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -01518286 128.80513000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -01518287 128.80514526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -01518288 128.80517578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -01518289 128.80517578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -01518290 128.80519104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -01518291 128.80519104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -01518292 128.80522156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -01518293 128.80522156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -01518294 128.80525208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -01518295 128.80525208 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -01518296 128.80526733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -01518297 128.80528259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -01518298 128.80531311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -01518299 128.80531311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -01518300 128.80534363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -01518301 128.80534363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -01518302 128.80535889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -01518303 128.80535889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -01518304 128.80538940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -01518305 128.80538940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -01518306 128.80541992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -01518307 128.80541992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -01518308 128.80545044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -01518309 128.80545044 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -01518310 128.80548096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -01518311 128.80548096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -01518312 128.80551147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -01518313 128.80551147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -01518314 128.80552673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -01518315 128.80552673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -01518316 128.80555725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -01518317 128.80555725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -01518318 128.80558777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -01518319 128.80558777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -01518320 128.80561829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -01518321 128.80561829 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -01518322 128.80564880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -01518323 128.80564880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -01518324 128.80566406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -01518325 128.80566406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -01518326 128.80569458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -01518327 128.80569458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -01518328 128.80572510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -01518329 128.80574036 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -01518330 128.80575562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -01518331 128.80575562 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -01518332 128.80578613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -01518333 128.80578613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -01518334 128.80581665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -01518335 128.80581665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -01518336 128.80583191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -01518337 128.80583191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -01518338 128.80586243 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -01518339 128.80587769 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -01518340 128.80590820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -01518341 128.80590820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -01518342 128.80592346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -01518343 128.80592346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -01518344 128.80595398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -01518345 128.80595398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -01518346 128.80598450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -01518347 128.80598450 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -01518348 128.80599976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -01518349 128.80601501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -01518350 128.80604553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -01518351 128.80604553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -01518352 128.80606079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -01518353 128.80606079 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -01518354 128.80609131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -01518355 128.80609131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -01518356 128.80612183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -01518357 128.80612183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -01518358 128.80613708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -01518359 128.80615234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -01518360 128.80618286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -01518361 128.80618286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -01518362 128.80621338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -01518363 128.80621338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -01518364 128.80622864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -01518365 128.80622864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -01518366 128.80625916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -01518367 128.80625916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -01518368 128.80628967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -01518369 128.80630493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -01518370 128.80632019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -01518371 128.80632019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -01518372 128.80635071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -01518373 128.80635071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -01518374 128.80638123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -01518375 128.80638123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -01518376 128.80639648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -01518377 128.80639648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -01518378 128.80642700 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -01518379 128.80644226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -01518380 128.80645752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -01518381 128.80645752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -01518382 128.80648804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -01518383 128.80648804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -01518384 128.80651855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -01518385 128.80651855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -01518386 128.80653381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -01518387 128.80653381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -01518388 128.80656433 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -01518389 128.80657959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -01518390 128.80661011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -01518391 128.80661011 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -01518392 128.80662537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -01518393 128.80662537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -01518394 128.80665588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -01518395 128.80665588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -01518396 128.80668640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -01518397 128.80668640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -01518398 128.80670166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -01518399 128.80670166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -01518400 128.80673218 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -01518401 128.80674744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -01518402 128.80677795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -01518403 128.80677795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -01518404 128.80679321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -01518405 128.80679321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -01518406 128.80682373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -01518407 128.80682373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -01518408 128.80685425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -01518409 128.80685425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -01518410 128.80686951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -01518411 128.80688477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -01518412 128.80691528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -01518413 128.80691528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -01518414 128.80693054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -01518415 128.80693054 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -01518416 128.80696106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -01518417 128.80696106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -01518418 128.80699158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -01518419 128.80699158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -01518420 128.80700684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -01518421 128.80702209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -01518422 128.80705261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -01518423 128.80705261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -01518424 128.80708313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -01518425 128.80708313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -01518426 128.80709839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -01518427 128.80709839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -01518428 128.80712891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -01518429 128.80712891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -01518430 128.80715942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -01518431 128.80717468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -01518432 128.80718994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -01518433 128.80718994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -01518434 128.80722046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -01518435 128.80722046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -01518436 128.80725098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -01518437 128.80725098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -01518438 128.80726624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -01518439 128.80726624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -01518440 128.80729675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -01518441 128.80731201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -01518442 128.80732727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -01518443 128.80732727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -01518444 128.80735779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -01518445 128.80735779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -01518446 128.80738831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -01518447 128.80738831 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -01518448 128.80741882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -01518449 128.80741882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -01518450 128.80743408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -01518451 128.80744934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -01518452 128.80747986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -01518453 128.80747986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -01518454 128.80749512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -01518455 128.80749512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -01518456 128.80752563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -01518457 128.80752563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -01518458 128.80755615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -01518459 128.80755615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -01518460 128.80757141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -01518461 128.80758667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -01518462 128.80761719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -01518463 128.80761719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -01518464 128.80764771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -01518465 128.80764771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -01518466 128.80766296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -01518467 128.80766296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -01518468 128.80769348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -01518469 128.80769348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -01518470 128.80772400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -01518471 128.80772400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -01518472 128.80775452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -01518473 128.80775452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -01518474 128.80778503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -01518475 128.80778503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -01518476 128.80781555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -01518477 128.80781555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -01518478 128.80783081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -01518479 128.80783081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -01518480 128.80786133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -01518481 128.80787659 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -01518482 128.80789185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -01518483 128.80789185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -01518484 128.80792236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -01518485 128.80792236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -01518486 128.80795288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -01518487 128.80795288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -01518488 128.80796814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -01518489 128.80796814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -01518490 128.80799866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -01518491 128.80799866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -01518492 128.80802917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -01518493 128.80804443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -01518494 128.80805969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -01518495 128.80805969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -01518496 128.80809021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -01518497 128.80809021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -01518498 128.80812073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -01518499 128.80812073 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -01518500 128.80813599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -01518501 128.80813599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -01518502 128.80816650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -01518503 128.80818176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -01518504 128.80821228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -01518505 128.80821228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -01518506 128.80822754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -01518507 128.80822754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -01518508 128.80825806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -01518509 128.80825806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -01518510 128.80828857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -01518511 128.80828857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -01518512 128.80830383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -01518513 128.80831909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -01518514 128.80834961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -01518515 128.80834961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -01518516 128.80836487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -01518517 128.80836487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -01518518 128.80839539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -01518519 128.80839539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -01518520 128.80842590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -01518521 128.80842590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -01518522 128.80844116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -01518523 128.80845642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -01518524 128.80848694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -01518525 128.80848694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -01518526 128.80851746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -01518527 128.80851746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -01518528 128.80853271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -01518529 128.80853271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -01518530 128.80856323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -01518531 128.80856323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -01518532 128.80860901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -01518533 128.80860901 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -01518534 128.80863953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -01518535 128.80863953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -01518536 128.80868530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -01518537 128.80868530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -01518538 128.80871582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -01518539 128.80871582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -01518540 128.80874634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -01518541 128.80874634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -01518542 128.80876160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -01518543 128.80876160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -01518544 128.80879211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -01518545 128.80880737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -01518546 128.80883789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -01518547 128.80883789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -01518548 128.80885315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -01518549 128.80885315 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -01518550 128.80888367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -01518551 128.80888367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -01518552 128.80891418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -01518553 128.80891418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -01518554 128.80892944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -01518555 128.80894470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -01518556 128.80897522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -01518557 128.80897522 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -01518558 128.80900574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -01518559 128.80900574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -01518560 128.80902100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -01518561 128.80902100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -01518562 128.80905151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -01518563 128.80905151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -01518564 128.80908203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -01518565 128.80908203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -01518566 128.80911255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -01518567 128.80911255 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -01518568 128.80914307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -01518569 128.80914307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -01518570 128.80915833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -01518571 128.80915833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -01518572 128.80918884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -01518573 128.80918884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -01518574 128.80921936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -01518575 128.80923462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -01518576 128.80924988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -01518577 128.80924988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -01518578 128.80928040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -01518579 128.80928040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -01518580 128.80931091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -01518581 128.80931091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -01518582 128.80932617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -01518583 128.80932617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -01518584 128.80935669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -01518585 128.80937195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -01518586 128.80940247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -01518587 128.80940247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -01518588 128.80941772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -01518589 128.80941772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -01518590 128.80944824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -01518591 128.80944824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -01518592 128.80947876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -01518593 128.80947876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -01518594 128.80949402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -01518595 128.80950928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -01518596 128.80953979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -01518597 128.80953979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -01518598 128.80955505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -01518599 128.80955505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -01518600 128.80958557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -01518601 128.80958557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -01518602 128.80961609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -01518603 128.80961609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -01518604 128.80963135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -01518605 128.80964661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -01518606 128.80967712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -01518607 128.80967712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -01518608 128.80970764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -01518609 128.80970764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -01518610 128.80972290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -01518611 128.80972290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -01518612 128.80975342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -01518613 128.80975342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -01518614 128.80978394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -01518615 128.80979919 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -01518616 128.80981445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -01518617 128.80981445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -01518618 128.80984497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -01518619 128.80984497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -01518620 128.80987549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -01518621 128.80987549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -01518622 128.80989075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -01518623 128.80989075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -01518624 128.80992126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -01518625 128.80993652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -01518626 128.80995178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -01518627 128.80995178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -01518628 128.80998230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -01518629 128.80998230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -01518630 128.81001282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -01518631 128.81001282 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -01518632 128.81002808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -01518633 128.81002808 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -01518634 128.81005859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -01518635 128.81005859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -01518636 128.81008911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -01518637 128.81010437 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -01518638 128.81011963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -01518639 128.81011963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -01518640 128.81015015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -01518641 128.81015015 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -01518642 128.81018066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -01518643 128.81018066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -01518644 128.81019592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -01518645 128.81021118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -01518646 128.81024170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -01518647 128.81024170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -01518648 128.81027222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -01518649 128.81027222 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -01518650 128.81028748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -01518651 128.81028748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -01518652 128.81031799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -01518653 128.81031799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -01518654 128.81034851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -01518655 128.81034851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -01518656 128.81037903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -01518657 128.81037903 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -01518658 128.81040955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -01518659 128.81040955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -01518660 128.81042480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -01518661 128.81042480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -01518662 128.81045532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -01518663 128.81045532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -01518664 128.81048584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -01518665 128.81050110 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -01518666 128.81051636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -01518667 128.81051636 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -01518668 128.81054688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -01518669 128.81054688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -01518670 128.81057739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -01518671 128.81057739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -01518672 128.81059265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -01518673 128.81059265 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -01518674 128.81062317 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -01518675 128.81063843 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -01518676 128.81066895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -01518677 128.81066895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -01518678 128.81069946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -01518679 128.81069946 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -01518680 128.81074524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -01518681 128.81074524 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -01518682 128.81076050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -01518683 128.81076050 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -01518684 128.81079102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -01518685 128.81079102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -01518686 128.81082153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -01518687 128.81082153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -01518688 128.81085205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -01518689 128.81085205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -01518690 128.81088257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -01518691 128.81088257 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -01518692 128.81091309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -01518693 128.81091309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -01518694 128.81092834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -01518695 128.81092834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -01518696 128.81095886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -01518697 128.81097412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -01518698 128.81098938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -01518699 128.81098938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -01518700 128.81101990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -01518701 128.81101990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -01518702 128.81105042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -01518703 128.81105042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -01518704 128.81106567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -01518705 128.81106567 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -01518706 128.81109619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -01518707 128.81111145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -01518708 128.81114197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -01518709 128.81114197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -01518710 128.81115723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -01518711 128.81115723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -01518712 128.81118774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -01518713 128.81118774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -01518714 128.81121826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -01518715 128.81121826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -01518716 128.81123352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -01518717 128.81124878 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -01518718 128.81127930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -01518719 128.81127930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -01518720 128.81130981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -01518721 128.81130981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -01518722 128.81132507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -01518723 128.81132507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -01518724 128.81135559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -01518725 128.81135559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -01518726 128.81138611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -01518727 128.81138611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -01518728 128.81141663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -01518729 128.81141663 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -01518730 128.81144714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -01518731 128.81144714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -01518732 128.81146240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -01518733 128.81146240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -01518734 128.81149292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -01518735 128.81149292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -01518736 128.81152344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -01518737 128.81153870 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -01518738 128.81155396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -01518739 128.81155396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -01518740 128.81158447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -01518741 128.81158447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -01518742 128.81161499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -01518743 128.81161499 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -01518744 128.81163025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -01518745 128.81164551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -01518746 128.81167603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -01518747 128.81167603 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -01518748 128.81170654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -01518749 128.81170654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -01518750 128.81172180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -01518751 128.81172180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -01518752 128.81175232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -01518753 128.81175232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -01518754 128.81178284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -01518755 128.81178284 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -01518756 128.81179810 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -01518757 128.81181335 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -01518758 128.81184387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -01518759 128.81184387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -01518760 128.81185913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -01518761 128.81185913 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -01518762 128.81188965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -01518763 128.81188965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -01518764 128.81192017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -01518765 128.81192017 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -01518766 128.81193542 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -01518767 128.81195068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -01518768 128.81198120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -01518769 128.81198120 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -01518770 128.81201172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -01518771 128.81201172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -01518772 128.81202698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -01518773 128.81202698 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -01518774 128.81205750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -01518775 128.81205750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -01518776 128.81208801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -01518777 128.81210327 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -01518778 128.81211853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -01518779 128.81211853 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -01518780 128.81214905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -01518781 128.81214905 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -01518782 128.81217957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -01518783 128.81217957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -01518784 128.81219482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -01518785 128.81219482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -01518786 128.81222534 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -01518787 128.81224060 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -01518788 128.81225586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -01518789 128.81225586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -01518790 128.81228638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -01518791 128.81228638 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -01518792 128.81231689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -01518793 128.81231689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -01518794 128.81233215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -01518795 128.81233215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -01518796 128.81236267 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -01518797 128.81237793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -01518798 128.81240845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -01518799 128.81240845 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -01518800 128.81242371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -01518801 128.81242371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -01518802 128.81245422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -01518803 128.81245422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -01518804 128.81248474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -01518805 128.81248474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -01518806 128.81250000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -01518807 128.81251526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -01518808 128.81254578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -01518809 128.81254578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -01518810 128.81257629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -01518811 128.81257629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -01518812 128.81259155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -01518813 128.81259155 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -01518814 128.81262207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -01518815 128.81262207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -01518816 128.81265259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -01518817 128.81265259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -01518818 128.81268311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -01518819 128.81268311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -01518820 128.81271362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -01518821 128.81271362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -01518822 128.81272888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -01518823 128.81272888 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -01518824 128.81275940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -01518825 128.81275940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -01518826 128.81278992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -01518827 128.81280518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -01518828 128.81282043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -01518829 128.81282043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -01518830 128.81285095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01518831 128.81285095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01518832 128.81288147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01518833 128.81288147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01518834 128.81289673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01518835 128.81289673 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01518836 128.81292725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01518837 128.81294250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01518838 128.81297302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01518839 128.81297302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01518840 128.81298828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01518841 128.81298828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01518842 128.81301880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01518843 128.81301880 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01518844 128.81304932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01518845 128.81304932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01518846 128.81306458 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01518847 128.81307983 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01518848 128.81311035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01518849 128.81311035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01518850 128.81312561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01518851 128.81312561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01518852 128.81315613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -01518853 128.81315613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -01518854 128.81318665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -01518855 128.81318665 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -01518856 128.81321716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -01518857 128.81321716 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -01518858 128.81324768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -01518859 128.81324768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -01518860 128.81327820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -01518861 128.81327820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -01518862 128.81329346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -01518863 128.81329346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -01518864 128.81332397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -01518865 128.81332397 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -01518866 128.81335449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -01518867 128.81336975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -01518868 128.81338501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -01518869 128.81338501 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -01518870 128.81341553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -01518871 128.81341553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -01518872 128.81344604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -01518873 128.81344604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -01518874 128.81346130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -01518875 128.81346130 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -01518876 128.81349182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -01518877 128.81350708 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -01518878 128.81352234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -01518879 128.81352234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -01518880 128.81355286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -01518881 128.81355286 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -01518882 128.81358337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -01518883 128.81358337 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -01518884 128.81361389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -01518885 128.81361389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -01518886 128.81362915 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -01518887 128.81364441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -01518888 128.81367493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -01518889 128.81367493 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -01518890 128.81369019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -01518891 128.81369019 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -01518892 128.81372070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -01518893 128.81372070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -01518894 128.81375122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -01518895 128.81375122 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -01518896 128.81376648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -01518897 128.81378174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -01518898 128.81381226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -01518899 128.81381226 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -01518900 128.81384277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -01518901 128.81384277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -01518902 128.81385803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -01518903 128.81385803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -01518904 128.81388855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -01518905 128.81388855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -01518906 128.81391907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -01518907 128.81391907 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -01518908 128.81394958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -01518909 128.81394958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -01518910 128.81398010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -01518911 128.81398010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -01518912 128.81401062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -01518913 128.81401062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -01518914 128.81402588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -01518915 128.81402588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -01518916 128.81405640 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -01518917 128.81407166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -01518918 128.81408691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -01518919 128.81408691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -01518920 128.81411743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -01518921 128.81411743 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -01518922 128.81414795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -01518923 128.81414795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -01518924 128.81416321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -01518925 128.81416321 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -01518926 128.81420898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -01518927 128.81420898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -01518928 128.81423950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -01518929 128.81423950 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -01518930 128.81425476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -01518931 128.81425476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -01518932 128.81428528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -01518933 128.81428528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -01518934 128.81431580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -01518935 128.81431580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -01518936 128.81433105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -01518937 128.81434631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -01518938 128.81437683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -01518939 128.81437683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -01518940 128.81440735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -01518941 128.81440735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -01518942 128.81442261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -01518943 128.81442261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -01518944 128.81445313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -01518945 128.81445313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -01518946 128.81448364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -01518947 128.81448364 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -01518948 128.81451416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -01518949 128.81451416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -01518950 128.81454468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -01518951 128.81454468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -01518952 128.81455994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -01518953 128.81455994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -01518954 128.81459045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -01518955 128.81459045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -01518956 128.81462097 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -01518957 128.81463623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -01518958 128.81465149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -01518959 128.81465149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -01518960 128.81468201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -01518961 128.81468201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -01518962 128.81471252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -01518963 128.81471252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -01518964 128.81472778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -01518965 128.81472778 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -01518966 128.81475830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -01518967 128.81477356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -01518968 128.81480408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -01518969 128.81480408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -01518970 128.81481934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -01518971 128.81481934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -01518972 128.81484985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -01518973 128.81484985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -01518974 128.81488037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -01518975 128.81488037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -01518976 128.81489563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -01518977 128.81491089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -01518978 128.81494141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -01518979 128.81494141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -01518980 128.81495667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -01518981 128.81495667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -01518982 128.81498718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -01518983 128.81498718 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -01518984 128.81501770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -01518985 128.81501770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -01518986 128.81503296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -01518987 128.81504822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -01518988 128.81507874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -01518989 128.81507874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -01518990 128.81510925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -01518991 128.81510925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -01518992 128.81512451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -01518993 128.81512451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -01518994 128.81515503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -01518995 128.81515503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -01518996 128.81518555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -01518997 128.81520081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -01518998 128.81521606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -01518999 128.81521606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -01519000 128.81524658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -01519001 128.81524658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -01519002 128.81527710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -01519003 128.81527710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -01519004 128.81529236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -01519005 128.81530762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -01519006 128.81533813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -01519007 128.81533813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -01519008 128.81535339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -01519009 128.81535339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -01519010 128.81538391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -01519011 128.81538391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -01519012 128.81541443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -01519013 128.81541443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -01519014 128.81542969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -01519015 128.81544495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -01519016 128.81547546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -01519017 128.81547546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -01519018 128.81550598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -01519019 128.81550598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -01519020 128.81552124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -01519021 128.81552124 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -01519022 128.81555176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -01519023 128.81555176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -01519024 128.81558228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -01519025 128.81559753 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -01519026 128.81561279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -01519027 128.81561279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -01519028 128.81564331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -01519029 128.81564331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -01519030 128.81567383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -01519031 128.81567383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -01519032 128.81568909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -01519033 128.81568909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -01519034 128.81571960 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -01519035 128.81573486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -01519036 128.81575012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -01519037 128.81575012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -01519038 128.81578064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -01519039 128.81578064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -01519040 128.81581116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -01519041 128.81581116 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -01519042 128.81582642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -01519043 128.81582642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -01519044 128.81585693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -01519045 128.81587219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -01519046 128.81590271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -01519047 128.81590271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -01519048 128.81593323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -01519049 128.81593323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -01519050 128.81596375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -01519051 128.81596375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -01519052 128.81599426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -01519053 128.81599426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -01519054 128.81602478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -01519055 128.81602478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -01519056 128.81605530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -01519057 128.81605530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -01519058 128.81607056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -01519059 128.81607056 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -01519060 128.81610107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -01519061 128.81610107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -01519062 128.81613159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -01519063 128.81614685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -01519064 128.81616211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -01519065 128.81616211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -01519066 128.81619263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -01519067 128.81619263 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -01519068 128.81622314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -01519069 128.81622314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -01519070 128.81623840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -01519071 128.81623840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -01519072 128.81626892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -01519073 128.81628418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -01519074 128.81631470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -01519075 128.81631470 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -01519076 128.81632996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -01519077 128.81632996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -01519078 128.81636047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -01519079 128.81636047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -01519080 128.81639099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -01519081 128.81639099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -01519082 128.81640625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -01519083 128.81642151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -01519084 128.81645203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -01519085 128.81645203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -01519086 128.81646729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -01519087 128.81646729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -01519088 128.81649780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -01519089 128.81649780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -01519090 128.81652832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -01519091 128.81652832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -01519092 128.81654358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -01519093 128.81655884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -01519094 128.81658936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -01519095 128.81658936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -01519096 128.81661987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -01519097 128.81661987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -01519098 128.81663513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -01519099 128.81663513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -01519100 128.81666565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -01519101 128.81666565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -01519102 128.81669617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -01519103 128.81671143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -01519104 128.81672668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -01519105 128.81672668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -01519106 128.81675720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -01519107 128.81675720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -01519108 128.81678772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -01519109 128.81678772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -01519110 128.81680298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -01519111 128.81680298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -01519112 128.81683350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -01519113 128.81684875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -01519114 128.81686401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -01519115 128.81686401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -01519116 128.81689453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -01519117 128.81689453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -01519118 128.81692505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -01519119 128.81692505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -01519120 128.81694031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -01519121 128.81694031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -01519122 128.81697083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -01519123 128.81698608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -01519124 128.81701660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -01519125 128.81701660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -01519126 128.81703186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -01519127 128.81703186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -01519128 128.81706238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -01519129 128.81707764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -01519130 128.81710815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -01519131 128.81710815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -01519132 128.81712341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -01519133 128.81712341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -01519134 128.81715393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -01519135 128.81715393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -01519136 128.81718445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -01519137 128.81718445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -01519138 128.81721497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -01519139 128.81721497 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -01519140 128.81724548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -01519141 128.81724548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -01519142 128.81726074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -01519143 128.81726074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -01519144 128.81729126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -01519145 128.81729126 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -01519146 128.81732178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -01519147 128.81733704 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -01519148 128.81735229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -01519149 128.81735229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -01519150 128.81738281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -01519151 128.81738281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -01519152 128.81741333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -01519153 128.81741333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -01519154 128.81742859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -01519155 128.81742859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -01519156 128.81745911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -01519157 128.81745911 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -01519158 128.81748962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -01519159 128.81750488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -01519160 128.81752014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -01519161 128.81752014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -01519162 128.81755066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -01519163 128.81755066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -01519164 128.81758118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -01519165 128.81758118 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -01519166 128.81759644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -01519167 128.81759644 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -01519168 128.81762695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -01519169 128.81764221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -01519170 128.81765747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -01519171 128.81765747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -01519172 128.81768799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -01519173 128.81768799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -01519174 128.81771851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -01519175 128.81771851 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -01519176 128.81773376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -01519177 128.81773376 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -01519178 128.81776428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -01519179 128.81777954 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -01519180 128.81781006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -01519181 128.81781006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -01519182 128.81782532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -01519183 128.81782532 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -01519184 128.81785583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -01519185 128.81785583 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -01519186 128.81788635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -01519187 128.81788635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -01519188 128.81790161 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -01519189 128.81791687 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -01519190 128.81794739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -01519191 128.81794739 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -01519192 128.81797791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -01519193 128.81797791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -01519194 128.81799316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -01519195 128.81799316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -01519196 128.81802368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -01519197 128.81802368 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -01519198 128.81805420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -01519199 128.81805420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -01519200 128.81808472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -01519201 128.81808472 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -01519202 128.81811523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -01519203 128.81811523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -01519204 128.81813049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -01519205 128.81813049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -01519206 128.81816101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -01519207 128.81816101 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -01519208 128.81819153 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -01519209 128.81820679 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -01519210 128.81822205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -01519211 128.81822205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -01519212 128.81825256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -01519213 128.81825256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -01519214 128.81828308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -01519215 128.81828308 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -01519216 128.81829834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -01519217 128.81829834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -01519218 128.81832886 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -01519219 128.81834412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -01519220 128.81837463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -01519221 128.81837463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -01519222 128.81838989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -01519223 128.81838989 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -01519224 128.81842041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -01519225 128.81842041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -01519226 128.81845093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -01519227 128.81845093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -01519228 128.81846619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -01519229 128.81848145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -01519230 128.81851196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -01519231 128.81851196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -01519232 128.81852722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -01519233 128.81852722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -01519234 128.81855774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -01519235 128.81855774 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -01519236 128.81858826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -01519237 128.81858826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -01519238 128.81861877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -01519239 128.81861877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -01519240 128.81864929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -01519241 128.81864929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -01519242 128.81867981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -01519243 128.81867981 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -01519244 128.81869507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -01519245 128.81869507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -01519246 128.81872559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -01519247 128.81872559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -01519248 128.81875610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -01519249 128.81877136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -01519250 128.81878662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -01519251 128.81878662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -01519252 128.81881714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -01519253 128.81881714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -01519254 128.81884766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -01519255 128.81884766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -01519256 128.81886292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -01519257 128.81886292 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -01519258 128.81889343 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -01519259 128.81890869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -01519260 128.81892395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -01519261 128.81892395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -01519262 128.81895447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -01519263 128.81895447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -01519646 128.82447815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -01519647 128.82447815 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -01519648 128.82449341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -01519649 128.82449341 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -01519650 128.82452393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -01519651 128.82452393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -01519652 128.82455444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -01519653 128.82455444 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -01519654 128.82456970 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -01519655 128.82458496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -01519656 128.82461548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -01519657 128.82461548 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -01519658 128.82464600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -01519659 128.82464600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -01519660 128.82467651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -01519661 128.82467651 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -01519662 128.82472229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -01519663 128.82472229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -01519664 128.82475281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -01519665 128.82475281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -01519666 128.82478333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -01519667 128.82478333 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -01519668 128.82481384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -01519669 128.82481384 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -01519670 128.82482910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -01519671 128.82482910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -01519672 128.82485962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -01519673 128.82485962 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -01519674 128.82489014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -01519675 128.82489014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -01519676 128.82492065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -01519677 128.82492065 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -01519678 128.82495117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -01519679 128.82495117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -01519680 128.82496643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -01519681 128.82496643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -01519682 128.82499695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -01519683 128.82499695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -01519684 128.82502747 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -01519685 128.82504272 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -01519686 128.82505798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -01519687 128.82505798 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -01519688 128.82508850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -01519689 128.82508850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -01529106 128.96136475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -01529107 128.96138000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19cf0 -01529108 128.96141052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -01529109 128.96141052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d00 -01529110 128.96144104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -01529111 128.96144104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d10 -01529112 128.96145630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -01529113 128.96145630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d20 -01529114 128.96148682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -01529115 128.96148682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d30 -01529116 128.96151733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -01529117 128.96151733 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d40 -01529118 128.96154785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -01529119 128.96154785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d50 -01529120 128.96157837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -01529121 128.96157837 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d60 -01529122 128.96159363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -01529123 128.96159363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d70 -01529124 128.96162415 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -01529125 128.96163940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d80 -01529126 128.96166992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -01529127 128.96166992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d90 -01529128 128.96168518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -01529129 128.96168518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da0 -01529130 128.96171570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -01529131 128.96171570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db0 -01529132 128.96174622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -01529133 128.96174622 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc0 -01529134 128.96176147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -01529135 128.96176147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd0 -01529136 128.96179199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -01529137 128.96179199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de0 -01529138 128.96182251 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -01529139 128.96183777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df0 -01529140 128.96183777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -01529141 128.96185303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e00 -01529142 128.96188354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -01529143 128.96188354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e10 -01529144 128.96191406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -01529145 128.96191406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e20 -01529146 128.96192932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -01529147 128.96192932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e30 -01529148 128.96195984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -01529149 128.96197510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e40 -01530378 128.97938538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -01530379 128.97938538 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b0 -01530380 128.97941589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -01530381 128.97941589 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c0 -01530382 128.97944641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -01530383 128.97944641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d0 -01530384 128.97946167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -01530385 128.97947693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e0 -01530386 128.97950745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -01530387 128.97950745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f0 -01530388 128.97953796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -01530389 128.97953796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c500 -01530390 128.97955322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -01530391 128.97955322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c510 -01530392 128.97958374 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -01530393 128.97959900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c520 -01530394 128.97962952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -01530395 128.97962952 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c530 -01530396 128.97964478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -01530397 128.97964478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c540 -01530398 128.97967529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -01530399 128.97967529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c550 -01530400 128.97970581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -01530401 128.97970581 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c560 -01530402 128.97972107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -01530403 128.97972107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c570 -01530404 128.97975159 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -01530405 128.97976685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c580 -01530406 128.97978210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -01530407 128.97978210 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c590 -01530408 128.97981262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -01530409 128.97981262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5a0 -01530410 128.97984314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -01530411 128.97984314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5b0 -01530412 128.97985840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -01530413 128.97985840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5c0 -01530414 128.97988892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -01530415 128.97990417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5d0 -01530416 128.97993469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -01530417 128.97993469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5e0 -01530418 128.97994995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -01530419 128.97994995 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c5f0 -01530420 128.97998047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -01530421 128.97998047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c600 -01533040 129.01727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -01533041 129.01727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x217e0 -01533042 129.01730347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -01533043 129.01730347 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x217f0 -01533044 129.01733398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -01533045 129.01733398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21800 -01533046 129.01734924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -01533047 129.01734924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21810 -01533048 129.01737976 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -01533049 129.01739502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21820 -01533050 129.01742554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -01533051 129.01742554 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21830 -01533052 129.01744080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -01533053 129.01744080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21840 -01533054 129.01747131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -01533055 129.01747131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21850 -01533056 129.01750183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -01533057 129.01750183 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21860 -01533058 129.01751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -01533059 129.01753235 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21870 -01533060 129.01756287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -01533061 129.01756287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21880 -01533062 129.01759338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -01533063 129.01759338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21890 -01533064 129.01760864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -01533065 129.01760864 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a0 -01533066 129.01763916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -01533067 129.01763916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b0 -01533068 129.01766968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -01533069 129.01766968 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c0 -01533070 129.01770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -01533071 129.01770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d0 -01533072 129.01773071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -01533073 129.01773071 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e0 -01533074 129.01774597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -01533075 129.01774597 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f0 -01533076 129.01777649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -01533077 129.01777649 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21900 -01533078 129.01780701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -01533079 129.01782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21910 -01533080 129.01783752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -01533081 129.01783752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21920 -01533082 129.01786804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -01533083 129.01786804 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21930 -01535482 129.05183411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -01535483 129.05183411 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26430 -01535484 129.05184937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -01535485 129.05184937 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26440 -01535486 129.05187988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -01535487 129.05189514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26450 -01535488 129.05191040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -01535489 129.05191040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26460 -01535490 129.05194092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -01535491 129.05194092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26470 -01535492 129.05197144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -01535493 129.05197144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26480 -01535494 129.05198669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -01535495 129.05198669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26490 -01535496 129.05201721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -01535497 129.05203247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a0 -01535498 129.05206299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -01535499 129.05206299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b0 -01535500 129.05207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -01535501 129.05207825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c0 -01535502 129.05210876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -01535503 129.05210876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d0 -01535504 129.05213928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -01535505 129.05213928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e0 -01535506 129.05215454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -01535507 129.05216980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f0 -01535508 129.05220032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -01535509 129.05220032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26500 -01535510 129.05223083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -01535511 129.05223083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26510 -01535512 129.05224609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -01535513 129.05224609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26520 -01535514 129.05227661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -01535515 129.05227661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26530 -01535516 129.05230713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -01535517 129.05230713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26540 -01535518 129.05233765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -01535519 129.05233765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26550 -01535520 129.05236816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -01535521 129.05236816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26560 -01535522 129.05238342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -01535523 129.05238342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26570 -01535524 129.05241394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -01535525 129.05241394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26580 -01536986 129.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -01536987 129.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29330 -01536988 129.07315063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -01536989 129.07315063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29340 -01536990 129.07318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -01536991 129.07318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29350 -01536992 129.07319641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -01536993 129.07319641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29360 -01536994 129.07322693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -01536995 129.07324219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29370 -01536996 129.07325745 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -01536997 129.07327271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29380 -01536998 129.07328796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -01536999 129.07328796 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29390 -01537000 129.07331848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -01537001 129.07331848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293a0 -01537002 129.07334900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -01537003 129.07334900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293b0 -01537004 129.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -01537005 129.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293c0 -01537006 129.07339478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -01537007 129.07339478 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293d0 -01537008 129.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -01537009 129.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293e0 -01537010 129.07344055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -01537011 129.07344055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x293f0 -01537012 129.07347107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -01537013 129.07347107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29400 -01537014 129.07351685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -01537015 129.07351685 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29410 -01537016 129.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -01537017 129.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29420 -01537018 129.07357788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -01537019 129.07357788 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29430 -01537020 129.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -01537021 129.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29440 -01537022 129.07363892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -01537023 129.07363892 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29450 -01537024 129.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -01537025 129.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29460 -01537026 129.07368469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -01537027 129.07368469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29470 -01537028 129.07371521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -01537029 129.07371521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29480 -01537030 129.07374573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -01537031 129.07374573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29490 -01537032 129.07376099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -01537033 129.07376099 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a0 -01537034 129.07379150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -01537035 129.07379150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b0 -01537036 129.07382202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -01537037 129.07382202 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c0 -01537038 129.07383728 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -01537039 129.07385254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d0 -01537040 129.07386780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -01537041 129.07388306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e0 -01537042 129.07391357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -01537043 129.07391357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f0 -01537044 129.07392883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -01537045 129.07392883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29500 -01537046 129.07395935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -01537047 129.07395935 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29510 -01537048 129.07398987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -01537049 129.07398987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29520 -01537050 129.07400513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -01537051 129.07400513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29530 -01537052 129.07403564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -01537053 129.07403564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29540 -01537054 129.07406616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -01537055 129.07406616 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29550 -01537056 129.07409668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -01537057 129.07409668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29560 -01537184 129.07585144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -01537185 129.07585144 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -01537186 129.07588196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -01537187 129.07588196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -01537188 129.07589722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -01537189 129.07589722 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -01537190 129.07592773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -01537191 129.07594299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -01537192 129.07597351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -01537193 129.07597351 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -01537194 129.07598877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -01537195 129.07598877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -01537196 129.07601929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -01537197 129.07601929 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -01537198 129.07604980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -01537199 129.07606506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -01537200 129.07608032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -01537201 129.07608032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -01537202 129.07611084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -01537203 129.07611084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -01537204 129.07614136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -01537205 129.07614136 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -01537206 129.07615662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -01537207 129.07615662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a10 -01537208 129.07618713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -01537209 129.07620239 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a20 -01537210 129.07621765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -01537211 129.07621765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a30 -01537212 129.07624817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -01537213 129.07624817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a40 -01537214 129.07627869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -01537215 129.07627869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a50 -01537216 129.07629395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -01537217 129.07629395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a60 -01537218 129.07632446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -01537219 129.07632446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a70 -01537220 129.07635498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -01537221 129.07637024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a80 -01537222 129.07638550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -01537223 129.07638550 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a90 -01537224 129.07641602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -01537225 129.07641602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa0 -01537226 129.07644653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -01537227 129.07644653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab0 -01537712 129.08328247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -01537713 129.08328247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e0 -01537714 129.08329773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -01537715 129.08329773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f0 -01537716 129.08332825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -01537717 129.08332825 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa00 -01537718 129.08335876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -01537719 129.08335876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa10 -01537720 129.08337402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -01537721 129.08338928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa20 -01537722 129.08341980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -01537723 129.08341980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa30 -01537724 129.08345032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -01537725 129.08345032 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa40 -01537726 129.08346558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -01537727 129.08346558 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa50 -01537728 129.08349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -01537729 129.08349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa60 -01537730 129.08352661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -01537731 129.08352661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa70 -01537732 129.08355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -01537733 129.08355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa80 -01537734 129.08358765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -01537735 129.08358765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa90 -01537736 129.08360291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -01537737 129.08360291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaa0 -01537738 129.08363342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -01537739 129.08363342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aab0 -01537740 129.08366394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -01537741 129.08367920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aac0 -01537742 129.08369446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -01537743 129.08369446 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aad0 -01537744 129.08372498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -01537745 129.08372498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae0 -01537746 129.08375549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -01537747 129.08375549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf0 -01537748 129.08377075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -01537749 129.08377075 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab00 -01537750 129.08380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -01537751 129.08381653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab10 -01537752 129.08384705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -01537753 129.08384705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab20 -01537754 129.08386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -01537755 129.08386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab30 -01539496 129.10844421 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -01539497 129.10845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1a0 -01539498 129.10847473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -01539499 129.10847473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1b0 -01539500 129.10850525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -01539501 129.10850525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1c0 -01539502 129.10853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -01539503 129.10853577 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1d0 -01539504 129.10855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -01539505 129.10855103 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1e0 -01539506 129.10858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -01539507 129.10859680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e1f0 -01539508 129.10862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -01539509 129.10862732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e200 -01539510 129.10864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -01539511 129.10864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e210 -01539512 129.10867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -01539513 129.10867310 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e220 -01539514 129.10870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -01539515 129.10870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e230 -01539516 129.10871887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -01539517 129.10873413 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e240 -01539518 129.10876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -01539519 129.10876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e250 -01539520 129.10877991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -01539521 129.10877991 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e260 -01539522 129.10881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -01539523 129.10881042 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e270 -01539524 129.10884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -01539525 129.10884094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e280 -01539526 129.10887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -01539527 129.10887146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e290 -01539528 129.10890198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -01539529 129.10890198 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a0 -01539530 129.10893250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -01539531 129.10893250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2b0 -01539532 129.10894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -01539533 129.10894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2c0 -01539534 129.10897827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -01539535 129.10897827 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2d0 -01539536 129.10900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -01539537 129.10900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2e0 -01539538 129.10902405 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -01539539 129.10903931 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2f0 -01540936 129.12879944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -01540937 129.12879944 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -01540938 129.12882996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -01540939 129.12882996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -01540940 129.12886047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -01540941 129.12886047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -01540942 129.12887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -01540943 129.12887573 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -01540944 129.12890625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -01540945 129.12892151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -01540946 129.12895203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -01540947 129.12895203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -01540948 129.12896729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -01540949 129.12896729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -01540950 129.12899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -01540951 129.12899780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -01540952 129.12902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -01540953 129.12902832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -01540954 129.12904358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -01540955 129.12905884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -01540956 129.12908936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -01540957 129.12908936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -01540958 129.12911987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -01540959 129.12911987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -01540960 129.12913513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -01540961 129.12913513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f60 -01540962 129.12916565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -01540963 129.12916565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -01540964 129.12919617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -01540965 129.12919617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -01540966 129.12922668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -01540967 129.12922668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -01540968 129.12925720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -01540969 129.12925720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -01540970 129.12927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -01540971 129.12927246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -01540972 129.12930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -01540973 129.12930298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -01540974 129.12933350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -01540975 129.12934875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -01540976 129.12936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -01540977 129.12936401 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -01540978 129.12939453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -01540979 129.12939453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -01542430 129.15071106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -01542431 129.15071106 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -01542432 129.15074158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -01542433 129.15074158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -01542434 129.15077209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -01542435 129.15077209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -01542436 129.15080261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -01542437 129.15080261 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -01542438 129.15083313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -01542439 129.15083313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -01542440 129.15086365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -01542441 129.15086365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -01542442 129.15087891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -01542443 129.15089417 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -01542444 129.15092468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -01542445 129.15092468 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -01542446 129.15095520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -01542447 129.15095520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -01542448 129.15097046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -01542449 129.15097046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -01542450 129.15101624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -01542451 129.15101624 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -01542452 129.15104675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -01542453 129.15104675 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -01542454 129.15106201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -01542455 129.15106201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -01542456 129.15109253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -01542457 129.15110779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -01542458 129.15112305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -01542459 129.15112305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -01542460 129.15115356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -01542461 129.15115356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -01542462 129.15119934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -01542463 129.15119934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -01542464 129.15122986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -01542465 129.15122986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -01542466 129.15126038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -01542467 129.15126038 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -01542468 129.15127563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -01542469 129.15129089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -01542470 129.15132141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -01542471 129.15132141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -01542472 129.15135193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -01542473 129.15135193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -01542474 129.15136719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -01542475 129.15138245 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -01542476 129.15141296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -01542477 129.15141296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -01542478 129.15144348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -01542479 129.15144348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -01542480 129.15147400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -01542481 129.15147400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -01542482 129.15150452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -01542483 129.15150452 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -01542484 129.15151978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -01542485 129.15151978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -01542486 129.15155029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -01542487 129.15156555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -01542488 129.15159607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -01542489 129.15159607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -01542490 129.15161133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -01542491 129.15161133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -01542492 129.15165710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -01542493 129.15165710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -01542494 129.15168762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -01542495 129.15168762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -01542496 129.15170288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -01542497 129.15171814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -01542498 129.15174866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -01542499 129.15174866 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -01542500 129.15176392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -01542501 129.15176392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -01542502 129.15179443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -01542503 129.15180969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -01542504 129.15184021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -01542505 129.15184021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -01542506 129.15185547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -01542507 129.15185547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -01542508 129.15190125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -01542509 129.15190125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -01542510 129.15191650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -01542511 129.15191650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -01542512 129.15194702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -01542513 129.15194702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -01542514 129.15202332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -01542515 129.15202332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -01542516 129.15206909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -01542517 129.15206909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -01542518 129.15208435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -01542519 129.15208435 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -01542520 129.15211487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -01542521 129.15211487 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -01542522 129.15214539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -01542523 129.15214539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -01542524 129.15216064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -01542525 129.15217590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -01542526 129.15220642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -01542527 129.15220642 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -01542528 129.15223694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -01542529 129.15223694 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -01542530 129.15225220 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -01542531 129.15226746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34070 -01542532 129.15229797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -01542533 129.15229797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34080 -01542534 129.15231323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -01542535 129.15231323 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34090 -01542536 129.15234375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -01542537 129.15234375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a0 -01542538 129.15237427 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -01542539 129.15238953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b0 -01542540 129.15240479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -01542541 129.15240479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c0 -01542542 129.15243530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -01542543 129.15243530 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d0 -01542544 129.15246582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -01542545 129.15246582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340e0 -01542546 129.15249634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -01542547 129.15249634 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x340f0 -01542548 129.15252686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -01542549 129.15252686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34100 -01542550 129.15255737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -01542551 129.15255737 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34110 -01542552 129.15258789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -01542553 129.15258789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34120 -01542554 129.15261841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -01542555 129.15261841 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34130 -01542556 129.15263367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -01542557 129.15264893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34140 -01542562 129.15275574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -01542563 129.15275574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34170 -01542564 129.15278625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -01542565 129.15278625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34180 -01542566 129.15280151 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -01542567 129.15281677 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34190 -01542568 129.15284729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -01542569 129.15284729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a0 -01542570 129.15287781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -01542571 129.15287781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b0 -01542572 129.15290833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -01542573 129.15290833 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c0 -01542574 129.15293884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -01542575 129.15293884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d0 -01542576 129.15295410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -01542577 129.15296936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e0 -01542578 129.15299988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -01542579 129.15299988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f0 -01542580 129.15303040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -01542581 129.15303040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34200 -01542582 129.15306091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -01542583 129.15306091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34210 -01542584 129.15310669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -01542585 129.15310669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34220 -01542586 129.15313721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -01542587 129.15313721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34230 -01542588 129.15318298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -01542589 129.15318298 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34240 -01542590 129.15322876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -01542591 129.15324402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34250 -01542592 129.15327454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -01542593 129.15327454 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34260 -01542594 129.15333557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -01542595 129.15333557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34270 -01542596 129.15336609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -01542597 129.15336609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34280 -01542598 129.15342712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -01542599 129.15342712 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34290 -01542600 129.15345764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -01542601 129.15347290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a0 -01542602 129.15350342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -01542603 129.15350342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b0 -01542604 129.15353394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -01542605 129.15353394 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c0 -01542942 129.15867615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -01542943 129.15867615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d50 -01542944 129.15869141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -01542945 129.15869141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d60 -01542946 129.15872192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -01542947 129.15872192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d70 -01542948 129.15875244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -01542949 129.15875244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d80 -01542950 129.15878296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -01542951 129.15878296 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d90 -01542952 129.15881348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -01542953 129.15881348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da0 -01542954 129.15882874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -01542955 129.15884399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db0 -01542956 129.15887451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -01542957 129.15887451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc0 -01542958 129.15890503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -01542959 129.15890503 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd0 -01542960 129.15892029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -01542961 129.15892029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de0 -01542962 129.15896606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -01542963 129.15896606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df0 -01542964 129.15898132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -01542965 129.15898132 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e00 -01542966 129.15901184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -01542967 129.15901184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e10 -01542968 129.15904236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -01542969 129.15904236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e20 -01542970 129.15907288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -01542971 129.15907288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e30 -01542972 129.15910339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -01542973 129.15910339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e40 -01542974 129.15913391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -01542975 129.15914917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e50 -01542976 129.15916443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -01542977 129.15916443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e60 -01542978 129.15919495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -01542979 129.15919495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e70 -01542980 129.15922546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -01542981 129.15922546 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e80 -01542982 129.15925598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -01542983 129.15925598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e90 -01542984 129.15928650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -01542985 129.15928650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea0 -01545134 129.19145203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -01545135 129.19145203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d0 -01545136 129.19148254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -01545137 129.19148254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e0 -01545138 129.19149780 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -01545139 129.19151306 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f0 -01545140 129.19154358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -01545141 129.19154358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39200 -01545142 129.19155884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -01545143 129.19155884 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39210 -01545144 129.19158936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -01545145 129.19158936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39220 -01545146 129.19161987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -01545147 129.19161987 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39230 -01545148 129.19163513 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -01545149 129.19165039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39240 -01545150 129.19168091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -01545151 129.19168091 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39250 -01545152 129.19171143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -01545153 129.19171143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39260 -01545154 129.19172668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -01545155 129.19172668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39270 -01545156 129.19175720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -01545157 129.19175720 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39280 -01545158 129.19178772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -01545159 129.19178772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39290 -01545160 129.19181824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -01545161 129.19181824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a0 -01545162 129.19184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -01545163 129.19184875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b0 -01545164 129.19187927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -01545165 129.19187927 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c0 -01545166 129.19189453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -01545167 129.19189453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d0 -01545168 129.19192505 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -01545169 129.19194031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e0 -01545170 129.19195557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -01545171 129.19195557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f0 -01545172 129.19198608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -01545173 129.19198608 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39300 -01545174 129.19201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -01545175 129.19201660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39310 -01545176 129.19203186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -01545177 129.19203186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39320 -01547227 129.22102356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d330 -01547228 129.22103882 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -01547229 129.22105408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d340 -01547230 129.22108459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -01547231 129.22108459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d350 -01547232 129.22109985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -01547233 129.22109985 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d360 -01547234 129.22113037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -01547235 129.22113037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d370 -01547236 129.22116089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -01547237 129.22116089 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d380 -01547238 129.22119141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -01547239 129.22119141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d390 -01547240 129.22120667 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -01547241 129.22122192 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a0 -01547242 129.22125244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -01547243 129.22125244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b0 -01547244 129.22126770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -01547245 129.22126770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c0 -01547246 129.22129822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -01547247 129.22129822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d0 -01547248 129.22132874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -01547249 129.22132874 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e0 -01547250 129.22134399 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -01547251 129.22135925 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f0 -01547252 129.22138977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -01547253 129.22138977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d400 -01547254 129.22142029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -01547255 129.22142029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d410 -01547256 129.22143555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -01547257 129.22143555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d420 -01547258 129.22146606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -01547259 129.22146606 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d430 -01547260 129.22149658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -01547261 129.22149658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d440 -01547262 129.22152710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -01547263 129.22152710 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d450 -01547264 129.22155762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -01547265 129.22155762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d460 -01547266 129.22158813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -01547267 129.22158813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d470 -01547268 129.22160339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -01547269 129.22160339 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d480 -01547270 129.22163391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d490 -01549236 129.24989319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -01549237 129.24989319 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -01549238 129.24992371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -01549239 129.24992371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41210 -01549240 129.24993896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -01549241 129.24995422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41220 -01549242 129.24998474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -01549243 129.24998474 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41230 -01549244 129.25001526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -01549245 129.25001526 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41240 -01549246 129.25003052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -01549247 129.25003052 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41250 -01549248 129.25006104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -01549249 129.25007629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41260 -01549250 129.25010681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -01549251 129.25010681 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41270 -01549252 129.25012207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -01549253 129.25012207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41280 -01549254 129.25015259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -01549255 129.25015259 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41290 -01549256 129.25018311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -01549257 129.25018311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a0 -01549258 129.25021362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -01549259 129.25021362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b0 -01549260 129.25024414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -01549261 129.25024414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c0 -01549262 129.25025940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -01549263 129.25025940 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d0 -01549264 129.25028992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -01549265 129.25028992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e0 -01549266 129.25032043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -01549267 129.25033569 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f0 -01549268 129.25035095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -01549269 129.25035095 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41300 -01549270 129.25038147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -01549271 129.25038147 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41310 -01549272 129.25041199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -01549273 129.25041199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41320 -01549274 129.25042725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -01549275 129.25042725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41330 -01549276 129.25045776 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -01549277 129.25047302 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41340 -01549278 129.25050354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -01549279 129.25050354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41350 -01558306 129.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01558307 129.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01558308 129.64393616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01558309 129.64395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01558310 129.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01558311 129.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01558312 129.64401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01558313 129.64401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01558314 129.64402771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01558315 129.64402771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01558316 129.64405823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01558317 129.64405823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01558318 129.64408875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01558319 129.64408875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01558320 129.64411926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01558321 129.64411926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01558322 129.64414978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01558323 129.64414978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01558324 129.64418030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01558325 129.64418030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01558326 129.64419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01558327 129.64419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01558328 129.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01558329 129.64424133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01558330 129.64425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01558331 129.64425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01558332 129.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01558333 129.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01558334 129.64431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01558335 129.64431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01558336 129.64433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01558337 129.64433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01558338 129.64436340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01558339 129.64436340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01558340 129.64439392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01558341 129.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01558342 129.64442444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01558343 129.64442444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01558344 129.64445496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01558345 129.64445496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01558346 129.64448547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01558347 129.64448547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01558348 129.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01558349 129.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01558350 129.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01558351 129.64454651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01558352 129.64457703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01558353 129.64457703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01558354 129.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01558355 129.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01558356 129.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01558357 129.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01558358 129.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01558359 129.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01558360 129.64466858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01558361 129.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01558362 129.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01558363 129.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01558364 129.64472961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01558365 129.64472961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01558366 129.64476013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01558367 129.64476013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01558368 129.64479065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01558369 129.64479065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01558370 129.64480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01558371 129.64482117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01558372 129.64485168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01558373 129.64485168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01558374 129.64488220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01558375 129.64488220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01558376 129.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01558377 129.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01558378 129.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01558379 129.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01558380 129.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01558381 129.64497375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01558382 129.64498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01558383 129.64498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01558384 129.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01558385 129.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01558386 129.64505005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01558387 129.64505005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01558388 129.64506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01558389 129.64506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01558390 129.64509583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01558391 129.64511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01558392 129.64512634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01558393 129.64512634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01558394 129.64515686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01558395 129.64515686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01558396 129.64518738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01558397 129.64518738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01558398 129.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01558399 129.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01558400 129.64523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01558401 129.64523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01558402 129.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01558403 129.64527893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01558404 129.64529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01558405 129.64529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01558406 129.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01558407 129.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01558408 129.64535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01558409 129.64535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01558410 129.64537048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01558411 129.64537048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01558412 129.64540100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01558413 129.64541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01558414 129.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01558415 129.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01558416 129.64546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01558417 129.64546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01558418 129.64549255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01558419 129.64549255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01558420 129.64552307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01558421 129.64552307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01558422 129.64553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01558423 129.64553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01558424 129.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01558425 129.64558411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01558426 129.64559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01558427 129.64559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01558428 129.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01558429 129.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01558430 129.64567566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01558431 129.64567566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01558432 129.64570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01558433 129.64570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01558434 129.64573669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01558435 129.64573669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01558436 129.64576721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01558437 129.64576721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01558438 129.64578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01558439 129.64578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01558440 129.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01558441 129.64582825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01558442 129.64584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01558443 129.64584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01558444 129.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01558445 129.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01558446 129.64590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01558447 129.64590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01558448 129.64591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01558449 129.64591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01558450 129.64595032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01558451 129.64596558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01558452 129.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01558453 129.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01558454 129.64601135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01558455 129.64601135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01558456 129.64604187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01558457 129.64604187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01558458 129.64607239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01558459 129.64607239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01558460 129.64608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01558461 129.64610291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01558462 129.64613342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01558463 129.64613342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01558464 129.64616394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01558465 129.64616394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01558466 129.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01558467 129.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01558468 129.64620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01558469 129.64620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01558470 129.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01558471 129.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01558472 129.64625549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01558473 129.64627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01558474 129.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01558475 129.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01558476 129.64631653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01558477 129.64631653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01558478 129.64634705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01558479 129.64634705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01558480 129.64637756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01558481 129.64637756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01558482 129.64639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01558483 129.64640808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01558484 129.64643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01558485 129.64643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01558486 129.64646912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01558487 129.64646912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01558488 129.64648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01558489 129.64648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01558490 129.64651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01558491 129.64651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01558492 129.64654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01558493 129.64656067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01558494 129.64657593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01558495 129.64657593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01558496 129.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01558497 129.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01558498 129.64663696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01558499 129.64663696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01558500 129.64665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01558501 129.64665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01558502 129.64668274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01558503 129.64668274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01558504 129.64671326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01558505 129.64671326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01558506 129.64674377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01558507 129.64674377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01558508 129.64677429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01558509 129.64677429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01558510 129.64678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01558511 129.64678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01558512 129.64682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01558513 129.64682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01558514 129.64685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01558515 129.64686584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01558516 129.64688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01558517 129.64688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01558518 129.64691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01558519 129.64691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01558520 129.64694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01558521 129.64694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01558522 129.64695740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01558523 129.64695740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01558524 129.64698792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01558525 129.64700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01558526 129.64703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01558527 129.64703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01558528 129.64704895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01558529 129.64704895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01558530 129.64707947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01558531 129.64707947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01558532 129.64710999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01558533 129.64710999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01558534 129.64712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01558535 129.64714050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01558536 129.64717102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01558537 129.64717102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01558538 129.64718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01558539 129.64718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01558540 129.64721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01558541 129.64721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01558542 129.64724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01558543 129.64724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01558544 129.64727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01558545 129.64727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01558546 129.64729309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01558547 129.64730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01558548 129.64733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01558549 129.64733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01558550 129.64735413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01558551 129.64735413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01558552 129.64738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01558553 129.64738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01558554 129.64741516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01558555 129.64741516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01558556 129.64743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01558557 129.64744568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01558558 129.64747620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01558559 129.64747620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01558560 129.64750671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01558561 129.64750671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01558562 129.64752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01558563 129.64752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01558564 129.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01558565 129.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01558566 129.64758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01558567 129.64758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01558568 129.64761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01558569 129.64761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01558570 129.64764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01558571 129.64764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01558572 129.64767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01558573 129.64767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01558574 129.64768982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01558575 129.64768982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01558576 129.64772034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01558577 129.64773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01558578 129.64775085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01558579 129.64775085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01558580 129.64778137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01558581 129.64778137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01558582 129.64781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01558583 129.64781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01558584 129.64782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01558585 129.64782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01558586 129.64785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01558587 129.64787292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01558588 129.64788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01558589 129.64790344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01558590 129.64791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01558591 129.64791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01558592 129.64794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01558593 129.64794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01558594 129.64797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01558595 129.64797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01558596 129.64799500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01558597 129.64799500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01558598 129.64802551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01558599 129.64804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01558600 129.64807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01558601 129.64807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01558602 129.64808655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01558603 129.64808655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01558604 129.64811707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01558605 129.64811707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01558606 129.64814758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01558607 129.64814758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01558608 129.64816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01558609 129.64817810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01558610 129.64820862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01558611 129.64820862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01558612 129.64822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01558613 129.64822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01558614 129.64825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01558615 129.64825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01558616 129.64828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01558617 129.64828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01558618 129.64830017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01558619 129.64831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01558620 129.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01558621 129.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01558622 129.64837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01558623 129.64837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01558624 129.64839172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01558625 129.64839172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01558626 129.64842224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01558627 129.64842224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01558628 129.64845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01558629 129.64845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01558630 129.64846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01558631 129.64848328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01558632 129.64851379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01558633 129.64851379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01558634 129.64854431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01558635 129.64854431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01558636 129.64855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01558637 129.64855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01558638 129.64859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01558639 129.64859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01558640 129.64862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01558641 129.64862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01558642 129.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01558643 129.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01558644 129.64868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01558645 129.64868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01558646 129.64869690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01558647 129.64869690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01558648 129.64872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01558649 129.64872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01558650 129.64875793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01558651 129.64875793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01558652 129.64877319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01558653 129.64878845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01558654 129.64881897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01558655 129.64881897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01558656 129.64884949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01558657 129.64884949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01558658 129.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01558659 129.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01558660 129.64889526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01558661 129.64889526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01558662 129.64892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01558663 129.64894104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01558664 129.64895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01558665 129.64895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01558666 129.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01558667 129.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01558668 129.64901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01558669 129.64901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01558670 129.64903259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01558671 129.64903259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01558672 129.64906311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01558673 129.64907837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01558674 129.64909363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01558675 129.64909363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01558676 129.64912415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01558677 129.64912415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01558678 129.64915466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01558679 129.64915466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01558680 129.64918518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01558681 129.64918518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01558682 129.64920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01558683 129.64921570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01558684 129.64924622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01558685 129.64924622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01558686 129.64926147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01558687 129.64926147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01558688 129.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01558689 129.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01558690 129.64932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01558691 129.64932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01558692 129.64933777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01558693 129.64933777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01558694 129.64936829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01558695 129.64938354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01558696 129.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01558697 129.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01558698 129.64942932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01558699 129.64942932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01558700 129.64945984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01558701 129.64945984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01558702 129.64949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01558703 129.64949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01558704 129.64950562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01558705 129.64952087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01558706 129.64955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01558707 129.64955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01558708 129.64958191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01558709 129.64958191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01558710 129.64959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01558711 129.64959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01558712 129.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01558713 129.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01558714 129.64965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01558715 129.64965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01558716 129.64967346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01558717 129.64968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01558718 129.64971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01558719 129.64971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01558720 129.64973450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01558721 129.64973450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01558722 129.64976501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01558723 129.64976501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01558724 129.64979553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01558725 129.64979553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01558726 129.64981079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01558727 129.64982605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01558728 129.64985657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01558729 129.64985657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01558730 129.64988708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01558731 129.64988708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01558732 129.64990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01558733 129.64990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01558734 129.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01558735 129.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01558736 129.64996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01558737 129.64997864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01558738 129.64999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01558739 129.64999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01558740 129.65002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01558741 129.65002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01558742 129.65005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01558743 129.65005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01558744 129.65007019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01558745 129.65007019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01558746 129.65010071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01558747 129.65011597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01558748 129.65013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01558749 129.65013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01558750 129.65016174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01558751 129.65016174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01558752 129.65019226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01558753 129.65019226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01558754 129.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01558755 129.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01558756 129.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01558757 129.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01558758 129.65026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01558759 129.65028381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01558760 129.65029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01558761 129.65029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01558762 129.65032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01558763 129.65032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01558764 129.65036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01558765 129.65036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01558766 129.65037537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01558767 129.65037537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01558768 129.65040588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01558769 129.65042114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01558770 129.65045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01558771 129.65045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01558772 129.65046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01558773 129.65046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01558774 129.65049744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01558775 129.65049744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01558776 129.65052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01558777 129.65052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01558778 129.65054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01558779 129.65055847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01558780 129.65058899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01558781 129.65058899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01558782 129.65060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01558783 129.65060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01558784 129.65063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01558785 129.65063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01558786 129.65066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01558787 129.65066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01558788 129.65068054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01558789 129.65069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01560508 129.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01560509 129.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01560510 129.67514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01560511 129.67514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01560512 129.67515564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01560513 129.67517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01560514 129.67518616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01560515 129.67520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01560516 129.67523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01560517 129.67523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01560518 129.67524719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01560519 129.67524719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01560520 129.67527771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01560521 129.67527771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01560522 129.67530823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01560523 129.67530823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01560524 129.67532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01560525 129.67533875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01560526 129.67536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01560527 129.67536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01560528 129.67538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01560529 129.67538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01560530 129.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01560531 129.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01560532 129.67544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01560533 129.67544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01560534 129.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01560535 129.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01560536 129.67549133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01560537 129.67550659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01560538 129.67553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01560539 129.67553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01560540 129.67555237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01560541 129.67555237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01560542 129.67558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01560543 129.67558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01560544 129.67561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01560545 129.67561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01560546 129.67562866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01560547 129.67564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01560548 129.67567444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01560549 129.67567444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01560550 129.67570496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01560551 129.67570496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01576887 129.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d8 -01576888 129.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d8 -01576889 129.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e8 -01576890 129.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e8 -01576891 129.90141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f8 -01576892 129.90141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f8 -01576893 129.90144348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25508 -01576894 129.90145874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25508 -01576895 129.90147400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25518 -01576896 129.90147400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25518 -01576897 129.90150452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25528 -01576898 129.90150452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25528 -01576899 129.90153503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25538 -01576900 129.90153503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25538 -01576901 129.90155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25548 -01576902 129.90155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25548 -01576903 129.90158081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25558 -01576904 129.90159607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25558 -01576905 129.90162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25568 -01576906 129.90162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25568 -01576907 129.90164185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25578 -01576908 129.90164185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25578 -01576909 129.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25588 -01576910 129.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25588 -01576911 129.90170288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25598 -01576912 129.90170288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25598 -01576913 129.90171814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a8 -01576914 129.90171814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a8 -01576915 129.90176392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b8 -01576916 129.90176392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b8 -01576917 129.90177917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c8 -01576918 129.90177917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c8 -01576919 129.90180969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d8 -01576920 129.90180969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255d8 -01576921 129.90184021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e8 -01576922 129.90184021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255e8 -01576923 129.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f8 -01576924 129.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x255f8 -01576925 129.90188599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25608 -01576926 129.90190125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25608 -01576927 129.90193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25618 -01576928 129.90193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25618 -01576929 129.90194702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25628 -01576930 129.90194702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25628 -01579763 129.94169617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -01579764 129.94169617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -01579765 129.94172668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -01579766 129.94174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -01579767 129.94175720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -01579768 129.94175720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -01579769 129.94178772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -01579770 129.94178772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -01579771 129.94181824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -01579772 129.94181824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -01579773 129.94183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af08 -01579774 129.94183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af08 -01579775 129.94187927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af18 -01579776 129.94187927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af18 -01579777 129.94189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af28 -01579778 129.94189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af28 -01579779 129.94192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af38 -01579780 129.94192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af38 -01579781 129.94195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af48 -01579782 129.94195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af48 -01579783 129.94197083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af58 -01579784 129.94198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af58 -01579785 129.94201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af68 -01579786 129.94201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af68 -01579787 129.94204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af78 -01579788 129.94204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af78 -01579789 129.94206238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af88 -01579790 129.94206238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af88 -01579791 129.94209290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af98 -01579792 129.94210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af98 -01579793 129.94213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa8 -01579794 129.94213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa8 -01579795 129.94215393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb8 -01579796 129.94215393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb8 -01579797 129.94218445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc8 -01579798 129.94218445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc8 -01579799 129.94221497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd8 -01579800 129.94221497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd8 -01579801 129.94223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe8 -01579802 129.94224548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe8 -01579803 129.94227600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff8 -01579804 129.94227600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff8 -01579805 129.94229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b008 -01579806 129.94229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b008 -01582833 129.98477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -01582834 129.98478699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -01582835 129.98481750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -01582836 129.98481750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -01582837 129.98484802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -01582838 129.98484802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -01582839 129.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -01582840 129.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -01582841 129.98489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -01582842 129.98490906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -01582843 129.98493958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -01582844 129.98493958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -01582845 129.98495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -01582846 129.98495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -01582847 129.98498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -01582848 129.98498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -01582849 129.98501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -01582850 129.98501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -01582851 129.98503113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -01582852 129.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -01582853 129.98507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -01582854 129.98507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -01582855 129.98510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -01582856 129.98510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -01582857 129.98512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f68 -01582858 129.98512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f68 -01582859 129.98515320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f78 -01582860 129.98515320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f78 -01582861 129.98518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f88 -01582862 129.98518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f88 -01582863 129.98519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f98 -01582864 129.98521423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f98 -01582865 129.98524475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa8 -01582866 129.98524475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa8 -01582867 129.98526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb8 -01582868 129.98526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb8 -01582869 129.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc8 -01582870 129.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc8 -01582871 129.98532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd8 -01582872 129.98532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd8 -01582873 129.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe8 -01582874 129.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe8 -01582875 129.98538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff8 -01582876 129.98538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff8 -01585691 130.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -01585692 130.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -01585693 130.02433777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -01585694 130.02433777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -01585695 130.02435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -01585696 130.02435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -01585697 130.02438354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -01585698 130.02438354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -01585699 130.02441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -01585700 130.02441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -01585701 130.02442932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -01585702 130.02442932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -01585703 130.02445984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -01585704 130.02445984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -01585705 130.02449036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -01585706 130.02450562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -01585707 130.02450562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -01585708 130.02452087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -01585709 130.02453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -01585710 130.02455139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -01585711 130.02458191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -01585712 130.02458191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -01585713 130.02459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a8 -01585714 130.02459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a8 -01585715 130.02462769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b8 -01585716 130.02464294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b8 -01585717 130.02465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c8 -01585718 130.02465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c8 -01585719 130.02468872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d8 -01585720 130.02468872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d8 -01585721 130.02471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e8 -01585722 130.02471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e8 -01585723 130.02474976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f8 -01585724 130.02474976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f8 -01585725 130.02476501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36908 -01585726 130.02478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36908 -01585727 130.02479553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36918 -01585728 130.02481079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36918 -01585729 130.02482605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36928 -01585730 130.02482605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36928 -01585731 130.02485657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36938 -01585732 130.02485657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36938 -01585733 130.02488708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36948 -01585734 130.02488708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36948 -01588391 130.06178284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -01588392 130.06179810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -01588393 130.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -01588394 130.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -01588395 130.06184387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -01588396 130.06184387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -01588397 130.06187439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -01588398 130.06187439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -01588399 130.06190491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -01588400 130.06190491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -01588401 130.06192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -01588402 130.06193542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -01588403 130.06196594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -01588404 130.06196594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -01588405 130.06199646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -01588406 130.06199646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -01588407 130.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -01588408 130.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -01588409 130.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -01588410 130.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -01588411 130.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -01588412 130.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -01588413 130.06210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -01588414 130.06210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -01588415 130.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -01588416 130.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -01588417 130.06216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -01588418 130.06216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -01588419 130.06217957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -01588420 130.06217957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -01588421 130.06221008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -01588422 130.06221008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -01588423 130.06224060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -01588424 130.06224060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -01588425 130.06227112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -01588426 130.06227112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -01588427 130.06230164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -01588428 130.06230164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -01588429 130.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -01588430 130.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -01588431 130.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd98 -01588432 130.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd98 -01588433 130.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda8 -01588434 130.06239319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda8 -01591747 130.10887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42538 -01591748 130.10888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42538 -01591749 130.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42548 -01591750 130.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42548 -01591751 130.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42558 -01591752 130.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42558 -01591753 130.10896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42568 -01591754 130.10896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42568 -01591755 130.10899353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42578 -01591756 130.10899353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42578 -01591757 130.10902405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42588 -01591758 130.10902405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42588 -01591759 130.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42598 -01591760 130.10905457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42598 -01591761 130.10908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a8 -01591762 130.10908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425a8 -01591763 130.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b8 -01591764 130.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425b8 -01591765 130.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c8 -01591766 130.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425c8 -01591767 130.10916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d8 -01591768 130.10916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425d8 -01591769 130.10917664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e8 -01591770 130.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425e8 -01591771 130.10920715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f8 -01591772 130.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x425f8 -01591773 130.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42608 -01591774 130.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42608 -01591775 130.10926819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42618 -01591776 130.10926819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42618 -01591777 130.10929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -01591778 130.10929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -01591779 130.10932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -01591780 130.10932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -01591781 130.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -01591782 130.10935974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -01591783 130.10939026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -01591784 130.10939026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -01591785 130.10942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -01591786 130.10942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -01591787 130.10943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -01591788 130.10943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -01591789 130.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -01591790 130.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -01594011 130.14033508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46be8 -01594012 130.14036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -01594013 130.14036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -01594014 130.14039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -01594015 130.14039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -01594016 130.14041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c18 -01594017 130.14042664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c18 -01594018 130.14045715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c28 -01594019 130.14045715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c28 -01594020 130.14047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c38 -01594021 130.14047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c38 -01594022 130.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c48 -01594023 130.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c48 -01594024 130.14053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c58 -01594025 130.14053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c58 -01594026 130.14056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c68 -01594027 130.14056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c68 -01594028 130.14059448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01594029 130.14059448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01594030 130.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01594031 130.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01594032 130.14064026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01594033 130.14064026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01594034 130.14067078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01594035 130.14067078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01594036 130.14070129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01594037 130.14070129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01594038 130.14071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01594039 130.14073181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01594040 130.14076233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01594041 130.14076233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01594042 130.14079285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01594043 130.14079285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01594044 130.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01594045 130.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01594046 130.14083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01594047 130.14083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01594048 130.14086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01594049 130.14088440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01594050 130.14089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01594051 130.14089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01594052 130.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01594053 130.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01594054 130.14096069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -01598356 130.17481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b848 -01598357 130.17481995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01598358 130.17483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b848 -01598359 130.17483521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01598360 130.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b858 -01598361 130.17486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01598362 130.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b858 -01598363 130.17486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01598364 130.17488098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -01598365 130.17488098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01598366 130.17488098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -01598367 130.17488098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01598368 130.17491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -01598369 130.17491150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01598370 130.17491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -01598371 130.17491150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01598372 130.17494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -01598373 130.17494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01598374 130.17494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -01598375 130.17494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01598376 130.17495728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -01598377 130.17495728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01598378 130.17497253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -01598379 130.17497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01598380 130.17500305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -01598381 130.17500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01598382 130.17500305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -01598383 130.17500305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01598384 130.17503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -01598385 130.17503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01598386 130.17503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -01598387 130.17503357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01598388 130.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -01598389 130.17504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01598390 130.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -01598391 130.17504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01598392 130.17507935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d8 -01598393 130.17507935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01598394 130.17507935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d8 -01598395 130.17507935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01598396 130.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e8 -01598397 130.17510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01598398 130.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e8 -01598399 130.17510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01618322 130.39945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -01618323 130.39947510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -01618324 130.39950562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -01618325 130.39950562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -01618326 130.39952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -01618327 130.39952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -01618328 130.39955139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -01618329 130.39955139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -01618330 130.39958191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -01618331 130.39958191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -01618332 130.39959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -01618333 130.39959717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -01618334 130.39962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -01618335 130.39964294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -01618336 130.39965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -01618337 130.39967346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -01618338 130.39967346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -01618339 130.39968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -01618340 130.39971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -01618341 130.39971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -01618342 130.39974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -01618343 130.39974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -01618344 130.39976501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -01618345 130.39976501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -01618346 130.39979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -01618347 130.39979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -01618348 130.39982605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -01618349 130.39982605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -01618350 130.39984131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -01618351 130.39984131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -01618352 130.39987183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -01618353 130.39988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -01618354 130.39991760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -01618355 130.39991760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -01618356 130.39993286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -01618357 130.39993286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -01618358 130.39996338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b8 -01618359 130.39996338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b8 -01618360 130.39999390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c8 -01618361 130.39999390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c8 -01618362 130.40002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d8 -01618363 130.40002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d8 -01618364 130.40005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e8 -01618365 130.40005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e8 -01620817 130.43400574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29488 -01620818 130.43403625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29498 -01620819 130.43403625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29498 -01620820 130.43406677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a8 -01620821 130.43406677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294a8 -01620822 130.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b8 -01620823 130.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294b8 -01620824 130.43411255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c8 -01620825 130.43411255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294c8 -01620826 130.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d8 -01620827 130.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294d8 -01620828 130.43415833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -01620829 130.43417358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294e8 -01620830 130.43418884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -01620831 130.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -01620832 130.43423462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -01620833 130.43423462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -01620834 130.43424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -01620835 130.43424988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -01620836 130.43428040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -01620837 130.43428040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -01620838 130.43431091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -01620839 130.43431091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -01620840 130.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -01620841 130.43434143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -01620842 130.43437195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -01620843 130.43437195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -01620844 130.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -01620845 130.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -01620846 130.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -01620847 130.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -01620848 130.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -01620849 130.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -01620850 130.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -01620851 130.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -01620852 130.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -01620853 130.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -01620854 130.43453979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -01620855 130.43453979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -01620856 130.43455505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -01620857 130.43455505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -01620858 130.43458557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -01620859 130.43458557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -01620860 130.43461609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e8 -01623012 130.46464539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -01623013 130.46464539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -01623014 130.46467590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -01623015 130.46467590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -01623016 130.46470642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -01623017 130.46470642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -01623018 130.46473694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -01623019 130.46473694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -01623020 130.46475220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -01623021 130.46476746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -01623022 130.46479797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -01623023 130.46479797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -01623024 130.46481323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -01623025 130.46481323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -01623026 130.46484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -01623027 130.46484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -01623028 130.46487427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -01623029 130.46487427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -01623030 130.46488953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -01623031 130.46490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -01623032 130.46493530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -01623033 130.46493530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -01623034 130.46496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -01623035 130.46496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -01623036 130.46498108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e8 -01623037 130.46498108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e8 -01623038 130.46501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f8 -01623039 130.46501160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f8 -01623040 130.46504211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da08 -01623041 130.46504211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da08 -01623042 130.46507263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -01623043 130.46507263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -01623044 130.46510315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -01623045 130.46510315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -01623046 130.46513367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -01623047 130.46513367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -01623048 130.46514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -01623049 130.46514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -01623050 130.46517944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -01623051 130.46517944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -01623052 130.46520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -01623053 130.46520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -01623054 130.46522522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -01623055 130.46524048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -01625402 130.49795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d8 -01625403 130.49795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d8 -01625404 130.49798584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e8 -01625405 130.49798584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e8 -01625406 130.49801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f8 -01625407 130.49801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f8 -01625408 130.49803162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32408 -01625409 130.49803162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32408 -01625410 130.49806213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32418 -01625411 130.49806213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32418 -01625412 130.49809265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -01625413 130.49809265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -01625414 130.49810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -01625415 130.49810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -01625416 130.49813843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -01625417 130.49813843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -01625418 130.49816895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -01625419 130.49816895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -01625420 130.49818420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -01625421 130.49819946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -01625422 130.49821472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -01625423 130.49822998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -01625424 130.49824524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -01625425 130.49824524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -01625426 130.49827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -01625427 130.49827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -01625428 130.49830627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -01625429 130.49830627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -01625430 130.49833679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -01625431 130.49833679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -01625432 130.49835205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -01625433 130.49835205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -01625434 130.49838257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -01625435 130.49838257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -01625436 130.49841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -01625437 130.49841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -01625438 130.49842834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -01625439 130.49842834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -01625440 130.49845886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -01625441 130.49845886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -01625442 130.49848938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -01625443 130.49848938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -01625444 130.49850464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -01625445 130.49851990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -01627839 130.53198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -01627840 130.53198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ff8 -01627841 130.53201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -01627842 130.53201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37008 -01627843 130.53202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -01627844 130.53202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37018 -01627845 130.53205872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -01627846 130.53205872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37028 -01627847 130.53208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37038 -01627848 130.53208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37038 -01627849 130.53210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -01627850 130.53210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -01627851 130.53213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37058 -01627852 130.53213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37058 -01627853 130.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37068 -01627854 130.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37068 -01627855 130.53218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37078 -01627856 130.53219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37078 -01627857 130.53221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37088 -01627858 130.53222656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37088 -01627859 130.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37098 -01627860 130.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37098 -01627861 130.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a8 -01627862 130.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a8 -01627863 130.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b8 -01627864 130.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b8 -01627865 130.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -01627866 130.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -01627867 130.53234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -01627868 130.53234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -01627869 130.53237915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -01627870 130.53237915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -01627871 130.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -01627872 130.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -01627873 130.53242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -01627874 130.53242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -01627875 130.53245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -01627876 130.53245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -01627877 130.53248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -01627878 130.53248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -01627879 130.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -01627880 130.53251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -01627881 130.53254700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -01627882 130.53254700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -01630300 130.56608582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -01630301 130.56608582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -01630302 130.56610107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -01630303 130.56611633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -01630304 130.56616211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -01630305 130.56616211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -01630306 130.56617737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -01630307 130.56619263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -01630308 130.56622314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -01630309 130.56622314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -01630310 130.56625366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -01630311 130.56625366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -01630312 130.56626892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -01630313 130.56626892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -01630314 130.56629944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -01630315 130.56629944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -01630316 130.56632996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -01630317 130.56632996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -01630318 130.56636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -01630319 130.56636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -01630320 130.56639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -01630321 130.56639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -01630322 130.56640625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -01630323 130.56640625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -01630324 130.56643677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd98 -01630325 130.56643677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd98 -01630326 130.56648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda8 -01630327 130.56648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bda8 -01630328 130.56649780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb8 -01630329 130.56649780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdb8 -01630330 130.56652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc8 -01630331 130.56652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdc8 -01630332 130.56655884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd8 -01630333 130.56655884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdd8 -01630334 130.56657410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde8 -01630335 130.56657410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bde8 -01630336 130.56660461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf8 -01630337 130.56661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bdf8 -01630338 130.56665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be08 -01630339 130.56665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be08 -01630340 130.56666565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be18 -01630341 130.56666565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be18 -01630342 130.56669617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be28 -01630343 130.56669617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be28 -01630410 130.56767273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -01630411 130.56767273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -01630412 130.56768799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -01630413 130.56768799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -01630414 130.56771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -01630415 130.56771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -01630416 130.56774902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -01630417 130.56774902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -01630418 130.56776428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -01630419 130.56777954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -01630420 130.56779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -01630421 130.56781006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -01630422 130.56784058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -01630423 130.56784058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -01630424 130.56785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -01630425 130.56785583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -01630426 130.56788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c8 -01630427 130.56788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c8 -01630428 130.56791687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d8 -01630429 130.56791687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d8 -01630430 130.56793213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e8 -01630431 130.56794739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e8 -01630432 130.56797791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f8 -01630433 130.56797791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f8 -01630434 130.56799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c108 -01630435 130.56799316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c108 -01630436 130.56802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c118 -01630437 130.56802368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c118 -01630438 130.56805420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c128 -01630439 130.56805420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c128 -01630440 130.56808472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c138 -01630441 130.56808472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c138 -01630442 130.56811523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c148 -01630443 130.56811523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c148 -01630444 130.56814575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c158 -01630445 130.56814575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c158 -01630446 130.56816101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c168 -01630447 130.56816101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c168 -01630448 130.56819153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c178 -01630449 130.56819153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c178 -01630450 130.56822205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c188 -01630451 130.56823730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c188 -01630452 130.56825256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c198 -01630453 130.56825256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c198 -01632265 130.59761047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa38 -01632266 130.59764099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -01632267 130.59764099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -01632268 130.59768677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -01632269 130.59768677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -01632270 130.59771729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -01632271 130.59771729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -01632272 130.59776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -01632273 130.59777832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -01632274 130.59780884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -01632275 130.59780884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -01632276 130.59785461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa98 -01632277 130.59785461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa98 -01632278 130.59788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa8 -01632279 130.59788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa8 -01632280 130.59793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab8 -01632281 130.59794617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab8 -01632282 130.59797668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -01632283 130.59797668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -01632284 130.59802246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -01632285 130.59802246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -01632286 130.59805298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -01632287 130.59805298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -01632288 130.59809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -01632289 130.59809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -01632290 130.59814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -01632291 130.59814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -01632292 130.59817505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -01632293 130.59817505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -01632294 130.59822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -01632295 130.59822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -01632296 130.59826660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -01632297 130.59826660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -01632298 130.59829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -01632299 130.59829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -01632300 130.59834290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -01632301 130.59834290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -01632302 130.59838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -01632303 130.59838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -01632304 130.59841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -01632305 130.59841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -01632306 130.59846497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -01632307 130.59846497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -01632308 130.59849548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -01634276 130.63153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -01634277 130.63154602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -01634278 130.63156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43928 -01634279 130.63156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43928 -01634280 130.63159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43938 -01634281 130.63159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43938 -01634282 130.63162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43948 -01634283 130.63162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43948 -01634284 130.63163757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43958 -01634285 130.63163757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43958 -01634286 130.63166809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43968 -01634287 130.63168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43968 -01634288 130.63169861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43978 -01634289 130.63169861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43978 -01634290 130.63172913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43988 -01634291 130.63172913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43988 -01634292 130.63175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43998 -01634293 130.63175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43998 -01634294 130.63177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a8 -01634295 130.63177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a8 -01634296 130.63180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b8 -01634297 130.63182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b8 -01634298 130.63185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c8 -01634299 130.63185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c8 -01634300 130.63186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d8 -01634301 130.63186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439d8 -01634302 130.63189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e8 -01634303 130.63189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439e8 -01634304 130.63194275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f8 -01634305 130.63194275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x439f8 -01634306 130.63197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a08 -01634307 130.63197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a08 -01634308 130.63201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a18 -01634309 130.63201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a18 -01634310 130.63203430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a28 -01634311 130.63203430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a28 -01634312 130.63206482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a38 -01634313 130.63208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a38 -01634314 130.63209534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a48 -01634315 130.63209534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a48 -01634316 130.63212585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a58 -01634317 130.63212585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a58 -01634318 130.63215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a68 -01634319 130.63215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a68 -01636840 130.67247009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48928 -01636841 130.67248535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48928 -01636842 130.67251587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48938 -01636843 130.67251587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48938 -01636844 130.67253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48948 -01636845 130.67253113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48948 -01636846 130.67256165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48958 -01636847 130.67256165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48958 -01636848 130.67259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48968 -01636849 130.67259216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48968 -01636850 130.67260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48978 -01636851 130.67260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48978 -01636852 130.67263794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48988 -01636853 130.67265320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48988 -01636854 130.67268372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48998 -01636855 130.67268372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48998 -01636856 130.67269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a8 -01636857 130.67269897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489a8 -01636858 130.67272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b8 -01636859 130.67272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489b8 -01636860 130.67276001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c8 -01636861 130.67277527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489c8 -01636862 130.67279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d8 -01636863 130.67279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489d8 -01636864 130.67282104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e8 -01636865 130.67282104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489e8 -01636866 130.67285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f8 -01636867 130.67285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x489f8 -01636868 130.67286682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a08 -01636869 130.67288208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a08 -01636870 130.67291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a18 -01636871 130.67291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a18 -01636872 130.67292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a28 -01636873 130.67292786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a28 -01636874 130.67295837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a38 -01636875 130.67295837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a38 -01636876 130.67298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a48 -01636877 130.67298889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a48 -01636878 130.67300415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a58 -01636879 130.67301941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a58 -01636880 130.67304993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -01636881 130.67304993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -01636882 130.67308044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -01636883 130.67308044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -01638743 130.69937134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c488 -01638744 130.69938660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c498 -01638745 130.69938660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c498 -01638746 130.69941711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a8 -01638747 130.69941711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a8 -01638748 130.69944763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b8 -01638749 130.69944763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b8 -01638750 130.69946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c8 -01638751 130.69947815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4c8 -01638752 130.69950867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d8 -01638753 130.69950867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4d8 -01638754 130.69953918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e8 -01638755 130.69953918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4e8 -01638756 130.69955444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f8 -01638757 130.69955444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4f8 -01638758 130.69958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c508 -01638759 130.69958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c508 -01638760 130.69961548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c518 -01638761 130.69961548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c518 -01638762 130.69963074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c528 -01638763 130.69964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c528 -01638764 130.69967651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c538 -01638765 130.69967651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c538 -01638766 130.69969177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c548 -01638767 130.69969177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c548 -01638768 130.69972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c558 -01638769 130.69972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c558 -01638770 130.69975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c568 -01638771 130.69975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c568 -01638772 130.69978333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c578 -01638773 130.69978333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c578 -01638774 130.69981384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c588 -01638775 130.69981384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c588 -01638776 130.69984436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c598 -01638777 130.69984436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c598 -01638778 130.69985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a8 -01638779 130.69985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5a8 -01638780 130.69989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b8 -01638781 130.69989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5b8 -01638782 130.69992065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c8 -01638783 130.69993591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5c8 -01638784 130.69995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d8 -01638785 130.69995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5d8 -01638786 130.69998169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c5e8 -01642095 131.02601624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642096 131.12144470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642097 131.19546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642098 131.23942566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642099 131.30249023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642100 131.30253601 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642101 131.30255127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642102 131.30256653 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01642103 131.30268860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642104 131.30268860 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642105 131.30276489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642106 131.30276489 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642107 131.37760925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642108 131.46554565 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642109 131.55421448 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642110 131.55476379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642111 131.84899902 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01642112 131.86717224 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642113 131.86718750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642114 132.11705017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642115 133.80870056 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642116 133.80874634 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642117 133.80876160 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642118 133.80877686 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01642119 133.80889893 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642120 133.80891418 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642121 133.80895996 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01642122 133.80899048 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01642123 133.86962891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01642124 133.88766479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642125 133.88766479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642126 134.18792725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642127 134.18818665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642128 134.18841553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01642129 134.29447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01642130 134.29450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01642139 134.82417297 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642140 134.82421875 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01642141 134.82423401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01642142 134.82460022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01642143 134.85601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01642144 134.85603333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01642145 135.22872925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01642146 135.22872925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01642147 135.22875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01642148 135.22875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01642149 135.22879028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01642150 135.22879028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01642151 135.22880554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01642152 135.22880554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01642153 135.22883606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01642154 135.22885132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01642155 135.22888184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01642156 135.22888184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01642157 135.22889709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01642158 135.22889709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01642159 135.22892761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01642160 135.22892761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01642161 135.22895813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01642162 135.22895813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01642163 135.22897339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01642164 135.22898865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01642165 135.22901917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01642166 135.22901917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01642167 135.22904968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01642168 135.22904968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01642169 135.22906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01642170 135.22906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01642171 135.22909546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01642172 135.22909546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01642173 135.22912598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01642174 135.22912598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01642175 135.22915649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01642176 135.22915649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01642177 135.22918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01642178 135.22918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01642179 135.22920227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01642180 135.22920227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01642181 135.22923279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01642182 135.22923279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01642183 135.22926331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01642184 135.22927856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01642185 135.22929382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01642186 135.22929382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01642187 135.22932434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01642188 135.22932434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01642189 135.22935486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01642190 135.22935486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01642191 135.22937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01642192 135.22937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01642193 135.22940063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01642194 135.22941589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01642195 135.22944641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01642196 135.22944641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01642197 135.22946167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01642198 135.22946167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01642199 135.22949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01642200 135.22949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01642201 135.22952271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01642202 135.22952271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01642203 135.22953796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01642204 135.22955322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01642205 135.22958374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01642206 135.22958374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01642207 135.22959900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01642208 135.22959900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01642209 135.22962952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01642210 135.22962952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01642211 135.22966003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01642212 135.22966003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01642213 135.22969055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01642214 135.22969055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01642215 135.22972107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01642216 135.22972107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01642217 135.22975159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01642218 135.22975159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01642219 135.22976685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01642220 135.22976685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01642221 135.22979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01642222 135.22979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01642223 135.22982788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01642224 135.22984314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01642225 135.22985840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01642226 135.22985840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01642227 135.22988892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01642228 135.22988892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01642229 135.22991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01642230 135.22991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01642231 135.22993469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01642232 135.22993469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01642233 135.22996521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01642234 135.22998047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01642235 135.22999573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01642236 135.22999573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01642237 135.23002625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01642238 135.23002625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01642239 135.23005676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01642240 135.23005676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01642241 135.23008728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01642242 135.23008728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01642243 135.23010254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01642244 135.23011780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01642245 135.23014832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01642246 135.23014832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01642247 135.23016357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01642248 135.23016357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01642249 135.23019409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01642250 135.23019409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01642251 135.23022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01642252 135.23022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01642253 135.23023987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01642254 135.23025513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01642255 135.23028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01642256 135.23028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01642257 135.23031616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01642258 135.23031616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01642259 135.23033142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01642260 135.23033142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01642261 135.23036194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01642262 135.23036194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01642263 135.23039246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01642264 135.23039246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01642265 135.23040771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01642266 135.23042297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01642267 135.23045349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01642268 135.23045349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01642269 135.23048401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01642270 135.23048401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01642271 135.23051453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01642272 135.23052979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01642273 135.23056030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01642274 135.23056030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01642275 135.23057556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01642276 135.23057556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01642277 135.23060608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01642278 135.23060608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01642279 135.23063660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01642280 135.23063660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01642281 135.23066711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01642282 135.23066711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01642283 135.23069763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01642284 135.23069763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01642285 135.23071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01642286 135.23071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01642287 135.23074341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01642288 135.23074341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01642289 135.23077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01642290 135.23078918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01642291 135.23080444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01642292 135.23080444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01642293 135.23083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01642294 135.23083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01642295 135.23086548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01642296 135.23086548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01642297 135.23088074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01642298 135.23088074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01642299 135.23091125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01642300 135.23091125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01642301 135.23094177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01642302 135.23095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01642303 135.23097229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01642304 135.23097229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01642305 135.23100281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01642306 135.23100281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01642307 135.23103333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01642308 135.23103333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01642309 135.23104858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01642310 135.23104858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01642311 135.23107910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01642312 135.23109436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01642313 135.23110962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01642314 135.23110962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01642315 135.23114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01642316 135.23114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01642317 135.23117065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01642318 135.23117065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01642319 135.23120117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01642320 135.23120117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01642321 135.23121643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01642322 135.23123169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01642323 135.23126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01642324 135.23126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01642325 135.23127747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01642326 135.23127747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01642327 135.23130798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01642328 135.23130798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01642329 135.23133850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01642330 135.23133850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01642331 135.23135376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01642332 135.23135376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01642333 135.23138428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01642334 135.23139954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01642335 135.23143005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01642336 135.23143005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01642337 135.23144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01642338 135.23144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01642339 135.23147583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01642340 135.23147583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01642341 135.23150635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01642342 135.23150635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01642343 135.23152161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01642344 135.23153687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01642345 135.23156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01642346 135.23156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01642347 135.23159790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01642348 135.23159790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01642349 135.23161316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01642350 135.23161316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01642351 135.23164368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01642352 135.23164368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01642353 135.23167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01642354 135.23167419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01642355 135.23170471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01642356 135.23170471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01642357 135.23173523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01642358 135.23173523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01642359 135.23175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01642360 135.23175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01642361 135.23178101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01642362 135.23178101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01642363 135.23181152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01642364 135.23182678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01642365 135.23184204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01642366 135.23184204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01642367 135.23187256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01642368 135.23187256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01642369 135.23190308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01642370 135.23190308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01642371 135.23191833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01642372 135.23191833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01642373 135.23194885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01642374 135.23194885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01642375 135.23197937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01642376 135.23199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01642377 135.23200989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01642378 135.23200989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01642379 135.23204041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01642380 135.23204041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01642381 135.23207092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01642382 135.23207092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01642383 135.23208618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01642384 135.23208618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01642385 135.23211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01642386 135.23213196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01642387 135.23214722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01642388 135.23214722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01642389 135.23217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01642390 135.23217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01642391 135.23220825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01642392 135.23220825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01642393 135.23222351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01642394 135.23222351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01642395 135.23225403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01642396 135.23226929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01642397 135.23229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01642398 135.23229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01642399 135.23231506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01642400 135.23231506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01642401 135.23234558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01642402 135.23234558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01642403 135.23237610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01642404 135.23237610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01642405 135.23239136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01642406 135.23239136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01642407 135.23242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01642408 135.23243713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01642409 135.23246765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01642410 135.23246765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01642411 135.23248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01642412 135.23248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01642413 135.23251343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01642414 135.23251343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01642415 135.23254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01642416 135.23254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01642417 135.23255920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01642418 135.23257446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01642419 135.23260498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01642420 135.23260498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01642421 135.23262024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01642422 135.23262024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01642423 135.23265076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01642424 135.23265076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01642425 135.23268127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01642426 135.23268127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01642427 135.23269653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01642428 135.23271179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01642429 135.23274231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01642430 135.23274231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01642431 135.23277283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01642432 135.23277283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01642433 135.23278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01642434 135.23278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01642435 135.23281860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01642436 135.23281860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01642437 135.23284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01642438 135.23286438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01642439 135.23287964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01642440 135.23287964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01642441 135.23291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01642442 135.23291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01642443 135.23294067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01642444 135.23294067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01642445 135.23295593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01642446 135.23295593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01642447 135.23298645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01642448 135.23298645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01642449 135.23301697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01642450 135.23301697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01642451 135.23304749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01642452 135.23304749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01642453 135.23307800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01642454 135.23307800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01642455 135.23309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01642456 135.23309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01642457 135.23312378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01642458 135.23312378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01642459 135.23315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01642460 135.23316956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01642461 135.23318481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01642462 135.23318481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01642463 135.23321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01642464 135.23321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01642465 135.23324585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01642466 135.23324585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01642467 135.23326111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01642468 135.23326111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01642469 135.23329163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01642470 135.23330688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01642471 135.23333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01642472 135.23333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01642473 135.23335266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01642474 135.23335266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01642475 135.23338318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01642476 135.23338318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01642477 135.23341370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01642478 135.23341370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01642479 135.23342896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01642480 135.23344421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01642481 135.23347473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01642482 135.23347473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01642483 135.23348999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01642484 135.23348999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01642485 135.23352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01642486 135.23352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01642487 135.23355103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01642488 135.23355103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01642489 135.23358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01642490 135.23358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01642491 135.23361206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01642492 135.23361206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01642493 135.23364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01642494 135.23364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01642495 135.23365784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01642496 135.23365784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01642497 135.23368835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01642498 135.23368835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01642499 135.23371887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01642500 135.23373413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01642501 135.23373413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01642502 135.23374939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01642503 135.23377991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01642504 135.23377991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01642505 135.23381042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01642506 135.23381042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01642507 135.23382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01642508 135.23382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01642509 135.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01642510 135.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01642511 135.23388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01642512 135.23390198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01642513 135.23391724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01642514 135.23391724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01642515 135.23394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01642516 135.23394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01642517 135.23397827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01642518 135.23397827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01642519 135.23399353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01642520 135.23399353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01642521 135.23402405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01642522 135.23403931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01642523 135.23405457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01642524 135.23405457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01642525 135.23408508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01642526 135.23408508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01642527 135.23411560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01642528 135.23411560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01642529 135.23413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01642530 135.23413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01642531 135.23416138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01642532 135.23416138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01642533 135.23419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01642534 135.23420715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01642535 135.23422241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01642536 135.23422241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01642537 135.23425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01642538 135.23425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01642539 135.23428345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01642540 135.23428345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01642541 135.23429871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01642542 135.23429871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01642543 135.23432922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01642544 135.23434448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01642545 135.23437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01642546 135.23437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01642547 135.23439026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01642548 135.23439026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01642549 135.23442078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01642550 135.23442078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01642551 135.23445129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01642552 135.23445129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01642553 135.23446655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01642554 135.23448181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01642555 135.23451233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01642556 135.23451233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01642557 135.23452759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01642558 135.23452759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01642559 135.23455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01642560 135.23455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01642561 135.23458862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01642562 135.23458862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01642563 135.23460388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01642564 135.23461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01642565 135.23464966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01642566 135.23464966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01642567 135.23468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01642568 135.23468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01642569 135.23469543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01642570 135.23469543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01642571 135.23472595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01642572 135.23472595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01642573 135.23477173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01642574 135.23477173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01642575 135.23478699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01642576 135.23478699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01642577 135.23481750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01642578 135.23481750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01642579 135.23484802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01642580 135.23484802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01642581 135.23486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01642582 135.23486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01642583 135.23489380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01642584 135.23490906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01642585 135.23492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01642586 135.23492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01642587 135.23495483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01642588 135.23495483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01642589 135.23498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01642590 135.23498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01642591 135.23500061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01642592 135.23501587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01642593 135.23504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01642594 135.23504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01642595 135.23507690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01642596 135.23507690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01642597 135.23509216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01642598 135.23509216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01642599 135.23512268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01642600 135.23512268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01642601 135.23515320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01642602 135.23515320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01642603 135.23516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01642604 135.23518372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01642605 135.23521423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01642606 135.23521423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01642607 135.23524475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01642608 135.23524475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01642609 135.23526001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01642610 135.23526001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01642611 135.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01642612 135.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01642613 135.23532104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01642614 135.23532104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01642615 135.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01642616 135.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01642617 135.23538208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01642618 135.23538208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01642619 135.23539734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01642620 135.23539734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01642621 135.23542786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01642622 135.23542786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01642623 135.23545837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01642624 135.23547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01642625 135.23548889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01642626 135.23548889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01642627 135.23551941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01642628 135.23551941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01642629 135.23554993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01642630 135.23554993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01642631 135.23556519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01642632 135.23556519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01642633 135.23559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01642634 135.23561096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01642635 135.23564148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01642636 135.23564148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01642637 135.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01642638 135.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01642639 135.23568726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01642640 135.23568726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01642641 135.23571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01642642 135.23571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01642643 135.23573303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01642644 135.23574829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01642645 135.23577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01642646 135.23577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01642647 135.23579407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01642648 135.23579407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01642649 135.23582458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01642650 135.23582458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01642651 135.23585510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01642652 135.23585510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01642653 135.23588562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01642654 135.23588562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01642655 135.23591614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01642656 135.23591614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01642657 135.23594666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01642658 135.23594666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01642659 135.23596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01642660 135.23596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01642661 135.23599243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01642662 135.23599243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01642663 135.23602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01642664 135.23602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01642665 135.23603821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01642666 135.23605347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01642667 135.23608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01642668 135.23608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01642669 135.23611450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01642670 135.23611450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01642671 135.23612976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01642672 135.23612976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01642673 135.23616028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01642674 135.23616028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01642675 135.23619080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01642676 135.23619080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01642677 135.23622131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01642678 135.23622131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01642679 135.23625183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01642680 135.23625183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01642681 135.23628235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01642682 135.23628235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01642683 135.23629761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01642684 135.23629761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01642685 135.23632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01642686 135.23634338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01642687 135.23635864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01642688 135.23635864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01642689 135.23638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01642690 135.23638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01642691 135.23641968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01642692 135.23641968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01642693 135.23643494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01642694 135.23643494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01642695 135.23646545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01642696 135.23648071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01642697 135.23651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01642698 135.23651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01642699 135.23652649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01642700 135.23652649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01642701 135.23655701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01642702 135.23655701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01642703 135.23658752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01642704 135.23658752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01642705 135.23660278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01642706 135.23661804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01642707 135.23664856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01642708 135.23664856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01642709 135.23667908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01642710 135.23667908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01642711 135.23669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01642712 135.23669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01642713 135.23672485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01642714 135.23672485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01642715 135.23675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01642716 135.23675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01642717 135.23677063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01642718 135.23678589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01642719 135.23681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01642720 135.23681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01642721 135.23683167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01642722 135.23683167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01642723 135.23686218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01642724 135.23686218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01642725 135.23689270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01642726 135.23689270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01642727 135.23690796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01642728 135.23692322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01642729 135.23695374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01642730 135.23695374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01642731 135.23698425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01642732 135.23698425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01642733 135.23699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01642734 135.23699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01642735 135.23703003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01642736 135.23703003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01642737 135.23706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01642738 135.23707581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01642739 135.23709106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01642740 135.23709106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01642741 135.23712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01642742 135.23712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01642743 135.23715210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01642744 135.23715210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01642745 135.23716736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01642746 135.23716736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01642747 135.23719788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01642748 135.23721313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01642749 135.23722839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01642750 135.23722839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01642751 135.23725891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01642752 135.23725891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01642753 135.23728943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01642754 135.23728943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01642755 135.23730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01642756 135.23730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01642757 135.23733521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01642758 135.23735046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01642759 135.23738098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01642760 135.23738098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01642761 135.23739624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01642762 135.23739624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01642763 135.23742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01642764 135.23742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01642765 135.23745728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01642766 135.23745728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01642767 135.23747253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01642768 135.23748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01642769 135.23751831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01642770 135.23751831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01642771 135.23754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01642772 135.23754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01642773 135.23756409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01642774 135.23756409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01642775 135.23759460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01642776 135.23759460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01642777 135.23762512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01642778 135.23762512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01642779 135.23765564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01642780 135.23765564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01642781 135.23768616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01642782 135.23768616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01642783 135.23770142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01642784 135.23770142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01642785 135.23773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01642786 135.23774719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01642787 135.23777771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01642788 135.23777771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01642789 135.23779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01642790 135.23779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01642791 135.23782349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01642792 135.23782349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01642793 135.23785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01642794 135.23785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01642795 135.23786926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01642796 135.23786926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01642797 135.23789978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01642798 135.23791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01642799 135.23794556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01642800 135.23794556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01642801 135.23796082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01642802 135.23796082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01642803 135.23799133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01642804 135.23799133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01642805 135.23802185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01642806 135.23802185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01642807 135.23803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01642808 135.23805237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01642809 135.23808289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01642810 135.23808289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01642811 135.23809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01642812 135.23809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01642813 135.23812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01642814 135.23812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01642815 135.23815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01642816 135.23815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01642817 135.23818970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01642818 135.23818970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01642819 135.23822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01642820 135.23822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01642821 135.23825073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01642822 135.23825073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01642823 135.23826599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01642824 135.23826599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01642825 135.23829651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01642826 135.23829651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01642827 135.23832703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01642828 135.23834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01642829 135.23835754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01642830 135.23835754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01642831 135.23838806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01642832 135.23838806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01642833 135.23841858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01642834 135.23841858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01642835 135.23843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01642836 135.23843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01642837 135.23846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01642838 135.23847961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01642839 135.23849487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01642840 135.23849487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01642841 135.23852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01642842 135.23852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01642843 135.23855591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01642844 135.23855591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01642845 135.23858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01642846 135.23858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01642847 135.23860168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01642848 135.23861694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01642849 135.23864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01642850 135.23864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01642851 135.23866272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01642852 135.23866272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01642853 135.23869324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01642854 135.23869324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01642855 135.23872375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01642856 135.23872375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01642857 135.23873901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01642858 135.23875427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01642859 135.23878479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01642860 135.23878479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01642861 135.23881531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01642862 135.23881531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01642863 135.23883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01642864 135.23883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01642865 135.23886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01642866 135.23886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01642867 135.23889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01642868 135.23889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01642869 135.23892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01642870 135.23892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01642871 135.23895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01642872 135.23895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01642873 135.23898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01642874 135.23898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01642875 135.23899841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01642876 135.23899841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01642877 135.23902893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01642878 135.23904419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01642879 135.23905945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01642880 135.23905945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01642881 135.23908997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01642882 135.23908997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01642883 135.23912048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01642884 135.23912048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01642885 135.23913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01642886 135.23913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01642887 135.23916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01642888 135.23918152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01642889 135.23921204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01642890 135.23921204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01642891 135.23922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01642892 135.23922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01642893 135.23925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01642894 135.23925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01642895 135.23928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01642896 135.23928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01642897 135.23930359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01642898 135.23931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01642899 135.23934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01642900 135.23934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01642901 135.23937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01642902 135.23937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01642903 135.23939514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01642904 135.23939514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01642905 135.23942566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01642906 135.23942566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01642907 135.23945618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01642908 135.23945618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01642909 135.23947144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01642910 135.23948669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01642911 135.23951721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01642912 135.23951721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01642913 135.23953247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01642914 135.23953247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01642915 135.23956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01642916 135.23956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01642917 135.23959351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01642918 135.23960876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01642919 135.23962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01642920 135.23962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01642921 135.23965454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01642922 135.23965454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01642923 135.23968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01642924 135.23968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01642925 135.23970032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01642926 135.23970032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01642927 135.23973083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01642928 135.23973083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01642929 135.23977661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01642930 135.23977661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01642931 135.23979187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01642932 135.23979187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01642933 135.23982239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01642934 135.23982239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01642935 135.23985291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01642936 135.23985291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01642937 135.23986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01642938 135.23986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01642939 135.23989868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01642940 135.23991394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01642941 135.23992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01642942 135.23992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01642943 135.23995972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01642944 135.23995972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01642945 135.23999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01642946 135.23999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01642947 135.24000549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01642948 135.24002075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01642949 135.24005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01642950 135.24005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01642951 135.24008179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01642952 135.24008179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01642953 135.24009705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01642954 135.24009705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01642955 135.24012756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01642956 135.24012756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01642957 135.24015808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01642958 135.24015808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01642959 135.24017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01642960 135.24018860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01642961 135.24021912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01642962 135.24021912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01642963 135.24024963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01642964 135.24024963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01642965 135.24026489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01642966 135.24026489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01642967 135.24029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01642968 135.24029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01642969 135.24032593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01642970 135.24032593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01642971 135.24035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01642972 135.24035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01642973 135.24038696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01642974 135.24038696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01642975 135.24040222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01642976 135.24040222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01642977 135.24043274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01642978 135.24043274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01642979 135.24046326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01642980 135.24047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01642981 135.24049377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01642982 135.24049377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01642983 135.24052429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01642984 135.24052429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01642985 135.24055481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01642986 135.24055481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01642987 135.24057007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01642988 135.24057007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01642989 135.24060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01642990 135.24061584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01642991 135.24064636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01642992 135.24064636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01642993 135.24066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01642994 135.24066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01642995 135.24069214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01642996 135.24069214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01642997 135.24072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01642998 135.24072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01642999 135.24073792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01643000 135.24073792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01643001 135.24076843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01643002 135.24078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01643003 135.24079895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01643004 135.24079895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01643005 135.24082947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01643006 135.24082947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01643007 135.24085999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01643008 135.24085999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01643009 135.24089050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01643010 135.24089050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01643011 135.24090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01643012 135.24092102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01643013 135.24095154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01643014 135.24095154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01643015 135.24096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01643016 135.24096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01643017 135.24099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01643018 135.24099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01643019 135.24102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01643020 135.24102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01643021 135.24104309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01643022 135.24105835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01643023 135.24108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01643024 135.24108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01643025 135.24111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01643026 135.24111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01643027 135.24113464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01643028 135.24113464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01643029 135.24116516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01643030 135.24116516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01643031 135.24119568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01643032 135.24119568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01643033 135.24121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01643034 135.24122620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01643035 135.24125671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01643036 135.24125671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01643037 135.24128723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01643038 135.24128723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01643039 135.24130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01643040 135.24130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01643041 135.24133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01643042 135.24133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01643043 135.24136353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01643044 135.24136353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01643045 135.24139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01643046 135.24139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01643047 135.24142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01643048 135.24142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01643049 135.24143982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01643050 135.24143982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01643051 135.24147034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01643052 135.24147034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01643053 135.24150085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01643054 135.24151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01643055 135.24153137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01643056 135.24153137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01643057 135.24156189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01643058 135.24156189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01643059 135.24159241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01643060 135.24159241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01643061 135.24160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01643062 135.24160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01643063 135.24163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01643064 135.24165344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01643065 135.24168396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01643066 135.24168396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01643067 135.24169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01643068 135.24169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01643069 135.24172974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01643070 135.24172974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01643071 135.24176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01643072 135.24176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01643073 135.24177551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01643074 135.24179077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01643075 135.24182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01643076 135.24182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01643077 135.24183655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01643078 135.24183655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01643079 135.24186707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01643080 135.24186707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01643081 135.24189758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01643082 135.24189758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01643083 135.24191284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01643084 135.24191284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01643085 135.24194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01643086 135.24195862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01643087 135.24198914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01643088 135.24198914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01643089 135.24200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01643090 135.24200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01643091 135.24203491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01643092 135.24203491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01643093 135.24206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01643094 135.24206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01643095 135.24208069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01643096 135.24209595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01643097 135.24212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01643098 135.24212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01643099 135.24215698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01643100 135.24215698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01643101 135.24217224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01643102 135.24217224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01643103 135.24220276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01643104 135.24220276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01643105 135.24223328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01643106 135.24223328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01643107 135.24226379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01643108 135.24226379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01643109 135.24229431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01643110 135.24229431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01643111 135.24230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01643112 135.24230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01643113 135.24234009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01643114 135.24234009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01643115 135.24237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01643116 135.24237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01643117 135.24240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01643118 135.24240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01643119 135.24243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01643120 135.24243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01643121 135.24246216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01643122 135.24246216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01643123 135.24247742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01643124 135.24247742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01643125 135.24250793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01643126 135.24250793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01643127 135.24253845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01643128 135.24255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01643129 135.24256897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01643130 135.24256897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01643131 135.24259949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01643132 135.24259949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01643133 135.24263000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01643134 135.24263000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01643135 135.24264526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01643136 135.24264526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01643137 135.24267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01643138 135.24269104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01643139 135.24270630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01643140 135.24270630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01643141 135.24273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01643142 135.24273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01643143 135.24276733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01643144 135.24276733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01643145 135.24279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01643146 135.24279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01643147 135.24281311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01643148 135.24282837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01643149 135.24285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01643150 135.24285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01643151 135.24287415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01643152 135.24287415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01643153 135.24290466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01643154 135.24291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01643155 135.24295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01643156 135.24295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01643157 135.24298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01643158 135.24299622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01643159 135.24302673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01643160 135.24302673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01643161 135.24305725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01643162 135.24307251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01643163 135.24310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01643164 135.24310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01643165 135.24313354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01643166 135.24313354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01643167 135.24317932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01643168 135.24317932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01643169 135.24320984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01643170 135.24320984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01643171 135.24325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01643172 135.24325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01643173 135.24328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01643174 135.24328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01643175 135.24333191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01643176 135.24333191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01643177 135.24334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01643178 135.24336243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01643179 135.24339294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01643180 135.24340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01643181 135.24342346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01643182 135.24343872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01643183 135.24346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01643184 135.24346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01643185 135.24349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01643186 135.24349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01643187 135.24354553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01643188 135.24354553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01643189 135.24359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01643190 135.24359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01643191 135.24362183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01643192 135.24362183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01643193 135.24365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01643194 135.24366760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01643195 135.24368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01643196 135.24369812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01643197 135.24372864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01643198 135.24372864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01643199 135.24375916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01643200 135.24375916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01643201 135.24380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01643202 135.24380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01643203 135.24383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01643204 135.24383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01643205 135.24386597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01643206 135.24388123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01643207 135.24389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01643208 135.24389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01643209 135.24394226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01643210 135.24394226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01643211 135.24398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01643212 135.24398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01643213 135.24400330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01643214 135.24401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01643215 135.24404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01643216 135.24404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01643217 135.24407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01643218 135.24407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01643219 135.24411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01643220 135.24412537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01643221 135.24414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01643222 135.24414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01643223 135.24418640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01643224 135.24418640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01643225 135.24421692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01643226 135.24421692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01643227 135.24424744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01643228 135.24426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01643229 135.24429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01643230 135.24429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01643231 135.24432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01643232 135.24432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01643233 135.24436951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01643234 135.24436951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01643235 135.24440002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01643236 135.24440002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01643237 135.24444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01643238 135.24444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01643239 135.24447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01643240 135.24447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01643241 135.24452209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01643242 135.24452209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01643243 135.24455261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01643244 135.24455261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01643245 135.24459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01643246 135.24459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01643247 135.24462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01643248 135.24462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01643249 135.24467468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01643250 135.24467468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01643251 135.24470520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01643252 135.24470520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01643253 135.24475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01643254 135.24475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01643255 135.24478149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01643256 135.24478149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01643257 135.24482727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01643258 135.24482727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01643259 135.24485779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01643260 135.24485779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01643261 135.24490356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01643262 135.24490356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01643263 135.24493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01643264 135.24493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01643265 135.24497986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01643266 135.24497986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01643267 135.24501038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01643268 135.24501038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01643269 135.24505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01643270 135.24505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01643271 135.24510193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01643272 135.24510193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01643273 135.24513245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01643274 135.24513245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01643275 135.24517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01643276 135.24517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01643277 135.24520874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01643278 135.24522400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01643279 135.24525452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01643280 135.24525452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01643281 135.24528503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01643282 135.24528503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01643283 135.24533081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01643284 135.24533081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01643285 135.24536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01643286 135.24536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01643287 135.24540710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01643288 135.24540710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01643289 135.24543762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01643290 135.24543762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01643291 135.24548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01643292 135.24548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01643293 135.24551392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01643294 135.24551392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01643295 135.24555969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01643296 135.24555969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01643297 135.24559021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01643298 135.24559021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01643299 135.24563599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01643300 135.24563599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01643301 135.24566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01643302 135.24566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01643303 135.24571228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01643304 135.24571228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01643305 135.24574280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01643306 135.24574280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01643307 135.24578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01643308 135.24578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01643309 135.24581909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01643310 135.24581909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01643311 135.24586487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01643312 135.24586487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01643313 135.24589539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01643314 135.24589539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01643315 135.24594116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01643316 135.24594116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01643317 135.24597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01643318 135.24597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01643319 135.24601746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01643320 135.24601746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01643321 135.24604797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01643322 135.24604797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01643323 135.24609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01643324 135.24609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01643325 135.24612427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01643326 135.24612427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01643327 135.24617004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01643328 135.24617004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01643329 135.24620056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01643330 135.24620056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01643331 135.24624634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01643332 135.24624634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01643333 135.24629211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01643334 135.24629211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01643335 135.24632263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01643336 135.24632263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01643337 135.24636841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01643338 135.24636841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01643339 135.24639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01643340 135.24639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01643341 135.24644470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01643342 135.24644470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01643343 135.24647522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01643344 135.24647522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01643345 135.24652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01643346 135.24652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01643347 135.24655151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01643348 135.24656677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01643349 135.24659729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01643350 135.24659729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01643351 135.24664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01643352 135.24664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01643353 135.24668884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01643354 135.24668884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01643355 135.24671936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01643356 135.24671936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01643357 135.24676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01643358 135.24676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01643359 135.24679565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01643360 135.24679565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01643361 135.24684143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01643362 135.24684143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01643363 135.24687195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01643364 135.24687195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01643365 135.24691772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01643366 135.24691772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01643367 135.24694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01643368 135.24694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01643369 135.24699402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01643370 135.24699402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01643371 135.24702454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01643372 135.24702454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01643373 135.24707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01643374 135.24707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01643375 135.24710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01643376 135.24710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01643377 135.24714661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01643378 135.24714661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01643379 135.24717712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01643380 135.24717712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01643381 135.24720764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01643382 135.24722290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01643383 135.24723816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01643384 135.24725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01643385 135.24728394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01643386 135.24729919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01643387 135.24731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01643388 135.24732971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01643389 135.24736023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01643390 135.24737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01643391 135.24740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01643392 135.24740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01643393 135.24743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01643394 135.24745178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01643395 135.24748230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01643396 135.24748230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01643397 135.24751282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01643398 135.24751282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01643399 135.24755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01643400 135.24755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01643401 135.24758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01643402 135.24760437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01643403 135.24763489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01643404 135.24763489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01643405 135.24766541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01643406 135.24768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01643407 135.24771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01643408 135.24771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01643409 135.24774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01643410 135.24775696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01643411 135.24778748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01643412 135.24780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01643413 135.24781799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01643414 135.24783325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01643415 135.24786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01643416 135.24787903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01643417 135.24789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01643418 135.24790955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01643419 135.24794006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01643420 135.24795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01643421 135.24797058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01643422 135.24798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01643423 135.24801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01643424 135.24803162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01643425 135.24804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01643426 135.24806213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01643427 135.24809265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01643428 135.24810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01643429 135.24812317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01643430 135.24812317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01643431 135.24816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01643432 135.24816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01643433 135.24819946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01643434 135.24819946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01643435 135.24824524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01643436 135.24824524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01643437 135.24827576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01643438 135.24827576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01643439 135.24832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01643440 135.24832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01643441 135.24835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01643442 135.24835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01643443 135.24839783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01643444 135.24839783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01643445 135.24842834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01643446 135.24842834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01643447 135.24847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01643448 135.24847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01643449 135.24850464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01643450 135.24850464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01643451 135.24855042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01643452 135.24855042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01643453 135.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01643454 135.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01643455 135.24862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01643456 135.24862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01643457 135.24867249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01643458 135.24867249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01643459 135.24870300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01643460 135.24870300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01643461 135.24874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01643462 135.24874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01643463 135.24877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01643464 135.24877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01643465 135.24882507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01643466 135.24882507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01643467 135.24885559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01643468 135.24885559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01643469 135.24890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01643470 135.24890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01643471 135.24893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01643472 135.24893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01643473 135.24897766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01643474 135.24897766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01643475 135.24900818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01643476 135.24900818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01643477 135.24905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01643478 135.24905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01643479 135.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01643480 135.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01643481 135.24913025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01643482 135.24913025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01643483 135.24916077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01643484 135.24916077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01643485 135.24919128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01643486 135.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01643487 135.24922180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01643488 135.24923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01643489 135.24926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01643490 135.24928284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01643491 135.24929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01643492 135.24931335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01643493 135.24934387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01643494 135.24935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01643495 135.24938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01643496 135.24938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01643497 135.24942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01643498 135.24943542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01643499 135.24946594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01643500 135.24946594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01643501 135.24949646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01643502 135.24949646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01643503 135.24954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01643504 135.24954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01643505 135.24957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01643506 135.24957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01643507 135.24961853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01643508 135.24961853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01643509 135.24964905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01643510 135.24966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01643511 135.24969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01643512 135.24969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01643513 135.24972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01643514 135.24974060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01643515 135.24977112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01643516 135.24977112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01643517 135.24980164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01643518 135.24980164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01643519 135.24984741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01643520 135.24984741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01643521 135.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01643522 135.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01643523 135.24992371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01643524 135.24992371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01643525 135.24995422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01643526 135.24995422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01643527 135.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01643528 135.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01643529 135.25003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01643530 135.25003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01643531 135.25007629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01643532 135.25007629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01643533 135.25010681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01643534 135.25010681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01643535 135.25015259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01643536 135.25015259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01643537 135.25018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01643538 135.25018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01643539 135.25022888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01643540 135.25022888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01643541 135.25025940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01643542 135.25025940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01643543 135.25030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01643544 135.25030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01643545 135.25033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01643546 135.25033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01643547 135.25038147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01643548 135.25038147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01643549 135.25041199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01643550 135.25041199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01643551 135.25045776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01643552 135.25045776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01643553 135.25050354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01643554 135.25050354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01643555 135.25051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01643556 135.25051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01643557 135.25054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01643558 135.25056458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01643559 135.25057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01643560 135.25057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01643561 135.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01643562 135.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01643563 135.25064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01643564 135.25064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01643565 135.25065613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01643566 135.25067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01643567 135.25070190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01643568 135.25070190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01643569 135.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01643570 135.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01643571 135.25074768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01643572 135.25074768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01643573 135.25077820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01643574 135.25077820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01643575 135.25080872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01643576 135.25080872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01643577 135.25083923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01643578 135.25083923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01643579 135.25086975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01643580 135.25086975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01643581 135.25090027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01643582 135.25090027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01643583 135.25091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01643584 135.25091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01643585 135.25094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01643586 135.25094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01643587 135.25097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01643588 135.25097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01643589 135.25100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01643590 135.25100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01643591 135.25103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01643592 135.25103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01643593 135.25105286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01643594 135.25105286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01643595 135.25108337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01643596 135.25108337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01643597 135.25111389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01643598 135.25112915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01643599 135.25114441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01643600 135.25114441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01643601 135.25117493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01643602 135.25117493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01643603 135.25120544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01643604 135.25120544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01643605 135.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01643606 135.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01643607 135.25125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01643608 135.25126648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01643609 135.25129700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01643610 135.25129700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01643611 135.25131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01643612 135.25131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01643613 135.25134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01643614 135.25134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01643615 135.25137329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01643616 135.25137329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01643617 135.25138855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01643618 135.25138855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01643619 135.25141907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01643620 135.25143433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01643621 135.25144958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01643622 135.25144958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01643623 135.25148010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01643624 135.25148010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01643625 135.25151062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01643626 135.25151062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01643627 135.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01643628 135.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01643629 135.25155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01643630 135.25157166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01643631 135.25160217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01643632 135.25160217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01643633 135.25161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01643634 135.25161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01643635 135.25164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01643636 135.25164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01643637 135.25167847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01643638 135.25167847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01643639 135.25169373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01643640 135.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01643641 135.25173950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01643642 135.25173950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01643643 135.25177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01643644 135.25177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01643645 135.25178528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01643646 135.25178528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01643647 135.25181580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01643648 135.25181580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01643649 135.25184631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01643650 135.25184631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01643651 135.25187683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01643652 135.25187683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01643653 135.25190735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01643654 135.25190735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01643655 135.25192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01643656 135.25192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01643657 135.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01643658 135.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01643659 135.25198364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01643660 135.25199890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01643661 135.25201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01643662 135.25201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01643663 135.25204468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01643664 135.25204468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01643665 135.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01643666 135.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01643667 135.25209045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01643668 135.25209045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01643669 135.25212097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01643670 135.25212097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01643671 135.25215149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01643672 135.25216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01643673 135.25218201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01643674 135.25218201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01643675 135.25221252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01643676 135.25221252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01643677 135.25224304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01643678 135.25224304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01643679 135.25225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01643680 135.25225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01643681 135.25228882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01643682 135.25230408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01643683 135.25231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01643684 135.25231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01643685 135.25234985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01643686 135.25234985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01643687 135.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01643688 135.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01643689 135.25239563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01643690 135.25239563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01643691 135.25242615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01643692 135.25242615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01643693 135.25245667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01643694 135.25247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01643695 135.25248718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01643696 135.25248718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01643697 135.25251770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01643698 135.25251770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01643699 135.25254822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01643700 135.25254822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01643701 135.25256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01643702 135.25256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01643703 135.25259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01643704 135.25260925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01643705 135.25263977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01643706 135.25263977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01643707 135.25265503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01643708 135.25265503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01643709 135.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01643710 135.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01643711 135.25271606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01643712 135.25271606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01643713 135.25273132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01643714 135.25274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01643715 135.25277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01643716 135.25277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01643717 135.25280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01643718 135.25280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01643719 135.25282288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01643720 135.25282288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01643721 135.25285339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01643722 135.25285339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01643723 135.25288391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01643724 135.25288391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01643725 135.25289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01643726 135.25291443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01643727 135.25294495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01643728 135.25294495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01643729 135.25296021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01643730 135.25296021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01643731 135.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01643732 135.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01643733 135.25302124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01643734 135.25302124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01643735 135.25303650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01643736 135.25303650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01643737 135.25306702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01643738 135.25308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01643739 135.25311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01643740 135.25311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01643741 135.25312805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01643742 135.25312805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01643743 135.25315857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01643744 135.25315857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01643745 135.25318909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01643746 135.25318909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01643747 135.25320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01643748 135.25321960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01643749 135.25325012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01643750 135.25325012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01643751 135.25328064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01643752 135.25328064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01643753 135.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01643754 135.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01643755 135.25332642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01643756 135.25332642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01643757 135.25335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01643758 135.25335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01643759 135.25337219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01643760 135.25338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01643761 135.25341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01643762 135.25341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01643763 135.25343323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01643764 135.25343323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01643765 135.25346375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01643766 135.25346375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01643767 135.25349426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01643768 135.25349426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01643769 135.25350952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01643770 135.25352478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01643771 135.25355530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01643772 135.25355530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01643773 135.25358582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01643774 135.25358582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01643775 135.25360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01643776 135.25360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01643777 135.25363159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01643778 135.25363159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01643779 135.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01643780 135.25367737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01643781 135.25369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01643782 135.25369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01643783 135.25372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01643784 135.25372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01643785 135.25375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01643786 135.25375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01643787 135.25376892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01643788 135.25376892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01643789 135.25379944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01643790 135.25379944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01643791 135.25382996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01643792 135.25382996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01643793 135.25386047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01643794 135.25386047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01643795 135.25389099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01643796 135.25389099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01643797 135.25390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01643798 135.25390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01643799 135.25393677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01643800 135.25393677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01643801 135.25396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01643802 135.25398254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01643803 135.25399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01643804 135.25399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01643805 135.25402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01643806 135.25402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01643807 135.25405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01643808 135.25405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01643809 135.25407410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01643810 135.25407410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01643811 135.25410461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01643812 135.25410461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01643813 135.25413513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01643814 135.25415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01643815 135.25416565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01643816 135.25416565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01643817 135.25419617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01643818 135.25419617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01643819 135.25422668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01643820 135.25422668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01643821 135.25424194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01643822 135.25424194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01643823 135.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01643824 135.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01643825 135.25430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01643826 135.25430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01643827 135.25433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01643828 135.25433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01643829 135.25436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01643830 135.25436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01643831 135.25439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01643832 135.25439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01643833 135.25440979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01643834 135.25440979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01643835 135.25444031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01643836 135.25445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01643837 135.25447083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01643838 135.25447083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01643839 135.25450134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01643840 135.25450134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01643841 135.25453186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01643842 135.25453186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01643843 135.25454712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01643844 135.25454712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01643845 135.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01643846 135.25459290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01643847 135.25462341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01643848 135.25462341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01643849 135.25463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01643850 135.25463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01643851 135.25466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01643852 135.25466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01643853 135.25469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01643854 135.25469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01643855 135.25471497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01643856 135.25471497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01643857 135.25474548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01643858 135.25476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01643859 135.25479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01643860 135.25479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01643861 135.25480652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01643862 135.25480652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01643863 135.25483704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01643864 135.25483704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01643865 135.25486755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01643866 135.25486755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01643867 135.25488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01643868 135.25489807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01643869 135.25492859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01643870 135.25492859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01643871 135.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01643872 135.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01643873 135.25497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01643874 135.25497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01643875 135.25500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01643876 135.25500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01643877 135.25502014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01643878 135.25502014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01643879 135.25505066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01643880 135.25506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01643881 135.25509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01643882 135.25509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01643883 135.25511169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01643884 135.25511169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01643885 135.25514221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01643886 135.25514221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01643887 135.25517273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01643888 135.25517273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01643889 135.25518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01643890 135.25520325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01643891 135.25521851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01643892 135.25523376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01643893 135.25526428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01643894 135.25526428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01643895 135.25527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01643896 135.25527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01643897 135.25531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01643898 135.25531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01643899 135.25534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01643900 135.25534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01643901 135.25535583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01643902 135.25537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01643903 135.25540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01643904 135.25540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01643905 135.25541687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01643906 135.25541687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01643907 135.25544739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01643908 135.25544739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01643909 135.25547791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01643910 135.25547791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01643911 135.25550842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01643912 135.25550842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01643913 135.25553894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01643914 135.25553894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01643915 135.25556946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01643916 135.25556946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01643917 135.25558472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01643918 135.25558472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01643919 135.25561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01643920 135.25561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01643921 135.25564575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01643922 135.25564575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01643923 135.25566101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01643924 135.25567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01643925 135.25570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01643926 135.25570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01643927 135.25573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01643928 135.25573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01643929 135.25575256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01643930 135.25575256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01643931 135.25578308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01643932 135.25578308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01643933 135.25581360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01643934 135.25581360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01643935 135.25584412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01643936 135.25584412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01643937 135.25587463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01643938 135.25587463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01643939 135.25590515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01643940 135.25590515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01643941 135.25592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01643942 135.25592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01643943 135.25595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01643944 135.25595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01643945 135.25598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01643946 135.25598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01643947 135.25601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01643948 135.25601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01643949 135.25604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01643950 135.25604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01643951 135.25605774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01643952 135.25605774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01643953 135.25608826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01643954 135.25608826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01643955 135.25611877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01643956 135.25613403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01643957 135.25614929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01643958 135.25614929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01643959 135.25617981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01643960 135.25617981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01643961 135.25621033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01643962 135.25621033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01643963 135.25622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01643964 135.25622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01643965 135.25625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01643966 135.25625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01643967 135.25628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01643968 135.25630188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01643969 135.25631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01643970 135.25631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01643971 135.25634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01643972 135.25634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01643973 135.25637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01643974 135.25637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01643975 135.25639343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01643976 135.25639343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01643977 135.25642395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01643978 135.25643921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01643979 135.25645447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01643980 135.25645447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01643981 135.25648499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01643982 135.25648499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01643983 135.25651550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01643984 135.25651550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01643985 135.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01643986 135.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01643987 135.25656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01643988 135.25656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01643989 135.25659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01643990 135.25660706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01643991 135.25662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01643992 135.25662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01643993 135.25665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01643994 135.25665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01643995 135.25668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01643996 135.25668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01643997 135.25669861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01643998 135.25669861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01643999 135.25672913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01644000 135.25674438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01644001 135.25677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01644002 135.25677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01644003 135.25679016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01644004 135.25679016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01644005 135.25682068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01644006 135.25682068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01644007 135.25685120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01644008 135.25685120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01644009 135.25686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01644010 135.25686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01644011 135.25689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01644012 135.25691223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01644013 135.25692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01644014 135.25692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01644015 135.25695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01644016 135.25695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01644017 135.25698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01644018 135.25698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01644019 135.25700378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01644020 135.25700378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01644021 135.25703430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01644022 135.25703430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01644023 135.25706482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01644024 135.25708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01644025 135.25709534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01644026 135.25709534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01644027 135.25712585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01644028 135.25712585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01644029 135.25715637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01644030 135.25715637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01644031 135.25717163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01644032 135.25717163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01644033 135.25720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01644034 135.25721741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01644035 135.25724792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01644036 135.25724792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01644037 135.25726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01644038 135.25726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01644039 135.25729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01644040 135.25729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01644041 135.25732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01644042 135.25732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01644043 135.25733948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01644044 135.25735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01644045 135.25738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01644046 135.25738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01644047 135.25740051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01644048 135.25740051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01644049 135.25743103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01644050 135.25743103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01644051 135.25746155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01644052 135.25746155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01644053 135.25749207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01644054 135.25749207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01644055 135.25750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01644056 135.25752258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01644057 135.25755310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01644058 135.25755310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01644059 135.25756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01644060 135.25756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01644061 135.25759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01644062 135.25759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01644063 135.25762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01644064 135.25762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01644065 135.25764465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01644066 135.25765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01644067 135.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01644068 135.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01644069 135.25772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01644070 135.25772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01644071 135.25773621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01644072 135.25773621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01644073 135.25776672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01644074 135.25776672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01644075 135.25779724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01644076 135.25779724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01644077 135.25782776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01644078 135.25782776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01644079 135.25785828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01644080 135.25785828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01644081 135.25788879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01644082 135.25788879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01644083 135.25790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01644084 135.25790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01644085 135.25793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01644086 135.25793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01644087 135.25796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01644088 135.25796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01644089 135.25799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01644090 135.25799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01644091 135.25802612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01644092 135.25802612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01644093 135.25804138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01644094 135.25804138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01644095 135.25807190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01644096 135.25807190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01644097 135.25810242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01644098 135.25811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01644099 135.25813293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01644100 135.25813293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01644101 135.25816345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01644102 135.25816345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01644103 135.25819397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01644104 135.25819397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01644105 135.25820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01644106 135.25820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01644107 135.25823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01644108 135.25823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01644109 135.25827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01644110 135.25828552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01644111 135.25830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01644112 135.25830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01644113 135.25833130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01644114 135.25833130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01644115 135.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01644116 135.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01644117 135.25837708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01644118 135.25837708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01644119 135.25840759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01644120 135.25842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01644121 135.25843811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01644122 135.25843811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01644123 135.25846863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01644124 135.25846863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01644125 135.25849915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01644126 135.25849915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01644127 135.25851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01644128 135.25851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01644129 135.25854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01644130 135.25854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01644131 135.25857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01644132 135.25859070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01644133 135.25860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01644134 135.25860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01644135 135.25863647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01644136 135.25863647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01644137 135.25866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01644138 135.25866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01644139 135.25868225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01644140 135.25868225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01644141 135.25871277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01644142 135.25872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01644143 135.25875854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01644144 135.25875854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01644145 135.25877380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01644146 135.25877380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01644147 135.25880432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01644148 135.25880432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01644149 135.25883484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01644150 135.25883484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01644151 135.25885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01644152 135.25886536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01644153 135.25889587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01644154 135.25889587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01644155 135.25891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01644156 135.25891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01644157 135.25894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01644158 135.25894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01644159 135.25897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01644160 135.25897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01644161 135.25900269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01644162 135.25900269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01644163 135.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01644164 135.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01644165 135.25906372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01644166 135.25906372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01644167 135.25907898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01644168 135.25907898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01644169 135.25910950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01644170 135.25910950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01644171 135.25914001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01644172 135.25914001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01644173 135.25915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01644174 135.25917053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01644175 135.25920105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01644176 135.25920105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01644177 135.25923157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01644178 135.25923157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01644179 135.25924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01644180 135.25924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01644181 135.25927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01644182 135.25927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01644183 135.25930786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01644184 135.25930786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01644185 135.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01644186 135.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01644187 135.25936890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01644188 135.25936890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01644189 135.25939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01644190 135.25939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01644191 135.25941467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01644192 135.25941467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01644193 135.25944519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01644194 135.25944519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01644195 135.25947571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01644196 135.25947571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01644197 135.25950623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01644198 135.25950623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01644199 135.25953674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01644200 135.25953674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01644201 135.25955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01644202 135.25955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01644203 135.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01644204 135.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01644205 135.25961304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01644206 135.25962830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01644207 135.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01644208 135.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01644209 135.25967407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01644210 135.25967407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01644211 135.25970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01644212 135.25970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01644213 135.25971985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01644214 135.25971985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01644215 135.25975037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01644216 135.25976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01644217 135.25979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01644218 135.25979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01644219 135.25981140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01644220 135.25981140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01644221 135.25984192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01644222 135.25984192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01644223 135.25987244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01644224 135.25987244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01644225 135.25988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01644226 135.25988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01644227 135.25991821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01644228 135.25993347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01644229 135.25994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01644230 135.25994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01644231 135.25997925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01644232 135.25997925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01644233 135.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01644234 135.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01644235 135.26002502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01644236 135.26002502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01644237 135.26005554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01644238 135.26007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01644239 135.26010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01644240 135.26010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01644241 135.26011658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01644242 135.26011658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01644243 135.26014709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01644244 135.26014709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01644245 135.26017761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01644246 135.26017761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01644247 135.26019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01644248 135.26020813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01644249 135.26023865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01644250 135.26023865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01644251 135.26026917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01644252 135.26026917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01644253 135.26028442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01644254 135.26028442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01644255 135.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01644256 135.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01644257 135.26034546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01644258 135.26034546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01644259 135.26036072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01644260 135.26037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01644261 135.26040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01644262 135.26040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01644263 135.26042175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01644264 135.26042175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01644265 135.26045227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01644266 135.26045227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01644267 135.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01644268 135.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01644269 135.26052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01644270 135.26052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01644271 135.26057434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01644272 135.26058960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01644273 135.26060486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01644274 135.26060486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01644275 135.26063538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01644276 135.26063538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01644277 135.26066589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01644278 135.26066589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01644279 135.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01644280 135.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01644281 135.26071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01644282 135.26072693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01644283 135.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01644284 135.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01644285 135.26077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01644286 135.26077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01644287 135.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01644288 135.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01644289 135.26081848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01644290 135.26081848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01644291 135.26084900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01644292 135.26086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01644293 135.26089478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01644294 135.26089478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01644295 135.26091003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01644296 135.26091003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01644297 135.26094055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01644298 135.26094055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01644299 135.26097107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01644300 135.26097107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01644301 135.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01644302 135.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01644303 135.26101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01644304 135.26103210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01644305 135.26106262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01644306 135.26106262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01644307 135.26107788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01644308 135.26107788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01644309 135.26110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01644310 135.26110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01644311 135.26113892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01644312 135.26113892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01644313 135.26115417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01644314 135.26116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01644315 135.26119995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01644316 135.26119995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01644317 135.26121521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01644318 135.26121521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01644319 135.26124573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01644320 135.26124573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01644321 135.26127625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01644322 135.26127625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01644323 135.26130676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01644324 135.26130676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01644325 135.26132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01644326 135.26133728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01644327 135.26136780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01644328 135.26136780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01644329 135.26138306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01644330 135.26138306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01644331 135.26141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01644332 135.26141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01644333 135.26144409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01644334 135.26144409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01644335 135.26145935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01644336 135.26147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01644337 135.26150513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01644338 135.26150513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01644339 135.26153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01644340 135.26153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01644341 135.26155090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01644342 135.26155090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01644343 135.26158142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01644344 135.26159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01644345 135.26161194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01644346 135.26161194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01644347 135.26164246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01644348 135.26164246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01644349 135.26167297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01644350 135.26167297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01644351 135.26170349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01644352 135.26170349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01644353 135.26171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01644354 135.26173401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01644355 135.26176453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01644356 135.26176453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01644357 135.26177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01644358 135.26177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01644359 135.26181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01644360 135.26181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01644361 135.26184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01644362 135.26184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01644363 135.26185608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01644364 135.26187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01644365 135.26190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01644366 135.26190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01644367 135.26193237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01644368 135.26193237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01644369 135.26194763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01644370 135.26194763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01644371 135.26197815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01644372 135.26197815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01644373 135.26200867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01644374 135.26200867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01644375 135.26202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01644376 135.26203918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01644377 135.26206970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01644378 135.26206970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01644379 135.26210022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01644380 135.26210022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01644381 135.26211548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01644382 135.26211548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01644383 135.26214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01644384 135.26214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01644385 135.26217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01644386 135.26217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01644387 135.26220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01644388 135.26220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01644389 135.26223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01644390 135.26223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01644391 135.26225281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01644392 135.26225281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01644393 135.26228333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01644394 135.26228333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01644395 135.26231384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01644396 135.26232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01644397 135.26232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01644398 135.26234436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01644399 135.26237488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01644400 135.26237488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01644401 135.26240540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01644402 135.26240540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01644403 135.26242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01644404 135.26242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01644405 135.26245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01644406 135.26245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01644407 135.26248169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01644408 135.26249695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01644409 135.26251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01644410 135.26251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01644411 135.26254272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01644412 135.26254272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01644413 135.26257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01644414 135.26257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01644415 135.26258850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01644416 135.26258850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01644417 135.26261902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01644418 135.26263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01644419 135.26264954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01644420 135.26264954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01644421 135.26268005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01644422 135.26268005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01644423 135.26271057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01644424 135.26271057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01644425 135.26272583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01644426 135.26272583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01644427 135.26275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01644428 135.26275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01644429 135.26278687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01644430 135.26280212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01644431 135.26281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01644432 135.26281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01644433 135.26284790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01644434 135.26284790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01644435 135.26287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01644436 135.26287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01644437 135.26289368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01644438 135.26290894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01644439 135.26293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01644440 135.26293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01644441 135.26296997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01644442 135.26296997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01644443 135.26298523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01644444 135.26298523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01644445 135.26301575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01644446 135.26301575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01644447 135.26304626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01644448 135.26304626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01644449 135.26307678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01644450 135.26307678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01644451 135.26310730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01644452 135.26310730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01644453 135.26312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01644454 135.26312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01644455 135.26315308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01644456 135.26315308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01644457 135.26318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01644458 135.26319885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01644459 135.26321411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01644460 135.26321411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01644461 135.26324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01644462 135.26324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01644463 135.26327515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01644464 135.26327515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01644465 135.26329041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01644466 135.26329041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01644467 135.26332092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01644468 135.26333618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01644469 135.26336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01644470 135.26336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01644471 135.26338196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01644472 135.26338196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01644473 135.26341248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01644474 135.26341248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01644475 135.26344299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01644476 135.26344299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01644477 135.26345825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01644478 135.26347351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01644479 135.26350403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01644480 135.26350403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01644481 135.26351929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01644482 135.26351929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01644483 135.26354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01644484 135.26354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01644485 135.26358032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01644486 135.26359558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01644487 135.26361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01644488 135.26361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01644489 135.26364136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01644490 135.26364136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01644491 135.26367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01644492 135.26367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01644493 135.26368713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01644494 135.26370239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01644495 135.26373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01644496 135.26373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01644497 135.26376343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01644498 135.26376343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01644499 135.26377869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01644500 135.26377869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01644501 135.26380920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01644502 135.26380920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01644503 135.26383972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01644504 135.26383972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01644505 135.26387024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01644506 135.26387024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01644507 135.26390076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01644508 135.26390076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01644509 135.26391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01644510 135.26391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01644511 135.26394653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01644512 135.26394653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01644513 135.26397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01644514 135.26397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01644515 135.26400757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01644516 135.26400757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01644517 135.26403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01644518 135.26403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01644519 135.26406860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01644520 135.26406860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01644521 135.26408386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01644522 135.26408386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01644523 135.26411438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01644524 135.26411438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01644525 135.26414490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01644526 135.26416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01644527 135.26417542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01644528 135.26417542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01644529 135.26420593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01644530 135.26420593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01644531 135.26423645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01644532 135.26423645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01644533 135.26425171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01644534 135.26425171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01644535 135.26428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01644536 135.26429749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01644537 135.26431274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01644538 135.26431274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01644539 135.26434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01644540 135.26434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01644541 135.26437378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01644542 135.26437378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01644543 135.26440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01644544 135.26440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01644545 135.26441956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01644546 135.26443481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01644547 135.26445007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01644548 135.26446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01644549 135.26448059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01644550 135.26448059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01644551 135.26451111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01644552 135.26451111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01644553 135.26454163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01644554 135.26454163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01644555 135.26455688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01644556 135.26455688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01644557 135.26458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01644558 135.26460266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01644559 135.26463318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01644560 135.26463318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01644561 135.26464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01644562 135.26464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01644563 135.26467896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01644564 135.26467896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01644565 135.26470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01644566 135.26470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01644567 135.26473999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01644568 135.26473999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01644569 135.26477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01644570 135.26477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01644571 135.26480103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01644572 135.26480103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01644573 135.26481628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01644574 135.26481628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01644575 135.26484680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01644576 135.26486206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01644577 135.26487732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01644578 135.26487732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01644579 135.26490784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01644580 135.26490784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01644581 135.26493835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01644582 135.26493835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01644583 135.26495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01644584 135.26495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01644585 135.26498413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01644586 135.26499939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01644587 135.26502991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01644588 135.26502991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01644589 135.26504517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01644590 135.26504517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01644591 135.26507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01644592 135.26507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01644593 135.26510620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01644594 135.26510620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01644595 135.26512146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01644596 135.26512146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01644597 135.26515198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01644598 135.26516724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01644599 135.26519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01644600 135.26519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01644601 135.26521301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01644602 135.26521301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01644603 135.26524353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01644604 135.26524353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01644605 135.26527405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01644606 135.26527405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01644607 135.26530457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01644608 135.26530457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01644609 135.26533508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01644610 135.26533508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01644611 135.26535034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01644612 135.26535034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01644613 135.26538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01644614 135.26538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01644615 135.26541138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01644616 135.26542664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01644617 135.26544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01644618 135.26544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01644619 135.26547241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01644620 135.26547241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01644621 135.26550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01644622 135.26550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01644623 135.26551819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01644624 135.26551819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01644625 135.26554871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01644626 135.26554871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01644627 135.26557922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01644628 135.26559448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01644629 135.26560974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01644630 135.26560974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01644631 135.26564026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01644632 135.26564026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01644633 135.26567078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01644634 135.26567078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01644635 135.26568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01644636 135.26568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01644637 135.26571655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01644638 135.26573181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01644639 135.26574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01644640 135.26574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01644641 135.26577759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01644642 135.26577759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01644643 135.26580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01644644 135.26580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01644645 135.26582336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01644646 135.26582336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01644647 135.26585388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01644648 135.26586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01644649 135.26589966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01644650 135.26589966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01644651 135.26591492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01644652 135.26591492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01644653 135.26594543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01644654 135.26594543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01644655 135.26597595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01644656 135.26597595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01644657 135.26599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01644658 135.26600647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01644659 135.26603699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01644660 135.26603699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01644661 135.26606750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01644662 135.26606750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01644663 135.26608276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01644664 135.26608276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01644665 135.26611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01644666 135.26611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01644667 135.26614380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01644668 135.26614380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01644669 135.26615906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01644670 135.26617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01644671 135.26620483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01644672 135.26620483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01644673 135.26622009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01644674 135.26622009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01644675 135.26625061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01644676 135.26625061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01644677 135.26628113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01644678 135.26628113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01644679 135.26629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01644680 135.26629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01644681 135.26632690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01644682 135.26634216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01644683 135.26637268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01644684 135.26637268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01644685 135.26638794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01644686 135.26638794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01644687 135.26641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01644688 135.26641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01644689 135.26644897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01644690 135.26644897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01644691 135.26646423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01644692 135.26647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01644693 135.26651001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01644694 135.26651001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01644695 135.26654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01644696 135.26654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01644697 135.26655579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01644698 135.26655579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01644699 135.26658630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01644700 135.26658630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01644701 135.26661682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01644702 135.26661682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01644703 135.26664734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01644704 135.26664734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01644705 135.26667786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01644706 135.26667786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01644707 135.26670837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01644708 135.26670837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01644709 135.26672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01644710 135.26672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01644711 135.26675415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01644712 135.26675415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01644713 135.26678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01644714 135.26678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01644715 135.26681519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01644716 135.26681519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01644717 135.26684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01644718 135.26684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01644719 135.26686096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01644720 135.26686096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01644721 135.26689148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01644722 135.26689148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01644723 135.26692200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01644724 135.26692200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01644725 135.26693726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01644726 135.26695251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01644727 135.26698303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01644728 135.26698303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01644729 135.26701355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01644730 135.26701355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01644731 135.26702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01644732 135.26702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01644733 135.26705933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01644734 135.26705933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01644735 135.26708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01644736 135.26710510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01644737 135.26712036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01644738 135.26712036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01644739 135.26715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01644740 135.26715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01644741 135.26718140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01644742 135.26718140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01644743 135.26719666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01644744 135.26719666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01644745 135.26722717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01644746 135.26724243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01644747 135.26725769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01644748 135.26725769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01644749 135.26728821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01644750 135.26728821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01644751 135.26731873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01644752 135.26731873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01644753 135.26733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01644754 135.26733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01644755 135.26736450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01644756 135.26736450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01644757 135.26739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01644758 135.26741028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01644759 135.26742554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01644760 135.26742554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01644761 135.26745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01644762 135.26745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01644763 135.26748657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01644764 135.26748657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01644765 135.26750183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01644766 135.26750183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01644767 135.26753235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01644768 135.26754761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01644769 135.26757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01644770 135.26757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01644771 135.26759338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01644772 135.26759338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01644773 135.26762390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01644774 135.26762390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01644775 135.26765442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01644776 135.26765442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01644777 135.26766968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01644778 135.26768494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01644779 135.26771545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01644780 135.26771545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01644781 135.26773071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01644782 135.26773071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01644783 135.26776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01644784 135.26776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01644785 135.26779175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01644786 135.26779175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01644787 135.26780701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01644788 135.26780701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01644789 135.26783752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01644790 135.26785278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01644791 135.26788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01644792 135.26788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01644793 135.26789856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01644794 135.26789856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01644795 135.26792908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01644796 135.26792908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01644797 135.26795959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01644798 135.26795959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01644799 135.26797485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01644800 135.26799011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01644801 135.26802063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01644802 135.26802063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01644803 135.26805115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01644804 135.26805115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01644805 135.26806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01644806 135.26806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01644807 135.26809692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01644808 135.26809692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01644809 135.26812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01644810 135.26812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01644811 135.26814270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01644812 135.26815796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01644813 135.26818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01644814 135.26818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01644815 135.26820374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01644816 135.26820374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01644817 135.26823425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01644818 135.26823425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01644819 135.26826477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01644820 135.26826477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01644821 135.26829529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01644822 135.26829529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01644823 135.26832581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01644824 135.26832581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01644825 135.26835632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01644826 135.26835632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01644827 135.26837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01644828 135.26837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01644829 135.26840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01644830 135.26840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01644831 135.26843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01644832 135.26843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01644833 135.26844788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01644834 135.26846313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01644835 135.26849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01644836 135.26849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01644837 135.26852417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01644838 135.26852417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01644839 135.26853943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01644840 135.26853943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01644841 135.26856995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01644842 135.26856995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01644843 135.26860046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01644844 135.26860046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01644845 135.26863098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01644846 135.26863098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01644847 135.26866150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01644848 135.26866150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01644849 135.26869202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01644850 135.26869202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01644851 135.26870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01644852 135.26870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01644853 135.26873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01644854 135.26875305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01644855 135.26876831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01644856 135.26876831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01644857 135.26879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01644858 135.26879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01644859 135.26882935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01644860 135.26882935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01644861 135.26884460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01644862 135.26884460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01644863 135.26887512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01644864 135.26887512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01644865 135.26890564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01644866 135.26892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01644867 135.26893616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01644868 135.26893616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01644869 135.26896667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01644870 135.26896667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01644871 135.26899719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01644872 135.26899719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01644873 135.26901245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01644874 135.26901245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01644875 135.26904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01644876 135.26905823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01644877 135.26908875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01644878 135.26908875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01644879 135.26910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01644880 135.26910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01644881 135.26913452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01644882 135.26913452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01644883 135.26916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01644884 135.26916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01644885 135.26918030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01644886 135.26918030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01644887 135.26921082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01644888 135.26922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01644889 135.26924133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01644890 135.26924133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01644891 135.26927185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01644892 135.26927185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01644893 135.26930237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01644894 135.26930237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01644895 135.26931763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01644896 135.26931763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01644897 135.26934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01644898 135.26934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01644899 135.26937866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01644900 135.26939392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01644901 135.26940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01644902 135.26940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01644903 135.26943970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01644904 135.26943970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01644905 135.26947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01644906 135.26947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01644907 135.26948547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01644908 135.26948547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01644909 135.26951599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01644910 135.26953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01644911 135.26956177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01644912 135.26956177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01644913 135.26957703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01644914 135.26957703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01644915 135.26960754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01644916 135.26960754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01644917 135.26963806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01644918 135.26963806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01644919 135.26965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01644920 135.26966858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01644921 135.26969910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01644922 135.26969910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01644923 135.26971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01644924 135.26971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01644925 135.26974487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01644926 135.26974487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01644927 135.26977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01644928 135.26977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01644929 135.26980591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01644930 135.26980591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01644931 135.26982117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01644932 135.26983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01644933 135.26986694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01644934 135.26986694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01644935 135.26988220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01644936 135.26988220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01644937 135.26991272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01644938 135.26991272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01644939 135.26994324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01644940 135.26994324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01644941 135.26995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01644942 135.26997375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01644943 135.27000427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01644944 135.27000427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01644945 135.27003479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01644946 135.27003479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01644947 135.27005005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01644948 135.27005005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01644949 135.27008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01644950 135.27008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01644951 135.27011108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01644952 135.27011108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01644953 135.27012634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01644954 135.27014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01644955 135.27017212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01644956 135.27017212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01644957 135.27020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01644958 135.27020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01644959 135.27021790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01644960 135.27021790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01644961 135.27024841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01644962 135.27024841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01644963 135.27027893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01644964 135.27027893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01644965 135.27029419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01644966 135.27030945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01644967 135.27033997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01644968 135.27033997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01644969 135.27035522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01644970 135.27035522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01644971 135.27038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01644972 135.27038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01644973 135.27041626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01644974 135.27041626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01644975 135.27043152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01644976 135.27044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01644977 135.27047729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01644978 135.27047729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01644979 135.27050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01644980 135.27050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01644981 135.27052307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01644982 135.27052307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01644983 135.27055359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01644984 135.27055359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01644985 135.27058411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01644986 135.27059937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01644987 135.27061462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01644988 135.27061462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01644989 135.27064514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01644990 135.27064514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01644991 135.27067566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01644992 135.27067566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01644993 135.27069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01644994 135.27069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01644995 135.27072144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01644996 135.27072144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01644997 135.27075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01644998 135.27075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01644999 135.27078247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01645000 135.27078247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01645001 135.27081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01645002 135.27081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01645003 135.27082825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01645004 135.27082825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01645005 135.27085876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01645006 135.27085876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01645007 135.27088928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01645008 135.27090454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01645009 135.27091980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01645010 135.27091980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01645011 135.27095032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01645012 135.27095032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01645013 135.27098083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01645014 135.27098083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01645015 135.27099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01645016 135.27099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01645017 135.27102661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01645018 135.27104187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01645019 135.27105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01645020 135.27107239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01645021 135.27108765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01645022 135.27108765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01645023 135.27111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01645024 135.27111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01645025 135.27114868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01645026 135.27114868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01645027 135.27116394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01645028 135.27116394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01645029 135.27119446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01645030 135.27120972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01645031 135.27122498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01645032 135.27122498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01645033 135.27125549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01645034 135.27125549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01645035 135.27128601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01645036 135.27128601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01645037 135.27130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01645038 135.27130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01645039 135.27133179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01645040 135.27134705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01645041 135.27137756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01645042 135.27137756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01645043 135.27139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01645044 135.27139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01645045 135.27142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01645046 135.27142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01645047 135.27145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01645048 135.27145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01645049 135.27146912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01645050 135.27148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01645051 135.27151489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01645052 135.27151489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01645053 135.27154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01645054 135.27154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01645055 135.27156067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01645056 135.27156067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01645057 135.27159119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01645058 135.27159119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01645059 135.27162170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01645060 135.27162170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01645061 135.27163696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01645062 135.27165222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01645063 135.27168274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01645064 135.27168274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01645065 135.27169800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01645066 135.27169800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01645067 135.27172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01645068 135.27172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01645069 135.27175903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01645070 135.27175903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01645071 135.27178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01645072 135.27178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01645073 135.27182007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01645074 135.27182007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01645075 135.27185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01645076 135.27185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01645077 135.27186584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01645078 135.27186584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01645079 135.27189636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01645080 135.27189636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01645081 135.27192688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01645082 135.27194214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01645083 135.27195740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01645084 135.27195740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01645085 135.27198792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01645086 135.27198792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01645087 135.27201843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01645088 135.27201843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01645089 135.27203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01645090 135.27203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01645091 135.27206421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01645092 135.27206421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01645093 135.27209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01645094 135.27210999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01645095 135.27212524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01645096 135.27212524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01645097 135.27215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01645098 135.27215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01645099 135.27218628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01645100 135.27218628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01645101 135.27220154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01645102 135.27220154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01645103 135.27223206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01645104 135.27224731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01645105 135.27226257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01645106 135.27226257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01645107 135.27229309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01645108 135.27229309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01645109 135.27232361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01645110 135.27232361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01645111 135.27233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01645112 135.27233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01645113 135.27236938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01645114 135.27238464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01645115 135.27241516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01645116 135.27241516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01645117 135.27243042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01645118 135.27243042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01645119 135.27246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01645120 135.27246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01645121 135.27249146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01645122 135.27249146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01645123 135.27250671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01645124 135.27250671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01645125 135.27253723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01645126 135.27255249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01645127 135.27258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01645128 135.27258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01645129 135.27259827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01645130 135.27259827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01645131 135.27262878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01645132 135.27262878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01645133 135.27265930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01645134 135.27265930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01645135 135.27267456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01645136 135.27268982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01645137 135.27272034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01645138 135.27272034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01645139 135.27273560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01645140 135.27273560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01645141 135.27276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01645142 135.27276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01645143 135.27279663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01645144 135.27279663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01645145 135.27281189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01645146 135.27282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01645147 135.27285767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01645148 135.27285767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01645149 135.27288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01645150 135.27288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01645151 135.27290344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01645152 135.27290344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01645153 135.27293396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01645154 135.27293396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01645155 135.27296448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01645156 135.27296448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01645157 135.27297974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01645158 135.27299500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01645159 135.27302551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01645160 135.27302551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01645161 135.27305603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01645162 135.27305603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01645163 135.27307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01645164 135.27307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01645165 135.27310181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01645166 135.27310181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01645167 135.27313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01645168 135.27313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01645169 135.27316284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01645170 135.27316284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01645171 135.27319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01645172 135.27319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01645173 135.27320862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01645174 135.27320862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01645175 135.27323914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01645176 135.27323914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01645177 135.27326965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01645178 135.27326965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01645179 135.27330017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01645180 135.27330017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01645181 135.27333069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01645182 135.27333069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01645183 135.27336121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01645184 135.27336121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01645185 135.27337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01645186 135.27337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01645187 135.27340698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01645188 135.27340698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01645189 135.27343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01645190 135.27345276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01645191 135.27346802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01645192 135.27346802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01645193 135.27349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01645194 135.27349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01645195 135.27352905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01645196 135.27352905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01645197 135.27354431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01645198 135.27354431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01645199 135.27357483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01645200 135.27359009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01645201 135.27360535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01645202 135.27360535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01645203 135.27363586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01645204 135.27363586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01645205 135.27366638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01645206 135.27366638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01645207 135.27369690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01645208 135.27369690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01645209 135.27371216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01645210 135.27371216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01645211 135.27374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01645212 135.27375793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01645213 135.27377319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01645214 135.27377319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01645215 135.27380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01645216 135.27380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01645217 135.27383423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01645218 135.27383423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01645219 135.27384949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01645220 135.27384949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01645221 135.27388000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01645222 135.27389526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01645223 135.27392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01645224 135.27392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01645225 135.27394104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01645226 135.27394104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01645227 135.27397156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01645228 135.27397156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01645229 135.27400208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01645230 135.27400208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01645231 135.27401733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01645232 135.27401733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01645233 135.27404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01645234 135.27406311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01645235 135.27409363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01645236 135.27409363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01645237 135.27410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01645238 135.27410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01645239 135.27413940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01645240 135.27413940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01645241 135.27416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01645242 135.27416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01645243 135.27418518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01645244 135.27420044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01645245 135.27423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01645246 135.27423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01645247 135.27426147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01645248 135.27426147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01645249 135.27429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01645250 135.27430725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01645251 135.27432251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01645252 135.27432251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01645253 135.27435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01645254 135.27435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01645255 135.27438354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01645256 135.27438354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01645257 135.27439880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01645258 135.27439880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01645259 135.27442932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01645260 135.27442932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01645261 135.27445984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01645262 135.27447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01645263 135.27449036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01645264 135.27449036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01645265 135.27452087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01645266 135.27452087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01645267 135.27455139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01645268 135.27455139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01645269 135.27456665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01645270 135.27456665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01645271 135.27459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01645272 135.27461243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01645273 135.27464294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01645274 135.27464294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01645275 135.27465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01645276 135.27465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01645277 135.27468872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01645278 135.27468872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01645279 135.27471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01645280 135.27471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01645281 135.27473450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01645282 135.27474976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01645283 135.27478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01645284 135.27478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01645285 135.27481079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01645286 135.27481079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01645287 135.27482605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01645288 135.27482605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01645289 135.27485657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01645290 135.27485657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01645291 135.27488708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01645292 135.27488708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01645293 135.27490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01645294 135.27491760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01645295 135.27494812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01645296 135.27494812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01645297 135.27496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01645298 135.27496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01645299 135.27499390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01645300 135.27499390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01645301 135.27502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01645302 135.27502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01645303 135.27503967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01645304 135.27505493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01645305 135.27508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01645306 135.27508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01645307 135.27511597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01645308 135.27511597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01645309 135.27513123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01645310 135.27513123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01645311 135.27516174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01645312 135.27516174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01645313 135.27519226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01645314 135.27519226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01645315 135.27520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01645316 135.27522278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01645317 135.27525330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01645318 135.27525330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01645319 135.27528381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01645320 135.27528381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01645321 135.27529907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01645322 135.27529907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01645323 135.27532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01645324 135.27532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01645325 135.27536011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01645326 135.27536011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01645327 135.27539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01645328 135.27539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01645329 135.27542114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01645330 135.27542114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01645331 135.27543640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01645332 135.27543640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01645333 135.27546692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01645334 135.27546692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01645335 135.27549744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01645336 135.27549744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01645337 135.27551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01645338 135.27552795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01645339 135.27555847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01645340 135.27555847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01645341 135.27558899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01645342 135.27558899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01645343 135.27560425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01645344 135.27560425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01645345 135.27563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01645346 135.27563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01645347 135.27566528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01645348 135.27568054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01645349 135.27569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01645350 135.27569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01645351 135.27572632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01645352 135.27572632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01645353 135.27575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01645354 135.27575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01645355 135.27577209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01645356 135.27577209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01645357 135.27580261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01645358 135.27581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01645359 135.27583313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01645360 135.27583313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01645361 135.27586365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01645362 135.27586365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01645363 135.27589417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01645364 135.27589417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01645365 135.27590942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01645366 135.27590942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01645367 135.27593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01645368 135.27593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01645369 135.27597046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01645370 135.27598572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01645371 135.27600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01645372 135.27600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01645373 135.27603149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01645374 135.27603149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01645375 135.27606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01645376 135.27606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01645377 135.27607727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01645378 135.27607727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01645379 135.27610779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01645380 135.27612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01645381 135.27615356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01645382 135.27615356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01645383 135.27616882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01645384 135.27616882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01645385 135.27619934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01645386 135.27619934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01645387 135.27622986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01645388 135.27622986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01645389 135.27624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01645390 135.27624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01645391 135.27627563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01645392 135.27629089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01645393 135.27630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01645394 135.27630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01645395 135.27633667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01645396 135.27633667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01645397 135.27636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01645398 135.27636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01645399 135.27639771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01645400 135.27639771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01645401 135.27641296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01645402 135.27642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01645403 135.27645874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01645404 135.27645874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01645405 135.27647400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01645406 135.27647400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01645407 135.27650452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01645408 135.27650452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01645409 135.27653503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01645410 135.27653503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01645411 135.27655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01645412 135.27656555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01645413 135.27659607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01645414 135.27659607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01645415 135.27662659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01645416 135.27662659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01645417 135.27664185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01645418 135.27664185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01645419 135.27667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01645420 135.27667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01645421 135.27670288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01645422 135.27670288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01645423 135.27671814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01645424 135.27673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01645425 135.27676392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01645426 135.27676392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01645427 135.27679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01645428 135.27679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01645429 135.27680969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01645430 135.27680969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01645431 135.27684021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01645432 135.27684021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01645433 135.27687073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01645434 135.27687073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01645435 135.27690125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01645436 135.27690125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01645437 135.27693176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01645438 135.27693176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01645439 135.27694702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01645440 135.27694702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01645441 135.27697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01645442 135.27697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01645443 135.27700806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01645444 135.27702332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01645445 135.27703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01645446 135.27703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01645447 135.27706909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01645448 135.27706909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01645449 135.27709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01645450 135.27709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01645451 135.27711487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01645452 135.27711487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01645453 135.27714539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01645454 135.27716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01645455 135.27719116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01645456 135.27719116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01645457 135.27720642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01645458 135.27720642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01645459 135.27723694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01645460 135.27723694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01645461 135.27726746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01645462 135.27726746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01645463 135.27728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01645464 135.27728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01645465 135.27731323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01645466 135.27732849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01645467 135.27734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01645468 135.27734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01645469 135.27737427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01645470 135.27737427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01645471 135.27740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01645472 135.27740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01645473 135.27742004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01645474 135.27742004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01645475 135.27745056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01645476 135.27746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01645477 135.27749634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01645478 135.27749634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01645479 135.27751160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01645480 135.27751160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01645481 135.27754211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01645482 135.27754211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01645483 135.27757263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01645484 135.27757263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01645485 135.27758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01645486 135.27760315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01645487 135.27763367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01645488 135.27763367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01645489 135.27766418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01645490 135.27766418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01645491 135.27767944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01645492 135.27767944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01645493 135.27770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01645494 135.27770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01645495 135.27774048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01645496 135.27774048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01645497 135.27777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01645498 135.27777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01645499 135.27780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01645500 135.27780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01645501 135.27781677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01645502 135.27781677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01645503 135.27784729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01645504 135.27784729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01645505 135.27787781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01645506 135.27789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01645507 135.27790833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01645508 135.27790833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01645509 135.27793884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01645510 135.27793884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01645511 135.27796936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01645512 135.27796936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01645513 135.27798462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01645514 135.27798462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01645515 135.27801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01645516 135.27801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01645517 135.27804565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01645518 135.27806091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01645519 135.27807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01645520 135.27807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01645521 135.27810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01645522 135.27810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01645523 135.27813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01645524 135.27813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01645525 135.27815247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01645526 135.27815247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01645527 135.27818298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01645528 135.27819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01645529 135.27821350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01645530 135.27821350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01645531 135.27824402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01645532 135.27824402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01645533 135.27827454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01645534 135.27827454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01645535 135.27830505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01645536 135.27830505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01645537 135.27832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01645538 135.27833557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01645539 135.27836609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01645540 135.27836609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01645541 135.27838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01645542 135.27838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01645543 135.27841187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01645544 135.27841187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01645545 135.27844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01645546 135.27844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01645547 135.27845764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01645548 135.27847290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01645549 135.27850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01645550 135.27850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01645551 135.27853394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01645552 135.27853394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01645553 135.27854919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01645554 135.27854919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01645555 135.27857971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01645556 135.27857971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01645557 135.27861023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01645558 135.27861023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01645559 135.27862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01645560 135.27864075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01645561 135.27867126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01645562 135.27867126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01645563 135.27870178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01645564 135.27870178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01645565 135.27871704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01645566 135.27871704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01645567 135.27874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01645568 135.27874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01645569 135.27877808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01645570 135.27877808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01645571 135.27880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01645572 135.27880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01645573 135.27883911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01645574 135.27883911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01645575 135.27885437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01645576 135.27885437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01645577 135.27888489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01645578 135.27888489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01645579 135.27891541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01645580 135.27893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01645581 135.27894592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01645582 135.27894592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01645583 135.27897644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01645584 135.27897644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01645585 135.27900696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01645586 135.27900696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01645587 135.27902222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01645588 135.27902222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01645589 135.27905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01645590 135.27905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01645591 135.27908325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01645592 135.27909851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01645593 135.27911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01645594 135.27911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01645595 135.27914429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01645596 135.27914429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01645597 135.27917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01645598 135.27917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01645599 135.27919006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01645600 135.27919006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01645601 135.27922058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01645602 135.27923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01645603 135.27925110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01645604 135.27925110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01645605 135.27928162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01645606 135.27928162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01645607 135.27931213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01645608 135.27931213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01645609 135.27932739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01645610 135.27932739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01645611 135.27935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01645612 135.27937317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01645613 135.27940369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01645614 135.27940369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01645615 135.27941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01645616 135.27941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01645617 135.27944946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01645618 135.27944946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01645619 135.27947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01645620 135.27947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01645621 135.27949524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01645622 135.27951050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01645623 135.27954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01645624 135.27954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01645625 135.27957153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01645626 135.27957153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01645627 135.27958679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01645628 135.27958679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01645629 135.27961731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01645630 135.27963257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01645631 135.27964783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01645632 135.27964783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01645633 135.27967834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01645634 135.27967834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01645635 135.27970886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01645636 135.27970886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01645637 135.27972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01645638 135.27973938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01645639 135.27976990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01645640 135.27976990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01645641 135.27980042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01645642 135.27980042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01645643 135.27981567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01645644 135.27981567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01645645 135.27984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01645646 135.27984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01645647 135.27987671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01645648 135.27989197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01645649 135.27990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01645650 135.27990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01645651 135.27993774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01645652 135.27993774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01645653 135.27996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01645654 135.27996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01645655 135.27998352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01645656 135.27998352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01645657 135.28001404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01645658 135.28002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01645659 135.28004456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01645660 135.28004456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01645661 135.28007507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01645662 135.28007507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01645663 135.28010559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01645664 135.28010559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01645665 135.28012085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01645666 135.28012085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01645667 135.28015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01645668 135.28016663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01645669 135.28019714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01645670 135.28019714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01645671 135.28021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01645672 135.28021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01645673 135.28024292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01645674 135.28024292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01645675 135.28027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01645676 135.28027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01645677 135.28028870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01645678 135.28030396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01645679 135.28033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01645680 135.28033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01645681 135.28036499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01645682 135.28036499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01645683 135.28038025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01645684 135.28038025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01645685 135.28041077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01645686 135.28041077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01645687 135.28044128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01645688 135.28044128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01645689 135.28047180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01645690 135.28047180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01645691 135.28050232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01645692 135.28050232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01645693 135.28051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01645694 135.28051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01645695 135.28054810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01645696 135.28056335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01645697 135.28059387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01645698 135.28059387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01645699 135.28060913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01645700 135.28060913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01645701 135.28063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01645702 135.28063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01645703 135.28067017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01645704 135.28067017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01645705 135.28068542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01645706 135.28070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01645707 135.28073120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01645708 135.28073120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01645709 135.28076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01645710 135.28076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01645711 135.28077698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01645712 135.28077698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01645713 135.28080750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01645714 135.28080750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01645715 135.28083801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01645716 135.28083801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01645717 135.28086853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01645718 135.28086853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01645719 135.28089905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01645720 135.28089905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01645721 135.28091431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01645722 135.28091431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01645723 135.28094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01645724 135.28094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01645725 135.28097534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01645726 135.28099060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01645727 135.28100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01645728 135.28100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01645729 135.28103638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01645730 135.28103638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01645731 135.28106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01645732 135.28106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01645733 135.28108215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01645734 135.28109741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01645735 135.28111267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01645736 135.28112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01645737 135.28115845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01645738 135.28115845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01645739 135.28117371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01645740 135.28117371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01645741 135.28120422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01645742 135.28120422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01645743 135.28123474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01645744 135.28123474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01645745 135.28126526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01645746 135.28126526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01645747 135.28129578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01645748 135.28129578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01645749 135.28131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01645750 135.28131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01645751 135.28134155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01645752 135.28134155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01645753 135.28137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01645754 135.28137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01645755 135.28140259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01645756 135.28140259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01645757 135.28143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01645758 135.28143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01645759 135.28146362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01645760 135.28146362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01645761 135.28147888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01645762 135.28147888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01645763 135.28150940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01645764 135.28150940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01645765 135.28153992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01645766 135.28155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01645767 135.28157043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01645768 135.28157043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01645769 135.28160095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01645770 135.28160095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01645771 135.28163147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01645772 135.28163147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01645773 135.28164673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01645774 135.28164673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01645775 135.28167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01645776 135.28169250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01645777 135.28170776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01645778 135.28170776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01645779 135.28173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01645780 135.28173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01645781 135.28176880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01645782 135.28176880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01645783 135.28179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01645784 135.28179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01645785 135.28181458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01645786 135.28182983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01645787 135.28186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01645788 135.28186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01645789 135.28187561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01645790 135.28187561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01645791 135.28190613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01645792 135.28190613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01645793 135.28193665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01645794 135.28193665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01645795 135.28195190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01645796 135.28196716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01645797 135.28199768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01645798 135.28199768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01645799 135.28202820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01645800 135.28202820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01645801 135.28204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01645802 135.28204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01645803 135.28207397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01645804 135.28207397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01645805 135.28210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01645806 135.28210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01645807 135.28213501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01645808 135.28213501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01645809 135.28216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01645810 135.28216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01645811 135.28219604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01645812 135.28219604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01645813 135.28221130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01645814 135.28221130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01645815 135.28224182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01645816 135.28225708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01645817 135.28227234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01645818 135.28227234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01645819 135.28230286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01645820 135.28230286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01645821 135.28233337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01645822 135.28233337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01645823 135.28234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01645824 135.28236389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01645825 135.28239441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01645826 135.28239441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01645827 135.28242493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01645828 135.28242493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01645829 135.28244019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01645830 135.28244019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01645831 135.28247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01645832 135.28247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01645833 135.28250122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01645834 135.28250122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01645835 135.28253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01645836 135.28253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01645837 135.28256226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01645838 135.28256226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01645839 135.28259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01645840 135.28259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01645841 135.28260803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01645842 135.28260803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01645843 135.28263855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01645844 135.28265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01645845 135.28266907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01645846 135.28266907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01645847 135.28269958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01645848 135.28269958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01645849 135.28273010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01645850 135.28273010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01645851 135.28274536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01645852 135.28274536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01645853 135.28277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01645854 135.28279114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01645855 135.28282166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01645856 135.28282166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01645857 135.28283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01645858 135.28283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01645859 135.28286743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01645860 135.28286743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01645861 135.28289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01645862 135.28289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01645863 135.28291321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01645864 135.28292847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01645865 135.28295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01645866 135.28295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01645867 135.28298950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01645868 135.28298950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01645869 135.28300476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01645870 135.28300476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01645871 135.28303528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01645872 135.28303528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01645873 135.28306580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01645874 135.28306580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01645875 135.28309631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01645876 135.28309631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01645877 135.28312683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01645878 135.28312683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01645879 135.28314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01645880 135.28314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01645881 135.28317261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01645882 135.28317261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01645883 135.28320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01645884 135.28321838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01645885 135.28323364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01645886 135.28323364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01645887 135.28326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01645888 135.28326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01645889 135.28329468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01645890 135.28329468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01645891 135.28330994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01645892 135.28330994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01645893 135.28334045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01645894 135.28335571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01645895 135.28338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01645896 135.28338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01645897 135.28340149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01645898 135.28340149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01645899 135.28343201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01645900 135.28343201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01645901 135.28346252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01645902 135.28346252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01645903 135.28347778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01645904 135.28349304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01645905 135.28352356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01645906 135.28352356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01645907 135.28353882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01645908 135.28353882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01645909 135.28356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01645910 135.28356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01645911 135.28359985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01645912 135.28359985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01645913 135.28361511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01645914 135.28363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01645915 135.28366089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01645916 135.28366089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01645917 135.28369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01645918 135.28369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01645919 135.28370667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01645920 135.28370667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01645921 135.28373718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01645922 135.28373718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01645923 135.28376770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01645924 135.28378296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01645925 135.28379822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01645926 135.28379822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01645927 135.28382874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01645928 135.28382874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01645929 135.28385925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01645930 135.28385925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01645931 135.28387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01645932 135.28387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01645933 135.28390503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01645934 135.28392029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01645935 135.28393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01645936 135.28393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01645937 135.28396606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01645938 135.28396606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01645939 135.28399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01645940 135.28399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01645941 135.28401184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01645942 135.28402710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01645943 135.28405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01645944 135.28405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01645945 135.28408813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01645946 135.28408813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01645947 135.28410339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01645948 135.28410339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01645949 135.28413391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01645950 135.28413391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01645951 135.28416443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01645952 135.28417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01645953 135.28419495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01645954 135.28419495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01645955 135.28422546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01645956 135.28422546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01645957 135.28425598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01645958 135.28425598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01645959 135.28427124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01645960 135.28427124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01645961 135.28430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01645962 135.28431702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01645963 135.28433228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01645964 135.28433228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01645965 135.28436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01645966 135.28436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01645967 135.28439331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01645968 135.28439331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01645969 135.28440857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01645970 135.28440857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01645971 135.28443909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01645972 135.28445435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01645973 135.28448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01645974 135.28448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01645975 135.28450012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01645976 135.28450012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01645977 135.28453064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01645978 135.28453064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01645979 135.28456116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01645980 135.28456116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01645981 135.28457642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01645982 135.28459167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01645983 135.28462219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01645984 135.28462219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01645985 135.28465271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01645986 135.28465271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01645987 135.28466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01645988 135.28466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01645989 135.28469849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01645990 135.28469849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01645991 135.28472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01645992 135.28472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01645993 135.28475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01645994 135.28475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01645995 135.28479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01645996 135.28479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01645997 135.28480530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01645998 135.28480530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01645999 135.28483582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01646000 135.28483582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01646001 135.28486633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01646002 135.28486633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01646003 135.28489685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01646004 135.28489685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01646005 135.28492737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01646006 135.28492737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01646007 135.28495789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01646008 135.28495789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01646009 135.28497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01646010 135.28497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01646011 135.28500366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01646012 135.28501892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01646013 135.28503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01646014 135.28504944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01646015 135.28506470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01646016 135.28506470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01646017 135.28509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01646018 135.28509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01646019 135.28512573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01646020 135.28512573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01646021 135.28514099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01646022 135.28515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01646023 135.28518677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01646024 135.28518677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01646025 135.28520203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01646026 135.28520203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01646027 135.28523254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01646028 135.28523254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01646029 135.28526306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01646030 135.28526306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01646031 135.28529358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01646032 135.28529358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01646033 135.28532410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01646034 135.28532410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01646035 135.28535461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01646036 135.28535461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01646037 135.28536987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01646038 135.28536987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01646039 135.28540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01646040 135.28540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01646041 135.28543091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01646042 135.28544617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01646043 135.28546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01646044 135.28546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01646045 135.28549194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01646046 135.28549194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01646047 135.28552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01646048 135.28552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01646049 135.28553772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01646050 135.28553772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01646051 135.28556824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01646052 135.28558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01646053 135.28561401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01646054 135.28561401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01646055 135.28562927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01646056 135.28562927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01646057 135.28565979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01646058 135.28565979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01646059 135.28569031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01646060 135.28569031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01646061 135.28572083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01646062 135.28572083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01646063 135.28575134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01646064 135.28575134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01646065 135.28576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01646066 135.28576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01646067 135.28579712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01646068 135.28581238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01646069 135.28584290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01646070 135.28584290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01646071 135.28585815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01646072 135.28585815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01646073 135.28588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01646074 135.28588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01646075 135.28591919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01646076 135.28591919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01646077 135.28593445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01646078 135.28594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01646079 135.28598022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01646080 135.28598022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01646081 135.28601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01646082 135.28601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01646083 135.28602600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01646084 135.28602600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01646085 135.28605652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01646086 135.28605652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01646087 135.28608704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01646088 135.28608704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01646089 135.28611755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01646090 135.28611755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01646091 135.28614807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01646092 135.28614807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01646093 135.28616333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01646094 135.28616333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01646095 135.28619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01646096 135.28620911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01646097 135.28623962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01646098 135.28623962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01646099 135.28625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01646100 135.28625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01646101 135.28628540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01646102 135.28628540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01646103 135.28631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01646104 135.28631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01646105 135.28634644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01646106 135.28634644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01646107 135.28637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01646108 135.28637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01646109 135.28640747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01646110 135.28640747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01646111 135.28642273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01646112 135.28643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01646113 135.28646851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01646114 135.28646851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01646115 135.28648376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01646116 135.28648376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01646117 135.28651428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01646118 135.28651428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01646119 135.28654480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01646120 135.28656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01646121 135.28657532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01646122 135.28657532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01646123 135.28660583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01646124 135.28660583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01646125 135.28663635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01646126 135.28663635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01646127 135.28665161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01646128 135.28665161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01646129 135.28668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01646130 135.28669739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01646131 135.28671265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01646132 135.28671265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01646133 135.28674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01646134 135.28674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01646135 135.28677368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01646136 135.28677368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01646137 135.28680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01646138 135.28680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01646139 135.28681946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01646140 135.28683472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01646141 135.28686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01646142 135.28686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01646143 135.28688049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01646144 135.28688049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01646145 135.28691101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01646146 135.28691101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01646147 135.28694153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01646148 135.28694153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01664772 135.54740906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -01664773 135.54742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -01664775 135.54743958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -01664776 135.54743958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -01664777 135.54747009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01664778 135.54747009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -01664779 135.54750061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01664780 135.54750061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -01664781 135.54753113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01664782 135.54753113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -01664783 135.54756165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01664784 135.54756165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -01664785 135.54757690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01664786 135.54757690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -01664787 135.54760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01664788 135.54760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -01664789 135.54763794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -01664790 135.54765320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -01664791 135.54766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -01664792 135.54766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -01664793 135.54769897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -01664794 135.54769897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -01664795 135.54772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -01664796 135.54772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -01664797 135.54774475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -01664798 135.54774475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -01664799 135.54777527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -01664800 135.54779053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -01664801 135.54782104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -01664802 135.54782104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -01664803 135.54783630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -01664804 135.54783630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -01664805 135.54786682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -01664806 135.54786682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -01664807 135.54789734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -01664808 135.54789734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -01664809 135.54791260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -01664810 135.54792786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -01664811 135.54794312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -01664812 135.54795837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -01664813 135.54797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -01664814 135.54797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -01664815 135.54800415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -01664816 135.54800415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -01666057 135.56552124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb68 -01666058 135.56553650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb68 -01666063 135.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb78 -01666064 135.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb78 -01666065 135.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb88 -01666066 135.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb88 -01666067 135.56561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb98 -01666068 135.56561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb98 -01666069 135.56562805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba8 -01666070 135.56562805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba8 -01666071 135.56565857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb8 -01666072 135.56567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb8 -01666073 135.56568909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc8 -01666074 135.56568909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc8 -01666075 135.56571960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd8 -01666076 135.56571960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd8 -01666077 135.56575012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe8 -01666078 135.56575012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe8 -01666079 135.56576538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf8 -01666080 135.56576538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf8 -01666081 135.56579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc08 -01666082 135.56581116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc08 -01666083 135.56584167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc18 -01666084 135.56584167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc18 -01666085 135.56585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc28 -01666086 135.56585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc28 -01666087 135.56588745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc38 -01666088 135.56588745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc38 -01666089 135.56591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc48 -01666090 135.56591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc48 -01666091 135.56593323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc58 -01666092 135.56594849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc58 -01666093 135.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc68 -01666094 135.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc68 -01666095 135.56600952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc78 -01666096 135.56600952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc78 -01666097 135.56602478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc88 -01666098 135.56602478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc88 -01666099 135.56605530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc98 -01666100 135.56605530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc98 -01666101 135.56608582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca8 -01666102 135.56608582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fca8 -01666103 135.56611633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb8 -01666104 135.56611633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fcb8 -01667257 135.58235168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c8 -01667258 135.58236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320c8 -01667263 135.58238220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -01667264 135.58238220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -01667265 135.58241272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e8 -01667266 135.58241272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e8 -01667267 135.58244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f8 -01667268 135.58244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f8 -01667269 135.58245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32108 -01667270 135.58245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32108 -01667271 135.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32118 -01667272 135.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32118 -01667273 135.58251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32128 -01667274 135.58253479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32128 -01667275 135.58255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32138 -01667276 135.58255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32138 -01667277 135.58258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32148 -01667278 135.58258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32148 -01667279 135.58261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -01667280 135.58261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -01667281 135.58262634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -01667282 135.58262634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -01667283 135.58265686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -01667284 135.58267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -01667285 135.58268738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -01667286 135.58268738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -01667287 135.58271790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -01667288 135.58271790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -01667289 135.58274841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -01667290 135.58274841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -01667291 135.58276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -01667292 135.58276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -01667293 135.58279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -01667294 135.58279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -01667295 135.58282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -01667296 135.58283997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -01667297 135.58285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -01667298 135.58285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -01667299 135.58288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -01667300 135.58288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -01667301 135.58291626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -01667302 135.58291626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -01667303 135.58293152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -01667304 135.58293152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -01668677 135.60231018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d08 -01668678 135.60231018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d08 -01668683 135.60234070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d18 -01668684 135.60234070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d18 -01668685 135.60237122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d28 -01668686 135.60238647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d28 -01668687 135.60240173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d38 -01668688 135.60240173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d38 -01668689 135.60243225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d48 -01668690 135.60243225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d48 -01668691 135.60246277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d58 -01668692 135.60246277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d58 -01668693 135.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d68 -01668694 135.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d68 -01668695 135.60252380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d78 -01668696 135.60252380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d78 -01668697 135.60255432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d88 -01668698 135.60255432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d88 -01668699 135.60256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d98 -01668700 135.60256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d98 -01668701 135.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da8 -01668702 135.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34da8 -01668703 135.60263062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db8 -01668704 135.60263062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34db8 -01668705 135.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc8 -01668706 135.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dc8 -01668707 135.60269165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd8 -01668708 135.60269165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34dd8 -01668709 135.60270691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de8 -01668710 135.60270691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34de8 -01668711 135.60273743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df8 -01668712 135.60273743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34df8 -01668713 135.60276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e08 -01668714 135.60276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e08 -01668715 135.60278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e18 -01668716 135.60279846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e18 -01668717 135.60282898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e28 -01668718 135.60282898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e28 -01668719 135.60285950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e38 -01668720 135.60285950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e38 -01668721 135.60287476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e48 -01668722 135.60287476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e48 -01668723 135.60290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e58 -01668724 135.60292053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e58 -01669867 135.62248230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -01669868 135.62248230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -01669873 135.62251282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37228 -01669874 135.62252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37228 -01669875 135.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37238 -01669876 135.62257385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37238 -01669877 135.62260437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37248 -01669878 135.62260437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37248 -01669879 135.62265015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37258 -01669880 135.62265015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37258 -01669881 135.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37268 -01669882 135.62269592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37268 -01669883 135.62272644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37278 -01669884 135.62272644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37278 -01669885 135.62277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37288 -01669886 135.62277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37288 -01669887 135.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37298 -01669888 135.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37298 -01669889 135.62284851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a8 -01669890 135.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a8 -01669891 135.62289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b8 -01669892 135.62289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b8 -01669893 135.62294006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c8 -01669894 135.62294006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c8 -01669895 135.62297058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d8 -01669896 135.62298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372d8 -01669897 135.62303162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e8 -01669898 135.62303162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372e8 -01669899 135.62306213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f8 -01669900 135.62306213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x372f8 -01669901 135.62310791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37308 -01669902 135.62310791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37308 -01669903 135.62313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37318 -01669904 135.62315369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37318 -01669905 135.62318420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37328 -01669906 135.62319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37328 -01669907 135.62322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37338 -01669908 135.62322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37338 -01669909 135.62327576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37348 -01669910 135.62327576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37348 -01669911 135.62330627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37358 -01669912 135.62332153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37358 -01669913 135.62336731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37368 -01669914 135.62336731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37368 -01670813 135.63703918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -01670814 135.63703918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -01670816 135.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -01670817 135.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -01670818 135.63711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -01670819 135.63711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -01670820 135.63716125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb8 -01670821 135.63717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fb8 -01670822 135.63719177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc8 -01670823 135.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fc8 -01670824 135.63723755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd8 -01670825 135.63723755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fd8 -01670826 135.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe8 -01670827 135.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fe8 -01670828 135.63729858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff8 -01670829 135.63729858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ff8 -01670830 135.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39008 -01670831 135.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39008 -01670832 135.63734436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39018 -01670833 135.63734436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39018 -01670834 135.63737488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39028 -01670835 135.63737488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39028 -01670836 135.63740540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39038 -01670837 135.63742065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39038 -01670838 135.63743591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39048 -01670839 135.63743591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39048 -01670840 135.63746643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39058 -01670841 135.63746643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39058 -01670842 135.63749695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39068 -01670843 135.63749695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39068 -01670844 135.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39078 -01670845 135.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39078 -01670846 135.63754272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39088 -01670847 135.63755798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39088 -01670848 135.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39098 -01670849 135.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39098 -01670850 135.63760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a8 -01670851 135.63760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390a8 -01670852 135.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b8 -01670853 135.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390b8 -01670854 135.63766479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c8 -01670855 135.63766479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390c8 -01670856 135.63768005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d8 -01670857 135.63769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x390d8 -01671977 135.65422058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -01671978 135.65422058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -01671979 135.65425110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -01671980 135.65426636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -01671981 135.65428162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -01671982 135.65428162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -01671983 135.65431213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b408 -01671984 135.65431213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b408 -01671985 135.65434265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b418 -01671986 135.65434265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b418 -01671987 135.65435791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b428 -01671988 135.65437317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b428 -01671989 135.65440369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b438 -01671990 135.65440369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b438 -01671991 135.65441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b448 -01671992 135.65441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b448 -01671993 135.65447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b458 -01671994 135.65447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b458 -01671995 135.65451050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b468 -01671996 135.65451050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b468 -01671997 135.65454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b478 -01671998 135.65454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b478 -01671999 135.65457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b488 -01672000 135.65457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b488 -01672001 135.65458679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b498 -01672002 135.65458679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b498 -01672003 135.65461731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a8 -01672004 135.65463257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4a8 -01672005 135.65466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b8 -01672006 135.65466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4b8 -01672007 135.65467834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c8 -01672008 135.65467834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4c8 -01672009 135.65470886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d8 -01672010 135.65472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4d8 -01672011 135.65473938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e8 -01672012 135.65473938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4e8 -01672013 135.65476990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f8 -01672014 135.65476990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b4f8 -01672015 135.65480042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b508 -01672016 135.65480042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b508 -01672017 135.65481567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b518 -01672018 135.65481567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b518 -01672019 135.65484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b528 -01672020 135.65486145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b528 -01672175 135.65710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -01672176 135.65710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -01672178 135.65711975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -01672179 135.65713501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba18 -01672180 135.65716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -01672181 135.65716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba28 -01672182 135.65719604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -01672183 135.65719604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba38 -01672184 135.65721130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -01672185 135.65721130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba48 -01672186 135.65724182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -01672187 135.65724182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba58 -01672188 135.65727234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -01672189 135.65728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba68 -01672190 135.65730286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -01672191 135.65730286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -01672192 135.65733337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -01672193 135.65733337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -01672194 135.65736389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -01672195 135.65736389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -01672196 135.65737915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -01672197 135.65737915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -01672198 135.65740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -01672199 135.65742493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -01672200 135.65744019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac8 -01672201 135.65744019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac8 -01672202 135.65747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad8 -01672203 135.65747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad8 -01672204 135.65750122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae8 -01672205 135.65750122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae8 -01672206 135.65751648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf8 -01672207 135.65753174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf8 -01672208 135.65756226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb08 -01672209 135.65756226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb08 -01672210 135.65759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -01672211 135.65759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -01672212 135.65760803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -01672213 135.65760803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -01672214 135.65763855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -01672215 135.65763855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -01672216 135.65768433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -01672217 135.65768433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -01672218 135.65769958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -01672219 135.65769958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -01672376 135.66001892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -01672377 135.66003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -01672379 135.66006470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -01672380 135.66006470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -01672381 135.66007996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -01672382 135.66007996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -01672383 135.66011047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -01672384 135.66011047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -01672385 135.66014099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -01672386 135.66014099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -01672387 135.66015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -01672388 135.66017151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -01672389 135.66020203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -01672390 135.66020203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -01672391 135.66021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -01672392 135.66021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -01672393 135.66024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c8 -01672394 135.66024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0c8 -01672395 135.66027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d8 -01672396 135.66027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0d8 -01672397 135.66029358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e8 -01672398 135.66030884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0e8 -01672399 135.66033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f8 -01672400 135.66033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0f8 -01672401 135.66036987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c108 -01672402 135.66036987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c108 -01672403 135.66038513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c118 -01672404 135.66040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c118 -01672405 135.66043091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c128 -01672406 135.66043091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c128 -01672407 135.66046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c138 -01672408 135.66046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c138 -01672409 135.66047668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c148 -01672410 135.66047668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c148 -01672411 135.66050720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c158 -01672412 135.66052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c158 -01672413 135.66053772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c168 -01672414 135.66053772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c168 -01672415 135.66056824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c178 -01672416 135.66056824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c178 -01672417 135.66059875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c188 -01672418 135.66059875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c188 -01672419 135.66061401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c198 -01672420 135.66062927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c198 -01673395 135.67721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -01673396 135.67721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -01673398 135.67727661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -01673399 135.67727661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -01673400 135.67730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -01673401 135.67730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -01673402 135.67735291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -01673403 135.67736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -01673404 135.67739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -01673405 135.67739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -01673406 135.67744446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -01673407 135.67745972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -01673408 135.67749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -01673409 135.67749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -01673410 135.67753601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -01673411 135.67753601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -01673412 135.67758179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e098 -01673413 135.67758179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e098 -01673414 135.67761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a8 -01673415 135.67762756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0a8 -01673416 135.67767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b8 -01673417 135.67767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0b8 -01673418 135.67770386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c8 -01673419 135.67771912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0c8 -01673420 135.67776489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d8 -01673421 135.67776489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0d8 -01673422 135.67779541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e8 -01673423 135.67781067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0e8 -01673424 135.67785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f8 -01673425 135.67785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e0f8 -01673426 135.67788696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e108 -01673427 135.67790222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e108 -01673428 135.67793274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e118 -01673429 135.67793274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e118 -01673430 135.67797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e128 -01673431 135.67799377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e128 -01673432 135.67802429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e138 -01673433 135.67802429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e138 -01673434 135.67807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e148 -01673435 135.67807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e148 -01673436 135.67808533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e158 -01673437 135.67810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e158 -01673438 135.67813110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -01673439 135.67813110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -01674358 135.69491577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -01674359 135.69491577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -01674361 135.69494629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -01674362 135.69496155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -01674363 135.69500732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -01674364 135.69500732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -01674365 135.69503784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -01674366 135.69505310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -01674367 135.69508362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe68 -01674368 135.69508362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe68 -01674369 135.69512939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe78 -01674370 135.69512939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe78 -01674371 135.69517517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe88 -01674372 135.69517517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe88 -01674373 135.69522095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe98 -01674374 135.69522095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe98 -01674375 135.69525146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea8 -01674376 135.69526672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea8 -01674377 135.69531250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -01674378 135.69531250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -01674379 135.69534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -01674380 135.69535828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -01674381 135.69540405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -01674382 135.69540405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -01674383 135.69543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -01674384 135.69543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -01674385 135.69549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -01674386 135.69549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -01674387 135.69552612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -01674388 135.69552612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -01674389 135.69557190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -01674390 135.69557190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -01674391 135.69561768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -01674392 135.69561768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -01674393 135.69564819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -01674394 135.69566345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -01674395 135.69570923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -01674396 135.69570923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -01674397 135.69573975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff58 -01674398 135.69575500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff58 -01674399 135.69580078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -01674400 135.69580078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -01674401 135.69583130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -01674402 135.69584656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -01675453 135.71176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42058 -01675454 135.71176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42058 -01675459 135.71177673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42068 -01675460 135.71177673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42068 -01675461 135.71180725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42078 -01675462 135.71180725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42078 -01675463 135.71183777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42088 -01675464 135.71185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42088 -01675465 135.71186829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42098 -01675466 135.71186829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42098 -01675467 135.71189880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a8 -01675468 135.71189880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420a8 -01675469 135.71192932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b8 -01675470 135.71192932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420b8 -01675471 135.71194458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c8 -01675472 135.71194458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420c8 -01675473 135.71197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d8 -01675474 135.71199036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420d8 -01675475 135.71200562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e8 -01675476 135.71200562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420e8 -01675477 135.71203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f8 -01675478 135.71203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x420f8 -01675479 135.71206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42108 -01675480 135.71206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42108 -01675481 135.71209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42118 -01675482 135.71209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42118 -01675483 135.71211243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42128 -01675484 135.71212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42128 -01675485 135.71215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42138 -01675486 135.71215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42138 -01675487 135.71217346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42148 -01675488 135.71217346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42148 -01675489 135.71220398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42158 -01675490 135.71220398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42158 -01675491 135.71223450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42168 -01675492 135.71223450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42168 -01675493 135.71224976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42178 -01675494 135.71226501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42178 -01675495 135.71229553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42188 -01675496 135.71229553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42188 -01675497 135.71232605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42198 -01675498 135.71232605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42198 -01675499 135.71234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a8 -01675500 135.71234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a8 -01676581 135.72764587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44378 -01676582 135.72764587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44378 -01676587 135.72766113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44388 -01676588 135.72767639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44388 -01676589 135.72769165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44398 -01676590 135.72770691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44398 -01676591 135.72773743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a8 -01676592 135.72773743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a8 -01676593 135.72775269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b8 -01676594 135.72775269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443b8 -01676595 135.72778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c8 -01676596 135.72778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443c8 -01676597 135.72781372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d8 -01676598 135.72781372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d8 -01676599 135.72784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e8 -01676600 135.72784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e8 -01676601 135.72787476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f8 -01676602 135.72787476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f8 -01676603 135.72789001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44408 -01676604 135.72789001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44408 -01676605 135.72792053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44418 -01676606 135.72792053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44418 -01676607 135.72796631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44428 -01676608 135.72796631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44428 -01676609 135.72798157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44438 -01676610 135.72798157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44438 -01676611 135.72801208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44448 -01676612 135.72801208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44448 -01676613 135.72804260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44458 -01676614 135.72804260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44458 -01676615 135.72805786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44468 -01676616 135.72807312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44468 -01676617 135.72810364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44478 -01676618 135.72810364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44478 -01676619 135.72813416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44488 -01676620 135.72813416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44488 -01676621 135.72814941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44498 -01676622 135.72814941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44498 -01676623 135.72817993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a8 -01676624 135.72817993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a8 -01676625 135.72821045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b8 -01676626 135.72821045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b8 -01676627 135.72824097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c8 -01676628 135.72824097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c8 -01677661 135.74360657 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -01677662 135.74360657 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -01677667 135.74363708 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -01677668 135.74363708 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -01677669 135.74366760 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -01677670 135.74366760 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -01677671 135.74369812 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -01677672 135.74369812 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -01677673 135.74375916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -01677674 135.74375916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -01677675 135.74378967 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -01677676 135.74378967 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -01677677 135.74380493 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -01677678 135.74380493 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -01677679 135.74383545 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -01677680 135.74385071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -01677681 135.74386597 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -01677682 135.74386597 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -01677683 135.74389648 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -01677684 135.74389648 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -01677685 135.74392700 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -01677686 135.74394226 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -01677687 135.74395752 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c8 -01677688 135.74395752 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c8 -01677689 135.74398804 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d8 -01677690 135.74398804 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d8 -01677691 135.74401855 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e8 -01677692 135.74401855 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e8 -01677693 135.74403381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f8 -01677694 135.74403381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f8 -01677695 135.74406433 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46608 -01677696 135.74407959 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46608 -01677697 135.74409485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46618 -01677698 135.74409485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46618 -01677699 135.74412537 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46628 -01677700 135.74412537 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46628 -01677701 135.74415588 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46638 -01677702 135.74415588 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46638 -01677703 135.74418640 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -01677704 135.74418640 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -01677705 135.74420166 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -01677706 135.74421692 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -01677707 135.74424744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -01677708 135.74424744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -01678785 135.76133728 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48818 -01678786 135.76135254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48818 -01678791 135.76138306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48828 -01678792 135.76138306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48828 -01678793 135.76141357 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48838 -01678794 135.76141357 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48838 -01678795 135.76142883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48848 -01678796 135.76142883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48848 -01678797 135.76145935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48858 -01678798 135.76145935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48858 -01678799 135.76148987 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48868 -01678800 135.76150513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48868 -01678801 135.76152039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48878 -01678802 135.76152039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48878 -01678803 135.76155090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48888 -01678804 135.76155090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48888 -01678805 135.76158142 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48898 -01678806 135.76158142 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48898 -01678807 135.76159668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a8 -01678808 135.76161194 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488a8 -01678809 135.76164246 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b8 -01678810 135.76165771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488b8 -01678811 135.76168823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c8 -01678812 135.76168823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488c8 -01678813 135.76173401 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d8 -01678814 135.76173401 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488d8 -01678815 135.76176453 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e8 -01678816 135.76176453 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488e8 -01678817 135.76181030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f8 -01678818 135.76181030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x488f8 -01678819 135.76185608 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48908 -01678820 135.76185608 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48908 -01678821 135.76190186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48918 -01678822 135.76190186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48918 -01678823 135.76193237 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48928 -01678824 135.76193237 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48928 -01678825 135.76197815 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48938 -01678826 135.76197815 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48938 -01678827 135.76200867 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48948 -01678828 135.76202393 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48948 -01678829 135.76205444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48958 -01678830 135.76205444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48958 -01678831 135.76210022 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48968 -01678832 135.76210022 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x48968 -01679897 135.77722168 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01679898 135.77722168 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01679899 135.77725220 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01679900 135.77725220 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01679901 135.77728271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01679902 135.77728271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01679903 135.77729797 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01679904 135.77729797 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01679905 135.77732849 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01679906 135.77732849 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01679907 135.77735901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01679908 135.77737427 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01679909 135.77738953 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01679910 135.77738953 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01679911 135.77742004 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01679912 135.77742004 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01679913 135.77745056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01679914 135.77745056 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01679915 135.77746582 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01679916 135.77746582 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01679917 135.77749634 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01679918 135.77751160 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01679919 135.77754211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01679920 135.77754211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01679921 135.77755737 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01679922 135.77755737 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab78 -01679923 135.77758789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01679924 135.77758789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab88 -01679925 135.77761841 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01679926 135.77761841 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab98 -01679927 135.77763367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01679928 135.77763367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba8 -01679929 135.77766418 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -01679930 135.77767944 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb8 -01679931 135.77770996 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -01679932 135.77770996 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc8 -01679933 135.77772522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -01679934 135.77772522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd8 -01679935 135.77775574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe8 -01679936 135.77775574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe8 -01679937 135.77778625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf8 -01679938 135.77778625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf8 -01679939 135.77780151 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -01679940 135.77781677 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac08 -01680979 135.79248047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc88 -01680980 135.79248047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc88 -01680981 135.79249573 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc98 -01680982 135.79251099 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc98 -01680983 135.79254150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca8 -01680984 135.79254150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cca8 -01680985 135.79255676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb8 -01680986 135.79255676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccb8 -01680987 135.79258728 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc8 -01680988 135.79258728 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccc8 -01680989 135.79261780 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd8 -01680990 135.79261780 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccd8 -01680991 135.79263306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce8 -01680992 135.79264832 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce8 -01680993 135.79267883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf8 -01680994 135.79267883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf8 -01680995 135.79270935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd08 -01680996 135.79270935 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd08 -01680997 135.79272461 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd18 -01680998 135.79272461 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd18 -01680999 135.79275513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd28 -01681000 135.79275513 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd28 -01681001 135.79278564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd38 -01681002 135.79278564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd38 -01681003 135.79280090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd48 -01681004 135.79281616 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd48 -01681005 135.79284668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd58 -01681006 135.79284668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd58 -01681007 135.79287720 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd68 -01681008 135.79287720 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd68 -01681009 135.79289246 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd78 -01681010 135.79289246 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd78 -01681011 135.79292297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd88 -01681012 135.79292297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd88 -01681013 135.79295349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd98 -01681014 135.79295349 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd98 -01681015 135.79298401 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda8 -01681016 135.79298401 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cda8 -01681017 135.79301453 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb8 -01681018 135.79301453 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdb8 -01681019 135.79302979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc8 -01681020 135.79302979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdc8 -01681021 135.79306030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd8 -01681022 135.79306030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cdd8 -01682183 135.80941772 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -01682184 135.80943298 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -01682185 135.80946350 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -01682186 135.80946350 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -01682187 135.80947876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -01682188 135.80947876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -01682189 135.80950928 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -01682190 135.80950928 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -01682191 135.80953979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -01682192 135.80953979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -01682193 135.80955505 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -01682194 135.80955505 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -01682195 135.80958557 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -01682196 135.80960083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -01682197 135.80963135 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -01682198 135.80963135 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -01682199 135.80964661 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -01682200 135.80964661 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -01682201 135.80967712 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -01682202 135.80967712 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -01682203 135.80970764 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01682204 135.80970764 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -01682205 135.80972290 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01682206 135.80973816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -01682207 135.80976868 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01682208 135.80976868 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -01682209 135.80979919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01682210 135.80979919 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -01682211 135.80981445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01682212 135.80981445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -01682213 135.80984497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -01682214 135.80984497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -01682215 135.80987549 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -01682216 135.80987549 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -01682217 135.80990601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f338 -01682218 135.80990601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f338 -01682219 135.80993652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f348 -01682220 135.80993652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f348 -01682221 135.80995178 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f358 -01682222 135.80995178 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f358 -01682223 135.80998230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f368 -01682224 135.80998230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f368 -01682225 135.81001282 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f378 -01682226 135.81002808 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f378 -01683293 135.82504272 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d8 -01683294 135.82504272 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d8 -01683295 135.82505798 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e8 -01683296 135.82505798 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e8 -01683297 135.82508850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f8 -01683298 135.82510376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f8 -01683299 135.82511902 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51508 -01683300 135.82511902 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51508 -01683301 135.82514954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51518 -01683302 135.82514954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51518 -01683303 135.82518005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51528 -01683304 135.82518005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51528 -01683305 135.82521057 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51538 -01683306 135.82521057 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51538 -01683307 135.82522583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51548 -01683308 135.82522583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51548 -01683309 135.82525635 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51558 -01683310 135.82527161 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51558 -01683311 135.82528687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51568 -01683312 135.82528687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51568 -01683313 135.82531738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51578 -01683314 135.82531738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51578 -01683315 135.82534790 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51588 -01683316 135.82534790 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51588 -01683317 135.82536316 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51598 -01683318 135.82536316 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51598 -01683319 135.82539368 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a8 -01683320 135.82540894 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a8 -01683321 135.82543945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b8 -01683322 135.82543945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b8 -01683323 135.82545471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c8 -01683324 135.82545471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c8 -01683325 135.82548523 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d8 -01683326 135.82548523 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d8 -01683327 135.82551575 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e8 -01683328 135.82551575 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e8 -01683329 135.82553101 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -01683330 135.82553101 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -01683331 135.82556152 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -01683332 135.82557678 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -01683333 135.82560730 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -01683334 135.82560730 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -01683335 135.82562256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -01683336 135.82562256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -01684073 135.88990784 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684074 135.90855408 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684075 135.90856934 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684076 135.94757080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684077 135.94767761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01684078 135.94769287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01684079 136.31657410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684080 136.31660461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684081 136.31663513 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684082 136.31665039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01684083 136.31675720 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684084 136.31677246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684085 136.31681824 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684086 136.31684875 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684087 136.49571228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684102 137.90969849 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684107 137.92753601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684108 137.92755127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684159 138.82350159 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684160 138.82353210 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684161 138.82356262 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684162 138.82357788 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01684163 138.82369995 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684164 138.82369995 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684165 138.82376099 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01684166 138.82377625 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01684167 139.77302551 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01684168 139.92893982 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01684169 139.94660950 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684170 139.94662476 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01684171 140.83741760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01684172 140.83741760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01684173 140.83744812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01684174 140.83746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01684175 140.83749390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01684176 140.83749390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01684177 140.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01684178 140.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01684179 140.83753967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01684180 140.83753967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01684181 140.83757019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01684182 140.83757019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01684183 140.83760071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01684184 140.83760071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01684185 140.83761597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01684186 140.83761597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01684187 140.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01684188 140.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01684189 140.83767700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01684190 140.83767700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01684191 140.83769226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01684192 140.83770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01684193 140.83772278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01684194 140.83773804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01684195 140.83775330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01684196 140.83775330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01684197 140.83778381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01684198 140.83778381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01684199 140.83781433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01684200 140.83781433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01684201 140.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01684202 140.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01684203 140.83786011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01684204 140.83786011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01684205 140.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01684206 140.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01684207 140.83792114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01684208 140.83792114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01684209 140.83793640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01684210 140.83793640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01684211 140.83796692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01684212 140.83796692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01684213 140.83799744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01684214 140.83799744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01684215 140.83802795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01684216 140.83802795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01684217 140.83805847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01684218 140.83805847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01684219 140.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01684220 140.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01684221 140.83810425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01684222 140.83810425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01684223 140.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01684224 140.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01684225 140.83815002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01684226 140.83815002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01684227 140.83818054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01684228 140.83818054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01684229 140.83821106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01684230 140.83821106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01684231 140.83822632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01684232 140.83824158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01684233 140.83827209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01684234 140.83827209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01684235 140.83830261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01684236 140.83830261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01684237 140.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01684238 140.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01684239 140.83836365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01684240 140.83836365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01684241 140.83839417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01684242 140.83839417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01684243 140.83840942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01684244 140.83840942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01684245 140.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01684246 140.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01684247 140.83847046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01684248 140.83847046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01684249 140.83848572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01684250 140.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01684251 140.83853149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01684252 140.83853149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01684253 140.83854675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01684254 140.83854675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01684255 140.83857727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01684256 140.83857727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01684257 140.83860779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01684258 140.83860779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01684259 140.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01684260 140.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01684261 140.83865356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01684262 140.83866882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01684263 140.83869934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01684264 140.83869934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01684265 140.83871460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01684266 140.83871460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01684267 140.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01684268 140.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01684269 140.83877563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01684270 140.83877563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01684271 140.83879089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01684272 140.83879089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01684273 140.83882141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01684274 140.83882141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01684275 140.83885193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01684276 140.83885193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01684277 140.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01684278 140.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01684279 140.83889771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01684280 140.83889771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01684281 140.83892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01684282 140.83894348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01684283 140.83894348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01684284 140.83895874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01684285 140.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01684286 140.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01684287 140.83901978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01684288 140.83901978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01684289 140.83903503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01684290 140.83903503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01684291 140.83906555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01684292 140.83906555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01684293 140.83909607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01684294 140.83909607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01684295 140.83912659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01684296 140.83914185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01684297 140.83915710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01684298 140.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01684299 140.83918762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01684300 140.83918762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01684301 140.83921814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01684302 140.83921814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01684303 140.83924866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01684304 140.83924866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01684305 140.83926392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01684306 140.83926392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01684307 140.83929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01684308 140.83929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01684309 140.83932495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01684310 140.83932495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01684311 140.83934021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01684312 140.83934021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01684313 140.83937073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01684314 140.83938599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01684315 140.83940125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01684316 140.83941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01684317 140.83943176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01684318 140.83943176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01684319 140.83946228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01684320 140.83946228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01684321 140.83949280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01684322 140.83949280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01684323 140.83950806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01684324 140.83950806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01684325 140.83953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01684326 140.83953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01684327 140.83956909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01684328 140.83956909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01684329 140.83958435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01684330 140.83958435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01684331 140.83961487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01684332 140.83961487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01684333 140.83964539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01684334 140.83964539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01684335 140.83966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01684336 140.83967590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01684337 140.83969116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01684338 140.83970642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01684339 140.83973694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01684340 140.83973694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01684341 140.83975220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01684342 140.83975220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01684343 140.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01684344 140.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01684345 140.83981323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01684346 140.83981323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01684347 140.83982849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01684348 140.83982849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01684349 140.83985901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01684350 140.83985901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01684351 140.83988953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01684352 140.83988953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01684353 140.83990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01684354 140.83990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01684355 140.83993530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01684356 140.83995056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01684357 140.83996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01684358 140.83998108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01684359 140.83999634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01684360 140.83999634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01684361 140.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01684362 140.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01684363 140.84005737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01684364 140.84005737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01684365 140.84007263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01684366 140.84007263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01684367 140.84010315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01684368 140.84010315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01684369 140.84013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01684370 140.84013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01684371 140.84014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01684372 140.84014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01684373 140.84017944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01684374 140.84017944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01684375 140.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01684376 140.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01684377 140.84022522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01684378 140.84024048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01684379 140.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01684380 140.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01684381 140.84030151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01684382 140.84030151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01684383 140.84031677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01684384 140.84031677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01684385 140.84034729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01684386 140.84034729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01684387 140.84037781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01684388 140.84037781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01684389 140.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01684390 140.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01684391 140.84042358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01684392 140.84042358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01684393 140.84045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01684394 140.84045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01684395 140.84046936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01684396 140.84048462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01684397 140.84049988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01684398 140.84051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01684399 140.84053040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01684400 140.84053040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01684401 140.84056091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01684402 140.84056091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01684403 140.84059143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01684404 140.84059143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01684405 140.84062195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01684406 140.84062195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01684407 140.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01684408 140.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01684409 140.84066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01684410 140.84066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01684411 140.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01684412 140.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01684413 140.84071350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01684414 140.84071350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01684415 140.84074402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01684416 140.84074402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01684417 140.84077454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01684418 140.84077454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01684419 140.84078979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01684420 140.84080505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01684421 140.84083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01684422 140.84083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01684423 140.84085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01684424 140.84085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01684425 140.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01684426 140.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01684427 140.84091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01684428 140.84091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01684429 140.84092712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01684430 140.84092712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01684431 140.84095764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01684432 140.84095764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01684433 140.84098816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01684434 140.84098816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01684435 140.84101868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01684436 140.84101868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01684437 140.84103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01684438 140.84104919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01684439 140.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01684440 140.84107971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01684441 140.84109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01684442 140.84109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01684443 140.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01684444 140.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01684445 140.84115601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01684446 140.84115601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01684447 140.84117126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01684448 140.84117126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01684449 140.84120178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01684450 140.84120178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01684451 140.84123230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01684452 140.84123230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01684453 140.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01684454 140.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01684455 140.84127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01684456 140.84127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01684457 140.84130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01684458 140.84132385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01684459 140.84133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01684460 140.84133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01684461 140.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01684462 140.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01684463 140.84140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01684464 140.84140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01684465 140.84141541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01684466 140.84141541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01684467 140.84144592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01684468 140.84146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01684469 140.84149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01684470 140.84149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01684471 140.84150696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01684472 140.84150696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01684473 140.84153748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01684474 140.84153748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01684475 140.84156799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01684476 140.84156799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01684477 140.84158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01684478 140.84159851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01684479 140.84162903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01684480 140.84162903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01684481 140.84164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01684482 140.84164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01684483 140.84167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01684484 140.84167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01684485 140.84170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01684486 140.84170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01684487 140.84172058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01684488 140.84173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01684489 140.84176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01684490 140.84176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01684491 140.84179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01684492 140.84179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01684493 140.84181213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01684494 140.84181213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01684495 140.84184265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01684496 140.84185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01684497 140.84187317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01684498 140.84188843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01684499 140.84190369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01684500 140.84190369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01684501 140.84193420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01684502 140.84193420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01684503 140.84196472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01684504 140.84196472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01684505 140.84197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01684506 140.84197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01684507 140.84201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01684508 140.84202576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01684509 140.84204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01684510 140.84204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01684511 140.84207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01684512 140.84207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01684513 140.84210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01684514 140.84210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01684515 140.84211731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01684516 140.84211731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01684517 140.84214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01684518 140.84214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01684519 140.84217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01684520 140.84217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01684521 140.84220886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01684522 140.84220886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01684523 140.84222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01684524 140.84222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01684525 140.84225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01684526 140.84226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01684527 140.84228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01684528 140.84228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01684529 140.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01684530 140.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01684531 140.84234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01684532 140.84234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01684533 140.84236145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01684534 140.84236145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01684535 140.84239197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01684536 140.84239197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01684537 140.84242249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01684538 140.84242249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01684539 140.84243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01684540 140.84243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01684541 140.84246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01684542 140.84246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01684543 140.84249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01684544 140.84249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01684545 140.84251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01684546 140.84251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01684547 140.84254456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01684548 140.84255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01684549 140.84257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01684550 140.84259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01684551 140.84260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01684552 140.84260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01684553 140.84263611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01684554 140.84263611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01684555 140.84266663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01684556 140.84266663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01684557 140.84268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01684558 140.84268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01684559 140.84271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01684560 140.84271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01684561 140.84274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01684562 140.84274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01684563 140.84275818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01684564 140.84275818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01684565 140.84278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01684566 140.84278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01684567 140.84281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01684568 140.84281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01684569 140.84283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01684570 140.84284973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01684571 140.84288025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01684572 140.84288025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01684573 140.84291077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01684574 140.84291077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01684575 140.84292603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01684576 140.84292603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01684577 140.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01684578 140.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01684579 140.84298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01684580 140.84298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01684581 140.84300232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01684582 140.84300232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01684583 140.84303284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01684584 140.84303284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01684585 140.84306335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01684586 140.84306335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01684587 140.84307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01684588 140.84307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01684589 140.84310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01684590 140.84312439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01684591 140.84313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01684592 140.84315491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01684593 140.84317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01684594 140.84317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01684595 140.84320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01684596 140.84320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01684597 140.84323120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01684598 140.84323120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01684599 140.84324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01684600 140.84324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01684601 140.84327698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01684602 140.84329224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01684603 140.84332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01684604 140.84332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01684605 140.84333801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01684606 140.84333801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01684607 140.84336853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01684608 140.84336853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01684609 140.84339905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01684610 140.84339905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01684611 140.84341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01684612 140.84342957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01684613 140.84346008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01684614 140.84346008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01684615 140.84347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01684616 140.84347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01684617 140.84350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01684618 140.84350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01684619 140.84353638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01684620 140.84355164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01684621 140.84356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01684622 140.84358215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01684623 140.84361267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01684624 140.84361267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01684625 140.84362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01684626 140.84364319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01684627 140.84367371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01684628 140.84367371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01684629 140.84370422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01684630 140.84370422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01684631 140.84373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01684632 140.84373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01684633 140.84376526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01684634 140.84376526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01684635 140.84379578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01684636 140.84379578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01684637 140.84382629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01684638 140.84384155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01684639 140.84387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01684640 140.84387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01684641 140.84388733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01684642 140.84390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01684643 140.84393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01684644 140.84393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01684645 140.84394836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01684646 140.84394836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01684647 140.84397888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01684648 140.84397888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01684649 140.84400940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01684650 140.84400940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01684651 140.84402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01684652 140.84402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01684653 140.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01684654 140.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01684655 140.84408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01684656 140.84408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01684657 140.84411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01684658 140.84411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01684659 140.84414673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01684660 140.84414673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01684661 140.84417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01684662 140.84417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01684663 140.84419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01684664 140.84419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01684665 140.84422302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01684666 140.84422302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01684667 140.84425354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01684668 140.84425354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01684669 140.84426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01684670 140.84426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01684671 140.84429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01684672 140.84429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01684673 140.84432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01684674 140.84432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01684675 140.84434509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01684676 140.84434509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01684677 140.84437561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01684678 140.84439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01684679 140.84440613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01684680 140.84442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01684681 140.84443665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01684682 140.84443665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01684683 140.84446716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01684684 140.84446716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01684685 140.84449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01684686 140.84449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01684687 140.84451294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01684688 140.84451294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01684689 140.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01684690 140.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01684691 140.84457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01684692 140.84457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01684693 140.84458923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01684694 140.84458923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01684695 140.84461975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01684696 140.84461975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01684697 140.84465027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01684698 140.84465027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01684699 140.84466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01684700 140.84468079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01684701 140.84471130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01684702 140.84471130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01684703 140.84474182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01684704 140.84474182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01684705 140.84475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01684706 140.84475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01684707 140.84478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01684708 140.84478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01684709 140.84481812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01684710 140.84481812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01684711 140.84483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01684712 140.84483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01684713 140.84486389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01684714 140.84486389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01684715 140.84489441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01684716 140.84489441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01684717 140.84490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01684718 140.84490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01684719 140.84494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01684720 140.84495544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01684721 140.84497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01684722 140.84498596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01684723 140.84500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01684724 140.84500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01684725 140.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01684726 140.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01684727 140.84506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01684728 140.84506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01684729 140.84507751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01684730 140.84507751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01684731 140.84510803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01684732 140.84510803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01684733 140.84513855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01684734 140.84513855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01684735 140.84515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01684736 140.84515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01684737 140.84518433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01684738 140.84518433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01684739 140.84521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01684740 140.84521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01684741 140.84523010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01684742 140.84524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01684743 140.84527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01684744 140.84527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01684745 140.84530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01684746 140.84530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01684747 140.84532166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01684748 140.84532166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01684749 140.84535217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01684750 140.84535217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01684751 140.84538269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01684752 140.84538269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01684753 140.84539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01684754 140.84539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01684755 140.84542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01684756 140.84544373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01684757 140.84545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01684758 140.84545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01684759 140.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01684760 140.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01684761 140.84552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01684762 140.84552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01684763 140.84553528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01684764 140.84553528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01684765 140.84556580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01684766 140.84556580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01684767 140.84559631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01684768 140.84559631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01684769 140.84561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01684770 140.84561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01684771 140.84564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01684772 140.84564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01684773 140.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01684774 140.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01684775 140.84570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01684776 140.84570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01684777 140.84571838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01684778 140.84573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01684779 140.84574890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01684780 140.84576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01684781 140.84577942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01684782 140.84577942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01684783 140.84580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01684784 140.84580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01684785 140.84584045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01684786 140.84585571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01684787 140.84587097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01684788 140.84587097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01684789 140.84590149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01684790 140.84590149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01684791 140.84593201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01684792 140.84593201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01684793 140.84596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01684794 140.84596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01684795 140.84599304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01684796 140.84599304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01684797 140.84602356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01684798 140.84602356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01684799 140.84603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01684800 140.84603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01684801 140.84606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01684802 140.84606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01684803 140.84609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01684804 140.84609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01684805 140.84611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01684806 140.84611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01684807 140.84614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01684808 140.84614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01684809 140.84617615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01684810 140.84617615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01684811 140.84619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01684812 140.84620667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01684813 140.84623718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01684814 140.84623718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01684815 140.84625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01684816 140.84625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01684817 140.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01684818 140.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01684819 140.84631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01684820 140.84631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01684821 140.84632874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01684822 140.84632874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01684823 140.84635925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01684824 140.84635925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01684825 140.84638977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01684826 140.84638977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01684827 140.84642029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01684828 140.84642029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01684829 140.84643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01684830 140.84643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01684831 140.84646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01684832 140.84648132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01684833 140.84649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01684834 140.84649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01684835 140.84652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01684836 140.84652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01684837 140.84655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01684838 140.84655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01684839 140.84657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01684840 140.84657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01684841 140.84660339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01684842 140.84660339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01684843 140.84663391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01684844 140.84663391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01684845 140.84664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01684846 140.84664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01684847 140.84667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01684848 140.84667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01684849 140.84671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01684850 140.84671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01684851 140.84672546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01684852 140.84674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01684853 140.84675598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01684854 140.84677124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01684855 140.84680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01684856 140.84680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01684857 140.84681702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01684858 140.84681702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01684859 140.84684753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01684860 140.84684753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01684861 140.84687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01684862 140.84687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01684863 140.84689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01684864 140.84689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01684865 140.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01684866 140.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01684867 140.84695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01684868 140.84695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01684869 140.84696960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01684870 140.84696960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01684871 140.84700012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01684872 140.84700012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01684873 140.84703064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01684874 140.84704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01684875 140.84704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01684876 140.84706116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01684877 140.84709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01684878 140.84709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01684879 140.84712219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01684880 140.84712219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01684881 140.84713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01684882 140.84713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01684883 140.84716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01684884 140.84716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01684885 140.84719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01684886 140.84719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01684887 140.84721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01684888 140.84721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01684889 140.84724426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01684890 140.84724426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01684891 140.84729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01684892 140.84729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01684893 140.84730530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01684894 140.84730530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01684895 140.84733582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01684896 140.84733582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01684897 140.84736633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01684898 140.84736633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01684899 140.84739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01684900 140.84739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01684901 140.84742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01684902 140.84742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01684903 140.84744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01684904 140.84744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01684905 140.84747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01684906 140.84747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01684907 140.84750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01684908 140.84751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01684909 140.84751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01684910 140.84753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01684911 140.84754944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01684912 140.84756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01684913 140.84759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01684914 140.84759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01684915 140.84761047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01684916 140.84761047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01684917 140.84764099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01684918 140.84764099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01684919 140.84767151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01684920 140.84767151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01684921 140.84768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01684922 140.84768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01684923 140.84771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01684924 140.84773254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01684925 140.84776306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01684926 140.84776306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01684927 140.84777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01684928 140.84777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01684929 140.84780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01684930 140.84780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01684931 140.84783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01684932 140.84783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01684933 140.84785461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01684934 140.84786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01684935 140.84788513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01684936 140.84790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01684937 140.84791565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01684938 140.84791565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01684939 140.84794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01684940 140.84794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01684941 140.84797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01684942 140.84797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01684943 140.84800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01684944 140.84800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01684945 140.84802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01684946 140.84802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01684947 140.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01684948 140.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01684949 140.84808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01684950 140.84808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01684951 140.84809875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01684952 140.84809875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01684953 140.84812927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01684954 140.84812927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01684955 140.84815979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01684956 140.84815979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01684957 140.84817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01684958 140.84819031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01684959 140.84822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01684960 140.84822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01684961 140.84823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01684962 140.84823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01684963 140.84826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01684964 140.84826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01684965 140.84829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01684966 140.84831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01684967 140.84832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01684968 140.84832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01684969 140.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01684970 140.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01684971 140.84838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01684972 140.84838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01684973 140.84840393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01684974 140.84840393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01684975 140.84843445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01684976 140.84844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01684977 140.84848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01684978 140.84848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01684979 140.84849548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01684980 140.84849548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01684981 140.84852600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01684982 140.84852600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01684983 140.84855652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01684984 140.84855652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01684985 140.84857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01684986 140.84858704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01684987 140.84861755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01684988 140.84861755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01684989 140.84863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01684990 140.84863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01684991 140.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01684992 140.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01684993 140.84869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01684994 140.84869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01684995 140.84872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01684996 140.84872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01684997 140.84873962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01684998 140.84875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01684999 140.84878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01685000 140.84878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01685001 140.84880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01685002 140.84880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01685003 140.84883118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01685004 140.84883118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01685005 140.84886169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01685006 140.84886169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01685007 140.84887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01685008 140.84889221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01685009 140.84892273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01685010 140.84892273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01685011 140.84895325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01685012 140.84895325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01685013 140.84896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01685014 140.84896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01685015 140.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01685016 140.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01685017 140.84902954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01685018 140.84902954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01685019 140.84904480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01685020 140.84904480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01685021 140.84907532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01685022 140.84907532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01685023 140.84910583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01685024 140.84912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01685025 140.84912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01685026 140.84913635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01685027 140.84916687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01685028 140.84916687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01685029 140.84919739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01685030 140.84919739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01685031 140.84921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01685032 140.84921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01685033 140.84924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01685034 140.84924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01685035 140.84927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01685036 140.84927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01685037 140.84928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01685038 140.84928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01685039 140.84931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01685040 140.84931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01685041 140.84934998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01685042 140.84934998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01685043 140.84936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01685044 140.84938049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01685045 140.84939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01685046 140.84941101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01685047 140.84942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01685048 140.84942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01685049 140.84945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01685050 140.84945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01685051 140.84948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01685052 140.84948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01685053 140.84951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01685054 140.84951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01685055 140.84953308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01685056 140.84953308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01685057 140.84956360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01685058 140.84956360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01685059 140.84959412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01685060 140.84959412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01685061 140.84960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01685062 140.84960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01685063 140.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01685064 140.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01685065 140.84967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01685066 140.84967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01685067 140.84968567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01685068 140.84970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01685069 140.84973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01685070 140.84973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01685071 140.84974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01685072 140.84974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01685073 140.84977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01685074 140.84977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01685075 140.84980774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01685076 140.84980774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01685077 140.84982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01685078 140.84982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01685079 140.84985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01685080 140.84985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01685081 140.84988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01685082 140.84988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01685083 140.84991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01685084 140.84991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01685085 140.84992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01685086 140.84992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01685087 140.84996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01685088 140.84997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01685089 140.84999084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01685090 140.84999084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01685091 140.85002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01685092 140.85002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01685093 140.85005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01685094 140.85005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01685095 140.85006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01685096 140.85006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01685097 140.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01685098 140.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01685099 140.85012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01685100 140.85012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01685101 140.85014343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01685102 140.85014343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01685103 140.85017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01685104 140.85017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01685105 140.85020447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01685106 140.85020447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01685107 140.85021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01685108 140.85023499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01685109 140.85025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01685110 140.85026550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01685111 140.85029602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01685112 140.85029602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01685113 140.85031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01685114 140.85031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01685115 140.85034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01685116 140.85034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01685117 140.85037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01685118 140.85037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01685119 140.85038757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01685120 140.85038757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01685121 140.85041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01685122 140.85041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01685123 140.85044861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01685124 140.85046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01685125 140.85047913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01685126 140.85047913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01685127 140.85050964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01685128 140.85050964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01685129 140.85054016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01685130 140.85054016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01685131 140.85057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01685132 140.85057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01685133 140.85060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01685134 140.85060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01685135 140.85061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01685136 140.85061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01685137 140.85064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01685138 140.85064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01685139 140.85067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01685140 140.85067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01685141 140.85070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01685142 140.85070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01685143 140.85072327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01685144 140.85073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01685145 140.85076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01685146 140.85076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01685147 140.85078430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01685148 140.85078430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01685149 140.85081482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01685150 140.85081482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01685151 140.85084534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01685152 140.85084534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01685153 140.85086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01685154 140.85086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01685155 140.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01685156 140.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01685157 140.85092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01685158 140.85092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01685159 140.85093689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01685160 140.85093689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01685161 140.85096741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01685162 140.85096741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01685163 140.85099792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01685164 140.85099792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01685165 140.85101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01685166 140.85102844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01685167 140.85104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01685168 140.85105896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01685169 140.85108948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01685170 140.85108948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01685171 140.85110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01685172 140.85110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01685173 140.85113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01685174 140.85113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01685175 140.85116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01685176 140.85116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01685177 140.85118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01685178 140.85118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01685179 140.85121155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01685180 140.85121155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01685181 140.85124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01685182 140.85124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01685183 140.85125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01685184 140.85127258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01685185 140.85130310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01685186 140.85130310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01685187 140.85133362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01685188 140.85133362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01685189 140.85134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01685190 140.85134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01685191 140.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01685192 140.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01685193 140.85140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01685194 140.85140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01685195 140.85142517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01685196 140.85142517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01685197 140.85145569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01685198 140.85145569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01685199 140.85148621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01685200 140.85148621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01685201 140.85150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01685202 140.85150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01685203 140.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01685204 140.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01685205 140.85156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01685206 140.85157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01685207 140.85157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01685208 140.85159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01685209 140.85162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01685210 140.85162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01685211 140.85165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01685212 140.85165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01685213 140.85166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01685214 140.85166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01685215 140.85169983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01685216 140.85169983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01685217 140.85173035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01685218 140.85173035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01685219 140.85174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01685220 140.85174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01685221 140.85177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01685222 140.85177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01685223 140.85180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01685224 140.85180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01685225 140.85182190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01685226 140.85182190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01685227 140.85185242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01685228 140.85186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01685229 140.85188293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01685230 140.85189819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01685231 140.85191345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01685232 140.85191345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01685233 140.85194397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01685234 140.85194397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01685235 140.85197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01685236 140.85197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01685237 140.85198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01685238 140.85198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01685239 140.85202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01685240 140.85202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01685241 140.85205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01685242 140.85205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01685243 140.85206604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01685244 140.85206604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01685245 140.85209656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01685246 140.85209656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01685247 140.85212708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01685248 140.85212708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01685249 140.85214233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01685250 140.85215759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01685251 140.85217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01685252 140.85218811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01685253 140.85221863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01685254 140.85221863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01685255 140.85223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01685256 140.85223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01685257 140.85226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01685258 140.85226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01685259 140.85229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01685260 140.85229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01685261 140.85231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01685262 140.85231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01685263 140.85234070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01685264 140.85235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01685265 140.85237122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01685266 140.85237122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01685267 140.85240173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01685268 140.85240173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01685269 140.85243225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01685270 140.85243225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01685271 140.85244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01685272 140.85244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01685273 140.85247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01685274 140.85249329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01685275 140.85252380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01685276 140.85252380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01685277 140.85253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01685278 140.85253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01685279 140.85256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01685280 140.85256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01685281 140.85260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01685282 140.85260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01685283 140.85261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01685284 140.85261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01685285 140.85264587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01685286 140.85264587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01685287 140.85267639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01685288 140.85269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01685289 140.85270691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01685290 140.85270691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01685291 140.85275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01685292 140.85275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01685293 140.85278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01685294 140.85278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01685295 140.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01685296 140.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01685297 140.85284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01685298 140.85284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01685299 140.85285950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01685300 140.85285950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01685301 140.85289001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01685302 140.85290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01685303 140.85292053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01685304 140.85292053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01685305 140.85295105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01685306 140.85295105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01685307 140.85298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01685308 140.85298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01685309 140.85301208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01685310 140.85301208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01685311 140.85302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01685312 140.85302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01685313 140.85305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01685314 140.85305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01685315 140.85308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01685316 140.85308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01685317 140.85310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01685318 140.85310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01685319 140.85313416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01685320 140.85313416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01685321 140.85316467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01685322 140.85316467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01685323 140.85317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01685324 140.85319519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01685325 140.85322571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01685326 140.85322571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01685327 140.85324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01685328 140.85324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01685329 140.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01685330 140.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01685331 140.85330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01685332 140.85330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01685333 140.85331726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01685334 140.85331726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01685335 140.85334778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01685336 140.85336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01685337 140.85339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01685338 140.85339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01685339 140.85340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01685340 140.85340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01685341 140.85343933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01685342 140.85343933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01685343 140.85346985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01685344 140.85346985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01685345 140.85348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01685346 140.85348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01685347 140.85351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01685348 140.85353088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01685349 140.85356140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01685350 140.85356140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01685351 140.85357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01685352 140.85357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01685353 140.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01685354 140.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01685355 140.85363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01685356 140.85363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01685357 140.85365295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01685358 140.85366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01685359 140.85368347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01685360 140.85369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01685361 140.85371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01685362 140.85371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01685363 140.85374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01685364 140.85374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01685365 140.85377502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01685366 140.85377502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01685367 140.85380554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01685368 140.85380554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01685369 140.85382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01685370 140.85382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01685371 140.85385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01685372 140.85385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01685373 140.85388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01685374 140.85388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01685375 140.85389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01685376 140.85389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01685377 140.85392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01685378 140.85392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01685379 140.85395813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01685380 140.85395813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01685381 140.85397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01685382 140.85398865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01685383 140.85401917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01685384 140.85401917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01685385 140.85403442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01685386 140.85403442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01685387 140.85406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01685388 140.85406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01685389 140.85409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01685390 140.85409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01685391 140.85412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01685392 140.85412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01685393 140.85414124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01685394 140.85414124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01685395 140.85417175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01685396 140.85417175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01685397 140.85420227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01685398 140.85420227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01685399 140.85421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01685400 140.85421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01685401 140.85424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01685402 140.85426331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01685403 140.85427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01685404 140.85427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01685405 140.85430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01685406 140.85430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01685407 140.85433960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01685408 140.85433960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01685409 140.85435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01685410 140.85435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01685411 140.85438538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01685412 140.85438538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01685413 140.85441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01685414 140.85441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01685415 140.85443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01685416 140.85443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01685417 140.85446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01685418 140.85446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01685419 140.85449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01685420 140.85449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01685421 140.85452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01685422 140.85452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01685423 140.85453796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01685424 140.85455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01685425 140.85456848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01685426 140.85458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01685427 140.85459900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01685428 140.85459900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01685429 140.85462952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01685430 140.85462952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01685431 140.85466003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01685432 140.85466003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01685433 140.85467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01685434 140.85467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01685435 140.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01685436 140.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01685437 140.85473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01685438 140.85473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01685439 140.85475159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01685440 140.85475159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01685441 140.85478210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01685442 140.85478210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01685443 140.85481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01685444 140.85481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01685445 140.85482788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01685446 140.85484314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01685447 140.85485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01685448 140.85487366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01685449 140.85490417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01685450 140.85490417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01685451 140.85491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01685452 140.85491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01685453 140.85494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01685454 140.85494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01685455 140.85498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01685456 140.85498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01685457 140.85499573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01685458 140.85499573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01685459 140.85502625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01685460 140.85502625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01685461 140.85505676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01685462 140.85505676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01685463 140.85507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01685464 140.85507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01685465 140.85510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01685466 140.85511780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01685467 140.85513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01685468 140.85514832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01685469 140.85514832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01685470 140.85516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01685471 140.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01685472 140.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01685473 140.85522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01685474 140.85522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01685475 140.85523987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01685476 140.85523987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01685477 140.85527039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01685478 140.85528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01685479 140.85530090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01685480 140.85531616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01685481 140.85533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01685482 140.85533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01685483 140.85536194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01685484 140.85536194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01685485 140.85539246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01685486 140.85539246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01685487 140.85540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01685488 140.85540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01685489 140.85543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01685490 140.85545349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01685491 140.85546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01685492 140.85546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01685493 140.85549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01685494 140.85549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01685495 140.85552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01685496 140.85552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01685497 140.85554504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01685498 140.85554504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01685499 140.85559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01685500 140.85559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01685501 140.85562134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01685502 140.85562134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01685503 140.85563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01685504 140.85563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01685505 140.85566711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01685506 140.85568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01685507 140.85571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01685508 140.85571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01685509 140.85572815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01685510 140.85572815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01685511 140.85575867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01685512 140.85575867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01685513 140.85578918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01685514 140.85578918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01685515 140.85580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01685516 140.85580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01685517 140.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01685518 140.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01685519 140.85586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01685520 140.85586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01685521 140.85588074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01685522 140.85589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01685523 140.85592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01685524 140.85592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01685525 140.85594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01685526 140.85594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01685527 140.85597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01685528 140.85597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01685529 140.85600281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01685530 140.85600281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01685531 140.85601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01685532 140.85601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01685533 140.85604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01685534 140.85604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01685535 140.85607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01685536 140.85607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01685537 140.85610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01685538 140.85610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01685539 140.85612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01685540 140.85612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01685541 140.85615540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01685542 140.85617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01685543 140.85618591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01685544 140.85618591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01685545 140.85621643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01685546 140.85621643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01685547 140.85624695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01685548 140.85624695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01685549 140.85626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01685550 140.85626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01685551 140.85629272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01685552 140.85629272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01685553 140.85632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01685554 140.85632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01685555 140.85633850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01685556 140.85633850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01685557 140.85636902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01685558 140.85636902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01685559 140.85639954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01685560 140.85641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01685561 140.85643005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01685562 140.85643005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01685563 140.85646057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01685564 140.85646057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01685565 140.85649109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01685566 140.85649109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01685567 140.85650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01685568 140.85652161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01685569 140.85653687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01685570 140.85655212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01685571 140.85656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01685572 140.85658264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01685573 140.85659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01685574 140.85659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01685575 140.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01685576 140.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01685577 140.85665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01685578 140.85665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01685579 140.85667419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01685580 140.85667419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01685581 140.85670471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01685582 140.85670471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01685583 140.85673523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01685584 140.85673523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01685585 140.85675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01685586 140.85675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01685587 140.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01685588 140.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01685589 140.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01685590 140.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01685591 140.85682678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01685592 140.85684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01685593 140.85685730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01685594 140.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01685595 140.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01685596 140.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01685597 140.85691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01685598 140.85691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01685599 140.85694885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01685600 140.85694885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01685601 140.85697937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01685602 140.85697937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01685603 140.85699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01685604 140.85699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01685605 140.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01685606 140.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01685607 140.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01685608 140.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01685609 140.85707092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01685610 140.85707092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01685611 140.85710144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01685612 140.85710144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01685613 140.85713196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01685614 140.85713196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01685615 140.85714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01685616 140.85716248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01685617 140.85719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01685618 140.85719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01685619 140.85722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01685620 140.85722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01685621 140.85723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01685622 140.85723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01685623 140.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01685624 140.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01685625 140.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01685626 140.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01685627 140.85731506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01685628 140.85731506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01685629 140.85734558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01685630 140.85734558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01685631 140.85737610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01685632 140.85737610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01685633 140.85739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01685634 140.85739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01685635 140.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01685636 140.85743713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01685637 140.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01685638 140.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01685639 140.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01685640 140.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01685641 140.85751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01685642 140.85751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01685643 140.85752869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01685644 140.85752869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01685645 140.85755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01685646 140.85755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01685647 140.85758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01685648 140.85758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01685649 140.85762024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01685650 140.85762024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01685651 140.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01685652 140.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01685653 140.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01685654 140.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01685655 140.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01685656 140.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01685657 140.85771179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01685658 140.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01685659 140.85774231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01685660 140.85775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01685661 140.85777283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01685662 140.85777283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01685663 140.85780334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01685664 140.85780334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01685665 140.85783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01685666 140.85783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01685667 140.85784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01685668 140.85784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01685669 140.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01685670 140.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01685671 140.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01685672 140.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01685673 140.85792542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01685674 140.85792542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01685675 140.85795593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01685676 140.85795593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01685677 140.85798645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01685678 140.85798645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01685679 140.85801697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01685680 140.85801697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01685681 140.85803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01685682 140.85804749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01685683 140.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01685684 140.85807800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01685685 140.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01685686 140.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01685687 140.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01685688 140.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01685689 140.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01685690 140.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01685691 140.85816956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01685692 140.85816956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01685693 140.85820007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01685694 140.85820007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01685695 140.85823059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01685696 140.85823059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01685697 140.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01685698 140.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01685699 140.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01685700 140.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01685701 140.85830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01685702 140.85832214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01685703 140.85832214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01685704 140.85833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01685705 140.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01685706 140.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01685707 140.85839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01685708 140.85839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01685709 140.85841370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01685710 140.85841370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01685711 140.85844421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01685712 140.85844421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01685713 140.85847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01685714 140.85847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01685715 140.85848999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01685716 140.85848999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01685717 140.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01685718 140.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01685719 140.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01685720 140.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01685721 140.85856628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01685722 140.85856628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01685723 140.85859680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01685724 140.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01685725 140.85862732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01685726 140.85864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01685727 140.85865784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01685728 140.85865784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01685729 140.85868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01685730 140.85868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01685731 140.85871887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01685732 140.85871887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01685733 140.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01685734 140.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01685735 140.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01685736 140.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01685737 140.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01685738 140.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01685739 140.85881042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01685740 140.85881042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01685741 140.85884094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01685742 140.85884094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01685743 140.85887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01685744 140.85887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01685745 140.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01685746 140.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01685747 140.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01685748 140.85893250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01685749 140.85894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01685750 140.85896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01685751 140.85897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01685752 140.85897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01685753 140.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01685754 140.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01685755 140.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01685756 140.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01685757 140.85905457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01685758 140.85905457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01685759 140.85908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01685760 140.85908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01685761 140.85911560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01685762 140.85911560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01685763 140.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01685764 140.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01685765 140.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01685766 140.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01685767 140.85919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01685768 140.85919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01685769 140.85920715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01685770 140.85922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01685771 140.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01685772 140.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01685773 140.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01685774 140.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01685775 140.85929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01685776 140.85929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01685777 140.85932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01685778 140.85932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01685779 140.85935974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01685780 140.85935974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01685781 140.85937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01685782 140.85939026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01685783 140.85942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01685784 140.85942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01685785 140.85943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01685786 140.85943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01685787 140.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01685788 140.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01685789 140.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01685790 140.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01685791 140.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01685792 140.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01685793 140.85954285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01685794 140.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01685795 140.85958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01685796 140.85958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01685797 140.85960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01685798 140.85960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01685799 140.85963440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01685800 140.85963440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01685801 140.85966492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01685802 140.85966492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01685803 140.85968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01685804 140.85969543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01685805 140.85972595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01685806 140.85972595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01685807 140.85975647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01685808 140.85975647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01685809 140.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01685810 140.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01685811 140.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01685812 140.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01685813 140.85983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01685814 140.85983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01685815 140.85984802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01685816 140.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01685817 140.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01685818 140.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01685819 140.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01685820 140.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01685821 140.85993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01685822 140.85993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01685823 140.85997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01685824 140.85997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01685825 140.86000061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01685826 140.86000061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01685827 140.86003113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01685828 140.86003113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01685829 140.86006165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01685830 140.86006165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01685831 140.86007690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01685832 140.86007690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01685833 140.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01685834 140.86012268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01685835 140.86015320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01685836 140.86015320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01685837 140.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01685838 140.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01685839 140.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01685840 140.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01685841 140.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01685842 140.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01685843 140.86024475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01685844 140.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01685845 140.86027527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01685846 140.86029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01685847 140.86032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01685848 140.86032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01685849 140.86033630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01685850 140.86033630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01685851 140.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01685852 140.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01685853 140.86039734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01685854 140.86039734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01685855 140.86042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01685856 140.86042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01685857 140.86045837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01685858 140.86045837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01685859 140.86047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01685860 140.86048889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01685861 140.86051941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01685862 140.86051941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01685863 140.86054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01685864 140.86054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01685865 140.86056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01685866 140.86056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01685867 140.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01685868 140.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01685869 140.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01685870 140.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01685871 140.86064148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01685872 140.86065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01685873 140.86067200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01685874 140.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01685875 140.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01685876 140.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01685877 140.86073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01685878 140.86073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01685879 140.86076355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01685880 140.86076355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01685881 140.86079407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01685882 140.86079407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01685883 140.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01685884 140.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01685885 140.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01685886 140.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01685887 140.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01685888 140.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01685889 140.86088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01685890 140.86088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01685891 140.86091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01685892 140.86091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01685893 140.86094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01685894 140.86094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01685895 140.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01685896 140.86097717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01685897 140.86100769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01685898 140.86100769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01685899 140.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01685900 140.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01685901 140.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01685902 140.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01685903 140.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01685904 140.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01685905 140.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01685906 140.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01685907 140.86112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01685908 140.86112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01685909 140.86116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01685910 140.86116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01685911 140.86119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01685912 140.86119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01685913 140.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01685914 140.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01685915 140.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01685916 140.86125183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01685917 140.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01685918 140.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01685919 140.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01685920 140.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01685921 140.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01685922 140.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01685923 140.86134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01685924 140.86134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01685925 140.86137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01685926 140.86137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01685927 140.86140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01685928 140.86140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01685929 140.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01685930 140.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01685931 140.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01685932 140.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01685933 140.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01685934 140.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01685935 140.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01685936 140.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01685937 140.86152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01685938 140.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01685939 140.86155701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01685940 140.86157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01685941 140.86158752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01685942 140.86158752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01685943 140.86161804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01685944 140.86161804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01685945 140.86164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01685946 140.86164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01685947 140.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01685948 140.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01685949 140.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01685950 140.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01685951 140.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01685952 140.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01685953 140.86174011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01685954 140.86174011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01685955 140.86177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01685956 140.86177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01685957 140.86180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01685958 140.86180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01685959 140.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01685960 140.86183167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01685961 140.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01685962 140.86186218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01685963 140.86189270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01685964 140.86189270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01685965 140.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01685966 140.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01685967 140.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01685968 140.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01685969 140.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01685970 140.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01685971 140.86198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01685972 140.86198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01685973 140.86201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01685974 140.86201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01685975 140.86204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01685976 140.86204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01685977 140.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01685978 140.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01685979 140.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01685980 140.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01685981 140.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01685982 140.86213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01685983 140.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01685984 140.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01685985 140.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01685986 140.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01685987 140.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01685988 140.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01685989 140.86222839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01685990 140.86224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01685991 140.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01685992 140.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01685993 140.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01685994 140.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01685995 140.86231995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01685996 140.86231995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01685997 140.86235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01685998 140.86235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01685999 140.86238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01686000 140.86238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01686001 140.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01686002 140.86241150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01686003 140.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01686004 140.86244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01686005 140.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01686006 140.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01686007 140.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01686008 140.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01686009 140.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01686010 140.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01686011 140.86253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01686012 140.86253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01686013 140.86256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01686014 140.86256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01686015 140.86259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01686016 140.86259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01686017 140.86262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01686018 140.86262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01686019 140.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01686020 140.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01686021 140.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01686022 140.86268616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01686023 140.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01686024 140.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01686025 140.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01686026 140.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01686027 140.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01686028 140.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01686029 140.86277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01686030 140.86277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01686031 140.86280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01686032 140.86280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01686033 140.86283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01686034 140.86283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01686035 140.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01686036 140.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01686037 140.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01686038 140.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01686039 140.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01686040 140.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01686041 140.86293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01686042 140.86293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01686043 140.86296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01686044 140.86297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01686045 140.86299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01686046 140.86300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01686047 140.86302185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01686048 140.86302185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01686049 140.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01686050 140.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01686051 140.86308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01686052 140.86308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01686053 140.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01686054 140.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01686055 140.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01686056 140.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01686057 140.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01686058 140.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01686059 140.86317444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01686060 140.86317444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01686061 140.86320496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01686062 140.86320496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01686063 140.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01686064 140.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01686065 140.86326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01686066 140.86326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01686067 140.86329651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01686068 140.86329651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01686069 140.86332703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01686070 140.86332703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01686071 140.86334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01686072 140.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01686073 140.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01686074 140.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01686075 140.86341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01686076 140.86341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01686077 140.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01686078 140.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01686079 140.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01686080 140.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01686081 140.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01686082 140.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01686083 140.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01686084 140.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01686085 140.86355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01686086 140.86355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01686087 140.86357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01686088 140.86357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01686089 140.86360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01686090 140.86360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01686091 140.86363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01686092 140.86363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01686093 140.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01686094 140.86366272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01686095 140.86369324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01686096 140.86369324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01686097 140.86372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01686098 140.86372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01686099 140.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01686100 140.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01686101 140.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01686102 140.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01686103 140.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01686104 140.86381531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01686105 140.86381531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01686106 140.86383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01686107 140.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01686108 140.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01686109 140.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01686110 140.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01686111 140.86390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01686112 140.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01686113 140.86393738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01686114 140.86395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01686115 140.86396790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01686116 140.86396790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01686117 140.86399841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01686118 140.86399841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01686119 140.86402893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01686120 140.86402893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01686121 140.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01686122 140.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01686123 140.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01686124 140.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01686125 140.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01686126 140.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01686127 140.86412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01686128 140.86412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01686129 140.86415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01686130 140.86415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01686131 140.86418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01686132 140.86418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01686133 140.86421204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01686134 140.86421204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01686135 140.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01686136 140.86424255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01686137 140.86427307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01686138 140.86427307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01686139 140.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01686140 140.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01686141 140.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01686142 140.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01686143 140.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01686144 140.86436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01686145 140.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01686146 140.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01686147 140.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01686148 140.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01686149 140.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01686150 140.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01686151 140.86445618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01686152 140.86445618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01686153 140.86448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01686154 140.86448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01686155 140.86451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01686156 140.86451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01686157 140.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01686158 140.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01686159 140.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01686160 140.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01686161 140.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01686162 140.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01686163 140.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01686164 140.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01686165 140.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01686166 140.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01686167 140.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01686168 140.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01686169 140.86470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01686170 140.86470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01686171 140.86473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01686172 140.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01686173 140.86476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01686174 140.86476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01686175 140.86479187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01686176 140.86479187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01686177 140.86482239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01686178 140.86482239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01686179 140.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01686180 140.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01686181 140.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01686182 140.86488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01686183 140.86489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01686184 140.86491394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01686185 140.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01686186 140.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01686187 140.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01686188 140.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01686189 140.86499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01686190 140.86499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01686191 140.86500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01686192 140.86500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01686193 140.86503601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01686194 140.86503601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01686195 140.86506653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01686196 140.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01686197 140.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01686198 140.86509705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01686199 140.86512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01686200 140.86512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01686201 140.86515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01686202 140.86515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01686203 140.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01686204 140.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01686205 140.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01686206 140.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01686207 140.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01686208 140.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01686209 140.86524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01686210 140.86524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01686211 140.86528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01686212 140.86528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01686213 140.86531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01686214 140.86531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01686215 140.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01686216 140.86534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01686217 140.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01686218 140.86537170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01686219 140.86540222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01686220 140.86540222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01686221 140.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01686222 140.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01686223 140.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01686224 140.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01686225 140.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01686226 140.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01686227 140.86549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01686228 140.86549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01686229 140.86552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01686230 140.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01686231 140.86555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01686232 140.86555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01686233 140.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01686234 140.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01686235 140.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01686236 140.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01686237 140.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01686238 140.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01686239 140.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01686240 140.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01686241 140.86569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01686242 140.86570740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01686243 140.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01686244 140.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01686245 140.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01686246 140.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01686247 140.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01686248 140.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01686249 140.86579895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01686250 140.86579895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01686251 140.86582947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01686252 140.86584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01686253 140.86587524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01686254 140.86587524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01686255 140.86589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01686256 140.86589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01686257 140.86592102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01686258 140.86592102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01686259 140.86595154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01686260 140.86595154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01686261 140.86596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01686262 140.86596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01686263 140.86599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01686264 140.86601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01686265 140.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01686266 140.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01686267 140.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01686268 140.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01686269 140.86608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01686270 140.86608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01686271 140.86611938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01686272 140.86611938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01686273 140.86613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01686274 140.86613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01686275 140.86616516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01686276 140.86616516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01686277 140.86619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01686278 140.86619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01686279 140.86621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01686280 140.86621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01686281 140.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01686282 140.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01686283 140.86627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01686284 140.86627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01686285 140.86630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01686286 140.86630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01686287 140.86633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01686288 140.86633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01686289 140.86634827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01686290 140.86636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01686291 140.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01686292 140.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01686293 140.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01686294 140.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01686295 140.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01686296 140.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01686297 140.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01686298 140.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01686299 140.86653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01686300 140.86653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01686301 140.86656189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01686302 140.86657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01686303 140.86659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01686304 140.86659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01686305 140.86662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01686306 140.86662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01686307 140.86665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01686308 140.86665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01686309 140.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01686310 140.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01686311 140.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01686312 140.86671448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01686313 140.86674500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01686314 140.86674500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01686315 140.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01686316 140.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01686317 140.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01686318 140.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01686319 140.86682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01686320 140.86682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01686321 140.86683655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01686322 140.86685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01686323 140.86686707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01686324 140.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01686325 140.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01686326 140.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01686327 140.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01686328 140.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01686329 140.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01686330 140.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01686331 140.86698914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01686332 140.86698914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01686333 140.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01686334 140.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01686335 140.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01686336 140.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01686337 140.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01686338 140.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01686339 140.86708069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01686340 140.86708069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01686341 140.86711121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01686342 140.86712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01686343 140.86714172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01686344 140.86714172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01686345 140.86717224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01686346 140.86717224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01686347 140.86720276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01686348 140.86720276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01686349 140.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01686350 140.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01686351 140.86724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01686352 140.86724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01686353 140.86727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01686354 140.86727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01686355 140.86730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01686356 140.86730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01686357 140.86732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01686358 140.86732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01686359 140.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01686360 140.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01686361 140.86738586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01686362 140.86738586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01686363 140.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01686364 140.86741638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01686365 140.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01686366 140.86744690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01686367 140.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01686368 140.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01686369 140.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01686370 140.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01686371 140.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01686372 140.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01686373 140.86753845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01686374 140.86753845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01686375 140.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01686376 140.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01686377 140.86759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01686378 140.86759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01686379 140.86763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01686380 140.86763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01686381 140.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01686382 140.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01686383 140.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01686384 140.86769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01686385 140.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01686386 140.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01686387 140.86773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01686388 140.86773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01686389 140.86776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01686390 140.86776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01686391 140.86778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01686392 140.86778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01686393 140.86781311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01686394 140.86781311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01686395 140.86784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01686396 140.86784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01686397 140.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01686398 140.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01686399 140.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01686400 140.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01686401 140.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01686402 140.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01686403 140.86793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01686404 140.86793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01686405 140.86796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01686406 140.86798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01686407 140.86799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01686408 140.86801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01686409 140.86802673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01686410 140.86802673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01686411 140.86805725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01686412 140.86805725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01686413 140.86808777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01686414 140.86808777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01686415 140.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01686416 140.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01686417 140.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01686418 140.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01686419 140.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01686420 140.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01686421 140.86817932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01686422 140.86817932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01686423 140.86820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01686424 140.86820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01686425 140.86824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01686426 140.86824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01686427 140.86825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01686428 140.86827087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01686429 140.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01686430 140.86830139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01686431 140.86833191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01686432 140.86833191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01686433 140.86834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01686434 140.86834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01686435 140.86837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01686436 140.86837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01686437 140.86840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01686438 140.86840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01686439 140.86842346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01686440 140.86842346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01686441 140.86845398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01686442 140.86845398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01686443 140.86848450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01686444 140.86848450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01686445 140.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01686446 140.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01686447 140.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01686448 140.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01686449 140.86856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01686450 140.86857605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01686451 140.86857605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01686452 140.86859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01686453 140.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01686454 140.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01686455 140.86865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01686456 140.86865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01686457 140.86866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01686458 140.86866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01686459 140.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01686460 140.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01686461 140.86872864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01686462 140.86872864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01686463 140.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01686464 140.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01686465 140.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01686466 140.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01686467 140.86880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01686468 140.86880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01686469 140.86882019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01686470 140.86883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01686471 140.86885071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01686472 140.86886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01686473 140.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01686474 140.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01686475 140.86891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01686476 140.86891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01686477 140.86894226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01686478 140.86894226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01686479 140.86897278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01686480 140.86897278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01686481 140.86898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01686482 140.86898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01686483 140.86901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01686484 140.86901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01686485 140.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01686486 140.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01686487 140.86906433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01686488 140.86906433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01686489 140.86909485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01686490 140.86909485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01686491 140.86912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01686492 140.86912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01686493 140.86914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01686494 140.86915588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01686495 140.86918640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01686496 140.86918640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01686497 140.86921692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01686498 140.86921692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01686499 140.86924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01686500 140.86924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01686501 140.86927795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01686502 140.86927795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01686503 140.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01686504 140.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01686505 140.86932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01686506 140.86932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01686507 140.86935425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01686508 140.86935425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01686509 140.86936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01686510 140.86936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01686511 140.86940002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01686512 140.86940002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01686513 140.86943054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01686514 140.86943054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01686515 140.86944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01686516 140.86946106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01686517 140.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01686518 140.86949158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01686519 140.86952209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01686520 140.86952209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01686521 140.86953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01686522 140.86953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01686523 140.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01686524 140.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01686525 140.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01686526 140.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01686527 140.86961365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01686528 140.86961365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01686529 140.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01686530 140.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01686531 140.86967468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01686532 140.86967468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01686533 140.86968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01686534 140.86968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01686535 140.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01686536 140.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01686537 140.86975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01686538 140.86976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01686539 140.86976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01686540 140.86978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01686541 140.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01686542 140.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01686543 140.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01686544 140.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01686545 140.86985779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01686546 140.86985779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01686547 140.86988831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01686548 140.86988831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01686549 140.86991882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01686550 140.86991882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01686551 140.86993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01686552 140.86993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01686553 140.86996460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01686554 140.86996460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01686555 140.86999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01686556 140.86999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01686557 140.87001038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01686558 140.87001038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01686559 140.87004089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01686560 140.87005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01686561 140.87007141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01686562 140.87008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01686563 140.87010193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01686564 140.87010193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01686565 140.87013245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01686566 140.87013245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01686567 140.87016296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01686568 140.87016296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01686569 140.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01686570 140.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01686571 140.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01686572 140.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01686573 140.87023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01686574 140.87023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01686575 140.87025452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01686576 140.87025452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01686577 140.87028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01686578 140.87028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01686579 140.87031555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01686580 140.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01686581 140.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01686582 140.87034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01686583 140.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01686584 140.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01686585 140.87040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01686586 140.87040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01686587 140.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01686588 140.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01686589 140.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01686590 140.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01686591 140.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01686592 140.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01686593 140.87049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01686594 140.87049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01686595 140.87052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01686596 140.87052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01686597 140.87055969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01686598 140.87055969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01686599 140.87057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01686600 140.87057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01686601 140.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01686602 140.87062073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01686603 140.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01686604 140.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01686605 140.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01686606 140.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01686607 140.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01686608 140.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01686609 140.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01686610 140.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01686611 140.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01686612 140.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01686613 140.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01686614 140.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01686615 140.87080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01686616 140.87080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01686617 140.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01686618 140.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01686619 140.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01686620 140.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01686621 140.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01686622 140.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01686623 140.87089539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01686624 140.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01686625 140.87092590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01686626 140.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01686627 140.87095642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01686628 140.87095642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01686629 140.87098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01686630 140.87098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01686631 140.87101746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01686632 140.87101746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01686633 140.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01686634 140.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01686635 140.87106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01686636 140.87106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01686637 140.87109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01686638 140.87109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01686639 140.87112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01686640 140.87112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01686641 140.87113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01686642 140.87113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01686643 140.87117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01686644 140.87117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01686645 140.87120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01686646 140.87120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01686647 140.87123108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01686648 140.87123108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01686649 140.87126160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01686650 140.87126160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01686651 140.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01686652 140.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01686653 140.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01686654 140.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01686655 140.87133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01686656 140.87133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01686657 140.87135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01686658 140.87135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01686659 140.87138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01686660 140.87138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01686661 140.87141418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01686662 140.87141418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01686663 140.87142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01686664 140.87142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01686665 140.87145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01686666 140.87147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01686667 140.87149048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01686668 140.87150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01686669 140.87152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01686670 140.87152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01686671 140.87155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01686672 140.87155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01686673 140.87158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01686674 140.87158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01686675 140.87159729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01686676 140.87159729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01686677 140.87162781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01686678 140.87162781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01686679 140.87165833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01686680 140.87165833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01686681 140.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01686682 140.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01686683 140.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01686684 140.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01686685 140.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01686686 140.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01686687 140.87174988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01686688 140.87176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01686689 140.87178040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01686690 140.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01686691 140.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01686692 140.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01686693 140.87184143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01686694 140.87184143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01686695 140.87187195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01686696 140.87187195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01686697 140.87190247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01686698 140.87190247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01686699 140.87191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01686700 140.87191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01686701 140.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01686702 140.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01686703 140.87197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01686704 140.87197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01686705 140.87199402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01686706 140.87199402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01686707 140.87202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01686708 140.87202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01686709 140.87205505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01686710 140.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01686711 140.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01686712 140.87208557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01686713 140.87211609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01686714 140.87211609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01686715 140.87214661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01686716 140.87214661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01686717 140.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01686718 140.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01686719 140.87219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01686720 140.87219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01686721 140.87222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01686722 140.87222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01686723 140.87223816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01686724 140.87223816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01686725 140.87226868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01686726 140.87226868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01686727 140.87229919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01686728 140.87229919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01686729 140.87232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01686730 140.87232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01686731 140.87236023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01686732 140.87236023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01686733 140.87239075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01686734 140.87239075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01686735 140.87240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01686736 140.87240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01686737 140.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01686738 140.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01686739 140.87246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01686740 140.87246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01686741 140.87248230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01686742 140.87249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01686743 140.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01686744 140.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01686745 140.87254333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01686746 140.87254333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01686747 140.87257385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01686748 140.87257385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01686749 140.87260437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01686750 140.87260437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01686751 140.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01686752 140.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01686753 140.87265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01686754 140.87265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01686755 140.87268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01686756 140.87268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01686757 140.87271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01686758 140.87271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01686759 140.87272644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01686760 140.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01686761 140.87275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01686762 140.87277222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01686763 140.87278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01686764 140.87278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01686765 140.87281799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01686766 140.87281799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01686767 140.87284851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01686768 140.87284851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01686769 140.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01686770 140.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01686771 140.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01686772 140.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01686773 140.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01686774 140.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01686775 140.87294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01686776 140.87294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01686777 140.87297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01686778 140.87297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01686779 140.87300110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01686780 140.87300110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01686781 140.87303162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01686782 140.87303162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01686783 140.87304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01686784 140.87306213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01686785 140.87309265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01686786 140.87309265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01686787 140.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01686788 140.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01686789 140.87313843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01686790 140.87313843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01686791 140.87316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01686792 140.87316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01686793 140.87318420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01686794 140.87318420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01686795 140.87321472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01686796 140.87321472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01686797 140.87324524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01686798 140.87324524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01686799 140.87326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01686800 140.87326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01686801 140.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01686802 140.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01686803 140.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01686804 140.87333679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01686805 140.87333679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01686806 140.87335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01686807 140.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01686808 140.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01686809 140.87341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01686810 140.87341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01686811 140.87342834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01686812 140.87342834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01686813 140.87345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01686814 140.87345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01686815 140.87348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01686816 140.87348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01686817 140.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01686818 140.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01686819 140.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01686820 140.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01686821 140.87356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01686822 140.87356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01686823 140.87358093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01686824 140.87358093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01686825 140.87361145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01686826 140.87362671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01686827 140.87364197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01686828 140.87365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01686829 140.87367249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01686830 140.87367249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01686831 140.87370300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01686832 140.87370300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01686833 140.87373352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01686834 140.87373352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01686835 140.87374878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01686836 140.87374878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01686837 140.87377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01686838 140.87377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01686839 140.87380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01686840 140.87380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01686841 140.87382507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01686842 140.87382507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01686843 140.87385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01686844 140.87385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01686845 140.87388611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01686846 140.87388611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01686847 140.87390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01686848 140.87391663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01686849 140.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01686850 140.87394714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01686851 140.87397766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01686852 140.87397766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01686853 140.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01686854 140.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01686855 140.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01686856 140.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01686857 140.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01686858 140.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01686859 140.87406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01686860 140.87406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01686861 140.87409973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01686862 140.87409973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01686863 140.87413025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01686864 140.87413025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01686865 140.87414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01686866 140.87414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01686867 140.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01686868 140.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01686869 140.87420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01686870 140.87422180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01686871 140.87423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01686872 140.87423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01686873 140.87426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01686874 140.87426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01686875 140.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01686876 140.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01686877 140.87431335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01686878 140.87431335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01686879 140.87434387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01686880 140.87434387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01686881 140.87437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01686882 140.87437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01686883 140.87438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01686884 140.87438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01686885 140.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01686886 140.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01686887 140.87445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01686888 140.87445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01686889 140.87446594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01686890 140.87448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01686891 140.87449646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01686892 140.87451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01686893 140.87452698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01686894 140.87452698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01686895 140.87455750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01686896 140.87455750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01686897 140.87458801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01686898 140.87458801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01686899 140.87461853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01686900 140.87461853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01686901 140.87463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01686902 140.87464905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01686903 140.87467957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01686904 140.87467957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01686905 140.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01686906 140.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01686907 140.87472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01686908 140.87472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01686909 140.87475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01686910 140.87475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01686911 140.87477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01686912 140.87477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01686913 140.87480164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01686914 140.87480164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01686915 140.87483215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01686916 140.87483215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01686917 140.87484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01686918 140.87486267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01686919 140.87487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01686920 140.87489319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01686921 140.87492371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01686922 140.87492371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01686923 140.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01686924 140.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01686925 140.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01686926 140.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01686927 140.87500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01686928 140.87500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01686929 140.87501526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01686930 140.87501526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01686931 140.87504578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01686932 140.87504578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01686933 140.87507629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01686934 140.87507629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01686935 140.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01686936 140.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01686937 140.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01686938 140.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01686939 140.87515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01686940 140.87516785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01686941 140.87516785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01686942 140.87518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01686943 140.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01686944 140.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01686945 140.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01686946 140.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01686947 140.87525940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01686948 140.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01686949 140.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01686950 140.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01686951 140.87532043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01686952 140.87532043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01686953 140.87535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01686954 140.87535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01686955 140.87538147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01686956 140.87538147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01686957 140.87541199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01686958 140.87541199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01686959 140.87544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01686960 140.87544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01686961 140.87547302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01686962 140.87547302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01686963 140.87548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01686964 140.87548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01686965 140.87551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01686966 140.87551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01686967 140.87556458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01686968 140.87556458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01686969 140.87557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01686970 140.87557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01686971 140.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01686972 140.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01686973 140.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01686974 140.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01686975 140.87565613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01686976 140.87565613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01686977 140.87568665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01686978 140.87568665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01686979 140.87571716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01686980 140.87571716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01686981 140.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01686982 140.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01686983 140.87576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01686984 140.87577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01686985 140.87579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01686986 140.87580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01686987 140.87582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01686988 140.87582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01686989 140.87585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01686990 140.87585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01686991 140.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01686992 140.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01686993 140.87590027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01686994 140.87590027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01686995 140.87593079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01686996 140.87593079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01686997 140.87596130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01686998 140.87596130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01686999 140.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01687000 140.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01687001 140.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01687002 140.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01687003 140.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01687004 140.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01687005 140.87605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01687006 140.87606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01687007 140.87608337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01687008 140.87609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01687009 140.87612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01687010 140.87612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01687011 140.87614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01687012 140.87614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01687013 140.87617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01687014 140.87617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01687015 140.87620544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01687016 140.87620544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01687017 140.87622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01687018 140.87622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01687019 140.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01687020 140.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01687021 140.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01687022 140.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01687023 140.87629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01687024 140.87629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01687025 140.87632751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01687026 140.87634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01687027 140.87635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01687028 140.87635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01687029 140.87638855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01687030 140.87638855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01687031 140.87641907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01687032 140.87641907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01687033 140.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01687034 140.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01687035 140.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01687036 140.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01687037 140.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01687038 140.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01687039 140.87652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01687040 140.87652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01687041 140.87654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01687042 140.87654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01687043 140.87657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01687044 140.87657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01687045 140.87660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01687046 140.87660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01687047 140.87661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01687048 140.87663269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01687049 140.87666321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01687050 140.87666321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01687051 140.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01687052 140.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01687053 140.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01687054 140.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01687055 140.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01687056 140.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01687057 140.87675476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01687058 140.87675476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01687059 140.87678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01687060 140.87678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01687061 140.87681580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01687062 140.87681580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01687063 140.87683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01687064 140.87683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01687065 140.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01687066 140.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01687067 140.87689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01687068 140.87690735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01687069 140.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01687070 140.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01687071 140.87695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01687072 140.87695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01687073 140.87698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01687074 140.87698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01687075 140.87699890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01687076 140.87699890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01687077 140.87702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01687078 140.87702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01687079 140.87705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01687080 140.87705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01687081 140.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01687082 140.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01687083 140.87710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01687084 140.87710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01687085 140.87713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01687086 140.87713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01687087 140.87715149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01687088 140.87716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01687089 140.87718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01687090 140.87719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01687091 140.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01687092 140.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01687093 140.87724304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01687094 140.87724304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01687095 140.87727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01687096 140.87727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01687097 140.87730408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01687098 140.87730408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01687099 140.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01687100 140.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01687101 140.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01687102 140.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01687103 140.87738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01687104 140.87738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01687105 140.87739563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01687106 140.87739563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01687107 140.87742615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01687108 140.87744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01687109 140.87745667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01687110 140.87747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01687111 140.87748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01687112 140.87748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01687113 140.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01687114 140.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01687115 140.87754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01687116 140.87754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01687117 140.87756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01687118 140.87756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01687119 140.87759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01687120 140.87759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01687121 140.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01687122 140.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01687123 140.87763977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01687124 140.87763977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01687125 140.87767029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01687126 140.87767029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01687127 140.87770081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01687128 140.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01687129 140.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01687130 140.87773132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01687131 140.87776184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01687132 140.87776184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01687133 140.87779236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01687134 140.87779236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01687135 140.87780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01687136 140.87780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01687137 140.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01687138 140.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01687139 140.87786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01687140 140.87786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01687141 140.87788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01687142 140.87788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01687143 140.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01687144 140.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01687145 140.87794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01687146 140.87794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01687147 140.87796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01687148 140.87796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01687149 140.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01687150 140.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01687151 140.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01687152 140.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01687153 140.87803650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01687154 140.87805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01687155 140.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01687156 140.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01687157 140.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01687158 140.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01687159 140.87812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01687160 140.87812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01687161 140.87815857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01687162 140.87815857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01687163 140.87818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01687164 140.87818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01687165 140.87820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01687166 140.87820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01687167 140.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01687168 140.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01687169 140.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01687170 140.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01687171 140.87828064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01687172 140.87829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01687173 140.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01687174 140.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01687175 140.87834167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01687176 140.87834167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01687177 140.87837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01687178 140.87837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01687179 140.87840271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01687180 140.87840271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01687181 140.87843323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01687182 140.87843323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01687183 140.87846375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01687184 140.87846375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01687185 140.87849426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01687186 140.87849426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01687187 140.87850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01687188 140.87850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01687189 140.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01687190 140.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01687191 140.87857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01687192 140.87857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01687193 140.87858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01687194 140.87858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01687195 140.87861633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01687196 140.87861633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01687197 140.87864685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01687198 140.87864685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01687199 140.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01687200 140.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01687201 140.87869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01687202 140.87870789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01687203 140.87872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01687204 140.87873840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01687205 140.87875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01687206 140.87875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01687207 140.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01687208 140.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01687209 140.87881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01687210 140.87881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01687211 140.87882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01687212 140.87882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01687213 140.87886047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01687214 140.87886047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01687215 140.87889099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01687216 140.87889099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01687217 140.87890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01687218 140.87890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01687219 140.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01687220 140.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01687221 140.87896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01687222 140.87898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01687223 140.87898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01687224 140.87899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01687225 140.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01687226 140.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01687227 140.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01687228 140.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01687229 140.87907410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01687230 140.87907410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01687231 140.87910461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01687232 140.87910461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01687233 140.87913513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01687234 140.87913513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01687235 140.87915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01687236 140.87915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01687237 140.87918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01687238 140.87918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01687239 140.87921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01687240 140.87921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01687241 140.87922668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01687242 140.87924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01687243 140.87925720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01687244 140.87927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01687245 140.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01687246 140.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01687247 140.87931824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01687248 140.87931824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01687249 140.87934875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01687250 140.87934875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01687251 140.87937927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01687252 140.87937927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01687253 140.87939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01687254 140.87939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01687255 140.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01687256 140.87944031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01687257 140.87945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01687258 140.87945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01687259 140.87951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01687260 140.87951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01687261 140.87953186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01687262 140.87953186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01687263 140.87956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01687264 140.87956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01687265 140.87959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01687266 140.87960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01687267 140.87962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01687268 140.87962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01687269 140.87965393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01687270 140.87965393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01687271 140.87968445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01687272 140.87968445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01687273 140.87971497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01687274 140.87971497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01687275 140.87974548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01687276 140.87974548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01687277 140.87977600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01687278 140.87977600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01687279 140.87979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01687280 140.87980652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01687281 140.87982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01687282 140.87983704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01687283 140.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01687284 140.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01687285 140.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01687286 140.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01687287 140.87991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01687288 140.87992859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01687289 140.87994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01687290 140.87994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01687291 140.88000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01687292 140.88000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01687293 140.88002014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01687294 140.88002014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01687295 140.88005066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01687296 140.88005066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01687297 140.88008118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01687298 140.88008118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01687299 140.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01687300 140.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01687301 140.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01687302 140.88014221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01687303 140.88017273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01687304 140.88017273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01687305 140.88018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01687306 140.88018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01687307 140.88021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01687308 140.88021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01687309 140.88024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01687310 140.88024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01687311 140.88026428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01687312 140.88026428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01687313 140.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01687314 140.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01687315 140.88032532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01687316 140.88032532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01687317 140.88035583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01687318 140.88035583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01687319 140.88038635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01687320 140.88038635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01687321 140.88041687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01687322 140.88041687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01687323 140.88044739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01687324 140.88044739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01687325 140.88047791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01687326 140.88047791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01687327 140.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01687328 140.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01687329 140.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01687330 140.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01687331 140.88055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01687332 140.88055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01687333 140.88056946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01687334 140.88058472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01687335 140.88059998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01687336 140.88061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01687337 140.88064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01687338 140.88064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01687339 140.88066101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01687340 140.88066101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01687341 140.88069153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01687342 140.88069153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01687343 140.88072205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01687344 140.88072205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01687345 140.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01687346 140.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01687347 140.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01687348 140.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01687349 140.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01687350 140.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01687351 140.88081360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01687352 140.88082886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01687353 140.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01687354 140.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01687355 140.88088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01687356 140.88088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01687357 140.88090515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01687358 140.88092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01687359 140.88095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01687360 140.88095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01687361 140.88096619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01687362 140.88096619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01687363 140.88099670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01687364 140.88099670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01687365 140.88102722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01687366 140.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01687367 140.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01687368 140.88105774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01687369 140.88108826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01687370 140.88108826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01687371 140.88111877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01687372 140.88111877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01687373 140.88113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01687374 140.88113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01687375 140.88116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01687376 140.88116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01687377 140.88119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01687378 140.88119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01687379 140.88121033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01687380 140.88121033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01687381 140.88124084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01687382 140.88124084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01687383 140.88127136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01687384 140.88127136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01687385 140.88128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01687386 140.88128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01687387 140.88131714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01687388 140.88133240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01687389 140.88134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01687390 140.88136292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01687391 140.88137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01687392 140.88137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01687393 140.88140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01687394 140.88140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01687395 140.88143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01687396 140.88143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01687397 140.88145447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01687398 140.88145447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01687399 140.88148499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01687400 140.88148499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01687401 140.88151550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01687402 140.88151550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01687403 140.88153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01687404 140.88153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01687405 140.88156128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01687406 140.88156128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01687407 140.88159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01687408 140.88159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01687409 140.88160706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01687410 140.88162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01687411 140.88163757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01687412 140.88165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01687413 140.88168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01687414 140.88168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01687415 140.88169861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01687416 140.88169861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01687417 140.88172913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01687418 140.88172913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01687419 140.88175964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01687420 140.88175964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01687421 140.88179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01687422 140.88179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01687423 140.88182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01687424 140.88182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01687425 140.88183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01687426 140.88183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01687427 140.88186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01687428 140.88186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01687429 140.88189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01687430 140.88191223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01687431 140.88192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01687432 140.88192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01687433 140.88195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01687434 140.88195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01687435 140.88198853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01687436 140.88198853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01687437 140.88200378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01687438 140.88200378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01687439 140.88203430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01687440 140.88203430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01687441 140.88206482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01687442 140.88206482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01687443 140.88208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01687444 140.88208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01687445 140.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01687446 140.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01687447 140.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01687448 140.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01687449 140.88215637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01687450 140.88217163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01687451 140.88218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01687452 140.88220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01687453 140.88223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01687454 140.88223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01687455 140.88224792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01687456 140.88224792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01687457 140.88227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01687458 140.88227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01687459 140.88230896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01687460 140.88230896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01687461 140.88232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01687462 140.88232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01687463 140.88235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01687464 140.88235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01687465 140.88238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01687466 140.88238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01687467 140.88241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01687468 140.88241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01687469 140.88244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01687470 140.88244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01687471 140.88247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01687472 140.88247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01687473 140.88250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01687474 140.88250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01687475 140.88255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01687476 140.88255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01687477 140.88256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01687478 140.88258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01687479 140.88261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01687480 140.88261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01687481 140.88262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01687482 140.88262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01687483 140.88265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01687484 140.88265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01687485 140.88269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01687486 140.88269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01687487 140.88272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01687488 140.88272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01687489 140.88273621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01687490 140.88275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01687491 140.88278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01687492 140.88278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01687493 140.88279724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01687494 140.88279724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01687495 140.88282776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01687496 140.88282776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01687497 140.88285828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01687498 140.88285828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01687499 140.88287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01687500 140.88287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01687501 140.88290405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01687502 140.88291931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01687503 140.88294983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01687504 140.88294983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01687505 140.88296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01687506 140.88296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01687507 140.88299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01687508 140.88299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01687509 140.88302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01687510 140.88302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01687511 140.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01687512 140.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01687513 140.88308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01687514 140.88308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01687515 140.88311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01687516 140.88311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01687517 140.88313293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01687518 140.88314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01687519 140.88317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01687520 140.88317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01687521 140.88319397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01687522 140.88319397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01687523 140.88322449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01687524 140.88322449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01687525 140.88325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01687526 140.88325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01687527 140.88327026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01687528 140.88327026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01687529 140.88330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01687530 140.88331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01687531 140.88334656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01687532 140.88334656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01687533 140.88336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01687534 140.88336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01687535 140.88339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01687536 140.88339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01687537 140.88342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01687538 140.88342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01687539 140.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01687540 140.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01687541 140.88349915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01687542 140.88349915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01687543 140.88351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01687544 140.88352966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01687545 140.88356018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01687546 140.88356018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01687547 140.88359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01687548 140.88359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01687549 140.88360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01687550 140.88360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01687551 140.88363647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01687552 140.88365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01687553 140.88366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01687554 140.88366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01687555 140.88369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01687556 140.88369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01687557 140.88372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01687558 140.88372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01687559 140.88374329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01687560 140.88374329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01687561 140.88377380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01687562 140.88377380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01687563 140.88380432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01687564 140.88381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01687565 140.88383484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01687566 140.88383484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01687567 140.88386536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01687568 140.88386536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01687569 140.88389587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01687570 140.88389587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01687571 140.88391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01687572 140.88391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01687573 140.88394165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01687574 140.88394165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01687575 140.88397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01687576 140.88398743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01687577 140.88398743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01687578 140.88400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01687579 140.88403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01687580 140.88403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01687581 140.88406372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01687582 140.88406372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01687583 140.88407898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01687584 140.88407898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01687585 140.88410950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01687586 140.88410950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01687587 140.88414001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01687588 140.88414001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01687589 140.88415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01687590 140.88415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01687591 140.88418579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01687592 140.88418579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01687593 140.88421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01687594 140.88421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01687595 140.88423157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01687596 140.88423157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01687597 140.88426208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01687598 140.88427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01687599 140.88429260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01687600 140.88430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01687601 140.88432312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01687602 140.88432312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01687603 140.88435364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01687604 140.88435364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01687605 140.88438416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01687606 140.88438416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01687607 140.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01687608 140.88441467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01687609 140.88442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01687610 140.88444519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01687611 140.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01687612 140.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01687613 140.88449097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01687614 140.88449097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01687615 140.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01687616 140.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01687617 140.88453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01687618 140.88453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01687619 140.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01687620 140.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01687621 140.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01687622 140.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01687623 140.88462830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01687624 140.88462830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01687625 140.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01687626 140.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01687627 140.88467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01687628 140.88467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01687629 140.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01687630 140.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01687631 140.88471985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01687632 140.88473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01687633 140.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01687634 140.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01687635 140.88478088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01687636 140.88478088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01687637 140.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01687638 140.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01687639 140.88484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01687640 140.88484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01687641 140.88485718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01687642 140.88485718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01687643 140.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01687644 140.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01687645 140.88491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01687646 140.88491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01687647 140.88493347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01687648 140.88493347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01687649 140.88496399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01687650 140.88496399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01687651 140.88499451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01687652 140.88500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01687653 140.88502502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01687654 140.88502502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01687655 140.88505554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01687656 140.88505554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01687657 140.88508606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01687658 140.88508606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01687659 140.88510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01687660 140.88510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01687661 140.88513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01687662 140.88513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01687663 140.88516235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01687664 140.88516235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01687665 140.88517761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01687666 140.88517761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01687667 140.88520813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01687668 140.88520813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01687669 140.88523865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01687670 140.88523865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01687671 140.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01687672 140.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01687673 140.88528442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01687674 140.88529968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01687675 140.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01687676 140.88533020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01687677 140.88534546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01687678 140.88534546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01687679 140.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01687680 140.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01687681 140.88540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01687682 140.88540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01687683 140.88542175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01687684 140.88542175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01687685 140.88545227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01687686 140.88545227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01687687 140.88548279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01687688 140.88548279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01687689 140.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01687690 140.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01687691 140.88552856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01687692 140.88552856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01687693 140.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01687694 140.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01687695 140.88557434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01687696 140.88558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01687697 140.88560486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01687698 140.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01687699 140.88565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01687700 140.88565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01687701 140.88566589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01687702 140.88566589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01687703 140.88569641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01687704 140.88569641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01687705 140.88572693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01687706 140.88572693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01687707 140.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01687708 140.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01687709 140.88577271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01687710 140.88577271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01687711 140.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01687712 140.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01687713 140.88581848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01687714 140.88581848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01687715 140.88584900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01687716 140.88584900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01687717 140.88587952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01687718 140.88587952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01687719 140.88589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01687720 140.88591003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01687721 140.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01687722 140.88594055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01687723 140.88597107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01687724 140.88597107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01687725 140.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01687726 140.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01687727 140.88601685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01687728 140.88601685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01687729 140.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01687730 140.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01687731 140.88606262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01687732 140.88606262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01687733 140.88609314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01687734 140.88609314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01687735 140.88612366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01687736 140.88612366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01687737 140.88613892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01687738 140.88613892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01687739 140.88616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01687740 140.88616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01687741 140.88619995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01687742 140.88621521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01687743 140.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01687744 140.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01687745 140.88626099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01687746 140.88626099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01687747 140.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01687748 140.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01687749 140.88630676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01687750 140.88630676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01687751 140.88633728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01687752 140.88633728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01687753 140.88636780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01687754 140.88636780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01687755 140.88638306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01687756 140.88639832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01687757 140.88642883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01687758 140.88642883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01687759 140.88644409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01687760 140.88644409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01687761 140.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01687762 140.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01687763 140.88650513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01687764 140.88650513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01687765 140.88652039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01687766 140.88653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01687767 140.88656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01687768 140.88656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01687769 140.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01687770 140.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01687771 140.88661194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01687772 140.88661194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01687773 140.88664246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01687774 140.88664246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01687775 140.88667297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01687776 140.88668823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01687777 140.88670349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01687778 140.88670349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01687779 140.88673401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01687780 140.88673401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01687781 140.88676453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01687782 140.88676453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01687783 140.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01687784 140.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01687785 140.88681030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01687786 140.88682556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01687787 140.88684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01687788 140.88684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01687789 140.88687134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01687790 140.88687134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01687791 140.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01687792 140.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01687793 140.88693237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01687794 140.88693237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01687795 140.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01687796 140.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01687797 140.88699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01687798 140.88699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01687799 140.88700867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01687800 140.88700867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01687801 140.88703918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01687802 140.88703918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01687803 140.88706970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01687804 140.88706970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01687805 140.88708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01687806 140.88708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01687807 140.88711548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01687808 140.88711548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01687809 140.88714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01687810 140.88714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01687811 140.88716125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01687812 140.88716125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01687813 140.88719177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01687814 140.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01687815 140.88722229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01687816 140.88723755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01687817 140.88725281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01687818 140.88725281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01687819 140.88728333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01687820 140.88728333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01687821 140.88731384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01687822 140.88731384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01687823 140.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01687824 140.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01687825 140.88735962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01687826 140.88737488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01687827 140.88740540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01687828 140.88740540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01687829 140.88742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01687830 140.88742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01687831 140.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01687832 140.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01687833 140.88748169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01687834 140.88748169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01687835 140.88749695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01687836 140.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01687837 140.88754272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01687838 140.88754272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01687839 140.88755798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01687840 140.88755798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01687841 140.88758850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01687842 140.88758850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01687843 140.88761902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01687844 140.88761902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01687845 140.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01687846 140.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01687847 140.88766479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01687848 140.88768005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01687849 140.88771057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01687850 140.88771057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01687851 140.88772583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01687852 140.88772583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01687853 140.88775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01687854 140.88775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01687855 140.88780212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01687856 140.88780212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01687857 140.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01687858 140.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01687859 140.88784790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01687860 140.88784790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01687861 140.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01687862 140.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01687863 140.88790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01687864 140.88790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01687865 140.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01687866 140.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01687867 140.88795471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01687868 140.88795471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01687869 140.88798523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01687870 140.88798523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01687871 140.88803101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01687872 140.88803101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01687873 140.88804626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01687874 140.88804626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01687875 140.88807678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01687876 140.88807678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01687877 140.88810730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01687878 140.88810730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01687879 140.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01687880 140.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01687881 140.88815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01687882 140.88815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01687883 140.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01687884 140.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01687885 140.88819885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01687886 140.88819885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01687887 140.88822937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01687888 140.88822937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01687889 140.88827515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01687890 140.88827515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01687891 140.88829041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01687892 140.88829041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01687893 140.88832092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01687894 140.88833618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01687895 140.88835144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01687896 140.88835144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01687897 140.88838196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01687898 140.88838196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01687899 140.88841248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01687900 140.88841248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01687901 140.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01687902 140.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01687903 140.88845825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01687904 140.88845825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01687905 140.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01687906 140.88850403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01687907 140.88851929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01687908 140.88851929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01687909 140.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01687910 140.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01687911 140.88858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01687912 140.88858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01687913 140.88859558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01687914 140.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01687915 140.88864136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01687916 140.88864136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01687917 140.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01687918 140.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01687919 140.88868713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01687920 140.88868713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01687921 140.88871765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01687922 140.88871765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01687923 140.88874817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01687924 140.88874817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01687925 140.88877869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01687926 140.88877869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01687927 140.88880920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01687928 140.88880920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01687929 140.88882446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01687930 140.88882446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01687931 140.88885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01687932 140.88887024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01687933 140.88888550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01687934 140.88890076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01687935 140.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01687936 140.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01687937 140.88894653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01687938 140.88894653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01687939 140.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01687940 140.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01687941 140.88899231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01687942 140.88900757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01687943 140.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01687944 140.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01687945 140.88906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01687946 140.88906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01687947 140.88911438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01687948 140.88911438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01687949 140.88914490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01687950 140.88914490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01687951 140.88916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01687952 140.88916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01687953 140.88919067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01687954 140.88919067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01687955 140.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01687956 140.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01687957 140.88923645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01687958 140.88925171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01687959 140.88926697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01687960 140.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01687961 140.88931274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01687962 140.88931274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01687963 140.88932800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01687964 140.88932800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01687965 140.88935852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01687966 140.88935852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01687967 140.88938904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01687968 140.88938904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01687969 140.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01687970 140.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01687971 140.88943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01687972 140.88943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01687973 140.88946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01687974 140.88946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01687975 140.88948059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01687976 140.88948059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01687977 140.88951111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01687978 140.88951111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01687979 140.88954163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01687980 140.88954163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01687981 140.88955688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01687982 140.88957214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01687983 140.88960266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01687984 140.88960266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01687985 140.88963318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01687986 140.88963318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01687987 140.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01687988 140.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01687989 140.88967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01687990 140.88967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01687991 140.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01687992 140.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01687993 140.88972473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01687994 140.88972473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01687995 140.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01687996 140.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01687997 140.88978577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01687998 140.88978577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01687999 140.88981628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01688000 140.88981628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01688001 140.88984680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01688002 140.88986206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01688003 140.88987732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01688004 140.88987732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01688005 140.88990784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01688006 140.88990784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01688007 140.88993835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01688008 140.88993835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01688009 140.88995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01688010 140.88996887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01688011 140.88999939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01688012 140.88999939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01688013 140.89002991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01688014 140.89002991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01688015 140.89004517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01688016 140.89004517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01688017 140.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01688018 140.89009094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01688019 140.89010620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01688020 140.89010620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01688021 140.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01688022 140.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01688023 140.89016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01688024 140.89016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01688025 140.89018250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01688026 140.89018250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01688027 140.89021301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01688028 140.89021301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01688029 140.89024353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01688030 140.89024353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01688031 140.89027405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01688032 140.89027405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01688033 140.89030457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01688034 140.89030457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01688035 140.89033508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01688036 140.89033508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01688037 140.89036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01688038 140.89036560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01688039 140.89039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01688040 140.89039612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01688041 140.89042664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01688042 140.89042664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01688043 140.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01688044 140.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01688045 140.89047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01688046 140.89048767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01688047 140.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01688048 140.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01688049 140.89053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01688050 140.89053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01688051 140.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01688052 140.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01688053 140.89057922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01688054 140.89057922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01688055 140.89060974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01688056 140.89060974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01688057 140.89064026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01688058 140.89064026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01688059 140.89065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01688060 140.89065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01688061 140.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01688062 140.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01688063 140.89071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01688064 140.89071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01688065 140.89073181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01688066 140.89073181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01688067 140.89076233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01688068 140.89077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01688069 140.89079285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01688070 140.89080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01688071 140.89082336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01688072 140.89082336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01688073 140.89085388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01688074 140.89085388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01688075 140.89088440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01688076 140.89088440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01688077 140.89089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01688078 140.89089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01688079 140.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01688080 140.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01688081 140.89096069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01688082 140.89096069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01688083 140.89097595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01688084 140.89097595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01688085 140.89100647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01688086 140.89100647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01688087 140.89103699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01688088 140.89103699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01688089 140.89105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01688090 140.89106750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01688091 140.89108276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01688092 140.89109802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01688093 140.89112854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01688094 140.89112854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01688095 140.89114380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01688096 140.89114380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01688097 140.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01688098 140.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01688099 140.89120483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01688100 140.89120483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01688101 140.89122009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01688102 140.89122009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01688103 140.89125061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01688104 140.89125061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01688105 140.89128113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01688106 140.89128113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01688107 140.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01688108 140.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01688109 140.89132690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01688110 140.89134216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01688111 140.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01688112 140.89137268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01688113 140.89138794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01688114 140.89138794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01688115 140.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01688116 140.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01688117 140.89144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01688118 140.89144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01688119 140.89146423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01688120 140.89146423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01688121 140.89149475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01688122 140.89149475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01688123 140.89152527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01688124 140.89152527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01688125 140.89154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01688126 140.89154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01688127 140.89157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01688128 140.89157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01688129 140.89160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01688130 140.89160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01688131 140.89161682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01688132 140.89163208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01688133 140.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01688134 140.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01688135 140.89169312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01688136 140.89169312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01688137 140.89170837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01688138 140.89170837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01688139 140.89173889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01688140 140.89173889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01688141 140.89176941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01688142 140.89176941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01688143 140.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01688144 140.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01688145 140.89181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01688146 140.89181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01688147 140.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01688148 140.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01688149 140.89186096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01688150 140.89186096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01688151 140.89189148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01688152 140.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01688153 140.89192200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01688154 140.89192200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01688155 140.89193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01688156 140.89195251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01688157 140.89198303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01688158 140.89198303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01688159 140.89201355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01688160 140.89201355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01688161 140.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01688162 140.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01688163 140.89205933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01688164 140.89205933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01688165 140.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01688166 140.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01688167 140.89210510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01688168 140.89210510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01688169 140.89213562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01688170 140.89213562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01688171 140.89216614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01688172 140.89216614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01688173 140.89218140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01688174 140.89219666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01688175 140.89221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01688176 140.89222717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01688177 140.89224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01688178 140.89224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01688179 140.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01688180 140.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01688181 140.89230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01688182 140.89230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01688183 140.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01688184 140.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01688185 140.89234924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01688186 140.89234924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01688187 140.89237976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01688188 140.89237976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01688189 140.89241028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01688190 140.89241028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01688191 140.89242554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01688192 140.89242554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01688193 140.89245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01688194 140.89247131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01688195 140.89248657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01688196 140.89248657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01688197 140.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01688198 140.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01688199 140.89254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01688200 140.89254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01688201 140.89256287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01688202 140.89256287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01688203 140.89259338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01688204 140.89259338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01688205 140.89262390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01688206 140.89262390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01688207 140.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01688208 140.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01688209 140.89266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01688210 140.89266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01688211 140.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01688212 140.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01688213 140.89273071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01688214 140.89273071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01688215 140.89274597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01688216 140.89274597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01688217 140.89277649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01688218 140.89279175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01688219 140.89280701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01688220 140.89280701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01688221 140.89283752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01688222 140.89283752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01688223 140.89286804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01688224 140.89286804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01688225 140.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01688226 140.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01688227 140.89291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01688228 140.89291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01688229 140.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01688230 140.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01688231 140.89295959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01688232 140.89295959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01688233 140.89299011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01688234 140.89299011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01688235 140.89302063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01688236 140.89302063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01688237 140.89303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01688238 140.89303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01688239 140.89306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01688240 140.89308167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01688241 140.89309692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01688242 140.89311218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01688243 140.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01688244 140.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01688245 140.89315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01688246 140.89315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01688247 140.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01688248 140.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01688249 140.89320374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01688250 140.89320374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01688251 140.89323425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01688252 140.89323425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01688253 140.89326477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01688254 140.89326477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01688255 140.89328003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01688256 140.89328003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01688257 140.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01688258 140.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01688259 140.89334106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01688260 140.89334106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01688261 140.89335632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01688262 140.89337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01688263 140.89338684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01688264 140.89340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01688265 140.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01688266 140.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01688267 140.89344788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01688268 140.89344788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01688269 140.89347839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01688270 140.89347839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01688271 140.89350891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01688272 140.89350891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01688273 140.89352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01688274 140.89352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01688275 140.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01688276 140.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01688277 140.89358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01688278 140.89358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01688279 140.89360046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01688280 140.89360046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01688281 140.89363098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01688282 140.89363098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01688283 140.89366150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01688284 140.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01688285 140.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01688286 140.89369202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01688287 140.89370728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01688288 140.89372253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01688289 140.89375305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01688290 140.89375305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01688291 140.89376831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01688292 140.89376831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01688293 140.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01688294 140.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01688295 140.89382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01688296 140.89382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01688297 140.89384460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01688298 140.89384460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01688299 140.89387512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01688300 140.89387512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01688301 140.89390564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01688302 140.89390564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01688303 140.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01688304 140.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01688305 140.89395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01688306 140.89395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01688307 140.89398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01688308 140.89399719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01688309 140.89399719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01688310 140.89401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01688311 140.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01688312 140.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01688313 140.89407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01688314 140.89407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01688315 140.89408875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01688316 140.89408875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01688317 140.89411926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01688318 140.89411926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01688319 140.89414978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01688320 140.89414978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01688321 140.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01688322 140.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01688323 140.89419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01688324 140.89419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01688325 140.89422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01688326 140.89422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01688327 140.89425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01688328 140.89425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01688329 140.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01688330 140.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01688331 140.89431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01688332 140.89431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01688333 140.89433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01688334 140.89433289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01688335 140.89436340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01688336 140.89437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01688337 140.89439392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01688338 140.89439392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01688339 140.89442444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01688340 140.89442444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01688341 140.89445496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01688342 140.89445496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01688343 140.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01688344 140.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01688345 140.89450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01688346 140.89450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01688347 140.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01688348 140.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01688349 140.89454651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01688350 140.89456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01688351 140.89457703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01688352 140.89459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01688353 140.89462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01688354 140.89462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01688355 140.89463806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01688356 140.89463806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01688357 140.89466858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01688358 140.89466858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01688359 140.89469910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01688360 140.89469910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01688361 140.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01688362 140.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01688363 140.89474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01688364 140.89474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01688365 140.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01688366 140.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01688367 140.89479065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01688368 140.89479065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01688369 140.89482117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01688370 140.89482117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01688371 140.89485168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01688372 140.89486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01688373 140.89486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01688374 140.89488220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01688375 140.89491272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01688376 140.89491272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01688377 140.89494324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01688378 140.89494324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01688379 140.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01688380 140.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01688381 140.89498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01688382 140.89498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01688383 140.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01688384 140.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01688385 140.89503479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01688386 140.89503479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01688387 140.89506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01688388 140.89506531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01688389 140.89509583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01688390 140.89509583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01688391 140.89511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01688392 140.89511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01688393 140.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01688394 140.89515686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01688395 140.89517212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01688396 140.89518738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01688397 140.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01688398 140.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01688399 140.89523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01688400 140.89523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01688401 140.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01688402 140.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01688403 140.89527893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01688404 140.89527893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01688405 140.89530945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01688406 140.89530945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01688407 140.89533997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01688408 140.89533997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01688409 140.89535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01688410 140.89535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01688411 140.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01688412 140.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01688413 140.89541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01688414 140.89541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01688415 140.89543152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01688416 140.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01688417 140.89546204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01688418 140.89547729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01688419 140.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01688420 140.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01688421 140.89552307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01688422 140.89552307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01688423 140.89555359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01688424 140.89555359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01688425 140.89558411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01688426 140.89558411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01688427 140.89559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01688428 140.89559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01688429 140.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01688430 140.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01688431 140.89566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01688432 140.89566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01688433 140.89567566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01688434 140.89567566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01688435 140.89570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01688436 140.89570618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01688437 140.89573669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01688438 140.89573669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01688439 140.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01688440 140.89576721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01688441 140.89578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01688442 140.89579773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01688443 140.89582825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01688444 140.89582825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01688445 140.89584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01688446 140.89584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01688447 140.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01688448 140.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01688449 140.89590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01688450 140.89590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01688451 140.89591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01688452 140.89591980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01688453 140.89595032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01688454 140.89595032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01688455 140.89598083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01688456 140.89598083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01688457 140.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01688458 140.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01688459 140.89602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01688460 140.89602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01688461 140.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01688462 140.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01688463 140.89607239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01688464 140.89608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01688465 140.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01688466 140.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01688467 140.89613342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01688468 140.89613342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01688469 140.89616394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01688470 140.89616394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01688471 140.89619446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01688472 140.89619446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01688473 140.89622498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01688474 140.89622498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01688475 140.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01688476 140.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01688477 140.89627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01688478 140.89627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01688479 140.89630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01688480 140.89630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01688481 140.89631653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01688482 140.89631653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01688483 140.89634705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01688484 140.89636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01688485 140.89637756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01688486 140.89637756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01688487 140.89640808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01688488 140.89640808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01688489 140.89643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01688490 140.89643860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01688491 140.89645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01688492 140.89645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01688493 140.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01688494 140.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01688495 140.89651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01688496 140.89651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01688497 140.89653015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01688498 140.89653015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01688499 140.89656067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01688500 140.89656067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01688501 140.89659119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01688502 140.89659119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01688503 140.89662170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01688504 140.89662170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01688505 140.89665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01688506 140.89665222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01688507 140.89668274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01688508 140.89668274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01688509 140.89669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01688510 140.89669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01688511 140.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01688512 140.89674377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01688513 140.89675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01688514 140.89677429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01688515 140.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01688516 140.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01688517 140.89682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01688518 140.89682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01688519 140.89685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01688520 140.89685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01688521 140.89686584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01688522 140.89686584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01688523 140.89689636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01688524 140.89689636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01688525 140.89692688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01688526 140.89692688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01688527 140.89694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01688528 140.89695740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01688529 140.89698792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01688530 140.89698792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01688531 140.89701843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01688532 140.89701843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01688533 140.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01688534 140.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01688535 140.89706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01688536 140.89706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01688537 140.89709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01688538 140.89709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01688539 140.89710999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01688540 140.89712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01688541 140.89714050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01688542 140.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01688543 140.89717102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01688544 140.89717102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01688545 140.89720154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01688546 140.89720154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01688547 140.89723206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01688548 140.89723206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01688549 140.89724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01688550 140.89724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01688551 140.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01688552 140.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01688553 140.89730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01688554 140.89730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01688555 140.89732361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01688556 140.89732361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01688557 140.89735413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01688558 140.89735413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01688559 140.89738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01688560 140.89738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01688561 140.89741516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01688562 140.89741516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01688563 140.89743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01688564 140.89744568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01688565 140.89746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01688566 140.89747620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01688567 140.89749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01688568 140.89749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01688569 140.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01688570 140.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01688571 140.89755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01688572 140.89755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01688573 140.89756775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01688574 140.89756775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01688575 140.89759827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01688576 140.89759827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01688577 140.89762878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01688578 140.89762878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01688579 140.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01688580 140.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01688581 140.89767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01688582 140.89767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01688583 140.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01688584 140.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01688585 140.89773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01688586 140.89773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01688587 140.89775085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01688588 140.89776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01688589 140.89779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01688590 140.89779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01688591 140.89781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01688592 140.89781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01688593 140.89784241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01688594 140.89784241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01688595 140.89787292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01688596 140.89787292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01688597 140.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01688598 140.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01688599 140.89791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01688600 140.89791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01688601 140.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01688602 140.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01688603 140.89796448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01688604 140.89796448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01688605 140.89799500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01688606 140.89799500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01688607 140.89802551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01688608 140.89802551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01688609 140.89804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01688610 140.89805603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01688611 140.89807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01688612 140.89808655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01688613 140.89811707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01688614 140.89811707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01688615 140.89813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01688616 140.89813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01688617 140.89816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01688618 140.89816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01688619 140.89819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01688620 140.89819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01688621 140.89820862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01688622 140.89820862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01688623 140.89823914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01688624 140.89823914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01688625 140.89826965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01688626 140.89826965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01688627 140.89828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01688628 140.89828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01688629 140.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01688630 140.89833069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01688631 140.89834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01688632 140.89836121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01688633 140.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01688634 140.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01688635 140.89840698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01688636 140.89840698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01688637 140.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01688638 140.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01688639 140.89845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01688640 140.89845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01688641 140.89848328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01688642 140.89848328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01688643 140.89851379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01688644 140.89851379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01688645 140.89852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01688646 140.89852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01688647 140.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01688648 140.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01688649 140.89859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01688650 140.89859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01688651 140.89860535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01688652 140.89860535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01688653 140.89863586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01688654 140.89865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01688655 140.89866638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01688656 140.89868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01688657 140.89869690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01688658 140.89869690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01688659 140.89872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01688660 140.89872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01688661 140.89875793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01688662 140.89875793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01688663 140.89877319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01688664 140.89877319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01688665 140.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01688666 140.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01688667 140.89883423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01688668 140.89883423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01688669 140.89884949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01688670 140.89884949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01688671 140.89888000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01688672 140.89888000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01688673 140.89891052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01688674 140.89891052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01688675 140.89892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01688676 140.89894104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01688677 140.89895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01688678 140.89897156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01688679 140.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01688680 140.89900208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01688681 140.89901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01688682 140.89901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01688683 140.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01688684 140.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01688685 140.89907837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01688686 140.89907837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01688687 140.89909363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01688688 140.89909363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01688689 140.89912415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01688690 140.89912415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01688691 140.89915466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01688692 140.89915466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01688693 140.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01688694 140.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01688695 140.89920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01688696 140.89920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01688697 140.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01688698 140.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01688699 140.89924622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01688700 140.89926147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01688701 140.89927673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01688702 140.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01688703 140.89932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01688704 140.89932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01688705 140.89933777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01688706 140.89933777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01688707 140.89936829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01688708 140.89936829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01688709 140.89939880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01688710 140.89939880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01688711 140.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01688712 140.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01688713 140.89944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01688714 140.89944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01688715 140.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01688716 140.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01688717 140.89949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01688718 140.89949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01688719 140.89952087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01688720 140.89952087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01688721 140.89955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01688722 140.89955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01688723 140.89956665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01688724 140.89958191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01688725 140.89961243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01688726 140.89961243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01688727 140.89962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01688728 140.89962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01688729 140.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01688730 140.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01688731 140.89968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01688732 140.89968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01688733 140.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01688734 140.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01688735 140.89973450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01688736 140.89973450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01688737 140.89976501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01688738 140.89976501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01688739 140.89979553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01688740 140.89979553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01688741 140.89981079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01688742 140.89981079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01688743 140.89984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01688744 140.89984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01688745 140.89987183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01688746 140.89987183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01688747 140.89988708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01688748 140.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01688749 140.89993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01688750 140.89993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01688751 140.89994812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01688752 140.89994812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01688753 140.89997864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01688754 140.89997864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01688755 140.90000916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01688756 140.90000916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01688757 140.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01688758 140.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01688759 140.90005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01688760 140.90005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01688761 140.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01688762 140.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01688763 140.90011597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01688764 140.90011597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01688765 140.90013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01688766 140.90013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01688767 140.90016174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01688768 140.90017700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01688769 140.90019226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01688770 140.90019226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01688771 140.90022278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01688772 140.90022278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01688773 140.90025330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01688774 140.90025330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01688775 140.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01688776 140.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01688777 140.90029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01688778 140.90029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01688779 140.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01688780 140.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01688781 140.90034485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01688782 140.90034485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01688783 140.90037537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01688784 140.90039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01688785 140.90042114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01688786 140.90042114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01688787 140.90043640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01688788 140.90043640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01688789 140.90046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01688790 140.90046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01688791 140.90049744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01688792 140.90049744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01688793 140.90052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01688794 140.90052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01688795 140.90055847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01688796 140.90055847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01688797 140.90058899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01688798 140.90058899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01688799 140.90060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01688800 140.90060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01688801 140.90063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01688802 140.90063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01688803 140.90066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01688804 140.90066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01688805 140.90068054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01688806 140.90068054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01688807 140.90071106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01688808 140.90071106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01688809 140.90074158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01688810 140.90074158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01688811 140.90075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01688812 140.90077209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01688813 140.90078735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01688814 140.90080261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01688815 140.90083313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01688816 140.90083313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01688817 140.90084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01688818 140.90084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01688819 140.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01688820 140.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01688821 140.90090942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01688822 140.90090942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01688823 140.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01688824 140.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01688825 140.90095520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01688826 140.90095520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01688827 140.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01688828 140.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01688829 140.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01688830 140.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01688831 140.90103149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01688832 140.90103149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01688833 140.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01688834 140.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01688835 140.90107727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01688836 140.90109253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01688837 140.90112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01688838 140.90112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01688839 140.90113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01688840 140.90113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01688841 140.90116882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01688842 140.90116882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01688843 140.90119934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01688844 140.90119934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01688845 140.90122986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01688846 140.90122986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01688847 140.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01688848 140.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01688849 140.90127563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01688850 140.90127563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01688851 140.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01688852 140.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01688853 140.90132141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01688854 140.90132141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01688855 140.90135193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01688856 140.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01688857 140.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01688858 140.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01688859 140.90141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01688860 140.90141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01688861 140.90144348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01688862 140.90144348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01688863 140.90145874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01688864 140.90145874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01688865 140.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01688866 140.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01688867 140.90151978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01688868 140.90151978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01688869 140.90153503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01688870 140.90153503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01688871 140.90156555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01688872 140.90156555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01688873 140.90159607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01688874 140.90159607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01688875 140.90162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01688876 140.90162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01688877 140.90164185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01688878 140.90165710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01688879 140.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01688880 140.90168762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01688881 140.90170288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01688882 140.90170288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01688883 140.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01688884 140.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01688885 140.90176392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01688886 140.90176392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01688887 140.90177917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01688888 140.90177917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01688889 140.90180969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01688890 140.90180969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01688891 140.90184021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01688892 140.90184021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01688893 140.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01688894 140.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01688895 140.90188599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01688896 140.90188599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01688897 140.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01688898 140.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01688899 140.90193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01688900 140.90193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01688901 140.90196228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01688902 140.90197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01688903 140.90199280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01688904 140.90200806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01688905 140.90202332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01688906 140.90202332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01688907 140.90205383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01688908 140.90205383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01688909 140.90208435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01688910 140.90208435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01688911 140.90209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01688912 140.90209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01688913 140.90213013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01688914 140.90213013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01688915 140.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01688916 140.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01688917 140.90217590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01688918 140.90217590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01688919 140.90220642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01688920 140.90220642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01688921 140.90223694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01688922 140.90225220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01688923 140.90225220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01688924 140.90226746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01688925 140.90229797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01688926 140.90229797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01688927 140.90232849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01688928 140.90232849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01688929 140.90234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01688930 140.90235901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01688931 140.90238953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01688932 140.90238953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01688933 140.90242004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01688934 140.90242004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01688935 140.90243530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01688936 140.90243530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01688937 140.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01688938 140.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01688939 140.90249634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01688940 140.90249634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01688941 140.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01688942 140.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01688943 140.90255737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01688944 140.90255737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01688945 140.90257263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01688946 140.90257263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01688947 140.90260315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01688948 140.90260315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01688949 140.90263367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01688950 140.90263367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01688951 140.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01688952 140.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01688953 140.90267944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01688954 140.90269470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01688955 140.90270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01688956 140.90272522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01688957 140.90274048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01688958 140.90274048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01688959 140.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01688960 140.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01688961 140.90280151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01688962 140.90280151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01688963 140.90281677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01688964 140.90283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01688965 140.90286255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01688966 140.90286255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01688967 140.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01688968 140.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01688969 140.90290833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01688970 140.90290833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01688971 140.90293884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01688972 140.90293884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01688973 140.90296936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01688974 140.90296936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01688975 140.90298462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01688976 140.90298462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01688977 140.90301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01688978 140.90303040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01688979 140.90304565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01688980 140.90304565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01688981 140.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01688982 140.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01688983 140.90310669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01688984 140.90310669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01688985 140.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01688986 140.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01688987 140.90315247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01688988 140.90315247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01688989 140.90318298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01688990 140.90318298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01688991 140.90321350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01688992 140.90321350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01688993 140.90322876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01688994 140.90322876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01688995 140.90325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01688996 140.90325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01688997 140.90328979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01688998 140.90328979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01688999 140.90330505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01689000 140.90330505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01689001 140.90333557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01689002 140.90335083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01689003 140.90336609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01689004 140.90336609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01689005 140.90339661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01689006 140.90339661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01689007 140.90342712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01689008 140.90342712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01689009 140.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01689010 140.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01689011 140.90347290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01689012 140.90347290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01689013 140.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01689014 140.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01689015 140.90353394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01689016 140.90353394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01689017 140.90354919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01689018 140.90354919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01689019 140.90359497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01689020 140.90359497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01689021 140.90361023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01689022 140.90361023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01689023 140.90364075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01689024 140.90364075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01689025 140.90367126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01689026 140.90367126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01689027 140.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01689028 140.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01689029 140.90371704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01689030 140.90373230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01689031 140.90376282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01689032 140.90376282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01689033 140.90377808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01689034 140.90377808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01689035 140.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01689036 140.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01689037 140.90383911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01689038 140.90383911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01689039 140.90385437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01689040 140.90386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01689041 140.90388489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01689042 140.90390015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01689043 140.90393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01689044 140.90393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01689045 140.90394592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01689046 140.90394592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01689047 140.90397644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01689048 140.90397644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01689049 140.90400696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01689050 140.90400696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01689051 140.90403748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01689052 140.90403748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01689053 140.90406799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01689054 140.90406799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01689055 140.90408325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01689056 140.90408325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01689057 140.90411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01689058 140.90411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01689059 140.90414429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01689060 140.90414429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01689061 140.90415955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01689062 140.90415955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01689063 140.90419006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01689064 140.90419006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01689065 140.90422058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01689066 140.90422058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01689067 140.90423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01689068 140.90425110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01689069 140.90426636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01689070 140.90428162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01689071 140.90431213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01689072 140.90431213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01689073 140.90432739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01689074 140.90432739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01689075 140.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01689076 140.90437317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01689077 140.90440369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01689078 140.90440369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01689079 140.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01689080 140.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01689081 140.90444946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01689082 140.90446472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01689083 140.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01689084 140.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01689085 140.90451050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01689086 140.90451050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01689087 140.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01689088 140.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01689089 140.90455627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01689090 140.90455627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01689091 140.90458679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01689092 140.90460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01689093 140.90463257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01689094 140.90463257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01689095 140.90464783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01689096 140.90464783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01689097 140.90467834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01689098 140.90467834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01689099 140.90470886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01689100 140.90472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01689101 140.90473938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01689102 140.90473938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01689103 140.90476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01689104 140.90476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01689105 140.90480042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01689106 140.90480042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01689107 140.90481567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01689108 140.90481567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01689109 140.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01689110 140.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01689111 140.90487671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01689112 140.90487671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01689113 140.90489197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01689114 140.90490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01689115 140.90492249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01689116 140.90493774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01689117 140.90495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01689118 140.90495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01689119 140.90498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01689120 140.90498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01689121 140.90501404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01689122 140.90501404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01689123 140.90502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01689124 140.90502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01689125 140.90505981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01689126 140.90505981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01689127 140.90509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01689128 140.90509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01689129 140.90512085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01689130 140.90512085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01689131 140.90513611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01689132 140.90513611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01689133 140.90516663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01689134 140.90516663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01689135 140.90519714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01689136 140.90519714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01689137 140.90521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01689138 140.90522766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01689139 140.90525818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01689140 140.90525818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01689141 140.90527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01689142 140.90527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01689143 140.90530396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01689144 140.90530396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01689145 140.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01689146 140.90534973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01689147 140.90536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01689148 140.90536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01689149 140.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01689150 140.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01689151 140.90542603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01689152 140.90542603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01689153 140.90544128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01689154 140.90544128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01689155 140.90547180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01689156 140.90547180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01689157 140.90550232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01689158 140.90550232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01689159 140.90551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01689160 140.90553284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01689161 140.90554810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01689162 140.90556335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01689163 140.90559387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01689164 140.90559387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01689165 140.90560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01689166 140.90560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01689167 140.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01689168 140.90565491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01689169 140.90568542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01689170 140.90568542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01689171 140.90571594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01689172 140.90571594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01689173 140.90574646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01689174 140.90574646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01689175 140.90577698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01689176 140.90577698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01689177 140.90580750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01689178 140.90580750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01689179 140.90583801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01689180 140.90583801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01689181 140.90585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01689182 140.90585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01689183 140.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01689184 140.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01689185 140.90591431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01689186 140.90591431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01689187 140.90592957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01689188 140.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01689189 140.90596008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01689190 140.90597534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01689191 140.90599060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01689192 140.90599060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01689193 140.90602112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01689194 140.90602112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01689195 140.90605164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01689196 140.90605164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01689197 140.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01689198 140.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01689199 140.90609741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01689200 140.90609741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01689201 140.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01689202 140.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01689203 140.90614319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01689204 140.90614319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01689205 140.90617371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01689206 140.90617371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01689207 140.90620422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01689208 140.90621948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01689209 140.90623474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01689210 140.90623474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01689211 140.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01689212 140.90626526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01689213 140.90629578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01689214 140.90629578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01689215 140.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01689216 140.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01689217 140.90634155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01689218 140.90634155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01689219 140.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01689220 140.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01689221 140.90638733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01689222 140.90638733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01689223 140.90641785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01689224 140.90643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01689225 140.90646362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01689226 140.90646362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01689227 140.90647888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01689228 140.90647888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01689229 140.90650940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01689230 140.90650940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01689231 140.90653992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01689232 140.90653992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01689233 140.90657043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01689234 140.90657043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01689235 140.90660095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01689236 140.90660095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01689237 140.90663147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01689238 140.90663147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01689239 140.90664673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01689240 140.90664673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01689241 140.90667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01689242 140.90669250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01689243 140.90670776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01689244 140.90670776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01689245 140.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01689246 140.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01689247 140.90676880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01689248 140.90676880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01689249 140.90678406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01689250 140.90679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01689251 140.90682983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01689252 140.90682983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01689253 140.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01689254 140.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01689255 140.90687561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01689256 140.90687561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01689257 140.90690613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01689258 140.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01689259 140.90693665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01689260 140.90693665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01689261 140.90696716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01689262 140.90696716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01689263 140.90699768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01689264 140.90699768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01689265 140.90702820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01689266 140.90702820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01689267 140.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01689268 140.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01689269 140.90707397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01689270 140.90708923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01689271 140.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01689272 140.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01689273 140.90713501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01689274 140.90713501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01689275 140.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01689276 140.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01689277 140.90718079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01689278 140.90718079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01689279 140.90721130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01689280 140.90721130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01689281 140.90724182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01689282 140.90724182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01689283 140.90725708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01689284 140.90725708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01689285 140.90728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01689286 140.90728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01689287 140.90731812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01689288 140.90731812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01689289 140.90733337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01689290 140.90733337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01689291 140.90736389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01689292 140.90737915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01689293 140.90739441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01689294 140.90740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01689295 140.90742493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01689296 140.90742493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01689297 140.90745544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01689298 140.90745544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01689299 140.90748596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01689300 140.90748596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01689301 140.90750122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01689302 140.90750122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01689303 140.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01689304 140.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01689305 140.90756226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01689306 140.90756226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01689307 140.90757751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01689308 140.90757751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01689309 140.90760803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01689310 140.90760803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01689311 140.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01689312 140.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01689313 140.90766907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01689314 140.90766907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01689315 140.90769958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01689316 140.90769958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01689317 140.90773010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01689318 140.90773010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01689319 140.90776062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01689320 140.90776062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01689321 140.90779114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01689322 140.90779114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01689323 140.90782166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01689324 140.90782166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01689325 140.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01689326 140.90785217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01689327 140.90786743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01689328 140.90788269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01689329 140.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01689330 140.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01689331 140.90792847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01689332 140.90792847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01689333 140.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01689334 140.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01689335 140.90797424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01689336 140.90797424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01689337 140.90800476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01689338 140.90800476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01689339 140.90803528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01689340 140.90803528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01689341 140.90805054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01689342 140.90805054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01689343 140.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01689344 140.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01689345 140.90811157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01689346 140.90811157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01689347 140.90812683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01689348 140.90814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01689349 140.90815735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01689350 140.90817261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01689351 140.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01689352 140.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01689353 140.90821838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01689354 140.90821838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01689355 140.90824890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01689356 140.90824890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01689357 140.90827942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01689358 140.90827942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01689359 140.90829468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01689360 140.90829468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01689361 140.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01689362 140.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01689363 140.90835571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01689364 140.90835571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01689365 140.90837097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01689366 140.90837097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01689367 140.90840149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01689368 140.90840149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01689369 140.90843201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01689370 140.90844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01689371 140.90844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01689372 140.90846252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01689373 140.90849304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01689374 140.90849304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01689375 140.90852356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01689376 140.90852356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01689377 140.90853882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01689378 140.90853882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01689379 140.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01689380 140.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01689381 140.90859985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01689382 140.90859985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01689383 140.90861511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01689384 140.90861511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01689385 140.90864563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01689386 140.90864563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01689387 140.90867615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01689388 140.90867615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01689389 140.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01689390 140.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01689391 140.90872192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01689392 140.90872192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01689393 140.90875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01689394 140.90876770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01689395 140.90876770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01689396 140.90878296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01689397 140.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01689398 140.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01689399 140.90884399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01689400 140.90884399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01689401 140.90885925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01689402 140.90885925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01689403 140.90888977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01689404 140.90888977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01689405 140.90892029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01689406 140.90892029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01689407 140.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01689408 140.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01689409 140.90896606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01689410 140.90896606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01689411 140.90899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01689412 140.90899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01689413 140.90901184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01689414 140.90901184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01689415 140.90904236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01689416 140.90904236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01689417 140.90907288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01689418 140.90908813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01689419 140.90908813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01689420 140.90910339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01689421 140.90913391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01689422 140.90913391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01689423 140.90916443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01689424 140.90916443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01689425 140.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01689426 140.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01689427 140.90921021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01689428 140.90921021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01689429 140.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01689430 140.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01689431 140.90925598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01689432 140.90925598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01689433 140.90928650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01689434 140.90928650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01689435 140.90931702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01689436 140.90931702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01689437 140.90933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01689438 140.90933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01689439 140.90936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01689440 140.90937805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01689441 140.90939331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01689442 140.90940857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01689443 140.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01689444 140.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01689445 140.90945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01689446 140.90945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01689447 140.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01689448 140.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01689449 140.90950012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01689450 140.90950012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01689451 140.90953064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01689452 140.90953064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01689453 140.90956116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01689454 140.90956116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01689455 140.90957642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01689456 140.90957642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01689457 140.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01689458 140.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01689459 140.90963745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01689460 140.90963745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01689461 140.90965271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01689462 140.90966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01689463 140.90968323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01689464 140.90969849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01689465 140.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01689466 140.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01689467 140.90974426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01689468 140.90974426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01689469 140.90977478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01689470 140.90977478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01689471 140.90980530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01689472 140.90980530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01689473 140.90982056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01689474 140.90982056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01689475 140.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01689476 140.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01689477 140.90988159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01689478 140.90988159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01689479 140.90989685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01689480 140.90989685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01689481 140.90992737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01689482 140.90992737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01689483 140.90995789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01689484 140.90995789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01689485 140.90997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01689486 140.90998840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01689487 140.91000366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01689488 140.91001892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01689489 140.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01689490 140.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01689491 140.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01689492 140.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01689493 140.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01689494 140.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01689495 140.91012573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01689496 140.91012573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01689497 140.91014099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01689498 140.91014099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01689499 140.91017151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01689500 140.91017151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01689501 140.91020203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01689502 140.91020203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01689503 140.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01689504 140.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01689505 140.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01689506 140.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01689507 140.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01689508 140.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01689509 140.91029358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01689510 140.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01689511 140.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01689512 140.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01689513 140.91035461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01689514 140.91035461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01689515 140.91038513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01689516 140.91038513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01689517 140.91041565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01689518 140.91041565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01689519 140.91044617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01689520 140.91044617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01689521 140.91047668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01689522 140.91047668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01689523 140.91050720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01689524 140.91050720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01689525 140.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01689526 140.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01689527 140.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01689528 140.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01689529 140.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01689530 140.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01689531 140.91059875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01689532 140.91059875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01689533 140.91062927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01689534 140.91062927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01689535 140.91065979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01689536 140.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01689537 140.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01689538 140.91069031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01689539 140.91072083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01689540 140.91072083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01689541 140.91075134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01689542 140.91075134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01689543 140.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01689544 140.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01689545 140.91079712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01689546 140.91079712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01689547 140.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01689548 140.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01689549 140.91084290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01689550 140.91084290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01689551 140.91087341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01689552 140.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01689553 140.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01689554 140.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01689555 140.91093445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01689556 140.91093445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01689557 140.91096497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01689558 140.91096497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01689559 140.91099548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01689560 140.91099548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01689561 140.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01689562 140.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01689563 140.91104126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01689564 140.91104126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01689565 140.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01689566 140.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01689567 140.91108704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01689568 140.91110229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01689569 140.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01689570 140.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01689571 140.91114807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01689572 140.91114807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01689573 140.91117859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01689574 140.91117859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01689575 140.91120911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01689576 140.91120911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01689577 140.91123962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01689578 140.91123962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01689579 140.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01689580 140.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01689581 140.91128540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01689582 140.91128540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01689583 140.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01689584 140.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01689585 140.91133118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01689586 140.91133118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01689587 140.91136169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01689588 140.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01689589 140.91139221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01689590 140.91139221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01689591 140.91142273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01689592 140.91142273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01689593 140.91145325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01689594 140.91145325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01689595 140.91146851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01689596 140.91146851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01689597 140.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01689598 140.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01689599 140.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01689600 140.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01689601 140.91154480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01689602 140.91154480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01689603 140.91157532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01689604 140.91157532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01689605 140.91160583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01689606 140.91160583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01689607 140.91163635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01689608 140.91163635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01689609 140.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01689610 140.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01689611 140.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01689612 140.91169739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01689613 140.91171265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01689614 140.91171265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01689615 140.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01689616 140.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01689617 140.91177368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01689618 140.91177368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01689619 140.91178894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01689620 140.91178894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01689621 140.91181946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01689622 140.91181946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01689623 140.91184998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01689624 140.91184998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01689625 140.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01689626 140.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01689627 140.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01689628 140.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01689629 140.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01689630 140.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01689631 140.91194153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01689632 140.91194153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01689633 140.91197205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01689634 140.91197205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01689635 140.91200256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01689636 140.91201782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01689637 140.91203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01689638 140.91203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01689639 140.91206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01689640 140.91206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01689641 140.91209412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01689642 140.91209412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01689643 140.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01689644 140.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01689645 140.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01689646 140.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01689647 140.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01689648 140.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01689649 140.91218567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01689650 140.91218567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01689651 140.91221619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01689652 140.91221619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01689653 140.91224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01689654 140.91224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01689655 140.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01689656 140.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01689657 140.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01689658 140.91230774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01689659 140.91232300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01689660 140.91233826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01689661 140.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01689662 140.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01689663 140.91238403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01689664 140.91238403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01689665 140.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01689666 140.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01689667 140.91242981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01689668 140.91242981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01689669 140.91246033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01689670 140.91246033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01689671 140.91249084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01689672 140.91249084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01689673 140.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01689674 140.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01689675 140.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01689676 140.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01689677 140.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01689678 140.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01689679 140.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01689680 140.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01689681 140.91267395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01689682 140.91267395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01689683 140.91270447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01689684 140.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01689685 140.91273499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01689686 140.91273499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01689687 140.91276550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01689688 140.91276550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01689689 140.91279602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01689690 140.91279602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01689691 140.91282654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01689692 140.91282654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01689693 140.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01689694 140.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01689695 140.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01689696 140.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01689697 140.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01689698 140.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01689699 140.91291809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01689700 140.91291809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01689701 140.91294861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01689702 140.91294861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01689703 140.91297913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01689704 140.91297913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01689705 140.91299438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01689706 140.91299438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01689707 140.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01689708 140.91304016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01689709 140.91305542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01689710 140.91305542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01689711 140.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01689712 140.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01689713 140.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01689714 140.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01689715 140.91313171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01689716 140.91313171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01689717 140.91316223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01689718 140.91316223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01689719 140.91319275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01689720 140.91319275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01689721 140.91322327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01689722 140.91322327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01689723 140.91323853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01689724 140.91323853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01689725 140.91328430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01689726 140.91328430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01689727 140.91329956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01689728 140.91329956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01689729 140.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01689730 140.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01689731 140.91336060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01689732 140.91336060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01689733 140.91337585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01689734 140.91337585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01689735 140.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01689736 140.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01689737 140.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01689738 140.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01689739 140.91346741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01689740 140.91346741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01689741 140.91349792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01689742 140.91349792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01689743 140.91352844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01689744 140.91352844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01689745 140.91355896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01689746 140.91355896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01689747 140.91358948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01689748 140.91358948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01689749 140.91362000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01689750 140.91362000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01689751 140.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01689752 140.91365051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01689753 140.91366577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01689754 140.91368103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01689755 140.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01689756 140.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01689757 140.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01689758 140.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01689759 140.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01689760 140.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01689761 140.91377258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01689762 140.91377258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01689763 140.91380310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01689764 140.91380310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01689765 140.91383362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01689766 140.91383362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01689767 140.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01689768 140.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01689769 140.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01689770 140.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01689771 140.91390991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01689772 140.91390991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01689773 140.91392517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01689774 140.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01689775 140.91395569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01689776 140.91397095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01689777 140.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01689778 140.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01689779 140.91401672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01689780 140.91401672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01689781 140.91404724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01689782 140.91404724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01689783 140.91407776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01689784 140.91407776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01689785 140.91409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01689786 140.91409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01689787 140.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01689788 140.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01689789 140.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01689790 140.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01689791 140.91416931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01689792 140.91416931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01689793 140.91419983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01689794 140.91419983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01689795 140.91423035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01689796 140.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01689797 140.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01689798 140.91426086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01689799 140.91429138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01689800 140.91429138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01689801 140.91432190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01689802 140.91432190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01689803 140.91435242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01689804 140.91435242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01689805 140.91438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01689806 140.91438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01689807 140.91441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01689808 140.91441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01689809 140.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01689810 140.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01689811 140.91445923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01689812 140.91447449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01689813 140.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01689814 140.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01689815 140.91452026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01689816 140.91452026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01689817 140.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01689818 140.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01689819 140.91456604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01689820 140.91456604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01689821 140.91459656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01689822 140.91459656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01689823 140.91462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01689824 140.91462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01689825 140.91465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01689826 140.91465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01689827 140.91468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01689828 140.91468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01689829 140.91471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01689830 140.91471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01689831 140.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01689832 140.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01689833 140.91476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01689834 140.91477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01689835 140.91481018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01689836 140.91481018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01689837 140.91482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01689838 140.91482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01689839 140.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01689840 140.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01689841 140.91488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01689842 140.91488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01689843 140.91490173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01689844 140.91490173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01689845 140.91493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01689846 140.91493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01689847 140.91496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01689848 140.91496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01689849 140.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01689850 140.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01689851 140.91500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01689852 140.91502380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01689853 140.91503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01689854 140.91503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01689855 140.91506958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01689856 140.91506958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01689857 140.91510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01689858 140.91510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01689859 140.91513062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01689860 140.91513062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01689861 140.91514587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01689862 140.91514587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01689863 140.91517639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01689864 140.91517639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01689865 140.91520691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01689866 140.91520691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01689867 140.91523743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01689868 140.91523743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01689869 140.91526794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01689870 140.91526794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01689871 140.91528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01689872 140.91529846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01689873 140.91532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01689874 140.91532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01689875 140.91535950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01689876 140.91535950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01689877 140.91537476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01689878 140.91537476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01689879 140.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01689880 140.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01689881 140.91543579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01689882 140.91543579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01689883 140.91545105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01689884 140.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01689885 140.91549683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01689886 140.91549683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01689887 140.91552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01689888 140.91552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01689889 140.91554260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01689890 140.91554260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01689891 140.91557312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01689892 140.91558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01689893 140.91560364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01689894 140.91560364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01689895 140.91563416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01689896 140.91563416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01689897 140.91566467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01689898 140.91566467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01689899 140.91567993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01689900 140.91567993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01689901 140.91571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01689902 140.91572571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01689903 140.91574097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01689904 140.91575623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01689905 140.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01689906 140.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01689907 140.91580200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01689908 140.91580200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01689909 140.91583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01689910 140.91583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01689911 140.91584778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01689912 140.91584778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01689913 140.91587830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01689914 140.91589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01689915 140.91592407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01689916 140.91592407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01689917 140.91593933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01689918 140.91593933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01689919 140.91596985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01689920 140.91596985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01689921 140.91600037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01689922 140.91600037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01689923 140.91603088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01689924 140.91603088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01689925 140.91606140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01689926 140.91606140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01689927 140.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01689928 140.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01689929 140.91612244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01689930 140.91612244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01689931 140.91615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01689932 140.91615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01689933 140.91616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01689934 140.91616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01689935 140.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01689936 140.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01689937 140.91622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01689938 140.91622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01689939 140.91624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01689940 140.91624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01689941 140.91627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01689942 140.91627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01689943 140.91630554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01689944 140.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01689945 140.91633606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01689946 140.91633606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01689947 140.91636658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01689948 140.91636658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01689949 140.91639709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01689950 140.91639709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01689951 140.91641235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01689952 140.91642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01689953 140.91645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01689954 140.91645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01689955 140.91647339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01689956 140.91647339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01689957 140.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01689958 140.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01689959 140.91653442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01689960 140.91653442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01689961 140.91656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01689962 140.91658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01689963 140.91661072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01689964 140.91661072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01689965 140.91664124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01689966 140.91664124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01689967 140.91667175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01689968 140.91667175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01689969 140.91670227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01689970 140.91670227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01689971 140.91671753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01689972 140.91671753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01689973 140.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01689974 140.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01689975 140.91677856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01689976 140.91677856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01689977 140.91679382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01689978 140.91679382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01689979 140.91682434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01689980 140.91682434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01689981 140.91685486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01689982 140.91685486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01689983 140.91687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01689984 140.91688538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01689985 140.91690063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01689986 140.91691589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01689987 140.91693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01689988 140.91694641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01689989 140.91696167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01689990 140.91696167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01689991 140.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01689992 140.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01689993 140.91702271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01689994 140.91702271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01689995 140.91703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01689996 140.91703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01689997 140.91706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01689998 140.91706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01689999 140.91709900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01690000 140.91709900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01690001 140.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01690002 140.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01690003 140.91714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01690004 140.91714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01690005 140.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01690006 140.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01690007 140.91719055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01690008 140.91720581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01690009 140.91722107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01690010 140.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01690011 140.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01690012 140.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01690013 140.91728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01690014 140.91728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01690015 140.91731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01690016 140.91731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01690017 140.91734314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01690018 140.91734314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01690019 140.91737366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01690020 140.91737366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01690021 140.91740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01690022 140.91740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01690023 140.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01690024 140.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01690025 140.91744995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01690026 140.91746521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01690027 140.91749573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01690028 140.91749573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01690029 140.91751099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01690030 140.91751099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01690031 140.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01690032 140.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01690033 140.91757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01690034 140.91757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01690035 140.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01690036 140.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01690037 140.91761780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01690038 140.91763306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01690039 140.91764832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01690040 140.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01690041 140.91767883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01690042 140.91767883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01690043 140.91770935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01690044 140.91770935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01690045 140.91773987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01690046 140.91773987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01690047 140.91775513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01690048 140.91775513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01690049 140.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01690050 140.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01690051 140.91781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01690052 140.91783142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01690053 140.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01690054 140.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01690055 140.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01690056 140.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01690057 140.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01690058 140.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01690059 140.91792297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01690060 140.91792297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01690061 140.91795349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01690062 140.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01690063 140.91798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01690064 140.91798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01690065 140.91801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01690066 140.91801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01690067 140.91804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01690068 140.91804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01690069 140.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01690070 140.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01690071 140.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01690072 140.91810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01690073 140.91813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01690074 140.91813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01690075 140.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01690076 140.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01690077 140.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01690078 140.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01690079 140.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01690080 140.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01690081 140.91822815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01690082 140.91822815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01690083 140.91825867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01690084 140.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01690085 140.91828918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01690086 140.91830444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01690087 140.91831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01690088 140.91831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01690089 140.91835022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01690090 140.91835022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01690091 140.91838074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01690092 140.91838074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01690093 140.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01690094 140.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01690095 140.91842651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01690096 140.91842651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01690097 140.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01690098 140.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01690099 140.91847229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01690100 140.91847229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01690101 140.91850281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01690102 140.91850281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01690103 140.91853333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01690104 140.91853333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01690105 140.91854858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01690106 140.91854858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01690107 140.91857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01690108 140.91859436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01690109 140.91860962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01690110 140.91862488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01690111 140.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01690112 140.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01690113 140.91867065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01690114 140.91867065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01690115 140.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01690116 140.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01690117 140.91871643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01690118 140.91871643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01690119 140.91874695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01690120 140.91874695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01690121 140.91877747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01690122 140.91877747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01690123 140.91879272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01690124 140.91879272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01690125 140.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01690126 140.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01690127 140.91885376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01690128 140.91885376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01690129 140.91886902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01690130 140.91886902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01690131 140.91889954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01690132 140.91891479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01690133 140.91893005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01690134 140.91893005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01690135 140.91896057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01690136 140.91896057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01690137 140.91899109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01690138 140.91899109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01690139 140.91902161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01690140 140.91902161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01690141 140.91903687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01690142 140.91903687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01690143 140.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01690144 140.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01690145 140.91909790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01690146 140.91909790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01690147 140.91911316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01690148 140.91911316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01690149 140.91914368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01690150 140.91914368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01690151 140.91917419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01690152 140.91917419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01690153 140.91918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01690154 140.91920471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01690155 140.91921997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01690156 140.91923523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01690157 140.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01690158 140.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01690159 140.91928101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01690160 140.91928101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01690161 140.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01690162 140.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01690163 140.91932678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01690164 140.91934204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01690165 140.91935730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01690166 140.91937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01690167 140.91940308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01690168 140.91940308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01690169 140.91941833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01690170 140.91941833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01690171 140.91944885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01690172 140.91944885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01690173 140.91947937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01690174 140.91947937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01690175 140.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01690176 140.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01690177 140.91952515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01690178 140.91952515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01690179 140.91955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01690180 140.91955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01690181 140.91957092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01690182 140.91957092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01690183 140.91960144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01690184 140.91960144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01690185 140.91963196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01690186 140.91964722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01690187 140.91964722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01690188 140.91966248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01690189 140.91967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01690190 140.91969299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01690191 140.91972351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01690192 140.91972351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01690193 140.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01690194 140.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01690195 140.91976929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01690196 140.91976929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01690197 140.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01690198 140.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01690199 140.91981506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01690200 140.91981506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01690201 140.91984558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01690202 140.91984558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01690203 140.91987610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01690204 140.91987610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01690205 140.91989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01690206 140.91989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01690207 140.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01690208 140.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01690209 140.91995239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01690210 140.91996765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01690211 140.91996765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01690212 140.91998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01690213 140.92001343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01690214 140.92001343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01690215 140.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01690216 140.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01690217 140.92005920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01690218 140.92005920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01690219 140.92008972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01690220 140.92008972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01690221 140.92012024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01690222 140.92012024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01690223 140.92013550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01690224 140.92013550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01690225 140.92016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01690226 140.92016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01690227 140.92019653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01690228 140.92019653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01690229 140.92021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01690230 140.92021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01690231 140.92025757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01690232 140.92025757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01690233 140.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01690234 140.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01690235 140.92030334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -01690236 140.92030334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -01690237 140.92033386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -01690238 140.92033386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -01690239 140.92036438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -01690240 140.92036438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -01690241 140.92039490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -01690242 140.92039490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -01690243 140.92042542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -01690244 140.92042542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -01690245 140.92045593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -01690246 140.92045593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -01690247 140.92048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -01690248 140.92048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -01690249 140.92051697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -01690250 140.92051697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -01690251 140.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -01690252 140.92054749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -01690253 140.92056274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -01690254 140.92057800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -01690255 140.92060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -01690256 140.92060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -01690257 140.92062378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -01690258 140.92062378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -01690259 140.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -01690260 140.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -01690261 140.92068481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -01690262 140.92068481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -01690263 140.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -01690264 140.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -01690265 140.92074585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -01690266 140.92074585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -01690267 140.92076111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -01690268 140.92076111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -01690269 140.92079163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -01690270 140.92079163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -01690271 140.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -01690272 140.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -01690273 140.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -01690274 140.92085266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -01690275 140.92086792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -01690276 140.92088318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -01690277 140.92091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -01690278 140.92091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -01690279 140.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -01690280 140.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -01690281 140.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -01690282 140.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -01690283 140.92098999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -01690284 140.92098999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -01690285 140.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -01690286 140.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -01690287 140.92103577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -01690288 140.92103577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -01690289 140.92106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -01690290 140.92106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -01690291 140.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -01690292 140.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -01690293 140.92111206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -01690294 140.92111206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -01690295 140.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -01690296 140.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -01690297 140.92115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -01690298 140.92117310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -01690299 140.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -01690300 140.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -01690301 140.92123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -01690302 140.92123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -01690303 140.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -01690304 140.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -01690305 140.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -01690306 140.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -01690307 140.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -01690308 140.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -01690309 140.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -01690310 140.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -01690311 140.92135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -01690312 140.92135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -01690313 140.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -01690314 140.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -01690315 140.92140198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -01690316 140.92140198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -01690317 140.92143250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -01690318 140.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -01690319 140.92146301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -01690320 140.92147827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -01690321 140.92149353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -01690322 140.92149353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -01690323 140.92152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -01690324 140.92152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -01690325 140.92155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -01690326 140.92155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -01690327 140.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -01690328 140.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -01690329 140.92160034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -01690330 140.92160034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -01690331 140.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01690332 140.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01690333 140.92164612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01690334 140.92164612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01690335 140.92167664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01690336 140.92167664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01690337 140.92170715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01690338 140.92170715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01690339 140.92172241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01690340 140.92173767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01690341 140.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01690342 140.92176819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01690343 140.92179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01690344 140.92179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01690345 140.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01690346 140.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01690347 140.92184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01690348 140.92184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01690349 140.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01690350 140.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01690351 140.92189026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01690352 140.92189026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01690353 140.92192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01690354 140.92192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01690355 140.92195129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01690356 140.92195129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01690357 140.92196655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01690358 140.92196655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01690359 140.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01690360 140.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01690361 140.92202759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01690362 140.92202759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01690363 140.92204285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01690364 140.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01690365 140.92207336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01690366 140.92208862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01690367 140.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01690368 140.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01690369 140.92213440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01690370 140.92213440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01690371 140.92216492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01690372 140.92216492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01690373 140.92219543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01690374 140.92219543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01690375 140.92221069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -01690376 140.92221069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -01690377 140.92224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -01690378 140.92225647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -01690379 140.92227173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -01690380 140.92227173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -01690381 140.92230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -01690382 140.92230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -01690383 140.92233276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -01690384 140.92233276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -01690385 140.92234802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -01690386 140.92234802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -01690387 140.92239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -01690388 140.92239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -01690389 140.92242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01690390 140.92242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01690391 140.92243958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01690392 140.92243958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01690393 140.92247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01690394 140.92247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01690395 140.92250061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01690396 140.92250061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01690397 140.92251587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01690398 140.92251587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01690399 140.92254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01690400 140.92254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01690401 140.92257690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01690402 140.92257690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01690403 140.92259216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01690404 140.92259216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01690405 140.92262268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01690406 140.92263794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01690407 140.92265320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01690408 140.92266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01690409 140.92268372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01690410 140.92268372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01690411 140.92271423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01690412 140.92271423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01690413 140.92274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01690414 140.92274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01690415 140.92276001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01690416 140.92276001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01690417 140.92279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01690418 140.92279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01690419 140.92282104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01690420 140.92282104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01690421 140.92283630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01690422 140.92283630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01690423 140.92286682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01690424 140.92286682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01690425 140.92289734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01690426 140.92289734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01690427 140.92291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01690428 140.92292786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01690429 140.92294312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01690430 140.92295837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01690431 140.92298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -01690432 140.92298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -01690433 140.92300415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -01690434 140.92300415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -01690435 140.92303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -01690436 140.92303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -01690437 140.92306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -01690438 140.92306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -01690439 140.92308044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -01690440 140.92308044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -01690441 140.92311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -01690442 140.92311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -01690443 140.92314148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -01690444 140.92314148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -01690445 140.92315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd458 -01690446 140.92315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd458 -01690447 140.92318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd468 -01690448 140.92318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd468 -01690449 140.92321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd478 -01690450 140.92321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd478 -01690451 140.92323303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd488 -01690452 140.92324829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd488 -01690453 140.92326355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd498 -01690454 140.92327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd498 -01690455 140.92330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a8 -01690456 140.92330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4a8 -01690457 140.92332458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b8 -01690458 140.92332458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4b8 -01690459 140.92335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c8 -01690460 140.92335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c8 -01690461 140.92338562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d8 -01690462 140.92338562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d8 -01690463 140.92340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e8 -01690464 140.92340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e8 -01690465 140.92343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f8 -01690466 140.92343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f8 -01690467 140.92346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd508 -01690468 140.92346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd508 -01690469 140.92347717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd518 -01690470 140.92347717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd518 -01690471 140.92350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd528 -01690472 140.92350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd528 -01690473 140.92353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd538 -01690474 140.92353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd538 -01690475 140.92355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd548 -01690476 140.92356873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd548 -01690477 140.92359924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd558 -01690478 140.92359924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd558 -01690479 140.92362976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd568 -01690480 140.92362976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd568 -01690481 140.92364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd578 -01690482 140.92364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd578 -01690483 140.92367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd588 -01690484 140.92367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd588 -01690485 140.92370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd598 -01690486 140.92370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd598 -01690487 140.92372131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a8 -01690488 140.92372131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a8 -01690489 140.92375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b8 -01690490 140.92375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b8 -01690491 140.92378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c8 -01690492 140.92378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c8 -01690493 140.92379761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d8 -01690494 140.92379761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d8 -01690495 140.92382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e8 -01690496 140.92382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e8 -01690497 140.92385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f8 -01690498 140.92385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f8 -01690499 140.92387390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd608 -01690500 140.92388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd608 -01690501 140.92391968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd618 -01690502 140.92391968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd618 -01690503 140.92393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd628 -01690504 140.92393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd628 -01690505 140.92396545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd638 -01690506 140.92396545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd638 -01690507 140.92399597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd648 -01690508 140.92399597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd648 -01690509 140.92402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd658 -01690510 140.92402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd658 -01690511 140.92404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd668 -01690512 140.92404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd668 -01690513 140.92407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -01690514 140.92407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -01690515 140.92410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -01690516 140.92410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -01690517 140.92411804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -01690518 140.92411804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -01690519 140.92414856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -01690520 140.92416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -01690521 140.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -01690522 140.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -01690523 140.92420959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -01690524 140.92420959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -01690525 140.92424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -01690526 140.92424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -01690527 140.92425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -01690528 140.92425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -01690529 140.92428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -01690530 140.92430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -01690531 140.92431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -01690532 140.92433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -01690533 140.92434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -01690534 140.92434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -01690535 140.92437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -01690536 140.92437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -01690537 140.92440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -01690538 140.92440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -01690539 140.92442322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -01690540 140.92442322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -01690541 140.92445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -01690542 140.92445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -01690543 140.92448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -01690544 140.92448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -01690545 140.92449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -01690546 140.92449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -01690547 140.92453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -01690548 140.92453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -01690549 140.92456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -01690550 140.92456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -01690551 140.92457581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -01690552 140.92459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -01690553 140.92460632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -01690554 140.92462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -01690555 140.92465210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -01690556 140.92465210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -01690557 140.92466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -01690558 140.92466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -01690559 140.92469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -01690560 140.92469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -01690561 140.92472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -01690562 140.92472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7f8 -01690563 140.92474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -01690564 140.92474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd808 -01690565 140.92477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -01690566 140.92477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd818 -01690567 140.92480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -01690568 140.92480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd828 -01690569 140.92481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -01690570 140.92481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd838 -01690571 140.92485046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -01690572 140.92485046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd848 -01690573 140.92488098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -01690574 140.92488098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd858 -01690575 140.92489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -01690576 140.92491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd868 -01690577 140.92492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -01690578 140.92494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd878 -01690579 140.92497253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -01690580 140.92497253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd888 -01690581 140.92498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -01690582 140.92498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd898 -01690583 140.92501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -01690584 140.92501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -01690585 140.92504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01690586 140.92504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01690587 140.92506409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01690588 140.92506409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01690589 140.92509460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01690590 140.92509460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01690591 140.92512512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01690592 140.92512512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01690593 140.92514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -01690594 140.92514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -01690595 140.92517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -01690596 140.92517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -01690597 140.92520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -01690598 140.92521667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -01690599 140.92523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -01690600 140.92523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -01690601 140.92526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -01690602 140.92526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -01690603 140.92529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -01690604 140.92529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -01690605 140.92532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -01690606 140.92532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -01690607 140.92535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -01690608 140.92535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -01690609 140.92536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -01690610 140.92536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -01690611 140.92539978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -01690612 140.92541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -01690613 140.92543030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -01690614 140.92544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -01690615 140.92544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -01690616 140.92546082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -01690617 140.92549133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -01690618 140.92549133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -01690619 140.92552185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -01690620 140.92552185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -01690621 140.92553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -01690622 140.92553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -01690623 140.92556763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -01690624 140.92556763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -01690625 140.92559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -01690626 140.92559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -01690627 140.92561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -01690628 140.92561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -01690629 140.92564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -01690630 140.92565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -01690631 140.92568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -01690632 140.92568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -01690633 140.92570496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -01690634 140.92570496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -01690635 140.92573547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -01690636 140.92573547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -01690637 140.92576599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -01690638 140.92576599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -01690639 140.92578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -01690640 140.92579651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -01690641 140.92582703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -01690642 140.92582703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -01690643 140.92584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -01690644 140.92584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -01690645 140.92587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -01690646 140.92587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -01690647 140.92590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -01690648 140.92590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -01690649 140.92593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -01690650 140.92593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -01690651 140.92594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -01690652 140.92594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -01690653 140.92597961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -01690654 140.92599487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -01690655 140.92601013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -01690656 140.92601013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -01690657 140.92604065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -01690658 140.92604065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -01690659 140.92607117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -01690660 140.92607117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -01690661 140.92608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -01690662 140.92608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -01690663 140.92611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -01690664 140.92611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -01690665 140.92614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -01690666 140.92614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb38 -01690667 140.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -01690668 140.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb48 -01690669 140.92619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -01690670 140.92619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb58 -01690671 140.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -01690672 140.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb68 -01690673 140.92623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -01690674 140.92623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb78 -01690675 140.92626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -01690676 140.92628479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb88 -01690677 140.92630005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -01690678 140.92631531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb98 -01690679 140.92633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -01690680 140.92633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba8 -01690681 140.92636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -01690682 140.92636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb8 -01690683 140.92639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -01690684 140.92639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc8 -01690685 140.92640686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -01690686 140.92640686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd8 -01690687 140.92643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -01690688 140.92643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe8 -01690689 140.92646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -01690690 140.92646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf8 -01690691 140.92648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -01690692 140.92648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc08 -01690693 140.92651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -01690694 140.92652893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc18 -01690695 140.92655945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -01690696 140.92655945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc28 -01690697 140.92657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -01690698 140.92657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -01690699 140.92660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -01690700 140.92662048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -01690701 140.92665100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -01690702 140.92665100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -01690703 140.92668152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -01690704 140.92669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -01690705 140.92672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -01690706 140.92672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -01690707 140.92674255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -01690708 140.92674255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -01690709 140.92677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -01690710 140.92677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -01690711 140.92680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -01690712 140.92680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -01690713 140.92681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -01690714 140.92683411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -01690715 140.92686462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -01690716 140.92686462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -01690717 140.92687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -01690718 140.92687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -01690719 140.92691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -01690720 140.92691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -01690721 140.92694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -01690722 140.92694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -01690723 140.92695618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -01690724 140.92695618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -01690725 140.92698669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -01690726 140.92698669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -01690727 140.92701721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -01690728 140.92701721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -01690729 140.92703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -01690730 140.92703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -01690731 140.92706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -01690732 140.92706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -01690733 140.92709351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -01690734 140.92710876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -01690735 140.92712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -01690736 140.92712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -01690737 140.92715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -01690738 140.92715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -01690739 140.92718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -01690740 140.92718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -01690741 140.92720032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -01690742 140.92720032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd98 -01690743 140.92723083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -01690744 140.92723083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdda8 -01690745 140.92726135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -01690746 140.92726135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddb8 -01690747 140.92727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -01690748 140.92727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddc8 -01690749 140.92730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -01690750 140.92730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddd8 -01690751 140.92733765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -01690752 140.92733765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdde8 -01690753 140.92735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -01690754 140.92735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xddf8 -01690755 140.92738342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -01690756 140.92738342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde08 -01690757 140.92741394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -01690758 140.92742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde18 -01690759 140.92742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -01690760 140.92744446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde28 -01690761 140.92747498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -01690762 140.92747498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde38 -01690763 140.92750549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -01690764 140.92750549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde48 -01690765 140.92752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -01690766 140.92752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde58 -01690767 140.92755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -01690768 140.92755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde68 -01690769 140.92758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -01690770 140.92758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde78 -01690771 140.92759705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -01690772 140.92759705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde88 -01690773 140.92762756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -01690774 140.92762756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xde98 -01690775 140.92765808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -01690776 140.92765808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdea8 -01690777 140.92767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -01690778 140.92767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdeb8 -01690779 140.92770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -01690780 140.92770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdec8 -01690781 140.92773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -01690782 140.92774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xded8 -01690783 140.92774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -01690784 140.92776489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdee8 -01690785 140.92779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -01690786 140.92779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdef8 -01690787 140.92782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -01690788 140.92782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf08 -01690789 140.92784119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -01690790 140.92784119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf18 -01690791 140.92787170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -01690792 140.92787170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf28 -01690793 140.92790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -01690794 140.92790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf38 -01690795 140.92791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -01690796 140.92791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf48 -01690797 140.92794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -01690798 140.92794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf58 -01690799 140.92797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf68 -01690800 140.92797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf68 -01690801 140.92799377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -01690802 140.92799377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -01690803 140.92802429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -01690804 140.92802429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -01690805 140.92805481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -01690806 140.92807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -01690807 140.92807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -01690808 140.92808533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -01690809 140.92811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -01690810 140.92811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -01690811 140.92814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -01690812 140.92814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -01690813 140.92816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -01690814 140.92816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -01690815 140.92819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -01690816 140.92819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -01690817 140.92822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -01690818 140.92822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -01690819 140.92823792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -01690820 140.92823792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -01690821 140.92826843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -01690822 140.92826843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -01690823 140.92829895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -01690824 140.92829895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -01690825 140.92831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -01690826 140.92831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -01690827 140.92834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -01690828 140.92835999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -01690829 140.92837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -01690830 140.92839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -01690831 140.92840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -01690832 140.92840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -01690833 140.92843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -01690834 140.92843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -01690835 140.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -01690836 140.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -01690837 140.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -01690838 140.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -01690839 140.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -01690840 140.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -01690841 140.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -01690842 140.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -01690843 140.92855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -01690844 140.92855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -01690845 140.92858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -01690846 140.92858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -01690847 140.92861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -01690848 140.92861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -01690849 140.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -01690850 140.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -01690851 140.92866516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -01690852 140.92868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -01690853 140.92869568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -01690854 140.92871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -01690855 140.92872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -01690856 140.92872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -01690857 140.92875671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -01690858 140.92875671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe138 -01690859 140.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -01690860 140.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe148 -01690861 140.92880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -01690862 140.92880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe158 -01690863 140.92883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -01690864 140.92883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe168 -01690865 140.92886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -01690866 140.92886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe178 -01690867 140.92887878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -01690868 140.92887878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe188 -01690869 140.92890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -01690870 140.92890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe198 -01690871 140.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -01690872 140.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1a8 -01690873 140.92895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -01690874 140.92897034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1b8 -01690875 140.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -01690876 140.92900085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -01690877 140.92901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -01690878 140.92903137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -01690879 140.92904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -01690880 140.92904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -01690881 140.92907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -01690882 140.92907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -01690883 140.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -01690884 140.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -01690885 140.92912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -01690886 140.92912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -01690887 140.92915344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -01690888 140.92915344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -01690889 140.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -01690890 140.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -01690891 140.92919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -01690892 140.92919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -01690893 140.92922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -01690894 140.92922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -01690895 140.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -01690896 140.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -01690897 140.92927551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -01690898 140.92929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -01690899 140.92930603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -01690900 140.92932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -01690901 140.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -01690902 140.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -01690903 140.92936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -01690904 140.92936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -01690905 140.92939758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -01690906 140.92939758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -01691005 140.93080139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -01691006 140.93080139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -01691007 140.93083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -01691008 140.93083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -01691009 140.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -01691010 140.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -01691011 140.93087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -01691012 140.93087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -01691013 140.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -01691014 140.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -01691015 140.93093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -01691016 140.93093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -01691017 140.93095398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -01691018 140.93095398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -01691019 140.93098450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -01691020 140.93098450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -01691021 140.93101501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -01691022 140.93101501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -01691023 140.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -01691024 140.93104553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -01691025 140.93106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -01691026 140.93107605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -01691027 140.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -01691028 140.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -01691029 140.93112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -01691030 140.93112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -01691031 140.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -01691032 140.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -01691033 140.93116760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -01691034 140.93116760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -01691035 140.93119812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -01691036 140.93119812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -01691037 140.93122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -01691038 140.93122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -01691039 140.93124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -01691040 140.93124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -01691041 140.93127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -01691042 140.93127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -01691043 140.93130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -01691044 140.93130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -01691045 140.93133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -01691046 140.93133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -01691047 140.93135071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -01691048 140.93136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -01692211 140.94728088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -01692212 140.94728088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -01692213 140.94729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -01692214 140.94729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -01692215 140.94732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -01692216 140.94734192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -01692217 140.94737244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -01692218 140.94737244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -01692219 140.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -01692220 140.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -01692221 140.94741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -01692222 140.94741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -01692223 140.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be8 -01692224 140.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be8 -01692225 140.94746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf8 -01692226 140.94746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf8 -01692227 140.94749451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c08 -01692228 140.94750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c08 -01692229 140.94754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c18 -01692230 140.94754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c18 -01692231 140.94755554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c28 -01692232 140.94755554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c28 -01692233 140.94758606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c38 -01692234 140.94758606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c38 -01692235 140.94761658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c48 -01692236 140.94761658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c48 -01692237 140.94763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c58 -01692238 140.94763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c58 -01692239 140.94766235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c68 -01692240 140.94767761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c68 -01692241 140.94769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c78 -01692242 140.94769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c78 -01692243 140.94772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c88 -01692244 140.94772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c88 -01692245 140.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c98 -01692246 140.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c98 -01692247 140.94776917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca8 -01692248 140.94776917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ca8 -01692249 140.94779968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb8 -01692250 140.94779968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cb8 -01692251 140.94783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc8 -01692252 140.94783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cc8 -01692253 140.94784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd8 -01692254 140.94784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cd8 -01694614 140.98002625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15698 -01694615 140.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a8 -01694616 140.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156a8 -01694617 140.98007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b8 -01694618 140.98007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156b8 -01694619 140.98010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c8 -01694620 140.98010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156c8 -01694621 140.98011780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d8 -01694622 140.98011780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156d8 -01694623 140.98014832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e8 -01694624 140.98016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156e8 -01694625 140.98017883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f8 -01694626 140.98017883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x156f8 -01694627 140.98020935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15708 -01694628 140.98020935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15708 -01694629 140.98023987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15718 -01694630 140.98025513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15718 -01694631 140.98027039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15728 -01694632 140.98027039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15728 -01694633 140.98030090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15738 -01694634 140.98030090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15738 -01694635 140.98033142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15748 -01694636 140.98033142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15748 -01694637 140.98036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15758 -01694638 140.98036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15758 -01694639 140.98039246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15768 -01694640 140.98039246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15768 -01694641 140.98042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15778 -01694642 140.98042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15778 -01694643 140.98043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15788 -01694644 140.98043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15788 -01694645 140.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15798 -01694646 140.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15798 -01694647 140.98049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a8 -01694648 140.98049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157a8 -01694649 140.98051453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b8 -01694650 140.98052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157b8 -01694651 140.98056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c8 -01694652 140.98056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157c8 -01694653 140.98057556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d8 -01694654 140.98057556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d8 -01694655 140.98060608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e8 -01694656 140.98060608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e8 -01694657 140.98063660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f8 -01697141 141.01464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a598 -01697142 141.01464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a598 -01697143 141.01466370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a8 -01697144 141.01466370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a8 -01697145 141.01469421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b8 -01697146 141.01470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b8 -01697147 141.01473999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c8 -01697148 141.01473999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c8 -01697149 141.01475525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d8 -01697150 141.01475525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d8 -01697151 141.01480103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e8 -01697152 141.01480103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e8 -01697153 141.01483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f8 -01697154 141.01483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f8 -01697155 141.01486206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a608 -01697156 141.01486206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a608 -01697157 141.01489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a618 -01697158 141.01489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a618 -01697159 141.01490784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a628 -01697160 141.01492310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a628 -01697161 141.01493835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a638 -01697162 141.01495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a638 -01697163 141.01496887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a648 -01697164 141.01496887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a648 -01697165 141.01499939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -01697166 141.01499939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -01697167 141.01502991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -01697168 141.01502991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -01697169 141.01506042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -01697170 141.01506042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -01697171 141.01509094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -01697172 141.01509094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -01697173 141.01512146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -01697174 141.01512146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -01697175 141.01513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -01697176 141.01513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -01697177 141.01516724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -01697178 141.01516724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -01697179 141.01519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -01697180 141.01519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -01697181 141.01521301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -01697182 141.01521301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -01697183 141.01524353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -01697184 141.01524353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -01698271 141.02999878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -01698272 141.02999878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -01698273 141.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -01698274 141.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -01698275 141.03005981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -01698276 141.03005981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -01698277 141.03007507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -01698278 141.03007507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -01698279 141.03010559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -01698280 141.03010559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -01698281 141.03013611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -01698282 141.03013611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -01698283 141.03015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -01698284 141.03015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -01698285 141.03018188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -01698286 141.03019714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -01698287 141.03022766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -01698288 141.03022766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -01698289 141.03024292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -01698290 141.03024292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -01698291 141.03027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -01698292 141.03027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -01698293 141.03030396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -01698294 141.03030396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -01698295 141.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -01698296 141.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -01698297 141.03036499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -01698298 141.03036499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -01698299 141.03038025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -01698300 141.03038025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -01698301 141.03041077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -01698302 141.03041077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -01698303 141.03044128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -01698304 141.03044128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -01698305 141.03045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -01698306 141.03045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -01698307 141.03048706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -01698308 141.03050232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -01698309 141.03051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -01698310 141.03053284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -01698311 141.03054810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -01698312 141.03054810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -01698313 141.03057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -01698314 141.03057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -01699435 141.04603577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -01699436 141.04603577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -01699437 141.04606628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -01699438 141.04606628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -01699439 141.04609680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -01699440 141.04609680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -01699441 141.04611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -01699442 141.04612732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -01699443 141.04614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed88 -01699444 141.04615784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed88 -01699445 141.04618835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed98 -01699446 141.04618835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed98 -01699447 141.04620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda8 -01699448 141.04620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda8 -01699449 141.04623413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb8 -01699450 141.04624939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb8 -01699451 141.04626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc8 -01699452 141.04626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc8 -01699453 141.04629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd8 -01699454 141.04629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd8 -01699455 141.04632568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede8 -01699456 141.04632568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede8 -01699457 141.04635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf8 -01699458 141.04635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edf8 -01699459 141.04637146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee08 -01699460 141.04637146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee08 -01699461 141.04640198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee18 -01699462 141.04641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee18 -01699463 141.04643250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee28 -01699464 141.04643250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee28 -01699465 141.04646301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee38 -01699466 141.04646301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee38 -01699467 141.04649353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee48 -01699468 141.04649353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee48 -01699469 141.04650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee58 -01699470 141.04650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee58 -01699471 141.04655457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee68 -01699472 141.04655457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee68 -01699473 141.04658508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee78 -01699474 141.04658508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee78 -01699475 141.04660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee88 -01699476 141.04660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee88 -01699477 141.04663086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee98 -01699478 141.04663086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee98 -01700695 141.06350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -01700696 141.06350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -01700697 141.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -01700698 141.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -01700699 141.06356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -01700700 141.06356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -01700701 141.06358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -01700702 141.06358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -01700703 141.06361389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -01700704 141.06361389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -01700705 141.06364441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -01700706 141.06364441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -01700707 141.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -01700708 141.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -01700709 141.06369019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -01700710 141.06370544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -01700711 141.06373596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -01700712 141.06373596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -01700713 141.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -01700714 141.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -01700715 141.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -01700716 141.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -01700717 141.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -01700718 141.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -01700719 141.06382751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -01700720 141.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -01700721 141.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -01700722 141.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -01700723 141.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -01700724 141.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -01700725 141.06391907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -01700726 141.06391907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -01700727 141.06394958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -01700728 141.06394958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -01700729 141.06398010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -01700730 141.06398010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -01700731 141.06399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -01700732 141.06399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -01700733 141.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -01700734 141.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -01700735 141.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -01700736 141.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -01700737 141.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -01700738 141.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -01701883 141.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c8 -01701884 141.07972717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c8 -01701885 141.07975769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d8 -01701886 141.07975769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d8 -01701887 141.07978821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e8 -01701888 141.07978821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e8 -01701889 141.07980347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f8 -01701890 141.07980347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f8 -01701891 141.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a08 -01701892 141.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a08 -01701893 141.07986450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a18 -01701894 141.07986450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a18 -01701895 141.07987976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a28 -01701896 141.07987976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a28 -01701897 141.07991028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a38 -01701898 141.07991028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a38 -01701899 141.07994080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a48 -01701900 141.07994080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a48 -01701901 141.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a58 -01701902 141.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a58 -01701903 141.07998657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a68 -01701904 141.07998657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a68 -01701905 141.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a78 -01701906 141.08003235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a78 -01701907 141.08003235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a88 -01701908 141.08004761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a88 -01701909 141.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a98 -01701910 141.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a98 -01701911 141.08010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa8 -01701912 141.08010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa8 -01701913 141.08012390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -01701914 141.08012390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -01701915 141.08015442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -01701916 141.08015442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -01701917 141.08018494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -01701918 141.08018494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -01701919 141.08021545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -01701920 141.08021545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -01701921 141.08024597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -01701922 141.08024597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -01701923 141.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -01701924 141.08027649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -01701925 141.08029175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -01701926 141.08030701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -01703193 141.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -01703194 141.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262b8 -01703195 141.09791565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -01703196 141.09791565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262c8 -01703197 141.09794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -01703198 141.09794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262d8 -01703199 141.09797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -01703200 141.09797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262e8 -01703201 141.09799194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -01703202 141.09799194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x262f8 -01703203 141.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -01703204 141.09803772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26308 -01703205 141.09806824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26318 -01703206 141.09806824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26318 -01703207 141.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26328 -01703208 141.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26328 -01703209 141.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26338 -01703210 141.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26338 -01703211 141.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26348 -01703212 141.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26348 -01703213 141.09815979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26358 -01703214 141.09817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26358 -01703215 141.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26368 -01703216 141.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26368 -01703217 141.09822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26378 -01703218 141.09822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26378 -01703219 141.09825134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26388 -01703220 141.09825134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26388 -01703221 141.09828186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26398 -01703222 141.09828186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26398 -01703223 141.09829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a8 -01703224 141.09831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263a8 -01703225 141.09834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b8 -01703226 141.09834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263b8 -01703227 141.09837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c8 -01703228 141.09837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263c8 -01703229 141.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d8 -01703230 141.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263d8 -01703231 141.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e8 -01703232 141.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263e8 -01703233 141.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f8 -01703234 141.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x263f8 -01703235 141.09846497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26408 -01703236 141.09848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26408 -01704499 141.11618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b88 -01704500 141.11618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b88 -01704501 141.11619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b98 -01704502 141.11619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b98 -01704503 141.11622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba8 -01704504 141.11624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ba8 -01704505 141.11625671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb8 -01704506 141.11625671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bb8 -01704507 141.11628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc8 -01704508 141.11628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bc8 -01704509 141.11631775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd8 -01704510 141.11631775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bd8 -01704511 141.11633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be8 -01704512 141.11633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28be8 -01704513 141.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf8 -01704514 141.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28bf8 -01704515 141.11639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c08 -01704516 141.11640930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c08 -01704517 141.11642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c18 -01704518 141.11642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c18 -01704519 141.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c28 -01704520 141.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c28 -01704521 141.11648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c38 -01704522 141.11648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c38 -01704523 141.11650085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c48 -01704524 141.11650085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c48 -01704525 141.11653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c58 -01704526 141.11654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c58 -01704527 141.11657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c68 -01704528 141.11657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c68 -01704529 141.11659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c78 -01704530 141.11659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c78 -01704531 141.11662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c88 -01704532 141.11662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c88 -01704533 141.11665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c98 -01704534 141.11665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c98 -01704535 141.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca8 -01704536 141.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca8 -01704537 141.11669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb8 -01704538 141.11671448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb8 -01704539 141.11672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc8 -01704540 141.11672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc8 -01704541 141.11676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd8 -01704542 141.11676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd8 -01705603 141.13162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae08 -01705604 141.13162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae08 -01705605 141.13165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae18 -01705606 141.13165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae18 -01705607 141.13166809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae28 -01705608 141.13166809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae28 -01705609 141.13169861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae38 -01705610 141.13171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae38 -01705611 141.13174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae48 -01705612 141.13174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae48 -01705613 141.13175964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -01705614 141.13175964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -01705615 141.13179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -01705616 141.13179016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -01705617 141.13182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -01705618 141.13182068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -01705619 141.13183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae88 -01705620 141.13183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae88 -01705621 141.13186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae98 -01705622 141.13188171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae98 -01705623 141.13189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea8 -01705624 141.13189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea8 -01705625 141.13192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -01705626 141.13192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -01705627 141.13195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -01705628 141.13195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -01705629 141.13197327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -01705630 141.13197327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -01705631 141.13200378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -01705632 141.13201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -01705633 141.13204956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -01705634 141.13204956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -01705635 141.13206482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af08 -01705636 141.13206482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af08 -01705637 141.13209534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af18 -01705638 141.13209534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af18 -01705639 141.13212585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af28 -01705640 141.13212585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af28 -01705641 141.13214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af38 -01705642 141.13215637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af38 -01705643 141.13218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af48 -01705644 141.13218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af48 -01705645 141.13221741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af58 -01705646 141.13221741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af58 -01706731 141.14738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -01706732 141.14738464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -01706733 141.14741516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -01706734 141.14743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -01706735 141.14746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -01706736 141.14746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -01706737 141.14747620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -01706738 141.14747620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -01706739 141.14750671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -01706740 141.14750671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -01706741 141.14753723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -01706742 141.14753723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -01706743 141.14755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -01706744 141.14756775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -01706745 141.14759827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -01706746 141.14759827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -01706747 141.14762878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -01706748 141.14762878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -01706749 141.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -01706750 141.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -01706751 141.14767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -01706752 141.14767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -01706753 141.14770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -01706754 141.14770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -01706755 141.14772034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -01706756 141.14773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -01706757 141.14776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -01706758 141.14776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -01706759 141.14778137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -01706760 141.14778137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -01706761 141.14781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -01706762 141.14781189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -01706763 141.14784241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -01706764 141.14784241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -01706765 141.14787292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -01706766 141.14787292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -01706767 141.14790344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -01706768 141.14790344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -01706769 141.14793396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -01706770 141.14793396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -01706771 141.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -01706772 141.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -01706773 141.14797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -01706774 141.14797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -01707967 141.16474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -01707968 141.16474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -01707969 141.16477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -01707970 141.16477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -01707971 141.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -01707972 141.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -01707973 141.16482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -01707974 141.16484070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -01707975 141.16487122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -01707976 141.16487122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -01707977 141.16488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -01707978 141.16488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -01707979 141.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -01707980 141.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -01707981 141.16494751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -01707982 141.16494751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -01707983 141.16496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -01707984 141.16496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -01707985 141.16499329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -01707986 141.16500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -01707987 141.16502380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -01707988 141.16502380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -01707989 141.16505432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -01707990 141.16505432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -01707991 141.16508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -01707992 141.16508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -01707993 141.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -01707994 141.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -01707995 141.16513062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -01707996 141.16514587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -01707997 141.16517639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -01707998 141.16517639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -01707999 141.16519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -01708000 141.16519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -01708001 141.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -01708002 141.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -01708003 141.16525269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -01708004 141.16525269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -01708005 141.16526794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -01708006 141.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -01708007 141.16531372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -01708008 141.16531372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -01708009 141.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -01708010 141.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -01709059 141.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a08 -01709060 141.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a08 -01709061 141.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a18 -01709062 141.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a18 -01709063 141.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a28 -01709064 141.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a28 -01709065 141.18013000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a38 -01709066 141.18014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a38 -01709067 141.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a48 -01709068 141.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a48 -01709069 141.18019104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a58 -01709070 141.18019104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a58 -01709071 141.18022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a68 -01709072 141.18022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a68 -01709073 141.18025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a78 -01709074 141.18025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a78 -01709075 141.18028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a88 -01709076 141.18028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a88 -01709077 141.18031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a98 -01709078 141.18031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a98 -01709079 141.18034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa8 -01709080 141.18034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa8 -01709081 141.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab8 -01709082 141.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab8 -01709083 141.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac8 -01709084 141.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac8 -01709085 141.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad8 -01709086 141.18043518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad8 -01709087 141.18043518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae8 -01709088 141.18045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae8 -01709089 141.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af8 -01709090 141.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af8 -01709091 141.18051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b08 -01709092 141.18051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b08 -01709093 141.18052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b18 -01709094 141.18052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b18 -01709095 141.18055725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b28 -01709096 141.18055725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b28 -01709097 141.18058777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b38 -01709098 141.18058777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b38 -01709099 141.18061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b48 -01709100 141.18061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b48 -01709101 141.18064880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b58 -01709102 141.18064880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b58 -01710327 141.19793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a8 -01710328 141.19793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341a8 -01710329 141.19796753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -01710330 141.19796753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -01710331 141.19798279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -01710332 141.19798279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -01710333 141.19801331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d8 -01710334 141.19801331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d8 -01710335 141.19804382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e8 -01710336 141.19804382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e8 -01710337 141.19807434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f8 -01710338 141.19807434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f8 -01710339 141.19808960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34208 -01710340 141.19810486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34208 -01710341 141.19812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34218 -01710342 141.19813538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34218 -01710343 141.19815063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34228 -01710344 141.19815063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34228 -01710345 141.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34238 -01710346 141.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34238 -01710347 141.19821167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34248 -01710348 141.19821167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34248 -01710349 141.19822693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34258 -01710350 141.19822693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34258 -01710351 141.19825745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34268 -01710352 141.19825745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34268 -01710353 141.19828796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34278 -01710354 141.19828796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34278 -01710355 141.19830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34288 -01710356 141.19830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34288 -01710357 141.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34298 -01710358 141.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34298 -01710359 141.19836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a8 -01710360 141.19836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a8 -01710361 141.19839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b8 -01710362 141.19839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b8 -01710363 141.19841003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c8 -01710364 141.19842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c8 -01710365 141.19844055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d8 -01710366 141.19845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d8 -01710367 141.19847107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e8 -01710368 141.19847107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e8 -01710369 141.19850159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f8 -01710370 141.19850159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f8 -01725242 141.40031433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51378 -01725243 141.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51388 -01725244 141.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51388 -01725245 141.40036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51398 -01725246 141.40036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51398 -01725247 141.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a8 -01725248 141.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513a8 -01725249 141.40040588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b8 -01725250 141.40040588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513b8 -01725251 141.40043640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c8 -01725252 141.40043640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513c8 -01725253 141.40046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d8 -01725254 141.40046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513d8 -01725255 141.40048218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e8 -01725256 141.40048218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513e8 -01725257 141.40052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f8 -01725258 141.40052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x513f8 -01725259 141.40054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51408 -01725260 141.40054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51408 -01725261 141.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51418 -01725262 141.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51418 -01725263 141.40060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51428 -01725264 141.40060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51428 -01725265 141.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51438 -01725266 141.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51438 -01725267 141.40066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51448 -01725268 141.40066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51448 -01725269 141.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51458 -01725270 141.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51458 -01725271 141.40071106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51468 -01725272 141.40071106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51468 -01725273 141.40074158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51478 -01725274 141.40074158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51478 -01725275 141.40077209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51488 -01725276 141.40077209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51488 -01725277 141.40078735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51498 -01725278 141.40078735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51498 -01725279 141.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a8 -01725280 141.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a8 -01725281 141.40084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b8 -01725282 141.40084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b8 -01725283 141.40086365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c8 -01725284 141.40086365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c8 -01725285 141.40089417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d8 -01726065 141.94770813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01726066 141.96595764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726067 141.96597290 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726068 142.51239014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01726069 142.51240540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01726070 143.04635620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726071 143.83648682 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01726072 143.83651733 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01726073 143.83653259 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726074 143.83654785 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01726075 143.83666992 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01726076 143.83666992 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01726077 143.83673096 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01726078 143.83674622 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01726079 143.96833801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01726080 143.98715210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726081 143.98716736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01726082 144.37817383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01726083 144.37817383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -01726084 144.37820435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01726085 144.37821960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -01726086 144.37823486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01726087 144.37823486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -01726088 144.37826538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01726089 144.37826538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -01726090 144.37829590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01726091 144.37829590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -01726092 144.37831116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01726093 144.37832642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -01726094 144.37835693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01726095 144.37835693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -01726096 144.37838745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01726097 144.37838745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -01726098 144.37841797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01726099 144.37841797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -01726100 144.37844849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01726101 144.37844849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -01726102 144.37846375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01726103 144.37847900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -01726104 144.37850952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01726105 144.37850952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -01726106 144.37854004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01726107 144.37854004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -01726108 144.37855530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01726109 144.37855530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -01726110 144.37858582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01726111 144.37860107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -01726112 144.37863159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01726113 144.37863159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -01726114 144.37864685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01726115 144.37864685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -01726116 144.37867737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01726117 144.37867737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -01726118 144.37870789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01726119 144.37870789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -01726120 144.37873840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01726121 144.37873840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -01726122 144.37876892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01726123 144.37876892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -01726124 144.37878418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01726125 144.37879944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -01726126 144.37882996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01726127 144.37882996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -01726128 144.37886047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01726129 144.37886047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -01726130 144.37887573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01726131 144.37889099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -01726132 144.37892151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01726133 144.37892151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -01726134 144.37893677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01726135 144.37895203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -01726136 144.37898254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01726137 144.37902832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -01726138 144.37905884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01726139 144.37905884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -01726140 144.37908936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01726141 144.37908936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -01726142 144.37910461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01726143 144.37910461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -01726144 144.37915039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01726145 144.37915039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -01726146 144.37918091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01726147 144.37918091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -01726148 144.37919617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01726149 144.37919617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -01726150 144.37922668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01726151 144.37922668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -01726152 144.37925720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01726153 144.37925720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -01726154 144.37928772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01726155 144.37928772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -01726156 144.37931824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01726157 144.37931824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -01726158 144.37934875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01726159 144.37934875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -01726160 144.37937927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01726161 144.37937927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -01726162 144.37940979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01726163 144.37940979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -01726164 144.37944031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01726165 144.37944031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -01726166 144.37947083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01726167 144.37947083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -01726168 144.37950134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01726169 144.37950134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -01726170 144.37951660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01726171 144.37953186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -01726172 144.37956238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01726173 144.37956238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -01726174 144.37957764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01726175 144.37957764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -01726176 144.37960815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01726177 144.37962341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -01726178 144.37965393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01726179 144.37965393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -01726180 144.37966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01726181 144.37966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -01726182 144.37969971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01726183 144.37971497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -01726184 144.37973022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01726185 144.37973022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -01726186 144.37976074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01726187 144.37976074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -01726188 144.37979126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01726189 144.37980652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -01726190 144.37982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01726191 144.37982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -01726192 144.37985229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01726193 144.37985229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -01726194 144.37988281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01726195 144.37989807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -01726196 144.37991333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01726197 144.37991333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -01726198 144.37994385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01726199 144.37994385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -01726200 144.37997437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01726201 144.37997437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -01726202 144.38002014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01726203 144.38003540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -01726204 144.38006592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01726205 144.38006592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -01726206 144.38011169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01726207 144.38012695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -01726208 144.38014221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01726209 144.38014221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -01726210 144.38017273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01726211 144.38017273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -01726212 144.38020325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01726213 144.38021851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -01726214 144.38023376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01726215 144.38023376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -01726216 144.38026428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01726217 144.38026428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -01726218 144.38029480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01726219 144.38029480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -01726220 144.38032532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01726221 144.38032532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -01726222 144.38035583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01726223 144.38037109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -01726224 144.38038635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01726225 144.38038635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -01726226 144.38041687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01726227 144.38041687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -01726228 144.38044739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01726229 144.38044739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -01726230 144.38047791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01726231 144.38047791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -01726232 144.38050842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01726233 144.38050842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -01726234 144.38052368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01726235 144.38052368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -01726236 144.38056946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01726237 144.38056946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -01726238 144.38059998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01726239 144.38059998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -01726240 144.38061523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01726241 144.38063049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -01726242 144.38066101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01726243 144.38066101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -01726244 144.38069153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01726245 144.38069153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -01726246 144.38070679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01726247 144.38072205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -01726248 144.38075256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01726249 144.38075256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -01726250 144.38076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01726251 144.38076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -01726252 144.38079834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01726253 144.38081360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -01726254 144.38084412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01726255 144.38084412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -01726256 144.38085938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01726257 144.38085938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -01726258 144.38088989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01726259 144.38090515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -01726260 144.38092041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01726261 144.38092041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -01726262 144.38095093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01726263 144.38095093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -01726264 144.38101196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01726265 144.38101196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -01726266 144.38104248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01726267 144.38105774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -01726268 144.38108826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01726269 144.38108826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -01726270 144.38110352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01726271 144.38110352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -01726272 144.38113403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01726273 144.38114929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -01726274 144.38116455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01726275 144.38116455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -01726276 144.38119507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01726277 144.38119507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -01726278 144.38124084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01726279 144.38124084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -01726280 144.38125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01726281 144.38125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -01726282 144.38128662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01726283 144.38128662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -01726284 144.38133240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01726285 144.38133240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -01726286 144.38134766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01726287 144.38134766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -01726288 144.38137817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01726289 144.38139343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -01726290 144.38140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01726291 144.38140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -01726292 144.38143921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01726293 144.38143921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -01726294 144.38146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01726295 144.38148499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -01726296 144.38150024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01726297 144.38150024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -01726298 144.38153076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01726299 144.38153076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -01726300 144.38156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01726301 144.38156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -01726302 144.38159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01726303 144.38159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -01726304 144.38162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01726305 144.38162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -01726306 144.38165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01726307 144.38165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -01726308 144.38168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01726309 144.38168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -01726310 144.38171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01726311 144.38172913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -01726312 144.38174438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01726313 144.38174438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -01726314 144.38177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01726315 144.38177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -01726316 144.38180542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01726317 144.38180542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -01726318 144.38183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01726319 144.38183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -01726320 144.38186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01726321 144.38186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -01726322 144.38189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01726323 144.38189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -01726324 144.38192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01726325 144.38192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -01726326 144.38195801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01726327 144.38195801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -01726328 144.38198853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01726329 144.38200378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -01726330 144.38203430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01726331 144.38203430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -01726332 144.38206482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01726333 144.38208008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -01726334 144.38211060 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01726335 144.38211060 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -01726336 144.38212585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01726337 144.38212585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -01726338 144.38215637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01726339 144.38217163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -01726340 144.38220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01726341 144.38220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -01726342 144.38221741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01726343 144.38221741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -01726344 144.38224792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01726345 144.38226318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -01726346 144.38227844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01726347 144.38227844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -01726348 144.38230896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01726349 144.38230896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -01726350 144.38233948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01726351 144.38235474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -01726352 144.38237000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01726353 144.38237000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -01726354 144.38240051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01726355 144.38240051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -01726356 144.38243103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01726357 144.38243103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -01726358 144.38246155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01726359 144.38246155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -01726360 144.38249207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01726361 144.38250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -01726362 144.38252258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01726363 144.38252258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -01726364 144.38255310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01726365 144.38255310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -01726366 144.38258362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01726367 144.38259888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -01726368 144.38261414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01726369 144.38261414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -01726370 144.38264465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01726371 144.38264465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -01726372 144.38267517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01726373 144.38267517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -01726374 144.38270569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01726375 144.38270569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -01726376 144.38273621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01726377 144.38273621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -01726378 144.38275146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01726379 144.38276672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -01726380 144.38279724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01726381 144.38279724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -01726382 144.38282776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01726383 144.38282776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -01726384 144.38284302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01726385 144.38285828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -01726386 144.38288879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01726387 144.38288879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -01726388 144.38291931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01726389 144.38291931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -01726390 144.38293457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01726391 144.38294983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -01726392 144.38298035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01726393 144.38298035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -01726394 144.38299561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01726395 144.38301086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -01726396 144.38304138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01726397 144.38304138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -01726398 144.38307190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01726399 144.38307190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -01726400 144.38308716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01726401 144.38308716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -01726402 144.38311768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01726403 144.38313293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -01726404 144.38314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01726405 144.38314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -01726406 144.38317871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01726407 144.38317871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -01726408 144.38320923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01726409 144.38320923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -01726410 144.38323975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01726411 144.38323975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -01726412 144.38327026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01726413 144.38327026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -01726414 144.38330078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01726415 144.38331604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -01726416 144.38333130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01726417 144.38333130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -01726418 144.38336182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01726419 144.38336182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -01726420 144.38339233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01726421 144.38339233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -01726422 144.38342285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01726423 144.38342285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -01726424 144.38345337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01726425 144.38345337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -01726426 144.38346863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01726427 144.38348389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -01726428 144.38351440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01726429 144.38351440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -01726430 144.38354492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01726431 144.38354492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -01726432 144.38356018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01726433 144.38357544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -01726434 144.38360596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01726435 144.38360596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -01726436 144.38362122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01726437 144.38362122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -01726438 144.38365173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01726439 144.38366699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -01726440 144.38369751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01726441 144.38369751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -01726442 144.38371277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01726443 144.38371277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -01726444 144.38374329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01726445 144.38375854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -01726446 144.38378906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01726447 144.38378906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -01726448 144.38380432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01726449 144.38380432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -01726450 144.38383484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01726451 144.38385010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -01726452 144.38386536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01726453 144.38386536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -01726454 144.38389587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01726455 144.38389587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -01726456 144.38392639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01726457 144.38394165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -01726458 144.38395691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01726459 144.38395691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -01726460 144.38400269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01726461 144.38400269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -01726462 144.38403320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01726463 144.38403320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -01726464 144.38406372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01726465 144.38406372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -01726466 144.38409424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01726467 144.38410950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -01726468 144.38412476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01726469 144.38412476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -01726470 144.38415527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01726471 144.38415527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -01726472 144.38418579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01726473 144.38418579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -01726474 144.38421631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01726475 144.38421631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -01726476 144.38424683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01726477 144.38424683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -01726478 144.38427734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01726479 144.38427734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -01726480 144.38430786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01726481 144.38430786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -01726482 144.38433838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01726483 144.38433838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -01726484 144.38436890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01726485 144.38436890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -01726486 144.38439941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01726487 144.38439941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -01726488 144.38442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01726489 144.38442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -01726490 144.38446045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01726491 144.38446045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -01726492 144.38449097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01726493 144.38449097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -01726494 144.38450623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01726495 144.38452148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -01726496 144.38455200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01726497 144.38455200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -01726498 144.38458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01726499 144.38458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -01726500 144.38461304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01726501 144.38461304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -01726502 144.38464355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01726503 144.38464355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -01726504 144.38465881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01726505 144.38465881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -01726506 144.38468933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01726507 144.38470459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -01726508 144.38473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01726509 144.38473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -01726510 144.38475037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01726511 144.38475037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -01726512 144.38479614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01726513 144.38479614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -01726514 144.38482666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01726515 144.38482666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -01726516 144.38484192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01726517 144.38485718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -01726518 144.38488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01726519 144.38488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -01726520 144.38490295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01726521 144.38490295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -01726522 144.38493347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01726523 144.38494873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -01726524 144.38497925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01726525 144.38497925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -01726526 144.38502502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01726527 144.38502502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -01726528 144.38505554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01726529 144.38505554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -01726530 144.38507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01726531 144.38507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -01726532 144.38511658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01726533 144.38511658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -01726534 144.38513184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01726535 144.38513184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -01726536 144.38516235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01726537 144.38517761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -01726538 144.38520813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01726539 144.38520813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -01726540 144.38522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01726541 144.38522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -01726542 144.38525391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01726543 144.38526917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -01726544 144.38529968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01726545 144.38529968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -01726546 144.38531494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01726547 144.38531494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -01726548 144.38536072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01726549 144.38536072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -01726550 144.38537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01726551 144.38537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -01726552 144.38540649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01726553 144.38542175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -01726554 144.38545227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01726555 144.38545227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -01726556 144.38546753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01726557 144.38546753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -01726558 144.38549805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01726559 144.38551331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -01726560 144.38552856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01726561 144.38552856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -01726562 144.38555908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01726563 144.38555908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -01726564 144.38558960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01726565 144.38560486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -01726566 144.38562012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01726567 144.38562012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -01726568 144.38565063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01726569 144.38565063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -01726570 144.38569641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01726571 144.38569641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -01726572 144.38571167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01726573 144.38571167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -01726574 144.38574219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01726575 144.38575745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -01726576 144.38577271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01726577 144.38577271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -01726578 144.38580322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01726579 144.38580322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -01726580 144.38583374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01726581 144.38584900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -01726582 144.38586426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01726583 144.38586426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -01726584 144.38589478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01726585 144.38589478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -01726586 144.38592529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01726587 144.38592529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -01726588 144.38595581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01726589 144.38595581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -01726590 144.38600159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01726591 144.38600159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -01726592 144.38603210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01726593 144.38603210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -01726594 144.38607788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01726595 144.38607788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -01726596 144.38609314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01726597 144.38609314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -01726598 144.38612366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01726599 144.38612366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -01726600 144.38616943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01726601 144.38616943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -01726602 144.38618469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01726603 144.38618469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -01726604 144.38621521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01726605 144.38621521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -01726606 144.38624573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01726607 144.38624573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -01726608 144.38627625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01726609 144.38627625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -01726610 144.38630676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01726611 144.38630676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -01726612 144.38632202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01726613 144.38633728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -01726614 144.38636780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01726615 144.38636780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -01726616 144.38639832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01726617 144.38639832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -01726618 144.38641357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01726619 144.38641357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -01726620 144.38645935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01726621 144.38645935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -01726622 144.38648987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01726623 144.38648987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -01726624 144.38650513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01726625 144.38650513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -01726626 144.38653564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01726627 144.38653564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -01726628 144.38656616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01726629 144.38656616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -01726630 144.38659668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01726631 144.38659668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -01726632 144.38662720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01726633 144.38664246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -01726634 144.38665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01726635 144.38665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -01726636 144.38668823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01726637 144.38668823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -01726638 144.38671875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01726639 144.38673401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -01726640 144.38674927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01726641 144.38674927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -01726642 144.38677979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01726643 144.38677979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -01726644 144.38681030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01726645 144.38681030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -01726646 144.38684082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01726647 144.38684082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -01726648 144.38687134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01726649 144.38687134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -01726650 144.38690186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01726651 144.38690186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -01726652 144.38693237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01726653 144.38693237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -01726654 144.38696289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01726655 144.38699341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -01726656 144.38702393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01726657 144.38703918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -01726658 144.38705444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01726659 144.38705444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -01726660 144.38708496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01726661 144.38708496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -01726662 144.38711548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01726663 144.38713074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -01726664 144.38714600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01726665 144.38714600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -01726666 144.38717651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01726667 144.38717651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -01726668 144.38720703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01726669 144.38720703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -01726670 144.38723755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01726671 144.38723755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -01726672 144.38726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01726673 144.38726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -01726674 144.38728333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01726675 144.38729858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -01726676 144.38732910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01726677 144.38732910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -01726678 144.38735962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01726679 144.38735962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -01726680 144.38737488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01726681 144.38737488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -01726682 144.38742065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01726683 144.38742065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -01726684 144.38743591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01726685 144.38743591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -01726686 144.38746643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01726687 144.38748169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -01726688 144.38751221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01726689 144.38751221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -01726690 144.38752747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01726691 144.38752747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -01726692 144.38755798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01726693 144.38757324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -01726694 144.38760376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01726695 144.38760376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -01726696 144.38761902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01726697 144.38761902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -01726698 144.38766479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01726699 144.38766479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -01726700 144.38768005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01726701 144.38768005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -01726702 144.38771057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01726703 144.38772583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -01726704 144.38775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01726705 144.38775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -01726706 144.38777161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01726707 144.38777161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -01726708 144.38780212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01726709 144.38781738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -01726710 144.38783264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01726711 144.38783264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -01726712 144.38786316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01726713 144.38786316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -01726714 144.38790894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01726715 144.38790894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -01726716 144.38792419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01726717 144.38792419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -01726718 144.38795471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01726719 144.38796997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -01726720 144.38800049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01726721 144.38800049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -01726722 144.38803101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01726723 144.38803101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -01726724 144.38806152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01726725 144.38807678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -01726726 144.38809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01726727 144.38809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -01726728 144.38812256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01726729 144.38812256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -01726730 144.38815308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01726731 144.38815308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -01726732 144.38818359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01726733 144.38818359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -01726734 144.38821411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01726735 144.38821411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -01726736 144.38824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01726737 144.38824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -01726738 144.38827515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01726739 144.38827515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -01726740 144.38830566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01726741 144.38832092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -01726742 144.38833618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01726743 144.38833618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -01726744 144.38836670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01726745 144.38836670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -01726746 144.38839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01726747 144.38839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -01726748 144.38842773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01726749 144.38842773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -01726750 144.38845825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01726751 144.38847351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -01726752 144.38848877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01726753 144.38848877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -01726754 144.38851929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01726755 144.38851929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -01726756 144.38854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01726757 144.38854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -01726758 144.38858032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01726759 144.38858032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -01726760 144.38861084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01726761 144.38861084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -01726762 144.38864136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01726763 144.38864136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -01726764 144.38867188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01726765 144.38867188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -01726766 144.38870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01726767 144.38870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -01726768 144.38873291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01726769 144.38873291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -01726770 144.38876343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01726771 144.38876343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -01726772 144.38879395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01726773 144.38879395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -01726774 144.38882446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01726775 144.38882446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -01726776 144.38885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01726777 144.38885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -01726778 144.38887024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01726779 144.38888550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -01726780 144.38891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01726781 144.38891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -01726782 144.38894653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01726783 144.38894653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -01726784 144.38897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01726785 144.38897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -01726786 144.38902283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01726787 144.38902283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -01726788 144.38905334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01726789 144.38905334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -01726790 144.38908386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01726791 144.38908386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -01726792 144.38911438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01726793 144.38911438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -01726794 144.38914490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01726795 144.38914490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -01726796 144.38917542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01726797 144.38919067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -01726798 144.38920593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01726799 144.38920593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -01726800 144.38923645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01726801 144.38923645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -01726802 144.38926697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01726803 144.38926697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -01726804 144.38929749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01726805 144.38929749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -01726806 144.38932800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01726807 144.38932800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -01726808 144.38934326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01726809 144.38934326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -01726810 144.38937378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01726811 144.38938904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -01726812 144.38941956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01726813 144.38941956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -01726814 144.38943481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01726815 144.38943481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -01726816 144.38948059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01726817 144.38948059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -01726818 144.38951111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01726819 144.38951111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -01726820 144.38952637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01726821 144.38952637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -01726822 144.38957214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01726823 144.38957214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -01726824 144.38958740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01726825 144.38958740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -01726826 144.38961792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01726827 144.38963318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -01726828 144.38966370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01726829 144.38966370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -01726830 144.38967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01726831 144.38967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -01726832 144.38970947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01726833 144.38972473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -01726834 144.38973999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01726835 144.38973999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -01726836 144.38977051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01726837 144.38977051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -01726838 144.38981628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01726839 144.38981628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -01726840 144.38983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01726841 144.38983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -01726842 144.38986206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01726843 144.38987732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -01726844 144.38990784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01726845 144.38990784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -01726846 144.38992310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01726847 144.38992310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -01726848 144.38995361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01726849 144.38996887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -01726850 144.38999939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01726851 144.38999939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -01726852 144.39015198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01726853 144.39015198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -01726854 144.39018250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01726855 144.39019775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -01726856 144.39022827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01726857 144.39022827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -01726858 144.39024353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01726859 144.39024353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -01726860 144.39027405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01726861 144.39028931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -01726862 144.39030457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01726863 144.39030457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -01726864 144.39033508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01726865 144.39033508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -01726866 144.39036560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01726867 144.39038086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -01726868 144.39039612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01726869 144.39039612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -01726870 144.39042664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01726871 144.39042664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -01726872 144.39045715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01726873 144.39045715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -01726874 144.39048767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01726875 144.39048767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -01726876 144.39051819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01726877 144.39051819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -01726878 144.39054871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01726879 144.39054871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -01726880 144.39057922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01726881 144.39057922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -01726882 144.39060974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01726883 144.39060974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -01726884 144.39064026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01726885 144.39064026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -01726886 144.39067078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01726887 144.39067078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -01726888 144.39070129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01726889 144.39070129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -01726890 144.39073181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01726891 144.39073181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -01726892 144.39076233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01726893 144.39076233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -01726894 144.39077759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01726895 144.39079285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -01726896 144.39082336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01726897 144.39082336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -01726898 144.39085388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01726899 144.39085388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -01726900 144.39088440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01726901 144.39088440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -01726902 144.39091492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01726903 144.39091492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -01726904 144.39093018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01726905 144.39094543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -01726906 144.39097595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01726907 144.39097595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -01726908 144.39100647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01726909 144.39100647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -01726910 144.39103699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01726911 144.39103699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -01726912 144.39106750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01726913 144.39106750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -01726914 144.39109802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01726915 144.39109802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -01726916 144.39112854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01726917 144.39112854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -01726918 144.39115906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01726919 144.39115906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -01726920 144.39117432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01726921 144.39117432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -01726922 144.39120483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01726923 144.39122009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -01726924 144.39125061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01726925 144.39125061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -01726926 144.39126587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01726927 144.39126587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -01726928 144.39129639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01726929 144.39131165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -01726930 144.39132690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01726931 144.39132690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -01726932 144.39135742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01726933 144.39135742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -01726934 144.39138794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01726935 144.39138794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -01726936 144.39141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01726937 144.39141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -01726938 144.39143372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01726939 144.39144897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -01726940 144.39147949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01726941 144.39147949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -01726942 144.39149475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01726943 144.39149475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -01726944 144.39152527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01726945 144.39154053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -01726946 144.39157104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01726947 144.39157104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -01726948 144.39158630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01726949 144.39158630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -01726950 144.39161682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01726951 144.39161682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -01726952 144.39164734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01726953 144.39164734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -01726954 144.39167786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01726955 144.39167786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -01726956 144.39170837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01726957 144.39170837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -01726958 144.39172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01726959 144.39172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -01726960 144.39175415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01726961 144.39176941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -01726962 144.39179993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01726963 144.39179993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -01726964 144.39181519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01726965 144.39181519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -01726966 144.39184570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01726967 144.39186096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -01726968 144.39189148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01726969 144.39189148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -01726970 144.39190674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01726971 144.39190674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -01726972 144.39193726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01726973 144.39193726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -01726974 144.39196777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01726975 144.39196777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -01726976 144.39201355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01726977 144.39201355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -01726978 144.39204407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01726979 144.39204407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -01726980 144.39205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01726981 144.39205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -01726982 144.39208984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01726983 144.39210510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -01726984 144.39213562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01726985 144.39213562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -01726986 144.39215088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01726987 144.39215088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -01726988 144.39218140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01726989 144.39218140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -01726990 144.39221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01726991 144.39221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -01726992 144.39224243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01726993 144.39224243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -01726994 144.39227295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01726995 144.39227295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -01726996 144.39228821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01726997 144.39228821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -01726998 144.39231873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01726999 144.39233398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -01727000 144.39236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01727001 144.39236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -01727002 144.39237976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01727003 144.39237976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -01727004 144.39241028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01727005 144.39242554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -01727006 144.39244080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -01727007 144.39244080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -01727008 144.39247131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -01727009 144.39247131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -01727010 144.39250183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -01727011 144.39251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -01727012 144.39253235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -01727013 144.39253235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -01727014 144.39256287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -01727015 144.39256287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -01727016 144.39259338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -01727017 144.39260864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -01727018 144.39262390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -01727019 144.39262390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -01727020 144.39265442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -01727021 144.39265442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -01727022 144.39268494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -01727023 144.39268494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -01727024 144.39271545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -01727025 144.39271545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -01727026 144.39274597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -01727027 144.39274597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -01727028 144.39276123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -01727029 144.39277649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -01727030 144.39280701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -01727031 144.39280701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -01727032 144.39283752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -01727033 144.39283752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -01727034 144.39286804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -01727035 144.39286804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -01727036 144.39289856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -01727037 144.39289856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -01727038 144.39292908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -01727039 144.39292908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -01727040 144.39295959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -01727041 144.39295959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -01727042 144.39299011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -01727043 144.39299011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -01727044 144.39302063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -01727045 144.39302063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -01727046 144.39305115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -01727047 144.39305115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -01727048 144.39308167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -01727049 144.39308167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -01727050 144.39311218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -01727051 144.39311218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -01727052 144.39314270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -01727053 144.39314270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -01727054 144.39315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -01727055 144.39315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -01727056 144.39320374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -01727057 144.39320374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -01727058 144.39323425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -01727059 144.39323425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -01727060 144.39324951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -01727061 144.39326477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -01727062 144.39329529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -01727063 144.39329529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -01727064 144.39332581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -01727065 144.39332581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -01727066 144.39334106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -01727067 144.39335632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -01727068 144.39338684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -01727069 144.39338684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -01727070 144.39340210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -01727071 144.39340210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -01727072 144.39344788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -01727073 144.39344788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -01727074 144.39347839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -01727075 144.39347839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -01727076 144.39349365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -01727077 144.39350891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -01727078 144.39353943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -01727079 144.39353943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -01727080 144.39355469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -01727081 144.39355469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -01727082 144.39358521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -01727083 144.39360046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -01727084 144.39363098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -01727085 144.39363098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -01727086 144.39364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -01727087 144.39364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -01727088 144.39369202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -01727089 144.39369202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -01727090 144.39372253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -01727091 144.39372253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -01727092 144.39373779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -01727093 144.39373779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -01727094 144.39378357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -01727095 144.39378357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -01727096 144.39379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -01727097 144.39379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -01727098 144.39382935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -01727099 144.39384460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -01727100 144.39387512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -01727101 144.39387512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -01727102 144.39389038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -01727103 144.39389038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -01727104 144.39393616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -01727105 144.39393616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -01727106 144.39395142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -01727107 144.39395142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -01727108 144.39399719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -01727109 144.39401245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -01727110 144.39402771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -01727111 144.39404297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -01727112 144.39407349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -01727113 144.39407349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -01727114 144.39410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -01727115 144.39410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -01727116 144.39413452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -01727117 144.39413452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -01727118 144.39416504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -01727119 144.39416504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -01727120 144.39419556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -01727121 144.39419556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -01727122 144.39422607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -01727123 144.39422607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -01727124 144.39425659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -01727125 144.39425659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -01727126 144.39427185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -01727127 144.39428711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -01727128 144.39431763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -01727129 144.39431763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -01727130 144.39434814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -01727131 144.39434814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -01727132 144.39436340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -01727133 144.39436340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -01727134 144.39439392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -01727135 144.39439392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -01727136 144.39442444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -01727137 144.39442444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -01727138 144.39445496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -01727139 144.39445496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -01727140 144.39448547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -01727141 144.39448547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -01727142 144.39451599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -01727143 144.39451599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -01727144 144.39454651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -01727145 144.39454651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -01727146 144.39457703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -01727147 144.39457703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -01727148 144.39459229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -01727149 144.39460754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -01727150 144.39463806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -01727151 144.39463806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -01727152 144.39466858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -01727153 144.39466858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -01727154 144.39468384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -01727155 144.39469910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -01727156 144.39472961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -01727157 144.39472961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -01727158 144.39474487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -01727159 144.39474487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -01727160 144.39479065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -01727161 144.39479065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -01727162 144.39482117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -01727163 144.39482117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -01727164 144.39483643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -01727165 144.39483643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -01727166 144.39488220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -01727167 144.39488220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -01727168 144.39491272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -01727169 144.39491272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -01727170 144.39492798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -01727171 144.39494324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -01727172 144.39498901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -01727173 144.39498901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -01727174 144.39500427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -01727175 144.39500427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -01727176 144.39503479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -01727177 144.39505005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -01727178 144.39506531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -01727179 144.39506531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -01727180 144.39509583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -01727181 144.39509583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -01727182 144.39514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -01727183 144.39514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -01727184 144.39515686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -01727185 144.39515686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -01727186 144.39518738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -01727187 144.39520264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -01727188 144.39523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -01727189 144.39523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -01727190 144.39524841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -01727191 144.39524841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -01727192 144.39527893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -01727193 144.39529419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -01727194 144.39530945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -01727195 144.39530945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -01727196 144.39533997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -01727197 144.39533997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -01727198 144.39538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -01727199 144.39538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -01727200 144.39540100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -01727201 144.39540100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -01727202 144.39543152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -01727203 144.39544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -01727204 144.39546204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -01727205 144.39546204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -01727206 144.39549255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -01727207 144.39549255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -01727208 144.39552307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -01727209 144.39553833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -01727210 144.39555359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -01727211 144.39555359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -01727212 144.39558411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -01727213 144.39558411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -01727214 144.39561462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -01727215 144.39562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -01727216 144.39564514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -01727217 144.39564514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -01727218 144.39567566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -01727219 144.39567566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -01727220 144.39570618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -01727221 144.39570618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -01727222 144.39573669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -01727223 144.39573669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -01727224 144.39576721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -01727225 144.39576721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -01727226 144.39579773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -01727227 144.39579773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -01727228 144.39582825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -01727229 144.39582825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -01727230 144.39585876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -01727231 144.39585876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -01727232 144.39588928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -01727233 144.39588928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -01727234 144.39591980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -01727235 144.39591980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -01727236 144.39595032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -01727237 144.39595032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -01727238 144.39599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -01727239 144.39599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -01727240 144.39605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -01727241 144.39605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -01727242 144.39608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -01727243 144.39610291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -01727244 144.39611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -01727245 144.39611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -01727246 144.39614868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -01727247 144.39614868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -01727248 144.39617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -01727249 144.39617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -01727250 144.39620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -01727251 144.39620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -01727252 144.39624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -01727253 144.39624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -01727254 144.39627075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -01727255 144.39627075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -01727256 144.39630127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -01727257 144.39630127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -01727258 144.39633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -01727259 144.39633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -01727260 144.39636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -01727261 144.39636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -01727262 144.39639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -01727263 144.39639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -01727264 144.39642334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -01727265 144.39642334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -01727266 144.39645386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -01727267 144.39645386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -01727268 144.39648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -01727269 144.39648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -01727270 144.39651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -01727271 144.39651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -01727272 144.39654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -01727273 144.39654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -01727274 144.39657593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -01727275 144.39657593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -01727276 144.39660645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -01727277 144.39660645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -01727278 144.39663696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -01727279 144.39663696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -01727280 144.39665222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -01727281 144.39666748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -01727282 144.39669800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -01727283 144.39669800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -01727284 144.39672852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -01727285 144.39672852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -01727286 144.39675903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -01727287 144.39675903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -01727288 144.39678955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -01727289 144.39678955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -01727290 144.39682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -01727291 144.39682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -01727292 144.39685059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -01727293 144.39685059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -01727294 144.39688110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -01727295 144.39688110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -01727296 144.39689636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -01727297 144.39689636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -01727298 144.39694214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -01727299 144.39694214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -01727300 144.39698792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -01727301 144.39700317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -01727302 144.39703369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -01727303 144.39703369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -01727304 144.39704895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -01727305 144.39704895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -01727306 144.39707947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -01727307 144.39707947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -01727308 144.39710999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -01727309 144.39710999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -01727310 144.39712524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -01727311 144.39714050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -01727312 144.39717102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -01727313 144.39717102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -01727314 144.39720154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -01727315 144.39720154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -01727316 144.39723206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -01727317 144.39723206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -01727318 144.39726257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -01727319 144.39726257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -01727320 144.39729309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -01727321 144.39729309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -01727322 144.39732361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -01727323 144.39732361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -01727324 144.39735413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -01727325 144.39735413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -01727326 144.39736938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -01727327 144.39738464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -01727328 144.39741516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -01727329 144.39741516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -01727330 144.39744568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -01727331 144.39744568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -01727332 144.39746094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -01727333 144.39747620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -01727334 144.39750671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -01727335 144.39750671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -01727336 144.39752197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -01727337 144.39752197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -01727338 144.39756775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -01727339 144.39756775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -01727340 144.39759827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -01727341 144.39759827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -01727342 144.39761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -01727343 144.39761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -01727344 144.39765930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -01727345 144.39765930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -01727346 144.39768982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -01727347 144.39768982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -01727348 144.39770508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -01727349 144.39772034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -01727350 144.39775085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -01727351 144.39775085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -01727352 144.39776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -01727353 144.39776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -01727354 144.39781189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -01727355 144.39781189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -01727356 144.39784241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -01727357 144.39784241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -01727358 144.39785767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -01727359 144.39785767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -01727360 144.39790344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -01727361 144.39790344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -01727362 144.39793396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -01727363 144.39793396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -01727364 144.39794922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -01727365 144.39796448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -01727366 144.39799500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -01727367 144.39801025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -01727368 144.39802551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -01727369 144.39802551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -01727370 144.39807129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -01727371 144.39807129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -01727372 144.39808655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -01727373 144.39808655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -01727374 144.39811707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -01727375 144.39813232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -01727376 144.39816284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -01727377 144.39816284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -01727378 144.39817810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -01727379 144.39817810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -01727380 144.39820862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -01727381 144.39822388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -01727382 144.39823914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -01727383 144.39823914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -01727384 144.39826965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -01727385 144.39826965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -01727386 144.39831543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -01727387 144.39831543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -01727388 144.39833069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -01727389 144.39833069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -01727390 144.39836121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -01727391 144.39837646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -01727392 144.39840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -01727393 144.39840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -01727394 144.39842224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -01727395 144.39842224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -01727396 144.39845276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -01727397 144.39846802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -01727398 144.39848328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -01727399 144.39848328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -01727400 144.39851379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -01727401 144.39851379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -01727402 144.39855957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -01727403 144.39855957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -01727404 144.39857483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -01727405 144.39857483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -01727406 144.39860535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -01727407 144.39862061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -01727408 144.39863586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -01727409 144.39863586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -01727410 144.39866638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -01727411 144.39866638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -01727412 144.39869690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -01727413 144.39871216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -01727414 144.39872742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -01727415 144.39872742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -01727416 144.39875793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -01727417 144.39875793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -01727418 144.39880371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -01727419 144.39880371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -01727420 144.39881897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -01727421 144.39881897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -01727422 144.39884949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -01727423 144.39884949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -01727424 144.39888000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -01727425 144.39888000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -01727426 144.39891052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -01727427 144.39891052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -01727428 144.39894104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -01727429 144.39895630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -01727430 144.39898682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -01727431 144.39898682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -01727432 144.39901733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -01727433 144.39901733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -01727434 144.39903259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -01727435 144.39904785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -01727436 144.39907837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -01727437 144.39907837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -01727438 144.39910889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -01727439 144.39910889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -01727440 144.39913940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -01727441 144.39913940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -01727442 144.39916992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -01727443 144.39916992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -01727444 144.39920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -01727445 144.39920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -01727446 144.39923096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -01727447 144.39923096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -01727448 144.39926147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -01727449 144.39926147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -01727450 144.39927673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -01727451 144.39929199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -01727452 144.39932251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -01727453 144.39932251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -01727454 144.39935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -01727455 144.39935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -01727456 144.39936829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -01727457 144.39938354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -01727458 144.39941406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -01727459 144.39941406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -01727460 144.39942932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -01727461 144.39942932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -01727462 144.39947510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -01727463 144.39947510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -01727464 144.39950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -01727465 144.39950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -01727466 144.39952087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -01727467 144.39953613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -01727468 144.39956665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -01727469 144.39956665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -01727470 144.39959717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -01727471 144.39959717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -01727472 144.39961243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -01727473 144.39962769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -01727474 144.39965820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -01727475 144.39965820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -01727476 144.39967346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -01727477 144.39967346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -01727478 144.39971924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -01727479 144.39971924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -01727480 144.39974976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -01727481 144.39974976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -01727482 144.39976501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -01727483 144.39978027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -01727484 144.39981079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -01727485 144.39981079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -01727486 144.39982605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -01727487 144.39982605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -01727488 144.39985657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -01727489 144.39987183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -01727490 144.39990234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -01727491 144.39990234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -01727492 144.39991760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -01727493 144.39991760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -01727494 144.39996338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -01727495 144.39996338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -01727496 144.39999390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -01727497 144.39999390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -01727498 144.40003967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -01727499 144.40003967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -01727500 144.40007019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -01727501 144.40007019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -01727502 144.40008545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -01727503 144.40008545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -01727504 144.40013123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -01727505 144.40013123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -01727506 144.40014648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -01727507 144.40014648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -01727508 144.40017700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -01727509 144.40019226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -01727510 144.40022278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -01727511 144.40022278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -01727512 144.40023804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -01727513 144.40023804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -01727514 144.40026855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -01727515 144.40026855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -01727516 144.40031433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -01727517 144.40031433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -01727518 144.40032959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -01727519 144.40032959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -01727520 144.40036011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -01727521 144.40036011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -01727522 144.40039063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -01727523 144.40039063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -01727524 144.40042114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -01727525 144.40042114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -01727526 144.40045166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -01727527 144.40045166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -01727528 144.40048218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -01727529 144.40048218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -01727530 144.40051270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -01727531 144.40051270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -01727532 144.40054321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -01727533 144.40054321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -01727534 144.40057373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -01727535 144.40057373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -01727536 144.40060425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -01727537 144.40060425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -01727538 144.40063477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -01727539 144.40063477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -01727540 144.40066528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -01727541 144.40066528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -01727542 144.40069580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -01727543 144.40069580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -01727544 144.40071106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -01727545 144.40072632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -01727546 144.40075684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -01727547 144.40075684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -01727548 144.40078735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -01727549 144.40078735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -01727550 144.40081787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -01727551 144.40081787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -01727552 144.40084839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -01727553 144.40084839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -01727554 144.40086365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -01727555 144.40086365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -01727556 144.40090942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -01727557 144.40090942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -01727558 144.40093994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -01727559 144.40093994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -01727560 144.40100098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -01727561 144.40100098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -01727562 144.40103149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -01727563 144.40103149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -01727564 144.40106201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -01727565 144.40106201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -01727566 144.40109253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -01727567 144.40110779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -01727568 144.40112305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -01727569 144.40112305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -01727570 144.40115356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -01727571 144.40115356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -01727572 144.40118408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -01727573 144.40118408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -01727574 144.40121460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -01727575 144.40121460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -01727576 144.40124512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -01727577 144.40124512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -01727578 144.40127563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -01727579 144.40127563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -01727580 144.40130615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -01727581 144.40130615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -01727582 144.40133667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -01727583 144.40133667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -01727584 144.40136719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -01727585 144.40136719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -01727586 144.40139771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -01727587 144.40139771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -01727588 144.40142822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -01727589 144.40142822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -01727590 144.40145874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -01727591 144.40145874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -01727592 144.40148926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -01727593 144.40148926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -01727594 144.40150452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -01727595 144.40151978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -01727596 144.40155029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -01727597 144.40155029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -01727598 144.40158081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01727599 144.40158081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -01727600 144.40161133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01727601 144.40161133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -01727602 144.40164185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01727603 144.40164185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -01727604 144.40165710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01727605 144.40167236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -01727606 144.40170288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01727607 144.40170288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -01727608 144.40173340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01727609 144.40173340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -01727610 144.40174866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01727611 144.40176392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -01727612 144.40179443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01727613 144.40179443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -01727614 144.40182495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01727615 144.40182495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -01727616 144.40185547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01727617 144.40185547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -01727618 144.40188599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01727619 144.40188599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -01727620 144.40190125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01727621 144.40191650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -01727622 144.40194702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01727623 144.40194702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -01727624 144.40197754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01727625 144.40197754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -01727626 144.40200806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01727627 144.40202332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -01727628 144.40205383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01727629 144.40205383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -01727630 144.40206909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01727631 144.40206909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -01727632 144.40209961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01727633 144.40211487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -01727634 144.40213013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01727635 144.40213013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -01727636 144.40216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01727637 144.40216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -01727638 144.40220642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01727639 144.40220642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -01727640 144.40222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01727641 144.40222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -01727642 144.40225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -01727643 144.40225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -01727644 144.40229797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -01727645 144.40229797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -01727646 144.40231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -01727647 144.40231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -01727648 144.40234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -01727649 144.40234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -01727650 144.40237427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -01727651 144.40237427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -01727652 144.40240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -01727653 144.40240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -01727654 144.40243530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -01727655 144.40245056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -01727656 144.40246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -01727657 144.40246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -01727658 144.40249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -01727659 144.40249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -01727660 144.40252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -01727661 144.40252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -01727662 144.40255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -01727663 144.40255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -01727664 144.40258789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -01727665 144.40258789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -01727666 144.40261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -01727667 144.40261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -01727668 144.40264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -01727669 144.40264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -01727670 144.40267944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -01727671 144.40267944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -01727672 144.40270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -01727673 144.40270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -01727674 144.40274048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -01727675 144.40274048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -01727676 144.40277100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -01727677 144.40277100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -01727678 144.40280151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -01727679 144.40280151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -01727680 144.40283203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -01727681 144.40283203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -01727682 144.40284729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -01727683 144.40286255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -01727684 144.40289307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -01727685 144.40289307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -01727686 144.40292358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -01727687 144.40292358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -01727688 144.40293884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -01727689 144.40295410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -01727690 144.40301514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -01727691 144.40301514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -01727692 144.40304565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -01727693 144.40304565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -01727694 144.40307617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -01727695 144.40307617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -01727696 144.40310669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -01727697 144.40310669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -01727698 144.40313721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -01727699 144.40313721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -01727700 144.40316772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -01727701 144.40316772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -01727702 144.40319824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -01727703 144.40319824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -01727704 144.40322876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -01727705 144.40322876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -01727706 144.40324402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -01727707 144.40325928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -01727708 144.40328979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -01727709 144.40328979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -01727710 144.40332031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -01727711 144.40332031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -01727712 144.40333557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -01727713 144.40333557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -01727714 144.40336609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -01727715 144.40338135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -01727716 144.40341187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -01727717 144.40341187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -01727718 144.40342712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -01727719 144.40342712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -01727720 144.40345764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -01727721 144.40347290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -01727722 144.40348816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -01727723 144.40348816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -01727724 144.40351868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -01727725 144.40351868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -01727726 144.40354919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -01727727 144.40356445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -01727728 144.40357971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -01727729 144.40357971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -01727730 144.40361023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -01727731 144.40361023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -01727732 144.40364075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -01727733 144.40364075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -01727734 144.40367126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -01727735 144.40367126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -01727736 144.40370178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -01727737 144.40370178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -01727738 144.40373230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -01727739 144.40373230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -01727740 144.40376282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -01727741 144.40376282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -01727742 144.40379333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -01727743 144.40379333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -01727744 144.40380859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -01727745 144.40382385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -01727746 144.40385437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -01727747 144.40385437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -01727748 144.40388489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -01727749 144.40388489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -01727750 144.40390015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -01727751 144.40391541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -01727752 144.40394592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -01727753 144.40394592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -01727754 144.40397644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -01727755 144.40402222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -01727756 144.40405273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -01727757 144.40405273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -01727758 144.40409851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -01727759 144.40411377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -01727760 144.40412903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -01727761 144.40414429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -01727762 144.40419006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -01727763 144.40419006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -01727764 144.40428162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -01727765 144.40428162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -01727766 144.40431213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -01727767 144.40431213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -01727768 144.40434265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -01727769 144.40434265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -01727770 144.40435791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -01727771 144.40437317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -01727772 144.40440369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -01727773 144.40440369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -01727774 144.40443420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -01727775 144.40443420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -01727776 144.40444946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -01727777 144.40444946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -01727778 144.40449524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -01727779 144.40449524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -01727780 144.40452576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -01727781 144.40452576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -01727782 144.40454102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -01727783 144.40454102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -01727784 144.40457153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -01727785 144.40457153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -01727786 144.40460205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -01727787 144.40460205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -01727788 144.40463257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -01727789 144.40463257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -01727790 144.40466309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -01727791 144.40466309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -01727792 144.40467834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -01727793 144.40467834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -01727794 144.40470886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -01727795 144.40472412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -01727796 144.40475464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -01727797 144.40475464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -01727798 144.40476990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -01727799 144.40476990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -01727800 144.40480042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -01727801 144.40480042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -01727802 144.40483093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -01727803 144.40483093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -01727804 144.40486145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -01727805 144.40486145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -01727806 144.40489197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -01727807 144.40489197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -01727808 144.40492249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -01727809 144.40492249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -01727810 144.40495300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -01727811 144.40495300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -01727812 144.40499878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -01727813 144.40499878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -01727814 144.40502930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -01727815 144.40504456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -01727816 144.40507507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -01727817 144.40507507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -01727818 144.40515137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -01727819 144.40515137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -01727820 144.40516663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -01727821 144.40518188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -01727822 144.40521240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -01727823 144.40521240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -01727824 144.40522766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -01727825 144.40522766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -01727826 144.40525818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -01727827 144.40525818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -01727828 144.40528870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -01727829 144.40530396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -01727830 144.40531921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -01727831 144.40531921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -01727832 144.40534973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -01727833 144.40534973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -01727834 144.40538025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -01727835 144.40538025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -01727836 144.40539551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -01727837 144.40539551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -01727838 144.40544128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -01727839 144.40544128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -01727840 144.40547180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -01727841 144.40547180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -01727842 144.40548706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -01727843 144.40548706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -01727844 144.40551758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -01727845 144.40551758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -01727846 144.40554810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -01727847 144.40554810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -01727848 144.40557861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -01727849 144.40557861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -01727850 144.40560913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -01727851 144.40560913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -01727852 144.40562439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -01727853 144.40562439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -01727854 144.40565491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -01727855 144.40565491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -01727856 144.40568542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -01727857 144.40570068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -01727858 144.40571594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -01727859 144.40571594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -01727860 144.40574646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -01727861 144.40574646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -01727862 144.40577698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -01727863 144.40579224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -01727864 144.40580750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -01727865 144.40580750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -01727866 144.40583801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -01727867 144.40583801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -01727868 144.40586853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -01727869 144.40586853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -01727870 144.40589905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -01727871 144.40589905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -01727872 144.40592957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -01727873 144.40592957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -01727874 144.40594482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -01727875 144.40596008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -01727876 144.40600586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -01727877 144.40600586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -01727878 144.40603638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -01727879 144.40603638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -01727880 144.40605164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -01727881 144.40606689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -01727882 144.40609741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -01727883 144.40609741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -01727884 144.40611267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -01727885 144.40611267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -01727886 144.40614319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -01727887 144.40614319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -01727888 144.40617371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -01727889 144.40618896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -01727890 144.40620422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -01727891 144.40620422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -01727892 144.40623474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -01727893 144.40623474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -01727894 144.40626526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -01727895 144.40626526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -01727896 144.40629578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -01727897 144.40629578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -01727898 144.40632629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -01727899 144.40632629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -01727900 144.40634155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -01727901 144.40635681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -01727902 144.40638733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -01727903 144.40638733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -01727904 144.40641785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -01727905 144.40641785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -01727906 144.40643311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -01727907 144.40643311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -01727908 144.40646362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -01727909 144.40647888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -01727910 144.40650940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -01727911 144.40650940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -01727912 144.40652466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -01727913 144.40652466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -01727914 144.40655518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -01727915 144.40655518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -01727916 144.40658569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -01727917 144.40658569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -01727918 144.40661621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -01727919 144.40661621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -01727920 144.40664673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -01727921 144.40664673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -01727922 144.40666199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -01727923 144.40666199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -01727924 144.40669250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -01727925 144.40669250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -01727926 144.40672302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -01727927 144.40673828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -01727928 144.40675354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -01727929 144.40675354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -01727930 144.40678406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -01727931 144.40678406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -01727932 144.40681458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -01727933 144.40681458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -01727934 144.40682983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -01727935 144.40682983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -01727936 144.40686035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -01727937 144.40687561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -01727938 144.40690613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -01727939 144.40690613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -01727940 144.40692139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -01727941 144.40692139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -01727942 144.40695190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -01727943 144.40696716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -01727944 144.40699768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -01727945 144.40699768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -01727946 144.40702820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -01727947 144.40704346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -01727948 144.40705872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -01727949 144.40705872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -01727950 144.40708923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -01727951 144.40708923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -01727952 144.40711975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -01727953 144.40711975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -01727954 144.40713501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -01727955 144.40713501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -01727956 144.40716553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -01727957 144.40718079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -01727958 144.40721130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -01727959 144.40721130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -01727960 144.40722656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -01727961 144.40722656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -01727962 144.40725708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -01727963 144.40725708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -01727964 144.40728760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -01727965 144.40728760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -01727966 144.40730286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -01727967 144.40731812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -01727968 144.40734863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -01727969 144.40734863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -01727970 144.40737915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -01727971 144.40737915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -01727972 144.40739441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -01727973 144.40739441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -01727974 144.40742493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -01727975 144.40742493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -01727976 144.40745544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -01727977 144.40745544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -01727978 144.40748596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -01727979 144.40748596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -01727980 144.40751648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -01727981 144.40751648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -01727982 144.40753174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -01727983 144.40753174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -01727984 144.40756226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -01727985 144.40756226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -01727986 144.40759277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -01727987 144.40760803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -01727988 144.40762329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -01727989 144.40762329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -01727990 144.40765381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -01727991 144.40765381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -01727992 144.40768433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -01727993 144.40768433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -01727994 144.40769958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -01727995 144.40769958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -01727996 144.40773010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -01727997 144.40774536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -01727998 144.40777588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -01727999 144.40777588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -01728000 144.40779114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -01728001 144.40779114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -01728002 144.40782166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -01728003 144.40782166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -01728004 144.40785217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -01728005 144.40785217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -01728006 144.40786743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -01728007 144.40788269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -01728008 144.40791321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -01728009 144.40791321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -01728010 144.40792847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -01728011 144.40792847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -01728012 144.40797424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -01728013 144.40797424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -01728014 144.40800476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -01728015 144.40802002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -01728016 144.40803528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -01728017 144.40803528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -01728018 144.40806580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -01728019 144.40806580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -01728020 144.40809631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -01728021 144.40809631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -01728022 144.40811157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -01728023 144.40811157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -01728024 144.40814209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -01728025 144.40815735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -01728026 144.40817261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -01728027 144.40817261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -01728028 144.40820313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -01728029 144.40820313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -01728030 144.40823364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -01728031 144.40823364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -01728032 144.40824890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -01728033 144.40824890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -01728034 144.40827942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -01728035 144.40829468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -01728036 144.40832520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -01728037 144.40832520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -01728038 144.40834045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -01728039 144.40834045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -01728040 144.40837097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -01728041 144.40837097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -01728042 144.40840149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -01728043 144.40840149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -01728044 144.40841675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -01728045 144.40841675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -01728046 144.40844727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -01728047 144.40846252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -01728048 144.40849304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -01728049 144.40849304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -01728050 144.40850830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -01728051 144.40850830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -01728052 144.40853882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -01728053 144.40853882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -01728054 144.40856934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -01728055 144.40856934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -01728056 144.40858459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -01728057 144.40859985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -01728058 144.40863037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -01728059 144.40863037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -01728060 144.40864563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -01728061 144.40864563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -01728062 144.40867615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -01728063 144.40867615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -01728064 144.40870667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -01728065 144.40870667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -01728066 144.40873718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -01728067 144.40873718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -01728068 144.40876770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -01728069 144.40876770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -01728070 144.40879822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -01728071 144.40879822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -01728072 144.40881348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -01728073 144.40881348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -01728074 144.40884399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -01728075 144.40884399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -01728076 144.40887451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -01728077 144.40888977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -01728078 144.40890503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -01728079 144.40890503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -01728080 144.40893555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -01728081 144.40893555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -01728082 144.40898132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -01728083 144.40899658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -01728084 144.40902710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -01728085 144.40902710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -01728086 144.40904236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -01728087 144.40904236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -01728088 144.40907288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -01728089 144.40907288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -01728090 144.40910339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -01728091 144.40910339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -01728092 144.40913391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -01728093 144.40913391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -01728094 144.40916443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -01728095 144.40916443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -01728096 144.40919495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -01728097 144.40919495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -01728098 144.40921021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -01728099 144.40921021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -01728100 144.40924072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -01728101 144.40924072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -01728102 144.40927124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -01728103 144.40928650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -01728104 144.40930176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -01728105 144.40930176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -01728106 144.40933228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -01728107 144.40933228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -01728108 144.40936279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -01728109 144.40936279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -01728110 144.40937805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -01728111 144.40937805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -01728112 144.40940857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -01728113 144.40942383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -01728114 144.40943909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -01728115 144.40943909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -01728116 144.40946960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -01728117 144.40946960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -01728118 144.40950012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -01728119 144.40950012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -01728120 144.40953064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -01728121 144.40953064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -01728122 144.40954590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -01728123 144.40956116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -01728124 144.40959167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -01728125 144.40959167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -01728126 144.40960693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -01728127 144.40960693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -01728128 144.40963745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -01728129 144.40963745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -01728130 144.40966797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -01728131 144.40966797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -01728132 144.40968323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -01728133 144.40969849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -01728134 144.40972900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -01728135 144.40972900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -01728136 144.40975952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -01728137 144.40975952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -01728138 144.40977478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -01728139 144.40977478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -01728140 144.40980530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -01728141 144.40980530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -01728142 144.40983582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -01728143 144.40983582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -01728144 144.40986633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -01728145 144.40986633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -01728146 144.40989685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -01728147 144.40989685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -01728148 144.40992737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -01728149 144.40992737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -01728150 144.40994263 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -01728151 144.40995789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -01728152 144.41000366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -01728153 144.41000366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -01728154 144.41003418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -01728155 144.41003418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -01728156 144.41006470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -01728157 144.41006470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -01728158 144.41007996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -01728159 144.41007996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -01728160 144.41011047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -01728161 144.41012573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -01728162 144.41015625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -01728163 144.41015625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -01728164 144.41017151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -01728165 144.41017151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -01728166 144.41020203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -01728167 144.41020203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -01728168 144.41023254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -01728169 144.41023254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -01728170 144.41024780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -01728171 144.41026306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -01728172 144.41029358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -01728173 144.41029358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -01728174 144.41032410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -01728175 144.41032410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -01728176 144.41033936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -01728177 144.41033936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -01728178 144.41036987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -01728179 144.41036987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -01728180 144.41040039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -01728181 144.41040039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -01728182 144.41043091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -01728183 144.41043091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -01728184 144.41046143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -01728185 144.41046143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -01728186 144.41047668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -01728187 144.41047668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -01728188 144.41050720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -01728189 144.41050720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -01728190 144.41053772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -01728191 144.41055298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -01728192 144.41056824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -01728193 144.41056824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -01728194 144.41059875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -01728195 144.41059875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -01728196 144.41062927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -01728197 144.41062927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -01728198 144.41064453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -01728199 144.41064453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -01728200 144.41067505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -01728201 144.41069031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -01728202 144.41072083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -01728203 144.41072083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -01728204 144.41075134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -01728205 144.41075134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -01728206 144.41078186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -01728207 144.41079712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -01728208 144.41082764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -01728209 144.41082764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -01728210 144.41085815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -01728211 144.41085815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -01728212 144.41087341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -01728213 144.41088867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -01728214 144.41091919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -01728215 144.41091919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -01728216 144.41094971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -01728217 144.41094971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -01728218 144.41098022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -01728219 144.41099548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -01728220 144.41102600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -01728221 144.41102600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -01728222 144.41104126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -01728223 144.41104126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -01728224 144.41107178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -01728225 144.41108704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -01728226 144.41111755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -01728227 144.41111755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -01728228 144.41113281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -01728229 144.41113281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -01728230 144.41116333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -01728231 144.41116333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -01728232 144.41119385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -01728233 144.41119385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -01728234 144.41120911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -01728235 144.41122437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -01728236 144.41125488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -01728237 144.41125488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -01728238 144.41127014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -01728239 144.41127014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -01728240 144.41130066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -01728241 144.41130066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -01728242 144.41133118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -01728243 144.41133118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -01728244 144.41134644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -01728245 144.41136169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -01728246 144.41139221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -01728247 144.41139221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -01728248 144.41142273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -01728249 144.41142273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -01728250 144.41143799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -01728251 144.41143799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -01728252 144.41146851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -01728253 144.41146851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -01728254 144.41149902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -01728255 144.41151428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -01728256 144.41152954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -01728257 144.41152954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -01728258 144.41156006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -01728259 144.41156006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -01728260 144.41159058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -01728261 144.41159058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -01728262 144.41160583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -01728263 144.41160583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -01728264 144.41163635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -01728265 144.41165161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -01728266 144.41166687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -01728267 144.41166687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -01728268 144.41169739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -01728269 144.41169739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -01728270 144.41172791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -01728271 144.41172791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -01728272 144.41174316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -01728273 144.41174316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -01728274 144.41177368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -01728275 144.41177368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -01728276 144.41181946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -01728277 144.41181946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -01728278 144.41183472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -01728279 144.41183472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -01728280 144.41186523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -01728281 144.41186523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -01728282 144.41189575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -01728283 144.41189575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -01728284 144.41191101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -01728285 144.41192627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -01728286 144.41195679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -01728287 144.41195679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -01728288 144.41198730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -01728289 144.41198730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -01728290 144.41206360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -01728291 144.41206360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -01728292 144.41209412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -01728293 144.41209412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -01728294 144.41212463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -01728295 144.41212463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -01728296 144.41213989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -01728297 144.41213989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -01728298 144.41217041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -01728299 144.41218567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -01728300 144.41221619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -01728301 144.41221619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -01728302 144.41223145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -01728303 144.41223145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -01728304 144.41226196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -01728305 144.41226196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -01728306 144.41229248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -01728307 144.41229248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -01728308 144.41230774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -01728309 144.41232300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -01728310 144.41235352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -01728311 144.41235352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -01728312 144.41238403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -01728313 144.41238403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -01728314 144.41239929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -01728315 144.41239929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -01728316 144.41242981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -01728317 144.41242981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -01728318 144.41246033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -01728319 144.41246033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -01728320 144.41247559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -01728321 144.41249084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -01728322 144.41252136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -01728323 144.41252136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -01728324 144.41253662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -01728325 144.41253662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -01728326 144.41256714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -01728327 144.41256714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -01728328 144.41259766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -01728329 144.41259766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -01728330 144.41262817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -01728331 144.41262817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -01728332 144.41265869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -01728333 144.41265869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -01728334 144.41268921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -01728335 144.41268921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -01728336 144.41270447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -01728337 144.41270447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -01728338 144.41273499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -01728339 144.41273499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -01728340 144.41276550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -01728341 144.41278076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -01728342 144.41279602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -01728343 144.41279602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -01728344 144.41282654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -01728345 144.41282654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -01728346 144.41285706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -01728347 144.41285706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -01728348 144.41287231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -01728349 144.41287231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -01728350 144.41290283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -01728351 144.41291809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -01728352 144.41293335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -01728353 144.41293335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -01728354 144.41299438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -01728355 144.41299438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -01728356 144.41302490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -01728357 144.41302490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -01728358 144.41305542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -01728359 144.41305542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -01728360 144.41308594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -01728361 144.41308594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -01728362 144.41310120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -01728363 144.41310120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -01728364 144.41313171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -01728365 144.41313171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -01728366 144.41316223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -01728367 144.41317749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -01728368 144.41319275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -01728369 144.41319275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -01728370 144.41322327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -01728371 144.41322327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -01728372 144.41325378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -01728373 144.41325378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -01728374 144.41326904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -01728375 144.41326904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -01728376 144.41329956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -01728377 144.41331482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -01728378 144.41333008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -01728379 144.41333008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -01728380 144.41336060 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -01728381 144.41336060 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -01728382 144.41339111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -01728383 144.41339111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -01728384 144.41342163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -01728385 144.41342163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -01728386 144.41343689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -01728387 144.41345215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -01728388 144.41348267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -01728389 144.41348267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -01728390 144.41349792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -01728391 144.41349792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -01728392 144.41352844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -01728393 144.41352844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -01728394 144.41355896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -01728395 144.41355896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -01728396 144.41357422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -01728397 144.41358948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -01728398 144.41362000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -01728399 144.41362000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -01728400 144.41365051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -01728401 144.41365051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -01728402 144.41366577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -01728403 144.41366577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -01728404 144.41369629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -01728405 144.41369629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -01728406 144.41372681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -01728407 144.41372681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -01728408 144.41374207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -01728409 144.41375732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -01728410 144.41378784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -01728411 144.41378784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -01728412 144.41381836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -01728413 144.41381836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -01728414 144.41383362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -01728415 144.41383362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -01728416 144.41386414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -01728417 144.41386414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -01728418 144.41389465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -01728419 144.41389465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -01728420 144.41392517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -01728421 144.41392517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -01728422 144.41395569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -01728423 144.41395569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -01728424 144.41397095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -01728425 144.41398621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -01728426 144.41401672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -01728427 144.41401672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -01728428 144.41404724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -01728429 144.41404724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -01728430 144.41406250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -01728431 144.41406250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -01728432 144.41409302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -01728433 144.41409302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -01728434 144.41412354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -01728435 144.41413879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -01728436 144.41415405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -01728437 144.41415405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -01728438 144.41418457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -01728439 144.41418457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -01728440 144.41421509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -01728441 144.41421509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -01728442 144.41423035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -01728443 144.41423035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -01728444 144.41426086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -01728445 144.41427612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -01728446 144.41429138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -01728447 144.41429138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -01728448 144.41432190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -01728449 144.41432190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -01728450 144.41435242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -01728451 144.41435242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -01728452 144.41436768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -01728453 144.41436768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -01728454 144.41439819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -01728455 144.41441345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -01728456 144.41444397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -01728457 144.41444397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -01728458 144.41445923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -01728459 144.41445923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -01728460 144.41448975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -01728461 144.41448975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -01728462 144.41452026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -01728463 144.41452026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -01728464 144.41453552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -01728465 144.41455078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -01728466 144.41458130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -01728467 144.41458130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -01728468 144.41461182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -01728469 144.41461182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -01728470 144.41462708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -01728471 144.41462708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -01728472 144.41465759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -01728473 144.41465759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -01728474 144.41468811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -01728475 144.41468811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -01728476 144.41471863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -01728477 144.41471863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -01728478 144.41474915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -01728479 144.41474915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -01728480 144.41476440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -01728481 144.41476440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -01728482 144.41479492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -01728483 144.41479492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -01728484 144.41482544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -01728485 144.41484070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -01728486 144.41485596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -01728487 144.41485596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -01728488 144.41488647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -01728489 144.41488647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -01728490 144.41491699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -01728491 144.41491699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -01728492 144.41493225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -01728493 144.41493225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -01728494 144.41497803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -01728495 144.41499329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -01728496 144.41500854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -01728497 144.41502380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -01728498 144.41505432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -01728499 144.41506958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -01728500 144.41508484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -01728501 144.41508484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -01728502 144.41511536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01728503 144.41513062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01728504 144.41516113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01728505 144.41516113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01728506 144.41517639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01728507 144.41517639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01728508 144.41520691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01728509 144.41520691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01728510 144.41523743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01728511 144.41523743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01728512 144.41525269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01728513 144.41526794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01728514 144.41529846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01728515 144.41529846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01728516 144.41532898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01728517 144.41532898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01728518 144.41534424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01728519 144.41534424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01728520 144.41537476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01728521 144.41537476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01728522 144.41540527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01728523 144.41540527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01728524 144.41543579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -01728525 144.41543579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -01728526 144.41546631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -01728527 144.41546631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -01728528 144.41548157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -01728529 144.41548157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -01728530 144.41551208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -01728531 144.41551208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -01728532 144.41554260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -01728533 144.41555786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -01728534 144.41557312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -01728535 144.41557312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -01728536 144.41560364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -01728537 144.41560364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -01728538 144.41563416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -01728539 144.41563416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -01728540 144.41564941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -01728541 144.41564941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -01728542 144.41567993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -01728543 144.41569519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -01728544 144.41572571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -01728545 144.41572571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -01728546 144.41574097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -01728547 144.41574097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -01728548 144.41577148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -01728549 144.41577148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -01728550 144.41580200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -01728551 144.41580200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -01728552 144.41581726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -01728553 144.41583252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -01728554 144.41586304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -01728555 144.41586304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -01728556 144.41587830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -01728557 144.41587830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -01728558 144.41590881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -01728559 144.41590881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -01728560 144.41593933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -01728561 144.41593933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -01728562 144.41596985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -01728563 144.41596985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -01728564 144.41601563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -01728565 144.41603088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -01728566 144.41604614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -01728567 144.41604614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -01728568 144.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -01728569 144.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -01728570 144.41610718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -01728571 144.41610718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -01728572 144.41612244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -01728573 144.41612244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -01728574 144.41615295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -01728575 144.41616821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -01728576 144.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -01728577 144.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -01728578 144.41621399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -01728579 144.41621399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -01728580 144.41624451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -01728581 144.41624451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -01728582 144.41627502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -01728583 144.41627502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -01728584 144.41629028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -01728585 144.41630554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -01728586 144.41633606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -01728587 144.41633606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -01728588 144.41635132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -01728589 144.41635132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -01728590 144.41638184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -01728591 144.41638184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -01728592 144.41641235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -01728593 144.41641235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -01728594 144.41642761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -01728595 144.41644287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -01728596 144.41647339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -01728597 144.41647339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -01728598 144.41650391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -01728599 144.41650391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -01728600 144.41651917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -01728601 144.41651917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -01728602 144.41654968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -01728603 144.41654968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -01728604 144.41658020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -01728605 144.41659546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -01728606 144.41661072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -01728607 144.41661072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -01728608 144.41664124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -01728609 144.41664124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -01728610 144.41667175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -01728611 144.41667175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -01728612 144.41668701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -01728613 144.41668701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -01728614 144.41671753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -01728615 144.41671753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -01728616 144.41674805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -01728617 144.41674805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -01728618 144.41677856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -01728619 144.41677856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -01728620 144.41680908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -01728621 144.41680908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -01728622 144.41683960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -01728623 144.41683960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -01728624 144.41685486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -01728625 144.41685486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -01728626 144.41688538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -01728627 144.41690063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -01728628 144.41691589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -01728629 144.41691589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -01728630 144.41697693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -01728631 144.41697693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -01728632 144.41699219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -01728633 144.41700745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -01728634 144.41703796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -01728635 144.41703796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -01728636 144.41706848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -01728637 144.41706848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -01728638 144.41708374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -01728639 144.41708374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -01728640 144.41711426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -01728641 144.41711426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -01728642 144.41714478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -01728643 144.41714478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -01728644 144.41717529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -01728645 144.41717529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -01728646 144.41720581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -01728647 144.41720581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -01728648 144.41723633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -01728649 144.41723633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -01728650 144.41725159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -01728651 144.41725159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -01728652 144.41728210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -01728653 144.41729736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -01728654 144.41731262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -01728655 144.41731262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -01728656 144.41734314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -01728657 144.41734314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -01728658 144.41737366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -01728659 144.41737366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -01728660 144.41738892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -01728661 144.41738892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -01728662 144.41741943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -01728663 144.41743469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -01728664 144.41746521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -01728665 144.41746521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -01728666 144.41748047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -01728667 144.41748047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -01728668 144.41751099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -01728669 144.41751099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -01728670 144.41754150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -01728671 144.41754150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -01728672 144.41755676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -01728673 144.41757202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -01728674 144.41760254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -01728675 144.41760254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -01728676 144.41763306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -01728677 144.41763306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -01728678 144.41764832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -01728679 144.41764832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -01728680 144.41767883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -01728681 144.41767883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -01728682 144.41770935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -01728683 144.41770935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -01728684 144.41773987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -01728685 144.41773987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -01728686 144.41777039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -01728687 144.41777039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -01728688 144.41778564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -01728689 144.41778564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -01728690 144.41781616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -01728691 144.41781616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -01728692 144.41784668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -01728693 144.41786194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -01728694 144.41787720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -01728695 144.41787720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -01728696 144.41790771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -01728697 144.41790771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -01728698 144.41793823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -01728699 144.41793823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -01728700 144.41796875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -01728701 144.41796875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -01728702 144.41801453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -01728703 144.41801453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -01728704 144.41806030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -01728705 144.41806030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -01728706 144.41809082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -01728707 144.41809082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -01728708 144.41810608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -01728709 144.41810608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -01728710 144.41813660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -01728711 144.41815186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -01728712 144.41818237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -01728713 144.41818237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -01728714 144.41819763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -01728715 144.41819763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -01728716 144.41822815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -01728717 144.41822815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -01728718 144.41825867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -01728719 144.41825867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -01728720 144.41827393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -01728721 144.41828918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -01728722 144.41831970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -01728723 144.41831970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -01728724 144.41833496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -01728725 144.41833496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -01728726 144.41836548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -01728727 144.41836548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -01728728 144.41839600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -01728729 144.41839600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -01728730 144.41842651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -01728731 144.41842651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -01728732 144.41845703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -01728733 144.41845703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -01728734 144.41848755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -01728735 144.41848755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -01728736 144.41850281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -01728737 144.41850281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -01728738 144.41853333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -01728739 144.41853333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -01728740 144.41856384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -01728741 144.41856384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -01728742 144.41857910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -01728743 144.41859436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -01728744 144.41862488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -01728745 144.41862488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -01728746 144.41865540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -01728747 144.41865540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -01728748 144.41867065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -01728749 144.41867065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -01728750 144.41870117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -01728751 144.41870117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -01728752 144.41873169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -01728753 144.41873169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -01728754 144.41876221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -01728755 144.41876221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -01728756 144.41879272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -01728757 144.41879272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -01728758 144.41882324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -01728759 144.41882324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -01728760 144.41883850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -01728761 144.41883850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -01728762 144.41886902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -01728763 144.41888428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -01728764 144.41889954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -01728765 144.41889954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -01728766 144.41893005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -01728767 144.41893005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -01728768 144.41897583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -01728769 144.41897583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -01728770 144.41900635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -01728771 144.41900635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -01728772 144.41903687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -01728773 144.41903687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -01728774 144.41905212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -01728775 144.41906738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -01728776 144.41909790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -01728777 144.41909790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -01728778 144.41912842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -01728779 144.41912842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -01728780 144.41914368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -01728781 144.41914368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -01728782 144.41917419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -01728783 144.41917419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -01728784 144.41920471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -01728785 144.41921997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -01728786 144.41923523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -01728787 144.41923523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -01728788 144.41926575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -01728789 144.41926575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -01728790 144.41929626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -01728791 144.41929626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -01728792 144.41931152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -01728793 144.41931152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -01728794 144.41934204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -01728795 144.41934204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -01728796 144.41937256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -01728797 144.41937256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -01728798 144.41940308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -01728799 144.41940308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -01728800 144.41943359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -01728801 144.41943359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -01728802 144.41944885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -01728803 144.41944885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -01728804 144.41947937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -01728805 144.41947937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -01728806 144.41950989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -01728807 144.41952515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -01728808 144.41954041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -01728809 144.41954041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -01728810 144.41957092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -01728811 144.41957092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -01728812 144.41960144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -01728813 144.41960144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -01728814 144.41961670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -01728815 144.41961670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -01728816 144.41964722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -01728817 144.41966248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -01728818 144.41969299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -01728819 144.41969299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -01728820 144.41970825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -01728821 144.41970825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -01728822 144.41973877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -01728823 144.41973877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -01728824 144.41976929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -01728825 144.41976929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -01728826 144.41978455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -01728827 144.41979980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -01728828 144.41983032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -01728829 144.41983032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -01728830 144.41984558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -01728831 144.41984558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -01728832 144.41987610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -01728833 144.41987610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -01728834 144.41990662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -01728835 144.41990662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -01728836 144.41993713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -01728837 144.41993713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -01728838 144.41998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -01728839 144.41998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -01728840 144.42001343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -01728841 144.42001343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -01728842 144.42002869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -01728843 144.42002869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -01728844 144.42005920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -01728845 144.42007446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -01728846 144.42008972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -01728847 144.42008972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -01728848 144.42012024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -01728849 144.42012024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -01728850 144.42015076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -01728851 144.42015076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -01728852 144.42016602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -01728853 144.42016602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -01728854 144.42019653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -01728855 144.42021179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -01728856 144.42024231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -01728857 144.42024231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -01728858 144.42025757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -01728859 144.42025757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -01728860 144.42028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -01728861 144.42028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -01728862 144.42031860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -01728863 144.42031860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -01728864 144.42033386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -01728865 144.42034912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -01728866 144.42037964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -01728867 144.42037964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -01728868 144.42041016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -01728869 144.42041016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -01728870 144.42042542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -01728871 144.42042542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -01728872 144.42045593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -01728873 144.42045593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -01728874 144.42048645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -01728875 144.42048645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -01728876 144.42051697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -01728877 144.42051697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -01728878 144.42054749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -01728879 144.42054749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -01728880 144.42056274 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -01728881 144.42056274 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -01728882 144.42059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -01728883 144.42059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -01728884 144.42062378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -01728885 144.42063904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -01728886 144.42065430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -01728887 144.42065430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -01728888 144.42068481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -01728889 144.42068481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -01728890 144.42071533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -01728891 144.42071533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -01728892 144.42073059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -01728893 144.42073059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -01728894 144.42076111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -01728895 144.42077637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -01728896 144.42080688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -01728897 144.42080688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -01728898 144.42082214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -01728899 144.42082214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -01728900 144.42085266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -01728901 144.42085266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -01728902 144.42088318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -01728903 144.42088318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -01728904 144.42089844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -01728905 144.42091370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -01728906 144.42094421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -01728907 144.42094421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -01728908 144.42098999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -01728909 144.42100525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -01728910 144.42103577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -01728911 144.42103577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -01728912 144.42105103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -01728913 144.42105103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -01728914 144.42108154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -01728915 144.42108154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -01728916 144.42111206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -01728917 144.42111206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -01728918 144.42112732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -01728919 144.42114258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -01728920 144.42117310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -01728921 144.42117310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -01728922 144.42120361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -01728923 144.42120361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -01728924 144.42121887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -01728925 144.42121887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -01728926 144.42124939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -01728927 144.42124939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -01728928 144.42127991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -01728929 144.42127991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -01728930 144.42131042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -01728931 144.42131042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -01728932 144.42134094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -01728933 144.42134094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -01728934 144.42135620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -01728935 144.42135620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -01728936 144.42138672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -01728937 144.42138672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -01728938 144.42141724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -01728939 144.42143250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -01728940 144.42144775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -01728941 144.42144775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -01728942 144.42147827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -01728943 144.42147827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -01728944 144.42150879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -01728945 144.42150879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -01728946 144.42152405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -01728947 144.42152405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -01728948 144.42155457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -01728949 144.42156982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -01728950 144.42160034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -01728951 144.42160034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -01728952 144.42161560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -01728953 144.42161560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -01728954 144.42164612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -01728955 144.42164612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -01728956 144.42167664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -01728957 144.42167664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -01728958 144.42169189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -01728959 144.42170715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -01728960 144.42173767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -01728961 144.42173767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -01728962 144.42175293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -01728963 144.42175293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -01728964 144.42178345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -01728965 144.42178345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -01728966 144.42181396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -01728967 144.42181396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -01728968 144.42182922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -01728969 144.42184448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -01728970 144.42187500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -01728971 144.42187500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -01728972 144.42190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -01728973 144.42190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -01728974 144.42192078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -01728975 144.42192078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -01728976 144.42198181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -01728977 144.42198181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -01728978 144.42199707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -01728979 144.42201233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -01728980 144.42204285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -01728981 144.42204285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -01728982 144.42207336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -01728983 144.42207336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -01728984 144.42208862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -01728985 144.42208862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -01728986 144.42211914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -01728987 144.42211914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -01728988 144.42214966 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -01728989 144.42214966 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -01728990 144.42218018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -01728991 144.42218018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -01728992 144.42221069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -01728993 144.42221069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -01728994 144.42224121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -01728995 144.42224121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -01728996 144.42225647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -01728997 144.42225647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -01728998 144.42228699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -01728999 144.42230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -01729000 144.42231750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -01729001 144.42231750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -01729002 144.42234802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -01729003 144.42234802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -01729004 144.42237854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -01729005 144.42237854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -01729006 144.42239380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -01729007 144.42239380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -01729008 144.42242432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -01729009 144.42243958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -01729010 144.42247009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -01729011 144.42247009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -01729012 144.42248535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -01729013 144.42248535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -01729014 144.42251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -01729015 144.42251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -01729016 144.42254639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -01729017 144.42254639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -01729018 144.42256165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -01729019 144.42257690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -01729020 144.42260742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -01729021 144.42260742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -01729022 144.42263794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -01729023 144.42263794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -01729024 144.42265320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -01729025 144.42265320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -01729026 144.42268372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -01729027 144.42268372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -01729028 144.42271423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -01729029 144.42271423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -01729030 144.42274475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -01729031 144.42274475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -01729032 144.42277527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -01729033 144.42277527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -01729034 144.42279053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -01729035 144.42279053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -01729036 144.42282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -01729037 144.42282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -01729038 144.42285156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -01729039 144.42285156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -01729040 144.42286682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -01729041 144.42288208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -01729042 144.42291260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -01729043 144.42291260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -01729044 144.42294312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -01729045 144.42294312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -01729046 144.42298889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -01729047 144.42298889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -01729048 144.42301941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -01729049 144.42301941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -01729050 144.42303467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -01729051 144.42303467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -01729052 144.42306519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -01729053 144.42308044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -01729054 144.42311096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -01729055 144.42311096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -01729056 144.42312622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -01729057 144.42312622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -01729058 144.42315674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -01729059 144.42315674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -01729060 144.42318726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -01729061 144.42318726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -01729062 144.42320251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -01729063 144.42321777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -01729064 144.42324829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -01729065 144.42324829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -01729066 144.42326355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -01729067 144.42326355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -01729068 144.42329407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -01729069 144.42329407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -01729070 144.42332458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -01729071 144.42332458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -01729072 144.42333984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -01729073 144.42335510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -01729074 144.42338562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -01729075 144.42338562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -01729076 144.42341614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -01729077 144.42341614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -01729078 144.42343140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -01729079 144.42343140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -01729080 144.42346191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -01729081 144.42346191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -01729082 144.42349243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -01729083 144.42350769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -01729084 144.42352295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -01729085 144.42352295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -01729086 144.42355347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -01729087 144.42355347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -01729088 144.42358398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -01729089 144.42358398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -01729090 144.42359924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -01729091 144.42359924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -01729092 144.42362976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -01729093 144.42364502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -01729094 144.42366028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -01729095 144.42366028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -01729096 144.42369080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -01729097 144.42369080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -01729098 144.42372131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -01729099 144.42372131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -01729100 144.42373657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -01729101 144.42373657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -01729102 144.42376709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -01729103 144.42378235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -01729104 144.42381287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -01729105 144.42381287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -01729106 144.42382813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -01729107 144.42382813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -01729108 144.42385864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -01729109 144.42385864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -01729110 144.42388916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -01729111 144.42388916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -01729112 144.42390442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -01729113 144.42390442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -01729114 144.42395020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -01729115 144.42395020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -01729116 144.42398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -01729117 144.42398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -01729118 144.42401123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -01729119 144.42401123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -01729120 144.42404175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -01729121 144.42404175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -01729122 144.42405701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -01729123 144.42405701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -01729124 144.42408752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -01729125 144.42410278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -01729126 144.42413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -01729127 144.42413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -01729128 144.42414856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -01729129 144.42414856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -01729130 144.42417908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -01729131 144.42417908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -01729132 144.42420959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -01729133 144.42420959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -01729134 144.42422485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -01729135 144.42424011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -01729136 144.42427063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -01729137 144.42427063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -01729138 144.42430115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -01729139 144.42430115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -01729140 144.42431641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -01729141 144.42431641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -01729142 144.42434692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -01729143 144.42434692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -01729144 144.42437744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -01729145 144.42437744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -01729146 144.42440796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -01729147 144.42440796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -01729148 144.42443848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -01729149 144.42443848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -01729150 144.42445374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -01729151 144.42445374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -01729152 144.42448425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -01729153 144.42448425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -01729154 144.42451477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -01729155 144.42453003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -01729156 144.42454529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -01729157 144.42454529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -01729158 144.42457581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -01729159 144.42457581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -01729160 144.42460632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -01729161 144.42460632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -01729162 144.42462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -01729163 144.42462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -01729164 144.42465210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -01729165 144.42466736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -01729166 144.42469788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -01729167 144.42469788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -01729168 144.42471313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -01729169 144.42471313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -01729170 144.42474365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -01729171 144.42474365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -01729172 144.42477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -01729173 144.42477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -01729174 144.42478943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -01729175 144.42480469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -01729176 144.42483521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -01729177 144.42483521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -01729178 144.42485046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -01729179 144.42485046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -01729180 144.42488098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -01729181 144.42488098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -01729182 144.42491150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -01729183 144.42491150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -01729184 144.42494202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -01729185 144.42494202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -01729186 144.42501831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -01729187 144.42501831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -01729188 144.42509460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -01729189 144.42509460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -01729190 144.42512512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -01729191 144.42512512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -01729192 144.42515564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -01729193 144.42517090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -01729194 144.42518616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -01729195 144.42518616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -01729196 144.42521667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -01729197 144.42521667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -01729198 144.42524719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -01729199 144.42524719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -01729200 144.42526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -01729201 144.42526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -01729202 144.42529297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -01729203 144.42530823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -01729204 144.42533875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -01729205 144.42533875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -01729206 144.42535400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -01729207 144.42535400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -01729208 144.42538452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -01729209 144.42538452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -01729210 144.42541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -01729211 144.42541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -01729212 144.42543030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -01729213 144.42544556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -01729214 144.42547607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -01729215 144.42547607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -01729216 144.42549133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -01729217 144.42549133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -01729218 144.42552185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -01729219 144.42552185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -01729220 144.42555237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -01729221 144.42555237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -01729222 144.42556763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -01729223 144.42558289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -01729224 144.42561340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -01729225 144.42561340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -01729226 144.42564392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -01729227 144.42564392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -01729228 144.42565918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -01729229 144.42565918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -01729230 144.42568970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -01729231 144.42568970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -01729232 144.42572021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -01729233 144.42573547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -01729234 144.42575073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -01729235 144.42575073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -01729236 144.42578125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -01729237 144.42578125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -01729238 144.42581177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -01729239 144.42581177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -01729240 144.42582703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -01729241 144.42582703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -01729242 144.42585754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -01729243 144.42587280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -01729244 144.42588806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -01729245 144.42588806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -01729246 144.42591858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -01729247 144.42591858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -01729248 144.42594910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -01729249 144.42596436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -01729250 144.42599487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -01729251 144.42599487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -01729252 144.42607117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -01729253 144.42607117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -01729254 144.42610168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -01729255 144.42611694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -01729256 144.42613220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -01729257 144.42613220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -01729258 144.42616272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -01729259 144.42616272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -01729260 144.42619324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -01729261 144.42619324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -01729262 144.42620850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -01729263 144.42620850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -01729264 144.42623901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -01729265 144.42625427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -01729266 144.42628479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -01729267 144.42628479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -01729268 144.42630005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -01729269 144.42630005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -01729270 144.42633057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -01729271 144.42633057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -01729272 144.42636108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -01729273 144.42636108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -01729274 144.42639160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -01729275 144.42639160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -01729276 144.42642212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -01729277 144.42642212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -01729278 144.42643738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -01729279 144.42643738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -01729280 144.42646790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -01729281 144.42646790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -01729282 144.42649841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -01729283 144.42649841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -01729284 144.42652893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -01729285 144.42652893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -01729286 144.42655945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -01729287 144.42655945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -01729288 144.42658997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -01729289 144.42658997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -01729290 144.42660522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -01729291 144.42660522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -01729292 144.42663574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -01729293 144.42663574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -01729294 144.42666626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -01729295 144.42668152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -01729296 144.42669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -01729297 144.42669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -01729298 144.42672729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -01729299 144.42672729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -01729300 144.42675781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -01729301 144.42675781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -01729302 144.42677307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -01729303 144.42678833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -01729304 144.42681885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -01729305 144.42681885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -01729306 144.42683411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -01729307 144.42683411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -01729308 144.42686462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -01729309 144.42686462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -01729310 144.42689514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -01729311 144.42689514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -01729312 144.42692566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -01729313 144.42692566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -01729314 144.42695618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -01729315 144.42695618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -01729316 144.42707825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -01729317 144.42707825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -01729318 144.42709351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -01729319 144.42709351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -01729320 144.42712402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -01729321 144.42712402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -01729322 144.42715454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -01729323 144.42715454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -01729324 144.42718506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -01729325 144.42718506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -01729326 144.42721558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -01729327 144.42721558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -01729328 144.42723083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -01729329 144.42723083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -01729330 144.42726135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -01729331 144.42726135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -01729332 144.42729187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -01729333 144.42730713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -01729334 144.42732239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -01729335 144.42732239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -01729336 144.42735291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -01729337 144.42735291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -01729338 144.42738342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -01729339 144.42738342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -01729340 144.42739868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -01729341 144.42739868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -01729342 144.42742920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -01729343 144.42744446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -01729344 144.42747498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -01729345 144.42747498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -01729346 144.42749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -01729347 144.42749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -01729348 144.42752075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -01729349 144.42752075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -01729350 144.42755127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -01729351 144.42755127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -01729352 144.42756653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -01729353 144.42758179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -01729354 144.42761230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -01729355 144.42761230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -01729356 144.42764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -01729357 144.42764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -01729358 144.42765808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -01729359 144.42765808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -01729360 144.42768860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -01729361 144.42768860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -01729362 144.42771912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -01729363 144.42771912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -01729364 144.42774963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -01729365 144.42774963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -01729366 144.42778015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -01729367 144.42778015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -01729368 144.42779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -01729369 144.42779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -01729370 144.42782593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -01729371 144.42782593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -01729372 144.42785645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -01729373 144.42785645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -01729374 144.42787170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -01729375 144.42788696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -01729376 144.42791748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -01729377 144.42791748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -01729378 144.42794800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -01729379 144.42794800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -01729380 144.42797852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -01729381 144.42799377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -01729382 144.42802429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -01729383 144.42802429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -01729384 144.42803955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -01729385 144.42803955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -01729386 144.42807007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -01729387 144.42807007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -01729388 144.42810059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -01729389 144.42811584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -01729390 144.42813110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -01729391 144.42813110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -01729392 144.42816162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -01729393 144.42816162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -01729394 144.42819214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -01729395 144.42819214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -01729396 144.42820740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -01729397 144.42820740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -01729398 144.42823792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -01729399 144.42825317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -01729400 144.42826843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -01729401 144.42826843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -01729402 144.42829895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -01729403 144.42829895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -01729404 144.42832947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -01729405 144.42832947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -01729406 144.42834473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -01729407 144.42834473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -01729408 144.42837524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -01729409 144.42839050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -01729410 144.42842102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -01729411 144.42842102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -01729412 144.42843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -01729413 144.42843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -01729414 144.42846680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -01729415 144.42846680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -01729416 144.42849731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -01729417 144.42849731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -01729418 144.42851257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -01729419 144.42851257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -01729420 144.42854309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -01729421 144.42855835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -01729422 144.42858887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -01729423 144.42858887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -01729424 144.42860413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -01729425 144.42860413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -01729426 144.42863464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -01729427 144.42863464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -01729428 144.42866516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -01729429 144.42866516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -01729430 144.42869568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -01729431 144.42869568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -01729432 144.42872620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -01729433 144.42872620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -01729434 144.42874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -01729435 144.42874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -01729436 144.42877197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -01729437 144.42877197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -01729438 144.42880249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -01729439 144.42881775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -01729440 144.42883301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -01729441 144.42883301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -01729442 144.42886353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -01729443 144.42886353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -01729444 144.42889404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -01729445 144.42889404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -01729446 144.42890930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -01729447 144.42890930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -01729448 144.42898560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -01729449 144.42898560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -01729450 144.42900085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -01729451 144.42900085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -01729452 144.42903137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -01729453 144.42903137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -01729454 144.42906189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -01729455 144.42906189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -01729456 144.42907715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -01729457 144.42909241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -01729458 144.42912292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -01729459 144.42912292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -01729460 144.42913818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -01729461 144.42913818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -01729462 144.42916870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -01729463 144.42916870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -01729464 144.42919922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -01729465 144.42919922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -01729466 144.42922974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -01729467 144.42922974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -01729468 144.42926025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -01729469 144.42926025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -01729470 144.42929077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -01729471 144.42929077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -01729472 144.42930603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -01729473 144.42930603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -01729474 144.42933655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -01729475 144.42933655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -01729476 144.42936707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -01729477 144.42936707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -01729478 144.42938232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -01729479 144.42939758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -01729480 144.42942810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -01729481 144.42942810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -01729482 144.42945862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -01729483 144.42945862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -01729484 144.42947388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -01729485 144.42947388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -01729486 144.42950439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -01729487 144.42950439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -01729488 144.42953491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -01729489 144.42953491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -01729490 144.42956543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -01729491 144.42956543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -01729492 144.42959595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -01729493 144.42959595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -01729494 144.42962646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -01729495 144.42962646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -01729496 144.42964172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -01729497 144.42964172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -01729498 144.42967224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -01729499 144.42968750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -01729500 144.42970276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -01729501 144.42970276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -01729502 144.42973328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -01729503 144.42973328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -01729504 144.42976379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -01729505 144.42976379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -01729506 144.42977905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -01729507 144.42977905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -01729508 144.42980957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -01729509 144.42982483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -01729510 144.42985535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -01729511 144.42985535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -01729512 144.42987061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -01729513 144.42987061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -01729514 144.42990112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -01729515 144.42990112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -01729516 144.42993164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -01729517 144.42993164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -01729518 144.42996216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -01729519 144.42997742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -01729520 144.43000793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -01729521 144.43002319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -01729522 144.43003845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -01729523 144.43005371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -01729524 144.43009949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -01729525 144.43009949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -01729526 144.43013000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -01729527 144.43013000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -01729528 144.43017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -01729529 144.43017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -01729530 144.43019104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -01729531 144.43019104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -01729532 144.43022156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -01729533 144.43022156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -01729534 144.43025208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -01729535 144.43025208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -01729536 144.43026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -01729537 144.43028259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -01729538 144.43031311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -01729539 144.43031311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -01729540 144.43034363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -01729541 144.43034363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -01729542 144.43035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -01729543 144.43035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -01729544 144.43038940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -01729545 144.43038940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -01729546 144.43041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -01729547 144.43041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -01729548 144.43045044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -01729549 144.43045044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -01729550 144.43048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -01729551 144.43048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -01729552 144.43049622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -01729553 144.43049622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -01729554 144.43052673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -01729555 144.43052673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -01729556 144.43055725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -01729557 144.43055725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -01729558 144.43058777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -01729559 144.43058777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -01729560 144.43061829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -01729561 144.43061829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -01729562 144.43064880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -01729563 144.43064880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -01729564 144.43066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -01729565 144.43066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -01729566 144.43069458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -01729567 144.43069458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -01729568 144.43074036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -01729569 144.43074036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -01729570 144.43075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -01729571 144.43075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -01729572 144.43078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -01729573 144.43078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -01729574 144.43081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -01729575 144.43081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -01729576 144.43083191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -01729577 144.43084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -01729578 144.43087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -01729579 144.43087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -01729580 144.43089294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -01729581 144.43089294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -01729582 144.43092346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -01729583 144.43092346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -01729584 144.43098450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -01729585 144.43098450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -01729586 144.43101501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -01729587 144.43101501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -01729588 144.43104553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -01729589 144.43104553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -01729590 144.43106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -01729591 144.43106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -01729592 144.43109131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -01729593 144.43110657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -01729594 144.43113708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -01729595 144.43113708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -01729596 144.43115234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -01729597 144.43115234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -01729598 144.43118286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -01729599 144.43118286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -01729600 144.43121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -01729601 144.43121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -01729602 144.43122864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -01729603 144.43124390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -01729604 144.43127441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -01729605 144.43127441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -01729606 144.43128967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -01729607 144.43128967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -01729608 144.43132019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -01729609 144.43132019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -01729610 144.43135071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -01729611 144.43135071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -01729612 144.43136597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -01729613 144.43138123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -01729614 144.43141174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -01729615 144.43141174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -01729616 144.43144226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -01729617 144.43144226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -01729618 144.43145752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -01729619 144.43145752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -01729620 144.43148804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -01729621 144.43148804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -01729622 144.43151855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -01729623 144.43153381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -01729624 144.43154907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -01729625 144.43154907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -01729626 144.43157959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -01729627 144.43157959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -01729628 144.43161011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -01729629 144.43161011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -01729630 144.43162537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -01729631 144.43162537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -01729632 144.43165588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -01729633 144.43167114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -01729634 144.43168640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -01729635 144.43168640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -01729636 144.43171692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -01729637 144.43171692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -01729638 144.43174744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -01729639 144.43174744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -01729640 144.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -01729641 144.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -01729642 144.43179321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -01729643 144.43180847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -01729644 144.43183899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -01729645 144.43183899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -01729646 144.43185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -01729647 144.43185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -01729648 144.43188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -01729649 144.43188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -01729650 144.43191528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -01729651 144.43191528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -01729652 144.43194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -01729653 144.43194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -01729654 144.43199158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -01729655 144.43199158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -01729656 144.43202209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -01729657 144.43202209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -01729658 144.43205261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -01729659 144.43205261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -01729660 144.43208313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -01729661 144.43208313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -01729662 144.43211365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -01729663 144.43211365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -01729664 144.43214417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -01729665 144.43214417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -01729666 144.43215942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -01729667 144.43215942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -01729668 144.43218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -01729669 144.43218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -01729670 144.43222046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -01729671 144.43223572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -01729672 144.43225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -01729673 144.43225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -01729674 144.43228149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -01729675 144.43228149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -01729676 144.43231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -01729677 144.43231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -01729678 144.43232727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -01729679 144.43232727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -01729680 144.43235779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -01729681 144.43235779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -01729682 144.43238831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -01729683 144.43240356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -01729684 144.43241882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -01729685 144.43241882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -01729686 144.43244934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -01729687 144.43244934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -01729688 144.43247986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -01729689 144.43247986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -01729690 144.43249512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -01729691 144.43249512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -01729692 144.43252563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -01729693 144.43254089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -01729694 144.43255615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -01729695 144.43255615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -01729696 144.43258667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -01729697 144.43258667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -01729698 144.43261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -01729699 144.43261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -01729700 144.43263245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -01729701 144.43263245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -01729702 144.43266296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -01729703 144.43267822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -01729704 144.43270874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -01729705 144.43270874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -01729706 144.43272400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -01729707 144.43272400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -01729708 144.43275452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -01729709 144.43275452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -01729710 144.43278503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -01729711 144.43278503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -01729712 144.43280029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -01729713 144.43281555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -01729714 144.43284607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -01729715 144.43284607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -01729716 144.43287659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -01729717 144.43287659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -01729718 144.43289185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -01729719 144.43289185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -01729720 144.43292236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -01729721 144.43292236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -01729722 144.43298340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -01729723 144.43298340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -01729724 144.43301392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -01729725 144.43301392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -01729726 144.43302917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -01729727 144.43302917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -01729728 144.43305969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -01729729 144.43305969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -01729730 144.43309021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -01729731 144.43310547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -01729732 144.43312073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -01729733 144.43312073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -01729734 144.43315125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -01729735 144.43315125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -01729736 144.43318176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -01729737 144.43318176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -01729738 144.43319702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -01729739 144.43319702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -01729740 144.43322754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -01729741 144.43324280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -01729742 144.43327332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -01729743 144.43327332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -01729744 144.43328857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -01729745 144.43328857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -01729746 144.43331909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -01729747 144.43331909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -01729748 144.43334961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -01729749 144.43334961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -01729750 144.43336487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -01729751 144.43338013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -01729752 144.43341064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -01729753 144.43341064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -01729754 144.43344116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -01729755 144.43344116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -01729756 144.43345642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -01729757 144.43345642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -01729758 144.43348694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -01729759 144.43348694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -01729760 144.43351746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -01729761 144.43351746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -01729762 144.43354797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -01729763 144.43354797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -01729764 144.43357849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -01729765 144.43357849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -01729766 144.43359375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -01729767 144.43359375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -01729768 144.43362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -01729769 144.43362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -01729770 144.43365479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -01729771 144.43367004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -01729772 144.43368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -01729773 144.43368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -01729774 144.43371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -01729775 144.43371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -01729776 144.43374634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -01729777 144.43374634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -01729778 144.43376160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -01729779 144.43376160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -01729780 144.43379211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -01729781 144.43380737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -01729782 144.43383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -01729783 144.43383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -01729784 144.43385315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -01729785 144.43385315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -01729786 144.43388367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -01729787 144.43388367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -01729788 144.43391418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -01729789 144.43391418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -01729790 144.43394470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -01729791 144.43394470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -01729792 144.43399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -01729793 144.43399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8430 -01729794 144.43402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -01729795 144.43402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8440 -01729796 144.43405151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -01729797 144.43406677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8450 -01729798 144.43408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -01729799 144.43408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8460 -01729800 144.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -01729801 144.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8470 -01729802 144.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -01729803 144.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8480 -01729804 144.43415833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -01729805 144.43415833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8490 -01729806 144.43418884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -01729807 144.43420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a0 -01729808 144.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -01729809 144.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b0 -01729810 144.43424988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -01729811 144.43424988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c0 -01729812 144.43428040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -01729813 144.43428040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d0 -01729814 144.43431091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -01729815 144.43431091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e0 -01729816 144.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -01729817 144.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f0 -01729818 144.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -01729819 144.43437195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8500 -01729820 144.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -01729821 144.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8510 -01729822 144.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -01729823 144.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8520 -01729824 144.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -01729825 144.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8530 -01729826 144.43446350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -01729827 144.43446350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8540 -01729828 144.43449402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -01729829 144.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8550 -01729830 144.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -01729831 144.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8560 -01729832 144.43455505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -01729833 144.43455505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8570 -01729834 144.43458557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -01729835 144.43458557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8580 -01729836 144.43461609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -01729837 144.43461609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -01729838 144.43463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -01729839 144.43464661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -01729840 144.43467712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -01729841 144.43467712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -01729842 144.43470764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -01729843 144.43470764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -01729844 144.43472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -01729845 144.43472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -01729846 144.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -01729847 144.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -01729848 144.43478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -01729849 144.43478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -01729850 144.43481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -01729851 144.43481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -01729852 144.43484497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -01729853 144.43484497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -01729854 144.43486023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -01729855 144.43486023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -01729856 144.43489075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -01729857 144.43489075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -01729858 144.43492126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -01729859 144.43493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -01729860 144.43495178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -01729861 144.43498230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -01729862 144.43501282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -01729863 144.43501282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -01729864 144.43502808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -01729865 144.43502808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -01729866 144.43505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -01729867 144.43505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -01729868 144.43508911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -01729869 144.43510437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -01729870 144.43511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -01729871 144.43511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -01729872 144.43515015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -01729873 144.43515015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -01729874 144.43518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -01729875 144.43518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -01729876 144.43519592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -01729877 144.43519592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -01729878 144.43522644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -01729879 144.43524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -01729880 144.43525696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -01729881 144.43525696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -01729882 144.43528748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -01729883 144.43528748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8700 -01729884 144.43531799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -01729885 144.43531799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8710 -01729886 144.43533325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -01729887 144.43533325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8720 -01729888 144.43536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -01729889 144.43536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8730 -01729890 144.43539429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -01729891 144.43540955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8740 -01729892 144.43542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -01729893 144.43542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8750 -01729894 144.43545532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -01729895 144.43545532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8760 -01729896 144.43548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -01729897 144.43548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8770 -01729898 144.43550110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -01729899 144.43550110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8780 -01729900 144.43553162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -01729901 144.43554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8790 -01729902 144.43557739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -01729903 144.43557739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a0 -01729904 144.43559265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -01729905 144.43559265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b0 -01729906 144.43562317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -01729907 144.43562317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c0 -01729908 144.43565369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -01729909 144.43565369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d0 -01730135 144.43901062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee0 -01730136 144.43904114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -01730137 144.43905640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef0 -01730138 144.43907166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -01730139 144.43907166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f00 -01730140 144.43910217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -01730141 144.43910217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f10 -01730142 144.43913269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -01730143 144.43913269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f20 -01730144 144.43914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -01730145 144.43914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f30 -01730146 144.43917847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -01730147 144.43919373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f40 -01730148 144.43922424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -01730149 144.43922424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f50 -01730150 144.43923950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -01730151 144.43923950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f60 -01730152 144.43927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -01730153 144.43927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f70 -01730154 144.43930054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -01730155 144.43930054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f80 -01730156 144.43931580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -01730157 144.43933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f90 -01730158 144.43936157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -01730159 144.43936157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa0 -01730160 144.43939209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -01730161 144.43939209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb0 -01730162 144.43940735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -01730163 144.43940735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc0 -01730164 144.43943787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -01730165 144.43943787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd0 -01730166 144.43946838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -01730167 144.43946838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe0 -01730168 144.43949890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -01730169 144.43949890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff0 -01730170 144.43952942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -01730171 144.43952942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9000 -01730172 144.43954468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -01730173 144.43954468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9010 -01730174 144.43957520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -01730175 144.43957520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9020 -01730176 144.43960571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -01730177 144.43960571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9030 -01730178 144.43963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9040 -01731382 144.45729065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -01731383 144.45730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e0 -01731384 144.45733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -01731385 144.45733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -01731386 144.45735168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -01731387 144.45735168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -01731388 144.45738220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -01731389 144.45738220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -01731390 144.45741272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -01731391 144.45741272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -01731392 144.45742798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -01731393 144.45744324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -01731394 144.45747375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -01731395 144.45747375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -01731396 144.45750427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -01731397 144.45750427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -01731398 144.45751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -01731399 144.45751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -01731400 144.45755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -01731401 144.45755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -01731402 144.45758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -01731403 144.45758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -01731404 144.45759583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -01731405 144.45761108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -01731406 144.45764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -01731407 144.45764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a0 -01731408 144.45765686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -01731409 144.45765686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b0 -01731410 144.45768738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -01731411 144.45768738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c0 -01731412 144.45771790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -01731413 144.45771790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d0 -01731414 144.45774841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -01731415 144.45774841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e0 -01731416 144.45777893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -01731417 144.45777893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f0 -01731418 144.45780945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -01731419 144.45780945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb700 -01731420 144.45782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -01731421 144.45782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb710 -01731422 144.45785522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -01731423 144.45785522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb720 -01731424 144.45788574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -01731425 144.45790100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb730 -01733746 144.49171448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -01733747 144.49171448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -01733748 144.49174500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -01733749 144.49174500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -01733750 144.49176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -01733751 144.49176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -01733752 144.49179077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -01733753 144.49179077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -01733754 144.49182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -01733755 144.49182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -01733756 144.49185181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -01733757 144.49185181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -01733758 144.49188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -01733759 144.49188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -01733760 144.49189758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -01733761 144.49191284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -01733762 144.49203491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -01733763 144.49203491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -01733764 144.49205017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -01733765 144.49205017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -01733766 144.49208069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -01733767 144.49208069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -01733768 144.49211121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -01733769 144.49212646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -01733770 144.49214172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -01733771 144.49214172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10080 -01733772 144.49217224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -01733773 144.49217224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -01733774 144.49220276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -01733775 144.49220276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -01733776 144.49221802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -01733777 144.49221802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -01733778 144.49224854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -01733779 144.49226379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -01733780 144.49229431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -01733781 144.49229431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -01733782 144.49230957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -01733783 144.49230957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -01733784 144.49234009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -01733785 144.49234009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -01733786 144.49237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -01733787 144.49237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -01733788 144.49238586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -01733789 144.49240112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -01736054 144.52513123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -01736055 144.52513123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x147e0 -01736056 144.52516174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -01736057 144.52517700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x147f0 -01736058 144.52519226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -01736059 144.52519226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14800 -01736060 144.52522278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -01736061 144.52522278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14810 -01736062 144.52525330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -01736063 144.52525330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14820 -01736064 144.52526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -01736065 144.52526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14830 -01736066 144.52529907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -01736067 144.52529907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14840 -01736068 144.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -01736069 144.52534485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14850 -01736070 144.52536011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -01736071 144.52536011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14860 -01736072 144.52539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -01736073 144.52539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14870 -01736074 144.52542114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -01736075 144.52542114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14880 -01736076 144.52543640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -01736077 144.52543640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14890 -01736078 144.52546692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -01736079 144.52548218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148a0 -01736080 144.52549744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -01736081 144.52549744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148b0 -01736082 144.52552795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -01736083 144.52552795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148c0 -01736084 144.52555847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -01736085 144.52555847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148d0 -01736086 144.52557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -01736087 144.52557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148e0 -01736088 144.52560425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -01736089 144.52561951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x148f0 -01736090 144.52565002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -01736091 144.52565002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14900 -01736092 144.52566528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -01736093 144.52566528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14910 -01736094 144.52569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -01736095 144.52569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14920 -01736096 144.52572632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -01736097 144.52572632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14930 -01738355 144.55883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fc0 -01738356 144.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -01738357 144.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fd0 -01738358 144.55891418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -01738359 144.55891418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18fe0 -01738360 144.55894470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -01738361 144.55894470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ff0 -01738362 144.55903625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -01738363 144.55905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19000 -01738364 144.55908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -01738365 144.55908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19010 -01738366 144.55909729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -01738367 144.55909729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19020 -01738368 144.55912781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -01738369 144.55912781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19030 -01738370 144.55915833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -01738371 144.55915833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19040 -01738372 144.55917358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -01738373 144.55917358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19050 -01738374 144.55920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -01738375 144.55921936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19060 -01738376 144.55924988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -01738377 144.55924988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19070 -01738378 144.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -01738379 144.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19080 -01738380 144.55929565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -01738381 144.55929565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19090 -01738382 144.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -01738383 144.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190a0 -01738384 144.55934143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -01738385 144.55935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190b0 -01738386 144.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -01738387 144.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190c0 -01738388 144.55941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -01738389 144.55941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190d0 -01738390 144.55943298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -01738391 144.55943298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190e0 -01738392 144.55946350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -01738393 144.55946350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x190f0 -01738394 144.55949402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -01738395 144.55949402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19100 -01738396 144.55952454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -01738397 144.55952454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19110 -01738398 144.55955505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19120 -01740736 144.59403992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -01740737 144.59403992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da30 -01740738 144.59405518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -01740739 144.59407043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da40 -01740740 144.59410095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -01740741 144.59410095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da50 -01740742 144.59413147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -01740743 144.59413147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da60 -01740744 144.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -01740745 144.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da70 -01740746 144.59417725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -01740747 144.59417725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da80 -01740748 144.59420776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -01740749 144.59420776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da90 -01740750 144.59422302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -01740751 144.59423828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa0 -01740752 144.59426880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -01740753 144.59426880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab0 -01740754 144.59428406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -01740755 144.59428406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac0 -01740756 144.59431458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -01740757 144.59431458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad0 -01740758 144.59434509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -01740759 144.59434509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae0 -01740760 144.59437561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -01740761 144.59437561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf0 -01740762 144.59440613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -01740763 144.59440613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db00 -01740764 144.59443665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -01740765 144.59443665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db10 -01740766 144.59445190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -01740767 144.59445190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db20 -01740768 144.59448242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -01740769 144.59448242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db30 -01740770 144.59451294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -01740771 144.59452820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db40 -01740772 144.59454346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -01740773 144.59454346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db50 -01740774 144.59457397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -01740775 144.59457397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db60 -01740776 144.59460449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -01740777 144.59460449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db70 -01740778 144.59461975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -01740779 144.59461975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db80 -01742800 144.62484741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -01742801 144.62486267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ab0 -01742802 144.62487793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -01742803 144.62489319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ac0 -01742804 144.62493896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -01742805 144.62493896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ad0 -01742806 144.62496948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -01742807 144.62496948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ae0 -01742808 144.62501526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -01742809 144.62501526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21af0 -01742810 144.62504578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -01742811 144.62504578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b00 -01742812 144.62509155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -01742813 144.62509155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b10 -01742814 144.62512207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -01742815 144.62512207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b20 -01742816 144.62516785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -01742817 144.62516785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b30 -01742818 144.62518311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -01742819 144.62518311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b40 -01742820 144.62521362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -01742821 144.62521362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b50 -01742822 144.62525940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -01742823 144.62525940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b60 -01742824 144.62527466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -01742825 144.62527466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b70 -01742826 144.62530518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -01742827 144.62532043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b80 -01742828 144.62535095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -01742829 144.62535095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b90 -01742830 144.62536621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -01742831 144.62536621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba0 -01742832 144.62539673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -01742833 144.62539673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb0 -01742834 144.62542725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -01742835 144.62542725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc0 -01742836 144.62545776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -01742837 144.62545776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd0 -01742838 144.62548828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -01742839 144.62548828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be0 -01742840 144.62550354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -01742841 144.62551880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf0 -01742842 144.62554932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -01742843 144.62554932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c00 -01744968 144.65847778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -01744969 144.65847778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -01744970 144.65850830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -01744971 144.65850830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -01744972 144.65853882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -01744973 144.65853882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -01744974 144.65856934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -01744975 144.65856934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -01744976 144.65859985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -01744977 144.65859985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -01744978 144.65863037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -01744979 144.65863037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -01744980 144.65864563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -01744981 144.65866089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -01744982 144.65869141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -01744983 144.65869141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -01744984 144.65870667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -01744985 144.65870667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -01744986 144.65873718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -01744987 144.65875244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -01744988 144.65878296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -01744989 144.65878296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -01744990 144.65885925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -01744991 144.65885925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -01744992 144.65887451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -01744993 144.65887451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -01744994 144.65892029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -01744995 144.65892029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -01744996 144.65895081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -01744997 144.65895081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -01744998 144.65896606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -01744999 144.65896606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -01745000 144.65901184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -01745001 144.65901184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -01745002 144.65902710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -01745003 144.65902710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -01745004 144.65905762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -01745005 144.65905762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -01745006 144.65908813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -01745007 144.65910339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -01745008 144.65911865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -01745009 144.65911865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb0 -01745010 144.65914917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -01745011 144.65914917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc0 -01747298 144.69271851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -01747299 144.69271851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a740 -01747300 144.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -01747301 144.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a750 -01747302 144.69277954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -01747303 144.69277954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a760 -01747304 144.69279480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -01747305 144.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a770 -01747306 144.69284058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -01747307 144.69284058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a780 -01747308 144.69287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -01747309 144.69287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a790 -01747310 144.69288635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -01747311 144.69288635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7a0 -01747312 144.69291687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -01747313 144.69291687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7b0 -01747314 144.69294739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -01747315 144.69294739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7c0 -01747316 144.69297791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -01747317 144.69297791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7d0 -01747318 144.69300842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -01747319 144.69300842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7e0 -01747320 144.69302368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -01747321 144.69302368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a7f0 -01747322 144.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -01747323 144.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a800 -01747324 144.69308472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -01747325 144.69309998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a810 -01747326 144.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -01747327 144.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a820 -01747328 144.69314575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -01747329 144.69314575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a830 -01747330 144.69317627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -01747331 144.69317627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a840 -01747332 144.69319153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -01747333 144.69319153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a850 -01747334 144.69322205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -01747335 144.69323730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a860 -01747336 144.69326782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -01747337 144.69326782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a870 -01747338 144.69328308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -01747339 144.69328308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a880 -01747340 144.69331360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -01747341 144.69331360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a890 -01749562 144.72552490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -01749563 144.72552490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee00 -01749564 144.72555542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -01749565 144.72557068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee10 -01749566 144.72560120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -01749567 144.72560120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee20 -01749568 144.72561646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -01749569 144.72561646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee30 -01749570 144.72564697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -01749571 144.72564697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee40 -01749572 144.72567749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -01749573 144.72567749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee50 -01749574 144.72569275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -01749575 144.72570801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee60 -01749576 144.72573853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -01749577 144.72576904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee70 -01749578 144.72584534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -01749579 144.72584534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee80 -01749580 144.72587585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -01749581 144.72587585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee90 -01749582 144.72590637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -01749583 144.72590637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea0 -01749584 144.72592163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -01749585 144.72593689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb0 -01749586 144.72596741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -01749587 144.72596741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec0 -01749588 144.72599792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -01749589 144.72599792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed0 -01749590 144.72601318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -01749591 144.72601318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee0 -01749592 144.72604370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -01749593 144.72604370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef0 -01749594 144.72607422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -01749595 144.72607422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef00 -01749596 144.72610474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -01749597 144.72610474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef10 -01749598 144.72613525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -01749599 144.72613525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef20 -01749600 144.72615051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -01749601 144.72615051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef30 -01749602 144.72618103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -01749603 144.72618103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef40 -01749604 144.72621155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -01749605 144.72622681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef50 -01765146 144.95724487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -01765147 144.95724487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d500 -01765148 144.95727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -01765149 144.95727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d510 -01765150 144.95730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -01765151 144.95730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d520 -01765152 144.95733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -01765153 144.95733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d530 -01765154 144.95736694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -01765155 144.95736694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d540 -01765156 144.95738220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -01765157 144.95738220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -01765158 144.95741272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -01765159 144.95741272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -01765160 144.95744324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -01765161 144.95745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -01765162 144.95747375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -01765163 144.95747375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -01765164 144.95750427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -01765165 144.95750427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -01765166 144.95753479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -01765167 144.95753479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -01765168 144.95755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -01765169 144.95755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -01765170 144.95759583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -01765171 144.95759583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -01765172 144.95762634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -01765173 144.95762634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -01765174 144.95765686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -01765175 144.95765686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -01765176 144.95768738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -01765177 144.95768738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -01765178 144.95770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -01765179 144.95770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -01765180 144.95773315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -01765181 144.95774841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -01765182 144.95777893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -01765183 144.95777893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -01765184 144.95779419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -01765185 144.95779419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -01765186 144.95782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -01765187 144.95782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -01765188 144.95785522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -01765189 144.95785522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -01766428 144.97610474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -01766429 144.97610474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd10 -01766430 144.97613525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -01766431 144.97613525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd20 -01766432 144.97615051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -01766433 144.97615051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd30 -01766434 144.97618103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -01766435 144.97618103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd40 -01766436 144.97621155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -01766437 144.97621155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd50 -01766438 144.97624207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -01766439 144.97624207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd60 -01766440 144.97627258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -01766441 144.97627258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd70 -01766442 144.97628784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -01766443 144.97628784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd80 -01766444 144.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -01766445 144.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd90 -01766446 144.97634888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -01766447 144.97636414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda0 -01766448 144.97637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -01766449 144.97637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb0 -01766450 144.97640991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -01766451 144.97640991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -01766452 144.97644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -01766453 144.97644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -01766454 144.97645569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -01766455 144.97645569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -01766456 144.97648621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -01766457 144.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -01766458 144.97653198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -01766459 144.97653198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -01766460 144.97654724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -01766461 144.97654724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -01766462 144.97659302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -01766463 144.97659302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -01766464 144.97665405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -01766465 144.97665405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -01766466 144.97668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -01766467 144.97668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -01766468 144.97669983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -01766469 144.97671509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -01766470 144.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -01766471 144.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -01767976 145.98907471 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01767977 146.00773621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01767978 146.00773621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01767979 146.34382629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01767980 146.34387207 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01767981 146.34388733 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01767982 146.34390259 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01767983 146.34402466 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01767984 146.34402466 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01767985 146.34408569 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01767986 146.34411621 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01767987 146.41178894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01767988 146.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01767989 146.41183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01767990 146.41183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01767991 146.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01767992 146.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01767993 146.41189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01767994 146.41191101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01767995 146.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01767996 146.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01767997 146.41195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01767998 146.41195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01767999 146.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01768000 146.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01768001 146.41200256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01768002 146.41200256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01768003 146.41203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01768004 146.41203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01768005 146.41206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01768006 146.41206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01768007 146.41207886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01768008 146.41207886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01768009 146.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01768010 146.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01768011 146.41213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01768012 146.41213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01768013 146.41215515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01768014 146.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01768015 146.41218567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01768016 146.41220093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01768017 146.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01768018 146.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01768019 146.41224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01768020 146.41224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01768021 146.41227722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01768022 146.41227722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01768023 146.41230774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01768024 146.41230774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01768025 146.41232300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01768026 146.41232300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01768027 146.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01768028 146.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01768029 146.41238403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01768030 146.41238403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01768031 146.41239929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01768032 146.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01768033 146.41242981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01768034 146.41244507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01768035 146.41246033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01768036 146.41246033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01768037 146.41249084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01768038 146.41249084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01768039 146.41252136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01768040 146.41252136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01768041 146.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01768042 146.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01768043 146.41256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01768044 146.41256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01768045 146.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01768046 146.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01768047 146.41262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01768048 146.41262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01768049 146.41264343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01768050 146.41264343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01768051 146.41267395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01768052 146.41268921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01768053 146.41270447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01768054 146.41270447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01768055 146.41273499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01768056 146.41273499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01768057 146.41276550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01768058 146.41276550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01768059 146.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01768060 146.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01768061 146.41281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01768062 146.41281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01768063 146.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01768064 146.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01768065 146.41285706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01768066 146.41285706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01768067 146.41288757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01768068 146.41288757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01768069 146.41291809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01768070 146.41291809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01768071 146.41293335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01768072 146.41294861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01768073 146.41297913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01768074 146.41297913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01768075 146.41300964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01768076 146.41300964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01768077 146.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01768078 146.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01768079 146.41305542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01768080 146.41305542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01768081 146.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01768082 146.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01768083 146.41310120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01768084 146.41310120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01768085 146.41313171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01768086 146.41313171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01768087 146.41316223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01768088 146.41316223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01768089 146.41317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01768090 146.41317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01768091 146.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01768092 146.41322327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01768093 146.41323853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01768094 146.41325378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01768095 146.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01768096 146.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01768097 146.41329956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01768098 146.41329956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01768099 146.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01768100 146.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01768101 146.41334534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01768102 146.41334534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01768103 146.41337585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01768104 146.41337585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01768105 146.41340637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01768106 146.41340637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01768107 146.41342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01768108 146.41342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01768109 146.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01768110 146.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01768111 146.41349792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01768112 146.41349792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01768113 146.41352844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01768114 146.41352844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01768115 146.41355896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01768116 146.41355896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01768117 146.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01768118 146.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01768119 146.41360474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01768120 146.41360474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01768121 146.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01768122 146.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01768123 146.41365051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01768124 146.41365051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01768125 146.41368103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01768126 146.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01768127 146.41372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01768128 146.41372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01768129 146.41374207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01768130 146.41374207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01768131 146.41377258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01768132 146.41377258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01768133 146.41380310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01768134 146.41380310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01768135 146.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01768136 146.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01768137 146.41384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01768138 146.41384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01768139 146.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01768140 146.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01768141 146.41389465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01768142 146.41389465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01768143 146.41392517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01768144 146.41392517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01768145 146.41395569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01768146 146.41397095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01768147 146.41397095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01768148 146.41398621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01768149 146.41401672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01768150 146.41401672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01768151 146.41404724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01768152 146.41404724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01768153 146.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01768154 146.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01768155 146.41409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01768156 146.41409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01768157 146.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01768158 146.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01768159 146.41413879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01768160 146.41413879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01768161 146.41416931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01768162 146.41416931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01768163 146.41419983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01768164 146.41419983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01768165 146.41421509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01768166 146.41423035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01768167 146.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01768168 146.41426086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01768169 146.41429138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01768170 146.41429138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01768171 146.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01768172 146.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01768173 146.41433716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01768174 146.41433716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01768175 146.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01768176 146.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01768177 146.41438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01768178 146.41438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01768179 146.41441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01768180 146.41441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01768181 146.41444397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01768182 146.41444397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01768183 146.41445923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01768184 146.41445923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01768185 146.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01768186 146.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01768187 146.41452026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01768188 146.41453552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01768189 146.41453552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01768190 146.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01768191 146.41458130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01768192 146.41458130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01768193 146.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01768194 146.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01768195 146.41462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01768196 146.41462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01768197 146.41465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01768198 146.41465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01768199 146.41468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01768200 146.41468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01768201 146.41470337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01768202 146.41471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01768203 146.41474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01768204 146.41474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01768205 146.41476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01768206 146.41476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01768207 146.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01768208 146.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01768209 146.41482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01768210 146.41484070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01768211 146.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01768212 146.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01768213 146.41488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01768214 146.41488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01768215 146.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01768216 146.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01768217 146.41493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01768218 146.41493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01768219 146.41496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01768220 146.41496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01768221 146.41499329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01768222 146.41500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01768223 146.41500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01768224 146.41502380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01768225 146.41505432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01768226 146.41505432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01768227 146.41508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01768228 146.41508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01768229 146.41513062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01768230 146.41513062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01768231 146.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01768232 146.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01768233 146.41519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01768234 146.41519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01768235 146.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01768236 146.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01768237 146.41525269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01768238 146.41525269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01768239 146.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01768240 146.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01768241 146.41531372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01768242 146.41531372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01768243 146.41532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01768244 146.41532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01768245 146.41535950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01768246 146.41535950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01768247 146.41539001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01768248 146.41539001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01768249 146.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01768250 146.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01768251 146.41543579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01768252 146.41543579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01768253 146.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01768254 146.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01768255 146.41548157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01768256 146.41549683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01768257 146.41551208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01768258 146.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01768259 146.41555786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01768260 146.41555786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01768261 146.41557312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01768262 146.41557312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01768263 146.41560364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01768264 146.41560364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01768265 146.41563416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01768266 146.41563416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01768267 146.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01768268 146.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01768269 146.41567993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01768270 146.41567993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01768271 146.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01768272 146.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01768273 146.41572571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01768274 146.41572571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01768275 146.41575623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01768276 146.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01768277 146.41578674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01768278 146.41580200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01768279 146.41581726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01768280 146.41581726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01768281 146.41584778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01768282 146.41584778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01768283 146.41587830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01768284 146.41587830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01768285 146.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01768286 146.41590881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01768287 146.41593933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01768288 146.41593933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01768289 146.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01768290 146.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01768291 146.41598511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01768292 146.41598511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01768293 146.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01768294 146.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01768295 146.41603088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01768296 146.41604614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01768297 146.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01768298 146.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01768299 146.41610718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01768300 146.41610718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01768301 146.41612244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01768302 146.41612244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01768303 146.41615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01768304 146.41615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01768305 146.41618347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01768306 146.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01768307 146.41621399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01768308 146.41621399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01768309 146.41624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01768310 146.41624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01768311 146.41627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01768312 146.41627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01768313 146.41629028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01768314 146.41629028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01768315 146.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01768316 146.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01768317 146.41635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01768318 146.41635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01768319 146.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01768320 146.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01768321 146.41641235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01768322 146.41641235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01768323 146.41642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01768324 146.41642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01768325 146.41645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01768326 146.41645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01768327 146.41648865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01768328 146.41648865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01768329 146.41651917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01768330 146.41651917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01768331 146.41654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01768332 146.41654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01768333 146.41658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01768334 146.41658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01768335 146.41659546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01768336 146.41659546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01768337 146.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01768338 146.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01768339 146.41665649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01768340 146.41667175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01768341 146.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01768342 146.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01768343 146.41671753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01768344 146.41671753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01768345 146.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01768346 146.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01768347 146.41676331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01768348 146.41676331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01768349 146.41679382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01768350 146.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01768351 146.41683960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01768352 146.41683960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01768353 146.41685486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01768354 146.41685486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01768355 146.41688538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01768356 146.41688538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01768357 146.41691589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01768358 146.41691589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01768359 146.41703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01768360 146.41703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01768361 146.41706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01768362 146.41706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01768363 146.41708374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01768364 146.41708374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01768365 146.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01768366 146.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01768367 146.41714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01768368 146.41714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01768369 146.41716003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01768370 146.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01768371 146.41720581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01768372 146.41720581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01768373 146.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01768374 146.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01768375 146.41725159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01768376 146.41725159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01768377 146.41728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01768378 146.41728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01768379 146.41731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01768380 146.41731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01768381 146.41732788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01768382 146.41732788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01768383 146.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01768384 146.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01768385 146.41738892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01768386 146.41738892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01768387 146.41740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01768388 146.41740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01768389 146.41743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01768390 146.41743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01768391 146.41746521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01768392 146.41746521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01768393 146.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01768394 146.41749573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01768395 146.41752625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01768396 146.41752625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01768397 146.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01768398 146.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01768399 146.41757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01768400 146.41757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01768401 146.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01768402 146.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01768403 146.41763306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01768404 146.41763306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01768405 146.41764832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01768406 146.41764832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01768407 146.41767883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01768408 146.41767883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01768409 146.41770935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01768410 146.41770935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01768411 146.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01768412 146.41773987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01768413 146.41775513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01768414 146.41777039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01768415 146.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01768416 146.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01768417 146.41781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01768418 146.41781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01768419 146.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01768420 146.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01768421 146.41786194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01768422 146.41786194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01768423 146.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01768424 146.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01768425 146.41793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01768426 146.41793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01768427 146.41795349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01768428 146.41795349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01768429 146.41798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01768430 146.41798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01768431 146.41801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01768432 146.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01768433 146.41804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01768434 146.41804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01768435 146.41807556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01768436 146.41807556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01768437 146.41810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01768438 146.41810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01768439 146.41812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01768440 146.41812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01768441 146.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01768442 146.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01768443 146.41818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01768444 146.41818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01768445 146.41819763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01768446 146.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01768447 146.41822815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01768448 146.41824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01768449 146.41825867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01768450 146.41825867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01768451 146.41828918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01768452 146.41828918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01768453 146.41831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01768454 146.41831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01768455 146.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01768456 146.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01768457 146.41836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01768458 146.41836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01768459 146.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01768460 146.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01768461 146.41842651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01768462 146.41842651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01768463 146.41844177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01768464 146.41844177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01768465 146.41847229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01768466 146.41847229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01768467 146.41850281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01768468 146.41850281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01768469 146.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01768470 146.41853333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01768471 146.41856384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01768472 146.41856384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01768473 146.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01768474 146.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01768475 146.41860962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01768476 146.41860962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01768477 146.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01768478 146.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01768479 146.41865540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01768480 146.41865540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01768481 146.41868591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01768482 146.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01768483 146.41873169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01768484 146.41873169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01768485 146.41874695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01768486 146.41874695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01768487 146.41877747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01768488 146.41877747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01768489 146.41880798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01768490 146.41880798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01768491 146.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01768492 146.41883850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01768493 146.41886902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01768494 146.41886902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01768495 146.41889954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01768496 146.41889954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01768497 146.41891479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01768498 146.41891479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01768499 146.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01768500 146.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01768501 146.41897583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01768502 146.41897583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01768503 146.41899109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01768504 146.41899109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01768505 146.41902161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01768506 146.41902161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01768507 146.41905212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01768508 146.41905212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01768509 146.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01768510 146.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01768511 146.41909790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01768512 146.41911316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01768513 146.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01768514 146.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01768515 146.41915894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01768516 146.41915894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01768517 146.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01768518 146.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01768519 146.41921997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01768520 146.41921997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01768521 146.41923523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01768522 146.41923523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01768523 146.41926575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01768524 146.41926575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01768525 146.41929626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01768526 146.41929626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01768527 146.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01768528 146.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01768529 146.41934204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01768530 146.41934204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01768531 146.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01768532 146.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01768533 146.41938782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01768534 146.41938782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01768535 146.41941833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01768536 146.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01768537 146.41944885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01768538 146.41944885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01768539 146.41947937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01768540 146.41947937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01768541 146.41950989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01768542 146.41950989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01768543 146.41954041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01768544 146.41954041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01768545 146.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01768546 146.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01768547 146.41958618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01768548 146.41958618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01768549 146.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01768550 146.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01768551 146.41963196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01768552 146.41963196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01768553 146.41966248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01768554 146.41966248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01768555 146.41969299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01768556 146.41969299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01768557 146.41970825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01768558 146.41972351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01768559 146.41975403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01768560 146.41975403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01768561 146.41976929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01768562 146.41976929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01768563 146.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01768564 146.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01768565 146.41983032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01768566 146.41984558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01768567 146.41984558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01768568 146.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01768569 146.41989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01768570 146.41989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01768571 146.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01768572 146.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01768573 146.41993713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01768574 146.41993713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01768575 146.41996765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01768576 146.41996765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01768577 146.41999817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01768578 146.41999817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01768579 146.42001343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01768580 146.42001343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01768581 146.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01768582 146.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01768583 146.42007446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01768584 146.42007446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01768585 146.42008972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01768586 146.42008972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01768587 146.42012024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01768588 146.42013550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01768589 146.42015076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01768590 146.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01768591 146.42018127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01768592 146.42018127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01768593 146.42021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01768594 146.42021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01768595 146.42024231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01768596 146.42024231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01768597 146.42025757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01768598 146.42025757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01768599 146.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01768600 146.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01768601 146.42031860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01768602 146.42031860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01768603 146.42033386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01768604 146.42033386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01768605 146.42036438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01768606 146.42036438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01768607 146.42039490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01768608 146.42039490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01768609 146.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01768610 146.42042542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01768611 146.42044067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01768612 146.42045593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01768613 146.42048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01768614 146.42048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01768615 146.42050171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01768616 146.42050171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01768617 146.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01768618 146.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01768619 146.42056274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01768620 146.42056274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01768621 146.42057800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01768622 146.42057800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01768623 146.42060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01768624 146.42060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01768625 146.42063904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01768626 146.42063904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01768627 146.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01768628 146.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01768629 146.42070007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01768630 146.42070007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01768631 146.42073059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01768632 146.42073059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01768633 146.42074585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01768634 146.42074585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01768635 146.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01768636 146.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01768637 146.42080688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01768638 146.42080688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01768639 146.42082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01768640 146.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01768641 146.42085266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01768642 146.42086792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01768643 146.42088318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01768644 146.42088318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01768645 146.42091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01768646 146.42091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01768647 146.42094421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01768648 146.42094421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01768649 146.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01768650 146.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01768651 146.42098999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01768652 146.42098999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01768653 146.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01768654 146.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01768655 146.42103577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01768656 146.42103577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01768657 146.42106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01768658 146.42106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01768659 146.42109680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01768660 146.42109680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01768661 146.42112732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01768662 146.42112732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01768663 146.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01768664 146.42115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01768665 146.42118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01768666 146.42118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01768667 146.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01768668 146.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01768669 146.42123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01768670 146.42123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01768671 146.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01768672 146.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01768673 146.42127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01768674 146.42127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01768675 146.42131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01768676 146.42131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01768677 146.42134094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01768678 146.42134094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01768679 146.42135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01768680 146.42135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01768681 146.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01768682 146.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01768683 146.42141724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01768684 146.42141724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01768685 146.42143250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01768686 146.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01768687 146.42146301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01768688 146.42147827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01768689 146.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01768690 146.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01768691 146.42152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01768692 146.42152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01768693 146.42155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01768694 146.42155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01768695 146.42158508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01768696 146.42158508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01768697 146.42160034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01768698 146.42160034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01768699 146.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01768700 146.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01768701 146.42166138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01768702 146.42166138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01768703 146.42167664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01768704 146.42167664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01768705 146.42170715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01768706 146.42172241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01768707 146.42173767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01768708 146.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01768709 146.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01768710 146.42176819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01768711 146.42179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01768712 146.42179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01768713 146.42182922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01768714 146.42182922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01768715 146.42184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01768716 146.42184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01768717 146.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01768718 146.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01768719 146.42190552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01768720 146.42190552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01768721 146.42192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01768722 146.42192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01768723 146.42195129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01768724 146.42196655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01768725 146.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01768726 146.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01768727 146.42201233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01768728 146.42201233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01768729 146.42204285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01768730 146.42204285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01768731 146.42207336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01768732 146.42207336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01768733 146.42208862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01768734 146.42208862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01768735 146.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01768736 146.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01768737 146.42214966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01768738 146.42214966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01768739 146.42216492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01768740 146.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01768741 146.42221069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01768742 146.42221069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01768743 146.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01768744 146.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01768745 146.42225647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01768746 146.42225647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01768747 146.42228699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01768748 146.42228699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01768749 146.42231750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01768750 146.42231750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01768751 146.42233276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01768752 146.42233276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01768753 146.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01768754 146.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01768755 146.42239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01768756 146.42239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01768757 146.42240906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01768758 146.42240906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01768759 146.42243958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01768760 146.42245483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01768761 146.42247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01768762 146.42247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01768763 146.42250061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01768764 146.42250061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01768765 146.42253113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01768766 146.42253113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01768767 146.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01768768 146.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01768769 146.42257690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01768770 146.42257690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01768771 146.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01768772 146.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01768773 146.42263794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01768774 146.42263794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01768775 146.42265320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01768776 146.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01768777 146.42269897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01768778 146.42269897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01768779 146.42271423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01768780 146.42271423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01768781 146.42274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01768782 146.42274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01768783 146.42277527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01768784 146.42277527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01768785 146.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01768786 146.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01768787 146.42282104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01768788 146.42283630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01768789 146.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01768790 146.42286682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01768791 146.42288208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01768792 146.42288208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01768793 146.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01768794 146.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01768795 146.42294312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01768796 146.42294312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01768797 146.42295837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01768798 146.42295837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01768799 146.42298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01768800 146.42298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01768801 146.42301941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01768802 146.42301941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01768803 146.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01768804 146.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01768805 146.42306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01768806 146.42306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01768807 146.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01768808 146.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01768809 146.42311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01768810 146.42311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01768811 146.42314148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01768812 146.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01768813 146.42317200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01768814 146.42318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01768815 146.42320251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01768816 146.42320251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01768817 146.42323303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01768818 146.42323303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01768819 146.42326355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01768820 146.42326355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01768821 146.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01768822 146.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01768823 146.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01768824 146.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01768825 146.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01768826 146.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01768827 146.42335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01768828 146.42335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01768829 146.42341614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01768830 146.42341614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01768831 146.42343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01768832 146.42343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01768833 146.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01768834 146.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01768835 146.42349243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01768836 146.42349243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01768837 146.42350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01768838 146.42350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01768839 146.42353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01768840 146.42353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01768841 146.42356873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01768842 146.42356873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01768843 146.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01768844 146.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01768845 146.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01768846 146.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01768847 146.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01768848 146.42366028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01768849 146.42366028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01768850 146.42367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01768851 146.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01768852 146.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01768853 146.42373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01768854 146.42373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01768855 146.42375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01768856 146.42375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01768857 146.42378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01768858 146.42378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01768859 146.42381287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01768860 146.42381287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01768861 146.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01768862 146.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01768863 146.42385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01768864 146.42385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01768865 146.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01768866 146.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01768867 146.42390442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01768868 146.42390442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01768869 146.42393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01768870 146.42393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01768871 146.42396545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01768872 146.42398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01768873 146.42399597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01768874 146.42399597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01768875 146.42402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01768876 146.42402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01768877 146.42405701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01768878 146.42405701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01768879 146.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01768880 146.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01768881 146.42410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01768882 146.42410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01768883 146.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01768884 146.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01768885 146.42416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01768886 146.42416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01768887 146.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01768888 146.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01768889 146.42422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01768890 146.42422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01768891 146.42424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01768892 146.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01768893 146.42427063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01768894 146.42428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01768895 146.42430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01768896 146.42430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01768897 146.42433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01768898 146.42433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01768899 146.42436218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01768900 146.42436218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01768901 146.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01768902 146.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01768903 146.42440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01768904 146.42440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01768905 146.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01768906 146.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01768907 146.42445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01768908 146.42445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01768909 146.42448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01768910 146.42448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01768911 146.42451477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01768912 146.42451477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01768913 146.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01768914 146.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01768915 146.42459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01768916 146.42460632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01768917 146.42463684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01768918 146.42463684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01768919 146.42466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01768920 146.42466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01768921 146.42469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01768922 146.42469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01768923 146.42472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01768924 146.42472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01768925 146.42475891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01768926 146.42477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01768927 146.42478943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01768928 146.42478943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01768929 146.42481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01768930 146.42481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01768931 146.42485046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01768932 146.42485046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01768933 146.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01768934 146.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01768935 146.42489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01768936 146.42491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01768937 146.42494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01768938 146.42494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01768939 146.42495728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01768940 146.42495728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01768941 146.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01768942 146.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01768943 146.42501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01768944 146.42501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01768945 146.42503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01768946 146.42503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01768947 146.42506409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01768948 146.42506409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01768949 146.42509460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01768950 146.42509460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01768951 146.42512512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01768952 146.42512512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01768953 146.42515564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01768954 146.42515564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01768955 146.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01768956 146.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01768957 146.42520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01768958 146.42520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01768959 146.42523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01768960 146.42524719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01768961 146.42524719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01768962 146.42526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01768963 146.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01768964 146.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01768965 146.42532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01768966 146.42532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01768967 146.42533875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01768968 146.42533875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01768969 146.42536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01768970 146.42536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01768971 146.42539978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01768972 146.42539978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01768973 146.42541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01768974 146.42541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01768975 146.42544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01768976 146.42544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01768977 146.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01768978 146.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01768979 146.42549133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01768980 146.42549133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01768981 146.42552185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01768982 146.42553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01768983 146.42555237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01768984 146.42556763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01768985 146.42558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01768986 146.42558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01768987 146.42561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01768988 146.42561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01768989 146.42564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01768990 146.42564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01768991 146.42565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01768992 146.42565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01768993 146.42568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01768994 146.42568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01768995 146.42572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01768996 146.42573547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01768997 146.42575073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01768998 146.42575073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01768999 146.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01769000 146.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01769001 146.42581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01769002 146.42581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01769003 146.42582703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01769004 146.42584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01769005 146.42585754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01769006 146.42587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01769007 146.42588806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01769008 146.42588806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01769009 146.42591858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01769010 146.42591858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01769011 146.42594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01769012 146.42594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01769013 146.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01769014 146.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01769015 146.42599487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01769016 146.42599487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01769017 146.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01769018 146.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01769019 146.42604065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01769020 146.42605591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01769021 146.42608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01769022 146.42608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01769023 146.42611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01769024 146.42611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01769025 146.42613220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01769026 146.42613220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01769027 146.42616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01769028 146.42616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01769029 146.42619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01769030 146.42619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01769031 146.42620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01769032 146.42622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01769033 146.42625427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01769034 146.42625427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01769035 146.42628479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01769036 146.42628479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01769037 146.42630005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01769038 146.42630005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01769039 146.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01769040 146.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01769041 146.42636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01769042 146.42636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01769043 146.42639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01769044 146.42639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01769045 146.42642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01769046 146.42642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01769047 146.42643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01769048 146.42643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01769049 146.42646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01769050 146.42646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01769051 146.42649841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01769052 146.42649841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01769053 146.42652893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01769054 146.42652893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01769055 146.42654419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01769056 146.42655945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01769057 146.42658997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01769058 146.42658997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01769059 146.42660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01769060 146.42660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01769061 146.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01769062 146.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01769063 146.42666626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01769064 146.42666626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01769065 146.42668152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01769066 146.42668152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01769067 146.42672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01769068 146.42672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01769069 146.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01769070 146.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01769071 146.42677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01769072 146.42677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01769073 146.42680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01769074 146.42680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01769075 146.42683411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01769076 146.42683411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01769077 146.42684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01769078 146.42684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01769079 146.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01769080 146.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01769081 146.42691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01769082 146.42691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01769083 146.42694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01769084 146.42694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01769085 146.42697144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01769086 146.42697144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01769087 146.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01769088 146.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01769089 146.42703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01769090 146.42703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01769091 146.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01769092 146.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01769093 146.42707825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01769094 146.42707825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01769095 146.42710876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01769096 146.42710876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01769097 146.42713928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01769098 146.42715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01769099 146.42716980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01769100 146.42716980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01769101 146.42720032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01769102 146.42720032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01769103 146.42723083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01769104 146.42723083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01769105 146.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01769106 146.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01769107 146.42727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01769108 146.42727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01769109 146.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01769110 146.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01769111 146.42732239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01769112 146.42733765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01769113 146.42735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01769114 146.42736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01769115 146.42739868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01769116 146.42739868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01769117 146.42741394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01769118 146.42741394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01769119 146.42745972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01769120 146.42745972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01769121 146.42747498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01769122 146.42747498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01769123 146.42750549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01769124 146.42750549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01769125 146.42753601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01769126 146.42753601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01769127 146.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01769128 146.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01769129 146.42758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01769130 146.42758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01769131 146.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01769132 146.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01769133 146.42764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01769134 146.42764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01769135 146.42765808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01769136 146.42767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01769137 146.42768860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01769138 146.42770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01769139 146.42771912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01769140 146.42771912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01769141 146.42774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01769142 146.42774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01769143 146.42778015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01769144 146.42778015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01769145 146.42779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01769146 146.42779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01769147 146.42782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01769148 146.42782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01769149 146.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01769150 146.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01769151 146.42787170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01769152 146.42787170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01769153 146.42790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01769154 146.42790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01769155 146.42793274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01769156 146.42793274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01769157 146.42794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01769158 146.42796326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01769159 146.42797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01769160 146.42799377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01769161 146.42800903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01769162 146.42802429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01769163 146.42803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01769164 146.42803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01769165 146.42807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01769166 146.42807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01769167 146.42810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01769168 146.42810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01769169 146.42811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01769170 146.42811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01769171 146.42814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01769172 146.42814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01769173 146.42817688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01769174 146.42817688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01769175 146.42819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01769176 146.42819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01769177 146.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01769178 146.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01769179 146.42825317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01769180 146.42825317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01769181 146.42826843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01769182 146.42828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01769183 146.42829895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01769184 146.42831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01769185 146.42834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01769186 146.42834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01769187 146.42835999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01769188 146.42835999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01769189 146.42839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01769190 146.42839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01769191 146.42842102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01769192 146.42842102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01769193 146.42843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01769194 146.42843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01769195 146.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01769196 146.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01769197 146.42849731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01769198 146.42849731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01769199 146.42851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01769200 146.42851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01769201 146.42854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01769202 146.42854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01769203 146.42857361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01769204 146.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01769205 146.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01769206 146.42860413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01769207 146.42863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01769208 146.42863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01769209 146.42866516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01769210 146.42866516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01769211 146.42868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01769212 146.42868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01769213 146.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01769214 146.42872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01769215 146.42874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01769216 146.42874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01769217 146.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01769218 146.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01769219 146.42880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01769220 146.42880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01769221 146.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01769222 146.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01769223 146.42884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01769224 146.42884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01769225 146.42887878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01769226 146.42887878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01769227 146.42890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01769228 146.42890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01769229 146.42892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01769230 146.42892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01769231 146.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01769232 146.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01769233 146.42898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01769234 146.42898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01769235 146.42900085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01769236 146.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01769237 146.42904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01769238 146.42904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01769239 146.42906189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01769240 146.42906189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01769241 146.42909241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01769242 146.42909241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01769243 146.42912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01769244 146.42912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01769245 146.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01769246 146.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01769247 146.42916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01769248 146.42916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01769249 146.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01769250 146.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01769251 146.42922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01769252 146.42922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01769253 146.42924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01769254 146.42924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01769255 146.42927551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01769256 146.42929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01769257 146.42930603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01769258 146.42930603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01769259 146.42933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01769260 146.42933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01769261 146.42936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01769262 146.42936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01769263 146.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01769264 146.42939758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01769265 146.42942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01769266 146.42942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01769267 146.42945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01769268 146.42945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01769269 146.42947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01769270 146.42947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01769271 146.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01769272 146.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01769273 146.42953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01769274 146.42953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01769275 146.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01769276 146.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01769277 146.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01769278 146.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01769279 146.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01769280 146.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01769281 146.42964172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01769282 146.42964172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01769283 146.42967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01769284 146.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01769285 146.42970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01769286 146.42970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01769287 146.42973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01769288 146.42973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01769289 146.42976379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01769290 146.42976379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01769291 146.42977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01769292 146.42977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01769293 146.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01769294 146.42982483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01769295 146.42985535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01769296 146.42985535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01769297 146.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01769298 146.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01769299 146.42990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01769300 146.42990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01769301 146.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01769302 146.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01769303 146.42996216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01769304 146.42996216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01769305 146.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01769306 146.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01769307 146.43002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01769308 146.43002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01769309 146.43003845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01769310 146.43003845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01769311 146.43006897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01769312 146.43006897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01769313 146.43009949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01769314 146.43009949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01769315 146.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01769316 146.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01769317 146.43014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01769318 146.43014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01769319 146.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01769320 146.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01769321 146.43019104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01769322 146.43019104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01769323 146.43022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01769324 146.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01769325 146.43025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01769326 146.43025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01769327 146.43028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01769328 146.43028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01769329 146.43031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01769330 146.43031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01769331 146.43034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01769332 146.43034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01769333 146.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01769334 146.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01769335 146.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01769336 146.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01769337 146.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01769338 146.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01769339 146.43043518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01769340 146.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01769341 146.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01769342 146.43049622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01769343 146.43052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01769344 146.43052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01769345 146.43055725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01769346 146.43055725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01769347 146.43057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01769348 146.43058777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01769349 146.43061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01769350 146.43061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01769351 146.43064880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01769352 146.43064880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01769353 146.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01769354 146.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01769355 146.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01769356 146.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01769357 146.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01769358 146.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01769359 146.43074036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01769360 146.43074036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01769361 146.43077087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01769362 146.43077087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01769363 146.43081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01769364 146.43081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01769365 146.43083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01769366 146.43083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01769367 146.43086243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01769368 146.43086243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01769369 146.43089294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01769370 146.43089294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01769371 146.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01769372 146.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01769373 146.43093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01769374 146.43095398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01769375 146.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01769376 146.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01769377 146.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01769378 146.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01769379 146.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01769380 146.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01769381 146.43104553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01769382 146.43104553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01769383 146.43107605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01769384 146.43107605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01769385 146.43110657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01769386 146.43110657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01769387 146.43113708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01769388 146.43113708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01769389 146.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01769390 146.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01769391 146.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01769392 146.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01769393 146.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01769394 146.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01769395 146.43122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01769396 146.43122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01769397 146.43125916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01769398 146.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01769399 146.43128967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01769400 146.43128967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01769401 146.43132019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01769402 146.43132019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01769403 146.43135071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01769404 146.43135071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01769405 146.43136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01769406 146.43136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01769407 146.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01769408 146.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01769409 146.43142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01769410 146.43142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01769411 146.43144226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01769412 146.43144226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01769413 146.43147278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01769414 146.43147278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01769415 146.43150330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01769416 146.43150330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01769417 146.43153381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01769418 146.43153381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01769419 146.43154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01769420 146.43156433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01769421 146.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01769422 146.43159485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01769423 146.43161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01769424 146.43161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01769425 146.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01769426 146.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01769427 146.43167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01769428 146.43167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01769429 146.43168640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01769430 146.43168640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01769431 146.43171692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01769432 146.43173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01769433 146.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01769434 146.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01769435 146.43177795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01769436 146.43177795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01769437 146.43180847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01769438 146.43180847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01769439 146.43183899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01769440 146.43183899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01769441 146.43185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01769442 146.43185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01769443 146.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01769444 146.43190002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01769445 146.43191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01769446 146.43193054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01769447 146.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01769448 146.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01769449 146.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01769450 146.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01769451 146.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01769452 146.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01769453 146.43202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01769454 146.43202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01769455 146.43205261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01769456 146.43205261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01769457 146.43208313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01769458 146.43208313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01769459 146.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01769460 146.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01769461 146.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01769462 146.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01769463 146.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01769464 146.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01769465 146.43217468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01769466 146.43217468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01769467 146.43220520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01769468 146.43222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01769469 146.43223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01769470 146.43223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01769471 146.43226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01769472 146.43226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01769473 146.43229675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01769474 146.43229675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01769475 146.43232727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01769476 146.43232727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01769477 146.43234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01769478 146.43234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01769479 146.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01769480 146.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01769481 146.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01769482 146.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01769483 146.43241882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01769484 146.43241882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01769485 146.43244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01769486 146.43244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01769487 146.43247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01769488 146.43247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01769489 146.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01769490 146.43251038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01769491 146.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01769492 146.43254089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01769493 146.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01769494 146.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01769495 146.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01769496 146.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01769497 146.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01769498 146.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01769499 146.43263245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01769500 146.43263245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01769501 146.43266296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01769502 146.43266296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01769503 146.43269348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01769504 146.43269348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01769505 146.43272400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01769506 146.43272400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01769507 146.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01769508 146.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01769509 146.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01769510 146.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01769511 146.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01769512 146.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01769513 146.43281555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01769514 146.43283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01769515 146.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01769516 146.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01769517 146.43287659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01769518 146.43287659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01769519 146.43290710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01769520 146.43290710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01769521 146.43293762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01769522 146.43293762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01769523 146.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01769524 146.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01769525 146.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01769526 146.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01769527 146.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01769528 146.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01769529 146.43302917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01769530 146.43302917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01769531 146.43305969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01769532 146.43305969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01769533 146.43309021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01769534 146.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01769535 146.43312073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01769536 146.43312073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01769537 146.43315125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01769538 146.43315125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01769539 146.43318176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01769540 146.43318176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01769541 146.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01769542 146.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01769543 146.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01769544 146.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01769545 146.43325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01769546 146.43325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01769547 146.43327332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01769548 146.43327332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01769549 146.43330383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01769550 146.43330383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01769551 146.43333435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01769552 146.43333435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01769553 146.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01769554 146.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01769555 146.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01769556 146.43339539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01769557 146.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01769558 146.43342590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01769559 146.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01769560 146.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01769561 146.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01769562 146.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01769563 146.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01769564 146.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01769565 146.43351746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01769566 146.43351746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01769567 146.43354797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01769568 146.43354797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01769569 146.43357849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01769570 146.43357849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01769571 146.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01769572 146.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01769573 146.43362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01769574 146.43362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01769575 146.43365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01769576 146.43367004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01769577 146.43367004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01769578 146.43368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01769579 146.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01769580 146.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01769581 146.43374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01769582 146.43374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01769583 146.43376160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01769584 146.43376160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01769585 146.43379211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01769586 146.43379211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01769587 146.43382263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01769588 146.43382263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01769589 146.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01769590 146.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01769591 146.43386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01769592 146.43386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01769593 146.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01769594 146.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01769595 146.43391418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01769596 146.43391418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01769597 146.43394470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01769598 146.43394470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01769599 146.43399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01769600 146.43399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01769601 146.43400574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01769602 146.43400574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01769603 146.43403625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01769604 146.43403625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01769605 146.43406677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01769606 146.43406677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01769607 146.43409729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01769608 146.43409729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01769609 146.43412781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01769610 146.43412781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01769611 146.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01769612 146.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01769613 146.43417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01769614 146.43417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01769615 146.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01769616 146.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01769617 146.43423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01769618 146.43423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01769619 146.43424988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01769620 146.43424988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01769621 146.43428040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01769622 146.43428040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01769623 146.43431091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01769624 146.43431091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01769625 146.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01769626 146.43434143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01769627 146.43437195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01769628 146.43437195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01769629 146.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01769630 146.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01769631 146.43441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01769632 146.43441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01769633 146.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01769634 146.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01769635 146.43446350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01769636 146.43446350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01769637 146.43449402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01769638 146.43449402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01769639 146.43452454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01769640 146.43452454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01769641 146.43453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01769642 146.43453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01769643 146.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01769644 146.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01769645 146.43460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01769646 146.43461609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01769647 146.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01769648 146.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01769649 146.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01769650 146.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01769651 146.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01769652 146.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01769653 146.43470764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01769654 146.43472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01769655 146.43473816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01769656 146.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01769657 146.43478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01769658 146.43478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01769659 146.43479919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01769660 146.43479919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01769661 146.43482971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01769662 146.43482971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01769663 146.43486023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01769664 146.43486023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01769665 146.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01769666 146.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01769667 146.43490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01769668 146.43490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01769669 146.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01769670 146.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01769671 146.43495178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01769672 146.43495178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01769673 146.43498230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01769674 146.43498230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01769675 146.43501282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01769676 146.43502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01769677 146.43502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01769678 146.43504333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01769679 146.43507385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01769680 146.43507385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01769681 146.43510437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01769682 146.43510437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01769683 146.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01769684 146.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01769685 146.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01769686 146.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01769687 146.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01769688 146.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01769689 146.43519592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01769690 146.43519592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01769691 146.43522644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01769692 146.43522644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01769693 146.43525696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01769694 146.43525696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01769695 146.43527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01769696 146.43527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01769697 146.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01769698 146.43531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01769699 146.43533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01769700 146.43533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01769701 146.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01769702 146.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01769703 146.43539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01769704 146.43539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01769705 146.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01769706 146.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01769707 146.43544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01769708 146.43544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01769709 146.43547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01769710 146.43547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01769711 146.43550110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01769712 146.43550110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01769713 146.43551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01769714 146.43551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01769715 146.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01769716 146.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01769717 146.43557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01769718 146.43557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01769719 146.43559265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01769720 146.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01769721 146.43563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01769722 146.43563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01769723 146.43565369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01769724 146.43565369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01769725 146.43568420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01769726 146.43568420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01769727 146.43571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01769728 146.43571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01769729 146.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01769730 146.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01769731 146.43576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01769732 146.43576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01769733 146.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01769734 146.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01769735 146.43582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01769736 146.43582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01769737 146.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01769738 146.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01769739 146.43588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01769740 146.43588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01769741 146.43589783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01769742 146.43589783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01769743 146.43592834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01769744 146.43594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01769745 146.43595886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01769746 146.43597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01769747 146.43597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01769748 146.43598938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01769749 146.43601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01769750 146.43601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01769751 146.43605042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01769752 146.43605042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01769753 146.43606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01769754 146.43606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01769755 146.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01769756 146.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01769757 146.43612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01769758 146.43612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01769759 146.43614197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01769760 146.43614197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01769761 146.43617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01769762 146.43617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01769763 146.43620300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01769764 146.43620300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01769765 146.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01769766 146.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01769767 146.43624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01769768 146.43626404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01769769 146.43627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01769770 146.43629456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01769771 146.43630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01769772 146.43630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01769773 146.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01769774 146.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01769775 146.43637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01769776 146.43637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01769777 146.43638611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01769778 146.43638611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01769779 146.43641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01769780 146.43641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01769781 146.43644714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01769782 146.43644714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01769783 146.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01769784 146.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01769785 146.43649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01769786 146.43649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01769787 146.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01769788 146.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01769789 146.43653870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01769790 146.43655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01769791 146.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01769792 146.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01769793 146.43661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01769794 146.43661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01769795 146.43663025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01769796 146.43663025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01769797 146.43666077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01769798 146.43666077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01769799 146.43669128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01769800 146.43669128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01769801 146.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01769802 146.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01769803 146.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01769804 146.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01769805 146.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01769806 146.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01769807 146.43678284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01769808 146.43678284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01769809 146.43681335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01769810 146.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01769811 146.43684387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01769812 146.43684387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01769813 146.43685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01769814 146.43687439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01769815 146.43690491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01769816 146.43690491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01769817 146.43693542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01769818 146.43693542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01769819 146.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01769820 146.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01769821 146.43698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01769822 146.43698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01769823 146.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01769824 146.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01769825 146.43702698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01769826 146.43702698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01769827 146.43705750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01769828 146.43705750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01769829 146.43708801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01769830 146.43708801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01769831 146.43710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01769832 146.43711853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01769833 146.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01769834 146.43714905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01769835 146.43716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01769836 146.43716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01769837 146.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01769838 146.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01769839 146.43722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01769840 146.43722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01769841 146.43724060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01769842 146.43724060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01769843 146.43727112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01769844 146.43727112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01769845 146.43730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01769846 146.43730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01769847 146.43733215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01769848 146.43733215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01769849 146.43734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01769850 146.43734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01769851 146.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01769852 146.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01769853 146.43740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01769854 146.43740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01769855 146.43742371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01769856 146.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01769857 146.43745422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01769858 146.43746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01769859 146.43748474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01769860 146.43748474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01769861 146.43751526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01769862 146.43751526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01769863 146.43754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01769864 146.43754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01769865 146.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01769866 146.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01769867 146.43759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01769868 146.43759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01769869 146.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01769870 146.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01769871 146.43763733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01769872 146.43763733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01769873 146.43766785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01769874 146.43766785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01769875 146.43769836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01769876 146.43771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01769877 146.43772888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01769878 146.43772888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01769879 146.43775940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01769880 146.43775940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01769881 146.43778992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01769882 146.43778992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01769883 146.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01769884 146.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01769885 146.43783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01769886 146.43783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01769887 146.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01769888 146.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01769889 146.43788147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01769890 146.43788147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01769891 146.43791199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01769892 146.43791199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01769893 146.43794250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01769894 146.43794250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01769895 146.43795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01769896 146.43795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01769897 146.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01769898 146.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01769899 146.43801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01769900 146.43803406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01769901 146.43803406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01769902 146.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01769903 146.43807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01769904 146.43807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01769905 146.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01769906 146.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01769907 146.43812561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01769908 146.43812561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01769909 146.43815613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01769910 146.43815613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01769911 146.43818665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01769912 146.43818665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01769913 146.43820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01769914 146.43820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01769915 146.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01769916 146.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01769917 146.43826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01769918 146.43826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01769919 146.43827820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01769920 146.43827820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01769921 146.43830872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01769922 146.43832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01769923 146.43833923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01769924 146.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01769925 146.43836975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01769926 146.43836975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01769927 146.43840027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01769928 146.43840027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01769929 146.43843079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01769930 146.43843079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01769931 146.43844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01769932 146.43844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01769933 146.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01769934 146.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01769935 146.43850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01769936 146.43850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01769937 146.43852234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01769938 146.43852234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01769939 146.43855286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01769940 146.43855286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01769941 146.43858337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01769942 146.43858337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01769943 146.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01769944 146.43861389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01769945 146.43864441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01769946 146.43864441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01769947 146.43867493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01769948 146.43867493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01769949 146.43869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01769950 146.43869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01769951 146.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01769952 146.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01769953 146.43875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01769954 146.43875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01769955 146.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01769956 146.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01769957 146.43881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01769958 146.43881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01769959 146.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01769960 146.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01769961 146.43885803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01769962 146.43885803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01769963 146.43888855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01769964 146.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01769965 146.43891907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01769966 146.43891907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01769967 146.43894958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01769968 146.43894958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01769969 146.43898010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01769970 146.43898010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01769971 146.43899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01769972 146.43899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01769973 146.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01769974 146.43904114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01769975 146.43907166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01769976 146.43907166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01769977 146.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01769978 146.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01769979 146.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01769980 146.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01769981 146.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01769982 146.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01769983 146.43916321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01769984 146.43916321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01769985 146.43919373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01769986 146.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01769987 146.43922424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01769988 146.43923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01769989 146.43925476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01769990 146.43925476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01769991 146.43928528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01769992 146.43928528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01769993 146.43931580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01769994 146.43931580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01769995 146.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01769996 146.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01769997 146.43936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01769998 146.43936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01769999 146.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01770000 146.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01770001 146.43940735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01770572 146.44726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01770573 146.44729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01770574 146.44729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01770575 146.44734192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01770576 146.44734192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01770577 146.44737244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01770578 146.44737244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01770579 146.44741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01770580 146.44741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01770581 146.44743347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01770582 146.44743347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01770583 146.44746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01770584 146.44746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01770585 146.44749451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01770586 146.44749451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01770587 146.44750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01770588 146.44750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01770589 146.44754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01770590 146.44754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01770591 146.44757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01770592 146.44757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01770593 146.44758606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01770594 146.44760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01770595 146.44761658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01770596 146.44763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01770597 146.44764709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01770598 146.44764709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01770599 146.44767761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01770600 146.44767761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01770601 146.44770813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01770602 146.44770813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01770603 146.44773865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01770604 146.44773865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01770605 146.44775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01770606 146.44775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01770607 146.44778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01770608 146.44778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01770609 146.44781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01770610 146.44781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01770611 146.44783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01770612 146.44783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01770613 146.44786072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01770614 146.44786072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01770615 146.44789124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01771083 146.45433044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01771084 146.45434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01771085 146.45437622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01771086 146.45437622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01771087 146.45440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01771088 146.45440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01771089 146.45443726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01771090 146.45443726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01771091 146.45446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01771092 146.45446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01771093 146.45448303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01771094 146.45448303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01771095 146.45451355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01771096 146.45452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01771097 146.45454407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01771098 146.45455933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01771099 146.45457458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01771100 146.45457458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01771101 146.45460510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01771102 146.45460510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01771103 146.45463562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01771104 146.45463562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01771105 146.45465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01771106 146.45466614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01771107 146.45469666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01771108 146.45469666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01771109 146.45472717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01771110 146.45472717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01771111 146.45474243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01771112 146.45474243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01771113 146.45477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01771114 146.45477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01771115 146.45480347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01771116 146.45480347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01771117 146.45481873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01771118 146.45483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01771119 146.45486450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01771120 146.45486450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01771121 146.45487976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01771122 146.45487976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01771123 146.45491028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01771124 146.45491028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01771125 146.45494080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01771126 146.45494080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01771127 146.45495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01771128 146.45495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01771129 146.45498657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01771130 146.45498657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01771131 146.45501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01771132 146.45501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01771133 146.45504761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01771134 146.45504761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01771135 146.45506287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01771136 146.45506287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01771137 146.45509338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01771138 146.45510864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01771139 146.45512390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01771140 146.45512390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01771141 146.45513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01771142 146.45515442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01771143 146.45518494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01771144 146.45518494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01771145 146.45520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01771146 146.45520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01771147 146.45523071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01771148 146.45526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01771149 146.45527649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01771150 146.45527649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01771151 146.45530701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01771152 146.45530701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01771153 146.45533752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01771154 146.45533752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01771155 146.45535278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01771156 146.45535278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01771157 146.45538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01771158 146.45538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01771159 146.45541382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01771160 146.45541382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01771161 146.45544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01771162 146.45544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01771163 146.45545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01771164 146.45545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01771165 146.45549011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01771166 146.45550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01771167 146.45552063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01771168 146.45552063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01771169 146.45553589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01771170 146.45555115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01771171 146.45558167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01771172 146.45558167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01771173 146.45559692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01771174 146.45559692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01771175 146.45562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01771176 146.45562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01771177 146.45565796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01771178 146.45565796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01771179 146.45567322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01771180 146.45567322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01771181 146.45570374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01771182 146.45570374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01771183 146.45573425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01771184 146.45573425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01771185 146.45574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01771186 146.45574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01771187 146.45578003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01771188 146.45579529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01771189 146.45581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01771190 146.45582581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01771191 146.45584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01771205 146.45603943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01771206 146.45605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01771207 146.45606995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01771208 146.45606995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01771209 146.45610046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01771210 146.45610046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01771211 146.45613098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01771212 146.45613098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01771213 146.45614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01771214 146.45614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01771215 146.45617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01771216 146.45617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01771217 146.45620728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01771218 146.45620728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01771219 146.45623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01771220 146.45623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01771221 146.45625305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01771222 146.45625305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01771223 146.45628357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01771224 146.45629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01771225 146.45631409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01771226 146.45631409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01771227 146.45634460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01771228 146.45634460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01771229 146.45637512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01771230 146.45637512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01771231 146.45639038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01771232 146.45639038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01771233 146.45642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01771234 146.45642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01771235 146.45645142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01771236 146.45645142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01771237 146.45646667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01771238 146.45646667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01771239 146.45649719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01771240 146.45649719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01771241 146.45652771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01771242 146.45652771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01771243 146.45654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01771244 146.45654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01771245 146.45657349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01771246 146.45658875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01771247 146.45660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01771248 146.45661926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01771359 146.45817566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01771360 146.45817566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01771361 146.45820618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01771362 146.45822144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01771363 146.45822144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01771364 146.45823669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01771365 146.45826721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01771366 146.45826721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01771367 146.45829773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01771368 146.45829773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01771369 146.45831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01771370 146.45831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01771371 146.45834351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01771372 146.45834351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01771373 146.45837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01771374 146.45837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01771375 146.45838928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01771376 146.45840454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01771377 146.45843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01771378 146.45843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01771379 146.45845032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01771380 146.45845032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01771381 146.45848083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01771382 146.45848083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01771383 146.45851135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01771384 146.45851135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01771385 146.45854187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01771386 146.45854187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01771387 146.45857239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01771388 146.45857239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01771389 146.45860291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01771390 146.45860291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01771391 146.45861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01771392 146.45861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01771393 146.45864868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01771394 146.45866394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01771395 146.45869446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01771396 146.45869446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01771397 146.45870972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01771398 146.45870972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01771399 146.45874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01771400 146.45874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01771401 146.45877075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01771402 146.45877075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01771403 146.45878601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01771404 146.45880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01771405 146.45883179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01771406 146.45883179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01771407 146.45884705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01771408 146.45884705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01771409 146.45887756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01771410 146.45887756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01771411 146.45890808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01771412 146.45890808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01771413 146.45893860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01771414 146.45893860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01771415 146.45896912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01771416 146.45896912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01771417 146.45899963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01771418 146.45899963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01771419 146.45901489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01771420 146.45901489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01771421 146.45904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01771422 146.45904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01771423 146.45907593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01771424 146.45907593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01771425 146.45909119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01771426 146.45909119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01771427 146.45912170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01771428 146.45913696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01771429 146.45916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01771430 146.45916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01771934 146.46601868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01771935 146.46604919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01771936 146.46606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01771937 146.46607971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01771938 146.46607971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01771939 146.46611023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01771940 146.46611023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01771941 146.46614075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01771942 146.46614075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01771943 146.46615601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01771944 146.46615601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01771945 146.46618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01771946 146.46620178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01771947 146.46623230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01771948 146.46623230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01771949 146.46624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01771950 146.46624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01771951 146.46627808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01771952 146.46627808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01771953 146.46630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01771954 146.46630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01771955 146.46632385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01771956 146.46632385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01771957 146.46635437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01771958 146.46635437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01771959 146.46638489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01771960 146.46638489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01771961 146.46640015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01771962 146.46641541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01771963 146.46644592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01771964 146.46644592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01771965 146.46647644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01771966 146.46647644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01771967 146.46649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01771968 146.46650696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01771969 146.46652222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01771970 146.46653748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01771971 146.46655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01771972 146.46655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01771973 146.46658325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01771974 146.46658325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01771975 146.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01771976 146.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01771977 146.46664429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01772113 146.46846008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01772114 146.46846008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01772115 146.46849060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01772116 146.46849060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01772117 146.46852112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01772118 146.46852112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01772119 146.46853638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01772120 146.46853638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01772121 146.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01772122 146.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01772123 146.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01772124 146.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01772125 146.46862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01772126 146.46862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01772127 146.46864319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01772128 146.46865845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01772129 146.46867371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01772130 146.46868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01772131 146.46870422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01772132 146.46870422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01772133 146.46873474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01772134 146.46873474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01772135 146.46876526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01772136 146.46876526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01772137 146.46878052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01772138 146.46878052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01772139 146.46881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01772140 146.46881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01772141 146.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01772142 146.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01772143 146.46888733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01772144 146.46888733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01772145 146.46891785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01772146 146.46891785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01772147 146.46894836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01772148 146.46894836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01772149 146.46896362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01772150 146.46896362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01772151 146.46899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01772152 146.46899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01772153 146.46902466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01772154 146.46902466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01772155 146.46903992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01772156 146.46905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01772157 146.46907043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01772158 146.46908569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01772159 146.46910095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01772160 146.46910095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01772161 146.46913147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01772162 146.46913147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01772163 146.46916199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01772164 146.46916199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01772165 146.46917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01772166 146.46917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01772167 146.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01772168 146.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01772169 146.46923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01772170 146.46923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01772171 146.46926880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01772172 146.46928406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01772173 146.46931458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01772174 146.46931458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01772175 146.46934509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01772176 146.46934509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01772177 146.46936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01772178 146.46936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01772179 146.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01772180 146.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01772181 146.46942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01772182 146.46942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01772183 146.46943665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01772184 146.46943665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01772185 146.46946716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01772186 146.46946716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01772187 146.46949768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01772188 146.46949768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01772189 146.46951294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01772190 146.46951294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01772191 146.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01772192 146.46955872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01772193 146.46957397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01772194 146.46957397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01772195 146.46960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01772196 146.46960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01772197 146.46963501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01772198 146.46963501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01772199 146.46965027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01772200 146.46965027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01772201 146.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01772202 146.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01772203 146.46972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01772204 146.46972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01772205 146.46974182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01772206 146.46974182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01772207 146.46977234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01772208 146.46977234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01772209 146.46981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01772210 146.46981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01772211 146.46983337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01772212 146.46983337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01772213 146.46986389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01772214 146.46986389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01772215 146.46989441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01772216 146.46989441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01772217 146.46990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01772218 146.46990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01772219 146.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01772220 146.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01772221 146.46997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01772222 146.46997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01772223 146.46998596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01772224 146.46998596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01772225 146.47001648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01772226 146.47001648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01772227 146.47004700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01772228 146.47004700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01772229 146.47006226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01772230 146.47007751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01772231 146.47010803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01772232 146.47010803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01772233 146.47013855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01772234 146.47013855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01772235 146.47015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01772236 146.47015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01772237 146.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01772238 146.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01772239 146.47021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01772240 146.47021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01772241 146.47023010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01772242 146.47023010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01772243 146.47026062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01772244 146.47026062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01772245 146.47029114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01772246 146.47029114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01772247 146.47030640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01772248 146.47030640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01772249 146.47033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01772250 146.47035217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01772251 146.47036743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01772252 146.47036743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01772310 146.47117615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01772311 146.47120667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01772312 146.47120667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01772313 146.47123718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01772314 146.47123718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01772315 146.47125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01772316 146.47125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01772317 146.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01772318 146.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01772319 146.47131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01772320 146.47131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01772321 146.47132874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01772322 146.47132874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01772323 146.47135925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01772324 146.47137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01772325 146.47138977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01772326 146.47140503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01772327 146.47142029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01772328 146.47142029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01772329 146.47145081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01772330 146.47145081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01772331 146.47148132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01772332 146.47148132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01772333 146.47149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01772334 146.47149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01772335 146.47152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01772336 146.47152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01772337 146.47155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01772338 146.47155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01772339 146.47157288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01772340 146.47157288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01772341 146.47160339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01772342 146.47160339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01772343 146.47163391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01772344 146.47163391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01772345 146.47164917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01772346 146.47166443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01772347 146.47167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01772348 146.47169495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01772349 146.47172546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01772350 146.47172546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01772351 146.47174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01772352 146.47174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01772353 146.47177124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01772373 146.47204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01772374 146.47206116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01772375 146.47207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01772376 146.47209167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01772377 146.47212219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01772378 146.47212219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01772379 146.47213745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01772380 146.47213745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01772381 146.47216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01772382 146.47216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01772383 146.47219849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01772384 146.47219849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01772385 146.47221375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01772386 146.47221375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01772387 146.47224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01772388 146.47224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01772389 146.47227478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01772390 146.47227478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01772391 146.47229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01772392 146.47229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01772393 146.47232056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01772394 146.47232056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01772395 146.47235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01772396 146.47235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01772397 146.47236633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01772398 146.47238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01772399 146.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01772400 146.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01772401 146.47244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01772402 146.47244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01772403 146.47245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01772404 146.47245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01772405 146.47248840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01772406 146.47248840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01772407 146.47251892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01772408 146.47251892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01772409 146.47253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01772410 146.47253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01772411 146.47256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01772412 146.47256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01772413 146.47259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01772414 146.47259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01772415 146.47261047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01772416 146.47261047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01772557 146.47454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01772558 146.47456360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01772559 146.47457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01772560 146.47457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01772561 146.47459412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01772562 146.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01772563 146.47463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01772564 146.47463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01772565 146.47465515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01772566 146.47465515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01772567 146.47468567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01772568 146.47468567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01772569 146.47471619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01772570 146.47471619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01772571 146.47474670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01772572 146.47474670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01772573 146.47476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01772574 146.47476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01772575 146.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01772576 146.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01772577 146.47482300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01772578 146.47482300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01772579 146.47483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01772580 146.47483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01772581 146.47486877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01772582 146.47488403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01772583 146.47489929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01772584 146.47489929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01772585 146.47492981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01772586 146.47492981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01772587 146.47496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01772588 146.47496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01772589 146.47497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01772590 146.47497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01772591 146.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01772592 146.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01772593 146.47503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01772594 146.47503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01772595 146.47505188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01772596 146.47505188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01772597 146.47508240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01772598 146.47508240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01772599 146.47511292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01772600 146.47511292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01772615 146.47532654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01772616 146.47532654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01772617 146.47535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01772618 146.47535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01772619 146.47537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01772620 146.47537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01772621 146.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01772622 146.47541809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01772623 146.47543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01772624 146.47544861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01772625 146.47546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01772626 146.47546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01772627 146.47549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01772628 146.47549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01772629 146.47552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01772630 146.47552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01772631 146.47554016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01772632 146.47554016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01772633 146.47557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01772634 146.47557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01772635 146.47560120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01772636 146.47560120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01772637 146.47561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01772638 146.47561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01772639 146.47566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01772640 146.47566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01772641 146.47569275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01772642 146.47569275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01772643 146.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01772644 146.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01772645 146.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01772646 146.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01772647 146.47576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01772648 146.47576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01772649 146.47578430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01772650 146.47579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01772651 146.47583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01772652 146.47583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01772653 146.47584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01772654 146.47584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01772655 146.47587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01772656 146.47587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01772657 146.47590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01772658 146.47590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01772727 146.47685242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01772728 146.47685242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01772729 146.47688293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01772730 146.47688293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01772731 146.47689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01772732 146.47691345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01772733 146.47692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01772734 146.47694397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01772735 146.47695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01772736 146.47695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01772737 146.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01772738 146.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01772739 146.47702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01772740 146.47702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01772741 146.47705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01772742 146.47705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01772743 146.47706604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01772744 146.47706604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01772745 146.47709656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01772746 146.47709656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01772747 146.47712708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01772748 146.47712708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01772749 146.47714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01772750 146.47714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01772751 146.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01772752 146.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01772753 146.47720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01772754 146.47720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01772755 146.47721863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01772756 146.47723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01772757 146.47724915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01772758 146.47726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01772759 146.47727966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01772760 146.47727966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01772761 146.47731018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01772762 146.47731018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01772763 146.47734070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01772764 146.47734070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01772765 146.47735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01772766 146.47735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01772767 146.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01772768 146.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01772769 146.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01772770 146.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01773041 146.48117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01773042 146.48117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01773043 146.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01773044 146.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01773045 146.48123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01773046 146.48124695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01773047 146.48124695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01773048 146.48126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01773049 146.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01773050 146.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01773051 146.48132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01773052 146.48132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01773053 146.48133850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01773054 146.48133850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01773055 146.48136902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01773056 146.48136902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01773057 146.48139954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01773058 146.48139954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01773059 146.48141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01773060 146.48141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01773061 146.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01773062 146.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01773063 146.48147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01773064 146.48147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01773065 146.48149109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01773066 146.48149109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01773067 146.48152161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01773068 146.48152161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01773069 146.48155212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01773070 146.48158264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01773071 146.48161316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01773072 146.48161316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01773073 146.48164368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01773074 146.48164368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01773075 146.48165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01773076 146.48165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01773077 146.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01773078 146.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01773079 146.48171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01773080 146.48171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01773081 146.48173523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01773082 146.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01773083 146.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01773084 146.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01773085 146.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01773086 146.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01773087 146.48182678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01773088 146.48182678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01773089 146.48185730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01773090 146.48185730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01773091 146.48188782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01773092 146.48188782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01773093 146.48190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01773094 146.48190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01773095 146.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01773096 146.48194885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01773097 146.48196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01773098 146.48196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01773099 146.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01773100 146.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01773101 146.48202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01773102 146.48202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01773103 146.48204041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01773104 146.48204041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01773105 146.48207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01773106 146.48208618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01773107 146.48213196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01773108 146.48213196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01773109 146.48214722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01773110 146.48214722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01773111 146.48217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01773112 146.48217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01773113 146.48220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01773114 146.48220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01773115 146.48222351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01773116 146.48222351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01773117 146.48225403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01773118 146.48225403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01773119 146.48228455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01773120 146.48228455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01773121 146.48229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01773122 146.48231506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01773123 146.48233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01773124 146.48234558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01773125 146.48236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01773126 146.48236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01773127 146.48239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01773128 146.48239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01773129 146.48242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01773130 146.48242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01773131 146.48245239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01773132 146.48245239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01773133 146.48246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01773134 146.48246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01773135 146.48249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01773136 146.48249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01773137 146.48252869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01773138 146.48252869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01773139 146.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01773140 146.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01773141 146.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01773142 146.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01773143 146.48260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01773144 146.48260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01773145 146.48262024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01773146 146.48263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01773147 146.48266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01773148 146.48266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01773149 146.48268127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01773150 146.48268127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01773327 146.48515320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01773328 146.48515320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01773329 146.48518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01773330 146.48518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01773331 146.48521423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01773332 146.48521423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01773333 146.48522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01773334 146.48522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01773335 146.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01773336 146.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01773337 146.48529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01773338 146.48529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01773339 146.48530579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01773340 146.48530579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01773341 146.48533630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01773342 146.48533630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01773343 146.48536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01773344 146.48536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01773345 146.48538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01773346 146.48538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01773347 146.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01773348 146.48542786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01773349 146.48544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01773350 146.48545837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01773351 146.48545837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01773352 146.48547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01773353 146.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01773354 146.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01773355 146.48553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01773356 146.48553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01773357 146.48554993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01773358 146.48554993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01773359 146.48558044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01773360 146.48558044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01773361 146.48561096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01773362 146.48561096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01773363 146.48562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01773364 146.48562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01773365 146.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01773366 146.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01773367 146.48568726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01773368 146.48568726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01773369 146.48570251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01773370 146.48570251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01773381 146.48588562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01773382 146.48588562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01773383 146.48591614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01773384 146.48591614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01773385 146.48594666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01773386 146.48594666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01773387 146.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01773388 146.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01773389 146.48599243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01773390 146.48599243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01773391 146.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01773392 146.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01773393 146.48603821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01773394 146.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01773395 146.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01773396 146.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01773397 146.48609924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01773398 146.48609924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01773399 146.48612976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01773400 146.48612976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01773401 146.48616028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01773402 146.48616028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01773403 146.48617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01773404 146.48617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01773405 146.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01773406 146.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01773407 146.48623657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01773408 146.48623657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01773409 146.48625183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01773410 146.48628235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01773411 146.48631287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01773412 146.48631287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01773413 146.48634338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01773414 146.48634338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01773415 146.48635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01773416 146.48635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01773417 146.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01773418 146.48640442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01773419 146.48641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01773420 146.48641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01773421 146.48645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01773422 146.48645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01773423 146.48648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01773424 146.48648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01773425 146.48649597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01773426 146.48649597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01773427 146.48652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01773428 146.48652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01773429 146.48655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01773430 146.48655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01773431 146.48657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01773432 146.48657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01773433 146.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01773434 146.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01773435 146.48663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01773436 146.48664856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01773437 146.48666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01773438 146.48666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01773439 146.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01773440 146.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01773441 146.48674011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01773442 146.48674011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01773443 146.48678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01773444 146.48678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01773445 146.48681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01773446 146.48681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01773447 146.48683167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01773448 146.48683167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01773449 146.48686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01773450 146.48686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01773451 146.48689270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01773452 146.48689270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01773453 146.48690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01773454 146.48690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01773455 146.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01773456 146.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01773457 146.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01773458 146.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01773459 146.48698425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01773460 146.48698425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01773461 146.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01773462 146.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01773463 146.48704529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01773464 146.48704529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01773465 146.48710632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01773466 146.48710632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01773467 146.48713684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01773468 146.48713684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01773469 146.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01773470 146.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01773471 146.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01773472 146.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01773473 146.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01773474 146.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01773475 146.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01773476 146.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01773477 146.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01773478 146.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01773479 146.48728943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01773480 146.48728943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01773481 146.48731995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01773482 146.48731995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01773483 146.48735046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01773484 146.48735046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01773660 146.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01773661 146.48985291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01773662 146.48985291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01773663 146.48988342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01773664 146.48988342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01773665 146.48991394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01773666 146.48991394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01773667 146.48994446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01773668 146.48994446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01773669 146.48997498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01773670 146.48997498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01773671 146.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01773672 146.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01773673 146.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01773674 146.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01773675 146.49005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01773676 146.49005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01773677 146.49006653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01773678 146.49008179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01773679 146.49009705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01773680 146.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01773681 146.49014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01773682 146.49014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01773683 146.49015808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01773684 146.49015808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01773685 146.49018860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01773686 146.49018860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01773687 146.49021912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01773688 146.49021912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01773689 146.49023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01773690 146.49024963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01773691 146.49028015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01773692 146.49028015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01773693 146.49031067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01773694 146.49031067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01773695 146.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01773696 146.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01773697 146.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01773698 146.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01773699 146.49038696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01773700 146.49038696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01773701 146.49040222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01773702 146.49040222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01773703 146.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01773717 146.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01773718 146.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01773719 146.49069214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01773720 146.49069214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01773721 146.49070740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01773722 146.49070740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01773723 146.49073792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01773724 146.49073792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01773725 146.49076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01773726 146.49076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01773727 146.49078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01773728 146.49078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01773729 146.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01773730 146.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01773731 146.49084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01773732 146.49085999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01773733 146.49087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01773734 146.49087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01773735 146.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01773736 146.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01773737 146.49093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01773738 146.49093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01773739 146.49095154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01773740 146.49096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01773741 146.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01773742 146.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01773743 146.49104309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01773744 146.49104309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01773745 146.49107361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01773746 146.49107361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01773747 146.49110413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01773748 146.49110413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01773749 146.49111938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01773750 146.49111938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01773751 146.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01773752 146.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01773753 146.49118042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01773754 146.49118042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01773755 146.49119568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01773756 146.49119568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01773757 146.49124146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01773758 146.49124146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01773759 146.49125671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01773760 146.49125671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01773761 146.49128723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01773762 146.49128723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01773763 146.49131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01773764 146.49131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01773765 146.49134827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01773766 146.49134827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01773767 146.49137878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01773768 146.49137878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01773769 146.49140930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01773770 146.49140930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01773771 146.49143982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01773772 146.49143982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01773773 146.49147034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01773774 146.49147034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01773775 146.49150085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01773776 146.49150085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01773777 146.49151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01773778 146.49151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01773779 146.49154663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01773780 146.49156189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01773781 146.49157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01773782 146.49157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01773783 146.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01773784 146.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01773785 146.49163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01773786 146.49163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01773787 146.49165344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01773788 146.49165344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01773789 146.49168396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01773790 146.49168396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01773791 146.49171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01773792 146.49171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01773793 146.49174500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01773794 146.49174500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01773795 146.49177551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01773796 146.49177551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01773797 146.49180603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01773798 146.49180603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01773799 146.49182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01773800 146.49182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01773801 146.49185181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01773802 146.49188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01773803 146.49189758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01773804 146.49189758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01773805 146.49192810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01773806 146.49194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01773807 146.49195862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01773808 146.49197388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01773809 146.49197388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01773810 146.49198914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01773811 146.49201965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01773812 146.49201965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01773813 146.49205017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01773814 146.49205017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01773815 146.49206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01773816 146.49206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01773817 146.49209595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01773818 146.49209595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01773819 146.49212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01773820 146.49214172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01773821 146.49215698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01773822 146.49215698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01773823 146.49218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01773824 146.49218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01773825 146.49221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01773826 146.49221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01773827 146.49226379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01773828 146.49226379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01773829 146.49229431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01773830 146.49229431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01773831 146.49230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01773832 146.49230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01773833 146.49234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01773834 146.49234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01773835 146.49237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01773836 146.49237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01773837 146.49238586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01773838 146.49238586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01773839 146.49241638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01773840 146.49241638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01773841 146.49244690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01773842 146.49244690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01773843 146.49247742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01773844 146.49247742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01773845 146.49250793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01773846 146.49250793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01773847 146.49253845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01773848 146.49253845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01773849 146.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01773850 146.49256897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01773851 146.49259949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01773852 146.49259949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01773853 146.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01773854 146.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01773855 146.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01773856 146.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01773857 146.49269104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01773858 146.49270630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01773859 146.49272156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01773860 146.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01773861 146.49276733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01773862 146.49276733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01773863 146.49278259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01773864 146.49278259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01773865 146.49281311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01773866 146.49281311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01773867 146.49284363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01773868 146.49284363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01773869 146.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01773870 146.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01773871 146.49288940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01773872 146.49290466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01773873 146.49293518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01773874 146.49293518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01773875 146.49295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01773876 146.49295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01773877 146.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01773878 146.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01773879 146.49301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01773880 146.49301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01773881 146.49302673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01773882 146.49304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01773883 146.49305725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01773884 146.49307251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01773885 146.49308777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01773886 146.49308777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01773887 146.49311829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01773888 146.49311829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01773889 146.49314880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01773890 146.49314880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01773891 146.49316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01773892 146.49316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01773893 146.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01773894 146.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01773895 146.49322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01773896 146.49324036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01773897 146.49325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01773898 146.49325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01773925 146.49365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01773926 146.49366760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01773927 146.49369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01773928 146.49369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01773929 146.49372864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01773930 146.49372864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01773931 146.49374390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01773932 146.49374390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01773933 146.49377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01773934 146.49377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01773935 146.49380493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01773936 146.49380493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01773937 146.49382019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01773938 146.49382019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01773939 146.49385071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01773940 146.49386597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01773941 146.49388123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01773942 146.49388123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01773943 146.49391174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01773944 146.49391174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01773945 146.49394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01773946 146.49394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01773947 146.49395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01773948 146.49395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01773949 146.49398804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01773950 146.49400330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01773951 146.49401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01773952 146.49403381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01773953 146.49404907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01773954 146.49404907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01773955 146.49407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01773956 146.49407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01773957 146.49411011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01773958 146.49411011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01773959 146.49412537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01773960 146.49414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01773961 146.49417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01773962 146.49417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01773963 146.49420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01773964 146.49420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01773965 146.49421692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01773966 146.49421692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01773967 146.49424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01773968 146.49424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01773969 146.49427795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01773970 146.49427795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01773971 146.49430847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01773972 146.49430847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01773973 146.49433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01773974 146.49433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01773975 146.49435425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01773976 146.49435425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01773977 146.49438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01773978 146.49438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01773979 146.49441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01773980 146.49441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01773981 146.49444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01773982 146.49444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01773983 146.49446106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01773984 146.49447632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01773985 146.49450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01773986 146.49450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01773987 146.49452209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01773988 146.49452209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01773989 146.49455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01773990 146.49455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01773991 146.49458313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01773992 146.49459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01773993 146.49461365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01773994 146.49461365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01773995 146.49464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01773996 146.49464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01774007 146.49482727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01774008 146.49482727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01774009 146.49484253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01774010 146.49484253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01774011 146.49487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01774012 146.49487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01774013 146.49490356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01774014 146.49490356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01774015 146.49491882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01774016 146.49491882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01774017 146.49494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01774018 146.49494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01774019 146.49497986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01774020 146.49499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01774021 146.49501038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01774022 146.49501038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01774023 146.49504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01774024 146.49504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01774025 146.49507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01774026 146.49507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01774027 146.49508667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01774028 146.49508667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01774029 146.49513245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01774030 146.49513245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01774031 146.49514771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01774032 146.49514771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01774033 146.49517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01774034 146.49517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01774035 146.49520874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01774036 146.49520874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01774037 146.49523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01774038 146.49523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01774039 146.49525452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01774040 146.49525452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01774041 146.49528503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01774042 146.49530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01774043 146.49531555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01774044 146.49531555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01774045 146.49534607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01774046 146.49534607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01774047 146.49537659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01774048 146.49537659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01774049 146.49539185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01774050 146.49539185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01775181 146.51126099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf118 -01775182 146.51127625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf118 -01775183 146.51129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf128 -01775184 146.51129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf128 -01775185 146.51132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf138 -01775186 146.51132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf138 -01775187 146.51135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf148 -01775188 146.51135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf148 -01775189 146.51136780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf158 -01775190 146.51136780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf158 -01775191 146.51141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf168 -01775192 146.51141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf168 -01775193 146.51144409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf178 -01775194 146.51144409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf178 -01775195 146.51145935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf188 -01775196 146.51145935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf188 -01775197 146.51148987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf198 -01775198 146.51148987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf198 -01775199 146.51152039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a8 -01775200 146.51152039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1a8 -01775201 146.51155090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b8 -01775202 146.51155090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1b8 -01775203 146.51158142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c8 -01775204 146.51158142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1c8 -01775205 146.51159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d8 -01775206 146.51159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1d8 -01775207 146.51162720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e8 -01775208 146.51164246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1e8 -01775209 146.51167297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f8 -01775210 146.51167297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf1f8 -01775211 146.51168823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf208 -01775212 146.51168823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf208 -01775213 146.51171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf218 -01775214 146.51171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf218 -01775215 146.51174927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf228 -01775216 146.51174927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf228 -01775217 146.51176453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf238 -01775218 146.51176453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf238 -01775219 146.51179504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf248 -01775220 146.51181030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf248 -01775221 146.51184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf258 -01775222 146.51184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf258 -01775223 146.51185608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf268 -01775224 146.51185608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf268 -01777637 146.54544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd8 -01777638 146.54544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd8 -01777639 146.54545593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de8 -01777640 146.54545593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de8 -01777641 146.54548645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df8 -01777642 146.54548645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df8 -01777643 146.54551697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e08 -01777644 146.54551697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e08 -01777645 146.54554749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e18 -01777646 146.54554749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e18 -01777647 146.54557800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e28 -01777648 146.54557800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e28 -01777649 146.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e38 -01777650 146.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e38 -01777651 146.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e48 -01777652 146.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e48 -01777653 146.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e58 -01777654 146.54566956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e58 -01777655 146.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e68 -01777656 146.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e68 -01777657 146.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e78 -01777658 146.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e78 -01777659 146.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e88 -01777660 146.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e88 -01777661 146.54576111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e98 -01777662 146.54576111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e98 -01777663 146.54579163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea8 -01777664 146.54579163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ea8 -01777665 146.54582214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb8 -01777666 146.54583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13eb8 -01777667 146.54585266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec8 -01777668 146.54585266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ec8 -01777669 146.54588318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed8 -01777670 146.54588318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ed8 -01777671 146.54591370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee8 -01777672 146.54591370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ee8 -01777673 146.54592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef8 -01777674 146.54592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ef8 -01777675 146.54595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f08 -01777676 146.54597473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f08 -01777677 146.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f18 -01777678 146.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f18 -01777679 146.54602051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f28 -01777680 146.54602051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f28 -01778907 146.56323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -01778908 146.56323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16588 -01778909 146.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -01778910 146.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16598 -01778911 146.56329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -01778912 146.56330872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165a8 -01778913 146.56332397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -01778914 146.56332397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165b8 -01778915 146.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -01778916 146.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165c8 -01778917 146.56338501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d8 -01778918 146.56338501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165d8 -01778919 146.56340027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e8 -01778920 146.56341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165e8 -01778921 146.56344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f8 -01778922 146.56344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x165f8 -01778923 146.56346130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16608 -01778924 146.56346130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16608 -01778925 146.56349182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16618 -01778926 146.56349182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16618 -01778927 146.56352234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16628 -01778928 146.56352234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16628 -01778929 146.56355286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16638 -01778930 146.56355286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16638 -01778931 146.56358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16648 -01778932 146.56358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16648 -01778933 146.56361389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -01778934 146.56361389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16658 -01778935 146.56362915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -01778936 146.56362915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16668 -01778937 146.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -01778938 146.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16678 -01778939 146.56369019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -01778940 146.56370544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16688 -01778941 146.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -01778942 146.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16698 -01778943 146.56375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -01778944 146.56375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166a8 -01778945 146.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -01778946 146.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166b8 -01778947 146.56379700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -01778948 146.56379700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166c8 -01778949 146.56382751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -01778950 146.56382751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x166d8 -01781545 146.59968567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f8 -01781546 146.59968567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b7f8 -01781547 146.59971619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b808 -01781548 146.59971619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b808 -01781549 146.59974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b818 -01781550 146.59974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b818 -01781551 146.59977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b828 -01781552 146.59977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b828 -01781553 146.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b838 -01781554 146.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b838 -01781555 146.59982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b848 -01781556 146.59983826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b848 -01781557 146.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b858 -01781558 146.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b858 -01781559 146.59988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b868 -01781560 146.59988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b868 -01781561 146.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b878 -01781562 146.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b878 -01781563 146.59992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b888 -01781564 146.59992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b888 -01781565 146.59996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b898 -01781566 146.59996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b898 -01781567 146.60000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a8 -01781568 146.60000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a8 -01781569 146.60002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b8 -01781570 146.60002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b8 -01781571 146.60005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c8 -01781572 146.60005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c8 -01781573 146.60008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d8 -01781574 146.60008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d8 -01781575 146.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e8 -01781576 146.60011292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e8 -01781577 146.60012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f8 -01781578 146.60014343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f8 -01781579 146.60017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b908 -01781580 146.60017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b908 -01781581 146.60018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b918 -01781582 146.60018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b918 -01781583 146.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b928 -01781584 146.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b928 -01781585 146.60025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b938 -01781586 146.60025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b938 -01781587 146.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b948 -01781588 146.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b948 -01783921 146.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -01783922 146.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -01783923 146.63223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -01783924 146.63223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -01783925 146.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -01783926 146.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -01783927 146.63227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01783928 146.63229370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01783929 146.63232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01783930 146.63232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01783931 146.63233948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01783932 146.63233948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01783933 146.63237000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01783934 146.63237000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01783935 146.63240051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01783936 146.63240051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01783937 146.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01783938 146.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01783939 146.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01783940 146.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01783941 146.63247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -01783942 146.63247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -01783943 146.63249207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -01783944 146.63249207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -01783945 146.63252258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -01783946 146.63253784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -01783947 146.63255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -01783948 146.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -01783949 146.63258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20318 -01783950 146.63258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20318 -01783951 146.63261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20328 -01783952 146.63261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20328 -01783953 146.63264465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20338 -01783954 146.63264465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20338 -01783955 146.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20348 -01783956 146.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20348 -01783957 146.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20358 -01783958 146.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20358 -01783959 146.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20368 -01783960 146.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20368 -01783961 146.63273621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20378 -01783962 146.63273621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20378 -01783963 146.63276672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -01783964 146.63276672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -01786409 146.66604614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff8 -01786410 146.66604614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff8 -01786411 146.66609192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25008 -01786412 146.66609192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25008 -01786413 146.66610718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25018 -01786414 146.66610718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25018 -01786415 146.66613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25028 -01786416 146.66613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25028 -01786417 146.66616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25038 -01786418 146.66616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25038 -01786419 146.66618347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25048 -01786420 146.66618347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25048 -01786421 146.66622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25058 -01786422 146.66622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25058 -01786423 146.66625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25068 -01786424 146.66625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25068 -01786425 146.66627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25078 -01786426 146.66627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25078 -01786427 146.66630554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25088 -01786428 146.66630554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25088 -01786429 146.66633606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -01786430 146.66633606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -01786431 146.66635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -01786432 146.66635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -01786433 146.66638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -01786434 146.66638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -01786435 146.66641235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -01786436 146.66641235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -01786437 146.66642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01786438 146.66644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01786439 146.66645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01786440 146.66647339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01786441 146.66648865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01786442 146.66648865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01786443 146.66651917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01786444 146.66651917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01786445 146.66654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01786446 146.66654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01786447 146.66658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01786448 146.66658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01786449 146.66659546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01786450 146.66661072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01786451 146.66664124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -01786452 146.66664124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -01788763 146.69827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -01788764 146.69827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -01788765 146.69828796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -01788766 146.69828796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -01788767 146.69831848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -01788768 146.69831848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -01788769 146.69834900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -01788770 146.69834900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -01788771 146.69836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -01788772 146.69836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -01788773 146.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -01788774 146.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -01788775 146.69842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -01788776 146.69842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -01788777 146.69845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -01788778 146.69845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -01788779 146.69848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a08 -01788780 146.69848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a08 -01788781 146.69850159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a18 -01788782 146.69850159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a18 -01788783 146.69853210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a28 -01788784 146.69853210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a28 -01788785 146.69856262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a38 -01788786 146.69857788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a38 -01788787 146.69859314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a48 -01788788 146.69859314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a48 -01788789 146.69862366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a58 -01788790 146.69862366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a58 -01788791 146.69865417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a68 -01788792 146.69865417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a68 -01788793 146.69866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a78 -01788794 146.69868469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a78 -01788795 146.69869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a88 -01788796 146.69871521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a88 -01788797 146.69874573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a98 -01788798 146.69874573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a98 -01788799 146.69876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa8 -01788800 146.69876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29aa8 -01788801 146.69879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab8 -01788802 146.69879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ab8 -01788803 146.69882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -01788804 146.69882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -01788805 146.69883728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad8 -01788806 146.69883728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad8 -01790157 146.71784973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -01790158 146.71784973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -01790159 146.71788025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -01790160 146.71788025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -01790161 146.71789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c538 -01790162 146.71791077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c538 -01790163 146.71794128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c548 -01790164 146.71794128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c548 -01790165 146.71797180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c558 -01790166 146.71797180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c558 -01790167 146.71798706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c568 -01790168 146.71798706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c568 -01790169 146.71801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c578 -01790170 146.71803284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c578 -01790171 146.71804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c588 -01790172 146.71804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c588 -01790173 146.71807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c598 -01790174 146.71807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c598 -01790175 146.71810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -01790176 146.71810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a8 -01790177 146.71813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -01790178 146.71813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b8 -01790179 146.71817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -01790180 146.71817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c8 -01790181 146.71820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -01790182 146.71820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d8 -01790183 146.71821594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -01790184 146.71821594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e8 -01790185 146.71824646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -01790186 146.71826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f8 -01790187 146.71829224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c608 -01790188 146.71829224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c608 -01790189 146.71830750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c618 -01790190 146.71830750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c618 -01790191 146.71833801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c628 -01790192 146.71833801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c628 -01790193 146.71836853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c638 -01790194 146.71836853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c638 -01790195 146.71838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c648 -01790196 146.71838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c648 -01790197 146.71841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c658 -01790198 146.71841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c658 -01790199 146.71844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c668 -01790200 146.71844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c668 -01803551 146.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a8 -01803552 146.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a8 -01803553 146.90083313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b8 -01803554 146.90084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b8 -01803555 146.90086365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c8 -01803556 146.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c8 -01803557 146.90090942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d8 -01803558 146.90090942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d8 -01803559 146.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e8 -01803560 146.90092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e8 -01803561 146.90095520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f8 -01803562 146.90095520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f8 -01803563 146.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46808 -01803564 146.90098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46808 -01803565 146.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46818 -01803566 146.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46818 -01803567 146.90103149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46828 -01803568 146.90103149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46828 -01803569 146.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46838 -01803570 146.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46838 -01803571 146.90107727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46848 -01803572 146.90107727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46848 -01803573 146.90110779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46858 -01803574 146.90110779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46858 -01803575 146.90113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46868 -01803576 146.90113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46868 -01803577 146.90115356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46878 -01803578 146.90116882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46878 -01803579 146.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46888 -01803580 146.90119934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46888 -01803581 146.90122986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46898 -01803582 146.90122986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46898 -01803583 146.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a8 -01803584 146.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468a8 -01803585 146.90127563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -01803586 146.90127563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -01803587 146.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -01803588 146.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -01803589 146.90132141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -01803590 146.90132141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -01803591 146.90135193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -01803592 146.90135193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -01803593 146.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -01803594 146.90138245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -01804979 146.92079163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49448 -01804980 146.92079163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49448 -01804981 146.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49458 -01804982 146.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49458 -01804983 146.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49468 -01804984 146.92085266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49468 -01804985 146.92088318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49478 -01804986 146.92088318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49478 -01804987 146.92091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49488 -01804988 146.92091370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49488 -01804989 146.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49498 -01804990 146.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49498 -01804991 146.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a8 -01804992 146.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a8 -01804993 146.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b8 -01804994 146.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b8 -01804995 146.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c8 -01804996 146.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c8 -01804997 146.92105103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d8 -01804998 146.92105103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d8 -01804999 146.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e8 -01805000 146.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e8 -01805001 146.92109680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f8 -01805002 146.92111206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f8 -01805003 146.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49508 -01805004 146.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49508 -01805005 146.92115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49518 -01805006 146.92115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49518 -01805007 146.92118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -01805008 146.92118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -01805009 146.92121887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -01805010 146.92123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -01805011 146.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -01805012 146.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -01805013 146.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -01805014 146.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -01805015 146.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -01805016 146.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -01805017 146.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -01805018 146.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -01805019 146.92135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -01805020 146.92135620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -01805021 146.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -01805022 146.92140198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -01807535 146.95564270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -01807536 146.95564270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -01807537 146.95567322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -01807538 146.95567322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -01807539 146.95570374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -01807540 146.95570374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -01807541 146.95571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -01807542 146.95571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -01807543 146.95574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -01807544 146.95576477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -01807545 146.95578003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -01807546 146.95579529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -01807547 146.95579529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -01807548 146.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -01807549 146.95584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -01807550 146.95584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -01807551 146.95587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -01807552 146.95587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -01807553 146.95588684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -01807554 146.95588684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -01807555 146.95591736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -01807556 146.95591736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -01807557 146.95594788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -01807558 146.95594788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -01807559 146.95596313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -01807560 146.95596313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -01807561 146.95599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -01807562 146.95599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -01807563 146.95602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -01807564 146.95602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -01807565 146.95603943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -01807566 146.95603943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -01807567 146.95606995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -01807568 146.95608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -01807569 146.95610046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -01807570 146.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -01807571 146.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -01807572 146.95613098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -01807573 146.95616150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e558 -01807574 146.95616150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e558 -01807575 146.95619202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e568 -01807576 146.95619202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e568 -01807577 146.95620728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e578 -01807578 146.95620728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e578 -01808781 146.97254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b18 -01808782 146.97254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b18 -01808783 146.97256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b28 -01808784 146.97256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b28 -01808785 146.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b38 -01808786 146.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b38 -01808787 146.97262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b48 -01808788 146.97262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b48 -01808789 146.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b58 -01808790 146.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b58 -01808791 146.97268677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b68 -01808792 146.97268677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b68 -01808793 146.97271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b78 -01808794 146.97271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b78 -01808795 146.97273254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b88 -01808796 146.97274780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b88 -01808797 146.97276306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b98 -01808798 146.97277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b98 -01808799 146.97279358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba8 -01808800 146.97279358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ba8 -01808801 146.97282410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb8 -01808802 146.97282410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bb8 -01808803 146.97285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc8 -01808804 146.97285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bc8 -01808805 146.97286987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd8 -01808806 146.97286987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bd8 -01808807 146.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be8 -01808808 146.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50be8 -01808809 146.97293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf8 -01808810 146.97293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50bf8 -01808811 146.97294617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c08 -01808812 146.97294617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c08 -01808813 146.97297668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c18 -01808814 146.97299194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c18 -01808815 146.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c28 -01808816 146.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c28 -01808817 146.97303772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c38 -01808818 146.97303772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c38 -01808819 146.97306824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c48 -01808820 146.97306824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c48 -01808821 146.97309875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c58 -01808822 146.97309875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c58 -01808823 146.97311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c68 -01808824 146.97312927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c68 -01809873 148.00965881 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01809874 148.02929688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809875 148.02931213 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809877 148.61180115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01809878 148.85113525 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809879 148.85118103 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809880 148.85118103 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809881 148.85119629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01809882 148.85133362 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809883 148.85133362 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809884 148.85137939 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809885 148.85140991 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809886 150.03123474 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01809887 150.04948425 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809888 150.04948425 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809889 150.62191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01809890 150.62194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01809891 151.15303040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809892 151.15312195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -01809893 151.15313721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -01809894 151.15351868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809895 151.35734558 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809896 151.35739136 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809897 151.35742188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01809898 151.35742188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01809899 151.35755920 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809900 151.35755920 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809901 151.35760498 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01809902 151.35763550 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01809903 151.98794556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01809904 151.98794556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01809905 151.98796082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01809906 151.98797607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01809907 151.98800659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01809908 151.98800659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01809909 151.98803711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01809910 151.98803711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01809911 151.98805237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01809912 151.98805237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01809913 151.98808289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01809914 151.98809814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01809915 151.98812866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01809916 151.98812866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01809917 151.98814392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01809918 151.98814392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01809919 151.98817444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01809920 151.98817444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01809921 151.98820496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01809922 151.98820496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01809923 151.98822021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01809924 151.98823547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01809925 151.98826599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01809926 151.98826599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01809927 151.98828125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01809928 151.98828125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01809929 151.98831177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01809930 151.98832703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01809931 151.98835754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01809932 151.98835754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01809933 151.98837280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01809934 151.98837280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01809935 151.98840332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01809936 151.98841858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01809937 151.98844910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01809938 151.98844910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01809939 151.98846436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01809940 151.98846436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01809941 151.98849487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01809942 151.98849487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01809943 151.98852539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01809944 151.98852539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01809945 151.98854065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01809946 151.98855591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01809947 151.98858643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01809948 151.98858643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01809949 151.98860168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01809950 151.98860168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01809951 151.98863220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01809952 151.98863220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01809953 151.98866272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01809954 151.98867798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01809955 151.98869324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01809956 151.98869324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01809957 151.98872375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01809958 151.98872375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01809959 151.98875427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01809960 151.98875427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01809961 151.98876953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01809962 151.98876953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01809963 151.98880005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01809964 151.98881531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01809965 151.98884583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01809966 151.98884583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01809967 151.98886108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01809968 151.98886108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01809969 151.98889160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01809970 151.98889160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01809971 151.98892212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01809972 151.98892212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01809973 151.98895264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01809974 151.98895264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01809975 151.98898315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01809976 151.98898315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01809977 151.98899841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01809978 151.98899841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01809979 151.98902893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01809980 151.98904419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01809981 151.98905945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01809982 151.98907471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01809983 151.98908997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01809984 151.98908997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01809985 151.98912048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01809986 151.98912048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01809987 151.98915100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01809988 151.98915100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01809989 151.98916626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01809990 151.98918152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01809991 151.98921204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01809992 151.98921204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01809993 151.98924255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01809994 151.98924255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01809995 151.98925781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01809996 151.98925781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01809997 151.98928833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01809998 151.98928833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01809999 151.98931885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01810000 151.98931885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01810001 151.98934937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01810002 151.98934937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01810003 151.98937988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01810004 151.98937988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01810005 151.98939514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01810006 151.98939514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01810007 151.98942566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01810008 151.98942566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01810009 151.98945618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01810010 151.98945618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01810011 151.98948669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01810012 151.98948669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01810013 151.98951721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01810014 151.98951721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01810015 151.98954773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01810016 151.98954773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01810017 151.98956299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01810018 151.98956299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01810019 151.98959351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01810020 151.98960876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01810021 151.98963928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01810022 151.98963928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01810023 151.98965454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01810024 151.98965454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01810025 151.98968506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01810026 151.98968506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01810027 151.98973083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01810028 151.98973083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01810029 151.98976135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01810030 151.98976135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01810031 151.98979187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01810032 151.98979187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01810033 151.98980713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01810034 151.98982239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01810035 151.98985291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01810036 151.98985291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01810037 151.98986816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01810038 151.98986816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01810039 151.98989868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01810040 151.98989868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01810041 151.98992920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01810042 151.98994446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01810043 151.98995972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01810044 151.98995972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01810045 151.98999023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01810046 151.98999023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01810047 151.99002075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01810048 151.99002075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01810049 151.99003601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01810050 151.99003601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01810051 151.99006653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01810052 151.99008179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01810053 151.99011230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01810054 151.99011230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01810055 151.99012756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01810056 151.99012756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01810057 151.99015808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01810058 151.99015808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01810059 151.99018860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01810060 151.99018860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01810061 151.99021912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01810062 151.99021912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01810063 151.99024963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01810064 151.99024963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01810065 151.99026489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01810066 151.99026489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01810067 151.99029541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01810068 151.99029541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01810069 151.99032593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01810070 151.99034119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01810071 151.99035645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01810072 151.99035645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01810073 151.99038696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01810074 151.99038696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01810075 151.99041748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01810076 151.99041748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01810077 151.99043274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01810078 151.99043274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01810079 151.99047852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01810080 151.99047852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01810081 151.99050903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01810082 151.99050903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01810083 151.99055481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01810084 151.99055481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01810085 151.99058533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01810086 151.99058533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01810087 151.99060059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01810088 151.99060059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01810089 151.99063110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01810090 151.99063110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01810091 151.99066162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01810092 151.99066162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01810093 151.99067688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01810094 151.99069214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01810095 151.99072266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01810096 151.99072266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01810097 151.99075317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01810098 151.99075317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01810099 151.99076843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01810100 151.99076843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01810101 151.99079895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01810102 151.99079895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01810103 151.99082947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01810104 151.99082947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01810105 151.99084473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01810106 151.99084473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01810107 151.99087524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01810108 151.99087524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01810109 151.99090576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01810110 151.99090576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01810111 151.99092102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01810112 151.99092102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01810113 151.99096680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01810114 151.99096680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01810115 151.99098206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01810116 151.99098206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01810117 151.99101257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01810118 151.99101257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01810119 151.99104309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01810120 151.99104309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01810121 151.99105835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01810122 151.99107361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01810123 151.99108887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01810124 151.99110413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01810125 151.99113464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01810126 151.99113464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01810127 151.99114990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01810128 151.99114990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01810129 151.99118042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01810130 151.99118042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01810131 151.99121094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01810132 151.99121094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01810133 151.99122620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01810134 151.99124146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01810135 151.99127197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01810136 151.99127197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01810137 151.99130249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01810138 151.99130249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01810139 151.99131775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01810140 151.99131775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01810141 151.99134827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01810142 151.99134827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01810143 151.99137878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01810144 151.99137878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01810145 151.99140930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01810146 151.99140930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01810147 151.99143982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01810148 151.99143982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01810149 151.99145508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01810150 151.99145508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01810151 151.99148560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01810152 151.99148560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01810153 151.99151611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01810154 151.99151611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01810155 151.99154663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01810156 151.99154663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01810157 151.99156189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01810158 151.99157715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01810159 151.99159241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01810160 151.99160767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01810161 151.99162292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01810162 151.99162292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01810163 151.99165344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01810164 151.99165344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01810165 151.99168396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01810166 151.99168396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01810167 151.99169922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01810168 151.99169922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01810169 151.99172974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01810170 151.99172974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01810171 151.99176025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01810172 151.99176025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01810173 151.99177551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01810174 151.99177551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01810175 151.99180603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01810176 151.99180603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01810177 151.99183655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01810178 151.99185181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01810179 151.99185181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01810180 151.99186707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01810181 151.99189758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01810182 151.99189758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01810183 151.99192810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01810184 151.99192810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01810185 151.99194336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01810186 151.99194336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01810187 151.99197388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01810188 151.99197388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01810189 151.99200439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01810190 151.99200439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01810191 151.99201965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01810192 151.99201965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01810193 151.99205017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01810194 151.99205017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01810195 151.99208069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01810196 151.99208069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01810197 151.99209595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01810198 151.99209595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01810199 151.99212646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01810200 151.99214172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01810201 151.99215698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01810202 151.99217224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01810203 151.99218750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01810204 151.99218750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01810205 151.99223328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01810206 151.99223328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01810207 151.99226379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01810208 151.99226379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01810209 151.99229431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01810210 151.99229431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01810211 151.99232483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01810212 151.99234009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01810213 151.99234009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01810214 151.99235535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01810215 151.99238586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01810216 151.99238586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01810217 151.99241638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01810218 151.99241638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01810219 151.99243164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01810220 151.99243164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01810221 151.99246216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01810222 151.99246216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01810223 151.99249268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01810224 151.99249268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01810225 151.99250793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01810226 151.99250793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01810227 151.99253845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01810228 151.99253845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01810229 151.99256897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01810230 151.99256897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01810231 151.99258423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01810232 151.99259949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01810233 151.99261475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01810234 151.99263000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01810235 151.99264526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01810236 151.99264526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01810237 151.99267578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01810238 151.99267578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01810239 151.99270630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01810240 151.99270630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01810241 151.99273682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01810242 151.99273682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01810243 151.99275208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01810244 151.99275208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01810245 151.99278259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01810246 151.99278259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01810247 151.99281311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01810248 151.99281311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01810249 151.99282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01810250 151.99282837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01810251 151.99285889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01810252 151.99285889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01810253 151.99288940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01810254 151.99288940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01810255 151.99291992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01810256 151.99291992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01810257 151.99295044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01810258 151.99295044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01810259 151.99296570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01810260 151.99296570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01810261 151.99299622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01810262 151.99299622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01810263 151.99302673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01810264 151.99302673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01810265 151.99304199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01810266 151.99304199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01810267 151.99307251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01810268 151.99307251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01810269 151.99310303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01810270 151.99310303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01810271 151.99313354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01810272 151.99313354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01810273 151.99314880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01810274 151.99316406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01810275 151.99317932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01810276 151.99319458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01810277 151.99320984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01810278 151.99320984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01810279 151.99324036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01810280 151.99324036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01810281 151.99327087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01810282 151.99327087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01810283 151.99328613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01810284 151.99328613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01810285 151.99331665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01810286 151.99331665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01810287 151.99334717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01810288 151.99334717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01810289 151.99336243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01810290 151.99336243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01810291 151.99339294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01810292 151.99339294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01810293 151.99342346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01810294 151.99342346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01810295 151.99345398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01810296 151.99345398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01810297 151.99348450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01810298 151.99348450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01810299 151.99351501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01810300 151.99351501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01810301 151.99353027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01810302 151.99354553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01810303 151.99356079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01810304 151.99357605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01810305 151.99360657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01810306 151.99360657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01810307 151.99362183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01810308 151.99362183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01810309 151.99365234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01810310 151.99365234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01810311 151.99368286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01810312 151.99368286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01810313 151.99371338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01810314 151.99371338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01810315 151.99374390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01810316 151.99374390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01810317 151.99375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01810318 151.99375916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01810319 151.99378967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01810320 151.99378967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01810321 151.99382019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01810322 151.99383545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01810323 151.99385071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01810324 151.99385071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01810325 151.99388123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01810326 151.99388123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01810327 151.99391174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01810328 151.99391174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01810329 151.99392700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01810330 151.99394226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01810331 151.99397278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01810332 151.99397278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01810333 151.99400330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01810334 151.99400330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01810335 151.99401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01810336 151.99401855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01810337 151.99404907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01810338 151.99404907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01810339 151.99407959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01810340 151.99407959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01810341 151.99411011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01810342 151.99411011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01810343 151.99414063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01810344 151.99414063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01810345 151.99415588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01810346 151.99415588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01810347 151.99418640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01810348 151.99420166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01810349 151.99423218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01810350 151.99423218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01810351 151.99426270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01810352 151.99426270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01810353 151.99430847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01810354 151.99430847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01810355 151.99432373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01810356 151.99432373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01810357 151.99435425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01810358 151.99435425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01810359 151.99438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01810360 151.99438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01810361 151.99440002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01810362 151.99441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01810363 151.99444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01810364 151.99444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01810365 151.99447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01810366 151.99447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01810367 151.99449158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01810368 151.99449158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01810369 151.99452209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01810370 151.99452209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01810371 151.99455261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01810372 151.99455261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01810373 151.99458313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01810374 151.99458313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01810375 151.99461365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01810376 151.99461365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01810377 151.99464417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01810378 151.99464417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01810379 151.99465942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01810380 151.99465942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01810381 151.99470520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01810382 151.99470520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01810383 151.99472046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01810384 151.99472046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01810385 151.99475098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01810386 151.99475098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01810387 151.99478149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01810388 151.99478149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01810389 151.99479675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01810390 151.99481201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01810391 151.99484253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01810392 151.99484253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01810393 151.99487305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01810394 151.99487305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01810395 151.99488831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01810396 151.99488831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01810397 151.99491882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01810398 151.99491882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01810399 151.99494934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01810400 151.99494934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01810401 151.99497986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01810402 151.99497986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01810403 151.99501038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01810404 151.99501038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01810405 151.99504089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01810406 151.99504089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01810407 151.99505615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01810408 151.99505615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01810409 151.99508667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01810410 151.99508667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01810411 151.99511719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01810412 151.99511719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01810413 151.99514771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01810414 151.99514771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01810415 151.99517822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01810416 151.99517822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01810417 151.99519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01810418 151.99519348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01810419 151.99522400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01810420 151.99522400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01810421 151.99526978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01810422 151.99526978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01810423 151.99528503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01810424 151.99528503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01810425 151.99531555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01810426 151.99531555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01810427 151.99534607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01810428 151.99534607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01810429 151.99536133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01810430 151.99536133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01810431 151.99539185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01810432 151.99540710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01810433 151.99543762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01810434 151.99543762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01810435 151.99545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01810436 151.99545288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01810437 151.99548340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01810438 151.99548340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01810439 151.99551392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01810440 151.99551392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01810441 151.99552917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01810442 151.99554443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01810443 151.99557495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01810444 151.99557495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01810445 151.99559021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01810446 151.99559021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01810447 151.99562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01810448 151.99562073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01810449 151.99565125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01810450 151.99565125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01810451 151.99566650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01810452 151.99566650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01810453 151.99569702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01810454 151.99569702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01810455 151.99572754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01810456 151.99574280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01810457 151.99575806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01810458 151.99575806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01810459 151.99578857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01810460 151.99578857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01810461 151.99581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01810462 151.99581909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01810463 151.99583435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01810464 151.99584961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01810465 151.99586487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01810466 151.99588013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01810467 151.99591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01810468 151.99591064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01810469 151.99592590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01810470 151.99592590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01810471 151.99595642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01810472 151.99595642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01810473 151.99598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01810474 151.99598694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01810475 151.99601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01810476 151.99601746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01810477 151.99604797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01810478 151.99604797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01810479 151.99606323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01810480 151.99606323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01810481 151.99609375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01810482 151.99609375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01810483 151.99612427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01810484 151.99613953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01810485 151.99615479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01810486 151.99615479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01810487 151.99618530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01810488 151.99618530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01810489 151.99621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01810490 151.99621582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01810491 151.99623108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01810492 151.99623108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01810493 151.99626160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01810494 151.99626160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01810495 151.99629211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01810496 151.99629211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01810497 151.99630737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01810498 151.99630737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01810499 151.99633789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01810500 151.99635315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01810501 151.99638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01810502 151.99638367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01810503 151.99639893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01810504 151.99639893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01810505 151.99642944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01810506 151.99642944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01810507 151.99645996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01810508 151.99645996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01810509 151.99647522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01810510 151.99649048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01810511 151.99652100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01810512 151.99652100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01810513 151.99655151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01810514 151.99655151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01810515 151.99656677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01810516 151.99656677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01810517 151.99659729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01810518 151.99659729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01810519 151.99662781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01810520 151.99662781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01810521 151.99665833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01810522 151.99665833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01810523 151.99668884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01810524 151.99668884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01810525 151.99670410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01810526 151.99670410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01810527 151.99673462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01810528 151.99673462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01810529 151.99676514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01810530 151.99678040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01810531 151.99678040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01810532 151.99679565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01810533 151.99682617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01810534 151.99682617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01810535 151.99685669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01810536 151.99685669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01810537 151.99687195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01810538 151.99687195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01810539 151.99690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01810540 151.99690247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01810541 151.99693298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01810542 151.99694824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01810543 151.99696350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01810544 151.99696350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01810545 151.99699402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01810546 151.99699402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01810547 151.99702454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01810548 151.99702454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01810549 151.99703979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01810550 151.99703979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01810551 151.99707031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01810552 151.99708557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01810553 151.99710083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01810554 151.99710083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01810555 151.99713135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01810556 151.99713135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01810557 151.99716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01810558 151.99716187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01810559 151.99717712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01810560 151.99717712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01810561 151.99720764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01810562 151.99722290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01810563 151.99725342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01810564 151.99725342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01810565 151.99726868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01810566 151.99726868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01810567 151.99729919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01810568 151.99729919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01810569 151.99732971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01810570 151.99732971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01810571 151.99734497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01810572 151.99734497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01810573 151.99737549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01810574 151.99739075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01810575 151.99740601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01810576 151.99742126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01810577 151.99743652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01810578 151.99743652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01810579 151.99746704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01810580 151.99746704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01810581 151.99749756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01810582 151.99749756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01810583 151.99751282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01810584 151.99751282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01810585 151.99754333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01810586 151.99755859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01810587 151.99757385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01810588 151.99757385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01810589 151.99760437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01810590 151.99760437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01810591 151.99763489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01810592 151.99763489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01810593 151.99765015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01810594 151.99765015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01810595 151.99768066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01810596 151.99768066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01810597 151.99772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01810598 151.99772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01810599 151.99774170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01810600 151.99774170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01810601 151.99777222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01810602 151.99777222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01810603 151.99780273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01810604 151.99780273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01810605 151.99781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01810606 151.99783325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01810607 151.99786377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01810608 151.99786377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01810609 151.99789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01810610 151.99789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01810611 151.99790955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01810612 151.99790955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01810613 151.99794006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01810614 151.99794006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01810615 151.99797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01810616 151.99797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01810617 151.99798584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01810618 151.99800110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01810619 151.99801636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01810620 151.99803162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01810621 151.99804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01810622 151.99804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01810623 151.99807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01810624 151.99807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01810625 151.99810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01810626 151.99810791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01810627 151.99813843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01810628 151.99813843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01810629 151.99815369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01810630 151.99816895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01810631 151.99819946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01810632 151.99819946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01810633 151.99821472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01810634 151.99821472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01810635 151.99824524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01810636 151.99824524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01810637 151.99827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01810638 151.99827576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01810639 151.99829102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01810640 151.99830627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01810641 151.99833679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01810642 151.99833679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01810643 151.99836731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01810644 151.99836731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01810645 151.99838257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01810646 151.99838257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01810647 151.99841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01810648 151.99841309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01810649 151.99844360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01810650 151.99844360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01810651 151.99847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01810652 151.99847412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01810653 151.99850464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01810654 151.99850464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01810655 151.99853516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01810656 151.99853516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01810657 151.99855042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01810658 151.99855042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01810659 151.99858093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01810660 151.99858093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01810661 151.99861145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01810662 151.99861145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01810663 151.99862671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01810664 151.99864197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01810665 151.99865723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01810666 151.99867249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01810667 151.99868774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01810668 151.99868774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01810669 151.99871826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01810670 151.99871826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01810671 151.99874878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01810672 151.99874878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01810673 151.99876404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01810674 151.99877930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01810675 151.99880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01810676 151.99880981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01810677 151.99884033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01810678 151.99884033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01810679 151.99885559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01810680 151.99885559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01810681 151.99888611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01810682 151.99890137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01810683 151.99893188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01810684 151.99893188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01810685 151.99894714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01810686 151.99894714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01810687 151.99897766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01810688 151.99899292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01810689 151.99900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01810690 151.99900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01810691 151.99903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01810692 151.99903870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01810693 151.99906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01810694 151.99906921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01810695 151.99908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01810696 151.99908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01810697 151.99913025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01810698 151.99913025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01810699 151.99916077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01810700 151.99916077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01810701 151.99917603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01810702 151.99917603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01810703 151.99920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01810704 151.99920654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01810705 151.99923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01810706 151.99923706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01810707 151.99925232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01810708 151.99925232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01810709 151.99928284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01810710 151.99928284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01810711 151.99931335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01810712 151.99932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01810713 151.99934387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01810714 151.99934387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01810715 151.99937439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01810716 151.99937439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01810717 151.99940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01810718 151.99940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01810719 151.99942017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01810720 151.99943542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01810721 151.99946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01810722 151.99946594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01810723 151.99948120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01810724 151.99948120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01810725 151.99951172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01810726 151.99951172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01810727 151.99954224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01810728 151.99955750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01810729 151.99957275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01810730 151.99957275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01810731 151.99960327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01810732 151.99960327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01810733 151.99963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01810734 151.99963379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01810735 151.99964905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01810736 151.99964905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01810737 151.99967957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01810738 151.99969482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01810739 151.99972534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01810740 151.99972534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01810741 151.99974060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01810742 151.99974060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01810743 151.99977112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01810744 151.99977112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01810745 151.99980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01810746 151.99980164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01810747 151.99981689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01810748 151.99981689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01810749 151.99984741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01810750 151.99986267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01810751 151.99987793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01810752 151.99987793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01810753 151.99990845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01810754 151.99990845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01810755 151.99993896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01810756 151.99993896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01810757 151.99995422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01810758 151.99995422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01810759 151.99998474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01810760 152.00000000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01810761 152.00003052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01810762 152.00003052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01810763 152.00004578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01810764 152.00004578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01810765 152.00007629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01810766 152.00007629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01810767 152.00010681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01810768 152.00010681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01810769 152.00012207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01810770 152.00013733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01810771 152.00016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01810772 152.00016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01810773 152.00019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01810774 152.00019836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01810775 152.00021362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01810776 152.00021362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01810777 152.00024414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01810778 152.00024414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01810779 152.00027466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01810780 152.00027466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01810781 152.00028992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01810782 152.00028992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01810783 152.00032043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01810784 152.00032043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01810785 152.00035095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01810786 152.00035095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01810787 152.00038147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01810788 152.00038147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01810789 152.00041199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01810790 152.00041199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01810791 152.00044250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01810792 152.00044250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01810793 152.00045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01810794 152.00047302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01810795 152.00050354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01810796 152.00050354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01810797 152.00051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01810798 152.00051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01810799 152.00054932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01810800 152.00054932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01810801 152.00057983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01810802 152.00059509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01810803 152.00061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01810804 152.00061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01810805 152.00064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01810806 152.00064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01810807 152.00067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01810808 152.00067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01810809 152.00068665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01810810 152.00068665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01810811 152.00071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01810812 152.00071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01810813 152.00074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01810814 152.00074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01810815 152.00076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01810816 152.00077820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01810817 152.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01810818 152.00080872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01810819 152.00083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01810820 152.00083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01810821 152.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01810822 152.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01810823 152.00088501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01810824 152.00088501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01810825 152.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01810826 152.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01810827 152.00094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01810828 152.00094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01810829 152.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01810830 152.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01810831 152.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01810832 152.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01810833 152.00102234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01810834 152.00102234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01810835 152.00105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01810836 152.00105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01810837 152.00106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01810838 152.00106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01810839 152.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01810840 152.00111389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01810841 152.00114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01810842 152.00114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01810843 152.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01810844 152.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01810845 152.00119019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01810846 152.00119019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01810847 152.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01810848 152.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01810849 152.00125122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01810850 152.00125122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01810851 152.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01810852 152.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01810853 152.00131226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01810854 152.00131226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01810855 152.00132751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01810856 152.00132751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01810857 152.00135803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01810858 152.00137329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01810859 152.00138855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01810860 152.00138855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01810861 152.00141907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01810862 152.00141907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01810863 152.00144958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01810864 152.00146484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01810865 152.00148010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01810866 152.00148010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01810867 152.00151062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01810868 152.00151062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01810869 152.00154114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01810870 152.00154114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01810871 152.00155640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01810872 152.00155640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01810873 152.00158691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01810874 152.00158691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01810875 152.00161743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01810876 152.00163269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01810877 152.00164795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01810878 152.00164795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01810879 152.00167847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01810880 152.00167847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01810881 152.00170898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01810882 152.00170898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01810883 152.00172424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01810884 152.00172424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01810885 152.00175476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01810886 152.00177002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01810887 152.00178528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01810888 152.00178528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01810889 152.00181580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01810890 152.00181580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01810891 152.00184631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01810892 152.00184631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01810893 152.00186157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01810894 152.00186157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01810895 152.00189209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01810896 152.00190735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01810897 152.00193787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01810898 152.00193787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01810899 152.00195313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01810900 152.00195313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01810901 152.00198364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01810902 152.00198364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01810903 152.00201416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01810904 152.00201416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01810905 152.00202942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01810906 152.00204468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01810907 152.00207520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01810908 152.00207520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01810909 152.00210571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01810910 152.00210571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01810911 152.00212097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01810912 152.00212097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01810913 152.00215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01810914 152.00215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01810915 152.00218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01810916 152.00218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01810917 152.00221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01810918 152.00221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01810919 152.00224304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01810920 152.00224304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01810921 152.00225830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01810922 152.00225830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01810923 152.00228882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01810924 152.00228882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01810925 152.00231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01810926 152.00231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01810927 152.00234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01810928 152.00234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01810929 152.00238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01810930 152.00238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01810931 152.00241089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01810932 152.00241089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01810933 152.00242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01810934 152.00242615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01810935 152.00245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01810936 152.00245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01810937 152.00248718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01810938 152.00250244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01810939 152.00251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01810940 152.00251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01810941 152.00254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01810942 152.00254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01810943 152.00257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01810944 152.00257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01810945 152.00259399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01810946 152.00259399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01810947 152.00262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01810948 152.00262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01810949 152.00265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01810950 152.00265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01810951 152.00268555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01810952 152.00268555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01810953 152.00271606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01810954 152.00271606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01810955 152.00274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01810956 152.00274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01810957 152.00276184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01810958 152.00276184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01810959 152.00280762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01810960 152.00280762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01810961 152.00282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01810962 152.00282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01810963 152.00285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01810964 152.00285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01810965 152.00288391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01810966 152.00288391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01810967 152.00289917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01810968 152.00291443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01810969 152.00294495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01810970 152.00294495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01810971 152.00297546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01810972 152.00297546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01810973 152.00299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01810974 152.00299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01810975 152.00302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01810976 152.00302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01810977 152.00305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01810978 152.00305176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01810979 152.00306702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01810980 152.00306702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01810981 152.00309753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01810982 152.00311279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01810983 152.00312805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01810984 152.00314331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01810985 152.00315857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01810986 152.00315857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01810987 152.00318909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01810988 152.00318909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01810989 152.00321960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01810990 152.00321960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01810991 152.00323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01810992 152.00323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01810993 152.00326538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01810994 152.00328064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01810995 152.00329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01810996 152.00329590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01810997 152.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01810998 152.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01810999 152.00337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01811000 152.00337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01811001 152.00340271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01811002 152.00340271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01811003 152.00343323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01811004 152.00343323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01811005 152.00344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01811006 152.00344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01811007 152.00347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01811008 152.00349426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01811009 152.00352478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01811010 152.00352478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01811011 152.00354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01811012 152.00354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01811013 152.00357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01811014 152.00357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01811015 152.00360107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01811016 152.00360107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01811017 152.00361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01811018 152.00363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01811019 152.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01811020 152.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01811021 152.00369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01811022 152.00369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01811023 152.00370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01811024 152.00370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01811025 152.00373840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01811026 152.00373840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01811027 152.00376892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01811028 152.00376892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01811029 152.00379944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01811030 152.00379944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01811031 152.00382996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01811032 152.00382996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01811033 152.00384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01811034 152.00384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01811035 152.00387573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01811036 152.00389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01811037 152.00392151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01811038 152.00392151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01811039 152.00393677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01811040 152.00393677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01811041 152.00396729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01811042 152.00396729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01811043 152.00399780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01811044 152.00399780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01811045 152.00401306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01811046 152.00401306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01811047 152.00404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01811048 152.00404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01811049 152.00407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01811050 152.00407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01811051 152.00408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01811052 152.00408936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01811053 152.00411987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01811054 152.00413513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01811055 152.00416565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01811056 152.00416565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01811057 152.00418091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01811058 152.00418091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01811059 152.00421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01811060 152.00421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01811061 152.00424194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01811062 152.00424194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01811063 152.00425720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01811064 152.00427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01811065 152.00430298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01811066 152.00430298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01811067 152.00433350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01811068 152.00433350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01811069 152.00434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01811070 152.00434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01811071 152.00437927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01811072 152.00439453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01811073 152.00440979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01811074 152.00440979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01811075 152.00444031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01811076 152.00444031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01811077 152.00447083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01811078 152.00447083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01811079 152.00448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01811080 152.00448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01811081 152.00451660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01811082 152.00453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01811083 152.00456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01811084 152.00456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01811085 152.00457764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01811086 152.00457764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01811087 152.00460815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01811088 152.00460815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01811089 152.00463867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01811090 152.00463867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01811091 152.00473022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01811092 152.00473022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01811093 152.00474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01811094 152.00474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01811095 152.00477600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01811096 152.00477600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01811097 152.00480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01811098 152.00480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01811099 152.00483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01811100 152.00483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01811101 152.00486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01811102 152.00486755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01811103 152.00488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01811104 152.00488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01811105 152.00491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01811106 152.00491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01811107 152.00494385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01811108 152.00495911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01811109 152.00497437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01811110 152.00497437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01811111 152.00500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01811112 152.00500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01811113 152.00503540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01811114 152.00503540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01811115 152.00506592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01811116 152.00506592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01811117 152.00509644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01811118 152.00509644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01811119 152.00512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01811120 152.00512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01811121 152.00514221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01811122 152.00514221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01811123 152.00517273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01811124 152.00518799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01811125 152.00520325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01811126 152.00520325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01811127 152.00523376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01811128 152.00523376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01811129 152.00526428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01811130 152.00526428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01811131 152.00527954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01811132 152.00527954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01811133 152.00531006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01811134 152.00531006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01811135 152.00534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01811136 152.00535583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01811137 152.00537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01811138 152.00537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01811139 152.00540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01811140 152.00540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01811141 152.00543213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01811142 152.00543213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01811143 152.00544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01811144 152.00544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01811145 152.00547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01811146 152.00549316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01811147 152.00552368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01811148 152.00552368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01811149 152.00553894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01811150 152.00553894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01811151 152.00556946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01811152 152.00556946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01811153 152.00559998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01811154 152.00559998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01811155 152.00561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01811156 152.00561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01811157 152.00564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01811158 152.00564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01811159 152.00567627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01811160 152.00567627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01811161 152.00569153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01811162 152.00570679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01811163 152.00573730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01811164 152.00573730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01811165 152.00575256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01811166 152.00575256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01811167 152.00578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01811168 152.00578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01811169 152.00581360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01811170 152.00581360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01811171 152.00584412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01811172 152.00584412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01811173 152.00585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01811174 152.00585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01811175 152.00588989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01811176 152.00588989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01811177 152.00592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01811178 152.00592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01811179 152.00593567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01811180 152.00593567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01811181 152.00596619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01811182 152.00598145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01811183 152.00599670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01811184 152.00599670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01811185 152.00602722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01811186 152.00602722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01811187 152.00605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01811188 152.00605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01811189 152.00607300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01811190 152.00607300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01811191 152.00610352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01811192 152.00610352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01811193 152.00613403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01811194 152.00613403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01811195 152.00614929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01811196 152.00616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01811197 152.00619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01811198 152.00619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01811199 152.00622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01811200 152.00622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01811201 152.00624084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01811202 152.00625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01811203 152.00628662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01811204 152.00628662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01811205 152.00631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01811206 152.00631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01811207 152.00633240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01811208 152.00633240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01811209 152.00636292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01811210 152.00636292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01811211 152.00639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01811212 152.00639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01811213 152.00640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01811214 152.00642395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01811215 152.00645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01811216 152.00645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01811217 152.00646973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01811218 152.00646973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01811219 152.00650024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01811220 152.00650024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01811221 152.00653076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01811222 152.00653076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01811223 152.00656128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01811224 152.00656128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01811225 152.00659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01811226 152.00659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01811227 152.00662231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01811228 152.00662231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01811229 152.00663757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01811230 152.00665283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01811231 152.00668335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01811232 152.00668335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01811233 152.00671387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01811234 152.00671387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01811235 152.00672913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01811236 152.00672913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01811237 152.00675964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01811238 152.00675964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01811239 152.00679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01811240 152.00679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01811241 152.00682068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01811242 152.00682068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01811243 152.00685120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01811244 152.00685120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01811245 152.00686646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01811246 152.00686646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01811247 152.00689697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01811248 152.00689697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01811249 152.00692749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01811250 152.00694275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01811251 152.00695801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01811252 152.00695801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01811253 152.00698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01811254 152.00698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01811255 152.00701904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01811256 152.00701904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01811257 152.00703430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01811258 152.00703430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01811259 152.00706482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01811260 152.00708008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01811261 152.00709534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01811262 152.00711060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01811263 152.00712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01811264 152.00712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01811265 152.00715637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01811266 152.00715637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01811267 152.00718689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01811268 152.00718689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01811269 152.00720215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01811270 152.00721741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01811271 152.00724792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01811272 152.00724792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01811273 152.00726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01811274 152.00726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01811275 152.00729370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01811276 152.00729370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01811277 152.00732422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01811278 152.00732422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01811279 152.00735474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01811280 152.00735474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01811281 152.00737000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01811282 152.00737000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01811283 152.00740051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01811284 152.00740051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01811285 152.00743103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01811286 152.00743103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01811287 152.00744629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01811288 152.00746155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01811289 152.00749207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01811290 152.00749207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01811291 152.00750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01811292 152.00750732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01811293 152.00753784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01811294 152.00753784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01811295 152.00756836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01811296 152.00758362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01811297 152.00759888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01811298 152.00759888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01811299 152.00762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01811300 152.00762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01811301 152.00765991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01811302 152.00765991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01811303 152.00767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01811304 152.00767517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01811305 152.00770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01811306 152.00772095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01811307 152.00775146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01811308 152.00775146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01811309 152.00776672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01811310 152.00776672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01811311 152.00779724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01811312 152.00779724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01811313 152.00782776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01811314 152.00782776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01811315 152.00784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01811316 152.00785828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01811317 152.00787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01811318 152.00788879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01811319 152.00790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01811320 152.00790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01811321 152.00793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01811322 152.00793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01811323 152.00796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01811324 152.00796509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01811325 152.00798035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01811326 152.00798035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01811327 152.00801086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01811328 152.00802612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01811329 152.00805664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01811330 152.00805664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01811331 152.00807190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01811332 152.00807190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01811333 152.00810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01811334 152.00810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01811335 152.00813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01811336 152.00813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01811337 152.00814819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01811338 152.00814819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01811339 152.00817871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01811340 152.00819397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01811341 152.00822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01811342 152.00822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01811343 152.00823975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01811344 152.00823975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01811345 152.00827026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01811346 152.00827026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01811347 152.00830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01811348 152.00830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01811349 152.00831604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01811350 152.00833130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01811351 152.00836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01811352 152.00836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01811353 152.00837708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01811354 152.00837708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01811355 152.00840759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01811356 152.00840759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01811357 152.00843811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01811358 152.00843811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01811359 152.00845337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01811360 152.00845337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01811361 152.00848389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01811362 152.00849915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01811363 152.00852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01811364 152.00852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01811365 152.00854492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01811366 152.00854492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01811367 152.00857544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01811368 152.00857544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01811369 152.00860596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01811370 152.00860596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01811371 152.00862122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01811372 152.00863647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01811373 152.00866699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01811374 152.00866699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01811375 152.00869751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01811376 152.00869751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01811377 152.00871277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01811378 152.00871277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01811379 152.00874329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01811380 152.00874329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01811381 152.00877380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01811382 152.00877380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01811383 152.00878906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01811384 152.00878906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01811385 152.00881958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01811386 152.00883484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01811387 152.00885010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01811388 152.00885010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01811389 152.00888062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01811390 152.00888062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01811391 152.00891113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01811392 152.00891113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01811393 152.00894165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01811394 152.00894165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01811395 152.00897217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01811396 152.00897217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01811397 152.00900269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01811398 152.00900269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01811399 152.00901794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01811400 152.00901794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01811401 152.00904846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01811402 152.00904846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01811403 152.00909424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01811404 152.00909424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01811405 152.00910950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01811406 152.00910950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01811407 152.00914001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01811408 152.00914001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01811409 152.00917053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01811410 152.00917053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01811411 152.00918579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01811412 152.00920105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01811413 152.00923157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01811414 152.00923157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01811415 152.00924683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01811416 152.00924683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01811417 152.00927734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01811418 152.00927734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01811419 152.00930786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01811420 152.00930786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01811421 152.00933838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01811422 152.00933838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01811423 152.00936890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01811424 152.00936890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01811425 152.00939941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01811426 152.00939941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01811427 152.00941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01811428 152.00941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01811429 152.00944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01811430 152.00944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01811431 152.00947571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01811432 152.00947571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01811433 152.00949097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01811434 152.00949097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01811435 152.00952148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01811436 152.00952148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01811437 152.00956726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01811438 152.00956726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01811439 152.00958252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01811440 152.00958252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01811441 152.00961304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01811442 152.00961304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01811443 152.00964355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01811444 152.00964355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01811445 152.00965881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01811446 152.00967407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01811447 152.00970459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01811448 152.00970459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01811449 152.00973511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01811450 152.00973511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01811451 152.00975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01811452 152.00975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01811453 152.00978088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01811454 152.00978088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01811455 152.00981140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01811456 152.00981140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01811457 152.00984192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01811458 152.00984192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01811459 152.00987244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01811460 152.00987244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01811461 152.00988770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01811462 152.00988770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01811463 152.00991821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01811464 152.00993347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01811465 152.00996399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01811466 152.00996399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01811467 152.00997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01811468 152.00997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01811469 152.01000977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01811470 152.01000977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01811471 152.01004028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01811472 152.01005554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01811473 152.01005554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01811474 152.01007080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01811475 152.01008606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01811476 152.01010132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01811477 152.01013184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01811478 152.01013184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01811479 152.01014709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01811480 152.01014709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01811481 152.01017761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01811482 152.01017761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01811483 152.01020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01811484 152.01020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01811485 152.01022339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01811486 152.01022339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01811487 152.01025391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01811488 152.01026917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01811489 152.01028442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01811490 152.01028442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01811491 152.01031494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01811492 152.01031494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01811493 152.01034546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01811494 152.01034546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01811495 152.01036072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01811496 152.01036072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01811497 152.01039124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01811498 152.01040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01811499 152.01043701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01811500 152.01043701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01811501 152.01045227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01811502 152.01045227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01811503 152.01048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01811504 152.01048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01811505 152.01051331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01811506 152.01051331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01811507 152.01052856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01811508 152.01054382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01811509 152.01057434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01811510 152.01057434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01811511 152.01060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01811512 152.01060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01811513 152.01062012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01811514 152.01062012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01811515 152.01065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01811516 152.01065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01811517 152.01068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01811518 152.01068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01811519 152.01069641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01811520 152.01071167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01811521 152.01072693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01811522 152.01074219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01811523 152.01075745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01811524 152.01075745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01811525 152.01078796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01811526 152.01078796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01811527 152.01081848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01811528 152.01081848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01811529 152.01084900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01811530 152.01084900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01811531 152.01086426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01811532 152.01087952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01811533 152.01091003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01811534 152.01091003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01811535 152.01092529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01811536 152.01092529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01811537 152.01095581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01811538 152.01095581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01811539 152.01098633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01811540 152.01098633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01811541 152.01100159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01811542 152.01101685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01811543 152.01104736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01811544 152.01104736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01811545 152.01107788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01811546 152.01107788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01811547 152.01109314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01811548 152.01109314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01811549 152.01112366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01811550 152.01112366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01811551 152.01115417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01811552 152.01115417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01811553 152.01118469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01811554 152.01118469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01811555 152.01121521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01811556 152.01121521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01811557 152.01124573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01811558 152.01124573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01811559 152.01126099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01811560 152.01126099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01811561 152.01129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01811562 152.01129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01811563 152.01132202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01811564 152.01132202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01811565 152.01133728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01811566 152.01135254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01811567 152.01138306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01811568 152.01138306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01811569 152.01139832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01811570 152.01139832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01811571 152.01142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01811572 152.01142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01811573 152.01145935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01811574 152.01145935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01811575 152.01147461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01811576 152.01147461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01811577 152.01150513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01811578 152.01152039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01811579 152.01155090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01811580 152.01155090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01811581 152.01156616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01811582 152.01156616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01811583 152.01159668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01811584 152.01159668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01811585 152.01162720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01811586 152.01162720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01811587 152.01164246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01811588 152.01164246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01811589 152.01168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01811590 152.01168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01811591 152.01171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01811592 152.01171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01811593 152.01173401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01811594 152.01173401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01811595 152.01176453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01811596 152.01176453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01811597 152.01179504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01811598 152.01179504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01811599 152.01182556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01811600 152.01182556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01811601 152.01185608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01811602 152.01185608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01811603 152.01187134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01811604 152.01187134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01811605 152.01190186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01811606 152.01190186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01811607 152.01193237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01811608 152.01194763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01811609 152.01194763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01811610 152.01196289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01811611 152.01199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01811612 152.01199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01811613 152.01202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01811614 152.01202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01811615 152.01203918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01811616 152.01203918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01811617 152.01206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01811618 152.01206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01811619 152.01210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01811620 152.01210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01811621 152.01211548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01811622 152.01211548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01811623 152.01214600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01811624 152.01216125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01811625 152.01219177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01811626 152.01219177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01811627 152.01220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01811628 152.01220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01811629 152.01223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01811630 152.01223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01811631 152.01226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01811632 152.01226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01811633 152.01228333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01811634 152.01229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01811635 152.01232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01811636 152.01232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01811637 152.01235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01811638 152.01235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01811639 152.01237488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01811640 152.01237488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01811641 152.01240540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01811642 152.01240540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01811643 152.01243591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01811644 152.01243591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01811645 152.01246643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01811646 152.01246643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01811647 152.01249695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01811648 152.01249695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01811649 152.01251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01811650 152.01251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01811651 152.01254272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01811652 152.01254272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01811653 152.01257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01811654 152.01257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01811655 152.01258850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01811656 152.01258850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01811657 152.01261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01811658 152.01261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01811659 152.01264954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01811660 152.01264954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01811661 152.01266479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01811662 152.01268005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01811663 152.01271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01811664 152.01271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01811665 152.01274109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01811666 152.01274109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01811667 152.01275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01811668 152.01275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01811669 152.01278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01811670 152.01280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01811671 152.01283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01811672 152.01283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01811673 152.01284790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01811674 152.01284790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01811675 152.01287842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01811676 152.01287842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01811677 152.01290894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01811678 152.01290894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01811679 152.01293945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01811680 152.01293945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01811681 152.01296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01811682 152.01296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01811683 152.01298523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01811684 152.01300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01811685 152.01303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01811686 152.01303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01811687 152.01306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01811688 152.01306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01811689 152.01307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01811690 152.01307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01811691 152.01310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01811692 152.01310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01811693 152.01313782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01811694 152.01315308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01811695 152.01316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01811696 152.01316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01811697 152.01319885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01811698 152.01319885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01811699 152.01322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01811700 152.01322937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01811701 152.01324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01811702 152.01324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01811703 152.01327515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01811704 152.01327515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01811705 152.01330566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01811706 152.01330566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01811707 152.01333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01811708 152.01333618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01811709 152.01336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01811710 152.01336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01811711 152.01338196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01811712 152.01338196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01811713 152.01341248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01811714 152.01341248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01811715 152.01344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01811716 152.01345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01811717 152.01347351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01811718 152.01347351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01811719 152.01350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01811720 152.01350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01811721 152.01353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01811722 152.01353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01811723 152.01354980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01811724 152.01356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01811725 152.01359558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01811726 152.01359558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01811727 152.01362610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01811728 152.01362610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01811729 152.01364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01811730 152.01364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01811731 152.01367188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01811732 152.01368713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01811733 152.01370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01811734 152.01370239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01811735 152.01373291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01811736 152.01373291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01811737 152.01376343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01811738 152.01376343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01811739 152.01377869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01811740 152.01379395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01811741 152.01382446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01811742 152.01382446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01811743 152.01385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01811744 152.01385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01811745 152.01387024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01811746 152.01387024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01811747 152.01390076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01811748 152.01390076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01811749 152.01393127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01811750 152.01394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01811751 152.01396179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01811752 152.01396179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01811753 152.01399231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01811754 152.01399231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01811755 152.01402283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01811756 152.01402283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01811757 152.01403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01811758 152.01403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01811759 152.01406860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01811760 152.01408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01811761 152.01409912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01811762 152.01409912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01811763 152.01412964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01811764 152.01412964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01811765 152.01416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01811766 152.01416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01811767 152.01417542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01811768 152.01419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01811769 152.01422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01811770 152.01422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01811771 152.01425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01811772 152.01425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01811773 152.01426697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01811774 152.01426697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01811775 152.01429749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01811776 152.01429749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01811777 152.01432800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01811778 152.01432800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01811779 152.01434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01811780 152.01435852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01811781 152.01438904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01811782 152.01438904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01811783 152.01441956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01811784 152.01441956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01811785 152.01443481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01811786 152.01443481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01811787 152.01446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01811788 152.01446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01811789 152.01449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01811790 152.01449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01811791 152.01452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01811792 152.01452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01811793 152.01455688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01811794 152.01455688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01811795 152.01457214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01811796 152.01457214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01811797 152.01460266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01811798 152.01460266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01811799 152.01463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01811800 152.01464844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01811801 152.01464844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01811802 152.01466370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01811803 152.01469421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01811804 152.01469421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01811805 152.01472473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01811806 152.01472473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01811807 152.01473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01811808 152.01473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01811809 152.01477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01811810 152.01477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01811811 152.01480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01811812 152.01480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01811813 152.01481628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01811814 152.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01811815 152.01486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01811816 152.01486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01811817 152.01489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01811818 152.01489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01811819 152.01490784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01811820 152.01490784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01811821 152.01493835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01811822 152.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01811823 152.01496887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01811824 152.01496887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01811825 152.01499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01811826 152.01499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01811827 152.01502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01811828 152.01502991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01811829 152.01506042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01811830 152.01506042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01811831 152.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01811832 152.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01811833 152.01510620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01811834 152.01512146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01811835 152.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01811836 152.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01811837 152.01516724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01811838 152.01516724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01811839 152.01519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01811840 152.01519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01811841 152.01521301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01811842 152.01521301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01811843 152.01524353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01811844 152.01525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01811845 152.01528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01811846 152.01528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01811847 152.01530457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01811848 152.01530457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01811849 152.01533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01811850 152.01533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01811851 152.01536560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01811852 152.01536560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01811853 152.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01811854 152.01539612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01811855 152.01542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01811856 152.01542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01811857 152.01545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01811858 152.01545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01811859 152.01547241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01811860 152.01547241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01811861 152.01550293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01811862 152.01550293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01811863 152.01553345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01811864 152.01553345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01811865 152.01554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01811866 152.01556396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01811867 152.01559448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01811868 152.01559448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01811869 152.01560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01811870 152.01560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01811871 152.01564026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01811872 152.01564026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01811873 152.01567078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01811874 152.01567078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01811875 152.01568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01811876 152.01568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01811877 152.01571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01811878 152.01573181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01811879 152.01574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01811880 152.01576233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01811881 152.01577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01811882 152.01577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01811883 152.01580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01811884 152.01580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01811885 152.01583862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01811886 152.01583862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01811887 152.01585388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01811888 152.01585388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01811889 152.01588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01811890 152.01588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01811891 152.01591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01811892 152.01591492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01811893 152.01593018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01811894 152.01594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01811895 152.01597595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01811896 152.01597595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01811897 152.01600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01811898 152.01600647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01811899 152.01602173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01811900 152.01602173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01811901 152.01605225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01811902 152.01605225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01811903 152.01608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01811904 152.01608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01811905 152.01611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01811906 152.01611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01811907 152.01614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01811908 152.01614380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01811909 152.01615906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01811910 152.01615906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01811911 152.01618958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01811912 152.01618958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01811913 152.01623535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01811914 152.01623535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01811915 152.01625061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01811916 152.01625061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01811917 152.01628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01811918 152.01628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01811919 152.01631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01811920 152.01631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01811921 152.01634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01811922 152.01634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01811923 152.01637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01811924 152.01637268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01811925 152.01640320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01811926 152.01640320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01811927 152.01641846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01811928 152.01641846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01811929 152.01644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01811930 152.01644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01811931 152.01647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01811932 152.01647949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01811933 152.01649475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01811934 152.01649475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01811935 152.01652527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01811936 152.01652527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01811937 152.01655579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01811938 152.01655579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01811939 152.01657104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01811940 152.01658630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01811941 152.01661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01811942 152.01661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01811943 152.01664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01811944 152.01664734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01811945 152.01666260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01811946 152.01666260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01811947 152.01669312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01811948 152.01669312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01811949 152.01672363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01811950 152.01672363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01811951 152.01675415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01811952 152.01675415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01811953 152.01678467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01811954 152.01678467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01811955 152.01679993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01811956 152.01679993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01811957 152.01683044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01811958 152.01684570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01811959 152.01687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01811960 152.01687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01811961 152.01689148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01811962 152.01689148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01811963 152.01692200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01811964 152.01692200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01811965 152.01695251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01811966 152.01695251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01811967 152.01698303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01811968 152.01698303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01811969 152.01701355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01811970 152.01701355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01811971 152.01704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01811972 152.01704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01811973 152.01705933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01811974 152.01705933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01811975 152.01708984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01811976 152.01708984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01811977 152.01712036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01811978 152.01712036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01811979 152.01713562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01811980 152.01713562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01811981 152.01716614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01811982 152.01716614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01811983 152.01719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01811984 152.01719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01811985 152.01721191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01811986 152.01722717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01811987 152.01724243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01811988 152.01725769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01811989 152.01727295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01811990 152.01727295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01811991 152.01730347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01811992 152.01730347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01811993 152.01733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01811994 152.01733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01811995 152.01734924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01811996 152.01736450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01811997 152.01739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01811998 152.01739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01811999 152.01742554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01812000 152.01742554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01812001 152.01744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01812002 152.01744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01812003 152.01747131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01812004 152.01747131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01812005 152.01750183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01812006 152.01751709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01812007 152.01753235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01812008 152.01753235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01812009 152.01756287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01812010 152.01756287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01812011 152.01759338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01812012 152.01759338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01812013 152.01760864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01812014 152.01760864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01812015 152.01763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01812016 152.01763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01812017 152.01766968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01812018 152.01766968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01812019 152.01768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01812020 152.01770020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01812021 152.01771545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01812022 152.01773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01812023 152.01774597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01812024 152.01774597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01812025 152.01779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01812026 152.01779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01812027 152.01782227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01812028 152.01782227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01812029 152.01786804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01812030 152.01786804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01812031 152.01789856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01812032 152.01789856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01812033 152.01791382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01812034 152.01791382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01812035 152.01794434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01812036 152.01794434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01812037 152.01797485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01812038 152.01797485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01812039 152.01799011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01812040 152.01800537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01812041 152.01803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01812042 152.01803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01812043 152.01806641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01812044 152.01806641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01812045 152.01808167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01812046 152.01808167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01812047 152.01811218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01812048 152.01812744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01812049 152.01814270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01812050 152.01815796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01812051 152.01817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01812052 152.01817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01812053 152.01820374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01812054 152.01820374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01812055 152.01823425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01812056 152.01823425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01812057 152.01824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01812058 152.01824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01812059 152.01828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01812060 152.01829529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01812061 152.01831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01812062 152.01831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01812063 152.01834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01812064 152.01834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01812065 152.01837158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01812066 152.01837158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01812067 152.01838684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01812068 152.01838684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01812069 152.01841736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01812070 152.01843262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01812071 152.01844788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01812072 152.01846313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01812073 152.01847839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01812074 152.01847839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01812075 152.01850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01812076 152.01850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01812077 152.01853943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01812078 152.01853943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01812079 152.01855469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01812080 152.01855469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01812081 152.01858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01812082 152.01858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01812083 152.01861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01812084 152.01863098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01812085 152.01864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01812086 152.01864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01812087 152.01867676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01812088 152.01867676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01812089 152.01870728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01812090 152.01870728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01812091 152.01872253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01812092 152.01872253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01812093 152.01875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01812094 152.01875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01812095 152.01878357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01812096 152.01878357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01812097 152.01881409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01812098 152.01881409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01812099 152.01884460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01812100 152.01884460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01812101 152.01885986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01812102 152.01885986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01812103 152.01889038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01812104 152.01890564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01812105 152.01893616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01812106 152.01893616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01812107 152.01895142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01812108 152.01895142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01812109 152.01898193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01812110 152.01898193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01812111 152.01901245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01812112 152.01901245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01812113 152.01902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01812114 152.01902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01812115 152.01905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01812116 152.01905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01812117 152.01908875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01812118 152.01910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01812119 152.01910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01812120 152.01911926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01812121 152.01914978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01812122 152.01914978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01812123 152.01918030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01812124 152.01918030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01812125 152.01919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01812126 152.01919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01812127 152.01922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01812128 152.01922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01812129 152.01925659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01812130 152.01925659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01812131 152.01927185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01812132 152.01927185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01812133 152.01930237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01812134 152.01931763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01812135 152.01934814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01812136 152.01934814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01812137 152.01936340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01812138 152.01936340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01812139 152.01939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01812140 152.01939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01812141 152.01942444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01812142 152.01942444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01812143 152.01945496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01812144 152.01945496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01812145 152.01948547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01812146 152.01948547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01812147 152.01950073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01812148 152.01950073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01812149 152.01953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01812150 152.01953125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01812151 152.01956177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01812152 152.01957703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01812153 152.01959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01812154 152.01959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01812155 152.01962280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01812156 152.01962280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01812157 152.01965332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01812158 152.01965332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01812159 152.01966858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01812160 152.01968384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01812161 152.01971436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01812162 152.01971436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01812163 152.01974487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01812164 152.01974487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01812165 152.01976013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01812166 152.01976013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01812167 152.01979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01812168 152.01979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01812169 152.01982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01812170 152.01982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01812171 152.01983643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01812172 152.01985168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01812173 152.01988220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01812174 152.01988220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01812175 152.01989746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01812176 152.01989746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01812177 152.01995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01812178 152.01995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01812179 152.01997375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01812180 152.01998901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01812181 152.02001953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01812182 152.02001953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01812183 152.02005005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01812184 152.02005005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01812185 152.02006531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01812186 152.02006531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01812187 152.02009583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01812188 152.02009583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01812189 152.02012634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01812190 152.02014160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01812191 152.02015686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01812192 152.02015686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01812193 152.02018738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01812194 152.02018738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01812195 152.02021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01812196 152.02021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01812197 152.02023315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01812198 152.02024841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01812199 152.02026367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01812200 152.02027893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01812201 152.02029419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01812202 152.02029419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01812203 152.02032471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01812204 152.02032471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01812205 152.02035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01812206 152.02035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01812207 152.02037048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01812208 152.02037048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01812209 152.02040100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01812210 152.02040100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01812211 152.02043152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01812212 152.02044678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01812213 152.02046204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01812214 152.02046204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01812215 152.02049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01812216 152.02049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01812217 152.02052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01812218 152.02052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01812219 152.02053833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01812220 152.02053833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01812221 152.02056885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01812222 152.02058411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01812223 152.02059937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01812224 152.02061462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01812225 152.02062988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01812226 152.02062988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01812227 152.02066040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01812228 152.02066040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01812229 152.02069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01812230 152.02069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01812231 152.02070618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01812232 152.02072144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01812233 152.02075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01812234 152.02075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01812235 152.02076721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01812236 152.02076721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01812237 152.02079773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01812238 152.02079773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01812239 152.02082825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01812240 152.02082825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01812241 152.02085876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01812242 152.02085876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01812243 152.02088928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01812244 152.02088928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01812245 152.02091980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01812246 152.02091980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01812247 152.02093506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01812248 152.02095032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01812249 152.02096558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01812250 152.02098083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01812251 152.02101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01812252 152.02101135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01812253 152.02102661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01812254 152.02102661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01812255 152.02105713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01812256 152.02105713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01812257 152.02108765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01812258 152.02108765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01812259 152.02110291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01812260 152.02110291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01812261 152.02113342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01812262 152.02113342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01812263 152.02116394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01812264 152.02116394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01812265 152.02119446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01812266 152.02119446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01812267 152.02122498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01812268 152.02122498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01812269 152.02125549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01812270 152.02125549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01812271 152.02127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01812272 152.02127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01812273 152.02130127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01812274 152.02131653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01812275 152.02133179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01812276 152.02133179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01812277 152.02136230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01812278 152.02136230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01812279 152.02139282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01812280 152.02139282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01812281 152.02140808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01812282 152.02140808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01812283 152.02143860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01812284 152.02145386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01812285 152.02148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01812286 152.02148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01812287 152.02149963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01812288 152.02149963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01812289 152.02153015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01812290 152.02153015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01812291 152.02156067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01812292 152.02156067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01812293 152.02157593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01812294 152.02157593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01812295 152.02160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01812296 152.02162170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01812297 152.02163696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01812298 152.02165222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01812299 152.02166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01812300 152.02166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01812301 152.02169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01812302 152.02169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01812303 152.02172852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01812304 152.02172852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01812305 152.02174377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01812306 152.02174377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01812307 152.02177429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01812308 152.02178955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01812309 152.02180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01812310 152.02180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01812311 152.02183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01812312 152.02183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01812313 152.02186584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01812314 152.02186584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01812315 152.02188110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01812316 152.02188110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01812317 152.02191162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01812318 152.02191162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01812319 152.02195740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01812320 152.02195740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01812321 152.02197266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01812322 152.02197266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01812323 152.02200317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01812324 152.02200317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01812325 152.02203369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01812326 152.02203369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01812327 152.02204895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01812328 152.02206421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01812329 152.02209473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01812330 152.02209473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01812331 152.02212524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01812332 152.02212524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01812333 152.02214050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01812334 152.02214050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01812335 152.02217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01812336 152.02217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01812337 152.02220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01812338 152.02220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01812339 152.02221680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01812340 152.02221680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01812341 152.02224731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01812342 152.02224731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01812343 152.02227783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01812344 152.02227783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01812345 152.02229309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01812346 152.02230835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01812347 152.02233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01812348 152.02233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01812349 152.02235413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01812350 152.02235413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01812351 152.02238464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01812352 152.02238464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01812353 152.02241516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01812354 152.02243042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01812355 152.02244568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01812356 152.02244568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01812357 152.02247620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01812358 152.02247620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01812359 152.02250671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01812360 152.02250671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01812361 152.02252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01812362 152.02252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01812363 152.02255249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01812364 152.02256775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01812365 152.02259827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01812366 152.02259827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01812367 152.02261353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01812368 152.02261353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01812369 152.02264404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01812370 152.02264404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01812371 152.02267456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01812372 152.02267456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01812373 152.02268982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01812374 152.02270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01812375 152.02272034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01812376 152.02273560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01812377 152.02275085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01812378 152.02275085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01812379 152.02278137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01812380 152.02278137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01812381 152.02281189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01812382 152.02281189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01812383 152.02284241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01812384 152.02284241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01812385 152.02285767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01812386 152.02285767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01812387 152.02288818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01812388 152.02290344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01812389 152.02291870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01812390 152.02291870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01812391 152.02294922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01812392 152.02294922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01812393 152.02297974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01812394 152.02297974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01812395 152.02299500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01812396 152.02299500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01812397 152.02302551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01812398 152.02304077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01812399 152.02307129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01812400 152.02307129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01812401 152.02308655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01812402 152.02308655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01812403 152.02311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01812404 152.02311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01812405 152.02314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01812406 152.02314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01812407 152.02317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01812408 152.02317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01812409 152.02320862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01812410 152.02320862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01812411 152.02323914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01812412 152.02323914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01812413 152.02325439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01812414 152.02325439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01812415 152.02328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01812416 152.02328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01812417 152.02331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01812418 152.02331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01812419 152.02334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01812420 152.02334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01812421 152.02337646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01812422 152.02337646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01812423 152.02339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01812424 152.02339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01812425 152.02342224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01812426 152.02343750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01812427 152.02345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01812428 152.02346802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01812429 152.02348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01812430 152.02348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01812431 152.02351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01812432 152.02351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01812433 152.02354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01812434 152.02354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01812435 152.02355957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01812436 152.02355957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01812437 152.02359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01812438 152.02359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01812439 152.02362061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01812440 152.02362061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01812441 152.02363586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01812442 152.02365112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01812443 152.02368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01812444 152.02368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01812445 152.02371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01812446 152.02371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01812447 152.02372742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01812448 152.02372742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01812449 152.02375793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01812450 152.02377319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01812451 152.02378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01812452 152.02378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01812453 152.02381897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01812454 152.02381897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01812455 152.02384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01812456 152.02384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01812457 152.02386475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01812458 152.02386475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01812459 152.02389526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01812460 152.02389526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01812461 152.02392578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01812462 152.02394104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01812463 152.02395630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01812464 152.02395630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01812465 152.02398682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01812466 152.02398682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01812467 152.02401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01812468 152.02401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01812469 152.02403259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01812470 152.02403259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01812471 152.02406311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01812472 152.02407837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01812473 152.02409363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01812474 152.02410889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01812475 152.02412415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01812476 152.02412415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01812477 152.02415466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01812478 152.02415466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01812479 152.02418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01812480 152.02418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01812481 152.02420044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01812482 152.02420044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01812483 152.02423096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01812484 152.02423096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01812485 152.02426147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01812486 152.02426147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01812487 152.02429199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01812488 152.02429199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01812489 152.02432251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01812490 152.02432251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01812491 152.02435303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01812492 152.02435303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01812493 152.02436829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01812494 152.02436829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01812495 152.02439880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01812496 152.02441406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01812497 152.02442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01812498 152.02442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01812499 152.02445984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01812500 152.02445984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01812501 152.02449036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01812502 152.02449036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01812503 152.02450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01812504 152.02450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01812505 152.02453613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01812506 152.02455139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01812507 152.02458191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01812508 152.02458191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01812509 152.02459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01812510 152.02459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01812511 152.02462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01812512 152.02462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01812513 152.02465820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01812514 152.02465820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01812515 152.02467346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01812516 152.02467346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01812517 152.02470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01812518 152.02470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01812519 152.02473450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01812520 152.02474976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01812521 152.02474976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01812522 152.02476501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01812523 152.02479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01812524 152.02479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01812525 152.02482605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01812526 152.02482605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01812527 152.02484131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01812528 152.02484131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01812529 152.02487183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01812530 152.02487183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01812531 152.02490234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01812532 152.02490234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01812533 152.02493286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01812534 152.02493286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01812535 152.02496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01812536 152.02496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01812537 152.02497864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01812538 152.02497864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01812539 152.02500916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01812540 152.02502441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01812541 152.02503967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01812542 152.02505493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01812543 152.02507019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01812544 152.02507019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01812545 152.02510071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01812546 152.02510071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01812547 152.02513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01812548 152.02513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01812549 152.02514648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01812550 152.02514648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01812551 152.02517700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01812552 152.02519226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01812553 152.02522278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01812554 152.02522278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01812555 152.02523804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01812556 152.02523804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01812557 152.02526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01812558 152.02526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01812559 152.02529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01812560 152.02529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01812561 152.02531433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01812562 152.02532959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01812563 152.02534485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01812564 152.02536011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01812565 152.02537537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01812566 152.02537537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01812567 152.02540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01812568 152.02540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01812569 152.02543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01812570 152.02543640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01812571 152.02545166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01812572 152.02545166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01812573 152.02548218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01812574 152.02549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01812575 152.02552795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01812576 152.02552795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01812577 152.02554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01812578 152.02554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01812579 152.02557373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01812580 152.02557373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01812581 152.02560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01812582 152.02560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01812583 152.02561951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01812584 152.02563477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01812585 152.02565002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01812586 152.02566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01812587 152.02569580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01812588 152.02569580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01812589 152.02571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01812590 152.02571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01812591 152.02574158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01812592 152.02574158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01812593 152.02577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01812594 152.02577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01812595 152.02580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01812596 152.02580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01812597 152.02583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01812598 152.02583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01812599 152.02584839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01812600 152.02584839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01812601 152.02587891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01812602 152.02589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01812603 152.02593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01812604 152.02593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01812605 152.02597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01812606 152.02597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01812607 152.02600098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01812608 152.02600098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01812609 152.02601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01812610 152.02603149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01812611 152.02606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01812612 152.02606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01812613 152.02609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01812614 152.02609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01812615 152.02610779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01812616 152.02610779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01812617 152.02613831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01812618 152.02613831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01812619 152.02616882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01812620 152.02616882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01812621 152.02618408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01812622 152.02618408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01812623 152.02621460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01812624 152.02622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01812625 152.02624512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01812626 152.02626038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01812627 152.02627563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01812628 152.02627563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01812629 152.02630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01812630 152.02630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01812631 152.02633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01812632 152.02633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01812633 152.02635193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01812634 152.02636719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01812635 152.02639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01812636 152.02639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01812637 152.02641296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01812638 152.02641296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01812639 152.02644348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01812640 152.02644348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01812641 152.02647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01812642 152.02647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01812643 152.02648926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01812644 152.02650452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01812645 152.02653503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01812646 152.02653503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01812647 152.02656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01812648 152.02656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01812649 152.02658081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01812650 152.02658081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01812651 152.02661133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01812652 152.02661133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01812653 152.02664185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01812654 152.02664185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01812655 152.02665710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01812656 152.02667236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01812657 152.02670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01812658 152.02670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01812659 152.02673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01812660 152.02673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01812661 152.02674866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01812662 152.02674866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01812663 152.02677917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01812664 152.02679443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01812665 152.02680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01812666 152.02680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01812667 152.02684021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01812668 152.02684021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01812669 152.02687073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01812670 152.02687073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01812671 152.02690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01812672 152.02690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01812673 152.02693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01812674 152.02693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01812675 152.02696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01812676 152.02696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01812677 152.02697754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01812678 152.02697754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01812679 152.02700806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01812680 152.02700806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01812681 152.02703857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01812682 152.02703857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01812683 152.02705383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01812684 152.02706909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01812685 152.02709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01812686 152.02709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01812687 152.02713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01812688 152.02713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01812689 152.02714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01812690 152.02714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01812691 152.02717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01812692 152.02717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01812693 152.02720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01812694 152.02720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01812695 152.02723694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01812696 152.02723694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01812697 152.02726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01812698 152.02726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01812699 152.02728271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01812700 152.02728271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01812701 152.02731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01812702 152.02732849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01812703 152.02735901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01812704 152.02735901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01812705 152.02737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01812706 152.02737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01812707 152.02740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01812708 152.02742004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01812709 152.02745056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01812710 152.02745056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01812711 152.02746582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01812712 152.02746582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01812713 152.02749634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01812714 152.02749634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01812715 152.02752686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01812716 152.02752686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01812717 152.02755737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01812718 152.02755737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01812719 152.02758789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01812720 152.02758789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01812721 152.02760315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01812722 152.02761841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01812723 152.02764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01812724 152.02764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01812725 152.02767944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01812726 152.02767944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01812727 152.02769470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01812728 152.02770996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01812729 152.02774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01812730 152.02774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01812731 152.02775574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01812732 152.02775574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01812733 152.02778625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01812734 152.02778625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01812735 152.02781677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01812736 152.02783203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01812737 152.02784729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01812738 152.02784729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01812739 152.02787781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01812740 152.02787781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01812741 152.02790833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01812742 152.02792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01812743 152.02793884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01812744 152.02793884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01812745 152.02796936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01812746 152.02796936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01812747 152.02799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01812748 152.02799988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01812749 152.02803040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01812750 152.02803040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01812751 152.02806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01812752 152.02806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01812753 152.02807617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01812754 152.02809143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01812755 152.02812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01812756 152.02812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01812757 152.02815247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01812758 152.02815247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01812759 152.02816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01812760 152.02816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01812761 152.02819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01812762 152.02819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01812763 152.02822876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01812764 152.02824402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01812765 152.02825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01812766 152.02825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01812767 152.02828979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01812768 152.02828979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01812769 152.02832031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01812770 152.02832031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01812771 152.02833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01812772 152.02833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01812773 152.02836609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01812774 152.02838135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01812775 152.02839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01812776 152.02839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01812777 152.02842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01812778 152.02842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01812779 152.02847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01812780 152.02847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01812781 152.02848816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01812782 152.02848816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01812783 152.02853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01812784 152.02853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01812785 152.02854919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01812786 152.02856445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01812787 152.02859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01812788 152.02859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01812789 152.02862549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01812790 152.02862549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01812791 152.02864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01812792 152.02864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01812793 152.02867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01812794 152.02867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01812795 152.02870178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01812796 152.02871704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01812797 152.02873230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01812798 152.02873230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01812799 152.02876282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01812800 152.02876282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01812801 152.02879333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01812802 152.02879333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01812803 152.02880859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01812804 152.02880859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01812805 152.02883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01812806 152.02885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01812807 152.02886963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01812808 152.02886963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01812809 152.02890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01812810 152.02890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01812811 152.02893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01812812 152.02893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01812813 152.02896118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01812814 152.02896118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01812815 152.02897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01812816 152.02897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01812817 152.02900696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01812818 152.02902222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01812819 152.02903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01812820 152.02903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01812821 152.02906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01812822 152.02906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01812823 152.02909851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01812824 152.02909851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01812825 152.02911377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01812826 152.02911377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01812827 152.02914429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01812828 152.02915955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01812829 152.02919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01812830 152.02919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01812831 152.02920532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01812832 152.02920532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01812833 152.02923584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01812834 152.02923584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01812835 152.02926636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01812836 152.02926636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01812837 152.02928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01812838 152.02928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01812839 152.02931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01812840 152.02932739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01812841 152.02935791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01812842 152.02935791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01812843 152.02937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01812844 152.02937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01812845 152.02940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01812846 152.02940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01812847 152.02943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01812848 152.02943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01812849 152.02946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01812850 152.02946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01812851 152.02949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01812852 152.02949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01812853 152.02951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01812854 152.02951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01812855 152.02954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01812856 152.02954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01812857 152.02957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01812858 152.02957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01812859 152.02958679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01812860 152.02958679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01812861 152.02961731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01812862 152.02961731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01812863 152.02964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01812864 152.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01812865 152.02967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01812866 152.02967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01812867 152.02970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01812868 152.02970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01812869 152.02973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01812870 152.02973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01812871 152.02975464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01812872 152.02975464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01812873 152.02978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01812874 152.02980042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01812875 152.02983093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01812876 152.02983093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01812877 152.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01812878 152.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01812879 152.02987671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01812880 152.02987671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01812881 152.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01812882 152.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01812883 152.02992249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01812884 152.02993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01812885 152.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01812886 152.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01812887 152.02998352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01812888 152.02998352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01812889 152.03001404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01812890 152.03001404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01812891 152.03004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01812892 152.03004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01812893 152.03005981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01812894 152.03005981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01812895 152.03009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01812896 152.03010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01812897 152.03013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01812898 152.03013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01812899 152.03015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01812900 152.03015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01812901 152.03018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01812902 152.03018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01812903 152.03021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01812904 152.03021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01812905 152.03022766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01812906 152.03024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01812907 152.03027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01812908 152.03027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01812909 152.03030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01812910 152.03030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01812911 152.03031921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01812912 152.03031921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01812913 152.03034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01812914 152.03034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01812915 152.03038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01812916 152.03038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01812917 152.03041077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01812918 152.03041077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01812919 152.03044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01812920 152.03044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01812921 152.03045654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01812922 152.03045654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01812923 152.03048706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01812924 152.03048706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01812925 152.03051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01812926 152.03051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01812927 152.03054810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01812928 152.03054810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01812929 152.03056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01812930 152.03057861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01812931 152.03060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01812932 152.03060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01812933 152.03062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01812934 152.03062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01812935 152.03065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01812936 152.03065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01812937 152.03068542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01812938 152.03070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01812939 152.03071594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01812940 152.03071594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01812941 152.03074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01812942 152.03074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01812943 152.03077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01812944 152.03077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01812945 152.03079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01812946 152.03079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01812947 152.03083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01812948 152.03083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01812949 152.03085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01812950 152.03085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01812951 152.03088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01812952 152.03088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01812953 152.03091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01812954 152.03091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01812955 152.03094482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01812956 152.03094482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01812957 152.03096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01812958 152.03097534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01812959 152.03100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01812960 152.03100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01812961 152.03102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01812962 152.03102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01812963 152.03105164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01812964 152.03105164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01812965 152.03108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01812966 152.03108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01812967 152.03109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01812968 152.03109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01812969 152.03112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01812970 152.03112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01812971 152.03115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01812972 152.03117371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01812973 152.03117371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01812974 152.03118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01812975 152.03121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01812976 152.03121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01812977 152.03125000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01812978 152.03125000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01812979 152.03126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01812980 152.03126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01812981 152.03129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01812982 152.03129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01812983 152.03132629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01812984 152.03134155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01812985 152.03135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01812986 152.03135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01812987 152.03138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01812988 152.03138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01812989 152.03141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01812990 152.03141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01812991 152.03143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01812992 152.03143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01812993 152.03147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01812994 152.03147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01812995 152.03149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01812996 152.03149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01812997 152.03152466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01812998 152.03152466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01812999 152.03155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01813000 152.03155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01813001 152.03157043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01813002 152.03157043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01813003 152.03160095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01813004 152.03161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01813005 152.03166199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01813006 152.03166199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01813007 152.03167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01813008 152.03167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01813009 152.03170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01813010 152.03172302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01813011 152.03173828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01813012 152.03173828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01813013 152.03176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01813014 152.03176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01813015 152.03179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01813016 152.03179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01813017 152.03181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01813018 152.03181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01813019 152.03184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01813020 152.03184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01813021 152.03187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01813022 152.03187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01813023 152.03189087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01813024 152.03190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01813025 152.03192139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01813026 152.03193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01813027 152.03196716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01813028 152.03196716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01813029 152.03198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01813030 152.03198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01813031 152.03201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01813032 152.03201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01813033 152.03204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01813034 152.03205872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01813035 152.03207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01813036 152.03207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01813037 152.03210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01813038 152.03210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01813039 152.03213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01813040 152.03213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01813041 152.03215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01813042 152.03215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01813043 152.03218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01813044 152.03219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01813045 152.03221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01813046 152.03221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01813047 152.03224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01813048 152.03224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01813049 152.03227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01813050 152.03227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01813051 152.03228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01813052 152.03228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01813053 152.03231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01813054 152.03233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01813055 152.03234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01813056 152.03236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01813057 152.03237915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01813058 152.03237915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01813059 152.03240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01813060 152.03240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01813061 152.03244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01813062 152.03244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01813063 152.03245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01813064 152.03245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01813065 152.03248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01813066 152.03248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01813067 152.03251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01813068 152.03251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01813069 152.03253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01813070 152.03254700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01813071 152.03257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01813072 152.03257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01813073 152.03260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01813074 152.03260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01813075 152.03262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01813076 152.03262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01813077 152.03265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01813078 152.03266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01813079 152.03268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01813080 152.03268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01813081 152.03271484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01813082 152.03271484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01813083 152.03274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01813084 152.03274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01813085 152.03276062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01813086 152.03276062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01813087 152.03279114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01813088 152.03280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01813089 152.03283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01813090 152.03283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01813091 152.03285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01813092 152.03285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01813093 152.03288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01813094 152.03288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01813095 152.03292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01813096 152.03292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01813097 152.03294373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01813098 152.03294373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01813099 152.03297424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01813100 152.03297424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01813101 152.03300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01813102 152.03300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01813103 152.03302002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01813104 152.03302002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01813105 152.03305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01813106 152.03305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01813107 152.03308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01813108 152.03308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01813109 152.03309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01813110 152.03309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01813111 152.03312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01813112 152.03314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01813113 152.03315735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01813114 152.03315735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01813115 152.03318787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01813116 152.03318787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01813117 152.03321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01813118 152.03321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01813119 152.03324890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01813120 152.03324890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01813121 152.03326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01813122 152.03326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01813123 152.03329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01813124 152.03330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01813125 152.03332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01813126 152.03332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01813127 152.03335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01813128 152.03335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01813129 152.03338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01813130 152.03338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01813131 152.03340149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01813132 152.03340149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01813133 152.03344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01813134 152.03344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01813135 152.03347778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01813136 152.03347778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01813137 152.03349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01813138 152.03349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01813139 152.03352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01813140 152.03352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01813141 152.03355408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01813142 152.03355408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01813143 152.03358459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01813144 152.03358459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01813145 152.03361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01813146 152.03361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01813147 152.03364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01813148 152.03364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01813149 152.03366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01813150 152.03366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01813151 152.03369141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01813152 152.03370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01813153 152.03372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01813154 152.03372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01813155 152.03375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01813156 152.03375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01813157 152.03378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01813158 152.03378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01813159 152.03379822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01813160 152.03379822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01813161 152.03382874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01813162 152.03382874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01813163 152.03385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01813164 152.03387451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01813165 152.03388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01813166 152.03388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01813167 152.03392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01813168 152.03392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01813169 152.03395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01813170 152.03395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01813171 152.03396606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01813172 152.03396606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01813173 152.03399658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01813174 152.03401184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01813175 152.03404236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01813176 152.03404236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01813177 152.03405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01813178 152.03405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01813179 152.03408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01813180 152.03408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01813181 152.03411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01813182 152.03411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01813183 152.03413391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01813184 152.03414917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01813185 152.03417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01813186 152.03417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01813187 152.03419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01813188 152.03419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01813189 152.03422546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01813190 152.03422546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01813191 152.03425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01813192 152.03425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01813193 152.03427124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01813194 152.03427124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01813195 152.03430176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01813196 152.03430176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01813197 152.03433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01813198 152.03434753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01813199 152.03436279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01813200 152.03436279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01813201 152.03439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01813202 152.03439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01813203 152.03442383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01813204 152.03442383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01813205 152.03443909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01813206 152.03443909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01813207 152.03448486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01813208 152.03448486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01813209 152.03451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01813210 152.03451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01813211 152.03453064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01813212 152.03453064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01813213 152.03456116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01813214 152.03456116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01813215 152.03459167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01813216 152.03459167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01813217 152.03462219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01813218 152.03462219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01813219 152.03465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01813220 152.03465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01813221 152.03466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01813222 152.03466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01813223 152.03469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01813224 152.03469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01813225 152.03472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01813226 152.03472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01813227 152.03475952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01813228 152.03475952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01813229 152.03477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01813230 152.03477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01813231 152.03480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01813232 152.03482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01813233 152.03483582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01813234 152.03483582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01813235 152.03486633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01813236 152.03486633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01813237 152.03489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01813238 152.03491211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01813239 152.03492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01813240 152.03492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01813241 152.03495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01813242 152.03495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01813243 152.03498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01813244 152.03498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01813245 152.03500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01813246 152.03500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01813247 152.03503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01813248 152.03504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01813249 152.03506470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01813250 152.03506470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01813251 152.03509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01813252 152.03509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01813253 152.03512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01813254 152.03512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01813255 152.03515625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01813256 152.03515625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01813257 152.03517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01813258 152.03518677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01813259 152.03521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01813260 152.03521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01813261 152.03523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01813262 152.03523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01813263 152.03526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01813264 152.03526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01813265 152.03529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01813266 152.03529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01813267 152.03530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01813268 152.03532410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01813269 152.03535461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01813270 152.03535461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01813271 152.03538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01813272 152.03538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01813273 152.03540039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01813274 152.03540039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01813275 152.03543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01813276 152.03543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01813277 152.03546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01813278 152.03546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01813279 152.03547668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01813280 152.03549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01813281 152.03552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01813282 152.03552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01813283 152.03555298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01813284 152.03555298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01813285 152.03556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01813286 152.03556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01813287 152.03559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01813288 152.03559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01813289 152.03562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01813290 152.03562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01813291 152.03565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01813292 152.03565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01813293 152.03569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01813294 152.03569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01813295 152.03570557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01813296 152.03570557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01813297 152.03573608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01813298 152.03573608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01813299 152.03576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01813300 152.03576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01813301 152.03578186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01813302 152.03579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01813303 152.03582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01813304 152.03582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01813305 152.03585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01813306 152.03585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01813307 152.03587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01813308 152.03587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01813309 152.03590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01813310 152.03591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01813311 152.03594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01813312 152.03594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01813313 152.03596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01813314 152.03596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01813315 152.03599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01813316 152.03599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01813317 152.03602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01813318 152.03602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01813319 152.03604126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01813320 152.03604126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01813321 152.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01813322 152.03608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01813323 152.03610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01813324 152.03610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01813325 152.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01813326 152.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01813327 152.03616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01813328 152.03616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01813329 152.03617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01813330 152.03617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01813331 152.03620911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01813332 152.03620911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01813333 152.03623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01813334 152.03625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01813335 152.03627014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01813336 152.03627014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01813337 152.03630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01813338 152.03630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01813339 152.03633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01813340 152.03633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01813341 152.03634644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01813342 152.03634644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01813343 152.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01813344 152.03639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01813345 152.03642273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01813346 152.03642273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01813347 152.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01813348 152.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01813349 152.03646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01813350 152.03646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01813351 152.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01813352 152.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01813353 152.03652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01813354 152.03652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01813355 152.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01813356 152.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01813357 152.03657532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01813358 152.03657532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01813359 152.03660583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01813360 152.03660583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01813361 152.03663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01813362 152.03663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01813363 152.03665161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01813364 152.03665161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01813365 152.03668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01813366 152.03668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01813367 152.03671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01813368 152.03671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01813369 152.03674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01813370 152.03674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01813371 152.03675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01813372 152.03677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01813373 152.03680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01813374 152.03680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01813375 152.03681946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01813376 152.03681946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01813377 152.03684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01813378 152.03684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01813379 152.03688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01813380 152.03689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01813381 152.03691101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01813382 152.03691101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01813383 152.03694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01813384 152.03694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01813385 152.03697205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01813386 152.03697205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01813387 152.03698730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01813388 152.03700256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01813389 152.03701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01813390 152.03703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01813391 152.03706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01813392 152.03706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01813393 152.03707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01813394 152.03707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01813395 152.03710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01813396 152.03710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01813397 152.03713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01813398 152.03713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01813399 152.03715515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01813400 152.03717041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01813401 152.03720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01813402 152.03720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01813403 152.03721619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01813404 152.03721619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01813405 152.03724670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01813406 152.03724670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01813407 152.03727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01813408 152.03727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01813409 152.03729248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01813410 152.03730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01813411 152.03732300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01813412 152.03733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01813413 152.03736877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01813414 152.03736877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01813415 152.03738403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01813416 152.03738403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01813417 152.03741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01813418 152.03741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01813419 152.03744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01813420 152.03744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01813421 152.03746033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01813422 152.03746033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01813423 152.03749084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01813424 152.03750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01813425 152.03753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01813426 152.03753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01813427 152.03755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01813428 152.03755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01813429 152.03758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01813430 152.03758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01813431 152.03761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01813432 152.03761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01813433 152.03762817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01813434 152.03764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01813435 152.03767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01813436 152.03767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01813437 152.03768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01813438 152.03768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01813439 152.03771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01813440 152.03771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01813441 152.03775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01813442 152.03776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01813443 152.03778076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01813444 152.03778076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01813445 152.03781128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01813446 152.03781128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01813447 152.03784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01813448 152.03784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01813449 152.03785706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01813450 152.03785706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01813451 152.03788757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01813452 152.03788757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01813453 152.03791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01813454 152.03793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01813455 152.03793335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01813456 152.03794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01813457 152.03797913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01813458 152.03797913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01813459 152.03800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01813460 152.03800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01813461 152.03802490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01813462 152.03802490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01813463 152.03805542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01813464 152.03805542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01813465 152.03808594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01813466 152.03808594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01813467 152.03810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01813468 152.03811646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01813469 152.03814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01813470 152.03814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01813471 152.03816223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01813472 152.03816223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01813473 152.03819275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01813474 152.03819275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01813475 152.03822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01813476 152.03823853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01813477 152.03825378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01813478 152.03825378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01813479 152.03828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01813480 152.03828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01813481 152.03831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01813482 152.03831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01813483 152.03833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01813484 152.03833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01813485 152.03836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01813486 152.03837585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01813487 152.03840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01813488 152.03840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01813489 152.03842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01813490 152.03842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01813491 152.03845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01813492 152.03845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01813493 152.03848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01813494 152.03848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01813495 152.03849792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01813496 152.03849792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01813497 152.03852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01813498 152.03854370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01813499 152.03855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01813500 152.03855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01813501 152.03858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01813502 152.03858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01813503 152.03862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01813504 152.03862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01813505 152.03865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01813506 152.03865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01813507 152.03866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01813508 152.03866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01813509 152.03869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01813510 152.03871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01813511 152.03872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01813512 152.03872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01813513 152.03875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01813514 152.03875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01813515 152.03878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01813516 152.03878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01813517 152.03880310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01813518 152.03880310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01813519 152.03884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01813520 152.03884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01813521 152.03887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01813522 152.03887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01813523 152.03889465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01813524 152.03889465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01813525 152.03894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01813526 152.03894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01813527 152.03895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01813528 152.03895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01813529 152.03898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01813530 152.03898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01813531 152.03901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01813532 152.03901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01813533 152.03904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01813534 152.03904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01813535 152.03906250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01813536 152.03907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01813537 152.03910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01813538 152.03910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01813539 152.03912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01813540 152.03912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01813541 152.03915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01813542 152.03915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01813543 152.03918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01813544 152.03918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01813545 152.03919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01813546 152.03919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01813547 152.03923035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01813548 152.03923035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01813549 152.03926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01813550 152.03926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01813551 152.03927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01813552 152.03929138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01813553 152.03932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01813554 152.03932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01813555 152.03935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01813556 152.03935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01813557 152.03936768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01813558 152.03936768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01813559 152.03939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01813560 152.03941345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01813561 152.03944397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01813562 152.03944397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01813563 152.03945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01813564 152.03945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01813565 152.03948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01813566 152.03948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01813567 152.03952026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01813568 152.03952026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01813569 152.03953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01813570 152.03955078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01813571 152.03958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01813572 152.03958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01813573 152.03959656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01813574 152.03959656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01813575 152.03962708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01813576 152.03962708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01813577 152.03965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01813578 152.03965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01813579 152.03968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01813580 152.03968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01813581 152.03971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01813582 152.03971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01813583 152.03974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01813584 152.03974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01813585 152.03976440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01813586 152.03976440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01813587 152.03979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01813588 152.03979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01813589 152.03982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01813590 152.03982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01813591 152.03984070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01813592 152.03984070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01813593 152.03987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01813594 152.03987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01813595 152.03990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01813596 152.03991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01813597 152.03991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01813598 152.03993225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01813599 152.03996277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01813600 152.03996277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01813601 152.03999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01813602 152.03999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01813603 152.04000854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01813604 152.04000854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01813605 152.04003906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01813606 152.04005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01813607 152.04006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01813608 152.04006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01813609 152.04010010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01813610 152.04010010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01813611 152.04013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01813612 152.04013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01813613 152.04016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01813614 152.04016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01813615 152.04019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01813616 152.04019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01813617 152.04022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01813618 152.04022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01813619 152.04023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01813620 152.04023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01813621 152.04026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01813622 152.04026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01813623 152.04029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01813624 152.04031372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01813625 152.04032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01813626 152.04032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01813627 152.04035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01813628 152.04035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01813629 152.04039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01813630 152.04039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01813631 152.04040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01813632 152.04040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01813633 152.04043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01813634 152.04043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01813635 152.04046631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01813636 152.04046631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01813637 152.04048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01813638 152.04048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01813639 152.04051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01813640 152.04051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01813641 152.04055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01813642 152.04055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01813643 152.04057312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01813644 152.04057312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01813645 152.04060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01813646 152.04060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01813647 152.04063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01813648 152.04063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01813649 152.04066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01813650 152.04066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01813651 152.04069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01813652 152.04069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01813653 152.04071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01813654 152.04071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01813655 152.04074097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01813656 152.04074097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01813657 152.04077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01813658 152.04078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01813659 152.04080200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01813660 152.04080200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01813661 152.04083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01813662 152.04083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01813663 152.04086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01813664 152.04086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01813665 152.04087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01813666 152.04087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01813667 152.04092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01813668 152.04092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01813669 152.04095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01813670 152.04095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01813671 152.04096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01813672 152.04096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01813673 152.04100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01813674 152.04100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01813675 152.04103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01813676 152.04103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01813677 152.04104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01813678 152.04104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01813679 152.04107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01813680 152.04107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01813681 152.04110718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01813682 152.04110718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01813683 152.04112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01813684 152.04112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01813685 152.04115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01813686 152.04115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01813687 152.04118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01813688 152.04118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01813689 152.04121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01813690 152.04121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01813691 152.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01813692 152.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01813693 152.04125977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01813694 152.04125977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01813695 152.04129028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01813696 152.04130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01813697 152.04133606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01813698 152.04133606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01813699 152.04135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01813700 152.04135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01813701 152.04138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01813702 152.04138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01813703 152.04141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01813704 152.04141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01813705 152.04142761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01813706 152.04144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01813707 152.04147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01813708 152.04147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01813709 152.04150391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01813710 152.04150391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01813711 152.04151917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01813712 152.04151917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01813713 152.04154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01813714 152.04154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01813715 152.04158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01813716 152.04158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01813717 152.04161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01813718 152.04161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01813719 152.04164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01813720 152.04164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01813721 152.04165649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01813722 152.04165649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01813723 152.04168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01813724 152.04168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01813725 152.04171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01813726 152.04171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01813727 152.04174805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01813728 152.04174805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01813729 152.04177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01813730 152.04177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01813731 152.04180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01813732 152.04180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01813733 152.04182434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01813734 152.04182434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01813735 152.04185486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01813736 152.04185486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01813737 152.04188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01813738 152.04190063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01813739 152.04191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01813740 152.04191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01813741 152.04194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01813742 152.04194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01813743 152.04197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01813744 152.04197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01813745 152.04199219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01813746 152.04199219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01813747 152.04202271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01813748 152.04203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01813749 152.04205322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01813750 152.04205322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01813751 152.04208374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01813752 152.04208374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01813753 152.04211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01813754 152.04211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01813755 152.04214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01813756 152.04214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01813757 152.04216003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01813758 152.04217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01813759 152.04219055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01813760 152.04220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01813761 152.04229736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01813762 152.04229736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01813763 152.04231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01813764 152.04231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01813765 152.04235840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01813766 152.04235840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01813767 152.04237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01813768 152.04237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01813769 152.04240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01813770 152.04240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01813771 152.04243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01813772 152.04243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01813773 152.04246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01813774 152.04246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01813775 152.04249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01813776 152.04249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01813777 152.04252625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01813778 152.04252625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01813779 152.04255676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01813780 152.04255676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01813781 152.04258728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01813782 152.04258728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01813783 152.04261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01813784 152.04261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01813785 152.04263306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01813786 152.04263306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01813787 152.04266357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01813788 152.04267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01813789 152.04269409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01813790 152.04269409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01813791 152.04272461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01813792 152.04272461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01813793 152.04275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01813794 152.04275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01813795 152.04277039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01813796 152.04278564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01813797 152.04281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01813798 152.04281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01813799 152.04284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01813800 152.04284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01813801 152.04286194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01813802 152.04286194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01813803 152.04289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01813804 152.04289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01813805 152.04292297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01813806 152.04293823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01813807 152.04295349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01813808 152.04295349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01813809 152.04298401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01813810 152.04298401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01813811 152.04301453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01813812 152.04301453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01813813 152.04302979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01813814 152.04302979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01813815 152.04306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01813816 152.04306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01813817 152.04309082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01813818 152.04309082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01813819 152.04312134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01813820 152.04312134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01813821 152.04315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01813822 152.04315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01813823 152.04316711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01813824 152.04316711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01813825 152.04319763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01813826 152.04319763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01813827 152.04322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01813828 152.04324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01813829 152.04325867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01813830 152.04325867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01813831 152.04328918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01813832 152.04328918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01813833 152.04331970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01813834 152.04331970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01813835 152.04333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01813836 152.04333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01813837 152.04336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01813838 152.04338074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01813839 152.04341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01813840 152.04341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01813841 152.04342651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01813842 152.04342651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01813843 152.04345703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01813844 152.04345703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01813845 152.04348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01813846 152.04348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01813847 152.04350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01813848 152.04350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01813849 152.04353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01813850 152.04354858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01813851 152.04356384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01813852 152.04356384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01813853 152.04359436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01813854 152.04359436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01813855 152.04362488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01813856 152.04364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01813857 152.04365540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01813858 152.04365540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01813859 152.04368591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01813860 152.04368591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01813861 152.04371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01813862 152.04371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01813863 152.04373169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01813864 152.04373169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01813865 152.04376221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01813866 152.04376221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01813867 152.04380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01813868 152.04380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01813869 152.04382324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01813870 152.04382324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01813871 152.04385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01813872 152.04385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01813873 152.04388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01813874 152.04388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01813875 152.04389954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01813876 152.04389954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01813877 152.04393005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01813878 152.04394531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01813879 152.04396057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01813880 152.04396057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01813881 152.04399109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01813882 152.04399109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01813883 152.04402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01813884 152.04402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01813885 152.04405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01813886 152.04405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01813887 152.04406738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01813888 152.04408264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01813889 152.04411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01813890 152.04411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01813891 152.04412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01813892 152.04412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01813893 152.04415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01813894 152.04415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01813895 152.04418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01813896 152.04418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01813897 152.04420471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01813898 152.04420471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01813899 152.04423523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01813900 152.04425049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01813901 152.04428101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01813902 152.04428101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01813903 152.04429626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01813904 152.04429626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01813905 152.04432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01813906 152.04432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01813907 152.04435730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01813908 152.04435730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01813909 152.04437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01813910 152.04438782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01813911 152.04441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01813912 152.04441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01813913 152.04444885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01813914 152.04444885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01813915 152.04446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01813916 152.04446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01813917 152.04449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01813918 152.04449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01813919 152.04452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01813920 152.04452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01813921 152.04455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01813922 152.04455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01813923 152.04458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01813924 152.04458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01813925 152.04460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01813926 152.04460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01813927 152.04463196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01813928 152.04464722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01813929 152.04466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01813930 152.04467773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01813931 152.04469299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01813932 152.04469299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01813933 152.04472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01813934 152.04472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01813935 152.04475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01813936 152.04475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01813937 152.04476929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01813938 152.04476929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01813939 152.04479980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01813940 152.04479980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01813941 152.04483032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01813942 152.04483032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01813943 152.04484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01813944 152.04484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01813945 152.04487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01813946 152.04487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01813947 152.04492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01813948 152.04492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01813949 152.04493713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01813950 152.04493713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01813951 152.04496765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01813952 152.04496765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01813953 152.04499817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01813954 152.04499817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01813955 152.04501343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01813956 152.04501343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01813957 152.04504395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01813958 152.04505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01813959 152.04507446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01813960 152.04507446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01813961 152.04510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01813962 152.04510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01813963 152.04513550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01813964 152.04513550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01813965 152.04516602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01813966 152.04516602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01813967 152.04519653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01813968 152.04519653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01813969 152.04522705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01813970 152.04522705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01813971 152.04524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01813972 152.04524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01813973 152.04527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01813974 152.04527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01813975 152.04530334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01813976 152.04531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01813977 152.04533386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01813978 152.04533386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01813979 152.04536438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01813980 152.04536438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01813981 152.04539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01813982 152.04539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01813983 152.04541016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01813984 152.04541016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01813985 152.04544067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01813986 152.04544067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01813987 152.04547119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01813988 152.04547119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01813989 152.04548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01813990 152.04548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01813991 152.04551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01813992 152.04553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01813993 152.04556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01813994 152.04556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01813995 152.04557800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01813996 152.04557800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01813997 152.04560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01813998 152.04560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01813999 152.04563904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01814000 152.04563904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01814001 152.04565430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01814002 152.04566956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01814003 152.04570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01814004 152.04570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01814005 152.04571533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01814006 152.04571533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01814007 152.04574585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01814008 152.04574585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01814009 152.04577637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01814010 152.04579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01814011 152.04580688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01814012 152.04580688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01814013 152.04583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01814014 152.04583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01814015 152.04586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01814016 152.04586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01814017 152.04588318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01814018 152.04588318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01814019 152.04592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01814020 152.04592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01814021 152.04595947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01814022 152.04595947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01814023 152.04597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01814024 152.04597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01814025 152.04600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01814026 152.04600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01814027 152.04603577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01814028 152.04603577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01814029 152.04605103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01814030 152.04605103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01814031 152.04608154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01814032 152.04608154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01814033 152.04611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01814034 152.04611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01814035 152.04614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01814036 152.04614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01814037 152.04617310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01814038 152.04617310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01814039 152.04618835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01814040 152.04618835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01814041 152.04621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01814042 152.04621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01814043 152.04624939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01814044 152.04626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01814045 152.04627991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01814046 152.04627991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01814047 152.04631042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01814048 152.04631042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01814049 152.04634094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01814050 152.04634094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01814051 152.04635620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01814052 152.04635620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01814053 152.04638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01814054 152.04640198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01814055 152.04643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01814056 152.04643250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01814057 152.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01814058 152.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01814059 152.04647827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01814060 152.04647827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01814061 152.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01814062 152.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01814063 152.04652405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01814064 152.04653931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01814065 152.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01814066 152.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01814067 152.04658508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01814068 152.04658508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01814069 152.04661560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01814070 152.04661560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01814071 152.04664612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01814072 152.04664612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01814073 152.04666138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01814074 152.04666138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01814075 152.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01814076 152.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01814077 152.04672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01814078 152.04673767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01814079 152.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01814080 152.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01814081 152.04678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01814082 152.04678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01814083 152.04681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01814084 152.04681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01814085 152.04682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01814086 152.04682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01814087 152.04685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01814088 152.04685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01814089 152.04690552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01814090 152.04690552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01814091 152.04692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01814092 152.04692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01814093 152.04695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01814094 152.04695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01814095 152.04698181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01814096 152.04698181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01814097 152.04701233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01814098 152.04701233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01814099 152.04704285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01814100 152.04704285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01814101 152.04705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01814102 152.04705811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01814103 152.04708862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01814104 152.04708862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01814105 152.04711914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01814106 152.04711914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01814107 152.04714966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01814108 152.04714966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01814109 152.04718018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01814110 152.04718018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01814111 152.04721069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01814112 152.04721069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01814113 152.04722595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01814114 152.04724121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01814115 152.04727173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01814116 152.04727173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01814117 152.04730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01814118 152.04730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01814119 152.04731750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01814120 152.04731750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01814121 152.04734802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01814122 152.04734802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01814123 152.04737854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01814124 152.04737854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01814125 152.04739380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01814126 152.04740906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01814127 152.04743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01814128 152.04743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01814129 152.04745483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01814130 152.04745483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01814131 152.04748535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01814132 152.04748535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01814133 152.04753113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01814134 152.04753113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01814135 152.04754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01814136 152.04754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01814137 152.04757690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01814138 152.04759216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01814139 152.04762268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01814140 152.04762268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01814141 152.04763794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01814142 152.04763794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01814143 152.04766846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01814144 152.04766846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01814145 152.04769897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01814146 152.04769897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01814147 152.04772949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01814148 152.04772949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01814149 152.04776001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01814150 152.04776001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01814151 152.04777527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01814152 152.04777527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01814153 152.04780579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01814154 152.04780579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01814155 152.04783630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01814156 152.04785156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01814157 152.04786682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01814158 152.04786682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01814159 152.04789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01814160 152.04789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01814161 152.04792786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01814162 152.04792786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01814163 152.04794312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01814164 152.04794312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01814165 152.04797363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01814166 152.04798889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01814167 152.04801941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01814168 152.04801941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01814169 152.04803467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01814170 152.04803467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01814171 152.04806519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01814172 152.04806519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01814173 152.04809570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01814174 152.04809570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01814175 152.04811096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01814176 152.04811096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01814177 152.04814148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01814178 152.04815674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01814179 152.04817200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01814180 152.04817200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01814181 152.04820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01814182 152.04820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01814183 152.04823303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01814184 152.04823303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01814185 152.04826355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01814186 152.04826355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01814187 152.04827881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01814188 152.04829407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01814189 152.04832458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01814190 152.04832458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01814191 152.04833984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01814192 152.04833984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01814193 152.04837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01814194 152.04837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01814195 152.04840088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01814196 152.04840088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01814197 152.04841614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01814198 152.04841614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01814199 152.04844666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01814200 152.04846191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01814201 152.04849243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01814202 152.04849243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01814203 152.04850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01814204 152.04850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01814205 152.04853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01814206 152.04853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01814207 152.04856873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01814208 152.04856873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01814209 152.04858398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01814210 152.04859924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01814211 152.04862976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01814212 152.04862976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01814213 152.04866028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01814214 152.04866028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01814215 152.04867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01814216 152.04867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01814217 152.04870605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01814218 152.04870605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01814219 152.04873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01814220 152.04873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01814221 152.04875183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01814222 152.04876709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01814223 152.04879761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01814224 152.04879761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01814225 152.04881287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01814226 152.04881287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01814227 152.04884338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01814228 152.04884338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01814229 152.04887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01814230 152.04887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01814231 152.04888916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01814232 152.04890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01814233 152.04893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01814234 152.04893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01814235 152.04896545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01814236 152.04896545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01814237 152.04898071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01814238 152.04898071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01814239 152.04901123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01814240 152.04901123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01814241 152.04904175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01814242 152.04905701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01814243 152.04907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01814244 152.04907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01814245 152.04910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01814246 152.04910278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01814247 152.04913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01814248 152.04913330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01814249 152.04914856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01814250 152.04914856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01814251 152.04917908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01814252 152.04917908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01814253 152.04920959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01814254 152.04920959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01814255 152.04924011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01814256 152.04924011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01814257 152.04927063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01814258 152.04927063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01814259 152.04928589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01814260 152.04928589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01814261 152.04931641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01814262 152.04931641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01814263 152.04934692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01814264 152.04936218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01814265 152.04937744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01814266 152.04937744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01814267 152.04940796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01814268 152.04940796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01814269 152.04943848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01814270 152.04943848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01814271 152.04945374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01814272 152.04945374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01814273 152.04948425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01814274 152.04948425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01814275 152.04951477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01814276 152.04953003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01814277 152.04954529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01814278 152.04954529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01814279 152.04957581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01814280 152.04957581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01814281 152.04960632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01814282 152.04960632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01814283 152.04962158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01814284 152.04962158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01814285 152.04965210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01814286 152.04966736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01814287 152.04968262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01814288 152.04968262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01814289 152.04971313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01814290 152.04971313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01814291 152.04974365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01814292 152.04974365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01814293 152.04975891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01814294 152.04975891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01814295 152.04978943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01814296 152.04980469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01814297 152.04983521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01814298 152.04983521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01814299 152.04985046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01814300 152.04985046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01814301 152.04988098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01814302 152.04988098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01814303 152.04991150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01814304 152.04991150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01814305 152.04992676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01814306 152.04994202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01814307 152.04997253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01814308 152.04997253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01814309 152.05000305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01814310 152.05000305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01814311 152.05001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01814312 152.05001831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01814313 152.05004883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01814314 152.05004883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01814315 152.05007935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01814316 152.05007935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01814317 152.05010986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01814318 152.05010986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01814319 152.05014038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01814320 152.05014038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01814321 152.05015564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01814322 152.05015564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01814323 152.05018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01814324 152.05018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01814325 152.05021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01814326 152.05021667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01814327 152.05024719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01814328 152.05024719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01814329 152.05027771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01814330 152.05027771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01814331 152.05030823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01814332 152.05030823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01814333 152.05032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01814334 152.05032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01814335 152.05035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01814336 152.05035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01814337 152.05038452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01814338 152.05039978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01814339 152.05041504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01814340 152.05041504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01814341 152.05044556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01814342 152.05044556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01814343 152.05047607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01814344 152.05047607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01814345 152.05049133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01814346 152.05049133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01814347 152.05052185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01814348 152.05052185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01814349 152.05055237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01814350 152.05056763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01814351 152.05058289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01814352 152.05058289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01814353 152.05061340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01814354 152.05061340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -01814355 152.05064392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01814356 152.05064392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -01814357 152.05065918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01814358 152.05065918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -01814359 152.05068970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01814360 152.05068970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -01814361 152.05072021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01814362 152.05072021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -01814363 152.05075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01814364 152.05075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -01814365 152.05078125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01814366 152.05078125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -01814367 152.05079651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01814368 152.05079651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -01814369 152.05082703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01814370 152.05082703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -01814371 152.05085754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01814372 152.05087280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -01814373 152.05088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01814374 152.05088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -01814375 152.05091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01814376 152.05091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -01814377 152.05094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01814378 152.05094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -01814379 152.05096436 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01814380 152.05096436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01814381 152.05096436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -01814382 152.05099487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01814383 152.05101013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -01814384 152.05104065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01814385 152.05104065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -01814386 152.05105591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01814387 152.05105591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -01814388 152.05108643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01814389 152.05108643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -01814390 152.05111694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01814391 152.05111694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -01814392 152.05113220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01814393 152.05114746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -01814394 152.05117798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01814395 152.05117798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -01814396 152.05119324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01814397 152.05119324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -01814398 152.05122375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01814399 152.05122375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -01814400 152.05125427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01814401 152.05125427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -01814402 152.05126953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01814403 152.05126953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -01814404 152.05130005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01814405 152.05131531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -01814406 152.05134583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01814407 152.05134583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -01814408 152.05136108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01814409 152.05136108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -01814410 152.05139160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01814411 152.05139160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -01814412 152.05142212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01814413 152.05142212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -01814414 152.05143738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01814415 152.05145264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -01814416 152.05148315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01814417 152.05148315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -01814418 152.05151367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01814419 152.05151367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -01814420 152.05152893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01814421 152.05152893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -01814422 152.05155945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01814423 152.05155945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -01814424 152.05158997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01814425 152.05158997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -01814426 152.05160522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01814427 152.05162048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -01814428 152.05165100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01814429 152.05165100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -01814430 152.05166626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01814431 152.05166626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -01814432 152.05169678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01814433 152.05169678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -01814434 152.05172729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01814435 152.05172729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -01814436 152.05175781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01814437 152.05175781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -01814438 152.05178833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01814439 152.05178833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -01814440 152.05181885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01814441 152.05181885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -01814442 152.05183411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01814443 152.05183411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -01814444 152.05186462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01814445 152.05186462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -01814446 152.05189514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01814447 152.05191040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -01814448 152.05192566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01814449 152.05192566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -01814450 152.05195618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01814451 152.05195618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -01814452 152.05198669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01814453 152.05198669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -01814454 152.05200195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01814455 152.05200195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -01814456 152.05203247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01814457 152.05204773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -01814458 152.05206299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01814459 152.05206299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -01814460 152.05209351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01814461 152.05209351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -01814462 152.05212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01814463 152.05212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -01814464 152.05215454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01814465 152.05215454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -01814466 152.05216980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01814467 152.05216980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -01814468 152.05220032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01814469 152.05221558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -01814470 152.05223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01814471 152.05223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -01814472 152.05226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01814473 152.05226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -01814474 152.05229187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01814475 152.05229187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -01814476 152.05230713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01814477 152.05230713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -01814478 152.05233765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01814479 152.05235291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -01814480 152.05236816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01814481 152.05238342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -01814482 152.05239868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01814483 152.05239868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -01814484 152.05242920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01814485 152.05242920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -01814486 152.05245972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01814487 152.05245972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -01814488 152.05247498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01814489 152.05247498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -01814490 152.05250549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01814491 152.05252075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -01814492 152.05255127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01814493 152.05255127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -01814494 152.05256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01814495 152.05256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -01814496 152.05259705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01814497 152.05259705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -01814498 152.05262756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01814499 152.05262756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -01814500 152.05264282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01814501 152.05264282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -01814502 152.05267334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01814503 152.05268860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -01814504 152.05270386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01814505 152.05270386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -01814506 152.05273438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01814507 152.05273438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -01814508 152.05276489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01814509 152.05276489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -01814510 152.05278015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01814511 152.05278015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -01814512 152.05281067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01814513 152.05282593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -01814514 152.05285645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01814515 152.05285645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -01814516 152.05287170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01814517 152.05287170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -01814518 152.05290222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01814519 152.05290222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -01814520 152.05293274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01814521 152.05293274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -01814522 152.05294800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01814523 152.05296326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -01814524 152.05299377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01814525 152.05299377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -01814526 152.05302429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01814527 152.05302429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -01814528 152.05303955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01814529 152.05303955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -01814530 152.05307007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01814531 152.05307007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -01814532 152.05310059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01814533 152.05310059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -01814534 152.05311584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01814535 152.05313110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -01814536 152.05316162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01814537 152.05316162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -01814538 152.05317688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01814539 152.05317688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -01814540 152.05320740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01814541 152.05320740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -01814542 152.05323792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01814543 152.05323792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -01814544 152.05325317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01814545 152.05326843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -01814546 152.05328369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01814547 152.05329895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -01814548 152.05332947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01814549 152.05332947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -01814550 152.05334473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01814551 152.05334473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -01814552 152.05337524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01814553 152.05337524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -01814554 152.05340576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01814555 152.05340576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -01814556 152.05342102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01814557 152.05343628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -01814558 152.05346680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01814559 152.05346680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -01814560 152.05349731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01814561 152.05349731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -01814562 152.05351257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01814563 152.05351257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -01814564 152.05354309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01814565 152.05354309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -01814566 152.05357361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01814567 152.05357361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -01814568 152.05358887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01814569 152.05360413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -01814570 152.05363464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01814571 152.05363464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -01814572 152.05366516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01814573 152.05366516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -01814574 152.05368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01814575 152.05368042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -01814576 152.05371094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01814577 152.05371094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -01814578 152.05374146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01814579 152.05374146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -01814580 152.05377197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01814581 152.05377197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -01814582 152.05380249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01814583 152.05380249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -01814584 152.05381775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01814585 152.05381775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -01814586 152.05384827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01814587 152.05384827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -01814588 152.05387878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01814589 152.05387878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -01814590 152.05389404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01814591 152.05390930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -01814592 152.05393982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01814593 152.05393982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -01814594 152.05397034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01814595 152.05397034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -01814596 152.05398560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01814597 152.05398560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -01814598 152.05401611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01814599 152.05401611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -01814600 152.05404663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01814601 152.05406189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -01814602 152.05407715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01814603 152.05407715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -01814604 152.05410767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01814605 152.05410767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -01814606 152.05413818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01814607 152.05413818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -01814608 152.05415344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01814609 152.05415344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -01814610 152.05418396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01814611 152.05418396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -01814612 152.05421448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01814613 152.05421448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -01814614 152.05424500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01814615 152.05424500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -01814616 152.05427551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01814617 152.05427551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -01814618 152.05429077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01814619 152.05429077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -01814620 152.05432129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01814621 152.05432129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -01814622 152.05435181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01814623 152.05436707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -01814624 152.05438232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01814625 152.05438232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -01814626 152.05441284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01814627 152.05441284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -01814628 152.05444336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01814629 152.05444336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -01814630 152.05445862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01814631 152.05445862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -01814632 152.05448914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01814633 152.05448914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -01814634 152.05451965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01814635 152.05453491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -01814636 152.05455017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01814637 152.05455017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -01814638 152.05458069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01814639 152.05458069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -01814640 152.05461121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01814641 152.05461121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -01814642 152.05462646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01814643 152.05462646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -01814644 152.05465698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01814645 152.05467224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -01814646 152.05468750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01814647 152.05468750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -01814648 152.05471802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01814649 152.05471802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -01814650 152.05474854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01814651 152.05474854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -01814652 152.05476379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01814653 152.05476379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -01814654 152.05479431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01814655 152.05479431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -01814656 152.05482483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01814657 152.05484009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -01814658 152.05485535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01814659 152.05485535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -01814660 152.05488586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01814661 152.05488586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -01814662 152.05491638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01814663 152.05491638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -01814664 152.05493164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01814665 152.05493164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -01814666 152.05496216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01814667 152.05497742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -01814668 152.05500793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01814669 152.05500793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -01814670 152.05502319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01814671 152.05502319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -01814672 152.05505371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01814673 152.05505371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -01814674 152.05508423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01814675 152.05508423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -01814676 152.05509949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01814677 152.05509949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -01814678 152.05513000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01814679 152.05514526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -01814680 152.05516052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01814681 152.05516052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -01814682 152.05519104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01814683 152.05519104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -01814684 152.05522156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01814685 152.05522156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -01814686 152.05525208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01814687 152.05525208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -01814688 152.05526733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01814689 152.05528259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -01814690 152.05531311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01814691 152.05531311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -01814692 152.05532837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01814693 152.05532837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -01814694 152.05535889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01814695 152.05535889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -01814696 152.05538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01814697 152.05538940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -01814698 152.05540466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01814699 152.05540466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -01814700 152.05543518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01814701 152.05545044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -01814702 152.05548096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01814703 152.05548096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -01814704 152.05549622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01814705 152.05549622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -01814706 152.05552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01814707 152.05552673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -01814708 152.05555725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01814709 152.05555725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -01814710 152.05557251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01814711 152.05558777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -01814712 152.05561829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01814713 152.05561829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -01814714 152.05564880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01814715 152.05564880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -01814716 152.05566406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01814717 152.05566406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -01814718 152.05569458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01814719 152.05569458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -01814720 152.05572510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01814721 152.05572510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -01814722 152.05574036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01814723 152.05575562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -01814724 152.05578613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01814725 152.05578613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -01814726 152.05580139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01814727 152.05580139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -01814728 152.05583191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01814729 152.05583191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -01814730 152.05586243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01814731 152.05586243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -01814732 152.05587769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01814733 152.05589294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -01814734 152.05592346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01814735 152.05592346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -01814736 152.05595398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01814737 152.05595398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -01814738 152.05596924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01814739 152.05596924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -01814740 152.05599976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01814741 152.05599976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -01814742 152.05603027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01814743 152.05603027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -01814744 152.05604553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01814745 152.05606079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -01814746 152.05609131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01814747 152.05609131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -01814748 152.05612183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01814749 152.05612183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -01814750 152.05613708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01814751 152.05613708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -01814752 152.05616760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01814753 152.05616760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -01814754 152.05619812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01814755 152.05619812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -01814756 152.05622864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01814757 152.05622864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -01814758 152.05625916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01814759 152.05625916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -01814760 152.05627441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01814761 152.05627441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -01814762 152.05630493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01814763 152.05630493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -01814764 152.05633545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01814765 152.05633545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -01814766 152.05636597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01814767 152.05636597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -01814768 152.05639648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01814769 152.05639648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -01814770 152.05642700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01814771 152.05642700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -01814772 152.05644226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01814773 152.05644226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -01814774 152.05647278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01814775 152.05647278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -01814776 152.05650330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01814777 152.05651855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -01814778 152.05653381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01814779 152.05653381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -01814780 152.05656433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01814781 152.05656433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -01814782 152.05659485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01814783 152.05659485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -01814784 152.05661011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01814785 152.05661011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -01814786 152.05664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01814787 152.05664063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -01814788 152.05667114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01814789 152.05667114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -01814790 152.05670166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01814791 152.05670166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -01814792 152.05673218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01814793 152.05673218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -01814794 152.05676270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01814795 152.05676270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -01814796 152.05677795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01814797 152.05677795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -01814798 152.05680847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01814799 152.05682373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -01814800 152.05683899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01814801 152.05683899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -01814802 152.05686951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01814803 152.05686951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -01814804 152.05690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01814805 152.05690002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -01814806 152.05691528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01814807 152.05691528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -01814808 152.05694580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01814809 152.05694580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -01814810 152.05697632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01814811 152.05699158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -01814812 152.05700684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01814813 152.05700684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -01814814 152.05703735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01814815 152.05703735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -01814816 152.05706787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01814817 152.05706787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -01814818 152.05708313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01814819 152.05708313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -01814820 152.05711365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01814821 152.05712891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -01814822 152.05715942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01814823 152.05715942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -01814824 152.05717468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01814825 152.05717468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -01814826 152.05720520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01814827 152.05720520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -01814828 152.05723572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01814829 152.05723572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -01814830 152.05725098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01814831 152.05725098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -01814832 152.05728149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01814833 152.05729675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -01814834 152.05731201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01814835 152.05731201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -01814836 152.05734253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01814837 152.05734253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -01814838 152.05737305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01814839 152.05737305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -01814840 152.05738831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01814841 152.05738831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -01814842 152.05741882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01814843 152.05743408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -01814844 152.05746460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01814845 152.05746460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -01814846 152.05747986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01814847 152.05747986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -01814848 152.05751038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01814849 152.05751038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -01814850 152.05754089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01814851 152.05754089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -01814852 152.05755615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01814853 152.05757141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -01814854 152.05760193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01814855 152.05760193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -01814856 152.05763245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01814857 152.05763245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -01814858 152.05764771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01814859 152.05764771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -01814860 152.05767822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01814861 152.05767822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -01814862 152.05770874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01814863 152.05770874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -01814864 152.05773926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01814865 152.05773926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -01814866 152.05776978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01814867 152.05776978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -01814868 152.05778503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01814869 152.05778503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -01814870 152.05781555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01814871 152.05783081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -01814872 152.05786133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01814873 152.05786133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -01814874 152.05787659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01814875 152.05787659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -01814876 152.05790710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01814877 152.05790710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -01814878 152.05793762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01814879 152.05793762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -01814880 152.05795288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01814881 152.05795288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -01814882 152.05798340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01814883 152.05798340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -01814884 152.05801392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01814885 152.05802917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -01814886 152.05804443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01814887 152.05804443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -01814888 152.05807495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01814889 152.05807495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -01814890 152.05810547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01814891 152.05810547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -01814892 152.05812073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01814893 152.05813599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -01814894 152.05815125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01814895 152.05816650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -01814896 152.05818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01814897 152.05818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -01814898 152.05821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01814899 152.05821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -01814900 152.05824280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01814901 152.05824280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -01814902 152.05825806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01814903 152.05825806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -01814904 152.05828857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01814905 152.05830383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -01814906 152.05833435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01814907 152.05833435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -01814908 152.05834961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01814909 152.05834961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -01814910 152.05838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01814911 152.05838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -01814912 152.05841064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01814913 152.05842590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -01814914 152.05842590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01814915 152.05844116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -01814916 152.05845642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01814917 152.05847168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -01814918 152.05850220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01814919 152.05850220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -01814920 152.05851746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01814921 152.05851746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -01814922 152.05854797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01814923 152.05854797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -01814924 152.05857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01814925 152.05857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -01814926 152.05859375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01814927 152.05859375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -01814928 152.05862427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01814929 152.05863953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -01814930 152.05865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01814931 152.05865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -01814932 152.05868530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01814933 152.05868530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -01814934 152.05871582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01814935 152.05871582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -01814936 152.05874634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01814937 152.05874634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -01814938 152.05876160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01814939 152.05877686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -01814940 152.05879211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01814941 152.05880737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -01814942 152.05882263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01814943 152.05882263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -01814944 152.05885315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01814945 152.05885315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -01814946 152.05888367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01814947 152.05888367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -01814948 152.05889893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01814949 152.05891418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -01814950 152.05894470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01814951 152.05894470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -01814952 152.05897522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01814953 152.05897522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -01814954 152.05899048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01814955 152.05899048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -01814956 152.05902100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01814957 152.05902100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -01814958 152.05905151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01814959 152.05905151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -01814960 152.05906677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01814961 152.05908203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -01814962 152.05911255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01814963 152.05911255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -01814964 152.05914307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01814965 152.05914307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -01814966 152.05915833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01814967 152.05915833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -01814968 152.05918884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01814969 152.05918884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -01814970 152.05921936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01814971 152.05921936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -01814972 152.05923462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01814973 152.05923462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -01814974 152.05926514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01814975 152.05928040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -01814976 152.05929565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01814977 152.05929565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -01814978 152.05932617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01814979 152.05932617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -01814980 152.05935669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01814981 152.05935669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -01814982 152.05937195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01814983 152.05937195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -01814984 152.05940247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01814985 152.05941772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -01814986 152.05944824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01814987 152.05944824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -01814988 152.05946350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01814989 152.05946350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -01814990 152.05949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01814991 152.05949402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -01814992 152.05952454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01814993 152.05953979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -01814994 152.05955505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01814995 152.05955505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -01814996 152.05958557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01814997 152.05958557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -01814998 152.05961609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01814999 152.05961609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -01815000 152.05963135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01815001 152.05963135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -01815002 152.05966187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01815003 152.05967712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -01815004 152.05969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01815005 152.05969238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -01815006 152.05972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01815007 152.05972290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -01815008 152.05975342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01815009 152.05975342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -01815010 152.05976868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01815011 152.05976868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -01815012 152.05979919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01815013 152.05979919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -01815014 152.05982971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01815015 152.05982971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -01815016 152.05986023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01815017 152.05986023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -01815018 152.05987549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01815019 152.05987549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -01815020 152.05990601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01815021 152.05990601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -01815022 152.05993652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01815023 152.05993652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -01815024 152.05995178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01815025 152.05996704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -01815026 152.05999756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01815027 152.05999756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -01815028 152.06001282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01815029 152.06001282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -01815030 152.06004333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01815031 152.06004333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -01815032 152.06007385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01815033 152.06008911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -01815034 152.06010437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01815035 152.06010437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -01815036 152.06013489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01815037 152.06013489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -01815038 152.06016541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01815039 152.06016541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -01815040 152.06018066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01815041 152.06018066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -01815042 152.06022644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01815043 152.06022644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -01815044 152.06025696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01815045 152.06025696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -01815046 152.06027222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01815047 152.06027222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -01815048 152.06030273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01815049 152.06030273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -01815050 152.06033325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01815051 152.06033325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -01815052 152.06034851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01815053 152.06036377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -01815054 152.06039429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01815055 152.06039429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -01815056 152.06040955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01815057 152.06040955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -01815058 152.06044006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01815059 152.06044006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -01815060 152.06047058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01815061 152.06047058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -01815062 152.06048584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01815063 152.06048584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -01815064 152.06051636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01815065 152.06051636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01815066 152.06054688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01815067 152.06056213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01815068 152.06056213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01815069 152.06057739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01815070 152.06060791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01815071 152.06060791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01815072 152.06063843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01815073 152.06063843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01815074 152.06065369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01815075 152.06065369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01815076 152.06068420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01815077 152.06069946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01815078 152.06072998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01815079 152.06072998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01815080 152.06074524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01815081 152.06074524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01815082 152.06077576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01815083 152.06077576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01815084 152.06080627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01815085 152.06080627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01815086 152.06083679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01815087 152.06083679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01815088 152.06086731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01815089 152.06086731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01815090 152.06088257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01815091 152.06088257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01815092 152.06091309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01815093 152.06091309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01815094 152.06094360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01815095 152.06094360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01815096 152.06095886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01815097 152.06097412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01815098 152.06100464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01815099 152.06100464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01815100 152.06103516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01815101 152.06103516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01815102 152.06105042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01815103 152.06105042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01815104 152.06108093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01815105 152.06108093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01815106 152.06111145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01815107 152.06112671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01815108 152.06112671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01815109 152.06114197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01815110 152.06117249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01815111 152.06117249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -01815112 152.06120300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01815113 152.06120300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -01815114 152.06121826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01815115 152.06121826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -01815116 152.06124878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01815117 152.06124878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -01815118 152.06127930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01815119 152.06127930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -01815120 152.06130981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01815121 152.06130981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -01815122 152.06134033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01815123 152.06134033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -01815124 152.06135559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01815125 152.06135559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -01815126 152.06138611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01815127 152.06138611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -01815128 152.06141663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01815129 152.06141663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -01815130 152.06144714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01815131 152.06144714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -01815132 152.06147766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01815133 152.06147766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -01815134 152.06150818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01815135 152.06150818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -01815136 152.06152344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01815137 152.06152344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -01815138 152.06155396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01815139 152.06156921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -01815140 152.06159973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01815141 152.06159973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -01815142 152.06161499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01815143 152.06161499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -01815144 152.06164551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01815145 152.06164551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -01815146 152.06167603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01815147 152.06167603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -01815148 152.06169128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01815149 152.06169128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -01815150 152.06172180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01815151 152.06173706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -01815152 152.06176758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01815153 152.06176758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -01815154 152.06178284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01815155 152.06178284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -01815156 152.06181335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01815157 152.06182861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -01815158 152.06184387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01815159 152.06184387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -01815160 152.06187439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01815161 152.06187439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -01815162 152.06190491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01815163 152.06190491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -01815164 152.06192017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01815165 152.06192017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -01815166 152.06196594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01815167 152.06196594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -01815168 152.06199646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01815169 152.06199646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -01815170 152.06201172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01815171 152.06201172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -01815172 152.06204224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01815173 152.06204224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -01815174 152.06207275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01815175 152.06207275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -01815176 152.06210327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01815177 152.06210327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -01815178 152.06213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01815179 152.06213379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -01815180 152.06216431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01815181 152.06216431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -01815182 152.06217957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01815183 152.06217957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -01815184 152.06221008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01815185 152.06221008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -01815186 152.06224060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01815187 152.06224060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -01815188 152.06227112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01815189 152.06227112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -01815190 152.06230164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01815191 152.06230164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -01815192 152.06231689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01815193 152.06233215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -01815194 152.06236267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01815195 152.06236267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -01815196 152.06239319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01815197 152.06239319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -01815198 152.06240845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01815199 152.06240845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -01815200 152.06243896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01815201 152.06243896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -01815202 152.06246948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01815203 152.06246948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -01815204 152.06250000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01815205 152.06250000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -01815206 152.06253052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01815207 152.06253052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -01815208 152.06256104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01815209 152.06256104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -01815210 152.06257629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01815211 152.06259155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -01815212 152.06260681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01815213 152.06262207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -01815214 152.06263733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01815215 152.06263733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -01815216 152.06266785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01815217 152.06266785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -01815218 152.06269836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01815219 152.06269836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -01815220 152.06271362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01815221 152.06271362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -01815222 152.06274414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01815223 152.06274414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -01815224 152.06277466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01815225 152.06277466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -01815226 152.06278992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01815227 152.06278992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -01815228 152.06282043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01815229 152.06282043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -01815230 152.06286621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01815231 152.06286621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -01815232 152.06288147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01815233 152.06288147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -01815234 152.06291199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01815235 152.06291199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -01815236 152.06294250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01815237 152.06295776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -01815238 152.06297302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01815239 152.06297302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -01815240 152.06300354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01815241 152.06300354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -01815242 152.06303406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01815243 152.06303406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -01815244 152.06304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01815245 152.06304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -01815246 152.06307983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01815247 152.06307983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -01815248 152.06311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01815249 152.06311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -01815250 152.06312561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01815251 152.06314087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -01815252 152.06317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01815253 152.06317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -01815254 152.06318665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01815255 152.06318665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -01815256 152.06321716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01815257 152.06321716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -01815258 152.06324768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01815259 152.06324768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -01815260 152.06326294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01815261 152.06327820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -01815262 152.06330872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01815263 152.06330872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -01815264 152.06333923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01815265 152.06333923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -01815266 152.06335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01815267 152.06335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -01815268 152.06338501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01815269 152.06338501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -01815270 152.06341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01815271 152.06341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -01815272 152.06343079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01815273 152.06343079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -01815274 152.06347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01815275 152.06347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -01815276 152.06350708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01815277 152.06350708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -01815278 152.06352234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01815279 152.06352234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -01815280 152.06355286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01815281 152.06355286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -01815282 152.06358337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01815283 152.06358337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -01815284 152.06359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01815285 152.06361389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -01815286 152.06364441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01815287 152.06364441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -01815288 152.06365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01815289 152.06365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -01815290 152.06369019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01815291 152.06369019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -01815292 152.06372070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01815293 152.06372070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -01815294 152.06375122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01815295 152.06375122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -01815296 152.06378174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01815297 152.06378174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -01815298 152.06381226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01815299 152.06381226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -01815300 152.06382751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01815301 152.06382751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -01815302 152.06385803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01815303 152.06385803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -01815304 152.06388855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01815305 152.06388855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -01815306 152.06390381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01815307 152.06391907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -01815308 152.06394958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01815309 152.06394958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -01815310 152.06398010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01815311 152.06398010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -01815312 152.06399536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01815313 152.06399536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -01815314 152.06402588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01815315 152.06402588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -01815316 152.06405640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01815317 152.06405640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -01815318 152.06408691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01815319 152.06408691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -01815320 152.06411743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01815321 152.06411743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -01815322 152.06414795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01815323 152.06414795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -01815324 152.06416321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01815325 152.06417847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -01815326 152.06420898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01815327 152.06420898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -01815328 152.06422424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01815329 152.06422424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -01815330 152.06425476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01815331 152.06425476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -01815332 152.06428528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01815333 152.06428528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -01815334 152.06430054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01815335 152.06430054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -01815336 152.06433105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01815337 152.06434631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -01815338 152.06437683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01815339 152.06437683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -01815340 152.06439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01815341 152.06439209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -01815342 152.06442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01815343 152.06442261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -01815344 152.06445313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01815345 152.06445313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -01815346 152.06446838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01815347 152.06448364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -01815348 152.06451416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01815349 152.06451416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -01815350 152.06454468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01815351 152.06454468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -01815352 152.06455994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01815353 152.06455994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -01815354 152.06459045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01815355 152.06459045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -01815356 152.06462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01815357 152.06462097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -01815358 152.06465149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01815359 152.06465149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -01815360 152.06468201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01815361 152.06468201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -01815362 152.06469727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01815363 152.06469727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -01815364 152.06472778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01815365 152.06472778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -01815366 152.06477356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01815367 152.06477356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -01815368 152.06478882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01815369 152.06478882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -01815370 152.06481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01815371 152.06481934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -01815372 152.06484985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01815373 152.06484985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -01815374 152.06486511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01815375 152.06486511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -01815376 152.06491089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01815377 152.06491089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -01815378 152.06494141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01815379 152.06494141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -01815380 152.06495667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01815381 152.06495667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -01815382 152.06498718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01815383 152.06498718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -01815384 152.06501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01815385 152.06501770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -01815386 152.06504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01815387 152.06504822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -01815388 152.06507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01815389 152.06507874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -01815390 152.06509399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01815391 152.06509399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -01815392 152.06512451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01815393 152.06512451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -01815394 152.06515503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01815395 152.06517029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -01815396 152.06518555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01815397 152.06518555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -01815398 152.06521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01815399 152.06521606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -01815400 152.06524658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01815401 152.06524658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -01815402 152.06526184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01815403 152.06526184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -01815404 152.06529236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01815405 152.06529236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -01815406 152.06532288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01815407 152.06532288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -01815408 152.06533813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01815409 152.06533813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -01815410 152.06536865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01815411 152.06538391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -01815412 152.06541443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01815413 152.06541443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -01815414 152.06542969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01815415 152.06542969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -01815416 152.06546021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01815417 152.06546021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -01815418 152.06549072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01815419 152.06549072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -01815420 152.06550598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01815421 152.06552124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -01815422 152.06555176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01815423 152.06555176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -01815424 152.06556702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01815425 152.06556702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -01815426 152.06559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01815427 152.06559753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -01815428 152.06562805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01815429 152.06562805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -01815430 152.06565857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01815431 152.06565857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -01815432 152.06567383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01815433 152.06568909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -01815434 152.06571960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01815435 152.06571960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -01815436 152.06573486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01815437 152.06573486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -01815438 152.06576538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01815439 152.06576538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -01815440 152.06579590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01815441 152.06581116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -01815442 152.06582642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01815443 152.06582642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -01815444 152.06585693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01815445 152.06585693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -01815446 152.06588745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01815447 152.06588745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -01815448 152.06590271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01815449 152.06590271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -01815450 152.06593323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01815451 152.06593323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -01815452 152.06596375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01815453 152.06596375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -01815454 152.06597900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01815455 152.06597900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -01815456 152.06600952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01815457 152.06600952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -01815458 152.06604004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01815459 152.06605530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -01815460 152.06605530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01815461 152.06607056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -01815462 152.06610107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01815463 152.06610107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -01815464 152.06613159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01815465 152.06613159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -01815466 152.06614685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01815467 152.06614685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -01815468 152.06617737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01815469 152.06617737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -01815470 152.06620789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01815471 152.06620789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -01815472 152.06622314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01815473 152.06622314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -01815474 152.06625366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01815475 152.06625366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -01815476 152.06628418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01815477 152.06628418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -01815478 152.06629944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01815479 152.06629944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -01815480 152.06634521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01815481 152.06634521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -01815482 152.06636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01815483 152.06636047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -01815484 152.06639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01815485 152.06639099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -01815486 152.06642151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01815487 152.06642151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -01815488 152.06645203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01815489 152.06645203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -01815490 152.06648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01815491 152.06648254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -01815492 152.06651306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01815493 152.06651306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -01815494 152.06652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01815495 152.06652832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -01815496 152.06655884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01815497 152.06655884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -01815498 152.06658936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01815499 152.06660461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -01815500 152.06661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01815501 152.06661987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -01815502 152.06665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01815503 152.06665039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -01815504 152.06668091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01815505 152.06668091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -01815506 152.06669617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01815507 152.06669617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -01815508 152.06674194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01815509 152.06674194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -01815510 152.06675720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01815511 152.06675720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -01815512 152.06678772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01815513 152.06678772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -01815514 152.06681824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01815515 152.06683350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -01815516 152.06684875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01815517 152.06684875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -01815518 152.06687927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01815519 152.06687927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -01815520 152.06690979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01815521 152.06690979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -01815522 152.06692505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01815523 152.06692505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -01815524 152.06695557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01815525 152.06695557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -01815526 152.06700134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01815527 152.06700134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -01815528 152.06701660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01815529 152.06701660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -01815530 152.06704712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01815531 152.06704712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -01815532 152.06707764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01815533 152.06707764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -01815534 152.06709290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01815535 152.06710815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -01815536 152.06713867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01815537 152.06713867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -01815538 152.06716919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01815539 152.06716919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -01815540 152.06718445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01815541 152.06718445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -01815542 152.06721497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01815543 152.06721497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -01815544 152.06724548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01815545 152.06724548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -01815546 152.06726074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01815547 152.06727600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -01815548 152.06729126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01815549 152.06730652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a8 -01815550 152.06732178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01815551 152.06732178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b8 -01815552 152.06735229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01815553 152.06735229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c8 -01815554 152.06738281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01815555 152.06738281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d8 -01815556 152.06741333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01815557 152.06741333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e8 -01815558 152.06744385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01815559 152.06744385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f8 -01815560 152.06747437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01815561 152.06747437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc108 -01815562 152.06748962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01815563 152.06748962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc118 -01815564 152.06752014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01815565 152.06752014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc128 -01815566 152.06755066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01815567 152.06755066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc138 -01815568 152.06756592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01815569 152.06756592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc148 -01815570 152.06759644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01815571 152.06759644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc158 -01815572 152.06762695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01815573 152.06764221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc168 -01815574 152.06764221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01815575 152.06765747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc178 -01815576 152.06768799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01815577 152.06768799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc188 -01815578 152.06771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01815579 152.06771851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc198 -01815580 152.06773376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01815581 152.06773376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a8 -01815582 152.06776428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01815583 152.06776428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b8 -01815584 152.06779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01815585 152.06779480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c8 -01815586 152.06781006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01815587 152.06781006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1d8 -01815588 152.06784058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01815589 152.06784058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1e8 -01815590 152.06787109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01815591 152.06787109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1f8 -01815592 152.06788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01815593 152.06788635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc208 -01815594 152.06791687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01815595 152.06793213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc218 -01815596 152.06796265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01815597 152.06796265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc228 -01815598 152.06797791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01815599 152.06797791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc238 -01815600 152.06800842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01815601 152.06800842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc248 -01815602 152.06803894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01815603 152.06803894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc258 -01815604 152.06806946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01815605 152.06806946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -01815606 152.06809998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01815607 152.06809998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -01815608 152.06811523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01815609 152.06811523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -01815610 152.06814575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01815611 152.06814575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -01815612 152.06817627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01815613 152.06819153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -01815614 152.06820679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01815615 152.06820679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -01815616 152.06823730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01815617 152.06823730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -01815618 152.06826782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01815619 152.06826782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -01815620 152.06828308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01815621 152.06828308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -01815622 152.06831360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01815623 152.06832886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -01815624 152.06835938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01815625 152.06835938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -01815626 152.06837463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01815627 152.06837463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -01815628 152.06840515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01815629 152.06840515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -01815630 152.06843567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01815631 152.06843567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -01815632 152.06845093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01815633 152.06845093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -01815634 152.06848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01815635 152.06848145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -01815636 152.06851196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01815637 152.06851196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -01815638 152.06854248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01815639 152.06854248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -01815640 152.06857300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01815641 152.06857300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -01815642 152.06858826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01815643 152.06858826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -01815644 152.06861877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01815645 152.06861877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -01815646 152.06864929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01815647 152.06866455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -01815648 152.06867981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01815649 152.06867981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -01815650 152.06871033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01815651 152.06871033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d8 -01815652 152.06874084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01815653 152.06874084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e8 -01815654 152.06875610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01815655 152.06877136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f8 -01815656 152.06880188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01815657 152.06880188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc408 -01815658 152.06883240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01815659 152.06883240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc418 -01815660 152.06884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01815661 152.06884766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc428 -01815662 152.06887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01815663 152.06887817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc438 -01815664 152.06890869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01815665 152.06890869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc448 -01815666 152.06893921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01815667 152.06893921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc458 -01815668 152.06896973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01815669 152.06896973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc468 -01815670 152.06898499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01815671 152.06898499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc478 -01815672 152.06901550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01815673 152.06901550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc488 -01815674 152.06904602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01815675 152.06904602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -01815676 152.06906128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01815677 152.06906128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -01815678 152.06909180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01815679 152.06909180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -01815680 152.06912231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01815681 152.06913757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -01815682 152.06915283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01815683 152.06915283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -01815684 152.06918335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01815685 152.06918335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -01815686 152.06921387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01815687 152.06921387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -01815688 152.06922913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01815689 152.06922913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -01815690 152.06925964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01815691 152.06927490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -01815692 152.06930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01815693 152.06930542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -01815694 152.06932068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01815695 152.06932068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -01815696 152.06935120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01815697 152.06935120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -01815698 152.06938171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01815699 152.06938171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -01815700 152.06941223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01815701 152.06941223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -01815702 152.06944275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01815703 152.06944275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -01815704 152.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01815705 152.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -01815706 152.06948853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01815707 152.06948853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -01815708 152.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01815709 152.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -01815710 152.06954956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01815711 152.06954956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -01815712 152.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01815713 152.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -01815714 152.06961060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01815715 152.06961060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -01815716 152.06962585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01815717 152.06962585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -01815718 152.06965637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01815719 152.06967163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f8 -01815720 152.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01815721 152.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc608 -01815722 152.06971741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01815723 152.06971741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc618 -01815724 152.06974792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01815725 152.06974792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc628 -01815726 152.06977844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01815727 152.06977844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc638 -01815728 152.06979370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01815729 152.06979370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -01815730 152.06982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01815731 152.06983948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -01815732 152.06987000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01815733 152.06987000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -01815734 152.06988525 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01815735 152.06988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01815736 152.06988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -01815737 152.06990051 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01815738 152.06991577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01815739 152.06991577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -01815740 152.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01815741 152.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -01815742 152.06997681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01815743 152.06997681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -01815744 152.07000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01815745 152.07000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -01815746 152.07002258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01815747 152.07002258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -01815748 152.07005310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01815749 152.07005310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -01815750 152.07008362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01815751 152.07009888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -01815752 152.07011414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01815753 152.07011414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -01815754 152.07014465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01815755 152.07014465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -01815756 152.07017517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01815757 152.07017517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -01815758 152.07020569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01815759 152.07020569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -01815760 152.07023621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01815761 152.07023621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -01815762 152.07026672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01815763 152.07026672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -01815764 152.07029724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01815765 152.07029724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -01815766 152.07032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01815767 152.07032776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -01815768 152.07034302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01815769 152.07035828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -01815770 152.07038879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01815771 152.07038879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -01815772 152.07041931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01815773 152.07041931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -01815774 152.07044983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01815775 152.07044983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -01815776 152.07048035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01815777 152.07048035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -01815778 152.07049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01815779 152.07049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -01815780 152.07052612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01815781 152.07054138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -01815782 152.07057190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01815783 152.07057190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -01815784 152.07058716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01815785 152.07058716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -01815786 152.07061768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01815787 152.07061768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -01815788 152.07064819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01815789 152.07064819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -01815790 152.07066345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01815791 152.07067871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -01815792 152.07070923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01815793 152.07070923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -01815794 152.07073975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01815795 152.07073975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -01815796 152.07075500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01815797 152.07075500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -01815798 152.07078552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01815799 152.07078552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -01815800 152.07081604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01815801 152.07081604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -01815802 152.07084656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01815803 152.07084656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -01815804 152.07087708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01815805 152.07087708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -01815806 152.07089233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01815807 152.07089233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -01815808 152.07092285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01815809 152.07092285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -01815810 152.07095337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01815811 152.07095337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -01815812 152.07096863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01815813 152.07098389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -01815814 152.07101440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01815815 152.07101440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -01815816 152.07104492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01815817 152.07104492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -01815818 152.07106018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01815819 152.07106018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -01815820 152.07109070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01815821 152.07110596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -01815822 152.07113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01815823 152.07113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -01815824 152.07115173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01815825 152.07115173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -01815826 152.07118225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01815827 152.07118225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -01815828 152.07121277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01815829 152.07121277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -01815830 152.07122803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01815831 152.07124329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -01815832 152.07127380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01815833 152.07127380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -01815834 152.07128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01815835 152.07128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -01815836 152.07131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01815837 152.07131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -01815838 152.07135010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01815839 152.07136536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -01815840 152.07138062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01815841 152.07138062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -01815842 152.07141113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01815843 152.07141113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -01815844 152.07144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01815845 152.07144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -01815846 152.07145691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01815847 152.07145691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9e8 -01815848 152.07148743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01815849 152.07148743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9f8 -01815850 152.07151794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01815851 152.07151794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca08 -01815852 152.07153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01815853 152.07154846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca18 -01815854 152.07157898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01815855 152.07157898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca28 -01815856 152.07160950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01815857 152.07160950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca38 -01815858 152.07162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01815859 152.07162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca48 -01815860 152.07165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01815861 152.07165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca58 -01815862 152.07168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01815863 152.07168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -01815864 152.07170105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01815865 152.07171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -01815866 152.07173157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01815867 152.07174683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -01815868 152.07176208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01815869 152.07176208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -01815870 152.07179260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01815871 152.07179260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -01815872 152.07182312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01815873 152.07182312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -01815874 152.07185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01815875 152.07185364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -01815876 152.07186890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01815877 152.07186890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -01815878 152.07189941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01815879 152.07191467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -01815880 152.07192993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01815881 152.07192993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -01815882 152.07196045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01815883 152.07196045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -01815884 152.07199097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01815885 152.07199097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -01815886 152.07200623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01815887 152.07200623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -01815888 152.07203674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01815889 152.07205200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -01815890 152.07206726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01815891 152.07208252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -01815892 152.07209778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01815893 152.07209778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -01815894 152.07212830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01815895 152.07212830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -01815896 152.07215881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01815897 152.07215881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -01815898 152.07217407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01815899 152.07217407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -01815900 152.07220459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01815901 152.07220459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -01815902 152.07223511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01815903 152.07225037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -01815904 152.07226563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01815905 152.07226563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -01815906 152.07229614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01815907 152.07229614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbc8 -01815908 152.07232666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01815909 152.07232666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbd8 -01815910 152.07234192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01815911 152.07234192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbe8 -01815912 152.07237244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01815913 152.07238770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbf8 -01815914 152.07240295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01815915 152.07240295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc08 -01815916 152.07243347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01815917 152.07243347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc18 -01815918 152.07246399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01815919 152.07246399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc28 -01815920 152.07247925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01815921 152.07247925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc38 -01815922 152.07250977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01815923 152.07252502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc48 -01815924 152.07254028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01815925 152.07255554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc58 -01815926 152.07257080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01815927 152.07257080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc68 -01815928 152.07260132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01815929 152.07260132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc78 -01815930 152.07263184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01815931 152.07263184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc88 -01815932 152.07264709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01815933 152.07264709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc98 -01815934 152.07267761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01815935 152.07267761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca8 -01815936 152.07270813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01815937 152.07270813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb8 -01815938 152.07272339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01815939 152.07272339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc8 -01815940 152.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01815941 152.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd8 -01815942 152.07278442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01815943 152.07278442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce8 -01815944 152.07279968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01815945 152.07281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf8 -01815946 152.07283020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01815947 152.07284546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd08 -01815948 152.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01815949 152.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -01815950 152.07289124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01815951 152.07289124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -01815952 152.07292175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01815953 152.07292175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -01815954 152.07295227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01815955 152.07295227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -01815956 152.07296753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01815957 152.07296753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -01815958 152.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01815959 152.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -01815960 152.07302856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01815961 152.07302856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -01815962 152.07304382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01815963 152.07304382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -01815964 152.07307434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01815965 152.07307434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -01815966 152.07310486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01815967 152.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -01815968 152.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01815969 152.07313538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -01815970 152.07316589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -01815971 152.07316589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -01815972 152.07319641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -01815973 152.07319641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -01815974 152.07321167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -01815975 152.07321167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -01815976 152.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -01815977 152.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -01815978 152.07327271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -01815979 152.07327271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -01815980 152.07328796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -01815981 152.07328796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -01815982 152.07331848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -01815983 152.07331848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -01815984 152.07334900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -01815985 152.07334900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -01815986 152.07336426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -01815987 152.07336426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -01815988 152.07339478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -01815989 152.07341003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -01815990 152.07342529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -01815991 152.07344055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -01815992 152.07344055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -01815993 152.07345581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce78 -01815994 152.07348633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -01815995 152.07348633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce88 -01815996 152.07351685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -01815997 152.07351685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xce98 -01815998 152.07353210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -01815999 152.07353210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea8 -01816000 152.07356262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -01816001 152.07356262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb8 -01816002 152.07359314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -01816003 152.07359314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec8 -01816004 152.07360840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -01816005 152.07360840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xced8 -01816006 152.07363892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -01816007 152.07363892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcee8 -01816008 152.07366943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -01816009 152.07366943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcef8 -01816010 152.07368469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -01816011 152.07368469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf08 -01816012 152.07371521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -01816013 152.07373047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf18 -01816014 152.07374573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -01816015 152.07376099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf28 -01816016 152.07377625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -01816017 152.07377625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf38 -01816018 152.07380676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -01816019 152.07380676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf48 -01816020 152.07383728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -01816021 152.07383728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf58 -01816022 152.07385254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -01816023 152.07386780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf68 -01816024 152.07389832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -01816025 152.07389832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf78 -01816026 152.07391357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -01816027 152.07391357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf88 -01816028 152.07394409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -01816029 152.07394409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcf98 -01816030 152.07397461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -01816031 152.07397461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfa8 -01816032 152.07398987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -01816033 152.07398987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfb8 -01816034 152.07402039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -01816035 152.07403564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfc8 -01816036 152.07405090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -01816037 152.07406616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfd8 -01816038 152.07408142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -01816039 152.07408142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcfe8 -01816040 152.07411194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -01816041 152.07411194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xcff8 -01816042 152.07414246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -01816043 152.07414246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd008 -01816044 152.07415771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -01816045 152.07415771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd018 -01816046 152.07418823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -01816047 152.07418823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd028 -01816048 152.07421875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -01816049 152.07421875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd038 -01816050 152.07423401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -01816051 152.07423401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd048 -01816052 152.07426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -01816053 152.07426453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd058 -01816054 152.07429504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -01816055 152.07429504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd068 -01816056 152.07431030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -01816057 152.07432556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd078 -01816058 152.07434082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -01816059 152.07435608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd088 -01816060 152.07438660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -01816061 152.07438660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd098 -01816062 152.07440186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -01816063 152.07440186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0a8 -01816064 152.07443237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -01816065 152.07443237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0b8 -01816066 152.07446289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01816067 152.07446289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0c8 -01816068 152.07447815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01816069 152.07447815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0d8 -01816070 152.07450867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01816071 152.07450867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0e8 -01816072 152.07453918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01816073 152.07453918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd0f8 -01816074 152.07455444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01816075 152.07455444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd108 -01816076 152.07458496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01816077 152.07458496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd118 -01816078 152.07461548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01816079 152.07463074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd128 -01816080 152.07463074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01816081 152.07464600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd138 -01816082 152.07467651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01816083 152.07467651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd148 -01816084 152.07470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01816085 152.07470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd158 -01816086 152.07472229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01816087 152.07472229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd168 -01816088 152.07475281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01816089 152.07475281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd178 -01816090 152.07478333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01816091 152.07478333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd188 -01816092 152.07479858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01816093 152.07479858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd198 -01816094 152.07482910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01816095 152.07484436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a8 -01816096 152.07485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01816097 152.07485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b8 -01816098 152.07489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01816099 152.07489014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c8 -01816100 152.07492065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01816101 152.07492065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d8 -01816102 152.07495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01816103 152.07495117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e8 -01816104 152.07496643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01816105 152.07496643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f8 -01816106 152.07499695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01816107 152.07499695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd208 -01816108 152.07502747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01816109 152.07502747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd218 -01816110 152.07504272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -01816111 152.07505798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd228 -01816112 152.07508850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -01816113 152.07508850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd238 -01816114 152.07510376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -01816115 152.07510376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd248 -01816116 152.07513428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -01816117 152.07513428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd258 -01816118 152.07516479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -01816119 152.07516479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd268 -01816120 152.07518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -01816121 152.07518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd278 -01816122 152.07521057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -01816123 152.07521057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -01816124 152.07524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01816125 152.07524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01816126 152.07527161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01816127 152.07527161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01816128 152.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01816129 152.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01816130 152.07531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01816131 152.07533264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01816132 152.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01816133 152.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01816134 152.07537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01816135 152.07537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01816136 152.07540894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01816137 152.07540894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01816138 152.07542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01816139 152.07542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01816140 152.07545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01816141 152.07545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01816142 152.07548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01816143 152.07548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01816144 152.07550049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01816145 152.07550049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01816146 152.07553101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01816147 152.07553101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01816148 152.07556152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01816149 152.07556152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01816150 152.07557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01816151 152.07557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01816152 152.07560730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01816153 152.07560730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01816154 152.07563782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01816155 152.07565308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01816156 152.07566833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01816157 152.07566833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01816158 152.07569885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01816159 152.07569885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01816160 152.07572937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01816161 152.07572937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01816162 152.07574463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01816163 152.07574463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01816164 152.07577515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01816165 152.07577515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01816166 152.07580566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -01816167 152.07580566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -01816168 152.07582092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -01816169 152.07582092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3f8 -01816170 152.07585144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -01816171 152.07585144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd408 -01816172 152.07588196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -01816173 152.07588196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd418 -01816174 152.07589722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -01816175 152.07591248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd428 -01816176 152.07592773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -01816177 152.07594299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd438 -01816178 152.07597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -01816179 152.07597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd448 -01816180 152.07598877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd458 -01816320 152.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01816321 152.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -01816322 152.07798767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01816323 152.07798767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -01816324 152.07801819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01816325 152.07803345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -01816326 152.07804871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01816327 152.07804871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -01816328 152.07807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -01816329 152.07807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -01816330 152.07810974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -01816331 152.07810974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -01816332 152.07812500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -01816333 152.07814026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -01816334 152.07815552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -01816335 152.07817078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -01816336 152.07820129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -01816337 152.07820129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -01816338 152.07821655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -01816339 152.07821655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -01816340 152.07824707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -01816341 152.07824707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -01816342 152.07827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -01816343 152.07827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -01816344 152.07829285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -01816345 152.07829285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -01816346 152.07832336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -01816347 152.07833862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -01816348 152.07836914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -01816349 152.07836914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -01816350 152.07838440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -01816351 152.07838440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -01816352 152.07841492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -01816353 152.07841492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -01816354 152.07844543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -01816355 152.07844543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -01816356 152.07846069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -01816357 152.07847595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -01816358 152.07850647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -01816359 152.07850647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -01816360 152.07852173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -01816361 152.07852173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -01816362 152.07855225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -01816363 152.07855225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -01816548 152.08117676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -01816549 152.08117676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -01816550 152.08120728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -01816551 152.08120728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -01816552 152.08122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -01816553 152.08122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -01816554 152.08125305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -01816555 152.08125305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -01816556 152.08128357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -01816557 152.08128357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -01816558 152.08129883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -01816559 152.08129883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -01816560 152.08132935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -01816561 152.08132935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -01816562 152.08135986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -01816563 152.08135986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -01816564 152.08137512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -01816565 152.08139038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -01816566 152.08140564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -01816567 152.08142090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -01816568 152.08145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -01816569 152.08145142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -01816570 152.08146667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -01816571 152.08146667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -01816572 152.08149719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -01816573 152.08149719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -01816574 152.08152771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -01816575 152.08152771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -01816576 152.08154297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -01816577 152.08154297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -01816578 152.08157349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -01816579 152.08157349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -01816580 152.08160400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -01816581 152.08160400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0d8 -01816582 152.08161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -01816583 152.08161926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0e8 -01816584 152.08164978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -01816585 152.08164978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0f8 -01816586 152.08168030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -01816587 152.08169556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe108 -01816588 152.08169556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -01816589 152.08171082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe118 -01816590 152.08174133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -01816591 152.08174133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe128 -01819014 152.11561584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce8 -01819015 152.11561584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce8 -01819016 152.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf8 -01819017 152.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf8 -01819018 152.11567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d08 -01819019 152.11567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d08 -01819020 152.11569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d18 -01819021 152.11569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d18 -01819022 152.11572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -01819023 152.11572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -01819024 152.11575317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -01819025 152.11576843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -01819026 152.11578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -01819027 152.11578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -01819028 152.11581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -01819029 152.11581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -01819030 152.11584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -01819031 152.11584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -01819032 152.11585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -01819033 152.11585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -01819034 152.11589050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -01819035 152.11589050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -01819036 152.11592102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -01819037 152.11593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -01819038 152.11595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -01819039 152.11595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -01819040 152.11598206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -01819041 152.11598206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -01819042 152.11601257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -01819043 152.11601257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -01819044 152.11602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -01819045 152.11602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -01819046 152.11605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de8 -01819047 152.11607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12de8 -01819048 152.11608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df8 -01819049 152.11608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12df8 -01819050 152.11611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e08 -01819051 152.11611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e08 -01819052 152.11614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e18 -01819053 152.11614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e18 -01819054 152.11618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e28 -01819055 152.11618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e28 -01819056 152.11619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e38 -01819057 152.11621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e38 -01821434 152.14945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17888 -01821435 152.14945984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17888 -01821436 152.14949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17898 -01821437 152.14949036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17898 -01821438 152.14952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a8 -01821439 152.14952087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178a8 -01821440 152.14953613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b8 -01821441 152.14953613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178b8 -01821442 152.14956665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c8 -01821443 152.14958191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178c8 -01821444 152.14961243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d8 -01821445 152.14961243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178d8 -01821446 152.14962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e8 -01821447 152.14962769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178e8 -01821448 152.14965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f8 -01821449 152.14965820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x178f8 -01821450 152.14968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17908 -01821451 152.14968872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17908 -01821452 152.14970398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17918 -01821453 152.14971924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17918 -01821454 152.14974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17928 -01821455 152.14974976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17928 -01821456 152.14978027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17938 -01821457 152.14978027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17938 -01821458 152.14979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17948 -01821459 152.14979553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17948 -01821460 152.14982605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17958 -01821461 152.14984131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17958 -01821462 152.14985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17968 -01821463 152.14985657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17968 -01821464 152.14988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17978 -01821465 152.14988708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17978 -01821466 152.14991760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17988 -01821467 152.14991760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17988 -01821468 152.14993286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17998 -01821469 152.14993286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17998 -01821470 152.14996338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a8 -01821471 152.14996338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179a8 -01821472 152.15000916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b8 -01821473 152.15000916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179b8 -01821474 152.15002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c8 -01821475 152.15002441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179c8 -01821476 152.15005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d8 -01821477 152.15005493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x179d8 -01824106 152.18678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -01824107 152.18678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -01824108 152.18681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -01824109 152.18681335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -01824110 152.18684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -01824111 152.18685913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -01824112 152.18687439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -01824113 152.18687439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -01824114 152.18690491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -01824115 152.18690491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -01824116 152.18693542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -01824117 152.18693542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -01824118 152.18695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -01824119 152.18695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -01824120 152.18698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -01824121 152.18699646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -01824122 152.18702698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -01824123 152.18702698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -01824124 152.18704224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -01824125 152.18704224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -01824126 152.18707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -01824127 152.18707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -01824128 152.18710327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -01824129 152.18710327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -01824130 152.18711853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -01824131 152.18711853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -01824132 152.18714905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -01824133 152.18716431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -01824134 152.18719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -01824135 152.18719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -01824136 152.18721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -01824137 152.18721008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -01824138 152.18724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -01824139 152.18724060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -01824140 152.18727112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -01824141 152.18727112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -01824142 152.18728638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -01824143 152.18730164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -01824144 152.18733215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -01824145 152.18733215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -01824146 152.18734741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -01824147 152.18734741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -01824148 152.18737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -01824149 152.18737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -01826642 152.22206116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b48 -01826643 152.22206116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b48 -01826644 152.22207642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b58 -01826645 152.22209167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b58 -01826646 152.22210693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b68 -01826647 152.22212219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b68 -01826648 152.22213745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b78 -01826649 152.22213745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b78 -01826650 152.22216797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b88 -01826651 152.22216797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b88 -01826652 152.22219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b98 -01826653 152.22219849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b98 -01826654 152.22222900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba8 -01826655 152.22222900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ba8 -01826656 152.22225952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb8 -01826657 152.22225952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bb8 -01826658 152.22229004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc8 -01826659 152.22229004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bc8 -01826660 152.22233582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd8 -01826661 152.22233582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bd8 -01826662 152.22236633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be8 -01826663 152.22238159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21be8 -01826664 152.22239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf8 -01826665 152.22239685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21bf8 -01826666 152.22244263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c08 -01826667 152.22244263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c08 -01826668 152.22247314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c18 -01826669 152.22247314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c18 -01826670 152.22250366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c28 -01826671 152.22250366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c28 -01826672 152.22253418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c38 -01826673 152.22253418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c38 -01826674 152.22254944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c48 -01826675 152.22256470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c48 -01826676 152.22259521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c58 -01826677 152.22259521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c58 -01826678 152.22261047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c68 -01826679 152.22261047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c68 -01826680 152.22264099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c78 -01826681 152.22264099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c78 -01826682 152.22267151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c88 -01826683 152.22267151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c88 -01826684 152.22270203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c98 -01826685 152.22270203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c98 -01840898 152.41777039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c8 -01840899 152.41778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c8 -01840900 152.41780090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d8 -01840901 152.41780090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d8 -01840902 152.41783142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e8 -01840903 152.41783142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e8 -01840904 152.41786194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f8 -01840905 152.41786194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f8 -01840906 152.41787720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d908 -01840907 152.41787720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d908 -01840908 152.41792297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d918 -01840909 152.41792297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d918 -01840910 152.41793823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d928 -01840911 152.41793823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d928 -01840912 152.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d938 -01840913 152.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d938 -01840914 152.41799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d948 -01840915 152.41799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d948 -01840916 152.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d958 -01840917 152.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d958 -01840918 152.41804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d968 -01840919 152.41804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d968 -01840920 152.41807556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d978 -01840921 152.41807556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d978 -01840922 152.41810608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d988 -01840923 152.41810608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d988 -01840924 152.41812134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d998 -01840925 152.41812134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d998 -01840926 152.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a8 -01840927 152.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a8 -01840928 152.41818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b8 -01840929 152.41818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9b8 -01840930 152.41819763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c8 -01840931 152.41821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9c8 -01840932 152.41824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d8 -01840933 152.41824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9d8 -01840934 152.41825867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e8 -01840935 152.41825867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e8 -01840936 152.41828918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f8 -01840937 152.41828918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f8 -01840938 152.41831970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da08 -01840939 152.41831970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da08 -01840940 152.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da18 -01840941 152.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da18 -01843146 152.44828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f08 -01843147 152.44830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f08 -01843148 152.44833374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f18 -01843149 152.44833374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f18 -01843150 152.44836426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f28 -01843151 152.44836426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f28 -01843152 152.44837952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f38 -01843153 152.44837952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f38 -01843154 152.44841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f48 -01843155 152.44841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f48 -01843156 152.44844055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f58 -01843157 152.44844055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f58 -01843158 152.44845581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f68 -01843159 152.44845581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f68 -01843160 152.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f78 -01843161 152.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f78 -01843162 152.44851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f88 -01843163 152.44851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f88 -01843164 152.44853210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f98 -01843165 152.44853210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f98 -01843166 152.44856262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa8 -01843167 152.44857788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fa8 -01843168 152.44860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb8 -01843169 152.44860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fb8 -01843170 152.44862366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc8 -01843171 152.44862366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fc8 -01843172 152.44865417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd8 -01843173 152.44866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fd8 -01843174 152.44868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe8 -01843175 152.44868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41fe8 -01843176 152.44871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff8 -01843177 152.44871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ff8 -01843178 152.44874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42008 -01843179 152.44874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42008 -01843180 152.44876099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42018 -01843181 152.44876099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42018 -01843182 152.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42028 -01843183 152.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42028 -01843184 152.44882202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42038 -01843185 152.44882202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42038 -01843186 152.44883728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42048 -01843187 152.44883728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42048 -01843188 152.44886780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42058 -01843189 152.44886780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42058 -01845608 152.48194885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -01845609 152.48194885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46bf8 -01845610 152.48196411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -01845611 152.48196411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c08 -01845612 152.48199463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c18 -01845613 152.48199463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c18 -01845614 152.48204041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c28 -01845615 152.48204041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c28 -01845616 152.48205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c38 -01845617 152.48205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c38 -01845618 152.48208618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c48 -01845619 152.48208618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c48 -01845620 152.48211670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c58 -01845621 152.48211670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c58 -01845622 152.48213196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c68 -01845623 152.48213196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c68 -01845624 152.48216248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01845625 152.48216248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c78 -01845626 152.48219299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01845627 152.48219299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c88 -01845628 152.48222351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01845629 152.48222351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c98 -01845630 152.48225403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01845631 152.48225403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca8 -01845632 152.48228455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01845633 152.48228455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb8 -01845634 152.48229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01845635 152.48229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc8 -01845636 152.48233032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01845637 152.48233032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd8 -01845638 152.48236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01845639 152.48236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce8 -01845640 152.48239136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01845641 152.48239136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -01845642 152.48242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01845643 152.48242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -01845644 152.48245239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01845645 152.48245239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -01845646 152.48246765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01845647 152.48246765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -01845648 152.48249817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01845649 152.48249817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -01845650 152.48252869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -01845651 152.48252869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -01847976 152.51518250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f8 -01847977 152.51518250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f8 -01847978 152.51521301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b608 -01847979 152.51521301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b608 -01847980 152.51525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b618 -01847981 152.51525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b618 -01847982 152.51527405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b628 -01847983 152.51527405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b628 -01847984 152.51530457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b638 -01847985 152.51530457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b638 -01847986 152.51533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b648 -01847987 152.51533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b648 -01847988 152.51535034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b658 -01847989 152.51535034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b658 -01847990 152.51538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b668 -01847991 152.51539612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b668 -01847992 152.51541138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b678 -01847993 152.51541138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b678 -01847994 152.51544189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b688 -01847995 152.51544189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b688 -01847996 152.51547241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b698 -01847997 152.51547241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b698 -01847998 152.51548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a8 -01847999 152.51548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a8 -01848000 152.51551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b8 -01848001 152.51553345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b8 -01848002 152.51556396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c8 -01848003 152.51556396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c8 -01848004 152.51557922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d8 -01848005 152.51557922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d8 -01848006 152.51560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e8 -01848007 152.51560974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e8 -01848008 152.51564026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f8 -01848009 152.51564026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f8 -01848010 152.51565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b708 -01848011 152.51565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b708 -01848012 152.51568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b718 -01848013 152.51570129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b718 -01848014 152.51571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b728 -01848015 152.51573181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b728 -01848016 152.51574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b738 -01848017 152.51574707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b738 -01848018 152.51577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b748 -01848019 152.51577759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b748 -01849220 152.53215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -01849221 152.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcd8 -01849222 152.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -01849223 152.53218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -01849224 152.53221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -01849225 152.53221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -01849226 152.53224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -01849227 152.53224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -01849228 152.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -01849229 152.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -01849230 152.53228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -01849231 152.53228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -01849232 152.53231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -01849233 152.53231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -01849234 152.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -01849235 152.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -01849236 152.53236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -01849237 152.53236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -01849238 152.53239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -01849239 152.53239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -01849240 152.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -01849241 152.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -01849242 152.53244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -01849243 152.53245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -01849244 152.53247070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -01849245 152.53248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -01849246 152.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -01849247 152.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -01849248 152.53253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -01849249 152.53253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -01849250 152.53256226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -01849251 152.53256226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -01849252 152.53257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -01849253 152.53257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -01849254 152.53260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -01849255 152.53260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -01849256 152.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -01849257 152.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -01849258 152.53265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -01849259 152.53265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -01849260 152.53268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -01849261 152.53268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -01849262 152.53271484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -01849263 152.53271484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -01850278 152.54646301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde8 -01850279 152.54646301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde8 -01850280 152.54647827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -01850281 152.54647827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -01850282 152.54650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -01850283 152.54650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -01850284 152.54653931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -01850285 152.54653931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -01850286 152.54655457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -01850287 152.54656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -01850288 152.54658508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -01850289 152.54660034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -01850290 152.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -01850291 152.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -01850292 152.54664612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -01850293 152.54664612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -01850294 152.54667664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -01850295 152.54667664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -01850296 152.54670715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe78 -01850297 152.54670715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe78 -01850298 152.54672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe88 -01850299 152.54672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe88 -01850300 152.54675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe98 -01850301 152.54675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe98 -01850302 152.54678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea8 -01850303 152.54678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea8 -01850304 152.54679871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb8 -01850305 152.54679871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb8 -01850306 152.54682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec8 -01850307 152.54682922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec8 -01850308 152.54685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed8 -01850309 152.54685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed8 -01850310 152.54687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee8 -01850311 152.54689026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee8 -01850312 152.54692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef8 -01850313 152.54692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef8 -01850314 152.54695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff08 -01850315 152.54695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff08 -01850316 152.54696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff18 -01850317 152.54696655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff18 -01850318 152.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff28 -01850319 152.54699707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff28 -01850320 152.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff38 -01850321 152.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff38 -01851466 152.56301880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52308 -01851467 152.56301880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52308 -01851468 152.56304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52318 -01851469 152.56304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52318 -01851470 152.56306458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52328 -01851471 152.56307983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52328 -01851472 152.56309509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52338 -01851473 152.56311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52338 -01851474 152.56314087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52348 -01851475 152.56314087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52348 -01851476 152.56315613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52358 -01851477 152.56315613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52358 -01851478 152.56318665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52368 -01851479 152.56318665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52368 -01851480 152.56321716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52378 -01851481 152.56321716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52378 -01851482 152.56323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52388 -01851483 152.56323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52388 -01851484 152.56326294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52398 -01851485 152.56327820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52398 -01851486 152.56330872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a8 -01851487 152.56330872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523a8 -01851488 152.56332397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b8 -01851489 152.56332397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523b8 -01851490 152.56335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c8 -01851491 152.56335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523c8 -01851492 152.56338501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d8 -01851493 152.56338501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523d8 -01851494 152.56340027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e8 -01851495 152.56340027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523e8 -01851496 152.56343079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f8 -01851497 152.56344604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x523f8 -01851498 152.56346130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52408 -01851499 152.56346130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52408 -01851500 152.56349182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52418 -01851501 152.56349182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52418 -01851502 152.56352234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52428 -01851503 152.56352234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52428 -01851504 152.56355286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52438 -01851505 152.56355286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52438 -01851506 152.56356812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52448 -01851507 152.56356812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52448 -01851508 152.56359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52458 -01851509 152.56359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52458 -01851792 153.86372375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851793 153.86378479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851794 153.86381531 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851795 153.86381531 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01851796 153.86393738 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851797 153.86395264 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851798 153.86399841 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851799 153.86402893 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851800 154.07148743 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01851801 154.09130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851802 154.09130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851803 156.02258301 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -01851804 156.02375793 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -01851805 156.09312439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01851806 156.11199951 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851807 156.11201477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851808 156.37005615 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851809 156.37011719 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851810 156.37011719 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01851811 156.37013245 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01851812 156.37026978 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851813 156.37026978 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851814 156.37031555 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01851815 156.37034607 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01851816 157.38864136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01851817 157.56823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01851818 157.56823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01851819 157.56828308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01851820 157.56828308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01851821 157.56831360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01851822 157.56831360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01851823 157.56832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01851824 157.56832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01851825 157.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01851826 157.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01851827 157.56838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01851828 157.56838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01851829 157.56840515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01851830 157.56842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01851831 157.56845093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01851832 157.56845093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01851833 157.56846619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01851834 157.56846619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01851835 157.56849670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01851836 157.56849670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01851837 157.56852722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01851838 157.56852722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01851839 157.56855774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01851840 157.56855774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01851841 157.56857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01851842 157.56857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01851843 157.56860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01851844 157.56860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01851845 157.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01851846 157.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01851847 157.56864929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01851848 157.56864929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01851849 157.56867981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01851850 157.56869507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01851851 157.56871033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01851852 157.56871033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01851853 157.56874084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01851854 157.56874084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01851855 157.56877136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01851856 157.56877136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01851857 157.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01851858 157.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01851859 157.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01851860 157.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01851861 157.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01851862 157.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01851863 157.56886292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01851864 157.56886292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01851865 157.56889343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01851866 157.56889343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01851867 157.56892395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01851868 157.56892395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01851869 157.56895447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01851870 157.56895447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01851871 157.56896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01851872 157.56898499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01851873 157.56901550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01851874 157.56901550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01851875 157.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01851876 157.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01851877 157.56906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01851878 157.56906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01851879 157.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01851880 157.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01851881 157.56910706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01851882 157.56910706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01851883 157.56913757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01851884 157.56913757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01851885 157.56916809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01851886 157.56916809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01851887 157.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01851888 157.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01851889 157.56921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01851890 157.56922913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01851891 157.56924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01851892 157.56925964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01851893 157.56927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01851894 157.56927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01851895 157.56930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01851896 157.56930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01851897 157.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01851898 157.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01851899 157.56935120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01851900 157.56935120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01851901 157.56938171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01851902 157.56938171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01851903 157.56941223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01851904 157.56941223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01851905 157.56942749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01851906 157.56942749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01851907 157.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01851908 157.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01851909 157.56948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01851910 157.56950378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01851911 157.56951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01851912 157.56951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01851913 157.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01851914 157.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01851915 157.56958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01851916 157.56958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01851917 157.56959534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01851918 157.56959534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01851919 157.56962585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01851920 157.56962585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01851921 157.56965637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01851922 157.56965637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01851923 157.56968689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01851924 157.56968689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01851925 157.56971741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01851926 157.56971741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01851927 157.56974792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01851928 157.56974792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01851929 157.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01851930 157.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01851931 157.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01851932 157.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01851933 157.56982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01851934 157.56982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01851935 157.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01851936 157.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01851937 157.56988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01851938 157.56988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01851939 157.56990051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01851940 157.56990051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01851941 157.56996155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01851942 157.56996155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01851943 157.56997681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01851944 157.56997681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01851945 157.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01851946 157.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01851947 157.57003784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01851948 157.57003784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01851949 157.57006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01851950 157.57006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01851951 157.57009888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01851952 157.57009888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01851953 157.57012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01851954 157.57012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01851955 157.57014465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01851956 157.57014465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01851957 157.57017517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01851958 157.57017517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01851959 157.57022095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01851960 157.57022095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01851961 157.57023621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01851962 157.57025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01851963 157.57029724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01851964 157.57029724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01851965 157.57031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01851966 157.57031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01851967 157.57034302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01851968 157.57034302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01851969 157.57037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01851970 157.57037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01851971 157.57040405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01851972 157.57040405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01851973 157.57043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01851974 157.57043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01851975 157.57046509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01851976 157.57046509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01851977 157.57049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01851978 157.57049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01851979 157.57052612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01851980 157.57052612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01851981 157.57054138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01851982 157.57054138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01851983 157.57057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01851984 157.57057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01851985 157.57060242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01851986 157.57061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01851987 157.57063293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01851988 157.57063293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01851989 157.57066345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01851990 157.57066345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01851991 157.57069397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01851992 157.57069397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01851993 157.57070923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01851994 157.57070923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01851995 157.57073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01851996 157.57075500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01851997 157.57077026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01851998 157.57077026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01851999 157.57080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01852000 157.57080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01852001 157.57083130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01852002 157.57083130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01852003 157.57086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01852004 157.57086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01852005 157.57087708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01852006 157.57087708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01852007 157.57090759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01852008 157.57092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01852009 157.57093811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01852010 157.57093811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01852011 157.57096863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01852012 157.57096863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01852013 157.57099915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01852014 157.57099915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01852015 157.57101440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01852016 157.57101440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01852017 157.57104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01852018 157.57106018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01852019 157.57109070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01852020 157.57109070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01852021 157.57110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01852022 157.57110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01852023 157.57113647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01852024 157.57113647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01852025 157.57116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01852026 157.57116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01852027 157.57118225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01852028 157.57119751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01852029 157.57122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01852030 157.57122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01852031 157.57125854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01852032 157.57125854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01852033 157.57127380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01852034 157.57127380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01852035 157.57130432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01852036 157.57130432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01852037 157.57133484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01852038 157.57133484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01852039 157.57135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01852040 157.57136536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01852041 157.57139587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01852042 157.57139587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01852043 157.57141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01852044 157.57141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01852045 157.57144165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01852046 157.57144165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01852047 157.57147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01852048 157.57147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01852049 157.57148743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01852050 157.57148743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01852051 157.57151794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01852052 157.57151794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01852053 157.57154846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01852054 157.57154846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01852055 157.57156372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01852056 157.57156372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01852057 157.57159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01852058 157.57160950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01852059 157.57162476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01852060 157.57164001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01852061 157.57165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01852062 157.57165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01852063 157.57168579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01852064 157.57168579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01852065 157.57171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01852066 157.57171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01852067 157.57173157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01852068 157.57173157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01852069 157.57176208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01852070 157.57176208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01852071 157.57179260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01852072 157.57179260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01852073 157.57180786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01852074 157.57180786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01852075 157.57183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01852076 157.57183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01852077 157.57186890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01852078 157.57186890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01852079 157.57188416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01852080 157.57188416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01852081 157.57191467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01852082 157.57192993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01852083 157.57196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01852084 157.57196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01852085 157.57197571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01852086 157.57197571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01852087 157.57200623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01852088 157.57200623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01852089 157.57203674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01852090 157.57203674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01852091 157.57205200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01852092 157.57205200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01852093 157.57208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01852094 157.57208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01852095 157.57211304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01852096 157.57211304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01852097 157.57212830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01852098 157.57212830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01852099 157.57215881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01852100 157.57217407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01852101 157.57218933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01852102 157.57220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01852103 157.57221985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01852104 157.57221985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01852105 157.57225037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01852106 157.57225037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01852107 157.57228088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01852108 157.57228088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01852109 157.57229614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01852110 157.57231140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01852111 157.57234192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01852112 157.57234192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01852113 157.57235718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01852114 157.57235718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01852115 157.57238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01852116 157.57240295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01852117 157.57243347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01852118 157.57243347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01852119 157.57244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01852120 157.57244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01852121 157.57247925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01852122 157.57247925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01852123 157.57252502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01852124 157.57252502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01852125 157.57255554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01852126 157.57255554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01852127 157.57258606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01852128 157.57258606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01852129 157.57260132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01852130 157.57261658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01852131 157.57264709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01852132 157.57264709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01852133 157.57267761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01852134 157.57267761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01852135 157.57269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01852136 157.57269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01852137 157.57272339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01852138 157.57272339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01852139 157.57275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01852140 157.57276917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01852141 157.57276917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01852142 157.57278442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01852143 157.57281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01852144 157.57281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01852145 157.57284546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01852146 157.57284546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01852147 157.57286072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01852148 157.57286072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01852149 157.57289124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01852150 157.57289124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01852151 157.57292175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01852152 157.57292175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01852153 157.57293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01852154 157.57293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01852155 157.57296753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01852156 157.57296753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01852157 157.57299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01852158 157.57299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01852159 157.57301331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01852160 157.57301331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01852161 157.57304382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01852162 157.57305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01852163 157.57307434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01852164 157.57307434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01852165 157.57310486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01852166 157.57310486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01852167 157.57313538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01852168 157.57313538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01852169 157.57316589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01852170 157.57316589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01852171 157.57319641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01852172 157.57319641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01852173 157.57322693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01852174 157.57322693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01852175 157.57324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01852176 157.57324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01852177 157.57327271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01852178 157.57327271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01852179 157.57330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01852180 157.57330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01852181 157.57331848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01852182 157.57331848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01852183 157.57334900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01852184 157.57334900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01852185 157.57337952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01852186 157.57337952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01852187 157.57339478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01852188 157.57341003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01852189 157.57342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01852190 157.57344055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01852191 157.57347107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01852192 157.57347107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01852193 157.57348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01852194 157.57348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01852195 157.57351685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01852196 157.57351685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01852197 157.57354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01852198 157.57354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01852199 157.57356262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01852200 157.57356262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01852201 157.57359314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01852202 157.57359314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01852203 157.57362366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01852204 157.57362366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01852205 157.57363892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01852206 157.57363892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01852207 157.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01852208 157.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01852209 157.57371521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01852210 157.57371521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01852211 157.57373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01852212 157.57373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01852213 157.57376099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01852214 157.57376099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01852215 157.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01852216 157.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01852217 157.57380676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01852218 157.57382202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01852219 157.57385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01852220 157.57385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01852221 157.57386780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01852222 157.57386780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01852223 157.57389832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01852224 157.57389832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01852225 157.57392883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01852226 157.57392883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01852227 157.57395935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01852228 157.57395935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01852229 157.57398987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01852230 157.57398987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01852231 157.57402039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01852232 157.57402039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01852233 157.57403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01852234 157.57403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01852235 157.57406616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01852236 157.57406616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01852237 157.57409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01852238 157.57411194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01852239 157.57412720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01852240 157.57412720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01852241 157.57415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01852242 157.57415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01852243 157.57418823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01852244 157.57418823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01852245 157.57420349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01852246 157.57420349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01852247 157.57423401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01852248 157.57424927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01852249 157.57426453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01852250 157.57426453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01852251 157.57429504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01852252 157.57429504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01852253 157.57432556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01852254 157.57432556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01852255 157.57435608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01852256 157.57435608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01852257 157.57437134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01852258 157.57437134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01852259 157.57440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01852260 157.57441711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01852261 157.57443237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01852262 157.57443237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01852263 157.57446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01852264 157.57446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01852265 157.57449341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01852266 157.57449341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01852267 157.57450867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01852268 157.57450867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01852269 157.57453918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01852270 157.57453918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01852271 157.57456970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01852272 157.57458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01852273 157.57458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01852274 157.57460022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01852275 157.57463074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01852276 157.57463074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01852277 157.57466125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01852278 157.57466125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01852279 157.57467651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01852280 157.57467651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01852281 157.57470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01852282 157.57470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01852283 157.57473755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01852284 157.57475281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01852285 157.57476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01852286 157.57476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01852287 157.57479858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01852288 157.57479858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01852289 157.57482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01852290 157.57482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01852291 157.57484436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01852292 157.57485962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01852293 157.57489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01852294 157.57489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01852295 157.57490540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01852296 157.57490540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01852297 157.57493591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01852298 157.57493591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01852299 157.57496643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01852300 157.57496643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01852301 157.57498169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01852302 157.57499695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01852303 157.57502747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01852304 157.57502747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01852305 157.57505798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01852306 157.57505798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01852307 157.57507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01852308 157.57508850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01852309 157.57511902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01852310 157.57511902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01852311 157.57514954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01852312 157.57514954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01852313 157.57516479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01852314 157.57516479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01852315 157.57519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01852316 157.57519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01852317 157.57522583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01852318 157.57522583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01852319 157.57525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01852320 157.57525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01852321 157.57528687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01852322 157.57528687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01852323 157.57530212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01852324 157.57530212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01852325 157.57533264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01852326 157.57534790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01852327 157.57537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01852328 157.57537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01852329 157.57539368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01852330 157.57539368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01852331 157.57542419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01852332 157.57542419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01852333 157.57545471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01852334 157.57545471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01852335 157.57548523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01852336 157.57548523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01852337 157.57551575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01852338 157.57551575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01852339 157.57554626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01852340 157.57554626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01852341 157.57556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01852342 157.57556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01852343 157.57559204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01852344 157.57560730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01852345 157.57562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01852346 157.57562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01852347 157.57565308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01852348 157.57565308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01852349 157.57568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01852350 157.57568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01852351 157.57569885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01852352 157.57569885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01852353 157.57572937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01852354 157.57572937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01852355 157.57575989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01852356 157.57575989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01852357 157.57577515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01852358 157.57577515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01852359 157.57580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01852360 157.57582092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01852361 157.57585144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01852362 157.57585144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01852363 157.57586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01852364 157.57586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01852365 157.57589722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01852366 157.57589722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01852367 157.57592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01852368 157.57592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01852369 157.57594299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01852370 157.57594299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01852371 157.57597351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01852372 157.57597351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01852373 157.57600403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01852374 157.57601929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01852375 157.57603455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01852376 157.57603455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01852377 157.57606506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01852378 157.57606506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01852379 157.57609558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01852380 157.57609558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01852381 157.57611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01852382 157.57611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01852383 157.57614136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01852384 157.57615662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01852385 157.57617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01852386 157.57617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01852387 157.57620239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01852388 157.57620239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01852389 157.57623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01852390 157.57623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01852391 157.57626343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01852392 157.57626343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01852393 157.57627869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01852394 157.57629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01852395 157.57632446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01852396 157.57632446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01852397 157.57633972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01852398 157.57633972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01852399 157.57637024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01852400 157.57637024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01852401 157.57640076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01852402 157.57640076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01852403 157.57641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01852404 157.57641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01852405 157.57644653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01852406 157.57646179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01852407 157.57649231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01852408 157.57649231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01852409 157.57650757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01852410 157.57650757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01852411 157.57653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01852412 157.57653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01852413 157.57656860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01852414 157.57656860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01852415 157.57658386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01852416 157.57659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01852417 157.57662964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01852418 157.57662964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01852419 157.57666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01852420 157.57666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01852421 157.57667542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01852422 157.57667542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01852423 157.57670593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01852424 157.57670593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01852425 157.57673645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01852426 157.57673645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01852427 157.57675171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01852428 157.57676697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01852429 157.57679749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01852430 157.57679749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01852431 157.57681274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01852432 157.57681274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01852433 157.57684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01852434 157.57684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01852435 157.57687378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01852436 157.57687378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01852437 157.57688904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01852438 157.57690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01852439 157.57693481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01852440 157.57693481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01852441 157.57696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01852442 157.57696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01852443 157.57698059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01852444 157.57698059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01852445 157.57701111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01852446 157.57701111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01852447 157.57704163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01852448 157.57705688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01852449 157.57707214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01852450 157.57707214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01852451 157.57710266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01852452 157.57710266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01852453 157.57713318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01852454 157.57713318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01852455 157.57714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01852456 157.57714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01852457 157.57717896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01852458 157.57719421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01852459 157.57720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01852460 157.57720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01852461 157.57723999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01852462 157.57723999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01852463 157.57727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01852464 157.57727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01852465 157.57728577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01852466 157.57728577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01852467 157.57731628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01852468 157.57731628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01852469 157.57734680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01852470 157.57736206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01852471 157.57737732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01852472 157.57737732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01852473 157.57740784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01852474 157.57740784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01852475 157.57743835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01852476 157.57743835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01852477 157.57745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01852478 157.57745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01852479 157.57748413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01852480 157.57749939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01852481 157.57752991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01852482 157.57752991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01852483 157.57754517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01852484 157.57754517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01852485 157.57757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01852486 157.57757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01852487 157.57760620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01852488 157.57760620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01852489 157.57762146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01852490 157.57762146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01852491 157.57765198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01852492 157.57766724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01852493 157.57768250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01852494 157.57768250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01852495 157.57771301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01852496 157.57771301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01852497 157.57774353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01852498 157.57774353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01852499 157.57775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01852500 157.57775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01852501 157.57778931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01852502 157.57780457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01852503 157.57783508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01852504 157.57783508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01852505 157.57785034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01852506 157.57785034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01852507 157.57788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01852508 157.57788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01852509 157.57791138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01852510 157.57791138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01852511 157.57792664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01852512 157.57792664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01852513 157.57795715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01852514 157.57797241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01852515 157.57800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01852516 157.57800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01852517 157.57801819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01852518 157.57801819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01852519 157.57804871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01852520 157.57804871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01852521 157.57807922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01852522 157.57807922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01852523 157.57810974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01852524 157.57810974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01852525 157.57814026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01852526 157.57814026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01852527 157.57817078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01852528 157.57817078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01852529 157.57820129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01852530 157.57820129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01852531 157.57823181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01852532 157.57823181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01852533 157.57824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01852534 157.57824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01852535 157.57827759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01852536 157.57827759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01852537 157.57830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01852538 157.57832336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01852539 157.57833862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01852540 157.57833862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01852541 157.57836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01852542 157.57836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01852543 157.57839966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01852544 157.57839966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01852545 157.57841492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01852546 157.57841492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01852547 157.57844543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01852548 157.57846069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01852549 157.57847595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01852550 157.57847595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01852551 157.57850647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01852552 157.57850647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01852553 157.57853699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01852554 157.57853699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01852555 157.57856750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01852556 157.57856750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01852557 157.57858276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01852558 157.57858276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01852559 157.57861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01852560 157.57861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01852561 157.57864380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01852562 157.57864380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01852563 157.57867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01852564 157.57867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01852565 157.57870483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01852566 157.57870483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01852567 157.57872009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01852568 157.57872009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01852569 157.57875061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01852570 157.57875061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01852571 157.57879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01852572 157.57879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01852573 157.57881165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01852574 157.57881165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01852575 157.57884216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01852576 157.57884216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01852577 157.57887268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01852578 157.57887268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01852579 157.57888794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01852580 157.57890320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01852581 157.57893372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01852582 157.57893372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01852583 157.57896423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01852584 157.57896423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01852585 157.57897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01852586 157.57897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01852587 157.57901001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01852588 157.57901001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01852589 157.57904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01852590 157.57904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01852591 157.57905579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01852592 157.57905579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01852593 157.57908630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01852594 157.57910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01852595 157.57911682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01852596 157.57911682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01852597 157.57914734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01852598 157.57914734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01852599 157.57917786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01852600 157.57917786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01852601 157.57919312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01852602 157.57920837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01852603 157.57923889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01852604 157.57923889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01852605 157.57926941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01852606 157.57926941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01852607 157.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01852608 157.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01852609 157.57931519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01852610 157.57931519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01852611 157.57934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01852612 157.57936096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01852613 157.57937622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01852614 157.57937622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01852615 157.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01852616 157.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01852617 157.57943726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01852618 157.57943726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01852619 157.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01852620 157.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01852621 157.57949829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01852622 157.57949829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01852623 157.57951355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01852624 157.57951355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01852625 157.57954407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01852626 157.57954407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01852627 157.57957458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01852628 157.57957458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01852629 157.57958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01852630 157.57960510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01852631 157.57963562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01852632 157.57963562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01852633 157.57966614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01852634 157.57966614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01852635 157.57968140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01852636 157.57968140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01852637 157.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01852638 157.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01852639 157.57974243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01852640 157.57975769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01852641 157.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01852642 157.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01852643 157.57980347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01852644 157.57980347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01852645 157.57983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01852646 157.57983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01852647 157.57984924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01852648 157.57984924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01852649 157.57987976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01852650 157.57987976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01852651 157.57991028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01852652 157.57991028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01852653 157.57994080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01852654 157.57994080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01852655 157.57997131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01852656 157.57997131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01852657 157.57998657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01852658 157.57998657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01852659 157.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01852660 157.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01852661 157.58006287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01852662 157.58006287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01852663 157.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01852664 157.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01852665 157.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01852666 157.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01852667 157.58013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01852668 157.58013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01852669 157.58015442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01852670 157.58016968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01852671 157.58020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01852672 157.58020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01852673 157.58023071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01852674 157.58023071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01852675 157.58024597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01852676 157.58024597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01852677 157.58027649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01852678 157.58027649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01852679 157.58030701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01852680 157.58030701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01852681 157.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01852682 157.58033752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01852683 157.58036804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01852684 157.58036804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01852685 157.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01852686 157.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01852687 157.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01852688 157.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01852689 157.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01852690 157.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01852691 157.58045959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01852692 157.58047485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01852693 157.58050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01852694 157.58050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01852695 157.58053589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01852696 157.58053589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01852697 157.58055115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01852698 157.58055115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01852699 157.58058167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01852700 157.58058167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01852701 157.58061218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01852702 157.58061218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01852703 157.58062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01852704 157.58064270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01852705 157.58067322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01852706 157.58067322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01852707 157.58070374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01852708 157.58070374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01852709 157.58071899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01852710 157.58071899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01852711 157.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01852712 157.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01852713 157.58078003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01852714 157.58078003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01852715 157.58081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01852716 157.58081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01852717 157.58084106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01852718 157.58084106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01852719 157.58087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01852720 157.58087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01852721 157.58088684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01852722 157.58088684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01852723 157.58091736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01852724 157.58091736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01852725 157.58094788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01852726 157.58094788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01852727 157.58097839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01852728 157.58097839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01852729 157.58100891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01852730 157.58100891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01852731 157.58102417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01852732 157.58102417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01852733 157.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01852734 157.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01852735 157.58108521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01852736 157.58110046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01852737 157.58111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01852738 157.58111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01852739 157.58114624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01852740 157.58114624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01852741 157.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01852742 157.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01852743 157.58119202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01852744 157.58119202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01852745 157.58122253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01852746 157.58123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01852747 157.58126831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01852748 157.58126831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01852749 157.58128357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01852750 157.58128357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01852751 157.58131409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01852752 157.58131409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01852753 157.58134460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01852754 157.58134460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01852755 157.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01852756 157.58137512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01852757 157.58139038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01852758 157.58140564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01852759 157.58142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01852760 157.58142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01852761 157.58145142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01852762 157.58145142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01852763 157.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01852764 157.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01852765 157.58149719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01852766 157.58149719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01852767 157.58152771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01852768 157.58152771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01852769 157.58155823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01852770 157.58157349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01852771 157.58158875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01852772 157.58158875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01852773 157.58161926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01852774 157.58161926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01852775 157.58164978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01852776 157.58164978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01852777 157.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01852778 157.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01852779 157.58169556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01852780 157.58171082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01852781 157.58174133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01852782 157.58174133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01852783 157.58175659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01852784 157.58175659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01852785 157.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01852786 157.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01852787 157.58181763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01852788 157.58181763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01852789 157.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01852790 157.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01852791 157.58187866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01852792 157.58187866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01852793 157.58189392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01852794 157.58189392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01852795 157.58192444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01852796 157.58192444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01852797 157.58195496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01852798 157.58197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01852799 157.58198547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01852800 157.58198547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01852801 157.58201599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01852802 157.58201599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01852803 157.58204651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01852804 157.58204651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01852805 157.58206177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01852806 157.58206177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01852807 157.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01852808 157.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01852809 157.58213806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01852810 157.58213806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01852811 157.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01852812 157.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01852813 157.58218384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01852814 157.58218384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01852815 157.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01852816 157.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01852817 157.58222961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01852818 157.58224487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01852819 157.58226013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01852820 157.58227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01852821 157.58235168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01852822 157.58236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01852823 157.58236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01852824 157.58238220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01852825 157.58239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01852826 157.58241272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01852827 157.58244324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01852828 157.58244324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01852829 157.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01852830 157.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01852831 157.58248901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01852832 157.58248901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01852833 157.58251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01852834 157.58253479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01852835 157.58255005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01852836 157.58255005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01852837 157.58258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01852838 157.58258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01852839 157.58261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01852840 157.58261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01852841 157.58262634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01852842 157.58262634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01852843 157.58265686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01852844 157.58267212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01852845 157.58268738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01852846 157.58268738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01852847 157.58271790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01852848 157.58271790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01852849 157.58274841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01852850 157.58274841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01852851 157.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01852852 157.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01852853 157.58279419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01852854 157.58280945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01852855 157.58283997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01852856 157.58283997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01852857 157.58285522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01852858 157.58285522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01852859 157.58288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01852860 157.58288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01852861 157.58291626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01852862 157.58291626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01852863 157.58293152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01852864 157.58293152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01852865 157.58296204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01852866 157.58296204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01852867 157.58299255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01852868 157.58299255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01852869 157.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01852870 157.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01852871 157.58303833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01852872 157.58305359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01852873 157.58306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01852874 157.58308411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01852875 157.58309937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01852876 157.58309937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01852877 157.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01852878 157.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01852879 157.58316040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01852880 157.58316040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01852881 157.58317566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01852882 157.58317566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01852883 157.58320618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01852884 157.58320618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01852885 157.58323669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01852886 157.58323669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01852887 157.58325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01852888 157.58326721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01852889 157.58329773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01852890 157.58329773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01852891 157.58332825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01852892 157.58332825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01852893 157.58334351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01852894 157.58334351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01852895 157.58337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01852896 157.58338928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01852897 157.58340454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01852898 157.58340454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01852899 157.58343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01852900 157.58343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01852901 157.58346558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01852902 157.58346558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01852903 157.58348083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01852904 157.58348083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01852905 157.58351135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01852906 157.58351135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01852907 157.58354187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01852908 157.58355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01852909 157.58357239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01852910 157.58357239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01852911 157.58360291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01852912 157.58360291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01852913 157.58363342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01852914 157.58363342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01852915 157.58364868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01852916 157.58366394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01852917 157.58367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01852918 157.58369446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01852919 157.58372498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01852920 157.58372498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01852921 157.58374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01852922 157.58374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01852923 157.58377075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01852924 157.58377075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01852925 157.58380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01852926 157.58380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01852927 157.58381653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01852928 157.58381653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01852929 157.58384705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01852930 157.58384705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01852931 157.58387756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01852932 157.58387756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01852933 157.58390808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01852934 157.58390808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01852935 157.58393860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01852936 157.58393860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01852937 157.58396912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01852938 157.58396912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01852939 157.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01852940 157.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01852941 157.58401489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01852942 157.58401489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01852943 157.58404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01852944 157.58404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01852945 157.58407593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01852946 157.58407593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01852947 157.58410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01852948 157.58412170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01852949 157.58413696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01852950 157.58413696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01852951 157.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01852952 157.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01852953 157.58419800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01852954 157.58419800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01852955 157.58421326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01852956 157.58421326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01852957 157.58424377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01852958 157.58424377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01852959 157.58427429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01852960 157.58427429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01852961 157.58430481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01852962 157.58430481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01852963 157.58433533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01852964 157.58433533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01852965 157.58436584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01852966 157.58436584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01852967 157.58438110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01852968 157.58438110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01852969 157.58441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01852970 157.58442688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01852971 157.58444214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01852972 157.58444214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01852973 157.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01852974 157.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01852975 157.58450317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01852976 157.58450317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01852977 157.58451843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01852978 157.58451843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01852979 157.58454895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01852980 157.58454895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01852981 157.58457947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01852982 157.58459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01852983 157.58460999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01852984 157.58460999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01852985 157.58464050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01852986 157.58464050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01852987 157.58467102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01852988 157.58467102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01852989 157.58468628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01852990 157.58468628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01852991 157.58471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01852992 157.58473206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01852993 157.58476257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01852994 157.58476257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01852995 157.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01852996 157.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01852997 157.58480835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01852998 157.58480835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01852999 157.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01853000 157.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01853001 157.58485413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01853002 157.58486938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01853003 157.58488464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01853004 157.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01853005 157.58491516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01853006 157.58491516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01853007 157.58494568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01853008 157.58494568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01853009 157.58497620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01853010 157.58497620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01853011 157.58499146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01853012 157.58499146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01853013 157.58502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01853014 157.58503723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01853015 157.58506775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01853016 157.58508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01853017 157.58509827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01853018 157.58511353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01853019 157.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01853020 157.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01853021 157.58515930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01853022 157.58515930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01853023 157.58518982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01853024 157.58518982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01853025 157.58522034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01853026 157.58522034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01853027 157.58523560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01853028 157.58523560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01853029 157.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01853030 157.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01853031 157.58529663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01853032 157.58529663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01853033 157.58531189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01853034 157.58531189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01853035 157.58535767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01853036 157.58535767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01853037 157.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01853038 157.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01853039 157.58540344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01853040 157.58540344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01853041 157.58543396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01853042 157.58543396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01853043 157.58546448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01853044 157.58546448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01853045 157.58549500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01853046 157.58549500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01853047 157.58552551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01853048 157.58552551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01853049 157.58555603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01853050 157.58555603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01853051 157.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01853052 157.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01853053 157.58560181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01853054 157.58561707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01853055 157.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01853056 157.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01853057 157.58566284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01853058 157.58566284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01853059 157.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01853060 157.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01853061 157.58570862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01853062 157.58570862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01853063 157.58573914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01853064 157.58575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01853065 157.58578491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01853066 157.58578491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01853067 157.58580017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01853068 157.58580017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01853069 157.58583069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01853070 157.58583069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01853071 157.58586121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01853072 157.58586121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01853073 157.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01853074 157.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01853075 157.58590698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01853076 157.58590698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01853077 157.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01853078 157.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01853079 157.58595276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01853080 157.58596802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01853081 157.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01853082 157.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01853083 157.58602905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01853084 157.58602905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01853085 157.58604431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01853086 157.58604431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01853087 157.58607483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01853088 157.58609009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01853089 157.58610535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01853090 157.58610535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01853091 157.58613586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01853092 157.58613586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01853093 157.58616638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01853094 157.58616638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01853095 157.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01853096 157.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01853097 157.58621216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01853098 157.58622742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01853099 157.58625793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01853100 157.58625793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01853101 157.58627319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01853102 157.58627319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01853103 157.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01853104 157.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01853105 157.58633423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01853106 157.58633423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01853107 157.58634949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01853108 157.58636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01853109 157.58639526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01853110 157.58639526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01853111 157.58642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01853112 157.58642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01853113 157.58644104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01853114 157.58644104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01853115 157.58647156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01853116 157.58647156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01853117 157.58650208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01853118 157.58650208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01853119 157.58651733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01853120 157.58653259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01853121 157.58656311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01853122 157.58656311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01853123 157.58657837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01853124 157.58657837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01853125 157.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01853126 157.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01853127 157.58663940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01853128 157.58663940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01853129 157.58666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01853130 157.58666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01853131 157.58670044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01853132 157.58670044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01853133 157.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01853134 157.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01853135 157.58674622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01853136 157.58674622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01853137 157.58677673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01853138 157.58677673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01853139 157.58680725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01853140 157.58682251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01853141 157.58683777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01853142 157.58683777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01853143 157.58686829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01853144 157.58686829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01853145 157.58689880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01853146 157.58689880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01853147 157.58691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01853148 157.58691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01853149 157.58694458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01853150 157.58694458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01853151 157.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01853152 157.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01853153 157.58700562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01853154 157.58700562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01853155 157.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01853156 157.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01853157 157.58706665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01853158 157.58706665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01853159 157.58708191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01853160 157.58708191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01853161 157.58711243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01853162 157.58712769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01853163 157.58714294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01853164 157.58714294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01853165 157.58717346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01853166 157.58717346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01853167 157.58720398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01853168 157.58720398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01853169 157.58721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01853170 157.58721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01853171 157.58724976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01853172 157.58726501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01853173 157.58729553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01853174 157.58729553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01853175 157.58731079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01853176 157.58731079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01853177 157.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01853178 157.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01853179 157.58737183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01853180 157.58737183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01853181 157.58738708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01853182 157.58738708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01853183 157.58741760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01853184 157.58743286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01853185 157.58746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01853186 157.58746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01853187 157.58747864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01853188 157.58747864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01853189 157.58750916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01853190 157.58750916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01853191 157.58753967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01853192 157.58753967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01853193 157.58755493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01853194 157.58757019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01853195 157.58760071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01853196 157.58760071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01853197 157.58761597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01853198 157.58761597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01853199 157.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01853200 157.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01853201 157.58767700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01853202 157.58767700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01853203 157.58769226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01853204 157.58769226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01853205 157.58772278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01853206 157.58773804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01853207 157.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01853208 157.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01853209 157.58778381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01853210 157.58778381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01853211 157.58781433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01853212 157.58781433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01853213 157.58784485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01853214 157.58784485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01853215 157.58786011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01853216 157.58787537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01853217 157.58790588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01853218 157.58790588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01853219 157.58793640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01853220 157.58793640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01853221 157.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01853222 157.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01853223 157.58798218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01853224 157.58798218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01853225 157.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01853226 157.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01853227 157.58802795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01853228 157.58804321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01853229 157.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01853230 157.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01853231 157.58808899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01853232 157.58808899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01853233 157.58811951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01853234 157.58811951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01853235 157.58815002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01853236 157.58815002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01853237 157.58816528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01853238 157.58818054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01853239 157.58821106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01853240 157.58821106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01853241 157.58824158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01853242 157.58824158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01853243 157.58825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01853244 157.58825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01853245 157.58828735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01853246 157.58828735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01853247 157.58831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01853248 157.58833313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01853249 157.58834839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01853250 157.58834839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01853251 157.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01853252 157.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01853253 157.58840942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01853254 157.58840942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01853255 157.58842468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01853256 157.58842468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01853257 157.58845520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01853258 157.58845520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01853259 157.58848572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01853260 157.58848572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01853261 157.58851624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01853262 157.58851624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01853263 157.58854675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01853264 157.58854675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01853265 157.58856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01853266 157.58856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01853267 157.58859253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01853268 157.58859253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01853269 157.58862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01853270 157.58863831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01853271 157.58865356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01853272 157.58865356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01853273 157.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01853274 157.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01853275 157.58871460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01853276 157.58871460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01853277 157.58872986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01853278 157.58872986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01853279 157.58876038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01853280 157.58876038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01853281 157.58879089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01853282 157.58880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01853283 157.58882141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01853284 157.58882141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01853285 157.58885193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01853286 157.58885193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01853287 157.58888245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01853288 157.58888245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01853289 157.58889771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01853290 157.58889771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01853291 157.58892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01853292 157.58894348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01853293 157.58897400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01853294 157.58897400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01853295 157.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01853296 157.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01853297 157.58901978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01853298 157.58901978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01853299 157.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01853300 157.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01853301 157.58906555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01853302 157.58906555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01853303 157.58909607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01853304 157.58911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01853305 157.58912659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01853306 157.58912659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01853307 157.58915710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01853308 157.58915710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01853309 157.58918762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01853310 157.58918762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01853311 157.58920288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01853312 157.58920288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01853313 157.58923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01853314 157.58924866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01853315 157.58927917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01853316 157.58927917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01853317 157.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01853318 157.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01853319 157.58932495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01853320 157.58932495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01853321 157.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01853322 157.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01853323 157.58937073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01853324 157.58937073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01853325 157.58940125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01853326 157.58941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01853327 157.58944702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01853328 157.58944702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01853329 157.58946228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01853330 157.58946228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01853331 157.58949280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01853332 157.58949280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01853333 157.58952332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01853334 157.58952332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01853335 157.58953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01853336 157.58955383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01853337 157.58958435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01853338 157.58958435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01853339 157.58959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01853340 157.58959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01853341 157.58963013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01853342 157.58963013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01853343 157.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01853344 157.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01853345 157.58967590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01853346 157.58967590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01853347 157.58970642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01853348 157.58972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01853349 157.58975220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01853350 157.58975220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01853351 157.58976746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01853352 157.58976746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01853353 157.58979797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01853354 157.58979797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01853355 157.58982849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01853356 157.58982849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01853357 157.58984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01853358 157.58985901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01853359 157.58988953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01853360 157.58988953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01853361 157.58992004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01853362 157.58992004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01853363 157.58993530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01853364 157.58993530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01853365 157.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01853366 157.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01853367 157.58999634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01853368 157.58999634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01853369 157.59001160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01853370 157.59002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01853371 157.59005737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01853372 157.59005737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01853373 157.59007263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01853374 157.59007263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01853375 157.59010315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01853376 157.59010315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01853377 157.59013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01853378 157.59013367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01853379 157.59016418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01853380 157.59016418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01853381 157.59019470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01853382 157.59019470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01853383 157.59022522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01853384 157.59022522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01853385 157.59024048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01853386 157.59024048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01853387 157.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01853388 157.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01853389 157.59030151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01853390 157.59031677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01853391 157.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01853392 157.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01853393 157.59036255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01853394 157.59036255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01853395 157.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01853396 157.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01853397 157.59040833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01853398 157.59040833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01853399 157.59043884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01853400 157.59045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01853401 157.59046936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01853402 157.59046936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01853403 157.59049988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01853404 157.59049988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01853405 157.59053040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01853406 157.59053040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01853407 157.59056091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01853408 157.59056091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01853409 157.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01853410 157.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01853411 157.59060669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01853412 157.59062195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01853413 157.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01853414 157.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01853415 157.59066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01853416 157.59066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01853417 157.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01853418 157.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01853419 157.59071350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01853420 157.59071350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01853421 157.59074402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01853422 157.59075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01853423 157.59078979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01853424 157.59078979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01853425 157.59080505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01853426 157.59080505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01853427 157.59083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01853428 157.59083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01853429 157.59086609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01853430 157.59086609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01853431 157.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01853432 157.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01853433 157.59091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01853434 157.59092712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01853435 157.59095764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01853436 157.59095764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01853437 157.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01853438 157.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01853439 157.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01853440 157.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01853441 157.59103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01853442 157.59103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01853443 157.59104919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01853444 157.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01853445 157.59109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01853446 157.59109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01853447 157.59111023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01853448 157.59111023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01853449 157.59114075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01853450 157.59114075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01853451 157.59117126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01853452 157.59117126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01853453 157.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01853454 157.59120178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01853455 157.59123230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01853456 157.59123230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01853457 157.59126282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01853458 157.59126282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01853459 157.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01853460 157.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01853461 157.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01853462 157.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01853463 157.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01853464 157.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01853465 157.59135437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01853466 157.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01853467 157.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01853468 157.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01853469 157.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01853470 157.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01853471 157.59144592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01853472 157.59144592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01853473 157.59147644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01853474 157.59147644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01853475 157.59150696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01853476 157.59150696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01853477 157.59153748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01853478 157.59153748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01853479 157.59156799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01853480 157.59156799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01853481 157.59158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01853482 157.59158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01853483 157.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01853484 157.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01853485 157.59164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01853486 157.59164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01853487 157.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01853488 157.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01853489 157.59170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01853490 157.59170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01853491 157.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01853492 157.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01853493 157.59175110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01853494 157.59175110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01853495 157.59178162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01853496 157.59178162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01853497 157.59181213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01853498 157.59182739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01853499 157.59184265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01853500 157.59184265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01853501 157.59187317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01853502 157.59187317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01853503 157.59190369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01853504 157.59190369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01853505 157.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01853506 157.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01853507 157.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01853508 157.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01853509 157.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01853510 157.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01853511 157.59201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01853512 157.59201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01853513 157.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01853514 157.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01853515 157.59207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01853516 157.59207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01853517 157.59208679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01853518 157.59208679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01853519 157.59211731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01853520 157.59213257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01853521 157.59214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01853522 157.59214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01853523 157.59217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01853524 157.59217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01853525 157.59220886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01853526 157.59220886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01853527 157.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01853528 157.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01853529 157.59225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01853530 157.59226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01853531 157.59230042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01853532 157.59230042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01853533 157.59231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01853534 157.59231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01853535 157.59234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01853536 157.59234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01853537 157.59237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01853538 157.59237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01853539 157.59239197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01853540 157.59239197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01853541 157.59243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01853542 157.59243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01853543 157.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01853544 157.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01853545 157.59248352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01853546 157.59248352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01853547 157.59251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01853548 157.59251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01853549 157.59254456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01853550 157.59254456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01853551 157.59255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01853552 157.59257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01853553 157.59260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01853554 157.59260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01853555 157.59262085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01853556 157.59262085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01853557 157.59265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01853558 157.59265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01853559 157.59268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01853560 157.59268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01853561 157.59269714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01853562 157.59271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01853563 157.59274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01853564 157.59274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01853565 157.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01853566 157.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01853567 157.59278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01853568 157.59278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01853569 157.59281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01853570 157.59281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01853571 157.59284973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01853572 157.59284973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01853573 157.59286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01853574 157.59288025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01853575 157.59291077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01853576 157.59291077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01853577 157.59294128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01853578 157.59294128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01853579 157.59295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01853580 157.59295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01853581 157.59298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01853582 157.59298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01853583 157.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01853584 157.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01853585 157.59304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01853586 157.59304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01853587 157.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01853588 157.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01853589 157.59309387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01853590 157.59309387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01853591 157.59312439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01853592 157.59312439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01853593 157.59315491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01853594 157.59317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01853595 157.59318542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01853596 157.59318542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01853597 157.59321594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01853598 157.59321594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01853599 157.59324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01853600 157.59324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01853601 157.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01853602 157.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01853603 157.59329224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01853604 157.59329224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01853605 157.59332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01853606 157.59333801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01853607 157.59335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01853608 157.59335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01853609 157.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01853610 157.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01853611 157.59341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01853612 157.59341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01853613 157.59342957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01853614 157.59342957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01853615 157.59346008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01853616 157.59347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01853617 157.59349060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01853618 157.59349060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01853619 157.59352112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01853620 157.59352112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01853621 157.59355164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01853622 157.59355164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01853623 157.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01853624 157.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01853625 157.59359741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01853626 157.59359741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01853627 157.59362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01853628 157.59364319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01853629 157.59365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01853630 157.59365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01853631 157.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01853632 157.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01853633 157.59371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01853634 157.59371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01853635 157.59373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01853636 157.59373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01853637 157.59376526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01853638 157.59378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01853639 157.59379578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01853640 157.59381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01853641 157.59382629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01853642 157.59382629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01853643 157.59385681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01853644 157.59385681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01853645 157.59388733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01853646 157.59388733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01853647 157.59390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01853648 157.59390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01853649 157.59393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01853650 157.59394836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01853651 157.59396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01853652 157.59396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01853653 157.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01853654 157.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01853655 157.59402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01853656 157.59402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01853657 157.59405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01853658 157.59405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01853659 157.59407043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01853660 157.59408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01853661 157.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01853662 157.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01853663 157.59413147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01853664 157.59413147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01853665 157.59416199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01853666 157.59416199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01853667 157.59419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01853668 157.59419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01853669 157.59420776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01853670 157.59420776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01853671 157.59423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01853672 157.59425354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01853673 157.59428406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01853674 157.59428406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01853675 157.59429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01853676 157.59429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01853677 157.59432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01853678 157.59432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01853679 157.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01853680 157.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01853681 157.59437561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01853682 157.59439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01853683 157.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01853684 157.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01853685 157.59445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01853686 157.59445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01853687 157.59446716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01853688 157.59446716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01853689 157.59449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01853690 157.59449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01853691 157.59452820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01853692 157.59452820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01853693 157.59454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01853694 157.59455872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01853695 157.59458923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01853696 157.59458923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01853697 157.59460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01853698 157.59460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01853699 157.59463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01853700 157.59463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01853701 157.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01853702 157.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01853703 157.59468079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01853704 157.59469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01853705 157.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01853706 157.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01853707 157.59475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01853708 157.59475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01853709 157.59477234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01853710 157.59477234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01853711 157.59480286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01853712 157.59480286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01853713 157.59483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01853714 157.59483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01853715 157.59484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01853716 157.59486389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01853717 157.59489441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01853718 157.59489441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01853719 157.59492493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01853720 157.59492493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01853721 157.59494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01853722 157.59494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01853723 157.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01853724 157.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01853725 157.59500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01853726 157.59500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01853727 157.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01853728 157.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01853729 157.59506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01853730 157.59506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01853731 157.59507751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01853732 157.59507751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01853733 157.59510803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01853734 157.59510803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01853735 157.59513855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01853736 157.59513855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01853737 157.59516907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01853738 157.59516907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01853739 157.59519958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01853740 157.59519958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01853741 157.59523010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01853742 157.59523010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01853743 157.59524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01853744 157.59524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01853745 157.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01853746 157.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01853747 157.59530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01853748 157.59532166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01853749 157.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01853750 157.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01853751 157.59536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01853752 157.59536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01853753 157.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01853754 157.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01853755 157.59541321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01853756 157.59541321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01853757 157.59544373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01853758 157.59544373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01853759 157.59547424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01853760 157.59547424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01853761 157.59550476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01853762 157.59550476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01853763 157.59553528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01853764 157.59553528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01853765 157.59556580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01853766 157.59556580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01853767 157.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01853768 157.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01853769 157.59561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01853770 157.59562683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01853771 157.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01853772 157.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01853773 157.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01853774 157.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01853775 157.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01853776 157.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01853777 157.59571838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01853778 157.59571838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01853779 157.59574890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01853780 157.59574890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01853781 157.59577942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01853782 157.59579468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01853783 157.59580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01853784 157.59580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01853785 157.59584045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01853786 157.59584045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01853787 157.59587097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01853788 157.59587097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01853789 157.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01853790 157.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01853791 157.59591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01853792 157.59593201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01853793 157.59596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01853794 157.59596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01853795 157.59597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01853796 157.59597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01853797 157.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01853798 157.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01853799 157.59603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01853800 157.59603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01853801 157.59605408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01853802 157.59605408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01853803 157.59608459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01853804 157.59609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01853805 157.59611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01853806 157.59611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01853807 157.59614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01853808 157.59614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01853809 157.59617615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01853810 157.59617615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01853811 157.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01853812 157.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01853813 157.59622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01853814 157.59623718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01853815 157.59626770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01853816 157.59626770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01853817 157.59628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01853818 157.59628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01853819 157.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01853820 157.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01853821 157.59634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01853822 157.59634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01853823 157.59635925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01853824 157.59635925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01853825 157.59638977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01853826 157.59640503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01853827 157.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01853828 157.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01853829 157.59645081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01853830 157.59645081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01853831 157.59648132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01853832 157.59648132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01853833 157.59651184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01853834 157.59651184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01853835 157.59652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01853836 157.59654236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01853837 157.59657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01853838 157.59657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01853839 157.59658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01853840 157.59658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01853841 157.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01853842 157.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -01853843 157.59664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01853844 157.59664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -01853845 157.59666443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01853846 157.59666443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -01853847 157.59669495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01853848 157.59671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -01853849 157.59674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01853850 157.59674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -01853851 157.59675598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01853852 157.59675598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -01853853 157.59678650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01853854 157.59678650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -01853855 157.59681702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01853856 157.59681702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -01853857 157.59683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01853858 157.59684753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -01853859 157.59687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01853860 157.59687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -01853861 157.59690857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01853862 157.59690857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -01853863 157.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01853864 157.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -01853865 157.59695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01853866 157.59695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -01853867 157.59698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01853868 157.59698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -01853869 157.59700012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01853870 157.59701538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -01853871 157.59704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01853872 157.59704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -01853873 157.59707642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01853874 157.59707642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -01853875 157.59709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01853876 157.59709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -01853877 157.59712219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01853878 157.59712219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -01853879 157.59715271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01853880 157.59715271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -01853881 157.59718323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01853882 157.59718323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -01853883 157.59721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01853884 157.59721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -01853885 157.59722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01853886 157.59722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -01853887 157.59725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01853888 157.59725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -01853889 157.59729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01853890 157.59730530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -01853891 157.59732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01853892 157.59732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -01853893 157.59735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01853894 157.59735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -01853895 157.59738159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01853896 157.59738159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -01853897 157.59739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01853898 157.59739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -01853899 157.59742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01853900 157.59742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -01853901 157.59745789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01853902 157.59747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -01853903 157.59748840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01853904 157.59748840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -01853905 157.59751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01853906 157.59751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -01853907 157.59754944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01853908 157.59754944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -01853909 157.59756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01853910 157.59756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -01853911 157.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01853912 157.59761047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -01853913 157.59762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01853914 157.59762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -01853915 157.59765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01853916 157.59765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -01853917 157.59768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01853918 157.59768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -01853919 157.59770203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01853920 157.59770203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -01853921 157.59773254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01853922 157.59773254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -01853923 157.59776306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01853924 157.59777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -01853925 157.59779358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01853926 157.59779358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -01853927 157.59782410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01853928 157.59782410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -01853929 157.59785461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01853930 157.59785461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -01853931 157.59786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01853932 157.59786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -01853933 157.59790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01853934 157.59791565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -01853935 157.59794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01853936 157.59794617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -01853937 157.59796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01853938 157.59796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -01853939 157.59800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01853940 157.59800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -01853941 157.59803772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01853942 157.59803772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -01853943 157.59808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01853944 157.59809875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -01853945 157.59811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01853946 157.59811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -01853947 157.59814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01853948 157.59814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -01853949 157.59817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01853950 157.59817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -01853951 157.59819031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01853952 157.59819031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -01853953 157.59822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01853954 157.59823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -01853955 157.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01853956 157.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -01853957 157.59828186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01853958 157.59828186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -01853959 157.59831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01853960 157.59831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -01853961 157.59834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01853962 157.59834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -01853963 157.59837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01853964 157.59837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -01853965 157.59840393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01853966 157.59840393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -01853967 157.59841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01853968 157.59841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -01853969 157.59844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01853970 157.59844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -01853971 157.59848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01853972 157.59849548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -01853973 157.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01853974 157.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -01853975 157.59854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01853976 157.59854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -01853977 157.59857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01853978 157.59857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -01853979 157.59858704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01853980 157.59858704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -01853981 157.59863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01853982 157.59863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -01853983 157.59866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01853984 157.59866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -01853985 157.59867859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01853986 157.59867859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -01853987 157.59870911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01853988 157.59870911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -01853989 157.59873962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01853990 157.59873962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -01853991 157.59877014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01853992 157.59877014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -01853993 157.59880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01853994 157.59880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -01853995 157.59881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01853996 157.59881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -01853997 157.59884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01853998 157.59884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -01853999 157.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01854000 157.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -01854001 157.59890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01854002 157.59890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -01854003 157.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01854004 157.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -01854005 157.59896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01854006 157.59896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -01854007 157.59898376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01854008 157.59898376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -01854009 157.59901428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01854010 157.59901428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -01854011 157.59904480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01854012 157.59904480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -01854013 157.59906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01854014 157.59906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -01854015 157.59910583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01854016 157.59910583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -01854017 157.59913635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01854018 157.59913635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -01854019 157.59915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01854020 157.59915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -01854021 157.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01854022 157.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -01854023 157.59921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01854024 157.59921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -01854025 157.59924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01854026 157.59924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -01854027 157.59927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01854028 157.59927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -01854029 157.59928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01854030 157.59928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -01854031 157.59931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01854032 157.59931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -01854033 157.59934998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01854034 157.59936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -01854035 157.59936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01854036 157.59938049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -01854037 157.59941101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01854038 157.59941101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -01854039 157.59944153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01854040 157.59944153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -01854041 157.59945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01854042 157.59945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -01854043 157.59948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01854044 157.59950256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -01854045 157.59953308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01854046 157.59953308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -01854047 157.59954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01854048 157.59954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -01854049 157.59957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01854050 157.59957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -01854051 157.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01854052 157.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -01854053 157.59962463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01854054 157.59963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -01854055 157.59967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01854056 157.59967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -01854057 157.59968567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01854058 157.59968567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -01854059 157.59971619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01854060 157.59971619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -01854061 157.59974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01854062 157.59974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -01854063 157.59977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01854064 157.59977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -01854065 157.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01854066 157.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -01854067 157.59982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01854068 157.59983826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -01854069 157.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01854070 157.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -01854071 157.59988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01854072 157.59988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -01854073 157.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01854074 157.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -01854075 157.59992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01854076 157.59992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -01854077 157.59996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01854078 157.59997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -01854079 157.60000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01854080 157.60000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -01854081 157.60002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01854082 157.60002136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -01854083 157.60005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01854084 157.60005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -01854085 157.60008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01854086 157.60008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -01854087 157.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01854088 157.60011292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -01854089 157.60012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01854090 157.60014343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -01854091 157.60017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01854092 157.60017395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -01854093 157.60018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01854094 157.60018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -01854095 157.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01854096 157.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -01854097 157.60025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01854098 157.60025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -01854099 157.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01854100 157.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -01854101 157.60031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01854102 157.60031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -01854103 157.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01854104 157.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -01854105 157.60037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01854106 157.60037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -01854107 157.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01854108 157.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -01854109 157.60041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01854110 157.60041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -01854111 157.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01854112 157.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -01854113 157.60047913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01854114 157.60047913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -01854115 157.60050964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01854116 157.60050964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -01854117 157.60054016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01854118 157.60054016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -01854119 157.60057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01854120 157.60057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -01854121 157.60060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01854122 157.60060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -01854123 157.60063171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01854124 157.60063171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -01854125 157.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01854126 157.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -01854127 157.60067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01854128 157.60067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -01854129 157.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01854130 157.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -01854131 157.60072327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01854132 157.60072327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -01854133 157.60075378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01854134 157.60075378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -01854135 157.60078430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01854136 157.60078430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -01854137 157.60081482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01854138 157.60081482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -01854139 157.60084534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01854140 157.60084534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -01854141 157.60087585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01854142 157.60087585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -01854143 157.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01854144 157.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -01854145 157.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01854146 157.60093689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -01854147 157.60096741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01854148 157.60096741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -01854149 157.60098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01854150 157.60098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -01854151 157.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01854152 157.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -01854153 157.60104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01854154 157.60104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -01854155 157.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01854156 157.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -01854157 157.60110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01854158 157.60110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -01854159 157.60112000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01854160 157.60112000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -01854161 157.60115051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01854162 157.60115051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -01854163 157.60118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01854164 157.60118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -01854165 157.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01854166 157.60121155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -01854167 157.60124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01854168 157.60124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -01854169 157.60127258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01854170 157.60127258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -01854171 157.60128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01854172 157.60128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -01854173 157.60131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01854174 157.60133362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -01854175 157.60134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01854176 157.60136414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -01854177 157.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01854178 157.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -01854179 157.60140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01854180 157.60140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -01854181 157.60144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01854182 157.60144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -01854183 157.60145569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01854184 157.60145569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -01854185 157.60148621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01854186 157.60150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -01854187 157.60151672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01854188 157.60151672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -01854189 157.60154724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01854190 157.60154724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -01854191 157.60157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01854192 157.60157776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -01854193 157.60159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01854194 157.60159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -01854195 157.60163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01854196 157.60163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -01854197 157.60166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01854198 157.60166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -01854199 157.60168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01854200 157.60168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -01854201 157.60171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01854202 157.60171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -01854203 157.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01854204 157.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -01854205 157.60176086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01854206 157.60177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -01854207 157.60180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01854208 157.60180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -01854209 157.60183716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01854210 157.60183716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -01854211 157.60185242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01854212 157.60185242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -01854213 157.60188293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01854214 157.60188293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -01854215 157.60191345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01854216 157.60191345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -01854217 157.60194397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01854218 157.60194397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -01854219 157.60197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01854220 157.60197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -01854221 157.60198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01854222 157.60198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -01854223 157.60202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01854224 157.60202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -01854225 157.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01854226 157.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -01854227 157.60206604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01854228 157.60206604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -01854229 157.60209656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01854230 157.60209656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -01854231 157.60214233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01854232 157.60214233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -01854233 157.60215759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01854234 157.60215759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -01854235 157.60218811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01854236 157.60218811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -01854237 157.60221863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01854238 157.60221863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -01854239 157.60223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01854240 157.60224915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -01854241 157.60227966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01854242 157.60227966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -01854243 157.60231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01854244 157.60231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -01854245 157.60232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01854246 157.60232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -01854247 157.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01854248 157.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -01854249 157.60238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01854250 157.60238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -01854251 157.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01854252 157.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -01854253 157.60244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01854254 157.60244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -01854255 157.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01854256 157.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -01854257 157.60249329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01854258 157.60249329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -01854259 157.60252380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01854260 157.60253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -01854261 157.60255432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01854262 157.60255432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -01854263 157.60258484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01854264 157.60258484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -01854265 157.60261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01854266 157.60261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -01854267 157.60263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01854268 157.60263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -01854269 157.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01854270 157.60267639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -01854271 157.60270691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01854272 157.60270691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -01854273 157.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01854274 157.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -01854275 157.60275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01854276 157.60275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -01854277 157.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01854278 157.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -01854279 157.60279846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01854280 157.60281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -01854281 157.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01854282 157.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -01854283 157.60287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01854284 157.60287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -01854285 157.60289001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01854286 157.60289001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -01854287 157.60292053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01854288 157.60293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -01854289 157.60295105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01854290 157.60295105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -01854291 157.60298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01854292 157.60298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -01854293 157.60301208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01854294 157.60301208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -01854295 157.60302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01854296 157.60304260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -01854297 157.60307312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01854298 157.60307312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -01854299 157.60310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01854300 157.60310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -01854301 157.60311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01854302 157.60311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -01854303 157.60314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01854304 157.60314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -01854305 157.60317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01854306 157.60317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -01854307 157.60319519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01854308 157.60321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -01854309 157.60324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01854310 157.60324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -01854311 157.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01854312 157.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -01854313 157.60328674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01854314 157.60328674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -01854315 157.60331726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01854316 157.60331726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -01854317 157.60334778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01854318 157.60334778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -01854319 157.60336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01854320 157.60337830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -01854321 157.60340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01854322 157.60340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -01854323 157.60342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01854324 157.60342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -01854325 157.60345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01854326 157.60345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -01854327 157.60348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01854328 157.60350037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -01854329 157.60350037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01854330 157.60351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -01854331 157.60353088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01854332 157.60354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -01854333 157.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01854334 157.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -01854335 157.60359192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01854336 157.60359192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -01854337 157.60362244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01854338 157.60362244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -01854339 157.60365295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01854340 157.60366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -01854341 157.60368347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01854342 157.60368347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -01854343 157.60371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01854344 157.60371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -01854345 157.60374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01854346 157.60374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -01854347 157.60375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01854348 157.60375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -01854349 157.60379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01854350 157.60379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -01854351 157.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01854352 157.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -01854353 157.60385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01854354 157.60385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -01854355 157.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01854356 157.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -01854357 157.60389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01854358 157.60389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -01854359 157.60392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01854360 157.60392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -01854361 157.60395813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01854362 157.60397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -01854363 157.60398865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01854364 157.60398865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -01854365 157.60401917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01854366 157.60401917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -01854367 157.60404968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01854368 157.60404968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -01854369 157.60406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01854370 157.60406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -01854371 157.60409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01854372 157.60409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -01854373 157.60412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01854374 157.60414124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -01854375 157.60415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01854376 157.60415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -01854377 157.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01854378 157.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -01854379 157.60421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01854380 157.60421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -01854381 157.60423279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01854382 157.60423279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -01854383 157.60426331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01854384 157.60427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -01854385 157.60429382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01854386 157.60429382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -01854387 157.60432434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01854388 157.60432434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -01854389 157.60435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01854390 157.60435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -01854391 157.60437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01854392 157.60438538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -01854393 157.60441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01854394 157.60441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -01854395 157.60444641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01854396 157.60444641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -01854397 157.60446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01854398 157.60446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -01854399 157.60450745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01854400 157.60450745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -01854401 157.60453796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01854402 157.60453796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -01854403 157.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01854404 157.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -01854405 157.60458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01854406 157.60459900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -01854407 157.60461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01854408 157.60462952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -01854409 157.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01854410 157.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -01854411 157.60469055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01854412 157.60469055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -01854413 157.60472107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01854414 157.60472107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -01854415 157.60475159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01854416 157.60475159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -01854417 157.60476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01854418 157.60478210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -01854419 157.60481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01854420 157.60481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -01854421 157.60484314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01854422 157.60484314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -01854423 157.60487366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01854424 157.60487366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -01854425 157.60490417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01854426 157.60490417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -01854427 157.60494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01854428 157.60494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -01854429 157.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01854430 157.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -01854431 157.60501099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01854432 157.60501099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -01854433 157.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01854434 157.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -01854435 157.60507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01854436 157.60507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -01854437 157.60508728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01854438 157.60508728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -01854439 157.60511780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01854440 157.60511780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -01854441 157.60516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01854442 157.60516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -01854443 157.60517883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01854444 157.60517883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -01854445 157.60520935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01854446 157.60520935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -01854447 157.60523987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01854448 157.60525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -01854449 157.60527039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01854450 157.60527039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -01854451 157.60530090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01854452 157.60530090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -01854453 157.60533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01854454 157.60533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -01854455 157.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01854456 157.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -01854457 157.60537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01854458 157.60537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -01854459 157.60540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01854460 157.60540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -01854461 157.60543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01854462 157.60543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -01854463 157.60546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01854464 157.60546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -01854465 157.60548401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01854466 157.60548401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -01854467 157.60551453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01854468 157.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -01854469 157.60554504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01854470 157.60556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -01854471 157.60557556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01854472 157.60557556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -01854473 157.60560608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01854474 157.60560608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -01854475 157.60563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01854476 157.60563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -01854477 157.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01854478 157.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -01854479 157.60568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01854480 157.60569763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -01854481 157.60572815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01854482 157.60572815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -01854483 157.60574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01854484 157.60574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -01854485 157.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01854486 157.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -01854487 157.60580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01854488 157.60580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -01854489 157.60581970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01854490 157.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -01854491 157.60586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01854492 157.60586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -01854493 157.60588074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01854494 157.60588074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -01854495 157.60591125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01854496 157.60591125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -01854497 157.60594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01854498 157.60594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -01854499 157.60597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01854500 157.60597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -01854501 157.60598755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01854502 157.60600281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -01854503 157.60603333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01854504 157.60603333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -01854505 157.60604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01854506 157.60604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -01854507 157.60610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01854508 157.60610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -01854509 157.60612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01854510 157.60612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -01854511 157.60617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01854512 157.60617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -01854513 157.60620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01854514 157.60620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -01854515 157.60621643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01854516 157.60621643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -01854517 157.60624695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01854518 157.60626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -01854519 157.60627747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01854520 157.60627747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -01854521 157.60630798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01854522 157.60630798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -01854523 157.60633850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01854524 157.60633850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -01854525 157.60636902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01854526 157.60636902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -01854527 157.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01854528 157.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -01854529 157.60641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01854530 157.60643005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -01854531 157.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01854532 157.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -01854533 157.60647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01854534 157.60647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -01854535 157.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01854536 157.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -01854537 157.60652161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01854538 157.60652161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -01854539 157.60655212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01854540 157.60655212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -01854541 157.60658264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01854542 157.60658264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -01854543 157.60659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01854544 157.60659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -01854545 157.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01854546 157.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -01854547 157.60665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01854548 157.60667419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -01854549 157.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01854550 157.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -01854551 157.60671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01854552 157.60671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -01854553 157.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01854554 157.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -01854555 157.60678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01854556 157.60678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -01854557 157.60682678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01854558 157.60682678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -01854559 157.60684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01854560 157.60684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -01854561 157.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01854562 157.60688782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -01854563 157.60691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01854564 157.60691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -01854565 157.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01854566 157.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -01854567 157.60696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01854568 157.60696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -01854569 157.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01854570 157.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -01854571 157.60702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01854572 157.60702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -01854573 157.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01854574 157.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -01854575 157.60707092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01854576 157.60708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -01854577 157.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01854578 157.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -01854579 157.60714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01854580 157.60714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -01854581 157.60716248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01854582 157.60716248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -01854583 157.60719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01854584 157.60719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -01854585 157.60722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01854586 157.60722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -01854587 157.60723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01854588 157.60725403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -01854589 157.60726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01854590 157.60728455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -01854591 157.60731506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01854592 157.60731506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01854593 157.60733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01854594 157.60733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01854595 157.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01854596 157.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01854597 157.60739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01854598 157.60739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01854599 157.60740662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01854600 157.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01854601 157.60745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01854602 157.60745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01854603 157.60746765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01854604 157.60746765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01854605 157.60749817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01854606 157.60749817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01854607 157.60752869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01854608 157.60754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01854609 157.60755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01854610 157.60755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01854611 157.60758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01854612 157.60758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01854613 157.60762024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01854614 157.60762024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01854615 157.60763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01854616 157.60763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01854617 157.60768127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01854618 157.60768127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01854619 157.60771179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01854620 157.60771179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01854621 157.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01854622 157.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01854623 157.60775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01854624 157.60775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01854625 157.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01854626 157.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01854627 157.60780334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01854628 157.60780334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01854629 157.60783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01854630 157.60783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01854631 157.60786438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01854632 157.60786438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01854633 157.60787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01854634 157.60787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01854635 157.60791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01854636 157.60792542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01854637 157.60794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01854638 157.60795593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -01854639 157.60797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01854640 157.60797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -01854641 157.60800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01854642 157.60800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -01854643 157.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01854644 157.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -01854645 157.60804749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01854646 157.60804749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -01854647 157.60807800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01854648 157.60807800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -01854649 157.60810852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01854650 157.60810852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -01854651 157.60812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01854652 157.60812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -01854653 157.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01854654 157.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -01854655 157.60818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01854656 157.60818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -01854657 157.60820007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01854658 157.60821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -01854659 157.60823059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01854660 157.60824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -01854661 157.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01854662 157.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -01854663 157.60829163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01854664 157.60829163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -01854665 157.60832214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01854666 157.60832214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -01854667 157.60835266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01854668 157.60835266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -01854669 157.60836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01854670 157.60836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -01854671 157.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01854672 157.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -01854673 157.60842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01854674 157.60842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -01854675 157.60844421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01854676 157.60844421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -01854677 157.60847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01854678 157.60847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -01854679 157.60850525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01854680 157.60850525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -01854681 157.60852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01854682 157.60853577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -01854683 157.60855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01854684 157.60856628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -01854685 157.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01854686 157.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -01854687 157.60861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01854688 157.60861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -01854689 157.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01854690 157.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -01854691 157.60867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01854692 157.60867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -01854693 157.60868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01854694 157.60868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -01854695 157.60871887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01854696 157.60871887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -01854697 157.60874939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01854698 157.60874939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -01854699 157.60876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01854700 157.60876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -01854701 157.60879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01854702 157.60879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -01854703 157.60882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01854704 157.60882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -01854705 157.60884094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01854706 157.60885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -01854707 157.60887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01854708 157.60888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -01854709 157.60890198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01854710 157.60890198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -01854711 157.60893250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01854712 157.60893250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -01854713 157.60896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01854714 157.60896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -01854715 157.60897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01854716 157.60897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -01854717 157.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01854718 157.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -01854719 157.60903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01854720 157.60903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -01854721 157.60906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01854722 157.60906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -01854723 157.60908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01854724 157.60908508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -01854725 157.60911560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01854726 157.60913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -01854727 157.60914612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01854728 157.60914612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -01854729 157.60917664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01854730 157.60917664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -01854731 157.60920715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01854732 157.60920715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -01854733 157.60922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01854734 157.60922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -01854735 157.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01854736 157.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -01854737 157.60928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01854738 157.60928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -01854739 157.60929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01854740 157.60929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -01854741 157.60932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01854742 157.60932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -01854743 157.60935974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01854744 157.60935974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -01854745 157.60937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01854746 157.60937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -01854747 157.60940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01854748 157.60940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -01854749 157.60943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01854750 157.60945129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -01854751 157.60946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01854752 157.60946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -01854753 157.60949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01854754 157.60949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -01854755 157.60952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01854756 157.60952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -01854757 157.60954285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01854758 157.60954285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -01854759 157.60957336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01854760 157.60957336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -01854761 157.60960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01854762 157.60960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -01854763 157.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01854764 157.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -01854765 157.60964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01854766 157.60964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -01854767 157.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01854768 157.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -01854769 157.60969543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01854770 157.60969543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -01854771 157.60972595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01854772 157.60972595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -01854773 157.60975647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01854774 157.60977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -01854775 157.60977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01854776 157.60978699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -01854777 157.60981750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01854778 157.60981750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -01854779 157.60984802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01854780 157.60984802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -01854781 157.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01854782 157.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -01854783 157.60989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01854784 157.60989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -01854785 157.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01854786 157.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -01854787 157.60993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01854788 157.60993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -01854789 157.60997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01854790 157.60997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -01854791 157.61000061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01854792 157.61000061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -01854793 157.61001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01854794 157.61001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -01854795 157.61004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01854796 157.61006165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -01854797 157.61009216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01854798 157.61009216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -01854799 157.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01854800 157.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -01854801 157.61013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01854802 157.61015320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -01854803 157.61016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01854804 157.61016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -01854805 157.61019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01854806 157.61019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -01854807 157.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01854808 157.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -01854809 157.61026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01854810 157.61026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -01854811 157.61027527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01854812 157.61027527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -01854813 157.61030579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01854814 157.61030579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -01854815 157.61033630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01854816 157.61033630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -01854817 157.61035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01854818 157.61035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -01854819 157.61038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01854820 157.61038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -01854821 157.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01854822 157.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -01854823 157.61042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01854824 157.61042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -01854825 157.61045837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01854826 157.61047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -01854827 157.61048889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01854828 157.61048889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -01854829 157.61051941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01854830 157.61051941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -01854831 157.61054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01854832 157.61054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -01854833 157.61056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01854834 157.61056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -01854835 157.61059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01854836 157.61059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -01854837 157.61062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01854838 157.61062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -01854839 157.61065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01854840 157.61065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -01854841 157.61067200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01854842 157.61067200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -01854843 157.61070251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01854844 157.61070251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -01854845 157.61073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01854846 157.61073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -01854847 157.61074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01854848 157.61074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -01854849 157.61077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01854850 157.61079407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -01854851 157.61080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01854852 157.61080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -01854853 157.61083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01854854 157.61083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -01854855 157.61087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01854856 157.61087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -01854857 157.61088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01854858 157.61088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -01854859 157.61091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01854860 157.61091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -01854861 157.61094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01854862 157.61094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -01854863 157.61097717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01854864 157.61097717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -01854865 157.61099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01854866 157.61099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -01854867 157.61102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01854868 157.61102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -01854869 157.61105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01854870 157.61105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -01854871 157.61106873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01854872 157.61108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -01854873 157.61109924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01854874 157.61111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -01854875 157.61112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01854876 157.61112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -01854877 157.61116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01854878 157.61116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -01854879 157.61119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01854880 157.61119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -01854881 157.61120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01854882 157.61122131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -01854883 157.61125183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01854884 157.61125183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -01854885 157.61128235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01854886 157.61128235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -01854887 157.61129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01854888 157.61129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -01854889 157.61132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01854890 157.61132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -01854891 157.61135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01854892 157.61135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -01854893 157.61137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01854894 157.61137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -01854895 157.61140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01854896 157.61140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -01854897 157.61143494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01854898 157.61145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -01854899 157.61145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01854900 157.61146545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -01854901 157.61149597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01854902 157.61149597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -01854903 157.61152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01854904 157.61152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -01854905 157.61154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01854906 157.61154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -01854907 157.61157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01854908 157.61157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -01854909 157.61160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01854910 157.61160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -01854911 157.61161804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01854912 157.61161804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -01854913 157.61164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01854914 157.61164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -01854915 157.61167908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01854916 157.61167908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -01854917 157.61169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01854918 157.61169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -01854919 157.61175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01854920 157.61175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -01854921 157.61177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01854922 157.61177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -01854923 157.61180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01854924 157.61180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -01854925 157.61183167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01854926 157.61183167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -01854927 157.61184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01854928 157.61184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -01854929 157.61187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01854930 157.61187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -01854931 157.61190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01854932 157.61192322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -01854933 157.61193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01854934 157.61193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -01854935 157.61196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01854936 157.61196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -01854937 157.61199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01854938 157.61199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -01854939 157.61201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01854940 157.61201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -01854941 157.61204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01854942 157.61206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -01854943 157.61207581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01854944 157.61207581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -01854945 157.61210632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01854946 157.61210632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -01854947 157.61213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01854948 157.61213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -01854949 157.61216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01854950 157.61216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -01854951 157.61218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01854952 157.61219788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -01854953 157.61222839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01854954 157.61222839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -01854955 157.61224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01854956 157.61224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -01854957 157.61227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01854958 157.61227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -01854959 157.61230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01854960 157.61230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -01854961 157.61231995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01854962 157.61233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -01854963 157.61236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01854964 157.61236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -01854965 157.61239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01854966 157.61239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -01854967 157.61241150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01854968 157.61241150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -01854969 157.61244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01854970 157.61244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -01854971 157.61247253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01854972 157.61247253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -01854973 157.61248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01854974 157.61250305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -01854975 157.61253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01854976 157.61253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -01854977 157.61256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01854978 157.61256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -01854979 157.61257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01854980 157.61257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -01854981 157.61260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01854982 157.61260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -01854983 157.61264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01854984 157.61264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -01854985 157.61267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01854986 157.61267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -01854987 157.61270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01854988 157.61270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -01854989 157.61271667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01854990 157.61271667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -01854991 157.61274719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01854992 157.61274719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -01854993 157.61279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01854994 157.61279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -01854995 157.61280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01854996 157.61280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -01854997 157.61283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01854998 157.61283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -01854999 157.61286926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01855000 157.61286926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -01855001 157.61288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01855002 157.61288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -01855003 157.61291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01855004 157.61291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -01855005 157.61294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01855006 157.61294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -01855007 157.61296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01855008 157.61296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -01855009 157.61299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01855010 157.61299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -01855011 157.61302185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01855012 157.61303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -01855013 157.61303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01855014 157.61305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -01855015 157.61308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01855016 157.61308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -01855017 157.61311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01855018 157.61311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -01855019 157.61312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01855020 157.61312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -01855021 157.61315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01855022 157.61315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -01855023 157.61318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01855024 157.61318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -01855025 157.61320496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01855026 157.61320496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -01855027 157.61323547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01855028 157.61323547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -01855029 157.61326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01855030 157.61326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -01855031 157.61328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01855032 157.61328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -01855033 157.61331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01855034 157.61331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -01855035 157.61334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01855036 157.61335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -01855037 157.61335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01855038 157.61337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -01855039 157.61340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01855040 157.61340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -01855041 157.61343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01855042 157.61343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -01855043 157.61344910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01855044 157.61344910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -01855045 157.61347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01855046 157.61347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -01855047 157.61351013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01855048 157.61351013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -01855049 157.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01855050 157.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -01855051 157.61355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01855052 157.61355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -01855053 157.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01855054 157.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -01855055 157.61360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01855056 157.61360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -01855057 157.61363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01855058 157.61364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -01855059 157.61366272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01855060 157.61367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -01855061 157.61369324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01855062 157.61369324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -01855063 157.61372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01855064 157.61372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -01855065 157.61375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01855066 157.61375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -01855067 157.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01855068 157.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -01855069 157.61380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01855070 157.61380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -01855071 157.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01855072 157.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -01855073 157.61384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01855074 157.61384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -01855075 157.61387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01855076 157.61387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -01855077 157.61390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01855078 157.61390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -01855079 157.61392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01855080 157.61392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -01855081 157.61395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01855082 157.61396790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -01855083 157.61398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01855084 157.61398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -01855085 157.61401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01855086 157.61401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -01855087 157.61404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01855088 157.61404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -01855089 157.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01855090 157.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -01855091 157.61408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01855092 157.61408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -01855093 157.61412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01855094 157.61412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -01855095 157.61415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01855096 157.61415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -01855097 157.61416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01855098 157.61416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -01855099 157.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01855100 157.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -01855101 157.61422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01855102 157.61422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -01855103 157.61424255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01855104 157.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -01855105 157.61428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01855106 157.61428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -01855107 157.61430359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01855108 157.61430359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -01855109 157.61433411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01855110 157.61433411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -01855111 157.61436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01855112 157.61436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -01855113 157.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01855114 157.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -01855115 157.61441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01855116 157.61441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -01855117 157.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01855118 157.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -01855119 157.61447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01855120 157.61447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -01855121 157.61448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01855122 157.61448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -01855123 157.61451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01855124 157.61451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -01855125 157.61454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01855126 157.61454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -01855127 157.61456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01855128 157.61457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -01855129 157.61460876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01855130 157.61460876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -01855131 157.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01855132 157.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -01855133 157.61465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01855134 157.61465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -01855135 157.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01855136 157.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -01855137 157.61470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01855138 157.61470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -01855139 157.61473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01855140 157.61473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -01855141 157.61476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01855142 157.61476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -01855143 157.61477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01855144 157.61477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -01855145 157.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01855146 157.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -01855147 157.61483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01855148 157.61485291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -01855149 157.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01855150 157.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -01855151 157.61489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01855152 157.61489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -01855153 157.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01855154 157.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -01855155 157.61494446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01855156 157.61494446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -01855157 157.61497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01855158 157.61497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -01855159 157.61500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01855160 157.61500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -01855161 157.61502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01855162 157.61502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -01855163 157.61508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01855164 157.61508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -01855165 157.61509705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01855166 157.61509705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -01855167 157.61512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01855168 157.61512756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -01855169 157.61515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01855170 157.61515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -01855171 157.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01855172 157.61518860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -01855173 157.61521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01855174 157.61521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -01855175 157.61524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01855176 157.61524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -01855177 157.61528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01855178 157.61528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -01855179 157.61531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01855180 157.61531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -01855181 157.61534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01855182 157.61534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -01855183 157.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01855184 157.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -01855185 157.61538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01855186 157.61538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -01855187 157.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01855188 157.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -01855189 157.61543274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01855190 157.61543274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -01855191 157.61546326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01855192 157.61546326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -01855193 157.61549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01855194 157.61549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -01855195 157.61550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01855196 157.61552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -01855197 157.61555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01855198 157.61555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -01855199 157.61557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01855200 157.61557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -01855201 157.61560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01855202 157.61561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -01855203 157.61564636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01855204 157.61564636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -01855205 157.61566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01855206 157.61566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -01855207 157.61569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01855208 157.61569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -01855209 157.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01855210 157.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -01855211 157.61573792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01855212 157.61573792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -01855213 157.61576843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01855214 157.61578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -01855215 157.61579895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01855216 157.61581421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -01855217 157.61582947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01855218 157.61582947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -01855219 157.61585999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01855220 157.61585999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -01855221 157.61589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01855222 157.61589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -01855223 157.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01855224 157.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -01855225 157.61593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01855226 157.61593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -01855227 157.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01855228 157.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -01855229 157.61598206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01855230 157.61598206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -01855231 157.61601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01855232 157.61601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -01855233 157.61604309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01855234 157.61604309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -01855235 157.61605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01855236 157.61607361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -01855237 157.61608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01855238 157.61610413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -01855239 157.61613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01855240 157.61613464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -01855241 157.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01855242 157.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -01855243 157.61618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01855244 157.61618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -01855245 157.61621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01855246 157.61621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -01855247 157.61622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01855248 157.61622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -01855249 157.61625671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01855250 157.61625671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -01855251 157.61628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01855252 157.61628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -01855253 157.61630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01855254 157.61630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -01855255 157.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01855256 157.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -01855257 157.61636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01855258 157.61637878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -01855259 157.61637878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01855260 157.61639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -01855261 157.61642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01855262 157.61642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -01855263 157.61645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01855264 157.61645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -01855265 157.61647034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01855266 157.61647034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -01855267 157.61650085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01855268 157.61650085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -01855269 157.61653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01855270 157.61653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -01855271 157.61654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01855272 157.61656189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -01855273 157.61659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01855274 157.61659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -01855275 157.61660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01855276 157.61660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -01855277 157.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01855278 157.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -01855279 157.61666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01855280 157.61666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -01855281 157.61668396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01855282 157.61669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -01855283 157.61672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01855284 157.61672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -01855285 157.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01855286 157.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -01855287 157.61677551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01855288 157.61677551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -01855289 157.61680603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01855290 157.61680603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -01855291 157.61683655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01855292 157.61683655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -01855293 157.61685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01855294 157.61685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -01855295 157.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01855296 157.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -01855297 157.61691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01855298 157.61692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -01855299 157.61692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01855300 157.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -01855301 157.61697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01855302 157.61697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -01855303 157.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01855304 157.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -01855305 157.61701965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01855306 157.61701965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -01855307 157.61705017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01855308 157.61705017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -01855309 157.61708069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01855310 157.61708069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -01855311 157.61709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01855312 157.61709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -01855313 157.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01855314 157.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -01855315 157.61715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01855316 157.61715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -01855317 157.61717224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01855318 157.61717224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -01855319 157.61720276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01855320 157.61721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -01855321 157.61723328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01855322 157.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -01855323 157.61726379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01855324 157.61726379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -01855325 157.61729431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01855326 157.61729431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -01855327 157.61732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01855328 157.61732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -01855329 157.61734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01855330 157.61734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -01855331 157.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01855332 157.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -01855333 157.61740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01855334 157.61740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -01855335 157.61741638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01855336 157.61741638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -01855337 157.61744690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01855338 157.61744690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -01855339 157.61747742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01855340 157.61747742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -01855341 157.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01855342 157.61750793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -01855343 157.61752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01855344 157.61753845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -01855345 157.61756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01855346 157.61756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -01855347 157.61758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01855348 157.61758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -01855349 157.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01855350 157.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -01855351 157.61764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01855352 157.61764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -01855353 157.61766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01855354 157.61766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -01855355 157.61769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01855356 157.61769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -01855357 157.61772156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01855358 157.61772156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -01855359 157.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01855360 157.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -01855361 157.61776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01855362 157.61776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -01855363 157.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01855364 157.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -01855365 157.61781311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01855366 157.61782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -01855367 157.61784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01855368 157.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -01855369 157.61787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01855370 157.61787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -01855371 157.61790466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01855372 157.61790466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -01855373 157.61793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01855374 157.61793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -01855375 157.61796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01855376 157.61796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -01855377 157.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01855378 157.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -01855379 157.61801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01855380 157.61801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -01855381 157.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01855382 157.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -01855383 157.61807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01855384 157.61807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -01855385 157.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01855386 157.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -01855387 157.61811829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01855388 157.61811829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -01855389 157.61814880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01855390 157.61814880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -01855391 157.61817932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01855392 157.61817932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -01855393 157.61820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01855394 157.61820984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -01855395 157.61824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01855396 157.61824036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -01855397 157.61827087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01855398 157.61827087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -01855399 157.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01855400 157.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -01855401 157.61831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01855402 157.61831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -01855403 157.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01855404 157.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -01855405 157.61836243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01855406 157.61836243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -01855407 157.61839294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01855408 157.61839294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -01855409 157.61842346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01855410 157.61843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -01855411 157.61843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01855412 157.61845398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -01855413 157.61848450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01855414 157.61848450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -01855415 157.61851501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01855416 157.61851501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -01855417 157.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01855418 157.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -01855419 157.61856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01855420 157.61856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -01855421 157.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01855422 157.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -01855423 157.61860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01855424 157.61860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -01855425 157.61863708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01855426 157.61863708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -01855427 157.61866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01855428 157.61866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -01855429 157.61868286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01855430 157.61868286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -01855431 157.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01855432 157.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -01855433 157.61874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01855434 157.61875916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -01855435 157.61875916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01855436 157.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -01855437 157.61880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01855438 157.61880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -01855439 157.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01855440 157.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -01855441 157.61885071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01855442 157.61885071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -01855443 157.61888123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01855444 157.61888123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -01855445 157.61891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01855446 157.61891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -01855447 157.61892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01855448 157.61892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -01855449 157.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01855450 157.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -01855451 157.61898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01855452 157.61898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -01855453 157.61900330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01855454 157.61900330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -01855455 157.61903381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01855456 157.61904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -01855457 157.61906433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01855458 157.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -01855459 157.61909485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01855460 157.61909485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -01855461 157.61912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01855462 157.61912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -01855463 157.61915588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01855464 157.61915588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -01855465 157.61917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01855466 157.61917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -01855467 157.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01855468 157.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -01855469 157.61923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01855470 157.61923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -01855471 157.61924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01855472 157.61924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -01855473 157.61927795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01855474 157.61929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -01855475 157.61930847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01855476 157.61930847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -01855477 157.61933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01855478 157.61933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -01855479 157.61936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01855480 157.61936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -01855481 157.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01855482 157.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -01855483 157.61941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01855484 157.61943054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -01855485 157.61946106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01855486 157.61946106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -01855487 157.61947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01855488 157.61947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -01855489 157.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01855490 157.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -01855491 157.61953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01855492 157.61955261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -01855493 157.61955261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01855494 157.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -01855495 157.61959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01855496 157.61959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -01855497 157.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01855498 157.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -01855499 157.61964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01855500 157.61964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -01855501 157.61967468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01855502 157.61967468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -01855503 157.61970520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01855504 157.61970520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -01855505 157.61973572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01855506 157.61973572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -01855507 157.61976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01855508 157.61976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -01855509 157.61978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01855510 157.61978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -01855511 157.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01855512 157.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -01855513 157.61984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01855514 157.61984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -01855515 157.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01855516 157.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -01855517 157.61988831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01855518 157.61990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -01855519 157.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01855520 157.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -01855521 157.62002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01855522 157.62002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -01855523 157.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01855524 157.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -01855525 157.62008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01855526 157.62010193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -01855527 157.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01855528 157.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -01855529 157.62014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01855530 157.62014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -01855531 157.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01855532 157.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -01855533 157.62019348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01855534 157.62019348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -01855535 157.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01855536 157.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -01855537 157.62026978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01855538 157.62026978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -01855539 157.62028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01855540 157.62028503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -01855541 157.62031555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01855542 157.62031555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -01855543 157.62034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01855544 157.62034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -01855545 157.62037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01855546 157.62037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -01855547 157.62040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01855548 157.62040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -01855549 157.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01855550 157.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -01855551 157.62045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01855552 157.62045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -01855553 157.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01855554 157.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -01855555 157.62049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01855556 157.62049866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -01855557 157.62052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01855558 157.62052917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -01855559 157.62055969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01855560 157.62055969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -01855561 157.62057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01855562 157.62059021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -01855563 157.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01855564 157.62062073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -01855565 157.62065125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01855566 157.62065125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -01855567 157.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01855568 157.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -01855569 157.62069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01855570 157.62069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -01855571 157.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01855572 157.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -01855573 157.62074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01855574 157.62074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -01855575 157.62077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01855576 157.62077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -01855577 157.62080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01855578 157.62080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -01855579 157.62081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01855580 157.62081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -01855581 157.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01855582 157.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -01855583 157.62088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01855584 157.62088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -01855585 157.62089539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01855586 157.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -01855587 157.62092590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01855588 157.62094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -01855589 157.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01855590 157.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -01855591 157.62098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01855592 157.62098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -01855593 157.62101746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01855594 157.62101746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -01855595 157.62104797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01855596 157.62104797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -01855597 157.62106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01855598 157.62106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -01855599 157.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01855600 157.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -01855601 157.62112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01855602 157.62112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -01855603 157.62113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01855604 157.62113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -01855605 157.62117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01855606 157.62117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -01855607 157.62120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01855608 157.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -01855609 157.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01855610 157.62123108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -01855611 157.62126160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01855612 157.62126160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -01855613 157.62129211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01855614 157.62129211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -01855615 157.62130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01855616 157.62130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -01855617 157.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01855618 157.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -01855619 157.62136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01855620 157.62136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -01855621 157.62138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01855622 157.62138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -01855623 157.62141418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01855624 157.62141418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -01855625 157.62144470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01855626 157.62144470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -01855627 157.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01855628 157.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -01855629 157.62149048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01855630 157.62150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -01855631 157.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01855632 157.62153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -01855633 157.62155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01855634 157.62155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -01855635 157.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01855636 157.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -01855637 157.62161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01855638 157.62161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -01855639 157.62162781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01855640 157.62162781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -01855641 157.62165833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01855642 157.62165833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -01855643 157.62168884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01855644 157.62168884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -01855645 157.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01855646 157.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -01855647 157.62173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01855648 157.62173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -01855649 157.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01855650 157.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -01855651 157.62178040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01855652 157.62178040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -01855653 157.62181091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01855654 157.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -01855655 157.62184143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01855656 157.62185669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -01855657 157.62187195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01855658 157.62187195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -01855659 157.62190247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01855660 157.62190247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -01855661 157.62193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01855662 157.62193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -01855663 157.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01855664 157.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -01855665 157.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01855666 157.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -01855667 157.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01855668 157.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -01855669 157.62202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01855670 157.62202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -01855671 157.62205505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01855672 157.62205505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -01855673 157.62208557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01855674 157.62208557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -01855675 157.62210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01855676 157.62211609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -01855677 157.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01855678 157.62214661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -01855679 157.62217712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01855680 157.62217712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -01855681 157.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01855682 157.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -01855683 157.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01855684 157.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -01855685 157.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01855686 157.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -01855687 157.62226868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01855688 157.62226868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -01855689 157.62229919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01855690 157.62229919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -01855691 157.62232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01855692 157.62232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -01855693 157.62234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01855694 157.62234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -01855695 157.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01855696 157.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -01855697 157.62240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01855698 157.62240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -01855699 157.62242126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01855700 157.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -01855701 157.62246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01855702 157.62246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -01855703 157.62248230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01855704 157.62248230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -01855705 157.62251282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01855706 157.62251282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -01855707 157.62254333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01855708 157.62254333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -01855709 157.62257385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01855710 157.62257385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -01855711 157.62258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01855712 157.62258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -01855713 157.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01855714 157.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -01855715 157.62265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01855716 157.62265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -01855717 157.62266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01855718 157.62266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -01855719 157.62269592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01855720 157.62271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -01855721 157.62272644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01855722 157.62272644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -01855723 157.62275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01855724 157.62275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -01855725 157.62278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01855726 157.62278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -01855727 157.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01855728 157.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -01855729 157.62283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01855730 157.62283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -01855731 157.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01855732 157.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -01855733 157.62287903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01855734 157.62287903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -01855735 157.62290955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01855736 157.62290955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -01855737 157.62294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01855738 157.62294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -01855739 157.62297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01855740 157.62297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -01855741 157.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01855742 157.62300110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -01855743 157.62301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01855744 157.62303162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -01855745 157.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01855746 157.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -01855747 157.62307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01855748 157.62307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -01855749 157.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01855750 157.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -01855751 157.62312317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01855752 157.62312317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -01855753 157.62315369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01855754 157.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -01855755 157.62319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01855756 157.62319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -01855757 157.62321472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01855758 157.62321472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -01855759 157.62324524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01855760 157.62324524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -01855761 157.62327576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01855762 157.62327576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -01855763 157.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01855764 157.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -01855765 157.62332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01855766 157.62332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -01855767 157.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01855768 157.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -01855769 157.62336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01855770 157.62336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -01855771 157.62339783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01855772 157.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -01855773 157.62342834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01855774 157.62344360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -01855775 157.62345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01855776 157.62345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -01855777 157.62348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01855778 157.62348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -01855779 157.62351990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01855780 157.62351990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -01855781 157.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01855782 157.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -01855783 157.62356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01855784 157.62356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -01855785 157.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01855786 157.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -01855787 157.62361145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01855788 157.62361145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -01855789 157.62364197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01855790 157.62364197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -01855791 157.62367249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01855792 157.62367249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -01855793 157.62368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01855794 157.62370300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -01855795 157.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01855796 157.62373352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -01855797 157.62376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01855798 157.62376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -01855799 157.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01855800 157.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -01855801 157.62380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01855802 157.62380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -01855803 157.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01855804 157.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -01855805 157.62385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01855806 157.62387085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01855807 157.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01855808 157.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01855809 157.62391663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01855810 157.62391663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01855811 157.62394714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01855812 157.62394714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01855813 157.62399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01855814 157.62399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01855815 157.62400818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01855816 157.62400818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01855817 157.62405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01855818 157.62405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01855819 157.62406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01855820 157.62406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01855821 157.62411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01855822 157.62413025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01855823 157.62416077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01855824 157.62416077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01855825 157.62419128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01855826 157.62419128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01855827 157.62423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01855828 157.62423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01855829 157.62425232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01855830 157.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01855831 157.62429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01855832 157.62429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01855833 157.62431335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01855834 157.62431335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01855835 157.62434387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01855836 157.62434387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01855837 157.62437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01855838 157.62437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01855839 157.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01855840 157.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01855841 157.62443542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01855842 157.62443542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01855843 157.62446594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01855844 157.62446594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01855845 157.62448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01855846 157.62448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01855847 157.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01855848 157.62452698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01855849 157.62455750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01855850 157.62455750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01855851 157.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01855852 157.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -01855853 157.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01855854 157.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -01855855 157.62464905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01855856 157.62464905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -01855857 157.62467957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01855858 157.62467957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -01855859 157.62471008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01855860 157.62471008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -01855861 157.62472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01855862 157.62474060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -01855863 157.62477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01855864 157.62477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -01855865 157.62478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01855866 157.62478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -01855867 157.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01855868 157.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -01855869 157.62484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01855870 157.62484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -01855871 157.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01855872 157.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -01855873 157.62490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01855874 157.62490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -01855875 157.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01855876 157.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -01855877 157.62495422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01855878 157.62495422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -01855879 157.62498474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01855880 157.62498474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -01855881 157.62501526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01855882 157.62501526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -01855883 157.62503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01855884 157.62503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -01855885 157.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01855886 157.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -01855887 157.62509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01855888 157.62510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -01855889 157.62510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01855890 157.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -01855891 157.62515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01855892 157.62515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -01855893 157.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01855894 157.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -01855895 157.62519836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01855896 157.62519836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -01855897 157.62522888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01855898 157.62522888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -01855899 157.62525940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01855900 157.62525940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -01855901 157.62527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01855902 157.62527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -01855903 157.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01855904 157.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -01855905 157.62533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01855906 157.62533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -01855907 157.62535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01855908 157.62535095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -01855909 157.62538147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01855910 157.62539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -01855911 157.62541199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01855912 157.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -01855913 157.62544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01855914 157.62544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -01855915 157.62547302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01855916 157.62547302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -01855917 157.62550354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01855918 157.62550354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -01855919 157.62551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01855920 157.62551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -01855921 157.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01855922 157.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -01855923 157.62557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01855924 157.62557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -01855925 157.62559509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01855926 157.62559509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -01855927 157.62562561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01855928 157.62564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -01855929 157.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01855930 157.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -01855931 157.62568665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01855932 157.62568665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -01855933 157.62571716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01855934 157.62571716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -01855935 157.62574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01855936 157.62574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -01855937 157.62576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01855938 157.62577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -01855939 157.62580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01855940 157.62580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -01855941 157.62582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01855942 157.62582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -01855943 157.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01855944 157.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -01855945 157.62588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01855946 157.62588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -01855947 157.62590027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01855948 157.62590027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -01855949 157.62593079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01855950 157.62594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -01855951 157.62596130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01855952 157.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -01855953 157.62599182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01855954 157.62599182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -01855955 157.62602234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01855956 157.62602234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -01855957 157.62605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01855958 157.62605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -01855959 157.62606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01855960 157.62606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -01855961 157.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01855962 157.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -01855963 157.62612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01855964 157.62612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -01855965 157.62614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01855966 157.62614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -01855967 157.62617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01855968 157.62617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -01855969 157.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01855970 157.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -01855971 157.62623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01855972 157.62623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -01855973 157.62626648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01855974 157.62626648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -01855975 157.62629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01855976 157.62629700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -01855977 157.62632751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01855978 157.62632751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -01855979 157.62635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01855980 157.62635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -01855981 157.62637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01855982 157.62637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -01855983 157.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01855984 157.62641907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -01855985 157.62643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01855986 157.62644958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -01855987 157.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01855988 157.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -01855989 157.62649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01855990 157.62649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -01855991 157.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01855992 157.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -01855993 157.62654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01855994 157.62654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -01855995 157.62657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01855996 157.62657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -01855997 157.62660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01855998 157.62660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -01855999 157.62661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01856000 157.62663269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -01856001 157.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01856002 157.62666321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -01856003 157.62669373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01856004 157.62669373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -01856005 157.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01856006 157.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -01856007 157.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01856008 157.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -01856009 157.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01856010 157.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -01856011 157.62678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01856012 157.62678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -01856013 157.62681580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01856014 157.62681580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -01856015 157.62684631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01856016 157.62684631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -01856017 157.62686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01856018 157.62686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -01856019 157.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01856020 157.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -01856021 157.62692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01856022 157.62693787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -01856023 157.62693787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01856024 157.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -01856025 157.62698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01856026 157.62698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -01856027 157.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01856028 157.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -01856029 157.62702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01856030 157.62702942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -01856031 157.62705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01856032 157.62705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -01856033 157.62709045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01856034 157.62709045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -01856035 157.62710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01856036 157.62710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -01856037 157.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01856038 157.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -01856039 157.62716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01856040 157.62716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -01856041 157.62718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01856042 157.62718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -01856043 157.62721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01856044 157.62722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -01856045 157.62724304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01856046 157.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -01856047 157.62727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01856048 157.62727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -01856049 157.62730408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01856050 157.62730408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -01856051 157.62733459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01856052 157.62733459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -01856053 157.62734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01856054 157.62734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -01856055 157.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01856056 157.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -01856057 157.62741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01856058 157.62741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -01856059 157.62742615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01856060 157.62742615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -01856061 157.62745667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01856062 157.62745667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -01856063 157.62748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01856064 157.62748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -01856065 157.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01856066 157.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -01856067 157.62753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01856068 157.62754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -01856069 157.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01856070 157.62757874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -01856071 157.62759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01856072 157.62759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -01856073 157.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01856074 157.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -01856075 157.62765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01856076 157.62765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -01856077 157.62767029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01856078 157.62767029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -01856079 157.62770081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01856080 157.62770081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -01856081 157.62773132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01856082 157.62773132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -01856083 157.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01856084 157.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -01856085 157.62777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01856086 157.62777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -01856087 157.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01856088 157.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -01856089 157.62782288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01856090 157.62783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -01856091 157.62785339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01856092 157.62786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -01856093 157.62788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01856094 157.62788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -01856095 157.62791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01856096 157.62791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -01856097 157.62794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01856098 157.62794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -01856099 157.62797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01856100 157.62797546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -01856101 157.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01856102 157.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -01856103 157.62802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01856104 157.62802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -01856105 157.62805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01856106 157.62805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -01856107 157.62806702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01856108 157.62806702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -01856109 157.62809753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01856110 157.62809753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -01856111 157.62812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01856112 157.62812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -01856113 157.62814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01856114 157.62815857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -01856115 157.62818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01856116 157.62818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -01856117 157.62820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01856118 157.62820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -01856119 157.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01856120 157.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -01856121 157.62826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01856122 157.62826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -01856123 157.62828064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01856124 157.62828064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -01856125 157.62831116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01856126 157.62831116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -01856127 157.62834167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01856128 157.62834167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -01856129 157.62837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01856130 157.62837219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -01856131 157.62838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01856132 157.62838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -01856133 157.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01856134 157.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -01856135 157.62844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01856136 157.62844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -01856137 157.62846375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01856138 157.62847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -01856139 157.62850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01856140 157.62850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -01856141 157.62852478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01856142 157.62852478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -01856143 157.62855530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01856144 157.62855530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -01856145 157.62858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01856146 157.62858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -01856147 157.62860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01856148 157.62860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -01856149 157.62863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01856150 157.62863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -01856151 157.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01856152 157.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -01856153 157.62867737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01856154 157.62867737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -01856155 157.62870789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01856156 157.62870789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -01856157 157.62873840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01856158 157.62875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -01856159 157.62876892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01856160 157.62876892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -01856161 157.62879944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01856162 157.62879944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -01856163 157.62882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01856164 157.62882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -01856165 157.62884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01856166 157.62884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -01856167 157.62887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01856168 157.62887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -01856169 157.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01856170 157.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -01856171 157.62892151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01856172 157.62892151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -01856173 157.62895203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01856174 157.62895203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -01856175 157.62898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01856176 157.62898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -01856177 157.62899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01856178 157.62899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -01856179 157.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01856180 157.62904358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -01856181 157.62905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01856182 157.62907410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -01856183 157.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01856184 157.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -01856185 157.62911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01856186 157.62911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -01856187 157.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01856188 157.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -01856189 157.62916565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01856190 157.62916565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -01856191 157.62919617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01856192 157.62919617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -01856193 157.62922668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01856194 157.62922668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -01856195 157.62924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01856196 157.62924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -01856197 157.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01856198 157.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -01856199 157.62930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01856200 157.62930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -01856201 157.62931824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01856202 157.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -01856203 157.62934875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01856204 157.62936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -01856205 157.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01856206 157.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -01856207 157.62940979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01856208 157.62940979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -01856209 157.62944031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01856210 157.62944031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -01856211 157.62947083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01856212 157.62947083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -01856213 157.62948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01856214 157.62948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -01856215 157.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01856216 157.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -01856217 157.62954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01856218 157.62954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -01856219 157.62956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01856220 157.62956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -01856221 157.62959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01856222 157.62959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -01856223 157.62962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01856224 157.62962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -01856225 157.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01856226 157.62965393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -01856227 157.62968445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01856228 157.62968445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -01856229 157.62971497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01856230 157.62971497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -01856231 157.62973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01856232 157.62973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -01856233 157.62976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01856234 157.62976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -01856235 157.62979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01856236 157.62979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -01856237 157.62980652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01856238 157.62980652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -01856239 157.62983704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01856240 157.62983704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -01856241 157.62986755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01856242 157.62986755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -01856243 157.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01856244 157.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -01856245 157.62991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01856246 157.62991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -01856247 157.62994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01856248 157.62995911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -01856249 157.62995911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01856250 157.62997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -01856251 157.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01856252 157.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -01856253 157.63003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01856254 157.63003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -01856255 157.63005066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01856256 157.63005066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -01856257 157.63008118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01856258 157.63008118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -01856259 157.63011169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01856260 157.63011169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -01856261 157.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01856262 157.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -01856263 157.63015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01856264 157.63017273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -01856265 157.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01856266 157.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -01858034 157.65472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd288 -01858035 157.65473938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01858036 157.65473938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd298 -01858037 157.65476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01858038 157.65476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a8 -01858039 157.65480042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01858040 157.65481567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b8 -01858041 157.65483093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01858042 157.65483093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c8 -01858043 157.65486145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01858044 157.65486145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2d8 -01858045 157.65489197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01858046 157.65489197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2e8 -01858047 157.65492249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01858048 157.65492249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2f8 -01858049 157.65495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01858050 157.65495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd308 -01858051 157.65498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01858052 157.65498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd318 -01858053 157.65499878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01858054 157.65499878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd328 -01858055 157.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01858056 157.65504456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd338 -01858057 157.65505981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01858058 157.65505981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd348 -01858059 157.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01858060 157.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd358 -01858061 157.65512085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01858062 157.65512085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd368 -01858063 157.65513611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01858064 157.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd378 -01858065 157.65516663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01858066 157.65518188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd388 -01858067 157.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01858068 157.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd398 -01858069 157.65522766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01858070 157.65522766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3a8 -01858071 157.65525818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01858072 157.65525818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3b8 -01858073 157.65528870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01858074 157.65528870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3c8 -01858075 157.65530396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01858076 157.65531921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3d8 -01858077 157.65534973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xd3e8 -01860381 157.68702698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be8 -01860382 157.68704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be8 -01860383 157.68705750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf8 -01860384 157.68707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf8 -01860385 157.68708801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c08 -01860386 157.68708801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c08 -01860387 157.68711853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c18 -01860388 157.68711853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c18 -01860389 157.68714905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -01860390 157.68714905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -01860391 157.68716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -01860392 157.68716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -01860393 157.68719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -01860394 157.68721008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -01860395 157.68722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -01860396 157.68722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -01860397 157.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c68 -01860398 157.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c68 -01860399 157.68728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c78 -01860400 157.68728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c78 -01860401 157.68730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c88 -01860402 157.68730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c88 -01860403 157.68733215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c98 -01860404 157.68734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c98 -01860405 157.68737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca8 -01860406 157.68737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca8 -01860407 157.68739319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb8 -01860408 157.68739319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb8 -01860409 157.68742371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc8 -01860410 157.68742371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc8 -01860411 157.68745422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd8 -01860412 157.68746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd8 -01860413 157.68748474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce8 -01860414 157.68748474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce8 -01860415 157.68751526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf8 -01860416 157.68751526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf8 -01860417 157.68754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d08 -01860418 157.68754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d08 -01860419 157.68756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -01860420 157.68756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -01860421 157.68759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -01860422 157.68760681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -01860423 157.68762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -01860424 157.68762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -01862873 157.72184753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c8 -01862874 157.72184753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c8 -01862875 157.72186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d8 -01862876 157.72186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d8 -01862877 157.72189331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e8 -01862878 157.72189331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e8 -01862879 157.72193909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f8 -01862880 157.72193909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f8 -01862881 157.72195435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a08 -01862882 157.72195435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a08 -01862883 157.72198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a18 -01862884 157.72198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a18 -01862885 157.72201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a28 -01862886 157.72201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a28 -01862887 157.72203064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a38 -01862888 157.72204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a38 -01862889 157.72206116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -01862890 157.72207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -01862891 157.72209167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -01862892 157.72209167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -01862893 157.72212219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -01862894 157.72212219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -01862895 157.72215271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -01862896 157.72215271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -01862897 157.72218323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -01862898 157.72218323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -01862899 157.72221375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -01862900 157.72221375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -01862901 157.72224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -01862902 157.72224426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -01862903 157.72225952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -01862904 157.72225952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -01862905 157.72230530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -01862906 157.72230530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -01862907 157.72233582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -01862908 157.72233582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -01862909 157.72235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -01862910 157.72235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -01862911 157.72238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -01862912 157.72238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -01862913 157.72241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -01862914 157.72241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -01862915 157.72244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b18 -01862916 157.72244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b18 -01877975 157.92890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -01877976 157.92890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341b8 -01877977 157.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -01877978 157.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341c8 -01877979 157.92895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d8 -01877980 157.92895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341d8 -01877981 157.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e8 -01877982 157.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341e8 -01877983 157.92901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f8 -01877984 157.92901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x341f8 -01877985 157.92903137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34208 -01877986 157.92904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34208 -01877987 157.92907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34218 -01877988 157.92907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34218 -01877989 157.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34228 -01877990 157.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34228 -01877991 157.92912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34238 -01877992 157.92912292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34238 -01877993 157.92915344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34248 -01877994 157.92915344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34248 -01877995 157.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34258 -01877996 157.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34258 -01877997 157.92921448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34268 -01877998 157.92921448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34268 -01877999 157.92924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34278 -01878000 157.92924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34278 -01878001 157.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34288 -01878002 157.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34288 -01878003 157.92929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34298 -01878004 157.92929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34298 -01878005 157.92932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a8 -01878006 157.92932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342a8 -01878007 157.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b8 -01878008 157.92935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342b8 -01878009 157.92938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c8 -01878010 157.92938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342c8 -01878011 157.92941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d8 -01878012 157.92941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d8 -01878013 157.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e8 -01878014 157.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e8 -01878015 157.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f8 -01878016 157.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f8 -01878017 157.92948914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34308 -01878018 157.92950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34308 -01880737 157.96757507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39808 -01880738 157.96757507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39808 -01880739 157.96760559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39818 -01880740 157.96760559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39818 -01880741 157.96763611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39828 -01880742 157.96763611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39828 -01880743 157.96765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39838 -01880744 157.96766663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39838 -01880745 157.96769714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39848 -01880746 157.96769714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39848 -01880747 157.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39858 -01880748 157.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39858 -01880749 157.96774292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39868 -01880750 157.96774292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39868 -01880751 157.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -01880752 157.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -01880753 157.96778870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -01880754 157.96778870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -01880755 157.96781921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -01880756 157.96783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -01880757 157.96786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -01880758 157.96786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -01880759 157.96788025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -01880760 157.96788025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -01880761 157.96791077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -01880762 157.96791077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -01880763 157.96794128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -01880764 157.96794128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -01880765 157.96795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -01880766 157.96797180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -01880767 157.96800232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -01880768 157.96800232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -01880769 157.96803284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -01880770 157.96803284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -01880771 157.96804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -01880772 157.96804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -01880773 157.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -01880774 157.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -01880775 157.96810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -01880776 157.96810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -01880777 157.96812439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -01880778 157.96813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -01880779 157.96817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -01880780 157.96817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -01883713 158.00921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -01883714 158.00921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -01883715 158.00924683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -01883716 158.00924683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -01883717 158.00926208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -01883718 158.00926208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -01883719 158.00930786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -01883720 158.00930786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -01883721 158.00933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -01883722 158.00933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -01883723 158.00935364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -01883724 158.00935364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -01883725 158.00938416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -01883726 158.00938416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -01883727 158.00941467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -01883728 158.00941467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -01883729 158.00942993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -01883730 158.00944519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -01883731 158.00947571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f598 -01883732 158.00947571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f598 -01883733 158.00949097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a8 -01883734 158.00949097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5a8 -01883735 158.00952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b8 -01883736 158.00952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5b8 -01883737 158.00955200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c8 -01883738 158.00955200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5c8 -01883739 158.00956726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d8 -01883740 158.00958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5d8 -01883741 158.00959778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e8 -01883742 158.00961304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5e8 -01883743 158.00964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f8 -01883744 158.00964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f8 -01883745 158.00965881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f608 -01883746 158.00965881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f608 -01883747 158.00968933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f618 -01883748 158.00968933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f618 -01883749 158.00971985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f628 -01883750 158.00971985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f628 -01883751 158.00973511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f638 -01883752 158.00975037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f638 -01883753 158.00978088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f648 -01883754 158.00978088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f648 -01883755 158.00981140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f658 -01883756 158.00981140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f658 -01886581 158.04931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -01886582 158.04931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -01886583 158.04934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -01886584 158.04934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -01886585 158.04936218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -01886586 158.04936218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -01886587 158.04939270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -01886588 158.04940796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -01886589 158.04943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -01886590 158.04943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -01886591 158.04945374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -01886592 158.04945374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -01886593 158.04948425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -01886594 158.04948425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -01886595 158.04951477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -01886596 158.04951477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -01886597 158.04953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -01886598 158.04954529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -01886599 158.04957581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -01886600 158.04957581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -01886601 158.04960632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -01886602 158.04960632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -01886603 158.04962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -01886604 158.04962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -01886605 158.04965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -01886606 158.04965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -01886607 158.04968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -01886608 158.04968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -01886609 158.04969788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -01886610 158.04971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -01886611 158.04974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f98 -01886612 158.04974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f98 -01886613 158.04975891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa8 -01886614 158.04975891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa8 -01886615 158.04978943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb8 -01886616 158.04978943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb8 -01886617 158.04981995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc8 -01886618 158.04981995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc8 -01886619 158.04985046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd8 -01886620 158.04985046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd8 -01886621 158.04986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe8 -01886622 158.04988098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe8 -01886623 158.04991150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff8 -01886624 158.04991150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ff8 -01889507 158.09037781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa18 -01889508 158.09037781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa18 -01889509 158.09040833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa28 -01889510 158.09042358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa28 -01889511 158.09043884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa38 -01889512 158.09043884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa38 -01889513 158.09046936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa48 -01889514 158.09046936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa48 -01889515 158.09049988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -01889516 158.09049988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -01889517 158.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -01889518 158.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -01889519 158.09054565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -01889520 158.09054565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -01889521 158.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01889522 158.09059143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -01889523 158.09060669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01889524 158.09060669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -01889525 158.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01889526 158.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -01889527 158.09066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01889528 158.09066772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -01889529 158.09068298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01889530 158.09068298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -01889531 158.09071350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01889532 158.09072876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -01889533 158.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01889534 158.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -01889535 158.09077454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01889536 158.09077454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -01889537 158.09080505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01889538 158.09080505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -01889539 158.09083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01889540 158.09083557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -01889541 158.09085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01889542 158.09085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -01889543 158.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01889544 158.09089661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab38 -01889545 158.09091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01889546 158.09091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab48 -01889547 158.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01889548 158.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab58 -01889549 158.09097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01889550 158.09097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab68 -01892128 158.12704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01892129 158.12704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -01892130 158.12705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01892131 158.12705994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -01892132 158.12709045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01892133 158.12710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -01892134 158.12713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01892135 158.12713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -01892136 158.12715149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01892137 158.12715149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -01892138 158.12718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01892139 158.12718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -01892140 158.12721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01892141 158.12721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -01892142 158.12722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01892143 158.12724304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -01892144 158.12727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01892145 158.12727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -01892146 158.12728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01892147 158.12728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc88 -01892148 158.12731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01892149 158.12731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc98 -01892150 158.12734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01892151 158.12734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fca8 -01892152 158.12738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01892153 158.12738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcb8 -01892154 158.12739563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -01892155 158.12741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcc8 -01892156 158.12744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -01892157 158.12744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcd8 -01892158 158.12745667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -01892159 158.12745667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fce8 -01892160 158.12748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -01892161 158.12748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fcf8 -01892162 158.12751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -01892163 158.12751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd08 -01892164 158.12753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -01892165 158.12754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -01892166 158.12757874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -01892167 158.12757874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -01892168 158.12760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -01892169 158.12760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -01892170 158.12762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -01892171 158.12762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -01893706 158.87751770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893707 158.87757874 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893708 158.87760925 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893709 158.87762451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -01893710 158.87773132 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893711 158.87773132 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893712 158.87779236 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -01893713 158.87780762 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -01893714 160.13372803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01893715 160.15205383 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893716 160.15206909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01893717 160.86334229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01893718 160.86335754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01893719 160.86338806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01893720 160.86338806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01893721 160.86341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01893722 160.86341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01893723 160.86343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01893724 160.86344910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01893725 160.86347961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01893726 160.86347961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01893727 160.86349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01893728 160.86349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01893729 160.86352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01893730 160.86352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01893731 160.86355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01893732 160.86355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01893733 160.86357117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01893734 160.86358643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01893735 160.86361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01893736 160.86361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01893737 160.86364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01893738 160.86364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01893739 160.86366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01893740 160.86366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01893741 160.86369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01893742 160.86369324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01893743 160.86372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01893744 160.86372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01893745 160.86375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01893746 160.86375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01893747 160.86378479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01893748 160.86378479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01893749 160.86381531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01893750 160.86381531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01893751 160.86383057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01893752 160.86383057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01893753 160.86386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01893754 160.86387634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01893755 160.86389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01893756 160.86389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01893757 160.86392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01893758 160.86392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01893759 160.86395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01893760 160.86395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01893761 160.86396790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01893762 160.86396790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01893763 160.86399841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01893764 160.86399841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01893765 160.86404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01893766 160.86404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01893767 160.86405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01893768 160.86405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01893769 160.86408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01893770 160.86408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01893771 160.86412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01893772 160.86412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01893773 160.86413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01893774 160.86415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01893775 160.86418152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01893776 160.86418152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01893777 160.86421204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01893778 160.86421204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01893779 160.86422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01893780 160.86422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01893781 160.86425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01893782 160.86425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01893783 160.86428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01893784 160.86428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01893785 160.86431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01893786 160.86431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01893787 160.86434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01893788 160.86434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01893789 160.86436462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01893790 160.86436462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01893791 160.86439514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01893792 160.86439514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01893793 160.86442566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01893794 160.86444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01893795 160.86445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01893796 160.86445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01893797 160.86448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01893798 160.86448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01893799 160.86451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01893800 160.86451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01893801 160.86453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01893802 160.86453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01893803 160.86456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01893804 160.86456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01893805 160.86459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01893806 160.86460876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01893807 160.86462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01893808 160.86462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01893809 160.86465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01893810 160.86465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01893811 160.86468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01893812 160.86468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01893813 160.86470032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01893814 160.86470032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01893815 160.86473083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01893816 160.86474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01893817 160.86476135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01893818 160.86476135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01893819 160.86479187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01893820 160.86479187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01893821 160.86482239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01893822 160.86482239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01893823 160.86483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01893824 160.86483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01893825 160.86486816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01893826 160.86488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01893827 160.86491394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01893828 160.86491394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01893829 160.86492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01893830 160.86492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01893831 160.86495972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01893832 160.86495972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01893833 160.86499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01893834 160.86499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01893835 160.86500549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01893836 160.86500549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01893837 160.86503601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01893838 160.86505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01893839 160.86508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01893840 160.86508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01893841 160.86511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01893842 160.86511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01893843 160.86514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01893844 160.86515808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01893845 160.86517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01893846 160.86517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01893847 160.86520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01893848 160.86520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01893849 160.86523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01893850 160.86523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01893851 160.86524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01893852 160.86526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01893853 160.86529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01893854 160.86529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01893855 160.86532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01893856 160.86532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01893857 160.86534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01893858 160.86534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01893859 160.86537170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01893860 160.86537170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01893861 160.86540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01893862 160.86540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01893863 160.86541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01893864 160.86543274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01893865 160.86546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01893866 160.86546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01893867 160.86547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01893868 160.86547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01893869 160.86550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01893870 160.86550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01893871 160.86553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01893872 160.86553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01893873 160.86555481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01893874 160.86557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01893875 160.86560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01893876 160.86560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01893877 160.86563110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01893878 160.86563110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01893879 160.86564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01893880 160.86564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01893881 160.86567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01893882 160.86567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01893883 160.86570740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01893884 160.86572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01893885 160.86573792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01893886 160.86573792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01893887 160.86576843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01893888 160.86576843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01893889 160.86579895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01893890 160.86579895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01893891 160.86581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01893892 160.86581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01893893 160.86584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01893894 160.86585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01893895 160.86587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01893896 160.86587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01893897 160.86590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01893898 160.86590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01893899 160.86593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01893900 160.86593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01893901 160.86595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01893902 160.86595154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01893903 160.86598206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01893904 160.86598206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01893905 160.86601257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01893906 160.86602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01893907 160.86604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01893908 160.86604309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01893909 160.86607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01893910 160.86607361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01893911 160.86610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01893912 160.86610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01893913 160.86611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01893914 160.86611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01893915 160.86614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01893916 160.86616516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01893917 160.86619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01893918 160.86619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01893919 160.86621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01893920 160.86621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01893921 160.86624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01893922 160.86624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01893923 160.86627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01893924 160.86627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01893925 160.86628723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01893926 160.86630249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01893927 160.86633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01893928 160.86633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01893929 160.86634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01893930 160.86634827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01893931 160.86637878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01893932 160.86637878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01893933 160.86640930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01893934 160.86640930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01893935 160.86642456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01893936 160.86643982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01893937 160.86647034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01893938 160.86647034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01893939 160.86650085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01893940 160.86650085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01893941 160.86651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01893942 160.86651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01893943 160.86654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01893944 160.86654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01893945 160.86657715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01893946 160.86659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01893947 160.86660767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01893948 160.86660767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01893949 160.86663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01893950 160.86663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01893951 160.86666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01893952 160.86666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01893953 160.86668396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01893954 160.86668396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01893955 160.86671448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01893956 160.86672974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01893957 160.86674500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01893958 160.86674500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01893959 160.86677551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01893960 160.86677551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01893961 160.86680603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01893962 160.86680603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01893963 160.86682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01893964 160.86682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01893965 160.86685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01893966 160.86685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01893967 160.86688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01893968 160.86689758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01893969 160.86691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01893970 160.86691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01893971 160.86694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01893972 160.86694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01893973 160.86697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01893974 160.86697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01893975 160.86698914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01893976 160.86698914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01893977 160.86701965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01893978 160.86703491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01893979 160.86706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01893980 160.86706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01893981 160.86708069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01893982 160.86708069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01893983 160.86711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01893984 160.86711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01893985 160.86714172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01893986 160.86714172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01893987 160.86715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01893988 160.86717224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01893989 160.86720276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01893990 160.86720276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01893991 160.86721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01893992 160.86721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01893993 160.86724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01893994 160.86724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01893995 160.86727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01893996 160.86727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01893997 160.86730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01893998 160.86730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01893999 160.86734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01894000 160.86734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01894001 160.86737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01894002 160.86737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01894003 160.86738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01894004 160.86738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01894005 160.86741638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01894006 160.86741638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01894007 160.86744690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01894008 160.86746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01894009 160.86747742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01894010 160.86747742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01894011 160.86750793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01894012 160.86750793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01894013 160.86753845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01894014 160.86753845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01894015 160.86755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01894016 160.86755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01894017 160.86758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01894018 160.86758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01894019 160.86761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01894020 160.86763000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01894021 160.86764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01894022 160.86764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01894023 160.86767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01894024 160.86767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01894025 160.86770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01894026 160.86770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01894027 160.86772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01894028 160.86772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01894029 160.86776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01894030 160.86776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01894031 160.86778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01894032 160.86778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01894033 160.86781311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01894034 160.86781311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01894035 160.86784363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01894036 160.86784363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01894037 160.86785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01894038 160.86785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01894039 160.86788940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01894040 160.86790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01894041 160.86793518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01894042 160.86793518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01894043 160.86795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01894044 160.86795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01894045 160.86798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01894046 160.86798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01894047 160.86801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01894048 160.86801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01894049 160.86802673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01894050 160.86804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01894051 160.86807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01894052 160.86807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01894053 160.86810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01894054 160.86810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01894055 160.86811829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01894056 160.86811829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01894057 160.86814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01894058 160.86814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01894059 160.86817932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01894060 160.86817932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01894061 160.86820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01894062 160.86820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01894063 160.86824036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01894064 160.86824036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01894065 160.86825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01894066 160.86825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01894067 160.86828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01894068 160.86828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01894069 160.86831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01894070 160.86833191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01894071 160.86834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01894072 160.86834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01894073 160.86837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01894074 160.86837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01894075 160.86840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01894076 160.86840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01894077 160.86842346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01894078 160.86842346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01894079 160.86845398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01894080 160.86846924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01894081 160.86849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01894082 160.86849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01894083 160.86851501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01894084 160.86851501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01894085 160.86854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01894086 160.86854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01894087 160.86857605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01894088 160.86857605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01894089 160.86859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01894090 160.86859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01894091 160.86862183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01894092 160.86863708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01894093 160.86865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01894094 160.86865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01894095 160.86868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01894096 160.86868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01894097 160.86871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01894098 160.86871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01894099 160.86872864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01894100 160.86872864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01894101 160.86875916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01894102 160.86877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01894103 160.86880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01894104 160.86880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01894105 160.86882019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01894106 160.86882019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01894107 160.86885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01894108 160.86885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01894109 160.86888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01894110 160.86888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01894111 160.86889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01894112 160.86891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01894113 160.86894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01894114 160.86894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01894115 160.86897278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01894116 160.86897278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01894117 160.86898804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01894118 160.86898804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01894119 160.86901855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01894120 160.86901855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01894121 160.86904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01894122 160.86904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01894123 160.86906433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01894124 160.86907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01894125 160.86911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01894126 160.86911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01894127 160.86912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01894128 160.86912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01894129 160.86915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01894130 160.86915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01894131 160.86918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01894132 160.86918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01894133 160.86921692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01894134 160.86921692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01894135 160.86924744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01894136 160.86924744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01894137 160.86927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01894138 160.86927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01894139 160.86929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01894140 160.86929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01894141 160.86932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01894142 160.86932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01894143 160.86935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01894144 160.86936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01894145 160.86938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01894146 160.86938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01894147 160.86941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01894148 160.86941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01894149 160.86944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01894150 160.86944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01894151 160.86946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01894152 160.86946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01894153 160.86949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01894154 160.86950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01894155 160.86952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01894156 160.86952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01894157 160.86955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01894158 160.86955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01894159 160.86958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01894160 160.86958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01894161 160.86961365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01894162 160.86961365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01894163 160.86962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01894164 160.86962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01894165 160.86965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01894166 160.86967468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01894167 160.86968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01894168 160.86968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01894169 160.86972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01894170 160.86972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01894171 160.86975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01894172 160.86975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01894173 160.86976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01894174 160.86976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01894175 160.86979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01894176 160.86981201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01894177 160.86984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01894178 160.86984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01894179 160.86985779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01894180 160.86985779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01894181 160.86988831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01894182 160.86988831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01894183 160.86991882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01894184 160.86991882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01894185 160.86993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01894186 160.86994934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01894187 160.86997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01894188 160.86997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01894189 160.87001038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01894190 160.87001038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01894191 160.87002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01894192 160.87002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01894193 160.87005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01894194 160.87005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01894195 160.87008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01894196 160.87008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01894197 160.87010193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01894198 160.87011719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01894199 160.87014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01894200 160.87014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01894201 160.87016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01894202 160.87016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01894203 160.87019348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01894204 160.87019348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01894205 160.87022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01894206 160.87022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01894207 160.87023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01894208 160.87025452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01894209 160.87028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01894210 160.87028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01894211 160.87031555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01894212 160.87031555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01894213 160.87033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01894214 160.87033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01894215 160.87036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01894216 160.87037659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01894217 160.87040710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01894218 160.87040710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01894219 160.87042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01894220 160.87042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01894221 160.87045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01894222 160.87045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01894223 160.87048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01894224 160.87048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01894225 160.87049866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01894226 160.87051392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01894227 160.87054443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01894228 160.87054443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01894229 160.87055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01894230 160.87055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01894231 160.87059021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01894232 160.87059021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01894233 160.87062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01894234 160.87062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01894235 160.87063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01894236 160.87065125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01894237 160.87068176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01894238 160.87068176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01894239 160.87071228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01894240 160.87071228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01894241 160.87072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01894242 160.87072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01894243 160.87075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01894244 160.87075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01894245 160.87078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01894246 160.87078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01894247 160.87080383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01894248 160.87081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01894249 160.87084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01894250 160.87084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01894251 160.87088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01894252 160.87088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01894253 160.87089539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01894254 160.87089539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01894255 160.87092590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01894256 160.87092590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01894257 160.87095642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01894258 160.87095642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01894259 160.87098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01894260 160.87098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01894261 160.87101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01894262 160.87101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01894263 160.87103271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01894264 160.87103271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01894265 160.87106323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01894266 160.87106323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01894267 160.87109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01894268 160.87110901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01894269 160.87112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01894270 160.87112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01894271 160.87115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01894272 160.87115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01894273 160.87118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01894274 160.87118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01894275 160.87120056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01894276 160.87120056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01894277 160.87123108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01894278 160.87124634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01894279 160.87127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01894280 160.87127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01894281 160.87129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01894282 160.87129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01894283 160.87132263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01894284 160.87132263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01894285 160.87135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01894286 160.87135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01894287 160.87136841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01894288 160.87138367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01894289 160.87141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01894290 160.87141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01894291 160.87142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01894292 160.87142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01894293 160.87145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01894294 160.87145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01894295 160.87149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01894296 160.87149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01894297 160.87152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01894298 160.87152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01894299 160.87155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01894300 160.87155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01894301 160.87158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01894302 160.87158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01894303 160.87159729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01894304 160.87159729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01894305 160.87162781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01894306 160.87162781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01894307 160.87165833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01894308 160.87165833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01894309 160.87167358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01894310 160.87168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01894311 160.87171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01894312 160.87171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01894313 160.87174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01894314 160.87174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01894315 160.87176514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01894316 160.87176514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01894317 160.87179565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01894318 160.87179565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01894319 160.87182617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01894320 160.87182617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01894321 160.87185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01894322 160.87185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01894323 160.87188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01894324 160.87188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01894325 160.87191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01894326 160.87191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01894327 160.87193298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01894328 160.87193298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01894329 160.87196350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01894330 160.87197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01894331 160.87199402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01894332 160.87199402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01894333 160.87202454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01894334 160.87202454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01894335 160.87205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01894336 160.87205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01894337 160.87207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01894338 160.87207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01894339 160.87210083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01894340 160.87211609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01894341 160.87214661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01894342 160.87214661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01894343 160.87216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01894344 160.87216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01894345 160.87219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01894346 160.87219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01894347 160.87222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01894348 160.87222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01894349 160.87223816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01894350 160.87225342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01894351 160.87228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01894352 160.87228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01894353 160.87231445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01894354 160.87231445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01894355 160.87232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01894356 160.87232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01894357 160.87236023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01894358 160.87236023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01894359 160.87239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01894360 160.87239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01894361 160.87240601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01894362 160.87242126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01894363 160.87245178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01894364 160.87245178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01894365 160.87246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01894366 160.87246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01894367 160.87249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01894368 160.87249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01894369 160.87252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01894370 160.87252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01894371 160.87254333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01894372 160.87255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01894373 160.87258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01894374 160.87258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01894375 160.87261963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01894376 160.87261963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01894377 160.87263489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01894378 160.87263489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01894379 160.87266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01894380 160.87266541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01894381 160.87269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01894382 160.87271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01894383 160.87272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01894384 160.87272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01894385 160.87275696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01894386 160.87275696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01894387 160.87278748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01894388 160.87278748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01894389 160.87280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01894390 160.87280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01894391 160.87283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01894392 160.87284851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01894393 160.87286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01894394 160.87286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01894395 160.87289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01894396 160.87289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01894397 160.87292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01894398 160.87292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01894399 160.87294006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01894400 160.87294006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01894401 160.87297058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01894402 160.87298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01894403 160.87301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01894404 160.87301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01894405 160.87303162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01894406 160.87303162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01894407 160.87306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01894408 160.87306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01894409 160.87309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01894410 160.87309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01894411 160.87310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01894412 160.87310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01894413 160.87313843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01894414 160.87315369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01894415 160.87318420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01894416 160.87318420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01894417 160.87319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01894418 160.87319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01894419 160.87322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01894420 160.87322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01894421 160.87326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01894422 160.87326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01894423 160.87329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01894424 160.87329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01894425 160.87332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01894426 160.87332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01894427 160.87333679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01894428 160.87333679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01894429 160.87336731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01894430 160.87336731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01894431 160.87339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01894432 160.87339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01894433 160.87342834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01894434 160.87342834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01894435 160.87345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01894436 160.87345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01894437 160.87348938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01894438 160.87348938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01894439 160.87350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01894440 160.87350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01894441 160.87353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01894442 160.87353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01894443 160.87356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01894444 160.87358093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01894445 160.87359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01894446 160.87359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01894447 160.87362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01894448 160.87362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01894449 160.87365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01894450 160.87365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01894451 160.87367249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01894452 160.87367249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01894453 160.87370300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01894454 160.87371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01894455 160.87373352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01894456 160.87373352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01894457 160.87376404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01894458 160.87376404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01894459 160.87379456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01894460 160.87379456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01894461 160.87382507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01894462 160.87382507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01894463 160.87384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01894464 160.87385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01894465 160.87388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01894466 160.87388611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01894467 160.87390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01894468 160.87390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01894469 160.87393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01894470 160.87393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01894471 160.87396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01894472 160.87396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01894473 160.87397766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01894474 160.87399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01894475 160.87402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01894476 160.87402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01894477 160.87405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01894478 160.87405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01894479 160.87406921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01894480 160.87406921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01894481 160.87409973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01894482 160.87409973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01894483 160.87413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01894484 160.87413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01894485 160.87414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01894486 160.87416077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01894487 160.87419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01894488 160.87419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01894489 160.87422180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01894490 160.87422180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01894491 160.87423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01894492 160.87423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01894493 160.87426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01894494 160.87426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01894495 160.87429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01894496 160.87429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01894497 160.87432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01894498 160.87432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01894499 160.87435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01894500 160.87435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01894501 160.87437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01894502 160.87437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01894503 160.87440491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01894504 160.87440491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01894505 160.87443542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01894506 160.87445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01894507 160.87446594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01894508 160.87446594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01894509 160.87449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01894510 160.87449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01894511 160.87452698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01894512 160.87452698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01894513 160.87454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01894514 160.87454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01894515 160.87457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01894516 160.87458801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01894517 160.87461853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01894518 160.87461853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01894519 160.87463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01894520 160.87463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01894521 160.87466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01894522 160.87466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01894523 160.87469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01894524 160.87469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01894525 160.87471008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01894526 160.87472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01894527 160.87475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01894528 160.87475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01894529 160.87477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01894530 160.87477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01894531 160.87480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01894532 160.87480164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01894533 160.87483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01894534 160.87483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01894535 160.87484741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01894536 160.87486267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01894537 160.87489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01894538 160.87489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01894539 160.87492371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01894540 160.87492371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01894541 160.87493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01894542 160.87493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01894543 160.87496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01894544 160.87496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01894545 160.87500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01894546 160.87500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01894547 160.87501526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01894548 160.87503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01894549 160.87506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01894550 160.87506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01894551 160.87509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01894552 160.87509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01894553 160.87510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01894554 160.87510681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01894555 160.87513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01894556 160.87513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01894557 160.87516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01894558 160.87516785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01894559 160.87519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01894560 160.87519836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01894561 160.87522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01894562 160.87522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01894563 160.87524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01894564 160.87524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01894565 160.87527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01894566 160.87527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01894567 160.87530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01894568 160.87532043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01894569 160.87533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01894570 160.87533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01894571 160.87536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01894572 160.87536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01894573 160.87539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01894574 160.87539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01894575 160.87541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01894576 160.87541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01894577 160.87544250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01894578 160.87545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01894579 160.87548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01894580 160.87548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01894581 160.87550354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01894582 160.87550354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01894583 160.87553406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01894584 160.87553406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01894585 160.87556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01894586 160.87556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01894587 160.87557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01894588 160.87559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01894589 160.87562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01894590 160.87562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01894591 160.87564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01894592 160.87564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01894593 160.87567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01894594 160.87567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01894595 160.87570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01894596 160.87570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01894597 160.87573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01894598 160.87573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01894599 160.87576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01894600 160.87576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01894601 160.87579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01894602 160.87579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01894603 160.87580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01894604 160.87580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01894605 160.87583923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01894606 160.87583923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01894607 160.87586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01894608 160.87586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01894609 160.87588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01894610 160.87590027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01894611 160.87593079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01894612 160.87593079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01894613 160.87596130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01894614 160.87596130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01894615 160.87597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01894616 160.87597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01894617 160.87600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01894618 160.87600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01894619 160.87603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01894620 160.87603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01894621 160.87606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01894622 160.87606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01894623 160.87609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01894624 160.87609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01894625 160.87612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01894626 160.87612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01894627 160.87614441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01894628 160.87614441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01894629 160.87617493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01894630 160.87619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01894631 160.87620544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01894632 160.87620544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01894633 160.87623596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01894634 160.87623596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01894635 160.87626648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01894636 160.87626648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01894637 160.87628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01894638 160.87628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01894639 160.87631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01894640 160.87632751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01894641 160.87635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01894642 160.87635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01894643 160.87637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01894644 160.87637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01894645 160.87640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01894646 160.87640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01894647 160.87643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01894648 160.87643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01894649 160.87644958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01894650 160.87646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01894651 160.87649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01894652 160.87649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01894653 160.87652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01894654 160.87652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01894655 160.87654114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01894656 160.87654114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01894657 160.87657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01894658 160.87657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01894659 160.87660217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01894660 160.87660217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01894661 160.87663269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01894662 160.87663269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01894663 160.87666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01894664 160.87666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01894665 160.87667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01894666 160.87667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01894667 160.87670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01894668 160.87670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01894669 160.87673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01894670 160.87675476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01894671 160.87677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01894672 160.87677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01894673 160.87680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01894674 160.87680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01894675 160.87683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01894676 160.87683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01894677 160.87684631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01894678 160.87684631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01894679 160.87687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01894680 160.87687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01894681 160.87690735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01894682 160.87692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01894683 160.87693787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01894684 160.87693787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01894685 160.87696838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01894686 160.87696838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01894687 160.87699890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01894688 160.87699890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01894689 160.87701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01894690 160.87701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01894691 160.87704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01894692 160.87705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01894693 160.87707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01894694 160.87707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01894695 160.87710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01894696 160.87710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01894697 160.87713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01894698 160.87713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01894699 160.87715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01894700 160.87715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01894701 160.87718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01894702 160.87719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01894703 160.87722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01894704 160.87722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01894705 160.87724304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01894706 160.87724304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01894707 160.87727356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01894708 160.87727356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01894709 160.87730408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01894710 160.87730408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01894711 160.87731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01894712 160.87733459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01894713 160.87736511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01894714 160.87736511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01894715 160.87739563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01894716 160.87739563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01894717 160.87741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01894718 160.87741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01894719 160.87744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01894720 160.87744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01894721 160.87747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01894722 160.87747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01894723 160.87748718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01894724 160.87750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01894725 160.87753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01894726 160.87753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01894727 160.87754822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01894728 160.87754822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01894729 160.87757874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01894730 160.87757874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01894731 160.87760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01894732 160.87760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01894733 160.87762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01894734 160.87763977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01894735 160.87767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01894736 160.87767029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01894737 160.87770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01894738 160.87770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01894739 160.87771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01894740 160.87771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01894741 160.87774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01894742 160.87774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01894743 160.87777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01894744 160.87779236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01894745 160.87780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01894746 160.87780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01894747 160.87783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01894748 160.87783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01894749 160.87786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01894750 160.87786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01894751 160.87788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01894752 160.87788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01894753 160.87791443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01894754 160.87791443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01894755 160.87794495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01894756 160.87794495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01894757 160.87797546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01894758 160.87797546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01894759 160.87800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01894760 160.87800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01894761 160.87802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01894762 160.87802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01894763 160.87805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01894764 160.87805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01894765 160.87808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01894766 160.87809753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01894767 160.87811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01894768 160.87811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01894769 160.87814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01894770 160.87814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01894771 160.87817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01894772 160.87817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01894773 160.87818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01894774 160.87818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01894775 160.87821960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01894776 160.87823486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01894777 160.87826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01894778 160.87826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01894779 160.87828064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01894780 160.87828064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01894781 160.87831116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01894782 160.87831116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01894783 160.87834167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01894784 160.87834167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01894785 160.87835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01894786 160.87837219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01894787 160.87840271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01894788 160.87840271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01894789 160.87843323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01894790 160.87843323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01894791 160.87844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01894792 160.87844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01894793 160.87847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01894794 160.87847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01894795 160.87850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01894796 160.87850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01894797 160.87852478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01894798 160.87854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01894799 160.87857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01894800 160.87857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01894801 160.87858582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01894802 160.87858582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01894803 160.87861633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01894804 160.87861633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01894805 160.87864685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01894806 160.87864685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01894807 160.87866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01894808 160.87867737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01894809 160.87870789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01894810 160.87870789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01894811 160.87873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01894812 160.87873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01894813 160.87875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01894814 160.87875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01894815 160.87878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01894816 160.87878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01894817 160.87881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01894818 160.87882996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01894819 160.87884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01894820 160.87884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01894821 160.87887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01894822 160.87887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01894823 160.87890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01894824 160.87890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01894825 160.87892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01894826 160.87892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01894827 160.87895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01894828 160.87896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01894829 160.87898254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01894830 160.87898254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01894831 160.87901306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01894832 160.87901306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01894833 160.87904358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01894834 160.87904358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01894835 160.87905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01894836 160.87905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01894837 160.87908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01894838 160.87908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01894839 160.87911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01894840 160.87913513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01894841 160.87915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01894842 160.87915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01894843 160.87918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01894844 160.87918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01894845 160.87921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01894846 160.87921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01894847 160.87922668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01894848 160.87922668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01894849 160.87925720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01894850 160.87927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01894851 160.87930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01894852 160.87930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01894853 160.87931824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01894854 160.87931824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01894855 160.87934875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01894856 160.87934875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01894857 160.87937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01894858 160.87937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01894859 160.87939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01894860 160.87940979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01894861 160.87944031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01894862 160.87944031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01894863 160.87945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01894864 160.87945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01894865 160.87948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01894866 160.87948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01894867 160.87951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01894868 160.87951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01894869 160.87953186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01894870 160.87954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01894871 160.87957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01894872 160.87957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01894873 160.87960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01894874 160.87960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01894875 160.87962341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01894876 160.87962341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01894877 160.87965393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01894878 160.87965393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01894879 160.87968445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01894880 160.87969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01894881 160.87971497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01894882 160.87971497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01894883 160.87974548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01894884 160.87974548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01894885 160.87977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01894886 160.87977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01894887 160.87979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01894888 160.87979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01894889 160.87982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01894890 160.87982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01894891 160.87985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01894892 160.87985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01894893 160.87988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01894894 160.87988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01894895 160.87991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01894896 160.87991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01894897 160.87992859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01894898 160.87992859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01894899 160.87995911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01894900 160.87995911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01894901 160.87998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01894902 160.88000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01894903 160.88002014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01894904 160.88002014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01894905 160.88005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01894906 160.88005066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01894907 160.88008118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01894908 160.88008118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01894909 160.88009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01894910 160.88009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01894911 160.88012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01894912 160.88014221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01894913 160.88017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01894914 160.88017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01894915 160.88018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01894916 160.88018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01894917 160.88021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01894918 160.88021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01894919 160.88024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01894920 160.88024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01894921 160.88026428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01894922 160.88027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -01894923 160.88031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01894924 160.88031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -01894925 160.88032532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01894926 160.88032532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -01894927 160.88035583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01894928 160.88035583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -01894929 160.88038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01894930 160.88038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -01894931 160.88041687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01894932 160.88041687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -01894933 160.88043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01894934 160.88044739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -01894935 160.88047791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01894936 160.88047791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -01894937 160.88049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01894938 160.88049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -01894939 160.88052368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01894940 160.88052368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -01894941 160.88055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01894942 160.88055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -01894943 160.88056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01894944 160.88058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -01894945 160.88061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01894946 160.88061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -01894947 160.88064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01894948 160.88064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -01894949 160.88066101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01894950 160.88066101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -01894951 160.88069153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01894952 160.88069153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -01894953 160.88072205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01894954 160.88072205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -01894955 160.88075256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01894956 160.88075256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -01894957 160.88078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01894958 160.88078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -01894959 160.88081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01894960 160.88081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -01894961 160.88082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01894962 160.88082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -01894963 160.88085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01894964 160.88087463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -01894965 160.88088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01894966 160.88088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -01894967 160.88092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01894968 160.88092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -01894969 160.88095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01894970 160.88095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -01894971 160.88096619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01894972 160.88096619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -01894973 160.88099670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01894974 160.88099670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -01894975 160.88102722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01894976 160.88104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -01894977 160.88105774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01894978 160.88105774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -01894979 160.88108826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01894980 160.88108826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -01894981 160.88111877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01894982 160.88111877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -01894983 160.88113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01894984 160.88113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -01894985 160.88116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01894986 160.88117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -01894987 160.88121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01894988 160.88121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -01894989 160.88122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01894990 160.88122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -01894991 160.88125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01894992 160.88125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -01894993 160.88128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01894994 160.88128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -01894995 160.88130188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01894996 160.88131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -01894997 160.88134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01894998 160.88134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -01894999 160.88136292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01895000 160.88136292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -01895001 160.88139343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01895002 160.88139343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -01895003 160.88142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01895004 160.88142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -01895005 160.88143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01895006 160.88145447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -01895007 160.88148499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01895008 160.88148499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -01895009 160.88151550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01895010 160.88151550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -01895011 160.88153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01895012 160.88153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -01895013 160.88156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01895014 160.88156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -01895015 160.88159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01895016 160.88159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -01895017 160.88160706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01895018 160.88162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -01895019 160.88165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01895020 160.88165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -01895021 160.88168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01895022 160.88168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -01895023 160.88169861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01895024 160.88169861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -01895025 160.88172913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01895026 160.88172913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -01895027 160.88175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01895028 160.88175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -01895029 160.88179016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01895030 160.88179016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -01895031 160.88182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01895032 160.88182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -01895033 160.88183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01895034 160.88183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -01895035 160.88186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01895036 160.88186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -01895037 160.88189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01895038 160.88191223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -01895039 160.88192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01895040 160.88192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -01895041 160.88195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01895042 160.88195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -01895043 160.88198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01895044 160.88198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -01895045 160.88200378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01895046 160.88200378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -01895047 160.88203430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01895048 160.88204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -01895049 160.88208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01895050 160.88208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -01895051 160.88209534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01895052 160.88209534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -01895053 160.88212585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01895054 160.88212585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -01895055 160.88215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01895056 160.88215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -01895057 160.88217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01895058 160.88218689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -01895059 160.88221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01895060 160.88221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -01895061 160.88223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01895062 160.88223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -01895063 160.88226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01895064 160.88226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -01895065 160.88229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01895066 160.88229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -01895067 160.88232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01895068 160.88232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -01895069 160.88235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01895070 160.88235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -01895071 160.88238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01895072 160.88238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -01895073 160.88240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01895074 160.88240051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -01895075 160.88243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01895076 160.88243103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -01895077 160.88246155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01895078 160.88246155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -01895079 160.88247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01895080 160.88249207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -01895081 160.88252258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01895082 160.88252258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -01895083 160.88255310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01895084 160.88255310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -01895085 160.88256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01895086 160.88256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -01895087 160.88259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01895088 160.88259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -01895089 160.88262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01895090 160.88262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -01895091 160.88265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01895092 160.88265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -01895093 160.88269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01895094 160.88269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -01895095 160.88272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01895096 160.88272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -01895097 160.88273621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01895098 160.88273621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -01895099 160.88276672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01895100 160.88278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -01895101 160.88279724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01895102 160.88279724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -01895103 160.88282776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01895104 160.88282776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -01895105 160.88285828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01895106 160.88285828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -01895107 160.88287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01895108 160.88287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -01895109 160.88290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01895110 160.88290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -01895111 160.88293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01895112 160.88294983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -01895113 160.88296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01895114 160.88296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -01895115 160.88299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01895116 160.88299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -01895117 160.88302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01895118 160.88302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -01895119 160.88304138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01895120 160.88304138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -01895121 160.88307190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01895122 160.88308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -01895123 160.88311768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01895124 160.88311768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -01895125 160.88313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01895126 160.88313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -01895127 160.88316345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01895128 160.88316345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -01895129 160.88319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01895130 160.88319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -01895131 160.88320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01895132 160.88322449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -01895133 160.88325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01895134 160.88325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -01895135 160.88327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01895136 160.88327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -01895137 160.88330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01895138 160.88330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -01895139 160.88333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01895140 160.88333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -01895141 160.88334656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01895142 160.88336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -01895143 160.88339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01895144 160.88339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -01895145 160.88342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01895146 160.88342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -01895147 160.88343811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01895148 160.88343811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -01895149 160.88346863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01895150 160.88346863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -01895151 160.88349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01895152 160.88349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -01895153 160.88352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01895154 160.88352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -01895155 160.88356018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01895156 160.88356018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -01895157 160.88359070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01895158 160.88359070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -01895159 160.88360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01895160 160.88360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -01895161 160.88363647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01895162 160.88363647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -01895163 160.88366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01895164 160.88366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -01895165 160.88369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01895166 160.88369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -01895167 160.88372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01895168 160.88372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -01895169 160.88374329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01895170 160.88374329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -01895171 160.88377380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01895172 160.88377380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -01895173 160.88380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01895174 160.88381958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -01895175 160.88383484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01895176 160.88383484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -01895177 160.88386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01895178 160.88386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -01895179 160.88389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01895180 160.88389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -01895181 160.88391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01895182 160.88391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -01895183 160.88394165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01895184 160.88395691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -01895185 160.88398743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01895186 160.88398743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -01895187 160.88400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01895188 160.88400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -01895189 160.88403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01895190 160.88403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -01895191 160.88406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01895192 160.88406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -01895193 160.88407898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01895194 160.88407898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -01895195 160.88410950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01895196 160.88412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -01895197 160.88414001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01895198 160.88414001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -01895199 160.88417053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01895200 160.88417053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -01895201 160.88420105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01895202 160.88420105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -01895203 160.88423157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01895204 160.88423157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -01895205 160.88424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01895206 160.88426208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -01895207 160.88429260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01895208 160.88429260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -01895209 160.88430786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01895210 160.88430786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -01895211 160.88433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01895212 160.88433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -01895213 160.88436890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01895214 160.88436890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -01895215 160.88438416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01895216 160.88439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -01895217 160.88442993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01895218 160.88442993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -01895219 160.88446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01895220 160.88446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -01895221 160.88447571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01895222 160.88447571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -01895223 160.88450623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01895224 160.88450623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -01895225 160.88453674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01895226 160.88453674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -01895227 160.88456726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01895228 160.88456726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -01895229 160.88459778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01895230 160.88459778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -01895231 160.88462830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01895232 160.88462830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -01895233 160.88464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01895234 160.88464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -01895235 160.88467407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01895236 160.88467407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -01895237 160.88470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01895238 160.88470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -01895239 160.88473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01895240 160.88473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -01895241 160.88476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01895242 160.88476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -01895243 160.88478088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01895244 160.88478088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -01895245 160.88481140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01895246 160.88481140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -01895247 160.88484192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01895248 160.88485718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -01895249 160.88487244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01895250 160.88487244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -01895251 160.88490295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01895252 160.88490295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -01895253 160.88493347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01895254 160.88493347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -01895255 160.88494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01895256 160.88494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -01895257 160.88497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01895258 160.88499451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -01895259 160.88502502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01895260 160.88502502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -01895261 160.88504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01895262 160.88504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -01895263 160.88507080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01895264 160.88507080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -01895265 160.88510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01895266 160.88510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -01895267 160.88511658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01895268 160.88511658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -01895269 160.88514709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01895270 160.88516235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -01895271 160.88517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01895272 160.88517761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -01895273 160.88520813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01895274 160.88520813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -01895275 160.88523865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01895276 160.88523865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -01895277 160.88528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01895278 160.88528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -01895279 160.88531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01895280 160.88533020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -01895281 160.88534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01895282 160.88534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -01895283 160.88537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01895284 160.88537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -01895285 160.88540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01895286 160.88540649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -01895287 160.88542175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01895288 160.88542175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -01895289 160.88545227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01895290 160.88545227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -01895291 160.88548279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01895292 160.88549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -01895293 160.88551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01895294 160.88551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -01895295 160.88554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01895296 160.88554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -01895297 160.88557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01895298 160.88557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -01895299 160.88558960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01895300 160.88558960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -01895301 160.88562012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01895302 160.88563538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -01895303 160.88565063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01895304 160.88565063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -01895305 160.88568115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01895306 160.88568115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -01895307 160.88571167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01895308 160.88571167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -01895309 160.88572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01895310 160.88572693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -01895311 160.88575745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01895312 160.88577271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -01895313 160.88580322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01895314 160.88580322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -01895315 160.88581848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01895316 160.88581848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -01895317 160.88584900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01895318 160.88584900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -01895319 160.88587952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01895320 160.88587952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -01895321 160.88589478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01895322 160.88591003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -01895323 160.88594055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01895324 160.88594055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -01895325 160.88597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01895326 160.88597107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -01895327 160.88598633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01895328 160.88598633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -01895329 160.88601685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01895330 160.88601685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -01895331 160.88604736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01895332 160.88604736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -01895333 160.88607788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01895334 160.88607788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -01895335 160.88610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01895336 160.88610840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -01895337 160.88612366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01895338 160.88612366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -01895339 160.88615417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01895340 160.88615417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -01895341 160.88618469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01895342 160.88619995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -01895343 160.88621521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01895344 160.88621521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -01895345 160.88624573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01895346 160.88624573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -01895347 160.88627625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01895348 160.88627625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -01895349 160.88629150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01895350 160.88629150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -01895351 160.88632202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01895352 160.88632202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -01895353 160.88635254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01895354 160.88636780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -01895355 160.88638306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01895356 160.88638306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -01895357 160.88641357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01895358 160.88641357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -01895359 160.88644409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01895360 160.88644409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -01895361 160.88645935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01895362 160.88645935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -01895363 160.88648987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01895364 160.88650513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -01895365 160.88652039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01895366 160.88652039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -01895367 160.88655090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01895368 160.88655090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -01895369 160.88658142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01895370 160.88658142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -01895371 160.88661194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01895372 160.88661194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -01895373 160.88662720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01895374 160.88664246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -01895375 160.88667297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01895376 160.88667297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -01895377 160.88668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01895378 160.88668823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -01895379 160.88671875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01895380 160.88671875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -01895381 160.88674927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01895382 160.88674927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -01895383 160.88676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01895384 160.88676453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -01895385 160.88679504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01895386 160.88681030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -01895387 160.88684082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01895388 160.88684082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -01895389 160.88685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01895390 160.88685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -01895391 160.88688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01895392 160.88688660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -01895393 160.88691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01895394 160.88691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -01895395 160.88693237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01895396 160.88694763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -01895397 160.88697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01895398 160.88697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -01895399 160.88700867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01895400 160.88700867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -01895401 160.88702393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01895402 160.88702393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -01895403 160.88705444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01895404 160.88705444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -01895405 160.88708496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01895406 160.88708496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -01895407 160.88711548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01895408 160.88711548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -01895409 160.88714600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01895410 160.88714600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -01895411 160.88716125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01895412 160.88716125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -01895413 160.88719177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01895414 160.88719177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -01895415 160.88722229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01895416 160.88723755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -01895417 160.88725281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01895418 160.88725281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -01895419 160.88728333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01895420 160.88728333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -01895421 160.88731384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01895422 160.88731384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -01895423 160.88732910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01895424 160.88732910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -01895425 160.88735962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01895426 160.88737488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -01895427 160.88740540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01895428 160.88740540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -01895429 160.88742065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01895430 160.88742065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -01895431 160.88745117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01895432 160.88745117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -01895433 160.88748169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01895434 160.88748169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -01895435 160.88749695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01895436 160.88749695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -01895437 160.88752747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01895438 160.88754272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -01895439 160.88755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01895440 160.88755798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -01895441 160.88758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01895442 160.88758850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -01895443 160.88761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01895444 160.88761902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -01895445 160.88763428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01895446 160.88763428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -01895447 160.88766479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01895448 160.88768005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -01895449 160.88771057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01895450 160.88771057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -01895451 160.88772583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01895452 160.88772583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -01895453 160.88775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01895454 160.88775635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -01895455 160.88778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01895456 160.88778687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -01895457 160.88780212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01895458 160.88781738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -01895459 160.88784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01895460 160.88784790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -01895461 160.88787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01895462 160.88787842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -01895463 160.88789368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01895464 160.88789368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -01895465 160.88792419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01895466 160.88792419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -01895467 160.88795471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01895468 160.88795471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -01895469 160.88796997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01895470 160.88798523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -01895471 160.88801575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01895472 160.88801575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -01895473 160.88803101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01895474 160.88803101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -01895475 160.88806152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01895476 160.88806152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -01895477 160.88809204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01895478 160.88809204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -01895479 160.88812256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01895480 160.88812256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -01895481 160.88815308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01895482 160.88815308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -01895483 160.88818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01895484 160.88818359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -01895485 160.88819885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01895486 160.88819885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -01895487 160.88822937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01895488 160.88822937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -01895489 160.88825989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01895490 160.88827515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -01895491 160.88829041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01895492 160.88829041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -01895493 160.88832092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01895494 160.88832092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -01895495 160.88835144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01895496 160.88835144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -01895497 160.88836670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01895498 160.88836670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -01895499 160.88839722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01895500 160.88841248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -01895501 160.88842773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01895502 160.88842773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -01895503 160.88845825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01895504 160.88845825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -01895505 160.88848877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01895506 160.88848877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -01895507 160.88851929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01895508 160.88851929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -01895509 160.88853455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01895510 160.88853455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -01895511 160.88856506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01895512 160.88858032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -01895513 160.88859558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01895514 160.88859558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -01895515 160.88862610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01895516 160.88862610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -01895517 160.88865662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01895518 160.88865662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -01895519 160.88867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01895520 160.88867188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -01895521 160.88870239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01895522 160.88871765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -01895523 160.88874817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01895524 160.88874817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -01895525 160.88876343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01895526 160.88876343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -01895527 160.88879395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01895528 160.88879395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -01895529 160.88882446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01895530 160.88882446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -01895531 160.88883972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01895532 160.88885498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -01895533 160.88888550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01895534 160.88888550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -01895535 160.88891602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01895536 160.88891602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -01895537 160.88893127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01895538 160.88893127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -01895539 160.88896179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01895540 160.88896179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -01895541 160.88899231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01895542 160.88899231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -01895543 160.88902283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01895544 160.88902283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -01895545 160.88905334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01895546 160.88905334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -01895547 160.88906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01895548 160.88906860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -01895549 160.88909912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01895550 160.88909912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -01895551 160.88912964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01895552 160.88912964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -01895553 160.88916016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01895554 160.88916016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -01895555 160.88919067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01895556 160.88919067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -01895557 160.88922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01895558 160.88922119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -01895559 160.88923645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01895560 160.88923645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -01895561 160.88926697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01895562 160.88926697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -01895563 160.88929749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01895564 160.88931274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -01895565 160.88932800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01895566 160.88932800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -01895567 160.88935852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01895568 160.88935852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -01895569 160.88938904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01895570 160.88938904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -01895571 160.88940430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01895572 160.88940430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -01895573 160.88943481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01895574 160.88945007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -01895575 160.88946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01895576 160.88946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -01895577 160.88949585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01895578 160.88949585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -01895579 160.88952637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01895580 160.88952637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -01895581 160.88954163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01895582 160.88954163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -01895583 160.88957214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01895584 160.88958740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -01895585 160.88961792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01895586 160.88961792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -01895587 160.88963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01895588 160.88963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -01895589 160.88966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01895590 160.88966370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -01895591 160.88969421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01895592 160.88969421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -01895593 160.88970947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01895594 160.88970947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -01895595 160.88973999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01895596 160.88975525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -01895597 160.88978577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01895598 160.88978577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -01895599 160.88980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01895600 160.88980103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -01895601 160.88983154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01895602 160.88983154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -01895603 160.88986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01895604 160.88986206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -01895605 160.88987732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01895606 160.88989258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -01895607 160.88992310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01895608 160.88992310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -01895609 160.88993835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01895610 160.88993835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -01895611 160.88996887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01895612 160.88996887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -01895613 160.88999939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01895614 160.88999939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -01895615 160.89002991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01895616 160.89002991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -01895617 160.89006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01895618 160.89006042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -01895619 160.89009094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01895620 160.89009094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -01895621 160.89010620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01895622 160.89010620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -01895623 160.89013672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01895624 160.89013672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -01895625 160.89016724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01895626 160.89016724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -01895627 160.89018250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01895628 160.89019775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -01895629 160.89022827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01895630 160.89022827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -01895631 160.89025879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01895632 160.89025879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -01895633 160.89027405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01895634 160.89027405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -01895635 160.89030457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01895636 160.89030457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -01895637 160.89033508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01895638 160.89033508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -01895639 160.89036560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01895640 160.89036560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -01895641 160.89039612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01895642 160.89039612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -01895643 160.89042664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01895644 160.89042664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -01895645 160.89044189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01895646 160.89044189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -01895647 160.89047241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01895648 160.89048767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -01895649 160.89050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01895650 160.89050293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -01895651 160.89053345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01895652 160.89053345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -01895653 160.89056396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01895654 160.89056396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -01895655 160.89057922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01895656 160.89057922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -01895657 160.89060974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01895658 160.89062500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -01895659 160.89065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01895660 160.89065552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -01895661 160.89067078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01895662 160.89067078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -01895663 160.89070129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01895664 160.89070129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -01895665 160.89073181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01895666 160.89073181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -01895667 160.89074707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01895668 160.89074707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -01895669 160.89077759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01895670 160.89079285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -01895671 160.89082336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01895672 160.89082336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -01895673 160.89083862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01895674 160.89083862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -01895675 160.89086914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01895676 160.89086914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -01895677 160.89089966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01895678 160.89089966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -01895679 160.89091492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01895680 160.89093018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -01895681 160.89096069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01895682 160.89096069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -01895683 160.89097595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01895684 160.89097595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -01895685 160.89100647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01895686 160.89100647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -01895687 160.89103699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01895688 160.89103699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -01895689 160.89105225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01895690 160.89106750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -01895691 160.89109802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01895692 160.89109802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -01895693 160.89112854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01895694 160.89112854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -01895695 160.89114380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01895696 160.89114380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -01895697 160.89117432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01895698 160.89117432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -01895699 160.89120483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01895700 160.89122009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -01895701 160.89123535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01895702 160.89123535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -01895703 160.89126587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01895704 160.89126587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -01895705 160.89129639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01895706 160.89129639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -01895707 160.89131165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01895708 160.89131165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -01895709 160.89134216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01895710 160.89134216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -01895711 160.89137268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01895712 160.89137268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -01895713 160.89140320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01895714 160.89140320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -01895715 160.89143372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01895716 160.89143372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -01895717 160.89144897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01895718 160.89144897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -01895719 160.89147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01895720 160.89147949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -01895721 160.89151001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01895722 160.89152527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -01895723 160.89154053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01895724 160.89154053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -01895725 160.89157104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01895726 160.89157104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -01895727 160.89160156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01895728 160.89160156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -01895729 160.89161682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01895730 160.89161682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -01895731 160.89164734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01895732 160.89164734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -01895733 160.89167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01895734 160.89169312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -01895735 160.89170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01895736 160.89170837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -01895737 160.89173889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01895738 160.89173889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -01895739 160.89176941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01895740 160.89176941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -01897706 160.91944885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -01897707 160.91947937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01897708 160.91947937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -01897709 160.91949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01897710 160.91949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -01897711 160.91952515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01897712 160.91954041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -01897713 160.91957092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01897714 160.91957092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -01897715 160.91958618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01897716 160.91958618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -01897717 160.91961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01897718 160.91961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -01897719 160.91964722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01897720 160.91964722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -01897721 160.91966248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01897722 160.91967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -01897723 160.91969299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01897724 160.91970825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -01897725 160.91973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01897726 160.91973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -01897727 160.91975403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01897728 160.91975403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -01897729 160.91978455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01897730 160.91978455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -01897731 160.91981506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01897732 160.91981506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -01897733 160.91983032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01897734 160.91984558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -01897735 160.91987610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01897736 160.91987610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -01897737 160.91989136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01897738 160.91989136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -01897739 160.91992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01897740 160.91992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -01897741 160.91995239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01897742 160.91995239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -01897743 160.91996765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01897744 160.91998291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -01897745 160.92001343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01897746 160.92001343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -01897747 160.92004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01897748 160.92004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -01897749 160.92005920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -01900421 160.95756531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -01900422 160.95758057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1c8 -01900423 160.95761108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -01900424 160.95761108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1d8 -01900425 160.95762634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -01900426 160.95762634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1e8 -01900427 160.95765686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -01900428 160.95765686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe1f8 -01900429 160.95768738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -01900430 160.95768738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe208 -01900431 160.95770264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -01900432 160.95771790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe218 -01900433 160.95774841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -01900434 160.95774841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe228 -01900435 160.95777893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -01900436 160.95777893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe238 -01900437 160.95779419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -01900438 160.95779419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe248 -01900439 160.95782471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -01900440 160.95782471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe258 -01900441 160.95785522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -01900442 160.95785522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe268 -01900443 160.95788574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -01900444 160.95788574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe278 -01900445 160.95791626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -01900446 160.95791626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe288 -01900447 160.95794678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -01900448 160.95794678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe298 -01900449 160.95796204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -01900450 160.95796204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2a8 -01900451 160.95799255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -01900452 160.95799255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2b8 -01900453 160.95802307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -01900454 160.95802307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2c8 -01900455 160.95805359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -01900456 160.95805359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2d8 -01900457 160.95808411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -01900458 160.95808411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2e8 -01900459 160.95809937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -01900460 160.95809937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe2f8 -01900461 160.95812988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -01900462 160.95812988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe308 -01900463 160.95816040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -01900464 160.95817566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xe318 -01903264 160.99749756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -01903265 160.99752808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -01903266 160.99752808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -01903267 160.99755859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -01903268 160.99755859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -01903269 160.99757385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -01903270 160.99757385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -01903271 160.99760437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -01903272 160.99760437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -01903273 160.99763489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -01903274 160.99765015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -01903275 160.99766541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -01903276 160.99766541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -01903277 160.99769592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -01903278 160.99769592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -01903279 160.99772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -01903280 160.99772644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -01903281 160.99774170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -01903282 160.99774170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -01903283 160.99777222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b38 -01903284 160.99778748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b38 -01903285 160.99781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b48 -01903286 160.99781799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b48 -01903287 160.99783325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b58 -01903288 160.99783325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b58 -01903289 160.99786377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b68 -01903290 160.99786377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b68 -01903291 160.99789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b78 -01903292 160.99789429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b78 -01903293 160.99790955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b88 -01903294 160.99792480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b88 -01903295 160.99795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b98 -01903296 160.99795532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b98 -01903297 160.99797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba8 -01903298 160.99797058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ba8 -01903299 160.99800110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb8 -01903300 160.99800110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb8 -01903301 160.99803162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc8 -01903302 160.99803162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc8 -01903303 160.99804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd8 -01903304 160.99804688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd8 -01903305 160.99807739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be8 -01903306 160.99809265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be8 -01903307 160.99812317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf8 -01908355 161.03587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e18 -01908356 161.03587341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01908357 161.03587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e18 -01908358 161.03588867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -01908359 161.03590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e28 -01908360 161.03591919 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01908361 161.03591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e28 -01908362 161.03591919 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -01908363 161.03594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e38 -01908364 161.03594971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01908365 161.03594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e38 -01908366 161.03594971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -01908367 161.03596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e48 -01908368 161.03596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e48 -01908369 161.03596497 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01908370 161.03596497 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -01908371 161.03599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e58 -01908372 161.03599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e58 -01908373 161.03601074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01908374 161.03601074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -01908375 161.03602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e68 -01908376 161.03602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e68 -01908377 161.03602600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01908378 161.03602600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -01908379 161.03605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e78 -01908380 161.03605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e78 -01908381 161.03605652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01908382 161.03605652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -01908383 161.03608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e88 -01908384 161.03608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e88 -01908385 161.03608704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01908386 161.03610229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -01908387 161.03610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e98 -01908388 161.03610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e98 -01908389 161.03611755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01908390 161.03611755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -01908391 161.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea8 -01908392 161.03614807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea8 -01908393 161.03614807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01908394 161.03614807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -01908395 161.03617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb8 -01908396 161.03617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb8 -01908397 161.03617859 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01908398 161.03617859 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -01913713 161.07458496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -01913714 161.07458496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -01913715 161.07458496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -01913716 161.07458496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -01913717 161.07461548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -01913718 161.07461548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -01913719 161.07463074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -01913720 161.07463074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -01913721 161.07464600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -01913722 161.07464600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -01913723 161.07464600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -01913724 161.07464600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -01913725 161.07467651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -01913726 161.07467651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -01913727 161.07467651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -01913728 161.07467651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -01913729 161.07470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -01913730 161.07470703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -01913731 161.07470703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -01913732 161.07470703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -01913733 161.07472229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -01913734 161.07473755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -01913735 161.07473755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -01913736 161.07473755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -01913737 161.07476807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -01913738 161.07476807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -01913739 161.07476807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -01913740 161.07476807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -01913741 161.07478333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -01913742 161.07478333 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -01913743 161.07478333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -01913744 161.07478333 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -01913745 161.07481384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -01913746 161.07481384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -01913747 161.07481384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -01913748 161.07482910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -01913749 161.07484436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -01913750 161.07485962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -01913751 161.07485962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -01913752 161.07485962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -01913753 161.07487488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -01913754 161.07487488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -01913755 161.07487488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -01913756 161.07487488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -01914133 161.07768250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -01914134 161.07768250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -01914135 161.07768250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -01914136 161.07769775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f0 -01914137 161.07772827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -01914138 161.07772827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -01914139 161.07772827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -01914140 161.07772827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb600 -01914141 161.07774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b8 -01914142 161.07774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b8 -01914143 161.07774353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -01914144 161.07774353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb610 -01914145 161.07777405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c8 -01914146 161.07777405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c8 -01914147 161.07777405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -01914148 161.07778931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb620 -01914149 161.07780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d8 -01914150 161.07780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d8 -01914151 161.07780457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -01914152 161.07780457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb630 -01914153 161.07781982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e8 -01914154 161.07783508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e8 -01914155 161.07783508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -01914156 161.07783508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb640 -01914157 161.07786560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f8 -01914158 161.07786560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f8 -01914159 161.07786560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -01914160 161.07786560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb650 -01914161 161.07788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e908 -01914162 161.07788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e908 -01914163 161.07789612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -01914164 161.07789612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb660 -01914165 161.07791138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e918 -01914166 161.07791138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e918 -01914167 161.07792664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -01914168 161.07792664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb670 -01914169 161.07794189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e928 -01914170 161.07795715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e928 -01914171 161.07795715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -01914172 161.07795715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb680 -01914173 161.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e938 -01914174 161.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e938 -01914175 161.07797241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -01914176 161.07798767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xb690 -01914577 161.08103943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb8 -01914578 161.08103943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -01914579 161.08103943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efb8 -01914580 161.08103943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb0 -01914581 161.08106995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc8 -01914582 161.08106995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -01914583 161.08106995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efc8 -01914584 161.08106995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc0 -01914585 161.08108521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd8 -01914586 161.08108521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -01914587 161.08108521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efd8 -01914588 161.08110046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd0 -01914589 161.08111572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe8 -01914590 161.08113098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -01914591 161.08113098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1efe8 -01914592 161.08113098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce0 -01914593 161.08114624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff8 -01914594 161.08114624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eff8 -01914595 161.08114624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -01914596 161.08114624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf0 -01914597 161.08117676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f008 -01914598 161.08117676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f008 -01914599 161.08117676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -01914600 161.08117676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd00 -01914601 161.08120728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f018 -01914602 161.08120728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f018 -01914603 161.08122253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -01914604 161.08122253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd10 -01914605 161.08122253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f028 -01914606 161.08123779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f028 -01914607 161.08123779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -01914608 161.08123779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd20 -01914609 161.08126831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f038 -01914610 161.08126831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f038 -01914611 161.08126831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -01914612 161.08126831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd30 -01914613 161.08129883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f048 -01914614 161.08129883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f048 -01914615 161.08129883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -01914616 161.08129883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd40 -01914617 161.08131409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -01914618 161.08131409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f058 -01914619 161.08132935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -01914620 161.08132935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd50 -01915038 161.08444214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f718 -01915039 161.08444214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b0 -01915040 161.08444214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f718 -01915041 161.08447266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -01915042 161.08447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f728 -01915043 161.08447266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c0 -01915044 161.08447266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f728 -01915045 161.08448792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -01915046 161.08450317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -01915047 161.08450317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -01915048 161.08450317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3d0 -01915049 161.08453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -01915050 161.08453369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -01915051 161.08453369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -01915052 161.08453369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3e0 -01915053 161.08456421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -01915054 161.08456421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -01915055 161.08456421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -01915056 161.08456421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3f0 -01915057 161.08457947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -01915058 161.08457947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -01915059 161.08459473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -01915060 161.08459473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc400 -01915061 161.08460999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -01915062 161.08462524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -01915063 161.08462524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -01915064 161.08462524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc410 -01915065 161.08464050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -01915066 161.08464050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -01915067 161.08464050 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -01915068 161.08465576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc420 -01915069 161.08467102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -01915070 161.08467102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -01915071 161.08468628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -01915072 161.08468628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc430 -01915073 161.08470154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -01915074 161.08470154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -01915075 161.08471680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -01915076 161.08471680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc440 -01915077 161.08471680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -01915078 161.08471680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -01915079 161.08474731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -01915080 161.08474731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc450 -01915081 161.08474731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c8 -01915161 161.08535767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f918 -01915162 161.08535767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -01915163 161.08535767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f918 -01915164 161.08535767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc590 -01915165 161.08538818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f928 -01915166 161.08540344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f928 -01915167 161.08540344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -01915168 161.08540344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a0 -01915169 161.08543396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f938 -01915170 161.08543396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f938 -01915171 161.08543396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -01915172 161.08543396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b0 -01915173 161.08544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f948 -01915174 161.08544922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f948 -01915175 161.08544922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -01915176 161.08546448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c0 -01915177 161.08547974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f958 -01915178 161.08547974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f958 -01915179 161.08549500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -01915180 161.08549500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d0 -01915181 161.08551025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f968 -01915182 161.08551025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f968 -01915183 161.08551025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -01915184 161.08552551 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e0 -01915185 161.08554077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f978 -01915186 161.08554077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f978 -01915187 161.08555603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -01915188 161.08555603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5f0 -01915189 161.08557129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f988 -01915190 161.08557129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f988 -01915191 161.08558655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -01915192 161.08558655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc600 -01915193 161.08558655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f998 -01915194 161.08558655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f998 -01915195 161.08561707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -01915196 161.08561707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc610 -01915197 161.08561707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a8 -01915198 161.08561707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a8 -01915199 161.08564758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -01915200 161.08564758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc620 -01915201 161.08564758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b8 -01915202 161.08566284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b8 -01915203 161.08566284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -01915204 161.08566284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xc630 -01915477 161.08773804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -01915478 161.08773804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -01915479 161.08773804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca50 -01915480 161.08773804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -01915481 161.08775330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -01915482 161.08775330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -01915483 161.08775330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -01915484 161.08776855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca60 -01915485 161.08778381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -01915486 161.08779907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -01915487 161.08779907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -01915488 161.08779907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca70 -01915489 161.08781433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -01915490 161.08781433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -01915491 161.08781433 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -01915492 161.08781433 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca80 -01915493 161.08784485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -01915494 161.08784485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -01915495 161.08784485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -01915496 161.08786011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xca90 -01915497 161.08787537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -01915498 161.08787537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -01915499 161.08789063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -01915500 161.08789063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa0 -01915501 161.08789063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -01915502 161.08789063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -01915503 161.08790588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -01915504 161.08790588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab0 -01915505 161.08793640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -01915506 161.08793640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -01915507 161.08795166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -01915508 161.08795166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac0 -01915509 161.08796692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -01915510 161.08796692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -01915511 161.08796692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -01915512 161.08796692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad0 -01915513 161.08798218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -01915514 161.08798218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -01915515 161.08799744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -01915516 161.08799744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae0 -01915517 161.08801270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -01915518 161.08801270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -01915519 161.08804321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -01915520 161.08804321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf0 -01915627 161.08885193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -01915628 161.08885193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -01915629 161.08885193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcc90 -01915630 161.08885193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -01915631 161.08886719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -01915632 161.08886719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -01915633 161.08886719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -01915634 161.08886719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcca0 -01915635 161.08889771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -01915636 161.08891296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -01915637 161.08891296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -01915638 161.08891296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccb0 -01915639 161.08892822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -01915640 161.08892822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -01915641 161.08892822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -01915642 161.08892822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccc0 -01915643 161.08895874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -01915644 161.08895874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -01915645 161.08895874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -01915646 161.08897400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccd0 -01915647 161.08898926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -01915648 161.08898926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -01915649 161.08900452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -01915650 161.08900452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcce0 -01915651 161.08900452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -01915652 161.08901978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -01915653 161.08901978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -01915654 161.08901978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xccf0 -01915655 161.08905029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -01915656 161.08905029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -01915657 161.08906555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -01915658 161.08906555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd00 -01915659 161.08908081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -01915660 161.08908081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -01915661 161.08908081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -01915662 161.08908081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd10 -01915663 161.08909607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -01915664 161.08909607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -01915665 161.08911133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -01915666 161.08912659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd20 -01915667 161.08912659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -01915668 161.08912659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -01915669 161.08915710 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -01915670 161.08915710 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd30 -01915735 161.08964539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -01915736 161.08964539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01915737 161.08964539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce30 -01915738 161.08964539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -01915739 161.08967590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01915740 161.08967590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -01915741 161.08967590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -01915742 161.08967590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce40 -01915743 161.08970642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01915744 161.08970642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -01915745 161.08970642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -01915746 161.08970642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce50 -01915747 161.08972168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01915748 161.08972168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -01915749 161.08973694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -01915750 161.08973694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce60 -01915751 161.08975220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01915752 161.08976746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -01915753 161.08976746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -01915754 161.08976746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce70 -01915755 161.08979797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01915756 161.08979797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -01915757 161.08979797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -01915758 161.08979797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce80 -01915759 161.08981323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01915760 161.08981323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -01915761 161.08982849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -01915762 161.08982849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xce90 -01915763 161.08984375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -01915764 161.08984375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -01915765 161.08985901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -01915766 161.08985901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcea0 -01915767 161.08987427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -01915768 161.08987427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -01915769 161.08988953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -01915770 161.08988953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xceb0 -01915771 161.08990479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -01915772 161.08990479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -01915773 161.08992004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -01915774 161.08992004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xcec0 -01915775 161.08993530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -01915776 161.08993530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -01915777 161.08995056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -01915778 161.08996582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xced0 -01915999 161.09170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b8 -01916000 161.09170532 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -01916001 161.09170532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b8 -01916002 161.09170532 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -01916003 161.09172058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c8 -01916004 161.09172058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -01916005 161.09172058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c8 -01916006 161.09172058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -01916007 161.09175110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d8 -01916008 161.09175110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d8 -01916009 161.09176636 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -01916010 161.09176636 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -01916011 161.09178162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e8 -01916012 161.09178162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e8 -01916013 161.09178162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -01916014 161.09178162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -01916015 161.09181213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -01916016 161.09181213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -01916017 161.09181213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -01916018 161.09182739 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -01916019 161.09184265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -01916020 161.09184265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -01916021 161.09185791 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -01916022 161.09185791 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -01916023 161.09187317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -01916024 161.09187317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -01916025 161.09187317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -01916026 161.09187317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -01916027 161.09188843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -01916028 161.09190369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -01916029 161.09190369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -01916030 161.09190369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd290 -01916031 161.09193420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -01916032 161.09193420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -01916033 161.09194946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -01916034 161.09194946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2a0 -01916035 161.09194946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20748 -01916036 161.09194946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20748 -01916037 161.09196472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -01916038 161.09196472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2b0 -01916039 161.09197998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20758 -01916040 161.09197998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20758 -01916041 161.09199524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -01916042 161.09201050 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xd2c0 -01920569 161.12554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -01920570 161.12554932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -01920571 161.12556458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -01920572 161.12556458 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11700 -01920573 161.12559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -01920574 161.12559509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -01920575 161.12559509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -01920576 161.12559509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11710 -01920577 161.12562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -01920578 161.12562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -01920579 161.12562561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -01920580 161.12562561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11720 -01920581 161.12564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01920582 161.12564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -01920583 161.12565613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -01920584 161.12565613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11730 -01920585 161.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01920586 161.12568665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -01920587 161.12568665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -01920588 161.12568665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11740 -01920589 161.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01920590 161.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -01920591 161.12570190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -01920592 161.12570190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11750 -01920593 161.12573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01920594 161.12573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -01920595 161.12573242 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -01920596 161.12574768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11760 -01920597 161.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01920598 161.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -01920599 161.12577820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -01920600 161.12577820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11770 -01920601 161.12577820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01920602 161.12577820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -01920603 161.12579346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -01920604 161.12579346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11780 -01920605 161.12580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01920606 161.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -01920607 161.12582397 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -01920608 161.12583923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11790 -01920609 161.12585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -01920610 161.12585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -01920611 161.12586975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -01920612 161.12586975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x117a0 -01921889 161.13528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -01921890 161.13528442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -01921891 161.13528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -01921892 161.13528442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b70 -01921893 161.13531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -01921894 161.13531494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -01921895 161.13531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -01921896 161.13531494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b80 -01921897 161.13533020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -01921898 161.13533020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -01921899 161.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -01921900 161.13534546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b90 -01921901 161.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -01921902 161.13537598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -01921903 161.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -01921904 161.13537598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ba0 -01921905 161.13539124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -01921906 161.13539124 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -01921907 161.13539124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -01921908 161.13539124 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bb0 -01921909 161.13542175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -01921910 161.13542175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -01921911 161.13542175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -01921912 161.13542175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bc0 -01921913 161.13545227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -01921914 161.13545227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -01921915 161.13546753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -01921916 161.13546753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bd0 -01921917 161.13548279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -01921918 161.13548279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -01921919 161.13548279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -01921920 161.13548279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12be0 -01921921 161.13551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -01921922 161.13551331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -01921923 161.13551331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -01921924 161.13551331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12bf0 -01921925 161.13554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -01921926 161.13554382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -01921927 161.13554382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -01921928 161.13555908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c00 -01921929 161.13555908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -01921930 161.13557434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -01921931 161.13557434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -01921932 161.13557434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c10 -01922099 161.13681030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -01922100 161.13681030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b8 -01922101 161.13681030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ec0 -01922102 161.13681030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268b8 -01922103 161.13682556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -01922104 161.13682556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c8 -01922105 161.13682556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ed0 -01922106 161.13682556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268c8 -01922107 161.13685608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -01922108 161.13685608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d8 -01922109 161.13687134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ee0 -01922110 161.13687134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268d8 -01922111 161.13690186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -01922112 161.13690186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e8 -01922113 161.13690186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ef0 -01922114 161.13690186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268e8 -01922115 161.13691711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -01922116 161.13691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f8 -01922117 161.13691711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f00 -01922118 161.13691711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x268f8 -01922119 161.13694763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -01922120 161.13694763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26908 -01922121 161.13694763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f10 -01922122 161.13694763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26908 -01922123 161.13697815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -01922124 161.13697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26918 -01922125 161.13697815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f20 -01922126 161.13697815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26918 -01922127 161.13700867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -01922128 161.13700867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26928 -01922129 161.13700867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f30 -01922130 161.13700867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26928 -01922131 161.13703918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -01922132 161.13703918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26938 -01922133 161.13703918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f40 -01922134 161.13703918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26938 -01922135 161.13706970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -01922136 161.13706970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26948 -01922137 161.13706970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f50 -01922138 161.13706970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26948 -01922139 161.13710022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -01922140 161.13710022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26958 -01922141 161.13710022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f60 -01922142 161.13710022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26958 -01922459 161.13943481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e58 -01922460 161.13945007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -01922461 161.13945007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e58 -01922462 161.13945007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -01922463 161.13946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e68 -01922464 161.13946533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -01922465 161.13946533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e68 -01922466 161.13946533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -01922467 161.13949585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e78 -01922468 161.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -01922469 161.13949585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e78 -01922470 161.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -01922471 161.13952637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e88 -01922472 161.13952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -01922473 161.13952637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e88 -01922474 161.13952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -01922475 161.13955688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e98 -01922476 161.13955688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e98 -01922477 161.13955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -01922478 161.13955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -01922479 161.13958740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea8 -01922480 161.13958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -01922481 161.13958740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ea8 -01922482 161.13958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -01922483 161.13960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb8 -01922484 161.13960266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -01922485 161.13960266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26eb8 -01922486 161.13960266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -01922487 161.13963318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec8 -01922488 161.13963318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -01922489 161.13964844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ec8 -01922490 161.13964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -01922491 161.13967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -01922492 161.13967896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed8 -01922493 161.13967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -01922494 161.13967896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ed8 -01922495 161.13969421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -01922496 161.13969421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee8 -01922497 161.13969421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -01922498 161.13969421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ee8 -01922499 161.13972473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -01922500 161.13972473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -01922501 161.13972473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef8 -01922502 161.13972473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ef8 -01922765 161.14163208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -01922766 161.14163208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -01922767 161.14164734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -01922768 161.14164734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13930 -01922769 161.14167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -01922770 161.14167786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -01922771 161.14167786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -01922772 161.14167786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13940 -01922773 161.14169312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -01922774 161.14169312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -01922775 161.14169312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -01922776 161.14169312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13950 -01922777 161.14172363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -01922778 161.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -01922779 161.14172363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -01922780 161.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13960 -01922781 161.14175415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -01922782 161.14175415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -01922783 161.14175415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -01922784 161.14175415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13970 -01922785 161.14178467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -01922786 161.14178467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -01922787 161.14178467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -01922788 161.14178467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13980 -01922789 161.14181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -01922790 161.14181519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -01922791 161.14181519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -01922792 161.14181519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13990 -01922793 161.14183044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -01922794 161.14183044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -01922795 161.14183044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -01922796 161.14183044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a0 -01922797 161.14186096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -01922798 161.14186096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -01922799 161.14186096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27398 -01922800 161.14187622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b0 -01922801 161.14190674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -01922802 161.14190674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -01922803 161.14190674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c0 -01922804 161.14190674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273a8 -01922805 161.14192200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -01922806 161.14192200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -01922807 161.14192200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d0 -01922808 161.14192200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x273b8 -01922949 161.14300537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -01922950 161.14300537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -01922951 161.14300537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -01922952 161.14300537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c10 -01922953 161.14302063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -01922954 161.14302063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -01922955 161.14303589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -01922956 161.14303589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c20 -01922957 161.14306641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -01922958 161.14306641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -01922959 161.14306641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -01922960 161.14306641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c30 -01922961 161.14309692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -01922962 161.14309692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -01922963 161.14309692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -01922964 161.14309692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c40 -01922965 161.14311218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27638 -01922966 161.14311218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -01922967 161.14311218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27638 -01922968 161.14311218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c50 -01922969 161.14314270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27648 -01922970 161.14315796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -01922971 161.14315796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27648 -01922972 161.14315796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c60 -01922973 161.14317322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27658 -01922974 161.14317322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -01922975 161.14317322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27658 -01922976 161.14317322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c70 -01922977 161.14320374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27668 -01922978 161.14320374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -01922979 161.14320374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27668 -01922980 161.14320374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c80 -01922981 161.14323425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27678 -01922982 161.14323425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27678 -01922983 161.14324951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -01922984 161.14324951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -01922985 161.14326477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27688 -01922986 161.14326477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27688 -01922987 161.14326477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -01922988 161.14326477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -01922989 161.14329529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27698 -01922990 161.14329529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27698 -01922991 161.14329529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -01922992 161.14329529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -01923413 161.14636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -01923414 161.14636230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -01923415 161.14636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -01923416 161.14636230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -01923417 161.14637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -01923418 161.14637756 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -01923419 161.14637756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -01923420 161.14637756 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -01923421 161.14640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -01923422 161.14640808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -01923423 161.14642334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -01923424 161.14642334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -01923425 161.14643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -01923426 161.14643860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -01923427 161.14643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -01923428 161.14643860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -01923429 161.14646912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -01923430 161.14646912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -01923431 161.14646912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -01923432 161.14646912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -01923433 161.14649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01923434 161.14649963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -01923435 161.14649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -01923436 161.14649963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -01923437 161.14651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01923438 161.14651489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -01923439 161.14653015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -01923440 161.14653015 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -01923441 161.14656067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01923442 161.14656067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -01923443 161.14656067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -01923444 161.14656067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -01923445 161.14659119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01923446 161.14659119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -01923447 161.14659119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -01923448 161.14659119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -01923449 161.14660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01923450 161.14660645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -01923451 161.14660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -01923452 161.14660645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -01923453 161.14663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01923454 161.14665222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -01923455 161.14665222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -01923456 161.14665222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -01924091 161.15124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -01924092 161.15124512 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -01924093 161.15124512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -01924094 161.15124512 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -01924095 161.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -01924096 161.15127563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -01924097 161.15127563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -01924098 161.15127563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -01924099 161.15129089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -01924100 161.15130615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -01924101 161.15130615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -01924102 161.15130615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -01924103 161.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -01924104 161.15133667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -01924105 161.15133667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -01924106 161.15133667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -01924107 161.15136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -01924108 161.15136719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -01924109 161.15136719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -01924110 161.15136719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -01924111 161.15138245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -01924112 161.15138245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -01924113 161.15138245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -01924114 161.15139771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -01924115 161.15141296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -01924116 161.15142822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -01924117 161.15142822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -01924118 161.15142822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -01924119 161.15144348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -01924120 161.15144348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -01924121 161.15144348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -01924122 161.15144348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -01924123 161.15147400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -01924124 161.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -01924125 161.15147400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -01924126 161.15147400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -01924127 161.15150452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -01924128 161.15150452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -01924129 161.15150452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -01924130 161.15151978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -01924131 161.15151978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -01924132 161.15151978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -01924133 161.15153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -01924134 161.15153503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -01924397 161.15347290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca8 -01924398 161.15347290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -01924399 161.15347290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ca8 -01924400 161.15347290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a0 -01924401 161.15350342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb8 -01924402 161.15350342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -01924403 161.15350342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cb8 -01924404 161.15350342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b0 -01924405 161.15351868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc8 -01924406 161.15351868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -01924407 161.15353394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cc8 -01924408 161.15353394 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c0 -01924409 161.15356445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd8 -01924410 161.15356445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -01924411 161.15356445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cd8 -01924412 161.15356445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d0 -01924413 161.15357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce8 -01924414 161.15357971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -01924415 161.15357971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ce8 -01924416 161.15357971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e0 -01924417 161.15361023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf8 -01924418 161.15361023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -01924419 161.15361023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28cf8 -01924420 161.15361023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f0 -01924421 161.15364075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d08 -01924422 161.15364075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -01924423 161.15365601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d08 -01924424 161.15365601 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15300 -01924425 161.15367126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d18 -01924426 161.15367126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -01924427 161.15367126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d18 -01924428 161.15367126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15310 -01924429 161.15370178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d28 -01924430 161.15370178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -01924431 161.15370178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d28 -01924432 161.15370178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15320 -01924433 161.15373230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d38 -01924434 161.15373230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -01924435 161.15373230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d38 -01924436 161.15374756 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -01924437 161.15374756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d48 -01924438 161.15376282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -01924439 161.15376282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d48 -01924440 161.15376282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -01927513 161.17585754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd68 -01927514 161.17585754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -01927515 161.17585754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd68 -01927516 161.17585754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18340 -01927517 161.17588806 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -01927518 161.17588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd78 -01927519 161.17590332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18350 -01927520 161.17590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd78 -01927521 161.17591858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -01927522 161.17591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd88 -01927523 161.17591858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18360 -01927524 161.17591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd88 -01927525 161.17594910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -01927526 161.17594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd98 -01927527 161.17594910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18370 -01927528 161.17594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd98 -01927529 161.17597961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -01927530 161.17597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda8 -01927531 161.17597961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18380 -01927532 161.17597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda8 -01927533 161.17601013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -01927534 161.17601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb8 -01927535 161.17601013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18390 -01927536 161.17601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb8 -01927537 161.17604065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -01927538 161.17604065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc8 -01927539 161.17604065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183a0 -01927540 161.17604065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc8 -01927541 161.17607117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -01927542 161.17607117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd8 -01927543 161.17607117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b0 -01927544 161.17607117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd8 -01927545 161.17608643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -01927546 161.17610168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde8 -01927547 161.17610168 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c0 -01927548 161.17610168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde8 -01927549 161.17613220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -01927550 161.17613220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf8 -01927551 161.17613220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d0 -01927552 161.17613220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf8 -01927553 161.17614746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -01927554 161.17614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be08 -01927555 161.17614746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e0 -01927556 161.17614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be08 -01928231 161.18101501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -01928232 161.18101501 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -01928233 161.18101501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -01928234 161.18101501 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e70 -01928235 161.18104553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -01928236 161.18104553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -01928237 161.18104553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -01928238 161.18106079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e80 -01928239 161.18107605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -01928240 161.18107605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -01928241 161.18107605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -01928242 161.18107605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e90 -01928243 161.18110657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -01928244 161.18110657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -01928245 161.18110657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -01928246 161.18110657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ea0 -01928247 161.18113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -01928248 161.18113708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -01928249 161.18113708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -01928250 161.18113708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18eb0 -01928251 161.18116760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -01928252 161.18116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -01928253 161.18116760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ec0 -01928254 161.18116760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -01928255 161.18119812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -01928256 161.18119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -01928257 161.18119812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ed0 -01928258 161.18119812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -01928259 161.18122864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -01928260 161.18122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -01928261 161.18122864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ee0 -01928262 161.18122864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -01928263 161.18124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -01928264 161.18124390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -01928265 161.18125916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ef0 -01928266 161.18125916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -01928267 161.18128967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -01928268 161.18128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -01928269 161.18128967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f00 -01928270 161.18128967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -01928271 161.18130493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -01928272 161.18130493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -01928273 161.18130493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -01928274 161.18130493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f10 -01929441 161.18977356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -01929442 161.18977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -01929443 161.18977356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a150 -01929444 161.18977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -01929445 161.18980408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -01929446 161.18980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -01929447 161.18980408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a160 -01929448 161.18980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -01929449 161.18981934 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -01929450 161.18981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -01929451 161.18983459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a170 -01929452 161.18983459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -01929453 161.18986511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -01929454 161.18986511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -01929455 161.18986511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a180 -01929456 161.18986511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -01929457 161.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -01929458 161.18988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -01929459 161.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a190 -01929460 161.18988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -01929461 161.18991089 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -01929462 161.18991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -01929463 161.18991089 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a0 -01929464 161.18992615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -01929465 161.18995667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -01929466 161.18995667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -01929467 161.18995667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b0 -01929468 161.18995667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -01929469 161.18997192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -01929470 161.18997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -01929471 161.18997192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c0 -01929472 161.18997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -01929473 161.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -01929474 161.19000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -01929475 161.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d0 -01929476 161.19000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -01929477 161.19003296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -01929478 161.19003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -01929479 161.19004822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e0 -01929480 161.19004822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -01929481 161.19006348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -01929482 161.19006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -01929483 161.19006348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f0 -01929484 161.19006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -01929853 161.19279480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -01929854 161.19279480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e208 -01929855 161.19279480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7c0 -01929856 161.19279480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e208 -01929857 161.19282532 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -01929858 161.19282532 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7d0 -01929859 161.19282532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e218 -01929860 161.19282532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e218 -01929861 161.19284058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -01929862 161.19285583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7e0 -01929863 161.19285583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e228 -01929864 161.19285583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e228 -01929865 161.19288635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -01929866 161.19288635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a7f0 -01929867 161.19288635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e238 -01929868 161.19288635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e238 -01929869 161.19290161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -01929870 161.19290161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a800 -01929871 161.19290161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e248 -01929872 161.19290161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e248 -01929873 161.19293213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -01929874 161.19293213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a810 -01929875 161.19294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e258 -01929876 161.19294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e258 -01929877 161.19296265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -01929878 161.19297791 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a820 -01929879 161.19297791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e268 -01929880 161.19297791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e268 -01929881 161.19299316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -01929882 161.19299316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a830 -01929883 161.19299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e278 -01929884 161.19300842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e278 -01929885 161.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -01929886 161.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a840 -01929887 161.19303894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e288 -01929888 161.19303894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e288 -01929889 161.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -01929890 161.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a850 -01929891 161.19306946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e298 -01929892 161.19306946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e298 -01929893 161.19306946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -01929894 161.19306946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a860 -01929895 161.19308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a8 -01929896 161.19309998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e2a8 -01930000 161.19386292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e448 -01930001 161.19386292 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -01930002 161.19386292 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa10 -01930003 161.19387817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e458 -01930004 161.19389343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e458 -01930005 161.19389343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -01930006 161.19389343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa20 -01930007 161.19392395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e468 -01930008 161.19392395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e468 -01930009 161.19392395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -01930010 161.19392395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa30 -01930011 161.19393921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e478 -01930012 161.19393921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e478 -01930013 161.19393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -01930014 161.19393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa40 -01930015 161.19396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e488 -01930016 161.19396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e488 -01930017 161.19396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -01930018 161.19398499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa50 -01930019 161.19400024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e498 -01930020 161.19401550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e498 -01930021 161.19401550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -01930022 161.19401550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa60 -01930023 161.19403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -01930024 161.19403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4a8 -01930025 161.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -01930026 161.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa70 -01930027 161.19406128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -01930028 161.19406128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4b8 -01930029 161.19406128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -01930030 161.19406128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa80 -01930031 161.19409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -01930032 161.19409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4c8 -01930033 161.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -01930034 161.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa90 -01930035 161.19410706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -01930036 161.19410706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4d8 -01930037 161.19412231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -01930038 161.19412231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa0 -01930039 161.19413757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -01930040 161.19415283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4e8 -01930041 161.19415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -01930042 161.19415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab0 -01930043 161.19418335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e4f8 -01930305 161.19606018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -01930306 161.19606018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e918 -01930307 161.19606018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed0 -01930308 161.19606018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e918 -01930309 161.19609070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -01930310 161.19609070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e928 -01930311 161.19609070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee0 -01930312 161.19609070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e928 -01930313 161.19610596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -01930314 161.19612122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e938 -01930315 161.19612122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef0 -01930316 161.19612122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e938 -01930317 161.19615173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -01930318 161.19615173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e948 -01930319 161.19615173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af00 -01930320 161.19615173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e948 -01930321 161.19616699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -01930322 161.19616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e958 -01930323 161.19616699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af10 -01930324 161.19616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e958 -01930325 161.19619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -01930326 161.19619751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e968 -01930327 161.19621277 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af20 -01930328 161.19621277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e968 -01930329 161.19624329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -01930330 161.19624329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e978 -01930331 161.19624329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af30 -01930332 161.19624329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e978 -01930333 161.19625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -01930334 161.19625854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e988 -01930335 161.19625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af40 -01930336 161.19625854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e988 -01930337 161.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -01930338 161.19628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e998 -01930339 161.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -01930340 161.19630432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e998 -01930341 161.19631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -01930342 161.19631958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a8 -01930343 161.19631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -01930344 161.19631958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9a8 -01930345 161.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -01930346 161.19635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b8 -01930347 161.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -01930348 161.19635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9b8 -01930449 161.19711304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb58 -01930450 161.19711304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -01930451 161.19712830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb58 -01930452 161.19712830 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b110 -01930453 161.19714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb68 -01930454 161.19715881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -01930455 161.19715881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb68 -01930456 161.19715881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b120 -01930457 161.19718933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb78 -01930458 161.19718933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb78 -01930459 161.19718933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -01930460 161.19718933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b130 -01930461 161.19720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb88 -01930462 161.19720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb88 -01930463 161.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -01930464 161.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b140 -01930465 161.19723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb98 -01930466 161.19723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb98 -01930467 161.19723511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -01930468 161.19725037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b150 -01930469 161.19726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba8 -01930470 161.19726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eba8 -01930471 161.19728088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -01930472 161.19728088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b160 -01930473 161.19728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb8 -01930474 161.19728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebb8 -01930475 161.19729614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -01930476 161.19729614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b170 -01930477 161.19731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc8 -01930478 161.19731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebc8 -01930479 161.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -01930480 161.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b180 -01930481 161.19735718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd8 -01930482 161.19735718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebd8 -01930483 161.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -01930484 161.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b190 -01930485 161.19737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe8 -01930486 161.19737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebe8 -01930487 161.19738770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -01930488 161.19738770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -01930489 161.19740295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf8 -01930490 161.19740295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ebf8 -01930491 161.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -01930492 161.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -01930549 161.19783020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -01930550 161.19784546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece8 -01930551 161.19784546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a0 -01930552 161.19784546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ece8 -01930553 161.19787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf8 -01930554 161.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -01930555 161.19787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ecf8 -01930556 161.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b0 -01930557 161.19790649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed08 -01930558 161.19790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -01930559 161.19790649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed08 -01930560 161.19790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2c0 -01930561 161.19792175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed18 -01930562 161.19792175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed18 -01930563 161.19792175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -01930564 161.19792175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -01930565 161.19795227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed28 -01930566 161.19795227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed28 -01930567 161.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -01930568 161.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -01930569 161.19798279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed38 -01930570 161.19798279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed38 -01930571 161.19798279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -01930572 161.19798279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -01930573 161.19799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed48 -01930574 161.19801331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed48 -01930575 161.19801331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -01930576 161.19801331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -01930577 161.19804382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed58 -01930578 161.19804382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed58 -01930579 161.19804382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -01930580 161.19804382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -01930581 161.19807434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed68 -01930582 161.19807434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed68 -01930583 161.19807434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -01930584 161.19807434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -01930585 161.19808960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed78 -01930586 161.19808960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed78 -01930587 161.19810486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -01930588 161.19810486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -01930589 161.19812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed88 -01930590 161.19812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed88 -01930591 161.19813538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -01930592 161.19813538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -01962495 161.42451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c8 -01962496 161.42451477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -01962497 161.42451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6c8 -01962498 161.42451477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed0 -01962499 161.42453003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d8 -01962500 161.42453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -01962501 161.42453003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6d8 -01962502 161.42453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee0 -01962503 161.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e8 -01962504 161.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6e8 -01962505 161.42456055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -01962506 161.42457581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef0 -01962507 161.42459106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f8 -01962508 161.42459106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e6f8 -01962509 161.42460632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -01962510 161.42460632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f00 -01962511 161.42462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e708 -01962512 161.42462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e708 -01962513 161.42462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -01962514 161.42462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f10 -01962515 161.42463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e718 -01962516 161.42465210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e718 -01962517 161.42465210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -01962518 161.42465210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f20 -01962519 161.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e728 -01962520 161.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e728 -01962521 161.42468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -01962522 161.42468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f30 -01962523 161.42469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e738 -01962524 161.42469788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e738 -01962525 161.42469788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -01962526 161.42471313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f40 -01962527 161.42472839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e748 -01962528 161.42472839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e748 -01962529 161.42474365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -01962530 161.42474365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f50 -01962531 161.42475891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e758 -01962532 161.42475891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e758 -01962533 161.42477417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -01962534 161.42477417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f60 -01962535 161.42477417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e768 -01962536 161.42478943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e768 -01962537 161.42478943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -01962538 161.42478943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f70 -01966971 161.45648193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -01966972 161.45648193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e440 -01966973 161.45651245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -01966974 161.45652771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e450 -01966975 161.45654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -01966976 161.45654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e460 -01966977 161.45657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -01966978 161.45657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e470 -01966979 161.45660400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -01966980 161.45660400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e480 -01966981 161.45663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -01966982 161.45663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e490 -01966983 161.45664978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -01966984 161.45666504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4a0 -01966985 161.45669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -01966986 161.45669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4b0 -01966987 161.45671082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -01966988 161.45671082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4c0 -01966989 161.45674133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -01966990 161.45674133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4d0 -01966991 161.45677185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -01966992 161.45677185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4e0 -01966993 161.45678711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -01966994 161.45680237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e4f0 -01966995 161.45683289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -01966996 161.45683289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e500 -01966997 161.45686340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -01966998 161.45686340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e510 -01966999 161.45687866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -01967000 161.45687866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e520 -01967001 161.45690918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -01967002 161.45690918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e530 -01967003 161.45693970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -01967004 161.45693970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e540 -01967005 161.45697021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -01967006 161.45697021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e550 -01967007 161.45700073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -01967008 161.45700073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e560 -01967009 161.45703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -01967010 161.45703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e570 -01967011 161.45704651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -01967012 161.45704651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e580 -01967013 161.45707703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -01967014 161.45709229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e590 -01969289 161.48912048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -01969290 161.48913574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb0 -01969291 161.48916626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -01969292 161.48916626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc0 -01969293 161.48919678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -01969294 161.48919678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd0 -01969295 161.48921204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -01969296 161.48921204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce0 -01969297 161.48924255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -01969298 161.48924255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf0 -01969299 161.48927307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -01969300 161.48927307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d00 -01969301 161.48928833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -01969302 161.48930359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d10 -01969303 161.48933411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -01969304 161.48933411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d20 -01969305 161.48934937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -01969306 161.48934937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d30 -01969307 161.48937988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -01969308 161.48937988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d40 -01969309 161.48941040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -01969310 161.48941040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d50 -01969311 161.48944092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -01969312 161.48944092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d60 -01969313 161.48945618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -01969314 161.48945618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d70 -01969315 161.48948669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -01969316 161.48948669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d80 -01969317 161.48951721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -01969318 161.48951721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d90 -01969319 161.48953247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -01969320 161.48953247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42da0 -01969321 161.48956299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -01969322 161.48957825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42db0 -01969323 161.48959351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -01969324 161.48959351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dc0 -01969325 161.48962402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -01969326 161.48962402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42dd0 -01969327 161.48965454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -01969328 161.48965454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42de0 -01969329 161.48966980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -01969330 161.48968506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42df0 -01969331 161.48971558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -01969332 161.48971558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e00 -01971583 161.52143860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -01971584 161.52145386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47460 -01971585 161.52146912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -01971586 161.52146912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47470 -01971587 161.52149963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -01971588 161.52149963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47480 -01971589 161.52153015 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -01971590 161.52153015 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47490 -01971591 161.52154541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -01971592 161.52156067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a0 -01971593 161.52157593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -01971594 161.52159119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b0 -01971595 161.52160645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -01971596 161.52160645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c0 -01971597 161.52163696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -01971598 161.52163696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d0 -01971599 161.52166748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -01971600 161.52166748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e0 -01971601 161.52168274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -01971602 161.52168274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f0 -01971603 161.52171326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -01971604 161.52171326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47500 -01971605 161.52174377 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -01971606 161.52174377 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47510 -01971607 161.52175903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -01971608 161.52175903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47520 -01971609 161.52178955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -01971610 161.52178955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47530 -01971611 161.52182007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -01971612 161.52183533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47540 -01971613 161.52185059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -01971614 161.52185059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47550 -01971615 161.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -01971616 161.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47560 -01971617 161.52191162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -01971618 161.52191162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47570 -01971619 161.52192688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -01971620 161.52194214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47580 -01971621 161.52195740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -01971622 161.52197266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47590 -01971623 161.52200317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -01971624 161.52200317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a0 -01971625 161.52201843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -01971626 161.52201843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b0 -01973831 161.55326843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -01973832 161.55326843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa0 -01973833 161.55329895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -01973834 161.55329895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab0 -01973835 161.55331421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -01973836 161.55331421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac0 -01973837 161.55334473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -01973838 161.55334473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad0 -01973839 161.55337524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -01973840 161.55337524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae0 -01973841 161.55340576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -01973842 161.55340576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf0 -01973843 161.55343628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -01973844 161.55343628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb00 -01973845 161.55346680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -01973846 161.55346680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb10 -01973847 161.55348206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -01973848 161.55348206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb20 -01973849 161.55351257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -01973850 161.55352783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb30 -01973851 161.55354309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -01973852 161.55354309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb40 -01973853 161.55357361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -01973854 161.55357361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb50 -01973855 161.55360413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -01973856 161.55360413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb60 -01973857 161.55361938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -01973858 161.55361938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb70 -01973859 161.55364990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -01973860 161.55366516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb80 -01973861 161.55369568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -01973862 161.55369568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb90 -01973863 161.55371094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -01973864 161.55371094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba0 -01973865 161.55374146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -01973866 161.55374146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbb0 -01973867 161.55377197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -01973868 161.55377197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbc0 -01973869 161.55380249 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -01973870 161.55380249 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbd0 -01973871 161.55383301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -01973872 161.55383301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbe0 -01973873 161.55386353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -01973874 161.55386353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bbf0 -01976599 161.59283447 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51110 -01976600 161.59286499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -01976601 161.59286499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51120 -01976602 161.59288025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -01976603 161.59288025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51130 -01976604 161.59291077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -01976605 161.59292603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51140 -01976606 161.59294128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -01976607 161.59294128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51150 -01976608 161.59297180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -01976609 161.59297180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51160 -01976610 161.59301758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -01976611 161.59301758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51170 -01976612 161.59303284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -01976613 161.59303284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51180 -01976614 161.59306335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -01976615 161.59306335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51190 -01976616 161.59309387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -01976617 161.59309387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511a0 -01976618 161.59312439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -01976619 161.59312439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511b0 -01976620 161.59315491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -01976621 161.59317017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511c0 -01976622 161.59318542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -01976623 161.59318542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511d0 -01976624 161.59321594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -01976625 161.59321594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511e0 -01976626 161.59324646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -01976627 161.59326172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x511f0 -01976628 161.59327698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -01976629 161.59327698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51200 -01976630 161.59330750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -01976631 161.59330750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51210 -01976632 161.59333801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -01976633 161.59333801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51220 -01976634 161.59336853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -01976635 161.59336853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51230 -01976636 161.59339905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -01976637 161.59339905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51240 -01976638 161.59341431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -01976639 161.59342957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51250 -01976640 161.59346008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -01976641 161.59346008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51260 -01976642 161.59349060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51270 -01977506 162.06452942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -01977507 162.15380859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -01977508 162.17350769 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01977509 162.17352295 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -01977510 163.15026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01977511 163.15028381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -01977512 163.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01977513 163.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -01977514 163.15034485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01977515 163.15034485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -01977516 163.15037537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01977517 163.15037537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -01977518 163.15040588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01977519 163.15040588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -01977520 163.15042114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01977521 163.15043640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -01977522 163.15045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01977523 163.15046692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -01977524 163.15048218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01977525 163.15048218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -01977526 163.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01977527 163.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -01977528 163.15054321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01977529 163.15054321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -01977530 163.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01977531 163.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -01977532 163.15058899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01977533 163.15060425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -01977534 163.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01977535 163.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -01977536 163.15065002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01977537 163.15065002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -01977538 163.15068054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01977539 163.15068054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -01977540 163.15071106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01977541 163.15071106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -01977542 163.15072632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01977543 163.15074158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -01977544 163.15077209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01977545 163.15077209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -01977546 163.15080261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01977547 163.15080261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -01977548 163.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01977549 163.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -01977550 163.15084839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01977551 163.15084839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -01977552 163.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01977553 163.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -01977554 163.15090942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01977555 163.15090942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -01977556 163.15093994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01977557 163.15093994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -01977558 163.15097046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01977559 163.15097046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -01977560 163.15098572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01977561 163.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -01977562 163.15101624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01977563 163.15103149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -01977564 163.15104675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01977565 163.15104675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -01977566 163.15107727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01977567 163.15107727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -01977568 163.15110779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01977569 163.15110779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -01977570 163.15112305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01977571 163.15113831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -01977572 163.15116882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01977573 163.15116882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -01977574 163.15119934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01977575 163.15119934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -01977576 163.15121460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01977577 163.15121460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -01977578 163.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01977579 163.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -01977580 163.15127563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01977581 163.15127563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -01977582 163.15129089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01977583 163.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -01977584 163.15132141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01977585 163.15133667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -01977586 163.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01977587 163.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -01977588 163.15138245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01977589 163.15138245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -01977590 163.15141296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01977591 163.15141296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -01977592 163.15144348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01977593 163.15144348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -01977594 163.15145874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01977595 163.15145874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -01977596 163.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01977597 163.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -01977598 163.15151978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01977599 163.15151978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -01977600 163.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01977601 163.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -01977602 163.15159607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01977603 163.15159607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -01977604 163.15162659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01977605 163.15164185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -01977606 163.15167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01977607 163.15167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -01977608 163.15168762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01977609 163.15168762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -01977610 163.15171814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01977611 163.15171814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -01977612 163.15174866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01977613 163.15174866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -01977614 163.15176392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01977615 163.15177917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -01977616 163.15179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01977617 163.15180969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -01977618 163.15184021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01977619 163.15184021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -01977620 163.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01977621 163.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -01977622 163.15188599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01977623 163.15188599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -01977624 163.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01977625 163.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -01977626 163.15193176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01977627 163.15193176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -01977628 163.15196228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01977629 163.15196228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -01977630 163.15199280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01977631 163.15199280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -01977632 163.15200806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01977633 163.15200806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -01977634 163.15206909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01977635 163.15206909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -01977636 163.15208435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01977637 163.15208435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -01977638 163.15213013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01977639 163.15213013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -01977640 163.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01977641 163.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -01977642 163.15217590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01977643 163.15217590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -01977644 163.15220642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01977645 163.15220642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -01977646 163.15223694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01977647 163.15223694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -01977648 163.15225220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01977649 163.15225220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -01977650 163.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01977651 163.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -01977652 163.15231323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01977653 163.15231323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -01977654 163.15232849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01977655 163.15234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -01977656 163.15237427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01977657 163.15237427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -01977658 163.15238953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01977659 163.15238953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -01977660 163.15242004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01977661 163.15242004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -01977662 163.15245056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01977663 163.15245056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -01977664 163.15248108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01977665 163.15248108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -01977666 163.15249634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01977667 163.15249634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -01977668 163.15252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01977669 163.15252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -01977670 163.15255737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01977671 163.15255737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -01977672 163.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01977673 163.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -01977674 163.15261841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01977675 163.15261841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -01977676 163.15266418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01977677 163.15267944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -01977678 163.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01977679 163.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -01977680 163.15272522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01977681 163.15272522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -01977682 163.15275574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01977683 163.15275574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -01977684 163.15278625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01977685 163.15278625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -01977686 163.15280151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01977687 163.15281677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -01977688 163.15284729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01977689 163.15284729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -01977690 163.15287781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01977691 163.15287781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -01977692 163.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01977693 163.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -01977694 163.15292358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01977695 163.15292358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -01977696 163.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01977697 163.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -01977698 163.15296936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01977699 163.15298462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -01977700 163.15299988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01977701 163.15301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -01977702 163.15303040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01977703 163.15303040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -01977704 163.15306091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01977705 163.15306091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -01977706 163.15310669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01977707 163.15310669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -01977708 163.15315247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01977709 163.15315247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -01977710 163.15318298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01977711 163.15318298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -01977712 163.15319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01977713 163.15321350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -01977714 163.15324402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01977715 163.15324402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -01977716 163.15327454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01977717 163.15327454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -01977718 163.15328979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01977719 163.15328979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -01977720 163.15332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01977721 163.15332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -01977722 163.15335083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01977723 163.15335083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -01977724 163.15336609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01977725 163.15336609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -01977726 163.15339661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01977727 163.15339661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -01977728 163.15342712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01977729 163.15342712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -01977730 163.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01977731 163.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -01977732 163.15347290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01977733 163.15348816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -01977734 163.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01977735 163.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -01977736 163.15353394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01977737 163.15353394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -01977738 163.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01977739 163.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -01977740 163.15357971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01977741 163.15357971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -01977742 163.15361023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01977743 163.15361023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -01977744 163.15364075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01977745 163.15364075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -01977746 163.15367126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01977747 163.15367126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -01977748 163.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01977749 163.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -01977750 163.15371704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01977751 163.15371704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -01977752 163.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01977753 163.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -01977754 163.15376282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01977755 163.15377808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -01977756 163.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01977757 163.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -01977758 163.15382385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01977759 163.15382385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -01977760 163.15385437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01977761 163.15385437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -01977762 163.15388489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01977763 163.15388489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -01977764 163.15390015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01977765 163.15390015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -01977766 163.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01977767 163.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -01977768 163.15396118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01977769 163.15396118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -01977770 163.15397644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01977771 163.15397644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -01977772 163.15402222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01977773 163.15402222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -01977774 163.15405273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01977775 163.15406799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -01977776 163.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01977777 163.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -01977778 163.15414429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01977779 163.15414429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -01977780 163.15415955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01977781 163.15415955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -01977782 163.15419006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01977783 163.15419006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -01977784 163.15422058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01977785 163.15422058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -01977786 163.15425110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01977787 163.15425110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -01977788 163.15428162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01977789 163.15428162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -01977790 163.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01977791 163.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -01977792 163.15432739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01977793 163.15434265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -01977794 163.15437317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01977795 163.15437317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -01977796 163.15438843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01977797 163.15438843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -01977798 163.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01977799 163.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -01977800 163.15444946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01977801 163.15444946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -01977802 163.15446472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01977803 163.15446472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -01977804 163.15449524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01977805 163.15451050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -01977806 163.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01977807 163.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -01977808 163.15455627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01977809 163.15455627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -01977810 163.15458679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01977811 163.15458679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -01977812 163.15461731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01977813 163.15461731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -01977814 163.15463257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01977815 163.15463257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -01977816 163.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01977817 163.15467834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -01977818 163.15469360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01977819 163.15469360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -01977820 163.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01977821 163.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -01977822 163.15475464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01977823 163.15475464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -01977824 163.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01977825 163.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -01977826 163.15480042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01977827 163.15480042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -01977828 163.15483093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01977829 163.15483093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -01977830 163.15486145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01977831 163.15486145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -01977832 163.15487671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01977833 163.15487671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -01977834 163.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01977835 163.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -01977836 163.15493774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01977837 163.15493774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -01977838 163.15495300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01977839 163.15496826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -01977840 163.15499878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01977841 163.15499878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -01977842 163.15501404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01977843 163.15501404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -01977844 163.15504456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01977845 163.15504456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -01977846 163.15507507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01977847 163.15507507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -01977848 163.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01977849 163.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -01977850 163.15512085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01977851 163.15512085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -01977852 163.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01977853 163.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -01977854 163.15518188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01977855 163.15518188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -01977856 163.15519714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01977857 163.15521240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -01977858 163.15522766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01977859 163.15524292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -01977860 163.15525818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01977861 163.15525818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -01977862 163.15528870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01977863 163.15528870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -01977864 163.15531921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01977865 163.15531921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -01977866 163.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01977867 163.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -01977868 163.15536499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01977869 163.15536499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -01977870 163.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01977871 163.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -01977872 163.15541077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01977873 163.15541077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -01977874 163.15544128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01977875 163.15544128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -01977876 163.15547180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01977877 163.15547180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -01977878 163.15556335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01977879 163.15556335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -01977880 163.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01977881 163.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -01977882 163.15560913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01977883 163.15560913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -01977884 163.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01977885 163.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -01977886 163.15565491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01977887 163.15565491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -01977888 163.15568542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01977889 163.15568542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -01977890 163.15571594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01977891 163.15571594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -01977892 163.15573120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01977893 163.15574646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -01977894 163.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01977895 163.15577698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -01977896 163.15580750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01977897 163.15580750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -01977898 163.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01977899 163.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -01977900 163.15585327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01977901 163.15585327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -01977902 163.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01977903 163.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -01977904 163.15589905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01977905 163.15589905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -01977906 163.15592957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01977907 163.15592957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -01977908 163.15596008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01977909 163.15596008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -01977910 163.15597534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01977911 163.15597534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -01977912 163.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01977913 163.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -01977914 163.15603638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01977915 163.15605164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -01977916 163.15605164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01977917 163.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -01977918 163.15609741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01977919 163.15609741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -01977920 163.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01977921 163.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -01977922 163.15614319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01977923 163.15614319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -01977924 163.15617371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01977925 163.15617371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -01977926 163.15620422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01977927 163.15620422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -01977928 163.15621948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01977929 163.15621948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -01977930 163.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01977931 163.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -01977932 163.15628052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01977933 163.15628052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -01977934 163.15629578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01977935 163.15629578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -01977936 163.15632629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01977937 163.15634155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -01977938 163.15635681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01977939 163.15637207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -01977940 163.15638733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01977941 163.15638733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -01977942 163.15641785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01977943 163.15641785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -01977944 163.15644836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01977945 163.15644836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -01977946 163.15646362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01977947 163.15646362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -01977948 163.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01977949 163.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -01977950 163.15652466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01977951 163.15652466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -01977952 163.15653992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01977953 163.15653992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -01977954 163.15657043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01977955 163.15657043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -01977956 163.15660095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01977957 163.15660095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -01977958 163.15661621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01977959 163.15663147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -01977960 163.15664673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01977961 163.15666199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -01977962 163.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01977963 163.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -01977964 163.15670776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01977965 163.15670776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -01977966 163.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01977967 163.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -01977968 163.15676880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01977969 163.15676880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -01977970 163.15678406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01977971 163.15678406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -01977972 163.15681458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01977973 163.15681458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -01977974 163.15684509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01977975 163.15684509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -01977976 163.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01977977 163.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -01977978 163.15689087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01977979 163.15689087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -01977980 163.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01977981 163.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -01977982 163.15693665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01977983 163.15695190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -01977984 163.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01977985 163.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -01977986 163.15699768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01977987 163.15699768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -01977988 163.15702820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01977989 163.15702820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -01977990 163.15705872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01977991 163.15705872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -01977992 163.15707397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01977993 163.15707397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -01977994 163.15710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01977995 163.15711975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -01977996 163.15715027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01977997 163.15715027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -01977998 163.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01977999 163.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -01978000 163.15719604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01978001 163.15719604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -01978002 163.15722656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01978003 163.15722656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -01978004 163.15724182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01978005 163.15724182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -01978006 163.15727234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01978007 163.15727234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -01978008 163.15730286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01978009 163.15731812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -01978010 163.15731812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01978011 163.15733337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -01978012 163.15736389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01978013 163.15736389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -01978014 163.15739441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01978015 163.15739441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -01978016 163.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01978017 163.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -01978018 163.15744019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01978019 163.15744019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -01978020 163.15747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01978021 163.15747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -01978022 163.15748596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01978023 163.15748596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -01978024 163.15751648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01978025 163.15751648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -01978026 163.15754700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01978027 163.15754700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -01978028 163.15756226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01978029 163.15756226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -01978030 163.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01978031 163.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -01978032 163.15762329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01978033 163.15763855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -01978034 163.15763855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01978035 163.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -01978036 163.15768433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01978037 163.15768433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -01978038 163.15771484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01978039 163.15771484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -01978040 163.15773010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01978041 163.15773010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -01978042 163.15776062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01978043 163.15776062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -01978044 163.15779114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01978045 163.15779114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -01978046 163.15780640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01978047 163.15780640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -01978048 163.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01978049 163.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -01978050 163.15786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01978051 163.15786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -01978052 163.15788269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01978053 163.15788269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -01978054 163.15791321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01978055 163.15792847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -01978056 163.15794373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01978057 163.15795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -01978058 163.15797424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01978059 163.15797424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -01978060 163.15800476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01978061 163.15800476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -01978062 163.15803528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01978063 163.15803528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -01978064 163.15805054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01978065 163.15806580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -01978066 163.15809631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01978067 163.15809631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -01978068 163.15811157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01978069 163.15811157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -01978070 163.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01978071 163.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -01978072 163.15817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01978073 163.15817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -01978074 163.15818787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01978075 163.15818787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -01978076 163.15821838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01978077 163.15823364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -01978078 163.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01978079 163.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -01978080 163.15827942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01978081 163.15827942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -01978082 163.15830994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01978083 163.15830994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -01978084 163.15834045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01978085 163.15834045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -01978086 163.15835571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01978087 163.15835571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -01978088 163.15838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01978089 163.15840149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -01978090 163.15841675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01978091 163.15843201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -01978092 163.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01978093 163.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -01978094 163.15847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01978095 163.15847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -01978096 163.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01978097 163.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -01978098 163.15852356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01978099 163.15852356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -01978100 163.15855408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01978101 163.15855408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -01978102 163.15858459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01978103 163.15858459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -01978104 163.15859985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01978105 163.15859985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -01978106 163.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01978107 163.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -01978108 163.15866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01978109 163.15866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -01978110 163.15867615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01978111 163.15867615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -01978112 163.15870667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01978113 163.15872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -01978114 163.15873718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01978115 163.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -01978116 163.15876770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01978117 163.15876770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -01978118 163.15879822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01978119 163.15879822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -01978120 163.15882874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01978121 163.15882874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -01978122 163.15884399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01978123 163.15884399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -01978124 163.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01978125 163.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -01978126 163.15890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01978127 163.15890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -01978128 163.15892029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01978129 163.15892029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -01978130 163.15895081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01978131 163.15895081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -01978132 163.15898132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01978133 163.15898132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -01978134 163.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01978135 163.15901184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -01978136 163.15902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01978137 163.15904236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -01978138 163.15907288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01978139 163.15907288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -01978140 163.15908813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01978141 163.15908813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -01978142 163.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01978143 163.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -01978144 163.15914917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01978145 163.15914917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -01978146 163.15916443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01978147 163.15916443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -01978148 163.15919495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01978149 163.15919495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -01978150 163.15922546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01978151 163.15922546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -01978152 163.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01978153 163.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -01978154 163.15927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01978155 163.15927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -01978156 163.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01978157 163.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -01978158 163.15931702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01978159 163.15933228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -01978160 163.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01978161 163.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -01978162 163.15937805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01978163 163.15937805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -01978164 163.15940857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01978165 163.15940857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -01978166 163.15943909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01978167 163.15943909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -01978168 163.15946960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01978169 163.15946960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -01978170 163.15948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01978171 163.15948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -01978172 163.15951538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01978173 163.15951538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -01978174 163.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01978175 163.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -01978176 163.15956116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01978177 163.15956116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -01978178 163.15959167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01978179 163.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -01978180 163.15962219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01978181 163.15962219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -01978182 163.15965271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01978183 163.15965271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -01978184 163.15968323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01978185 163.15968323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -01978186 163.15969849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01978187 163.15969849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -01978188 163.15972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01978189 163.15972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -01978190 163.15975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01978191 163.15975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -01978192 163.15977478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01978193 163.15977478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -01978194 163.15980530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01978195 163.15980530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -01978196 163.15983582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01978197 163.15983582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -01978198 163.15986633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01978199 163.15986633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -01978200 163.15988159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01978201 163.15989685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -01978202 163.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01978203 163.15992737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -01978204 163.15994263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01978205 163.15994263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -01978206 163.15997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01978207 163.15997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -01978208 163.16000366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01978209 163.16000366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -01978210 163.16001892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01978211 163.16001892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -01978212 163.16004944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01978213 163.16004944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -01978214 163.16007996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01978215 163.16007996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -01978216 163.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01978217 163.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -01978218 163.16012573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01978219 163.16012573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -01978220 163.16015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01978221 163.16017151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -01978222 163.16018677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01978223 163.16018677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -01978224 163.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01978225 163.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -01978226 163.16024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01978227 163.16024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -01978228 163.16026306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01978229 163.16026306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -01978230 163.16029358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01978231 163.16030884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -01978232 163.16032410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01978233 163.16033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -01978234 163.16033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01978235 163.16035461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -01978236 163.16038513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01978237 163.16038513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -01978238 163.16041565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01978239 163.16041565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -01978240 163.16043091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01978241 163.16043091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -01978242 163.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01978243 163.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -01978244 163.16049194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01978245 163.16049194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -01978246 163.16050720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01978247 163.16050720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -01978248 163.16053772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01978249 163.16053772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -01978250 163.16056824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01978251 163.16056824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -01978252 163.16058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01978253 163.16058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -01978254 163.16061401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01978255 163.16062927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -01978256 163.16064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01978257 163.16065979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -01978258 163.16067505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01978259 163.16067505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -01978260 163.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01978261 163.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -01978262 163.16073608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01978263 163.16073608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -01978264 163.16075134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01978265 163.16075134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -01978266 163.16078186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01978267 163.16078186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -01978268 163.16081238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01978269 163.16081238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -01978270 163.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01978271 163.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -01978272 163.16085815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01978273 163.16085815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -01978274 163.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01978275 163.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -01978276 163.16090393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01978277 163.16091919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -01978278 163.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01978279 163.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -01978280 163.16098022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01978281 163.16098022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -01978282 163.16099548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01978283 163.16099548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -01978284 163.16104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01978285 163.16104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -01978286 163.16105652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01978287 163.16105652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -01978288 163.16108704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01978289 163.16110229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -01978290 163.16111755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01978291 163.16113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -01978292 163.16114807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01978293 163.16114807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -01978294 163.16117859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01978295 163.16117859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -01978296 163.16120911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01978297 163.16120911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -01978298 163.16122437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01978299 163.16122437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -01978300 163.16125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01978301 163.16125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -01978302 163.16128540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01978303 163.16128540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -01978304 163.16131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01978305 163.16131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -01978306 163.16134644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01978307 163.16134644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -01978308 163.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01978309 163.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -01978310 163.16139221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01978311 163.16139221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -01978312 163.16142273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01978313 163.16142273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -01978314 163.16145325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01978315 163.16145325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -01978316 163.16146851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01978317 163.16148376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -01978318 163.16151428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01978319 163.16151428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -01978320 163.16152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01978321 163.16152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -01978322 163.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01978323 163.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -01978324 163.16159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01978325 163.16159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -01978326 163.16160583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01978327 163.16160583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -01978328 163.16163635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01978329 163.16163635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -01978330 163.16166687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01978331 163.16166687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -01978332 163.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01978333 163.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -01978334 163.16171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01978335 163.16171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -01978336 163.16174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01978337 163.16174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -01978338 163.16177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01978339 163.16177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -01978340 163.16178894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01978341 163.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -01978342 163.16183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01978343 163.16183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -01978344 163.16184998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01978345 163.16184998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -01978346 163.16188049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01978347 163.16188049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -01978348 163.16191101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01978349 163.16191101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -01978350 163.16192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01978351 163.16192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -01978352 163.16195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01978353 163.16195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -01978354 163.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01978355 163.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -01978356 163.16200256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01978357 163.16200256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -01978358 163.16203308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01978359 163.16203308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -01978360 163.16206360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01978361 163.16207886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -01978362 163.16209412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01978363 163.16209412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -01978364 163.16212463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01978365 163.16212463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -01978366 163.16215515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01978367 163.16215515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -01978368 163.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01978369 163.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -01978370 163.16220093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01978371 163.16220093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -01978372 163.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01978373 163.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -01978374 163.16224670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01978375 163.16224670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -01978376 163.16227722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01978377 163.16227722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -01978378 163.16230774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01978379 163.16230774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -01978380 163.16232300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01978381 163.16232300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -01978382 163.16235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01978383 163.16236877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -01978384 163.16238403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01978385 163.16239929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -01978386 163.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01978387 163.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -01978388 163.16244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01978389 163.16244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -01978390 163.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01978391 163.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -01978392 163.16249084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01978393 163.16250610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -01978394 163.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01978395 163.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -01978396 163.16256714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01978397 163.16256714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -01978398 163.16259766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01978399 163.16261292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -01978400 163.16264343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01978401 163.16264343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -01978402 163.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01978403 163.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -01978404 163.16268921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01978405 163.16268921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -01978406 163.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01978407 163.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -01978408 163.16275024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01978409 163.16275024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -01978410 163.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01978411 163.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -01978412 163.16279602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01978413 163.16279602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -01978414 163.16282654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01978415 163.16282654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -01978416 163.16285706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01978417 163.16285706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -01978418 163.16288757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01978419 163.16288757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -01978420 163.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01978421 163.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -01978422 163.16293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01978423 163.16293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -01978424 163.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01978425 163.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -01978426 163.16297913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01978427 163.16299438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -01978428 163.16300964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01978429 163.16302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -01978430 163.16304016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01978431 163.16304016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -01978432 163.16307068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01978433 163.16307068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -01978434 163.16310120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01978435 163.16310120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -01978436 163.16311646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01978437 163.16313171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -01978438 163.16316223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01978439 163.16316223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -01978440 163.16319275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01978441 163.16319275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -01978442 163.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01978443 163.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -01978444 163.16323853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01978445 163.16323853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -01978446 163.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01978447 163.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -01978448 163.16328430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01978449 163.16328430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -01978450 163.16331482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01978451 163.16331482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -01978452 163.16334534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01978453 163.16334534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -01978454 163.16336060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01978455 163.16337585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -01978456 163.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01978457 163.16340637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -01978458 163.16343689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01978459 163.16343689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -01978460 163.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01978461 163.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -01978462 163.16348267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01978463 163.16348267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -01978464 163.16351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01978465 163.16351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -01978466 163.16352844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01978467 163.16352844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -01978468 163.16355896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01978469 163.16355896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -01978470 163.16358948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01978471 163.16358948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -01978472 163.16360474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01978473 163.16360474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -01978474 163.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01978475 163.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -01978476 163.16366577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01978477 163.16368103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -01978478 163.16368103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01978479 163.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -01978480 163.16372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01978481 163.16372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -01978482 163.16375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01978483 163.16375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -01978484 163.16377258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01978485 163.16377258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -01978486 163.16380310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01978487 163.16380310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -01978488 163.16383362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01978489 163.16383362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -01978490 163.16384888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01978491 163.16384888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -01978492 163.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01978493 163.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -01978494 163.16390991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01978495 163.16390991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -01978496 163.16392517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01978497 163.16392517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -01978498 163.16395569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01978499 163.16397095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -01978500 163.16398621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01978501 163.16398621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -01978502 163.16401672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01978503 163.16401672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -01978504 163.16404724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01978505 163.16404724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -01978506 163.16407776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01978507 163.16407776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -01978508 163.16409302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01978509 163.16409302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -01978510 163.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01978511 163.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -01978512 163.16415405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01978513 163.16415405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -01978514 163.16416931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01978515 163.16416931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -01978516 163.16419983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01978517 163.16419983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -01978518 163.16423035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01978519 163.16423035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -01978520 163.16424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01978521 163.16426086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -01978522 163.16427612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01978523 163.16429138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -01978524 163.16430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01978525 163.16430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -01978526 163.16433716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01978527 163.16433716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -01978528 163.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01978529 163.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -01978530 163.16438293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01978531 163.16438293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -01978532 163.16441345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01978533 163.16441345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -01978534 163.16444397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01978535 163.16444397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -01978536 163.16447449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01978537 163.16447449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -01978538 163.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01978539 163.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -01978540 163.16452026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01978541 163.16452026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -01978542 163.16455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01978543 163.16455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -01978544 163.16456604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01978545 163.16458130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -01978546 163.16461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01978547 163.16461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -01978548 163.16462708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01978549 163.16462708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -01978550 163.16465759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01978551 163.16465759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -01978552 163.16468811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01978553 163.16468811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -01978554 163.16470337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01978555 163.16470337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -01978556 163.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01978557 163.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -01978558 163.16476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01978559 163.16476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -01978560 163.16477966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01978561 163.16477966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -01978562 163.16481018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01978563 163.16481018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -01978564 163.16484070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01978565 163.16485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -01978566 163.16487122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01978567 163.16487122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -01978568 163.16490173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01978569 163.16490173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -01978570 163.16493225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01978571 163.16493225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -01978572 163.16494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01978573 163.16494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -01978574 163.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01978575 163.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -01978576 163.16500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01978577 163.16500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -01978578 163.16502380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01978579 163.16502380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -01978580 163.16505432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01978581 163.16505432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -01978582 163.16510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01978583 163.16511536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -01978584 163.16514587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01978585 163.16514587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -01978586 163.16517639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01978587 163.16517639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -01978588 163.16519165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01978589 163.16520691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -01978590 163.16523743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01978591 163.16523743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -01978592 163.16526794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01978593 163.16526794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -01978594 163.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01978595 163.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -01978596 163.16531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01978597 163.16531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -01978598 163.16534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01978599 163.16534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -01978600 163.16535950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01978601 163.16535950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -01978602 163.16539001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01978603 163.16539001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -01978604 163.16542053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01978605 163.16542053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -01978606 163.16543579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01978607 163.16543579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -01978608 163.16546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01978609 163.16548157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -01978610 163.16549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01978611 163.16549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -01978612 163.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01978613 163.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -01978614 163.16555786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01978615 163.16555786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -01978616 163.16558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01978617 163.16558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -01978618 163.16560364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01978619 163.16560364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -01978620 163.16563416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01978621 163.16563416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -01978622 163.16566467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01978623 163.16566467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -01978624 163.16569519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01978625 163.16569519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -01978626 163.16572571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01978627 163.16572571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -01978628 163.16574097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01978629 163.16574097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -01978630 163.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01978631 163.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -01978632 163.16581726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01978633 163.16581726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -01978634 163.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01978635 163.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -01978636 163.16586304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01978637 163.16586304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -01978638 163.16589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01978639 163.16589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -01978640 163.16590881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01978641 163.16590881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -01978642 163.16593933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01978643 163.16593933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -01978644 163.16596985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01978645 163.16596985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -01978646 163.16598511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01978647 163.16598511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -01978648 163.16601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01978649 163.16603088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -01978650 163.16604614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01978651 163.16606140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -01978652 163.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01978653 163.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -01978654 163.16610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01978655 163.16610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -01978656 163.16613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01978657 163.16613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -01978658 163.16615295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01978659 163.16615295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -01978660 163.16618347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01978661 163.16618347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -01978662 163.16621399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01978663 163.16621399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -01978664 163.16622925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01978665 163.16624451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -01978666 163.16627502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01978667 163.16627502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -01978668 163.16629028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01978669 163.16629028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -01978670 163.16632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01978671 163.16633606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -01978672 163.16636658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01978673 163.16636658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -01978674 163.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01978675 163.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -01978676 163.16641235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01978677 163.16641235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -01978678 163.16644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01978679 163.16644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -01978680 163.16645813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01978681 163.16645813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -01978682 163.16648865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01978683 163.16650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -01978684 163.16653442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01978685 163.16653442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -01978686 163.16654968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01978687 163.16654968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -01978688 163.16658020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01978689 163.16658020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -01978690 163.16661072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01978691 163.16661072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -01978692 163.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01978693 163.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -01978694 163.16665649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01978695 163.16667175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -01978696 163.16668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01978697 163.16668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -01978698 163.16671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01978699 163.16671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -01978700 163.16674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01978701 163.16674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -01978702 163.16677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01978703 163.16677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -01978704 163.16679382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01978705 163.16679382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -01978706 163.16682434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01978707 163.16682434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -01978708 163.16685486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01978709 163.16685486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -01978710 163.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01978711 163.16688538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -01978712 163.16691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01978713 163.16691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -01980285 163.18878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -01980286 163.18881226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01980287 163.18881226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -01980288 163.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01980289 163.18885803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -01980290 163.18885803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01980291 163.18887329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -01980292 163.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01980293 163.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -01980294 163.18893433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01980295 163.18893433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -01980296 163.18894958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01980297 163.18894958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -01980298 163.18898010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01980299 163.18898010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -01980300 163.18901062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01980301 163.18901062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -01980302 163.18902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01980303 163.18904114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -01980304 163.18907166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01980305 163.18907166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -01980306 163.18908691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01980307 163.18908691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -01980308 163.18911743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01980309 163.18911743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -01980310 163.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01980311 163.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -01980312 163.18917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01980313 163.18917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -01980314 163.18919373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01980315 163.18920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -01980316 163.18923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01980317 163.18923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -01980318 163.18925476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01980319 163.18925476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -01980320 163.18928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01980321 163.18928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -01980322 163.18931580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01980323 163.18931580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -01980324 163.18933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01980325 163.18934631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -01980326 163.18936157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01980327 163.18937683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -01980328 163.18940735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -01982671 163.22148132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -01982672 163.22149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01982673 163.22149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -01982674 163.22152710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01982675 163.22152710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -01982676 163.22155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01982677 163.22155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -01982678 163.22158813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01982679 163.22158813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -01982680 163.22160339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01982681 163.22161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -01982682 163.22164917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01982683 163.22164917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -01982684 163.22166443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01982685 163.22166443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -01982686 163.22169495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01982687 163.22169495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -01982688 163.22172546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01982689 163.22172546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -01982690 163.22174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01982691 163.22174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -01982692 163.22177124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01982693 163.22177124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -01982694 163.22180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01982695 163.22180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -01982696 163.22181702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01982697 163.22181702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -01982698 163.22184753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01982699 163.22184753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -01982700 163.22187805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01982701 163.22187805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -01982702 163.22189331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01982703 163.22190857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -01982704 163.22192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01982705 163.22193909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -01982706 163.22196960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01982707 163.22196960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -01982708 163.22198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01982709 163.22198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -01982710 163.22201538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01982711 163.22201538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -01982712 163.22204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01982713 163.22204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -01982714 163.22206116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -01997202 163.41819763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -01997203 163.41821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -01997204 163.41822815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -01997205 163.41824341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -01997206 163.41825867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -01997207 163.41825867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -01997208 163.41828918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d8 -01997209 163.41828918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277d8 -01997210 163.41831970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e8 -01997211 163.41831970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277e8 -01997212 163.41833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f8 -01997213 163.41833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277f8 -01997214 163.41836548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27808 -01997215 163.41836548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27808 -01997216 163.41839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27818 -01997217 163.41839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27818 -01997218 163.41842651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27828 -01997219 163.41842651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27828 -01997220 163.41844177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27838 -01997221 163.41844177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27838 -01997222 163.41847229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27848 -01997223 163.41847229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27848 -01997224 163.41850281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27858 -01997225 163.41850281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27858 -01997226 163.41851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27868 -01997227 163.41853333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27868 -01997228 163.41854858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27878 -01997229 163.41856384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27878 -01997230 163.41857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27888 -01997231 163.41857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27888 -01997232 163.41860962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27898 -01997233 163.41860962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27898 -01997234 163.41864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a8 -01997235 163.41864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278a8 -01997236 163.41865540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b8 -01997237 163.41865540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278b8 -01997238 163.41868591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c8 -01997239 163.41868591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278c8 -01997240 163.41871643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d8 -01997241 163.41871643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278d8 -01997242 163.41873169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e8 -01997243 163.41873169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278e8 -01997244 163.41876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f8 -01997245 163.41876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x278f8 -01999728 163.45257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c698 -01999729 163.45257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c698 -01999730 163.45260620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a8 -01999731 163.45260620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6a8 -01999732 163.45263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b8 -01999733 163.45263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6b8 -01999734 163.45265198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c8 -01999735 163.45265198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6c8 -01999736 163.45268250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d8 -01999737 163.45268250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6d8 -01999738 163.45271301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e8 -01999739 163.45272827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6e8 -01999740 163.45274353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f8 -01999741 163.45274353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c6f8 -01999742 163.45277405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c708 -01999743 163.45277405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c708 -01999744 163.45280457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c718 -01999745 163.45280457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c718 -01999746 163.45281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c728 -01999747 163.45281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c728 -01999748 163.45285034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c738 -01999749 163.45286560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c738 -01999750 163.45289612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c748 -01999751 163.45289612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c748 -01999752 163.45291138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c758 -01999753 163.45291138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c758 -01999754 163.45294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c768 -01999755 163.45294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c768 -01999756 163.45297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c778 -01999757 163.45297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c778 -01999758 163.45300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c788 -01999759 163.45300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c788 -01999760 163.45303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c798 -01999761 163.45303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c798 -01999762 163.45304871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a8 -01999763 163.45304871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a8 -01999764 163.45307922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b8 -01999765 163.45307922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b8 -01999766 163.45310974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c8 -01999767 163.45312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c8 -01999768 163.45314026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d8 -01999769 163.45314026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d8 -01999770 163.45317078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e8 -01999771 163.45317078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e8 -02002151 163.48565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -02002152 163.48568726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -02002153 163.48568726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -02002154 163.48570251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -02002155 163.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -02002156 163.48573303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -02002157 163.48574829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -02002158 163.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -02002159 163.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -02002160 163.48579407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -02002161 163.48579407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -02002162 163.48582458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -02002163 163.48582458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -02002164 163.48585510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -02002165 163.48585510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -02002166 163.48587036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -02002167 163.48587036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -02002168 163.48590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -02002169 163.48591614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -02002170 163.48594666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -02002171 163.48594666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -02002172 163.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -02002173 163.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -02002174 163.48599243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -02002175 163.48599243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -02002176 163.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -02002177 163.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -02002178 163.48603821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -02002179 163.48605347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -02002180 163.48606873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -02002181 163.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -02002182 163.48609924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31348 -02002183 163.48609924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31348 -02002184 163.48612976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31358 -02002185 163.48612976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31358 -02002186 163.48616028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31368 -02002187 163.48616028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31368 -02002188 163.48617554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31378 -02002189 163.48617554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31378 -02002190 163.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31388 -02002191 163.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31388 -02002192 163.48623657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31398 -02002193 163.48623657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31398 -02002194 163.48625183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a8 -02004682 163.52033997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -02004683 163.52033997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -02004684 163.52037048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -02004685 163.52037048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -02004686 163.52040100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -02004687 163.52040100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -02004688 163.52041626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -02004689 163.52043152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -02004690 163.52044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -02004691 163.52046204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -02004692 163.52049255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -02004693 163.52049255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -02004694 163.52050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -02004695 163.52050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -02004696 163.52053833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -02004697 163.52053833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -02004698 163.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -02004699 163.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -02004700 163.52058411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -02004701 163.52058411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -02004702 163.52061462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36208 -02004703 163.52061462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36208 -02004704 163.52064514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36218 -02004705 163.52064514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36218 -02004706 163.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36228 -02004707 163.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36228 -02004708 163.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36238 -02004709 163.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36238 -02004710 163.52072144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36248 -02004711 163.52073669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36248 -02004712 163.52073669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36258 -02004713 163.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36258 -02004714 163.52078247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36268 -02004715 163.52078247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36268 -02004716 163.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36278 -02004717 163.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36278 -02004718 163.52082825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36288 -02004719 163.52082825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36288 -02004720 163.52085876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36298 -02004721 163.52085876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36298 -02004722 163.52088928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a8 -02004723 163.52088928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x362a8 -02004724 163.52091980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b8 -02004725 163.52091980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x362b8 -02006991 163.55232239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a988 -02006992 163.55235291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a998 -02006993 163.55236816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a998 -02006994 163.55239868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a8 -02006995 163.55239868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a8 -02006996 163.55242920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -02006997 163.55242920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -02006998 163.55244446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -02006999 163.55244446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -02007000 163.55247498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -02007001 163.55247498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -02007002 163.55250549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -02007003 163.55250549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -02007004 163.55252075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -02007005 163.55253601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -02007006 163.55255127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -02007007 163.55256653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -02007008 163.55258179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -02007009 163.55258179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -02007010 163.55261230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -02007011 163.55261230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -02007012 163.55264282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -02007013 163.55264282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -02007014 163.55265808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -02007015 163.55265808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -02007016 163.55268860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -02007017 163.55268860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -02007018 163.55271912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -02007019 163.55271912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -02007020 163.55274963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -02007021 163.55274963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -02007022 163.55276489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -02007023 163.55276489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -02007024 163.55279541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -02007025 163.55279541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -02007026 163.55282593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -02007027 163.55282593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -02007028 163.55285645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -02007029 163.55285645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -02007030 163.55288696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -02007031 163.55288696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -02007032 163.55290222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -02007033 163.55290222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -02007034 163.55293274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae8 -02009436 163.58567810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f8 -02009437 163.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f5f8 -02009438 163.58570862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f608 -02009439 163.58570862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f608 -02009440 163.58573914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f618 -02009441 163.58573914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f618 -02009442 163.58576965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f628 -02009443 163.58576965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f628 -02009444 163.58578491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f638 -02009445 163.58578491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f638 -02009446 163.58581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f648 -02009447 163.58583069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f648 -02009448 163.58586121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f658 -02009449 163.58586121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f658 -02009450 163.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f668 -02009451 163.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f668 -02009452 163.58590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f678 -02009453 163.58590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f678 -02009454 163.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f688 -02009455 163.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f688 -02009456 163.58595276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f698 -02009457 163.58596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f698 -02009458 163.58598328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a8 -02009459 163.58599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6a8 -02009460 163.58602905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b8 -02009461 163.58602905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6b8 -02009462 163.58604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c8 -02009463 163.58604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6c8 -02009464 163.58607483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d8 -02009465 163.58607483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6d8 -02009466 163.58610535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e8 -02009467 163.58610535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6e8 -02009468 163.58612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -02009469 163.58612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -02009470 163.58615112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -02009471 163.58615112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -02009472 163.58618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -02009473 163.58618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -02009474 163.58621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -02009475 163.58621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -02009476 163.58624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -02009477 163.58624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -02009478 163.58627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -02009479 163.58627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -02011928 163.62017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d8 -02011929 163.62017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443d8 -02011930 163.62020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e8 -02011931 163.62020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443e8 -02011932 163.62023926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f8 -02011933 163.62023926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443f8 -02011934 163.62026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44408 -02011935 163.62026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44408 -02011936 163.62028503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44418 -02011937 163.62028503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44418 -02011938 163.62031555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44428 -02011939 163.62031555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44428 -02011940 163.62034607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44438 -02011941 163.62034607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44438 -02011942 163.62036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44448 -02011943 163.62036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44448 -02011944 163.62039185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44458 -02011945 163.62040710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44458 -02011946 163.62042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44468 -02011947 163.62042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44468 -02011948 163.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44478 -02011949 163.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44478 -02011950 163.62048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44488 -02011951 163.62048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44488 -02011952 163.62049866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44498 -02011953 163.62049866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44498 -02011954 163.62052917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a8 -02011955 163.62052917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444a8 -02011956 163.62055969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b8 -02011957 163.62055969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444b8 -02011958 163.62057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c8 -02011959 163.62057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444c8 -02011960 163.62060547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d8 -02011961 163.62060547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444d8 -02011962 163.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e8 -02011963 163.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444e8 -02011964 163.62066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f8 -02011965 163.62066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f8 -02011966 163.62068176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44508 -02011967 163.62069702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44508 -02011968 163.62071228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44518 -02011969 163.62072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44518 -02011970 163.62074280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44528 -02011971 163.62074280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44528 -02014520 163.65544128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d8 -02014521 163.65544128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d8 -02014522 163.65545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e8 -02014523 163.65545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e8 -02014524 163.65548706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f8 -02014525 163.65548706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f8 -02014526 163.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49508 -02014527 163.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49508 -02014528 163.65553284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49518 -02014529 163.65553284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49518 -02014530 163.65556335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -02014531 163.65556335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49528 -02014532 163.65559387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -02014533 163.65560913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49538 -02014534 163.65560913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -02014535 163.65562439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49548 -02014536 163.65565491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -02014537 163.65565491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49558 -02014538 163.65568542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -02014539 163.65568542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49568 -02014540 163.65570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -02014541 163.65570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49578 -02014542 163.65574646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -02014543 163.65574646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49588 -02014544 163.65577698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -02014545 163.65577698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49598 -02014546 163.65579224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -02014547 163.65580750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495a8 -02014548 163.65582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -02014549 163.65583801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495b8 -02014550 163.65585327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -02014551 163.65585327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495c8 -02014552 163.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -02014553 163.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495d8 -02014554 163.65591431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -02014555 163.65591431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495e8 -02014556 163.65592957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -02014557 163.65592957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x495f8 -02014558 163.65596008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -02014559 163.65596008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49608 -02014560 163.65599060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -02014561 163.65599060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49618 -02014562 163.65600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -02014563 163.65600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49628 -02017052 163.69000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -02017053 163.69000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -02017054 163.69003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -02017055 163.69003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -02017056 163.69006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -02017057 163.69006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -02017058 163.69009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -02017059 163.69009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -02017060 163.69010925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -02017061 163.69010925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -02017062 163.69013977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -02017063 163.69015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -02017064 163.69017029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -02017065 163.69017029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -02017066 163.69020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -02017067 163.69020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -02017068 163.69023132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -02017069 163.69023132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -02017070 163.69024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -02017071 163.69024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -02017072 163.69027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -02017073 163.69027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -02017074 163.69030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -02017075 163.69030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -02017076 163.69032288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -02017077 163.69032288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -02017078 163.69035339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -02017079 163.69035339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4c8 -02017080 163.69038391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -02017081 163.69038391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4d8 -02017082 163.69039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -02017083 163.69039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4e8 -02017084 163.69042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -02017085 163.69042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4f8 -02017086 163.69046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -02017087 163.69047546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e508 -02017088 163.69049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -02017089 163.69049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e518 -02017090 163.69052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -02017091 163.69052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e528 -02017092 163.69055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -02017093 163.69055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e538 -02017094 163.69056702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -02017095 163.69056702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e548 -02019404 164.17440796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019405 164.19357300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019406 164.19357300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019407 165.17683411 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019408 165.43894958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019409 165.43943787 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019410 165.56352234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019411 165.78320313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019412 166.19593811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019413 166.21582031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019414 166.21582031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019415 166.39784241 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019416 166.39788818 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019417 166.39791870 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019418 166.39793396 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02019419 166.39804077 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019420 166.39805603 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02019421 166.39810181 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02019422 166.39813232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02019423 166.45155334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019424 167.95658875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019425 168.21673584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02019426 168.23571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019427 168.23571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02019428 168.52931213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019429 168.52969360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02019430 168.72233582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02019431 168.72233582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02019432 168.72236633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02019433 168.72238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02019434 168.72241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02019435 168.72241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02019436 168.72242737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02019437 168.72242737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02019438 168.72245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02019439 168.72245789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02019440 168.72248840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02019441 168.72248840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02019442 168.72250366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02019443 168.72251892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02019444 168.72254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02019445 168.72254944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02019446 168.72257996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02019447 168.72257996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02019448 168.72259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02019449 168.72259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02019450 168.72262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02019451 168.72262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02019452 168.72265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02019453 168.72265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02019454 168.72268677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02019455 168.72268677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02019456 168.72271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02019457 168.72271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02019458 168.72273254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02019459 168.72273254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02019460 168.72276306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02019461 168.72276306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02019462 168.72279358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02019463 168.72280884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02019464 168.72282410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02019465 168.72282410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02019466 168.72285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02019467 168.72285461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02019468 168.72288513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02019469 168.72288513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02019470 168.72290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02019471 168.72290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02019472 168.72293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02019473 168.72293091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02019474 168.72296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02019475 168.72297668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02019476 168.72299194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02019477 168.72299194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02019478 168.72302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02019479 168.72302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02019480 168.72305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02019481 168.72305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02019482 168.72306824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02019483 168.72306824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02019484 168.72309875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02019485 168.72311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02019486 168.72312927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02019487 168.72312927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02019488 168.72315979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02019489 168.72315979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02019490 168.72319031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02019491 168.72319031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02019492 168.72320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02019493 168.72320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02019494 168.72323608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02019495 168.72325134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02019496 168.72328186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02019497 168.72328186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02019498 168.72329712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02019499 168.72329712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02019500 168.72332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02019501 168.72332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02019502 168.72335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02019503 168.72335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02019504 168.72337341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02019505 168.72338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02019506 168.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02019507 168.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02019508 168.72344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02019509 168.72344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02019510 168.72346497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02019511 168.72346497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02019512 168.72349548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02019513 168.72349548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02019514 168.72352600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02019515 168.72352600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02019516 168.72355652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02019517 168.72355652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02019518 168.72358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02019519 168.72358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02019520 168.72360229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02019521 168.72360229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02019522 168.72363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02019523 168.72363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02019524 168.72366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02019525 168.72367859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02019526 168.72369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02019527 168.72369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02019528 168.72372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02019529 168.72372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02019530 168.72375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02019531 168.72375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02019532 168.72377014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02019533 168.72377014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02019534 168.72380066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02019535 168.72381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02019536 168.72384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02019537 168.72384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02019538 168.72386169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02019539 168.72386169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02019540 168.72389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02019541 168.72389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02019542 168.72392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02019543 168.72392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02019544 168.72393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02019545 168.72393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02019546 168.72396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02019547 168.72398376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02019548 168.72399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02019549 168.72399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02019550 168.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02019551 168.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02019552 168.72406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02019553 168.72406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02019554 168.72410583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02019555 168.72410583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02019556 168.72413635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02019557 168.72413635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02019558 168.72416687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02019559 168.72416687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02019560 168.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02019561 168.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02019562 168.72421265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02019563 168.72422791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02019564 168.72424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02019565 168.72424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02019566 168.72427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02019567 168.72427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02019568 168.72430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02019569 168.72430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02019570 168.72431946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02019571 168.72431946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02019572 168.72434998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02019573 168.72436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02019574 168.72439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02019575 168.72439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02019576 168.72441101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02019577 168.72441101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02019578 168.72444153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02019579 168.72444153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02019580 168.72447205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02019581 168.72447205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02019582 168.72448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02019583 168.72450256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02019584 168.72453308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02019585 168.72453308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02019586 168.72456360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02019587 168.72456360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02019588 168.72457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02019589 168.72457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02019590 168.72460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02019591 168.72460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02019592 168.72463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02019593 168.72463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02019594 168.72465515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02019595 168.72467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02019596 168.72470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02019597 168.72470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02019598 168.72471619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02019599 168.72471619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02019600 168.72474670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02019601 168.72474670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02019602 168.72477722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02019603 168.72479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02019604 168.72480774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02019605 168.72480774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02019606 168.72483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02019607 168.72483826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02019608 168.72486877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02019609 168.72486877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02019610 168.72488403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02019611 168.72489929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02019612 168.72492981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02019613 168.72492981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02019614 168.72496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02019615 168.72496033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02019616 168.72497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02019617 168.72497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02019618 168.72500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02019619 168.72500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02019620 168.72503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02019621 168.72503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02019622 168.72506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02019623 168.72506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02019624 168.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02019625 168.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02019626 168.72511292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02019627 168.72511292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02019628 168.72514343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02019629 168.72514343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02019630 168.72517395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02019631 168.72518921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02019632 168.72520447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02019633 168.72520447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02019634 168.72523499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02019635 168.72523499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02019636 168.72526550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02019637 168.72526550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02019638 168.72528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02019639 168.72528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02019640 168.72531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02019641 168.72532654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02019642 168.72535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02019643 168.72535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02019644 168.72537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02019645 168.72537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02019646 168.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02019647 168.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02019648 168.72543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02019649 168.72543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02019650 168.72544861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02019651 168.72546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02019652 168.72549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02019653 168.72549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02019654 168.72550964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02019655 168.72550964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02019656 168.72554016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02019657 168.72554016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02019658 168.72557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02019659 168.72558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02019660 168.72560120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02019661 168.72560120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02019662 168.72563171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02019663 168.72563171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02019664 168.72566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02019665 168.72566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02019666 168.72567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02019667 168.72567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02019668 168.72570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02019669 168.72572327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02019670 168.72575378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02019671 168.72575378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02019672 168.72576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02019673 168.72576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02019674 168.72579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02019675 168.72579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02019676 168.72583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02019677 168.72583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02019678 168.72584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02019679 168.72584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02019680 168.72587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02019681 168.72589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02019682 168.72590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02019683 168.72590637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02019684 168.72593689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02019685 168.72593689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02019686 168.72596741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02019687 168.72596741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02019688 168.72599792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02019689 168.72599792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02019690 168.72602844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02019691 168.72602844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02019692 168.72605896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02019693 168.72605896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02019694 168.72607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02019695 168.72607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02019696 168.72610474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02019697 168.72610474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02019698 168.72613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02019699 168.72615051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02019700 168.72616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02019701 168.72616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02019702 168.72619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02019703 168.72619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02019704 168.72622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02019705 168.72622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02019706 168.72624207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02019707 168.72624207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02019708 168.72627258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02019709 168.72628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02019710 168.72630310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02019711 168.72630310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02019712 168.72633362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02019713 168.72633362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02019714 168.72636414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02019715 168.72636414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02019716 168.72639465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02019717 168.72639465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02019718 168.72640991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02019719 168.72642517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02019720 168.72645569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02019721 168.72645569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02019722 168.72647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02019723 168.72647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02019724 168.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02019725 168.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02019726 168.72653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02019727 168.72653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02019728 168.72654724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02019729 168.72654724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02019730 168.72657776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02019731 168.72659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02019732 168.72662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02019733 168.72662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02019734 168.72663879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02019735 168.72663879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02019736 168.72666931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02019737 168.72666931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02019738 168.72669983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02019739 168.72669983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02019740 168.72671509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02019741 168.72673035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02019742 168.72676086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02019743 168.72676086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02019744 168.72679138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02019745 168.72679138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02019746 168.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02019747 168.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02019748 168.72683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02019749 168.72683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02019750 168.72686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02019751 168.72686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02019752 168.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02019753 168.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02019754 168.72692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02019755 168.72692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02019756 168.72694397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02019757 168.72694397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02019758 168.72697449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02019759 168.72697449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02019760 168.72700500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02019761 168.72702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02019762 168.72703552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02019763 168.72703552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02019764 168.72706604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02019765 168.72706604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02019766 168.72709656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02019767 168.72709656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02019768 168.72711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02019769 168.72711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02019770 168.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02019771 168.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02019772 168.72717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02019773 168.72718811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02019774 168.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02019775 168.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02019776 168.72723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02019777 168.72723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02019778 168.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02019779 168.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02019780 168.72727966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02019781 168.72727966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02019782 168.72732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02019783 168.72732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02019784 168.72734070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02019785 168.72734070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02019786 168.72737122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02019787 168.72737122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02019788 168.72740173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02019789 168.72740173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02019790 168.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02019791 168.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02019792 168.72744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02019793 168.72746277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02019794 168.72749329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02019795 168.72749329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02019796 168.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02019797 168.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02019798 168.72753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02019799 168.72753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02019800 168.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02019801 168.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02019802 168.72758484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02019803 168.72760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02019804 168.72763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02019805 168.72763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02019806 168.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02019807 168.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02019808 168.72767639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02019809 168.72767639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02019810 168.72770691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02019811 168.72770691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02019812 168.72773743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02019813 168.72773743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02019814 168.72775269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02019815 168.72776794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02019816 168.72779846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02019817 168.72779846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02019818 168.72781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02019819 168.72781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02019820 168.72784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02019821 168.72784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02019822 168.72787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02019823 168.72787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02019824 168.72789001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02019825 168.72790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02019826 168.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02019827 168.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02019828 168.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02019829 168.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02019830 168.72798157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02019831 168.72798157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02019832 168.72801208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02019833 168.72801208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02019834 168.72804260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02019835 168.72804260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02019836 168.72805786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02019837 168.72807312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02019838 168.72810364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02019839 168.72810364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02019840 168.72813416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02019841 168.72813416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02019842 168.72814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02019843 168.72814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02019844 168.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02019845 168.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02019846 168.72821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02019847 168.72821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02019848 168.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02019849 168.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02019850 168.72827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02019851 168.72827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02019852 168.72830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02019853 168.72830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02019854 168.72831726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02019855 168.72831726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02019856 168.72834778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02019857 168.72836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02019858 168.72837830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02019859 168.72837830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02019860 168.72840881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02019861 168.72840881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02019862 168.72843933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02019863 168.72843933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02019864 168.72845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02019865 168.72845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02019866 168.72848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02019867 168.72850037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02019868 168.72853088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02019869 168.72853088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02019870 168.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02019871 168.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02019872 168.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02019873 168.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02019874 168.72860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02019875 168.72860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02019876 168.72862244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02019877 168.72862244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02019878 168.72865295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02019879 168.72866821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02019880 168.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02019881 168.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02019882 168.72871399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02019883 168.72871399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02019884 168.72874451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02019885 168.72874451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02019886 168.72877502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02019887 168.72877502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02019888 168.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02019889 168.72880554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02019890 168.72883606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02019891 168.72883606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02019892 168.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02019893 168.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02019894 168.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02019895 168.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02019896 168.72891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02019897 168.72891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02019898 168.72892761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02019899 168.72892761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02019900 168.72895813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02019901 168.72897339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02019902 168.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02019903 168.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02019904 168.72901917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02019905 168.72901917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02019906 168.72904968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02019907 168.72904968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02019908 168.72908020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02019909 168.72908020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02019910 168.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02019911 168.72911072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02019912 168.72914124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02019913 168.72914124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02019914 168.72917175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02019915 168.72917175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02019916 168.72918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02019917 168.72918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02019918 168.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02019919 168.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02019920 168.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02019921 168.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02019922 168.72927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02019923 168.72927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02019924 168.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02019925 168.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02019926 168.72932434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02019927 168.72932434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02019928 168.72935486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02019929 168.72935486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02019930 168.72938538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02019931 168.72938538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02019932 168.72940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02019933 168.72941589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02019934 168.72944641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02019935 168.72944641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02019936 168.72947693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02019937 168.72947693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02019938 168.72949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02019939 168.72949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02019940 168.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02019941 168.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02019942 168.72955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02019943 168.72956848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02019944 168.72958374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02019945 168.72958374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02019946 168.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02019947 168.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02019948 168.72964478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02019949 168.72964478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02019950 168.72966003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02019951 168.72966003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02019952 168.72969055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02019953 168.72970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02019954 168.72972107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02019955 168.72972107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02019956 168.72975159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02019957 168.72975159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02019958 168.72978210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02019959 168.72978210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02019960 168.72979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02019961 168.72979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02019962 168.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02019963 168.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02019964 168.72985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02019965 168.72987366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02019966 168.72988892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02019967 168.72988892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02019968 168.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02019969 168.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02019970 168.72994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02019971 168.72994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02019972 168.72996521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02019973 168.72996521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02019974 168.72999573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02019975 168.73001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02019976 168.73004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02019977 168.73004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02019978 168.73005676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02019979 168.73005676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02019980 168.73008728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02019981 168.73008728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02019982 168.73011780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02019983 168.73011780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02019984 168.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02019985 168.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02019986 168.73016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02019987 168.73017883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02019988 168.73019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02019989 168.73019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02019990 168.73022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02019991 168.73022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02019992 168.73025513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02019993 168.73025513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02019994 168.73030090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02019995 168.73030090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02019996 168.73033142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02019997 168.73034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02019998 168.73036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02019999 168.73036194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02020000 168.73039246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02020001 168.73039246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02020002 168.73042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02020003 168.73042297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02020004 168.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02020005 168.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02020006 168.73046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02020007 168.73048401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02020008 168.73051453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02020009 168.73051453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02020010 168.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02020011 168.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02020012 168.73056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02020013 168.73056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02020014 168.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02020015 168.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02020016 168.73060608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02020017 168.73062134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02020018 168.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02020019 168.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02020020 168.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02020021 168.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02020022 168.73069763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02020023 168.73069763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02020024 168.73072815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02020025 168.73072815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02020026 168.73075867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02020027 168.73075867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02020028 168.73077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02020029 168.73078918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02020030 168.73081970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02020031 168.73081970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02020032 168.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02020033 168.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02020034 168.73086548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02020035 168.73086548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02020036 168.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02020037 168.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02020038 168.73091125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02020039 168.73092651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02020040 168.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02020041 168.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02020042 168.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02020043 168.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02020044 168.73100281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02020045 168.73100281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02020046 168.73103333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02020047 168.73103333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02020048 168.73106384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02020049 168.73107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02020050 168.73109436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02020051 168.73109436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02020052 168.73112488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02020053 168.73112488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02020054 168.73115540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02020055 168.73115540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02020056 168.73117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02020057 168.73117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02020058 168.73120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02020059 168.73121643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02020060 168.73123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02020061 168.73123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02020062 168.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02020063 168.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02020064 168.73129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02020065 168.73129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02020066 168.73130798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02020067 168.73130798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02020068 168.73133850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02020069 168.73135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02020070 168.73138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02020071 168.73138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02020072 168.73139954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02020073 168.73139954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02020074 168.73143005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02020075 168.73143005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02020076 168.73146057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02020077 168.73146057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02020078 168.73147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02020079 168.73147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02020080 168.73150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02020081 168.73152161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02020082 168.73155212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02020083 168.73155212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02020084 168.73156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02020085 168.73156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02020086 168.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02020087 168.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02020088 168.73162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02020089 168.73162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02020090 168.73164368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02020091 168.73165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02020092 168.73168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02020093 168.73168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02020094 168.73170471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02020095 168.73170471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02020096 168.73173523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02020097 168.73173523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02020098 168.73176575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02020099 168.73176575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02020100 168.73179626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02020101 168.73179626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02020102 168.73181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02020103 168.73182678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02020104 168.73185730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02020105 168.73185730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02020106 168.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02020107 168.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02020108 168.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02020109 168.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02020110 168.73193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02020111 168.73193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02020112 168.73194885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02020113 168.73196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02020114 168.73199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02020115 168.73199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02020116 168.73202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02020117 168.73202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02020118 168.73204041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02020119 168.73204041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02020120 168.73207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02020121 168.73207092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02020122 168.73210144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02020123 168.73210144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02020124 168.73213196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02020125 168.73213196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02020126 168.73216248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02020127 168.73216248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02020128 168.73219299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02020129 168.73219299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02020130 168.73220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02020131 168.73220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02020132 168.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02020133 168.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02020134 168.73226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02020135 168.73226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02020136 168.73229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02020137 168.73229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02020138 168.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02020139 168.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02020140 168.73234558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02020141 168.73234558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02020142 168.73237610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02020143 168.73237610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02020144 168.73240662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02020145 168.73242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02020146 168.73243713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02020147 168.73243713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02020148 168.73246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02020149 168.73246765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02020150 168.73249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02020151 168.73249817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02020152 168.73251343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02020153 168.73251343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02020154 168.73254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02020155 168.73254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02020156 168.73257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02020157 168.73258972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02020158 168.73260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02020159 168.73260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02020160 168.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02020161 168.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02020162 168.73266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02020163 168.73266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02020164 168.73268127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02020165 168.73268127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02020166 168.73271179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02020167 168.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02020168 168.73274231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02020169 168.73274231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02020170 168.73277283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02020171 168.73277283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02020172 168.73280334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02020173 168.73280334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02020174 168.73281860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02020175 168.73281860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02020176 168.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02020177 168.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02020178 168.73287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02020179 168.73289490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02020180 168.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02020181 168.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02020182 168.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02020183 168.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02020184 168.73297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02020185 168.73297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02020186 168.73298645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02020187 168.73298645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02020188 168.73301697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02020189 168.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02020190 168.73306274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02020191 168.73306274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02020192 168.73307800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02020193 168.73307800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02020194 168.73310852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02020195 168.73310852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02020196 168.73313904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02020197 168.73313904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02020198 168.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02020199 168.73316956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02020200 168.73320007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02020201 168.73320007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02020202 168.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02020203 168.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02020204 168.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02020205 168.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02020206 168.73327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02020207 168.73327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02020208 168.73329163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02020209 168.73329163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02020210 168.73332214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02020211 168.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02020212 168.73336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02020213 168.73336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02020214 168.73338318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02020215 168.73338318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02020216 168.73341370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02020217 168.73341370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02020218 168.73344421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02020219 168.73344421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02020220 168.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02020221 168.73347473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02020222 168.73350525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02020223 168.73350525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02020224 168.73353577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02020225 168.73353577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02020226 168.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02020227 168.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02020228 168.73358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02020229 168.73358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02020230 168.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02020231 168.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02020232 168.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02020233 168.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02020234 168.73367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02020235 168.73367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02020236 168.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02020237 168.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02020238 168.73371887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02020239 168.73371887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02020240 168.73374939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02020241 168.73374939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02020242 168.73377991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02020243 168.73377991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02020244 168.73381042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02020245 168.73381042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02020246 168.73384094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02020247 168.73384094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02020248 168.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02020249 168.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02020250 168.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02020251 168.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02020252 168.73391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02020253 168.73393250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02020254 168.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02020255 168.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02020256 168.73397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02020257 168.73397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02020258 168.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02020259 168.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02020260 168.73402405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02020261 168.73402405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02020262 168.73405457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02020263 168.73405457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02020264 168.73408508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02020265 168.73410034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02020266 168.73411560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02020267 168.73411560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02020268 168.73414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02020269 168.73414612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02020270 168.73417664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02020271 168.73417664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02020272 168.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02020273 168.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02020274 168.73422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02020275 168.73423767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02020276 168.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02020277 168.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02020278 168.73428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02020279 168.73428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02020280 168.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02020281 168.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02020282 168.73432922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02020283 168.73432922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02020284 168.73435974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02020285 168.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02020286 168.73440552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02020287 168.73440552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02020288 168.73442078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02020289 168.73442078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02020290 168.73445129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02020291 168.73445129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02020292 168.73448181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02020293 168.73448181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02020294 168.73449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02020295 168.73449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02020296 168.73452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02020297 168.73454285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02020298 168.73457336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02020299 168.73457336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02020300 168.73458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02020301 168.73458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02020302 168.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02020303 168.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02020304 168.73464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02020305 168.73464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02020306 168.73466492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02020307 168.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02020308 168.73471069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02020309 168.73471069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02020310 168.73472595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02020311 168.73472595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02020312 168.73475647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02020313 168.73475647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02020314 168.73478699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02020315 168.73478699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02020316 168.73480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02020317 168.73480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02020318 168.73483276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02020319 168.73484802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02020320 168.73487854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02020321 168.73487854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02020322 168.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02020323 168.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02020324 168.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02020325 168.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02020326 168.73495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02020327 168.73495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02020328 168.73497009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02020329 168.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02020330 168.73501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02020331 168.73501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02020332 168.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02020333 168.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02020334 168.73506165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02020335 168.73506165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02020336 168.73509216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02020337 168.73509216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02020338 168.73512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02020339 168.73512268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02020340 168.73513794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02020341 168.73515320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02020342 168.73518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02020343 168.73518372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02020344 168.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02020345 168.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02020346 168.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02020347 168.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02020348 168.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02020349 168.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02020350 168.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02020351 168.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02020352 168.73532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02020353 168.73532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02020354 168.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02020355 168.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02020356 168.73536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02020357 168.73536682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02020358 168.73539734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02020359 168.73539734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02020360 168.73542786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02020361 168.73544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02020362 168.73545837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02020363 168.73545837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02020364 168.73548889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02020365 168.73548889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02020366 168.73551941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02020367 168.73551941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02020368 168.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02020369 168.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02020370 168.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02020371 168.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02020372 168.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02020373 168.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02020374 168.73562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02020375 168.73562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02020376 168.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02020377 168.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02020378 168.73568726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02020379 168.73568726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02020380 168.73570251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02020381 168.73570251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02020382 168.73573303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02020383 168.73574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02020384 168.73576355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02020385 168.73576355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02020386 168.73579407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02020387 168.73579407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02020388 168.73582458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02020389 168.73582458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02020390 168.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02020391 168.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02020392 168.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02020393 168.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02020394 168.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02020395 168.73591614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02020396 168.73593140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02020397 168.73593140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02020398 168.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02020399 168.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02020400 168.73599243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02020401 168.73599243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02020402 168.73600769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02020403 168.73600769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02020404 168.73603821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02020405 168.73605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02020406 168.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02020407 168.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02020408 168.73609924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02020409 168.73609924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02020410 168.73612976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02020411 168.73612976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02020412 168.73616028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02020413 168.73616028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02020414 168.73617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02020415 168.73619080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02020416 168.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02020417 168.73622131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02020418 168.73623657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02020419 168.73623657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02020420 168.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02020421 168.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02020422 168.73629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02020423 168.73629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02020424 168.73631287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02020425 168.73631287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02020426 168.73634338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02020427 168.73635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02020428 168.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02020429 168.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02020430 168.73640442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02020431 168.73640442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02020432 168.73643494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02020433 168.73643494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02020434 168.73646545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02020435 168.73646545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02020436 168.73648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02020437 168.73649597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02020438 168.73652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02020439 168.73652649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02020440 168.73655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02020441 168.73655701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02020442 168.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02020443 168.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02020444 168.73660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02020445 168.73660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02020446 168.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02020447 168.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02020448 168.73664856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02020449 168.73666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02020450 168.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02020451 168.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02020452 168.73670959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02020453 168.73670959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02020454 168.73674011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02020455 168.73674011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02020456 168.73677063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02020457 168.73677063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02020458 168.73680115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02020459 168.73680115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02020460 168.73683167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02020461 168.73683167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02020462 168.73686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02020463 168.73686218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02020464 168.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02020465 168.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02020466 168.73690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02020467 168.73690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02020468 168.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02020469 168.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02020470 168.73695374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02020471 168.73696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02020472 168.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02020473 168.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02020474 168.73703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02020475 168.73703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02020476 168.73704529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02020477 168.73704529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02020478 168.73707581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02020479 168.73707581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02020480 168.73710632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02020481 168.73710632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02020482 168.73713684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02020483 168.73713684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02020484 168.73716736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02020485 168.73716736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02020486 168.73719788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02020487 168.73719788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02020488 168.73721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02020489 168.73721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02020490 168.73724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02020491 168.73725891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02020492 168.73727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02020493 168.73727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02020494 168.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02020495 168.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02020496 168.73733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02020497 168.73733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02020498 168.73735046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02020499 168.73735046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02020500 168.73738098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02020501 168.73738098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02020502 168.73741150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02020503 168.73742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02020504 168.73744202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02020505 168.73744202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02020506 168.73747253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02020507 168.73747253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02020508 168.73750305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02020509 168.73750305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02020510 168.73751831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02020511 168.73751831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02020512 168.73754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02020513 168.73756409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02020514 168.73759460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02020515 168.73759460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02020516 168.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02020517 168.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02020518 168.73764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02020519 168.73764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02020520 168.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02020521 168.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02020522 168.73768616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02020523 168.73768616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02020524 168.73771667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02020525 168.73773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02020526 168.73774719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02020527 168.73774719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02020528 168.73777771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02020529 168.73777771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02020530 168.73780823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02020531 168.73780823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02020532 168.73782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02020533 168.73782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02020534 168.73785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02020535 168.73786926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02020536 168.73789978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02020537 168.73789978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02020538 168.73791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02020539 168.73791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02020540 168.73794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02020541 168.73794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02020542 168.73797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02020543 168.73797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02020544 168.73799133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02020545 168.73799133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02020546 168.73802185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02020547 168.73803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02020548 168.73806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02020549 168.73806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02020550 168.73808289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02020551 168.73808289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02020552 168.73811340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02020553 168.73811340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02020554 168.73814392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02020555 168.73814392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02020556 168.73815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02020557 168.73817444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02020558 168.73820496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02020559 168.73820496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02020560 168.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02020561 168.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02020562 168.73825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02020563 168.73825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02020564 168.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02020565 168.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02020566 168.73829651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02020567 168.73831177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02020568 168.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02020569 168.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02020570 168.73837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02020571 168.73837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02020572 168.73838806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02020573 168.73838806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02020574 168.73841858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02020575 168.73841858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02020576 168.73844910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02020577 168.73844910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02020578 168.73846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02020579 168.73847961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02020580 168.73851013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02020581 168.73851013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02020582 168.73854065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02020583 168.73854065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02020584 168.73855591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02020585 168.73855591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02020586 168.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02020587 168.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02020588 168.73861694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02020589 168.73861694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02020590 168.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02020591 168.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02020592 168.73867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02020593 168.73867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02020594 168.73869324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02020595 168.73869324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02020596 168.73872375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02020597 168.73872375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02020598 168.73875427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02020599 168.73875427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02020600 168.73878479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02020601 168.73878479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02020602 168.73881531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02020603 168.73881531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02020604 168.73884583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02020605 168.73884583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02020606 168.73886108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02020607 168.73886108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02020608 168.73889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02020609 168.73889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02020610 168.73892212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02020611 168.73893738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02020612 168.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02020613 168.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02020614 168.73898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02020615 168.73898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02020616 168.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02020617 168.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02020618 168.73902893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02020619 168.73902893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02020620 168.73905945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02020621 168.73905945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02020622 168.73908997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02020623 168.73910522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02020624 168.73912048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02020625 168.73912048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02020626 168.73915100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02020627 168.73915100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02020628 168.73918152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02020629 168.73918152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02020630 168.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02020631 168.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02020632 168.73922729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02020633 168.73924255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02020634 168.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02020635 168.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02020636 168.73928833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02020637 168.73928833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02020638 168.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02020639 168.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02020640 168.73933411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02020641 168.73933411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02020642 168.73936462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02020643 168.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02020644 168.73941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02020645 168.73941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02020646 168.73942566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02020647 168.73942566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02020648 168.73945618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02020649 168.73945618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02020650 168.73948669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02020651 168.73948669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02020652 168.73950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02020653 168.73950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02020654 168.73953247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02020655 168.73954773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02020656 168.73957825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02020657 168.73957825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02020658 168.73959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02020659 168.73959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02020660 168.73962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02020661 168.73962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02020662 168.73965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02020663 168.73965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02020664 168.73966980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02020665 168.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02020666 168.73971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02020667 168.73971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02020668 168.73973083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02020669 168.73973083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02020670 168.73976135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02020671 168.73976135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02020672 168.73979187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02020673 168.73979187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02020674 168.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02020675 168.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02020676 168.73983765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02020677 168.73985291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02020678 168.73988342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02020679 168.73988342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02020680 168.73989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02020681 168.73989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02020682 168.73992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02020683 168.73992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02020684 168.73995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02020685 168.73995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02020686 168.73997498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02020687 168.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02020688 168.74002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02020689 168.74002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02020690 168.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02020691 168.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02020692 168.74006653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02020693 168.74006653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02020694 168.74009705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02020695 168.74009705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02020696 168.74012756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02020697 168.74012756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02020698 168.74014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02020699 168.74015808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02020700 168.74018860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02020701 168.74018860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02020702 168.74020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02020703 168.74020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02020704 168.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02020705 168.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02020706 168.74026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02020707 168.74026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02020708 168.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02020709 168.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02020710 168.74032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02020711 168.74032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02020712 168.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02020713 168.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02020714 168.74037170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02020715 168.74037170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02020716 168.74040222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02020717 168.74040222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02020718 168.74043274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02020719 168.74044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02020720 168.74046326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02020721 168.74046326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02020722 168.74049377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02020723 168.74049377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02020724 168.74052429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02020725 168.74052429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02020726 168.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02020727 168.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02020728 168.74057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02020729 168.74057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02020730 168.74060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02020731 168.74060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02020732 168.74063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02020733 168.74063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02020734 168.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02020735 168.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02020736 168.74069214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02020737 168.74069214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02020738 168.74070740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02020739 168.74070740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02020740 168.74073792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02020741 168.74075317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02020742 168.74076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02020743 168.74076843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02020744 168.74079895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02020745 168.74079895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02020746 168.74082947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02020747 168.74082947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02020748 168.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02020749 168.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02020750 168.74087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02020751 168.74087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02020752 168.74090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02020753 168.74092102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02020754 168.74093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02020755 168.74093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02020756 168.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02020757 168.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02020758 168.74099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02020759 168.74099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02020760 168.74101257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02020761 168.74101257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02020762 168.74104309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02020763 168.74105835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02020764 168.74108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02020765 168.74108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02020766 168.74110413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02020767 168.74110413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02020768 168.74113464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02020769 168.74113464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02020770 168.74116516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02020771 168.74116516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02020772 168.74118042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02020773 168.74119568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02020774 168.74122620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02020775 168.74122620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02020776 168.74124146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02020777 168.74124146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02020778 168.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02020779 168.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02020780 168.74130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02020781 168.74130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02020782 168.74131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02020783 168.74131775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02020784 168.74134827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02020785 168.74136353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02020786 168.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02020787 168.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02020788 168.74140930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02020789 168.74140930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02020790 168.74143982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02020791 168.74143982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02020792 168.74147034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02020793 168.74147034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02020794 168.74148560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02020795 168.74150085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02020796 168.74153137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02020797 168.74153137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02020798 168.74156189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02020799 168.74156189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02020800 168.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02020801 168.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02020802 168.74160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02020803 168.74160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02020804 168.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02020805 168.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02020806 168.74165344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02020807 168.74166870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02020808 168.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02020809 168.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02020810 168.74171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02020811 168.74171448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02020812 168.74174500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02020813 168.74174500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02020814 168.74177551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02020815 168.74177551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02020816 168.74179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02020817 168.74179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02020818 168.74182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02020819 168.74183655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02020820 168.74186707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02020821 168.74186707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02020822 168.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02020823 168.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02020824 168.74191284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02020825 168.74191284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02020826 168.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02020827 168.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02020828 168.74195862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02020829 168.74197388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02020830 168.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02020831 168.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02020832 168.74203491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02020833 168.74203491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02020834 168.74205017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02020835 168.74205017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02020836 168.74208069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02020837 168.74208069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02020838 168.74211121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02020839 168.74211121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02020840 168.74212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02020841 168.74214172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02020842 168.74217224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02020843 168.74217224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02020844 168.74220276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02020845 168.74220276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02020846 168.74221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02020847 168.74221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02020848 168.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02020849 168.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02020850 168.74227905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02020851 168.74227905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02020852 168.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02020853 168.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02020854 168.74234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02020855 168.74234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02020856 168.74235535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02020857 168.74235535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02020858 168.74238586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02020859 168.74238586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02020860 168.74241638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02020861 168.74243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02020862 168.74244690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02020863 168.74244690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02020864 168.74247742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02020865 168.74247742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02020866 168.74250793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02020867 168.74250793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02020868 168.74252319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02020869 168.74252319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02020870 168.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02020871 168.74256897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02020872 168.74259949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02020873 168.74259949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02020874 168.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02020875 168.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02020876 168.74264526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02020877 168.74264526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02020878 168.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02020879 168.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02020880 168.74270630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02020881 168.74270630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02020882 168.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02020883 168.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02020884 168.74275208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02020885 168.74275208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02020886 168.74278259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02020887 168.74278259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02020888 168.74281311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02020889 168.74281311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02020890 168.74282837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02020891 168.74284363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02020892 168.74287415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02020893 168.74287415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02020894 168.74290466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02020895 168.74290466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02020896 168.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02020897 168.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02020898 168.74295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02020899 168.74295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02020900 168.74298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02020901 168.74299622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02020902 168.74301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02020903 168.74301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02020904 168.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02020905 168.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02020906 168.74307251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02020907 168.74307251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02020908 168.74308777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02020909 168.74308777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02020910 168.74311829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02020911 168.74311829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02020912 168.74314880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02020913 168.74314880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02020914 168.74317932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02020915 168.74317932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02020916 168.74320984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02020917 168.74320984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02020918 168.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02020919 168.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02020920 168.74325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02020921 168.74325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02020922 168.74328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02020923 168.74330139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02020924 168.74331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02020925 168.74331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02020926 168.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02020927 168.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02020928 168.74337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02020929 168.74337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02020930 168.74339294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02020931 168.74339294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02020932 168.74342346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02020933 168.74343872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02020934 168.74345398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02020935 168.74346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02020936 168.74348450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02020937 168.74348450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02020938 168.74351501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02020939 168.74351501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02020940 168.74354553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02020941 168.74354553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02020942 168.74356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02020943 168.74356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02020944 168.74359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02020945 168.74360657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02020946 168.74362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02020947 168.74362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02020948 168.74365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02020949 168.74365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02020950 168.74368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02020951 168.74368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02020952 168.74369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02020953 168.74369812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02020954 168.74372864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02020955 168.74372864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02020956 168.74375916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02020957 168.74377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02020958 168.74378967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02020959 168.74378967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02020960 168.74382019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02020961 168.74382019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02020962 168.74385071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02020963 168.74385071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02020964 168.74386597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02020965 168.74386597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02020966 168.74389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02020967 168.74391174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02020968 168.74394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02020969 168.74394226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02020970 168.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02020971 168.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02020972 168.74398804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02020973 168.74398804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02020974 168.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02020975 168.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02020976 168.74403381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02020977 168.74404907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02020978 168.74406433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02020979 168.74407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02020980 168.74409485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02020981 168.74409485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02020982 168.74412537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02020983 168.74412537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02020984 168.74415588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02020985 168.74415588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02020986 168.74418640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02020987 168.74418640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02020988 168.74420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02020989 168.74421692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02020990 168.74424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02020991 168.74424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02020992 168.74426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02020993 168.74426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02020994 168.74429321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02020995 168.74429321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02020996 168.74432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02020997 168.74432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02020998 168.74433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02020999 168.74435425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02021000 168.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02021001 168.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02021002 168.74441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02021003 168.74441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02021004 168.74443054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02021005 168.74443054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02021006 168.74446106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02021007 168.74446106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02021008 168.74449158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02021009 168.74449158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02021010 168.74450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02021011 168.74452209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02021012 168.74455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02021013 168.74455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02021014 168.74458313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02021015 168.74458313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02021016 168.74459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02021017 168.74459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02021018 168.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02021019 168.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02021020 168.74465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02021021 168.74465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02021022 168.74468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02021023 168.74468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02021024 168.74472046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02021025 168.74472046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02021026 168.74473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02021027 168.74473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02021028 168.74476624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02021029 168.74476624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02021030 168.74479675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02021031 168.74479675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02021032 168.74481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02021033 168.74482727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02021034 168.74485779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02021035 168.74485779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02021036 168.74488831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02021037 168.74488831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02021038 168.74490356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02021039 168.74490356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02021040 168.74493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02021041 168.74493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02021042 168.74496460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02021043 168.74497986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02021044 168.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02021045 168.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02021046 168.74502563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02021047 168.74502563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02021048 168.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02021049 168.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02021050 168.74507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02021051 168.74507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02021052 168.74510193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02021053 168.74510193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02021054 168.74513245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02021055 168.74513245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02021056 168.74516296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02021057 168.74516296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02021058 168.74519348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02021059 168.74519348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02021060 168.74520874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02021061 168.74520874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02021062 168.74523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02021063 168.74525452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02021064 168.74528503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02021065 168.74528503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02021066 168.74530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02021067 168.74530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02021068 168.74533081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02021069 168.74533081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02021070 168.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02021071 168.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02021072 168.74537659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02021073 168.74539185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02021074 168.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02021075 168.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02021076 168.74545288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02021077 168.74545288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02021078 168.74546814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02021079 168.74546814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02021080 168.74549866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02021081 168.74549866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02021082 168.74552917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02021083 168.74552917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02021084 168.74554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02021085 168.74555969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02021086 168.74559021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02021087 168.74559021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02021088 168.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02021089 168.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02021090 168.74563599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02021091 168.74563599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02021092 168.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02021093 168.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02021094 168.74569702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02021095 168.74569702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02021096 168.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02021097 168.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02021098 168.74575806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02021099 168.74575806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02021100 168.74577332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02021101 168.74577332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02021102 168.74580383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02021103 168.74580383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02021104 168.74583435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02021105 168.74583435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02021106 168.74584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02021107 168.74586487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02021108 168.74589539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02021109 168.74589539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02021110 168.74592590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02021111 168.74592590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02021112 168.74594116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02021113 168.74594116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02021114 168.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02021115 168.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02021116 168.74600220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02021117 168.74600220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02021118 168.74601746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02021119 168.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02021120 168.74606323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02021121 168.74606323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02021122 168.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02021123 168.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02021124 168.74610901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02021125 168.74610901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02021126 168.74613953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02021127 168.74613953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02021128 168.74617004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02021129 168.74617004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02021130 168.74620056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02021131 168.74620056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02021132 168.74623108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02021133 168.74623108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02021134 168.74624634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02021135 168.74624634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02021136 168.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02021137 168.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02021138 168.74630737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02021139 168.74632263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02021140 168.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02021141 168.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02021142 168.74636841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02021143 168.74636841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02021144 168.74639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02021145 168.74639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02021146 168.74641418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02021147 168.74641418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02021148 168.74644470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02021149 168.74645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02021150 168.74649048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02021151 168.74649048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02021152 168.74650574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02021153 168.74650574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02021154 168.74653625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02021155 168.74653625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02021156 168.74656677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02021157 168.74656677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02021158 168.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02021159 168.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02021160 168.74661255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02021161 168.74662781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02021162 168.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02021163 168.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02021164 168.74667358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02021165 168.74667358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02021166 168.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02021167 168.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02021168 168.74671936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02021169 168.74671936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02021170 168.74674988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02021171 168.74676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02021172 168.74679565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02021173 168.74679565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02021174 168.74681091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02021175 168.74681091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02021176 168.74684143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02021177 168.74684143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02021178 168.74687195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02021179 168.74687195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02021180 168.74688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02021181 168.74688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02021182 168.74691772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02021183 168.74693298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02021184 168.74696350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02021185 168.74696350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02021186 168.74697876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02021187 168.74697876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02021188 168.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02021189 168.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02021190 168.74703979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02021191 168.74703979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02021192 168.74705505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02021193 168.74707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02021194 168.74710083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02021195 168.74710083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02021196 168.74711609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02021197 168.74711609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02021198 168.74714661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02021199 168.74714661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02021200 168.74717712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02021201 168.74717712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02021202 168.74719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02021203 168.74720764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02021204 168.74723816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02021205 168.74723816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02021206 168.74726868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02021207 168.74726868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02021208 168.74728394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02021209 168.74728394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02021210 168.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02021211 168.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02021212 168.74734497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02021213 168.74736023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02021214 168.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02021215 168.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02021216 168.74740601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02021217 168.74740601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02021218 168.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02021219 168.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02021220 168.74745178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02021221 168.74745178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02021222 168.74748230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02021223 168.74748230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02021224 168.74751282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02021225 168.74751282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02021226 168.74754333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02021227 168.74754333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02021228 168.74757385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02021229 168.74757385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02021230 168.74760437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02021231 168.74760437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02021232 168.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02021233 168.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02021234 168.74765015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02021235 168.74766541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02021236 168.74768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02021237 168.74768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02021238 168.74771118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02021239 168.74771118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02021240 168.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02021241 168.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02021242 168.74775696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02021243 168.74775696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02021244 168.74778748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02021245 168.74780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02021246 168.74783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02021247 168.74783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02021248 168.74784851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02021249 168.74784851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02021250 168.74787903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02021251 168.74787903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02021252 168.74790955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02021253 168.74790955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02021254 168.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02021255 168.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02021256 168.74795532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02021257 168.74797058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02021258 168.74800110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02021259 168.74800110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02021260 168.74801636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02021261 168.74801636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02021262 168.74804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02021263 168.74804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02021264 168.74807739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02021265 168.74807739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02021266 168.74809265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02021267 168.74810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02021268 168.74813843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02021269 168.74813843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02021270 168.74815369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02021271 168.74815369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02021272 168.74818420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02021273 168.74818420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02021274 168.74821472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02021275 168.74821472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02021276 168.74822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02021277 168.74824524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02021278 168.74827576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02021279 168.74827576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02021280 168.74830627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02021281 168.74830627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02021282 168.74832153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02021283 168.74832153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02021284 168.74835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02021285 168.74835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02021286 168.74838257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02021287 168.74839783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02021288 168.74841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02021289 168.74841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02021290 168.74844360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02021291 168.74844360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02021292 168.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02021293 168.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02021294 168.74848938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02021295 168.74848938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02021296 168.74851990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02021297 168.74853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02021298 168.74855042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02021299 168.74855042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02021300 168.74858093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02021301 168.74858093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02021302 168.74861145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02021303 168.74861145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02021304 168.74862671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02021305 168.74862671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02021306 168.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02021307 168.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02021308 168.74868774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02021309 168.74870300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02021310 168.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02021311 168.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02021312 168.74874878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02021313 168.74874878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02021314 168.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02021315 168.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02021316 168.74879456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02021317 168.74879456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02021318 168.74882507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02021319 168.74884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02021320 168.74887085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02021321 168.74887085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02021322 168.74888611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02021323 168.74888611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02021324 168.74891663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02021325 168.74891663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02021326 168.74894714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02021327 168.74894714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02021328 168.74896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02021329 168.74897766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02021330 168.74899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02021331 168.74900818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02021332 168.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02021333 168.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02021334 168.74905396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02021335 168.74905396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02021336 168.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02021337 168.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02021338 168.74909973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02021339 168.74909973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02021340 168.74913025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02021341 168.74914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02021342 168.74917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02021343 168.74917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02021344 168.74919128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02021345 168.74919128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02021346 168.74922180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02021347 168.74922180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02021348 168.74925232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02021349 168.74925232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02021350 168.74926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02021351 168.74928284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02021352 168.74931335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02021353 168.74931335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02021354 168.74934387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02021355 168.74934387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02021356 168.74935913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02021357 168.74935913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02021358 168.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02021359 168.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02021360 168.74942017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02021361 168.74942017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02021362 168.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02021363 168.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02021364 168.74948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02021365 168.74948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02021366 168.74949646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02021367 168.74949646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02021368 168.74952698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02021369 168.74952698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02021370 168.74955750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02021371 168.74955750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02021372 168.74958801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02021373 168.74958801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02021374 168.74961853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02021375 168.74961853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02021376 168.74964905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02021377 168.74964905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02021378 168.74966431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02021379 168.74966431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02021380 168.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02021381 168.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02021382 168.74972534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02021383 168.74974060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02021384 168.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02021385 168.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02021386 168.74978638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02021387 168.74978638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02021388 168.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02021389 168.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02021390 168.74983215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02021391 168.74983215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02021392 168.74986267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02021393 168.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02021394 168.74989319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02021395 168.74989319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02021396 168.74992371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02021397 168.74992371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02021398 168.74995422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02021399 168.74995422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02021400 168.74998474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02021401 168.74998474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02021402 168.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02021403 168.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02021404 168.75003052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02021405 168.75004578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02021406 168.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02021407 168.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02021408 168.75009155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02021409 168.75009155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02021410 168.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02021411 168.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02021412 168.75013733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02021413 168.75013733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02021414 168.75016785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02021415 168.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02021416 168.75021362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02021417 168.75021362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02021418 168.75022888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02021419 168.75022888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02021420 168.75025940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02021421 168.75025940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02021422 168.75028992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02021423 168.75028992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02021424 168.75030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02021425 168.75032043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02021426 168.75033569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02021427 168.75035095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02021428 168.75038147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02021429 168.75038147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02021430 168.75039673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02021431 168.75039673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02021432 168.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02021433 168.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02021434 168.75045776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02021435 168.75045776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02021436 168.75047302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02021437 168.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02021438 168.75051880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02021439 168.75051880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02021440 168.75053406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02021441 168.75053406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02021442 168.75056458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02021443 168.75056458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02021444 168.75059509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02021445 168.75059509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02021446 168.75061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02021447 168.75062561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02021448 168.75065613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02021449 168.75065613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02021450 168.75068665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02021451 168.75068665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02021452 168.75070190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02021453 168.75070190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02021454 168.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02021455 168.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02021456 168.75076294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02021457 168.75076294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02021458 168.75077820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02021459 168.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02021460 168.75082397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02021461 168.75082397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02021462 168.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02021463 168.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02021464 168.75086975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02021465 168.75086975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02021466 168.75090027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02021467 168.75090027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02021468 168.75093079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02021469 168.75093079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02021470 168.75096130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02021471 168.75096130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02021472 168.75099182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02021473 168.75099182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02021474 168.75100708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02021475 168.75100708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02021476 168.75103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02021477 168.75103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02021478 168.75106812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02021479 168.75106812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02021480 168.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02021481 168.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02021482 168.75112915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02021483 168.75112915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02021484 168.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02021485 168.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02021486 168.75117493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02021487 168.75117493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02021488 168.75120544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02021489 168.75120544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02021490 168.75123596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02021491 168.75125122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02021492 168.75126648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02021493 168.75126648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02021494 168.75129700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02021495 168.75129700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02021496 168.75132751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02021497 168.75132751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02021498 168.75134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02021499 168.75135803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02021500 168.75138855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02021501 168.75138855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02021502 168.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02021503 168.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02021504 168.75143433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02021505 168.75143433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02021506 168.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02021507 168.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02021508 168.75149536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02021509 168.75149536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02021510 168.75151062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02021511 168.75152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02021512 168.75155640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02021513 168.75155640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02021514 168.75157166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02021515 168.75157166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02021516 168.75160217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02021517 168.75160217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02021518 168.75163269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02021519 168.75163269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02021520 168.75164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02021521 168.75166321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02021522 168.75169373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02021523 168.75169373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02021524 168.75172424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02021525 168.75172424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02021526 168.75173950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02021527 168.75173950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02021528 168.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02021529 168.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02021530 168.75180054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02021531 168.75180054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02021532 168.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02021533 168.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02021534 168.75186157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02021535 168.75186157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02021536 168.75189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02021537 168.75189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02021538 168.75190735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02021539 168.75190735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02021540 168.75193787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02021541 168.75193787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02021542 168.75196838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02021543 168.75196838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02021544 168.75199890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02021545 168.75199890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02021546 168.75202942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02021547 168.75202942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02021548 168.75204468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02021549 168.75204468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02021550 168.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02021551 168.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02021552 168.75212097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02021553 168.75212097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02021554 168.75215149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02021555 168.75215149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02021556 168.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02021557 168.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02021558 168.75222778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02021559 168.75222778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02021560 168.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02021561 168.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02021562 168.75228882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02021563 168.75228882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02021564 168.75230408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02021565 168.75231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02021566 168.75234985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02021567 168.75234985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02021568 168.75236511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02021569 168.75236511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02021570 168.75239563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02021571 168.75239563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02021572 168.75242615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02021573 168.75242615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02021574 168.75244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02021575 168.75245667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02021576 168.75248718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02021577 168.75248718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02021578 168.75251770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02021579 168.75251770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02021580 168.75253296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02021581 168.75253296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02021582 168.75256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02021583 168.75256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02021584 168.75259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02021585 168.75259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02021586 168.75260925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02021587 168.75262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02021588 168.75265503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02021589 168.75265503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02021590 168.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02021591 168.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02021592 168.75270081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02021593 168.75270081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02021594 168.75273132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02021595 168.75273132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02021596 168.75276184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02021597 168.75276184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02021598 168.75279236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02021599 168.75279236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02021600 168.75282288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02021601 168.75282288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02021602 168.75283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02021603 168.75283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02021604 168.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02021605 168.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02021606 168.75289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02021607 168.75289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02021608 168.75291443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02021609 168.75292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02021610 168.75296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02021611 168.75296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02021612 168.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02021613 168.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02021614 168.75300598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02021615 168.75300598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02021616 168.75303650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02021617 168.75303650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02021618 168.75306702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02021619 168.75308228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02021620 168.75309753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02021621 168.75309753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02021622 168.75312805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02021623 168.75312805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02021624 168.75315857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02021625 168.75315857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02021626 168.75317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02021627 168.75317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02021628 168.75320435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02021629 168.75321960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02021630 168.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02021631 168.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02021632 168.75326538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02021633 168.75326538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02021634 168.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02021635 168.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02021636 168.75331116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02021637 168.75331116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02021638 168.75334167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02021639 168.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02021640 168.75337219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02021641 168.75338745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02021642 168.75340271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02021643 168.75340271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02021644 168.75343323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02021645 168.75343323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02021646 168.75346375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02021647 168.75346375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02021648 168.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02021649 168.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02021650 168.75350952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02021651 168.75352478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02021652 168.75355530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02021653 168.75355530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02021654 168.75357056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02021655 168.75357056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02021656 168.75360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02021657 168.75360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02021658 168.75363159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02021659 168.75363159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02021660 168.75364685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02021661 168.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02021662 168.75369263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02021663 168.75369263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02021664 168.75370789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02021665 168.75370789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02021666 168.75373840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02021667 168.75373840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02021668 168.75376892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02021669 168.75376892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02021670 168.75379944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02021671 168.75379944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02021672 168.75381470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02021673 168.75382996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02021674 168.75386047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02021675 168.75386047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02021676 168.75387573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02021677 168.75387573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02021678 168.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02021679 168.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02021680 168.75393677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02021681 168.75393677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02021682 168.75395203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02021683 168.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02021684 168.75399780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02021685 168.75399780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02021686 168.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02021687 168.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02021688 168.75404358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02021689 168.75404358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02021690 168.75407410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02021691 168.75407410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02021692 168.75410461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02021693 168.75410461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02021694 168.75411987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02021695 168.75413513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02021696 168.75416565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02021697 168.75416565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02021698 168.75419617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02021699 168.75419617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02021700 168.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02021701 168.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02021702 168.75424194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02021703 168.75425720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02021704 168.75427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02021705 168.75427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02021706 168.75430298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02021707 168.75430298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02021708 168.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02021709 168.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02021710 168.75434875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02021711 168.75434875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02021712 168.75437927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02021713 168.75437927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02021714 168.75440979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02021715 168.75442505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02021716 168.75444031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02021717 168.75444031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02021718 168.75447083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02021719 168.75447083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02021720 168.75450134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02021721 168.75450134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02021722 168.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02021723 168.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02021724 168.75454712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02021725 168.75456238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02021726 168.75459290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02021727 168.75459290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02021728 168.75460815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02021729 168.75460815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02021730 168.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02021731 168.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02021732 168.75466919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02021733 168.75466919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02021734 168.75468445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02021735 168.75468445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02021736 168.75471497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02021737 168.75473022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02021738 168.75474548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02021739 168.75474548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02021740 168.75477600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02021741 168.75477600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02021742 168.75480652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02021743 168.75480652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02021744 168.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02021745 168.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02021746 168.75485229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02021747 168.75486755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02021748 168.75489807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02021749 168.75489807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02021750 168.75491333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02021751 168.75491333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02021752 168.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02021753 168.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02021754 168.75497437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02021755 168.75497437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02021756 168.75498962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02021757 168.75498962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02021758 168.75502014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02021759 168.75503540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02021760 168.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02021761 168.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02021762 168.75508118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02021763 168.75508118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02021764 168.75511169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02021765 168.75511169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02021766 168.75514221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02021767 168.75514221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02021768 168.75515747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02021769 168.75517273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02021770 168.75520325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02021771 168.75520325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02021772 168.75521851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02021773 168.75521851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02021774 168.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02021775 168.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02021776 168.75527954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02021777 168.75527954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02021778 168.75529480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02021779 168.75531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02021780 168.75534058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02021781 168.75534058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02021782 168.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02021783 168.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02021784 168.75538635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02021785 168.75538635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02021786 168.75541687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02021787 168.75541687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02021788 168.75544739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02021789 168.75544739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02021790 168.75546265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02021791 168.75547791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02021792 168.75550842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02021793 168.75550842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02021794 168.75553894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02021795 168.75553894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02021796 168.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02021797 168.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02021798 168.75558472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02021799 168.75558472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02021800 168.75561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02021801 168.75561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02021802 168.75564575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02021803 168.75564575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02021804 168.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02021805 168.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02021806 168.75570679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02021807 168.75570679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02021808 168.75572205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02021809 168.75572205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02021810 168.75575256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02021811 168.75576782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02021812 168.75578308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02021813 168.75578308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02021814 168.75581360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02021815 168.75581360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02021816 168.75584412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02021817 168.75584412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02021818 168.75585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02021819 168.75585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02021820 168.75588989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02021821 168.75588989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02021822 168.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02021823 168.75593567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02021824 168.75595093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02021825 168.75595093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02021826 168.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02021827 168.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02021828 168.75601196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02021829 168.75601196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02021830 168.75602722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02021831 168.75602722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02021832 168.75605774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02021833 168.75607300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02021834 168.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02021835 168.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02021836 168.75611877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02021837 168.75611877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02021838 168.75614929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02021839 168.75614929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02021840 168.75617981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02021841 168.75617981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02021842 168.75619507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02021843 168.75619507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02021844 168.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02021845 168.75624084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02021846 168.75625610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02021847 168.75625610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02021848 168.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02021849 168.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02021850 168.75631714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02021851 168.75631714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02021852 168.75633240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02021853 168.75633240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02021854 168.75636292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02021855 168.75637817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02021856 168.75640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02021857 168.75640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02021858 168.75642395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02021859 168.75642395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02021860 168.75645447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02021861 168.75645447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02021862 168.75648499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02021863 168.75648499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02021864 168.75650024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02021865 168.75650024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02021866 168.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02021867 168.75654602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02021868 168.75657654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02021869 168.75657654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02021870 168.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02021871 168.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02021872 168.75662231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02021873 168.75662231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02021874 168.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02021875 168.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02021876 168.75666809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02021877 168.75668335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02021878 168.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02021879 168.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02021880 168.75672913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02021881 168.75672913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02021882 168.75675964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02021883 168.75675964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02021884 168.75679016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02021885 168.75679016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02021886 168.75680542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02021887 168.75680542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02021888 168.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02021889 168.75685120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02021890 168.75688171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02021891 168.75688171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02021892 168.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02021893 168.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02021894 168.75692749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02021895 168.75692749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02021896 168.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02021897 168.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02021898 168.75697327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02021899 168.75698853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02021900 168.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02021901 168.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02021902 168.75704956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02021903 168.75704956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02021904 168.75706482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02021905 168.75706482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02021906 168.75709534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02021907 168.75709534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02021908 168.75712585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02021909 168.75712585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02021910 168.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02021911 168.75715637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02021912 168.75718689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02021913 168.75718689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02021914 168.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02021915 168.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02021916 168.75723267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02021917 168.75723267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02021918 168.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02021919 168.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02021920 168.75729370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02021921 168.75729370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02021922 168.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02021923 168.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02021924 168.75735474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02021925 168.75735474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02021926 168.75737000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02021927 168.75737000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02021928 168.75740051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02021929 168.75740051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02021930 168.75743103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02021931 168.75744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02021932 168.75746155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02021933 168.75746155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02021934 168.75749207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02021935 168.75749207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02021936 168.75752258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02021937 168.75752258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02032314 168.91436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a8 -02032315 168.91438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a8 -02032316 168.91441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b8 -02032317 168.91441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b8 -02032318 168.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c8 -02032319 168.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c8 -02032320 168.91445923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d8 -02032321 168.91445923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d8 -02032322 168.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e8 -02032323 168.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2e8 -02032324 168.91450500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f8 -02032325 168.91452026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2f8 -02032326 168.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a308 -02032327 168.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a308 -02032328 168.91456604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a318 -02032329 168.91456604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a318 -02032330 168.91459656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a328 -02032331 168.91459656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a328 -02032332 168.91462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a338 -02032333 168.91462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a338 -02032334 168.91464233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a348 -02032335 168.91465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a348 -02032336 168.91467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a358 -02032337 168.91468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a358 -02032338 168.91471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a368 -02032339 168.91471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a368 -02032340 168.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a378 -02032341 168.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a378 -02032342 168.91476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a388 -02032343 168.91476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a388 -02032344 168.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a398 -02032345 168.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a398 -02032346 168.91481018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a8 -02032347 168.91482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a8 -02032348 168.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b8 -02032349 168.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b8 -02032350 168.91488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c8 -02032351 168.91488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c8 -02032352 168.91490173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d8 -02032353 168.91490173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d8 -02032354 168.91493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e8 -02032355 168.91493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e8 -02032356 168.91496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f8 -02032357 168.91496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f8 -02032506 168.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a8 -02032507 168.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8a8 -02032508 168.91712952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b8 -02032509 168.91712952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8b8 -02032510 168.91716003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c8 -02032511 168.91716003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8c8 -02032512 168.91719055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d8 -02032513 168.91719055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8d8 -02032514 168.91720581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e8 -02032515 168.91722107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8e8 -02032516 168.91725159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f8 -02032517 168.91725159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a8f8 -02032518 168.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a908 -02032519 168.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a908 -02032520 168.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a918 -02032521 168.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a918 -02032522 168.91732788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a928 -02032523 168.91732788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a928 -02032524 168.91734314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a938 -02032525 168.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a938 -02032526 168.91738892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a948 -02032527 168.91738892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a948 -02032528 168.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a958 -02032529 168.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a958 -02032530 168.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a968 -02032531 168.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a968 -02032532 168.91746521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a978 -02032533 168.91746521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a978 -02032534 168.91749573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a988 -02032535 168.91751099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a988 -02032536 168.91752625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a998 -02032537 168.91752625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a998 -02032538 168.91755676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a8 -02032539 168.91755676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9a8 -02032540 168.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b8 -02032541 168.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9b8 -02032542 168.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c8 -02032543 168.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9c8 -02032544 168.91763306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d8 -02032545 168.91763306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9d8 -02032546 168.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e8 -02032547 168.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9e8 -02032548 168.91769409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f8 -02032549 168.91769409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a9f8 -02032562 168.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02032563 168.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02032564 168.91792297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02032565 168.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02032566 168.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02032567 168.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02032568 168.91798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02032569 168.91798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02032570 168.91801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02032571 168.91801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02032572 168.91804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02032573 168.91804504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02032574 168.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02032575 168.91807556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02032576 168.91810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02032577 168.91810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02032578 168.91813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02032579 168.91813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02032580 168.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -02032581 168.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -02032582 168.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -02032583 168.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -02032584 168.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -02032585 168.91822815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -02032586 168.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -02032587 168.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -02032588 168.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -02032589 168.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -02032590 168.91830444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -02032591 168.91830444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -02032592 168.91831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -02032593 168.91831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -02032594 168.91835022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -02032595 168.91835022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -02032596 168.91838074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab78 -02032597 168.91838074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab78 -02032598 168.91841125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab88 -02032599 168.91841125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab88 -02032600 168.91844177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab98 -02032601 168.91844177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab98 -02032602 168.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba8 -02032603 168.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba8 -02032604 168.91848755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb8 -02032605 168.91848755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb8 -02033308 168.92839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b8 -02033309 168.92839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1b8 -02033310 168.92842102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c8 -02033311 168.92843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1c8 -02033312 168.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d8 -02033313 168.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1d8 -02033314 168.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e8 -02033315 168.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1e8 -02033316 168.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f8 -02033317 168.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c1f8 -02033318 168.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c208 -02033319 168.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c208 -02033320 168.92855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c218 -02033321 168.92857361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c218 -02033322 168.92860413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c228 -02033323 168.92860413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c228 -02033324 168.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c238 -02033325 168.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c238 -02033326 168.92864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c248 -02033327 168.92864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c248 -02033328 168.92868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c258 -02033329 168.92868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c258 -02033330 168.92871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c268 -02033331 168.92871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c268 -02033332 168.92872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c278 -02033333 168.92874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c278 -02033334 168.92877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c288 -02033335 168.92877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c288 -02033336 168.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c298 -02033337 168.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c298 -02033338 168.92881775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a8 -02033339 168.92881775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2a8 -02033340 168.92884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b8 -02033341 168.92884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2b8 -02033342 168.92886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c8 -02033343 168.92887878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2c8 -02033344 168.92889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d8 -02033345 168.92890930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2d8 -02033346 168.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e8 -02033347 168.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2e8 -02033348 168.92895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f8 -02033349 168.92895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c2f8 -02033350 168.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c308 -02033351 168.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c308 -02033374 168.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -02033375 168.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3c8 -02033376 168.92936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -02033377 168.92936707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -02033378 168.92939758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -02033379 168.92941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -02033380 168.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -02033381 168.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -02033382 168.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -02033383 168.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -02033384 168.92948914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -02033385 168.92948914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -02033386 168.92950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -02033387 168.92950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -02033388 168.92953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -02033389 168.92953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -02033390 168.92956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -02033391 168.92958069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -02033392 168.92959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -02033393 168.92959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -02033394 168.92962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -02033395 168.92962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -02033396 168.92965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -02033397 168.92965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -02033398 168.92967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -02033399 168.92967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -02033400 168.92970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c498 -02033401 168.92971802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c498 -02033402 168.92973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a8 -02033403 168.92973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a8 -02033404 168.92976379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b8 -02033405 168.92976379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b8 -02033406 168.92979431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c8 -02033407 168.92979431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c8 -02033408 168.92982483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -02033409 168.92982483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -02033410 168.92984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -02033411 168.92985535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -02033412 168.92987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -02033413 168.92988586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -02033414 168.92990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -02033415 168.92990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -02033416 168.92993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -02033417 168.92993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -02033559 168.93196106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -02033560 168.93197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -02033561 168.93197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -02033562 168.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -02033563 168.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -02033564 168.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -02033565 168.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -02033566 168.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -02033567 168.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -02033568 168.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -02033569 168.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -02033570 168.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -02033571 168.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -02033572 168.93214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -02033573 168.93214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -02033574 168.93217468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -02033575 168.93217468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -02033576 168.93220520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -02033577 168.93220520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -02033578 168.93223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -02033579 168.93223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -02033580 168.93226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -02033581 168.93226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca38 -02033582 168.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca48 -02033583 168.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca48 -02033584 168.93231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca58 -02033585 168.93231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca58 -02033586 168.93234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca68 -02033587 168.93235779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca68 -02033588 168.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca78 -02033589 168.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca78 -02033590 168.93240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca88 -02033591 168.93240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca88 -02033592 168.93243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca98 -02033593 168.93243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca98 -02033594 168.93244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa8 -02033595 168.93244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1caa8 -02033596 168.93247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab8 -02033597 168.93247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cab8 -02033598 168.93251038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac8 -02033599 168.93252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cac8 -02033600 168.93254089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -02033601 168.93254089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cad8 -02033602 168.93257141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cae8 -02033786 168.93515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a8 -02033787 168.93515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a8 -02033788 168.93518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b8 -02033789 168.93518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b8 -02033790 168.93521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c8 -02033791 168.93521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c8 -02033792 168.93522644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d8 -02033793 168.93524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d8 -02033794 168.93527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e8 -02033795 168.93527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e8 -02033796 168.93530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f8 -02033797 168.93530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f8 -02033798 168.93531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d108 -02033799 168.93531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d108 -02033800 168.93534851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d118 -02033801 168.93534851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d118 -02033802 168.93537903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d128 -02033803 168.93537903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d128 -02033804 168.93539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d138 -02033805 168.93540955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d138 -02033806 168.93544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d148 -02033807 168.93544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d148 -02033808 168.93545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d158 -02033809 168.93545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d158 -02033810 168.93548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d168 -02033811 168.93548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d168 -02033812 168.93551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d178 -02033813 168.93551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d178 -02033814 168.93553162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d188 -02033815 168.93554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d188 -02033816 168.93557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d198 -02033817 168.93557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d198 -02033818 168.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a8 -02033819 168.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1a8 -02033820 168.93562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b8 -02033821 168.93562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1b8 -02033822 168.93565369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c8 -02033823 168.93565369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1c8 -02033824 168.93568420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d8 -02033825 168.93569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1d8 -02033826 168.93571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e8 -02033827 168.93571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1e8 -02033828 168.93574524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f8 -02033829 168.93574524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d1f8 -02033834 168.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d228 -02033835 168.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d228 -02033836 168.93586731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d238 -02033837 168.93586731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d238 -02033838 168.93589783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d248 -02033839 168.93589783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d248 -02033840 168.93592834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d258 -02033841 168.93594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d258 -02033842 168.93595886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d268 -02033843 168.93595886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d268 -02033844 168.93598938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d278 -02033845 168.93598938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d278 -02033846 168.93601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d288 -02033847 168.93601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d288 -02033848 168.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d298 -02033849 168.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d298 -02033850 168.93606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a8 -02033851 168.93608093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a8 -02033852 168.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b8 -02033853 168.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b8 -02033854 168.93612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c8 -02033855 168.93612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c8 -02033856 168.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d8 -02033857 168.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d8 -02033858 168.93617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e8 -02033859 168.93617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e8 -02033860 168.93620300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f8 -02033861 168.93621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f8 -02033862 168.93624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d308 -02033863 168.93624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d308 -02033864 168.93626404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d318 -02033865 168.93626404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d318 -02033866 168.93629456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d328 -02033867 168.93629456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d328 -02033868 168.93632507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d338 -02033869 168.93632507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d338 -02033870 168.93634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -02033871 168.93634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -02033872 168.93637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -02033873 168.93638611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -02033874 168.93641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -02033875 168.93641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -02033876 168.93643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -02033877 168.93643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -02034512 168.94537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -02034513 168.94537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -02034514 168.94538879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -02034515 168.94538879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -02034516 168.94541931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -02034517 168.94541931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -02034518 168.94544983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -02034519 168.94546509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -02034520 168.94548035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -02034521 168.94548035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -02034522 168.94551086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -02034523 168.94551086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -02034524 168.94554138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -02034525 168.94554138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -02034526 168.94555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -02034527 168.94555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -02034528 168.94558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -02034529 168.94560242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -02034530 168.94563293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -02034531 168.94563293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -02034532 168.94564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -02034533 168.94564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -02034534 168.94567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -02034535 168.94567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -02034536 168.94570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -02034537 168.94570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -02034538 168.94572449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -02034539 168.94573975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -02034540 168.94577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -02034541 168.94577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -02034542 168.94578552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -02034543 168.94578552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -02034544 168.94581604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -02034545 168.94581604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -02034546 168.94584656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -02034547 168.94584656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -02034548 168.94586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -02034549 168.94586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -02034550 168.94589233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -02034551 168.94590759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -02034552 168.94593811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -02034553 168.94593811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -02034554 168.94595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -02034555 168.94595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -02034998 168.95222473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f688 -02034999 168.95222473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f688 -02035000 168.95225525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f698 -02035001 168.95227051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f698 -02035002 168.95230103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a8 -02035003 168.95230103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6a8 -02035004 168.95231628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b8 -02035005 168.95231628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6b8 -02035006 168.95234680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c8 -02035007 168.95234680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6c8 -02035008 168.95237732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d8 -02035009 168.95237732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6d8 -02035010 168.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e8 -02035011 168.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6e8 -02035012 168.95242310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f8 -02035013 168.95243835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f6f8 -02035014 168.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f708 -02035015 168.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f708 -02035016 168.95248413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f718 -02035017 168.95248413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f718 -02035018 168.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f728 -02035019 168.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f728 -02035020 168.95254517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -02035021 168.95254517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -02035022 168.95256042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -02035023 168.95257568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -02035024 168.95260620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -02035025 168.95260620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -02035026 168.95262146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -02035027 168.95262146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -02035028 168.95265198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -02035029 168.95265198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -02035030 168.95268250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -02035031 168.95268250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -02035032 168.95269775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -02035033 168.95271301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -02035034 168.95274353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -02035035 168.95274353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -02035036 168.95277405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -02035037 168.95277405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -02035038 168.95278931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c8 -02035039 168.95278931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c8 -02035040 168.95281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -02035041 168.95281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -02035188 168.95492554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc78 -02035189 168.95492554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc78 -02035190 168.95494080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc88 -02035191 168.95494080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc88 -02035192 168.95497131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc98 -02035193 168.95498657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc98 -02035194 168.95500183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -02035195 168.95500183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -02035196 168.95503235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -02035197 168.95503235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -02035198 168.95506287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc8 -02035199 168.95506287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcc8 -02035200 168.95507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd8 -02035201 168.95509338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcd8 -02035202 168.95512390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce8 -02035203 168.95512390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fce8 -02035204 168.95515442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf8 -02035205 168.95515442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcf8 -02035206 168.95516968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd08 -02035207 168.95516968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd08 -02035208 168.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd18 -02035209 168.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd18 -02035210 168.95523071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd28 -02035211 168.95523071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd28 -02035212 168.95524597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd38 -02035213 168.95526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd38 -02035214 168.95529175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd48 -02035215 168.95529175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd48 -02035216 168.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd58 -02035217 168.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd58 -02035218 168.95533752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd68 -02035219 168.95533752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd68 -02035220 168.95536804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -02035221 168.95536804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -02035222 168.95539856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -02035223 168.95539856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -02035224 168.95542908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -02035225 168.95542908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -02035226 168.95545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -02035227 168.95545959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -02035228 168.95547485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -02035229 168.95547485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -02035230 168.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -02035231 168.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -02035548 168.95997620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -02035549 168.95997620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -02035550 168.96000671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -02035551 168.96000671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -02035552 168.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -02035553 168.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -02035554 168.96005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -02035555 168.96005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -02035556 168.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -02035557 168.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -02035558 168.96011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -02035559 168.96011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -02035560 168.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -02035561 168.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -02035562 168.96015930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -02035563 168.96015930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -02035564 168.96018982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -02035565 168.96018982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -02035566 168.96022034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -02035567 168.96022034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -02035568 168.96023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -02035569 168.96025085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -02035570 168.96028137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -02035571 168.96028137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -02035572 168.96031189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -02035573 168.96031189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -02035574 168.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -02035575 168.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -02035576 168.96035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -02035577 168.96035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -02035578 168.96038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -02035579 168.96040344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -02035580 168.96041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -02035581 168.96041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -02035582 168.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -02035583 168.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -02035584 168.96047974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -02035585 168.96047974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -02035586 168.96049500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -02035587 168.96049500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -02035588 168.96052551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -02035589 168.96054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -02035590 168.96055603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -02035591 168.96055603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -02039394 169.01394653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe8 -02039395 169.01394653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe8 -02039396 169.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff8 -02039397 169.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff8 -02039398 169.01400757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28008 -02039399 169.01400757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28008 -02039400 169.01402283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28018 -02039401 169.01402283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28018 -02039402 169.01405334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28028 -02039403 169.01405334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28028 -02039404 169.01408386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28038 -02039405 169.01409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28038 -02039406 169.01411438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28048 -02039407 169.01411438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28048 -02039408 169.01414490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28058 -02039409 169.01414490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28058 -02039410 169.01417542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28068 -02039411 169.01417542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28068 -02039412 169.01419067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28078 -02039413 169.01419067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28078 -02039414 169.01422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28088 -02039415 169.01422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28088 -02039416 169.01425171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28098 -02039417 169.01425171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28098 -02039418 169.01428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a8 -02039419 169.01428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a8 -02039420 169.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b8 -02039421 169.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b8 -02039422 169.01434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -02039423 169.01434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -02039424 169.01435852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -02039425 169.01435852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -02039426 169.01438904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -02039427 169.01440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -02039428 169.01441956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -02039429 169.01441956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -02039430 169.01445007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -02039431 169.01445007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -02039432 169.01448059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28118 -02039433 169.01448059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28118 -02039434 169.01449585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28128 -02039435 169.01449585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28128 -02039436 169.01452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28138 -02039437 169.01452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28138 -02043028 169.06486511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f178 -02043029 169.06486511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f178 -02043030 169.06489563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f188 -02043031 169.06489563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f188 -02043032 169.06492615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f198 -02043033 169.06492615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f198 -02043034 169.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a8 -02043035 169.06495667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a8 -02043036 169.06498718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b8 -02043037 169.06498718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b8 -02043038 169.06501770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c8 -02043039 169.06501770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c8 -02043040 169.06503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d8 -02043041 169.06503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d8 -02043042 169.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e8 -02043043 169.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e8 -02043044 169.06509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f8 -02043045 169.06509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f8 -02043046 169.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f208 -02043047 169.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f208 -02043048 169.06515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f218 -02043049 169.06515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f218 -02043050 169.06517029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f228 -02043051 169.06517029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f228 -02043052 169.06520081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f238 -02043053 169.06520081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f238 -02043054 169.06523132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f248 -02043055 169.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f248 -02043056 169.06526184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f258 -02043057 169.06526184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f258 -02043058 169.06529236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f268 -02043059 169.06529236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f268 -02043060 169.06532288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f278 -02043061 169.06532288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f278 -02043062 169.06533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f288 -02043063 169.06533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f288 -02043064 169.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f298 -02043065 169.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f298 -02043066 169.06539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -02043067 169.06541443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -02043068 169.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -02043069 169.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -02043070 169.06546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -02043071 169.06546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -02046790 169.11756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36708 -02046791 169.11756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36708 -02046792 169.11759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36718 -02046793 169.11759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36718 -02046794 169.11763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36728 -02046795 169.11763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36728 -02046796 169.11766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36738 -02046797 169.11766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36738 -02046798 169.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36748 -02046799 169.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36748 -02046800 169.11770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36758 -02046801 169.11770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36758 -02046802 169.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36768 -02046803 169.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36768 -02046804 169.11776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36778 -02046805 169.11776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36778 -02046806 169.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36788 -02046807 169.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36788 -02046808 169.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36798 -02046809 169.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36798 -02046810 169.11784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a8 -02046811 169.11784363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a8 -02046812 169.11787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b8 -02046813 169.11787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b8 -02046814 169.11790466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c8 -02046815 169.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c8 -02046816 169.11793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d8 -02046817 169.11793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d8 -02046818 169.11796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -02046819 169.11796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -02046820 169.11799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -02046821 169.11799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -02046822 169.11801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -02046823 169.11801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -02046824 169.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -02046825 169.11805725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -02046826 169.11807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -02046827 169.11807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -02046828 169.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -02046829 169.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -02046830 169.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -02046831 169.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -02046832 169.11816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -02046833 169.11816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -02050132 169.16432190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -02050133 169.16432190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -02050134 169.16435242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -02050135 169.16435242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -02050136 169.16438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -02050137 169.16438293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -02050138 169.16441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -02050139 169.16441345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -02050140 169.16444397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -02050141 169.16444397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -02050142 169.16447449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -02050143 169.16447449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -02050144 169.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -02050145 169.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -02050146 169.16452026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -02050147 169.16453552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -02050148 169.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -02050149 169.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -02050150 169.16458130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -02050151 169.16458130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -02050152 169.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -02050153 169.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -02050154 169.16462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02050155 169.16462708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02050156 169.16465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02050157 169.16465759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02050158 169.16468811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02050159 169.16470337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02050160 169.16471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02050161 169.16471863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02050162 169.16474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02050163 169.16474915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02050164 169.16477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02050165 169.16477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02050166 169.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02050167 169.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02050168 169.16482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02050169 169.16482544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02050170 169.16485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02050171 169.16487122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02050172 169.16488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02050173 169.16488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02050174 169.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02050175 169.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02053438 169.21060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c8 -02053439 169.21061707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436c8 -02053440 169.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d8 -02053441 169.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436d8 -02053442 169.21066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e8 -02053443 169.21066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436e8 -02053444 169.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f8 -02053445 169.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x436f8 -02053446 169.21070862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43708 -02053447 169.21070862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43708 -02053448 169.21073914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43718 -02053449 169.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43718 -02053450 169.21078491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43728 -02053451 169.21078491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43728 -02053452 169.21080017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43738 -02053453 169.21080017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43738 -02053454 169.21083069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43748 -02053455 169.21083069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43748 -02053456 169.21086121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43758 -02053457 169.21086121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43758 -02053458 169.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43768 -02053459 169.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43768 -02053460 169.21090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43778 -02053461 169.21092224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43778 -02053462 169.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43788 -02053463 169.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43788 -02053464 169.21096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43798 -02053465 169.21096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43798 -02053466 169.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a8 -02053467 169.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437a8 -02053468 169.21101379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b8 -02053469 169.21101379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437b8 -02053470 169.21104431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c8 -02053471 169.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437c8 -02053472 169.21109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d8 -02053473 169.21109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d8 -02053474 169.21110535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e8 -02053475 169.21110535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e8 -02053476 169.21113586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f8 -02053477 169.21113586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f8 -02053478 169.21116638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43808 -02053479 169.21116638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43808 -02053480 169.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43818 -02053481 169.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43818 -02061324 170.23825073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02061325 170.25889587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061326 170.25891113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061327 171.41151428 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061328 171.41156006 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061329 171.41159058 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061330 171.41160583 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02061331 171.41183472 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061332 171.41183472 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061333 171.41192627 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061334 171.41195679 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061335 172.26091003 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02061336 172.28080750 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061337 172.28082275 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061338 173.92076111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061339 173.92080688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061340 173.92083740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061341 173.92083740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02061342 173.92095947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061343 173.92095947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061344 173.92102051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02061345 173.92105103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02061346 174.28262329 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02061347 174.30151367 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061348 174.30152893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02061349 174.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02061350 174.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02061351 174.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02061352 174.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02061353 174.32478333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02061354 174.32478333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02061355 174.32481384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02061356 174.32482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02061357 174.32484436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02061358 174.32484436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02061359 174.32487488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02061360 174.32487488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02061361 174.32490540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02061362 174.32490540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02061363 174.32492065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02061364 174.32493591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02061365 174.32498169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02061366 174.32498169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02061367 174.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02061368 174.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02061369 174.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02061370 174.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02061371 174.32507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02061372 174.32507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02061373 174.32508850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02061374 174.32508850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02061375 174.32511902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02061376 174.32511902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02061377 174.32514954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02061378 174.32514954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02061379 174.32516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02061380 174.32516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02061381 174.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02061382 174.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02061383 174.32522583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02061384 174.32522583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02061385 174.32524109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02061386 174.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02061387 174.32527161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02061388 174.32528687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02061389 174.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02061390 174.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02061391 174.32533264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02061392 174.32533264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02061393 174.32536316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02061394 174.32536316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02061395 174.32539368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02061396 174.32539368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02061397 174.32540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02061398 174.32540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02061399 174.32543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02061400 174.32543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02061401 174.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02061402 174.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02061403 174.32548523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02061404 174.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02061405 174.32551575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02061406 174.32553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02061407 174.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02061408 174.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02061409 174.32557678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02061410 174.32557678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02061411 174.32560730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02061412 174.32560730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02061413 174.32563782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02061414 174.32563782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02061415 174.32566833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02061416 174.32566833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02061417 174.32569885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02061418 174.32569885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02061419 174.32571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02061420 174.32571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02061421 174.32574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02061422 174.32575989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02061423 174.32579041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02061424 174.32579041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02061425 174.32580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02061426 174.32580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02061427 174.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02061428 174.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02061429 174.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02061430 174.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02061431 174.32588196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02061432 174.32588196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02061433 174.32591248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02061434 174.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02061435 174.32594299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02061436 174.32595825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02061437 174.32597351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02061438 174.32597351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02061439 174.32600403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02061440 174.32600403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02061441 174.32603455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02061442 174.32603455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02061443 174.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02061444 174.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02061445 174.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02061446 174.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02061447 174.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02061448 174.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02061449 174.32612610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02061450 174.32612610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02061451 174.32615662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02061452 174.32615662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02061453 174.32618713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02061454 174.32618713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02061455 174.32620239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02061456 174.32621765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02061457 174.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02061458 174.32624817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02061459 174.32627869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02061460 174.32627869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02061461 174.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02061462 174.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02061463 174.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02061464 174.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02061465 174.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02061466 174.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02061467 174.32637024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02061468 174.32637024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02061469 174.32640076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02061470 174.32640076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02061471 174.32643127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02061472 174.32643127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02061473 174.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02061474 174.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02061475 174.32650757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02061476 174.32650757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02061477 174.32652283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02061478 174.32652283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02061479 174.32655334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02061480 174.32655334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02061481 174.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02061482 174.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02061483 174.32661438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02061484 174.32661438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02061485 174.32664490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02061486 174.32664490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02061487 174.32667542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02061488 174.32667542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02061489 174.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02061490 174.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02061491 174.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02061492 174.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02061493 174.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02061494 174.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02061495 174.32676697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02061496 174.32676697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02061497 174.32679749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02061498 174.32681274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02061499 174.32682800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02061500 174.32682800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02061501 174.32685852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02061502 174.32685852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02061503 174.32688904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02061504 174.32688904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02061505 174.32691956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02061506 174.32691956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02061507 174.32693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02061508 174.32693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02061509 174.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02061510 174.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02061511 174.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02061512 174.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02061513 174.32701111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02061514 174.32701111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02061515 174.32704163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02061516 174.32704163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02061517 174.32707214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02061518 174.32707214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02061519 174.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02061520 174.32710266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02061521 174.32711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02061522 174.32713318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02061523 174.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02061524 174.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02061525 174.32717896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02061526 174.32717896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02061527 174.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02061528 174.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02061529 174.32722473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02061530 174.32722473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02061531 174.32725525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02061532 174.32725525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02061533 174.32728577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02061534 174.32728577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02061535 174.32731628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02061536 174.32731628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02061537 174.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02061538 174.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02061539 174.32736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02061540 174.32737732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02061541 174.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02061542 174.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02061543 174.32742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02061544 174.32742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02061545 174.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02061546 174.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02061547 174.32746887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02061548 174.32746887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02061549 174.32749939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02061550 174.32749939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02061551 174.32752991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02061552 174.32752991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02061553 174.32754517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02061554 174.32754517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02061555 174.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02061556 174.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02061557 174.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02061558 174.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02061559 174.32762146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02061560 174.32762146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02061561 174.32765198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02061562 174.32766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02061563 174.32768250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02061564 174.32769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02061565 174.32771301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02061566 174.32771301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02061567 174.32774353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02061568 174.32774353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02061569 174.32777405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02061570 174.32777405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02061571 174.32780457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02061572 174.32780457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02061573 174.32783508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02061574 174.32783508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02061575 174.32786560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02061576 174.32786560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02061577 174.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02061578 174.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02061579 174.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02061580 174.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02061581 174.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02061582 174.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02061583 174.32795715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02061584 174.32795715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02061585 174.32798767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02061586 174.32798767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02061587 174.32801819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02061588 174.32801819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02061589 174.32803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02061590 174.32804871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02061591 174.32807922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02061592 174.32807922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02061593 174.32810974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02061594 174.32810974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02061595 174.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02061596 174.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02061597 174.32815552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02061598 174.32815552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02061599 174.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02061600 174.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02061601 174.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02061602 174.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02061603 174.32826233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02061604 174.32826233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02061605 174.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02061606 174.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02061607 174.32830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02061608 174.32832336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02061609 174.32833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02061610 174.32833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02061611 174.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02061612 174.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02061613 174.32839966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02061614 174.32839966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02061615 174.32841492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02061616 174.32841492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02061617 174.32844543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02061618 174.32846069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02061619 174.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02061620 174.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02061621 174.32850647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02061622 174.32850647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02061623 174.32853699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02061624 174.32853699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02061625 174.32856750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02061626 174.32856750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02061627 174.32858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02061628 174.32859802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02061629 174.32862854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02061630 174.32862854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02061631 174.32865906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02061632 174.32865906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02061633 174.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02061634 174.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02061635 174.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02061636 174.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02061637 174.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02061638 174.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02061639 174.32875061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02061640 174.32876587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02061641 174.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02061642 174.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02061643 174.32881165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02061644 174.32881165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02061645 174.32884216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02061646 174.32884216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02061647 174.32887268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02061648 174.32887268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02061649 174.32890320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02061650 174.32890320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02061651 174.32893372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02061652 174.32893372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02061653 174.32896423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02061654 174.32896423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02061655 174.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02061656 174.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02061657 174.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02061658 174.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02061659 174.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02061660 174.32905579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02061661 174.32907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02061662 174.32907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02061663 174.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02061664 174.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02061665 174.32913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02061666 174.32913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02061667 174.32914734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02061668 174.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02061669 174.32917786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02061670 174.32919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02061671 174.32920837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02061672 174.32920837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02061673 174.32923889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02061674 174.32923889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02061675 174.32926941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02061676 174.32926941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02061677 174.32929993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02061678 174.32929993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02061679 174.32933044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02061680 174.32933044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02061681 174.32936096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02061682 174.32936096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02061683 174.32937622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02061684 174.32939148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02061685 174.32942200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02061686 174.32942200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02061687 174.32945251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02061688 174.32945251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02061689 174.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02061690 174.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02061691 174.32949829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02061692 174.32949829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02061693 174.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02061694 174.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02061695 174.32954407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02061696 174.32955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02061697 174.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02061698 174.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02061699 174.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02061700 174.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02061701 174.32963562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02061702 174.32963562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02061703 174.32966614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02061704 174.32966614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02061705 174.32969666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02061706 174.32969666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02061707 174.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02061708 174.32972717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02061709 174.32975769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02061710 174.32975769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02061711 174.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02061712 174.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02061713 174.32980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02061714 174.32981873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02061715 174.32984924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02061716 174.32984924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02061717 174.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02061718 174.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02061719 174.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02061720 174.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02061721 174.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02061722 174.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02061723 174.32994080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02061724 174.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02061725 174.32998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02061726 174.32998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02061727 174.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02061728 174.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02061729 174.33003235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02061730 174.33003235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02061731 174.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02061732 174.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02061733 174.33009338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02061734 174.33009338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02061735 174.33012390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02061736 174.33012390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02061737 174.33015442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02061738 174.33015442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02061739 174.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02061740 174.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02061741 174.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02061742 174.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02061743 174.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02061744 174.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02061745 174.33024597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02061746 174.33024597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02061747 174.33027649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02061748 174.33029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02061749 174.33030701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02061750 174.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02061751 174.33033752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02061752 174.33033752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02061753 174.33036804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02061754 174.33036804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02061755 174.33039856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02061756 174.33039856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02061757 174.33041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02061758 174.33041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02061759 174.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02061760 174.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02061761 174.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02061762 174.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02061763 174.33049011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02061764 174.33050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02061765 174.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02061766 174.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02061767 174.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02061768 174.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02061769 174.33058167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02061770 174.33058167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02061771 174.33061218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02061772 174.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02061773 174.33064270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02061774 174.33064270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02061775 174.33067322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02061776 174.33067322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02061777 174.33070374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02061778 174.33070374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02061779 174.33071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02061780 174.33071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02061781 174.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02061782 174.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02061783 174.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02061784 174.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02061785 174.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02061786 174.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02061787 174.33082581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02061788 174.33082581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02061789 174.33085632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02061790 174.33085632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02061791 174.33088684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02061792 174.33088684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02061793 174.33091736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02061794 174.33091736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02061795 174.33094788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02061796 174.33094788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02061797 174.33096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02061798 174.33096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02061799 174.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02061800 174.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02061801 174.33102417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02061802 174.33103943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02061803 174.33103943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02061804 174.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02061805 174.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02061806 174.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02061807 174.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02061808 174.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02061809 174.33113098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02061810 174.33113098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02061811 174.33116150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02061812 174.33116150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02061813 174.33119202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02061814 174.33119202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02061815 174.33120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02061816 174.33120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02061817 174.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02061818 174.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02061819 174.33126831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02061820 174.33126831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02061821 174.33128357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02061822 174.33128357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02061823 174.33131409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02061824 174.33131409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02061825 174.33134460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02061826 174.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02061827 174.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02061828 174.33137512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02061829 174.33140564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02061830 174.33140564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02061831 174.33143616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02061832 174.33143616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02061833 174.33145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02061834 174.33145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02061835 174.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02061836 174.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02061837 174.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02061838 174.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02061839 174.33152771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02061840 174.33152771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02061841 174.33155823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02061842 174.33155823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02061843 174.33158875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02061844 174.33158875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02061845 174.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02061846 174.33161926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02061847 174.33163452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02061848 174.33164978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02061849 174.33168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02061850 174.33168030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02061851 174.33169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02061852 174.33169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02061853 174.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02061854 174.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02061855 174.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02061856 174.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02061857 174.33177185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02061858 174.33177185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02061859 174.33180237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02061860 174.33180237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02061861 174.33183289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02061862 174.33183289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02061863 174.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02061864 174.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02061865 174.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02061866 174.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02061867 174.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02061868 174.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02061869 174.33192444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02061870 174.33193970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02061871 174.33195496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02061872 174.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02061873 174.33200073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02061874 174.33200073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02061875 174.33201599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02061876 174.33201599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02061877 174.33204651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02061878 174.33204651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02061879 174.33207703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02061880 174.33207703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02061881 174.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02061882 174.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02061883 174.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02061884 174.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02061885 174.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02061886 174.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02061887 174.33216858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02061888 174.33216858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02061889 174.33219910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02061890 174.33219910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02061891 174.33222961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02061892 174.33222961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02061893 174.33224487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02061894 174.33226013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02061895 174.33229065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02061896 174.33229065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02061897 174.33232117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02061898 174.33232117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02061899 174.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02061900 174.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02061901 174.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02061902 174.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02061903 174.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02061904 174.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02061905 174.33241272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02061906 174.33241272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02061907 174.33244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02061908 174.33244324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02061909 174.33247375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02061910 174.33247375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02061911 174.33248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02061912 174.33248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02061913 174.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02061914 174.33253479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02061915 174.33255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02061916 174.33255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02061917 174.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02061918 174.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02061919 174.33261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02061920 174.33261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02061921 174.33262634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02061922 174.33262634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02061923 174.33265686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02061924 174.33265686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02061925 174.33268738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02061926 174.33268738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02061927 174.33271790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02061928 174.33271790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02061929 174.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02061930 174.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02061931 174.33276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02061932 174.33276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02061933 174.33279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02061934 174.33279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02061935 174.33280945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02061936 174.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02061937 174.33283997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02061938 174.33285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02061939 174.33287048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02061940 174.33287048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02061941 174.33290100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02061942 174.33290100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02061943 174.33293152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02061944 174.33293152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02061945 174.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02061946 174.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02061947 174.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02061948 174.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02061949 174.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02061950 174.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02061951 174.33302307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02061952 174.33302307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02061953 174.33305359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02061954 174.33305359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02061955 174.33308411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02061956 174.33308411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02061957 174.33311462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02061958 174.33311462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02061959 174.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02061960 174.33314514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02061961 174.33316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02061962 174.33317566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02061963 174.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02061964 174.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02061965 174.33322144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02061966 174.33322144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02061967 174.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02061968 174.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02061969 174.33326721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02061970 174.33326721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02061971 174.33329773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02061972 174.33329773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02061973 174.33332825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02061974 174.33332825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02061975 174.33334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02061976 174.33334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02061977 174.33337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02061978 174.33337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02061979 174.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02061980 174.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02061981 174.33341980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02061982 174.33343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02061983 174.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02061984 174.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02061985 174.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02061986 174.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02061987 174.33351135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02061988 174.33351135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02061989 174.33354187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02061990 174.33354187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02061991 174.33357239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02061992 174.33357239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02061993 174.33358765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02061994 174.33358765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02061995 174.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02061996 174.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02061997 174.33364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02061998 174.33364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02061999 174.33366394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02062000 174.33366394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02062001 174.33369446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02062002 174.33369446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02062003 174.33372498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02062004 174.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02062005 174.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02062006 174.33375549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02062007 174.33378601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02062008 174.33378601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02062009 174.33381653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02062010 174.33381653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02062011 174.33383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02062012 174.33383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02062013 174.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02062014 174.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02062015 174.33389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02062016 174.33389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02062017 174.33390808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02062018 174.33390808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02062019 174.33393860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02062020 174.33393860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02062021 174.33396912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02062022 174.33396912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02062023 174.33398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02062024 174.33398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02062025 174.33401489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02062026 174.33403015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02062027 174.33404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02062028 174.33406067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02062029 174.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02062030 174.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02062031 174.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02062032 174.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02062033 174.33413696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02062034 174.33413696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02062035 174.33415222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02062036 174.33415222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02062037 174.33418274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02062038 174.33418274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02062039 174.33421326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02062040 174.33421326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02062041 174.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02062042 174.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02062043 174.33425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02062044 174.33425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02062045 174.33430481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02062046 174.33430481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02062047 174.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02062048 174.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02062049 174.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02062050 174.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02062051 174.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02062052 174.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02062053 174.33439636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02062054 174.33439636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02062055 174.33444214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02062056 174.33444214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02062057 174.33445740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02062058 174.33445740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02062059 174.33448792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02062060 174.33448792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02062061 174.33451843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02062062 174.33451843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02062063 174.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02062064 174.33454895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02062065 174.33457947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02062066 174.33457947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02062067 174.33460999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02062068 174.33460999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02062069 174.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02062070 174.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02062071 174.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02062072 174.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02062073 174.33468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02062074 174.33470154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02062075 174.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02062076 174.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02062077 174.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02062078 174.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02062079 174.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02062080 174.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02062081 174.33479309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02062082 174.33479309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02062083 174.33482361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02062084 174.33482361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02062085 174.33485413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02062086 174.33485413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02062087 174.33488464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02062088 174.33488464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02062089 174.33491516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02062090 174.33491516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02062091 174.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02062092 174.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02062093 174.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02062094 174.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02062095 174.33499146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02062096 174.33500671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02062097 174.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02062098 174.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02062099 174.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02062100 174.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02062101 174.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02062102 174.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02062103 174.33509827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02062104 174.33509827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02062105 174.33512878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02062106 174.33512878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02062107 174.33515930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02062108 174.33517456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02062109 174.33518982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02062110 174.33518982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02062111 174.33522034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02062112 174.33522034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02062113 174.33525085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02062114 174.33525085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02062115 174.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02062116 174.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02062117 174.33529663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02062118 174.33531189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02062119 174.33532715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02062120 174.33532715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02062121 174.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02062122 174.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02062123 174.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02062124 174.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02062125 174.33541870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02062126 174.33541870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02062127 174.33543396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02062128 174.33543396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02062129 174.33546448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02062130 174.33547974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02062131 174.33549500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02062132 174.33549500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02062133 174.33552551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02062134 174.33552551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02062135 174.33555603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02062136 174.33557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02062137 174.33558655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02062138 174.33558655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02062139 174.33561707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02062140 174.33561707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02062141 174.33564758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02062142 174.33564758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02062143 174.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02062144 174.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02062145 174.33570862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02062146 174.33570862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02062147 174.33572388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02062148 174.33572388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02062149 174.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02062150 174.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02062151 174.33578491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02062152 174.33580017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02062153 174.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02062154 174.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02062155 174.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02062156 174.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02062157 174.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02062158 174.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02062159 174.33589172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02062160 174.33589172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02062161 174.33592224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02062162 174.33592224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02062163 174.33595276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02062164 174.33595276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02062165 174.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02062166 174.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02062167 174.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02062168 174.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02062169 174.33602905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02062170 174.33602905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02062171 174.33604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02062172 174.33604431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02062173 174.33607483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02062174 174.33607483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02062175 174.33610535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02062176 174.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02062177 174.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02062178 174.33613586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02062179 174.33616638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02062180 174.33616638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02062181 174.33619690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02062182 174.33619690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02062183 174.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02062184 174.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02062185 174.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02062186 174.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02062187 174.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02062188 174.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02062189 174.33628845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02062190 174.33628845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02062191 174.33631897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02062192 174.33631897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02062193 174.33634949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02062194 174.33634949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02062195 174.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02062196 174.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02062197 174.33639526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02062198 174.33641052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02062199 174.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02062200 174.33644104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02062201 174.33645630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02062202 174.33645630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02062203 174.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02062204 174.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02062205 174.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02062206 174.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02062207 174.33653259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02062208 174.33653259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02062209 174.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02062210 174.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02062211 174.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02062212 174.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02062213 174.33662415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02062214 174.33662415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02062215 174.33665466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02062216 174.33665466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02062217 174.33668518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02062218 174.33668518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02062219 174.33670044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02062220 174.33670044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02062221 174.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02062222 174.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02062223 174.33676147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02062224 174.33676147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02062225 174.33677673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02062226 174.33677673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02062227 174.33680725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02062228 174.33682251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02062229 174.33683777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02062230 174.33683777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02062231 174.33686829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02062232 174.33686829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02062233 174.33689880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02062234 174.33689880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02062235 174.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02062236 174.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02062237 174.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02062238 174.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02062239 174.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02062240 174.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02062241 174.33700562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02062242 174.33700562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02062243 174.33702087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02062244 174.33702087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02062245 174.33705139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02062246 174.33705139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02062247 174.33708191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02062248 174.33708191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02062249 174.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02062250 174.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02062251 174.33712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02062252 174.33714294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02062253 174.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02062254 174.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02062255 174.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02062256 174.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02062257 174.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02062258 174.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02062259 174.33723450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02062260 174.33723450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02062261 174.33726501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02062262 174.33726501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02062263 174.33729553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02062264 174.33729553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02062265 174.33731079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02062266 174.33731079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02062267 174.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02062268 174.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02062269 174.33737183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02062270 174.33737183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02062271 174.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02062272 174.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02062273 174.33741760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02062274 174.33743286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02062275 174.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02062276 174.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02062277 174.33747864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02062278 174.33747864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02062279 174.33750916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02062280 174.33750916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02062281 174.33753967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02062282 174.33753967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02062283 174.33755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02062284 174.33755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02062285 174.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02062286 174.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02062287 174.33761597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02062288 174.33761597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02062289 174.33763123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02062290 174.33763123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02062291 174.33766174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02062292 174.33766174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02062293 174.33769226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02062294 174.33769226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02062295 174.33772278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02062296 174.33772278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02062297 174.33773804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02062298 174.33775330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02062299 174.33778381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02062300 174.33778381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02062301 174.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02062302 174.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02062303 174.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02062304 174.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02062305 174.33786011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02062306 174.33786011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02062307 174.33787537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02062308 174.33787537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02062309 174.33790588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02062310 174.33790588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02062311 174.33793640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02062312 174.33793640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02062313 174.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02062314 174.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02062315 174.33798218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02062316 174.33798218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02062317 174.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02062318 174.33802795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02062319 174.33802795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02062320 174.33804321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02062321 174.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02062322 174.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02062323 174.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02062324 174.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02062325 174.33811951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02062326 174.33811951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02062327 174.33815002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02062328 174.33815002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02062329 174.33818054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02062330 174.33818054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02062331 174.33819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02062332 174.33819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02062333 174.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02062334 174.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02062335 174.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02062336 174.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02062337 174.33827209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02062338 174.33827209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02062339 174.33830261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02062340 174.33830261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02062341 174.33833313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02062342 174.33834839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02062343 174.33834839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02062344 174.33836365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02062345 174.33839417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02062346 174.33839417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02062347 174.33842468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02062348 174.33842468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02062349 174.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02062350 174.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02062351 174.33847046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02062352 174.33847046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02062353 174.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02062354 174.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02062355 174.33851624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02062356 174.33851624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02062357 174.33854675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02062358 174.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02062359 174.33859253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02062360 174.33859253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02062361 174.33860779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02062362 174.33860779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02062363 174.33863831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02062364 174.33863831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02062365 174.33866882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02062366 174.33866882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02062367 174.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02062368 174.33869934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02062369 174.33872986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02062370 174.33872986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02062371 174.33874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02062372 174.33874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02062373 174.33877563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02062374 174.33877563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02062375 174.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02062376 174.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02062377 174.33882141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02062378 174.33882141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02062379 174.33885193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02062380 174.33885193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02062381 174.33888245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02062382 174.33888245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02062383 174.33891296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02062384 174.33891296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02062385 174.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02062386 174.33894348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02062387 174.33897400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02062388 174.33897400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02062389 174.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02062390 174.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02062391 174.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02062392 174.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02062393 174.33905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02062394 174.33905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02062395 174.33906555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02062396 174.33906555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02062397 174.33909607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02062398 174.33909607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02062399 174.33912659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02062400 174.33912659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02062401 174.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02062402 174.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02062403 174.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02062404 174.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02062405 174.33920288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02062406 174.33921814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02062407 174.33921814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02062408 174.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02062409 174.33926392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02062410 174.33926392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02062411 174.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02062412 174.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02062413 174.33930969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02062414 174.33930969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02062415 174.33934021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02062416 174.33934021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02062417 174.33937073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02062418 174.33937073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02062419 174.33938599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02062420 174.33938599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02062421 174.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02062422 174.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02062423 174.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02062424 174.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02062425 174.33946228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02062426 174.33946228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02062427 174.33952332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02062428 174.33952332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02062429 174.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02062430 174.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02062431 174.33956909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02062432 174.33956909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02062433 174.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02062434 174.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02062435 174.33961487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02062436 174.33963013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02062437 174.33964539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02062438 174.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02062439 174.33969116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02062440 174.33969116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02062441 174.33970642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02062442 174.33970642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02062443 174.33973694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02062444 174.33973694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02062445 174.33976746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02062446 174.33976746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02062447 174.33978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02062448 174.33978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02062449 174.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02062450 174.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02062451 174.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02062452 174.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02062453 174.33985901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02062454 174.33987427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02062455 174.33988953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02062456 174.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02062457 174.33992004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02062458 174.33993530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02062459 174.33995056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02062460 174.33995056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02062461 174.33998108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02062462 174.33998108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02062463 174.34001160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02062464 174.34001160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02062465 174.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02062466 174.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02062467 174.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02062468 174.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02062469 174.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02062470 174.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02062471 174.34010315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02062472 174.34010315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02062473 174.34013367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02062474 174.34013367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02062475 174.34016418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02062476 174.34016418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02062477 174.34017944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02062478 174.34019470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02062479 174.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02062480 174.34022522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02062481 174.34025574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02062482 174.34025574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02062483 174.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02062484 174.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02062485 174.34030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02062486 174.34030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02062487 174.34033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02062488 174.34033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02062489 174.34034729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02062490 174.34034729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02062491 174.34037781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02062492 174.34037781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02062493 174.34040833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02062494 174.34040833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02062495 174.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02062496 174.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02062497 174.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02062498 174.34046936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02062499 174.34048462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02062500 174.34049988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02062501 174.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02062502 174.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02062503 174.34054565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02062504 174.34054565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02062505 174.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02062506 174.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02062507 174.34059143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02062508 174.34060669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02062509 174.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02062510 174.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02062511 174.34065247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02062512 174.34065247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02062513 174.34068298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02062514 174.34068298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02062515 174.34071350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02062516 174.34071350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02062517 174.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02062518 174.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02062519 174.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02062520 174.34077454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02062521 174.34080505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02062522 174.34080505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02062523 174.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02062524 174.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02062525 174.34085083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02062526 174.34085083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02062527 174.34088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02062528 174.34088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02062529 174.34089661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02062530 174.34089661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02062531 174.34092712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02062532 174.34092712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02062533 174.34095764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02062534 174.34095764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02062535 174.34097290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02062536 174.34098816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02062537 174.34101868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02062538 174.34101868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02062539 174.34104919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02062540 174.34104919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02062541 174.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02062542 174.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02062543 174.34109497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02062544 174.34111023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02062545 174.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02062546 174.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02062547 174.34115601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02062548 174.34115601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02062549 174.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02062550 174.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02062551 174.34121704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02062552 174.34121704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02062553 174.34123230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02062554 174.34123230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02062555 174.34126282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02062556 174.34127808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02062557 174.34129333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02062558 174.34129333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02062559 174.34132385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02062560 174.34132385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02062561 174.34135437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02062562 174.34135437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02062563 174.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02062564 174.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02062565 174.34140015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02062566 174.34141541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02062567 174.34144592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02062568 174.34144592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02062569 174.34146118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02062570 174.34146118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02062571 174.34149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02062572 174.34149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02062573 174.34152222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02062574 174.34152222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02062575 174.34155273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02062576 174.34155273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02062577 174.34158325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02062578 174.34158325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02062579 174.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02062580 174.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02062581 174.34162903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02062582 174.34162903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02062583 174.34165955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02062584 174.34165955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02062585 174.34169006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02062586 174.34169006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02062587 174.34172058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02062588 174.34172058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02062589 174.34175110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02062590 174.34175110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02062591 174.34176636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02062592 174.34176636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02062593 174.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02062594 174.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02062595 174.34182739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02062596 174.34184265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02062597 174.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02062598 174.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02062599 174.34188843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02062600 174.34188843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02062601 174.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02062602 174.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02062603 174.34193420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02062604 174.34193420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02062605 174.34196472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02062606 174.34196472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02062607 174.34199524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02062608 174.34201050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02062609 174.34202576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02062610 174.34202576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02062611 174.34205627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02062612 174.34205627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02062613 174.34208679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02062614 174.34208679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02062615 174.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02062616 174.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02062617 174.34213257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02062618 174.34214783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02062619 174.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02062620 174.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02062621 174.34219360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02062622 174.34219360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02062623 174.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02062624 174.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02062625 174.34223938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02062626 174.34223938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02062627 174.34226990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02062628 174.34226990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02062629 174.34230042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02062630 174.34231567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02062631 174.34233093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02062632 174.34233093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02062633 174.34236145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02062634 174.34236145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02062635 174.34239197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02062636 174.34239197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02062637 174.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02062638 174.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02062639 174.34243774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02062640 174.34245300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02062641 174.34248352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02062642 174.34248352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02062643 174.34249878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02062644 174.34249878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02062645 174.34252930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02062646 174.34254456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02062647 174.34255981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02062648 174.34255981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02062649 174.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02062650 174.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02062651 174.34262085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02062652 174.34262085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02062653 174.34263611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02062654 174.34263611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02062655 174.34266663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02062656 174.34266663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02062657 174.34269714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02062658 174.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02062659 174.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02062660 174.34272766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02062661 174.34275818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02062662 174.34275818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02062663 174.34278870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02062664 174.34278870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02062665 174.34280396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02062666 174.34280396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02062667 174.34283447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02062668 174.34283447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02062669 174.34286499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02062670 174.34286499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02062671 174.34288025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02062672 174.34288025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02062673 174.34291077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02062674 174.34291077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02062675 174.34294128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02062676 174.34294128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02062677 174.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02062678 174.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02062679 174.34298706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02062680 174.34298706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02062681 174.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02062682 174.34303284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02062683 174.34303284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02062684 174.34304810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02062685 174.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02062686 174.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02062687 174.34310913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02062688 174.34310913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02062689 174.34312439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02062690 174.34312439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02062691 174.34315491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02062692 174.34315491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02062693 174.34318542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02062694 174.34318542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02062695 174.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02062696 174.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02062697 174.34323120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02062698 174.34323120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02062699 174.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02062700 174.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02062701 174.34327698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02062702 174.34327698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02062703 174.34330750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02062704 174.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02062705 174.34333801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02062706 174.34335327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02062707 174.34336853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02062708 174.34336853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02062709 174.34339905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02062710 174.34339905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02062711 174.34342957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02062712 174.34342957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02062713 174.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02062714 174.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02062715 174.34347534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02062716 174.34347534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02062717 174.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02062718 174.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02062719 174.34352112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02062720 174.34352112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02062721 174.34355164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02062722 174.34355164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02062723 174.34358215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02062724 174.34358215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02062725 174.34359741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02062726 174.34361267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02062727 174.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02062728 174.34364319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02062729 174.34367371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02062730 174.34367371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02062731 174.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02062732 174.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02062733 174.34371948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02062734 174.34371948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02062735 174.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02062736 174.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02062737 174.34376526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02062738 174.34376526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02062739 174.34379578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02062740 174.34379578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02062741 174.34382629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02062742 174.34382629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02062743 174.34384155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02062744 174.34384155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02062745 174.34387207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02062746 174.34387207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02062747 174.34390259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02062748 174.34391785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02062749 174.34391785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02062750 174.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02062751 174.34396362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02062752 174.34396362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02062753 174.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02062754 174.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02062755 174.34400940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02062756 174.34400940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02062757 174.34403992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02062758 174.34403992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02062759 174.34407043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02062760 174.34407043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02062761 174.34408569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02062762 174.34408569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02062763 174.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02062764 174.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02062765 174.34414673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02062766 174.34414673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02062767 174.34416199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02062768 174.34416199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02062769 174.34419250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02062770 174.34420776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02062771 174.34422302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02062772 174.34422302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02062773 174.34425354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02062774 174.34425354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02062775 174.34428406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02062776 174.34428406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02062777 174.34431458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02062778 174.34431458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02062779 174.34432983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02062780 174.34432983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02062781 174.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02062782 174.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02062783 174.34439087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02062784 174.34439087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02062785 174.34440613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02062786 174.34440613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02062787 174.34443665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02062788 174.34443665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02062789 174.34446716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02062790 174.34446716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02062791 174.34448242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02062792 174.34449768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02062793 174.34452820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02062794 174.34452820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02062795 174.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02062796 174.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02062797 174.34457397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02062798 174.34457397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02062799 174.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02062800 174.34461975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02062801 174.34461975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02062802 174.34463501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02062803 174.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02062804 174.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02062805 174.34469604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02062806 174.34469604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02062807 174.34471130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02062808 174.34471130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02062809 174.34474182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02062810 174.34474182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02062811 174.34477234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02062812 174.34477234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02062813 174.34478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02062814 174.34478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02062815 174.34481812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02062816 174.34481812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02062817 174.34484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02062818 174.34484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02062819 174.34486389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02062820 174.34486389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02062821 174.34489441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02062822 174.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02062823 174.34492493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02062824 174.34494019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02062825 174.34495544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02062826 174.34495544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02062827 174.34498596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02062828 174.34498596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02062829 174.34501648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02062830 174.34501648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02062831 174.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02062832 174.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02062833 174.34506226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02062834 174.34506226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02062835 174.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02062836 174.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02062837 174.34510803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02062838 174.34510803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02062839 174.34513855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02062840 174.34513855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02062841 174.34516907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02062842 174.34516907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02062843 174.34518433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02062844 174.34518433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02062845 174.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02062846 174.34523010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02062847 174.34524536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02062848 174.34526062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02062849 174.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02062850 174.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02062851 174.34530640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02062852 174.34530640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02062853 174.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02062854 174.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02062855 174.34535217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02062856 174.34535217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02062857 174.34538269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02062858 174.34538269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02062859 174.34541321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02062860 174.34541321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02062861 174.34542847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02062862 174.34542847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02062863 174.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02062864 174.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02062865 174.34548950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02062866 174.34550476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02062867 174.34550476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02062868 174.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02062869 174.34555054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02062870 174.34555054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02062871 174.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02062872 174.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02062873 174.34559631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02062874 174.34559631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02062875 174.34562683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02062876 174.34562683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02062877 174.34565735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02062878 174.34565735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02062879 174.34567261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02062880 174.34567261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02062881 174.34570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02062882 174.34570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02062883 174.34573364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02062884 174.34573364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02062885 174.34574890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02062886 174.34574890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02062887 174.34577942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02062888 174.34577942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02062889 174.34580994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02062890 174.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02062891 174.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02062892 174.34584045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02062893 174.34587097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02062894 174.34587097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02062895 174.34590149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02062896 174.34590149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02062897 174.34591675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02062898 174.34591675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02062899 174.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02062900 174.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02062901 174.34597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02062902 174.34597778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02062903 174.34599304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02062904 174.34599304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02062905 174.34602356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02062906 174.34602356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02062907 174.34605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02062908 174.34605408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02062909 174.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02062910 174.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02062911 174.34609985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02062912 174.34611511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02062913 174.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02062914 174.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02062915 174.34616089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02062916 174.34616089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02062917 174.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02062918 174.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02062919 174.34622192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02062920 174.34622192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02062921 174.34623718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02062922 174.34623718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02062923 174.34626770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02062924 174.34626770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02062925 174.34629822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02062926 174.34629822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02062927 174.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02062928 174.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02062929 174.34634399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02062930 174.34634399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02062931 174.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02062932 174.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02062933 174.34638977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02062934 174.34640503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02062935 174.34642029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02062936 174.34643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02062937 174.34645081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02062938 174.34645081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02062939 174.34648132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02062940 174.34648132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02062941 174.34651184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02062942 174.34651184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02062943 174.34652710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02062944 174.34654236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02062945 174.34657288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02062946 174.34657288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02062947 174.34660339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02062948 174.34660339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02062949 174.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02062950 174.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02062951 174.34664917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02062952 174.34664917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02062953 174.34667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02062954 174.34669495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02062955 174.34671021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02062956 174.34671021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02062957 174.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02062958 174.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02062959 174.34677124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02062960 174.34677124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02062961 174.34678650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02062962 174.34678650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02062963 174.34681702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02062964 174.34681702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02062965 174.34684753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02062966 174.34684753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02062967 174.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02062968 174.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02062969 174.34689331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02062970 174.34690857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02062971 174.34692383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02062972 174.34692383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02062973 174.34695435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02062974 174.34695435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02062975 174.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02062976 174.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02062977 174.34701538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02062978 174.34701538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02062979 174.34703064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02062980 174.34704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02062981 174.34707642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02062982 174.34707642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02062983 174.34709167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02062984 174.34709167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02062985 174.34712219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02062986 174.34712219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02062987 174.34715271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02062988 174.34715271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02062989 174.34716797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02062990 174.34718323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02062991 174.34719849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02062992 174.34721375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02062993 174.34724426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02062994 174.34724426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02062995 174.34725952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02062996 174.34725952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02062997 174.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02062998 174.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02062999 174.34732056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02063000 174.34732056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02063001 174.34733582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02063002 174.34733582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02063003 174.34736633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02063004 174.34736633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02063005 174.34739685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02063006 174.34739685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02063007 174.34741211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02063008 174.34741211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02063009 174.34744263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02063010 174.34745789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02063011 174.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02063012 174.34748840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02063013 174.34750366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02063014 174.34750366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02063015 174.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02063016 174.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02063017 174.34756470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02063018 174.34756470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02063019 174.34757996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02063020 174.34757996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02063021 174.34761047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02063022 174.34761047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02063023 174.34764099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02063024 174.34764099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02063025 174.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02063026 174.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02063027 174.34768677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02063028 174.34768677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02063029 174.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02063030 174.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02063031 174.34773254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02063032 174.34773254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02063033 174.34776306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02063034 174.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02063035 174.34779358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02063036 174.34780884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02063037 174.34782410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02063038 174.34782410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02063039 174.34785461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02063040 174.34785461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02063041 174.34788513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02063042 174.34788513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02063043 174.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02063044 174.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02063045 174.34793091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02063046 174.34793091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02063047 174.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02063048 174.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02063049 174.34797668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02063050 174.34799194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02063051 174.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02063052 174.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02063053 174.34803772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02063054 174.34803772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02063055 174.34806824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02063056 174.34806824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02063057 174.34809875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02063058 174.34809875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02063059 174.34811401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02063060 174.34811401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02063061 174.34814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02063062 174.34815979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02063063 174.34819031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02063064 174.34819031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02063065 174.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02063066 174.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02063067 174.34823608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02063068 174.34823608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02063069 174.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02063070 174.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02063071 174.34828186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02063072 174.34829712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02063073 174.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02063074 174.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02063075 174.34835815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02063076 174.34835815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02063077 174.34837341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02063078 174.34837341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02063079 174.34840393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02063080 174.34840393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02063081 174.34843445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02063082 174.34843445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02063083 174.34846497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02063084 174.34846497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02063085 174.34849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02063086 174.34849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02063087 174.34852600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02063088 174.34852600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02063089 174.34854126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02063090 174.34855652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02063091 174.34858704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02063092 174.34858704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02063093 174.34860229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02063094 174.34860229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02063095 174.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02063096 174.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02063097 174.34866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02063098 174.34866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02063099 174.34867859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02063100 174.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02063101 174.34872437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02063102 174.34872437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02063103 174.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02063104 174.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02063105 174.34877014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02063106 174.34877014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02063107 174.34880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02063108 174.34880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02063109 174.34883118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02063110 174.34883118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02063111 174.34886169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02063112 174.34886169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02063113 174.34889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02063114 174.34889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02063115 174.34892273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02063116 174.34892273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02063117 174.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02063118 174.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02063119 174.34896851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02063120 174.34898376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02063121 174.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02063122 174.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02063123 174.34902954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02063124 174.34902954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02063125 174.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02063126 174.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02063127 174.34907532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02063128 174.34907532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02063129 174.34910583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02063130 174.34910583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02063131 174.34913635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02063132 174.34915161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02063133 174.34916687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02063134 174.34916687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02063135 174.34919739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02063136 174.34919739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02063137 174.34922791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02063138 174.34922791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02063139 174.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02063140 174.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02063141 174.34927368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02063142 174.34928894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02063143 174.34931946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02063144 174.34931946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02063145 174.34933472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02063146 174.34933472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02063147 174.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02063148 174.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02063149 174.34939575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02063150 174.34939575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02063151 174.34941101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02063152 174.34942627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02063153 174.34945679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02063154 174.34945679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02063155 174.34947205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02063156 174.34947205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02063157 174.34950256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02063158 174.34950256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02063159 174.34953308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02063160 174.34953308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02063161 174.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02063162 174.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02063163 174.34957886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02063164 174.34959412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02063165 174.34962463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02063166 174.34962463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02063167 174.34963989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02063168 174.34963989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02063169 174.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02063170 174.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02063171 174.34970093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02063172 174.34970093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02063173 174.34971619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02063174 174.34973145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02063175 174.34976196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02063176 174.34976196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02063177 174.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02063178 174.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02063179 174.34980774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02063180 174.34980774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02063181 174.34983826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02063182 174.34983826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02063183 174.34986877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02063184 174.34986877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02063185 174.34988403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02063186 174.34989929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02063187 174.34992981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02063188 174.34992981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02063189 174.34994507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02063190 174.34994507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02063191 174.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02063192 174.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02063193 174.35000610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02063194 174.35000610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02063195 174.35002136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02063196 174.35003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02063197 174.35006714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02063198 174.35006714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02063199 174.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02063200 174.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02063201 174.35011292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02063202 174.35011292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02063203 174.35014343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02063204 174.35014343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02063205 174.35017395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02063206 174.35018921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02063207 174.35018921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02063208 174.35020447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02063209 174.35023499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02063210 174.35023499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02063211 174.35026550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02063212 174.35026550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02063213 174.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02063214 174.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02063215 174.35031128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02063216 174.35031128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02063217 174.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02063218 174.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02063219 174.35037231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02063220 174.35037231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02063221 174.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02063222 174.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02063223 174.35041809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02063224 174.35041809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02063225 174.35044861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02063226 174.35044861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02063227 174.35047913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02063228 174.35049438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02063229 174.35050964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02063230 174.35050964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02063231 174.35054016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02063232 174.35054016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02063233 174.35057068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02063234 174.35057068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02063235 174.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02063236 174.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02063237 174.35061646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02063238 174.35061646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02063239 174.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02063240 174.35066223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02063241 174.35067749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02063242 174.35067749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02063243 174.35070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02063244 174.35070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02063245 174.35073853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02063246 174.35073853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02063247 174.35075378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02063248 174.35075378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02063249 174.35078430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02063250 174.35079956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02063251 174.35081482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02063252 174.35081482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02063253 174.35084534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02063254 174.35084534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02063255 174.35087585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02063256 174.35087585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02063257 174.35090637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02063258 174.35090637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02063259 174.35092163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02063260 174.35092163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02063261 174.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02063262 174.35096741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02063263 174.35098267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02063264 174.35098267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02063265 174.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02063266 174.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02063267 174.35104370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02063268 174.35104370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02063269 174.35105896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02063270 174.35105896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02063271 174.35108948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02063272 174.35110474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02063273 174.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02063274 174.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02063275 174.35115051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02063276 174.35115051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02063277 174.35118103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02063278 174.35118103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02063279 174.35121155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02063280 174.35121155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02063281 174.35122681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02063282 174.35124207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02063283 174.35127258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02063284 174.35127258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02063285 174.35130310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02063286 174.35130310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02063287 174.35131836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02063288 174.35131836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02063289 174.35134888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02063290 174.35134888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02063291 174.35137939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02063292 174.35137939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02063293 174.35139465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02063294 174.35140991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02063295 174.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02063296 174.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02063297 174.35145569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02063298 174.35145569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02063299 174.35148621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02063300 174.35148621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02063301 174.35151672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02063302 174.35151672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02063303 174.35153198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02063304 174.35154724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02063305 174.35157776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02063306 174.35157776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02063307 174.35160828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02063308 174.35160828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02063309 174.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02063310 174.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02063311 174.35165405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02063312 174.35165405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02063313 174.35168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02063314 174.35169983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02063315 174.35171509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02063316 174.35171509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02063317 174.35174561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02063318 174.35174561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02063319 174.35177612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02063320 174.35177612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02063321 174.35179138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02063322 174.35179138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02063323 174.35182190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02063324 174.35182190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02063325 174.35185242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02063326 174.35185242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02063327 174.35188293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02063328 174.35188293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02063329 174.35191345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02063330 174.35191345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02063331 174.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02063332 174.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02063333 174.35195923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02063334 174.35195923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02063335 174.35198975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02063336 174.35200500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02063337 174.35202026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02063338 174.35202026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02063339 174.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02063340 174.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02063341 174.35208130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02063342 174.35208130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02063343 174.35209656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02063344 174.35209656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02063345 174.35212708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02063346 174.35214233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02063347 174.35217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02063348 174.35217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02063349 174.35218811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02063350 174.35218811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02063351 174.35221863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02063352 174.35221863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02063353 174.35224915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02063354 174.35224915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02063355 174.35226440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02063356 174.35226440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02063357 174.35229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02063358 174.35229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02063359 174.35232544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02063360 174.35232544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02063361 174.35234070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02063362 174.35235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02063363 174.35237122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02063364 174.35238647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02063365 174.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02063366 174.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02063367 174.35243225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02063368 174.35243225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02063369 174.35246277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02063370 174.35246277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02063371 174.35249329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02063372 174.35249329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02063373 174.35250854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02063374 174.35250854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02063375 174.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02063376 174.35255432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02063377 174.35256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02063378 174.35256958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02063379 174.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02063380 174.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02063381 174.35263062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02063382 174.35263062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02063383 174.35264587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02063384 174.35264587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02063385 174.35267639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02063386 174.35267639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02063387 174.35270691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02063388 174.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02063389 174.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02063390 174.35273743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02063391 174.35276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02063392 174.35276794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02063393 174.35279846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02063394 174.35279846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02063395 174.35281372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02063396 174.35281372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02063397 174.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02063398 174.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02063399 174.35287476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02063400 174.35287476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02063401 174.35289001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02063402 174.35290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02063403 174.35293579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02063404 174.35293579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02063405 174.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02063406 174.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02063407 174.35298157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02063408 174.35298157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02063409 174.35301208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02063410 174.35301208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02063411 174.35304260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02063412 174.35304260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02063413 174.35307312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02063414 174.35307312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02063415 174.35310364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02063416 174.35310364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02063417 174.35311890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02063418 174.35311890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02063419 174.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02063420 174.35316467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02063421 174.35317993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02063422 174.35319519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02063423 174.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02063424 174.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02063425 174.35324097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02063426 174.35324097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02063427 174.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02063428 174.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02063429 174.35328674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02063430 174.35328674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02063431 174.35331726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02063432 174.35331726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02063433 174.35334778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02063434 174.35334778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02063435 174.35336304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02063436 174.35336304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02063437 174.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02063438 174.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02063439 174.35342407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02063440 174.35342407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02063441 174.35343933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02063442 174.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02063443 174.35346985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02063444 174.35348511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02063445 174.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02063446 174.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02063447 174.35353088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02063448 174.35353088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02063449 174.35356140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02063450 174.35357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02063451 174.35359192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02063452 174.35360718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02063453 174.35362244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02063454 174.35362244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02063455 174.35365295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02063456 174.35365295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02063457 174.35368347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02063458 174.35368347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02063459 174.35369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02063460 174.35369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02063461 174.35372925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02063462 174.35372925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02063463 174.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02063464 174.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02063465 174.35377502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02063466 174.35377502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02063467 174.35380554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02063468 174.35380554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02063469 174.35383606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02063470 174.35383606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02063471 174.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02063472 174.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02063473 174.35391235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02063474 174.35391235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02063475 174.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02063476 174.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02063477 174.35397339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02063478 174.35398865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02063479 174.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02063480 174.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02063481 174.35403442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02063482 174.35403442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02063483 174.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02063484 174.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02063485 174.35408020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02063486 174.35408020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02063487 174.35411072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02063488 174.35411072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02063489 174.35414124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02063490 174.35414124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02063491 174.35415649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02063492 174.35415649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02063493 174.35418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02063494 174.35418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02063495 174.35421753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02063496 174.35421753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02063497 174.35423279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02063498 174.35423279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02063499 174.35426331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02063500 174.35427856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02063501 174.35429382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02063502 174.35430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02063503 174.35432434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02063504 174.35432434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02063505 174.35435486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02063506 174.35435486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02063507 174.35438538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02063508 174.35438538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02063509 174.35440063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02063510 174.35440063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02063511 174.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02063512 174.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02063513 174.35446167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02063514 174.35446167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02063515 174.35450745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02063516 174.35450745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02063517 174.35453796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02063518 174.35453796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02063519 174.35455322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02063520 174.35456848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02063521 174.35459900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02063522 174.35459900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02063523 174.35462952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02063524 174.35462952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02063525 174.35464478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02063526 174.35464478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02063527 174.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02063528 174.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02063529 174.35470581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02063530 174.35470581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02063531 174.35472107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02063532 174.35472107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02063533 174.35475159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02063534 174.35476685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02063535 174.35478210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02063536 174.35479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02063537 174.35481262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02063538 174.35481262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02063539 174.35484314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02063540 174.35484314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02063541 174.35487366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02063542 174.35487366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02063543 174.35488892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02063544 174.35488892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02063545 174.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02063546 174.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02063547 174.35494995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02063548 174.35494995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02063549 174.35496521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02063550 174.35496521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02063551 174.35499573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02063552 174.35499573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02063553 174.35502625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02063554 174.35502625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02063555 174.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02063556 174.35505676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02063557 174.35508728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02063558 174.35508728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02063559 174.35511780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02063560 174.35511780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02063561 174.35513306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02063562 174.35513306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02063563 174.35516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02063564 174.35516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02063565 174.35519409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02063566 174.35519409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02063567 174.35520935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02063568 174.35520935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02063569 174.35523987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02063570 174.35523987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02063571 174.35527039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02063572 174.35527039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02063573 174.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02063574 174.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02063575 174.35531616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02063576 174.35533142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02063577 174.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02063578 174.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02063579 174.35537720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02063580 174.35537720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02063581 174.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02063582 174.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02063583 174.35542297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02063584 174.35542297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02063585 174.35545349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02063586 174.35546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02063587 174.35548401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02063588 174.35549927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02063589 174.35551453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02063590 174.35551453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02063591 174.35554504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02063592 174.35554504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02063593 174.35557556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02063594 174.35557556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02063595 174.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02063596 174.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02063597 174.35562134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02063598 174.35563660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02063599 174.35566711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02063600 174.35566711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02063601 174.35568237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02063602 174.35568237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02063603 174.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02063604 174.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02063605 174.35574341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02063606 174.35574341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02063607 174.35575867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02063608 174.35577393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02063609 174.35580444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02063610 174.35580444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02063611 174.35581970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02063612 174.35581970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02063613 174.35585022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02063614 174.35585022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02063615 174.35588074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02063616 174.35588074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02063617 174.35591125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02063618 174.35591125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02063619 174.35592651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02063620 174.35594177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02063621 174.35597229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02063622 174.35597229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02063623 174.35598755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02063624 174.35598755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02063625 174.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02063626 174.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02063627 174.35604858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02063628 174.35604858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02063629 174.35606384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02063630 174.35607910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02063631 174.35610962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02063632 174.35610962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02063633 174.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02063634 174.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02063635 174.35615540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02063636 174.35615540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02063637 174.35618591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02063638 174.35618591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02063639 174.35621643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02063640 174.35621643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02063641 174.35624695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02063642 174.35624695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02063643 174.35627747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02063644 174.35627747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02063645 174.35630798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02063646 174.35630798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02063647 174.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02063648 174.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02063649 174.35635376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02063650 174.35635376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02063651 174.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02063652 174.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02063653 174.35641479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02063654 174.35641479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02063655 174.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02063656 174.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02063657 174.35646057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02063658 174.35646057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02063659 174.35649109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02063660 174.35649109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02063661 174.35652161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02063662 174.35652161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02063663 174.35653687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02063664 174.35655212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02063665 174.35658264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02063666 174.35658264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02063667 174.35661316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02063668 174.35661316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02063669 174.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02063670 174.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02063671 174.35665894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02063672 174.35665894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02063673 174.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02063674 174.35670471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02063675 174.35671997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02063676 174.35671997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02063677 174.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02063678 174.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02063679 174.35678101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02063680 174.35678101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02063681 174.35679626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02063682 174.35679626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02063683 174.35682678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02063684 174.35682678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02063685 174.35685730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02063686 174.35685730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02063687 174.35688782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02063688 174.35688782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02063689 174.35691833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02063690 174.35691833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02063691 174.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02063692 174.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02063693 174.35696411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02063694 174.35696411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02063695 174.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02063696 174.35700989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02063697 174.35702515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02063698 174.35702515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02063699 174.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02063700 174.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02063701 174.35708618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02063702 174.35708618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02063703 174.35710144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02063704 174.35710144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02063705 174.35713196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02063706 174.35713196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02063707 174.35716248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02063708 174.35716248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02063709 174.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02063710 174.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02063711 174.35720825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02063712 174.35720825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02063713 174.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02063714 174.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02063715 174.35725403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02063716 174.35725403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02063717 174.35728455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02063718 174.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02063719 174.35731506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02063720 174.35733032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02063721 174.35734558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02063722 174.35734558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02063723 174.35737610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02063724 174.35737610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02063725 174.35740662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02063726 174.35740662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02063727 174.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02063728 174.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02063729 174.35745239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02063730 174.35745239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02063731 174.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02063732 174.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02063733 174.35749817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02063734 174.35749817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02063735 174.35752869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02063736 174.35752869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02063737 174.35755920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02063738 174.35755920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02063739 174.35757446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02063740 174.35758972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02063741 174.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02063742 174.35762024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02063743 174.35765076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02063744 174.35765076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02063745 174.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02063746 174.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02063747 174.35769653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02063748 174.35769653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02063749 174.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02063750 174.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02063751 174.35774231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02063752 174.35774231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02063753 174.35777283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02063754 174.35777283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02063755 174.35780334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02063756 174.35780334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02063757 174.35781860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02063758 174.35781860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02063759 174.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02063760 174.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02063761 174.35787964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02063762 174.35789490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02063763 174.35789490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02063764 174.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02063765 174.35794067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02063766 174.35794067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02063767 174.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02063768 174.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02063769 174.35798645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02063770 174.35798645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02063771 174.35801697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02063772 174.35801697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02063773 174.35804749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02063774 174.35804749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02063775 174.35806274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02063776 174.35806274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02063777 174.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02063778 174.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02063779 174.35812378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02063780 174.35812378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02063781 174.35813904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02063782 174.35813904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02063783 174.35816956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02063784 174.35818481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02063785 174.35820007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02063786 174.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02063787 174.35823059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02063788 174.35823059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02063789 174.35826111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02063790 174.35826111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02063791 174.35829163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02063792 174.35829163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02063793 174.35830688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02063794 174.35830688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02063795 174.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02063796 174.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02063797 174.35836792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02063798 174.35836792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02063799 174.35838318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02063800 174.35838318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02063801 174.35841370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02063802 174.35841370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02063803 174.35844421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02063804 174.35844421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02063805 174.35847473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02063806 174.35847473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02063807 174.35850525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02063808 174.35850525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02063809 174.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02063810 174.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02063811 174.35855103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02063812 174.35856628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02063813 174.35859680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02063814 174.35859680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02063815 174.35861206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02063816 174.35861206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02063817 174.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02063818 174.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02063819 174.35867310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02063820 174.35867310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02063821 174.35868835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02063822 174.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02063823 174.35873413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02063824 174.35873413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02063825 174.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02063826 174.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02063827 174.35877991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02063828 174.35877991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02063829 174.35881042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02063830 174.35881042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02063831 174.35884094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02063832 174.35884094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02063833 174.35887146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02063834 174.35887146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02063835 174.35890198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02063836 174.35890198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02063837 174.35891724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02063838 174.35891724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02063839 174.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02063840 174.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02063841 174.35897827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02063842 174.35897827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02063843 174.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02063844 174.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02063845 174.35903931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02063846 174.35903931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02063847 174.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02063848 174.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02063849 174.35908508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02063850 174.35908508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02063851 174.35911560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02063852 174.35911560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02063853 174.35914612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02063854 174.35916138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02063855 174.35917664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02063856 174.35917664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02063857 174.35920715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02063858 174.35920715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02063859 174.35923767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02063860 174.35923767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02063861 174.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02063862 174.35926819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02063863 174.35928345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02063864 174.35929871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02063865 174.35932922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02063866 174.35932922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02063867 174.35934448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02063868 174.35934448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02063869 174.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02063870 174.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02063871 174.35940552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02063872 174.35940552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02063873 174.35942078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02063874 174.35942078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02063875 174.35945129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02063876 174.35945129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02063877 174.35948181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02063878 174.35948181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02063879 174.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02063880 174.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02063881 174.35952759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02063882 174.35952759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02063883 174.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02063884 174.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02063885 174.35957336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02063886 174.35958862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02063887 174.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02063888 174.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02063889 174.35963440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02063890 174.35963440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02063891 174.35966492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02063892 174.35966492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02063893 174.35969543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02063894 174.35969543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02063895 174.35972595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02063896 174.35972595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02063897 174.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02063898 174.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02063899 174.35977173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02063900 174.35977173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02063901 174.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02063902 174.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02063903 174.35981750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02063904 174.35981750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02063905 174.35984802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02063906 174.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02063907 174.35987854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02063908 174.35987854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02063909 174.35990906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02063910 174.35990906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02063911 174.35993958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02063912 174.35993958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02063913 174.35995483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02063914 174.35995483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02063915 174.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02063916 174.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02063917 174.36001587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02063918 174.36001587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02063919 174.36003113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02063920 174.36003113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02063921 174.36006165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02063922 174.36006165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02063923 174.36009216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02063924 174.36009216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02063925 174.36012268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02063926 174.36012268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02063927 174.36013794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02063928 174.36013794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02063929 174.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02063930 174.36018372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02063931 174.36019897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02063932 174.36019897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02063933 174.36022949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02063934 174.36022949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02063935 174.36026001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02063936 174.36026001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02063937 174.36027527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02063938 174.36027527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02063939 174.36030579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02063940 174.36030579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02063941 174.36033630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02063942 174.36033630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02063943 174.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02063944 174.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02063945 174.36038208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02063946 174.36039734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02063947 174.36042786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02063948 174.36042786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02063949 174.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02063950 174.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02063951 174.36050415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02063952 174.36051941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02063953 174.36053467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02063954 174.36053467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02063955 174.36056519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02063956 174.36056519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02063957 174.36059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02063958 174.36059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02063959 174.36061096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02063960 174.36061096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02063961 174.36064148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02063962 174.36065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02063963 174.36067200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02063964 174.36067200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02063965 174.36070251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02063966 174.36070251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02063967 174.36073303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02063968 174.36073303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02063969 174.36074829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02063970 174.36074829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02063971 174.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02063972 174.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02063973 174.36080933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02063974 174.36082458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02063975 174.36083984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02063976 174.36083984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02063977 174.36087036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02063978 174.36087036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02063979 174.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02063980 174.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02063981 174.36091614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02063982 174.36091614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02063983 174.36094666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02063984 174.36096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02063985 174.36099243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02063986 174.36099243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02063987 174.36100769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02063988 174.36100769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02063989 174.36103821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02063990 174.36103821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02063991 174.36106873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02063992 174.36106873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02063993 174.36112976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02063994 174.36112976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02063995 174.36116028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02063996 174.36116028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02063997 174.36120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02063998 174.36120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02063999 174.36122131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02064000 174.36122131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02064001 174.36125183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02064002 174.36125183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02064003 174.36128235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02064004 174.36129761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02064005 174.36131287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02064006 174.36131287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02064007 174.36134338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02064008 174.36134338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02064009 174.36137390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02064010 174.36137390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02064011 174.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02064012 174.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02064013 174.36141968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02064014 174.36143494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02064015 174.36146545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02064016 174.36146545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02064017 174.36148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02064018 174.36148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02064019 174.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02064020 174.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02064021 174.36154175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02064022 174.36154175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02064023 174.36155701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02064024 174.36155701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02064025 174.36158752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02064026 174.36160278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02064027 174.36161804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02064028 174.36161804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02064029 174.36164856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02064030 174.36164856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02064031 174.36167908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02064032 174.36167908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02064033 174.36170959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02064034 174.36170959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02064035 174.36172485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02064036 174.36174011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02064037 174.36177063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02064038 174.36177063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02064039 174.36178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02064040 174.36178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02064041 174.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02064042 174.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02064043 174.36184692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02064044 174.36184692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02064045 174.36186218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02064046 174.36186218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02064047 174.36189270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02064048 174.36190796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02064049 174.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02064050 174.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02064051 174.36195374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02064052 174.36195374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02064053 174.36198425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02064054 174.36198425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02064055 174.36201477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02064056 174.36201477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02064057 174.36203003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02064058 174.36204529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02064059 174.36207581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02064060 174.36207581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02064061 174.36210632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02064062 174.36210632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02064063 174.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02064064 174.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02064065 174.36215210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02064066 174.36215210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02064067 174.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02064068 174.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02064069 174.36219788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02064070 174.36221313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02064071 174.36224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02064072 174.36224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02064073 174.36225891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02064074 174.36225891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02064075 174.36228943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02064076 174.36228943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02064077 174.36231995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02064078 174.36231995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02064079 174.36233521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02064080 174.36235046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02064081 174.36238098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02064082 174.36238098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02064083 174.36241150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02064084 174.36241150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02064085 174.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02064086 174.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02064087 174.36245728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02064088 174.36245728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02064089 174.36248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02064090 174.36250305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02064091 174.36251831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02064092 174.36251831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02064093 174.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02064094 174.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02064095 174.36257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02064096 174.36257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02064097 174.36259460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02064098 174.36259460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02064099 174.36262512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02064100 174.36262512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02064101 174.36265564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02064102 174.36265564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02064103 174.36268616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02064104 174.36268616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02064105 174.36271667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02064106 174.36271667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02064107 174.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02064108 174.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02064109 174.36276245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02064110 174.36276245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02064111 174.36279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02064112 174.36280823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02064113 174.36282349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02064114 174.36282349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02064115 174.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02064116 174.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02064117 174.36288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02064118 174.36288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02064119 174.36289978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02064120 174.36289978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02064121 174.36293030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02064122 174.36293030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02064123 174.36296082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02064124 174.36297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02064125 174.36299133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02064126 174.36299133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02064127 174.36302185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02064128 174.36302185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02064129 174.36305237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02064130 174.36305237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02064131 174.36306763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02064132 174.36306763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02064133 174.36309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02064134 174.36311340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02064135 174.36312866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02064136 174.36312866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02064137 174.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02064138 174.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02064139 174.36318970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02064140 174.36318970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02064141 174.36322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02064142 174.36322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02064143 174.36323547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02064144 174.36323547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02064145 174.36326599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02064146 174.36328125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02064147 174.36329651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02064148 174.36329651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02064149 174.36332703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02064150 174.36332703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02064151 174.36335754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02064152 174.36335754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02064153 174.36337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02064154 174.36337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02064155 174.36340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02064156 174.36341858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02064157 174.36344910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02064158 174.36344910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02064159 174.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02064160 174.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02064161 174.36349487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -02068703 174.42698669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -02068704 174.42700195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -02068705 174.42701721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -02068706 174.42701721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -02068707 174.42704773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -02068708 174.42704773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -02068709 174.42707825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -02068710 174.42707825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -02068711 174.42709351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -02068712 174.42709351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -02068713 174.42712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -02068714 174.42712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -02068715 174.42715454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -02068716 174.42715454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -02068717 174.42718506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -02068718 174.42718506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -02068719 174.42721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -02068720 174.42721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -02068721 174.42723083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -02068722 174.42723083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -02068723 174.42726135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -02068724 174.42726135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -02068725 174.42729187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -02068726 174.42730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -02068727 174.42732239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -02068728 174.42732239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -02068729 174.42735291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -02068730 174.42735291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -02068731 174.42738342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -02068732 174.42738342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -02068733 174.42739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -02068734 174.42739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -02068735 174.42742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -02068736 174.42744446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -02068737 174.42747498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -02068738 174.42747498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf728 -02068739 174.42749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -02068740 174.42749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf738 -02068741 174.42752075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf748 -02068742 174.42752075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf748 -02068743 174.42755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf758 -02068744 174.42755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf758 -02068745 174.42756653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf768 -02068746 174.42756653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xf768 -02071923 174.47207642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -02071924 174.47209167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -02071925 174.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -02071926 174.47212219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -02071927 174.47213745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -02071928 174.47213745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -02071929 174.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -02071930 174.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -02071931 174.47219849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -02071932 174.47219849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -02071933 174.47221375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b08 -02071934 174.47221375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b08 -02071935 174.47224426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b18 -02071936 174.47225952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b18 -02071937 174.47227478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b28 -02071938 174.47227478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b28 -02071939 174.47230530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b38 -02071940 174.47230530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b38 -02071941 174.47233582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b48 -02071942 174.47233582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b48 -02071943 174.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b58 -02071944 174.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b58 -02071945 174.47238159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b68 -02071946 174.47239685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b68 -02071947 174.47242737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b78 -02071948 174.47242737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b78 -02071949 174.47244263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -02071950 174.47244263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b88 -02071951 174.47247314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -02071952 174.47247314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b98 -02071953 174.47250366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -02071954 174.47250366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ba8 -02071955 174.47251892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb8 -02071956 174.47251892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bb8 -02071957 174.47254944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc8 -02071958 174.47256470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bc8 -02071959 174.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd8 -02071960 174.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bd8 -02071961 174.47261047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -02071962 174.47261047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15be8 -02071963 174.47264099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -02071964 174.47264099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15bf8 -02071965 174.47267151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c08 -02071966 174.47267151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c08 -02074807 174.51255798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d8 -02074808 174.51255798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4d8 -02074809 174.51258850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e8 -02074810 174.51258850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4e8 -02074811 174.51261902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f8 -02074812 174.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b4f8 -02074813 174.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b508 -02074814 174.51264954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b508 -02074815 174.51268005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b518 -02074816 174.51268005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b518 -02074817 174.51271057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b528 -02074818 174.51271057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b528 -02074819 174.51272583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b538 -02074820 174.51272583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b538 -02074821 174.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b548 -02074822 174.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b548 -02074823 174.51278687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b558 -02074824 174.51278687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b558 -02074825 174.51280212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b568 -02074826 174.51280212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b568 -02074827 174.51283264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b578 -02074828 174.51283264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b578 -02074829 174.51286316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b588 -02074830 174.51286316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b588 -02074831 174.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b598 -02074832 174.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b598 -02074833 174.51290894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a8 -02074834 174.51290894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5a8 -02074835 174.51293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -02074836 174.51295471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5b8 -02074837 174.51295471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -02074838 174.51296997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5c8 -02074839 174.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -02074840 174.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5d8 -02074841 174.51303101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -02074842 174.51303101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5e8 -02074843 174.51304626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -02074844 174.51304626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b5f8 -02074845 174.51307678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b608 -02074846 174.51307678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b608 -02074847 174.51310730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b618 -02074848 174.51310730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b618 -02074849 174.51312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b628 -02074850 174.51312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b628 -02077573 174.55116272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -02077574 174.55116272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -02077575 174.55117798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -02077576 174.55117798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -02077577 174.55120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -02077578 174.55120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -02077579 174.55123901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -02077580 174.55123901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -02077581 174.55126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -02077582 174.55126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -02077583 174.55130005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -02077584 174.55130005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -02077585 174.55131531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -02077586 174.55133057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -02077587 174.55136108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -02077588 174.55136108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -02077589 174.55139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -02077590 174.55139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -02077591 174.55140686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -02077592 174.55142212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -02077593 174.55145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -02077594 174.55145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -02077595 174.55146790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -02077596 174.55146790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -02077597 174.55149841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -02077598 174.55149841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -02077599 174.55152893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -02077600 174.55152893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -02077601 174.55155945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -02077602 174.55155945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -02077603 174.55157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -02077604 174.55157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -02077605 174.55160522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -02077606 174.55162048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -02077607 174.55163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -02077608 174.55163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -02077609 174.55166626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c68 -02077610 174.55166626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c68 -02077611 174.55169678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c78 -02077612 174.55169678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c78 -02077613 174.55171204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c88 -02077614 174.55171204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c88 -02077615 174.55175781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c98 -02077616 174.55175781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c98 -02081003 174.59924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27678 -02081004 174.59924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27678 -02081005 174.59927368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27688 -02081006 174.59927368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27688 -02081007 174.59928894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27698 -02081008 174.59930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27698 -02081009 174.59933472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a8 -02081010 174.59933472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276a8 -02081011 174.59936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b8 -02081012 174.59936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276b8 -02081013 174.59938049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c8 -02081014 174.59938049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276c8 -02081015 174.59941101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d8 -02081016 174.59941101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276d8 -02081017 174.59944153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e8 -02081018 174.59944153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276e8 -02081019 174.59945679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f8 -02081020 174.59947205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x276f8 -02081021 174.59950256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27708 -02081022 174.59950256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27708 -02081023 174.59953308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27718 -02081024 174.59953308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27718 -02081025 174.59954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27728 -02081026 174.59954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27728 -02081027 174.59957886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27738 -02081028 174.59957886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27738 -02081029 174.59960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27748 -02081030 174.59960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27748 -02081031 174.59963989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27758 -02081032 174.59963989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27758 -02081033 174.59967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27768 -02081034 174.59967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27768 -02081035 174.59968567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27778 -02081036 174.59968567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27778 -02081037 174.59971619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27788 -02081038 174.59971619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27788 -02081039 174.59974670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27798 -02081040 174.59974670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27798 -02081041 174.59977722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -02081042 174.59977722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277a8 -02081043 174.59980774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -02081044 174.59980774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277b8 -02081045 174.59983826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -02081046 174.59983826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x277c8 -02083947 174.64566040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -02083948 174.64566040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -02083949 174.64569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -02083950 174.64569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -02083951 174.64573669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -02083952 174.64575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -02083953 174.64578247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -02083954 174.64578247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -02083955 174.64582825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -02083956 174.64582825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -02083957 174.64585876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -02083958 174.64585876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -02083959 174.64590454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -02083960 174.64591980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -02083961 174.64593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -02083962 174.64595032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -02083963 174.64599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -02083964 174.64599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -02083965 174.64602661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -02083966 174.64602661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -02083967 174.64607239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -02083968 174.64607239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -02083969 174.64610291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -02083970 174.64611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -02083971 174.64616394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -02083972 174.64616394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -02083973 174.64619446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -02083974 174.64619446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -02083975 174.64624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -02083976 174.64624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -02083977 174.64627075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -02083978 174.64628601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -02083979 174.64631653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -02083980 174.64631653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -02083981 174.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -02083982 174.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -02083983 174.64639282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -02083984 174.64639282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -02083985 174.64643860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -02083986 174.64645386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -02083987 174.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -02083988 174.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -02083989 174.64651489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -02083990 174.64653015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -02086768 174.68916321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a98 -02086769 174.68919373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -02086770 174.68919373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -02086771 174.68920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab8 -02086772 174.68920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab8 -02086773 174.68923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac8 -02086774 174.68923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac8 -02086775 174.68928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad8 -02086776 174.68928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad8 -02086777 174.68930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae8 -02086778 174.68930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae8 -02086779 174.68933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af8 -02086780 174.68933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af8 -02086781 174.68936157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b08 -02086782 174.68936157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b08 -02086783 174.68937683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b18 -02086784 174.68939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b18 -02086785 174.68942261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b28 -02086786 174.68942261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b28 -02086787 174.68945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b38 -02086788 174.68945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b38 -02086789 174.68946838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b48 -02086790 174.68946838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b48 -02086791 174.68949890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b58 -02086792 174.68951416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b58 -02086793 174.68952942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b68 -02086794 174.68952942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b68 -02086795 174.68955994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b78 -02086796 174.68955994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b78 -02086797 174.68959045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b88 -02086798 174.68959045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b88 -02086799 174.68960571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b98 -02086800 174.68960571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b98 -02086801 174.68963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba8 -02086802 174.68965149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba8 -02086803 174.68968201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb8 -02086804 174.68968201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb8 -02086805 174.68969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc8 -02086806 174.68969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc8 -02086807 174.68972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd8 -02086808 174.68972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd8 -02086809 174.68975830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be8 -02086810 174.68977356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be8 -02086811 174.68978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf8 -02089165 174.72280884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37588 -02089166 174.72280884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37588 -02089167 174.72282410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37598 -02089168 174.72282410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37598 -02089169 174.72285461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a8 -02089170 174.72285461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375a8 -02089171 174.72288513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b8 -02089172 174.72288513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375b8 -02089173 174.72290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c8 -02089174 174.72290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375c8 -02089175 174.72293091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d8 -02089176 174.72294617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375d8 -02089177 174.72297668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e8 -02089178 174.72297668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375e8 -02089179 174.72299194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f8 -02089180 174.72299194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x375f8 -02089181 174.72302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37608 -02089182 174.72302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37608 -02089183 174.72305298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37618 -02089184 174.72305298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37618 -02089185 174.72306824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37628 -02089186 174.72308350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37628 -02089187 174.72311401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37638 -02089188 174.72311401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37638 -02089189 174.72312927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37648 -02089190 174.72312927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37648 -02089191 174.72315979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37658 -02089192 174.72315979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37658 -02089193 174.72319031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37668 -02089194 174.72319031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37668 -02089195 174.72320557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37678 -02089196 174.72322083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37678 -02089197 174.72325134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37688 -02089198 174.72325134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37688 -02089199 174.72328186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37698 -02089200 174.72328186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37698 -02089201 174.72329712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a8 -02089202 174.72329712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376a8 -02089203 174.72332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b8 -02089204 174.72332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376b8 -02089205 174.72335815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c8 -02089206 174.72335815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376c8 -02089207 174.72337341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d8 -02089208 174.72338867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x376d8 -02103093 174.91648865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -02103094 174.91648865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -02103095 174.91651917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -02103096 174.91651917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -02103097 174.91654968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -02103098 174.91654968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -02103099 174.91656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -02103100 174.91656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -02103101 174.91659546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -02103102 174.91661072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -02103103 174.91662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -02103104 174.91662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -02103105 174.91665649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -02103106 174.91665649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -02103107 174.91668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52938 -02103108 174.91668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52938 -02103109 174.91671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52948 -02103110 174.91671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52948 -02103111 174.91673279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52958 -02103112 174.91674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52958 -02103113 174.91677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52968 -02103114 174.91677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52968 -02103115 174.91679382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52978 -02103116 174.91679382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52978 -02103117 174.91682434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52988 -02103118 174.91682434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52988 -02103119 174.91685486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52998 -02103120 174.91685486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52998 -02103121 174.91687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a8 -02103122 174.91688538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a8 -02103123 174.91691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b8 -02103124 174.91691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b8 -02103125 174.91694641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c8 -02103126 174.91694641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c8 -02103127 174.91696167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d8 -02103128 174.91696167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d8 -02103129 174.91699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e8 -02103130 174.91699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e8 -02103131 174.91702271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f8 -02103132 174.91703796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f8 -02103133 174.91705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a08 -02103134 174.91705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a08 -02103135 174.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a18 -02103136 174.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a18 -02103235 176.30317688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02103236 176.32257080 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103237 176.32258606 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103238 176.42808533 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103239 176.42811584 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103240 176.42813110 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02103241 176.42814636 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02103242 176.42826843 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103243 176.42826843 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103244 176.42834473 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02103245 176.42835999 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02103246 176.60771179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02103247 176.60771179 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02103248 176.60774231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02103249 176.60774231 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02103250 176.60777283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02103251 176.60777283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02103252 176.60778809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02103253 176.60778809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02103254 176.60783386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02103255 176.60783386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02103256 176.60786438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02103257 176.60786438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02103258 176.60787964 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02103259 176.60789490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02103260 176.60792542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02103261 176.60792542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02103262 176.60795593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02103263 176.60795593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02103264 176.60797119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02103265 176.60798645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02103266 176.60801697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02103267 176.60801697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02103268 176.60803223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02103269 176.60803223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02103270 176.60806274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02103271 176.60807800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02103272 176.60810852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02103273 176.60810852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02103274 176.60812378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02103275 176.60812378 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02103276 176.60815430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02103277 176.60816956 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02103278 176.60818481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02103279 176.60818481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02103280 176.60821533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02103281 176.60821533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02103282 176.60824585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02103283 176.60824585 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02103284 176.60827637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02103285 176.60827637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02103286 176.60830688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02103287 176.60830688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02103288 176.60833740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02103289 176.60833740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02103290 176.60835266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02103291 176.60836792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02103292 176.60839844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02103293 176.60839844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02103294 176.60842896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02103295 176.60842896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02103296 176.60844421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02103297 176.60845947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02103298 176.60848999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02103299 176.60848999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02103300 176.60850525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02103301 176.60850525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02103302 176.60853577 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02103303 176.60855103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02103304 176.60858154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02103305 176.60858154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02103306 176.60859680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02103307 176.60859680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02103308 176.60862732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02103309 176.60864258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02103310 176.60867310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02103311 176.60867310 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02103312 176.60868835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02103313 176.60868835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02103314 176.60871887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02103315 176.60873413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02103316 176.60874939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02103317 176.60874939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02103318 176.60877991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02103319 176.60877991 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02103320 176.60881042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02103321 176.60881042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02103322 176.60884094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02103323 176.60884094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02103324 176.60887146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02103325 176.60888672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02103326 176.60890198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02103327 176.60890198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02103328 176.60893250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02103329 176.60893250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02103330 176.60896301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02103331 176.60896301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02103332 176.60897827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02103333 176.60899353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02103334 176.60902405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02103335 176.60902405 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02103336 176.60905457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02103337 176.60905457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02103338 176.60906982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02103339 176.60908508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02103340 176.60911560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02103341 176.60911560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02103342 176.60914612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02103343 176.60914612 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02103344 176.60916138 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02103345 176.60917664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02103346 176.60920715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02103347 176.60920715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02103348 176.60922241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02103349 176.60922241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02103350 176.60925293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02103351 176.60926819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02103352 176.60929871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02103353 176.60929871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02103354 176.60931396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02103355 176.60931396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02103356 176.60934448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02103357 176.60935974 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02103358 176.60937500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02103359 176.60937500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02103360 176.60940552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02103361 176.60940552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02103362 176.60943604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02103363 176.60943604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02103364 176.60946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02103365 176.60946655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02103366 176.60949707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02103367 176.60949707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02103368 176.60952759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02103369 176.60952759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02103370 176.60957336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02103371 176.60957336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02103372 176.60960388 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02103373 176.60961914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02103374 176.60963440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02103375 176.60963440 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02103376 176.60966492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02103377 176.60966492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02103378 176.60969543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02103379 176.60969543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02103380 176.60972595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02103381 176.60972595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02103382 176.60975647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02103383 176.60975647 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02103384 176.60977173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02103385 176.60978699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02103386 176.60981750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02103387 176.60981750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02103388 176.60984802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02103389 176.60984802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02103390 176.60986328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02103391 176.60987854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02103392 176.60990906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02103393 176.60990906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02103394 176.60993958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02103395 176.60993958 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02103396 176.60997009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02103397 176.60997009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02103398 176.61001587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02103399 176.61001587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02103400 176.61007690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02103401 176.61007690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02103402 176.61010742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02103403 176.61012268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02103404 176.61016846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02103405 176.61016846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02103406 176.61021423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02103407 176.61021423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02103408 176.61026001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02103409 176.61026001 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02103410 176.61030579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02103411 176.61030579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02103412 176.61033630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02103413 176.61033630 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02103414 176.61036682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02103415 176.61036682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02103416 176.61039734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02103417 176.61039734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02103418 176.61041260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02103419 176.61041260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02103420 176.61044312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02103421 176.61045837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02103422 176.61048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02103423 176.61048889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02103424 176.61050415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02103425 176.61050415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02103426 176.61054993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02103427 176.61054993 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02103428 176.61056519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02103429 176.61056519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02103430 176.61059570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02103431 176.61061096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02103432 176.61064148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02103433 176.61064148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02103434 176.61065674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02103435 176.61065674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02103436 176.61068726 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02103437 176.61070251 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02103438 176.61073303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02103439 176.61073303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02103440 176.61074829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02103441 176.61074829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02103442 176.61077881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02103443 176.61079407 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02103444 176.61080933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02103445 176.61080933 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02103446 176.61083984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02103447 176.61083984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02103448 176.61088562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02103449 176.61088562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02103450 176.61090088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02103451 176.61090088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02103452 176.61093140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02103453 176.61093140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02103454 176.61097717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02103455 176.61097717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02103456 176.61099243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02103457 176.61099243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02103458 176.61102295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02103459 176.61102295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02103460 176.61105347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02103461 176.61105347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02103462 176.61108398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02103463 176.61108398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02103464 176.61111450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02103465 176.61111450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02103466 176.61112976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02103467 176.61114502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02103468 176.61117554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02103469 176.61117554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02103470 176.61120605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02103471 176.61120605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02103472 176.61122131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02103473 176.61123657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02103474 176.61126709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02103475 176.61126709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02103476 176.61128235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02103477 176.61128235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02103478 176.61131287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02103479 176.61132813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02103480 176.61135864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02103481 176.61135864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02103482 176.61137390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02103483 176.61137390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02103484 176.61140442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02103485 176.61141968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02103486 176.61145020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02103487 176.61145020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02103488 176.61146545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02103489 176.61146545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02103490 176.61149597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02103491 176.61151123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02103492 176.61152649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02103493 176.61152649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02103494 176.61155701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02103495 176.61155701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02103496 176.61158752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02103497 176.61160278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02103498 176.61161804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02103499 176.61161804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02103500 176.61164856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02103501 176.61164856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02103502 176.61167908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02103503 176.61167908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02103504 176.61170959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02103505 176.61170959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02103506 176.61174011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02103507 176.61174011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02103508 176.61177063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02103509 176.61177063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02103510 176.61180115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02103511 176.61180115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02103512 176.61183167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02103513 176.61183167 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02103514 176.61184692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02103515 176.61186218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02103516 176.61189270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02103517 176.61189270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02103518 176.61192322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02103519 176.61192322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02103520 176.61195374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02103521 176.61195374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02103522 176.61198425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02103523 176.61198425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02103524 176.61199951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02103525 176.61199951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02103526 176.61203003 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02103527 176.61204529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02103528 176.61207581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02103529 176.61207581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02103530 176.61209106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02103531 176.61209106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02103532 176.61212158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02103533 176.61213684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02103534 176.61216736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02103535 176.61216736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02103536 176.61218262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02103537 176.61218262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02103538 176.61221313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02103539 176.61221313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02103540 176.61224365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02103541 176.61224365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02103542 176.61227417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02103543 176.61227417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02103544 176.61230469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02103545 176.61230469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02103546 176.61231995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02103547 176.61231995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02103548 176.61235046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02103549 176.61236572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02103550 176.61239624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02103551 176.61239624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02103552 176.61241150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02103553 176.61241150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02103554 176.61244202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02103555 176.61245728 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02103556 176.61247253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02103557 176.61247253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02103558 176.61250305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02103559 176.61250305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02103560 176.61253357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02103561 176.61254883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02103562 176.61256409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02103563 176.61256409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02103564 176.61259460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02103565 176.61259460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02103566 176.61262512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02103567 176.61262512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02103568 176.61265564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02103569 176.61265564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02103570 176.61268616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02103571 176.61268616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02103572 176.61271667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02103573 176.61271667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02103574 176.61274719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02103575 176.61274719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02103576 176.61277771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02103577 176.61277771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02103578 176.61279297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02103579 176.61279297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02103580 176.61283875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02103581 176.61283875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02103582 176.61286926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02103583 176.61286926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02103584 176.61288452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02103585 176.61288452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02103586 176.61291504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02103587 176.61293030 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02103588 176.61296082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02103589 176.61296082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02103590 176.61297607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02103591 176.61297607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02103592 176.61302185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02103593 176.61302185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02103594 176.61303711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02103595 176.61303711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02103596 176.61306763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02103597 176.61306763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02103598 176.61309814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02103599 176.61311340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02103600 176.61312866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02103601 176.61312866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02103602 176.61315918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02103603 176.61315918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02103604 176.61318970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02103605 176.61318970 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02103606 176.61322021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02103607 176.61322021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02103608 176.61325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02103609 176.61325073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02103610 176.61328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02103611 176.61328125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02103612 176.61331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02103613 176.61331177 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02103614 176.61334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02103615 176.61334229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02103616 176.61335754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02103617 176.61335754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02103618 176.61340332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02103619 176.61340332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02103620 176.61343384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02103621 176.61343384 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02103622 176.61344910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02103623 176.61344910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02103624 176.61349487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02103625 176.61349487 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02103626 176.61351013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02103627 176.61351013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02103628 176.61354065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02103629 176.61354065 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02103630 176.61357117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02103631 176.61358643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02103632 176.61360168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02103633 176.61360168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02103634 176.61363220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02103635 176.61363220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02103636 176.61367798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02103637 176.61367798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02103638 176.61369324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02103639 176.61369324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02103640 176.61372375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02103641 176.61372375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02103642 176.61375427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02103643 176.61375427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02103644 176.61378479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02103645 176.61378479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02103646 176.61381531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02103647 176.61381531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02103648 176.61383057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02103649 176.61384583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02103650 176.61387634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02103651 176.61387634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02103652 176.61390686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02103653 176.61390686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02103654 176.61393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02103655 176.61393738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02103656 176.61396790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02103657 176.61396790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02103658 176.61398315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02103659 176.61399841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02103660 176.61402893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02103661 176.61402893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02103662 176.61405945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02103663 176.61405945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02103664 176.61408997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02103665 176.61408997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02103666 176.61412048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02103667 176.61412048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02103668 176.61415100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02103669 176.61415100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02103670 176.61416626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02103671 176.61416626 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02103672 176.61419678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02103673 176.61421204 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02103674 176.61422729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02103675 176.61422729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02103676 176.61425781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02103677 176.61425781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02103678 176.61428833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02103679 176.61428833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02103680 176.61430359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02103681 176.61431885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02103682 176.61434937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02103683 176.61434937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02103684 176.61437988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02103685 176.61437988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02103686 176.61439514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02103687 176.61441040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02103688 176.61444092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02103689 176.61444092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02103690 176.61447144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02103691 176.61447144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02103692 176.61448669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02103693 176.61450195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02103694 176.61453247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02103695 176.61453247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02103696 176.61454773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02103697 176.61454773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02103698 176.61457825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02103699 176.61457825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02103700 176.61460876 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02103701 176.61462402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02103702 176.61463928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02103703 176.61463928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02103704 176.61466980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02103705 176.61466980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02103706 176.61470032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02103707 176.61470032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02103708 176.61473083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02103709 176.61473083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02103710 176.61476135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02103711 176.61476135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02103712 176.61477661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02103713 176.61479187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02103714 176.61482239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02103715 176.61482239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02103716 176.61485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02103717 176.61485291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02103718 176.61486816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02103719 176.61488342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02103720 176.61491394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02103721 176.61491394 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02103722 176.61494446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02103723 176.61494446 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02103724 176.61495972 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02103725 176.61497498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02103726 176.61500549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02103727 176.61500549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02103728 176.61502075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02103729 176.61502075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02103730 176.61505127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02103731 176.61506653 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02103732 176.61509705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02103733 176.61509705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02103734 176.61511230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02103735 176.61511230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02103736 176.61514282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02103737 176.61514282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02103738 176.61517334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02103739 176.61517334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02103740 176.61520386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02103741 176.61520386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02103742 176.61523438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02103743 176.61524963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02103744 176.61526489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02103745 176.61526489 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02103746 176.61529541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02103747 176.61529541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02103748 176.61532593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02103749 176.61532593 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02103750 176.61534119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02103751 176.61535645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02103752 176.61538696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02103753 176.61538696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02103754 176.61541748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02103755 176.61541748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02103756 176.61543274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02103757 176.61543274 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02103758 176.61547852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02103759 176.61547852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02103760 176.61549377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02103761 176.61549377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02103762 176.61552429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02103763 176.61552429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02103764 176.61555481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02103765 176.61557007 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02103766 176.61558533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02103767 176.61558533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02103768 176.61561584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02103769 176.61561584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02103770 176.61564636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02103771 176.61566162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02103772 176.61567688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02103773 176.61567688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02103774 176.61570740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02103775 176.61570740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02103776 176.61573792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02103777 176.61573792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02103778 176.61576843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02103779 176.61576843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02103780 176.61579895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02103781 176.61579895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02103782 176.61581421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02103783 176.61582947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02103784 176.61585999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02103785 176.61585999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02103786 176.61589050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02103787 176.61589050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02103788 176.61592102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02103789 176.61592102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02103790 176.61595154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02103791 176.61595154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02103792 176.61596680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02103793 176.61596680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02103794 176.61601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02103795 176.61601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02103796 176.61604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02103797 176.61604309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02103798 176.61605835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02103799 176.61605835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02103800 176.61608887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02103801 176.61610413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02103802 176.61613464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02103803 176.61613464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02103804 176.61614990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02103805 176.61614990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02103806 176.61618042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02103807 176.61618042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02103808 176.61621094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02103809 176.61621094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02103810 176.61624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02103811 176.61624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02103812 176.61627197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02103813 176.61627197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02103814 176.61628723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02103815 176.61628723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02103816 176.61633301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02103817 176.61633301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02103818 176.61636353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02103819 176.61636353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02103820 176.61637878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02103821 176.61637878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02103822 176.61640930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02103823 176.61642456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02103824 176.61645508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02103825 176.61645508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02103826 176.61647034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02103827 176.61647034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02103828 176.61650085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02103829 176.61651611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02103830 176.61653137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02103831 176.61653137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02103832 176.61656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02103833 176.61656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02103834 176.61659241 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02103835 176.61660767 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02103836 176.61662292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02103837 176.61662292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02103838 176.61665344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02103839 176.61665344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02103840 176.61668396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02103841 176.61668396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02103842 176.61671448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02103843 176.61671448 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02103844 176.61674500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02103845 176.61674500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02103846 176.61677551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02103847 176.61677551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02103848 176.61680603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02103849 176.61680603 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02103850 176.61683655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02103851 176.61683655 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02103852 176.61685181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02103853 176.61686707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02103854 176.61689758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02103855 176.61689758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02103856 176.61692810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02103857 176.61692810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02103858 176.61694336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02103859 176.61694336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02103860 176.61698914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02103861 176.61698914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02103862 176.61700439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02103863 176.61700439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02103864 176.61703491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02103865 176.61705017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02103866 176.61708069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02103867 176.61708069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02103868 176.61709595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02103869 176.61709595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02103870 176.61712646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02103871 176.61712646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02103872 176.61717224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02103873 176.61717224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02103874 176.61718750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02103875 176.61718750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02103876 176.61721802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02103877 176.61721802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02103878 176.61724854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02103879 176.61724854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02103880 176.61727905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02103881 176.61727905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02103882 176.61730957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02103883 176.61730957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02103884 176.61732483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02103885 176.61734009 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02103886 176.61737061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02103887 176.61737061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02103888 176.61740112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02103889 176.61740112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02103890 176.61741638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02103891 176.61743164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02103892 176.61746216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02103893 176.61746216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02103894 176.61747742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02103895 176.61747742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02103896 176.61750793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02103897 176.61752319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02103898 176.61755371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02103899 176.61755371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02103900 176.61756897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02103901 176.61756897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02103902 176.61759949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02103903 176.61761475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02103904 176.61764526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02103905 176.61764526 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02103906 176.61766052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02103907 176.61766052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02103908 176.61769104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02103909 176.61769104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02103910 176.61772156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02103911 176.61772156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02103912 176.61775208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02103913 176.61775208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02103914 176.61778259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02103915 176.61778259 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02103916 176.61781311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02103917 176.61781311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02103918 176.61784363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02103919 176.61784363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02103920 176.61787415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02103921 176.61787415 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02103922 176.61790466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02103923 176.61790466 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02103924 176.61793518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02103925 176.61793518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02103926 176.61796570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02103927 176.61796570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02103928 176.61799622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02103929 176.61799622 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02103930 176.61802673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02103931 176.61802673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02103932 176.61804199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02103933 176.61804199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02103934 176.61808777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02103935 176.61808777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02103936 176.61811829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02103937 176.61811829 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02103938 176.61813354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02103939 176.61813354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02103940 176.61816406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02103941 176.61817932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02103942 176.61819458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02103943 176.61819458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02103944 176.61822510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02103945 176.61822510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02103946 176.61825562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02103947 176.61825562 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02103948 176.61828613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02103949 176.61828613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02103950 176.61831665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02103951 176.61831665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02103952 176.61834717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02103953 176.61836243 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02103954 176.61837769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02103955 176.61837769 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02103956 176.61840820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02103957 176.61840820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02103958 176.61843872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02103959 176.61843872 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02103960 176.61846924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02103961 176.61846924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02103962 176.61849976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02103963 176.61849976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02103964 176.61851501 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02103965 176.61853027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02103966 176.61856079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02103967 176.61856079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02103968 176.61859131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02103969 176.61859131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02103970 176.61860657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02103971 176.61862183 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02103972 176.61865234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02103973 176.61865234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02103974 176.61866760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02103975 176.61866760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02103976 176.61869812 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02103977 176.61871338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02103978 176.61874390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02103979 176.61874390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02103980 176.61875916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02103981 176.61875916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02103982 176.61878967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02103983 176.61880493 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02103984 176.61883545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02103985 176.61883545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02103986 176.61885071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02103987 176.61885071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02103988 176.61888123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02103989 176.61888123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02103990 176.61891174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02103991 176.61891174 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02103992 176.61894226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02103993 176.61894226 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02103994 176.61897278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02103995 176.61897278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02103996 176.61898804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02103997 176.61900330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02103998 176.61903381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02103999 176.61903381 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02104000 176.61906433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02104001 176.61906433 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02104002 176.61907959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02104003 176.61909485 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02104004 176.61912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02104005 176.61912537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02104006 176.61915588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02104007 176.61915588 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02104008 176.61917114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02104009 176.61917114 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02104010 176.61921692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02104011 176.61921692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02104012 176.61923218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02104013 176.61923218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02104014 176.61926270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02104015 176.61926270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02104016 176.61929321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02104017 176.61930847 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02104018 176.61932373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02104019 176.61932373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02104020 176.61935425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02104021 176.61935425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02104022 176.61938477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02104023 176.61938477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02104024 176.61941528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02104025 176.61941528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02104026 176.61944580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02104027 176.61944580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02104028 176.61947632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02104029 176.61947632 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02104030 176.61949158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02104031 176.61950684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02104032 176.61953735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02104033 176.61953735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02104034 176.61955261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02104035 176.61955261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02104036 176.61958313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02104037 176.61959839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02104038 176.61962891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02104039 176.61962891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02104040 176.61964417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02104041 176.61964417 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02104042 176.61967468 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02104043 176.61968994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02104044 176.61970520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02104045 176.61970520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02104046 176.61973572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02104047 176.61973572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02104048 176.61976624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02104049 176.61976624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02104050 176.61979675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02104051 176.61979675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02104052 176.61982727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02104053 176.61982727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02104054 176.61985779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02104055 176.61987305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02104056 176.61988831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02104057 176.61988831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02104058 176.61991882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02104059 176.61991882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02104060 176.61994934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02104061 176.61994934 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02104062 176.61997986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02104063 176.61997986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02104064 176.62001038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02104065 176.62001038 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02104066 176.62002563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02104067 176.62002563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02104068 176.62005615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02104069 176.62007141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02104070 176.62010193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02104071 176.62010193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02104072 176.62011719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02104073 176.62011719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02104074 176.62014771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02104075 176.62016296 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02104076 176.62017822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02104077 176.62017822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02104078 176.62020874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02104079 176.62020874 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02104080 176.62023926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02104081 176.62023926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02104082 176.62026978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02104083 176.62026978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02104084 176.62028503 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02104085 176.62030029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02104086 176.62033081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02104087 176.62033081 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02104088 176.62034607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02104089 176.62034607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02104090 176.62037659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02104091 176.62037659 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02104092 176.62040710 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02104093 176.62042236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02104094 176.62043762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02104095 176.62043762 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02104096 176.62046814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02104097 176.62046814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02104098 176.62049866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02104099 176.62049866 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02104100 176.62052917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02104101 176.62052917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02104102 176.62055969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02104103 176.62055969 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02104104 176.62057495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02104105 176.62057495 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02104106 176.62060547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02104107 176.62062073 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02104108 176.62065125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02104109 176.62065125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02104110 176.62066650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02104111 176.62066650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02104112 176.62069702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02104113 176.62069702 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02104114 176.62072754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02104115 176.62074280 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02104116 176.62075806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02104117 176.62075806 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02104118 176.62078857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02104119 176.62078857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02104120 176.62081909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02104121 176.62081909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02104122 176.62084961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02104123 176.62084961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02104124 176.62088013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02104125 176.62088013 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02104126 176.62089539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02104127 176.62089539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02104128 176.62092590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02104129 176.62094116 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02104130 176.62097168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02104131 176.62097168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02104132 176.62098694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02104133 176.62098694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02104134 176.62101746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02104135 176.62101746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02104136 176.62106323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02104137 176.62106323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02104138 176.62107849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02104139 176.62107849 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02104140 176.62110901 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02104141 176.62112427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02104142 176.62113953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02104143 176.62113953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02104144 176.62117004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02104145 176.62117004 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02104146 176.62120056 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02104147 176.62121582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02104148 176.62123108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02104149 176.62123108 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02104150 176.62126160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02104151 176.62126160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02104152 176.62129211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02104153 176.62129211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02104154 176.62132263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02104155 176.62132263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02104156 176.62135315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02104157 176.62135315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02104158 176.62136841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02104159 176.62136841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02104160 176.62141418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02104161 176.62141418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02104162 176.62144470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02104163 176.62144470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02104164 176.62145996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02104165 176.62147522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02104166 176.62150574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02104167 176.62150574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02104168 176.62153625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02104169 176.62153625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02104170 176.62155151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02104171 176.62155151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02104172 176.62158203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02104173 176.62159729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02104174 176.62161255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02104175 176.62161255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02104176 176.62164307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02104177 176.62164307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02104178 176.62167358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02104179 176.62167358 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02104180 176.62170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02104181 176.62170410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02104182 176.62173462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02104183 176.62173462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02104184 176.62176514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02104185 176.62176514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02104186 176.62178040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02104187 176.62179565 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02104188 176.62182617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02104189 176.62182617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02104190 176.62185669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02104191 176.62185669 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02104192 176.62187195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02104193 176.62188721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02104194 176.62191772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02104195 176.62191772 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02104196 176.62193298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02104197 176.62193298 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02104198 176.62196350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02104199 176.62196350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02104200 176.62200928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02104201 176.62200928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02104202 176.62202454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02104203 176.62202454 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02104204 176.62205505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02104205 176.62205505 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02104206 176.62208557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02104207 176.62208557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02104208 176.62211609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02104209 176.62211609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02104210 176.62214661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02104211 176.62214661 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02104212 176.62217712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02104213 176.62217712 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02106458 176.65394592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -02106459 176.65394592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -02106460 176.65396118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -02106461 176.65396118 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -02106462 176.65399170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -02106463 176.65400696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -02106464 176.65402222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -02106465 176.65402222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -02106466 176.65405273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -02106467 176.65405273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -02106468 176.65408325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -02106469 176.65408325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -02106470 176.65409851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -02106471 176.65409851 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -02106472 176.65412903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -02106473 176.65414429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -02106474 176.65417480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -02106475 176.65417480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -02106476 176.65419006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -02106477 176.65419006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -02106478 176.65422058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -02106479 176.65422058 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -02106480 176.65425110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -02106481 176.65425110 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -02106482 176.65426636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -02106483 176.65426636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -02106484 176.65429688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -02106485 176.65431213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -02106486 176.65434265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -02106487 176.65434265 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -02106488 176.65435791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -02106489 176.65435791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -02106490 176.65438843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -02106491 176.65438843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -02106492 176.65441895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -02106493 176.65441895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -02106494 176.65443420 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -02106495 176.65444946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -02106496 176.65447998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -02106497 176.65447998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -02106498 176.65449524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -02106499 176.65449524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -02106500 176.65452576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -02106501 176.65452576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -02110414 176.70956421 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -02110415 176.70957947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf040 -02110416 176.70960999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -02110417 176.70960999 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf050 -02110418 176.70962524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -02110419 176.70962524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf060 -02110420 176.70965576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -02110421 176.70965576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf070 -02110422 176.70968628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -02110423 176.70968628 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf080 -02110424 176.70970154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -02110425 176.70971680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf090 -02110426 176.70974731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -02110427 176.70974731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0a0 -02110428 176.70977783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -02110429 176.70977783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0b0 -02110430 176.70979309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -02110431 176.70979309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0c0 -02110432 176.70982361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -02110433 176.70983887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0d0 -02110434 176.70986938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -02110435 176.70986938 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0e0 -02110436 176.70988464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -02110437 176.70988464 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf0f0 -02110438 176.70991516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -02110439 176.70991516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf100 -02110440 176.70994568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -02110441 176.70994568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf110 -02110442 176.70996094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -02110443 176.70997620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf120 -02110444 176.71000671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -02110445 176.71000671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf130 -02110446 176.71002197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -02110447 176.71002197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf140 -02110448 176.71005249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -02110449 176.71005249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf150 -02110450 176.71008301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -02110451 176.71008301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf160 -02110452 176.71009827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -02110453 176.71011353 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf170 -02110454 176.71014404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -02110455 176.71014404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf180 -02110456 176.71017456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -02110457 176.71017456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0xf190 -02125162 176.91909790 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -02125163 176.91911316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd20 -02125164 176.91914368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -02125165 176.91914368 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd30 -02125166 176.91917419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -02125167 176.91917419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd40 -02125168 176.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -02125169 176.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd50 -02125170 176.91921997 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -02125171 176.91923523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd60 -02125172 176.91925049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -02125173 176.91925049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd70 -02125174 176.91928101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -02125175 176.91928101 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd80 -02125176 176.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -02125177 176.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd90 -02125178 176.91932678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -02125179 176.91932678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bda0 -02125180 176.91935730 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -02125181 176.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdb0 -02125182 176.91940308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -02125183 176.91940308 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdc0 -02125184 176.91941833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -02125185 176.91941833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdd0 -02125186 176.91944885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -02125187 176.91944885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde0 -02125188 176.91947937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -02125189 176.91947937 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf0 -02125190 176.91949463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -02125191 176.91950989 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be00 -02125192 176.91954041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -02125193 176.91954041 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be10 -02125194 176.91957092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -02125195 176.91957092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be20 -02125196 176.91958618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -02125197 176.91958618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be30 -02125198 176.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -02125199 176.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be40 -02125200 176.91964722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -02125201 176.91964722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be50 -02125202 176.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -02125203 176.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be60 -02125204 176.91970825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -02125205 176.91970825 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be70 -02127796 176.95626831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -02127797 176.95626831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f70 -02127798 176.95629883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -02127799 176.95629883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f80 -02127800 176.95632935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -02127801 176.95632935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f90 -02127802 176.95637512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -02127803 176.95637512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fa0 -02127804 176.95642090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -02127805 176.95642090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fb0 -02127806 176.95643616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -02127807 176.95643616 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fc0 -02127808 176.95646667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -02127809 176.95646667 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fd0 -02127810 176.95649719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -02127811 176.95651245 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30fe0 -02127812 176.95652771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -02127813 176.95652771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ff0 -02127814 176.95655823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -02127815 176.95655823 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31000 -02127816 176.95658875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -02127817 176.95658875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31010 -02127818 176.95660400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -02127819 176.95660400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31020 -02127820 176.95663452 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -02127821 176.95664978 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31030 -02127822 176.95666504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -02127823 176.95666504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31040 -02127824 176.95669556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -02127825 176.95669556 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31050 -02127826 176.95672607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -02127827 176.95672607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31060 -02127828 176.95674133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -02127829 176.95674133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31070 -02127830 176.95677185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -02127831 176.95678711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31080 -02127832 176.95681763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -02127833 176.95681763 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31090 -02127834 176.95683289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -02127835 176.95683289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310a0 -02127836 176.95686340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -02127837 176.95686340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310b0 -02127838 176.95689392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -02127839 176.95689392 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x310c0 -02127866 176.95730591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -02127867 176.95730591 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -02127868 176.95733643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -02127869 176.95733643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -02127870 176.95736694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -02127871 176.95736694 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -02127872 176.95738220 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -02127873 176.95739746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -02127874 176.95742798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -02127875 176.95742798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -02127876 176.95745850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -02127877 176.95745850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -02127878 176.95747375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -02127879 176.95747375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -02127880 176.95750427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -02127881 176.95750427 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -02127882 176.95753479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -02127883 176.95753479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -02127884 176.95756531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -02127885 176.95756531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -02127886 176.95759583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -02127887 176.95759583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -02127888 176.95762634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -02127889 176.95762634 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -02127890 176.95764160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -02127891 176.95764160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -02127892 176.95767212 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -02127893 176.95768738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -02127894 176.95770264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -02127895 176.95770264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31280 -02127896 176.95773315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -02127897 176.95773315 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31290 -02127898 176.95776367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -02127899 176.95776367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a0 -02127900 176.95777893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -02127901 176.95777893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b0 -02127902 176.95780945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -02127903 176.95782471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c0 -02127904 176.95785522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -02127905 176.95785522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d0 -02127906 176.95787048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -02127907 176.95787048 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e0 -02127908 176.95790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -02127909 176.95790100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f0 -02127978 176.95889282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -02127979 176.95889282 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31520 -02127980 176.95892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -02127981 176.95892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31530 -02127982 176.95895386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -02127983 176.95895386 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31540 -02127984 176.95896912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -02127985 176.95896912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31550 -02127986 176.95899963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -02127987 176.95899963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31560 -02127988 176.95903015 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -02127989 176.95904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31570 -02127990 176.95906067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -02127991 176.95906067 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31580 -02127992 176.95909119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -02127993 176.95909119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31590 -02127994 176.95912170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -02127995 176.95912170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a0 -02127996 176.95913696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -02127997 176.95913696 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b0 -02127998 176.95916748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -02127999 176.95916748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c0 -02128000 176.95919800 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -02128001 176.95921326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d0 -02128002 176.95922852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -02128003 176.95922852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e0 -02128004 176.95925903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -02128005 176.95925903 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f0 -02128006 176.95928955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -02128007 176.95928955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31600 -02128008 176.95930481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -02128009 176.95930481 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31610 -02128010 176.95933533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -02128011 176.95935059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31620 -02128012 176.95936584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -02128013 176.95936584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31630 -02128014 176.95939636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -02128015 176.95939636 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31640 -02128016 176.95942688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -02128017 176.95942688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31650 -02128018 176.95944214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -02128019 176.95944214 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31660 -02128020 176.95947266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -02128021 176.95948792 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31670 -02128136 176.96112061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -02128137 176.96113586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a10 -02128138 176.96116638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -02128139 176.96116638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a20 -02128140 176.96119690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -02128141 176.96119690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a30 -02128142 176.96121216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -02128143 176.96121216 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a40 -02128144 176.96124268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -02128145 176.96124268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a50 -02128146 176.96127319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -02128147 176.96127319 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a60 -02128148 176.96130371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -02128149 176.96130371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a70 -02128150 176.96133423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -02128151 176.96133423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a80 -02128152 176.96134949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -02128153 176.96134949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a90 -02128154 176.96138000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -02128155 176.96138000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31aa0 -02128156 176.96141052 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -02128157 176.96142578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ab0 -02128158 176.96144104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -02128159 176.96144104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ac0 -02128160 176.96147156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -02128161 176.96147156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ad0 -02128162 176.96150208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -02128163 176.96150208 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ae0 -02128164 176.96151733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -02128165 176.96151733 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31af0 -02128166 176.96154785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -02128167 176.96154785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b00 -02128168 176.96157837 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -02128169 176.96159363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b10 -02128170 176.96160889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -02128171 176.96160889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b20 -02128172 176.96163940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -02128173 176.96163940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b30 -02128174 176.96166992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -02128175 176.96166992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b40 -02128176 176.96168518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -02128177 176.96170044 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b50 -02128178 176.96173096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -02128179 176.96173096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b60 -02128576 176.96734619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -02128577 176.96734619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d0 -02128578 176.96737671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -02128579 176.96737671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e0 -02128580 176.96739197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -02128581 176.96739197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f0 -02128582 176.96742249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -02128583 176.96742249 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32800 -02128584 176.96745300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -02128585 176.96746826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32810 -02128586 176.96748352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -02128587 176.96748352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32820 -02128588 176.96751404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -02128589 176.96751404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32830 -02128590 176.96754456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -02128591 176.96754456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32840 -02128592 176.96755981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -02128593 176.96755981 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32850 -02128594 176.96759033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -02128595 176.96760559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32860 -02128596 176.96763611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -02128597 176.96763611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32870 -02128598 176.96765137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -02128599 176.96765137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32880 -02128600 176.96768188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -02128601 176.96768188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32890 -02128602 176.96771240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -02128603 176.96771240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328a0 -02128604 176.96772766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -02128605 176.96774292 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328b0 -02128606 176.96777344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -02128607 176.96777344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328c0 -02128608 176.96778870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -02128609 176.96778870 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328d0 -02128610 176.96781921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -02128611 176.96781921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328e0 -02128612 176.96784973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -02128613 176.96784973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x328f0 -02128614 176.96786499 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -02128615 176.96788025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32900 -02128616 176.96791077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -02128617 176.96791077 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32910 -02128618 176.96794128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -02128619 176.96794128 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -02128630 176.96810913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -02128631 176.96810913 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -02128632 176.96813965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -02128633 176.96813965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -02128634 176.96817017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -02128635 176.96818542 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -02128636 176.96820068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -02128637 176.96820068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -02128638 176.96823120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -02128639 176.96823120 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -02128640 176.96826172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -02128641 176.96826172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -02128642 176.96827698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -02128643 176.96827698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -02128644 176.96830750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -02128645 176.96832275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -02128646 176.96833801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -02128647 176.96833801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -02128648 176.96836853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -02128649 176.96836853 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -02128650 176.96839905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -02128651 176.96839905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -02128652 176.96842957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -02128653 176.96842957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -02128654 176.96844482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -02128655 176.96846008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -02128656 176.96849060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -02128657 176.96849060 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -02128658 176.96850586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -02128659 176.96850586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -02128660 176.96853638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -02128661 176.96853638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -02128662 176.96856689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -02128663 176.96856689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a80 -02128664 176.96858215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -02128665 176.96859741 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a90 -02128666 176.96862793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -02128667 176.96862793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa0 -02128668 176.96865845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -02128669 176.96865845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab0 -02128670 176.96867371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -02128671 176.96867371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac0 -02128672 176.96870422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -02128673 176.96870422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad0 -02128686 176.96893311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -02128687 176.96893311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b40 -02128688 176.96896362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -02128689 176.96896362 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b50 -02128690 176.96897888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -02128691 176.96897888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b60 -02128692 176.96900940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -02128693 176.96900940 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b70 -02128694 176.96903992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -02128695 176.96905518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b80 -02128696 176.96907043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -02128697 176.96907043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b90 -02128698 176.96910095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -02128699 176.96910095 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ba0 -02128700 176.96913147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -02128701 176.96913147 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bb0 -02128702 176.96914673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -02128703 176.96914673 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bc0 -02128704 176.96917725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -02128705 176.96919250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bd0 -02128706 176.96922302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -02128707 176.96922302 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32be0 -02128708 176.96923828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -02128709 176.96923828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32bf0 -02128710 176.96926880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -02128711 176.96926880 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c00 -02128712 176.96929932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -02128713 176.96929932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c10 -02128714 176.96931458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -02128715 176.96932983 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c20 -02128716 176.96936035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -02128717 176.96936035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c30 -02128718 176.96937561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -02128719 176.96937561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c40 -02128720 176.96940613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -02128721 176.96940613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c50 -02128722 176.96943665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -02128723 176.96943665 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c60 -02128724 176.96945190 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -02128725 176.96946716 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c70 -02128726 176.96949768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -02128727 176.96949768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c80 -02128728 176.96952820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -02128729 176.96952820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c90 -02128791 176.97041321 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -02128792 176.97044373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -02128793 176.97044373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -02128794 176.97047424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -02128795 176.97047424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -02128796 176.97048950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -02128797 176.97050476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -02128798 176.97053528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -02128799 176.97053528 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -02128800 176.97056580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -02128801 176.97056580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -02128802 176.97058105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -02128803 176.97058105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -02128804 176.97061157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -02128805 176.97061157 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -02128806 176.97064209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -02128807 176.97064209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -02128808 176.97067261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -02128809 176.97067261 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -02128810 176.97070313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -02128811 176.97070313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -02128812 176.97073364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -02128813 176.97073364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -02128814 176.97074890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -02128815 176.97074890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -02128816 176.97077942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -02128817 176.97077942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -02128818 176.97080994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -02128819 176.97080994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -02128820 176.97084045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -02128821 176.97084045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -02128822 176.97087097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -02128823 176.97087097 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -02128824 176.97088623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -02128825 176.97088623 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -02128826 176.97091675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -02128827 176.97091675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -02128828 176.97094727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -02128829 176.97096252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -02128830 176.97097778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -02128831 176.97097778 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -02128832 176.97100830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -02128833 176.97100830 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -02128834 176.97103882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -02129188 176.97604370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -02129189 176.97604370 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af0 -02129190 176.97605896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -02129191 176.97605896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b00 -02129192 176.97608948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -02129193 176.97608948 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b10 -02129194 176.97612000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -02129195 176.97613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b20 -02129196 176.97615051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -02129197 176.97615051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b30 -02129198 176.97618103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -02129199 176.97618103 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b40 -02129200 176.97621155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -02129201 176.97621155 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b50 -02129202 176.97622681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -02129203 176.97622681 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b60 -02129204 176.97625732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -02129205 176.97625732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b70 -02129206 176.97628784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -02129207 176.97628784 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b80 -02129208 176.97631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -02129209 176.97631836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b90 -02129210 176.97634888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -02129211 176.97634888 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba0 -02129212 176.97636414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -02129213 176.97636414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb0 -02129214 176.97639465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -02129215 176.97639465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc0 -02129216 176.97642517 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -02129217 176.97644043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd0 -02129218 176.97645569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -02129219 176.97645569 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be0 -02129220 176.97648621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -02129221 176.97648621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bf0 -02129222 176.97651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -02129223 176.97651672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c00 -02129224 176.97653198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -02129225 176.97653198 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c10 -02129226 176.97656250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -02129227 176.97657776 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c20 -02129228 176.97660828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -02129229 176.97660828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c30 -02129230 176.97662354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -02129231 176.97662354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c40 -02129246 176.97685242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -02129247 176.97686768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cc0 -02129248 176.97689819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -02129249 176.97689819 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cd0 -02129250 176.97692871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -02129251 176.97692871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ce0 -02129252 176.97694397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -02129253 176.97694397 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33cf0 -02129254 176.97697449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -02129255 176.97697449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d00 -02129256 176.97700500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -02129257 176.97700500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d10 -02129258 176.97702026 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -02129259 176.97703552 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d20 -02129260 176.97706604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -02129261 176.97706604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d30 -02129262 176.97708130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -02129263 176.97708130 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d40 -02129264 176.97711182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -02129265 176.97711182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d50 -02129266 176.97714233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -02129267 176.97714233 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d60 -02129268 176.97715759 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -02129269 176.97717285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d70 -02129270 176.97720337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -02129271 176.97720337 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d80 -02129272 176.97723389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -02129273 176.97723389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d90 -02129274 176.97724915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -02129275 176.97724915 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33da0 -02129276 176.97727966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -02129277 176.97727966 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33db0 -02129278 176.97731018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -02129279 176.97732544 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dc0 -02129280 176.97734070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -02129281 176.97734070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -02129282 176.97737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -02129283 176.97737122 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -02129284 176.97740173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -02129285 176.97740173 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -02129286 176.97741699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -02129287 176.97741699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -02129288 176.97744751 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -02129289 176.97746277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -02129300 176.97763062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -02129301 176.97763062 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -02129302 176.97764587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -02129303 176.97764587 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -02129304 176.97767639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -02129305 176.97769165 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -02129306 176.97772217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -02129307 176.97772217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -02129308 176.97773743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -02129309 176.97773743 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -02129310 176.97776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -02129311 176.97776794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -02129312 176.97779846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -02129313 176.97779846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -02129314 176.97781372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -02129315 176.97782898 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -02129316 176.97785950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -02129317 176.97785950 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -02129318 176.97787476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -02129319 176.97787476 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -02129320 176.97790527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -02129321 176.97790527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -02129322 176.97793579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -02129323 176.97793579 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -02129324 176.97795105 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -02129325 176.97796631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -02129326 176.97799683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -02129327 176.97799683 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -02129328 176.97802734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -02129329 176.97802734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -02129330 176.97804260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -02129331 176.97804260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -02129332 176.97807312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -02129333 176.97807312 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -02129334 176.97810364 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -02129335 176.97811890 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -02129336 176.97813416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -02129337 176.97813416 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -02129338 176.97816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -02129339 176.97816467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -02129340 176.97819519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -02129341 176.97819519 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -02129342 176.97821045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -02129343 176.97821045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -02129441 176.97967529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342d0 -02129442 176.97970581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -02129443 176.97970581 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342e0 -02129444 176.97972107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -02129445 176.97972107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x342f0 -02129446 176.97975159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -02129447 176.97975159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34300 -02129448 176.97978210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -02129449 176.97978210 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34310 -02129450 176.97981262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -02129451 176.97981262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34320 -02129452 176.97984314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -02129453 176.97984314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34330 -02129454 176.97985840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -02129455 176.97985840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34340 -02129456 176.97988892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -02129457 176.97988892 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34350 -02129458 176.97991943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -02129459 176.97993469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34360 -02129460 176.97994995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -02129461 176.97994995 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34370 -02129462 176.97998047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -02129463 176.97998047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34380 -02129464 176.98001099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -02129465 176.98001099 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34390 -02129466 176.98002625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -02129467 176.98002625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343a0 -02129468 176.98005676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -02129469 176.98007202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343b0 -02129470 176.98010254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -02129471 176.98010254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343c0 -02129472 176.98011780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -02129473 176.98011780 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343d0 -02129474 176.98014832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -02129475 176.98014832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343e0 -02129476 176.98017883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -02129477 176.98017883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x343f0 -02129478 176.98019409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -02129479 176.98020935 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34400 -02129480 176.98023987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -02129481 176.98023987 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34410 -02129482 176.98025513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -02129483 176.98025513 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34420 -02129484 176.98028564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34430 -02132112 177.01734924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -02132113 177.01734924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39650 -02132114 177.01736450 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -02132115 177.01737976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39660 -02132116 177.01741028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -02132117 177.01741028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39670 -02132118 177.01744080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -02132119 177.01744080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39680 -02132120 177.01745605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -02132121 177.01745605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -02132122 177.01748657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -02132123 177.01748657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -02132124 177.01751709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -02132125 177.01751709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -02132126 177.01754761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -02132127 177.01754761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -02132128 177.01757813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -02132129 177.01757813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -02132130 177.01759338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -02132131 177.01759338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -02132132 177.01762390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -02132133 177.01762390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -02132134 177.01765442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -02132135 177.01766968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -02132136 177.01768494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -02132137 177.01768494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -02132138 177.01771545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -02132139 177.01771545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -02132140 177.01774597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -02132141 177.01774597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -02132142 177.01776123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -02132143 177.01776123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -02132144 177.01779175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -02132145 177.01780701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -02132146 177.01783752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -02132147 177.01783752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -02132148 177.01785278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -02132149 177.01785278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -02132150 177.01788330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -02132151 177.01788330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -02132152 177.01791382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -02132153 177.01791382 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -02132154 177.01792908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -02132155 177.01794434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -02134330 177.04855347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -02134331 177.04855347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba0 -02134332 177.04856873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -02134333 177.04856873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb0 -02134334 177.04859924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -02134335 177.04859924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc0 -02134336 177.04862976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -02134337 177.04862976 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -02134338 177.04866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -02134339 177.04866028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -02134340 177.04869080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -02134341 177.04869080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -02134342 177.04872131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -02134343 177.04872131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -02134344 177.04873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -02134345 177.04873657 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -02134346 177.04876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -02134347 177.04876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -02134348 177.04879761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -02134349 177.04881287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -02134350 177.04882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -02134351 177.04882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -02134352 177.04885864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -02134353 177.04885864 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -02134354 177.04888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -02134355 177.04888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -02134356 177.04890442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -02134357 177.04890442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -02134358 177.04893494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -02134359 177.04895020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -02134360 177.04896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -02134361 177.04896545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc90 -02134362 177.04899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -02134363 177.04899597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca0 -02134364 177.04902649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -02134365 177.04902649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcb0 -02134366 177.04905701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -02134367 177.04905701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcc0 -02134368 177.04907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -02134369 177.04908752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcd0 -02134370 177.04911804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -02134371 177.04911804 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dce0 -02134372 177.04913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -02134373 177.04913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dcf0 -02136774 177.08299255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -02136775 177.08299255 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42800 -02136776 177.08302307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -02136777 177.08302307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42810 -02136778 177.08305359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -02136779 177.08305359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42820 -02136780 177.08306885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -02136781 177.08306885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42830 -02136782 177.08311462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -02136783 177.08311462 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42840 -02136784 177.08312988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -02136785 177.08312988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42850 -02136786 177.08316040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -02136787 177.08316040 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42860 -02136788 177.08319092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -02136789 177.08320618 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42870 -02136790 177.08322144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -02136791 177.08322144 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42880 -02136792 177.08325195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -02136793 177.08325195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42890 -02136794 177.08328247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -02136795 177.08328247 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428a0 -02136796 177.08329773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -02136797 177.08331299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428b0 -02136798 177.08334351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -02136799 177.08334351 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428c0 -02136800 177.08337402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -02136801 177.08337402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428d0 -02136802 177.08338928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -02136803 177.08338928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428e0 -02136804 177.08341980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -02136805 177.08343506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x428f0 -02136806 177.08345032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -02136807 177.08345032 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42900 -02136808 177.08348083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -02136809 177.08348083 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42910 -02136810 177.08351135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -02136811 177.08351135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42920 -02136812 177.08354187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -02136813 177.08354187 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42930 -02136814 177.08357239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -02136815 177.08357239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42940 -02136816 177.08360291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -02136817 177.08360291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x42950 -02139004 177.11595154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -02139005 177.11596680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -02139006 177.11599731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -02139007 177.11599731 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -02139008 177.11601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -02139009 177.11601257 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd0 -02139010 177.11605835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -02139011 177.11605835 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de0 -02139012 177.11608887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -02139013 177.11608887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df0 -02139014 177.11610413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -02139015 177.11610413 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e00 -02139016 177.11614990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -02139017 177.11614990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e10 -02139018 177.11618042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -02139019 177.11618042 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e20 -02139020 177.11619568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -02139021 177.11619568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e30 -02139022 177.11622620 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -02139023 177.11624146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e40 -02139024 177.11625671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -02139025 177.11625671 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e50 -02139026 177.11628723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -02139027 177.11628723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e60 -02139028 177.11631775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -02139029 177.11633301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e70 -02139030 177.11634827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -02139031 177.11634827 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e80 -02139032 177.11637878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -02139033 177.11637878 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e90 -02139034 177.11640930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -02139035 177.11640930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ea0 -02139036 177.11643982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -02139037 177.11643982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46eb0 -02139038 177.11647034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -02139039 177.11647034 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ec0 -02139040 177.11648560 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -02139041 177.11650085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ed0 -02139042 177.11653137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -02139043 177.11653137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ee0 -02139044 177.11656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -02139045 177.11656189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ef0 -02139046 177.11657715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -02139047 177.11657715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f00 -02141215 177.14825439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c0 -02141216 177.14826965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -02141217 177.14826965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d0 -02141218 177.14830017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -02141219 177.14830017 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e0 -02141220 177.14833069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -02141221 177.14833069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f0 -02141222 177.14834595 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -02141223 177.14836121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b300 -02141224 177.14839172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -02141225 177.14839172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b310 -02141226 177.14842224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -02141227 177.14842224 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b320 -02141228 177.14843750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -02141229 177.14843750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b330 -02141230 177.14846802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -02141231 177.14846802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b340 -02141232 177.14849854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -02141233 177.14849854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b350 -02141234 177.14852905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -02141235 177.14852905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b360 -02141236 177.14855957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -02141237 177.14855957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b370 -02141238 177.14857483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -02141239 177.14857483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b380 -02141240 177.14860535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -02141241 177.14862061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b390 -02141242 177.14865112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -02141243 177.14865112 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a0 -02141244 177.14866638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -02141245 177.14866638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b0 -02141246 177.14869690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -02141247 177.14869690 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c0 -02141248 177.14872742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -02141249 177.14872742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d0 -02141250 177.14874268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -02141251 177.14875793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e0 -02141252 177.14878845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -02141253 177.14878845 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f0 -02141254 177.14881897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -02141255 177.14881897 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b400 -02141256 177.14883423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -02141257 177.14883423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b410 -02141258 177.14886475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b420 -02143614 177.18196106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -02143615 177.18196106 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc0 -02143616 177.18199158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -02143617 177.18199158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd0 -02143618 177.18202209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -02143619 177.18202209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde0 -02143620 177.18203735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -02143621 177.18203735 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf0 -02143622 177.18206787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -02143623 177.18208313 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe00 -02143624 177.18209839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -02143625 177.18209839 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe10 -02143626 177.18212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -02143627 177.18212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe20 -02143628 177.18215942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -02143629 177.18215942 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe30 -02143630 177.18218994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -02143631 177.18218994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe40 -02143632 177.18220520 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -02143633 177.18222046 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe50 -02143634 177.18225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -02143635 177.18225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe60 -02143636 177.18226624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -02143637 177.18226624 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe70 -02143638 177.18229675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -02143639 177.18229675 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe80 -02143640 177.18232727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -02143641 177.18232727 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe90 -02143642 177.18234253 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -02143643 177.18235779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea0 -02143644 177.18238831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -02143645 177.18238831 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb0 -02143646 177.18241882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -02143647 177.18241882 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec0 -02143648 177.18243408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -02143649 177.18243408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed0 -02143650 177.18246460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -02143651 177.18246460 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee0 -02143652 177.18249512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -02143653 177.18249512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef0 -02143654 177.18252563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -02143655 177.18252563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff00 -02143656 177.18255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -02143657 177.18255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff10 -02145140 178.32484436 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02145141 178.34268188 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145142 178.34269714 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145143 178.74374390 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02145144 178.74450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02145145 178.90663147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02145146 178.90663147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02145147 178.90693665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145148 178.93444824 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02145149 178.93449402 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02145150 178.93450928 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02145151 178.93452454 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02145152 178.93466187 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02145153 178.93466187 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02145154 178.93470764 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02145155 178.93473816 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02145156 179.91983032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02145157 179.91984558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02145158 179.91989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02145159 179.91989136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02145160 179.91995239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02145161 179.91995239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02145162 179.91999817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02145163 179.91999817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02145164 179.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02145165 179.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02145166 179.92005920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02145167 179.92007446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02145168 179.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02145169 179.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02145170 179.92013550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02145171 179.92013550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02145172 179.92015076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02145173 179.92015076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02145174 179.92018127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02145175 179.92018127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02145176 179.92021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02145177 179.92021179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02145178 179.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02145179 179.92024231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02145180 179.92027283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02145181 179.92027283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02145182 179.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02145183 179.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02145184 179.92031860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02145185 179.92031860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02145186 179.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02145187 179.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02145188 179.92044067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02145189 179.92045593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02145190 179.92048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02145191 179.92048645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02145192 179.92051697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02145193 179.92051697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02145194 179.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02145195 179.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02145196 179.92056274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02145197 179.92056274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02145198 179.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02145199 179.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02145200 179.92060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02145201 179.92060852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02145202 179.92063904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02145203 179.92063904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02145204 179.92066956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02145205 179.92068481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02145206 179.92068481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02145207 179.92070007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02145208 179.92073059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02145209 179.92073059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02145210 179.92076111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02145211 179.92076111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02145212 179.92077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02145213 179.92077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02145214 179.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02145215 179.92082214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02145216 179.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02145217 179.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02145218 179.92086792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02145219 179.92086792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02145220 179.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02145221 179.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02145222 179.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02145223 179.92092896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02145224 179.92094421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02145225 179.92094421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02145226 179.92097473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02145227 179.92097473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02145228 179.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02145229 179.92100525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02145230 179.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02145231 179.92103577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02145232 179.92106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02145233 179.92106628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02145234 179.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02145235 179.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02145236 179.92111206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02145237 179.92111206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02145238 179.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02145239 179.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02145240 179.92115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02145241 179.92115784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02145242 179.92118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02145243 179.92118835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02145244 179.92123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02145245 179.92123413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02145246 179.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02145247 179.92124939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02145248 179.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02145249 179.92127991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02145250 179.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02145251 179.92131042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02145252 179.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02145253 179.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02145254 179.92137146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02145255 179.92137146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02145256 179.92140198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02145257 179.92140198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02145258 179.92141724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02145259 179.92141724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02145260 179.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02145261 179.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02145262 179.92147827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02145263 179.92147827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02145264 179.92149353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02145265 179.92149353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02145266 179.92152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02145267 179.92152405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02145268 179.92155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02145269 179.92155457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02145270 179.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02145271 179.92158508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02145272 179.92161560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02145273 179.92161560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02145274 179.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02145275 179.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02145276 179.92166138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02145277 179.92166138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02145278 179.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02145279 179.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02145280 179.92172241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02145281 179.92173767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02145282 179.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02145283 179.92176819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02145284 179.92179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02145285 179.92179871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02145286 179.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02145287 179.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02145288 179.92184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02145289 179.92184448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02145290 179.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02145291 179.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02145292 179.92189026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02145293 179.92189026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02145294 179.92192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02145295 179.92192078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02145296 179.92195129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02145297 179.92195129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02145298 179.92196655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02145299 179.92196655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02145300 179.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02145301 179.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02145302 179.92202759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02145303 179.92202759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02145304 179.92204285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02145305 179.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02145306 179.92208862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02145307 179.92208862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02145308 179.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02145309 179.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02145310 179.92213440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02145311 179.92213440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02145312 179.92216492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02145313 179.92216492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02145314 179.92219543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02145315 179.92219543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02145316 179.92222595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02145317 179.92222595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02145318 179.92225647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02145319 179.92225647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02145320 179.92227173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02145321 179.92227173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02145322 179.92230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02145323 179.92231750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02145324 179.92233276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02145325 179.92234802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02145326 179.92236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02145327 179.92236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02145328 179.92239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02145329 179.92239380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02145330 179.92242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02145331 179.92242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02145332 179.92243958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02145333 179.92243958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02145334 179.92247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02145335 179.92247009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02145336 179.92250061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02145337 179.92251587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02145338 179.92253113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02145339 179.92253113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02145340 179.92256165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02145341 179.92256165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02145342 179.92259216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02145343 179.92259216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02145344 179.92260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02145345 179.92260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02145346 179.92263794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02145347 179.92263794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02145348 179.92266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02145349 179.92266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02145350 179.92269897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02145351 179.92269897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02145352 179.92272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02145353 179.92272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02145354 179.92274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02145355 179.92274475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02145356 179.92277527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02145357 179.92279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02145358 179.92280579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02145359 179.92282104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02145360 179.92283630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02145361 179.92283630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02145362 179.92286682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02145363 179.92286682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02145364 179.92289734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02145365 179.92289734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02145366 179.92291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02145367 179.92291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02145368 179.92294312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02145369 179.92294312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02145370 179.92297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02145371 179.92298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02145372 179.92298889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02145373 179.92300415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02145374 179.92303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02145375 179.92303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02145376 179.92306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02145377 179.92306519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02145378 179.92308044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02145379 179.92308044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02145380 179.92311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02145381 179.92311096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02145382 179.92314148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02145383 179.92314148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02145384 179.92315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02145385 179.92315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02145386 179.92318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02145387 179.92318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02145388 179.92321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02145389 179.92321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02145390 179.92323303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02145391 179.92323303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02145392 179.92326355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02145393 179.92327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02145394 179.92329407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02145395 179.92330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02145396 179.92332458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02145397 179.92332458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02145398 179.92335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02145399 179.92335510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02145400 179.92338562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02145401 179.92338562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02145402 179.92340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02145403 179.92340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02145404 179.92343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02145405 179.92343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02145406 179.92346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02145407 179.92346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02145408 179.92347717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02145409 179.92347717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02145410 179.92350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02145411 179.92350769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02145412 179.92353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02145413 179.92353821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02145414 179.92355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02145415 179.92356873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02145416 179.92358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02145417 179.92359924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02145418 179.92362976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02145419 179.92362976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02145420 179.92364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02145421 179.92364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02145422 179.92367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02145423 179.92367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02145424 179.92370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02145425 179.92370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02145426 179.92372131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02145427 179.92372131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02145428 179.92375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02145429 179.92375183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02145430 179.92378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02145431 179.92378235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02145432 179.92381287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02145433 179.92381287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02145434 179.92384338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02145435 179.92384338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02145436 179.92385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02145437 179.92385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02145438 179.92388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02145439 179.92388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02145440 179.92391968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02145441 179.92393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02145442 179.92393494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02145443 179.92395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02145444 179.92398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02145445 179.92398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02145446 179.92401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02145447 179.92401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02145448 179.92402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02145449 179.92402649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02145450 179.92405701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02145451 179.92405701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02145452 179.92408752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02145453 179.92408752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02145454 179.92410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02145455 179.92410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02145456 179.92413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02145457 179.92413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02145458 179.92416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02145459 179.92416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02145460 179.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02145461 179.92417908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02145462 179.92420959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02145463 179.92422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02145464 179.92424011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02145465 179.92425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02145466 179.92427063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02145467 179.92427063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02145468 179.92430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02145469 179.92430115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02145470 179.92433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02145471 179.92433167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02145472 179.92434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02145473 179.92434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02145474 179.92437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02145475 179.92437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02145476 179.92440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02145477 179.92440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02145478 179.92442322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02145479 179.92442322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02145480 179.92445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02145481 179.92445374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02145482 179.92448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02145483 179.92448425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02145484 179.92449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02145485 179.92451477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02145486 179.92453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02145487 179.92454529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02145488 179.92457581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02145489 179.92457581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02145490 179.92459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02145491 179.92459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02145492 179.92462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02145493 179.92462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02145494 179.92465210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02145495 179.92465210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02145496 179.92466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02145497 179.92466736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02145498 179.92469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02145499 179.92469788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02145500 179.92472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02145501 179.92472839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02145502 179.92474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02145503 179.92474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02145504 179.92477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02145505 179.92478943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02145506 179.92480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02145507 179.92481995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02145508 179.92483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02145509 179.92483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02145510 179.92486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02145511 179.92486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02145512 179.92489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02145513 179.92489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02145514 179.92491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02145515 179.92491150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02145516 179.92494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02145517 179.92494202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02145518 179.92497253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02145519 179.92497253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02145520 179.92498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02145521 179.92500305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02145522 179.92503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02145523 179.92503357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02145524 179.92504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02145525 179.92504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02145526 179.92507935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02145527 179.92507935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02145528 179.92510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02145529 179.92510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02145530 179.92514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02145531 179.92514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02145532 179.92517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02145533 179.92517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02145534 179.92520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02145535 179.92520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02145536 179.92521667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02145537 179.92521667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02145538 179.92524719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02145539 179.92526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02145540 179.92529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02145541 179.92529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02145542 179.92530823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02145543 179.92530823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02145544 179.92533875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02145545 179.92533875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02145546 179.92536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02145547 179.92536926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02145548 179.92538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02145549 179.92538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02145550 179.92541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02145551 179.92541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02145552 179.92544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02145553 179.92544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02145554 179.92546082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02145555 179.92547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02145556 179.92550659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02145557 179.92550659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02145558 179.92553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02145559 179.92553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02145560 179.92555237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02145561 179.92555237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02145562 179.92558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02145563 179.92558289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02145564 179.92561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02145565 179.92561340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02145566 179.92564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02145567 179.92564392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02145568 179.92567444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02145569 179.92567444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02145570 179.92568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02145571 179.92568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02145572 179.92572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02145573 179.92572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02145574 179.92575073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02145575 179.92576599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02145576 179.92578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02145577 179.92578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02145578 179.92581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02145579 179.92581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02145580 179.92584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02145581 179.92584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02145582 179.92585754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02145583 179.92587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02145584 179.92588806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02145585 179.92590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02145586 179.92593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02145587 179.92593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02145588 179.92594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02145589 179.92594910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02145590 179.92597961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02145591 179.92597961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02145592 179.92601013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02145593 179.92601013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02145594 179.92602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02145595 179.92602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02145596 179.92605591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02145597 179.92605591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02145598 179.92608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02145599 179.92608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02145600 179.92611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02145601 179.92611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02145602 179.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02145603 179.92616272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02145604 179.92619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02145605 179.92619324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02145606 179.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02145607 179.92622375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02145608 179.92623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02145609 179.92623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02145610 179.92626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02145611 179.92628479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02145612 179.92631531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02145613 179.92631531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02145614 179.92633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02145615 179.92633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02145616 179.92636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02145617 179.92636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02145618 179.92639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02145619 179.92639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02145620 179.92640686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02145621 179.92640686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02145622 179.92643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02145623 179.92643738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02145624 179.92646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02145625 179.92646790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02145626 179.92648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02145627 179.92648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02145628 179.92651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02145629 179.92651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02145630 179.92654419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02145631 179.92655945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02145632 179.92655945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02145633 179.92657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02145634 179.92660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02145635 179.92660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02145636 179.92663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02145637 179.92663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02145638 179.92665100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02145639 179.92665100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02145640 179.92668152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02145641 179.92668152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02145642 179.92671204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02145643 179.92671204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02145644 179.92672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02145645 179.92674255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02145646 179.92677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02145647 179.92677307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02145648 179.92680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02145649 179.92680359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02145650 179.92681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02145651 179.92681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02145652 179.92684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02145653 179.92684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02145654 179.92687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02145655 179.92687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02145656 179.92689514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02145657 179.92689514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02145658 179.92692566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02145659 179.92692566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02145660 179.92695618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02145661 179.92695618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02145662 179.92697144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02145663 179.92698669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02145664 179.92701721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02145665 179.92701721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02145666 179.92703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02145667 179.92703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02145668 179.92706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02145669 179.92706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02145670 179.92709351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02145671 179.92710876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02145672 179.92712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02145673 179.92712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02145674 179.92715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02145675 179.92715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02145676 179.92718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02145677 179.92718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02145678 179.92720032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02145679 179.92721558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02145680 179.92724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02145681 179.92724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02145682 179.92727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02145683 179.92727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02145684 179.92729187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02145685 179.92729187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02145686 179.92732239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02145687 179.92732239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02145688 179.92735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02145689 179.92735291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02145690 179.92736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02145691 179.92738342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02145692 179.92739868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02145693 179.92741394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02145694 179.92742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02145695 179.92742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02145696 179.92745972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02145697 179.92745972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02145698 179.92749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02145699 179.92749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02145700 179.92752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02145701 179.92752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02145702 179.92753601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02145703 179.92753601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02145704 179.92756653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02145705 179.92756653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02145706 179.92759705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02145707 179.92759705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02145708 179.92761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02145709 179.92761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02145710 179.92764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02145711 179.92764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02145712 179.92767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02145713 179.92767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02145714 179.92768860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02145715 179.92770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02145716 179.92773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02145717 179.92773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02145718 179.92774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02145719 179.92774963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02145720 179.92778015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02145721 179.92778015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02145722 179.92781067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02145723 179.92781067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02145724 179.92784119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02145725 179.92784119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02145726 179.92785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02145727 179.92787170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02145728 179.92790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02145729 179.92790222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02145730 179.92791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02145731 179.92791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02145732 179.92794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02145733 179.92794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02145734 179.92797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02145735 179.92797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02145736 179.92799377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02145737 179.92800903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02145738 179.92802429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02145739 179.92803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02145740 179.92807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02145741 179.92807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02145742 179.92808533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02145743 179.92808533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02145744 179.92811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02145745 179.92811584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02145746 179.92814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02145747 179.92814636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02145748 179.92816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02145749 179.92816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02145750 179.92819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02145751 179.92819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02145752 179.92822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02145753 179.92822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02145754 179.92823792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02145755 179.92823792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02145756 179.92826843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02145757 179.92826843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02145758 179.92829895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02145759 179.92831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02145760 179.92831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02145761 179.92832947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02145762 179.92835999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02145763 179.92835999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02145764 179.92839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02145765 179.92839050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02145766 179.92840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02145767 179.92840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02145768 179.92843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02145769 179.92843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02145770 179.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02145771 179.92846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02145772 179.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02145773 179.92848206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02145774 179.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02145775 179.92851257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02145776 179.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02145777 179.92854309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02145778 179.92855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02145779 179.92855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02145780 179.92858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02145781 179.92860413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02145782 179.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02145783 179.92863464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02145784 179.92864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02145785 179.92864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02145786 179.92868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02145787 179.92868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02145788 179.92871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02145789 179.92871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02145790 179.92872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02145791 179.92872620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02145792 179.92875671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02145793 179.92875671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02145794 179.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02145795 179.92878723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02145796 179.92881775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02145797 179.92881775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02145798 179.92884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02145799 179.92884827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02145800 179.92886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02145801 179.92886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02145802 179.92889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02145803 179.92889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02145804 179.92892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02145805 179.92892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02145806 179.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02145807 179.92893982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02145808 179.92897034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02145809 179.92898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02145810 179.92900085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02145811 179.92901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02145812 179.92903137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02145813 179.92903137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02145814 179.92906189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02145815 179.92906189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02145816 179.92909241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02145817 179.92909241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02145818 179.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02145819 179.92910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02145820 179.92913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02145821 179.92913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02145822 179.92916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02145823 179.92916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02145824 179.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02145825 179.92918396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02145826 179.92921448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02145827 179.92921448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02145828 179.92924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02145829 179.92924500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02145830 179.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02145831 179.92926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02145832 179.92929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02145833 179.92930603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02145834 179.92932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02145835 179.92933655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02145836 179.92935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02145837 179.92935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02145838 179.92938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02145839 179.92938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02145840 179.92941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02145841 179.92941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02145842 179.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02145843 179.92942810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02145844 179.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02145845 179.92945862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02145846 179.92948914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02145847 179.92948914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02145848 179.92950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02145849 179.92950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02145850 179.92953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02145851 179.92953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02145852 179.92956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02145853 179.92956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02145854 179.92958069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02145855 179.92959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02145856 179.92962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02145857 179.92962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02145858 179.92965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02145859 179.92965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02145860 179.92967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02145861 179.92967224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02145862 179.92970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02145863 179.92970276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02145864 179.92973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02145865 179.92973328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02145866 179.92974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02145867 179.92974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02145868 179.92977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02145869 179.92979431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02145870 179.92982483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02145871 179.92982483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02145872 179.92984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02145873 179.92984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02145874 179.92987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02145875 179.92987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02145876 179.92990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02145877 179.92990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02145878 179.92991638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02145879 179.92991638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02145880 179.92994690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02145881 179.92994690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02145882 179.92997742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02145883 179.92997742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02145884 179.92999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02145885 179.93000793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02145886 179.93003845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02145887 179.93003845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02145888 179.93005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02145889 179.93005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02145890 179.93008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02145891 179.93008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02145892 179.93011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02145893 179.93011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02145894 179.93013000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02145895 179.93014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02145896 179.93016052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02145897 179.93017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02145898 179.93020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02145899 179.93020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02145900 179.93022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02145901 179.93022156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02145902 179.93025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02145903 179.93025208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02145904 179.93028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02145905 179.93028259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02145906 179.93029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02145907 179.93031311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02145908 179.93032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02145909 179.93034363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02145910 179.93037415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02145911 179.93037415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02145912 179.93038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02145913 179.93038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02145914 179.93041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02145915 179.93041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02145916 179.93045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02145917 179.93045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02145918 179.93046570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02145919 179.93046570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02145920 179.93049622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02145921 179.93049622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02145922 179.93052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02145923 179.93052673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02145924 179.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02145925 179.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02145926 179.93057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02145927 179.93057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02145928 179.93060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02145929 179.93061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02145930 179.93061829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02145931 179.93063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02145932 179.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02145933 179.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02145934 179.93069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02145935 179.93069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02145936 179.93070984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02145937 179.93070984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02145938 179.93074036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02145939 179.93074036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02145940 179.93077087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02145941 179.93077087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02145942 179.93080139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02145943 179.93080139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02145944 179.93083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02145945 179.93083191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02145946 179.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02145947 179.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02145948 179.93087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02145949 179.93087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02145950 179.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02145951 179.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02145952 179.93093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02145953 179.93093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02145954 179.93095398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02145955 179.93095398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02145956 179.93098450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02145957 179.93098450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02145958 179.93101501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02145959 179.93101501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02145960 179.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02145961 179.93104553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02145962 179.93107605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02145963 179.93107605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02145964 179.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02145965 179.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02145966 179.93112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02145967 179.93112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02145968 179.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02145969 179.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02145970 179.93116760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02145971 179.93116760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02145972 179.93119812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02145973 179.93119812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02145974 179.93122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02145975 179.93122864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02145976 179.93124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02145977 179.93124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02145978 179.93127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02145979 179.93127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02145980 179.93130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02145981 179.93132019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02145982 179.93133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02145983 179.93133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02145984 179.93136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02145985 179.93136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02145986 179.93139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02145987 179.93139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02145988 179.93141174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02145989 179.93141174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02145990 179.93144226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02145991 179.93144226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02145992 179.93147278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02145993 179.93147278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02145994 179.93148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02145995 179.93148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02145996 179.93151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02145997 179.93151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02145998 179.93154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02145999 179.93154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02146000 179.93156433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02146001 179.93156433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02146002 179.93159485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02146003 179.93161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02146004 179.93162537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02146005 179.93164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02146006 179.93165588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02146007 179.93165588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02146008 179.93168640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02146009 179.93168640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02146010 179.93171692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02146011 179.93171692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02146012 179.93173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02146013 179.93173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02146014 179.93176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02146015 179.93176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02146016 179.93179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02146017 179.93179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02146018 179.93180847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02146019 179.93180847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02146020 179.93185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02146021 179.93185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02146022 179.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02146023 179.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02146024 179.93190002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02146025 179.93190002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02146026 179.93193054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02146027 179.93193054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02146028 179.93196106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02146029 179.93196106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02146030 179.93199158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02146031 179.93199158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02146032 179.93202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02146033 179.93202209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02146034 179.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02146035 179.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02146036 179.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02146037 179.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02146038 179.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02146039 179.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02146040 179.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02146041 179.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02146042 179.93214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02146043 179.93214417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02146044 179.93218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02146045 179.93218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02146046 179.93220520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02146047 179.93220520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02146048 179.93223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02146049 179.93223572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02146050 179.93226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02146051 179.93226624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02146052 179.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02146053 179.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02146054 179.93232727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02146055 179.93232727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02146056 179.93235779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02146057 179.93235779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02146058 179.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02146059 179.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02146060 179.93240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02146061 179.93240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02146062 179.93243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02146063 179.93243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02146064 179.93244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02146065 179.93244934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02146066 179.93247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02146067 179.93247986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02146068 179.93251038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02146069 179.93251038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02146070 179.93252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02146071 179.93254089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02146072 179.93255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02146073 179.93257141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02146074 179.93260193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02146075 179.93260193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02146076 179.93261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02146077 179.93261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02146078 179.93264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02146079 179.93264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02146080 179.93267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02146081 179.93267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02146082 179.93269348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02146083 179.93269348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02146084 179.93272400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02146085 179.93272400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02146086 179.93275452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02146087 179.93275452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02146088 179.93276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02146089 179.93276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02146090 179.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02146091 179.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02146092 179.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02146093 179.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02146094 179.93284607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02146095 179.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02146096 179.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02146097 179.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02146098 179.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02146099 179.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02146100 179.93293762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02146101 179.93293762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02146102 179.93296814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02146103 179.93296814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02146104 179.93299866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02146105 179.93299866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02146106 179.93301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02146107 179.93301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02146108 179.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02146109 179.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02146110 179.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02146111 179.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02146112 179.93309021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02146113 179.93309021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02146114 179.93312073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02146115 179.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02146116 179.93315125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02146117 179.93315125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02146118 179.93318176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02146119 179.93318176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02146120 179.93321228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02146121 179.93321228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02146122 179.93324280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02146123 179.93324280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02146124 179.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02146125 179.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02146126 179.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02146127 179.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02146128 179.93331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02146129 179.93331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02146130 179.93333435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02146131 179.93333435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02146132 179.93336487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02146133 179.93336487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02146134 179.93339539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02146135 179.93339539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02146136 179.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02146137 179.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02146138 179.93344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02146139 179.93345642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02146140 179.93347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02146141 179.93347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02146142 179.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02146143 179.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02146144 179.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02146145 179.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02146146 179.93354797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02146147 179.93354797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02146148 179.93357849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02146149 179.93357849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02146150 179.93360901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02146151 179.93360901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02146152 179.93363953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02146153 179.93363953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02146154 179.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02146155 179.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02146156 179.93368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02146157 179.93368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02146158 179.93371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02146159 179.93371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02146160 179.93374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02146161 179.93374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02146162 179.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02146163 179.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02146164 179.93379211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02146165 179.93379211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02146166 179.93382263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02146167 179.93382263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02146168 179.93385315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02146169 179.93386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02146170 179.93386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02146171 179.93388367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02146172 179.93391418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02146173 179.93391418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02146174 179.93394470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02146175 179.93394470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02146176 179.93395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02146177 179.93395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02146178 179.93399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02146179 179.93399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02146180 179.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02146181 179.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02146182 179.93403625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02146183 179.93403625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02146184 179.93406677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02146185 179.93406677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02146186 179.93409729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02146187 179.93409729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02146188 179.93411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02146189 179.93411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02146190 179.93414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02146191 179.93414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02146192 179.93417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02146193 179.93418884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02146194 179.93418884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02146195 179.93420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02146196 179.93423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02146197 179.93423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02146198 179.93426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02146199 179.93426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02146200 179.93428040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02146201 179.93429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02146202 179.93432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02146203 179.93432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02146204 179.93434143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02146205 179.93434143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02146206 179.93437195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02146207 179.93437195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02146208 179.93440247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02146209 179.93440247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02146210 179.93443298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02146211 179.93443298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02146212 179.93444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02146213 179.93444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02146214 179.93447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02146215 179.93447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02146216 179.93450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02146217 179.93450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02146218 179.93452454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02146219 179.93452454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02146220 179.93455505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02146221 179.93455505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02146222 179.93458557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02146223 179.93458557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02146224 179.93460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02146225 179.93461609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02146226 179.93464661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02146227 179.93464661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02146228 179.93466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02146229 179.93466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02146230 179.93469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02146231 179.93469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02146232 179.93472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02146233 179.93472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02146234 179.93473816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02146235 179.93473816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02146236 179.93476868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02146237 179.93478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02146238 179.93481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02146239 179.93481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02146240 179.93482971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02146241 179.93482971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02146242 179.93486023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02146243 179.93486023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02146244 179.93489075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02146245 179.93489075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02146246 179.93490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02146247 179.93492126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02146248 179.93493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02146249 179.93495178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02146250 179.93498230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02146251 179.93498230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02146252 179.93499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02146253 179.93499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02146254 179.93502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02146255 179.93502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02146256 179.93505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02146257 179.93505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02146258 179.93507385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02146259 179.93507385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02146260 179.93510437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02146261 179.93510437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02146262 179.93513489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02146263 179.93513489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02146264 179.93515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02146265 179.93515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02146266 179.93518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02146267 179.93518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02146268 179.93521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02146269 179.93521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02146270 179.93522644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02146271 179.93524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02146272 179.93525696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02146273 179.93527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02146274 179.93530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02146275 179.93530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02146276 179.93531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02146277 179.93531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02146278 179.93534851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02146279 179.93534851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02146280 179.93537903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02146281 179.93537903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02146282 179.93539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02146283 179.93539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02146284 179.93542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02146285 179.93542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02146286 179.93545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02146287 179.93545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02146288 179.93547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02146289 179.93547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02146290 179.93550110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02146291 179.93550110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02146292 179.93553162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02146293 179.93553162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02146294 179.93554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02146295 179.93556213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02146296 179.93559265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02146297 179.93559265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02146298 179.93562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02146299 179.93562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02146300 179.93563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02146301 179.93563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02146302 179.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02146303 179.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02146304 179.93569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02146305 179.93569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02146306 179.93571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02146307 179.93571472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02146308 179.93574524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02146309 179.93574524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02146310 179.93577576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02146311 179.93577576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02146312 179.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02146313 179.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02146314 179.93582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02146315 179.93583679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02146316 179.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02146317 179.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02146318 179.93588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02146319 179.93588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02146320 179.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02146321 179.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02146322 179.93594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02146323 179.93594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02146324 179.93595886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02146325 179.93595886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02146326 179.93598938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02146327 179.93598938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02146328 179.93601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02146329 179.93601990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02146330 179.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02146331 179.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02146332 179.93606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02146333 179.93606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02146334 179.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02146335 179.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02146336 179.93611145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02146337 179.93612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02146338 179.93614197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02146339 179.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02146340 179.93617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02146341 179.93617249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02146342 179.93620300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02146343 179.93620300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02146344 179.93623352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02146345 179.93623352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02146346 179.93624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02146347 179.93624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02146348 179.93627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02146349 179.93627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02146350 179.93630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02146351 179.93630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02146352 179.93634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02146353 179.93634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02146354 179.93635559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02146355 179.93635559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02146356 179.93638611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02146357 179.93638611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02146358 179.93641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02146359 179.93641663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02146360 179.93643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02146361 179.93644714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02146362 179.93647766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02146363 179.93647766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02146364 179.93649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02146365 179.93649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02146366 179.93652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02146367 179.93652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02146368 179.93655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02146369 179.93655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02146370 179.93656921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02146371 179.93656921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02146372 179.93659973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02146373 179.93659973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02146374 179.93663025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02146375 179.93664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02146376 179.93666077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02146377 179.93666077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02146378 179.93669128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02146379 179.93669128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02146380 179.93672180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02146381 179.93672180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02146382 179.93673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02146383 179.93675232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02146384 179.93678284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02146385 179.93678284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02146386 179.93681335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02146387 179.93681335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02146388 179.93682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02146389 179.93682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02146390 179.93685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02146391 179.93685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02146392 179.93688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02146393 179.93688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02146394 179.93690491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02146395 179.93690491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02146396 179.93693542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02146397 179.93693542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02146398 179.93696594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02146399 179.93696594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02146400 179.93698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02146401 179.93698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02146402 179.93701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02146403 179.93702698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02146404 179.93704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02146405 179.93704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02146406 179.93707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02146407 179.93707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02146408 179.93710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02146409 179.93710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02146410 179.93713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02146411 179.93713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02146412 179.93714905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02146413 179.93714905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02146414 179.93717957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02146415 179.93717957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02146416 179.93721008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02146417 179.93721008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02146418 179.93722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02146419 179.93722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02146420 179.93725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02146421 179.93725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02146422 179.93728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02146423 179.93728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02146424 179.93730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02146425 179.93730164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02146426 179.93733215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02146427 179.93734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02146428 179.93736267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02146429 179.93736267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02146430 179.93739319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02146431 179.93739319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02146432 179.93742371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02146433 179.93742371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02146434 179.93743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02146435 179.93743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02146436 179.93746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02146437 179.93746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02146438 179.93750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02146439 179.93750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02146440 179.93753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02146441 179.93753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02146442 179.93754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02146443 179.93754578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02146444 179.93757629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02146445 179.93757629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02146446 179.93760681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02146447 179.93760681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02146448 179.93762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02146449 179.93763733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02146450 179.93765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02146451 179.93766785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02146452 179.93768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02146453 179.93768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02146454 179.93771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02146455 179.93771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02146456 179.93774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02146457 179.93774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02146458 179.93775940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02146459 179.93775940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02146460 179.93778992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02146461 179.93778992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02146462 179.93782043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02146463 179.93782043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02146464 179.93783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02146465 179.93783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02146466 179.93786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02146467 179.93786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02146468 179.93789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02146469 179.93789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02146470 179.93792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02146471 179.93792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02146472 179.93794250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02146473 179.93795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02146474 179.93798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02146475 179.93798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02146476 179.93800354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02146477 179.93800354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02146478 179.93803406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02146479 179.93803406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02146480 179.93806458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02146481 179.93806458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02146482 179.93807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02146483 179.93807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02146484 179.93811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02146485 179.93811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02146486 179.93814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02146487 179.93814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02146488 179.93815613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02146489 179.93815613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02146490 179.93818665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02146491 179.93818665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02146492 179.93821716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02146493 179.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02146494 179.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02146495 179.93824768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02146496 179.93827820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02146497 179.93827820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02146498 179.93830872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02146499 179.93830872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02146500 179.93832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02146501 179.93832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02146502 179.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02146503 179.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02146504 179.93838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02146505 179.93838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02146506 179.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02146507 179.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02146508 179.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02146509 179.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02146510 179.93849182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02146511 179.93850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02146512 179.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02146513 179.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02146514 179.93855286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02146515 179.93855286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02146516 179.93858337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02146517 179.93858337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02146518 179.93861389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02146519 179.93861389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02146520 179.93864441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02146521 179.93864441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02146522 179.93867493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02146523 179.93867493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02146524 179.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02146525 179.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02146526 179.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02146527 179.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02146528 179.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02146529 179.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02146530 179.93879700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02146531 179.93879700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02146532 179.93882751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02146533 179.93884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02146534 179.93887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02146535 179.93887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02146536 179.93888855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02146537 179.93888855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02146538 179.93891907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02146539 179.93891907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02146540 179.93894958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02146541 179.93894958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02146542 179.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02146543 179.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02146544 179.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02146545 179.93901062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02146546 179.93904114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02146547 179.93904114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02146548 179.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02146549 179.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02146550 179.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02146551 179.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02146552 179.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02146553 179.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02146554 179.93913269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02146555 179.93914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02146556 179.93917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02146557 179.93917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02146558 179.93919373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02146559 179.93919373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02146560 179.93922424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02146561 179.93922424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02146562 179.93925476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02146563 179.93925476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02146564 179.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02146565 179.93928528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02146566 179.93931580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02146567 179.93931580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02146568 179.93934631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02146569 179.93934631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02146570 179.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02146571 179.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02146572 179.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02146573 179.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02146574 179.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02146575 179.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02146576 179.93943787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02146577 179.93945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02146578 179.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02146579 179.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02146580 179.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02146581 179.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02146582 179.93952942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02146583 179.93952942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02146584 179.93955994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02146585 179.93955994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02146586 179.93959045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02146587 179.93959045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02146588 179.93962097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02146589 179.93962097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02146590 179.93965149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02146591 179.93965149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02146592 179.93966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02146593 179.93966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02146594 179.93969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02146595 179.93969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02146596 179.93972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02146597 179.93972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02146598 179.93974304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02146599 179.93974304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02146600 179.93977356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02146601 179.93977356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02146602 179.93980408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02146603 179.93981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02146604 179.93983459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02146605 179.93983459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02146606 179.93986511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02146607 179.93986511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02146608 179.93989563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02146609 179.93989563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02146610 179.93991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02146611 179.93991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02146612 179.93994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02146613 179.93994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02146614 179.93997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02146615 179.93997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02146616 179.93998718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02146617 179.93998718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02146618 179.94001770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02146619 179.94001770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02146620 179.94004822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02146621 179.94004822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02146622 179.94006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02146623 179.94006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02146624 179.94010925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02146625 179.94010925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02146626 179.94013977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02146627 179.94013977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02146628 179.94015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02146629 179.94015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02146630 179.94018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02146631 179.94018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02146632 179.94021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02146633 179.94023132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02146634 179.94024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02146635 179.94024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02146636 179.94027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02146637 179.94027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02146638 179.94030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02146639 179.94030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02146640 179.94032288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02146641 179.94033813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02146642 179.94036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02146643 179.94036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02146644 179.94038391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02146645 179.94038391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02146646 179.94041443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02146647 179.94041443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02146648 179.94044495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02146649 179.94044495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02146650 179.94046021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02146651 179.94046021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02146652 179.94049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02146653 179.94050598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02146654 179.94052124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02146655 179.94053650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02146656 179.94055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02146657 179.94055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02146658 179.94058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02146659 179.94058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02146660 179.94061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02146661 179.94061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02146662 179.94062805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02146663 179.94062805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02146664 179.94065857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02146665 179.94065857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02146666 179.94068909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02146667 179.94068909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02146668 179.94070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02146669 179.94070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02146670 179.94073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02146671 179.94075012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02146672 179.94078064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02146673 179.94078064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02146674 179.94079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02146675 179.94079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02146676 179.94082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02146677 179.94082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02146678 179.94085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02146679 179.94085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02146680 179.94087219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02146681 179.94087219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02146682 179.94090271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02146683 179.94091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02146684 179.94093323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02146685 179.94093323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02146686 179.94096375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02146687 179.94096375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02146688 179.94099426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02146689 179.94099426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02146690 179.94102478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02146691 179.94102478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02146692 179.94104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02146693 179.94104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02146694 179.94107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02146695 179.94107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02146696 179.94110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02146697 179.94110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02146698 179.94111633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02146699 179.94111633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02146700 179.94114685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02146701 179.94114685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02146702 179.94117737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02146703 179.94117737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02146704 179.94119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02146705 179.94120789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02146706 179.94122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02146707 179.94123840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02146708 179.94125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02146709 179.94125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02146710 179.94128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02146711 179.94128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02146712 179.94131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02146713 179.94131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02146714 179.94134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02146715 179.94134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02146716 179.94136047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02146717 179.94136047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02146718 179.94139099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02146719 179.94139099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02146720 179.94142151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02146721 179.94142151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02146722 179.94143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02146723 179.94143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02146724 179.94146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02146725 179.94146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02146726 179.94149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02146727 179.94149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02146728 179.94151306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02146729 179.94152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02146730 179.94155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02146731 179.94155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02146732 179.94157410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02146733 179.94157410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02146734 179.94160461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02146735 179.94160461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02146736 179.94163513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02146737 179.94163513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02146738 179.94165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02146739 179.94165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02146740 179.94168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02146741 179.94168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02146742 179.94171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02146743 179.94171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02146744 179.94174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02146745 179.94174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02146746 179.94175720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02146747 179.94175720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02146748 179.94178772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02146749 179.94180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02146750 179.94181824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02146751 179.94181824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02146752 179.94184875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02146753 179.94184875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02146754 179.94187927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02146755 179.94187927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02146756 179.94189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02146757 179.94189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02146758 179.94192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02146759 179.94192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02146760 179.94195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02146761 179.94195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02146762 179.94197083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02146763 179.94197083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02146764 179.94200134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02146765 179.94200134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02146766 179.94203186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02146767 179.94203186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02146768 179.94204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02146769 179.94204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02146770 179.94207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02146771 179.94207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02146772 179.94210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02146773 179.94212341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02146774 179.94213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02146775 179.94213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02146776 179.94216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02146777 179.94216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02146778 179.94219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02146779 179.94219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02146780 179.94221497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02146781 179.94221497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02146782 179.94224548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02146783 179.94224548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02146784 179.94227600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02146785 179.94227600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02146786 179.94229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02146787 179.94229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02146788 179.94232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02146789 179.94232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02146790 179.94235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02146791 179.94235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02146792 179.94236755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02146793 179.94236755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02146794 179.94239807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02146795 179.94241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02146796 179.94242859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02146797 179.94244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02146798 179.94245911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02146799 179.94245911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02146800 179.94248962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02146801 179.94248962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02146802 179.94252014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02146803 179.94252014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02146804 179.94253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02146805 179.94253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02146806 179.94256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02146807 179.94256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02146808 179.94259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02146809 179.94259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02146810 179.94261169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02146811 179.94261169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02146812 179.94264221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02146813 179.94264221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02146814 179.94268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02146815 179.94268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02146816 179.94270325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02146817 179.94270325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02146818 179.94273376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02146819 179.94273376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02146820 179.94276428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02146821 179.94276428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02146822 179.94277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02146823 179.94279480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02146824 179.94282532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02146825 179.94282532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02146826 179.94284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02146827 179.94284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02146828 179.94287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02146829 179.94287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02146830 179.94290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02146831 179.94290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02146832 179.94293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02146833 179.94293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02146834 179.94294739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02146835 179.94294739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02146836 179.94297791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02146837 179.94297791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02146838 179.94300842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02146839 179.94300842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02146840 179.94302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02146841 179.94302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02146842 179.94305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02146843 179.94306946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02146844 179.94308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02146845 179.94308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02146846 179.94311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02146847 179.94311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02146848 179.94314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02146849 179.94314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02146850 179.94316101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02146851 179.94316101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02146852 179.94319153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02146853 179.94319153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02146854 179.94322205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02146855 179.94322205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02146856 179.94323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02146857 179.94323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02146858 179.94326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02146859 179.94326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02146860 179.94329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02146861 179.94329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02146862 179.94332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02146863 179.94332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02146864 179.94334412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02146865 179.94335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02146866 179.94337463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02146867 179.94338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02146868 179.94340515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02146869 179.94340515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02146870 179.94343567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02146871 179.94343567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02146872 179.94346619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02146873 179.94346619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02146874 179.94348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02146875 179.94348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02146876 179.94351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02146877 179.94351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02146878 179.94354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02146879 179.94354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02146880 179.94355774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02146881 179.94355774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02146882 179.94358826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02146883 179.94358826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02146884 179.94361877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02146885 179.94361877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02146886 179.94363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02146887 179.94364929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02146888 179.94366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02146889 179.94367981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02146890 179.94371033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02146891 179.94371033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02146892 179.94372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02146893 179.94372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02146894 179.94375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02146895 179.94375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02146896 179.94378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02146897 179.94378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02146898 179.94380188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02146899 179.94380188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02146900 179.94383240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02146901 179.94383240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02146902 179.94386292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02146903 179.94386292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02147790 179.95606995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02147791 179.95608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02147792 179.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02147793 179.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02147794 179.95613098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02147795 179.95613098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02147796 179.95616150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02147797 179.95616150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02147798 179.95619202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02147799 179.95619202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02147800 179.95622253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02147801 179.95622253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02147802 179.95625305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02147803 179.95625305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02147804 179.95626831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02147805 179.95626831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02147806 179.95629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02147807 179.95629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02147808 179.95632935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02147809 179.95632935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02147810 179.95634460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02147811 179.95635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02147812 179.95639038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02147813 179.95639038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02147814 179.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02147815 179.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02147816 179.95643616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02147817 179.95643616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02147818 179.95646667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02147819 179.95646667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02147820 179.95649719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02147821 179.95651245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02147822 179.95652771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02147823 179.95652771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02147824 179.95655823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02147825 179.95655823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02147826 179.95658875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02147827 179.95658875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02147828 179.95661926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02147829 179.95661926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02147830 179.95664978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02147831 179.95664978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02147832 179.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02147833 179.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02150542 179.99411011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -02150543 179.99412537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -02150544 179.99415588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -02150545 179.99415588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -02150546 179.99417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -02150547 179.99417114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -02150548 179.99420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -02150549 179.99420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -02150550 179.99423218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -02150551 179.99423218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -02150552 179.99424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -02150553 179.99424744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -02150554 179.99427795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -02150555 179.99429321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -02150556 179.99430847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -02150557 179.99432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -02150558 179.99433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -02150559 179.99433899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -02150560 179.99436951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -02150561 179.99436951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -02150562 179.99440002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -02150563 179.99440002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -02150564 179.99441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -02150565 179.99441528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -02150566 179.99444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -02150567 179.99446106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -02150568 179.99447632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -02150569 179.99447632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -02150570 179.99450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -02150571 179.99450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -02150572 179.99453735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -02150573 179.99453735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -02150574 179.99455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -02150575 179.99455261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -02150576 179.99458313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -02150577 179.99459839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -02150578 179.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -02150579 179.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -02150580 179.99464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -02150581 179.99464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -02150582 179.99467468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -02150583 179.99467468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -02150584 179.99470520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -02150585 179.99470520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -02152832 180.02545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -02152833 180.02545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -02152834 180.02548218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -02152835 180.02548218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -02152836 180.02551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -02152837 180.02551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -02152838 180.02554321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -02152839 180.02554321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -02152840 180.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10068 -02152841 180.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10068 -02152842 180.02560425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10078 -02152843 180.02560425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10078 -02152844 180.02561951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10088 -02152845 180.02561951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10088 -02152846 180.02565002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10098 -02152847 180.02565002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10098 -02152848 180.02568054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a8 -02152849 180.02568054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a8 -02152850 180.02569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b8 -02152851 180.02571106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b8 -02152852 180.02574158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c8 -02152853 180.02574158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c8 -02152854 180.02577209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d8 -02152855 180.02577209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d8 -02152856 180.02578735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e8 -02152857 180.02578735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e8 -02152858 180.02581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f8 -02152859 180.02581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f8 -02152860 180.02584839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -02152861 180.02584839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -02152862 180.02587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -02152863 180.02587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -02152864 180.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -02152865 180.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -02152866 180.02593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -02152867 180.02593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -02152868 180.02595520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -02152869 180.02595520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -02152870 180.02598572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -02152871 180.02598572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -02152872 180.02601624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -02152873 180.02601624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -02152874 180.02603149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -02152875 180.02603149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -02155164 180.05737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14908 -02155165 180.05738831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14908 -02155166 180.05740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14918 -02155167 180.05740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14918 -02155168 180.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14928 -02155169 180.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14928 -02155170 180.05746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14938 -02155171 180.05746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14938 -02155172 180.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14948 -02155173 180.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14948 -02155174 180.05752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14958 -02155175 180.05752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14958 -02155176 180.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14968 -02155177 180.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14968 -02155178 180.05757141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14978 -02155179 180.05757141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14978 -02155180 180.05760193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14988 -02155181 180.05760193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14988 -02155182 180.05763245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14998 -02155183 180.05763245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14998 -02155184 180.05764771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a8 -02155185 180.05766296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149a8 -02155186 180.05769348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b8 -02155187 180.05769348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149b8 -02155188 180.05770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c8 -02155189 180.05770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149c8 -02155190 180.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d8 -02155191 180.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d8 -02155192 180.05776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -02155193 180.05778503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -02155194 180.05778503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -02155195 180.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -02155196 180.05783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -02155197 180.05783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -02155198 180.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -02155199 180.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -02155200 180.05787659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -02155201 180.05787659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -02155202 180.05790710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -02155203 180.05790710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -02155204 180.05793762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -02155205 180.05795288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -02155206 180.05796814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -02155207 180.05796814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -02157716 180.09226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c8 -02157717 180.09226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c8 -02157718 180.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d8 -02157719 180.09230042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d8 -02157720 180.09233093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e8 -02157721 180.09233093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e8 -02157722 180.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f8 -02157723 180.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f8 -02157724 180.09237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19908 -02157725 180.09237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19908 -02157726 180.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19918 -02157727 180.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19918 -02157728 180.09242249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19928 -02157729 180.09243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19928 -02157730 180.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19938 -02157731 180.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19938 -02157732 180.09249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19948 -02157733 180.09249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19948 -02157734 180.09251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19958 -02157735 180.09251404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19958 -02157736 180.09254456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19968 -02157737 180.09254456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19968 -02157738 180.09257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19978 -02157739 180.09257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19978 -02157740 180.09260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19988 -02157741 180.09260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19988 -02157742 180.09263611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19998 -02157743 180.09263611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19998 -02157744 180.09266663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a8 -02157745 180.09266663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a8 -02157746 180.09268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b8 -02157747 180.09268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b8 -02157748 180.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c8 -02157749 180.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c8 -02157750 180.09274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d8 -02157751 180.09274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d8 -02157752 180.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e8 -02157753 180.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e8 -02157754 180.09280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f8 -02157755 180.09280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f8 -02157756 180.09281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a08 -02157757 180.09281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a08 -02157758 180.09284973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a18 -02157759 180.09284973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a18 -02160138 180.12570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e478 -02160139 180.12570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e478 -02160140 180.12573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e488 -02160141 180.12573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e488 -02160142 180.12576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e498 -02160143 180.12576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e498 -02160144 180.12577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a8 -02160145 180.12577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4a8 -02160146 180.12580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b8 -02160147 180.12580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4b8 -02160148 180.12583923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c8 -02160149 180.12583923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4c8 -02160150 180.12586975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d8 -02160151 180.12586975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4d8 -02160152 180.12588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e8 -02160153 180.12588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4e8 -02160154 180.12591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f8 -02160155 180.12593079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e4f8 -02160156 180.12594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e508 -02160157 180.12594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e508 -02160158 180.12597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -02160159 180.12597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -02160160 180.12600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -02160161 180.12600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -02160162 180.12602234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -02160163 180.12602234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -02160164 180.12605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -02160165 180.12606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -02160166 180.12609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -02160167 180.12609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -02160168 180.12611389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -02160169 180.12611389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -02160170 180.12614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -02160171 180.12614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -02160172 180.12617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -02160173 180.12617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -02160174 180.12619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -02160175 180.12619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -02160176 180.12622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -02160177 180.12623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -02160178 180.12625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -02160179 180.12626648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -02160180 180.12628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -02160181 180.12628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -02162582 180.15904236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d8 -02162583 180.15904236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230d8 -02162584 180.15907288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e8 -02162585 180.15907288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230e8 -02162586 180.15908813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f8 -02162587 180.15908813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x230f8 -02162588 180.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23108 -02162589 180.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23108 -02162590 180.15914917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23118 -02162591 180.15914917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23118 -02162592 180.15916443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23128 -02162593 180.15916443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23128 -02162594 180.15919495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23138 -02162595 180.15919495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23138 -02162596 180.15922546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23148 -02162597 180.15922546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23148 -02162598 180.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23158 -02162599 180.15925598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23158 -02162600 180.15927124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23168 -02162601 180.15928650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23168 -02162602 180.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23178 -02162603 180.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23178 -02162604 180.15933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23188 -02162605 180.15933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23188 -02162606 180.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23198 -02162607 180.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23198 -02162608 180.15937805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a8 -02162609 180.15937805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231a8 -02162610 180.15940857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b8 -02162611 180.15940857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231b8 -02162612 180.15943909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c8 -02162613 180.15943909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231c8 -02162614 180.15946960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d8 -02162615 180.15946960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231d8 -02162616 180.15948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e8 -02162617 180.15950012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231e8 -02162618 180.15953064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f8 -02162619 180.15953064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x231f8 -02162620 180.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23208 -02162621 180.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23208 -02162622 180.15957642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23218 -02162623 180.15957642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23218 -02162624 180.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23228 -02162625 180.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23228 -02165022 180.19259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d18 -02165023 180.19261169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d18 -02165024 180.19262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -02165025 180.19264221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -02165026 180.19265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -02165027 180.19267273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -02165028 180.19268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -02165029 180.19268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -02165030 180.19271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -02165031 180.19271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -02165032 180.19274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -02165033 180.19274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -02165034 180.19276428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -02165035 180.19276428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -02165036 180.19279480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -02165037 180.19279480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -02165038 180.19282532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -02165039 180.19282532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -02165040 180.19284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -02165041 180.19284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -02165042 180.19287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -02165043 180.19287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -02165044 180.19290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -02165045 180.19290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -02165046 180.19291687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -02165047 180.19293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -02165048 180.19294739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -02165049 180.19296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -02165050 180.19299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -02165051 180.19299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -02165052 180.19300842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -02165053 180.19300842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -02165054 180.19303894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -02165055 180.19303894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -02165056 180.19306946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -02165057 180.19306946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -02165058 180.19308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -02165059 180.19308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -02165060 180.19311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -02165061 180.19311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -02165062 180.19314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -02165063 180.19314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -02165064 180.19316101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -02165065 180.19316101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -02167422 180.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c818 -02167423 180.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c818 -02167424 180.22531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c828 -02167425 180.22531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c828 -02167426 180.22532654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c838 -02167427 180.22532654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c838 -02167428 180.22535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c848 -02167429 180.22535706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c848 -02167430 180.22538757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c858 -02167431 180.22538757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c858 -02167432 180.22540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -02167433 180.22541809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -02167434 180.22544861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -02167435 180.22544861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -02167436 180.22547913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -02167437 180.22547913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -02167438 180.22549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -02167439 180.22549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -02167440 180.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -02167441 180.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -02167442 180.22555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -02167443 180.22555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -02167444 180.22557068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -02167445 180.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -02167446 180.22561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -02167447 180.22561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -02167448 180.22563171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -02167449 180.22563171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -02167450 180.22566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -02167451 180.22566223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -02167452 180.22569275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -02167453 180.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -02167454 180.22572327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -02167455 180.22572327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -02167456 180.22575378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -02167457 180.22575378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -02167458 180.22578430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -02167459 180.22578430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -02167460 180.22581482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -02167461 180.22581482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -02167462 180.22584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c958 -02167463 180.22584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c958 -02167464 180.22587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c968 -02167465 180.22587585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c968 -02181193 180.41859436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -02181194 180.41859436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -02181195 180.41862488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -02181196 180.41862488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -02181197 180.41865540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -02181198 180.41865540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -02181199 180.41867065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -02181200 180.41867065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -02181201 180.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47698 -02181202 180.41871643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47698 -02181203 180.41873169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a8 -02181204 180.41873169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a8 -02181205 180.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b8 -02181206 180.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b8 -02181207 180.41879272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c8 -02181208 180.41879272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c8 -02181209 180.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d8 -02181210 180.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d8 -02181211 180.41883850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e8 -02181212 180.41885376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e8 -02181213 180.41886902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f8 -02181214 180.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f8 -02181215 180.41889954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47708 -02181216 180.41889954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47708 -02181217 180.41893005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47718 -02181218 180.41893005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47718 -02181219 180.41896057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47728 -02181220 180.41896057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47728 -02181221 180.41897583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47738 -02181222 180.41897583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47738 -02181223 180.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47748 -02181224 180.41902161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47748 -02181225 180.41905212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47758 -02181226 180.41905212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47758 -02181227 180.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47768 -02181228 180.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47768 -02181229 180.41909790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47778 -02181230 180.41909790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47778 -02181231 180.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47788 -02181232 180.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47788 -02181233 180.41914368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47798 -02181234 180.41915894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47798 -02181235 180.41917419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a8 -02181236 180.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x477a8 -02184159 180.46012878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -02184160 180.46012878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -02184161 180.46014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -02184162 180.46014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -02184163 180.46017456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -02184164 180.46018982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -02184165 180.46020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -02184166 180.46020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -02184167 180.46023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -02184168 180.46023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -02184169 180.46026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d358 -02184170 180.46026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d358 -02184171 180.46028137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d368 -02184172 180.46028137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d368 -02184173 180.46031189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d378 -02184174 180.46032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d378 -02184175 180.46034241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d388 -02184176 180.46035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d388 -02184177 180.46037292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d398 -02184178 180.46037292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d398 -02184179 180.46040344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a8 -02184180 180.46040344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3a8 -02184181 180.46043396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b8 -02184182 180.46043396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3b8 -02184183 180.46044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c8 -02184184 180.46046448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3c8 -02184185 180.46049500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d8 -02184186 180.46049500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3d8 -02184187 180.46052551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e8 -02184188 180.46052551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3e8 -02184189 180.46054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f8 -02184190 180.46054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d3f8 -02184191 180.46057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d408 -02184192 180.46057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d408 -02184193 180.46060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d418 -02184194 180.46060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d418 -02184195 180.46063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d428 -02184196 180.46063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d428 -02184197 180.46066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d438 -02184198 180.46066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d438 -02184199 180.46067810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d448 -02184200 180.46067810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d448 -02184201 180.46070862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d458 -02184202 180.46070862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d458 -02187045 181.44075012 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187046 181.44079590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187047 181.44081116 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187048 181.44082642 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02187049 181.44093323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187050 181.44094849 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187051 181.44099426 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187052 181.44102478 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187053 182.36608887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02187054 182.38404846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187055 182.38406372 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187056 183.94714355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187057 183.94717407 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187058 183.94720459 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187059 183.94721985 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02187060 183.94732666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187061 183.94732666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187062 183.94738770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02187063 183.94741821 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02187064 184.38476563 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02187065 184.40432739 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187066 184.40434265 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02187067 185.50215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02187068 185.50215149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02187069 185.50218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02187070 185.50218201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02187071 185.50221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02187072 185.50221252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02187073 185.50222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02187074 185.50222778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02187075 185.50225830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02187076 185.50227356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02187077 185.50230408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02187078 185.50230408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02187079 185.50231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02187080 185.50231934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02187081 185.50234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02187082 185.50234985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02187083 185.50238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02187084 185.50238037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02187085 185.50239563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02187086 185.50241089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02187087 185.50244141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02187088 185.50244141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02187089 185.50245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02187090 185.50245667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02187091 185.50248718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02187092 185.50248718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02187093 185.50251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02187094 185.50251770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02187095 185.50254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02187096 185.50254822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02187097 185.50257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02187098 185.50257874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02187099 185.50260925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02187100 185.50260925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02187101 185.50262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02187102 185.50262451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02187103 185.50265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02187104 185.50265503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02187105 185.50268555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02187106 185.50270081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02187107 185.50271606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02187108 185.50271606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02187109 185.50274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02187110 185.50274658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02187111 185.50277710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02187112 185.50277710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02187113 185.50279236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02187114 185.50279236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02187115 185.50282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02187116 185.50282288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02187117 185.50285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02187118 185.50285339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02187119 185.50286865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02187120 185.50288391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02187121 185.50289917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02187122 185.50291443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02187123 185.50294495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02187124 185.50294495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02187125 185.50296021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02187126 185.50296021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02187127 185.50299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02187128 185.50299072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02187129 185.50302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02187130 185.50302124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02187131 185.50303650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02187132 185.50303650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02187133 185.50306702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02187134 185.50306702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02187135 185.50309753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02187136 185.50309753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02187137 185.50311279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02187138 185.50311279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02187139 185.50314331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02187140 185.50315857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02187141 185.50317383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02187142 185.50317383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02187143 185.50320435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02187144 185.50320435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02187145 185.50323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02187146 185.50323486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02187147 185.50325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02187148 185.50325012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02187149 185.50328064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02187150 185.50328064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02187151 185.50331116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02187152 185.50331116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02187153 185.50334167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02187154 185.50334167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02187155 185.50335693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02187156 185.50337219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02187157 185.50340271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02187158 185.50340271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02187159 185.50341797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02187160 185.50341797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02187161 185.50344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02187162 185.50344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02187163 185.50347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02187164 185.50347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02187165 185.50349426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02187166 185.50350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02187167 185.50354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02187168 185.50354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02187169 185.50357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02187170 185.50357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02187171 185.50358582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02187172 185.50358582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02187173 185.50361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02187174 185.50361633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02187175 185.50364685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02187176 185.50364685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02187177 185.50367737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02187178 185.50367737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02187179 185.50370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02187180 185.50370789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02187181 185.50373840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02187182 185.50373840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02187183 185.50375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02187184 185.50375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02187185 185.50378418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02187186 185.50379944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02187187 185.50381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02187188 185.50381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02187189 185.50384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02187190 185.50384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02187191 185.50389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02187192 185.50389099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02187193 185.50390625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02187194 185.50392151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02187195 185.50395203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02187196 185.50395203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02187197 185.50396729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02187198 185.50396729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02187199 185.50399780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02187200 185.50399780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02187201 185.50402832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02187202 185.50402832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02187203 185.50404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02187204 185.50404358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02187205 185.50407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02187206 185.50407410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02187207 185.50410461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02187208 185.50410461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02187209 185.50413513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02187210 185.50413513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02187211 185.50415039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02187212 185.50416565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02187213 185.50418091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02187214 185.50419617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02187215 185.50421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02187216 185.50421143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02187217 185.50424194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02187218 185.50424194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02187219 185.50427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02187220 185.50427246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02187221 185.50428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02187222 185.50428772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02187223 185.50431824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02187224 185.50431824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02187225 185.50434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02187226 185.50434875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02187227 185.50436401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02187228 185.50436401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02187229 185.50439453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02187230 185.50439453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02187231 185.50442505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02187232 185.50442505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02187233 185.50445557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02187234 185.50445557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02187235 185.50447083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02187236 185.50448608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02187237 185.50450134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02187238 185.50451660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02187239 185.50453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02187240 185.50453186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02187241 185.50456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02187242 185.50456238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02187243 185.50459290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02187244 185.50459290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02187245 185.50460815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02187246 185.50460815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02187247 185.50463867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02187248 185.50463867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02187249 185.50466919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02187250 185.50466919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02187251 185.50468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02187252 185.50468445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02187253 185.50471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02187254 185.50471497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02187255 185.50474548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02187256 185.50476074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02187257 185.50476074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02187258 185.50477600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02187259 185.50480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02187260 185.50480652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02187261 185.50483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02187262 185.50483704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02187263 185.50485229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02187264 185.50485229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02187265 185.50488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02187266 185.50488281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02187267 185.50491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02187268 185.50491333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02187269 185.50492859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02187270 185.50492859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02187271 185.50495911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02187272 185.50497437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02187273 185.50500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02187274 185.50500488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02187275 185.50502014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02187276 185.50502014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02187277 185.50505066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02187278 185.50505066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02187279 185.50508118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02187280 185.50508118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02187281 185.50509644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02187282 185.50509644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02187283 185.50512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02187284 185.50512695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02187285 185.50515747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02187286 185.50515747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02187287 185.50517273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02187288 185.50518799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02187289 185.50521851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02187290 185.50521851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02187291 185.50524902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02187292 185.50524902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02187293 185.50526428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02187294 185.50526428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02187295 185.50529480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02187296 185.50529480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02187297 185.50532532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02187298 185.50532532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02187299 185.50534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02187300 185.50534058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02187301 185.50537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02187302 185.50537109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02187303 185.50540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02187304 185.50540161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02187305 185.50541687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02187306 185.50543213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02187307 185.50544739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02187308 185.50546265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02187309 185.50547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02187310 185.50547791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02187311 185.50550842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02187312 185.50550842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02187313 185.50553894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02187314 185.50553894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02187315 185.50555420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02187316 185.50555420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02187317 185.50558472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02187318 185.50558472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02187319 185.50561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02187320 185.50561523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02187321 185.50564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02187322 185.50564575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02187323 185.50566101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02187324 185.50566101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02187325 185.50569153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02187326 185.50569153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02187327 185.50572205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02187328 185.50572205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02187329 185.50573730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02187330 185.50575256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02187331 185.50578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02187332 185.50578308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02187333 185.50579834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02187334 185.50579834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02187335 185.50582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02187336 185.50582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02187337 185.50585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02187338 185.50585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02187339 185.50587463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02187340 185.50588989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02187341 185.50592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02187342 185.50592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02187343 185.50595093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02187344 185.50595093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02187345 185.50596619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02187346 185.50596619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02187347 185.50599670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02187348 185.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02187349 185.50604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02187350 185.50604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02187351 185.50605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02187352 185.50605774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02187353 185.50608826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02187354 185.50608826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02187355 185.50611877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02187356 185.50611877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02187357 185.50614929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02187358 185.50614929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02187359 185.50617981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02187360 185.50617981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02187361 185.50619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02187362 185.50619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02187363 185.50622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02187364 185.50622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02187365 185.50625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02187366 185.50625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02187367 185.50627136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02187368 185.50628662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02187369 185.50631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02187370 185.50631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02187371 185.50634766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02187372 185.50634766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02187373 185.50636292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02187374 185.50636292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02187375 185.50639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02187376 185.50639343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02187377 185.50642395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02187378 185.50643921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02187379 185.50645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02187380 185.50645447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02187381 185.50648499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02187382 185.50648499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02187383 185.50651550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02187384 185.50651550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02187385 185.50653076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02187386 185.50653076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02187387 185.50656128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02187388 185.50657654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02187389 185.50659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02187390 185.50659180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02187391 185.50662231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02187392 185.50662231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02187393 185.50665283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02187394 185.50665283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02187395 185.50666809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02187396 185.50666809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02187397 185.50669861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02187398 185.50669861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02187399 185.50672913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02187400 185.50672913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02187401 185.50675964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02187402 185.50675964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02187403 185.50679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02187404 185.50679016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02187405 185.50682068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02187406 185.50682068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02187407 185.50683594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02187408 185.50685120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02187409 185.50688171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02187410 185.50688171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02187411 185.50691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02187412 185.50691223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02187413 185.50692749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02187414 185.50692749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02187415 185.50695801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02187416 185.50695801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02187417 185.50698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02187418 185.50698853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02187419 185.50700378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02187420 185.50700378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02187421 185.50703430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02187422 185.50703430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02187423 185.50706482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02187424 185.50706482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02187425 185.50708008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02187426 185.50708008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02187427 185.50712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02187428 185.50712585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02187429 185.50715637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02187430 185.50715637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02187431 185.50717163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02187432 185.50717163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02187433 185.50721741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02187434 185.50721741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02187435 185.50723267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02187436 185.50723267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02187437 185.50726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02187438 185.50726318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02187439 185.50729370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02187440 185.50729370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02187441 185.50730896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02187442 185.50732422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02187443 185.50733948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02187444 185.50735474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02187445 185.50738525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02187446 185.50738525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02187447 185.50740051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02187448 185.50740051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02187449 185.50743103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02187450 185.50743103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02187451 185.50746155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02187452 185.50746155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02187453 185.50749207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02187454 185.50749207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02187455 185.50752258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02187456 185.50752258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02187457 185.50755310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02187458 185.50755310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02187459 185.50756836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02187460 185.50756836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02187461 185.50759888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02187462 185.50761414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02187463 185.50762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02187464 185.50762939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02187465 185.50765991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02187466 185.50765991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02187467 185.50769043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02187468 185.50769043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02187469 185.50770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02187470 185.50770569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02187471 185.50773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02187472 185.50773621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02187473 185.50776672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02187474 185.50776672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02187475 185.50778198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02187476 185.50778198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02187477 185.50781250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02187478 185.50781250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02187479 185.50784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02187480 185.50784302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02187481 185.50785828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02187482 185.50787354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02187483 185.50788879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02187484 185.50790405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02187485 185.50793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02187486 185.50793457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02187487 185.50794983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02187488 185.50794983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02187489 185.50798035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02187490 185.50798035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02187491 185.50801086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02187492 185.50801086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02187493 185.50802612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02187494 185.50802612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02187495 185.50805664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02187496 185.50805664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02187497 185.50808716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02187498 185.50808716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02187499 185.50810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02187500 185.50810242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02187501 185.50813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02187502 185.50813293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02187503 185.50816345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02187504 185.50817871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02187505 185.50817871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02187506 185.50819397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02187507 185.50822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02187508 185.50822449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02187509 185.50825500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02187510 185.50825500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02187511 185.50827026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02187512 185.50827026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02187513 185.50830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02187514 185.50830078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02187515 185.50833130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02187516 185.50833130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02187517 185.50834656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02187518 185.50836182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02187519 185.50839233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02187520 185.50839233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02187521 185.50842285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02187522 185.50842285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02187523 185.50843811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02187524 185.50843811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02187525 185.50846863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02187526 185.50846863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02187527 185.50849915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02187528 185.50849915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02187529 185.50852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02187530 185.50852966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02187531 185.50856018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02187532 185.50856018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02187533 185.50857544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02187534 185.50857544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02187535 185.50860596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02187536 185.50860596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02187537 185.50863647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02187538 185.50863647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02187539 185.50865173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02187540 185.50866699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02187541 185.50869751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02187542 185.50869751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02187543 185.50872803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02187544 185.50872803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02187545 185.50874329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02187546 185.50874329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02187547 185.50877380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02187548 185.50877380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02187549 185.50880432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02187550 185.50881958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02187551 185.50883484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02187552 185.50883484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02187553 185.50886536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02187554 185.50886536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02187555 185.50889587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02187556 185.50889587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02187557 185.50891113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02187558 185.50891113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02187559 185.50894165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02187560 185.50895691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02187561 185.50897217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02187562 185.50897217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02187563 185.50900269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02187564 185.50900269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02187565 185.50903320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02187566 185.50903320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02187567 185.50904846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02187568 185.50904846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02187569 185.50907898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02187570 185.50909424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02187571 185.50912476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02187572 185.50912476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02187573 185.50914001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02187574 185.50914001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02187575 185.50917053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02187576 185.50918579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02187577 185.50921631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02187578 185.50921631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02187579 185.50923157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02187580 185.50923157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02187581 185.50926208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02187582 185.50926208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02187583 185.50929260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02187584 185.50929260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02187585 185.50930786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02187586 185.50930786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02187587 185.50933838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02187588 185.50933838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02187589 185.50936890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02187590 185.50936890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02187591 185.50938416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02187592 185.50938416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02187593 185.50941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02187594 185.50941467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02187595 185.50944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02187596 185.50944519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02187597 185.50946045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02187598 185.50947571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02187599 185.50950623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02187600 185.50950623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02187601 185.50953674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02187602 185.50953674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02187603 185.50955200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02187604 185.50955200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02187605 185.50958252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02187606 185.50958252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02187607 185.50961304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02187608 185.50961304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02187609 185.50962830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02187610 185.50962830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02187611 185.50965881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02187612 185.50965881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02187613 185.50968933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02187614 185.50968933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02187615 185.50970459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02187616 185.50970459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02187617 185.50973511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02187618 185.50975037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02187619 185.50976563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02187620 185.50976563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02187621 185.50979614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02187622 185.50979614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02187623 185.50982666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02187624 185.50982666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02187625 185.50985718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02187626 185.50985718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02187627 185.50987244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02187628 185.50987244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02187629 185.50990295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02187630 185.50990295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02187631 185.50993347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02187632 185.50993347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02187633 185.50994873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02187634 185.50994873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02187635 185.50997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02187636 185.50997925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02187637 185.51000977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02187638 185.51000977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02187639 185.51004028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02187640 185.51004028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02187641 185.51007080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02187642 185.51007080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02187643 185.51008606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02187644 185.51008606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02187645 185.51011658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02187646 185.51011658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02187647 185.51014709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02187648 185.51016235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02187649 185.51016235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02187650 185.51017761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02187651 185.51020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02187652 185.51020813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02187653 185.51023865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02187654 185.51023865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02187655 185.51025391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02187656 185.51025391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02187657 185.51028442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02187658 185.51028442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02187659 185.51031494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02187660 185.51031494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02187661 185.51033020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02187662 185.51033020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02187663 185.51036072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02187664 185.51036072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02187665 185.51039124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02187666 185.51039124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02187667 185.51040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02187668 185.51040649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02187669 185.51043701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02187670 185.51045227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02187671 185.51046753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02187672 185.51048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02187673 185.51048279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02187674 185.51049805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02187675 185.51052856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02187676 185.51052856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02187677 185.51055908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02187678 185.51055908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02187679 185.51057434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02187680 185.51057434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02187681 185.51060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02187682 185.51060486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02187683 185.51063538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02187684 185.51063538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02187685 185.51065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02187686 185.51065063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02187687 185.51068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02187688 185.51068115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02187689 185.51071167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02187690 185.51071167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02187691 185.51072693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02187692 185.51072693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02187693 185.51075745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02187694 185.51077271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02187695 185.51078796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02187696 185.51080322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02187697 185.51081848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02187698 185.51081848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02187699 185.51084900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02187700 185.51084900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02187701 185.51087952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02187702 185.51087952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02187703 185.51089478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02187704 185.51089478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02187705 185.51092529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02187706 185.51094055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02187707 185.51095581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02187708 185.51095581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02187709 185.51098633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02187710 185.51098633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02187711 185.51101685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02187712 185.51101685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02187713 185.51104736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02187714 185.51104736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02187715 185.51107788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02187716 185.51107788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02187717 185.51110840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02187718 185.51110840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02187719 185.51112366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02187720 185.51112366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02187721 185.51115417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02187722 185.51115417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02187723 185.51118469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02187724 185.51118469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02187725 185.51119995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02187726 185.51119995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02187727 185.51123047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02187728 185.51124573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02187729 185.51126099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02187730 185.51127625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02187731 185.51129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02187732 185.51129150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02187733 185.51132202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02187734 185.51132202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02187735 185.51135254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02187736 185.51135254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02187737 185.51136780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02187738 185.51136780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02187739 185.51139832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02187740 185.51139832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02187741 185.51142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02187742 185.51142883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02187743 185.51144409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02187744 185.51144409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02187745 185.51147461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02187746 185.51147461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02187747 185.51150513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02187748 185.51150513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02187749 185.51152039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02187750 185.51153564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02187751 185.51155090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02187752 185.51156616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02187753 185.51159668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02187754 185.51159668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02187755 185.51161194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02187756 185.51161194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02187757 185.51164246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02187758 185.51164246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02187759 185.51167297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02187760 185.51167297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02187761 185.51168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02187762 185.51168823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02187763 185.51171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02187764 185.51171875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02187765 185.51174927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02187766 185.51174927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02187767 185.51176453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02187768 185.51176453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02187769 185.51179504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02187770 185.51179504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02187771 185.51182556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02187772 185.51184082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02187773 185.51184082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02187774 185.51185608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02187775 185.51188660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02187776 185.51188660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02187777 185.51191711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02187778 185.51191711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02187779 185.51193237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02187780 185.51193237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02187781 185.51196289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02187782 185.51197815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02187783 185.51199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02187784 185.51199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02187785 185.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02187786 185.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02187787 185.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02187788 185.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02187789 185.51206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02187790 185.51206970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02187791 185.51210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02187792 185.51210022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02187793 185.51213074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02187794 185.51214600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02187795 185.51214600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02187796 185.51216125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02187797 185.51219177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02187798 185.51219177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02187799 185.51222229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02187800 185.51222229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02187801 185.51223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02187802 185.51223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02187803 185.51226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02187804 185.51226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02187805 185.51229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02187806 185.51229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02187807 185.51231384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02187808 185.51232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02187809 185.51235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02187810 185.51235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02187811 185.51239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02187812 185.51239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02187813 185.51240540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02187814 185.51240540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02187815 185.51243591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02187816 185.51243591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02187817 185.51246643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02187818 185.51246643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02187819 185.51249695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02187820 185.51249695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02187821 185.51252747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02187822 185.51252747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02187823 185.51255798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02187824 185.51255798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02187825 185.51257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02187826 185.51258850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02187827 185.51261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02187828 185.51261902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02187829 185.51263428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02187830 185.51263428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02187831 185.51266479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02187832 185.51268005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02187833 185.51269531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02187834 185.51271057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02187835 185.51272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02187836 185.51272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02187837 185.51275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02187838 185.51275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02187839 185.51278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02187840 185.51278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02187841 185.51280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02187842 185.51280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02187843 185.51283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02187844 185.51283264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02187845 185.51286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02187846 185.51286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02187847 185.51287842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02187848 185.51289368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02187849 185.51292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02187850 185.51292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02187851 185.51295471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02187852 185.51295471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02187853 185.51296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02187854 185.51296997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02187855 185.51300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02187856 185.51300049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02187857 185.51303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02187858 185.51303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02187859 185.51304626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02187860 185.51304626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02187861 185.51307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02187862 185.51307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02187863 185.51310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02187864 185.51310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02187865 185.51312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02187866 185.51312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02187867 185.51315308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02187868 185.51316833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02187869 185.51318359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02187870 185.51318359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02187871 185.51321411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02187872 185.51321411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02187873 185.51324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02187874 185.51324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02187875 185.51325989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02187876 185.51325989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02187877 185.51329041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02187878 185.51329041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02187879 185.51332092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02187880 185.51332092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02187881 185.51335144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02187882 185.51335144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02187883 185.51336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02187884 185.51336670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02187885 185.51339722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02187886 185.51339722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02187887 185.51342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02187888 185.51342773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02187889 185.51344299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02187890 185.51345825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02187891 185.51347351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02187892 185.51348877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02187893 185.51350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02187894 185.51350403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02187895 185.51353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02187896 185.51353455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02187897 185.51356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02187898 185.51356506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02187899 185.51358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02187900 185.51358032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02187901 185.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02187902 185.51361084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02187903 185.51364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02187904 185.51364136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02187905 185.51365662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02187906 185.51365662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02187907 185.51368713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02187908 185.51368713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02187909 185.51371765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02187910 185.51371765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02187911 185.51374817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02187912 185.51374817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02187913 185.51376343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02187914 185.51377869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02187915 185.51380920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02187916 185.51380920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02187917 185.51382446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02187918 185.51382446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02187919 185.51385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02187920 185.51385498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02187921 185.51388550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02187922 185.51388550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02187923 185.51390076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02187924 185.51391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02187925 185.51394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02187926 185.51394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02187927 185.51397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02187928 185.51397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02187929 185.51399231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02187930 185.51400757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02187931 185.51403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02187932 185.51403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02187933 185.51405334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02187934 185.51405334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02187935 185.51408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02187936 185.51408386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02187937 185.51411438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02187938 185.51411438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02187939 185.51414490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02187940 185.51414490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02187941 185.51416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02187942 185.51416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02187943 185.51419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02187944 185.51420593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02187945 185.51422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02187946 185.51422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02187947 185.51425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02187948 185.51425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02187949 185.51428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02187950 185.51428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02187951 185.51429749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02187952 185.51429749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02187953 185.51432800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02187954 185.51432800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02187955 185.51435852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02187956 185.51435852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02187957 185.51437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02187958 185.51437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02187959 185.51440430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02187960 185.51441956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02187961 185.51445007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02187962 185.51445007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02187963 185.51446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02187964 185.51446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02187965 185.51449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02187966 185.51449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02187967 185.51452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02187968 185.51452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02187969 185.51454163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02187970 185.51454163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02187971 185.51458740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02187972 185.51458740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02187973 185.51461792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02187974 185.51461792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02187975 185.51463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02187976 185.51463318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02187977 185.51466370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02187978 185.51466370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02187979 185.51469421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02187980 185.51469421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02187981 185.51470947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02187982 185.51470947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02187983 185.51473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02187984 185.51473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02187985 185.51477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02187986 185.51477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02187987 185.51478577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02187988 185.51480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02187989 185.51481628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02187990 185.51483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02187991 185.51484680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02187992 185.51484680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02187993 185.51487732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02187994 185.51487732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02187995 185.51490784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02187996 185.51490784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02187997 185.51493835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02187998 185.51493835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02187999 185.51495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02188000 185.51495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02188001 185.51498413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02188002 185.51499939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02188003 185.51501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02188004 185.51501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02188005 185.51504517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02188006 185.51504517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02188007 185.51507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02188008 185.51507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02188009 185.51509094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02188010 185.51509094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02188011 185.51512146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02188012 185.51512146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02188013 185.51515198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02188014 185.51515198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02188015 185.51516724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02188016 185.51516724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02188017 185.51519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02188018 185.51519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02188019 185.51522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02188020 185.51522827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02188021 185.51525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02188022 185.51525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02188023 185.51528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02188024 185.51528931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02188025 185.51531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02188026 185.51531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02188027 185.51533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02188028 185.51533508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02188029 185.51536560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02188030 185.51538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02188031 185.51541138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02188032 185.51541138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02188033 185.51542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02188034 185.51542664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02188035 185.51545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02188036 185.51545715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02188037 185.51548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02188038 185.51548767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02188039 185.51550293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02188040 185.51551819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02188041 185.51554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02188042 185.51554871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02188043 185.51556396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02188044 185.51556396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02188045 185.51559448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02188046 185.51559448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02188047 185.51562500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02188048 185.51562500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02188049 185.51565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02188050 185.51565552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02188051 185.51568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02188052 185.51568604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02188053 185.51571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02188054 185.51571655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02188055 185.51573181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02188056 185.51573181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02188057 185.51576233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02188058 185.51576233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02188059 185.51579285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02188060 185.51580811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02188061 185.51582336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02188062 185.51582336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02188063 185.51585388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02188064 185.51585388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02188065 185.51588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02188066 185.51588440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02188067 185.51589966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02188068 185.51589966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02188069 185.51593018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02188070 185.51594543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02188071 185.51596069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02188072 185.51596069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02188073 185.51599121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02188074 185.51599121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02188075 185.51602173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02188076 185.51602173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02188077 185.51605225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02188078 185.51605225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02188079 185.51608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02188080 185.51608276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02188081 185.51611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02188082 185.51611328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02188083 185.51612854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02188084 185.51612854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02188085 185.51615906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02188086 185.51617432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02188087 185.51620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02188088 185.51620483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02188089 185.51622009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02188090 185.51622009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02188091 185.51625061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02188092 185.51625061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02188093 185.51628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02188094 185.51628113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02188095 185.51629639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02188096 185.51631165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02188097 185.51632690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02188098 185.51634216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02188099 185.51635742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02188100 185.51635742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02188101 185.51638794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02188102 185.51638794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02188103 185.51641846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02188104 185.51641846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02188105 185.51644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02188106 185.51644897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02188107 185.51646423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02188108 185.51646423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02188109 185.51649475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02188110 185.51649475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02188111 185.51652527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02188112 185.51652527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02188113 185.51654053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02188114 185.51654053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02188115 185.51657104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02188116 185.51657104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02188117 185.51660156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02188118 185.51660156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02188119 185.51661682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02188120 185.51663208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02188121 185.51666260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02188122 185.51666260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02188123 185.51667786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02188124 185.51667786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02188125 185.51670837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02188126 185.51670837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02188127 185.51673889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02188128 185.51673889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02188129 185.51675415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02188130 185.51675415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02188131 185.51678467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02188132 185.51678467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02188133 185.51681519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02188134 185.51681519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02188135 185.51684570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02188136 185.51684570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02188137 185.51686096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02188138 185.51687622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02188139 185.51689148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02188140 185.51690674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02188141 185.51692200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02188142 185.51692200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02188143 185.51695251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02188144 185.51695251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02188145 185.51698303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02188146 185.51699829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02188147 185.51699829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02188148 185.51701355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02188149 185.51704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02188150 185.51704407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02188151 185.51707458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02188152 185.51707458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02188153 185.51708984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02188154 185.51708984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02188155 185.51712036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02188156 185.51712036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02188157 185.51715088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02188158 185.51715088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02188159 185.51716614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02188160 185.51716614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02188161 185.51719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02188162 185.51719666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02188163 185.51722717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02188164 185.51722717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02188165 185.51724243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02188166 185.51724243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02188167 185.51727295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02188168 185.51728821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02188169 185.51731873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02188170 185.51731873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02188171 185.51733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02188172 185.51733398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02188173 185.51736450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02188174 185.51736450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02188175 185.51739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02188176 185.51739502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02188177 185.51741028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02188178 185.51741028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02188179 185.51744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02188180 185.51744080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02188181 185.51747131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02188182 185.51747131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02188183 185.51748657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02188184 185.51748657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02188185 185.51751709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02188186 185.51751709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02188187 185.51754761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02188188 185.51754761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02188189 185.51756287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02188190 185.51757813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02188191 185.51760864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02188192 185.51760864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02188193 185.51763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02188194 185.51763916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02188195 185.51765442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02188196 185.51765442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02188197 185.51768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02188198 185.51768494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02188199 185.51771545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02188200 185.51771545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02188201 185.51773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02188202 185.51773071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02188203 185.51776123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02188204 185.51776123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02188205 185.51779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02188206 185.51779175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02188207 185.51780701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02188208 185.51780701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02188209 185.51783752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02188210 185.51785278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02188211 185.51786804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02188212 185.51786804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02188213 185.51789856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02188214 185.51789856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02188215 185.51792908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02188216 185.51792908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02188217 185.51795959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02188218 185.51795959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02188219 185.51797485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02188220 185.51797485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02188221 185.51800537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02188222 185.51800537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02188223 185.51803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02188224 185.51803589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02188225 185.51805115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02188226 185.51805115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02188227 185.51808167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02188228 185.51809692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02188229 185.51811218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02188230 185.51811218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02188231 185.51814270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02188232 185.51814270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02188233 185.51817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02188234 185.51817322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02188235 185.51818848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02188236 185.51818848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02188237 185.51821899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02188238 185.51821899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02188239 185.51824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02188240 185.51824951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02188241 185.51826477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02188242 185.51828003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02188243 185.51831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02188244 185.51831055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02188245 185.51834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02188246 185.51834106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02188247 185.51835632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02188248 185.51835632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02188249 185.51840210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02188250 185.51841736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02188251 185.51843262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02188252 185.51843262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02188253 185.51847839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02188254 185.51847839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02188255 185.51850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02188256 185.51850891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02188257 185.51852417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02188258 185.51852417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02188259 185.51855469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02188260 185.51855469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02188261 185.51858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02188262 185.51858521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02188263 185.51861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02188264 185.51861572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02188265 185.51864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02188266 185.51864624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02188267 185.51866150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02188268 185.51866150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02188269 185.51869202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02188270 185.51869202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02188271 185.51872253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02188272 185.51872253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02188273 185.51875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02188274 185.51875305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02188275 185.51876831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02188276 185.51878357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02188277 185.51879883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02188278 185.51881409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02188279 185.51882935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02188280 185.51882935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02188281 185.51885986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02188282 185.51885986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02188283 185.51889038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02188284 185.51889038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02188285 185.51890564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02188286 185.51890564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02188287 185.51893616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02188288 185.51895142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02188289 185.51898193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02188290 185.51898193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02188291 185.51899719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02188292 185.51899719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02188293 185.51902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02188294 185.51902771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02188295 185.51905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02188296 185.51905823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02188297 185.51907349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02188298 185.51907349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02188299 185.51910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02188300 185.51910400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02188301 185.51913452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02188302 185.51914978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02188303 185.51914978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02188304 185.51916504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02188305 185.51919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02188306 185.51919556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02188307 185.51922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02188308 185.51922607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02188309 185.51924133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02188310 185.51924133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02188311 185.51927185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02188312 185.51927185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02188313 185.51930237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02188314 185.51930237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02188315 185.51931763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02188316 185.51931763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02188317 185.51934814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02188318 185.51934814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02188319 185.51937866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02188320 185.51937866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02188321 185.51939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02188322 185.51939392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02188323 185.51942444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02188324 185.51943970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02188325 185.51945496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02188326 185.51945496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02188327 185.51948547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02188328 185.51948547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02188329 185.51951599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02188330 185.51959229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02188331 185.51960754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02188332 185.51962280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02188333 185.51963806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02188334 185.51963806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02188335 185.51966858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02188336 185.51966858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02188337 185.51969910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02188338 185.51969910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02188339 185.51971436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02188340 185.51971436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02188341 185.51974487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02188342 185.51974487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02188343 185.51977539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02188344 185.51977539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02188345 185.51979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02188346 185.51979065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02188347 185.51982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02188348 185.51982117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02188349 185.51985168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02188350 185.51985168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02188351 185.51986694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02188352 185.51988220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02188353 185.51991272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02188354 185.51991272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02188355 185.51994324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02188356 185.51994324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02188357 185.51995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02188358 185.51995850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02188359 185.51998901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02188360 185.52000427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02188361 185.52001953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02188362 185.52001953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02188363 185.52005005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02188364 185.52005005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02188365 185.52008057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02188366 185.52008057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02188367 185.52009583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02188368 185.52009583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02188369 185.52012634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02188370 185.52012634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02188371 185.52015686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02188372 185.52017212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02188373 185.52017212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02188374 185.52018738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02188375 185.52021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02188376 185.52021790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02188377 185.52024841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02188378 185.52024841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02188379 185.52026367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02188380 185.52026367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02188381 185.52029419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02188382 185.52029419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02188383 185.52033997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02188384 185.52033997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02188385 185.52035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02188386 185.52035522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02188387 185.52038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02188388 185.52038574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02188389 185.52041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02188390 185.52041626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02188391 185.52043152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02188392 185.52044678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02188393 185.52046204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02188394 185.52047729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02188395 185.52049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02188396 185.52049255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02188397 185.52052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02188398 185.52052307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02188399 185.52055359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02188400 185.52055359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02188401 185.52056885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02188402 185.52056885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02188403 185.52059937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02188404 185.52061462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02188405 185.52064514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02188406 185.52064514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02188407 185.52066040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02188408 185.52066040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02188409 185.52069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02188410 185.52069092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02188411 185.52072144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02188412 185.52073669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02188413 185.52073669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02188414 185.52075195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02188415 185.52078247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02188416 185.52078247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02188417 185.52081299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02188418 185.52081299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02188419 185.52082825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02188420 185.52082825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02188421 185.52085876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02188422 185.52085876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02188423 185.52088928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02188424 185.52088928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02188425 185.52090454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02188426 185.52091980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02188427 185.52095032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02188428 185.52095032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02188429 185.52096558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02188430 185.52096558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02188431 185.52099609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02188432 185.52099609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02188433 185.52102661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02188434 185.52102661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02188435 185.52105713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02188436 185.52105713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02188437 185.52107239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02188438 185.52107239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02188439 185.52110291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02188440 185.52111816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02188441 185.52113342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02188442 185.52113342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02188443 185.52116394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02188444 185.52116394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02188445 185.52119446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02188446 185.52119446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02188447 185.52120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02188448 185.52120972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02188449 185.52124023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02188450 185.52124023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02188451 185.52127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02188452 185.52127075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02188453 185.52128601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02188454 185.52128601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02188455 185.52131653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02188456 185.52131653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02188457 185.52134705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02188458 185.52134705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02188459 185.52136230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02188460 185.52136230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02188461 185.52139282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02188462 185.52140808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02188463 185.52143860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02188464 185.52143860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02188465 185.52145386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02188466 185.52145386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02188467 185.52148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02188468 185.52148438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02188469 185.52151489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02188470 185.52151489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02188471 185.52153015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02188472 185.52153015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02188473 185.52156067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02188474 185.52156067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02188475 185.52159119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02188476 185.52159119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02188477 185.52160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02188478 185.52160645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02188479 185.52163696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02188480 185.52163696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02188481 185.52166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02188482 185.52166748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02188483 185.52168274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02188484 185.52169800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02188485 185.52171326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02188486 185.52172852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02188487 185.52175903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02188488 185.52175903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02188489 185.52177429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02188490 185.52177429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02188491 185.52180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02188492 185.52180481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02188493 185.52183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02188494 185.52183533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02188495 185.52185059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02188496 185.52185059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02188497 185.52188110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02188498 185.52188110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02188499 185.52191162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02188500 185.52191162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02188501 185.52192688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02188502 185.52192688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02188503 185.52195740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02188504 185.52197266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02188505 185.52198792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02188506 185.52200317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02188507 185.52201843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02188508 185.52201843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02188509 185.52204895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02188510 185.52204895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02188511 185.52207947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02188512 185.52207947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02188513 185.52209473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02188514 185.52209473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02188515 185.52212524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02188516 185.52212524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02188517 185.52215576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02188518 185.52215576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02188519 185.52217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02188520 185.52217102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02188521 185.52220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02188522 185.52220154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02188523 185.52223206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02188524 185.52224731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02188525 185.52226257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02188526 185.52226257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02188527 185.52229309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02188528 185.52229309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02188529 185.52232361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02188530 185.52232361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02188531 185.52233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02188532 185.52233887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02188533 185.52236938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02188534 185.52238464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02188535 185.52239990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02188536 185.52239990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02188537 185.52243042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02188538 185.52243042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02188539 185.52246094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02188540 185.52246094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02188541 185.52247620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02188542 185.52249146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02188543 185.52252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02188544 185.52252197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02188545 185.52255249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02188546 185.52255249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02188547 185.52256775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02188548 185.52256775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02188549 185.52259827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02188550 185.52259827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02188551 185.52262878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02188552 185.52264404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02188553 185.52265930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02188554 185.52265930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02188555 185.52270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02188556 185.52270508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02188557 185.52273560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02188558 185.52273560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02188559 185.52276611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02188560 185.52276611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02188561 185.52279663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02188562 185.52281189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02188563 185.52284241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02188564 185.52284241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02188565 185.52287292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02188566 185.52287292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02188567 185.52288818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02188568 185.52290344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02188569 185.52293396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02188570 185.52293396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02188571 185.52294922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02188572 185.52294922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02188573 185.52297974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02188574 185.52297974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02188575 185.52301025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02188576 185.52301025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02188577 185.52304077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02188578 185.52304077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02188579 185.52305603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02188580 185.52307129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02188581 185.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02188582 185.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02188583 185.52311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02188584 185.52311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02188585 185.52314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02188586 185.52314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02188587 185.52317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02188588 185.52317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02188589 185.52319336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02188590 185.52320862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02188591 185.52322388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02188592 185.52323914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02188593 185.52326965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02188594 185.52326965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02188595 185.52328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02188596 185.52328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02188597 185.52331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02188598 185.52331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02188599 185.52334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02188600 185.52334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02188601 185.52336121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02188602 185.52336121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02188603 185.52339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02188604 185.52339172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02188605 185.52342224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02188606 185.52342224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02188607 185.52343750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02188608 185.52343750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02188609 185.52346802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02188610 185.52346802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02188611 185.52349854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02188612 185.52351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02188613 185.52351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02188614 185.52352905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02188615 185.52355957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02188616 185.52355957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02188617 185.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02188618 185.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02188619 185.52360535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02188620 185.52360535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02188621 185.52363586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02188622 185.52363586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02188623 185.52366638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02188624 185.52366638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02188625 185.52368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02188626 185.52368164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02188627 185.52371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02188628 185.52371216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02188629 185.52374268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02188630 185.52374268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02188631 185.52375793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02188632 185.52375793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02188633 185.52378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02188634 185.52378845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02188635 185.52381897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02188636 185.52383423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02188637 185.52384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02188638 185.52384949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02188639 185.52388000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02188640 185.52388000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02188641 185.52391052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02188642 185.52391052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02188643 185.52394104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02188644 185.52394104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02188645 185.52397156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02188646 185.52397156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02188647 185.52398682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02188648 185.52398682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02188649 185.52401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02188650 185.52401733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02188651 185.52404785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02188652 185.52404785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02188653 185.52406311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02188654 185.52406311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02188655 185.52409363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02188656 185.52409363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02188657 185.52412415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02188658 185.52413940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02188659 185.52415466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02188660 185.52415466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02188661 185.52418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02188662 185.52418518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02188663 185.52421570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02188664 185.52421570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02188665 185.52424622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02188666 185.52426147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02188667 185.52429199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02188668 185.52429199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02188669 185.52430725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02188670 185.52430725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02188671 185.52433777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02188672 185.52435303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02188673 185.52438354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02188674 185.52438354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02188675 185.52439880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02188676 185.52439880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02188677 185.52442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02188678 185.52442932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02188679 185.52445984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02188680 185.52445984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02188681 185.52447510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02188682 185.52447510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02188683 185.52450562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02188684 185.52452087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02188685 185.52453613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02188686 185.52455139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02188687 185.52456665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02188688 185.52456665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02188689 185.52459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02188690 185.52459717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02188691 185.52462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02188692 185.52462769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02188693 185.52464294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02188694 185.52464294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02188695 185.52467346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02188696 185.52467346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02188697 185.52470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02188698 185.52470398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02188699 185.52471924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02188700 185.52471924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02188701 185.52474976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02188702 185.52474976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02188703 185.52478027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02188704 185.52478027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02188705 185.52479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02188706 185.52479553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02188707 185.52482605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02188708 185.52484131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02188709 185.52485657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02188710 185.52485657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02188711 185.52488708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02188712 185.52488708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02188713 185.52491760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02188714 185.52491760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02188715 185.52494812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02188716 185.52494812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02188717 185.52496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02188718 185.52496338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02188719 185.52500916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02188720 185.52500916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02188721 185.52502441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02188722 185.52502441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02188723 185.52505493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02188724 185.52505493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02188725 185.52508545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02188726 185.52508545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02188727 185.52510071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02188728 185.52510071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02188729 185.52513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02188730 185.52513123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02188731 185.52516174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02188732 185.52516174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02188733 185.52517700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02188734 185.52517700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02188735 185.52520752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02188736 185.52522278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02188737 185.52523804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02188738 185.52525330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02188739 185.52526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02188740 185.52526855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02188741 185.52529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02188742 185.52529907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02188743 185.52532959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02188744 185.52532959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02188745 185.52534485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02188746 185.52534485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02188747 185.52537537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02188748 185.52537537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02188749 185.52540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02188750 185.52540588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02188751 185.52542114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02188752 185.52542114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02188753 185.52545166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02188754 185.52545166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02188755 185.52548218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02188756 185.52548218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02188757 185.52549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02188758 185.52549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02188759 185.52552795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02188760 185.52554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02188761 185.52555847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02188762 185.52557373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02188763 185.52558899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02188764 185.52558899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02188765 185.52561951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02188766 185.52561951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02188767 185.52565002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02188768 185.52565002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02188769 185.52566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02188770 185.52566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02188771 185.52569580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02188772 185.52569580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02188773 185.52572632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02188774 185.52572632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02188775 185.52574158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02188776 185.52574158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02188777 185.52577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02188778 185.52577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02188779 185.52580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02188780 185.52580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02188781 185.52581787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02188782 185.52583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02188783 185.52586365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02188784 185.52586365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02188785 185.52589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02188786 185.52589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02188787 185.52590942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02188788 185.52590942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02188789 185.52593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02188790 185.52593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02188791 185.52597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02188792 185.52597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02188793 185.52598572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02188794 185.52598572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02188795 185.52601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02188796 185.52601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02188797 185.52604675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02188798 185.52604675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02188799 185.52606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02188800 185.52606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02188801 185.52609253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02188802 185.52610779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02188803 185.52612305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02188804 185.52613831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02188805 185.52615356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02188806 185.52615356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02188807 185.52618408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02188808 185.52618408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02188809 185.52621460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02188810 185.52621460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02188811 185.52622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02188812 185.52622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02188813 185.52626038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02188814 185.52626038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02188815 185.52629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02188816 185.52629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02188817 185.52630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02188818 185.52630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02188819 185.52633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02188820 185.52633667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02188821 185.52636719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02188822 185.52636719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02188823 185.52639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02188824 185.52639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02188825 185.52642822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02188826 185.52642822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02188827 185.52645874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02188828 185.52645874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02188829 185.52647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02188830 185.52648926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02188831 185.52651978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02188832 185.52651978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02188833 185.52653503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02188834 185.52653503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02188835 185.52656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02188836 185.52656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02188837 185.52659607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02188838 185.52659607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02188839 185.52661133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02188840 185.52661133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02188841 185.52664185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02188842 185.52664185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02188843 185.52667236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02188844 185.52667236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02188845 185.52668762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02188846 185.52670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02188847 185.52671814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02188848 185.52673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02188849 185.52676392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02188850 185.52676392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02188851 185.52677917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02188852 185.52677917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02188853 185.52680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02188854 185.52680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02188855 185.52684021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02188856 185.52684021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02188857 185.52685547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02188858 185.52685547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02188859 185.52688599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02188860 185.52688599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02188861 185.52691650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02188862 185.52691650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02188863 185.52693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02188864 185.52693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02188865 185.52696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02188866 185.52696228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02188867 185.52699280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02188868 185.52700806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02188869 185.52700806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02188870 185.52702332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02188871 185.52705383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02188872 185.52705383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02188873 185.52708435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02188874 185.52708435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02188875 185.52709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02188876 185.52709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02188877 185.52713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02188878 185.52713013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02188879 185.52716064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02188880 185.52716064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02188881 185.52717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02188882 185.52717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02188883 185.52720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02188884 185.52720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02188885 185.52723694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02188886 185.52723694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02188887 185.52725220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02188888 185.52725220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02188889 185.52728271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02188890 185.52729797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02188891 185.52731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02188892 185.52732849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02188893 185.52734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02188894 185.52734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02188895 185.52737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02188896 185.52737427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02188897 185.52740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02188898 185.52740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02188899 185.52743530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02188900 185.52743530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02188901 185.52746582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02188902 185.52746582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02188903 185.52748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02188904 185.52748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02188905 185.52751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02188906 185.52752686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02188907 185.52755737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02188908 185.52755737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02188909 185.52757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02188910 185.52757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02188911 185.52760315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02188912 185.52760315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02188913 185.52763367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02188914 185.52763367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02188915 185.52764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02188916 185.52764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02188917 185.52769470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02188918 185.52769470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02188919 185.52772522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02188920 185.52772522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02188921 185.52774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02188922 185.52774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02188923 185.52777100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02188924 185.52777100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02188925 185.52780151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02188926 185.52780151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02188927 185.52781677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02188928 185.52781677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02188929 185.52784729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02188930 185.52784729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02188931 185.52787781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02188932 185.52787781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02188933 185.52789307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02188934 185.52790833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02188935 185.52792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02188936 185.52793884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02188937 185.52795410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02188938 185.52795410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02188939 185.52798462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02188940 185.52798462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02188941 185.52801514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02188942 185.52801514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02188943 185.52804565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02188944 185.52804565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02188945 185.52806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02188946 185.52806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02188947 185.52809143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02188948 185.52809143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02188949 185.52812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02188950 185.52812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02188951 185.52813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02188952 185.52813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02188953 185.52816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02188954 185.52816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02188955 185.52819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02188956 185.52819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02188957 185.52821350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02188958 185.52822876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02188959 185.52825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02188960 185.52825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02188961 185.52827454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02188962 185.52827454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02188963 185.52830505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02188964 185.52830505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02188965 185.52833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02188966 185.52833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02188967 185.52835083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02188968 185.52836609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02188969 185.52839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02188970 185.52839661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02188971 185.52842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02188972 185.52842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02188973 185.52844238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02188974 185.52844238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02188975 185.52847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02188976 185.52848816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02188977 185.52850342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02188978 185.52851868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02188979 185.52853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02188980 185.52853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02188981 185.52856445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02188982 185.52856445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02188983 185.52859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02188984 185.52859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02188985 185.52861023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02188986 185.52861023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02188987 185.52864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02188988 185.52864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02188989 185.52867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02188990 185.52867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02188991 185.52868652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02188992 185.52868652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02188993 185.52871704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02188994 185.52871704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02188995 185.52874756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02188996 185.52874756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02188997 185.52876282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02188998 185.52877808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02188999 185.52879333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02189000 185.52880859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02189001 185.52883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02189002 185.52883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02189003 185.52885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02189004 185.52885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02189005 185.52888489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02189006 185.52890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02189007 185.52891541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02189008 185.52891541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02189009 185.52894592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02189010 185.52894592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02189011 185.52897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02189012 185.52897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02189013 185.52899170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02189014 185.52900696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02189015 185.52903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02189016 185.52903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02189017 185.52906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02189018 185.52906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02189019 185.52908325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02189020 185.52909851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02189021 185.52912903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02189022 185.52912903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02189023 185.52915955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02189024 185.52915955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02189025 185.52917480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02189026 185.52919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02189027 185.52922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02189028 185.52922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02189029 185.52923584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02189030 185.52923584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02189031 185.52926636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02189032 185.52926636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02189033 185.52929688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02189034 185.52929688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02189035 185.52931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02189036 185.52931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02189037 185.52934265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02189038 185.52935791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02189039 185.52938843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02189040 185.52938843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02189041 185.52940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02189042 185.52940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02189043 185.52943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02189044 185.52943420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02189045 185.52946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02189046 185.52946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02189047 185.52947998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02189048 185.52949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02189049 185.52952576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02189050 185.52952576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02189051 185.52955627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02189052 185.52955627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02189053 185.52957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02189054 185.52957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02189055 185.52960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02189056 185.52960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02189057 185.52963257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02189058 185.52963257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02189059 185.52964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02189060 185.52966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02189061 185.52969360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02189062 185.52969360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02189063 185.52970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02189064 185.52970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02189065 185.52973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02189066 185.52973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02189067 185.52976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02189068 185.52976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02189069 185.52978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02189070 185.52980042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02189071 185.52983093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02189072 185.52983093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02189073 185.52986145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02189074 185.52986145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02189075 185.52987671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02189076 185.52987671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02189077 185.52990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02189078 185.52990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02189079 185.52993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02189080 185.52995300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02189081 185.52996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02189082 185.52996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02189083 185.52999878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02189084 185.52999878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02189085 185.53002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02189086 185.53002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02189087 185.53004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02189088 185.53004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02189089 185.53009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02189090 185.53009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02189091 185.53010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02189092 185.53010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02189093 185.53013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02189094 185.53015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02189095 185.53018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02189096 185.53018188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02189097 185.53021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02189098 185.53021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02189099 185.53025818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02189100 185.53025818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02189101 185.53027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02189102 185.53027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02189103 185.53030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02189104 185.53030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02189105 185.53033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02189106 185.53033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02189107 185.53034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02189108 185.53036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02189109 185.53038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02189110 185.53039551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02189111 185.53042603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02189112 185.53042603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02189113 185.53044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02189114 185.53044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02189115 185.53047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02189116 185.53047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02189117 185.53050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02189118 185.53050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02189119 185.53053284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02189120 185.53053284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02189121 185.53056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02189122 185.53056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02189123 185.53057861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02189124 185.53057861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02189125 185.53060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02189126 185.53062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02189127 185.53065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02189128 185.53065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02189129 185.53067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02189130 185.53067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02189131 185.53070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02189132 185.53070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02189133 185.53073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02189134 185.53073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02189135 185.53074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02189136 185.53074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02189137 185.53077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02189138 185.53079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02189139 185.53080750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02189140 185.53082275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02189141 185.53083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02189142 185.53083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02189143 185.53086853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02189144 185.53086853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02189145 185.53089905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02189146 185.53089905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02189147 185.53091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02189148 185.53091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02189149 185.53094482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02189150 185.53096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02189151 185.53097534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02189152 185.53097534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02189153 185.53100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02189154 185.53100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02189155 185.53103638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02189156 185.53105164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02189157 185.53106689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02189158 185.53106689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02189159 185.53109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02189160 185.53109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02189161 185.53112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02189162 185.53112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02189163 185.53114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02189164 185.53114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02189165 185.53117371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02189166 185.53118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02189167 185.53121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02189168 185.53121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02189169 185.53123474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02189170 185.53123474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02189171 185.53126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02189172 185.53126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02189173 185.53129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02189174 185.53129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02189175 185.53131104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02189176 185.53131104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02189177 185.53134155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02189178 185.53135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02189179 185.53137207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02189180 185.53137207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02189181 185.53140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02189182 185.53140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02189183 185.53143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02189184 185.53143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02189185 185.53146362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02189186 185.53146362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02189187 185.53147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02189188 185.53147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02189189 185.53153992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02189190 185.53153992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02189191 185.53155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02189192 185.53155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02189193 185.53161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02189194 185.53161621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02189195 185.53163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02189196 185.53163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02189197 185.53166199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02189198 185.53166199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02189199 185.53169250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02189200 185.53169250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02189201 185.53172302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02189202 185.53172302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02189203 185.53175354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02189204 185.53175354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02189205 185.53176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02189206 185.53176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02189207 185.53179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02189208 185.53179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02189209 185.53182983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02189210 185.53184509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02189211 185.53186035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02189212 185.53186035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02189213 185.53189087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02189214 185.53189087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02189215 185.53192139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02189216 185.53192139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02189217 185.53193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02189218 185.53193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02189219 185.53196716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02189220 185.53196716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02189221 185.53199768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02189222 185.53199768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02189223 185.53201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02189224 185.53201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02189225 185.53204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02189226 185.53204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02189227 185.53207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02189228 185.53208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02189229 185.53210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02189230 185.53210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02189231 185.53213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02189232 185.53213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02189233 185.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02189234 185.53216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02189235 185.53218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02189236 185.53218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02189237 185.53222656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02189238 185.53222656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02189239 185.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02189240 185.53225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02189241 185.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02189242 185.53227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02189243 185.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02189244 185.53230286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02189245 185.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02189246 185.53233337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02189247 185.53236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02189248 185.53236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02189249 185.53239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02189250 185.53239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02189251 185.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02189252 185.53240967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02189253 185.53244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02189254 185.53244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02189255 185.53248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02189256 185.53248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02189257 185.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02189258 185.53250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02189259 185.53253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02189260 185.53253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02189261 185.53256226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02189262 185.53256226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02189263 185.53257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02189264 185.53257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02189265 185.53260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02189266 185.53260803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02189267 185.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02189268 185.53263855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02189269 185.53265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02189270 185.53265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02189271 185.53268433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02189272 185.53269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02189273 185.53273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02189274 185.53273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02189275 185.53274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02189276 185.53274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02189277 185.53277588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02189278 185.53277588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02189279 185.53280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02189280 185.53280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02189281 185.53283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02189282 185.53283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02189283 185.53286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02189284 185.53286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02189285 185.53288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02189286 185.53288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02189287 185.53291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02189288 185.53292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02189289 185.53295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02189290 185.53295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02189291 185.53297424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02189292 185.53297424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02189293 185.53300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02189294 185.53300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02189295 185.53303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02189296 185.53303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02189297 185.53305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02189298 185.53306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02189299 185.53308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02189300 185.53309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02189301 185.53312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02189302 185.53312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02189303 185.53314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02189304 185.53314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02189305 185.53317261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02189306 185.53317261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02189307 185.53320313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02189308 185.53320313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02189309 185.53321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02189310 185.53321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02189311 185.53324890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02189312 185.53326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02189313 185.53327942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02189314 185.53327942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02189315 185.53330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02189316 185.53330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02189317 185.53334045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02189318 185.53334045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02189319 185.53335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02189320 185.53335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02189321 185.53338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02189322 185.53338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02189323 185.53341675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02189324 185.53343201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02189325 185.53344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02189326 185.53344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02189327 185.53347778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02189328 185.53347778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02189329 185.53350830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02189330 185.53350830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02189331 185.53352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02189332 185.53352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02189333 185.53356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02189334 185.53356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02189335 185.53359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02189336 185.53359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02189337 185.53361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02189338 185.53361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02189339 185.53364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02189340 185.53364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02189341 185.53367615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02189342 185.53367615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02189343 185.53369141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02189344 185.53370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02189345 185.53373718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02189346 185.53373718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02189347 185.53375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02189348 185.53375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02189349 185.53378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02189350 185.53378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02189351 185.53381348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02189352 185.53381348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02189353 185.53384399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02189354 185.53384399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02189355 185.53385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02189356 185.53387451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02189357 185.53388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02189358 185.53390503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02189359 185.53392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02189360 185.53392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02189361 185.53395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02189362 185.53395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02189363 185.53398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02189364 185.53398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02189365 185.53399658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02189366 185.53399658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02189367 185.53402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02189368 185.53402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02189369 185.53405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02189370 185.53407288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02189371 185.53408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02189372 185.53408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02189373 185.53411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02189374 185.53411865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02189375 185.53414917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02189376 185.53414917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02189377 185.53416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02189378 185.53416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02189379 185.53419495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02189380 185.53421021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02189381 185.53424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02189382 185.53424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02189383 185.53425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02189384 185.53425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02189385 185.53428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02189386 185.53428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02189387 185.53431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02189388 185.53431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02189389 185.53434753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02189390 185.53434753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02189391 185.53437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02189392 185.53437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02189393 185.53439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02189394 185.53439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02189395 185.53442383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02189396 185.53442383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02189397 185.53445435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02189398 185.53445435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02189399 185.53446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02189400 185.53446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02189401 185.53450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02189402 185.53450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02189403 185.53453064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02189404 185.53453064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02189405 185.53456116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02189406 185.53456116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02189407 185.53457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02189408 185.53457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02189409 185.53460693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02189410 185.53462219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02189411 185.53463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02189412 185.53463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02189413 185.53466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02189414 185.53466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02189415 185.53469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02189416 185.53469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02189417 185.53471375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02189418 185.53471375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02189419 185.53474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02189420 185.53474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02189421 185.53477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02189422 185.53477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02189423 185.53479004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02189424 185.53479004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02189425 185.53482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02189426 185.53482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02189427 185.53485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02189428 185.53485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02189429 185.53488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02189430 185.53488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02189431 185.53491211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02189432 185.53491211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02189433 185.53494263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02189434 185.53494263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02189435 185.53495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02189436 185.53495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02189437 185.53498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02189438 185.53498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02189439 185.53501892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02189440 185.53503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02189441 185.53503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02189442 185.53504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02189443 185.53507996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02189444 185.53507996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02189445 185.53511047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02189446 185.53511047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02189447 185.53512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02189448 185.53512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02189449 185.53515625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02189450 185.53517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02189451 185.53518677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02189452 185.53518677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02189453 185.53521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02189454 185.53521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02189455 185.53524780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02189456 185.53524780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02189457 185.53526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02189458 185.53526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02189459 185.53530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02189460 185.53530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02189461 185.53533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02189462 185.53533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02189463 185.53535461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02189464 185.53535461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02189465 185.53538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02189466 185.53538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02189467 185.53541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02189468 185.53541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02189469 185.53543091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02189470 185.53544617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02189471 185.53547668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02189472 185.53547668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02189473 185.53550720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02189474 185.53550720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02189475 185.53552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02189476 185.53552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02189477 185.53555298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02189478 185.53555298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02189479 185.53558350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02189480 185.53558350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02189481 185.53559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02189482 185.53559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02189483 185.53562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02189484 185.53562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02189485 185.53565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02189486 185.53565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02189487 185.53569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02189488 185.53569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02189489 185.53572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02189490 185.53572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02189491 185.53575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02189492 185.53575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02189493 185.53576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02189494 185.53576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02189495 185.53579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02189496 185.53581238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02189497 185.53582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02189498 185.53582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02189499 185.53585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02189500 185.53585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02189501 185.53588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02189502 185.53588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02189503 185.53590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02189504 185.53590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02189505 185.53593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02189506 185.53593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02189507 185.53598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02189508 185.53598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02189509 185.53599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02189510 185.53599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02189511 185.53602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02189512 185.53602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02189513 185.53605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02189514 185.53605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02189515 185.53607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02189516 185.53608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02189517 185.53611755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02189518 185.53611755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02189519 185.53614807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02189520 185.53614807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02189521 185.53616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02189522 185.53616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02189523 185.53619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02189524 185.53619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02189525 185.53622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02189526 185.53622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02189527 185.53623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02189528 185.53625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02189529 185.53628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02189530 185.53628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02189531 185.53630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02189532 185.53630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02189533 185.53633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02189534 185.53633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02189535 185.53636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02189536 185.53636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02189537 185.53637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02189538 185.53639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02189539 185.53642273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02189540 185.53642273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02189541 185.53645325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02189542 185.53645325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02189543 185.53646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02189544 185.53646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02189545 185.53649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02189546 185.53649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02189547 185.53652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02189548 185.53652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02189549 185.53654480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02189550 185.53656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02189551 185.53659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02189552 185.53659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02189553 185.53662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02189554 185.53662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02189555 185.53663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02189556 185.53663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02189557 185.53666687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02189558 185.53666687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02189559 185.53669739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02189560 185.53669739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02189561 185.53672791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02189562 185.53672791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02189563 185.53675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02189564 185.53675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02189565 185.53677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02189566 185.53677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02189567 185.53680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02189568 185.53680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02189569 185.53684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02189570 185.53684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02189571 185.53686523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02189572 185.53686523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02189573 185.53689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02189574 185.53689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02189575 185.53692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02189576 185.53692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02189577 185.53694153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02189578 185.53695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02189579 185.53698730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02189580 185.53698730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02189581 185.53701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02189582 185.53701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02189583 185.53703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02189584 185.53703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02189585 185.53706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02189586 185.53706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02189587 185.53709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02189588 185.53709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02189589 185.53710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02189590 185.53712463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02189591 185.53713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02189592 185.53715515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02189593 185.53717041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02189594 185.53717041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02189595 185.53720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02189596 185.53720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02189597 185.53723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02189598 185.53723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02189599 185.53726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02189600 185.53726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02189601 185.53727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02189602 185.53727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02189603 185.53730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02189604 185.53730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02189605 185.53733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02189606 185.53733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02189607 185.53735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02189608 185.53735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02189609 185.53739929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02189610 185.53739929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02189611 185.53741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02189612 185.53741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02189613 185.53744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02189614 185.53744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02189615 185.53747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02189616 185.53747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02189617 185.53749084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02189618 185.53749084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02189619 185.53753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02189620 185.53753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02189621 185.53756714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02189622 185.53756714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02189623 185.53758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02189624 185.53758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02189625 185.53761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02189626 185.53761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02189627 185.53764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02189628 185.53765869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02189629 185.53767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02189630 185.53767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02189631 185.53770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02189632 185.53770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02189633 185.53773499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02189634 185.53773499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02189635 185.53775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02189636 185.53776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02189637 185.53778076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02189638 185.53779602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02189639 185.53781128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02189640 185.53781128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02189641 185.53784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02189642 185.53784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02189643 185.53787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02189644 185.53787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02189645 185.53788757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02189646 185.53788757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02189647 185.53791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02189648 185.53791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02189649 185.53794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02189650 185.53794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02189651 185.53796387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02189652 185.53796387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02189653 185.53800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02189654 185.53800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02189655 185.53804016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02189656 185.53804016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02189657 185.53805542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02189658 185.53805542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02189659 185.53808594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02189660 185.53808594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02189661 185.53811646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02189662 185.53811646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02189663 185.53814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02189664 185.53814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02189665 185.53817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02189666 185.53817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02189667 185.53820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02189668 185.53820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02189669 185.53822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02189670 185.53822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02189671 185.53825378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02189672 185.53826904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02189673 185.53828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02189674 185.53828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02189675 185.53831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02189676 185.53831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02189677 185.53834534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02189678 185.53834534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02189679 185.53836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02189680 185.53836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02189681 185.53839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02189682 185.53840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02189683 185.53842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02189684 185.53843689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02189685 185.53845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02189686 185.53845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02189687 185.53848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02189688 185.53848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02189689 185.53851318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02189690 185.53851318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02189691 185.53852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02189692 185.53852844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02189693 185.53855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02189694 185.53855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02189695 185.53858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02189696 185.53858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02189697 185.53860474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02189698 185.53862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02189699 185.53865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02189700 185.53865051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02189701 185.53868103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02189702 185.53868103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02189703 185.53869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02189704 185.53869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02189705 185.53872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02189706 185.53872681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02189707 185.53875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02189708 185.53875732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02189709 185.53878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02189710 185.53878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02189711 185.53881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02189712 185.53881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02189713 185.53884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02189714 185.53884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02189715 185.53886414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02189716 185.53886414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02189717 185.53889465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02189718 185.53890991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02189719 185.53892517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02189720 185.53892517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02189721 185.53895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02189722 185.53895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02189723 185.53898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02189724 185.53898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02189725 185.53900146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02189726 185.53900146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02189727 185.53903198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02189728 185.53904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02189729 185.53907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02189730 185.53907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02189731 185.53909302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02189732 185.53909302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02189733 185.53912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02189734 185.53912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02189735 185.53915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02189736 185.53915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02189737 185.53918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02189738 185.53918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02189739 185.53921509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02189740 185.53921509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02189741 185.53924561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02189742 185.53924561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02189743 185.53926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02189744 185.53926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02189745 185.53929138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02189746 185.53930664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02189747 185.53932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02189748 185.53932190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02189749 185.53935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02189750 185.53935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02189751 185.53938293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02189752 185.53938293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02189753 185.53939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02189754 185.53939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02189755 185.53942871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02189756 185.53944397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02189757 185.53947449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02189758 185.53947449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02189759 185.53948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02189760 185.53948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02189761 185.53952026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02189762 185.53952026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02189763 185.53955078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02189764 185.53955078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02189765 185.53956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02189766 185.53958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02189767 185.53961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02189768 185.53961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02189769 185.53964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02189770 185.53964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02189771 185.53965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02189772 185.53965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02189773 185.53968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02189774 185.53968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02189775 185.53971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02189776 185.53971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02189777 185.53974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02189778 185.53974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02189779 185.53977966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02189780 185.53977966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02189781 185.53979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02189782 185.53979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02189783 185.53982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02189784 185.53982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02189785 185.53985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02189786 185.53985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02189787 185.53987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02189788 185.53987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02189789 185.53990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02189790 185.53990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02189791 185.53993225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02189792 185.53993225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02189793 185.53996277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02189794 185.53996277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02189795 185.53997803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02189796 185.53999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02189797 185.54002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02189798 185.54002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02189799 185.54003906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02189800 185.54003906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02189801 185.54006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02189802 185.54006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02189803 185.54010010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02189804 185.54011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02189805 185.54013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02189806 185.54013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02189807 185.54016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02189808 185.54016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02189809 185.54019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02189810 185.54019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02189811 185.54020691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02189812 185.54020691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02189813 185.54023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02189814 185.54025269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02189815 185.54026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02189816 185.54026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02189817 185.54029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02189818 185.54029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02189819 185.54032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02189820 185.54032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02189821 185.54035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02189822 185.54035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -02189823 185.54037476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02189824 185.54039001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -02189825 185.54042053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02189826 185.54042053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -02189827 185.54043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02189828 185.54043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -02189829 185.54046631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02189830 185.54046631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -02189831 185.54049683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02189832 185.54049683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -02189833 185.54051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02189834 185.54051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -02189835 185.54054260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02189836 185.54054260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -02189837 185.54057312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02189838 185.54057312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -02189839 185.54060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02189840 185.54060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -02189841 185.54063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02189842 185.54063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -02189843 185.54066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02189844 185.54066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -02189845 185.54067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02189846 185.54067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -02189847 185.54071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02189848 185.54072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -02189849 185.54075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02189850 185.54075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -02189851 185.54077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02189852 185.54077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -02189853 185.54081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02189854 185.54081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -02189855 185.54084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02189856 185.54084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -02189857 185.54087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02189858 185.54087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -02189859 185.54090881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02189860 185.54090881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -02189861 185.54092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02189862 185.54093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -02189863 185.54096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02189864 185.54096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -02189865 185.54098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02189866 185.54098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -02189867 185.54101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02189868 185.54101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -02189869 185.54104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02189870 185.54104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -02189871 185.54106140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02189872 185.54106140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -02189873 185.54109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02189874 185.54110718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -02189875 185.54113770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02189876 185.54113770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -02189877 185.54115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02189878 185.54115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -02189879 185.54118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -02189880 185.54119873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -02189881 185.54122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -02189882 185.54122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -02189883 185.54124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -02189884 185.54124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -02189885 185.54127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -02189886 185.54127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -02189887 185.54130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -02189888 185.54130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -02189889 185.54132080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -02189890 185.54133606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -02189891 185.54136658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -02189892 185.54136658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -02189893 185.54138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -02189894 185.54138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -02189895 185.54141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -02189896 185.54141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -02189897 185.54144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -02189898 185.54144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -02189899 185.54145813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -02189900 185.54147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -02189901 185.54148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -02189902 185.54150391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -02189903 185.54153442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -02189904 185.54153442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -02189905 185.54154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -02189906 185.54154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -02189907 185.54158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -02189908 185.54158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -02189909 185.54161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -02189910 185.54161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -02189911 185.54162598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -02189912 185.54164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -02189913 185.54167175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -02189914 185.54167175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -02189915 185.54170227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -02189916 185.54170227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -02189917 185.54171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -02189918 185.54171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -02189919 185.54174805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -02189920 185.54174805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -02189921 185.54177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -02189922 185.54177856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -02189923 185.54180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -02189924 185.54180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -02189925 185.54183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02189926 185.54183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -02189927 185.54185486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02189928 185.54185486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -02189929 185.54188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02189930 185.54188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -02189931 185.54191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02189932 185.54193115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -02189933 185.54194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02189934 185.54194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -02189935 185.54197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02189936 185.54197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -02189937 185.54200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02189938 185.54200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -02189939 185.54202271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02189940 185.54202271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -02189941 185.54205322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02189942 185.54206848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -02189943 185.54209900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02189944 185.54209900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -02189945 185.54211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02189946 185.54211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -02189947 185.54214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02189948 185.54214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -02189949 185.54217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02189950 185.54217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -02189951 185.54219055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02189952 185.54220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -02189953 185.54223633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02189954 185.54223633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -02189955 185.54225159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02189956 185.54225159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -02189957 185.54228210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02189958 185.54228210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -02189959 185.54231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02189960 185.54231262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -02189961 185.54234314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02189962 185.54234314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -02189963 185.54237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02189964 185.54237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -02189965 185.54240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02189966 185.54240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -02189967 185.54241943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02189968 185.54241943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -02189969 185.54244995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -02189970 185.54244995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -02189971 185.54248047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -02189972 185.54248047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -02189973 185.54249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -02189974 185.54251099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -02189975 185.54254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -02189976 185.54254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -02189977 185.54257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -02189978 185.54257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -02189979 185.54258728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -02189980 185.54258728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -02189981 185.54261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -02189982 185.54261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -02189983 185.54264832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -02189984 185.54266357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -02189985 185.54267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -02189986 185.54267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -02189987 185.54270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -02189988 185.54270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -02189989 185.54273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -02189990 185.54273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -02189991 185.54275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -02189992 185.54275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -02189993 185.54278564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -02189994 185.54278564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -02189995 185.54281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -02189996 185.54281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -02189997 185.54284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -02189998 185.54284668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -02189999 185.54287720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -02190000 185.54287720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -02190001 185.54289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -02190002 185.54289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -02190003 185.54292297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -02190004 185.54292297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -02190005 185.54295349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -02190006 185.54296875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -02190007 185.54298401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -02190008 185.54298401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -02190009 185.54301453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -02190010 185.54301453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -02190011 185.54304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -02190012 185.54304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -02190013 185.54306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -02190014 185.54306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -02190015 185.54309082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -02190016 185.54310608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -02190017 185.54313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -02190018 185.54313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -02190019 185.54315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -02190020 185.54315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -02190021 185.54318237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -02190022 185.54318237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -02190023 185.54321289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -02190024 185.54321289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -02190025 185.54322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -02190026 185.54324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -02190027 185.54327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -02190028 185.54327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -02190029 185.54328918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -02190030 185.54328918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -02190031 185.54331970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -02190032 185.54331970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -02190033 185.54335022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02190034 185.54335022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02190035 185.54336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02190036 185.54338074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02190037 185.54341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02190038 185.54341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02190039 185.54344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02190040 185.54344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02190041 185.54345703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02190042 185.54345703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02190043 185.54348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02190044 185.54348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02190045 185.54351807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02190046 185.54353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02190047 185.54354858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02190048 185.54354858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02190049 185.54357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02190050 185.54357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02190051 185.54360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02190052 185.54360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02190053 185.54362488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02190054 185.54364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02190055 185.54365540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02190056 185.54367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02190057 185.54368591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02190058 185.54368591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02190059 185.54371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02190060 185.54371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02190061 185.54374695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02190062 185.54374695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02190063 185.54376221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02190064 185.54376221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02190065 185.54379272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02190066 185.54380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02190067 185.54383850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02190068 185.54383850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02190069 185.54385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02190070 185.54385376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02190071 185.54388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02190072 185.54388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02190073 185.54391479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02190074 185.54391479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02190075 185.54393005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02190076 185.54394531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02190077 185.54397583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02190078 185.54397583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02190079 185.54400635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02190080 185.54400635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02190081 185.54402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02190082 185.54402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02190083 185.54405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02190084 185.54405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02190085 185.54408264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02190086 185.54408264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02190087 185.54411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02190088 185.54411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02190089 185.54414368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02190090 185.54414368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02190091 185.54415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02190092 185.54415894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02190093 185.54418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02190094 185.54418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02190095 185.54421997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02190096 185.54423523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02190097 185.54425049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02190098 185.54425049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02190099 185.54428101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -02190100 185.54428101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -02190101 185.54431152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -02190102 185.54431152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -02190103 185.54432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -02190104 185.54432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -02190105 185.54435730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -02190106 185.54437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -02190107 185.54438782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -02190108 185.54440308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -02190109 185.54441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -02190110 185.54441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -02190111 185.54444885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -02190112 185.54444885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -02190113 185.54447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -02190114 185.54447937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -02190115 185.54449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -02190116 185.54449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -02190117 185.54452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -02190118 185.54454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -02190119 185.54455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -02190120 185.54455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -02190121 185.54458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -02190122 185.54458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -02190123 185.54461670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -02190124 185.54461670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -02190125 185.54464722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -02190126 185.54464722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -02190127 185.54466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -02190128 185.54467773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -02190129 185.54470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -02190130 185.54470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -02190131 185.54472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -02190132 185.54472351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -02190133 185.54475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -02190134 185.54475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -02190135 185.54478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -02190136 185.54478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -02190137 185.54479980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -02190138 185.54481506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -02190139 185.54484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -02190140 185.54484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -02190141 185.54487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -02190142 185.54487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -02190143 185.54489136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -02190144 185.54489136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -02190145 185.54492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -02190146 185.54492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -02190147 185.54495239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -02190148 185.54495239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -02190149 185.54498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -02190150 185.54498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -02190151 185.54501343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -02190152 185.54501343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -02190153 185.54504395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -02190154 185.54504395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -02190155 185.54505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -02190156 185.54507446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -02190157 185.54510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -02190158 185.54510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -02190159 185.54512024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -02190160 185.54512024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -02190161 185.54515076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -02190162 185.54515076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -02190163 185.54518127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -02190164 185.54518127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -02190165 185.54519653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -02190166 185.54521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -02190167 185.54524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -02190168 185.54524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -02190169 185.54527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -02190170 185.54527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -02190171 185.54530334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -02190172 185.54531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -02190173 185.54534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -02190174 185.54534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -02190175 185.54536438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -02190176 185.54536438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -02190177 185.54539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -02190178 185.54539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -02190179 185.54542542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -02190180 185.54542542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -02190181 185.54544067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -02190182 185.54545593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -02190183 185.54548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -02190184 185.54548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -02190185 185.54551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -02190186 185.54551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -02190187 185.54553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -02190188 185.54553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -02190189 185.54556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -02190190 185.54556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -02190191 185.54559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -02190192 185.54559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -02190193 185.54562378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -02190194 185.54562378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -02190195 185.54565430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -02190196 185.54565430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -02190197 185.54566956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -02190198 185.54566956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -02190199 185.54570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -02190200 185.54570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -02190201 185.54573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -02190202 185.54573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -02190203 185.54576111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -02190204 185.54576111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -02190205 185.54579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -02190206 185.54579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -02190207 185.54582214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -02190208 185.54582214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -02190209 185.54583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -02190210 185.54583740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -02190211 185.54586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -02190212 185.54588318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -02190213 185.54591370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -02190214 185.54591370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -02190215 185.54592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -02190216 185.54592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -02190217 185.54595947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -02190218 185.54595947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -02190219 185.54598999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -02190220 185.54598999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -02190221 185.54600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -02190222 185.54602051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -02190223 185.54605103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -02190224 185.54605103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -02190225 185.54606628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -02190226 185.54606628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -02190227 185.54609680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -02190228 185.54609680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -02190229 185.54612732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -02190230 185.54612732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -02190231 185.54615784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -02190232 185.54615784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -02190233 185.54617310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -02190234 185.54618835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -02190235 185.54621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -02190236 185.54621887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -02190237 185.54623413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -02190238 185.54623413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -02190239 185.54626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -02190240 185.54627991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -02190241 185.54631042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -02190242 185.54631042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -02190243 185.54632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -02190244 185.54632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -02190245 185.54635620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -02190246 185.54635620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -02190247 185.54638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -02190248 185.54638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -02190249 185.54640198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -02190250 185.54640198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -02190251 185.54644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -02190252 185.54644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -02190253 185.54646301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -02190254 185.54646301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -02190255 185.54649353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -02190256 185.54649353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -02190257 185.54652405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -02190258 185.54652405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -02190259 185.54655457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -02190260 185.54655457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -02190261 185.54658508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -02190262 185.54658508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -02190263 185.54661560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -02190264 185.54661560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -02190265 185.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -02190266 185.54663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -02190267 185.54666138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -02190268 185.54666138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -02190269 185.54669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -02190270 185.54670715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -02190271 185.54672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -02190272 185.54672241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -02190273 185.54675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -02190274 185.54675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -02190275 185.54678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -02190276 185.54678345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -02190277 185.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -02190278 185.54681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -02190279 185.54684448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -02190280 185.54684448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -02190281 185.54685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -02190282 185.54685974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -02190283 185.54689026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -02190284 185.54689026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -02190285 185.54692078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -02190286 185.54693604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -02190287 185.54695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -02190288 185.54695129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -02190289 185.54698181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -02190290 185.54698181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -02190291 185.54701233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -02190292 185.54701233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -02190293 185.54702759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -02190294 185.54704285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -02190295 185.54707336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -02190296 185.54707336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -02190297 185.54710388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -02190298 185.54710388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -02190299 185.54711914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -02190300 185.54713440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -02190301 185.54716492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -02190302 185.54716492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -02190303 185.54718018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -02190304 185.54718018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -02190305 185.54721069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -02190306 185.54721069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -02190307 185.54724121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -02190308 185.54724121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -02190309 185.54725647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -02190310 185.54727173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -02190311 185.54730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -02190312 185.54730225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -02190313 185.54733276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -02190314 185.54733276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -02190315 185.54734802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -02190316 185.54734802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -02190317 185.54737854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -02190318 185.54737854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -02190319 185.54740906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -02190320 185.54742432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -02190321 185.54743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -02190322 185.54743958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -02190323 185.54747009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -02190324 185.54747009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -02190325 185.54750061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -02190326 185.54750061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -02190327 185.54751587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -02190328 185.54751587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -02190329 185.54754639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -02190330 185.54756165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -02190331 185.54757690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -02190332 185.54757690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -02190333 185.54760742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -02190334 185.54760742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -02190335 185.54763794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -02190336 185.54763794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -02190337 185.54765320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -02190338 185.54765320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -02190339 185.54768372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -02190340 185.54769897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -02190341 185.54772949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -02190342 185.54772949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -02190343 185.54774475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -02190344 185.54774475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -02190345 185.54777527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -02190346 185.54777527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -02190347 185.54780579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -02190348 185.54780579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -02190349 185.54782104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -02190350 185.54783630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -02190351 185.54786682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -02190352 185.54786682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -02190353 185.54789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -02190354 185.54789734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -02190355 185.54791260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -02190356 185.54791260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -02190357 185.54794312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -02190358 185.54794312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -02190359 185.54797363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -02190360 185.54797363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -02190361 185.54800415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -02190362 185.54800415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -02190363 185.54803467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -02190364 185.54803467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -02190365 185.54806519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -02190366 185.54806519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -02190367 185.54808044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -02190368 185.54808044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -02190369 185.54811096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -02190370 185.54812622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -02190371 185.54814148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -02190372 185.54814148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -02190373 185.54817200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02190374 185.54817200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02190375 185.54820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02190376 185.54820251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02190377 185.54821777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02190378 185.54821777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02190379 185.54824829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02190380 185.54826355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02190381 185.54829407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02190382 185.54829407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02190383 185.54830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02190384 185.54830933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02190385 185.54833984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02190386 185.54833984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02190387 185.54837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02190388 185.54837036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02190389 185.54838562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02190390 185.54840088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02190391 185.54843140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02190392 185.54843140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02190393 185.54846191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02190394 185.54846191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02190395 185.54847717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -02190396 185.54847717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -02190397 185.54850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -02190398 185.54850769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -02190399 185.54853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -02190400 185.54853821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -02190401 185.54855347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -02190402 185.54856873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -02190403 185.54859924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -02190404 185.54859924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -02190405 185.54861450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -02190406 185.54861450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -02190407 185.54864502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -02190408 185.54864502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -02190409 185.54867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -02190410 185.54867554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -02190411 185.54869080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -02190412 185.54870605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -02190413 185.54873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -02190414 185.54873657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -02190415 185.54876709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -02190416 185.54876709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -02190417 185.54878235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -02190418 185.54878235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -02190419 185.54881287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -02190420 185.54881287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -02190421 185.54884338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -02190422 185.54885864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -02190423 185.54887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -02190424 185.54887390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -02190425 185.54890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -02190426 185.54890442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -02190427 185.54893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -02190428 185.54893494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -02190429 185.54895020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -02190430 185.54895020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -02190431 185.54898071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -02190432 185.54898071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -02190433 185.54901123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -02190434 185.54901123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -02190435 185.54904175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -02190436 185.54904175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -02190437 185.54907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -02190438 185.54907227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -02190439 185.54908752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -02190440 185.54908752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -02190441 185.54911804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -02190442 185.54911804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -02190443 185.54914856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -02190444 185.54916382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -02190445 185.54917908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -02190446 185.54917908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -02190447 185.54920959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -02190448 185.54920959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -02190449 185.54924011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -02190450 185.54924011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -02190451 185.54925537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -02190452 185.54925537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -02190453 185.54928589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -02190454 185.54930115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -02190455 185.54933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -02190456 185.54933167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -02190457 185.54934692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -02190458 185.54934692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -02190459 185.54937744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -02190460 185.54937744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -02190461 185.54940796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -02190462 185.54940796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -02190463 185.54942322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -02190464 185.54943848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -02190465 185.54946899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -02190466 185.54946899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -02190467 185.54948425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -02190468 185.54948425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -02190469 185.54951477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -02190470 185.54951477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -02190471 185.54954529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -02190472 185.54954529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -02190473 185.54956055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -02190474 185.54956055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -02190475 185.54959106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -02190476 185.54960632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -02190477 185.54963684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -02190478 185.54963684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -02190479 185.54965210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -02190480 185.54965210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -02190481 185.54968262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -02190482 185.54968262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -02190483 185.54971313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -02190484 185.54971313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -02190485 185.54972839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -02190486 185.54974365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -02190487 185.54977417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -02190488 185.54977417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -02190489 185.54980469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -02190490 185.54980469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -02190491 185.54981995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -02190492 185.54981995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -02190493 185.54985046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -02190494 185.54985046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -02190495 185.54988098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -02190496 185.54988098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -02190497 185.54991150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -02190498 185.54991150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -02190499 185.54994202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -02190500 185.54994202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -02190501 185.54995728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -02190502 185.54995728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -02190503 185.54998779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -02190504 185.55000305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -02190505 185.55003357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -02190506 185.55003357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -02190507 185.55004883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -02190508 185.55004883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -02190509 185.55009460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -02190510 185.55009460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -02190511 185.55012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -02190512 185.55012512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -02190513 185.55014038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -02190514 185.55015564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -02190515 185.55018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -02190516 185.55018616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -02190517 185.55020142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -02190518 185.55020142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -02190519 185.55023193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -02190520 185.55023193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -02190521 185.55026245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -02190522 185.55026245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -02190523 185.55027771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -02190524 185.55029297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -02190525 185.55032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -02190526 185.55032349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -02190527 185.55035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -02190528 185.55035400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -02190529 185.55036926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -02190530 185.55036926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -02190531 185.55039978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -02190532 185.55039978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -02190533 185.55044556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -02190534 185.55044556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -02190535 185.55046082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -02190536 185.55046082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -02190537 185.55049133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -02190538 185.55049133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -02190539 185.55052185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -02190540 185.55052185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -02190541 185.55053711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -02190542 185.55053711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -02190543 185.55056763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -02190544 185.55058289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -02190545 185.55059814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -02190546 185.55059814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -02190547 185.55062866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -02190548 185.55062866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -02190549 185.55065918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -02190550 185.55065918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -02190551 185.55067444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -02190552 185.55068970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -02190553 185.55072021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -02190554 185.55072021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -02190555 185.55075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -02190556 185.55075073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -02190557 185.55076599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -02190558 185.55076599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -02190559 185.55079651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -02190560 185.55079651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -02190561 185.55084229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -02190562 185.55084229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -02190563 185.55085754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -02190564 185.55085754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -02190565 185.55088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -02190566 185.55088806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -02190567 185.55091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -02190568 185.55091858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -02190569 185.55093384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -02190570 185.55094910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -02190571 185.55097961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -02190572 185.55097961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -02190573 185.55099487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -02191075 185.55813599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -02191076 185.55813599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -02191077 185.55815125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -02191078 185.55815125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -02191079 185.55818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -02191080 185.55818176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -02191081 185.55821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -02191082 185.55821228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -02191083 185.55822754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -02191084 185.55824280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -02191085 185.55827332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -02191086 185.55827332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -02191087 185.55830383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -02191088 185.55830383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -02191089 185.55831909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -02191090 185.55831909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -02191091 185.55834961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -02191092 185.55834961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -02191093 185.55838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -02191094 185.55838013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -02191095 185.55841064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -02191096 185.55841064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -02191097 185.55844116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -02191098 185.55844116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -02191099 185.55845642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -02191100 185.55845642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -02191101 185.55848694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -02191102 185.55848694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -02191103 185.55851746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -02191104 185.55853271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -02191105 185.55854797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -02191106 185.55854797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -02191107 185.55857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -02191108 185.55857849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -02191109 185.55860901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -02191110 185.55860901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -02191111 185.55862427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -02191112 185.55862427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -02191113 185.55865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -02191114 185.55865479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -02191115 185.55868530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -02191116 185.55870056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -02191117 185.55871582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -02191118 185.55871582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -02194535 185.60659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -02194536 185.60661316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9a8 -02194537 185.60664368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -02194538 185.60664368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9b8 -02194539 185.60667419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -02194540 185.60667419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9c8 -02194541 185.60668945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d8 -02194542 185.60668945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9d8 -02194543 185.60671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e8 -02194544 185.60671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9e8 -02194545 185.60675049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f8 -02194546 185.60676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xf9f8 -02194547 185.60678101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa08 -02194548 185.60678101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa08 -02194549 185.60681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa18 -02194550 185.60681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa18 -02194551 185.60684204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa28 -02194552 185.60684204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa28 -02194553 185.60685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa38 -02194554 185.60685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa38 -02194555 185.60688782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa48 -02194556 185.60690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa48 -02194557 185.60691833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa58 -02194558 185.60691833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa58 -02194559 185.60694885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa68 -02194560 185.60694885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa68 -02194561 185.60697937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa78 -02194562 185.60697937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa78 -02194563 185.60699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa88 -02194564 185.60699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa88 -02194565 185.60702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa98 -02194566 185.60702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa98 -02194567 185.60705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa8 -02194568 185.60707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa8 -02194569 185.60708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab8 -02194570 185.60708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab8 -02194571 185.60711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac8 -02194572 185.60711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac8 -02194573 185.60714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad8 -02194574 185.60714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad8 -02194575 185.60716248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae8 -02194576 185.60716248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae8 -02194577 185.60719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -02194578 185.60720825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -02197345 185.64605713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15178 -02197346 185.64605713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15178 -02197347 185.64607239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15188 -02197348 185.64607239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15188 -02197349 185.64610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15198 -02197350 185.64610291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15198 -02197351 185.64613342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a8 -02197352 185.64614868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151a8 -02197353 185.64616394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b8 -02197354 185.64616394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151b8 -02197355 185.64619446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c8 -02197356 185.64619446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151c8 -02197357 185.64622498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d8 -02197358 185.64622498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151d8 -02197359 185.64624023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e8 -02197360 185.64624023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151e8 -02197361 185.64627075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f8 -02197362 185.64628601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x151f8 -02197363 185.64630127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15208 -02197364 185.64631653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15208 -02197365 185.64633179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15218 -02197366 185.64633179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15218 -02197367 185.64636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15228 -02197368 185.64636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15228 -02197369 185.64639282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -02197370 185.64639282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -02197371 185.64640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -02197372 185.64640808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -02197373 185.64643860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -02197374 185.64645386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -02197375 185.64648438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -02197376 185.64648438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -02197377 185.64649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -02197378 185.64649963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -02197379 185.64653015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -02197380 185.64653015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -02197381 185.64656067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -02197382 185.64656067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -02197383 185.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -02197384 185.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -02197385 185.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -02197386 185.64662170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -02197387 185.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -02197388 185.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -02200181 185.68588257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa18 -02200182 185.68588257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa18 -02200183 185.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -02200184 185.68589783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -02200185 185.68592834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -02200186 185.68594360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -02200187 185.68595886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -02200188 185.68595886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -02200189 185.68598938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -02200190 185.68598938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -02200191 185.68601990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02200192 185.68601990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -02200193 185.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02200194 185.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -02200195 185.68606567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02200196 185.68606567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -02200197 185.68609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02200198 185.68611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -02200199 185.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02200200 185.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -02200201 185.68615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02200202 185.68615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -02200203 185.68618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02200204 185.68618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -02200205 185.68620300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02200206 185.68620300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -02200207 185.68623352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02200208 185.68624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -02200209 185.68627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -02200210 185.68627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -02200211 185.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -02200212 185.68629456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -02200213 185.68632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -02200214 185.68632507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -02200215 185.68635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -02200216 185.68635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -02200217 185.68637085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -02200218 185.68637085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -02200219 185.68640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -02200220 185.68641663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -02200221 185.68643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -02200222 185.68643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -02200223 185.68646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -02200224 185.68646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -02202649 185.71992493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -02202650 185.71992493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f738 -02202651 185.71995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -02202652 185.71995544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f748 -02202653 185.71997070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -02202654 185.71998596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f758 -02202655 185.72001648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -02202656 185.72001648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f768 -02202657 185.72003174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -02202658 185.72003174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f778 -02202659 185.72006226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -02202660 185.72006226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f788 -02202661 185.72009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -02202662 185.72009277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f798 -02202663 185.72010803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -02202664 185.72010803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a8 -02202665 185.72013855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -02202666 185.72013855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b8 -02202667 185.72016907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c8 -02202668 185.72016907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c8 -02202669 185.72019958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -02202670 185.72019958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d8 -02202671 185.72021484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e8 -02202672 185.72021484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e8 -02202673 185.72024536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f8 -02202674 185.72026062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f8 -02202675 185.72027588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f808 -02202676 185.72027588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f808 -02202677 185.72029114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f818 -02202678 185.72030640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f818 -02202679 185.72033691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f828 -02202680 185.72033691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f828 -02202681 185.72035217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -02202682 185.72035217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f838 -02202683 185.72038269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -02202684 185.72038269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f848 -02202685 185.72041321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -02202686 185.72041321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f858 -02202687 185.72042847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -02202688 185.72042847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f868 -02202689 185.72045898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -02202690 185.72045898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f878 -02202691 185.72048950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -02202692 185.72048950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f888 -02222225 186.00073242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -02222226 186.00074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -02222227 186.00076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -02222228 186.00076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -02222229 186.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -02222230 186.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -02222231 186.00082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -02222232 186.00082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -02222233 186.00083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -02222234 186.00083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -02222235 186.00086975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -02222236 186.00088501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -02222237 186.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -02222238 186.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -02222239 186.00093079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -02222240 186.00093079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -02222241 186.00096130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -02222242 186.00096130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -02222243 186.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -02222244 186.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -02222245 186.00100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -02222246 186.00100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -02222247 186.00103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -02222248 186.00105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -02222249 186.00106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -02222250 186.00106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -02222251 186.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -02222252 186.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -02222253 186.00112915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -02222254 186.00112915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -02222255 186.00114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -02222256 186.00114441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -02222257 186.00117493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -02222258 186.00119019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -02222259 186.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -02222260 186.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -02222261 186.00123596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -02222262 186.00123596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -02222263 186.00126648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -02222264 186.00126648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -02222265 186.00129700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -02222266 186.00129700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -02222267 186.00131226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -02222268 186.00132751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -02225075 186.04064941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -02225076 186.04064941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -02225077 186.04067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -02225078 186.04067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -02225079 186.04071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -02225080 186.04071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -02225081 186.04072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -02225082 186.04072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b428 -02225083 186.04075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -02225084 186.04077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b438 -02225085 186.04078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b448 -02225086 186.04078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b448 -02225087 186.04081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b458 -02225088 186.04081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b458 -02225089 186.04084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b468 -02225090 186.04084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b468 -02225091 186.04086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b478 -02225092 186.04086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b478 -02225093 186.04089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b488 -02225094 186.04090881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b488 -02225095 186.04093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b498 -02225096 186.04093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b498 -02225097 186.04095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a8 -02225098 186.04095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a8 -02225099 186.04098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b8 -02225100 186.04098511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b8 -02225101 186.04101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c8 -02225102 186.04101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c8 -02225103 186.04103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d8 -02225104 186.04103088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d8 -02225105 186.04106140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e8 -02225106 186.04107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e8 -02225107 186.04110718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f8 -02225108 186.04110718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f8 -02225109 186.04112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b508 -02225110 186.04112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b508 -02225111 186.04115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b518 -02225112 186.04115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b518 -02225113 186.04118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b528 -02225114 186.04118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b528 -02225115 186.04119873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b538 -02225116 186.04121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b538 -02225117 186.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b548 -02225118 186.04124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b548 -02227559 186.07510376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -02227560 186.07510376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -02227561 186.07511902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -02227562 186.07511902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -02227563 186.07514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -02227564 186.07514954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -02227565 186.07518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -02227566 186.07518005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -02227567 186.07519531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -02227568 186.07521057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -02227569 186.07524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -02227570 186.07524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -02227571 186.07527161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -02227572 186.07527161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -02227573 186.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -02227574 186.07528687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -02227575 186.07531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -02227576 186.07531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -02227577 186.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -02227578 186.07534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -02227579 186.07537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -02227580 186.07537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -02227581 186.07540894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -02227582 186.07540894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -02227583 186.07542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -02227584 186.07542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -02227585 186.07545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -02227586 186.07545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -02227587 186.07548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -02227588 186.07548523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -02227589 186.07550049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -02227590 186.07551575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -02227591 186.07554626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -02227592 186.07554626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -02227593 186.07557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -02227594 186.07557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -02227595 186.07559204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -02227596 186.07559204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -02227597 186.07562256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -02227598 186.07562256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -02227599 186.07565308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -02227600 186.07566833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -02227601 186.07568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -02227602 186.07568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -02228955 186.40518188 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228956 186.42343140 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228957 186.42344666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228958 186.45504761 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228959 186.45510864 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228960 186.45512390 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228961 186.45512390 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02228962 186.45526123 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228963 186.45526123 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228964 186.45532227 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228965 186.45533752 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228966 186.56304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02228967 186.56306458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02228968 186.56454468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228969 186.61186218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02228970 186.61189270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02228971 186.61384583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228972 188.42564392 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228973 188.44432068 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228974 188.44433594 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228975 188.96229553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228976 188.96234131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228977 188.96235657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228978 188.96237183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02228979 188.96249390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228980 188.96249390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228981 188.96255493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02228982 188.96257019 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02228983 190.44525146 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02228984 190.46432495 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228985 190.46434021 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02228986 191.09481812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02228987 191.09481812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02228988 191.09486389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02228989 191.09486389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02228990 191.09487915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02228991 191.09487915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02228992 191.09490967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02228993 191.09490967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02228994 191.09494019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02228995 191.09494019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02228996 191.09497070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02228997 191.09497070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02228998 191.09500122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02228999 191.09500122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02229000 191.09503174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02229001 191.09503174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02229002 191.09504700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02229003 191.09504700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02229004 191.09507751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02229005 191.09507751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02229006 191.09510803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02229007 191.09510803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02229008 191.09512329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02229009 191.09513855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02229010 191.09516907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02229011 191.09516907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02229012 191.09519958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02229013 191.09519958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02229014 191.09521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02229015 191.09521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02229016 191.09524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02229017 191.09524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02229018 191.09527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02229019 191.09527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02229020 191.09530640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02229021 191.09530640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02229022 191.09533691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02229023 191.09533691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02229024 191.09536743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02229025 191.09536743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02229026 191.09538269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02229027 191.09538269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02229028 191.09541321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02229029 191.09542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02229030 191.09544373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02229031 191.09544373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02229032 191.09547424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02229033 191.09547424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02229034 191.09550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02229035 191.09550476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02229036 191.09552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02229037 191.09552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02229038 191.09555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02229039 191.09556580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02229040 191.09559631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02229041 191.09559631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02229042 191.09561157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02229043 191.09561157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02229044 191.09564209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02229045 191.09564209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02229046 191.09567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02229047 191.09567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02229048 191.09568787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02229049 191.09570313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02229050 191.09573364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02229051 191.09573364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02229052 191.09576416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02229053 191.09576416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02229054 191.09577942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02229055 191.09577942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02229056 191.09580994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02229057 191.09580994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02229058 191.09584045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02229059 191.09584045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02229060 191.09587097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02229061 191.09587097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02229062 191.09590149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02229063 191.09590149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02229064 191.09591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02229065 191.09591675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02229066 191.09594727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02229067 191.09594727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02229068 191.09597778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02229069 191.09599304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02229070 191.09600830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02229071 191.09600830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02229072 191.09603882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02229073 191.09603882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02229074 191.09606934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02229075 191.09606934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02229076 191.09608459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02229077 191.09608459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02229078 191.09611511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02229079 191.09613037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02229080 191.09616089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02229081 191.09616089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02229082 191.09617615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02229083 191.09617615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02229084 191.09620667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02229085 191.09620667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02229086 191.09623718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02229087 191.09623718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02229088 191.09625244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02229089 191.09626770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02229090 191.09629822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02229091 191.09629822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02229092 191.09631348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02229093 191.09631348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02229094 191.09634399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02229095 191.09634399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02229096 191.09637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02229097 191.09637451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02229098 191.09638977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02229099 191.09640503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02229100 191.09643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02229101 191.09643555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02229102 191.09646606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02229103 191.09646606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02229104 191.09648132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02229105 191.09648132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02229106 191.09651184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02229107 191.09651184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02229108 191.09654236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02229109 191.09655762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02229110 191.09658813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02229111 191.09658813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02229112 191.09661865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02229113 191.09661865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02229114 191.09663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02229115 191.09663391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02229116 191.09666443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02229117 191.09667969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02229118 191.09671021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02229119 191.09671021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02229120 191.09672546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02229121 191.09672546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02229122 191.09675598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02229123 191.09675598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02229124 191.09678650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02229125 191.09678650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02229126 191.09681702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02229127 191.09681702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02229128 191.09684753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02229129 191.09684753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02229130 191.09686279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02229131 191.09686279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02229132 191.09689331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02229133 191.09689331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02229134 191.09692383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02229135 191.09693909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02229136 191.09695435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02229137 191.09695435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02229138 191.09698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02229139 191.09698486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02229140 191.09701538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02229141 191.09701538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02229142 191.09703064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02229143 191.09703064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02229144 191.09706116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02229145 191.09706116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02229146 191.09710693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02229147 191.09710693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02229148 191.09712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02229149 191.09712219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02229150 191.09715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02229151 191.09715271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02229152 191.09718323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02229153 191.09718323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02229154 191.09719849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02229155 191.09721375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02229156 191.09724426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02229157 191.09724426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02229158 191.09727478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02229159 191.09727478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02229160 191.09729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02229161 191.09729004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02229162 191.09732056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02229163 191.09732056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02229164 191.09735107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02229165 191.09735107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02229166 191.09738159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02229167 191.09738159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02229168 191.09741211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02229169 191.09741211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02229170 191.09744263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02229171 191.09744263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02229172 191.09748840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02229173 191.09748840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02229174 191.09750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02229175 191.09750366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02229176 191.09753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02229177 191.09753418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02229178 191.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02229179 191.09756470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02229180 191.09757996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02229181 191.09759521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02229182 191.09762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02229183 191.09762573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02229184 191.09765625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02229185 191.09765625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02229186 191.09767151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02229187 191.09767151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02229188 191.09770203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02229189 191.09770203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02229190 191.09774780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02229191 191.09774780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02229192 191.09776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02229193 191.09776306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02229194 191.09779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02229195 191.09779358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02229196 191.09782410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02229197 191.09782410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02229198 191.09783936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02229199 191.09785461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02229200 191.09788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02229201 191.09788513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02229202 191.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02229203 191.09790039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02229204 191.09793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02229205 191.09793091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02229206 191.09796143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02229207 191.09797668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02229208 191.09799194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02229209 191.09799194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02229210 191.09802246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02229211 191.09802246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02229212 191.09805298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02229213 191.09805298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02229214 191.09806824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02229215 191.09806824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02229216 191.09809875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02229217 191.09811401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02229218 191.09814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02229219 191.09814453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02229220 191.09815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02229221 191.09815979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02229222 191.09819031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02229223 191.09819031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02229224 191.09822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02229225 191.09822083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02229226 191.09823608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02229227 191.09825134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02229228 191.09828186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02229229 191.09828186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02229230 191.09829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02229231 191.09829712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02229232 191.09832764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02229233 191.09832764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02229234 191.09835815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02229235 191.09837341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02229236 191.09838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02229237 191.09838867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02229238 191.09841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02229239 191.09841919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02229240 191.09844971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02229241 191.09844971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02229242 191.09846497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02229243 191.09846497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02229244 191.09849548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02229245 191.09851074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02229246 191.09854126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02229247 191.09854126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02229248 191.09855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02229249 191.09855652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02229250 191.09858704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02229251 191.09858704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02229252 191.09861755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02229253 191.09861755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02229254 191.09864807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02229255 191.09864807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02229256 191.09867859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02229257 191.09867859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02229258 191.09869385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02229259 191.09869385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02229260 191.09872437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02229261 191.09873962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02229262 191.09877014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02229263 191.09877014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02229264 191.09878540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02229265 191.09878540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02229266 191.09881592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02229267 191.09881592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02229268 191.09884644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02229269 191.09886169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02229270 191.09887695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02229271 191.09887695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02229272 191.09890747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02229273 191.09890747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02229274 191.09893799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02229275 191.09893799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02229276 191.09895325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02229277 191.09896851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02229278 191.09899902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02229279 191.09899902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02229280 191.09901428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02229281 191.09901428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02229282 191.09904480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02229283 191.09904480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02229284 191.09907532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02229285 191.09909058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02229286 191.09910583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02229287 191.09910583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02229288 191.09913635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02229289 191.09913635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02229290 191.09916687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02229291 191.09916687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02229292 191.09918213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02229293 191.09918213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02229294 191.09922791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02229295 191.09922791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02229296 191.09925842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02229297 191.09925842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02229298 191.09927368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02229299 191.09927368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02229300 191.09930420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02229301 191.09931946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02229302 191.09933472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02229303 191.09933472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02229304 191.09936523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02229305 191.09936523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02229306 191.09939575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02229307 191.09939575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02229308 191.09941101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02229309 191.09942627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02229310 191.09945679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02229311 191.09945679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02229312 191.09948730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02229313 191.09948730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02229314 191.09950256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02229315 191.09950256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02229316 191.09953308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02229317 191.09953308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02229318 191.09956360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02229319 191.09956360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02229320 191.09959412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02229321 191.09959412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02229322 191.09962463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02229323 191.09962463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02229324 191.09965515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02229325 191.09965515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02229326 191.09967041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02229327 191.09968567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02229328 191.09971619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02229329 191.09971619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02229330 191.09973145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02229331 191.09973145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02229332 191.09976196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02229333 191.09977722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02229334 191.09980774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02229335 191.09980774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02229336 191.09982300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02229337 191.09982300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02229338 191.09985352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02229339 191.09985352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02229340 191.09988403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02229341 191.09988403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02229342 191.09991455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02229343 191.09991455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02229344 191.09994507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02229345 191.09994507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02229346 191.09997559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02229347 191.09997559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02229348 191.09999084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02229349 191.09999084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02229350 191.10003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02229351 191.10003662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02229352 191.10005188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02229353 191.10005188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02229354 191.10008240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02229355 191.10008240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02229356 191.10011292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02229357 191.10011292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02229358 191.10012817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02229359 191.10014343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02229360 191.10017395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02229361 191.10017395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02229362 191.10020447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02229363 191.10020447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02229364 191.10021973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02229365 191.10021973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02229366 191.10025024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02229367 191.10026550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02229368 191.10028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02229369 191.10028076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02229370 191.10031128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02229371 191.10031128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02229372 191.10034180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02229373 191.10034180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02229374 191.10037231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02229375 191.10037231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02229376 191.10038757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02229377 191.10040283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02229378 191.10043335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02229379 191.10043335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02229380 191.10044861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02229381 191.10044861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02229382 191.10047913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02229383 191.10047913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02229384 191.10050964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02229385 191.10050964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02229386 191.10052490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02229387 191.10054016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02229388 191.10057068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02229389 191.10057068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02229390 191.10060120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02229391 191.10060120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02229392 191.10063171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02229393 191.10063171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02229394 191.10066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02229395 191.10066223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02229396 191.10067749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02229397 191.10067749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02229398 191.10070801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02229399 191.10070801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02229400 191.10073853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02229401 191.10075378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02229402 191.10076904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02229403 191.10076904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02229404 191.10079956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02229405 191.10079956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02229406 191.10083008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02229407 191.10083008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02229408 191.10084534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02229409 191.10086060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02229410 191.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02229411 191.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02229412 191.10092163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02229413 191.10092163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02229414 191.10093689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02229415 191.10093689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02229416 191.10096741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02229417 191.10098267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02229418 191.10099792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02229419 191.10099792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02229420 191.10102844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02229421 191.10102844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02229422 191.10105896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02229423 191.10105896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02229424 191.10107422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02229425 191.10107422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02229426 191.10110474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02229427 191.10112000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02229428 191.10115051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02229429 191.10115051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02229430 191.10116577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02229431 191.10116577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02229432 191.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02229433 191.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02229434 191.10122681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02229435 191.10124207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02229436 191.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02229437 191.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02229438 191.10128784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02229439 191.10128784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02229440 191.10131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02229441 191.10131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02229442 191.10133362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02229443 191.10133362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02229444 191.10136414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02229445 191.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02229446 191.10139465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02229447 191.10139465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02229448 191.10142517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02229449 191.10142517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02229450 191.10145569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02229451 191.10145569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02229452 191.10154724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02229453 191.10154724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02229454 191.10157776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02229455 191.10157776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02229456 191.10160828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02229457 191.10160828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02229458 191.10163879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02229459 191.10163879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02229460 191.10165405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02229461 191.10165405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02229462 191.10168457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02229463 191.10169983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02229464 191.10171509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02229465 191.10171509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02229466 191.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02229467 191.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02229468 191.10177612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02229469 191.10177612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02229470 191.10179138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02229471 191.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02229472 191.10183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02229473 191.10183716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02229474 191.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02229475 191.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02229476 191.10188293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02229477 191.10189819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02229478 191.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02229479 191.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02229480 191.10195923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02229481 191.10195923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02229482 191.10197449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02229483 191.10198975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02229484 191.10202026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02229485 191.10202026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02229486 191.10203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02229487 191.10203552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02229488 191.10206604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02229489 191.10206604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02229490 191.10209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02229491 191.10209656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02229492 191.10211182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02229493 191.10212708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02229494 191.10215759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02229495 191.10215759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02229496 191.10218811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02229497 191.10218811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02229498 191.10220337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02229499 191.10220337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02229500 191.10223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02229501 191.10224915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02229502 191.10226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02229503 191.10226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02229504 191.10229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02229505 191.10229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02229506 191.10232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02229507 191.10232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02229508 191.10235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02229509 191.10235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02229510 191.10237122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02229511 191.10238647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02229512 191.10241699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02229513 191.10241699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02229514 191.10243225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02229515 191.10243225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02229516 191.10246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02229517 191.10246277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02229518 191.10249329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02229519 191.10250854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02229520 191.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02229521 191.10252380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02229522 191.10255432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02229523 191.10255432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02229524 191.10258484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02229525 191.10258484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02229526 191.10260010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02229527 191.10260010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02229528 191.10263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02229529 191.10264587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02229530 191.10267639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02229531 191.10267639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02229532 191.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02229533 191.10269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02229534 191.10272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02229535 191.10272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02229536 191.10275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02229537 191.10275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02229538 191.10278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02229539 191.10278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02229540 191.10281372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02229541 191.10281372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02229542 191.10282898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02229543 191.10282898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02229544 191.10285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02229545 191.10285950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02229546 191.10290527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02229547 191.10290527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02229548 191.10292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02229549 191.10292053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02229550 191.10295105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02229551 191.10295105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02229552 191.10298157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02229553 191.10298157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02229554 191.10299683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02229555 191.10301208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02229556 191.10304260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02229557 191.10304260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02229558 191.10307312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02229559 191.10307312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02229560 191.10308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02229561 191.10310364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02229562 191.10313416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02229563 191.10313416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02229564 191.10314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02229565 191.10314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02229566 191.10317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02229567 191.10317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02229568 191.10321045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02229569 191.10321045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02229570 191.10322571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02229571 191.10324097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02229572 191.10327148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02229573 191.10327148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02229574 191.10330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02229575 191.10330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02229576 191.10331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02229577 191.10331726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02229578 191.10334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02229579 191.10334778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02229580 191.10337830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02229581 191.10337830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02229582 191.10340881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02229583 191.10340881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02229584 191.10343933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02229585 191.10343933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02229586 191.10346985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02229587 191.10346985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02229588 191.10348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02229589 191.10348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02229590 191.10351563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02229591 191.10353088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02229592 191.10354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02229593 191.10354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02229594 191.10357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02229595 191.10357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02229596 191.10360718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02229597 191.10360718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02229598 191.10362244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02229599 191.10362244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02229600 191.10365295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02229601 191.10365295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02229602 191.10368347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02229603 191.10369873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02229604 191.10371399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02229605 191.10371399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02229606 191.10374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02229607 191.10374451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02229608 191.10377502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02229609 191.10377502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02229610 191.10379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02229611 191.10379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02229612 191.10382080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02229613 191.10383606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02229614 191.10386658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02229615 191.10386658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02229616 191.10388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02229617 191.10388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02229618 191.10391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02229619 191.10391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02229620 191.10394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02229621 191.10394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02229622 191.10397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02229623 191.10397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02229624 191.10400391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02229625 191.10400391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02229626 191.10401917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02229627 191.10401917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02229628 191.10404968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02229629 191.10404968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02229630 191.10408020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02229631 191.10409546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02229632 191.10411072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02229633 191.10411072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02229634 191.10414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02229635 191.10414124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02229636 191.10417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02229637 191.10417175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02229638 191.10418701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02229639 191.10418701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02229640 191.10421753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02229641 191.10423279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02229642 191.10426331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02229643 191.10426331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02229644 191.10427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02229645 191.10427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02229646 191.10430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02229647 191.10430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02229648 191.10433960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02229649 191.10433960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02229650 191.10435486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02229651 191.10435486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02229652 191.10438538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02229653 191.10440063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02229654 191.10441589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02229655 191.10441589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02229656 191.10444641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02229657 191.10444641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02229658 191.10447693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02229659 191.10447693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02229660 191.10449219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02229661 191.10450745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02229662 191.10452271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02229663 191.10453796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02229664 191.10456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02229665 191.10456848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02229666 191.10458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02229667 191.10458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02229668 191.10461426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02229669 191.10461426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02229670 191.10464478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02229671 191.10464478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02229672 191.10466003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02229673 191.10467529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02229674 191.10470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02229675 191.10470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02229676 191.10473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02229677 191.10473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02229678 191.10475159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02229679 191.10475159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02229680 191.10478210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02229681 191.10479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02229682 191.10481262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02229683 191.10481262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02229684 191.10484314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02229685 191.10484314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02229686 191.10487366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02229687 191.10487366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02229688 191.10488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02229689 191.10488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02229690 191.10491943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02229691 191.10493469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02229692 191.10496521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02229693 191.10496521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02229694 191.10498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02229695 191.10498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02229696 191.10501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02229697 191.10501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02229698 191.10504150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02229699 191.10504150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02229700 191.10505676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02229701 191.10505676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02229702 191.10508728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02229703 191.10510254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02229704 191.10513306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02229705 191.10513306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02229706 191.10514832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02229707 191.10514832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02229708 191.10517883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02229709 191.10517883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02229710 191.10520935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02229711 191.10520935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02229712 191.10523987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02229713 191.10523987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02229714 191.10527039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02229715 191.10527039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02229716 191.10528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02229717 191.10528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02229718 191.10531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02229719 191.10531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02229720 191.10534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02229721 191.10536194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02229722 191.10537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02229723 191.10537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02229724 191.10540771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02229725 191.10540771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02229726 191.10543823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02229727 191.10543823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02229728 191.10545349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02229729 191.10545349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02229730 191.10548401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02229731 191.10548401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02229732 191.10552979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02229733 191.10552979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02229734 191.10554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02229735 191.10554504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02229736 191.10557556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02229737 191.10557556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02229738 191.10560608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02229739 191.10560608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02229740 191.10562134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02229741 191.10563660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02229742 191.10566711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02229743 191.10566711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02229744 191.10568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02229745 191.10568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02229746 191.10571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02229747 191.10571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02229748 191.10574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02229749 191.10575867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02229750 191.10577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02229751 191.10577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02229752 191.10580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02229753 191.10580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02229754 191.10583496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02229755 191.10583496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02229756 191.10585022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02229757 191.10586548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02229758 191.10589600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02229759 191.10589600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02229760 191.10592651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02229761 191.10592651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02229762 191.10594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02229763 191.10594177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02229764 191.10597229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02229765 191.10598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02229766 191.10600281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02229767 191.10600281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02229768 191.10603333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02229769 191.10603333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02229770 191.10606384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02229771 191.10606384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02229772 191.10607910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02229773 191.10607910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02229774 191.10610962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02229775 191.10612488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02229776 191.10615540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02229777 191.10615540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02229778 191.10617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02229779 191.10617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02229780 191.10620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02229781 191.10620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02229782 191.10623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02229783 191.10623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02229784 191.10624695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02229785 191.10626221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02229786 191.10629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02229787 191.10629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02229788 191.10632324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02229789 191.10632324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02229790 191.10633850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02229791 191.10633850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02229792 191.10636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02229793 191.10636902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02229794 191.10639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02229795 191.10639954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02229796 191.10643005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02229797 191.10643005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02229798 191.10646057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02229799 191.10646057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02229800 191.10647583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02229801 191.10647583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02229802 191.10650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02229803 191.10650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02229804 191.10653687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02229805 191.10655212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02229806 191.10656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02229807 191.10656738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02229808 191.10659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02229809 191.10659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02229810 191.10662842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02229811 191.10662842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02229812 191.10664368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02229813 191.10664368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02229814 191.10667419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02229815 191.10668945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02229816 191.10671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02229817 191.10671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02229818 191.10673523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02229819 191.10673523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02229820 191.10676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02229821 191.10676575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02229822 191.10679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02229823 191.10679626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02229824 191.10682678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02229825 191.10682678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02229826 191.10685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02229827 191.10685730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02229828 191.10687256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02229829 191.10687256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02229830 191.10690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02229831 191.10690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02229832 191.10693359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02229833 191.10694885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02229834 191.10696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02229835 191.10696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02229836 191.10699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02229837 191.10699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02229838 191.10702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02229839 191.10702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02229840 191.10704041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02229841 191.10704041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02229842 191.10707092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02229843 191.10708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02229844 191.10711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02229845 191.10711670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02229846 191.10713196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02229847 191.10713196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02229848 191.10716248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02229849 191.10716248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02229850 191.10719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02229851 191.10719299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02229852 191.10720825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02229853 191.10720825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02229854 191.10723877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02229855 191.10725403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02229856 191.10726929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02229857 191.10726929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02229858 191.10729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02229859 191.10729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02229860 191.10733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02229861 191.10733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02229862 191.10736084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02229863 191.10736084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02229864 191.10737610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02229865 191.10739136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02229866 191.10742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02229867 191.10742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02229868 191.10743713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02229869 191.10743713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02229870 191.10746765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02229871 191.10746765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02229872 191.10749817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02229873 191.10749817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02229874 191.10751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02229875 191.10751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02229876 191.10754395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02229877 191.10755920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02229878 191.10758972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02229879 191.10758972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02229880 191.10760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02229881 191.10760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02229882 191.10763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02229883 191.10763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02229884 191.10766602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02229885 191.10766602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02229886 191.10768127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02229887 191.10768127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02229888 191.10772705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02229889 191.10772705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02229890 191.10775757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02229891 191.10775757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02229892 191.10777283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02229893 191.10777283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02229894 191.10780334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02229895 191.10780334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02229896 191.10783386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02229897 191.10783386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02229898 191.10786438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02229899 191.10786438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02229900 191.10789490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02229901 191.10789490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02229902 191.10791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02229903 191.10791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02229904 191.10794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02229905 191.10794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02229906 191.10797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02229907 191.10798645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02229908 191.10800171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02229909 191.10800171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02229910 191.10803223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02229911 191.10803223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02229912 191.10806274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02229913 191.10806274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02229914 191.10807800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02229915 191.10807800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02229916 191.10810852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02229917 191.10812378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02229918 191.10815430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02229919 191.10815430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02229920 191.10816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02229921 191.10816956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02229922 191.10820007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02229923 191.10820007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02229924 191.10823059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02229925 191.10823059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02229926 191.10824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02229927 191.10824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02229928 191.10827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02229929 191.10829163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02229930 191.10830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02229931 191.10830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02229932 191.10833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02229933 191.10833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02229934 191.10836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02229935 191.10836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02229936 191.10838318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02229937 191.10838318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02229938 191.10842896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02229939 191.10842896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02229940 191.10845947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02229941 191.10845947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02229942 191.10847473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02229943 191.10847473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02229944 191.10850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02229945 191.10850525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02229946 191.10853577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02229947 191.10855103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02229948 191.10856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02229949 191.10856628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02229950 191.10859680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02229951 191.10859680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02229952 191.10862732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02229953 191.10862732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02229954 191.10864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02229955 191.10865784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02229956 191.10868835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02229957 191.10868835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02229958 191.10870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02229959 191.10870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02229960 191.10873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02229961 191.10873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02229962 191.10877991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02229963 191.10877991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02229964 191.10879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02229965 191.10879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02229966 191.10882568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02229967 191.10882568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02229968 191.10885620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02229969 191.10887146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02229970 191.10888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02229971 191.10888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02229972 191.10891724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02229973 191.10891724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02229974 191.10894775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02229975 191.10894775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02229976 191.10896301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02229977 191.10896301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02229978 191.10900879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02229979 191.10900879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02229980 191.10902405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02229981 191.10902405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02229982 191.10905457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02229983 191.10905457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02229984 191.10908508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02229985 191.10910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02229986 191.10911560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02229987 191.10911560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02229988 191.10914612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02229989 191.10914612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02229990 191.10917664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02229991 191.10917664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02229992 191.10919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02229993 191.10920715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02229994 191.10923767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02229995 191.10923767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02229996 191.10926819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02229997 191.10926819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02229998 191.10928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02229999 191.10928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02230000 191.10931396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02230001 191.10932922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02230002 191.10934448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02230003 191.10934448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02230004 191.10937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02230005 191.10937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02230006 191.10940552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02230007 191.10940552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02230008 191.10943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02230009 191.10943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02230010 191.10946655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02230011 191.10946655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02230012 191.10949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02230013 191.10949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02230014 191.10951233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02230015 191.10952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02230016 191.10955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02230017 191.10955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02230018 191.10957336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02230019 191.10957336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02230020 191.10960388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02230021 191.10960388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02230022 191.10963440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02230023 191.10964966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02230024 191.10966492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02230025 191.10966492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02230026 191.10969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02230027 191.10969543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02230028 191.10972595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02230029 191.10974121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02230030 191.10975647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02230031 191.10975647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02230032 191.10978699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02230033 191.10978699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02230034 191.10981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02230035 191.10981750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02230036 191.10983276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02230037 191.10984802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02230038 191.10987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02230039 191.10987854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02230040 191.10989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02230041 191.10989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02230042 191.10992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02230043 191.10992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02230044 191.10995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02230045 191.10995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02230046 191.10997009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02230047 191.10998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02230048 191.11001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02230049 191.11001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02230050 191.11004639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02230051 191.11004639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02230052 191.11006165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02230053 191.11006165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02230054 191.11009216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02230055 191.11009216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02230056 191.11012268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02230057 191.11013794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02230058 191.11015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02230059 191.11015320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02230060 191.11018372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02230061 191.11018372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02230062 191.11021423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02230063 191.11021423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02230064 191.11022949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02230065 191.11022949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02230066 191.11026001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02230067 191.11027527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02230068 191.11029053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02230069 191.11029053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02230070 191.11032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02230071 191.11032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02230072 191.11035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02230073 191.11035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02230074 191.11036682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02230075 191.11036682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02230076 191.11039734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02230077 191.11041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02230078 191.11044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02230079 191.11044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02230080 191.11045837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02230081 191.11045837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02230082 191.11048889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02230083 191.11048889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02230084 191.11051941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02230085 191.11051941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02230086 191.11053467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02230087 191.11053467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02230088 191.11056519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02230089 191.11058044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02230090 191.11061096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02230091 191.11061096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02230092 191.11062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02230093 191.11062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02230094 191.11065674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02230095 191.11065674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02230096 191.11068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02230097 191.11068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02230098 191.11070251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02230099 191.11071777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02230100 191.11074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02230101 191.11074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02230102 191.11077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02230103 191.11077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02230104 191.11079407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02230105 191.11079407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02230106 191.11082458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02230107 191.11082458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02230108 191.11085510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02230109 191.11085510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02230110 191.11088562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02230111 191.11088562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02230112 191.11091614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02230113 191.11091614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02230114 191.11093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02230115 191.11093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02230116 191.11096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02230117 191.11096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02230118 191.11099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02230119 191.11100769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02230120 191.11102295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02230121 191.11102295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02230122 191.11105347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02230123 191.11105347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02230124 191.11108398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02230125 191.11108398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02230126 191.11109924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02230127 191.11109924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02230128 191.11112976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02230129 191.11114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02230130 191.11116028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02230131 191.11117554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02230132 191.11119080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02230133 191.11119080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02230134 191.11122131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02230135 191.11122131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02230136 191.11125183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02230137 191.11125183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02230138 191.11126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02230139 191.11126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02230140 191.11129761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02230141 191.11131287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02230142 191.11132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02230143 191.11132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02230144 191.11135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02230145 191.11135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02230146 191.11138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02230147 191.11138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02230148 191.11140442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02230149 191.11140442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02230150 191.11143494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02230151 191.11145020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02230152 191.11148071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02230153 191.11148071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02230154 191.11149597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02230155 191.11149597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02230156 191.11152649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02230157 191.11152649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02230158 191.11155701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02230159 191.11155701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02230160 191.11157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02230161 191.11158752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02230162 191.11161804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02230163 191.11161804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02230164 191.11164856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02230165 191.11164856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02230166 191.11166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02230167 191.11166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02230168 191.11169434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02230169 191.11169434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02230170 191.11172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02230171 191.11172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02230172 191.11175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02230173 191.11175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02230174 191.11178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02230175 191.11178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02230176 191.11180115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02230177 191.11180115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02230178 191.11183167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02230179 191.11183167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02230180 191.11186218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02230181 191.11187744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02230182 191.11189270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02230183 191.11189270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02230184 191.11192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02230185 191.11192322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02230186 191.11195374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02230187 191.11195374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02230188 191.11196899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02230189 191.11196899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02230190 191.11199951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02230191 191.11201477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02230192 191.11204529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02230193 191.11204529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02230194 191.11206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02230195 191.11206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02230196 191.11209106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02230197 191.11209106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02230198 191.11212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02230199 191.11212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02230200 191.11213684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02230201 191.11215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02230202 191.11218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02230203 191.11218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02230204 191.11219788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02230205 191.11219788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02230206 191.11222839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02230207 191.11222839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02230208 191.11225891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02230209 191.11225891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02230210 191.11227417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02230211 191.11228943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02230212 191.11231995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02230213 191.11231995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02230214 191.11235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02230215 191.11235046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02230216 191.11236572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02230217 191.11236572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02230218 191.11239624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02230219 191.11239624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02230220 191.11242676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02230221 191.11244202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02230222 191.11245728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02230223 191.11245728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02230224 191.11248779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02230225 191.11248779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02230226 191.11251831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02230227 191.11251831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02230228 191.11253357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02230229 191.11253357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02230230 191.11256409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02230231 191.11257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02230232 191.11259460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02230233 191.11259460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02230234 191.11262512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02230235 191.11262512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02230236 191.11265564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02230237 191.11265564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02230238 191.11267090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02230239 191.11268616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02230240 191.11271667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02230241 191.11271667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02230242 191.11274719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02230243 191.11274719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02230244 191.11276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02230245 191.11276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02230246 191.11279297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02230247 191.11280823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02230248 191.11283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02230249 191.11283875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02230250 191.11285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02230251 191.11285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02230252 191.11288452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02230253 191.11288452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02230254 191.11291504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02230255 191.11291504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02230256 191.11293030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02230257 191.11294556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02230258 191.11297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02230259 191.11297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02230260 191.11299133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02230261 191.11299133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02230262 191.11302185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02230263 191.11302185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02230264 191.11305237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02230265 191.11305237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02230266 191.11306763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02230267 191.11308289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02230268 191.11311340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02230269 191.11311340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02230270 191.11314392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02230271 191.11314392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02230272 191.11315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02230273 191.11315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02230274 191.11318970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02230275 191.11318970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02230276 191.11322021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02230277 191.11323547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02230278 191.11325073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02230279 191.11325073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02230280 191.11328125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02230281 191.11328125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02230282 191.11331177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02230283 191.11331177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02230284 191.11332703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02230285 191.11332703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02230286 191.11335754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02230287 191.11337280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02230288 191.11338806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02230289 191.11338806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02230290 191.11341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02230291 191.11341858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02230292 191.11344910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02230293 191.11344910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02230294 191.11347961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02230295 191.11347961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02230296 191.11349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02230297 191.11351013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02230298 191.11354065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02230299 191.11354065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02230300 191.11355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02230301 191.11355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02230302 191.11358643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02230303 191.11358643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02230304 191.11361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02230305 191.11361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02230306 191.11363220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02230307 191.11364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02230308 191.11366272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02230309 191.11367798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02230310 191.11370850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02230311 191.11370850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02230312 191.11372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02230313 191.11372375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02230314 191.11375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02230315 191.11375427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02230316 191.11378479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02230317 191.11378479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02230318 191.11380005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02230319 191.11381531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02230320 191.11384583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02230321 191.11384583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02230322 191.11387634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02230323 191.11387634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02230324 191.11389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02230325 191.11389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02230326 191.11392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02230327 191.11392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02230328 191.11395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02230329 191.11395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02230330 191.11398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02230331 191.11398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02230332 191.11401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02230333 191.11401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02230334 191.11402893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02230335 191.11402893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02230336 191.11405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02230337 191.11405945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02230338 191.11408997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02230339 191.11410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02230340 191.11412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02230341 191.11412048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02230342 191.11415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02230343 191.11415100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02230344 191.11418152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02230345 191.11418152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02230346 191.11419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02230347 191.11419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02230348 191.11422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02230349 191.11424255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02230350 191.11427307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02230351 191.11427307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02230352 191.11428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02230353 191.11428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02230354 191.11431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02230355 191.11431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02230356 191.11434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02230357 191.11434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02230358 191.11436462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02230359 191.11436462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02230360 191.11441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02230361 191.11441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02230362 191.11442566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02230363 191.11442566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02230364 191.11445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02230365 191.11445618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02230366 191.11448669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02230367 191.11450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02230368 191.11451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02230369 191.11451721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02230370 191.11454773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02230371 191.11454773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02230372 191.11457825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02230373 191.11457825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02230374 191.11459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02230375 191.11459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02230376 191.11462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02230377 191.11462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02230378 191.11465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02230379 191.11466980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02230380 191.11468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02230381 191.11468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02230382 191.11471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02230383 191.11471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02230384 191.11474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02230385 191.11474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02230386 191.11476135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02230387 191.11476135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02230388 191.11479187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02230389 191.11480713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02230390 191.11482239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02230391 191.11482239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02230392 191.11485291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02230393 191.11485291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02230394 191.11488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02230395 191.11488342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02230396 191.11489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02230397 191.11489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02230398 191.11492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02230399 191.11494446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02230400 191.11497498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02230401 191.11497498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02230402 191.11499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02230403 191.11499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02230404 191.11502075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02230405 191.11502075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02230406 191.11505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02230407 191.11505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02230408 191.11506653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02230409 191.11506653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02230410 191.11511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02230411 191.11511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02230412 191.11514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02230413 191.11514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02230414 191.11515808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02230415 191.11515808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02230416 191.11518860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02230417 191.11518860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02230418 191.11521912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02230419 191.11521912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02230420 191.11524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02230421 191.11524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02230422 191.11528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02230423 191.11528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02230424 191.11529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02230425 191.11529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02230426 191.11534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02230427 191.11534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02230428 191.11537170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02230429 191.11537170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02230430 191.11538696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02230431 191.11538696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02230432 191.11541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02230433 191.11541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02230434 191.11544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02230435 191.11546326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02230436 191.11547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02230437 191.11547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02230438 191.11550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02230439 191.11550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02230440 191.11553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02230441 191.11553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02230442 191.11555481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02230443 191.11557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02230444 191.11560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02230445 191.11560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02230446 191.11561584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02230447 191.11561584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02230448 191.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02230449 191.11564636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02230450 191.11567688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02230451 191.11569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02230452 191.11570740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02230453 191.11570740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02230454 191.11573792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02230455 191.11573792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02230456 191.11576843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02230457 191.11576843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02230458 191.11578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02230459 191.11579895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02230460 191.11582947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02230461 191.11582947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02230462 191.11585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02230463 191.11585999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02230464 191.11587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02230465 191.11587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02230466 191.11590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02230467 191.11592102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02230468 191.11593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02230469 191.11593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02230470 191.11596680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02230471 191.11596680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02230472 191.11599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02230473 191.11599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02230474 191.11601257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02230475 191.11602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02230476 191.11605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02230477 191.11605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02230478 191.11608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02230479 191.11608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02230480 191.11610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02230481 191.11610413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02230482 191.11613464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02230483 191.11614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02230484 191.11618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02230485 191.11618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02230486 191.11619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02230487 191.11619568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02230488 191.11622620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02230489 191.11622620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02230490 191.11625671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02230491 191.11625671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02230492 191.11628723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02230493 191.11628723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02230494 191.11631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02230495 191.11631775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02230496 191.11633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02230497 191.11633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02230498 191.11636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02230499 191.11637878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02230500 191.11640930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02230501 191.11640930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02230502 191.11642456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02230503 191.11642456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02230504 191.11645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02230505 191.11645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02230506 191.11648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02230507 191.11648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02230508 191.11651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02230509 191.11651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02230510 191.11654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02230511 191.11654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02230512 191.11657715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02230513 191.11657715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02230514 191.11659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02230515 191.11659241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02230516 191.11662292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02230517 191.11663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02230518 191.11665344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02230519 191.11665344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02230520 191.11668396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02230521 191.11668396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02230522 191.11671448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02230523 191.11671448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02230524 191.11672974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02230525 191.11674500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02230526 191.11677551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02230527 191.11677551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02230528 191.11680603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02230529 191.11680603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02230530 191.11682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02230531 191.11682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02230532 191.11685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02230533 191.11685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02230534 191.11688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02230535 191.11688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02230536 191.11691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02230537 191.11691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02230538 191.11694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02230539 191.11694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02230540 191.11697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02230541 191.11697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02230542 191.11698914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02230543 191.11698914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02230544 191.11701965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02230545 191.11701965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02230546 191.11705017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02230547 191.11705017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02230548 191.11708069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02230549 191.11708069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02230550 191.11711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02230551 191.11711121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02230552 191.11712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02230553 191.11712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02230554 191.11715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02230555 191.11715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02230556 191.11718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02230557 191.11720276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02230558 191.11721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02230559 191.11721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02230560 191.11724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02230561 191.11724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02230562 191.11727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02230563 191.11727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02230564 191.11729431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02230565 191.11729431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02230566 191.11732483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02230567 191.11734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02230568 191.11737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02230569 191.11737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02230570 191.11738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02230571 191.11738586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02230572 191.11741638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02230573 191.11741638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02230574 191.11744690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02230575 191.11744690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02230576 191.11746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02230577 191.11746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02230578 191.11749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02230579 191.11750793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02230580 191.11752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02230581 191.11752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02230582 191.11755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02230583 191.11755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02230584 191.11758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02230585 191.11758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02230586 191.11759949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02230587 191.11759949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02230588 191.11763000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02230589 191.11764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02230590 191.11767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02230591 191.11767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02230592 191.11769104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02230593 191.11769104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02230594 191.11772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02230595 191.11772156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02230596 191.11776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02230597 191.11776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02230598 191.11778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02230599 191.11778259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02230600 191.11781311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02230601 191.11781311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02230602 191.11784363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02230603 191.11784363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02230604 191.11785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02230605 191.11787415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02230606 191.11790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02230607 191.11790466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02230608 191.11791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02230609 191.11791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02230610 191.11795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02230611 191.11795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02230612 191.11798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02230613 191.11798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02230614 191.11799622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02230615 191.11801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02230616 191.11804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02230617 191.11804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02230618 191.11807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02230619 191.11807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02230620 191.11808777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02230621 191.11808777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02230622 191.11811829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02230623 191.11811829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02230624 191.11814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02230625 191.11814880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02230626 191.11816406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02230627 191.11817932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02230628 191.11820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02230629 191.11820984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02230630 191.11824036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02230631 191.11824036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02230632 191.11825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02230633 191.11825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02230634 191.11828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02230635 191.11828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02230636 191.11831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02230637 191.11831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02230638 191.11834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02230639 191.11834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02230640 191.11837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02230641 191.11837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02230642 191.11839294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02230643 191.11839294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02230644 191.11842346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02230645 191.11843872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02230646 191.11846924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02230647 191.11846924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02230648 191.11848450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02230649 191.11848450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02230650 191.11851501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02230651 191.11851501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02230652 191.11854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02230653 191.11854553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02230654 191.11856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02230655 191.11856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02230656 191.11859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02230657 191.11860657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02230658 191.11863708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02230659 191.11863708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02230660 191.11865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02230661 191.11865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02230662 191.11868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02230663 191.11868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02230664 191.11871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02230665 191.11871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02230666 191.11872864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02230667 191.11874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02230668 191.11877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02230669 191.11877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02230670 191.11878967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02230671 191.11878967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02230672 191.11882019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02230673 191.11882019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02230674 191.11885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02230675 191.11885071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02230676 191.11888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02230677 191.11888123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02230678 191.11891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02230679 191.11891174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02230680 191.11894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02230681 191.11894226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02230682 191.11895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02230683 191.11895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02230684 191.11898804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02230685 191.11900330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02230686 191.11903381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02230687 191.11903381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02230688 191.11904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02230689 191.11904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02230690 191.11907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02230691 191.11907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02230692 191.11911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02230693 191.11911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02230694 191.11912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02230695 191.11914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02230696 191.11917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02230697 191.11917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02230698 191.11918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02230699 191.11918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02230700 191.11921692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02230701 191.11923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02230702 191.11926270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02230703 191.11926270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -02230704 191.11927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02230705 191.11927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -02230706 191.11930847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02230707 191.11930847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -02230708 191.11933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02230709 191.11933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -02230710 191.11935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02230711 191.11936951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -02230712 191.11940002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02230713 191.11940002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -02230714 191.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02230715 191.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -02230716 191.11944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02230717 191.11944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -02230718 191.11947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02230719 191.11947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -02230720 191.11950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02230721 191.11950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -02230722 191.11953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02230723 191.11953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -02230724 191.11956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02230725 191.11956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -02230726 191.11958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02230727 191.11958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -02230728 191.11961365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02230729 191.11962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -02230730 191.11965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02230731 191.11965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -02230732 191.11967468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02230733 191.11967468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -02230734 191.11970520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02230735 191.11970520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -02230736 191.11973572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02230737 191.11975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -02230738 191.11976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02230739 191.11976624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -02230740 191.11979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02230741 191.11979675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -02230742 191.11982727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02230743 191.11982727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -02230744 191.11984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02230745 191.11984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -02230746 191.11987305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02230747 191.11988831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -02230748 191.11990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02230749 191.11990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -02230750 191.11993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02230751 191.11993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -02230752 191.11996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02230753 191.11996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -02230754 191.11997986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02230755 191.11999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -02230756 191.12002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02230757 191.12002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -02230758 191.12005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02230759 191.12005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -02230760 191.12007141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02230761 191.12007141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -02230762 191.12010193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02230763 191.12010193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -02230764 191.12013245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02230765 191.12014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -02230766 191.12016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02230767 191.12016296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -02230768 191.12019348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02230769 191.12019348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -02230770 191.12022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02230771 191.12022400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -02230772 191.12023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02230773 191.12023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -02230774 191.12026978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02230775 191.12028503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -02230776 191.12030029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02230777 191.12030029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -02230778 191.12033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02230779 191.12033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -02230780 191.12036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02230781 191.12036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -02230782 191.12037659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02230783 191.12037659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -02230784 191.12040710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02230785 191.12042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -02230786 191.12045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02230787 191.12045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -02230788 191.12046814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02230789 191.12046814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -02230790 191.12049866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02230791 191.12049866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -02230792 191.12052917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02230793 191.12052917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -02230794 191.12054443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02230795 191.12055969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -02230796 191.12059021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02230797 191.12059021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -02230798 191.12062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02230799 191.12062073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -02230800 191.12063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02230801 191.12063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -02230802 191.12066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02230803 191.12066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -02230804 191.12069702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02230805 191.12069702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -02230806 191.12072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02230807 191.12072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -02230808 191.12077332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02230809 191.12077332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -02230810 191.12078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02230811 191.12078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -02230812 191.12083435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02230813 191.12083435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -02230814 191.12086487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02230815 191.12086487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -02230816 191.12088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02230817 191.12088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -02230818 191.12091064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02230819 191.12092590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -02230820 191.12094116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02230821 191.12094116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -02230822 191.12098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02230823 191.12098694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -02230824 191.12101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02230825 191.12101746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -02230826 191.12104797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02230827 191.12104797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -02230828 191.12109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02230829 191.12109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -02230830 191.12110901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02230831 191.12110901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -02230832 191.12113953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02230833 191.12115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -02230834 191.12117004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02230835 191.12117004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -02230836 191.12120056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02230837 191.12120056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -02230838 191.12123108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02230839 191.12123108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -02230840 191.12126160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02230841 191.12126160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -02230842 191.12129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02230843 191.12129211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -02230844 191.12132263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02230845 191.12133789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -02230846 191.12135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02230847 191.12135315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -02230848 191.12138367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02230849 191.12138367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -02230850 191.12141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02230851 191.12141418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -02230852 191.12142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02230853 191.12142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -02230854 191.12145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02230855 191.12145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -02230856 191.12149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02230857 191.12149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -02230858 191.12152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02230859 191.12152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -02230860 191.12155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02230861 191.12155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -02230862 191.12156677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02230863 191.12156677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -02230864 191.12161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02230865 191.12161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -02230866 191.12164307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02230867 191.12164307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -02230868 191.12165833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02230869 191.12165833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -02230870 191.12168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02230871 191.12168884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -02230872 191.12171936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02230873 191.12173462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -02230874 191.12174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02230875 191.12174988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -02230876 191.12178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02230877 191.12178040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -02230878 191.12181091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02230879 191.12181091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -02230880 191.12182617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02230881 191.12182617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -02230882 191.12185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02230883 191.12185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -02230884 191.12188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02230885 191.12188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -02230886 191.12191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02230887 191.12191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -02230888 191.12194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02230889 191.12194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -02230890 191.12197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02230891 191.12197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -02230892 191.12199402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02230893 191.12199402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -02230894 191.12202454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02230895 191.12203979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -02230896 191.12205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02230897 191.12205505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -02230898 191.12208557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02230899 191.12208557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -02230900 191.12211609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02230901 191.12211609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -02230902 191.12213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02230903 191.12213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -02230904 191.12216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02230905 191.12216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -02230906 191.12219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02230907 191.12220764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -02230908 191.12222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02230909 191.12222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -02230910 191.12225342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02230911 191.12225342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -02230912 191.12228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02230913 191.12228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -02230914 191.12229919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02230915 191.12229919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -02230916 191.12232971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02230917 191.12234497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -02230918 191.12237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02230919 191.12237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -02230920 191.12239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02230921 191.12239075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -02230922 191.12242126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02230923 191.12242126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -02230924 191.12245178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02230925 191.12245178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -02230926 191.12246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02230927 191.12246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -02230928 191.12249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02230929 191.12251282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -02230930 191.12252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02230931 191.12252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -02230932 191.12255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02230933 191.12255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -02230934 191.12258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02230935 191.12258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -02230936 191.12260437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02230937 191.12260437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -02230938 191.12263489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02230939 191.12265015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -02230940 191.12268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02230941 191.12268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -02230942 191.12269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02230943 191.12269592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -02230944 191.12272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02230945 191.12272644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -02230946 191.12275696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02230947 191.12275696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -02230948 191.12277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02230949 191.12278748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -02230950 191.12281799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02230951 191.12281799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -02230952 191.12284851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02230953 191.12284851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -02230954 191.12286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02230955 191.12286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -02230956 191.12289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02230957 191.12289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -02230958 191.12292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02230959 191.12292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -02230960 191.12294006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02230961 191.12295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -02230962 191.12298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02230963 191.12298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -02230964 191.12300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02230965 191.12300110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -02230966 191.12303162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02230967 191.12303162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -02230968 191.12306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02230969 191.12306213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -02230970 191.12307739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02230971 191.12309265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -02230972 191.12312317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02230973 191.12312317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -02230974 191.12315369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02230975 191.12315369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -02230976 191.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02230977 191.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -02230978 191.12319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02230979 191.12319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -02230980 191.12322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02230981 191.12324524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -02230982 191.12326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02230983 191.12326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -02230984 191.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02230985 191.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -02230986 191.12332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02230987 191.12332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -02230988 191.12333679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02230989 191.12333679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -02230990 191.12336731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02230991 191.12336731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -02230992 191.12339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02230993 191.12339783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -02230994 191.12342834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02230995 191.12342834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -02230996 191.12345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02230997 191.12345886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -02230998 191.12347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02230999 191.12347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -02231000 191.12350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02231001 191.12351990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -02231002 191.12355042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02231003 191.12355042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -02231004 191.12356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02231005 191.12356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -02231006 191.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02231007 191.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -02231008 191.12362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02231009 191.12362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -02231010 191.12364197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02231011 191.12365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -02231012 191.12368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02231013 191.12368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -02231014 191.12371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02231015 191.12371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -02231016 191.12373352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02231017 191.12373352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -02231018 191.12376404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02231019 191.12376404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -02231020 191.12379456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02231021 191.12379456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -02231022 191.12382507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02231023 191.12382507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -02231024 191.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02231025 191.12385559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -02231026 191.12387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02231027 191.12387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -02231028 191.12390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02231029 191.12390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -02231030 191.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02231031 191.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -02231032 191.12396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02231033 191.12396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -02231034 191.12399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02231035 191.12399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -02231036 191.12402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02231037 191.12402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -02231038 191.12403870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02231039 191.12403870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -02231040 191.12406921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02231041 191.12406921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -02231042 191.12409973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02231043 191.12411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -02231044 191.12413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02231045 191.12413025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -02231046 191.12416077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02231047 191.12416077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -02231048 191.12419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02231049 191.12419128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -02231050 191.12420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02231051 191.12422180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -02231052 191.12425232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02231053 191.12425232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -02231054 191.12426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02231055 191.12426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -02231056 191.12429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02231057 191.12429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -02231058 191.12432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02231059 191.12432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -02231060 191.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02231061 191.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -02231062 191.12437439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02231063 191.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -02231064 191.12442017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02231065 191.12442017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -02231066 191.12443542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02231067 191.12443542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -02231068 191.12446594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02231069 191.12446594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -02231070 191.12449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02231071 191.12449646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -02231072 191.12451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02231073 191.12452698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -02231074 191.12455750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02231075 191.12455750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -02231076 191.12458801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02231077 191.12458801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -02231078 191.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02231079 191.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -02231080 191.12463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02231081 191.12463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -02231082 191.12466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02231083 191.12467957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -02231084 191.12469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02231085 191.12469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -02231086 191.12472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02231087 191.12472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -02231088 191.12475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02231089 191.12475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -02231090 191.12477112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02231091 191.12478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -02231092 191.12481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02231093 191.12481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -02231094 191.12483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02231095 191.12483215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -02231096 191.12486267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02231097 191.12486267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -02231098 191.12489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02231099 191.12489319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -02231100 191.12490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02231101 191.12492371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -02231102 191.12495422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02231103 191.12495422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -02231104 191.12498474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02231105 191.12498474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -02231106 191.12500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02231107 191.12500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02231108 191.12506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02231109 191.12506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02231110 191.12507629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02231111 191.12507629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02231112 191.12513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02231113 191.12513733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02231114 191.12515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02231115 191.12515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02231116 191.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02231117 191.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02231118 191.12521362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02231119 191.12522888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02231120 191.12524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02231121 191.12524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02231122 191.12527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02231123 191.12527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02231124 191.12530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02231125 191.12530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02231126 191.12532043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02231127 191.12532043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02231128 191.12535095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02231129 191.12536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02231130 191.12538147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02231131 191.12538147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02231132 191.12541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02231133 191.12541199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02231134 191.12544250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02231135 191.12544250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02231136 191.12547302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02231137 191.12547302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02231138 191.12548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02231139 191.12550354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02231140 191.12551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02231141 191.12553406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02231142 191.12554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02231143 191.12554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02231144 191.12557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02231145 191.12557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02231146 191.12561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02231147 191.12561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02231148 191.12562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02231149 191.12562561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02231150 191.12565613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02231151 191.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -02231152 191.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02231153 191.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -02231154 191.12571716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02231155 191.12571716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -02231156 191.12574768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02231157 191.12574768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -02231158 191.12577820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02231159 191.12577820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -02231160 191.12579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02231161 191.12580872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -02231162 191.12583923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02231163 191.12583923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -02231164 191.12586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02231165 191.12586975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -02231166 191.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02231167 191.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -02231168 191.12591553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02231169 191.12591553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -02231170 191.12594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02231171 191.12594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -02231172 191.12596130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02231173 191.12597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -02231174 191.12600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02231175 191.12600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -02231176 191.12602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02231177 191.12602234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -02231178 191.12605286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02231179 191.12605286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -02231180 191.12608337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02231181 191.12608337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -02231182 191.12609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02231183 191.12611389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -02231184 191.12614441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02231185 191.12614441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -02231186 191.12617493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02231187 191.12617493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -02231188 191.12619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02231189 191.12619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -02231190 191.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02231191 191.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -02231192 191.12625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02231193 191.12626648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -02231194 191.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02231195 191.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -02231196 191.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02231197 191.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -02231198 191.12634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02231199 191.12634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -02231200 191.12635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02231201 191.12635803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -02231202 191.12638855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02231203 191.12638855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -02231204 191.12641907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02231205 191.12641907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -02231206 191.12644958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02231207 191.12644958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -02231208 191.12648010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02231209 191.12648010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -02231210 191.12649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02231211 191.12649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -02231212 191.12652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02231213 191.12652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -02231214 191.12655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02231215 191.12657166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -02231216 191.12658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02231217 191.12658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -02231218 191.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02231219 191.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -02231220 191.12664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02231221 191.12664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -02231222 191.12666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02231223 191.12666321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -02231224 191.12670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02231225 191.12670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -02231226 191.12673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02231227 191.12673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -02231228 191.12675476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02231229 191.12675476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -02231230 191.12678528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02231231 191.12678528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -02231232 191.12681580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02231233 191.12681580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -02231234 191.12684631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02231235 191.12684631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -02231236 191.12687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02231237 191.12687683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -02231238 191.12689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02231239 191.12689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -02231240 191.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02231241 191.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -02231242 191.12695313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02231243 191.12696838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -02231244 191.12698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02231245 191.12698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -02231246 191.12701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02231247 191.12701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -02231248 191.12704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02231249 191.12704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -02231250 191.12705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02231251 191.12705994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -02231252 191.12709045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02231253 191.12709045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -02231254 191.12712097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02231255 191.12713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -02231256 191.12715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02231257 191.12715149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -02231258 191.12718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02231259 191.12718201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -02231260 191.12721252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02231261 191.12721252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -02231262 191.12722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02231263 191.12722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -02231264 191.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02231265 191.12727356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -02231266 191.12728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02231267 191.12728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -02231268 191.12731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02231269 191.12731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -02231270 191.12734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02231271 191.12734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -02231272 191.12738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02231273 191.12738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -02231274 191.12739563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02231275 191.12741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02231276 191.12744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02231277 191.12744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02231278 191.12745667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02231279 191.12745667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02231280 191.12748718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02231281 191.12748718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02231282 191.12751770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02231283 191.12751770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02231284 191.12753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02231285 191.12753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02231286 191.12756348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02231287 191.12757874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02231288 191.12760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02231289 191.12760925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02231290 191.12762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02231291 191.12762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02231292 191.12765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02231293 191.12765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02231294 191.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02231295 191.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02231296 191.12770081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02231297 191.12771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02231298 191.12774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02231299 191.12774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02231300 191.12777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02231301 191.12777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02231302 191.12779236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02231303 191.12779236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02231304 191.12782288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02231305 191.12782288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02231306 191.12785339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02231307 191.12785339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02231308 191.12788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02231309 191.12788391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02231310 191.12791443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02231311 191.12791443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02231312 191.12792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02231313 191.12792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02231314 191.12796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02231315 191.12796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02231316 191.12799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02231317 191.12799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02231318 191.12800598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02231319 191.12802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02231320 191.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02231321 191.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02231322 191.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02231323 191.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02231324 191.12809753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02231325 191.12809753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02231326 191.12812805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02231327 191.12812805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02231328 191.12815857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02231329 191.12817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02231330 191.12818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02231331 191.12818909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02231332 191.12821960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02231333 191.12821960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02231334 191.12825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02231335 191.12825012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02231336 191.12826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02231337 191.12826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02231338 191.12829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02231339 191.12829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02231340 191.12832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02231341 191.12832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02231342 191.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02231343 191.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02231344 191.12838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02231345 191.12838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02231346 191.12840271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02231347 191.12840271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02231348 191.12843323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02231349 191.12843323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02231350 191.12846375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02231351 191.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02231352 191.12849426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02231353 191.12849426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02231354 191.12852478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02231355 191.12852478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02231356 191.12855530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02231357 191.12855530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02231358 191.12857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02231359 191.12857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02231360 191.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02231361 191.12861633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02231362 191.12863159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02231363 191.12864685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -02231364 191.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02231365 191.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -02231366 191.12869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02231367 191.12869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -02231368 191.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02231369 191.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -02231370 191.12873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02231371 191.12873840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -02231372 191.12876892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02231373 191.12878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -02231374 191.12879944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02231375 191.12879944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -02231376 191.12882996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02231377 191.12882996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -02231378 191.12886047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02231379 191.12886047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -02231380 191.12887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02231381 191.12887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -02231382 191.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02231383 191.12892151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -02231384 191.12895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02231385 191.12895203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -02231386 191.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02231387 191.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -02231388 191.12899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02231389 191.12899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -02231390 191.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02231391 191.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -02231392 191.12904358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02231393 191.12904358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -02231394 191.12907410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02231395 191.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -02231396 191.12911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02231397 191.12911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -02231398 191.12913513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02231399 191.12913513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -02231400 191.12916565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02231401 191.12916565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -02231402 191.12919617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02231403 191.12919617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -02231404 191.12921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02231405 191.12922668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -02231406 191.12925720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02231407 191.12925720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -02231408 191.12927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02231409 191.12927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -02231410 191.12930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02231411 191.12930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -02231412 191.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02231413 191.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -02231414 191.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02231415 191.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -02231416 191.12937927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02231417 191.12939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -02231418 191.12942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02231419 191.12942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -02231420 191.12944031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02231421 191.12944031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -02231422 191.12947083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02231423 191.12947083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -02231424 191.12950134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02231425 191.12950134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -02231426 191.12951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02231427 191.12953186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -02231428 191.12956238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02231429 191.12956238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -02231430 191.12959290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02231431 191.12959290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -02231432 191.12960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02231433 191.12960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -02231434 191.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02231435 191.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -02231436 191.12966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02231437 191.12966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -02231438 191.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02231439 191.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -02231440 191.12973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02231441 191.12973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -02231442 191.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02231443 191.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -02231444 191.12977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02231445 191.12977600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -02231446 191.12980652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02231447 191.12982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -02231448 191.12983704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02231449 191.12983704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -02231450 191.12986755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02231451 191.12986755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -02231452 191.12989807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02231453 191.12989807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -02231454 191.12991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02231455 191.12991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -02231456 191.12994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02231457 191.12995911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -02231458 191.12997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02231459 191.12998962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -02231460 191.13000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02231461 191.13000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -02231462 191.13003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02231463 191.13003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -02231464 191.13006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02231465 191.13006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -02231466 191.13008118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02231467 191.13008118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -02231468 191.13011169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02231469 191.13012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -02231470 191.13015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02231471 191.13015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -02231472 191.13017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02231473 191.13017273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -02231474 191.13020325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02231475 191.13020325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -02231476 191.13023376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02231477 191.13023376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -02231478 191.13024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02231479 191.13026428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -02231480 191.13027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02231481 191.13029480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -02231482 191.13031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02231483 191.13031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -02231484 191.13034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02231485 191.13034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -02231486 191.13037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02231487 191.13037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -02231488 191.13038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02231489 191.13038635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -02231490 191.13041687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02231491 191.13043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -02231492 191.13046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02231493 191.13046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -02231494 191.13047791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02231495 191.13047791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -02231496 191.13050842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02231497 191.13050842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -02231498 191.13053894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02231499 191.13053894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -02231500 191.13055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02231501 191.13056946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -02231502 191.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02231503 191.13059998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -02231504 191.13063049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02231505 191.13063049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -02231506 191.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02231507 191.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -02231508 191.13067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02231509 191.13067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -02231510 191.13070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02231511 191.13070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -02231512 191.13072205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02231513 191.13073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -02231514 191.13076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02231515 191.13076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -02231516 191.13078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02231517 191.13078308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -02231518 191.13081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02231519 191.13081360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -02231520 191.13084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02231521 191.13084412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -02231522 191.13087463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02231523 191.13087463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -02231524 191.13090515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02231525 191.13090515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -02231526 191.13093567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02231527 191.13093567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -02231528 191.13095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02231529 191.13095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -02231530 191.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02231531 191.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -02231532 191.13101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02231533 191.13101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -02231534 191.13102722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02231535 191.13104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -02231536 191.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02231537 191.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -02231538 191.13110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02231539 191.13110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -02231540 191.13111877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02231541 191.13111877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -02231542 191.13114929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02231543 191.13114929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -02231544 191.13117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02231545 191.13117981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -02231546 191.13121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02231547 191.13121033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -02231548 191.13124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02231549 191.13124084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02231550 191.13127136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02231551 191.13127136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02231552 191.13128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02231553 191.13128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02231554 191.13131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02231555 191.13131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02231556 191.13134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02231557 191.13134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02231558 191.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02231559 191.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02231560 191.13140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02231561 191.13140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02231562 191.13142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02231563 191.13142395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02231564 191.13145447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02231565 191.13145447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02231566 191.13148499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02231567 191.13150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02231568 191.13151550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02231569 191.13151550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02231570 191.13154602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02231571 191.13154602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02231572 191.13157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02231573 191.13157654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02231574 191.13159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02231575 191.13159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02231576 191.13162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02231577 191.13162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02231578 191.13165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02231579 191.13166809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02231580 191.13168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02231581 191.13168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02231582 191.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02231583 191.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02231584 191.13174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02231585 191.13174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02231586 191.13175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02231587 191.13175964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02231588 191.13179016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02231589 191.13180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02231590 191.13182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02231591 191.13182068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02231592 191.13185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02231593 191.13185120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -02231594 191.13188171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02231595 191.13188171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -02231596 191.13189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02231597 191.13189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -02231598 191.13192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02231599 191.13194275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -02231600 191.13197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02231601 191.13197327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -02231602 191.13198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02231603 191.13198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -02231604 191.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02231605 191.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -02231606 191.13204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02231607 191.13204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -02231608 191.13206482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02231609 191.13206482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -02231610 191.13209534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02231611 191.13211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -02231612 191.13214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02231613 191.13214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -02231614 191.13215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02231615 191.13215637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -02231616 191.13218689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02231617 191.13218689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -02231618 191.13221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02231619 191.13221741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -02231620 191.13224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02231621 191.13224792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -02231622 191.13227844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02231623 191.13227844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -02231624 191.13229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02231625 191.13229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -02231626 191.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02231627 191.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -02231628 191.13235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02231629 191.13237000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -02231630 191.13238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02231631 191.13238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -02231632 191.13241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02231633 191.13241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -02231634 191.13244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02231635 191.13244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -02231636 191.13246155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02231637 191.13246155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -02231638 191.13249207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02231639 191.13249207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -02231640 191.13252258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02231641 191.13253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -02231642 191.13255310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02231643 191.13255310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -02231644 191.13258362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02231645 191.13258362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -02231646 191.13261414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02231647 191.13261414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -02231648 191.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02231649 191.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -02231650 191.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02231651 191.13267517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -02231652 191.13269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02231653 191.13269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -02231654 191.13272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02231655 191.13272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -02231656 191.13275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02231657 191.13275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -02231658 191.13278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02231659 191.13278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -02231660 191.13279724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02231661 191.13281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -02231662 191.13284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02231663 191.13284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -02231664 191.13285828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02231665 191.13285828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -02231666 191.13288879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02231667 191.13288879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -02231668 191.13291931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02231669 191.13291931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -02231670 191.13293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02231671 191.13293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -02231672 191.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02231673 191.13298035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -02231674 191.13301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02231675 191.13301086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -02231676 191.13302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02231677 191.13302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -02231678 191.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02231679 191.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -02231680 191.13308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02231681 191.13308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -02231682 191.13310242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02231683 191.13310242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -02231684 191.13313293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02231685 191.13314819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -02231686 191.13317871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02231687 191.13317871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -02231688 191.13319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02231689 191.13319397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -02231690 191.13322449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02231691 191.13322449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -02231692 191.13325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02231693 191.13325500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -02231694 191.13327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02231695 191.13328552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -02231696 191.13331604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02231697 191.13331604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -02231698 191.13333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02231699 191.13333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -02231700 191.13336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02231701 191.13336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -02231702 191.13339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02231703 191.13339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -02231704 191.13340759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02231705 191.13340759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -02231706 191.13343811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02231707 191.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -02231708 191.13348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02231709 191.13348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -02231710 191.13349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02231711 191.13349915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -02231712 191.13352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02231713 191.13352966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -02231714 191.13356018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02231715 191.13356018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -02231716 191.13357544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02231717 191.13359070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -02231718 191.13362122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02231719 191.13362122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -02231720 191.13365173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02231721 191.13365173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -02231722 191.13366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02231723 191.13366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -02231724 191.13369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02231725 191.13369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -02231726 191.13372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02231727 191.13372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -02231728 191.13374329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02231729 191.13375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -02231730 191.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02231731 191.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -02231732 191.13380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02231733 191.13380432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -02231734 191.13383484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02231735 191.13383484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -02231736 191.13386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02231737 191.13386536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -02231738 191.13388062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02231739 191.13389587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -02234210 191.16799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -02234211 191.16799927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -02234212 191.16802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -02234213 191.16802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -02234214 191.16804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -02234215 191.16804504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -02234216 191.16807556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -02234217 191.16807556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -02234218 191.16810608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -02234219 191.16812134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -02234220 191.16813660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -02234221 191.16813660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -02234222 191.16816711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -02234223 191.16816711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -02234224 191.16819763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -02234225 191.16819763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -02234226 191.16821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -02234227 191.16821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -02234228 191.16824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -02234229 191.16825867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -02234230 191.16828918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -02234231 191.16828918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -02234232 191.16830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -02234233 191.16830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -02234234 191.16833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -02234235 191.16833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -02234236 191.16836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -02234237 191.16836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -02234238 191.16838074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -02234239 191.16839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -02234240 191.16842651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -02234241 191.16842651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -02234242 191.16844177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -02234243 191.16844177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -02234244 191.16847229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -02234245 191.16847229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -02234246 191.16850281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -02234247 191.16850281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -02234248 191.16851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -02234249 191.16853333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -02234250 191.16856384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -02234251 191.16856384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -02234252 191.16859436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -02234253 191.16859436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -02252546 191.42568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f088 -02252547 191.42568970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f088 -02252548 191.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f098 -02252549 191.42573547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f098 -02252550 191.42575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a8 -02252551 191.42575073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0a8 -02252552 191.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b8 -02252553 191.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b8 -02252554 191.42581177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c8 -02252555 191.42581177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c8 -02252556 191.42582703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d8 -02252557 191.42582703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d8 -02252558 191.42585754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e8 -02252559 191.42587280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e8 -02252560 191.42588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f8 -02252561 191.42588806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f8 -02252562 191.42591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f108 -02252563 191.42591858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f108 -02252564 191.42594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f118 -02252565 191.42594910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f118 -02252566 191.42596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f128 -02252567 191.42597961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f128 -02252568 191.42601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f138 -02252569 191.42601013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f138 -02252570 191.42604065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f148 -02252571 191.42604065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f148 -02252572 191.42605591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f158 -02252573 191.42605591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f158 -02252574 191.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f168 -02252575 191.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f168 -02252576 191.42611694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f178 -02252577 191.42613220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f178 -02252578 191.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f188 -02252579 191.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f188 -02252580 191.42617798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f198 -02252581 191.42617798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f198 -02252582 191.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a8 -02252583 191.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a8 -02252584 191.42622375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b8 -02252585 191.42622375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b8 -02252586 191.42625427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c8 -02252587 191.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c8 -02252588 191.42628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d8 -02252589 191.42628479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d8 -02258740 191.51272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d8 -02258741 191.51272583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d8 -02258742 191.51275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e8 -02258743 191.51275635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e8 -02258744 191.51278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f8 -02258745 191.51278687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f8 -02258746 191.51280212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b208 -02258747 191.51281738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b208 -02258748 191.51284790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b218 -02258749 191.51284790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b218 -02258750 191.51286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b228 -02258751 191.51286316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b228 -02258752 191.51289368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b238 -02258753 191.51289368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b238 -02258754 191.51292419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b248 -02258755 191.51293945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b248 -02258756 191.51295471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b258 -02258757 191.51295471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b258 -02258758 191.51298523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b268 -02258759 191.51298523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b268 -02258760 191.51301575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b278 -02258761 191.51301575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b278 -02258762 191.51303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b288 -02258763 191.51303101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b288 -02258764 191.51306152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b298 -02258765 191.51307678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b298 -02258766 191.51310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -02258767 191.51310730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -02258768 191.51312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -02258769 191.51312256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -02258770 191.51315308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -02258771 191.51315308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -02258772 191.51318359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -02258773 191.51318359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -02258774 191.51321411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -02258775 191.51321411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -02258776 191.51324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -02258777 191.51324463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -02258778 191.51325989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -02258779 191.51325989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -02258780 191.51329041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -02258781 191.51329041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -02258782 191.51332092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -02258783 191.51332092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -02269242 191.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b8 -02269243 191.61517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02269244 191.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492b8 -02269245 191.61517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -02269246 191.61518860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c8 -02269247 191.61518860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02269248 191.61518860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492c8 -02269249 191.61518860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -02269250 191.61521912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d8 -02269251 191.61521912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02269252 191.61521912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d8 -02269253 191.61521912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -02269254 191.61524963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -02269255 191.61524963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02269256 191.61526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -02269257 191.61526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -02269258 191.61528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -02269259 191.61528015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02269260 191.61528015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -02269261 191.61528015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -02269262 191.61531067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -02269263 191.61531067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02269264 191.61531067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -02269265 191.61531067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -02269266 191.61534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -02269267 191.61534119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02269268 191.61534119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -02269269 191.61534119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -02269270 191.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -02269271 191.61535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02269272 191.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -02269273 191.61535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -02269274 191.61538696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -02269275 191.61538696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02269276 191.61540222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -02269277 191.61540222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -02269278 191.61541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -02269279 191.61541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02269280 191.61541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -02269281 191.61541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -02269282 191.61544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -02269283 191.61544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02269284 191.61544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -02269285 191.61544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -02280370 191.70265198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -02280371 191.70266724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -02280372 191.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -02280373 191.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -02280374 191.70271301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -02280375 191.70271301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -02280376 191.70274353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -02280377 191.70274353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -02280378 191.70277405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -02280379 191.70277405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -02280380 191.70278931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -02280381 191.70280457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -02280382 191.70283508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -02280383 191.70283508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -02280384 191.70286560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -02280385 191.70286560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -02280386 191.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -02280387 191.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -02280388 191.70291138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -02280389 191.70291138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -02280390 191.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -02280391 191.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13978 -02280392 191.70295715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13988 -02280393 191.70297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13988 -02280394 191.70300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13998 -02280395 191.70300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13998 -02280396 191.70303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a8 -02280397 191.70303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139a8 -02280398 191.70304871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b8 -02280399 191.70304871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139b8 -02280400 191.70307922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c8 -02280401 191.70309448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139c8 -02280402 191.70310974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -02280403 191.70310974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -02280404 191.70314026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -02280405 191.70314026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -02280406 191.70317078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -02280407 191.70317078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -02280408 191.70318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -02280409 191.70318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -02280410 191.70321655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -02280411 191.70323181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -02280412 191.70326233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -02280413 191.70326233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -02296002 191.92132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -02296003 191.92132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -02296004 191.92135620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -02296005 191.92135620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -02296006 191.92140198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -02296007 191.92140198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -02296008 191.92141724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -02296009 191.92141724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -02296010 191.92144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -02296011 191.92144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -02296012 191.92147827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -02296013 191.92147827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -02296014 191.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -02296015 191.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -02296016 191.92153931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -02296017 191.92153931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -02296018 191.92155457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -02296019 191.92156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -02296020 191.92160034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -02296021 191.92160034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -02296022 191.92163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -02296023 191.92163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -02296024 191.92164612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -02296025 191.92164612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -02296026 191.92167664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -02296027 191.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -02296028 191.92172241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -02296029 191.92172241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -02296030 191.92173767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32238 -02296031 191.92173767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32238 -02296032 191.92176819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32248 -02296033 191.92176819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32248 -02296034 191.92179871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32258 -02296035 191.92179871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32258 -02296036 191.92182922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32268 -02296037 191.92182922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32268 -02296038 191.92185974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -02296039 191.92185974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -02296040 191.92187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -02296041 191.92187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -02296042 191.92190552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -02296043 191.92192078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -02296044 191.92195129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -02296045 191.92195129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -02302048 192.00769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de48 -02302049 192.00769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de48 -02302050 192.00772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de58 -02302051 192.00772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de58 -02302052 192.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de68 -02302053 192.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de68 -02302054 192.00778198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -02302055 192.00778198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -02302056 192.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de88 -02302057 192.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de88 -02302058 192.00782776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de98 -02302059 192.00782776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de98 -02302060 192.00785828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea8 -02302061 192.00785828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea8 -02302062 192.00788879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -02302063 192.00790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -02302064 192.00791931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -02302065 192.00791931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -02302066 192.00794983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -02302067 192.00794983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -02302068 192.00798035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -02302069 192.00798035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -02302070 192.00799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -02302071 192.00799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -02302072 192.00802612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -02302073 192.00804138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -02302074 192.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -02302075 192.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -02302076 192.00808716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -02302077 192.00808716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -02302078 192.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -02302079 192.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -02302080 192.00814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -02302081 192.00814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -02302082 192.00816345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -02302083 192.00817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -02302084 192.00820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -02302085 192.00820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -02302086 192.00822449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -02302087 192.00822449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -02302088 192.00825500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -02302089 192.00825500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -02302090 192.00828552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -02302091 192.00830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -02308460 192.09837341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a8 -02308461 192.09837341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a8 -02308462 192.09840393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b8 -02308463 192.09841919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b8 -02308464 192.09844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c8 -02308465 192.09844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c8 -02308466 192.09846497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d8 -02308467 192.09846497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d8 -02308468 192.09849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -02308469 192.09849548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -02308470 192.09852600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -02308471 192.09852600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -02308472 192.09854126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -02308473 192.09855652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -02308474 192.09858704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -02308475 192.09858704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -02308476 192.09861755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -02308477 192.09861755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -02308478 192.09863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -02308479 192.09863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -02308480 192.09866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -02308481 192.09866333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -02308482 192.09869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -02308483 192.09869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -02308484 192.09872437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -02308485 192.09872437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -02308486 192.09875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -02308487 192.09875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -02308488 192.09877014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a788 -02308489 192.09877014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a788 -02308490 192.09880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a798 -02308491 192.09880066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a798 -02308492 192.09883118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a8 -02308493 192.09884644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a8 -02308494 192.09886169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b8 -02308495 192.09886169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b8 -02308496 192.09889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c8 -02308497 192.09889221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c8 -02308498 192.09892273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d8 -02308499 192.09892273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d8 -02308500 192.09893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e8 -02308501 192.09893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e8 -02308502 192.09896851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f8 -02308503 192.09898376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f8 -02312766 192.20513916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02312767 192.20513916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02312768 192.20516968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02312769 192.20518494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02312770 192.20521545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02312771 192.20521545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02312772 192.20523071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02312773 192.20523071 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02312774 192.20526123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02312775 192.20526123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02312776 192.20529175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02312777 192.20529175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02312778 192.20530701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02312779 192.20532227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02312780 192.20535278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02312781 192.20535278 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02312782 192.20538330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02312783 192.20538330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02312784 192.20539856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02312785 192.20539856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02312786 192.20542908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02312787 192.20542908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02312788 192.20545959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02312789 192.20545959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02312790 192.20549011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02312791 192.20549011 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02312792 192.20552063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02312793 192.20552063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02312794 192.20553589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02312795 192.20553589 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02312796 192.20556641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02312797 192.20556641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02312798 192.20559692 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02312799 192.20561218 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02312800 192.20562744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02312801 192.20562744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02312802 192.20565796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02312803 192.20565796 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02312804 192.20568848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02312805 192.20568848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02312806 192.20570374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02312807 192.20570374 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02312808 192.20573425 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02312809 192.20574951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02327541 192.41607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -02327542 192.41607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf0 -02327543 192.41610718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -02327544 192.41610718 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de00 -02327545 192.41612244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -02327546 192.41612244 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de10 -02327547 192.41615295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -02327548 192.41616821 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de20 -02327549 192.41619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -02327550 192.41619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de30 -02327551 192.41621399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -02327552 192.41621399 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de40 -02327553 192.41624451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -02327554 192.41624451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de50 -02327555 192.41627502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -02327556 192.41627502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de60 -02327557 192.41629028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -02327558 192.41630554 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de70 -02327559 192.41633606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -02327560 192.41633606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de80 -02327561 192.41635132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -02327562 192.41635132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -02327563 192.41638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -02327564 192.41638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -02327565 192.41641235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -02327566 192.41641235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -02327567 192.41642761 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -02327568 192.41644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -02327569 192.41647339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -02327570 192.41647339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -02327571 192.41650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -02327572 192.41650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -02327573 192.41651917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -02327574 192.41651917 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -02327575 192.41654968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -02327576 192.41654968 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -02327577 192.41658020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -02327578 192.41659546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -02327579 192.41661072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -02327580 192.41661072 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -02327581 192.41664124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -02327582 192.41664124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -02327583 192.41667175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -02327584 192.41667175 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -02334156 192.50988770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -02334157 192.50990295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -02334158 192.50993347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -02334159 192.50993347 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -02334160 192.50994873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -02334161 192.50994873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -02334162 192.50997925 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -02334163 192.50999451 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -02334164 192.51000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -02334165 192.51000977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -02334166 192.51004028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -02334167 192.51004028 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -02334168 192.51007080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -02334169 192.51008606 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -02334170 192.51010132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -02334171 192.51010132 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -02334172 192.51013184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -02334173 192.51013184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -02334174 192.51016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -02334175 192.51016235 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -02334176 192.51019287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -02334177 192.51019287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -02334178 192.51022339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -02334179 192.51022339 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -02334180 192.51025391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -02334181 192.51025391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -02334182 192.51028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -02334183 192.51028442 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad60 -02334184 192.51031494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -02334185 192.51033020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad70 -02334186 192.51034546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -02334187 192.51034546 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad80 -02334188 192.51037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -02334189 192.51037598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad90 -02334190 192.51040649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -02334191 192.51040649 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ada0 -02334192 192.51043701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -02334193 192.51043701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adb0 -02334194 192.51046753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -02334195 192.51046753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adc0 -02334196 192.51049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -02334197 192.51049805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2add0 -02334198 192.51052856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -02334199 192.51052856 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -02339432 192.58557129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -02339433 192.58557129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35170 -02339434 192.58560181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -02339435 192.58560181 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35180 -02339436 192.58563232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -02339437 192.58563232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35190 -02339438 192.58564758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -02339439 192.58564758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351a0 -02339440 192.58567810 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -02339441 192.58569336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351b0 -02339442 192.58570862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -02339443 192.58570862 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351c0 -02339444 192.58573914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -02339445 192.58573914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351d0 -02339446 192.58576965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -02339447 192.58576965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351e0 -02339448 192.58578491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -02339449 192.58578491 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x351f0 -02339450 192.58581543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -02339451 192.58583069 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35200 -02339452 192.58586121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -02339453 192.58586121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35210 -02339454 192.58587646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -02339455 192.58587646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35220 -02339456 192.58590698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -02339457 192.58590698 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35230 -02339458 192.58593750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -02339459 192.58593750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35240 -02339460 192.58595276 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -02339461 192.58596802 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35250 -02339462 192.58599854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -02339463 192.58599854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35260 -02339464 192.58602905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -02339465 192.58602905 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35270 -02339466 192.58604431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -02339467 192.58604431 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35280 -02339468 192.58607483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -02339469 192.58607483 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35290 -02339470 192.58610535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -02339471 192.58610535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a0 -02339472 192.58613586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -02339473 192.58613586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b0 -02339474 192.58616638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -02339475 192.58616638 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c0 -02344892 192.66215515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -02344893 192.66215515 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc10 -02344894 192.66218567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -02344895 192.66218567 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc20 -02344896 192.66220093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -02344897 192.66220093 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc30 -02344898 192.66223145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -02344899 192.66224670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc40 -02344900 192.66227722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -02344901 192.66227722 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc50 -02344902 192.66229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -02344903 192.66229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc60 -02344904 192.66232300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -02344905 192.66232300 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc70 -02344906 192.66235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -02344907 192.66235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc80 -02344908 192.66236877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -02344909 192.66238403 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc90 -02344910 192.66241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -02344911 192.66241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca0 -02344912 192.66244507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -02344913 192.66244507 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb0 -02344914 192.66246033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -02344915 192.66246033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc0 -02344916 192.66249084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -02344917 192.66249084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd0 -02344918 192.66252136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -02344919 192.66252136 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce0 -02344920 192.66255188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -02344921 192.66255188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf0 -02344922 192.66258240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -02344923 192.66258240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd00 -02344924 192.66259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -02344925 192.66259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd10 -02344926 192.66262817 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -02344927 192.66264343 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd20 -02344928 192.66267395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -02344929 192.66267395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd30 -02344930 192.66268921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -02344931 192.66268921 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd40 -02344932 192.66271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -02344933 192.66271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd50 -02344934 192.66275024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -02344935 192.66275024 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd60 -02354664 193.97589111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354665 193.97593689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354666 193.97596741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354667 193.97596741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02354668 193.97610474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354669 193.97610474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02354670 193.97616577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354671 193.97618103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02354672 194.48632813 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02354673 194.50602722 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354674 194.50602722 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354675 196.18133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02354676 196.18135071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02354677 196.18403625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354678 196.48301697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354679 196.48306274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354680 196.48307800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354681 196.48307800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02354682 196.48321533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354683 196.48321533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02354684 196.48327637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02354685 196.48329163 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02354686 196.50700378 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02354687 196.52671814 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354688 196.52673340 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02354689 196.68595886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02354690 196.68595886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02354691 196.68598938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02354692 196.68598938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02354693 196.68601990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02354694 196.68603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02354695 196.68605042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02354696 196.68605042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02354697 196.68608093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02354698 196.68608093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02354699 196.68611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02354700 196.68611145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02354701 196.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02354702 196.68612671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02354703 196.68615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02354704 196.68617249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02354705 196.68618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02354706 196.68618774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02354707 196.68621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02354708 196.68621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02354709 196.68624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02354710 196.68624878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02354711 196.68627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02354712 196.68627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02354713 196.68630981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02354714 196.68630981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02354715 196.68634033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02354716 196.68634033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02354717 196.68635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02354718 196.68635559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02354719 196.68638611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02354720 196.68638611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02354721 196.68641663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02354722 196.68641663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02354723 196.68643188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02354724 196.68644714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02354725 196.68647766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02354726 196.68647766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02354727 196.68650818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02354728 196.68650818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02354729 196.68652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02354730 196.68653870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02354731 196.68656921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02354732 196.68656921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02354733 196.68658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02354734 196.68658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02354735 196.68661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02354736 196.68661499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02354737 196.68664551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02354738 196.68666077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02354739 196.68667603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02354740 196.68667603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02354741 196.68670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02354742 196.68670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02354743 196.68673706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02354744 196.68673706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02354745 196.68675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02354746 196.68675232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02354747 196.68678284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02354748 196.68679810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02354749 196.68682861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02354750 196.68682861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02354751 196.68684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02354752 196.68684387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02354753 196.68687439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02354754 196.68688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02354755 196.68690491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02354756 196.68690491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02354757 196.68693542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02354758 196.68693542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02354759 196.68696594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02354760 196.68696594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02354761 196.68698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02354762 196.68698120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02354763 196.68701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02354764 196.68702698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02354765 196.68705750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02354766 196.68705750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02354767 196.68707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02354768 196.68707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02354769 196.68710327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02354770 196.68710327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02354771 196.68713379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02354772 196.68714905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02354773 196.68716431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02354774 196.68716431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02354775 196.68719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02354776 196.68719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02354777 196.68722534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02354778 196.68722534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02354779 196.68725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02354780 196.68725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02354781 196.68728638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02354782 196.68728638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02354783 196.68730164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02354784 196.68730164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02354785 196.68733215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02354786 196.68734741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02354787 196.68737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02354788 196.68737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02354789 196.68739319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02354790 196.68739319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02354791 196.68742371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02354792 196.68742371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02354793 196.68745422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02354794 196.68746948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02354795 196.68748474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02354796 196.68748474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02354797 196.68751526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02354798 196.68751526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02354799 196.68754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02354800 196.68754578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02354801 196.68757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02354802 196.68757629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02354803 196.68760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02354804 196.68760681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02354805 196.68762207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02354806 196.68762207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02354807 196.68766785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02354808 196.68766785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02354809 196.68769836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02354810 196.68769836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02354811 196.68771362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02354812 196.68771362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02354813 196.68775940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02354814 196.68775940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02354815 196.68778992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02354816 196.68778992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02354817 196.68780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02354818 196.68782043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02354819 196.68785095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02354820 196.68785095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02354821 196.68786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02354822 196.68786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02354823 196.68789673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02354824 196.68789673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02354825 196.68792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02354826 196.68792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02354827 196.68794250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02354828 196.68794250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02354829 196.68797302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02354830 196.68797302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02354831 196.68800354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02354832 196.68800354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02354833 196.68803406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02354834 196.68803406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02354835 196.68806458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02354836 196.68806458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02354837 196.68809509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02354838 196.68809509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02354839 196.68811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02354840 196.68811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02354841 196.68814087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02354842 196.68815613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02354843 196.68818665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02354844 196.68818665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02354845 196.68820190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02354846 196.68820190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02354847 196.68823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02354848 196.68823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02354849 196.68826294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02354850 196.68826294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02354851 196.68827820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02354852 196.68829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02354853 196.68832397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02354854 196.68832397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02354855 196.68833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02354856 196.68833923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02354857 196.68836975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02354858 196.68836975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02354859 196.68840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02354860 196.68840027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02354861 196.68843079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02354862 196.68843079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02354863 196.68846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02354864 196.68846130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02354865 196.68849182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02354866 196.68849182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02354867 196.68850708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02354868 196.68850708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02354869 196.68853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02354870 196.68853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02354871 196.68856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02354872 196.68856812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02354873 196.68858337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02354874 196.68858337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02354875 196.68861389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02354876 196.68862915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02354877 196.68864441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02354878 196.68865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02354879 196.68867493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02354880 196.68867493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02354881 196.68870544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02354882 196.68870544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02354883 196.68873596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02354884 196.68873596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02354885 196.68875122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02354886 196.68875122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02354887 196.68878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02354888 196.68878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02354889 196.68881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02354890 196.68881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02354891 196.68884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02354892 196.68884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02354893 196.68887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02354894 196.68887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02354895 196.68888855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02354896 196.68888855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02354897 196.68891907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02354898 196.68893433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02354899 196.68896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02354900 196.68896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02354901 196.68898010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02354902 196.68898010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02354903 196.68901062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02354904 196.68901062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02354905 196.68904114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02354906 196.68904114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02354907 196.68905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02354908 196.68907166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02354909 196.68910217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02354910 196.68910217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02354911 196.68913269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02354912 196.68913269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02354913 196.68914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02354914 196.68914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02354915 196.68917847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02354916 196.68917847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02354917 196.68920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02354918 196.68920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02354919 196.68923950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02354920 196.68923950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02354921 196.68927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02354922 196.68927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02354923 196.68928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02354924 196.68928528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02354925 196.68931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02354926 196.68931580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02354927 196.68934631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02354928 196.68936157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02354929 196.68937683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02354930 196.68937683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02354931 196.68940735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02354932 196.68940735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02354933 196.68943787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02354934 196.68943787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02354935 196.68945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02354936 196.68945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02354937 196.68948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02354938 196.68949890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02354939 196.68952942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02354940 196.68952942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02354941 196.68954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02354942 196.68954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02354943 196.68957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02354944 196.68957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02354945 196.68960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02354946 196.68960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02354947 196.68962097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02354948 196.68963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02354949 196.68966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02354950 196.68966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02354951 196.68968201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02354952 196.68968201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02354953 196.68971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02354954 196.68971252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02354955 196.68974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02354956 196.68974304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02354957 196.68977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02354958 196.68977356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02354959 196.68980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02354960 196.68980408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02354961 196.68983459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02354962 196.68983459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02354963 196.68984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02354964 196.68984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02354965 196.68988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02354966 196.68989563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02354967 196.68992615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02354968 196.68992615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02354969 196.68994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02354970 196.68994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02354971 196.68997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02354972 196.68997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02354973 196.69000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02354974 196.69000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02354975 196.69001770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02354976 196.69003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02354977 196.69006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02354978 196.69006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02354979 196.69009399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02354980 196.69009399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02354981 196.69010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02354982 196.69010925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02354983 196.69013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02354984 196.69013977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02354985 196.69017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02354986 196.69017029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02354987 196.69020081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02354988 196.69020081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02354989 196.69023132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02354990 196.69023132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02354991 196.69024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02354992 196.69024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02354993 196.69027710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02354994 196.69027710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02354995 196.69030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02354996 196.69032288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02354997 196.69033813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02354998 196.69033813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02354999 196.69036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02355000 196.69036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02355001 196.69039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02355002 196.69039917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02355003 196.69041443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02355004 196.69041443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02355005 196.69044495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02355006 196.69046021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02355007 196.69049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02355008 196.69049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02355009 196.69050598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02355010 196.69050598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02355011 196.69053650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02355012 196.69053650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02355013 196.69056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02355014 196.69056702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02355015 196.69058228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02355016 196.69058228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02355017 196.69061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02355018 196.69062805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02355019 196.69064331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02355020 196.69064331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02355021 196.69067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02355022 196.69067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02355023 196.69070435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02355024 196.69070435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02355025 196.69071960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02355026 196.69071960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02355027 196.69075012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02355028 196.69076538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02355029 196.69079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02355030 196.69079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02355031 196.69081116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02355032 196.69081116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02355033 196.69084167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02355034 196.69084167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02355035 196.69087219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02355036 196.69087219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02355037 196.69088745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02355038 196.69090271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02355039 196.69093323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02355040 196.69093323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02355041 196.69096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02355042 196.69096375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02355043 196.69097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02355044 196.69097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02355045 196.69100952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02355046 196.69100952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02355047 196.69104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02355048 196.69104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02355049 196.69107056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02355050 196.69107056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02355051 196.69110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02355052 196.69110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02355053 196.69111633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02355054 196.69111633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02355055 196.69114685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02355056 196.69114685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02355057 196.69117737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02355058 196.69119263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02355059 196.69120789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02355060 196.69120789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02355061 196.69123840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02355062 196.69123840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02355063 196.69126892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02355064 196.69126892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02355065 196.69128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02355066 196.69128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02355067 196.69131470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02355068 196.69131470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02355069 196.69134521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02355070 196.69136047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02355071 196.69137573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02355072 196.69137573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02355073 196.69140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02355074 196.69140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02355075 196.69143677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02355076 196.69143677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02355077 196.69145203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02355078 196.69145203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02355079 196.69148254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02355080 196.69149780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02355081 196.69151306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02355082 196.69151306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02355083 196.69154358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02355084 196.69154358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02355085 196.69157410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02355086 196.69157410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02355087 196.69158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02355088 196.69158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02355089 196.69161987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02355090 196.69163513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02355091 196.69166565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02355092 196.69166565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02355093 196.69168091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02355094 196.69168091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02355095 196.69171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02355096 196.69171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02355097 196.69174194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02355098 196.69174194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02355099 196.69175720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02355100 196.69177246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02355101 196.69180298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02355102 196.69180298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02355103 196.69183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02355104 196.69183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02355105 196.69184875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02355106 196.69184875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02355107 196.69187927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02355108 196.69187927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02355109 196.69190979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02355110 196.69190979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02355111 196.69194031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02355112 196.69194031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02355113 196.69197083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02355114 196.69197083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02355115 196.69198608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02355116 196.69198608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02355117 196.69201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02355118 196.69201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02355119 196.69204712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02355120 196.69204712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02355121 196.69207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02355122 196.69207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02355123 196.69210815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02355124 196.69210815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02355125 196.69213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02355126 196.69213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02355127 196.69215393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02355128 196.69215393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02355129 196.69218445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02355130 196.69218445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02355131 196.69221497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02355132 196.69223022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02355133 196.69224548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02355134 196.69224548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02355135 196.69227600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02355136 196.69227600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02355137 196.69230652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02355138 196.69230652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02355139 196.69232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02355140 196.69232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02355141 196.69235229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02355142 196.69235229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02355143 196.69238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02355144 196.69238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02355145 196.69241333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02355146 196.69241333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02355147 196.69244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02355148 196.69244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02355149 196.69247437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02355150 196.69247437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02355151 196.69248962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02355152 196.69248962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02355153 196.69252014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02355154 196.69253540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02355155 196.69255066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02355156 196.69255066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02355157 196.69258118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02355158 196.69258118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02355159 196.69261169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02355160 196.69261169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02355161 196.69262695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02355162 196.69262695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02355163 196.69265747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02355164 196.69265747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02355165 196.69268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02355166 196.69270325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02355167 196.69271851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02355168 196.69271851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02355169 196.69274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02355170 196.69274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02355171 196.69277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02355172 196.69277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02355173 196.69279480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02355174 196.69279480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02355175 196.69282532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02355176 196.69284058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02355177 196.69287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02355178 196.69287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02355179 196.69288635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02355180 196.69288635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02355181 196.69291687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02355182 196.69291687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02355183 196.69294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02355184 196.69294739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02355185 196.69296265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02355186 196.69297791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02355187 196.69300842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02355188 196.69300842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02355189 196.69302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02355190 196.69302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02355191 196.69305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02355192 196.69305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02355193 196.69308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02355194 196.69308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02355195 196.69309998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02355196 196.69311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02355197 196.69314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02355198 196.69314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02355199 196.69317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02355200 196.69317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02355201 196.69319153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02355202 196.69319153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02355203 196.69322205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02355204 196.69322205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02355205 196.69325256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02355206 196.69325256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02355207 196.69326782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02355208 196.69328308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02355209 196.69331360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02355210 196.69331360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02355211 196.69334412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02355212 196.69334412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02355213 196.69335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02355214 196.69335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02355215 196.69338989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02355216 196.69338989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02355217 196.69342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02355218 196.69342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02355219 196.69345093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02355220 196.69345093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02355221 196.69348145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02355222 196.69348145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02355223 196.69349670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02355224 196.69349670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02355225 196.69352722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02355226 196.69352722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02355227 196.69355774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02355228 196.69357300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02355229 196.69358826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02355230 196.69358826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02355231 196.69361877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02355232 196.69361877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02355233 196.69364929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02355234 196.69364929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02355235 196.69366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02355236 196.69366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02355237 196.69369507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02355238 196.69369507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02355239 196.69372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02355240 196.69374084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02355241 196.69375610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02355242 196.69375610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02355243 196.69378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02355244 196.69378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02355245 196.69381714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02355246 196.69381714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02355247 196.69383240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02355248 196.69383240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02355249 196.69386292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02355250 196.69387817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02355251 196.69389343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02355252 196.69389343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02355253 196.69392395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02355254 196.69392395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02355255 196.69395447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02355256 196.69395447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02355257 196.69398499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02355258 196.69398499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02355259 196.69400024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02355260 196.69401550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02355261 196.69404602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02355262 196.69404602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02355263 196.69406128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02355264 196.69406128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02355265 196.69409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02355266 196.69409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02355267 196.69412231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02355268 196.69412231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02355269 196.69413757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02355270 196.69413757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02355271 196.69416809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02355272 196.69418335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02355273 196.69421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02355274 196.69421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02355275 196.69422913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02355276 196.69422913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02355277 196.69425964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02355278 196.69425964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02355279 196.69429016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02355280 196.69429016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02355281 196.69430542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02355282 196.69432068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02355283 196.69435120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02355284 196.69435120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02355285 196.69438171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02355286 196.69438171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02355287 196.69439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02355288 196.69439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02355289 196.69442749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02355290 196.69442749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02355291 196.69445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02355292 196.69445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02355293 196.69448853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02355294 196.69448853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02355295 196.69451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02355296 196.69451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02355297 196.69453430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02355298 196.69453430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02355299 196.69456482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02355300 196.69456482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02355301 196.69459534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02355302 196.69459534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02355303 196.69461060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02355304 196.69462585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02355305 196.69465637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02355306 196.69465637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02355307 196.69468689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02355308 196.69468689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02355309 196.69470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02355310 196.69470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02355311 196.69473267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02355312 196.69473267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02355313 196.69476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02355314 196.69477844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02355315 196.69479370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02355316 196.69479370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02355317 196.69482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02355318 196.69482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02355319 196.69485474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02355320 196.69485474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02355321 196.69487000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02355322 196.69487000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02355323 196.69490051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02355324 196.69491577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02355325 196.69493103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02355326 196.69493103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02355327 196.69496155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02355328 196.69496155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02355329 196.69499207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02355330 196.69499207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02355331 196.69500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02355332 196.69500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02355333 196.69503784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02355334 196.69503784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02355335 196.69506836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02355336 196.69508362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02355337 196.69509888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02355338 196.69509888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02355339 196.69512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02355340 196.69512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02355341 196.69515991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02355342 196.69515991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02355343 196.69517517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02355344 196.69517517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02355345 196.69520569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02355346 196.69522095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02355347 196.69525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02355348 196.69525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02355349 196.69526672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02355350 196.69526672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02355351 196.69529724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02355352 196.69529724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02355353 196.69532776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02355354 196.69532776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02355355 196.69534302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02355356 196.69535828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02355357 196.69538879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02355358 196.69538879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02355359 196.69540405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02355360 196.69540405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02355361 196.69543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02355362 196.69543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02355363 196.69546509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02355364 196.69546509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02355365 196.69549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02355366 196.69549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02355367 196.69551086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02355368 196.69552612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02355369 196.69555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02355370 196.69555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02355371 196.69557190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02355372 196.69557190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02355373 196.69560242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02355374 196.69560242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02355375 196.69563293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02355376 196.69563293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02355377 196.69564819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02355378 196.69566345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02355379 196.69569397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02355380 196.69569397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02355381 196.69572449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02355382 196.69572449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02355383 196.69573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02355384 196.69573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02355385 196.69577026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02355386 196.69577026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02355387 196.69580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02355388 196.69580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02355389 196.69583130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02355390 196.69583130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02355391 196.69586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02355392 196.69586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02355393 196.69589233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02355394 196.69589233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02355395 196.69590759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02355396 196.69590759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02355397 196.69593811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02355398 196.69593811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02355399 196.69596863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02355400 196.69596863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02355401 196.69599915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02355402 196.69599915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02355403 196.69602966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02355404 196.69602966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02355405 196.69604492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02355406 196.69604492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02355407 196.69607544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02355408 196.69607544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02355409 196.69610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02355410 196.69612122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02355411 196.69613647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02355412 196.69613647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02355413 196.69616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02355414 196.69616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02355415 196.69619751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02355416 196.69619751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02355417 196.69621277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02355418 196.69621277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02355419 196.69624329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02355420 196.69625854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02355421 196.69628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02355422 196.69628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02355423 196.69630432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02355424 196.69630432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02355425 196.69633484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02355426 196.69633484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02355427 196.69636536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02355428 196.69636536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02355429 196.69638062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02355430 196.69638062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02355431 196.69641113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02355432 196.69642639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02355433 196.69644165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02355434 196.69644165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02355435 196.69647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02355436 196.69647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02355437 196.69650269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02355438 196.69650269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02355439 196.69651794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02355440 196.69651794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02355441 196.69654846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02355442 196.69656372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02355443 196.69659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02355444 196.69659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02355445 196.69660950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02355446 196.69660950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02355447 196.69664001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02355448 196.69664001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02355449 196.69667053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02355450 196.69667053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02355451 196.69668579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02355452 196.69668579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02355453 196.69671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02355454 196.69673157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02355455 196.69676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02355456 196.69676208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02355457 196.69677734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02355458 196.69677734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02355459 196.69680786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02355460 196.69680786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02355461 196.69683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02355462 196.69683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02355463 196.69685364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02355464 196.69686890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02355465 196.69689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02355466 196.69689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02355467 196.69691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02355468 196.69691467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02355469 196.69694519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02355470 196.69694519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02355471 196.69697571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02355472 196.69697571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02355473 196.69699097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02355474 196.69700623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02355475 196.69703674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02355476 196.69703674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02355477 196.69706726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02355478 196.69706726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02355479 196.69708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02355480 196.69708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02355481 196.69711304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02355482 196.69711304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02355483 196.69714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02355484 196.69715881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02355485 196.69717407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02355486 196.69717407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02355487 196.69720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02355488 196.69720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02355489 196.69723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02355490 196.69723511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02355491 196.69725037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02355492 196.69725037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02355493 196.69728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02355494 196.69728088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02355495 196.69731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02355496 196.69731140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02355497 196.69734192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02355498 196.69734192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02355499 196.69737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02355500 196.69737244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02355501 196.69738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02355502 196.69738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02355503 196.69741821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02355504 196.69741821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02355505 196.69744873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02355506 196.69746399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02355507 196.69747925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02355508 196.69747925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02355509 196.69750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02355510 196.69750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02355511 196.69754028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02355512 196.69754028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02355513 196.69755554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02355514 196.69755554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02355515 196.69758606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02355516 196.69758606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02355517 196.69761658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02355518 196.69763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02355519 196.69764709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02355520 196.69764709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02355521 196.69767761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02355522 196.69767761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02355523 196.69770813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02355524 196.69770813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02355525 196.69772339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02355526 196.69772339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02355527 196.69775391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02355528 196.69776917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02355529 196.69778442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02355530 196.69778442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02355531 196.69781494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02355532 196.69781494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02355533 196.69784546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02355534 196.69784546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02355535 196.69787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02355536 196.69787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02355537 196.69789124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02355538 196.69790649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02355539 196.69793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02355540 196.69793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02355541 196.69795227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02355542 196.69795227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02355543 196.69798279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02355544 196.69798279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02355545 196.69801331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02355546 196.69801331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02355547 196.69802856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02355548 196.69804382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02355549 196.69807434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02355550 196.69807434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02355551 196.69810486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02355552 196.69810486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02355553 196.69812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02355554 196.69812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02355555 196.69815063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02355556 196.69815063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02355557 196.69818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02355558 196.69819641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02355559 196.69821167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02355560 196.69821167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02355561 196.69824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02355562 196.69824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02355563 196.69827271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02355564 196.69827271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02355565 196.69828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02355566 196.69828796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02355567 196.69831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02355568 196.69831848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02355569 196.69834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02355570 196.69834900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02355571 196.69837952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02355572 196.69837952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02355573 196.69841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02355574 196.69841003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02355575 196.69842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02355576 196.69842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02355577 196.69845581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02355578 196.69845581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02355579 196.69848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02355580 196.69850159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02355581 196.69851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02355582 196.69851685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02355583 196.69854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02355584 196.69854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02355585 196.69857788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02355586 196.69857788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02355587 196.69859314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02355588 196.69859314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02355589 196.69862366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02355590 196.69863892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02355591 196.69865417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02355592 196.69866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02355593 196.69868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02355594 196.69868469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02355595 196.69871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02355596 196.69871521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02355597 196.69874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02355598 196.69874573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02355599 196.69876099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02355600 196.69876099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02355601 196.69879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02355602 196.69880676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02355603 196.69882202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02355604 196.69882202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02355605 196.69885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02355606 196.69885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02355607 196.69888306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02355608 196.69888306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02355609 196.69889832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02355610 196.69889832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02355611 196.69892883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02355612 196.69894409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02355613 196.69897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02355614 196.69897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02355615 196.69898987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02355616 196.69898987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02355617 196.69902039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02355618 196.69902039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02355619 196.69905090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02355620 196.69905090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02355621 196.69906616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02355622 196.69908142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02355623 196.69911194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02355624 196.69911194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02355625 196.69914246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02355626 196.69914246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02355627 196.69915771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02355628 196.69915771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02355629 196.69918823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02355630 196.69918823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02355631 196.69921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02355632 196.69921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02355633 196.69923401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02355634 196.69924927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02355635 196.69927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02355636 196.69927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02355637 196.69929504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02355638 196.69929504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02355639 196.69932556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02355640 196.69932556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02355641 196.69935608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02355642 196.69935608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02355643 196.69938660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02355644 196.69938660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02355645 196.69941711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02355646 196.69941711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02355647 196.69944763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02355648 196.69944763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02355649 196.69946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02355650 196.69946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02355651 196.69949341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02355652 196.69949341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02355653 196.69952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02355654 196.69952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02355655 196.69953918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02355656 196.69955444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02355657 196.69958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02355658 196.69958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02355659 196.69961548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02355660 196.69961548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02355661 196.69963074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02355662 196.69963074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02355663 196.69966125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02355664 196.69966125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02355665 196.69969177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02355666 196.69969177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02355667 196.69972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02355668 196.69972229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02355669 196.69975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02355670 196.69975281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02355671 196.69978333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02355672 196.69978333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02355673 196.69979858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02355674 196.69979858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02355675 196.69982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02355676 196.69984436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02355677 196.69985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02355678 196.69985962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02355679 196.69989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02355680 196.69989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02355681 196.69992065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02355682 196.69992065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02355683 196.69993591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02355684 196.69993591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02355685 196.69996643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02355686 196.69996643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02355687 196.69999695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02355688 196.70001221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02355689 196.70002747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02355690 196.70002747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02355691 196.70005798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02355692 196.70005798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02355693 196.70008850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02355694 196.70008850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02355695 196.70010376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02355696 196.70010376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02355697 196.70013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02355698 196.70014954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02355699 196.70018005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02355700 196.70018005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02355701 196.70019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02355702 196.70019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02355703 196.70022583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02355704 196.70022583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02355705 196.70025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02355706 196.70025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02355707 196.70027161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02355708 196.70027161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02355709 196.70030212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02355710 196.70031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02355711 196.70033264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02355712 196.70033264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02355713 196.70036316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02355714 196.70036316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02355715 196.70039368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02355716 196.70039368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02355717 196.70040894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02355718 196.70040894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02355719 196.70043945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02355720 196.70045471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02355721 196.70048523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02355722 196.70048523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02355723 196.70050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02355724 196.70050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02355725 196.70053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02355726 196.70053101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02355727 196.70056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02355728 196.70056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02355729 196.70057678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02355730 196.70059204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02355731 196.70062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02355732 196.70062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02355733 196.70065308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02355734 196.70065308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02355735 196.70066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02355736 196.70066833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02355737 196.70069885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02355738 196.70069885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02355739 196.70072937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02355740 196.70072937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02355741 196.70074463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02355742 196.70075989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02355743 196.70079041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02355744 196.70079041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02355745 196.70080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02355746 196.70080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02355747 196.70083618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02355748 196.70083618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02355749 196.70086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02355750 196.70086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02355751 196.70089722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02355752 196.70089722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02355753 196.70092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02355754 196.70092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02355755 196.70095825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02355756 196.70095825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02355757 196.70097351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02355758 196.70097351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02355759 196.70100403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02355760 196.70100403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02355761 196.70103455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02355762 196.70104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02355763 196.70106506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02355764 196.70106506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02355765 196.70109558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02355766 196.70109558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02355767 196.70112610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02355768 196.70112610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02355769 196.70114136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02355770 196.70114136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02355771 196.70117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02355772 196.70117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02355773 196.70120239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02355774 196.70120239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02355775 196.70123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02355776 196.70123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02355777 196.70126343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02355778 196.70126343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02355779 196.70129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02355780 196.70129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02355781 196.70130920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02355782 196.70130920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02355783 196.70133972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02355784 196.70135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02355785 196.70137024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02355786 196.70137024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02355787 196.70140076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02355788 196.70140076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02355789 196.70143127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02355790 196.70143127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02355791 196.70144653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02355792 196.70144653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02355793 196.70147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02355794 196.70147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02355795 196.70150757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02355796 196.70152283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02355797 196.70153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02355798 196.70153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02355799 196.70156860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02355800 196.70156860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02355801 196.70159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02355802 196.70159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02355803 196.70161438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02355804 196.70161438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02355805 196.70164490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02355806 196.70166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02355807 196.70169067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02355808 196.70169067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02355809 196.70170593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02355810 196.70170593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02355811 196.70173645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02355812 196.70173645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02355813 196.70176697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02355814 196.70176697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02355815 196.70178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02355816 196.70179749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02355817 196.70182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02355818 196.70182800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02355819 196.70184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02355820 196.70184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02355821 196.70187378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02355822 196.70187378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02355823 196.70190430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02355824 196.70190430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02355825 196.70191956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02355826 196.70193481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02355827 196.70196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02355828 196.70196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02355829 196.70199585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02355830 196.70199585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02355831 196.70201111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02355832 196.70201111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02355833 196.70204163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02355834 196.70204163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02355835 196.70207214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02355836 196.70207214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02355837 196.70208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02355838 196.70210266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02355839 196.70213318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02355840 196.70213318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02355841 196.70216370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02355842 196.70216370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02355843 196.70217896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02355844 196.70217896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02355845 196.70220947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02355846 196.70220947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02355847 196.70223999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02355848 196.70223999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02355849 196.70227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02355850 196.70227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02355851 196.70230103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02355852 196.70230103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02355853 196.70231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02355854 196.70231628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02355855 196.70234680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02355856 196.70234680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02355857 196.70237732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02355858 196.70237732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02355859 196.70239258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02355860 196.70240784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02355861 196.70243835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02355862 196.70243835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02355863 196.70246887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02355864 196.70246887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02355865 196.70248413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02355866 196.70248413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02355867 196.70251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02355868 196.70251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02355869 196.70254517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02355870 196.70256042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02355871 196.70257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02355872 196.70257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02355873 196.70260620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02355874 196.70260620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02355875 196.70263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02355876 196.70263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02355877 196.70265198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02355878 196.70265198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02355879 196.70268250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02355880 196.70268250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02355881 196.70271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02355882 196.70271301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02355883 196.70274353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02355884 196.70274353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02355885 196.70277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02355886 196.70277405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02355887 196.70278931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02355888 196.70278931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02355889 196.70281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02355890 196.70281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02355891 196.70285034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02355892 196.70286560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02355893 196.70288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02355894 196.70288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02355895 196.70291138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02355896 196.70291138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02355897 196.70294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02355898 196.70294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02355899 196.70295715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02355900 196.70295715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02355901 196.70298767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02355902 196.70300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02355903 196.70303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02355904 196.70303345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02355905 196.70304871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02355906 196.70304871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02355907 196.70307922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02355908 196.70307922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02355909 196.70310974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02355910 196.70310974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02355911 196.70312500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02355912 196.70314026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02355913 196.70317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02355914 196.70317078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02355915 196.70318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02355916 196.70318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02355917 196.70321655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02355918 196.70321655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02355919 196.70324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02355920 196.70324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02355921 196.70327759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02355922 196.70327759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02355923 196.70329285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02355924 196.70330811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02355925 196.70333862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02355926 196.70333862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02355927 196.70335388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02355928 196.70335388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02355929 196.70338440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02355930 196.70338440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02355931 196.70341492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02355932 196.70341492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02355933 196.70343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02355934 196.70344543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02355935 196.70347595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02355936 196.70347595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02355937 196.70350647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02355938 196.70350647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02355939 196.70352173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02355940 196.70352173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02355941 196.70355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02355942 196.70355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02355943 196.70358276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02355944 196.70359802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02355945 196.70361328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02355946 196.70361328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02355947 196.70364380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02355948 196.70364380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02355949 196.70367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02355950 196.70367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02355951 196.70368958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02355952 196.70368958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02355953 196.70372009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02355954 196.70372009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02355955 196.70375061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02355956 196.70375061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02355957 196.70378113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02355958 196.70378113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02355959 196.70381165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02355960 196.70381165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02355961 196.70382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02355962 196.70382690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02355963 196.70385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02355964 196.70385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02355965 196.70388794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02355966 196.70390320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02355967 196.70391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02355968 196.70391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02355969 196.70394897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02355970 196.70394897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02355971 196.70397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02355972 196.70397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02355973 196.70399475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02355974 196.70399475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02355975 196.70402527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02355976 196.70404053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02355977 196.70407104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02355978 196.70407104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02355979 196.70408630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02355980 196.70408630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02355981 196.70411682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02355982 196.70411682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02355983 196.70414734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02355984 196.70414734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02355985 196.70416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02355986 196.70416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02355987 196.70419312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02355988 196.70420837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02355989 196.70422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02355990 196.70422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02355991 196.70425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02355992 196.70425415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02355993 196.70428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02355994 196.70428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02355995 196.70429993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02355996 196.70429993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02355997 196.70433044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02355998 196.70434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02355999 196.70437622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02356000 196.70437622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02356001 196.70439148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02356002 196.70439148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02356003 196.70442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02356004 196.70442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02356005 196.70445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02356006 196.70445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02356007 196.70446777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02356008 196.70448303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02356009 196.70451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02356010 196.70451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02356011 196.70454407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02356012 196.70454407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02356013 196.70455933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02356014 196.70455933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02356015 196.70458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02356016 196.70458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02356017 196.70462036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02356018 196.70462036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02356019 196.70463562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02356020 196.70465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02356021 196.70468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02356022 196.70468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02356023 196.70469666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02356024 196.70469666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02356025 196.70472717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02356026 196.70472717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02356027 196.70475769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02356028 196.70475769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02356029 196.70478821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02356030 196.70478821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02356031 196.70481873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02356032 196.70481873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02356033 196.70484924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02356034 196.70484924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02356035 196.70486450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02356036 196.70486450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02356037 196.70489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02356038 196.70491028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02356039 196.70494080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02356040 196.70494080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02356041 196.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02356042 196.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02356043 196.70498657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02356044 196.70498657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02356045 196.70501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02356046 196.70501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02356047 196.70503235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02356048 196.70503235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02356049 196.70506287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02356050 196.70507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02356051 196.70509338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02356052 196.70509338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02356053 196.70512390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02356054 196.70512390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02356055 196.70515442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02356056 196.70515442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02356057 196.70518494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02356058 196.70518494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02356059 196.70520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02356060 196.70521545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02356061 196.70524597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02356062 196.70524597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02356063 196.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02356064 196.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02356065 196.70529175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02356066 196.70529175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02356067 196.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02356068 196.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02356069 196.70533752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02356070 196.70535278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02356071 196.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02356072 196.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02356073 196.70541382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02356074 196.70541382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02356075 196.70542908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02356076 196.70542908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02356077 196.70545959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02356078 196.70545959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02356079 196.70549011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02356080 196.70549011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02356081 196.70550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02356082 196.70552063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02356083 196.70555115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02356084 196.70555115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02356085 196.70558167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02356086 196.70558167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02356087 196.70559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02356088 196.70559692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02356089 196.70562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02356090 196.70562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02356091 196.70565796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02356092 196.70565796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02356093 196.70568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02356094 196.70568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02356095 196.70571899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02356096 196.70571899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02356977 196.71818542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02356978 196.71818542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -02356979 196.71820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02356980 196.71820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -02356981 196.71823120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02356982 196.71824646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -02356983 196.71827698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02356984 196.71827698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -02356985 196.71829224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02356986 196.71829224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -02356987 196.71832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02356988 196.71832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -02356989 196.71835327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02356990 196.71835327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -02356991 196.71836853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02356992 196.71836853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -02356993 196.71839905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02356994 196.71841431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -02356995 196.71844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02356996 196.71844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -02356997 196.71846008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02356998 196.71846008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -02356999 196.71849060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02357000 196.71849060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -02357001 196.71852112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02357002 196.71852112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -02357003 196.71853638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02357004 196.71855164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -02357005 196.71858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02357006 196.71858215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -02357007 196.71859741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02357008 196.71859741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -02357009 196.71862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02357010 196.71862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -02357011 196.71865845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02357012 196.71865845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -02357013 196.71868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02357014 196.71868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -02357015 196.71871948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02357016 196.71871948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -02357017 196.71875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02357018 196.71875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -02357019 196.71876526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02357020 196.71876526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -02371679 196.92402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22338 -02371680 196.92402649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22338 -02371681 196.92405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22348 -02371682 196.92405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22348 -02371683 196.92408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22358 -02371684 196.92408752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22358 -02371685 196.92410278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -02371686 196.92410278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -02371687 196.92413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -02371688 196.92414856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -02371689 196.92417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -02371690 196.92417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -02371691 196.92419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -02371692 196.92419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -02371693 196.92422485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -02371694 196.92422485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -02371695 196.92425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b8 -02371696 196.92425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b8 -02371697 196.92427063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c8 -02371698 196.92428589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c8 -02371699 196.92431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d8 -02371700 196.92431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d8 -02371701 196.92433167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e8 -02371702 196.92433167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e8 -02371703 196.92436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -02371704 196.92436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -02371705 196.92439270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -02371706 196.92439270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -02371707 196.92442322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -02371708 196.92442322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -02371709 196.92443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -02371710 196.92445374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -02371711 196.92448425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -02371712 196.92448425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -02371713 196.92449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -02371714 196.92449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -02371715 196.92453003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -02371716 196.92453003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -02371717 196.92456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -02371718 196.92456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -02371719 196.92457581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -02371720 196.92459106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -02371721 196.92462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -02371722 196.92462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -02377005 196.99885559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -02377006 196.99885559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -02377007 196.99888611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -02377008 196.99888611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -02377009 196.99891663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c8 -02377010 196.99891663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9c8 -02377011 196.99893188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -02377012 196.99894714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9d8 -02377013 196.99897766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -02377014 196.99897766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9e8 -02377015 196.99900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -02377016 196.99900818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9f8 -02377017 196.99902344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -02377018 196.99902344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca08 -02377019 196.99905396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -02377020 196.99905396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca18 -02377021 196.99908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -02377022 196.99908447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca28 -02377023 196.99911499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -02377024 196.99911499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca38 -02377025 196.99914551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca48 -02377026 196.99914551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca48 -02377027 196.99916077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca58 -02377028 196.99916077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca58 -02377029 196.99919128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca68 -02377030 196.99919128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca68 -02377031 196.99922180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca78 -02377032 196.99922180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca78 -02377033 196.99925232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca88 -02377034 196.99925232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca88 -02377035 196.99928284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca98 -02377036 196.99928284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca98 -02377037 196.99931335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa8 -02377038 196.99931335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caa8 -02377039 196.99932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab8 -02377040 196.99932861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cab8 -02377041 196.99935913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac8 -02377042 196.99935913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cac8 -02377043 196.99938965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad8 -02377044 196.99938965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cad8 -02377045 196.99940491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae8 -02377046 196.99942017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cae8 -02377047 196.99945068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf8 -02377048 196.99945068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2caf8 -02380089 197.04304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a08 -02380090 197.04304504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a08 -02380091 197.04307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a18 -02380092 197.04307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a18 -02380093 197.04309082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a28 -02380094 197.04309082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a28 -02380095 197.04312134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a38 -02380096 197.04313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a38 -02380097 197.04316711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a48 -02380098 197.04316711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a48 -02380099 197.04318237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a58 -02380100 197.04318237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a58 -02380101 197.04322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a68 -02380102 197.04322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a68 -02380103 197.04325867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a78 -02380104 197.04325867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a78 -02380105 197.04327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a88 -02380106 197.04327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a88 -02380107 197.04330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a98 -02380108 197.04330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a98 -02380109 197.04333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -02380110 197.04333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32aa8 -02380111 197.04336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab8 -02380112 197.04336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ab8 -02380113 197.04339600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac8 -02380114 197.04339600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ac8 -02380115 197.04341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad8 -02380116 197.04341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ad8 -02380117 197.04344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae8 -02380118 197.04344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ae8 -02380119 197.04347229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af8 -02380120 197.04348755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32af8 -02380121 197.04350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b08 -02380122 197.04350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b08 -02380123 197.04353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b18 -02380124 197.04353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b18 -02380125 197.04356384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b28 -02380126 197.04356384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b28 -02380127 197.04357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b38 -02380128 197.04357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b38 -02380129 197.04360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b48 -02380130 197.04362488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b48 -02380131 197.04365540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b58 -02380132 197.04365540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b58 -02385499 197.11912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d318 -02385500 197.11912537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d318 -02385501 197.11915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -02385502 197.11915588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -02385503 197.11918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -02385504 197.11918640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -02385505 197.11921692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -02385506 197.11921692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -02385507 197.11924744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -02385508 197.11924744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -02385509 197.11927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -02385510 197.11927795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -02385511 197.11929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -02385512 197.11929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -02385513 197.11932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -02385514 197.11933899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -02385515 197.11935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d398 -02385516 197.11935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d398 -02385517 197.11938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a8 -02385518 197.11938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a8 -02385519 197.11941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b8 -02385520 197.11941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b8 -02385521 197.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c8 -02385522 197.11943054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c8 -02385523 197.11946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d8 -02385524 197.11946106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d8 -02385525 197.11949158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e8 -02385526 197.11950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3e8 -02385527 197.11952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f8 -02385528 197.11952209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3f8 -02385529 197.11955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d408 -02385530 197.11955261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d408 -02385531 197.11958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d418 -02385532 197.11958313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d418 -02385533 197.11959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d428 -02385534 197.11959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d428 -02385535 197.11962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d438 -02385536 197.11964417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d438 -02385537 197.11967468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d448 -02385538 197.11967468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d448 -02385539 197.11968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d458 -02385540 197.11968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d458 -02385541 197.11972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d468 -02385542 197.11972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d468 -02391557 197.20428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -02391558 197.20428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49068 -02391559 197.20431519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -02391560 197.20433044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49078 -02391561 197.20434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -02391562 197.20434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49088 -02391563 197.20437622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -02391564 197.20437622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49098 -02391565 197.20440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -02391566 197.20440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490a8 -02391567 197.20442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -02391568 197.20442200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490b8 -02391569 197.20445251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -02391570 197.20446777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490c8 -02391571 197.20449829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -02391572 197.20449829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490d8 -02391573 197.20451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -02391574 197.20451355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490e8 -02391575 197.20454407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -02391576 197.20454407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x490f8 -02391577 197.20457458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -02391578 197.20458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49108 -02391579 197.20460510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -02391580 197.20460510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49118 -02391581 197.20463562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -02391582 197.20463562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49128 -02391583 197.20466614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -02391584 197.20466614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49138 -02391585 197.20468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -02391586 197.20468140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49148 -02391587 197.20471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -02391588 197.20472717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49158 -02391589 197.20474243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -02391590 197.20474243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49168 -02391591 197.20477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -02391592 197.20477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49178 -02391593 197.20480347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -02391594 197.20480347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49188 -02391595 197.20481873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -02391596 197.20481873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49198 -02391597 197.20484924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -02391598 197.20486450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491a8 -02391599 197.20489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -02391600 197.20489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x491b8 -02396575 198.46453857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02396576 198.52809143 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02396577 198.54760742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396578 198.54762268 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396579 198.99092102 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396580 198.99096680 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396581 198.99098206 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396582 198.99099731 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02396583 198.99113464 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396584 198.99113464 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396585 198.99118042 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396586 198.99121094 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396587 200.55009460 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02396588 200.57006836 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396589 200.57006836 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396590 201.49797058 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396591 201.49801636 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396592 201.49803162 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02396593 201.49804688 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02396594 201.49816895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396595 201.49816895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396596 201.49824524 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02396597 201.49824524 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02396598 202.27545166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02396599 202.27546692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02396600 202.27549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02396601 202.27549744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02396602 202.27551270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02396603 202.27551270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02396604 202.27554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02396605 202.27554321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02396606 202.27557373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02396607 202.27558899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02396608 202.27560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02396609 202.27560425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02396610 202.27563477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02396611 202.27563477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02396612 202.27566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02396613 202.27566528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02396614 202.27568054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02396615 202.27568054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02396616 202.27571106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02396617 202.27572632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02396618 202.27575684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02396619 202.27575684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02396620 202.27577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02396621 202.27577209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02396622 202.27580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02396623 202.27580261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02396624 202.27583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02396625 202.27583313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02396626 202.27584839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02396627 202.27586365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02396628 202.27589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02396629 202.27589417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02396630 202.27590942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02396631 202.27590942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02396632 202.27593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02396633 202.27593994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02396634 202.27597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02396635 202.27597046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02396636 202.27600098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02396637 202.27600098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02396638 202.27601624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02396639 202.27603149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02396640 202.27606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02396641 202.27606201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02396642 202.27607727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02396643 202.27607727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02396644 202.27610779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02396645 202.27610779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02396646 202.27613831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02396647 202.27615356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02396648 202.27616882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02396649 202.27616882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02396650 202.27619934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02396651 202.27619934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02396652 202.27622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02396653 202.27622986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02396654 202.27624512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02396655 202.27626038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02396656 202.27629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02396657 202.27629089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02396658 202.27630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02396659 202.27630615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02396660 202.27635193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02396661 202.27635193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02396662 202.27638245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02396663 202.27638245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02396664 202.27639771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02396665 202.27641296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02396666 202.27645874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02396667 202.27645874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02396668 202.27647400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02396669 202.27648926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02396670 202.27651978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02396671 202.27651978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02396672 202.27655029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02396673 202.27655029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02396674 202.27656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02396675 202.27656555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02396676 202.27659607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02396677 202.27659607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02396678 202.27662659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02396679 202.27662659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02396680 202.27664185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02396681 202.27665710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02396682 202.27667236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02396683 202.27668762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02396684 202.27670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02396685 202.27670288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02396686 202.27673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02396687 202.27673340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02396688 202.27676392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02396689 202.27676392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02396690 202.27679443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02396691 202.27679443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02396692 202.27680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02396693 202.27680969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02396694 202.27684021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02396695 202.27685547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02396696 202.27687073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02396697 202.27687073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02396698 202.27690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02396699 202.27690125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02396700 202.27693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02396701 202.27693176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02396702 202.27694702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02396703 202.27694702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02396704 202.27697754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02396705 202.27699280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02396706 202.27702332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02396707 202.27702332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02396708 202.27703857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02396709 202.27703857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02396710 202.27706909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02396711 202.27706909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02396712 202.27709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02396713 202.27709961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02396714 202.27711487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02396715 202.27711487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02396716 202.27714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02396717 202.27714539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02396718 202.27717590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02396719 202.27719116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02396720 202.27719116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02396721 202.27720642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02396722 202.27725220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02396723 202.27725220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02396724 202.27726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02396725 202.27726746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02396726 202.27729797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02396727 202.27731323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02396728 202.27734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02396729 202.27734375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02396730 202.27735901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02396731 202.27735901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02396732 202.27738953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02396733 202.27740479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02396734 202.27742004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02396735 202.27742004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02396736 202.27745056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02396737 202.27745056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02396738 202.27748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02396739 202.27748108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02396740 202.27751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02396741 202.27751160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02396742 202.27752686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02396743 202.27754211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02396744 202.27757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02396745 202.27757263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02396746 202.27758789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02396747 202.27758789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02396748 202.27761841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02396749 202.27761841 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02396750 202.27764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02396751 202.27764893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02396752 202.27766418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02396753 202.27766418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02396754 202.27769470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02396755 202.27770996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02396756 202.27772522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02396757 202.27774048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02396758 202.27775574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02396759 202.27775574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02396760 202.27778625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02396761 202.27778625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02396762 202.27781677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02396763 202.27781677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02396764 202.27783203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02396765 202.27783203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02396766 202.27786255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02396767 202.27787781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02396768 202.27790833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02396769 202.27790833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02396770 202.27792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02396771 202.27792358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02396772 202.27795410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02396773 202.27795410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02396774 202.27798462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02396775 202.27798462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02396776 202.27801514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02396777 202.27801514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02396778 202.27804565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02396779 202.27804565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02396780 202.27806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02396781 202.27806091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02396782 202.27809143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02396783 202.27809143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02396784 202.27812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02396785 202.27812195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02396786 202.27813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02396787 202.27813721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02396788 202.27816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02396789 202.27816772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02396790 202.27819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02396791 202.27819824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02396792 202.27821350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02396793 202.27821350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02396794 202.27824402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02396795 202.27825928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02396796 202.27827454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02396797 202.27828979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02396798 202.27830505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02396799 202.27830505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02396800 202.27833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02396801 202.27833557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02396802 202.27836609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02396803 202.27836609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02396804 202.27838135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02396805 202.27838135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02396806 202.27841187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02396807 202.27842712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02396808 202.27845764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02396809 202.27845764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02396810 202.27847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02396811 202.27847290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02396812 202.27850342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02396813 202.27850342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02396814 202.27853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02396815 202.27853394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02396816 202.27854919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02396817 202.27854919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02396818 202.27857971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02396819 202.27859497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02396820 202.27861023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02396821 202.27861023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02396822 202.27864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02396823 202.27864075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02396824 202.27867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02396825 202.27867126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02396826 202.27870178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02396827 202.27870178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02396828 202.27871704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02396829 202.27873230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02396830 202.27874756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02396831 202.27876282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02396832 202.27877808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02396833 202.27877808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02396834 202.27880859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02396835 202.27880859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02396836 202.27883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02396837 202.27883911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02396838 202.27885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02396839 202.27885437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02396840 202.27888489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02396841 202.27890015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02396842 202.27893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02396843 202.27893066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02396844 202.27894592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02396845 202.27894592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02396846 202.27897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02396847 202.27897644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02396848 202.27900696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02396849 202.27900696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02396850 202.27903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02396851 202.27903748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02396852 202.27906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02396853 202.27906799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02396854 202.27909851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02396855 202.27909851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02396856 202.27911377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02396857 202.27911377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02396858 202.27914429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02396859 202.27914429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02396860 202.27917480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02396861 202.27917480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02396862 202.27919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02396863 202.27919006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02396864 202.27922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02396865 202.27922058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02396866 202.27925110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02396867 202.27925110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02396868 202.27928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02396869 202.27928162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02396870 202.27931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02396871 202.27931213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02396872 202.27932739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02396873 202.27934265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02396874 202.27937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02396875 202.27937317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02396876 202.27940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02396877 202.27940369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02396878 202.27941895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02396879 202.27941895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02396880 202.27944946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02396881 202.27946472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02396882 202.27949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02396883 202.27949524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02396884 202.27951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02396885 202.27951050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02396886 202.27954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02396887 202.27954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02396888 202.27957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02396889 202.27957153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02396890 202.27960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02396891 202.27960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02396892 202.27963257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02396893 202.27963257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02396894 202.27964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02396895 202.27964783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02396896 202.27967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02396897 202.27967834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02396898 202.27970886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02396899 202.27972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02396900 202.27973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02396901 202.27973938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02396902 202.27976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02396903 202.27976990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02396904 202.27980042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02396905 202.27980042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02396906 202.27981567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02396907 202.27981567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02396908 202.27984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02396909 202.27986145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02396910 202.27989197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02396911 202.27989197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02396912 202.27990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02396913 202.27990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02396914 202.27993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02396915 202.27993774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02396916 202.27996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02396917 202.27996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02396918 202.27998352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02396919 202.27999878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02396920 202.28002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02396921 202.28002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02396922 202.28004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02396923 202.28004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02396924 202.28007507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02396925 202.28007507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02396926 202.28010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02396927 202.28010559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02396928 202.28012085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02396929 202.28013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02396930 202.28016663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02396931 202.28016663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02396932 202.28019714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02396933 202.28019714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02396934 202.28021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02396935 202.28021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02396936 202.28024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02396937 202.28024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02396938 202.28027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02396939 202.28028870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02396940 202.28030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02396941 202.28030396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02396942 202.28033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02396943 202.28033447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02396944 202.28036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02396945 202.28036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02396946 202.28038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02396947 202.28038025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02396948 202.28041077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02396949 202.28042603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02396950 202.28044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02396951 202.28044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02396952 202.28047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02396953 202.28047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02396954 202.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02396955 202.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02396956 202.28051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02396957 202.28051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02396958 202.28054810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02396959 202.28056335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02396960 202.28059387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02396961 202.28059387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02396962 202.28060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02396963 202.28060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02396964 202.28063965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02396965 202.28063965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02396966 202.28067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02396967 202.28067017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02396968 202.28068542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02396969 202.28068542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02396970 202.28071594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02396971 202.28071594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02396972 202.28074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02396973 202.28074646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02396974 202.28076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02396975 202.28077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02396976 202.28079224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02396977 202.28080750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02396978 202.28083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02396979 202.28083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02396980 202.28085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02396981 202.28085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02396982 202.28088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02396983 202.28088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02396984 202.28091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02396985 202.28091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02396986 202.28092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02396987 202.28092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02396988 202.28096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02396989 202.28096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02396990 202.28099060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02396991 202.28100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02396992 202.28102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02396993 202.28102112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02396994 202.28105164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02396995 202.28105164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02396996 202.28108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02396997 202.28108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02396998 202.28109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02396999 202.28109741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02397000 202.28112793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02397001 202.28114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02397002 202.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02397003 202.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02397004 202.28118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02397005 202.28118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02397006 202.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02397007 202.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02397008 202.28123474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02397009 202.28123474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02397010 202.28126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02397011 202.28126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02397012 202.28129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02397013 202.28129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02397014 202.28131104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02397015 202.28132629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02397016 202.28134155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02397017 202.28135681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02397018 202.28138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02397019 202.28138733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02397020 202.28140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02397021 202.28140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02397022 202.28143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02397023 202.28143311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02397024 202.28146362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02397025 202.28146362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02397026 202.28147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02397027 202.28147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02397028 202.28150940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02397029 202.28150940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02397030 202.28153992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02397031 202.28153992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02397032 202.28155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02397033 202.28155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02397034 202.28160095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02397035 202.28160095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02397036 202.28163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02397037 202.28163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02397038 202.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02397039 202.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02397040 202.28167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02397041 202.28167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02397042 202.28170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02397043 202.28170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02397044 202.28173828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02397045 202.28173828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02397046 202.28176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02397047 202.28176880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02397048 202.28179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02397049 202.28179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02397050 202.28181458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02397051 202.28182983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02397052 202.28186035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02397053 202.28186035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02397054 202.28187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02397055 202.28187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02397056 202.28190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02397057 202.28190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02397058 202.28193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02397059 202.28193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02397060 202.28195190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02397061 202.28196716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02397062 202.28199768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02397063 202.28199768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02397064 202.28202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02397065 202.28202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02397066 202.28204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02397067 202.28204346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02397068 202.28207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02397069 202.28207397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02397070 202.28210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02397071 202.28210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02397072 202.28211975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02397073 202.28211975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02397074 202.28215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02397075 202.28215027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02397076 202.28218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02397077 202.28218079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02397078 202.28219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02397079 202.28219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02397080 202.28222656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02397081 202.28224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02397082 202.28225708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02397083 202.28227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02397084 202.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02397085 202.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02397086 202.28231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02397087 202.28231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02397088 202.28234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02397089 202.28234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02397090 202.28236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02397091 202.28236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02397092 202.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02397093 202.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02397094 202.28242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02397095 202.28242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02397096 202.28245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02397097 202.28245544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02397098 202.28248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02397099 202.28248596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02397100 202.28250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02397101 202.28250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02397102 202.28253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02397103 202.28253174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02397104 202.28257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02397105 202.28257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02397106 202.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02397107 202.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02397108 202.28262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02397109 202.28262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02397110 202.28265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02397111 202.28265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02397112 202.28266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02397113 202.28266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02397114 202.28269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02397115 202.28271484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02397116 202.28274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02397117 202.28274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02397118 202.28276062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02397119 202.28276062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02397120 202.28279114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02397121 202.28279114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02397122 202.28282166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02397123 202.28282166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02397124 202.28283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02397125 202.28283691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02397126 202.28286743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02397127 202.28288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02397128 202.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02397129 202.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02397130 202.28292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02397131 202.28292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02397132 202.28295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02397133 202.28295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02397134 202.28298950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02397135 202.28298950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02397136 202.28300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02397137 202.28300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02397138 202.28303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02397139 202.28305054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02397140 202.28306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02397141 202.28306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02397142 202.28309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02397143 202.28309631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02397144 202.28312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02397145 202.28312683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02397146 202.28314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02397147 202.28314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02397148 202.28317261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02397149 202.28317261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02397150 202.28320313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02397151 202.28320313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02397152 202.28321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02397153 202.28321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02397154 202.28324890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02397155 202.28324890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02397156 202.28327942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02397157 202.28327942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02397158 202.28330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02397159 202.28330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02397160 202.28332520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02397161 202.28334045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02397162 202.28335571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02397163 202.28337097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02397164 202.28338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02397165 202.28338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02397166 202.28341675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02397167 202.28341675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02397168 202.28344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02397169 202.28344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02397170 202.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02397171 202.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02397172 202.28349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02397173 202.28349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02397174 202.28352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02397175 202.28352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02397176 202.28353882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02397177 202.28353882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02397178 202.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02397179 202.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02397180 202.28361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02397181 202.28361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02397182 202.28363037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02397183 202.28363037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02397184 202.28366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02397185 202.28366089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02397186 202.28369141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02397187 202.28370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02397188 202.28372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02397189 202.28372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02397190 202.28375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02397191 202.28375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02397192 202.28378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02397193 202.28378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02397194 202.28379822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02397195 202.28381348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02397196 202.28384399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02397197 202.28384399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02397198 202.28385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02397199 202.28385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02397200 202.28388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02397201 202.28388977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02397202 202.28392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02397203 202.28392029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02397204 202.28393555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02397205 202.28393555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02397206 202.28396606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02397207 202.28396606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02397208 202.28399658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02397209 202.28399658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02397210 202.28401184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02397211 202.28402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02397212 202.28404236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02397213 202.28405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02397214 202.28408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02397215 202.28408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02397216 202.28410339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02397217 202.28410339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02397218 202.28413391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02397219 202.28413391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02397220 202.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02397221 202.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02397222 202.28417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02397223 202.28417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02397224 202.28421021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02397225 202.28421021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02397226 202.28424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02397227 202.28424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02397228 202.28425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02397229 202.28425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02397230 202.28428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02397231 202.28428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02397232 202.28431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02397233 202.28433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02397234 202.28433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02397235 202.28434753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02397236 202.28437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02397237 202.28437805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02397238 202.28440857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02397239 202.28442383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02397240 202.28445435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02397241 202.28446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02397242 202.28450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02397243 202.28450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02397244 202.28451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02397245 202.28451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02397246 202.28454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02397247 202.28454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02397248 202.28457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02397249 202.28457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02397250 202.28459167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02397251 202.28460693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02397252 202.28463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02397253 202.28463745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02397254 202.28465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02397255 202.28465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02397256 202.28468323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02397257 202.28468323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02397258 202.28471375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02397259 202.28472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02397260 202.28472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02397261 202.28474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02397262 202.28477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02397263 202.28477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02397264 202.28480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02397265 202.28480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02397266 202.28482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02397267 202.28482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02397268 202.28485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02397269 202.28485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02397270 202.28488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02397271 202.28488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02397272 202.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02397273 202.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02397274 202.28492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02397275 202.28492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02397276 202.28495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02397277 202.28495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02397278 202.28497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02397279 202.28498840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02397280 202.28500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02397281 202.28501892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02397282 202.28503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02397283 202.28504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02397284 202.28506470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02397285 202.28506470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02397286 202.28509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02397287 202.28509521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02397288 202.28512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02397289 202.28512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02397290 202.28514099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02397291 202.28514099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02397292 202.28517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02397293 202.28517151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02397294 202.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02397295 202.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02397296 202.28521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02397297 202.28521729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02397298 202.28524780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02397299 202.28524780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02397300 202.28527832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02397301 202.28527832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02397302 202.28529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02397303 202.28530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02397304 202.28533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02397305 202.28533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02397306 202.28536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02397307 202.28536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02397308 202.28538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02397309 202.28538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02397310 202.28541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02397311 202.28541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02397312 202.28544617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02397313 202.28544617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02397314 202.28546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02397315 202.28546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02397316 202.28549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02397317 202.28549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02397318 202.28552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02397319 202.28552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02397320 202.28553772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02397321 202.28555298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02397322 202.28556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02397323 202.28558350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02397324 202.28561401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02397325 202.28561401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02397326 202.28562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02397327 202.28562927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02397328 202.28565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02397329 202.28565979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02397330 202.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02397331 202.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02397332 202.28572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02397333 202.28572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02397334 202.28575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02397335 202.28575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02397336 202.28576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02397337 202.28576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02397338 202.28579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02397339 202.28579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02397340 202.28582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02397341 202.28584290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02397342 202.28585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02397343 202.28585815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02397344 202.28588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02397345 202.28588867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02397346 202.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02397347 202.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02397348 202.28593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02397349 202.28593445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02397350 202.28596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02397351 202.28596497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02397352 202.28599548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02397353 202.28601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02397354 202.28601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02397355 202.28602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02397356 202.28605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02397357 202.28605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02397358 202.28608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02397359 202.28608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02397360 202.28610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02397361 202.28610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02397362 202.28613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02397363 202.28613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02397364 202.28616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02397365 202.28616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02397366 202.28617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02397367 202.28619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02397368 202.28622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02397369 202.28622437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02397370 202.28623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02397371 202.28623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02397372 202.28627014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02397373 202.28627014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02397374 202.28630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02397375 202.28630066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02397376 202.28631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02397377 202.28633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02397378 202.28636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02397379 202.28636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02397380 202.28639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02397381 202.28639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02397382 202.28640747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02397383 202.28640747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02397384 202.28643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02397385 202.28645325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02397386 202.28648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02397387 202.28648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02397388 202.28649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02397389 202.28649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02397390 202.28652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02397391 202.28652954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02397392 202.28656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02397393 202.28656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02397394 202.28659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02397395 202.28659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02397396 202.28662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02397397 202.28662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02397398 202.28663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02397399 202.28663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02397400 202.28666687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02397401 202.28668213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02397402 202.28671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02397403 202.28671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02397404 202.28672791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02397405 202.28672791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02397406 202.28675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02397407 202.28675842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02397408 202.28678894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02397409 202.28678894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02397410 202.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02397411 202.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02397412 202.28683472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02397413 202.28684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02397414 202.28688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02397415 202.28688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02397416 202.28689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02397417 202.28689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02397418 202.28692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02397419 202.28692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02397420 202.28695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02397421 202.28695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02397422 202.28697205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02397423 202.28698730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02397424 202.28701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02397425 202.28701782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02397426 202.28706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02397427 202.28706360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02397428 202.28709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02397429 202.28709412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02397430 202.28710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02397431 202.28710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02397432 202.28713989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02397433 202.28715515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02397434 202.28717041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02397435 202.28718567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02397436 202.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02397437 202.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02397438 202.28723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02397439 202.28723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02397440 202.28726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02397441 202.28726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02397442 202.28727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02397443 202.28727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02397444 202.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02397445 202.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02397446 202.28733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02397447 202.28733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02397448 202.28735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02397449 202.28735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02397450 202.28738403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02397451 202.28739929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02397452 202.28741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02397453 202.28742981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02397454 202.28744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02397455 202.28744507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02397456 202.28747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02397457 202.28747559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02397458 202.28750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02397459 202.28750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02397460 202.28752136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02397461 202.28752136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02397462 202.28755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02397463 202.28755188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02397464 202.28758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02397465 202.28758240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02397466 202.28759766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02397467 202.28759766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02397468 202.28762817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02397469 202.28762817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02397470 202.28765869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02397471 202.28765869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02397472 202.28767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02397473 202.28768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02397474 202.28770447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02397475 202.28771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02397476 202.28775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02397477 202.28775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02397478 202.28776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02397479 202.28776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02397480 202.28779602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02397481 202.28779602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02397482 202.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02397483 202.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02397484 202.28784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02397485 202.28784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02397486 202.28787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02397487 202.28787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02397488 202.28790283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02397489 202.28790283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02397490 202.28791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02397491 202.28791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02397492 202.28794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02397493 202.28794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02397494 202.28797913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02397495 202.28799438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02397496 202.28800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02397497 202.28800964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02397498 202.28804016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02397499 202.28804016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02397500 202.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02397501 202.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02397502 202.28808594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02397503 202.28810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02397504 202.28811646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02397505 202.28813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02397506 202.28814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02397507 202.28814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02397508 202.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02397509 202.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02397510 202.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02397511 202.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02397512 202.28822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02397513 202.28823853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02397514 202.28826904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02397515 202.28826904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02397516 202.28829956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02397517 202.28829956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02397518 202.28831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02397519 202.28831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02397520 202.28834534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02397521 202.28834534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02397522 202.28837585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02397523 202.28837585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02397524 202.28839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02397525 202.28839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02397526 202.28842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02397527 202.28842163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02397528 202.28845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02397529 202.28845215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02397530 202.28846741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02397531 202.28848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02397532 202.28849792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02397533 202.28851318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02397534 202.28854370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02397535 202.28854370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02397536 202.28855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02397537 202.28855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02397538 202.28858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02397539 202.28858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02397540 202.28862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02397541 202.28862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02397542 202.28863525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02397543 202.28863525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02397544 202.28866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02397545 202.28866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02397546 202.28869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02397547 202.28869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02397548 202.28871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02397549 202.28871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02397550 202.28874207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02397551 202.28874207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02397552 202.28877258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02397553 202.28877258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02397554 202.28878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02397555 202.28880310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02397556 202.28881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02397557 202.28883362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02397558 202.28886414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02397559 202.28886414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02397560 202.28887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02397561 202.28887939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02397562 202.28890991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02397563 202.28890991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02397564 202.28894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02397565 202.28894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02397566 202.28895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02397567 202.28895569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02397568 202.28898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02397569 202.28898621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02397570 202.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02397571 202.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02397572 202.28903198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02397573 202.28903198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02397574 202.28906250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02397575 202.28907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02397576 202.28909302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02397577 202.28910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02397578 202.28912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02397579 202.28912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02397580 202.28915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02397581 202.28915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02397582 202.28918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02397583 202.28918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02397584 202.28919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02397585 202.28919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02397586 202.28923035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02397587 202.28923035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02397588 202.28926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02397589 202.28926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02397590 202.28927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02397591 202.28927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02397592 202.28930664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02397593 202.28930664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02397594 202.28933716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02397595 202.28933716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02397596 202.28936768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02397597 202.28936768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02397598 202.28939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02397599 202.28939819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02397600 202.28941345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02397601 202.28941345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02397602 202.28944397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02397603 202.28945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02397604 202.28948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02397605 202.28948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02397606 202.28950500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02397607 202.28950500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02397608 202.28953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02397609 202.28953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02397610 202.28956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02397611 202.28956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02397612 202.28958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02397613 202.28958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02397614 202.28961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02397615 202.28961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02397616 202.28964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02397617 202.28964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02397618 202.28965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02397619 202.28967285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02397620 202.28968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02397621 202.28970337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02397622 202.28973389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02397623 202.28973389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02397624 202.28974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02397625 202.28974915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02397626 202.28977966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02397627 202.28977966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02397628 202.28981018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02397629 202.28981018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02397630 202.28982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02397631 202.28982544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02397632 202.28985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02397633 202.28985596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02397634 202.28988647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02397635 202.28990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02397636 202.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02397637 202.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02397638 202.28994751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02397639 202.28994751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02397640 202.28997803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02397641 202.28997803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02397642 202.29002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02397643 202.29002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02397644 202.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02397645 202.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02397646 202.29006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02397647 202.29006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02397648 202.29011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02397649 202.29011536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02397650 202.29013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02397651 202.29013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02397652 202.29016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02397653 202.29016113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02397654 202.29019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02397655 202.29019165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02397656 202.29020691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02397657 202.29020691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02397658 202.29023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02397659 202.29023743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02397660 202.29026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02397661 202.29026794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02397662 202.29029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02397663 202.29029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02397664 202.29031372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02397665 202.29031372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02397666 202.29034424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02397667 202.29035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02397668 202.29037476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02397669 202.29037476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02397670 202.29040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02397671 202.29040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02397672 202.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02397673 202.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02397674 202.29045105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02397675 202.29045105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02397676 202.29048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02397677 202.29048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02397678 202.29051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02397679 202.29051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02397680 202.29052734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02397681 202.29052734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02397682 202.29055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02397683 202.29055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02397684 202.29058838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02397685 202.29058838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02397686 202.29060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02397687 202.29060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02397688 202.29063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02397689 202.29064941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02397690 202.29066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02397691 202.29067993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02397692 202.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02397693 202.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02397694 202.29072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02397695 202.29072571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02397696 202.29075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02397697 202.29075623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02397698 202.29077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02397699 202.29077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02397700 202.29080200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02397701 202.29080200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02397702 202.29083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02397703 202.29083252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02397704 202.29084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02397705 202.29084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02397706 202.29087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02397707 202.29087830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02397708 202.29090881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02397709 202.29090881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02397710 202.29092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02397711 202.29093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02397712 202.29095459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02397713 202.29096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02397714 202.29100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02397715 202.29100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02397716 202.29101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02397717 202.29101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02397718 202.29104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02397719 202.29104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02397720 202.29107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02397721 202.29107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02397722 202.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02397723 202.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02397724 202.29112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02397725 202.29112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02397726 202.29115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02397727 202.29116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02397728 202.29118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02397729 202.29118347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02397730 202.29121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02397731 202.29121399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02397732 202.29124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02397733 202.29124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02397734 202.29127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02397735 202.29127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02397736 202.29130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02397737 202.29130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02397738 202.29132080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02397739 202.29132080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02397740 202.29135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02397741 202.29135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02397742 202.29139709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02397743 202.29139709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02397744 202.29141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02397745 202.29141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02397746 202.29144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02397747 202.29144287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02397748 202.29147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02397749 202.29147339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02397750 202.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02397751 202.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02397752 202.29151917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02397753 202.29151917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02397754 202.29154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02397755 202.29154968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02397756 202.29156494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02397757 202.29156494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02397758 202.29159546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02397759 202.29159546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02397760 202.29162598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02397761 202.29164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02397762 202.29164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02397763 202.29165649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02397764 202.29168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02397765 202.29168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02397766 202.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02397767 202.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02397768 202.29173279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02397769 202.29173279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02397770 202.29176331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02397771 202.29176331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02397772 202.29179382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02397773 202.29179382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02397774 202.29180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02397775 202.29180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02397776 202.29183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02397777 202.29183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02397778 202.29187012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02397779 202.29187012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02397780 202.29188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02397781 202.29188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02397782 202.29191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02397783 202.29191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02397784 202.29194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02397785 202.29196167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02397786 202.29196167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02397787 202.29197693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02397788 202.29200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02397789 202.29200745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02397790 202.29203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02397791 202.29203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02397792 202.29205322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02397793 202.29205322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02397794 202.29208374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02397795 202.29208374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02397796 202.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02397797 202.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02397798 202.29212952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02397799 202.29212952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02397800 202.29216003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02397801 202.29216003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02397802 202.29219055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02397803 202.29219055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02397804 202.29220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02397805 202.29220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02397806 202.29223633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02397807 202.29225159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02397808 202.29226685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02397809 202.29228210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02397810 202.29229736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02397811 202.29229736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02397812 202.29232788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02397813 202.29232788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02397814 202.29235840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02397815 202.29235840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02397816 202.29237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02397817 202.29237366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02397818 202.29240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02397819 202.29240417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02397820 202.29243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02397821 202.29243469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02397822 202.29246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02397823 202.29246521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02397824 202.29249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02397825 202.29249573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02397826 202.29251099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02397827 202.29251099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02397828 202.29254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02397829 202.29254150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02397830 202.29257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02397831 202.29257202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02397832 202.29260254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02397833 202.29260254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02397834 202.29261780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02397835 202.29263306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02397836 202.29264832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02397837 202.29266357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02397838 202.29267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02397839 202.29267883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02397840 202.29270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02397841 202.29270935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02397842 202.29273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02397843 202.29273987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02397844 202.29275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02397845 202.29275513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02397846 202.29278564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02397847 202.29278564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02397848 202.29281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02397849 202.29281616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02397850 202.29283142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02397851 202.29283142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02397852 202.29286194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02397853 202.29286194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02397854 202.29289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02397855 202.29289246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02397856 202.29290771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02397857 202.29290771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02397858 202.29293823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02397859 202.29295349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02397860 202.29296875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02397861 202.29298401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02397862 202.29299927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02397863 202.29299927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02397864 202.29302979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02397865 202.29302979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02397866 202.29306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02397867 202.29306030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02397868 202.29307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02397869 202.29307556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02397870 202.29310608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02397871 202.29310608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02397872 202.29313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02397873 202.29313660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02397874 202.29315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02397875 202.29315186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02397876 202.29318237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02397877 202.29319763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02397878 202.29322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02397879 202.29322815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02397880 202.29324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02397881 202.29324341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02397882 202.29327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02397883 202.29327393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02397884 202.29330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02397885 202.29330444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02397886 202.29331970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02397887 202.29333496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02397888 202.29335022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02397889 202.29336548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02397890 202.29339600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02397891 202.29339600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02397892 202.29341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02397893 202.29341125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02397894 202.29344177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02397895 202.29345703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02397896 202.29347229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02397897 202.29347229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02397898 202.29350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02397899 202.29350281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02397900 202.29353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02397901 202.29353333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02397902 202.29354858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02397903 202.29354858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02397904 202.29357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02397905 202.29357910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02397906 202.29360962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02397907 202.29362488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02397908 202.29364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02397909 202.29364014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02397910 202.29367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02397911 202.29367065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02397912 202.29370117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02397913 202.29370117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02397914 202.29371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02397915 202.29371643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02397916 202.29374695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02397917 202.29376221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02397918 202.29379272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02397919 202.29379272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02397920 202.29380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02397921 202.29380798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02397922 202.29383850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02397923 202.29383850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02397924 202.29386902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02397925 202.29386902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02397926 202.29388428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02397927 202.29389954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02397928 202.29391479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02397929 202.29393005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02397930 202.29394531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02397931 202.29394531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02397932 202.29397583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02397933 202.29397583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02397934 202.29400635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02397935 202.29400635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02397936 202.29402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02397937 202.29402161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02397938 202.29405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02397939 202.29405212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02397940 202.29408264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02397941 202.29408264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02397942 202.29411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02397943 202.29411316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02397944 202.29412842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02397945 202.29414368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02397946 202.29417419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02397947 202.29417419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02397948 202.29418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02397949 202.29418945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02397950 202.29421997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02397951 202.29421997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02397952 202.29425049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02397953 202.29425049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02397954 202.29426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02397955 202.29426575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02397956 202.29429626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02397957 202.29429626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02397958 202.29432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02397959 202.29432678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02397960 202.29434204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02397961 202.29434204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02397962 202.29437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02397963 202.29437256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02397964 202.29441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02397965 202.29441833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02397966 202.29443359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02397967 202.29443359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02397968 202.29446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02397969 202.29446411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02397970 202.29449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02397971 202.29449463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02397972 202.29450989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02397973 202.29452515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02397974 202.29454041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02397975 202.29455566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02397976 202.29458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02397977 202.29458618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02397978 202.29460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02397979 202.29460144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02397980 202.29463196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02397981 202.29463196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02397982 202.29466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02397983 202.29466248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02397984 202.29467773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02397985 202.29467773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02397986 202.29470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02397987 202.29470825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02397988 202.29473877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02397989 202.29473877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02397990 202.29475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02397991 202.29475403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02397992 202.29478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02397993 202.29478455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02397994 202.29481506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02397995 202.29481506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02397996 202.29483032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02397997 202.29484558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02397998 202.29487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02397999 202.29487610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02398000 202.29490662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02398001 202.29490662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02398002 202.29492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02398003 202.29492188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02398004 202.29495239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02398005 202.29495239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02398006 202.29498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02398007 202.29498291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02398008 202.29499817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02398009 202.29499817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02398010 202.29502869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02398011 202.29502869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02398012 202.29505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02398013 202.29505920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02398014 202.29507446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02398015 202.29507446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02398016 202.29510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02398017 202.29510498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02398018 202.29513550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02398019 202.29513550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02398020 202.29515076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02398021 202.29516602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02398022 202.29519653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02398023 202.29519653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02398024 202.29521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02398025 202.29521179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02398026 202.29524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02398027 202.29524231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02398028 202.29527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02398029 202.29527283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02398030 202.29530334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02398031 202.29530334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02398032 202.29531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02398033 202.29531860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02398034 202.29534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02398035 202.29534912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02398036 202.29537964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02398037 202.29537964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02398038 202.29539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02398039 202.29539490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02398040 202.29542542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02398041 202.29544067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02398042 202.29545593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02398043 202.29545593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02398044 202.29548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02398045 202.29548645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02398046 202.29551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02398047 202.29551697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02398048 202.29553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02398049 202.29553223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02398050 202.29556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02398051 202.29556274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02398052 202.29559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02398053 202.29559326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02398054 202.29560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02398055 202.29560852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02398056 202.29563904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02398057 202.29565430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02398058 202.29568481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02398059 202.29568481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02398060 202.29570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02398061 202.29570007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02398062 202.29573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02398063 202.29573059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02398064 202.29576111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02398065 202.29576111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02398066 202.29579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02398067 202.29579163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02398068 202.29582214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02398069 202.29582214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02398070 202.29585266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02398071 202.29585266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02398072 202.29586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02398073 202.29586792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02398074 202.29589844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02398075 202.29589844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02398076 202.29592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02398077 202.29592896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02398078 202.29594421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02398079 202.29594421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02398080 202.29597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02398081 202.29597473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02398082 202.29600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02398083 202.29600525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02398084 202.29602051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02398085 202.29602051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02398086 202.29605103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02398087 202.29606628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02398088 202.29608154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02398089 202.29609680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02398090 202.29611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02398091 202.29611206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02398092 202.29614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02398093 202.29614258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02406472 202.41465759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -02406473 202.41467285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -02406474 202.41468811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -02406475 202.41468811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -02406476 202.41471863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -02406477 202.41471863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -02406478 202.41474915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -02406479 202.41474915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -02406480 202.41476440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -02406481 202.41476440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -02406482 202.41479492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -02406483 202.41481018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -02406484 202.41484070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -02406485 202.41484070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -02406486 202.41485596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -02406487 202.41485596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -02406488 202.41488647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -02406489 202.41488647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -02406490 202.41491699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -02406491 202.41491699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -02406492 202.41493225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -02406493 202.41494751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -02406494 202.41497803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -02406495 202.41497803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -02406496 202.41500854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -02406497 202.41500854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -02406498 202.41502380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -02406499 202.41502380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -02406500 202.41505432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -02406501 202.41505432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -02406502 202.41508484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -02406503 202.41508484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -02406504 202.41511536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -02406505 202.41511536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -02406506 202.41514587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e8 -02406507 202.41514587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e8 -02406508 202.41516113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f8 -02406509 202.41516113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f8 -02406510 202.41519165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14608 -02406511 202.41519165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14608 -02406512 202.41522217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14618 -02406513 202.41523743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14618 -02406514 202.41525269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14628 -02406515 202.41525269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14628 -02414082 202.52304077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -02414083 202.52304077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -02414084 202.52305603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -02414085 202.52307129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -02414086 202.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -02414087 202.52310181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -02414088 202.52311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -02414089 202.52311707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -02414090 202.52314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -02414091 202.52314758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -02414092 202.52317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -02414093 202.52317810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -02414094 202.52319336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -02414095 202.52320862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -02414096 202.52323914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -02414097 202.52323914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -02414098 202.52326965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -02414099 202.52326965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -02414100 202.52328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -02414101 202.52328491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -02414102 202.52331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -02414103 202.52331543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -02414104 202.52334595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -02414105 202.52336121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -02414106 202.52337646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -02414107 202.52337646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -02414108 202.52340698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -02414109 202.52340698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -02414110 202.52343750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -02414111 202.52343750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -02414112 202.52345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -02414113 202.52345276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -02414114 202.52348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -02414115 202.52348328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -02414116 202.52351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -02414117 202.52351379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -02414118 202.52354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -02414119 202.52354431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -02414120 202.52357483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -02414121 202.52357483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -02414122 202.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -02414123 202.52359009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -02414124 202.52362061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -02414125 202.52362061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -02419029 202.59242249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -02419030 202.59243774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -02419031 202.59246826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -02419032 202.59246826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -02419033 202.59248352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -02419034 202.59248352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -02419035 202.59251404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -02419036 202.59251404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -02419037 202.59254456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -02419038 202.59254456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -02419039 202.59255981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -02419040 202.59255981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -02419041 202.59259033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -02419042 202.59260559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -02419043 202.59262085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -02419044 202.59262085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -02419045 202.59265137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -02419046 202.59265137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -02419047 202.59268188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -02419048 202.59268188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -02419049 202.59269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -02419050 202.59269714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -02419051 202.59272766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd8 -02419052 202.59274292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd8 -02419053 202.59277344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde8 -02419054 202.59277344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cde8 -02419055 202.59278870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf8 -02419056 202.59278870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdf8 -02419057 202.59281921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce08 -02419058 202.59281921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce08 -02419059 202.59284973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce18 -02419060 202.59284973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce18 -02419061 202.59286499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce28 -02419062 202.59286499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce28 -02419063 202.59289551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce38 -02419064 202.59291077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce38 -02419065 202.59294128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce48 -02419066 202.59294128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce48 -02419067 202.59295654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce58 -02419068 202.59295654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce58 -02419069 202.59298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce68 -02419070 202.59298706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce68 -02419071 202.59301758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce78 -02419072 202.59301758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce78 -02424287 202.66563416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -02424288 202.66563416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -02424289 202.66566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -02424290 202.66566467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -02424291 202.66569519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -02424292 202.66569519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -02424293 202.66571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a8 -02424294 202.66572571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a8 -02424295 202.66575623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b8 -02424296 202.66575623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b8 -02424297 202.66578674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c8 -02424298 202.66578674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c8 -02424299 202.66580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d8 -02424300 202.66580200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d8 -02424301 202.66583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e8 -02424302 202.66583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e8 -02424303 202.66586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f8 -02424304 202.66586304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f8 -02424305 202.66587830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37208 -02424306 202.66587830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37208 -02424307 202.66590881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -02424308 202.66590881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -02424309 202.66593933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37228 -02424310 202.66593933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37228 -02424311 202.66595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37238 -02424312 202.66595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37238 -02424313 202.66598511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37248 -02424314 202.66600037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37248 -02424315 202.66601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37258 -02424316 202.66601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37258 -02424317 202.66603088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37268 -02424318 202.66604614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37268 -02424319 202.66607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37278 -02424320 202.66607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37278 -02424321 202.66609192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37288 -02424322 202.66609192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37288 -02424323 202.66612244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37298 -02424324 202.66612244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37298 -02424325 202.66615295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a8 -02424326 202.66615295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372a8 -02424327 202.66618347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b8 -02424328 202.66618347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372b8 -02424329 202.66619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c8 -02424330 202.66619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x372c8 -02438487 204.00526428 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438488 204.00529480 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438489 204.00531006 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438490 204.00532532 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02438491 204.00544739 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438492 204.00544739 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438493 204.00552368 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438494 204.00552368 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438495 204.59188843 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02438496 204.61441040 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438497 204.61442566 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438498 206.51257324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438499 206.51261902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438500 206.51263428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438501 206.51264954 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02438502 206.51277161 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438503 206.51277161 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438504 206.51283264 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02438505 206.51286316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02438506 206.57057190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02438507 206.61656189 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02438508 206.63601685 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438509 206.63603210 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02438510 207.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02438511 207.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02438512 207.86077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02438513 207.86079407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02438514 207.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02438515 207.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02438516 207.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02438517 207.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02438518 207.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02438519 207.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02438520 207.86088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02438521 207.86088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02438522 207.86091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02438523 207.86091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02438524 207.86094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02438525 207.86094666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02438526 207.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02438527 207.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02438528 207.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02438529 207.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02438530 207.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02438531 207.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02438532 207.86103821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02438533 207.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02438534 207.86106873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02438535 207.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02438536 207.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02438537 207.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02438538 207.86112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02438539 207.86112976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02438540 207.86116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02438541 207.86116028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02438542 207.86119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02438543 207.86119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02438544 207.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02438545 207.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02438546 207.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02438547 207.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02438548 207.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02438549 207.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02438550 207.86128235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02438551 207.86128235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02438552 207.86131287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02438553 207.86131287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02438554 207.86134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02438555 207.86134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02438556 207.86135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02438557 207.86137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02438558 207.86140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02438559 207.86140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02438560 207.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02438561 207.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02438562 207.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02438563 207.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02438564 207.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02438565 207.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02438566 207.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02438567 207.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02438568 207.86152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02438569 207.86152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02438570 207.86155701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02438571 207.86155701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02438572 207.86158752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02438573 207.86158752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02438574 207.86160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02438575 207.86161804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02438576 207.86164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02438577 207.86164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02438578 207.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02438579 207.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02438580 207.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02438581 207.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02438582 207.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02438583 207.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02438584 207.86174011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02438585 207.86174011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02438586 207.86177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02438587 207.86177063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02438588 207.86180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02438589 207.86180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02438590 207.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02438591 207.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02438592 207.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02438593 207.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02438594 207.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02438595 207.86189270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02438596 207.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02438597 207.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02438598 207.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02438599 207.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02438600 207.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02438601 207.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02438602 207.86198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02438603 207.86198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02438604 207.86201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02438605 207.86201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02438606 207.86204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02438607 207.86204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02438608 207.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02438609 207.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02438610 207.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02438611 207.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02438612 207.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02438613 207.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02438614 207.86213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02438615 207.86213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02438616 207.86216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02438617 207.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02438618 207.86219788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02438619 207.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02438620 207.86222839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02438621 207.86222839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02438622 207.86225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02438623 207.86225891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02438624 207.86228943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02438625 207.86228943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02438626 207.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02438627 207.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02438628 207.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02438629 207.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02438630 207.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02438631 207.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02438632 207.86238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02438633 207.86238098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02438634 207.86244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02438635 207.86244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02438636 207.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02438637 207.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02438638 207.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02438639 207.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02438640 207.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02438641 207.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02438642 207.86253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02438643 207.86253357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02438644 207.86256409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02438645 207.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02438646 207.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02438647 207.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02438648 207.86262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02438649 207.86262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02438650 207.86265564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02438651 207.86265564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02438652 207.86268616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02438653 207.86268616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02438654 207.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02438655 207.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02438656 207.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02438657 207.86274719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02438658 207.86277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02438659 207.86277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02438660 207.86279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02438661 207.86279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02438662 207.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02438663 207.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02438664 207.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02438665 207.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02438666 207.86286926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02438667 207.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02438668 207.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02438669 207.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02438670 207.86293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02438671 207.86293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02438672 207.86296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02438673 207.86296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02438674 207.86299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02438675 207.86299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02438676 207.86302185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02438677 207.86302185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02438678 207.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02438679 207.86305237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02438680 207.86308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02438681 207.86308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02438682 207.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02438683 207.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02438684 207.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02438685 207.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02438686 207.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02438687 207.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02438688 207.86317444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02438689 207.86318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02438690 207.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02438691 207.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02438692 207.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02438693 207.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02438694 207.86326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02438695 207.86326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02438696 207.86329651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02438697 207.86329651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02438698 207.86332703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02438699 207.86332703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02438700 207.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02438701 207.86335754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02438702 207.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02438703 207.86338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02438704 207.86341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02438705 207.86341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02438706 207.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02438707 207.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02438708 207.86347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02438709 207.86347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02438710 207.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02438711 207.86351013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02438712 207.86354065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02438713 207.86354065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02438714 207.86357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02438715 207.86357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02438716 207.86358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02438717 207.86358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02438718 207.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02438719 207.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02438720 207.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02438721 207.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02438722 207.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02438723 207.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02438724 207.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02438725 207.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02438726 207.86372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02438727 207.86372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02438728 207.86375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02438729 207.86375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02438730 207.86378479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02438731 207.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02438732 207.86381531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02438733 207.86381531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02438734 207.86384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02438735 207.86384583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02438736 207.86387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02438737 207.86387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02438738 207.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02438739 207.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02438740 207.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02438741 207.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02438742 207.86395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02438743 207.86396790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02438744 207.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02438745 207.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02438746 207.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02438747 207.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02438748 207.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02438749 207.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02438750 207.86405945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02438751 207.86405945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02438752 207.86408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02438753 207.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02438754 207.86412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02438755 207.86412048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02438756 207.86415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02438757 207.86415100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02438758 207.86418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02438759 207.86418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02438760 207.86421204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02438761 207.86421204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02438762 207.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02438763 207.86424255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02438764 207.86427307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02438765 207.86427307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02438766 207.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02438767 207.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02438768 207.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02438769 207.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02438770 207.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02438771 207.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02438772 207.86436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02438773 207.86436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02438774 207.86439514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02438775 207.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02438776 207.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02438777 207.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02438778 207.86445618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02438779 207.86445618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02438780 207.86448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02438781 207.86448669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02438782 207.86451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02438783 207.86451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02438784 207.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02438785 207.86454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02438786 207.86457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02438787 207.86457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02438788 207.86460876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02438789 207.86460876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02438790 207.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02438791 207.86466980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02438792 207.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02438793 207.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02438794 207.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02438795 207.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02438796 207.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02438797 207.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02438798 207.86476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02438799 207.86476135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02438800 207.86479187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02438801 207.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02438802 207.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02438803 207.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02438804 207.86485291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02438805 207.86485291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02438806 207.86488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02438807 207.86488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02438808 207.86491394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02438809 207.86491394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02438810 207.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02438811 207.86494446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02438812 207.86497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02438813 207.86497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02438814 207.86500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02438815 207.86500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02438816 207.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02438817 207.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02438818 207.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02438819 207.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02438820 207.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02438821 207.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02438822 207.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02438823 207.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02438824 207.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02438825 207.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02438826 207.86515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02438827 207.86515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02438828 207.86518860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02438829 207.86518860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02438830 207.86521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02438831 207.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02438832 207.86524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02438833 207.86524963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02438834 207.86528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02438835 207.86528015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02438836 207.86531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02438837 207.86531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02438838 207.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02438839 207.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02438840 207.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02438841 207.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02438842 207.86538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02438843 207.86540222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02438844 207.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02438845 207.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02438846 207.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02438847 207.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02438848 207.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02438849 207.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02438850 207.86549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02438851 207.86549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02438852 207.86552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02438853 207.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02438854 207.86555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02438855 207.86555481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02438856 207.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02438857 207.86558533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02438858 207.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02438859 207.86561584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02438860 207.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02438861 207.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02438862 207.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02438863 207.86567688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02438864 207.86570740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02438865 207.86570740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02438866 207.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02438867 207.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02438868 207.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02438869 207.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02438870 207.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02438871 207.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02438872 207.86579895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02438873 207.86581421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02438874 207.86584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02438875 207.86584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02438876 207.86587524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02438877 207.86587524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02438878 207.86589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02438879 207.86589050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02438880 207.86592102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02438881 207.86592102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02438882 207.86595154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02438883 207.86595154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02438884 207.86596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02438885 207.86598206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02438886 207.86601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02438887 207.86601257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02438888 207.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02438889 207.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02438890 207.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02438891 207.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02438892 207.86608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02438893 207.86608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02438894 207.86611938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02438895 207.86611938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02438896 207.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02438897 207.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02438898 207.86618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02438899 207.86618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02438900 207.86619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02438901 207.86619568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02438902 207.86622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02438903 207.86622620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02438904 207.86625671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02438905 207.86627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02438906 207.86628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02438907 207.86628723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02438908 207.86631775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02438909 207.86631775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02438910 207.86634827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02438911 207.86634827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02438912 207.86636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02438913 207.86636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02438914 207.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02438915 207.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02438916 207.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02438917 207.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02438918 207.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02438919 207.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02438920 207.86648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02438921 207.86648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02438922 207.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02438923 207.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02438924 207.86653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02438925 207.86653137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02438926 207.86656189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02438927 207.86657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02438928 207.86659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02438929 207.86659241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02438930 207.86662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02438931 207.86662292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02438932 207.86665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02438933 207.86665344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02438934 207.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02438935 207.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02438936 207.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02438937 207.86671448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02438938 207.86674500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02438939 207.86674500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02438940 207.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02438941 207.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02438942 207.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02438943 207.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02438944 207.86682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02438945 207.86682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02438946 207.86683655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02438947 207.86685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02438948 207.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02438949 207.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02438950 207.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02438951 207.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02438952 207.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02438953 207.86692810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02438954 207.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02438955 207.86695862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02438956 207.86698914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02438957 207.86698914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02438958 207.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02438959 207.86701965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02438960 207.86705017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02438961 207.86705017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02438962 207.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02438963 207.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02438964 207.86709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02438965 207.86709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02438966 207.86712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02438967 207.86712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02438968 207.86714172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02438969 207.86715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02438970 207.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02438971 207.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02438972 207.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02438973 207.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02438974 207.86723328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02438975 207.86723328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02438976 207.86726379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02438977 207.86726379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02438978 207.86729431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02438979 207.86729431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02438980 207.86730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02438981 207.86732483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02438982 207.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02438983 207.86735535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02438984 207.86738586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02438985 207.86738586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02438986 207.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02438987 207.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02438988 207.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02438989 207.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02438990 207.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02438991 207.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02438992 207.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02438993 207.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02438994 207.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02438995 207.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02438996 207.86753845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02438997 207.86753845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02438998 207.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02438999 207.86756897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02439000 207.86759949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02439001 207.86761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02439002 207.86763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02439003 207.86763000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02439004 207.86766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02439005 207.86766052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02439006 207.86769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02439007 207.86769104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02439008 207.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02439009 207.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02439010 207.86773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02439011 207.86775208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02439012 207.86778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02439013 207.86778259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02439014 207.86779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02439015 207.86779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02439016 207.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02439017 207.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02439018 207.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02439019 207.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02439020 207.86787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02439021 207.86787415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02439022 207.86790466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02439023 207.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02439024 207.86793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02439025 207.86793518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02439026 207.86796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02439027 207.86796570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02439028 207.86799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02439029 207.86799622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02439030 207.86802673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02439031 207.86802673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02439032 207.86804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02439033 207.86805725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02439034 207.86808777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02439035 207.86808777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02439036 207.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02439037 207.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02439038 207.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02439039 207.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02439040 207.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02439041 207.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02439042 207.86817932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02439043 207.86819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02439044 207.86822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02439045 207.86822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02439046 207.86825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02439047 207.86825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02439048 207.86827087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02439049 207.86827087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02439050 207.86830139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02439051 207.86830139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02439052 207.86833191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02439053 207.86833191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02439054 207.86834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02439055 207.86836243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02439056 207.86839294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02439057 207.86839294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02439058 207.86842346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02439059 207.86842346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02439060 207.86843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02439061 207.86843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02439062 207.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02439063 207.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02439064 207.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02439065 207.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02439066 207.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02439067 207.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02439068 207.86856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02439069 207.86856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02439070 207.86857605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02439071 207.86857605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02439072 207.86860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02439073 207.86860657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02439074 207.86863708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02439075 207.86865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02439076 207.86866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02439077 207.86866760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02439078 207.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02439079 207.86869812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02439080 207.86872864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02439081 207.86872864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02439082 207.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02439083 207.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02439084 207.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02439085 207.86878967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02439086 207.86880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02439087 207.86882019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02439088 207.86883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02439089 207.86883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02439090 207.86886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02439091 207.86886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02439092 207.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02439093 207.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02439094 207.86891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02439095 207.86891174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02439096 207.86894226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02439097 207.86895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02439098 207.86897278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02439099 207.86897278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02439100 207.86900330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02439101 207.86900330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02439102 207.86903381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02439103 207.86903381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02439104 207.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02439105 207.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02439106 207.86907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02439107 207.86909485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02439108 207.86912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02439109 207.86912537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02439110 207.86914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02439111 207.86914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02439112 207.86917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02439113 207.86917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02439114 207.86920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02439115 207.86920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02439116 207.86921692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02439117 207.86921692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02439118 207.86924744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02439119 207.86926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02439120 207.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02439121 207.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02439122 207.86930847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02439123 207.86930847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02439124 207.86933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02439125 207.86933899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02439126 207.86936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02439127 207.86936951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02439128 207.86938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02439129 207.86940002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02439130 207.86943054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02439131 207.86943054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02439132 207.86944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02439133 207.86944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02439134 207.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02439135 207.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02439136 207.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02439137 207.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02439138 207.86952209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02439139 207.86953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02439140 207.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02439141 207.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02439142 207.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02439143 207.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02439144 207.86961365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02439145 207.86961365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02439146 207.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02439147 207.86964417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02439148 207.86967468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02439149 207.86968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02439150 207.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02439151 207.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02439152 207.86976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02439153 207.86976624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02439154 207.86978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02439155 207.86978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02439156 207.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02439157 207.86982727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02439158 207.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02439159 207.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02439160 207.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02439161 207.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02439162 207.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02439163 207.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02439164 207.86991882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02439165 207.86991882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02439166 207.86994934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02439167 207.86994934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02439168 207.86997986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02439169 207.86999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02439170 207.87001038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02439171 207.87001038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02439172 207.87004089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02439173 207.87004089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02439174 207.87007141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02439175 207.87007141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02439176 207.87008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02439177 207.87010193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02439178 207.87013245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02439179 207.87013245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02439180 207.87016296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02439181 207.87016296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02439182 207.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02439183 207.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02439184 207.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02439185 207.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02439186 207.87023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02439187 207.87023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02439188 207.87025452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02439189 207.87026978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02439190 207.87030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02439191 207.87030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02439192 207.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02439193 207.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02439194 207.87034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02439195 207.87034607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02439196 207.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02439197 207.87037659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02439198 207.87040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02439199 207.87040710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02439200 207.87043762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02439201 207.87043762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02439202 207.87046814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02439203 207.87046814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02439204 207.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02439205 207.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02439206 207.87051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02439207 207.87051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02439208 207.87054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02439209 207.87054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02439210 207.87055969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02439211 207.87057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02439212 207.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02439213 207.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02439214 207.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02439215 207.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02439216 207.87065125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02439217 207.87065125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02439218 207.87068176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02439219 207.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02439220 207.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02439221 207.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02439222 207.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02439223 207.87074280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02439224 207.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02439225 207.87077332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02439226 207.87080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02439227 207.87080383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02439228 207.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02439229 207.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02439230 207.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02439231 207.87086487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02439232 207.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02439233 207.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02439234 207.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02439235 207.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02439236 207.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02439237 207.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02439238 207.87095642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02439239 207.87095642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02439240 207.87098694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02439241 207.87100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02439242 207.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02439243 207.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02439244 207.87104797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02439245 207.87104797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02439246 207.87107849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02439247 207.87107849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02439248 207.87110901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02439249 207.87110901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02439250 207.87112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02439251 207.87113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02439252 207.87117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02439253 207.87117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02439254 207.87120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02439255 207.87120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02439256 207.87121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02439257 207.87121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02439258 207.87124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02439259 207.87124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02439260 207.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02439261 207.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02439262 207.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02439263 207.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02439264 207.87133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02439265 207.87133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02439266 207.87135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02439267 207.87135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02439268 207.87138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02439269 207.87138367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02439270 207.87141418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02439271 207.87142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02439272 207.87144470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02439273 207.87144470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02439274 207.87147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02439275 207.87147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02439276 207.87150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02439277 207.87150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02439278 207.87152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02439279 207.87153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02439280 207.87156677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02439281 207.87156677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02439282 207.87159729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02439283 207.87159729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02439284 207.87161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02439285 207.87161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02439286 207.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02439287 207.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02439288 207.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02439289 207.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02439290 207.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02439291 207.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02439292 207.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02439293 207.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02439294 207.87174988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02439295 207.87174988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02439296 207.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02439297 207.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02439298 207.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02439299 207.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02439300 207.87184143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02439301 207.87184143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02439302 207.87187195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02439303 207.87188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02439304 207.87191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02439305 207.87191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02439306 207.87193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02439307 207.87193298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02439308 207.87196350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02439309 207.87196350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02439310 207.87199402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02439311 207.87199402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02439312 207.87202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02439313 207.87202454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02439314 207.87205505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02439315 207.87205505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02439316 207.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02439317 207.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02439318 207.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02439319 207.87211609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02439320 207.87214661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02439321 207.87214661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02439322 207.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02439323 207.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02439324 207.87219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02439325 207.87219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02439326 207.87222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02439327 207.87222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02439328 207.87223816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02439329 207.87225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02439330 207.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02439331 207.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02439332 207.87231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02439333 207.87231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02439334 207.87232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02439335 207.87232971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02439336 207.87236023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02439337 207.87236023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02439338 207.87239075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02439339 207.87239075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02439340 207.87242126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02439341 207.87242126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02439342 207.87245178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02439343 207.87245178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02439344 207.87246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02439345 207.87246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02439346 207.87249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02439347 207.87249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02439348 207.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02439349 207.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02439350 207.87254333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02439351 207.87255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02439352 207.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02439353 207.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02439354 207.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02439355 207.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02439356 207.87263489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02439357 207.87263489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02439358 207.87266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02439359 207.87266541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02439360 207.87269592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02439361 207.87271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02439362 207.87272644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02439363 207.87272644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02439364 207.87275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02439365 207.87275696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02439366 207.87278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02439367 207.87278748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02439368 207.87280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02439369 207.87280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02439370 207.87283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02439371 207.87284851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02439372 207.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02439373 207.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02439374 207.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02439375 207.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02439376 207.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02439377 207.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02439378 207.87294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02439379 207.87294006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02439380 207.87297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02439381 207.87297058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02439382 207.87300110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02439383 207.87301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02439384 207.87303162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02439385 207.87303162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02439386 207.87306213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02439387 207.87306213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02439388 207.87309265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02439389 207.87309265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02439390 207.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02439391 207.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02439392 207.87313843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02439393 207.87315369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02439394 207.87318420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02439395 207.87318420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02439396 207.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02439397 207.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02439398 207.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02439399 207.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02439400 207.87326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02439401 207.87326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02439402 207.87327576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02439403 207.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02439404 207.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02439405 207.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02439406 207.87333679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02439407 207.87333679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02439408 207.87336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02439409 207.87336731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02439410 207.87339783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02439411 207.87339783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02439412 207.87342834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02439413 207.87342834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02439414 207.87345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02439415 207.87345886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02439416 207.87348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02439417 207.87348938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02439418 207.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02439419 207.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02439420 207.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02439421 207.87355042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02439422 207.87358093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02439423 207.87358093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02439424 207.87359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02439425 207.87359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02439426 207.87362671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02439427 207.87362671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02439428 207.87365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02439429 207.87365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02439430 207.87367249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02439431 207.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02439432 207.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02439433 207.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02439434 207.87373352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02439435 207.87373352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02439436 207.87376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02439437 207.87376404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02439438 207.87379456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02439439 207.87379456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02439440 207.87382507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02439441 207.87382507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02439442 207.87385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02439443 207.87385559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02439444 207.87388611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02439445 207.87388611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02439446 207.87390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02439447 207.87390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02439448 207.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02439449 207.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02439450 207.87396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02439451 207.87397766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02439452 207.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02439453 207.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02439454 207.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02439455 207.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02439456 207.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02439457 207.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02439458 207.87406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02439459 207.87406921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02439460 207.87409973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02439461 207.87411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02439462 207.87413025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02439463 207.87413025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02439464 207.87416077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02439465 207.87416077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02439466 207.87419128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02439467 207.87419128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02439468 207.87422180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02439469 207.87422180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02439470 207.87423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02439471 207.87425232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02439472 207.87428284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02439473 207.87428284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02439474 207.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02439475 207.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02439476 207.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02439477 207.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02439478 207.87435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02439479 207.87435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02439480 207.87437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02439481 207.87437439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02439482 207.87440491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02439483 207.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02439484 207.87445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02439485 207.87445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02439486 207.87446594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02439487 207.87446594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02439488 207.87449646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02439489 207.87449646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02439490 207.87452698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02439491 207.87452698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02439492 207.87454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02439493 207.87455750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02439494 207.87458801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02439495 207.87458801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02439496 207.87461853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02439497 207.87461853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02439498 207.87463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02439499 207.87463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02439500 207.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02439501 207.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02439502 207.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02439503 207.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02439504 207.87471008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02439505 207.87472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02439506 207.87475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02439507 207.87475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02439508 207.87477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02439509 207.87477112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02439510 207.87480164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02439511 207.87480164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02439512 207.87483215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02439513 207.87483215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02439514 207.87484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02439515 207.87486267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02439516 207.87489319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02439517 207.87489319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02439518 207.87492371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02439519 207.87492371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02439520 207.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02439521 207.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02439522 207.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02439523 207.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02439524 207.87500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02439525 207.87500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02439526 207.87501526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02439527 207.87503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02439528 207.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02439529 207.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02439530 207.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02439531 207.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02439532 207.87510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02439533 207.87510681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02439534 207.87513733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02439535 207.87513733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02439536 207.87516785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02439537 207.87516785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02439538 207.87519836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02439539 207.87519836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02439540 207.87522888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02439541 207.87522888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02439542 207.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02439543 207.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02439544 207.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02439545 207.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02439546 207.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02439547 207.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02439548 207.87532043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02439549 207.87533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02439550 207.87536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02439551 207.87536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02439552 207.87539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02439553 207.87539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02439554 207.87541199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02439555 207.87541199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02439556 207.87544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02439557 207.87544250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02439558 207.87547302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02439559 207.87548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02439560 207.87550354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02439561 207.87550354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02439562 207.87553406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02439563 207.87553406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02439564 207.87556458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02439565 207.87556458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02439566 207.87557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02439567 207.87557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02439568 207.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02439569 207.87562561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02439570 207.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02439571 207.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02439572 207.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02439573 207.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02439574 207.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02439575 207.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02439576 207.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02439577 207.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02439578 207.87574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02439579 207.87574768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02439580 207.87577820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02439581 207.87579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02439582 207.87580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02439583 207.87580872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02439584 207.87583923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02439585 207.87583923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02439586 207.87586975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02439587 207.87586975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02439588 207.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02439589 207.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02439590 207.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02439591 207.87593079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02439592 207.87594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02439593 207.87596130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02439594 207.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02439595 207.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02439596 207.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02439597 207.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02439598 207.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02439599 207.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02439600 207.87605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02439601 207.87605286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02439602 207.87608337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02439603 207.87609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02439604 207.87612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02439605 207.87612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02439606 207.87614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02439607 207.87614441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02439608 207.87617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02439609 207.87617493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02439610 207.87620544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02439611 207.87620544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02439612 207.87622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02439613 207.87623596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02439614 207.87626648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02439615 207.87626648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02439616 207.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02439617 207.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02439618 207.87631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02439619 207.87631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02439620 207.87634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02439621 207.87634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02439622 207.87635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02439623 207.87635803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02439624 207.87638855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02439625 207.87640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02439626 207.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02439627 207.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02439628 207.87644958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02439629 207.87644958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02439630 207.87648010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02439631 207.87648010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02439632 207.87651062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02439633 207.87651062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02439634 207.87652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02439635 207.87654114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02439636 207.87657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02439637 207.87657166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02439638 207.87660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02439639 207.87660217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02439640 207.87661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02439641 207.87661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02439642 207.87664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02439643 207.87664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02439644 207.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02439645 207.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02439646 207.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02439647 207.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02439648 207.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02439649 207.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02439650 207.87675476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02439651 207.87675476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02439652 207.87678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02439653 207.87678528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02439654 207.87681580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02439655 207.87683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02439656 207.87684631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02439657 207.87684631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02439658 207.87687683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02439659 207.87687683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02439660 207.87690735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02439661 207.87690735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02439662 207.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02439663 207.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02439664 207.87695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02439665 207.87696838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02439666 207.87699890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02439667 207.87699890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02439668 207.87701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02439669 207.87701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02439670 207.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02439671 207.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02439672 207.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02439673 207.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02439674 207.87709045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02439675 207.87709045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02439676 207.87712097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02439677 207.87713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02439678 207.87715149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02439679 207.87715149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02439680 207.87718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02439681 207.87718201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02439682 207.87721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02439683 207.87721252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02439684 207.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02439685 207.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02439686 207.87725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02439687 207.87727356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02439688 207.87728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02439689 207.87730408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02439690 207.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02439691 207.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02439692 207.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02439693 207.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02439694 207.87738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02439695 207.87738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02439696 207.87739563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02439697 207.87739563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02439698 207.87742615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02439699 207.87744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02439700 207.87747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02439701 207.87747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02439702 207.87748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02439703 207.87748718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02439704 207.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02439705 207.87751770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02439706 207.87754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02439707 207.87754822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02439708 207.87756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02439709 207.87757874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02439710 207.87760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02439711 207.87760925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02439712 207.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02439713 207.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02439714 207.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02439715 207.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02439716 207.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02439717 207.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02439718 207.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02439719 207.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02439720 207.87773132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02439721 207.87774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02439722 207.87777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02439723 207.87777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02439724 207.87779236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02439725 207.87779236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02439726 207.87782288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02439727 207.87782288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02439728 207.87785339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02439729 207.87785339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02439730 207.87786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02439731 207.87788391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02439732 207.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02439733 207.87791443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02439734 207.87794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02439735 207.87794495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02439736 207.87796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02439737 207.87796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02439738 207.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02439739 207.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02439740 207.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02439741 207.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02439742 207.87803650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02439743 207.87805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02439744 207.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02439745 207.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02439746 207.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02439747 207.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02439748 207.87812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02439749 207.87812805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02439750 207.87815857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02439751 207.87815857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02439752 207.87818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02439753 207.87818909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02439754 207.87821960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02439755 207.87821960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02439756 207.87825012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02439757 207.87825012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02439758 207.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02439759 207.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02439760 207.87829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02439761 207.87829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02439762 207.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02439763 207.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02439764 207.87834167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02439765 207.87835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02439766 207.87838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02439767 207.87838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02439768 207.87841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02439769 207.87841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02439770 207.87843323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02439771 207.87843323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02439772 207.87846375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02439773 207.87846375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02439774 207.87849426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02439775 207.87850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02439776 207.87852478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02439777 207.87852478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02439778 207.87855530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02439779 207.87855530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02439780 207.87858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02439781 207.87858582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02439782 207.87860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02439783 207.87860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02439784 207.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02439785 207.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02439786 207.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02439787 207.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02439788 207.87869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02439789 207.87869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02439790 207.87872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02439791 207.87872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02439792 207.87873840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02439793 207.87873840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02439794 207.87876892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02439795 207.87876892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02439796 207.87879944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02439797 207.87881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02439798 207.87882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02439799 207.87882996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02439800 207.87886047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02439801 207.87886047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02439802 207.87889099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02439803 207.87889099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02439804 207.87890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02439805 207.87890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02439806 207.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02439807 207.87895203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02439808 207.87898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02439809 207.87898254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02439810 207.87899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02439811 207.87899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02439812 207.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02439813 207.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02439814 207.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02439815 207.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02439816 207.87907410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02439817 207.87907410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02439818 207.87910461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02439819 207.87911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02439820 207.87913513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02439821 207.87913513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02439822 207.87916565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02439823 207.87916565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02439824 207.87919617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02439825 207.87919617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02439826 207.87922668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02439827 207.87922668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02439828 207.87924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02439829 207.87925720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02439830 207.87928772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02439831 207.87928772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02439832 207.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02439833 207.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02439834 207.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02439835 207.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02439836 207.87936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02439837 207.87936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02439838 207.87937927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02439839 207.87937927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02439840 207.87940979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02439841 207.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02439842 207.87945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02439843 207.87945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02439844 207.87947083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02439845 207.87947083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02439846 207.87950134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02439847 207.87950134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02439848 207.87953186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02439849 207.87953186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02439850 207.87954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02439851 207.87956238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02439852 207.87959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02439853 207.87959290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02439854 207.87962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02439855 207.87962341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02439856 207.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02439857 207.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02439858 207.87966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02439859 207.87966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02439860 207.87969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02439861 207.87969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02439862 207.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02439863 207.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02439864 207.87976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02439865 207.87976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02439866 207.87977600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02439867 207.87979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02439868 207.87982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02439869 207.87982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02439870 207.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02439871 207.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02439872 207.87986755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02439873 207.87986755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02439874 207.87989807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02439875 207.87989807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02439876 207.87992859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02439877 207.87992859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02439878 207.87995911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02439879 207.87995911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02439880 207.87998962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02439881 207.87998962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02439882 207.88002014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02439883 207.88002014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02439884 207.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02439885 207.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02439886 207.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02439887 207.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02439888 207.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02439889 207.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02439890 207.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02439891 207.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02439892 207.88015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02439893 207.88015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02439894 207.88017273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02439895 207.88017273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02439896 207.88020325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02439897 207.88020325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02439898 207.88023376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02439899 207.88024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02439900 207.88026428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02439901 207.88026428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02439902 207.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02439903 207.88029480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02439904 207.88032532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02439905 207.88032532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02439906 207.88034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02439907 207.88034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02439908 207.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02439909 207.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02439910 207.88040161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02439911 207.88041687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02439912 207.88043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02439913 207.88043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02439914 207.88046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02439915 207.88046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02439916 207.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02439917 207.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02439918 207.88050842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02439919 207.88050842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02439920 207.88053894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02439921 207.88055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02439922 207.88056946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02439923 207.88056946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02439924 207.88059998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02439925 207.88059998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02439926 207.88063049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02439927 207.88063049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02439928 207.88064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02439929 207.88064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02439930 207.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02439931 207.88069153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02439932 207.88072205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02439933 207.88072205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02439934 207.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02439935 207.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02439936 207.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02439937 207.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02439938 207.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02439939 207.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02439940 207.88081360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02439941 207.88082886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02439942 207.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02439943 207.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02439944 207.88088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02439945 207.88088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02439946 207.88090515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02439947 207.88090515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02439948 207.88093567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02439949 207.88093567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02439950 207.88096619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02439951 207.88096619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02439952 207.88098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02439953 207.88099670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02439954 207.88102722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02439955 207.88102722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02439956 207.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02439957 207.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02439958 207.88107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02439959 207.88107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02439960 207.88110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02439961 207.88110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02439962 207.88111877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02439963 207.88113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02439964 207.88116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02439965 207.88116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02439966 207.88119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02439967 207.88119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02439968 207.88121033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02439969 207.88121033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02439970 207.88124084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02439971 207.88124084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02439972 207.88127136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02439973 207.88128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02439974 207.88128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02439975 207.88130188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02439976 207.88133240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02439977 207.88133240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02439978 207.88136292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02439979 207.88136292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02439980 207.88137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02439981 207.88137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02439982 207.88140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02439983 207.88140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02439984 207.88143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02439985 207.88143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02439986 207.88146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02439987 207.88146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02439988 207.88150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02439989 207.88150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02439990 207.88153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02439991 207.88153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02439992 207.88154602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02439993 207.88154602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02439994 207.88157654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02439995 207.88159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02439996 207.88160706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02439997 207.88160706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02439998 207.88163757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02439999 207.88163757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02440000 207.88166809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02440001 207.88166809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02440002 207.88168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02440003 207.88168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02440004 207.88171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02440005 207.88171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02440006 207.88174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02440007 207.88175964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02440008 207.88177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02440009 207.88177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02440010 207.88180542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02440011 207.88180542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02440012 207.88183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02440013 207.88183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02440014 207.88185120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02440015 207.88185120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02440016 207.88188171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02440017 207.88189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02440018 207.88192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02440019 207.88192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02440020 207.88194275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02440021 207.88194275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02440022 207.88197327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02440023 207.88197327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02440024 207.88200378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02440025 207.88200378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02440026 207.88201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02440027 207.88201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02440028 207.88204956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02440029 207.88206482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02440030 207.88208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02440031 207.88208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02440032 207.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02440033 207.88211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02440034 207.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02440035 207.88214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02440036 207.88215637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02440037 207.88215637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02440038 207.88218689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02440039 207.88220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02440040 207.88223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02440041 207.88223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02440042 207.88224792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02440043 207.88224792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02440044 207.88227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02440045 207.88227844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02440046 207.88230896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02440047 207.88230896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02440048 207.88232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02440049 207.88232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02440050 207.88235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02440051 207.88237000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02440052 207.88240051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02440053 207.88240051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02440054 207.88241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02440055 207.88241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02440056 207.88244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02440057 207.88244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02440058 207.88247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02440059 207.88247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02440060 207.88249207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02440061 207.88250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02440062 207.88252258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02440063 207.88253784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02440064 207.88255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02440065 207.88255310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02440066 207.88258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02440067 207.88258362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02440068 207.88261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02440069 207.88261414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02440070 207.88262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02440071 207.88262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02440072 207.88265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02440073 207.88267517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02440074 207.88270569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02440075 207.88270569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02440076 207.88272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02440077 207.88272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02440078 207.88275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02440079 207.88275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02440080 207.88278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02440081 207.88278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02440082 207.88279724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02440083 207.88281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02440084 207.88284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02440085 207.88284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02440086 207.88287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02440087 207.88287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02440088 207.88288879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02440089 207.88288879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02440090 207.88291931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02440091 207.88291931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02440092 207.88294983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02440093 207.88294983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02440094 207.88296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02440095 207.88298035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02440096 207.88301086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02440097 207.88301086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02440098 207.88302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02440099 207.88302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02440100 207.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02440101 207.88305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02440102 207.88308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02440103 207.88308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02440104 207.88311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02440105 207.88311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02440106 207.88314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02440107 207.88314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02440108 207.88317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02440109 207.88317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02440110 207.88319397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02440111 207.88319397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02440112 207.88322449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02440113 207.88322449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02440114 207.88325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02440115 207.88325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02440116 207.88327026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02440117 207.88328552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02440118 207.88331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02440119 207.88331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02440120 207.88334656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02440121 207.88334656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02440122 207.88336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02440123 207.88336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02440124 207.88339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02440125 207.88339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02440126 207.88342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02440127 207.88342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02440128 207.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02440129 207.88345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02440130 207.88348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02440131 207.88348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02440132 207.88351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02440133 207.88351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02440134 207.88352966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02440135 207.88352966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02440136 207.88356018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02440137 207.88357544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02440138 207.88359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02440139 207.88359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02440140 207.88362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02440141 207.88362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02440142 207.88365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02440143 207.88365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02440144 207.88366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02440145 207.88366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02440146 207.88369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02440147 207.88369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02440148 207.88372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02440149 207.88374329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02440150 207.88375854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02440151 207.88375854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02440152 207.88378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02440153 207.88378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02440154 207.88381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02440155 207.88381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02440156 207.88383484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02440157 207.88383484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02440158 207.88386536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02440159 207.88388062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02440160 207.88391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02440161 207.88391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02440162 207.88392639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02440163 207.88392639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02440164 207.88395691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02440165 207.88395691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02440166 207.88398743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02440167 207.88398743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02440168 207.88400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02440169 207.88401794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02440170 207.88404846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02440171 207.88404846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02440172 207.88406372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02440173 207.88407898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02440174 207.88410950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02440175 207.88412476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02440176 207.88414001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02440177 207.88414001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02440178 207.88417053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02440179 207.88417053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02440180 207.88420105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02440181 207.88420105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02440182 207.88423157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02440183 207.88423157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02440184 207.88424683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02440185 207.88426208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02440186 207.88429260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02440187 207.88429260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02440188 207.88430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02440189 207.88430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02440190 207.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02440191 207.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02440192 207.88436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02440193 207.88436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02440194 207.88438416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02440195 207.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02440196 207.88442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02440197 207.88442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02440198 207.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02440199 207.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02440200 207.88447571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02440201 207.88447571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02440202 207.88450623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02440203 207.88450623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02440204 207.88453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02440205 207.88453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02440206 207.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02440207 207.88456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02440208 207.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02440209 207.88459778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02440210 207.88462830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02440211 207.88462830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02440212 207.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02440213 207.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02440214 207.88467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02440215 207.88468933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02440216 207.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02440217 207.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02440218 207.88473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02440219 207.88473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02440220 207.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02440221 207.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02440222 207.88478088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02440223 207.88478088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02440224 207.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02440225 207.88481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -02442512 207.91700745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -02442513 207.91700745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -02442514 207.91703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -02442515 207.91703796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -02442516 207.91706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -02442517 207.91706848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -02442518 207.91709900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -02442519 207.91709900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -02442520 207.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -02442521 207.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -02442522 207.91714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -02442523 207.91714478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -02442524 207.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -02442525 207.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -02442526 207.91719055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -02442527 207.91720581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -02442528 207.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -02442529 207.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -02442530 207.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -02442531 207.91726685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -02442532 207.91728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -02442533 207.91728210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -02442534 207.91731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -02442535 207.91731262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -02442536 207.91734314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -02442537 207.91734314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -02442538 207.91737366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -02442539 207.91737366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -02442540 207.91740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -02442541 207.91740417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -02442542 207.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -02442543 207.91743469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -02442544 207.91744995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -02442545 207.91744995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -02442546 207.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -02442547 207.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -02442548 207.91751099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -02442549 207.91751099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -02442550 207.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -02442551 207.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -02442552 207.91757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -02442553 207.91757202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -02442554 207.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -02442555 207.91758728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -02451494 208.04431152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a608 -02451495 208.04432678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a608 -02451496 208.04435730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a618 -02451497 208.04435730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a618 -02451498 208.04437256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a628 -02451499 208.04437256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a628 -02451500 208.04440308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a638 -02451501 208.04440308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a638 -02451502 208.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a648 -02451503 208.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a648 -02451504 208.04444885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -02451505 208.04446411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a658 -02451506 208.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -02451507 208.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a668 -02451508 208.04452515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -02451509 208.04452515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a678 -02451510 208.04454041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -02451511 208.04454041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a688 -02451512 208.04457092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -02451513 208.04457092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a698 -02451514 208.04463196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -02451515 208.04463196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a8 -02451516 208.04466248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -02451517 208.04466248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b8 -02451518 208.04467773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -02451519 208.04467773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c8 -02451520 208.04470825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -02451521 208.04470825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d8 -02451522 208.04473877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -02451523 208.04475403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e8 -02451524 208.04476929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -02451525 208.04476929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f8 -02451526 208.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -02451527 208.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a708 -02451528 208.04483032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -02451529 208.04483032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a718 -02451530 208.04484558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a728 -02451531 208.04484558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a728 -02451532 208.04487610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a738 -02451533 208.04489136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a738 -02451534 208.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a748 -02451535 208.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a748 -02451536 208.04493713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a758 -02451537 208.04493713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a758 -02461228 208.18098450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -02461229 208.18098450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -02461230 208.18101501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -02461231 208.18101501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -02461232 208.18104553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -02461233 208.18104553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -02461234 208.18107605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -02461235 208.18107605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -02461236 208.18109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -02461237 208.18110657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -02461238 208.18113708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -02461239 208.18113708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -02461240 208.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -02461241 208.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -02461242 208.18118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -02461243 208.18118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -02461244 208.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -02461245 208.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -02461246 208.18122864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -02461247 208.18124390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -02461248 208.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -02461249 208.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -02461250 208.18130493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -02461251 208.18130493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -02461252 208.18132019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -02461253 208.18132019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -02461254 208.18135071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -02461255 208.18135071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -02461256 208.18138123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -02461257 208.18138123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -02461258 208.18139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -02461259 208.18141174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -02461260 208.18144226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -02461261 208.18144226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -02461262 208.18147278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -02461263 208.18147278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -02461264 208.18148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -02461265 208.18148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -02461266 208.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -02461267 208.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -02461268 208.18154907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -02461269 208.18154907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -02461270 208.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -02461271 208.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -02478022 208.41673279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -02478023 208.41673279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -02478024 208.41674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -02478025 208.41674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -02478026 208.41677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -02478027 208.41677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -02478028 208.41680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -02478029 208.41682434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -02478030 208.41683960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -02478031 208.41683960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -02478032 208.41687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -02478033 208.41687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -02478034 208.41690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -02478035 208.41690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -02478036 208.41691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -02478037 208.41691589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -02478038 208.41694641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -02478039 208.41694641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -02478040 208.41697693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -02478041 208.41699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -02478042 208.41700745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -02478043 208.41700745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -02478044 208.41703796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -02478045 208.41703796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -02478046 208.41706848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -02478047 208.41706848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -02478048 208.41708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -02478049 208.41708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -02478050 208.41711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -02478051 208.41712952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -02478052 208.41714478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -02478053 208.41714478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -02478054 208.41717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -02478055 208.41717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -02478056 208.41720581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -02478057 208.41720581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -02478058 208.41723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -02478059 208.41723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -02478060 208.41725159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -02478061 208.41726685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -02478062 208.41729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -02478063 208.41729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -02478064 208.41731262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -02478065 208.41731262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -02480396 208.63702393 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02480397 208.65838623 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480398 208.65840149 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480399 209.01982117 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480400 209.01988220 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480401 209.01989746 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480402 209.01989746 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02480403 209.02003479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480404 209.02003479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480405 209.02008057 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480406 209.02014160 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480407 209.53245544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -02480408 210.66087341 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02480409 210.67999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480410 210.67999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480411 211.52668762 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480412 211.52670288 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480413 211.52673340 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02480414 211.52674866 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02480415 211.52685547 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480416 211.52685547 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480417 211.52693176 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02480418 211.52694702 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02480419 211.80290222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02480420 211.80291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02480421 211.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02480422 211.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02480423 211.80296326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02480424 211.80296326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02480425 211.80300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02480426 211.80300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02480427 211.80303955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02480428 211.80303955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02480429 211.80307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02480430 211.80307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02480431 211.80310059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02480432 211.80310059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02480433 211.80313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02480434 211.80313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02480435 211.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02480436 211.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02480437 211.80320740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02480438 211.80320740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02480439 211.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02480440 211.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02480441 211.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02480442 211.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02480443 211.80328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02480444 211.80328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02480445 211.80329895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02480446 211.80331421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02480447 211.80334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02480448 211.80334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02480449 211.80335999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02480450 211.80335999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02480451 211.80339050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02480452 211.80339050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02480453 211.80343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02480454 211.80343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02480455 211.80345154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02480456 211.80345154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02480457 211.80348206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02480458 211.80348206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02480459 211.80351257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02480460 211.80351257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02480461 211.80352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02480462 211.80354309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02480463 211.80357361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02480464 211.80357361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02480465 211.80360413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02480466 211.80360413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02480467 211.80363464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02480468 211.80363464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02480469 211.80366516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02480470 211.80366516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02480471 211.80368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02480472 211.80369568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02480473 211.80372620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02480474 211.80372620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02480475 211.80375671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02480476 211.80375671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02480477 211.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02480478 211.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02480479 211.80381775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02480480 211.80381775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02480481 211.80384827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02480482 211.80384827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02480483 211.80389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02480484 211.80389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02480485 211.80390930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02480486 211.80390930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02480487 211.80393982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02480488 211.80393982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02480489 211.80398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02480490 211.80398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02480491 211.80400085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02480492 211.80400085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02480493 211.80403137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02480494 211.80404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02480495 211.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02480496 211.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02480497 211.80409241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02480498 211.80409241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02480499 211.80412292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02480500 211.80412292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02480501 211.80415344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02480502 211.80415344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02480503 211.80418396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02480504 211.80418396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02480505 211.80421448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02480506 211.80421448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02480507 211.80422974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02480508 211.80422974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02480509 211.80427551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02480510 211.80427551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02480511 211.80430603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02480512 211.80430603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02480513 211.80432129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02480514 211.80433655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02480515 211.80436707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02480516 211.80436707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02480517 211.80439758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02480518 211.80439758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02480519 211.80442810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02480520 211.80442810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02480521 211.80445862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02480522 211.80445862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02480523 211.80447388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02480524 211.80447388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02480525 211.80450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02480526 211.80450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02480527 211.80453491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02480528 211.80455017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02480529 211.80456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02480530 211.80456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02480531 211.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02480532 211.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02480533 211.80462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02480534 211.80462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02480535 211.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02480536 211.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02480537 211.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02480538 211.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02480539 211.80471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02480540 211.80471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02480541 211.80473328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02480542 211.80473328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02480543 211.80479431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02480544 211.80479431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02480545 211.80484009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02480546 211.80484009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02480547 211.80487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02480548 211.80487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02480549 211.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02480550 211.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02480551 211.80493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02480552 211.80493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -02480553 211.80494690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02480554 211.80496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -02480555 211.80499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02480556 211.80499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -02480557 211.80502319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02480558 211.80502319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -02480559 211.80503845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02480560 211.80503845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -02480561 211.80506897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02480562 211.80508423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -02480563 211.80511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02480564 211.80511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -02480565 211.80513000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02480566 211.80513000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -02480567 211.80516052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02480568 211.80516052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -02480569 211.80519104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02480570 211.80519104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -02480571 211.80520630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02480572 211.80522156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -02480573 211.80525208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02480574 211.80525208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -02480575 211.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02480576 211.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -02480577 211.80529785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02480578 211.80529785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -02480579 211.80532837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02480580 211.80534363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -02480581 211.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02480582 211.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -02480583 211.80538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02480584 211.80538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -02480585 211.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02480586 211.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -02480587 211.80543518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02480588 211.80545044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -02480589 211.80548096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02480590 211.80548096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -02480591 211.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02480592 211.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -02480593 211.80554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02480594 211.80554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -02480595 211.80557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02480596 211.80557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -02480597 211.80558777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02480598 211.80558777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -02480599 211.80561829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02480600 211.80563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -02480601 211.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02480602 211.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -02480603 211.80567932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02480604 211.80567932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -02480605 211.80570984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02480606 211.80570984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -02480607 211.80574036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02480608 211.80574036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -02480609 211.80577087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02480610 211.80577087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -02480611 211.80580139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02480612 211.80580139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -02480613 211.80584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02480614 211.80584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -02480615 211.80590820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02480616 211.80590820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -02480617 211.80592346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02480618 211.80592346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -02480619 211.80595398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02480620 211.80596924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -02480621 211.80598450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02480622 211.80598450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -02480623 211.80601501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02480624 211.80601501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -02480625 211.80604553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02480626 211.80604553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -02480627 211.80607605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02480628 211.80607605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -02480629 211.80610657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02480630 211.80610657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -02480631 211.80613708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02480632 211.80613708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -02480633 211.80615234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02480634 211.80616760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -02480635 211.80619812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02480636 211.80619812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -02480637 211.80621338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02480638 211.80621338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -02480639 211.80624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02480640 211.80625916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -02480641 211.80628967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02480642 211.80628967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -02480643 211.80630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02480644 211.80630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -02480645 211.80633545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02480646 211.80633545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -02480647 211.80636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02480648 211.80638123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -02480649 211.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02480650 211.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -02480651 211.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02480652 211.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -02480653 211.80645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02480654 211.80645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -02480655 211.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02480656 211.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -02480657 211.80651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02480658 211.80651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -02480659 211.80653381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02480660 211.80654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -02480661 211.80657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02480662 211.80657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -02480663 211.80661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02480664 211.80661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -02480665 211.80662537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02480666 211.80664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -02480667 211.80667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02480668 211.80667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -02480669 211.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02480670 211.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -02480671 211.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02480672 211.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -02480673 211.80676270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02480674 211.80676270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -02480675 211.80677795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02480676 211.80679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -02480677 211.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02480678 211.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -02480679 211.80686951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02480680 211.80686951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -02480681 211.80690002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02480682 211.80691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -02480683 211.80693054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02480684 211.80693054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -02480685 211.80696106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02480686 211.80696106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -02480687 211.80699158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02480688 211.80699158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -02480689 211.80702209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02480690 211.80702209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -02480691 211.80705261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02480692 211.80705261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -02480693 211.80708313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02480694 211.80709839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -02480695 211.80711365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02480696 211.80711365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -02480697 211.80714417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02480698 211.80714417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -02480699 211.80717468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02480700 211.80717468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -02480701 211.80718994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02480702 211.80718994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -02480703 211.80723572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02480704 211.80723572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -02480705 211.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02480706 211.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -02480707 211.80728149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02480708 211.80729675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -02480709 211.80732727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02480710 211.80732727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -02480711 211.80734253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02480712 211.80734253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -02480713 211.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02480714 211.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -02480715 211.80740356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02480716 211.80741882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -02480717 211.80743408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02480718 211.80743408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -02480719 211.80746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02480720 211.80746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -02480721 211.80749512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02480722 211.80749512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -02480723 211.80751038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02480724 211.80752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -02480725 211.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02480726 211.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -02480727 211.80757141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02480728 211.80757141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -02480729 211.80760193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02480730 211.80760193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -02480731 211.80763245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02480732 211.80764771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -02480733 211.80766296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02480734 211.80766296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -02480735 211.80769348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02480736 211.80769348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -02480737 211.80772400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02480738 211.80772400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -02480739 211.80773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02480740 211.80775452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -02480741 211.80778503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02480742 211.80778503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -02480743 211.80781555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02480744 211.80781555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -02480745 211.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02480746 211.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -02480747 211.80789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02480748 211.80789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -02480749 211.80790710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02480750 211.80792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -02480751 211.80795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02480752 211.80795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -02480753 211.80796814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02480754 211.80796814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -02480755 211.80799866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02480756 211.80801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -02480757 211.80804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02480758 211.80804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -02480759 211.80805969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02480760 211.80805969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -02480761 211.80809021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02480762 211.80810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -02480763 211.80812073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02480764 211.80812073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -02480765 211.80815125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02480766 211.80815125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -02480767 211.80818176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02480768 211.80818176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -02480769 211.80821228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02480770 211.80821228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -02480771 211.80824280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02480772 211.80824280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -02480773 211.80827332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02480774 211.80827332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -02480775 211.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02480776 211.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -02480777 211.80833435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02480778 211.80833435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -02480779 211.80836487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02480780 211.80836487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -02480781 211.80838013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02480782 211.80839539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -02480783 211.80842590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02480784 211.80842590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -02480785 211.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02480786 211.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -02480787 211.80847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02480788 211.80848694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -02480789 211.80851746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02480790 211.80851746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -02480791 211.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02480792 211.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -02480793 211.80856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02480794 211.80856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -02480795 211.80859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02480796 211.80860901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -02480797 211.80862427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02480798 211.80862427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -02480799 211.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02480800 211.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -02480801 211.80868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02480802 211.80868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -02480803 211.80870056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02480804 211.80871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -02480805 211.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02480806 211.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -02480807 211.80876160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02480808 211.80876160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -02480809 211.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02480810 211.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -02480811 211.80886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02480812 211.80886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -02480813 211.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02480814 211.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -02480815 211.80892944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02480816 211.80892944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -02480817 211.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02480818 211.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -02480819 211.80899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02480820 211.80899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -02480821 211.80900574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02480822 211.80902100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -02480823 211.80905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02480824 211.80905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -02480825 211.80908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02480826 211.80908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -02480827 211.80909729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02480828 211.80909729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -02480829 211.80914307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02480830 211.80914307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -02480831 211.80915833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02480832 211.80915833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -02480833 211.80918884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02480834 211.80918884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -02480835 211.80921936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02480836 211.80923462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -02480837 211.80924988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02480838 211.80924988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -02480839 211.80928040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02480840 211.80928040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -02480841 211.80931091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02480842 211.80931091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -02480843 211.80932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02480844 211.80934143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -02480845 211.80937195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02480846 211.80937195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -02480847 211.80940247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02480848 211.80940247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -02480849 211.80941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02480850 211.80941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -02480851 211.80944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02480852 211.80946350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -02480853 211.80947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02480854 211.80947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -02480855 211.80950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02480856 211.80950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -02480857 211.80953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02480858 211.80953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -02480859 211.80955505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02480860 211.80957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -02480861 211.80960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02480862 211.80960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -02480863 211.80963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02480864 211.80963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -02480865 211.80964661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02480866 211.80966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -02480867 211.80969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02480868 211.80969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -02480869 211.80970764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02480870 211.80970764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -02480871 211.80973816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02480872 211.80973816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -02480873 211.80976868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02480874 211.80978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -02480875 211.80979919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02480876 211.80979919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -02480877 211.80986023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02480878 211.80986023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -02480879 211.80989075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02480880 211.80989075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -02480881 211.80995178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02480882 211.80995178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -02480883 211.80998230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02480884 211.80998230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -02480885 211.81001282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02480886 211.81001282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -02480887 211.81002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02480888 211.81004333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -02480889 211.81007385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02480890 211.81007385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -02480891 211.81010437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02480892 211.81010437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -02480893 211.81011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02480894 211.81011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -02480895 211.81015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02480896 211.81016541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -02480897 211.81019592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02480898 211.81019592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -02480899 211.81021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02480900 211.81021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -02480901 211.81024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02480902 211.81025696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -02480903 211.81027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02480904 211.81027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -02480905 211.81030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02480906 211.81030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -02480907 211.81033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02480908 211.81033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -02480909 211.81034851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02480910 211.81036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -02480911 211.81039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02480912 211.81039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -02480913 211.81042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02480914 211.81042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -02480915 211.81044006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02480916 211.81044006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -02480917 211.81047058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02480918 211.81048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -02480919 211.81051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02480920 211.81051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -02480921 211.81053162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02480922 211.81053162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -02480923 211.81056213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02480924 211.81056213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -02480925 211.81059265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02480926 211.81059265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -02480927 211.81062317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02480928 211.81062317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -02480929 211.81065369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02480930 211.81065369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -02480931 211.81066895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02480932 211.81068420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -02480933 211.81071472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02480934 211.81071472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -02480935 211.81074524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02480936 211.81074524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -02480937 211.81076050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02480938 211.81076050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -02480939 211.81080627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02480940 211.81080627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -02480941 211.81083679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02480942 211.81085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -02480943 211.81088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02480944 211.81088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -02480945 211.81091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02480946 211.81091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -02480947 211.81094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02480948 211.81094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -02480949 211.81097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02480950 211.81097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -02480951 211.81098938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02480952 211.81098938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -02480953 211.81103516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02480954 211.81103516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -02480955 211.81106567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02480956 211.81106567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -02480957 211.81108093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02480958 211.81109619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -02480959 211.81112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02480960 211.81112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -02480961 211.81114197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02480962 211.81114197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -02480963 211.81117249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02480964 211.81118774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -02480965 211.81121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02480966 211.81121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -02480967 211.81123352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02480968 211.81123352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -02480969 211.81126404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02480970 211.81126404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -02480971 211.81130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02480972 211.81130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -02480973 211.81132507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02480974 211.81132507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -02480975 211.81135559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02480976 211.81137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -02480977 211.81138611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02480978 211.81138611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -02480979 211.81141663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02480980 211.81141663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -02480981 211.81144714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02480982 211.81144714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -02480983 211.81146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02480984 211.81147766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -02480985 211.81150818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02480986 211.81150818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -02480987 211.81153870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02480988 211.81153870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -02480989 211.81155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02480990 211.81155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -02480991 211.81158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02480992 211.81158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -02480993 211.81161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02480994 211.81161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -02480995 211.81164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02480996 211.81164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -02480997 211.81167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02480998 211.81169128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -02480999 211.81170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02481000 211.81170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -02481001 211.81173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02481002 211.81173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -02481003 211.81176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02481004 211.81178284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -02481005 211.81179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02481006 211.81179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -02481007 211.81184387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02481008 211.81184387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -02481009 211.81187439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02481010 211.81187439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -02481011 211.81192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02481012 211.81193542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -02481013 211.81195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02481014 211.81195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -02481015 211.81198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02481016 211.81198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -02481017 211.81201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02481018 211.81201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -02481019 211.81204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02481020 211.81204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -02481021 211.81207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02481022 211.81207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -02481023 211.81210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02481024 211.81210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -02481025 211.81211853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02481026 211.81211853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -02481027 211.81214905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02481028 211.81216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -02481029 211.81217957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02481030 211.81217957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -02481031 211.81221008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02481032 211.81221008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -02481033 211.81225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02481034 211.81225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -02481035 211.81227112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02481036 211.81227112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -02481037 211.81230164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02481038 211.81230164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -02481039 211.81233215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02481040 211.81233215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -02481041 211.81236267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02481042 211.81236267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -02481043 211.81239319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02481044 211.81239319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -02481045 211.81240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02481046 211.81240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -02481047 211.81245422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02481048 211.81245422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -02481049 211.81248474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02481050 211.81248474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -02481051 211.81250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02481052 211.81250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -02481053 211.81253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02481054 211.81254578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -02481055 211.81257629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02481056 211.81257629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -02481057 211.81259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02481058 211.81259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -02481059 211.81262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02481060 211.81262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -02481061 211.81265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02481062 211.81265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -02481063 211.81268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02481064 211.81268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -02481065 211.81271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02481066 211.81271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -02481067 211.81272888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02481068 211.81274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -02481069 211.81277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02481070 211.81277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -02481071 211.81280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02481072 211.81280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -02481073 211.81283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02481074 211.81289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -02481075 211.81291199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02481076 211.81291199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -02481077 211.81294250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02481078 211.81294250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -02481079 211.81297302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02481080 211.81297302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -02481081 211.81300354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02481082 211.81300354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -02481083 211.81303406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02481084 211.81303406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -02481085 211.81306458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02481086 211.81306458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -02481087 211.81309509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02481088 211.81309509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -02481089 211.81312561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02481090 211.81312561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -02481091 211.81314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02481092 211.81315613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -02481093 211.81318665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02481094 211.81318665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -02481095 211.81321716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02481096 211.81321716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -02481097 211.81323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02481098 211.81323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -02481099 211.81326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02481100 211.81326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -02481101 211.81329346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02481102 211.81329346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -02481103 211.81332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02481104 211.81332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -02481105 211.81335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02481106 211.81335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -02481107 211.81336975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02481108 211.81336975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -02481109 211.81341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02481110 211.81341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -02481111 211.81344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02481112 211.81344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -02481113 211.81346130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02481114 211.81346130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -02481115 211.81349182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02481116 211.81350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -02481117 211.81352234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02481118 211.81352234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -02481119 211.81355286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02481120 211.81355286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -02481121 211.81358337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02481122 211.81358337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -02481123 211.81361389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02481124 211.81361389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -02481125 211.81364441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02481126 211.81364441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -02481127 211.81367493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02481128 211.81367493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -02481129 211.81369019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02481130 211.81370544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -02481131 211.81373596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02481132 211.81373596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -02481133 211.81376648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02481134 211.81376648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -02481135 211.81378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02481136 211.81378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -02481137 211.81382751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02481138 211.81382751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -02481139 211.81385803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02481140 211.81385803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -02481141 211.81390381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02481142 211.81391907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -02481143 211.81393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02481144 211.81394958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -02481145 211.81398010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02481146 211.81399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -02481147 211.81402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02481148 211.81404114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -02481149 211.81407166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02481150 211.81407166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -02481151 211.81408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02481152 211.81410217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -02481153 211.81413269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02481154 211.81413269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -02481155 211.81416321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02481156 211.81416321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -02481157 211.81417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02481158 211.81417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -02481159 211.81420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02481160 211.81420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -02481161 211.81423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02481162 211.81423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -02481163 211.81427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02481164 211.81427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -02481165 211.81430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02481166 211.81430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -02481167 211.81431580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02481168 211.81433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -02481169 211.81436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02481170 211.81436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -02481171 211.81439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02481172 211.81439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -02481173 211.81440735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02481174 211.81440735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -02481175 211.81445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02481176 211.81445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -02481177 211.81448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02481178 211.81448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -02481179 211.81449890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02481180 211.81449890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -02481181 211.81454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02481182 211.81454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -02481183 211.81455994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02481184 211.81455994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -02481185 211.81459045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02481186 211.81459045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -02481187 211.81462097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02481188 211.81463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -02481189 211.81465149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02481190 211.81465149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -02481191 211.81468201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02481192 211.81468201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -02481193 211.81471252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02481194 211.81471252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -02481195 211.81474304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02481196 211.81474304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -02481197 211.81477356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02481198 211.81477356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -02481199 211.81480408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02481200 211.81480408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -02481201 211.81488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02481202 211.81488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -02481203 211.81491089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02481204 211.81491089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -02481205 211.81494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02481206 211.81495667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -02481207 211.81497192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02481208 211.81497192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -02481209 211.81500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02481210 211.81500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -02481211 211.81503296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02481212 211.81503296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -02481213 211.81506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02481214 211.81506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -02481215 211.81509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02481216 211.81509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -02481217 211.81510925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02481218 211.81512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -02481219 211.81515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02481220 211.81515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -02481221 211.81518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02481222 211.81518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -02481223 211.81520081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02481224 211.81520081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -02481225 211.81524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02481226 211.81524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -02481227 211.81527710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02481228 211.81527710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -02481229 211.81529236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02481230 211.81529236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -02481231 211.81533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02481232 211.81533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -02481233 211.81535339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02481234 211.81535339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -02481235 211.81538391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02481236 211.81539917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -02481237 211.81542969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02481238 211.81542969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -02481239 211.81544495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02481240 211.81544495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -02481241 211.81547546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02481242 211.81549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -02481243 211.81550598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02481244 211.81550598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -02481245 211.81553650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02481246 211.81553650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -02481247 211.81556702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02481248 211.81558228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -02481249 211.81559753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02481250 211.81559753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -02481251 211.81562805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02481252 211.81562805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -02481253 211.81567383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02481254 211.81567383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -02481255 211.81568909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02481256 211.81568909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -02481257 211.81571960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02481258 211.81573486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -02481259 211.81575012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02481260 211.81575012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -02481261 211.81578064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02481262 211.81578064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -02481263 211.81582642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02481264 211.81582642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -02481265 211.81585693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02481266 211.81585693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -02481267 211.81590271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02481268 211.81590271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -02481269 211.81591797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02481270 211.81591797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -02481271 211.81594849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02481272 211.81596375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -02481273 211.81599426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02481274 211.81599426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -02481275 211.81600952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02481276 211.81600952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -02481277 211.81605530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02481278 211.81605530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -02481279 211.81607056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02481280 211.81607056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -02481281 211.81610107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02481282 211.81610107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -02481283 211.81614685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02481284 211.81614685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -02481285 211.81616211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02481286 211.81616211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -02481287 211.81619263 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02481288 211.81620789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -02481289 211.81622314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02481290 211.81622314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -02481291 211.81625366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02481292 211.81625366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -02481293 211.81628418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02481294 211.81629944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -02481295 211.81631470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02481296 211.81631470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -02481297 211.81634521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02481298 211.81634521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -02481299 211.81639099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02481300 211.81639099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -02481301 211.81640625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02481302 211.81640625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -02481303 211.81643677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02481304 211.81643677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -02481305 211.81646729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02481306 211.81646729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -02481307 211.81649780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02481308 211.81649780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -02481309 211.81652832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02481310 211.81654358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -02481311 211.81655884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02481312 211.81655884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -02481313 211.81658936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02481314 211.81658936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -02481315 211.81661987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02481316 211.81661987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -02481317 211.81665039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02481318 211.81665039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -02481319 211.81668091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02481320 211.81669617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -02481321 211.81671143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02481322 211.81671143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -02481323 211.81674194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02481324 211.81674194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -02481325 211.81677246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02481326 211.81678772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -02481327 211.81680298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02481328 211.81680298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -02481329 211.81683350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02481330 211.81684875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -02481331 211.81686401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02481332 211.81686401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -02481333 211.81689453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02481334 211.81690979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -02481335 211.81694031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02481336 211.81694031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -02481337 211.81695557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02481338 211.81695557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -02481339 211.81698608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02481340 211.81698608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -02481341 211.81701660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02481342 211.81701660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -02481343 211.81704712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02481344 211.81704712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -02481345 211.81707764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02481346 211.81707764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -02481347 211.81710815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02481348 211.81710815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -02481349 211.81712341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02481350 211.81713867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -02481351 211.81716919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02481352 211.81716919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -02481353 211.81718445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02481354 211.81718445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -02481355 211.81721497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02481356 211.81723022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -02481357 211.81726074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02481358 211.81726074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -02481359 211.81727600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02481360 211.81727600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -02481361 211.81730652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02481362 211.81730652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -02481363 211.81733704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02481364 211.81733704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -02481365 211.81736755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02481366 211.81736755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -02481367 211.81739807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02481368 211.81739807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -02481369 211.81741333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02481370 211.81741333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -02481371 211.81744385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02481372 211.81745911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -02481373 211.81748962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02481374 211.81748962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -02481375 211.81750488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02481376 211.81750488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -02481377 211.81753540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02481378 211.81753540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -02481379 211.81758118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02481380 211.81758118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -02481381 211.81759644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02481382 211.81759644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -02481383 211.81762695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02481384 211.81762695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -02481385 211.81765747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02481386 211.81765747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -02481387 211.81768799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -02481388 211.81768799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -02481389 211.81771851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -02481390 211.81771851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -02481391 211.81773376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -02481392 211.81773376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -02481393 211.81777954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -02481394 211.81777954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -02481395 211.81781006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -02481396 211.81781006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -02481397 211.81785583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -02481398 211.81785583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -02481399 211.81788635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -02481400 211.81788635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -02481401 211.81790161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -02481402 211.81791687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -02481403 211.81794739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -02481404 211.81794739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -02481405 211.81797791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -02481406 211.81797791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -02481407 211.81800842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -02481408 211.81800842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -02481409 211.81803894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -02481410 211.81803894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -02481411 211.81805420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -02481412 211.81805420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -02481413 211.81808472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -02481414 211.81809998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -02481415 211.81813049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -02481416 211.81813049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -02481417 211.81814575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -02481418 211.81814575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -02481419 211.81817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -02481420 211.81817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -02481421 211.81820679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -02481422 211.81820679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -02481423 211.81823730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -02481424 211.81823730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -02481425 211.81826782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -02481426 211.81826782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -02481427 211.81829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -02481428 211.81829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -02481429 211.81831360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -02481430 211.81832886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -02481431 211.81835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -02481432 211.81835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -02481433 211.81837463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -02481434 211.81837463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -02481435 211.81840515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -02481436 211.81842041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -02481437 211.81845093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -02481438 211.81845093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -02481439 211.81846619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -02481440 211.81846619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -02481441 211.81851196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -02481442 211.81851196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -02481443 211.81852722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -02481444 211.81852722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -02481445 211.81855774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -02481446 211.81855774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -02481447 211.81858826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -02481448 211.81860352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -02481449 211.81861877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -02481450 211.81861877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -02481451 211.81864929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -02481452 211.81864929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -02481453 211.81869507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -02481454 211.81869507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -02481455 211.81871033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -02481456 211.81871033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -02481457 211.81874084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -02481458 211.81874084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -02481459 211.81877136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -02481460 211.81877136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -02481461 211.81881714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -02481462 211.81881714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -02481463 211.81884766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -02481464 211.81884766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -02481465 211.81887817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -02481466 211.81887817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -02481467 211.81890869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -02481468 211.81892395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -02481469 211.81893921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -02481470 211.81893921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -02481471 211.81896973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -02481472 211.81896973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -02481473 211.81900024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -02481474 211.81901550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -02481475 211.81903076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -02481476 211.81903076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -02481477 211.81906128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -02481478 211.81906128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -02481479 211.81909180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -02481480 211.81909180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -02481481 211.81912231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -02481482 211.81912231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -02481483 211.81915283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -02481484 211.81915283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -02481485 211.81916809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -02481486 211.81916809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -02481487 211.81921387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -02481488 211.81921387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -02481489 211.81924438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -02481490 211.81924438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -02481491 211.81925964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -02481492 211.81925964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -02481493 211.81929016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -02481494 211.81930542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -02481495 211.81932068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -02481496 211.81932068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -02481497 211.81935120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -02481498 211.81935120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -02481499 211.81938171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -02481500 211.81939697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -02481501 211.81941223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -02481502 211.81941223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -02481503 211.81944275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -02481504 211.81945801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -02481505 211.81948853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -02481506 211.81948853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -02481507 211.81950378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -02481508 211.81950378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -02481509 211.81953430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -02481510 211.81953430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -02481511 211.81956482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -02481512 211.81956482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -02481513 211.81959534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -02481514 211.81959534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -02481515 211.81962585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -02481516 211.81962585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -02481517 211.81964111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -02481518 211.81964111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -02481519 211.81967163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -02481520 211.81968689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -02481521 211.81971741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -02481522 211.81971741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -02481523 211.81973267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -02481524 211.81973267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -02481525 211.81976318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -02481526 211.81976318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -02481527 211.81980896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -02481528 211.81980896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -02481529 211.81985474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -02481530 211.81985474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -02481531 211.81991577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -02481532 211.81991577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -02481533 211.81994629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -02481534 211.81994629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -02481535 211.81996155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -02481536 211.81997681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -02481537 211.82000732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -02481538 211.82000732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -02481539 211.82003784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -02481540 211.82003784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -02481541 211.82006836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -02481542 211.82006836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -02481543 211.82009888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -02481544 211.82009888 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -02481545 211.82011414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -02481546 211.82011414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -02481547 211.82014465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -02481548 211.82014465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -02481549 211.82017517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -02481550 211.82019043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -02481551 211.82020569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -02481552 211.82020569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -02481553 211.82023621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -02481554 211.82023621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -02481555 211.82026672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -02481556 211.82028198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -02481557 211.82029724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -02481558 211.82029724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -02481559 211.82032776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -02481560 211.82032776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -02481561 211.82035828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -02481562 211.82035828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -02481563 211.82038879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -02481564 211.82038879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -02481565 211.82041931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -02481566 211.82041931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -02481567 211.82043457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -02481568 211.82044983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -02481569 211.82048035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -02481570 211.82048035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -02481571 211.82051086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -02481572 211.82051086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -02481573 211.82052612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -02481574 211.82054138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -02481575 211.82057190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -02481576 211.82057190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -02481577 211.82060242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -02481578 211.82060242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -02481579 211.82061768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -02481580 211.82061768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -02481581 211.82066345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -02481582 211.82066345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -02481583 211.82067871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -02481584 211.82067871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -02481585 211.82070923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -02481586 211.82070923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -02481587 211.82075500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -02481588 211.82075500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -02481589 211.82077026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -02481590 211.82077026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -02481591 211.82081604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -02481592 211.82081604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -02481593 211.82090759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -02481594 211.82090759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -02481595 211.82092285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -02481596 211.82092285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -02481597 211.82095337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -02481598 211.82096863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -02481599 211.82099915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -02481600 211.82099915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -02481601 211.82101440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -02481602 211.82101440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -02481603 211.82104492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -02481604 211.82106018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -02481605 211.82107544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -02481606 211.82107544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -02488109 211.91503906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -02488110 211.91503906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10090 -02488111 211.91505432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -02488112 211.91505432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a0 -02488113 211.91508484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -02488114 211.91510010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b0 -02488115 211.91513062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -02488116 211.91513062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c0 -02488117 211.91514587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -02488118 211.91514587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d0 -02488119 211.91517639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -02488120 211.91517639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e0 -02488121 211.91520691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -02488122 211.91520691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f0 -02488123 211.91522217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -02488124 211.91522217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10100 -02488125 211.91525269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -02488126 211.91526794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10110 -02488127 211.91528320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -02488128 211.91528320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10120 -02488129 211.91531372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -02488130 211.91531372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10130 -02488131 211.91534424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -02488132 211.91534424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10140 -02488133 211.91535950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -02488134 211.91535950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10150 -02488135 211.91539001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -02488136 211.91539001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10160 -02488137 211.91542053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -02488138 211.91542053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10170 -02488139 211.91543579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -02488140 211.91543579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10180 -02488141 211.91546631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -02488142 211.91546631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10190 -02488143 211.91549683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -02488144 211.91549683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a0 -02488145 211.91552734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -02488146 211.91552734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b0 -02488147 211.91554260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -02488148 211.91555786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c0 -02488149 211.91558838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -02488150 211.91558838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d0 -02488151 211.91560364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -02488152 211.91560364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e0 -02493383 211.99136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -02493384 211.99136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a560 -02493385 211.99137878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -02493386 211.99137878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a570 -02493387 211.99140930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -02493388 211.99142456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a580 -02493389 211.99145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -02493390 211.99145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a590 -02493391 211.99147034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -02493392 211.99147034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5a0 -02493393 211.99150085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -02493394 211.99150085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5b0 -02493395 211.99153137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -02493396 211.99153137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5c0 -02493397 211.99154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -02493398 211.99156189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -02493399 211.99159241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -02493400 211.99159241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -02493401 211.99162292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -02493402 211.99162292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -02493403 211.99163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -02493404 211.99163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -02493405 211.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -02493406 211.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -02493407 211.99169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -02493408 211.99169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -02493409 211.99176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -02493410 211.99176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -02493411 211.99177551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -02493412 211.99177551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -02493413 211.99180603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -02493414 211.99180603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -02493415 211.99183655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -02493416 211.99185181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -02493417 211.99186707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -02493418 211.99186707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -02493419 211.99189758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -02493420 211.99189758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -02493421 211.99192810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -02493422 211.99192810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -02493423 211.99194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -02493424 211.99194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -02493425 211.99197388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -02493426 211.99198914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -02499195 212.07844543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -02499196 212.07844543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -02499197 212.07847595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -02499198 212.07849121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -02499199 212.07852173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -02499200 212.07852173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -02499201 212.07853699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -02499202 212.07853699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -02499203 212.07856750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -02499204 212.07856750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -02499205 212.07859802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -02499206 212.07859802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -02499207 212.07861328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -02499208 212.07862854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -02499209 212.07865906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -02499210 212.07865906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -02499211 212.07867432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -02499212 212.07867432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -02499213 212.07872009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -02499214 212.07873535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -02499215 212.07879639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -02499216 212.07879639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -02499217 212.07882690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -02499218 212.07882690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -02499219 212.07884216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -02499220 212.07885742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -02499221 212.07888794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -02499222 212.07888794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -02499223 212.07891846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -02499224 212.07891846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -02499225 212.07893372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -02499226 212.07893372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -02499227 212.07896423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -02499228 212.07896423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -02499229 212.07899475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -02499230 212.07899475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c10 -02499231 212.07902527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -02499232 212.07902527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c20 -02499233 212.07905579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -02499234 212.07905579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c30 -02499235 212.07907104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -02499236 212.07907104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c40 -02499237 212.07910156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -02499238 212.07910156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c50 -02504611 212.15766907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -02504612 212.15766907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -02504613 212.15769958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -02504614 212.15769958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -02504615 212.15771484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -02504616 212.15771484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -02504617 212.15776062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -02504618 212.15776062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -02504619 212.15779114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -02504620 212.15779114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -02504621 212.15780640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -02504622 212.15780640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -02504623 212.15783691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -02504624 212.15783691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -02504625 212.15786743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -02504626 212.15788269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -02504627 212.15789795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -02504628 212.15789795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -02504629 212.15792847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -02504630 212.15792847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -02504631 212.15795898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -02504632 212.15795898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -02504633 212.15797424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -02504634 212.15797424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -02504635 212.15800476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -02504636 212.15802002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -02504637 212.15803528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -02504638 212.15803528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -02504639 212.15806580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -02504640 212.15806580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -02504641 212.15809631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -02504642 212.15809631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -02504643 212.15811157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -02504644 212.15811157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -02504645 212.15814209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -02504646 212.15814209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -02504647 212.15817261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -02504648 212.15817261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -02504649 212.15818787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -02504650 212.15818787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -02504651 212.15821838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -02504652 212.15821838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -02504653 212.15824890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -02504654 212.15824890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30590 -02522187 212.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -02522188 212.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52980 -02522189 212.41610718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -02522190 212.41610718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52990 -02522191 212.41612244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -02522192 212.41613770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a0 -02522193 212.41616821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -02522194 212.41616821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b0 -02522195 212.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -02522196 212.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529c0 -02522197 212.41621399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -02522198 212.41621399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529d0 -02522199 212.41625977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -02522200 212.41625977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529e0 -02522201 212.41627502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -02522202 212.41627502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x529f0 -02522203 212.41630554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -02522204 212.41630554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a00 -02522205 212.41633606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -02522206 212.41633606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a10 -02522207 212.41635132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -02522208 212.41636658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a20 -02522209 212.41639709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -02522210 212.41639709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a30 -02522211 212.41642761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -02522212 212.41642761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a40 -02522213 212.41644287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -02522214 212.41644287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a50 -02522215 212.41647339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -02522216 212.41647339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a60 -02522217 212.41650391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -02522218 212.41651917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a70 -02522219 212.41653442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -02522220 212.41653442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a80 -02522221 212.41656494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -02522222 212.41656494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a90 -02522223 212.41659546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -02522224 212.41659546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa0 -02522225 212.41661072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -02522226 212.41661072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab0 -02522227 212.41664124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -02522228 212.41665649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac0 -02522229 212.41667175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -02522230 212.41667175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad0 -02522313 212.68089294 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02522314 212.70053101 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02522315 212.70054626 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02522316 213.45066833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02522317 213.45068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02522318 213.45071411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02522319 213.45071411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02522320 213.45074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02522321 213.45074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02522322 213.45077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02522323 213.45077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02522324 213.45080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02522325 213.45080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02522326 213.45083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02522327 213.45083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02522328 213.45085144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02522329 213.45085144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02522330 213.45088196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02522331 213.45088196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02522332 213.45091248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02522333 213.45091248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02522334 213.45094299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02522335 213.45094299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02522336 213.45097351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02522337 213.45097351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02522338 213.45098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02522339 213.45098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02522340 213.45101929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02522341 213.45101929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02522342 213.45104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02522343 213.45106506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02522344 213.45108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02522345 213.45108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02522346 213.45111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02522347 213.45111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02522348 213.45114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02522349 213.45114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02522350 213.45115662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02522351 213.45115662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02522352 213.45118713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02522353 213.45118713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02522354 213.45121765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02522355 213.45123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02522356 213.45124817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02522357 213.45124817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02522358 213.45127869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02522359 213.45127869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02522360 213.45130920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02522361 213.45130920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02522362 213.45132446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02522363 213.45132446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02522364 213.45135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02522365 213.45137024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02522366 213.45138550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02522367 213.45138550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02522368 213.45141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02522369 213.45141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02522370 213.45144653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02522371 213.45144653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02522372 213.45146179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02522373 213.45146179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02522374 213.45149231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02522375 213.45150757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02522376 213.45153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02522377 213.45153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02522378 213.45155334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02522379 213.45155334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02522380 213.45158386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02522381 213.45158386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02522382 213.45161438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02522383 213.45161438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02522384 213.45162964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02522385 213.45164490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02522386 213.45167542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02522387 213.45167542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02522388 213.45170593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02522389 213.45170593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02522390 213.45172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02522391 213.45172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02522392 213.45175171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02522393 213.45175171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02522394 213.45178223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02522395 213.45178223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02522396 213.45181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02522397 213.45181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02522398 213.45184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02522399 213.45184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02522400 213.45185852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02522401 213.45185852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02522402 213.45188904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02522403 213.45188904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02522404 213.45191956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02522405 213.45191956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02522406 213.45193481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02522407 213.45195007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02522408 213.45198059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02522409 213.45198059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02522410 213.45201111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02522411 213.45201111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02522412 213.45202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02522413 213.45202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02522414 213.45205688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02522415 213.45205688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02522416 213.45208740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02522417 213.45210266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02522418 213.45211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02522419 213.45211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02522420 213.45214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02522421 213.45214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02522422 213.45217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02522423 213.45217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02522424 213.45219421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02522425 213.45219421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02522426 213.45222473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02522427 213.45222473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02522428 213.45225525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02522429 213.45225525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02522430 213.45228577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02522431 213.45228577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02522432 213.45231628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02522433 213.45231628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02522434 213.45234680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02522435 213.45234680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02522436 213.45236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02522437 213.45236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02522438 213.45239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02522439 213.45239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02522440 213.45243835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02522441 213.45243835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02522442 213.45246887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02522443 213.45246887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02522444 213.45249939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02522445 213.45249939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02522446 213.45252991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02522447 213.45252991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02522448 213.45256042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02522449 213.45256042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02522450 213.45257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02522451 213.45257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02522452 213.45260620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02522453 213.45260620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02522454 213.45263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02522455 213.45265198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02522456 213.45266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02522457 213.45266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02522458 213.45269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02522459 213.45269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02522460 213.45272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02522461 213.45272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02522462 213.45274353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02522463 213.45274353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02522464 213.45277405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02522465 213.45277405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02522466 213.45280457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02522467 213.45281982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02522468 213.45283508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02522469 213.45283508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02522470 213.45286560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02522471 213.45286560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02522472 213.45289612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02522473 213.45289612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02522474 213.45291138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02522475 213.45291138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02522476 213.45294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02522477 213.45295715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02522478 213.45297241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02522479 213.45297241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02522480 213.45300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02522481 213.45300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02522482 213.45303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02522483 213.45303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02522484 213.45304871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02522485 213.45304871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02522486 213.45307922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02522487 213.45307922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02522488 213.45310974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02522489 213.45312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02522490 213.45314026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02522491 213.45314026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02522492 213.45317078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02522493 213.45317078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02522494 213.45320129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02522495 213.45320129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02522496 213.45321655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02522497 213.45321655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02522498 213.45326233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02522499 213.45326233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02522500 213.45329285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02522501 213.45329285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02522502 213.45332336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02522503 213.45332336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02522504 213.45335388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02522505 213.45336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02522506 213.45338440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02522507 213.45338440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02522508 213.45341492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02522509 213.45341492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02522510 213.45344543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02522511 213.45344543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02522512 213.45346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02522513 213.45346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02522514 213.45349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02522515 213.45349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02522516 213.45352173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02522517 213.45353699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02522518 213.45355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02522519 213.45355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02522520 213.45358276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02522521 213.45358276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02522522 213.45361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02522523 213.45361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02522524 213.45362854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02522525 213.45364380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02522526 213.45367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02522527 213.45367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02522528 213.45370483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02522529 213.45370483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02522530 213.45373535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02522531 213.45375061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02522532 213.45376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02522533 213.45376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02522534 213.45381165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02522535 213.45381165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02522536 213.45384216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02522537 213.45384216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02522538 213.45387268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02522539 213.45387268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02522540 213.45390320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02522541 213.45390320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02522542 213.45393372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02522543 213.45393372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02522544 213.45394897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02522545 213.45396423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02522546 213.45399475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02522547 213.45399475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02522548 213.45401001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02522549 213.45401001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02522550 213.45404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02522551 213.45404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02522552 213.45407104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02522553 213.45408630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02522554 213.45410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02522555 213.45410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02522556 213.45414734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02522557 213.45414734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02522558 213.45417786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02522559 213.45417786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02522560 213.45420837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02522561 213.45420837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02522562 213.45423889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02522563 213.45423889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02522564 213.45426941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02522565 213.45426941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02522566 213.45429993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02522567 213.45429993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02522568 213.45433044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02522569 213.45433044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02522570 213.45434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02522571 213.45434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02522572 213.45437622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02522573 213.45439148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02522574 213.45440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02522575 213.45440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02522576 213.45443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02522577 213.45443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02522578 213.45446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02522579 213.45446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02522580 213.45448303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02522581 213.45449829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02522582 213.45452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02522583 213.45452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02522584 213.45455933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02522585 213.45455933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02522586 213.45457458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02522587 213.45457458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02522588 213.45460510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02522589 213.45462036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02522590 213.45463562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02522591 213.45463562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02522592 213.45466614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02522593 213.45466614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02522594 213.45469666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02522595 213.45469666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02522596 213.45472717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02522597 213.45472717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02522598 213.45474243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02522599 213.45475769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02522600 213.45478821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02522601 213.45478821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02522602 213.45480347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02522603 213.45480347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02522604 213.45483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02522605 213.45483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02522606 213.45486450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02522607 213.45487976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02522608 213.45489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02522609 213.45489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02522610 213.45492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02522611 213.45492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02522612 213.45495605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02522613 213.45495605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02522614 213.45497131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02522615 213.45497131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02522616 213.45501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02522617 213.45501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02522618 213.45504761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02522619 213.45504761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02522620 213.45506287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02522621 213.45506287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02522622 213.45509338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02522623 213.45509338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02524648 213.48400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02524649 213.48400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -02524650 213.48403931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02524651 213.48403931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -02524652 213.48405457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02524653 213.48405457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -02524654 213.48408508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02524655 213.48410034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -02524656 213.48411560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02524657 213.48411560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -02524658 213.48414612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02524659 213.48414612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -02524660 213.48417664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02524661 213.48417664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -02524662 213.48419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02524663 213.48419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -02524664 213.48422241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02524665 213.48423767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -02524666 213.48426819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02524667 213.48426819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -02524668 213.48428345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02524669 213.48428345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -02524670 213.48431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02524671 213.48431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -02524672 213.48434448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02524673 213.48434448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -02524674 213.48435974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02524675 213.48437500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -02524676 213.48440552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02524677 213.48440552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -02524678 213.48443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02524679 213.48443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -02524680 213.48445129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02524681 213.48445129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -02524682 213.48448181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02524683 213.48449707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -02524684 213.48451233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02524685 213.48451233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -02524686 213.48454285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02524687 213.48454285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -02524688 213.48457336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02524689 213.48457336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -02524690 213.48458862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02524691 213.48458862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -02529956 213.55967712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff08 -02529957 213.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff08 -02529958 213.55972290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff18 -02529959 213.55972290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff18 -02529960 213.55973816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff28 -02529961 213.55973816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff28 -02529962 213.55976868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff38 -02529963 213.55976868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff38 -02529964 213.55979919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff48 -02529965 213.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff48 -02529966 213.55982971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff58 -02529967 213.55982971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff58 -02529968 213.55986023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff68 -02529969 213.55986023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff68 -02529970 213.55989075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff78 -02529971 213.55989075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff78 -02529972 213.55990601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff88 -02529973 213.55992126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff88 -02529974 213.55995178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff98 -02529975 213.55995178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xff98 -02529976 213.55996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa8 -02529977 213.55996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa8 -02529978 213.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb8 -02529979 213.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb8 -02529980 213.56002808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc8 -02529981 213.56002808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc8 -02529982 213.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd8 -02529983 213.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd8 -02529984 213.56008911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe8 -02529985 213.56008911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe8 -02529986 213.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff8 -02529987 213.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff8 -02529988 213.56013489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10008 -02529989 213.56013489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10008 -02529990 213.56016541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10018 -02529991 213.56016541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10018 -02529992 213.56019592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -02529993 213.56021118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -02529994 213.56022644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -02529995 213.56022644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -02529996 213.56025696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -02529997 213.56025696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -02529998 213.56028748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -02529999 213.56028748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -02535546 213.63963318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb8 -02535547 213.63964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adb8 -02535548 213.63966370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc8 -02535549 213.63966370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adc8 -02535550 213.63969421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add8 -02535551 213.63969421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1add8 -02535552 213.63972473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade8 -02535553 213.63972473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ade8 -02535554 213.63973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf8 -02535555 213.63973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1adf8 -02535556 213.63977051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae08 -02535557 213.63977051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae08 -02535558 213.63980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae18 -02535559 213.63980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae18 -02535560 213.63983154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae28 -02535561 213.63983154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae28 -02535562 213.63986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae38 -02535563 213.63986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae38 -02535564 213.63987732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae48 -02535565 213.63987732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae48 -02535566 213.63990784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae58 -02535567 213.63990784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae58 -02535568 213.63993835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae68 -02535569 213.63995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae68 -02535570 213.63996887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae78 -02535571 213.63996887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae78 -02535572 213.63999939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae88 -02535573 213.63999939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae88 -02535574 213.64002991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae98 -02535575 213.64002991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae98 -02535576 213.64004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea8 -02535577 213.64004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea8 -02535578 213.64007568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb8 -02535579 213.64009094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb8 -02535580 213.64012146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec8 -02535581 213.64012146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec8 -02535582 213.64013672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed8 -02535583 213.64013672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed8 -02535584 213.64016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee8 -02535585 213.64016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee8 -02535586 213.64019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef8 -02535587 213.64019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef8 -02535588 213.64021301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af08 -02535589 213.64021301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af08 -02540882 213.71580505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25478 -02540883 213.71582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25478 -02540884 213.71583557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25488 -02540885 213.71583557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25488 -02540886 213.71586609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25498 -02540887 213.71586609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25498 -02540888 213.71589661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a8 -02540889 213.71589661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254a8 -02540890 213.71591187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b8 -02540891 213.71591187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254b8 -02540892 213.71594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c8 -02540893 213.71595764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254c8 -02540894 213.71598816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d8 -02540895 213.71598816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254d8 -02540896 213.71600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e8 -02540897 213.71600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254e8 -02540898 213.71603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f8 -02540899 213.71603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x254f8 -02540900 213.71606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25508 -02540901 213.71606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25508 -02540902 213.71607971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25518 -02540903 213.71609497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25518 -02540904 213.71612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25528 -02540905 213.71612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25528 -02540906 213.71614075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25538 -02540907 213.71614075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25538 -02540908 213.71617126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25548 -02540909 213.71617126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25548 -02540910 213.71620178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25558 -02540911 213.71620178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25558 -02540912 213.71621704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25568 -02540913 213.71621704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25568 -02540914 213.71624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25578 -02540915 213.71626282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25578 -02540916 213.71629333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25588 -02540917 213.71629333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25588 -02540918 213.71630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25598 -02540919 213.71630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25598 -02540920 213.71633911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a8 -02540921 213.71633911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255a8 -02540922 213.71636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b8 -02540923 213.71636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255b8 -02540924 213.71638489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c8 -02540925 213.71640015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x255c8 -02554903 213.91575623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a98 -02554904 213.91580200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa8 -02554905 213.91580200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40aa8 -02554906 213.91583252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab8 -02554907 213.91583252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ab8 -02554908 213.91584778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac8 -02554909 213.91584778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ac8 -02554910 213.91587830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad8 -02554911 213.91587830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ad8 -02554912 213.91590881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae8 -02554913 213.91592407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ae8 -02554914 213.91593933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af8 -02554915 213.91593933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40af8 -02554916 213.91596985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b08 -02554917 213.91596985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b08 -02554918 213.91600037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -02554919 213.91600037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -02554920 213.91601563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -02554921 213.91601563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -02554922 213.91604614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -02554923 213.91606140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -02554924 213.91607666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -02554925 213.91607666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -02554926 213.91610718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -02554927 213.91610718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -02554928 213.91613770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -02554929 213.91613770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -02554930 213.91615295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -02554931 213.91615295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -02554932 213.91619873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -02554933 213.91619873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -02554934 213.91622925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -02554935 213.91622925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -02554936 213.91624451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -02554937 213.91624451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -02554938 213.91627502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02554939 213.91627502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -02554940 213.91630554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02554941 213.91632080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -02554942 213.91633606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02554943 213.91633606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -02554944 213.91636658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02554945 213.91636658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -02554946 213.91639709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -02559630 213.98271179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e58 -02559631 213.98272705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e58 -02559632 213.98274231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e68 -02559633 213.98274231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e68 -02559634 213.98277283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e78 -02559635 213.98277283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e78 -02559636 213.98280334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e88 -02559637 213.98280334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e88 -02559638 213.98283386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e98 -02559639 213.98283386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e98 -02559640 213.98286438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea8 -02559641 213.98286438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ea8 -02559642 213.98287964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb8 -02559643 213.98287964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49eb8 -02559644 213.98291016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec8 -02559645 213.98292542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ec8 -02559646 213.98295593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed8 -02559647 213.98295593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ed8 -02559648 213.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee8 -02559649 213.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ee8 -02559650 213.98300171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef8 -02559651 213.98300171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ef8 -02559652 213.98304749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f08 -02559653 213.98304749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f08 -02559654 213.98306274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f18 -02559655 213.98306274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f18 -02559656 213.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f28 -02559657 213.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f28 -02559658 213.98312378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f38 -02559659 213.98312378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f38 -02559660 213.98313904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f48 -02559661 213.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f48 -02559662 213.98318481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f58 -02559663 213.98318481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f58 -02559664 213.98320007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f68 -02559665 213.98320007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f68 -02559666 213.98323059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f78 -02559667 213.98324585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f78 -02559668 213.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f88 -02559669 213.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f88 -02559670 213.98329163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f98 -02559671 213.98329163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f98 -02559672 213.98332214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa8 -02559673 213.98332214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49fa8 -02564210 214.70181274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02564211 214.72166443 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564212 214.72167969 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564213 216.04415894 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -02564214 216.04536438 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -02564215 216.53955078 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564216 216.53959656 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564217 216.53962708 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564218 216.53962708 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02564219 216.53974915 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564220 216.53974915 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564221 216.53982544 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564222 216.53982544 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564223 216.72340393 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02564224 216.74275208 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564225 216.74275208 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564226 218.74520874 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02564227 218.76454163 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564228 218.76457214 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564229 219.04588318 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564230 219.04594421 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564231 219.04594421 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02564232 219.04595947 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02564233 219.04609680 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564234 219.04609680 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564235 219.04614258 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02564236 219.04617310 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02564237 219.04791260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02564238 219.04791260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02564239 219.04794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02564240 219.04795837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02564241 219.04798889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02564242 219.04798889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02564243 219.04801941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02564244 219.04801941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02564245 219.04803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02564246 219.04803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02564247 219.04806519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02564248 219.04806519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02564249 219.04809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02564250 219.04809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02564251 219.04811096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02564252 219.04811096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02564253 219.04814148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02564254 219.04814148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02564255 219.04817200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02564256 219.04817200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02564257 219.04818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02564258 219.04818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02564259 219.04821777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02564260 219.04824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02564261 219.04826355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02564262 219.04826355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02564263 219.04829407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02564264 219.04829407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02564265 219.04832458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02564266 219.04832458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02564267 219.04833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02564268 219.04833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02564269 219.04837036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02564270 219.04837036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02564271 219.04840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02564272 219.04840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02564273 219.04841614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02564274 219.04841614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02564275 219.04844666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02564276 219.04844666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02564277 219.04847717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02564278 219.04847717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02564279 219.04849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02564280 219.04852295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02564281 219.04855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02564282 219.04855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02564283 219.04856873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02564284 219.04856873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02564285 219.04859924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02564286 219.04859924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02564287 219.04862976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02564288 219.04862976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02564289 219.04866028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02564290 219.04866028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02564291 219.04867554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02564292 219.04867554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02564293 219.04870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02564294 219.04870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02564295 219.04873657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02564296 219.04873657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02564297 219.04875183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02564298 219.04875183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02564299 219.04878235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02564300 219.04881287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02564301 219.04882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02564302 219.04882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02564303 219.04885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02564304 219.04885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02564305 219.04888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02564306 219.04888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02564307 219.04890442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02564308 219.04890442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02564309 219.04893494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02564310 219.04893494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02564311 219.04896545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02564312 219.04896545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02564313 219.04898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02564314 219.04898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02564315 219.04901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02564316 219.04901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02564317 219.04904175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02564318 219.04904175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02564319 219.04905701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02564320 219.04905701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02564321 219.04908752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02564322 219.04911804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02564323 219.04913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02564324 219.04913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02564325 219.04916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02564326 219.04916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02564327 219.04919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02564328 219.04919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02564329 219.04920959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02564330 219.04920959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02564331 219.04924011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02564332 219.04924011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02564333 219.04927063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02564334 219.04927063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02564335 219.04928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02564336 219.04928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02564337 219.04931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02564338 219.04931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02564339 219.04934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02564340 219.04934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02564341 219.04936218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02564342 219.04939270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02564343 219.04942322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02564344 219.04942322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02564345 219.04945374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02564346 219.04945374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02564347 219.04946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02564348 219.04946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02564349 219.04949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02564350 219.04949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02564351 219.04953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02564352 219.04953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02564353 219.04954529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02564354 219.04954529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02564355 219.04957581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02564356 219.04957581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02564357 219.04960632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02564358 219.04960632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02564359 219.04962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02564360 219.04962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02564361 219.04968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02564362 219.04968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02564363 219.04969788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02564364 219.04969788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02564365 219.04972839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02564366 219.04972839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02564367 219.04975891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02564368 219.04975891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02564369 219.04977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02564370 219.04980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02564371 219.04983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02564372 219.04983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02564373 219.04985046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02564374 219.04985046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02564375 219.04988098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02564376 219.04988098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02564377 219.04991150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02564378 219.04991150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02564379 219.04992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02564380 219.04992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02564381 219.04995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02564382 219.04995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02564383 219.04998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02564384 219.04998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02564385 219.05000305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02564386 219.05000305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02564387 219.05003357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02564388 219.05003357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02564389 219.05006409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02564390 219.05007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02564391 219.05010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02564392 219.05010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02564393 219.05014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02564394 219.05014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02564395 219.05015564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02564396 219.05015564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02564397 219.05018616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02564398 219.05018616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02564399 219.05021667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02564400 219.05021667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02564401 219.05024719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02564402 219.05024719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02564403 219.05026245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02564404 219.05026245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02564405 219.05029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02564406 219.05029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02564407 219.05032349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02564408 219.05032349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02564409 219.05033875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02564410 219.05036926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02564411 219.05039978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02564412 219.05039978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02564413 219.05041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02564414 219.05041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02564415 219.05044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02564416 219.05044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02564417 219.05047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02564418 219.05047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02564419 219.05049133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02564420 219.05049133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02564421 219.05052185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02564422 219.05055237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02564423 219.05056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02564424 219.05056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02564425 219.05059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02564426 219.05059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02564427 219.05062866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02564428 219.05062866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02564429 219.05064392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02564430 219.05064392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02564431 219.05067444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02564432 219.05067444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02564433 219.05070496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02564434 219.05070496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02564435 219.05072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02564436 219.05072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02564437 219.05075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02564438 219.05075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02564439 219.05078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02564440 219.05078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02564441 219.05079651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02564442 219.05082703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02564443 219.05085754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02564444 219.05085754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02564445 219.05087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02564446 219.05087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02564447 219.05090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02564448 219.05090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02564449 219.05093384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02564450 219.05093384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02564451 219.05096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02564452 219.05096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02564453 219.05097961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02564454 219.05097961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02564455 219.05101013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02564456 219.05101013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02564457 219.05104065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02564458 219.05104065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02564459 219.05105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02564460 219.05105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02564461 219.05108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02564462 219.05111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02564463 219.05113220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02564464 219.05113220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02564465 219.05116272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02564466 219.05116272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02564467 219.05119324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02564468 219.05119324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02564469 219.05120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02564470 219.05120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02564471 219.05123901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02564472 219.05123901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02564473 219.05126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02564474 219.05126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02564475 219.05128479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02564476 219.05128479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02564477 219.05131531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02564478 219.05131531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02564479 219.05134583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02564480 219.05134583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02564481 219.05136108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02564482 219.05139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02564483 219.05142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02564484 219.05142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02564485 219.05143738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02564486 219.05143738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02564487 219.05146790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02564488 219.05146790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02564489 219.05149841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02564490 219.05149841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02564491 219.05151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02564492 219.05151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02564493 219.05154419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02564494 219.05154419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02564495 219.05157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02564496 219.05157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02564497 219.05158997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02564498 219.05158997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02564499 219.05162048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02564500 219.05162048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02564501 219.05165100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02564502 219.05166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02564503 219.05169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02564504 219.05169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02564505 219.05172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02564506 219.05172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02564507 219.05175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02564508 219.05175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02564509 219.05177307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02564510 219.05177307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02564511 219.05180359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02564512 219.05180359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02564513 219.05183411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02564514 219.05183411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02564515 219.05184937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02564516 219.05184937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02564517 219.05187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02564518 219.05187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02564519 219.05191040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02564520 219.05191040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02564521 219.05192566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02564522 219.05195618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02564523 219.05198669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02564524 219.05198669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02564525 219.05200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02564526 219.05200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02564527 219.05203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02564528 219.05203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02564529 219.05206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02564530 219.05206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02564531 219.05207825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02564532 219.05207825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02564533 219.05210876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02564534 219.05210876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02564535 219.05213928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02564536 219.05213928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02564537 219.05215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02564538 219.05215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02564539 219.05218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02564540 219.05218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02564541 219.05221558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02564542 219.05223083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02564543 219.05226135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02564544 219.05226135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02564545 219.05229187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02564546 219.05229187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02564547 219.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02564548 219.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02564549 219.05233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02564550 219.05233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02564551 219.05236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02564552 219.05236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02564553 219.05238342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02564554 219.05238342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02564555 219.05241394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02564556 219.05241394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02564557 219.05244446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02564558 219.05244446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02564559 219.05245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02564560 219.05249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02564561 219.05252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02564562 219.05252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02564563 219.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02564564 219.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02564565 219.05256653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02564566 219.05256653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02564567 219.05259705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02564568 219.05259705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02564569 219.05262756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02564570 219.05262756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02564571 219.05264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02564572 219.05264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02564573 219.05267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02564574 219.05267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02564575 219.05270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02564576 219.05270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02564577 219.05271912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02564578 219.05274963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02564579 219.05278015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02564580 219.05278015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02564581 219.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02564582 219.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02564583 219.05282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02564584 219.05282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02564585 219.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02564586 219.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02564587 219.05287170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02564588 219.05287170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02564589 219.05290222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02564590 219.05290222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02564591 219.05293274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02564592 219.05293274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02564593 219.05294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02564594 219.05297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02564595 219.05300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02564596 219.05300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02564597 219.05302429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02564598 219.05302429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02564599 219.05305481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02564600 219.05305481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02564601 219.05308533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02564602 219.05308533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02564603 219.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02564604 219.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02564605 219.05313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02564606 219.05313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02564607 219.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02564608 219.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02564609 219.05317688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02564610 219.05317688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02564611 219.05320740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02564612 219.05320740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02564613 219.05323792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02564614 219.05323792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02564615 219.05325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02564616 219.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02564617 219.05331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02564618 219.05331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02564619 219.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02564620 219.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02564621 219.05335999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02564622 219.05335999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02564623 219.05339050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02564624 219.05339050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02564625 219.05342102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02564626 219.05342102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02564627 219.05343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02564628 219.05343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02564629 219.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02564630 219.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02564631 219.05349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02564632 219.05349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02564633 219.05351257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02564634 219.05351257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02564635 219.05354309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02564636 219.05357361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02564637 219.05357361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02564638 219.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02564639 219.05361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02564640 219.05361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02564641 219.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02564642 219.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02564643 219.05366516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02564644 219.05366516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02564645 219.05369568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02564646 219.05369568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02564647 219.05372620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02564648 219.05372620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02564649 219.05374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02564650 219.05374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02564651 219.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02564652 219.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02564653 219.05380249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02564654 219.05380249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02564655 219.05381775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02564656 219.05384827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02564657 219.05387878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02564658 219.05387878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02564659 219.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02564660 219.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02564661 219.05392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02564662 219.05392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02564663 219.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02564664 219.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02564665 219.05397034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02564666 219.05397034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02564667 219.05400085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02564668 219.05400085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02564669 219.05403137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02564670 219.05403137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02564671 219.05406189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02564672 219.05406189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02564673 219.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02564674 219.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02564675 219.05410767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02564676 219.05413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02564677 219.05415344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02564678 219.05415344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02564679 219.05418396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02564680 219.05418396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02564681 219.05421448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02564682 219.05421448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02564683 219.05422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02564684 219.05422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02564685 219.05426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02564686 219.05426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02564687 219.05429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02564688 219.05429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02564689 219.05430603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02564690 219.05430603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02564691 219.05433655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02564692 219.05433655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02564693 219.05436707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02564694 219.05438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02564695 219.05441284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02564696 219.05441284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02564697 219.05444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02564698 219.05444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02564699 219.05445862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02564700 219.05445862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02564701 219.05448914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02564702 219.05448914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02564703 219.05451965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02564704 219.05451965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02564705 219.05453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02564706 219.05453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02564707 219.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02564708 219.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02564709 219.05459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02564710 219.05459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02564711 219.05461121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02564712 219.05461121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02564713 219.05464172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02564714 219.05467224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02564715 219.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02564716 219.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02564717 219.05471802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02564718 219.05471802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02564719 219.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02564720 219.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02564721 219.05476379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02564722 219.05476379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02564723 219.05479431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02564724 219.05479431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02564725 219.05482483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02564726 219.05482483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02564727 219.05485535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02564728 219.05485535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02564729 219.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02564730 219.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02564731 219.05490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02564732 219.05493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02564733 219.05494690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02564734 219.05494690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02564735 219.05497742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02564736 219.05497742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02564737 219.05500793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02564738 219.05500793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02564739 219.05502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02564740 219.05502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02564741 219.05505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02564742 219.05505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02564743 219.05508423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02564744 219.05508423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02564745 219.05509949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02564746 219.05509949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02564747 219.05513000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02564748 219.05513000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02564749 219.05516052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02564750 219.05516052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02564751 219.05517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02564752 219.05520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02564753 219.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02564754 219.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02564755 219.05525208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02564756 219.05525208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02564757 219.05528259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02564758 219.05528259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02564759 219.05531311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02564760 219.05531311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02564761 219.05532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02564762 219.05532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02564763 219.05535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02564764 219.05535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02564765 219.05538940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02564766 219.05538940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02564767 219.05540466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02564768 219.05540466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02564769 219.05543518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02564770 219.05543518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02564771 219.05546570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02564772 219.05546570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02564773 219.05548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02564774 219.05551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02564775 219.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02564776 219.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02564777 219.05555725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02564778 219.05555725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02564779 219.05558777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02564780 219.05558777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02564781 219.05561829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02564782 219.05561829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02564783 219.05564880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02564784 219.05564880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02564785 219.05566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02564786 219.05566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02564787 219.05569458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02564788 219.05569458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02564789 219.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02564790 219.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02564791 219.05574036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02564792 219.05574036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02564793 219.05577087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02564794 219.05580139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02564795 219.05581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02564796 219.05581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02564797 219.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02564798 219.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02564799 219.05587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02564800 219.05587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02564801 219.05589294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02564802 219.05589294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02564803 219.05592346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02564804 219.05595398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02564805 219.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02564806 219.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02564807 219.05599976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02564808 219.05599976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02564809 219.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02564810 219.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02564811 219.05604553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02564812 219.05604553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02564813 219.05607605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02564814 219.05607605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02564815 219.05610657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02564816 219.05610657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02564817 219.05612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02564818 219.05612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02564819 219.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02564820 219.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02564821 219.05618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02564822 219.05618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02564823 219.05619812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02564824 219.05622864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02564825 219.05625916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02564826 219.05625916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02564827 219.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02564828 219.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02564829 219.05630493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02564830 219.05630493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02564831 219.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02564832 219.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02564833 219.05636597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02564834 219.05636597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02564835 219.05638123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02564836 219.05638123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02564837 219.05641174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02564838 219.05641174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02564839 219.05644226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02564840 219.05644226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02564841 219.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02564842 219.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02564843 219.05648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02564844 219.05651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02564845 219.05653381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02564846 219.05653381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02564847 219.05656433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02564848 219.05656433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02564849 219.05659485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02564850 219.05659485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02564851 219.05661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02564852 219.05661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02564853 219.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02564854 219.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02564855 219.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02564856 219.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02564857 219.05668640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02564858 219.05668640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02564859 219.05671692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02564860 219.05671692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02564861 219.05674744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02564862 219.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02564863 219.05679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02564864 219.05679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02564865 219.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02564866 219.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02564867 219.05683899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02564868 219.05683899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02564869 219.05686951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02564870 219.05686951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02564871 219.05690002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02564872 219.05690002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02564873 219.05691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02564874 219.05691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02564875 219.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02564876 219.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02564877 219.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02564878 219.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02564879 219.05699158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02564880 219.05699158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02564881 219.05702209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02564882 219.05702209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02564883 219.05705261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02564884 219.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02564885 219.05709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02564886 219.05709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02564887 219.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02564888 219.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02564889 219.05715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02564890 219.05715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02564891 219.05717468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02564892 219.05717468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02564893 219.05720520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02564894 219.05720520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02564895 219.05723572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02564896 219.05723572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02564897 219.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02564898 219.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02564899 219.05728149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02564900 219.05728149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02564901 219.05732727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02564902 219.05732727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02564903 219.05735779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02564904 219.05735779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02564905 219.05738831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02564906 219.05738831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02564907 219.05740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02564908 219.05740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02564909 219.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02564910 219.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02564911 219.05746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02564912 219.05746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02564913 219.05747986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02564914 219.05751038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02564915 219.05754089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02564916 219.05754089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02564917 219.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02564918 219.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02564919 219.05758667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02564920 219.05758667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02564921 219.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02564922 219.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02564923 219.05763245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02564924 219.05763245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02564925 219.05770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02564926 219.05770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02564927 219.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02564928 219.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02564929 219.05776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02564930 219.05776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02564931 219.05778503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02564932 219.05778503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02564933 219.05781555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02564934 219.05781555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02564935 219.05784607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02564936 219.05784607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02564937 219.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02564938 219.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02564939 219.05789185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02564940 219.05792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02564941 219.05795288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02564942 219.05795288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02564943 219.05796814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02564944 219.05796814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02564945 219.05799866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02564946 219.05799866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02564947 219.05802917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02564948 219.05802917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02564949 219.05804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02564950 219.05804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02564951 219.05807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02564952 219.05807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02564953 219.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02564954 219.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02564955 219.05812073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02564956 219.05812073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02564957 219.05815125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02564958 219.05815125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02564959 219.05818176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02564960 219.05818176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02564961 219.05819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02564962 219.05822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02564963 219.05825806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02564964 219.05825806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02564965 219.05827332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02564966 219.05827332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02564967 219.05830383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02564968 219.05830383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02564969 219.05833435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02564970 219.05833435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02564971 219.05834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02564972 219.05834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02564973 219.05838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02564974 219.05838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02564975 219.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02564976 219.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02564977 219.05842590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02564978 219.05842590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02564979 219.05845642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02564980 219.05845642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02564981 219.05848694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02564982 219.05848694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02564983 219.05850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02564984 219.05853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02564985 219.05856323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02564986 219.05856323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02564987 219.05857849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02564988 219.05857849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02564989 219.05860901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02564990 219.05860901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02564991 219.05863953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02564992 219.05863953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02564993 219.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02564994 219.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02564995 219.05868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02564996 219.05868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02564997 219.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02564998 219.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02564999 219.05874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02565000 219.05874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02565001 219.05876160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02565002 219.05876160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02565003 219.05879211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02565004 219.05882263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02565005 219.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02565006 219.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02565007 219.05886841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02565008 219.05886841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02565009 219.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02565010 219.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02565011 219.05891418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02565012 219.05891418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02565013 219.05894470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02565014 219.05894470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02565015 219.05897522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02565016 219.05897522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02565017 219.05899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02565018 219.05899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02565019 219.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02565020 219.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02565021 219.05905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02565022 219.05905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02565023 219.05906677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02565024 219.05906677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02565025 219.05912781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02565026 219.05912781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02565027 219.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02565028 219.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02565029 219.05917358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02565030 219.05917358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02565031 219.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02565032 219.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02565033 219.05921936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02565034 219.05921936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02565035 219.05924988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02565036 219.05924988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02565037 219.05928040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02565038 219.05928040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02565039 219.05929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02565040 219.05929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02565041 219.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02565042 219.05935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02565043 219.05937195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02565044 219.05937195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02565045 219.05940247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02565046 219.05940247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02565047 219.05943298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02565048 219.05943298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02565049 219.05946350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02565050 219.05946350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02565051 219.05947876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02565052 219.05947876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02565053 219.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02565054 219.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02565055 219.05953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02565056 219.05953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02565057 219.05955505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02565058 219.05958557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02565059 219.05961609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02565060 219.05961609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02565061 219.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02565062 219.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02565063 219.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02565064 219.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02565065 219.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02565066 219.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02565067 219.05970764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02565068 219.05970764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02565069 219.05973816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02565070 219.05973816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02565071 219.05976868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02565072 219.05976868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02565073 219.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02565074 219.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02565075 219.05984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02565076 219.05984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02565077 219.05986023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02565078 219.05986023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02565079 219.05989075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02565080 219.05989075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02565081 219.05992126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02565082 219.05992126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02565083 219.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02565084 219.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02565085 219.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02565086 219.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02565087 219.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02565088 219.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02565089 219.06001282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02565090 219.06004333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02565091 219.06007385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02565092 219.06007385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02565093 219.06008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02565094 219.06008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02565095 219.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02565096 219.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02565097 219.06015015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02565098 219.06015015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02565099 219.06016541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02565100 219.06016541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02565101 219.06019592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02565102 219.06019592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02565103 219.06022644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02565104 219.06022644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02565105 219.06025696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02565106 219.06025696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02565107 219.06027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02565108 219.06027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02565109 219.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02565110 219.06033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02565111 219.06034851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02565112 219.06034851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02565113 219.06037903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02565114 219.06037903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02565115 219.06040955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02565116 219.06040955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02565117 219.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02565118 219.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02565119 219.06045532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02565120 219.06045532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02565121 219.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02565122 219.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02565123 219.06050110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02565124 219.06050110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02565125 219.06053162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02565126 219.06053162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02565127 219.06056213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02565128 219.06056213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02565129 219.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02565130 219.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02565131 219.06063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02565132 219.06063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02565133 219.06065369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02565134 219.06065369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02565135 219.06068420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02565136 219.06068420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02565137 219.06071472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02565138 219.06071472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02565139 219.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02565140 219.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02565141 219.06076050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02565142 219.06076050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02565143 219.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02565144 219.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02565145 219.06080627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02565146 219.06080627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02565147 219.06083679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02565148 219.06086731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02565149 219.06088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02565150 219.06088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02565151 219.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02565152 219.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02565153 219.06094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02565154 219.06094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02565155 219.06095886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02565156 219.06095886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02565157 219.06098938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02565158 219.06098938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02565159 219.06101990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02565160 219.06101990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02565161 219.06105042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02565162 219.06105042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02565163 219.06106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02565164 219.06106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02565165 219.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02565166 219.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02565167 219.06112671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02565168 219.06114197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02565169 219.06117249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02565170 219.06117249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02565171 219.06120300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02565172 219.06120300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02565173 219.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02565174 219.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02565175 219.06124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02565176 219.06124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02565177 219.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02565178 219.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02565179 219.06129456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02565180 219.06129456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02565181 219.06132507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02565182 219.06132507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02565183 219.06135559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02565184 219.06135559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02565185 219.06137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02565186 219.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02565187 219.06143188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02565188 219.06143188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02565189 219.06144714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02565190 219.06144714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02565191 219.06147766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02565192 219.06147766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02565193 219.06150818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02565194 219.06150818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02565195 219.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02565196 219.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02565197 219.06155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02565198 219.06155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02565199 219.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02565200 219.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02565201 219.06159973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02565202 219.06159973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02565203 219.06166077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02565204 219.06166077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02565205 219.06167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02565206 219.06167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02565207 219.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02565208 219.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02565209 219.06173706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02565210 219.06173706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02565211 219.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02565212 219.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02565213 219.06178284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02565214 219.06178284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02565215 219.06181335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02565216 219.06181335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02565217 219.06184387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02565218 219.06184387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02565219 219.06185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02565220 219.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02565221 219.06192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02565222 219.06192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02565223 219.06193542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02565224 219.06193542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02565225 219.06196594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02565226 219.06196594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02565227 219.06199646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02565228 219.06199646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02565229 219.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02565230 219.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02565231 219.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02565232 219.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02565233 219.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02565234 219.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02565235 219.06208801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02565236 219.06208801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02565237 219.06211853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02565238 219.06211853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02565239 219.06214905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02565240 219.06216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02565241 219.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02565242 219.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02565243 219.06222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02565244 219.06222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02565245 219.06224060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02565246 219.06224060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02565247 219.06227112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02565248 219.06227112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02565249 219.06230164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02565250 219.06230164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02565251 219.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02565252 219.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02565253 219.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02565254 219.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02565255 219.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02565256 219.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02565257 219.06239319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02565258 219.06239319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02565259 219.06242371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02565260 219.06242371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02565261 219.06246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02565262 219.06246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02565263 219.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02565264 219.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02565265 219.06253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02565266 219.06253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02565267 219.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02565268 219.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02565269 219.06257629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02565270 219.06257629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02565271 219.06260681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02565272 219.06260681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02565273 219.06263733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02565274 219.06263733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02565275 219.06265259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02565276 219.06265259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02565277 219.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02565278 219.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02565279 219.06271362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02565280 219.06271362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02565281 219.06272888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02565282 219.06275940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02565283 219.06278992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02565284 219.06278992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02565285 219.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02565286 219.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02565287 219.06283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02565288 219.06283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02565289 219.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02565290 219.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02565291 219.06288147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02565292 219.06288147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02565293 219.06291199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02565294 219.06291199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02565295 219.06294250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02565296 219.06294250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02565297 219.06295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02565298 219.06295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02565299 219.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02565300 219.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02565301 219.06301880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02565302 219.06303406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02565303 219.06306458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02565304 219.06306458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02565305 219.06309509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02565306 219.06309509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02565307 219.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02565308 219.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02565309 219.06314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02565310 219.06314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02565311 219.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02565312 219.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02565313 219.06318665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02565314 219.06318665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02565315 219.06321716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02565316 219.06321716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02565317 219.06324768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02565318 219.06324768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02565319 219.06326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02565320 219.06326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02565321 219.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02565322 219.06332397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02565323 219.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02565324 219.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02565325 219.06336975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02565326 219.06336975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02565327 219.06340027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02565328 219.06340027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02565329 219.06343079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02565330 219.06343079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02565331 219.06344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02565332 219.06344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02565333 219.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02565334 219.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02565335 219.06350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02565336 219.06350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02565337 219.06352234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02565338 219.06352234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02565339 219.06355286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02565340 219.06355286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02565341 219.06358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02565342 219.06358337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02565343 219.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02565344 219.06362915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02565345 219.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02565346 219.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02565347 219.06367493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02565348 219.06367493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02565349 219.06370544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02565350 219.06370544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02565351 219.06373596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02565352 219.06373596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02565353 219.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02565354 219.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02565355 219.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02565356 219.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02565357 219.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02565358 219.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02565359 219.06382751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02565360 219.06382751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02565361 219.06385803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02565362 219.06385803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02565363 219.06388855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02565364 219.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02565365 219.06393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02565366 219.06393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02565367 219.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02565368 219.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02565369 219.06398010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02565370 219.06398010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02565371 219.06401062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02565372 219.06401062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02565373 219.06404114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02565374 219.06404114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02565375 219.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02565376 219.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02565377 219.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02565378 219.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02565379 219.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02565380 219.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02565381 219.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02565382 219.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02565383 219.06416321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02565384 219.06419373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02565385 219.06422424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02565386 219.06422424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02565387 219.06423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02565388 219.06423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02565389 219.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02565390 219.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02565391 219.06431580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02565392 219.06431580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02565393 219.06434631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02565394 219.06434631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02565395 219.06437683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02565396 219.06437683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02565397 219.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02565398 219.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02565399 219.06442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02565400 219.06442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02565401 219.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02565402 219.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02565403 219.06446838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02565404 219.06446838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02565405 219.06449890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02565406 219.06449890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02565407 219.06452942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02565408 219.06452942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02565409 219.06454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02565410 219.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02565411 219.06460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02565412 219.06460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02565413 219.06462097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02565414 219.06462097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02565415 219.06465149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02565416 219.06465149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02565417 219.06468201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02565418 219.06468201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02565419 219.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02565420 219.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02565421 219.06472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02565422 219.06472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02565423 219.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02565424 219.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02565425 219.06477356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02565426 219.06477356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02565427 219.06480408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02565428 219.06483459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02565429 219.06486511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02565430 219.06486511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02565431 219.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02565432 219.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02565433 219.06491089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02565434 219.06491089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02565435 219.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02565436 219.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02565437 219.06495667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02565438 219.06495667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02565439 219.06498718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02565440 219.06498718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02565441 219.06501770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02565442 219.06501770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02565443 219.06503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02565444 219.06503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02565445 219.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02565446 219.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02565447 219.06509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02565448 219.06509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02565449 219.06510925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02565450 219.06513977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02565451 219.06517029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02565452 219.06517029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02565453 219.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02565454 219.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02565455 219.06521606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02565456 219.06521606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02565457 219.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02565458 219.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02565459 219.06526184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02565460 219.06526184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02565461 219.06529236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02565462 219.06529236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02565463 219.06532288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02565464 219.06532288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02565465 219.06533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02565466 219.06533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02565467 219.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02565468 219.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02565469 219.06539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02565470 219.06539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02565471 219.06541443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02565472 219.06544495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02565473 219.06547546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02565474 219.06547546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02565475 219.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02565476 219.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02565477 219.06552124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02565478 219.06552124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02565479 219.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02565480 219.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02565481 219.06556702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02565482 219.06556702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02565483 219.06559753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02565484 219.06559753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02565485 219.06562805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02565486 219.06562805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02565487 219.06565857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02565488 219.06565857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02565489 219.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02565490 219.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02565491 219.06570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02565492 219.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02565493 219.06575012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02565494 219.06575012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02565495 219.06578064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02565496 219.06578064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02565497 219.06581116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02565498 219.06581116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02565499 219.06582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02565500 219.06582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02565501 219.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02565502 219.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02565503 219.06588745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02565504 219.06588745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02565505 219.06590271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02565506 219.06590271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02565507 219.06593323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02565508 219.06593323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02565509 219.06596375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02565510 219.06596375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02565511 219.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02565512 219.06600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02565513 219.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02565514 219.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02565515 219.06605530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02565516 219.06605530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02565517 219.06608582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02565518 219.06608582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02565519 219.06611633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02565520 219.06611633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02565521 219.06613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02565522 219.06613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02565523 219.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02565524 219.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02565525 219.06619263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02565526 219.06619263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02565527 219.06620789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02565528 219.06620789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02565529 219.06623840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02565530 219.06623840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02565531 219.06626892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02565532 219.06626892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02565533 219.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02565534 219.06631470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02565535 219.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02565536 219.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02565537 219.06636047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02565538 219.06636047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02565539 219.06639099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02565540 219.06639099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02565541 219.06642151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02565542 219.06642151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02565543 219.06645203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02565544 219.06645203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02565545 219.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02565546 219.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02565547 219.06649780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02565548 219.06649780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02565549 219.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02565550 219.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02565551 219.06654358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02565552 219.06654358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02565553 219.06657410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02565554 219.06660461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02565555 219.06661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02565556 219.06661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02565557 219.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02565558 219.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02565559 219.06668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02565560 219.06668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02565561 219.06669617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02565562 219.06669617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02565563 219.06672668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02565564 219.06672668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02565565 219.06675720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02565566 219.06675720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02565567 219.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02565568 219.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02565569 219.06680298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02565570 219.06680298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02565571 219.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02565572 219.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02565573 219.06684875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02565574 219.06687927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02565575 219.06690979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02565576 219.06690979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02565577 219.06692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02565578 219.06692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02565579 219.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02565580 219.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02565581 219.06698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02565582 219.06698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02565583 219.06700134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02565584 219.06700134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02565585 219.06703186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02565586 219.06703186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02565587 219.06706238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02565588 219.06706238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02565589 219.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02565590 219.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02565591 219.06710815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02565592 219.06710815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02565593 219.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02565594 219.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02565595 219.06716919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02565596 219.06718445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02565597 219.06721497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02565598 219.06721497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02565599 219.06724548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02565600 219.06724548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02565601 219.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02565602 219.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02565603 219.06729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02565604 219.06729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02565605 219.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02565606 219.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02565607 219.06733704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02565608 219.06733704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02565609 219.06736755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02565610 219.06736755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02565611 219.06739807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02565612 219.06739807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02565613 219.06741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02565614 219.06741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02565615 219.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02565616 219.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02565617 219.06747437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02565618 219.06748962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02565619 219.06752014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02565620 219.06752014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02565621 219.06755066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02565622 219.06755066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02565623 219.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02565624 219.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02565625 219.06759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02565626 219.06759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02565627 219.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02565628 219.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02565629 219.06764221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02565630 219.06764221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02565631 219.06767273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02565632 219.06767273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02565633 219.06770325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02565634 219.06770325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02565635 219.06771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02565636 219.06771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02565637 219.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02565638 219.06777954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02565639 219.06779480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02565640 219.06779480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02565641 219.06782532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02565642 219.06782532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02565643 219.06785583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02565644 219.06785583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02565645 219.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02565646 219.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02565647 219.06790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02565648 219.06790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02565649 219.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02565650 219.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02565651 219.06796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02565652 219.06796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02565653 219.06797791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02565654 219.06797791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02565655 219.06800842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02565656 219.06800842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02565657 219.06803894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02565658 219.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02565659 219.06808472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02565660 219.06808472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02565661 219.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02565662 219.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02565663 219.06813049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02565664 219.06813049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02565665 219.06816101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02565666 219.06816101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02565667 219.06819153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02565668 219.06819153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02565669 219.06820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02565670 219.06820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02565671 219.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02565672 219.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02565673 219.06826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02565674 219.06826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02565675 219.06828308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02565676 219.06828308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02565677 219.06831360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02565678 219.06831360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02565679 219.06834412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02565680 219.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02565681 219.06838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02565682 219.06838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02565683 219.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02565684 219.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02565685 219.06843567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02565686 219.06843567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02565687 219.06846619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02565688 219.06846619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02565689 219.06849670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02565690 219.06849670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02565691 219.06851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02565692 219.06851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02565693 219.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02565694 219.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02565695 219.06857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02565696 219.06857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02565697 219.06858826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02565698 219.06858826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02565699 219.06861877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02565700 219.06861877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02565701 219.06864929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02565702 219.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02565703 219.06869507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02565704 219.06869507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02565705 219.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02565706 219.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02565707 219.06875610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02565708 219.06875610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02565709 219.06877136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02565710 219.06877136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02565711 219.06880188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02565712 219.06880188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02565713 219.06883240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02565714 219.06883240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02565715 219.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02565716 219.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02565717 219.06887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02565718 219.06887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02565719 219.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02565720 219.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02565721 219.06892395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02565722 219.06895447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02565723 219.06898499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02565724 219.06898499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02565725 219.06900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02565726 219.06900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02565727 219.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02565728 219.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02565729 219.06906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02565730 219.06906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02565731 219.06907654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02565732 219.06907654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02565733 219.06910706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02565734 219.06910706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02565735 219.06913757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02565736 219.06913757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02565737 219.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02565738 219.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02565739 219.06918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02565740 219.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02565741 219.06922913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02565742 219.06922913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02565743 219.06925964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02565744 219.06925964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02565745 219.06929016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02565746 219.06929016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02565747 219.06930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02565748 219.06930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02565749 219.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02565750 219.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02565751 219.06936646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02565752 219.06936646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02565753 219.06938171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02565754 219.06938171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02565755 219.06941223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02565756 219.06941223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02565757 219.06944275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02565758 219.06944275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02565759 219.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02565760 219.06948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02565761 219.06948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02565762 219.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02565763 219.06954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02565764 219.06954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02565765 219.06956482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02565766 219.06956482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02565767 219.06959534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02565768 219.06959534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02565769 219.06962585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02565770 219.06962585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02565771 219.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02565772 219.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02565773 219.06967163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02565774 219.06967163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02565775 219.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02565776 219.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02565777 219.06971741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02565778 219.06971741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02565779 219.06974792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02565780 219.06977844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02565781 219.06979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02565782 219.06979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02565783 219.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02565784 219.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02565785 219.06985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02565786 219.06985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02565787 219.06987000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02565788 219.06987000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02565789 219.06990051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02565790 219.06990051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02565791 219.06993103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02565792 219.06993103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02565793 219.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02565794 219.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02565795 219.06997681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02565796 219.06997681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02565797 219.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02565798 219.07002258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02565799 219.07005310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02565800 219.07005310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02565801 219.07008362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02565802 219.07008362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02565803 219.07009888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02565804 219.07009888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02565805 219.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02565806 219.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02565807 219.07015991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02565808 219.07015991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02565809 219.07017517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02565810 219.07017517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02565811 219.07020569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02565812 219.07020569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02565813 219.07023621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02565814 219.07023621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02565815 219.07028198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02565816 219.07028198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02565817 219.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02565818 219.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02565819 219.07034302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02565820 219.07034302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02565821 219.07035828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02565822 219.07035828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02565823 219.07038879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02565824 219.07038879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02565825 219.07041931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02565826 219.07041931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02565827 219.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02565828 219.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02565829 219.07046509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02565830 219.07046509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02565831 219.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02565832 219.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02565833 219.07051086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02565834 219.07054138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02565835 219.07057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02565836 219.07057190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02565837 219.07058716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02565838 219.07058716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02565839 219.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02565840 219.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02565841 219.07064819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02565842 219.07064819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02565843 219.07066345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02565844 219.07066345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02565845 219.07069397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02565846 219.07069397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02565847 219.07072449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02565848 219.07072449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02565849 219.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02565850 219.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02565851 219.07077026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02565852 219.07077026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02565853 219.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02565854 219.07081604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02565855 219.07084656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02565856 219.07084656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02565857 219.07087708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02565858 219.07087708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02565859 219.07089233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02565860 219.07089233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02565861 219.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02565862 219.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02565863 219.07095337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02565864 219.07095337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02565865 219.07096863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02565866 219.07096863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02565867 219.07099915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02565868 219.07099915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02565869 219.07102966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02565870 219.07102966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02565871 219.07106018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02565872 219.07107544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02565873 219.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02565874 219.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02565875 219.07113647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02565876 219.07113647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02565877 219.07115173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02565878 219.07115173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02565879 219.07118225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02565880 219.07118225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02565881 219.07121277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02565882 219.07121277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02565883 219.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02565884 219.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02565885 219.07125854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02565886 219.07125854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02565887 219.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02565888 219.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02565889 219.07130432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02565890 219.07130432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02565891 219.07133484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02565892 219.07136536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02565893 219.07138062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02565894 219.07138062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02565895 219.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02565896 219.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02565897 219.07144165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02565898 219.07144165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02565899 219.07145691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02565900 219.07145691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02566799 219.08436584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02566800 219.08436584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -02566801 219.08439636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02566802 219.08439636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -02566803 219.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02566804 219.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -02566805 219.08444214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02566806 219.08444214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -02566807 219.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02566808 219.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -02566809 219.08448792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02566810 219.08448792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -02566811 219.08451843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02566812 219.08451843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -02566813 219.08454895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02566814 219.08454895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -02566815 219.08456421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02566816 219.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -02566817 219.08462524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02566818 219.08462524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -02566819 219.08464050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02566820 219.08464050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -02566821 219.08467102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02566822 219.08467102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -02566823 219.08470154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02566824 219.08470154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -02566825 219.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02566826 219.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -02566827 219.08474731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02566828 219.08474731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -02566829 219.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02566830 219.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -02566831 219.08479309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02566832 219.08479309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -02566833 219.08482361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02566834 219.08485413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -02566835 219.08486938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02566836 219.08486938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -02566837 219.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02566838 219.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -02566839 219.08493042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02566840 219.08493042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -02566841 219.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02566842 219.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -02574343 219.19728088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -02574344 219.19728088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -02574345 219.19731140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -02574346 219.19731140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -02574347 219.19734192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -02574348 219.19735718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -02574349 219.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -02574350 219.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -02574351 219.19741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -02574352 219.19741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -02574353 219.19743347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -02574354 219.19743347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -02574355 219.19746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -02574356 219.19746399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -02574357 219.19749451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -02574358 219.19749451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -02574359 219.19750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c98 -02574360 219.19750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c98 -02574361 219.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca8 -02574362 219.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ca8 -02574363 219.19757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb8 -02574364 219.19757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cb8 -02574365 219.19758606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc8 -02574366 219.19761658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cc8 -02574367 219.19764709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd8 -02574368 219.19764709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cd8 -02574369 219.19767761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce8 -02574370 219.19767761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ce8 -02574371 219.19769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf8 -02574372 219.19769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14cf8 -02574373 219.19772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d08 -02574374 219.19772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d08 -02574375 219.19775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d18 -02574376 219.19775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d18 -02574377 219.19776917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d28 -02574378 219.19776917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d28 -02574379 219.19783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d38 -02574380 219.19783020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d38 -02574381 219.19784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d48 -02574382 219.19784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d48 -02574383 219.19790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d58 -02574384 219.19790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d58 -02574385 219.19792175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d68 -02574386 219.19792175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d68 -02589439 219.41476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d8 -02589440 219.41476440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323d8 -02589441 219.41477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e8 -02589442 219.41477966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323e8 -02589443 219.41481018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f8 -02589444 219.41481018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x323f8 -02589445 219.41484070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32408 -02589446 219.41484070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32408 -02589447 219.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32418 -02589448 219.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32418 -02589449 219.41488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -02589450 219.41488647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -02589451 219.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -02589452 219.41493225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -02589453 219.41496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -02589454 219.41496277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -02589455 219.41499329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -02589456 219.41499329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -02589457 219.41500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -02589458 219.41500854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -02589459 219.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -02589460 219.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -02589461 219.41506958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -02589462 219.41506958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -02589463 219.41508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -02589464 219.41508484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -02589465 219.41511536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -02589466 219.41511536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -02589467 219.41514587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -02589468 219.41514587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -02589469 219.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -02589470 219.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -02589471 219.41519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -02589472 219.41519165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -02589473 219.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -02589474 219.41523743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -02589475 219.41526794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -02589476 219.41526794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -02589477 219.41529846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -02589478 219.41529846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -02589479 219.41532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -02589480 219.41532898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -02589481 219.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -02589482 219.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -02593779 219.47569275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -02593780 219.47569275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab78 -02593781 219.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -02593782 219.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab88 -02593783 219.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -02593784 219.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab98 -02593785 219.47576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -02593786 219.47578430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba8 -02593787 219.47581482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -02593788 219.47581482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb8 -02593789 219.47584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -02593790 219.47584534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc8 -02593791 219.47586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -02593792 219.47586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd8 -02593793 219.47589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -02593794 219.47589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe8 -02593795 219.47592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -02593796 219.47592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf8 -02593797 219.47593689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -02593798 219.47593689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac08 -02593799 219.47596741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -02593800 219.47596741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac18 -02593801 219.47599792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -02593802 219.47599792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac28 -02593803 219.47601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -02593804 219.47601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac38 -02593805 219.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -02593806 219.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac48 -02593807 219.47607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -02593808 219.47608948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac58 -02593809 219.47612000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac68 -02593810 219.47612000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac68 -02593811 219.47615051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac78 -02593812 219.47615051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac78 -02593813 219.47616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac88 -02593814 219.47616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac88 -02593815 219.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac98 -02593816 219.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac98 -02593817 219.47622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca8 -02593818 219.47622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aca8 -02593819 219.47624207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb8 -02593820 219.47624207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acb8 -02593821 219.47627258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc8 -02593822 219.47627258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3acc8 -02599835 219.56076050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -02599836 219.56077576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468b8 -02599837 219.56077576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -02599838 219.56080627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468c8 -02599839 219.56083679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -02599840 219.56083679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468d8 -02599841 219.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -02599842 219.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468e8 -02599843 219.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -02599844 219.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x468f8 -02599845 219.56091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -02599846 219.56091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46908 -02599847 219.56092834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -02599848 219.56092834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46918 -02599849 219.56095886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -02599850 219.56095886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46928 -02599851 219.56098938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -02599852 219.56098938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46938 -02599853 219.56100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -02599854 219.56100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46948 -02599855 219.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -02599856 219.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46958 -02599857 219.56106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -02599858 219.56106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46968 -02599859 219.56108093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -02599860 219.56108093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46978 -02599861 219.56111145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -02599862 219.56111145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46988 -02599863 219.56114197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -02599864 219.56114197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46998 -02599865 219.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a8 -02599866 219.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469a8 -02599867 219.56118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b8 -02599868 219.56118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469b8 -02599869 219.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c8 -02599870 219.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469c8 -02599871 219.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d8 -02599872 219.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469d8 -02599873 219.56126404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e8 -02599874 219.56126404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469e8 -02599875 219.56129456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f8 -02599876 219.56129456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f8 -02599877 219.56132507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a08 -02599878 219.56132507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a08 -02605137 219.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e68 -02605138 219.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e68 -02605139 219.63442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e78 -02605140 219.63442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e78 -02605141 219.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e88 -02605142 219.63447571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e88 -02605143 219.63447571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e98 -02605144 219.63450623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e98 -02605145 219.63453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea8 -02605146 219.63453674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ea8 -02605147 219.63456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb8 -02605148 219.63456726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50eb8 -02605149 219.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec8 -02605150 219.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ec8 -02605151 219.63461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed8 -02605152 219.63461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ed8 -02605153 219.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee8 -02605154 219.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee8 -02605155 219.63465881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -02605156 219.63465881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -02605157 219.63468933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -02605158 219.63468933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -02605159 219.63471985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -02605160 219.63471985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -02605161 219.63473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -02605162 219.63473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -02605163 219.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -02605164 219.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -02605165 219.63479614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -02605166 219.63479614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -02605167 219.63481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -02605168 219.63481140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -02605169 219.63484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -02605170 219.63484192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -02605171 219.63487244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -02605172 219.63487244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -02605173 219.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -02605174 219.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -02605175 219.63491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -02605176 219.63491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -02605177 219.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -02605178 219.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -02605179 219.63496399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -02605180 219.63496399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -02606125 220.76585388 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02606126 220.78594971 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606127 220.78596497 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606128 221.55233765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606129 221.55238342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606130 221.55241394 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02606131 221.55241394 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02606132 221.55253601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606133 221.55253601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02606134 221.55261230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02606135 221.55261230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02606136 222.28004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02606137 222.28004456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02606138 222.28005981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02606139 222.28005981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02606140 222.28009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02606141 222.28009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02606142 222.28012085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02606143 222.28012085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02606144 222.28013611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02606145 222.28016663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02606146 222.28019714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02606147 222.28019714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02606148 222.28021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02606149 222.28021240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02606150 222.28024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02606151 222.28024292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02606152 222.28027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02606153 222.28027344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02606154 222.28028870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02606155 222.28028870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02606156 222.28031921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02606157 222.28031921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02606158 222.28034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02606159 222.28034973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02606160 222.28036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02606161 222.28036499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02606162 222.28039551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02606163 222.28039551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02606164 222.28042603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02606165 222.28044128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02606166 222.28047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02606167 222.28047180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02606168 222.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02606169 222.28050232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02606170 222.28051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02606171 222.28051758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02606172 222.28054810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02606173 222.28054810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02606174 222.28060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02606175 222.28060913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02606176 222.28062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02606177 222.28062439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02606178 222.28065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02606179 222.28065491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02606180 222.28070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02606181 222.28070068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02606182 222.28073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02606183 222.28073120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02606184 222.28076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02606185 222.28076172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02606186 222.28077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02606187 222.28077698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02606188 222.28080750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02606189 222.28080750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02606190 222.28083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02606191 222.28083801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02606192 222.28085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02606193 222.28085327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02606194 222.28088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02606195 222.28088379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02606196 222.28091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02606197 222.28091431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02606198 222.28092957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02606199 222.28096008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02606200 222.28099060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02606201 222.28099060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02606202 222.28100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02606203 222.28100586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02606204 222.28103638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02606205 222.28103638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02606206 222.28106689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02606207 222.28106689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02606208 222.28108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02606209 222.28108215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02606210 222.28111267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02606211 222.28111267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02606212 222.28114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02606213 222.28114319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02606214 222.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02606215 222.28115845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02606216 222.28118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02606217 222.28118896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02606218 222.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02606219 222.28121948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02606220 222.28123474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02606221 222.28126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02606222 222.28126526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02606223 222.28129578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02606224 222.28131104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02606225 222.28131104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02606226 222.28134155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02606227 222.28134155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02606228 222.28137207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02606229 222.28137207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02606230 222.28140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02606231 222.28140259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02606232 222.28141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02606233 222.28141785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02606234 222.28144836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02606235 222.28144836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02606236 222.28147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02606237 222.28147888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02606238 222.28149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02606239 222.28149414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02606240 222.28152466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02606241 222.28152466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02606242 222.28155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02606243 222.28155518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02606244 222.28157043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02606245 222.28157043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02606246 222.28160095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02606247 222.28160095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02606248 222.28163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02606249 222.28163147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02606250 222.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02606251 222.28164673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02606252 222.28167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02606253 222.28167725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02606254 222.28170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02606255 222.28170776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02606256 222.28172302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02606257 222.28172302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02606258 222.28175354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02606259 222.28178406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02606260 222.28179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02606261 222.28179932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02606262 222.28182983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02606263 222.28182983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02606264 222.28186035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02606265 222.28187561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02606266 222.28190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02606267 222.28190613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02606268 222.28193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02606269 222.28193665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02606270 222.28195190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02606271 222.28195190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02606272 222.28198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02606273 222.28198242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02606274 222.28201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02606275 222.28201294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02606276 222.28202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02606277 222.28202820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02606278 222.28205872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02606279 222.28205872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02606280 222.28208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02606281 222.28208923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02606282 222.28210449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02606283 222.28213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02606284 222.28213501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02606285 222.28216553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02606286 222.28219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02606287 222.28219604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02606288 222.28221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02606289 222.28221130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02606290 222.28224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02606291 222.28224182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02606292 222.28227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02606293 222.28227234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02606294 222.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02606295 222.28228760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02606296 222.28231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02606297 222.28231812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02606298 222.28234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02606299 222.28234863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02606300 222.28236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02606301 222.28236389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02606302 222.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02606303 222.28239441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02606304 222.28242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02606305 222.28242493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02606306 222.28244019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02606307 222.28247070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02606308 222.28250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02606309 222.28250122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02606310 222.28251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02606311 222.28251648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02606312 222.28254700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02606313 222.28254700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02606314 222.28257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02606315 222.28257751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02606316 222.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02606317 222.28259277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02606318 222.28262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02606319 222.28262329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02606320 222.28265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02606321 222.28265381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02606322 222.28266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02606323 222.28266907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02606324 222.28269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02606325 222.28269958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02606326 222.28273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02606327 222.28273010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02606328 222.28274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02606329 222.28274536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02606330 222.28277588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02606331 222.28277588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02606332 222.28280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02606333 222.28280640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02606334 222.28285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02606335 222.28285217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02606336 222.28288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02606337 222.28288269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02606338 222.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02606339 222.28291321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02606340 222.28292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02606341 222.28292847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02606342 222.28295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02606343 222.28295898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02606344 222.28298950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02606345 222.28298950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02606346 222.28300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02606347 222.28300476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02606348 222.28303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02606349 222.28303528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02606350 222.28306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02606351 222.28306580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02606352 222.28308105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02606353 222.28311157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02606354 222.28311157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02606355 222.28314209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02606356 222.28315735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02606357 222.28315735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02606358 222.28318787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02606359 222.28318787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02606360 222.28321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02606361 222.28321838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02606362 222.28323364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02606363 222.28323364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02606364 222.28326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02606365 222.28326416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02606366 222.28329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02606367 222.28329468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02606368 222.28330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02606369 222.28330994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02606370 222.28337097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02606371 222.28337097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02606372 222.28338623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02606373 222.28341675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02606374 222.28344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02606375 222.28344727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02606376 222.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02606377 222.28346252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02606378 222.28349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02606379 222.28349304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02606380 222.28352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02606381 222.28352356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02606382 222.28353882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02606383 222.28353882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02606384 222.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02606385 222.28356934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02606386 222.28359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02606387 222.28359985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02606388 222.28361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02606389 222.28361511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02606390 222.28364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02606391 222.28364563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02606392 222.28367615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02606393 222.28367615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02606394 222.28370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02606395 222.28370667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02606396 222.28372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02606397 222.28372192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02606398 222.28375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02606399 222.28375244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02606400 222.28378296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02606401 222.28379822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02606402 222.28382874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02606403 222.28382874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02606404 222.28385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02606405 222.28385925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02606406 222.28387451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02606407 222.28387451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02606408 222.28390503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02606409 222.28390503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02606410 222.28393555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02606411 222.28393555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02606412 222.28395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02606413 222.28395081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02606414 222.28398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02606415 222.28398132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02606416 222.28401184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02606417 222.28401184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02606418 222.28402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02606419 222.28402710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02606420 222.28405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02606421 222.28405762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02606422 222.28408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02606423 222.28408813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02606424 222.28410339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02606425 222.28410339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02606426 222.28413391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02606427 222.28413391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02606428 222.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02606429 222.28416443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02606430 222.28417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02606431 222.28417969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02606432 222.28421021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02606433 222.28424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02606434 222.28424072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02606435 222.28425598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02606436 222.28428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02606437 222.28428650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02606438 222.28431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02606439 222.28431702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02606440 222.28433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02606441 222.28433228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02606442 222.28436279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02606443 222.28436279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02606444 222.28439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02606445 222.28439331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02606446 222.28440857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02606447 222.28440857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02606448 222.28443909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02606449 222.28443909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02606450 222.28446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02606451 222.28446960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02606452 222.28450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02606453 222.28450012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02606454 222.28451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02606455 222.28451538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02606456 222.28454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02606457 222.28454590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02606458 222.28457642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02606459 222.28459167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02606460 222.28462219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02606461 222.28462219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02606462 222.28465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02606463 222.28465271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02606464 222.28466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02606465 222.28466797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02606466 222.28469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02606467 222.28469849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02606468 222.28472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02606469 222.28472900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02606470 222.28474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02606471 222.28474426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02606472 222.28477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02606473 222.28477478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02606474 222.28480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02606475 222.28480530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02606476 222.28482056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02606477 222.28485107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02606478 222.28488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02606479 222.28488159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02606480 222.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02606481 222.28489685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02606482 222.28492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02606483 222.28492737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02606484 222.28495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02606485 222.28495789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02606486 222.28497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02606487 222.28497314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02606488 222.28500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02606489 222.28500366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02606490 222.28503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02606491 222.28503418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02606492 222.28504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02606493 222.28504944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02606494 222.28507996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02606495 222.28507996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02606496 222.28511047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02606497 222.28512573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02606498 222.28515625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02606499 222.28515625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02606500 222.28518677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02606501 222.28518677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02606502 222.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02606503 222.28520203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02606504 222.28523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02606505 222.28523254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02606506 222.28526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02606507 222.28526306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02606508 222.28529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02606509 222.28529358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02606510 222.28530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02606511 222.28530884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02606512 222.28533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02606513 222.28533936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02606514 222.28536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02606515 222.28536987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02606516 222.28538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02606517 222.28538513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02606518 222.28541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02606519 222.28541565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02606520 222.28544617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02606521 222.28546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02606522 222.28546143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02606523 222.28549194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02606524 222.28552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02606525 222.28552246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02606526 222.28553772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02606527 222.28553772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02606528 222.28556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02606529 222.28556824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02606530 222.28559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02606531 222.28559875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02606532 222.28561401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02606533 222.28561401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02606534 222.28564453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02606535 222.28564453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02606536 222.28567505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02606537 222.28567505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02606538 222.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02606539 222.28569031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02606540 222.28572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02606541 222.28572083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02606542 222.28575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02606543 222.28575134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02606544 222.28576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02606545 222.28576660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02606546 222.28579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02606547 222.28579712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02606548 222.28582764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02606549 222.28584290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02606550 222.28587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02606551 222.28587341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02606552 222.28590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02606553 222.28590393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02606554 222.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02606555 222.28591919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02606556 222.28594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02606557 222.28594971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02606558 222.28598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02606559 222.28598022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02606560 222.28601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02606561 222.28601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02606562 222.28602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02606563 222.28602600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02606564 222.28605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02606565 222.28605652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02606566 222.28608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02606567 222.28608704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02606568 222.28610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02606569 222.28610229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02606570 222.28613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02606571 222.28616333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02606572 222.28617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02606573 222.28617859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02606574 222.28620911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02606575 222.28620911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02606576 222.28623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02606577 222.28623962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02606578 222.28625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02606579 222.28625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02606580 222.28628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02606581 222.28628540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02606582 222.28631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02606583 222.28631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02606584 222.28633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02606585 222.28633118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02606586 222.28636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02606587 222.28636169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02606588 222.28639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02606589 222.28639221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02606590 222.28640747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02606591 222.28643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02606592 222.28646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02606593 222.28646851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02606594 222.28648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02606595 222.28648376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02606596 222.28651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02606597 222.28651428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02606598 222.28654480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02606599 222.28654480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02606600 222.28656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02606601 222.28656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02606602 222.28659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02606603 222.28659058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02606604 222.28662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02606605 222.28662109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02606606 222.28663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02606607 222.28663635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02606608 222.28666687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02606609 222.28666687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02606610 222.28669739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02606611 222.28671265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02606612 222.28674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02606613 222.28674316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02606614 222.28677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02606615 222.28677368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02606616 222.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02606617 222.28680420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02606618 222.28681946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02606619 222.28681946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02606620 222.28684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02606621 222.28684998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02606622 222.28688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02606623 222.28688049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02606624 222.28689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02606625 222.28689575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02606626 222.28692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02606627 222.28692627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02606628 222.28695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02606629 222.28695679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02606630 222.28697205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02606631 222.28700256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02606632 222.28703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02606633 222.28703308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02606634 222.28704834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02606635 222.28704834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02606636 222.28707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02606637 222.28707886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02606638 222.28710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02606639 222.28710938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02606640 222.28712463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02606641 222.28712463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02606642 222.28715515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02606643 222.28715515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02606644 222.28718567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02606645 222.28718567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02606646 222.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02606647 222.28720093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02606648 222.28723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02606649 222.28723145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02606650 222.28726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02606651 222.28726196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02606652 222.28727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02606653 222.28727722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02606654 222.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02606655 222.28730774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02606656 222.28733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02606657 222.28733826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02606658 222.28735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02606659 222.28735352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02606660 222.28738403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02606661 222.28738403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02606662 222.28741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02606663 222.28741455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02606664 222.28742981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02606665 222.28746033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02606666 222.28746033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02606667 222.28749084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02606668 222.28750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02606669 222.28750610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02606670 222.28753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02606671 222.28753662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02606672 222.28756714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02606673 222.28756714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02606674 222.28759766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02606675 222.28759766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02606676 222.28761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02606677 222.28761292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02606678 222.28764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02606679 222.28764343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02606680 222.28767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02606681 222.28767395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02606682 222.28768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02606683 222.28768921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02606684 222.28771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02606685 222.28771973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02606686 222.28775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02606687 222.28775024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02606688 222.28776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02606689 222.28776550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02606690 222.28779602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02606691 222.28779602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02606692 222.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02606693 222.28782654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02606694 222.28784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02606695 222.28784180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02606696 222.28787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02606697 222.28787231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02606698 222.28790283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02606699 222.28790283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02606700 222.28791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02606701 222.28791809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02606702 222.28794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02606703 222.28794861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02606704 222.28797913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02606705 222.28797913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02606706 222.28799438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02606707 222.28802490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02606708 222.28802490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02606709 222.28805542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02606710 222.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02606711 222.28807068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02606712 222.28810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02606713 222.28810120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02606714 222.28813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02606715 222.28813171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02606716 222.28814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02606717 222.28814697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02606718 222.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02606719 222.28817749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02606720 222.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02606721 222.28820801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02606722 222.28822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02606723 222.28822327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02606724 222.28825378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02606725 222.28825378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02606726 222.28828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02606727 222.28828430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02606728 222.28831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02606729 222.28831482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02606730 222.28833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02606731 222.28833008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02606732 222.28836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02606733 222.28836060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02606734 222.28839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02606735 222.28839111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02606736 222.28840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02606737 222.28840637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02606738 222.28843689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02606739 222.28843689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02606740 222.28846741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02606741 222.28846741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02606742 222.28848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02606743 222.28848267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02606744 222.28851318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02606745 222.28851318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02606746 222.28854370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02606747 222.28854370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02606748 222.28855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02606749 222.28855896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02606750 222.28858948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02606751 222.28862000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02606752 222.28863525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02606753 222.28863525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02606754 222.28866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02606755 222.28866577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02606756 222.28869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02606757 222.28869629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02606758 222.28871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02606759 222.28871155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02606760 222.28874207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02606761 222.28874207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02606762 222.28877258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02606763 222.28877258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02606764 222.28878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02606765 222.28878784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02606766 222.28881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02606767 222.28881836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02606768 222.28884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02606769 222.28884888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02606770 222.28886414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02606771 222.28889465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02606772 222.28892517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02606773 222.28892517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02606774 222.28894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02606775 222.28894043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02606776 222.28897095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02606777 222.28897095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02606778 222.28900146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02606779 222.28900146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02606780 222.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02606781 222.28901672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02606782 222.28904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02606783 222.28904724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02606784 222.28907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02606785 222.28907776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02606786 222.28910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02606787 222.28910828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02606788 222.28912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02606789 222.28912354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02606790 222.28915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02606791 222.28915405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02606792 222.28918457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02606793 222.28919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02606794 222.28919983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02606795 222.28923035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02606796 222.28926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02606797 222.28926086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02606798 222.28927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02606799 222.28927612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02606800 222.28930664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02606801 222.28930664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02606802 222.28933716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02606803 222.28933716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02606804 222.28935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02606805 222.28935242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02606806 222.28938293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02606807 222.28938293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02606808 222.28941345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02606809 222.28941345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02606810 222.28942871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02606811 222.28942871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02606812 222.28945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02606813 222.28945923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02606814 222.28948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02606815 222.28948975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02606816 222.28950500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02606817 222.28950500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02606818 222.28953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02606819 222.28953552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02606820 222.28956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02606821 222.28956604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02606822 222.28958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02606823 222.28958130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02606824 222.28961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02606825 222.28961182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02606826 222.28964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02606827 222.28964233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02606828 222.28965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02606829 222.28965759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02606830 222.28968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02606831 222.28968811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02606832 222.28971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02606833 222.28971863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02606834 222.28973389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02606835 222.28976440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02606836 222.28979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02606837 222.28979492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02606838 222.28981018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02606839 222.28981018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02606840 222.28984070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02606841 222.28984070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02606842 222.28987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02606843 222.28987122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02606844 222.28990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02606845 222.28990173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02606846 222.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02606847 222.28991699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02606848 222.28994751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02606849 222.28994751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02606850 222.28997803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02606851 222.28997803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02606852 222.28999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02606853 222.28999329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02606854 222.29002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02606855 222.29002380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02606856 222.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02606857 222.29005432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02606858 222.29006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02606859 222.29006958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02606860 222.29013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02606861 222.29013062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02606862 222.29014587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02606863 222.29014587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02606864 222.29017639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02606865 222.29017639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02606866 222.29022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02606867 222.29022217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02606868 222.29025269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02606869 222.29025269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02606870 222.29028320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02606871 222.29028320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02606872 222.29029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02606873 222.29029846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02606874 222.29032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02606875 222.29032898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02606876 222.29035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02606877 222.29035950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02606878 222.29037476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02606879 222.29037476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02606880 222.29040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02606881 222.29040527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02606882 222.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02606883 222.29043579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02606884 222.29045105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02606885 222.29045105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02606886 222.29048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02606887 222.29048157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02606888 222.29051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02606889 222.29051208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02606890 222.29052734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02606891 222.29055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02606892 222.29055786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02606893 222.29058838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02606894 222.29058838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02606895 222.29060364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02606896 222.29063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02606897 222.29063416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02606898 222.29066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02606899 222.29066467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02606900 222.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02606901 222.29069519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02606902 222.29071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02606903 222.29071045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02606904 222.29074097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02606905 222.29074097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02606906 222.29077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02606907 222.29077148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02606908 222.29078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02606909 222.29078674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02606910 222.29081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02606911 222.29081726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02606912 222.29084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02606913 222.29084778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02606914 222.29086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02606915 222.29086304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02606916 222.29089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02606917 222.29089355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02606918 222.29092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02606919 222.29092407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02606920 222.29093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02606921 222.29093933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02606922 222.29096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02606923 222.29096985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02606924 222.29100037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02606925 222.29101563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02606926 222.29104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02606927 222.29104614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02606928 222.29107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02606929 222.29107666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02606930 222.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02606931 222.29109192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02606932 222.29112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02606933 222.29112244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02606934 222.29115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02606935 222.29115295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02606936 222.29116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02606937 222.29116821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02606938 222.29119873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02606939 222.29119873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02606940 222.29122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02606941 222.29122925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02606942 222.29124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02606943 222.29124451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02606944 222.29127502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02606945 222.29130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02606946 222.29130554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02606947 222.29132080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02606948 222.29135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02606949 222.29135132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02606950 222.29138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02606951 222.29138184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02606952 222.29141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02606953 222.29141235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02606954 222.29142761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02606955 222.29142761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02606956 222.29145813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02606957 222.29145813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02606958 222.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02606959 222.29148865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02606960 222.29150391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02606961 222.29150391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02606962 222.29153442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02606963 222.29153442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02606964 222.29156494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02606965 222.29156494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02606966 222.29158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02606967 222.29158020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02606968 222.29161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02606969 222.29161072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02606970 222.29164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02606971 222.29164124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02606972 222.29165649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02606973 222.29165649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02606974 222.29168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02606975 222.29168701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02606976 222.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02606977 222.29171753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02606978 222.29173279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02606979 222.29173279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02606980 222.29176331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02606981 222.29176331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02606982 222.29179382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02606983 222.29179382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02606984 222.29180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02606985 222.29180908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02606986 222.29183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02606987 222.29183960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02606988 222.29187012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02606989 222.29188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02606990 222.29188538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02606991 222.29191589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02606992 222.29194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02606993 222.29194641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02606994 222.29196167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02606995 222.29196167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02606996 222.29199219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02606997 222.29199219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02606998 222.29202271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02606999 222.29202271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02607000 222.29203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02607001 222.29203796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02607002 222.29206848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02607003 222.29206848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02607004 222.29209900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02607005 222.29209900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02607006 222.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02607007 222.29211426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02607008 222.29214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02607009 222.29214478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02607010 222.29217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02607011 222.29217529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02607012 222.29220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02607013 222.29220581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02607014 222.29222107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02607015 222.29222107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02615878 222.41781616 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a8 -02615879 222.41784668 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -02615880 222.41786194 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -02615881 222.41789246 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -02615882 222.41789246 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -02615883 222.41792297 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -02615884 222.41792297 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -02615885 222.41796875 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -02615886 222.41796875 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -02615887 222.41799927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f8 -02615888 222.41799927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f8 -02615889 222.41804504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14108 -02615890 222.41804504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14108 -02615891 222.41807556 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14118 -02615892 222.41807556 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14118 -02615893 222.41812134 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14128 -02615894 222.41812134 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14128 -02615895 222.41815186 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14138 -02615896 222.41815186 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14138 -02615897 222.41819763 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14148 -02615898 222.41819763 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14148 -02615899 222.41822815 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14158 -02615900 222.41822815 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14158 -02615901 222.41827393 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14168 -02615902 222.41827393 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14168 -02615903 222.41830444 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14178 -02615904 222.41830444 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14178 -02615905 222.41835022 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14188 -02615906 222.41835022 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14188 -02615907 222.41838074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14198 -02615908 222.41841125 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14198 -02615909 222.41842651 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a8 -02615910 222.41842651 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141a8 -02615911 222.41845703 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b8 -02615912 222.41848755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141b8 -02615913 222.41850281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c8 -02615914 222.41850281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141c8 -02615915 222.41853333 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d8 -02615916 222.41856384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141d8 -02615917 222.41857910 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e8 -02615918 222.41857910 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141e8 -02615919 222.41864014 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f8 -02615920 222.41864014 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x141f8 -02615921 222.41865540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14208 -02623359 222.52787781 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a78 -02623360 222.52789307 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a78 -02623362 222.52792358 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a88 -02623363 222.52792358 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a88 -02623364 222.52795410 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a98 -02623365 222.52795410 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a98 -02623366 222.52796936 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa8 -02623367 222.52796936 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22aa8 -02623368 222.52799988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab8 -02623369 222.52799988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ab8 -02623370 222.52803040 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac8 -02623371 222.52803040 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ac8 -02623372 222.52804565 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad8 -02623373 222.52804565 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ad8 -02623374 222.52807617 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae8 -02623375 222.52807617 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ae8 -02623376 222.52810669 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af8 -02623377 222.52810669 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22af8 -02623378 222.52812195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b08 -02623379 222.52812195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b08 -02623380 222.52815247 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b18 -02623381 222.52815247 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b18 -02623382 222.52818298 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b28 -02623383 222.52819824 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b28 -02623384 222.52822876 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b38 -02623385 222.52822876 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b38 -02623386 222.52825928 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b48 -02623387 222.52825928 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b48 -02623388 222.52827454 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b58 -02623389 222.52827454 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b58 -02623390 222.52830505 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b68 -02623391 222.52830505 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b68 -02623392 222.52833557 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b78 -02623393 222.52833557 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b78 -02623394 222.52835083 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b88 -02623395 222.52835083 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b88 -02623396 222.52838135 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b98 -02623397 222.52838135 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b98 -02623398 222.52841187 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba8 -02623399 222.52841187 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba8 -02623400 222.52844238 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb8 -02623401 222.52845764 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb8 -02623402 222.52848816 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc8 -02623403 222.52848816 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc8 -02629166 222.60935974 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe8 -02629167 222.60935974 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe8 -02629169 222.60937500 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff8 -02629170 222.60937500 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff8 -02629171 222.60940552 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e008 -02629172 222.60940552 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e008 -02629173 222.60943604 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e018 -02629174 222.60943604 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e018 -02629175 222.60946655 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e028 -02629176 222.60946655 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e028 -02629177 222.60948181 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e038 -02629178 222.60951233 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e038 -02629179 222.60954285 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e048 -02629180 222.60954285 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e048 -02629181 222.60955811 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e058 -02629182 222.60955811 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e058 -02629183 222.60958862 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e068 -02629184 222.60958862 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e068 -02629185 222.60961914 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e078 -02629186 222.60961914 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e078 -02629187 222.60963440 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e088 -02629188 222.60963440 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e088 -02629189 222.60966492 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e098 -02629190 222.60966492 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e098 -02629191 222.60969543 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a8 -02629192 222.60969543 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0a8 -02629193 222.60971069 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b8 -02629194 222.60971069 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0b8 -02629195 222.60974121 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c8 -02629196 222.60974121 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0c8 -02629197 222.60977173 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d8 -02629198 222.60978699 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0d8 -02629199 222.60981750 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e8 -02629200 222.60981750 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0e8 -02629201 222.60984802 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f8 -02629202 222.60984802 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e0f8 -02629203 222.60986328 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e108 -02629204 222.60986328 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e108 -02629205 222.60989380 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e118 -02629206 222.60989380 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e118 -02629207 222.60992432 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e128 -02629208 222.60992432 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e128 -02629209 222.60993958 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e138 -02629210 222.60993958 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e138 -02635277 222.69439697 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed8 -02635278 222.69439697 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed8 -02635279 222.69442749 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee8 -02635280 222.69445801 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee8 -02635282 222.69447327 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef8 -02635283 222.69447327 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef8 -02635284 222.69450378 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f08 -02635285 222.69450378 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f08 -02635286 222.69453430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f18 -02635287 222.69453430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f18 -02635288 222.69454956 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f28 -02635289 222.69454956 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f28 -02635290 222.69458008 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f38 -02635291 222.69458008 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f38 -02635292 222.69461060 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f48 -02635293 222.69461060 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f48 -02635294 222.69462585 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f58 -02635295 222.69462585 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f58 -02635296 222.69465637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f68 -02635297 222.69465637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f68 -02635298 222.69468689 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f78 -02635299 222.69468689 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f78 -02635300 222.69470215 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f88 -02635301 222.69473267 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f88 -02635302 222.69476318 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f98 -02635303 222.69476318 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f98 -02635304 222.69477844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa8 -02635305 222.69477844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fa8 -02635306 222.69480896 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb8 -02635307 222.69480896 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fb8 -02635308 222.69483948 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc8 -02635309 222.69483948 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fc8 -02635310 222.69485474 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd8 -02635311 222.69485474 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fd8 -02635312 222.69488525 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe8 -02635313 222.69488525 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39fe8 -02635314 222.69491577 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff8 -02635315 222.69491577 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ff8 -02635316 222.69493103 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a008 -02635317 222.69493103 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a008 -02635318 222.69496155 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a018 -02635319 222.69496155 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a018 -02635320 222.69499207 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a028 -02635321 222.69500732 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a028 -02648030 222.99742126 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02648031 224.05859375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648032 224.05865479 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648033 224.05867004 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02648034 224.05867004 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02648035 224.05880737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648036 224.05880737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02648037 224.05885315 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02648038 224.05888367 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02648039 224.64839172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02648040 224.64839172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02648041 224.64845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02648042 224.64845276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02648043 224.64846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02648044 224.64846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02648045 224.64852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02648046 224.64852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02648047 224.64857483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02648048 224.64857483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02648049 224.64860535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02648050 224.64860535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02648051 224.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02648052 224.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02648053 224.64868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02648054 224.64869690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02648055 224.64872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02648056 224.64872742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02648057 224.64877319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02648058 224.64877319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02648059 224.64880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02648060 224.64883423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02648061 224.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02648062 224.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02648063 224.64891052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02648064 224.64891052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02648065 224.64894104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02648066 224.64895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02648067 224.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02648068 224.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02648069 224.64903259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02648070 224.64903259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02648071 224.64906311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02648072 224.64906311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02648073 224.64910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02648074 224.64910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02648075 224.64916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02648076 224.64916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02648077 224.64918518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02648078 224.64921570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02648079 224.64924622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02648080 224.64924622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02648081 224.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02648082 224.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02648083 224.64932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02648084 224.64933777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02648085 224.64936829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02648086 224.64936829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02648087 224.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02648088 224.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02648089 224.64944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02648090 224.64944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02648091 224.64949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02648092 224.64949036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02648093 224.64955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02648094 224.64955139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02648095 224.64958191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02648096 224.64958191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02648097 224.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02648098 224.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02648099 224.64965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02648100 224.64967346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02648101 224.64970398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02648102 224.64970398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02648103 224.64974976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02648104 224.64974976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02648105 224.64978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02648106 224.64981079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02648107 224.64982605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02648108 224.64982605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02648109 224.64988708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02648110 224.64988708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02648111 224.64990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02648112 224.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02648113 224.64996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02648114 224.64996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02648115 224.65000916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02648116 224.65000916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02648117 224.65003967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02648118 224.65003967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02648119 224.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02648120 224.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02648121 224.65013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02648122 224.65013123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02648123 224.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02648124 224.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02648125 224.65026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02648126 224.65026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02648127 224.65028381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02648128 224.65028381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02648129 224.65034485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02648130 224.65034485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02648131 224.65039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02648132 224.65039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02648133 224.65042114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02648134 224.65042114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02648135 224.65046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02648136 224.65046692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02648137 224.65052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02648138 224.65052795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02648139 224.65054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02648140 224.65054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02648141 224.65060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02648142 224.65060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02648143 224.65061951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02648144 224.65065002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02648145 224.65068054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02648146 224.65068054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02648147 224.65072632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02648148 224.65072632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02648149 224.65075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02648150 224.65077209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02648151 224.65080261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02648152 224.65080261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02648153 224.65084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02648154 224.65084839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02648155 224.65087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02648156 224.65087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02648157 224.65092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02648158 224.65092468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02648159 224.65098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02648160 224.65098572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02648161 224.65100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02648162 224.65100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02648163 224.65107727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02648164 224.65107727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02648165 224.65113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02648166 224.65113831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02648167 224.65116882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02648168 224.65116882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02648169 224.65121460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02648170 224.65121460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02648171 224.65126038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02648172 224.65126038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02648173 224.65129089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02648174 224.65129089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02648175 224.65133667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02648176 224.65133667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02648177 224.65136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02648178 224.65139771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02648179 224.65141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02648180 224.65141296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02648181 224.65147400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02648182 224.65147400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02648183 224.65148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02648184 224.65151978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02648185 224.65155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02648186 224.65155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02648187 224.65159607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02648188 224.65159607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02648189 224.65162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02648190 224.65162659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02648191 224.65167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02648192 224.65167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02648193 224.65171814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02648194 224.65171814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02648195 224.65174866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02648196 224.65174866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02648197 224.65179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02648198 224.65179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02648199 224.65185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02648200 224.65185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02648201 224.65188599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02648202 224.65188599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02648203 224.65193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02648204 224.65193176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02648205 224.65196228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02648206 224.65197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02648207 224.65200806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02648208 224.65200806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02648209 224.65205383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02648210 224.65205383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02648211 224.65208435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02648212 224.65211487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02648213 224.65213013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02648214 224.65213013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02648215 224.65219116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02648216 224.65219116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02648217 224.65220642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02648218 224.65223694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02648219 224.65226746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02648220 224.65226746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02648221 224.65231323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02648222 224.65231323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02648223 224.65234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02648224 224.65234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02648225 224.65238953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02648226 224.65238953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02648227 224.65243530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02648228 224.65243530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02648229 224.65246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02648230 224.65246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02648231 224.65251160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02648232 224.65251160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02648233 224.65257263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02648234 224.65257263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02648235 224.65258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02648236 224.65258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02648237 224.65264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02648238 224.65264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02648239 224.65267944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02648240 224.65269470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02648241 224.65272522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02648242 224.65272522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02648243 224.65277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02648244 224.65277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02648245 224.65280151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02648246 224.65283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02648247 224.65284729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02648248 224.65284729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02648249 224.65290833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02648250 224.65290833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02648251 224.65292358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02648252 224.65295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02648253 224.65298462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02648254 224.65298462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02648255 224.65303040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02648256 224.65303040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02648257 224.65306091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02648258 224.65307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02648259 224.65310669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02648260 224.65310669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02648261 224.65315247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02648262 224.65315247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02648263 224.65318298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02648264 224.65318298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02648265 224.65322876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02648266 224.65322876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02648267 224.65325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02648268 224.65325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02648269 224.65330505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02648270 224.65330505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02648271 224.65333557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02648272 224.65336609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02648273 224.65338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02648274 224.65338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02648275 224.65344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02648276 224.65344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02648277 224.65347290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02648278 224.65347290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02648279 224.65351868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02648280 224.65351868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02648281 224.65356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02648282 224.65356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02648283 224.65359497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02648284 224.65359497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02648285 224.65364075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02648286 224.65364075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02648287 224.65370178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02648288 224.65370178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02648289 224.65371704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02648290 224.65371704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02648291 224.65377808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02648292 224.65377808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02648293 224.65382385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02648294 224.65382385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02648295 224.65385437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02648296 224.65385437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02648297 224.65390015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02648298 224.65390015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02648299 224.65393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02648300 224.65394592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02648301 224.65397644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02648302 224.65397644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02648303 224.65402222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02648304 224.65402222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02648305 224.65405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02648306 224.65405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02648307 224.65409851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02648308 224.65409851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02648309 224.65412903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02648310 224.65412903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02648311 224.65417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02648312 224.65417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02648313 224.65423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02648314 224.65423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02648315 224.65426636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02648316 224.65426636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02648317 224.65431213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02648318 224.65431213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02648319 224.65435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02648320 224.65435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02648321 224.65438843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02648322 224.65438843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02648323 224.65443420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02648324 224.65443420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02648325 224.65449524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02648326 224.65449524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02648327 224.65451050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02648328 224.65451050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02648329 224.65457153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02648330 224.65457153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02648331 224.65458679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02648332 224.65461731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02648333 224.65464783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02648334 224.65464783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02648335 224.65469360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02648336 224.65469360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02648337 224.65472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02648338 224.65473938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02648339 224.65476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02648340 224.65476990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02648341 224.65481567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02648342 224.65481567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02648343 224.65484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02648344 224.65487671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02648345 224.65489197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02648346 224.65489197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02648347 224.65495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02648348 224.65495300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02648349 224.65498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02648350 224.65498352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02648351 224.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02648352 224.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02648353 224.65507507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02648354 224.65507507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02648355 224.65510559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02648356 224.65510559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02648357 224.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02648358 224.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02648359 224.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02648360 224.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02648361 224.65522766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02648362 224.65522766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02648363 224.65528870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02648364 224.65528870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02648365 224.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02648366 224.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02648367 224.65536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02648368 224.65536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02648369 224.65541077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02648370 224.65541077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02648371 224.65544128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02648372 224.65545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02648373 224.65548706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02648374 224.65548706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02648375 224.65553284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02648376 224.65553284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02648377 224.65556335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02648378 224.65559387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02648379 224.65560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02648380 224.65560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02648381 224.65567017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02648382 224.65567017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02648383 224.65568542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02648384 224.65568542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02648385 224.65574646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02648386 224.65574646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02648387 224.65579224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02648388 224.65579224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02648389 224.65582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02648390 224.65582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02648391 224.65586853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02648392 224.65586853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02648393 224.65592957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02648394 224.65592957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02648395 224.65594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02648396 224.65594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02648397 224.65600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02648398 224.65600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02648399 224.65602112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02648400 224.65605164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02648401 224.65608215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02648402 224.65608215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02648403 224.65612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02648404 224.65612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02648405 224.65615845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02648406 224.65617371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02648407 224.65620422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02648408 224.65620422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02648409 224.65625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02648410 224.65625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02648411 224.65628052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02648412 224.65631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02648413 224.65632629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02648414 224.65632629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02648415 224.65638733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02648416 224.65638733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02648417 224.65640259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02648418 224.65640259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02648419 224.65646362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02648420 224.65646362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02648421 224.65650940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02648422 224.65650940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02648423 224.65653992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02648424 224.65653992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02648425 224.65658569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02648426 224.65658569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02648427 224.65664673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02648428 224.65664673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02648429 224.65666199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02648430 224.65666199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02648431 224.65672302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02648432 224.65672302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02648433 224.65673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02648434 224.65676880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02648435 224.65679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02648436 224.65679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02648437 224.65684509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02648438 224.65684509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02648439 224.65687561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02648440 224.65689087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02648441 224.65692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02648442 224.65692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02648443 224.65696716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02648444 224.65696716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02648445 224.65699768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02648446 224.65699768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02648447 224.65704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02648448 224.65704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02648449 224.65710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02648450 224.65710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02648451 224.65711975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02648452 224.65711975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02648453 224.65718079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02648454 224.65718079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02648455 224.65719604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02648456 224.65722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02648457 224.65725708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02648458 224.65725708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02648459 224.65730286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02648460 224.65730286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02648461 224.65733337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02648462 224.65736389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02648463 224.65737915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02648464 224.65737915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02648465 224.65744019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02648466 224.65744019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02648467 224.65745544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02648468 224.65745544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02648469 224.65751648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02648470 224.65751648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02648471 224.65756226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02648472 224.65756226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02648473 224.65759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02648474 224.65759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02648475 224.65763855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02648476 224.65763855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02648477 224.65766907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02648478 224.65768433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02648479 224.65771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02648480 224.65771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02648481 224.65776062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02648482 224.65776062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02648483 224.65779114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02648484 224.65782166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02648485 224.65783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02648486 224.65783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02648487 224.65789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02648488 224.65789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02648489 224.65791321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02648490 224.65791321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02648491 224.65797424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02648492 224.65797424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02648493 224.65802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02648494 224.65802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02648495 224.65805054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02648496 224.65805054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02648497 224.65809631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02648498 224.65809631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02648499 224.65815735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02648500 224.65815735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02648501 224.65817261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02648502 224.65817261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02648503 224.65823364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02648504 224.65823364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02648505 224.65827942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02648506 224.65827942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02648507 224.65830994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02648508 224.65830994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02648509 224.65835571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02648510 224.65835571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02648511 224.65840149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02648512 224.65840149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02648513 224.65843201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02648514 224.65843201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02648515 224.65847778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02648516 224.65847778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02648517 224.65853882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02648518 224.65853882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02648519 224.65855408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02648520 224.65855408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02648521 224.65861511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02648522 224.65861511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02648523 224.65866089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02648524 224.65866089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02648525 224.65869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02648526 224.65869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02648527 224.65873718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02648528 224.65873718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02648529 224.65878296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02648530 224.65878296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02648531 224.65881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02648532 224.65881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02648533 224.65887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02648534 224.65887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02648535 224.65888977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02648536 224.65892029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02648537 224.65895081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02648538 224.65895081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02648539 224.65899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02648540 224.65899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02648541 224.65902710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02648542 224.65904236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02648543 224.65907288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02648544 224.65907288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02648545 224.65911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02648546 224.65911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02648547 224.65914917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02648548 224.65917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02648549 224.65919495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02648550 224.65919495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02648551 224.65925598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02648552 224.65925598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02648553 224.65927124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02648554 224.65930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02648555 224.65933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02648556 224.65933228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02648557 224.65937805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02648558 224.65937805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02648559 224.65940857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02648560 224.65942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02648561 224.65945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02648562 224.65945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02648563 224.65950012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02648564 224.65950012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02648565 224.65953064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02648566 224.65956116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02650159 224.68505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02650160 224.68505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -02650161 224.68508911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02650162 224.68510437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -02650163 224.68513489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02650164 224.68513489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -02650165 224.68516541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02650166 224.68516541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -02650167 224.68518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02650168 224.68521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -02650169 224.68524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02650170 224.68524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -02650171 224.68525696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02650172 224.68525696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -02650173 224.68528748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02650174 224.68528748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -02650175 224.68531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02650176 224.68531799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -02650177 224.68533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02650178 224.68533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -02650179 224.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02650180 224.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -02650181 224.68539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02650182 224.68539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -02650183 224.68540955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02650184 224.68540955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -02650185 224.68544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02650186 224.68544006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -02650187 224.68547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02650188 224.68547058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -02650189 224.68548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02650190 224.68551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -02650191 224.68554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02650192 224.68554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -02650193 224.68556213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02650194 224.68556213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -02650195 224.68559265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02650196 224.68559265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -02650197 224.68562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02650198 224.68562317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -02650199 224.68563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02650200 224.68563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -02650201 224.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02650202 224.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -02666484 224.91615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -02666485 224.91615295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -02666486 224.91616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -02666487 224.91616821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250a8 -02666488 224.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -02666489 224.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -02666490 224.91622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -02666491 224.91622925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -02666492 224.91624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -02666493 224.91624451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -02666494 224.91627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -02666495 224.91627502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -02666496 224.91630554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -02666497 224.91630554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -02666498 224.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -02666499 224.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -02666500 224.91635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -02666501 224.91635132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -02666502 224.91638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -02666503 224.91639709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -02666504 224.91642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -02666505 224.91642761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -02666506 224.91645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -02666507 224.91645813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -02666508 224.91647339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -02666509 224.91647339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -02666510 224.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -02666511 224.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -02666512 224.91653442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -02666513 224.91653442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -02666514 224.91654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -02666515 224.91654968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -02666516 224.91658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -02666517 224.91658020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -02666518 224.91661072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -02666519 224.91661072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -02666520 224.91662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -02666521 224.91662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -02666522 224.91665649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -02666523 224.91665649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -02666524 224.91668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -02666525 224.91671753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -02666526 224.91673279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -02666527 224.91673279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -02672068 224.99464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -02672069 224.99464417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -02672070 224.99465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -02672071 224.99465942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -02672072 224.99468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -02672073 224.99472046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -02672074 224.99473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -02672075 224.99473572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -02672076 224.99476624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -02672077 224.99476624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -02672078 224.99479675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -02672079 224.99479675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -02672080 224.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -02672081 224.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -02672082 224.99484253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -02672083 224.99484253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -02672084 224.99487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -02672085 224.99487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -02672086 224.99488831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -02672087 224.99488831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -02672088 224.99491882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -02672089 224.99491882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -02672090 224.99494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -02672091 224.99494934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -02672092 224.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -02672093 224.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -02672094 224.99502563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -02672095 224.99502563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -02672096 224.99504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff8 -02672097 224.99504089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff8 -02672098 224.99507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -02672099 224.99507141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -02672100 224.99510193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -02672101 224.99510193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -02672102 224.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -02672103 224.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -02672104 224.99514771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -02672105 224.99514771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -02672106 224.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -02672107 224.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -02672108 224.99519348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30058 -02672109 224.99519348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30058 -02672110 224.99522400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30068 -02672111 224.99522400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30068 -02676232 225.05308533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38138 -02676233 225.05308533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38138 -02676234 225.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38148 -02676235 225.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38148 -02676236 225.05313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38158 -02676237 225.05313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38158 -02676238 225.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38168 -02676239 225.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38168 -02676240 225.05317688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38178 -02676241 225.05317688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38178 -02676242 225.05320740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38188 -02676243 225.05320740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38188 -02676244 225.05323792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38198 -02676245 225.05323792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38198 -02676246 225.05325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a8 -02676247 225.05325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381a8 -02676248 225.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b8 -02676249 225.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381b8 -02676250 225.05331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c8 -02676251 225.05331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381c8 -02676252 225.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -02676253 225.05335999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381d8 -02676254 225.05335999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -02676255 225.05339050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381e8 -02676256 225.05342102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f8 -02676257 225.05342102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x381f8 -02676258 225.05343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38208 -02676259 225.05343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38208 -02676260 225.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38218 -02676261 225.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38218 -02676262 225.05349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38228 -02676263 225.05349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38228 -02676264 225.05351257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38238 -02676265 225.05351257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38238 -02676266 225.05354309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38248 -02676267 225.05354309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38248 -02676268 225.05357361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38258 -02676269 225.05357361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38258 -02676270 225.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38268 -02676271 225.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38268 -02676272 225.05361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38278 -02676273 225.05361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38278 -02676274 225.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38288 -02676275 225.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38288 -02684072 225.16175842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47638 -02684073 225.16175842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47638 -02684074 225.16177368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47648 -02684075 225.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47648 -02684076 225.16183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -02684077 225.16183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -02684078 225.16184998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -02684079 225.16184998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -02684080 225.16188049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -02684081 225.16188049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -02684082 225.16191101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -02684083 225.16191101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -02684084 225.16192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47698 -02684085 225.16192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47698 -02684086 225.16195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a8 -02684087 225.16195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476a8 -02684088 225.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b8 -02684089 225.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476b8 -02684090 225.16200256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c8 -02684091 225.16200256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476c8 -02684092 225.16203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d8 -02684093 225.16203308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476d8 -02684094 225.16206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e8 -02684095 225.16206360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476e8 -02684096 225.16207886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f8 -02684097 225.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x476f8 -02684098 225.16213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47708 -02684099 225.16213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47708 -02684100 225.16217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47718 -02684101 225.16217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47718 -02684102 225.16218567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47728 -02684103 225.16218567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47728 -02684104 225.16221619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47738 -02684105 225.16221619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47738 -02684106 225.16224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47748 -02684107 225.16224670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47748 -02684108 225.16226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47758 -02684109 225.16226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47758 -02684110 225.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47768 -02684111 225.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47768 -02684112 225.16232300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47778 -02684113 225.16232300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47778 -02684114 225.16233826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47788 -02684115 225.16233826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47788 -02689928 226.56512451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689929 226.56517029 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689930 226.56521606 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689931 226.56521606 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02689932 226.56542969 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689933 226.56542969 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689934 226.56553650 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689935 226.56555176 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689936 226.83171082 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02689937 226.85496521 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689938 226.85496521 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689939 227.75013733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02689940 227.75016785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02689941 227.76550293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689942 227.89201355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02689943 227.89204407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02689944 227.90686035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689945 228.85652161 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02689946 228.87675476 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689947 228.87677002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689948 229.07629395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689949 229.07635498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689950 229.07637024 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02689951 229.07637024 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02689952 229.07650757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689953 229.07650757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689954 229.07655334 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02689955 229.07658386 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02689956 230.24540710 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02689957 230.24542236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02689958 230.24545288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02689959 230.24545288 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02689960 230.24548340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02689961 230.24549866 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02689962 230.24552917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02689963 230.24552917 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02689964 230.24555969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02689965 230.24555969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02689966 230.24557495 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02689967 230.24560547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02689968 230.24563599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02689969 230.24563599 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02689970 230.24565125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02689971 230.24565125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02689972 230.24571228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02689973 230.24571228 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02689974 230.24572754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02689975 230.24572754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02689976 230.24575806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02689977 230.24575806 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02689978 230.24580383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02689979 230.24580383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02689980 230.24583435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02689981 230.24583435 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02689982 230.24586487 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02689983 230.24589539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02689984 230.24591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02689985 230.24591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02689986 230.24594116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02689987 230.24594116 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02689988 230.24598694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02689989 230.24598694 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02689990 230.24601746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02689991 230.24601746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02689992 230.24606323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02689993 230.24606323 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02689994 230.24609375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02689995 230.24609375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02689996 230.24613953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02689997 230.24613953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02689998 230.24617004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02689999 230.24617004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02690000 230.24620056 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02690001 230.24621582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02690002 230.24624634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02690003 230.24624634 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02690004 230.24627686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02690005 230.24627686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02690006 230.24632263 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02690007 230.24632263 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02690008 230.24635315 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02690009 230.24635315 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02690010 230.24639893 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02690011 230.24639893 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02690012 230.24642944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02690013 230.24642944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02690014 230.24644470 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02690015 230.24644470 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02690016 230.24650574 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02690017 230.24650574 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02690018 230.24652100 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02690019 230.24652100 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02690020 230.24655151 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02690021 230.24658203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02690022 230.24659729 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02690023 230.24659729 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02690024 230.24662781 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02690025 230.24662781 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02690026 230.24668884 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02690027 230.24668884 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02690028 230.24670410 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02690029 230.24670410 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02690030 230.24673462 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02690031 230.24673462 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02690032 230.24676514 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02690033 230.24676514 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02690034 230.24678040 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02690035 230.24681091 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02690036 230.24684143 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02690037 230.24684143 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02690038 230.24685669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02690039 230.24685669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02690040 230.24688721 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02690041 230.24688721 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02690042 230.24691772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02690043 230.24691772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02690044 230.24693298 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02690045 230.24693298 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02690046 230.24696350 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02690047 230.24696350 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02690048 230.24699402 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02690049 230.24699402 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02690050 230.24700928 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02690051 230.24700928 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02690052 230.24703979 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02690053 230.24703979 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02690054 230.24707031 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02690055 230.24708557 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02690056 230.24711609 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02690057 230.24711609 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02690058 230.24714661 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02690059 230.24714661 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02690060 230.24716187 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02690061 230.24716187 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02690062 230.24719238 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02690063 230.24719238 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02690064 230.24722290 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02690065 230.24722290 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02690066 230.24723816 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02690067 230.24723816 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02690068 230.24726868 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02690069 230.24726868 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02690070 230.24729919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02690071 230.24729919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02690072 230.24731445 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02690073 230.24731445 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02690074 230.24734497 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02690075 230.24734497 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02690076 230.24737549 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02690077 230.24740601 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02690078 230.24742126 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02690079 230.24742126 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02690080 230.24745178 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02690081 230.24745178 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02690082 230.24749756 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02690083 230.24749756 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02690084 230.24752808 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02690085 230.24752808 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02690086 230.24755859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02690087 230.24755859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02690088 230.24757385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02690089 230.24757385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02690090 230.24760437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02690091 230.24760437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02690092 230.24763489 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02690093 230.24763489 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02690094 230.24765015 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02690095 230.24765015 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02690096 230.24768066 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02690097 230.24768066 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02690098 230.24771118 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02690099 230.24772644 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02690100 230.24775696 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02690101 230.24775696 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02690102 230.24778748 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02690103 230.24778748 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02690104 230.24780273 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02690105 230.24780273 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02690106 230.24783325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02690107 230.24783325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02690108 230.24786377 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02690109 230.24786377 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02690110 230.24787903 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02690111 230.24787903 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02690112 230.24790955 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02690113 230.24790955 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02690114 230.24794006 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02690115 230.24795532 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02690116 230.24798584 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02690117 230.24798584 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02690118 230.24801636 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02690119 230.24801636 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02690120 230.24803162 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02690121 230.24803162 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02690122 230.24806213 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02690123 230.24806213 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02690124 230.24809265 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02690125 230.24809265 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02690126 230.24810791 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02690127 230.24810791 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02690128 230.24813843 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02690129 230.24816895 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02690130 230.24819946 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02690131 230.24819946 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02690132 230.24821472 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02690133 230.24821472 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02690134 230.24824524 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02690135 230.24824524 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02690136 230.24827576 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02690137 230.24827576 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02690138 230.24829102 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02690139 230.24829102 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02690140 230.24832153 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02690141 230.24832153 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02690142 230.24835205 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02690143 230.24836731 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02690144 230.24839783 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02690145 230.24839783 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02690146 230.24842834 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02690147 230.24842834 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02690148 230.24844360 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02690149 230.24844360 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02690150 230.24847412 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02690151 230.24847412 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02690152 230.24850464 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02690153 230.24850464 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02690154 230.24851990 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02690155 230.24851990 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02690156 230.24855042 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02690157 230.24855042 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02690158 230.24858093 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02690159 230.24858093 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02690160 230.24859619 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02690161 230.24862671 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02690162 230.24865723 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02690163 230.24865723 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02690164 230.24867249 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02690165 230.24867249 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02690166 230.24870300 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02690167 230.24870300 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02690168 230.24873352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02690169 230.24873352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02690170 230.24874878 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02690171 230.24874878 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02690172 230.24877930 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02690173 230.24877930 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02690174 230.24880981 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02690175 230.24880981 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02690176 230.24882507 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02690177 230.24882507 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02690178 230.24885559 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02690179 230.24888611 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02690180 230.24890137 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02690181 230.24890137 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02690182 230.24893188 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02690183 230.24893188 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02690184 230.24896240 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02690185 230.24896240 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02690186 230.24899292 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02690187 230.24899292 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02690188 230.24900818 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02690189 230.24900818 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02690190 230.24903870 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02690191 230.24903870 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02690192 230.24906921 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02690193 230.24906921 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02690194 230.24908447 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02690195 230.24911499 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02690196 230.24914551 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02690197 230.24914551 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02690198 230.24916077 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02690199 230.24916077 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02690200 230.24919128 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02690201 230.24919128 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02690202 230.24922180 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02690203 230.24922180 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02690204 230.24923706 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02690205 230.24923706 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02690206 230.24926758 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02690207 230.24926758 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02690208 230.24929810 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02690209 230.24931335 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02690210 230.24934387 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02690211 230.24934387 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02690212 230.24937439 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02690213 230.24937439 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02690214 230.24938965 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02690215 230.24938965 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02690216 230.24942017 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02690217 230.24942017 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02690218 230.24945068 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02690219 230.24945068 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02690220 230.24946594 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02690221 230.24946594 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02690222 230.24949646 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02690223 230.24949646 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02690224 230.24952698 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02690225 230.24952698 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02690226 230.24954224 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02690227 230.24954224 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02690228 230.24960327 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02690229 230.24960327 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02690230 230.24961853 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02690231 230.24961853 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02690232 230.24964905 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02690233 230.24964905 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02690234 230.24967957 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02690235 230.24967957 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02690236 230.24969482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02690237 230.24969482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02690238 230.24972534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02690239 230.24972534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02690240 230.24975586 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02690241 230.24975586 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02690242 230.24978638 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02690243 230.24978638 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02690244 230.24980164 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02690245 230.24983215 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02690246 230.24986267 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02690247 230.24986267 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02690248 230.24987793 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02690249 230.24987793 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02690250 230.24990845 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02690251 230.24990845 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02690252 230.24993896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02690253 230.24993896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02690254 230.24995422 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02690255 230.24995422 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02690256 230.24998474 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02690257 230.24998474 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02690258 230.25001526 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02690259 230.25001526 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02690260 230.25003052 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02690261 230.25003052 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02690262 230.25006104 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02690263 230.25009155 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02690264 230.25010681 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02690265 230.25010681 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02690266 230.25013733 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02690267 230.25013733 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02690268 230.25016785 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02690269 230.25016785 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02690270 230.25018311 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02690271 230.25018311 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02690272 230.25021362 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02690273 230.25021362 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02690274 230.25024414 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02690275 230.25025940 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02690276 230.25028992 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02690277 230.25028992 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02690278 230.25032043 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02690279 230.25032043 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02690280 230.25033569 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02690281 230.25033569 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02690282 230.25036621 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02690283 230.25039673 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02690284 230.25041199 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02690285 230.25041199 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02690286 230.25044250 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02690287 230.25044250 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02690288 230.25047302 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02690289 230.25047302 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02690290 230.25050354 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02690291 230.25050354 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02690292 230.25051880 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02690293 230.25051880 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02690294 230.25054932 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02690295 230.25054932 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02690296 230.25057983 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02690297 230.25057983 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02690298 230.25059509 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02690299 230.25059509 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02690300 230.25062561 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02690301 230.25065613 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02690302 230.25065613 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02690303 230.25067139 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02690304 230.25070190 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02690305 230.25070190 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02690306 230.25073242 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02690307 230.25073242 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02690308 230.25074768 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02690309 230.25074768 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02690310 230.25077820 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02690311 230.25077820 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02690312 230.25080872 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02690313 230.25080872 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02690314 230.25082397 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02690315 230.25082397 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02690316 230.25085449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02690317 230.25085449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02690318 230.25088501 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02690319 230.25088501 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02690320 230.25090027 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02690321 230.25090027 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02690322 230.25093079 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02690323 230.25096130 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02690324 230.25097656 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02690325 230.25097656 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02690326 230.25100708 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02690327 230.25100708 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02690328 230.25103760 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02690329 230.25103760 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02690330 230.25105286 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02690331 230.25105286 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02690332 230.25108337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02690333 230.25108337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02690334 230.25111389 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02690335 230.25111389 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02690336 230.25112915 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02690337 230.25112915 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02690338 230.25115967 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02690339 230.25115967 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02690340 230.25119019 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02690341 230.25119019 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02690342 230.25120544 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02690343 230.25120544 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02690344 230.25123596 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02690345 230.25126648 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02690346 230.25129700 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02690347 230.25129700 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02690348 230.25131226 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02690349 230.25131226 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02690350 230.25134277 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02690351 230.25134277 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02690352 230.25137329 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02690353 230.25137329 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02690354 230.25138855 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02690355 230.25138855 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02690356 230.25141907 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02690357 230.25141907 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02690358 230.25144958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02690359 230.25144958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02690360 230.25146484 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02690361 230.25146484 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02690362 230.25149536 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02690363 230.25152588 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02690364 230.25154114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02690365 230.25154114 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02690366 230.25157166 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02690367 230.25157166 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02690368 230.25160217 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02690369 230.25160217 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02690370 230.25161743 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02690371 230.25161743 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02690372 230.25164795 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02690373 230.25164795 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02690374 230.25167847 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02690375 230.25167847 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02690376 230.25172424 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02690377 230.25172424 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02690378 230.25175476 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02690379 230.25175476 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02690380 230.25177002 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02690381 230.25177002 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02690382 230.25180054 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02690383 230.25180054 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02690384 230.25184631 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02690385 230.25184631 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02690386 230.25187683 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02690387 230.25187683 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02690388 230.25190735 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02690389 230.25190735 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02690390 230.25192261 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02690391 230.25192261 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02690392 230.25195313 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02690393 230.25195313 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02690394 230.25198364 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02690395 230.25198364 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02690396 230.25202942 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02690397 230.25202942 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02690398 230.25205994 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02690399 230.25205994 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02690400 230.25209045 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02690401 230.25209045 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02690402 230.25210571 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02690403 230.25210571 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02690404 230.25213623 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02690405 230.25213623 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02690406 230.25216675 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02690407 230.25216675 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02690408 230.25218201 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02690409 230.25218201 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02690410 230.25221252 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02690411 230.25221252 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02690412 230.25224304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02690413 230.25224304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02690414 230.25225830 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02690415 230.25228882 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02690416 230.25231934 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02690417 230.25231934 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02690418 230.25233459 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02690419 230.25233459 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02690420 230.25236511 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02690421 230.25236511 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02690422 230.25239563 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02690423 230.25239563 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02690424 230.25241089 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02690425 230.25241089 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02690426 230.25244141 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02690427 230.25244141 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02690428 230.25247192 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02690429 230.25247192 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02690430 230.25248718 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02690431 230.25248718 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02690432 230.25251770 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02690433 230.25254822 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02690434 230.25254822 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02690435 230.25256348 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02690436 230.25259399 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02690437 230.25259399 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02690438 230.25262451 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02690439 230.25262451 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02690440 230.25263977 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02690441 230.25263977 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02690442 230.25267029 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02690443 230.25267029 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02690444 230.25270081 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02690445 230.25270081 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02690446 230.25271606 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02690447 230.25271606 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02690448 230.25274658 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02690449 230.25274658 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02690450 230.25277710 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02690451 230.25277710 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02690452 230.25280762 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02690453 230.25282288 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02690454 230.25285339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02690455 230.25285339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02690456 230.25288391 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02690457 230.25288391 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02690458 230.25289917 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02690459 230.25289917 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02690460 230.25292969 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02690461 230.25292969 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02690462 230.25296021 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02690463 230.25296021 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02690464 230.25297546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02690465 230.25297546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02690466 230.25300598 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02690467 230.25300598 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02690468 230.25303650 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02690469 230.25303650 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02690470 230.25305176 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02690471 230.25305176 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02690472 230.25308228 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02690473 230.25311279 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02690474 230.25312805 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02690475 230.25312805 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02690476 230.25315857 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02690477 230.25315857 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02690478 230.25318909 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02690479 230.25318909 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02690480 230.25320435 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02690481 230.25320435 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02690482 230.25323486 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02690483 230.25323486 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02690484 230.25326538 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02690485 230.25326538 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02690486 230.25328064 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02690487 230.25328064 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02690488 230.25334167 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02690489 230.25334167 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02690490 230.25335693 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02690491 230.25335693 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02690492 230.25338745 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02690493 230.25338745 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02690494 230.25341797 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02690495 230.25341797 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02690496 230.25343323 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02690497 230.25343323 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02690498 230.25346375 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02690499 230.25346375 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02690500 230.25349426 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02690501 230.25349426 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02690502 230.25350952 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02690503 230.25354004 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02690504 230.25357056 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02690505 230.25357056 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02690506 230.25360107 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02690507 230.25360107 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02690508 230.25361633 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02690509 230.25361633 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02690510 230.25364685 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02690511 230.25364685 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02690512 230.25367737 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02690513 230.25367737 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02690514 230.25369263 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02690515 230.25369263 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02690516 230.25372314 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02690517 230.25372314 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02690518 230.25375366 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02690519 230.25375366 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02690520 230.25376892 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02690521 230.25376892 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02690522 230.25379944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02690523 230.25379944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02690524 230.25382996 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02690525 230.25384521 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02690526 230.25387573 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02690527 230.25387573 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02690528 230.25390625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02690529 230.25390625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02690530 230.25392151 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02690531 230.25392151 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02690532 230.25395203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02690533 230.25395203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02690534 230.25398254 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02690535 230.25398254 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02690536 230.25399780 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02690537 230.25399780 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02690538 230.25402832 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02690539 230.25402832 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02690540 230.25405884 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02690541 230.25405884 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02690542 230.25407410 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02690543 230.25410461 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02690544 230.25413513 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02690545 230.25413513 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02690546 230.25415039 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02690547 230.25415039 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02690548 230.25418091 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02690549 230.25418091 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02690550 230.25421143 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02690551 230.25421143 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02690552 230.25422668 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02690553 230.25422668 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02690554 230.25425720 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02690555 230.25425720 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02690556 230.25428772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02690557 230.25428772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02690558 230.25430298 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02690559 230.25430298 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02690560 230.25433350 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02690561 230.25433350 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02690562 230.25436401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02690563 230.25439453 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02690564 230.25440979 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02690565 230.25440979 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02690566 230.25444031 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02690567 230.25444031 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02690568 230.25447083 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02690569 230.25447083 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02690570 230.25448608 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02690571 230.25448608 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02690572 230.25451660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02690573 230.25451660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02690574 230.25454712 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02690575 230.25454712 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02690576 230.25456238 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02690577 230.25456238 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02690578 230.25459290 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02690579 230.25462341 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02690580 230.25463867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02690581 230.25463867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02690582 230.25466919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02690583 230.25466919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02690584 230.25469971 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02690585 230.25469971 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02690586 230.25471497 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02690587 230.25471497 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02690588 230.25474548 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02690589 230.25474548 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02690590 230.25477600 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02690591 230.25477600 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02690592 230.25479126 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02690593 230.25479126 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02690594 230.25482178 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02690595 230.25482178 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02690596 230.25485229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02690597 230.25486755 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02690598 230.25489807 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02690599 230.25489807 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02690600 230.25492859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02690601 230.25492859 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02690602 230.25494385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02690603 230.25494385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02690604 230.25497437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02690605 230.25497437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02690606 230.25500488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02690607 230.25500488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02690608 230.25502014 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02690609 230.25502014 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02690610 230.25505066 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02690611 230.25505066 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02690612 230.25508118 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02690613 230.25509644 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02690614 230.25512695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02690615 230.25512695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02690616 230.25515747 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02690617 230.25515747 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02690618 230.25518799 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02690619 230.25518799 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02690620 230.25520325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02690621 230.25520325 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02690622 230.25523376 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02690623 230.25523376 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02690624 230.25526428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02690625 230.25526428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02690626 230.25527954 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02690627 230.25527954 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02690628 230.25531006 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02690629 230.25531006 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02690630 230.25534058 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02690631 230.25535583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02690632 230.25538635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02690633 230.25538635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02690634 230.25541687 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02690635 230.25541687 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02690636 230.25543213 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02690637 230.25543213 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02690638 230.25546265 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02690639 230.25546265 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02690640 230.25549316 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02690641 230.25549316 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02690642 230.25550842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02690643 230.25550842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02690644 230.25553894 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02690645 230.25553894 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02690646 230.25556946 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02690647 230.25556946 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02690648 230.25558472 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02690649 230.25561523 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02690650 230.25564575 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02690651 230.25564575 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02690652 230.25566101 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02690653 230.25566101 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02690654 230.25569153 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02690655 230.25569153 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02690656 230.25572205 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02690657 230.25572205 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02690658 230.25573730 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02690659 230.25573730 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02690660 230.25576782 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02690661 230.25576782 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02690662 230.25579834 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02690663 230.25579834 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02690664 230.25581360 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02690665 230.25581360 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02690666 230.25584412 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02690667 230.25584412 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02690668 230.25587463 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02690669 230.25587463 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02690670 230.25590515 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02690671 230.25592041 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02690672 230.25595093 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02690673 230.25595093 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02690674 230.25598145 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02690675 230.25598145 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02690676 230.25599670 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02690677 230.25599670 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02690678 230.25602722 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02690679 230.25602722 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02690680 230.25605774 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02690681 230.25605774 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02690682 230.25607300 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02690683 230.25607300 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02690684 230.25610352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02690685 230.25610352 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02690686 230.25613403 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02690687 230.25613403 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02690688 230.25614929 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02690689 230.25614929 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02690690 230.25617981 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02690691 230.25617981 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02690692 230.25621033 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02690693 230.25622559 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02690694 230.25625610 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02690695 230.25625610 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02690696 230.25628662 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02690697 230.25628662 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02690698 230.25630188 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02690699 230.25630188 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02690700 230.25633240 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02690701 230.25633240 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02690702 230.25636292 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02690703 230.25636292 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02690704 230.25637817 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02690705 230.25637817 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02690706 230.25640869 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02690707 230.25640869 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02690708 230.25643921 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02690709 230.25643921 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02690710 230.25645447 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02690711 230.25645447 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02690712 230.25648499 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02690713 230.25651550 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02690714 230.25653076 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02690715 230.25653076 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02690716 230.25656128 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02690717 230.25656128 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02690718 230.25659180 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02690719 230.25659180 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02690720 230.25660706 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02690721 230.25660706 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02690722 230.25663757 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02690723 230.25663757 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02690724 230.25666809 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02690725 230.25666809 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02690726 230.25669861 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02690727 230.25671387 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02690728 230.25674438 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02690729 230.25674438 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02690730 230.25677490 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02690731 230.25677490 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02690732 230.25679016 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02690733 230.25679016 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02690734 230.25682068 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02690735 230.25682068 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02690736 230.25685120 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02690737 230.25685120 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02690738 230.25686646 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02690739 230.25686646 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02690740 230.25689697 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02690741 230.25689697 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02690742 230.25692749 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02690743 230.25692749 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02690744 230.25694275 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02690745 230.25694275 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02690746 230.25697327 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02690747 230.25697327 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02690748 230.25700378 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02690749 230.25701904 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02690750 230.25704956 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02690751 230.25704956 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02690752 230.25708008 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02690753 230.25708008 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02690754 230.25709534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02690755 230.25709534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02690756 230.25712585 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02690757 230.25712585 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02690758 230.25715637 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02690759 230.25715637 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02690760 230.25717163 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02690761 230.25717163 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02690762 230.25720215 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02690763 230.25720215 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02690764 230.25723267 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02690765 230.25723267 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02690766 230.25724792 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02690767 230.25724792 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02690768 230.25727844 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02690769 230.25730896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02690770 230.25732422 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02690771 230.25732422 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02690772 230.25735474 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02690773 230.25735474 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02690774 230.25738525 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02690775 230.25738525 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02690776 230.25740051 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02690777 230.25740051 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02690778 230.25743103 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02690779 230.25743103 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02690780 230.25746155 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02690781 230.25746155 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02690782 230.25749207 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02690783 230.25749207 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02690784 230.25750732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02690785 230.25750732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02690786 230.25753784 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02690787 230.25753784 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02690788 230.25756836 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02690789 230.25756836 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02690790 230.25758362 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02690791 230.25761414 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02690792 230.25764465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02690793 230.25764465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02690794 230.25765991 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02690795 230.25765991 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02690796 230.25769043 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02690797 230.25769043 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02690798 230.25772095 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02690799 230.25772095 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02690800 230.25773621 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02690801 230.25773621 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02690802 230.25776672 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02690803 230.25776672 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02690804 230.25779724 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02690805 230.25779724 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02690806 230.25781250 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02690807 230.25781250 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02690808 230.25784302 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02690809 230.25784302 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02690810 230.25787354 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02690811 230.25788879 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02690812 230.25791931 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02690813 230.25791931 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02690814 230.25794983 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02690815 230.25794983 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02690816 230.25796509 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02690817 230.25796509 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02690818 230.25799561 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02690819 230.25799561 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02690820 230.25802612 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02690821 230.25802612 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02690822 230.25804138 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02690823 230.25804138 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02690824 230.25807190 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02690825 230.25807190 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02690826 230.25810242 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02690827 230.25810242 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02690828 230.25811768 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02690829 230.25811768 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02690830 230.25814819 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02690831 230.25814819 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02690832 230.25817871 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02690833 230.25820923 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02690834 230.25822449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02690835 230.25822449 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02690836 230.25825500 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02690837 230.25825500 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02690838 230.25828552 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02690839 230.25828552 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02690840 230.25837708 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02690841 230.25840759 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02690842 230.25843811 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02690843 230.25843811 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02690844 230.25845337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02690845 230.25845337 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02690846 230.25848389 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02690847 230.25848389 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02690848 230.25851440 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02690849 230.25851440 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02690850 230.25852966 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02690851 230.25852966 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02690852 230.25856018 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02690853 230.25856018 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02690854 230.25859070 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02690855 230.25859070 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02690856 230.25860596 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02690857 230.25860596 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02690858 230.25863647 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02690859 230.25866699 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02690860 230.25868225 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02690861 230.25868225 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02690862 230.25871277 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02690863 230.25871277 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02690864 230.25874329 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02690865 230.25874329 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02690866 230.25875854 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02690867 230.25875854 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02690868 230.25878906 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02690869 230.25878906 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02690870 230.25881958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02690871 230.25881958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02690872 230.25883484 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02690873 230.25883484 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02690874 230.25886536 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02690875 230.25886536 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02690876 230.25889587 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02690877 230.25889587 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02690878 230.25891113 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02690879 230.25891113 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02690880 230.25894165 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02690881 230.25897217 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02690882 230.25900269 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02690883 230.25900269 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02690884 230.25901794 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02690885 230.25901794 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02690886 230.25904846 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02690887 230.25904846 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02690888 230.25907898 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02690889 230.25907898 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02690890 230.25909424 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02690891 230.25909424 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02690892 230.25912476 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02690893 230.25912476 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02690894 230.25915527 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02690895 230.25915527 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02690896 230.25917053 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02690897 230.25917053 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02690898 230.25920105 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02690899 230.25920105 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02690900 230.25923157 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02690901 230.25924683 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02690902 230.25927734 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02690903 230.25927734 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02690904 230.25930786 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02690905 230.25930786 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02690906 230.25932312 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02690907 230.25932312 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02690908 230.25935364 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02690909 230.25935364 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02690910 230.25938416 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02690911 230.25938416 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02690912 230.25939941 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02690913 230.25939941 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02690914 230.25942993 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02690915 230.25942993 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02690916 230.25946045 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02690917 230.25947571 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02690918 230.25950623 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02690919 230.25950623 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02690920 230.25953674 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02690921 230.25953674 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02690922 230.25955200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02690923 230.25955200 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02690924 230.25958252 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02690925 230.25958252 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02690926 230.25961304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02690927 230.25961304 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02690928 230.25962830 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02690929 230.25962830 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02690930 230.25965881 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02690931 230.25965881 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02690932 230.25968933 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02690933 230.25968933 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02690934 230.25970459 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02690935 230.25973511 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02690936 230.25976563 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02690937 230.25976563 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02690938 230.25979614 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02690939 230.25979614 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02690940 230.25981140 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02690941 230.25981140 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02690942 230.25984192 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02690943 230.25984192 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02690944 230.25987244 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02690945 230.25987244 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02690946 230.25988770 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02690947 230.25988770 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02690948 230.25991821 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02690949 230.25991821 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02690950 230.25994873 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02690951 230.25994873 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02690952 230.25996399 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02690953 230.25999451 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02690954 230.26002502 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02690955 230.26002502 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02690956 230.26004028 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02690957 230.26004028 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02690958 230.26007080 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02690959 230.26007080 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02690960 230.26010132 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02690961 230.26010132 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02690962 230.26011658 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02690963 230.26011658 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02690964 230.26014709 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02690965 230.26014709 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02690966 230.26017761 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02690967 230.26017761 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02690968 230.26019287 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02690969 230.26019287 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02690970 230.26022339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02690971 230.26022339 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02690972 230.26025391 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02690973 230.26026917 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02690974 230.26029968 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02690975 230.26029968 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02690976 230.26033020 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02690977 230.26033020 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02690978 230.26034546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02690979 230.26034546 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02690980 230.26037598 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02690981 230.26037598 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02690982 230.26040649 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02690983 230.26040649 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02690984 230.26042175 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02690985 230.26042175 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02690986 230.26045227 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02690987 230.26045227 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02690988 230.26048279 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02690989 230.26048279 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02690990 230.26049805 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02690991 230.26049805 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02690992 230.26052856 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02690993 230.26055908 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02690994 230.26058960 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02690995 230.26058960 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02690996 230.26060486 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02690997 230.26060486 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02690998 230.26063538 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02690999 230.26063538 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02691000 230.26066589 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02691001 230.26066589 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02691002 230.26068115 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02691003 230.26068115 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02691004 230.26071167 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02691005 230.26071167 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02691006 230.26074219 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02691007 230.26074219 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02691008 230.26075745 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02691009 230.26075745 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02691010 230.26078796 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02691011 230.26078796 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02691012 230.26081848 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02691013 230.26083374 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02691014 230.26086426 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02691015 230.26086426 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02691016 230.26089478 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02691017 230.26089478 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02691018 230.26091003 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02691019 230.26091003 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02691020 230.26094055 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02691021 230.26094055 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02691022 230.26097107 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02691023 230.26097107 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02691024 230.26098633 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02691025 230.26098633 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02691026 230.26101685 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02691027 230.26101685 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02691028 230.26104736 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02691029 230.26104736 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02691030 230.26106262 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02691031 230.26109314 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02691032 230.26112366 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02691033 230.26112366 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02691034 230.26113892 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02691035 230.26113892 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02691036 230.26116943 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02691037 230.26116943 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02691038 230.26119995 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02691039 230.26119995 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02691040 230.26121521 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02691041 230.26121521 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02691042 230.26124573 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02691043 230.26124573 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02691044 230.26127625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02691045 230.26127625 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02691046 230.26130676 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02691047 230.26132202 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02691048 230.26135254 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02691049 230.26135254 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02691050 230.26138306 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02691051 230.26138306 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02691052 230.26139832 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02691053 230.26139832 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02691054 230.26142883 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02691055 230.26142883 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02691056 230.26145935 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02691057 230.26145935 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02691058 230.26147461 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02691059 230.26147461 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02691060 230.26150513 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02691061 230.26150513 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02691062 230.26153564 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02691063 230.26155090 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02691064 230.26158142 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02691065 230.26158142 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02691066 230.26161194 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02691067 230.26161194 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02691068 230.26162720 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02691069 230.26162720 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02691070 230.26165771 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02691071 230.26165771 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02691072 230.26168823 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02691073 230.26168823 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02691074 230.26170349 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02691075 230.26170349 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02691076 230.26173401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02691077 230.26173401 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02691078 230.26176453 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02691079 230.26176453 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02691080 230.26177979 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02691081 230.26181030 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02691082 230.26184082 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02691083 230.26184082 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02691084 230.26185608 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02691085 230.26185608 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02691086 230.26188660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02691087 230.26188660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02691088 230.26191711 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02691089 230.26191711 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02691090 230.26193237 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02691091 230.26193237 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02691092 230.26196289 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02691093 230.26196289 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02691094 230.26199341 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02691095 230.26199341 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02691096 230.26200867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02691097 230.26200867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02691098 230.26203918 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02691099 230.26203918 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02691100 230.26210022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02691101 230.26210022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02691102 230.26211548 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02691103 230.26211548 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02691104 230.26214600 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02691105 230.26214600 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02691106 230.26217651 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02691107 230.26217651 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02691108 230.26219177 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02691109 230.26219177 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02691110 230.26222229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02691111 230.26222229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02691112 230.26225281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02691113 230.26225281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02691114 230.26226807 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02691115 230.26226807 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02691116 230.26229858 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02691117 230.26229858 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02691118 230.26232910 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02691119 230.26234436 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02691120 230.26237488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02691121 230.26237488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02691122 230.26240540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02691123 230.26240540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02691124 230.26242065 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02691125 230.26242065 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02691126 230.26245117 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02691127 230.26245117 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02691128 230.26248169 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02691129 230.26248169 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02691130 230.26249695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02691131 230.26249695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02691132 230.26252747 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02691133 230.26252747 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02691134 230.26255798 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02691135 230.26257324 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02691136 230.26260376 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02691137 230.26260376 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02691138 230.26263428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02691139 230.26263428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02691140 230.26264954 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02691141 230.26264954 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02691142 230.26268005 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02691143 230.26268005 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02691144 230.26271057 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02691145 230.26271057 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02691146 230.26272583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02691147 230.26272583 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02691148 230.26275635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02691149 230.26275635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02691150 230.26278687 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02691151 230.26278687 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02691152 230.26280212 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02691153 230.26280212 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02691154 230.26283264 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02691155 230.26286316 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02691156 230.26289368 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02691157 230.26289368 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02691158 230.26290894 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02691159 230.26290894 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02691160 230.26293945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02691161 230.26293945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02691162 230.26296997 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02691163 230.26296997 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02691164 230.26298523 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02691165 230.26298523 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02691166 230.26301575 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02691167 230.26301575 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02691168 230.26304626 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02691169 230.26304626 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02691170 230.26306152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02691171 230.26306152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02691172 230.26309204 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02691173 230.26309204 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02691174 230.26312256 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02691175 230.26313782 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02691176 230.26316833 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02691177 230.26316833 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02691178 230.26319885 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02691179 230.26319885 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02691180 230.26321411 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02691181 230.26321411 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02691182 230.26324463 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02691183 230.26324463 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02691184 230.26327515 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02691185 230.26327515 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02691186 230.26329041 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02691187 230.26329041 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02691188 230.26332092 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02691189 230.26332092 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02691190 230.26335144 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02691191 230.26335144 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02691192 230.26336670 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02691193 230.26339722 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02691194 230.26342773 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02691195 230.26342773 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02691196 230.26344299 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02691197 230.26344299 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02691198 230.26347351 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02691199 230.26347351 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02691200 230.26350403 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02691201 230.26350403 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02691202 230.26351929 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02691203 230.26351929 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02691204 230.26354980 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02691205 230.26354980 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02691206 230.26358032 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02691207 230.26358032 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02691208 230.26359558 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02691209 230.26359558 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02691210 230.26365662 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02691211 230.26365662 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02691212 230.26368713 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02691213 230.26368713 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02691214 230.26370239 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02691215 230.26370239 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02691216 230.26373291 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02691217 230.26373291 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02691218 230.26376343 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02691219 230.26376343 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02691220 230.26377869 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02691221 230.26377869 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02691222 230.26380920 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02691223 230.26380920 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02691224 230.26383972 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02691225 230.26383972 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02691226 230.26385498 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02691227 230.26385498 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02691228 230.26388550 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02691229 230.26388550 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02691230 230.26391602 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02691231 230.26393127 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02691232 230.26396179 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02691233 230.26396179 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02691234 230.26399231 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02691235 230.26399231 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02691236 230.26400757 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02691237 230.26400757 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02691238 230.26403809 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02691239 230.26403809 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02691240 230.26406860 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02691241 230.26406860 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02691242 230.26408386 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02691243 230.26408386 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02691244 230.26411438 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02691245 230.26411438 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02691246 230.26414490 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02691247 230.26414490 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02691248 230.26416016 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02691249 230.26416016 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02691250 230.26419067 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02691251 230.26422119 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02691252 230.26423645 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02691253 230.26423645 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02691254 230.26426697 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02691255 230.26426697 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02691256 230.26429749 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02691257 230.26429749 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02691258 230.26431274 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02691259 230.26431274 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02691260 230.26434326 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02691261 230.26434326 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02691262 230.26437378 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02691263 230.26437378 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02691264 230.26440430 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02691265 230.26440430 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02691266 230.26441956 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02691267 230.26441956 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02691268 230.26445007 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02691269 230.26445007 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02691270 230.26448059 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02691271 230.26449585 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02691272 230.26452637 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02691273 230.26452637 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02691274 230.26455688 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02691275 230.26455688 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02691276 230.26457214 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02691277 230.26457214 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02691278 230.26460266 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02691279 230.26460266 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02691280 230.26463318 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02691281 230.26463318 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02691282 230.26464844 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02691283 230.26464844 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02691284 230.26467896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02691285 230.26467896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02691286 230.26470947 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02691287 230.26470947 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02691288 230.26472473 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02691289 230.26472473 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02691290 230.26475525 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02691291 230.26475525 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02691292 230.26478577 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02691293 230.26480103 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02691294 230.26483154 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02691295 230.26483154 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02691296 230.26486206 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02691297 230.26486206 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02691298 230.26487732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02691299 230.26487732 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02691300 230.26490784 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02691301 230.26490784 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02691302 230.26493835 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02691303 230.26493835 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02691304 230.26495361 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02691305 230.26495361 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02691306 230.26498413 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02691307 230.26498413 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02691308 230.26501465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02691309 230.26501465 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02691310 230.26502991 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02691311 230.26502991 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02691312 230.26506042 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02691313 230.26509094 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02691314 230.26510620 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02691315 230.26510620 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02691316 230.26513672 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02691317 230.26513672 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02691318 230.26516724 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02691319 230.26516724 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02691320 230.26519775 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02691321 230.26519775 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02691322 230.26521301 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02691323 230.26521301 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02691324 230.26524353 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02691325 230.26524353 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02691326 230.26527405 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02691327 230.26527405 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02691328 230.26528931 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02691329 230.26528931 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02691330 230.26531982 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02691331 230.26535034 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02691332 230.26536560 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02691333 230.26536560 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02691334 230.26539612 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02691335 230.26539612 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02691336 230.26542664 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02691337 230.26542664 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02691338 230.26544189 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02691339 230.26544189 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02691340 230.26547241 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02691341 230.26547241 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02691342 230.26550293 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02691343 230.26550293 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02691344 230.26551819 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02691345 230.26551819 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02691346 230.26554871 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02691347 230.26554871 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02691348 230.26557922 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02691349 230.26559448 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02691350 230.26562500 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02691351 230.26562500 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02691352 230.26565552 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02691353 230.26565552 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02691354 230.26570129 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02691355 230.26570129 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02691356 230.26573181 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02691357 230.26573181 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02691358 230.26574707 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02691359 230.26574707 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02691360 230.26577759 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02691361 230.26577759 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02691362 230.26580811 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02691363 230.26580811 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02691364 230.26582336 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02691365 230.26582336 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02691366 230.26585388 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02691367 230.26585388 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02691368 230.26588440 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02691369 230.26589966 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02691370 230.26593018 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02691371 230.26593018 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02691372 230.26596069 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02691373 230.26596069 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02691374 230.26599121 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02691375 230.26599121 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02691376 230.26600647 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02691377 230.26600647 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02691378 230.26603699 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02691379 230.26603699 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02691380 230.26606750 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02691381 230.26606750 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02691382 230.26608276 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02691383 230.26611328 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02691384 230.26614380 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02691385 230.26614380 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02691386 230.26615906 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02691387 230.26615906 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02691388 230.26618958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02691389 230.26618958 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02691390 230.26622009 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02691391 230.26622009 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02691392 230.26623535 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02691393 230.26623535 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02691394 230.26626587 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02691395 230.26626587 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02691396 230.26629639 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02691397 230.26629639 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02691398 230.26631165 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02691399 230.26631165 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02691400 230.26634216 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02691401 230.26637268 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02691402 230.26638794 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02691403 230.26638794 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02691404 230.26641846 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02691405 230.26641846 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02691406 230.26644897 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02691407 230.26644897 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02701383 230.41563416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17558 -02701384 230.41566467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -02701385 230.41566467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -02701386 230.41569519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -02701387 230.41569519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -02701388 230.41572571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -02701389 230.41572571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -02701390 230.41574097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -02701391 230.41574097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -02701392 230.41577148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -02701393 230.41580200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -02701394 230.41581726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -02701395 230.41581726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -02701396 230.41584778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c8 -02701397 230.41584778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175c8 -02701398 230.41587830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -02701399 230.41587830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -02701400 230.41589355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -02701401 230.41589355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -02701402 230.41592407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -02701403 230.41592407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -02701404 230.41595459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -02701405 230.41595459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -02701406 230.41596985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -02701407 230.41596985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -02701408 230.41600037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -02701409 230.41600037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -02701410 230.41603088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -02701411 230.41603088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -02701412 230.41604614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -02701413 230.41604614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -02701414 230.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -02701415 230.41607666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -02701416 230.41610718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -02701417 230.41612244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -02701418 230.41615295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -02701419 230.41615295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -02701420 230.41618347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -02701421 230.41618347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -02701422 230.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -02701423 230.41619873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -02701424 230.41625977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -02701425 230.41625977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -02701426 230.41627502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -02713742 230.51284790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b8 -02713743 230.51284790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -02713744 230.51284790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b8 -02713745 230.51284790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc720 -02713746 230.51286316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c8 -02713747 230.51286316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -02713748 230.51286316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c8 -02713749 230.51286316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc730 -02713750 230.51289368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d8 -02713751 230.51289368 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -02713752 230.51289368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d8 -02713753 230.51289368 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc740 -02713754 230.51292419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e8 -02713755 230.51292419 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -02713756 230.51292419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e8 -02713757 230.51292419 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc750 -02713758 230.51295471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f8 -02713759 230.51295471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f8 -02713760 230.51295471 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -02713761 230.51296997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc760 -02713762 230.51296997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24108 -02713763 230.51296997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24108 -02713764 230.51300049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -02713765 230.51300049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc770 -02713766 230.51300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -02713767 230.51300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -02713768 230.51303101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -02713769 230.51303101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc780 -02713770 230.51303101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -02713771 230.51303101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -02713772 230.51304626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -02713773 230.51304626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc790 -02713774 230.51304626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -02713775 230.51304626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -02713776 230.51307678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -02713777 230.51307678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a0 -02713778 230.51307678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -02713779 230.51310730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -02713780 230.51310730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -02713781 230.51312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b0 -02713782 230.51312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -02713783 230.51312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -02713784 230.51315308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -02713785 230.51315308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c0 -02728274 230.61764526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -02728275 230.61764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -02728276 230.61764526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32278 -02728277 230.61764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab80 -02728278 230.61767578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -02728279 230.61767578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -02728280 230.61767578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32288 -02728281 230.61767578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab90 -02728282 230.61770630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -02728283 230.61770630 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -02728284 230.61770630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32298 -02728285 230.61772156 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aba0 -02728286 230.61772156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -02728287 230.61775208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -02728288 230.61775208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322a8 -02728289 230.61775208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abb0 -02728290 230.61778259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b8 -02728291 230.61778259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322b8 -02728292 230.61778259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -02728293 230.61778259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abc0 -02728294 230.61779785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c8 -02728295 230.61779785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322c8 -02728296 230.61779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -02728297 230.61779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abd0 -02728298 230.61782837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d8 -02728299 230.61782837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322d8 -02728300 230.61785889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -02728301 230.61785889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e8 -02728302 230.61785889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abe0 -02728303 230.61785889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322e8 -02728304 230.61787415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -02728305 230.61787415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -02728306 230.61787415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1abf0 -02728307 230.61787415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x322f8 -02728308 230.61790466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -02728309 230.61790466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -02728310 230.61790466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac00 -02728311 230.61790466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32308 -02728312 230.61793518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -02728313 230.61793518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -02728314 230.61793518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac10 -02728315 230.61793518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32318 -02728316 230.61796570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac20 -02728317 230.61796570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32328 -02739436 230.69874573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02739437 230.69874573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -02739438 230.69874573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -02739439 230.69874573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -02739440 230.69877625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02739441 230.69877625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d038 -02739442 230.69880676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -02739443 230.69880676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -02739444 230.69880676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02739445 230.69882202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d048 -02739446 230.69882202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -02739447 230.69882202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -02739448 230.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02739449 230.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d058 -02739450 230.69888306 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -02739451 230.69888306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02739452 230.69888306 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -02739453 230.69888306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d068 -02739454 230.69889832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -02739455 230.69889832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02739456 230.69889832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -02739457 230.69889832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d078 -02739458 230.69892883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02739459 230.69892883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -02739460 230.69892883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d088 -02739461 230.69892883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -02739462 230.69895935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02739463 230.69895935 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -02739464 230.69895935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -02739465 230.69895935 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -02739466 230.69898987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02739467 230.69898987 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -02739468 230.69898987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -02739469 230.69898987 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -02739470 230.69900513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -02739471 230.69900513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -02739472 230.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02739473 230.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -02739474 230.69903564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -02739475 230.69906616 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -02739476 230.69906616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02739477 230.69906616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -02739478 230.69908142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -02739479 230.69908142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -02765749 230.92137146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -02765750 230.92137146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -02765751 230.92140198 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -02765752 230.92140198 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -02765753 230.92141724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -02765754 230.92144775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -02765755 230.92147827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -02765756 230.92147827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -02765757 230.92149353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -02765758 230.92149353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -02765759 230.92152405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -02765760 230.92152405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -02765761 230.92155457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -02765762 230.92155457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -02765763 230.92156982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -02765764 230.92156982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -02765765 230.92160034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -02765766 230.92160034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -02765767 230.92163086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -02765768 230.92163086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -02765769 230.92164612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -02765770 230.92164612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -02765771 230.92167664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -02765772 230.92167664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -02765773 230.92170715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -02765774 230.92172241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -02765775 230.92175293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -02765776 230.92175293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43490 -02765777 230.92178345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -02765778 230.92178345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434a0 -02765779 230.92179871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -02765780 230.92179871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434b0 -02765781 230.92182922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -02765782 230.92182922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434c0 -02765783 230.92185974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -02765784 230.92185974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434d0 -02765785 230.92187500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -02765786 230.92187500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434e0 -02765787 230.92190552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -02765788 230.92190552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x434f0 -02765789 230.92193604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -02765790 230.92193604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43500 -02765791 230.92195129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -02765792 230.92195129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43510 -02770189 230.98641968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -02770190 230.98641968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be80 -02770191 230.98645020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -02770192 230.98645020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be90 -02770193 230.98646545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -02770194 230.98646545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea0 -02770195 230.98649597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -02770196 230.98649597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb0 -02770197 230.98654175 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -02770198 230.98654175 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec0 -02770199 230.98657227 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -02770200 230.98657227 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed0 -02770201 230.98660278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -02770202 230.98660278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee0 -02770203 230.98661804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -02770204 230.98661804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef0 -02770205 230.98664856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -02770206 230.98664856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf00 -02770207 230.98667908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -02770208 230.98669434 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf10 -02770209 230.98672485 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -02770210 230.98672485 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf20 -02770211 230.98675537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -02770212 230.98675537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf30 -02770213 230.98677063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -02770214 230.98677063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf40 -02770215 230.98680115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -02770216 230.98680115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf50 -02770217 230.98683167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -02770218 230.98683167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf60 -02770219 230.98684692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -02770220 230.98687744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf70 -02770221 230.98690796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -02770222 230.98690796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf80 -02770223 230.98693848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -02770224 230.98693848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf90 -02770225 230.98695374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -02770226 230.98695374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfa0 -02770227 230.98698425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -02770228 230.98698425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfb0 -02770229 230.98701477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -02770230 230.98701477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfc0 -02770231 230.98706055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -02770232 230.98706055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bfd0 -02773739 231.58332825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773740 231.58335876 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773741 231.58338928 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773742 231.58340454 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02773743 231.58351135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773744 231.58351135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773745 231.58358765 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773746 231.58361816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773747 232.90165710 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02773748 232.92028809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773749 232.92028809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773750 234.09167480 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773751 234.09172058 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773752 234.09175110 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773753 234.09175110 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02773754 234.09187317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773755 234.09187317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773756 234.09193420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02773757 234.09194946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02773758 234.92114258 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02773759 234.94169617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773760 234.94169617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02773761 235.86849976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02773762 235.86849976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02773763 235.86851501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02773764 235.86851501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02773765 235.86854553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02773766 235.86857605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02773767 235.86859131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02773768 235.86859131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02773769 235.86862183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02773770 235.86862183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02773771 235.86865234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02773772 235.86865234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02773773 235.86866760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02773774 235.86866760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02773775 235.86869812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02773776 235.86869812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02773777 235.86872864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02773778 235.86872864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02773779 235.86874390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02773780 235.86874390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02773781 235.86877441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02773782 235.86877441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02773783 235.86880493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02773784 235.86880493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02773785 235.86882019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02773786 235.86882019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02773787 235.86888123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02773788 235.86888123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02773789 235.86889648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02773790 235.86889648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02773791 235.86892700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02773792 235.86892700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02773793 235.86895752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02773794 235.86897278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02773795 235.86900330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02773796 235.86900330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02773797 235.86903381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02773798 235.86903381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02773799 235.86904907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02773800 235.86904907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02773801 235.86907959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02773802 235.86907959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02773803 235.86911011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02773804 235.86911011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02773805 235.86912537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02773806 235.86912537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02773807 235.86915588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02773808 235.86915588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02773809 235.86918640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02773810 235.86918640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02773811 235.86921692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02773812 235.86921692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02773813 235.86923218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02773814 235.86926270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02773815 235.86929321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02773816 235.86929321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02773817 235.86930847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02773818 235.86930847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02773819 235.86933899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02773820 235.86933899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02773821 235.86936951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02773822 235.86936951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02773823 235.86938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02773824 235.86938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02773825 235.86941528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02773826 235.86941528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02773827 235.86946106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02773828 235.86946106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02773829 235.86949158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02773830 235.86949158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02773831 235.86952209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02773832 235.86952209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02773833 235.86953735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02773834 235.86956787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02773835 235.86959839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02773836 235.86959839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02773837 235.86961365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02773838 235.86961365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02773839 235.86964417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02773840 235.86964417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02773841 235.86967468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02773842 235.86967468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02773843 235.86968994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02773844 235.86968994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02773845 235.86975098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02773846 235.86975098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02773847 235.86976624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02773848 235.86976624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02773849 235.86982727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02773850 235.86982727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02773851 235.86984253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02773852 235.86984253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02773853 235.86990356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02773854 235.86990356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02773855 235.86991882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02773856 235.86991882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02773857 235.86994934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02773858 235.86994934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02773859 235.87001038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02773860 235.87001038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02773861 235.87002563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02773862 235.87002563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02773863 235.87005615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02773864 235.87005615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02773865 235.87010193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02773866 235.87010193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02773867 235.87013245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02773868 235.87013245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02773869 235.87016296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02773870 235.87016296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02773871 235.87017822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02773872 235.87020874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02773873 235.87023926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02773874 235.87023926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02773875 235.87025452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02773876 235.87025452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02773877 235.87028503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02773878 235.87028503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02773879 235.87031555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02773880 235.87031555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02773881 235.87033081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02773882 235.87033081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02773883 235.87036133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02773884 235.87036133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02773885 235.87040710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02773886 235.87040710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02773887 235.87043762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02773888 235.87043762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02773889 235.87046814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02773890 235.87046814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02773891 235.87048340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02773892 235.87048340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02773893 235.87051392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02773894 235.87054443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02773895 235.87055969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02773896 235.87055969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02773897 235.87059021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02773898 235.87059021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02773899 235.87062073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02773900 235.87062073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02773901 235.87063599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02773902 235.87063599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02773903 235.87066650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02773904 235.87066650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02773905 235.87069702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02773906 235.87069702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02773907 235.87072754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02773908 235.87072754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02773909 235.87074280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02773910 235.87077332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02773911 235.87080383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02773912 235.87080383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02773913 235.87081909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02773914 235.87081909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02773915 235.87084961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02773916 235.87084961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02773917 235.87088013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02773918 235.87088013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02773919 235.87089539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02773920 235.87089539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02773921 235.87092590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02773922 235.87092590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02773923 235.87095642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02773924 235.87097168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02773925 235.87100220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02773926 235.87100220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02773927 235.87103271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02773928 235.87103271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02773929 235.87104797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02773930 235.87104797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02773931 235.87107849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02773932 235.87107849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02773933 235.87110901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02773934 235.87110901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02773935 235.87112427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02773936 235.87112427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02773937 235.87115479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02773938 235.87115479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02773939 235.87120056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02773940 235.87120056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02773941 235.87123108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02773942 235.87123108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02773943 235.87126160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02773944 235.87126160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02773945 235.87127686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02773946 235.87127686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02773947 235.87130737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02773948 235.87130737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02773949 235.87133789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02773950 235.87133789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02773951 235.87135315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02773952 235.87135315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02773953 235.87138367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02773954 235.87138367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02773955 235.87142944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02773956 235.87142944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02773957 235.87145996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02773958 235.87145996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02773959 235.87149048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02773960 235.87149048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02773961 235.87152100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02773962 235.87152100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02773963 235.87153625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02773964 235.87153625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02773965 235.87156677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02773966 235.87156677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02773967 235.87159729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02773968 235.87159729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02773969 235.87164307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02773970 235.87164307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02773971 235.87167358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02773972 235.87167358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02773973 235.87168884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02773974 235.87168884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02773975 235.87171936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02773976 235.87174988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02773977 235.87176514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02773978 235.87176514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02773979 235.87179565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02773980 235.87182617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02773981 235.87184143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02773982 235.87184143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02773983 235.87187195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02773984 235.87187195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02773985 235.87191772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02773986 235.87191772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02773987 235.87194824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02773988 235.87197876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02773989 235.87199402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02773990 235.87199402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02773991 235.87205505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02773992 235.87205505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02773993 235.87207031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02773994 235.87207031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02773995 235.87213135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02773996 235.87213135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02773997 235.87214661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02773998 235.87214661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02773999 235.87220764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02774000 235.87220764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02774001 235.87222290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02774002 235.87225342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02774003 235.87228394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02774004 235.87228394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02774005 235.87231445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02774006 235.87231445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02774007 235.87236023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02774008 235.87236023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02774009 235.87239075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02774010 235.87239075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02774011 235.87243652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02774012 235.87243652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02774013 235.87246704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02774014 235.87248230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02774015 235.87251282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02774016 235.87251282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02774017 235.87255859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02774018 235.87255859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02774019 235.87258911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02774020 235.87258911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02774021 235.87263489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02774022 235.87263489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02774023 235.87266541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02774024 235.87269592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02774025 235.87271118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02774026 235.87271118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02774027 235.87277222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02774028 235.87277222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02774029 235.87278748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02774030 235.87278748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02774031 235.87284851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02774032 235.87284851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02774033 235.87286377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02774034 235.87289429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02774035 235.87292480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02774036 235.87292480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02774037 235.87297058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02774038 235.87297058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02774039 235.87300110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02774040 235.87300110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02774041 235.87304688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02774042 235.87304688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02774043 235.87307739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02774044 235.87312317 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02774045 235.87315369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02774046 235.87315369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02774047 235.87319946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02774048 235.87319946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02774049 235.87326050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02774050 235.87326050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02774051 235.87327576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02774052 235.87327576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02774053 235.87333679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02774054 235.87333679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02774055 235.87335205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02774056 235.87338257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02774057 235.87341309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02774058 235.87341309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02774059 235.87345886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02774060 235.87345886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02774061 235.87348938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02774062 235.87350464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02774063 235.87353516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02774064 235.87353516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02774065 235.87358093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02774066 235.87358093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02774067 235.87361145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02774068 235.87364197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02774069 235.87365723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02774070 235.87365723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02774071 235.87371826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02774072 235.87371826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02774073 235.87373352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02774074 235.87373352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02774075 235.87379456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02774076 235.87379456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02774077 235.87384033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02774078 235.87384033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02774079 235.87387085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02774080 235.87387085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02774081 235.87391663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02774082 235.87391663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02774083 235.87394714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02774084 235.87397766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02774085 235.87399292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02774086 235.87399292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02774087 235.87405396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02774088 235.87405396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02774089 235.87406921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02774090 235.87409973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02774091 235.87413025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02774092 235.87413025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02774093 235.87417603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02774094 235.87417603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02774095 235.87420654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02774096 235.87422180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02774097 235.87425232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02774098 235.87425232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02774099 235.87429810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02774100 235.87429810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02774101 235.87432861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02774102 235.87432861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02774103 235.87437439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02774104 235.87437439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02774105 235.87443542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02774106 235.87443542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02774107 235.87445068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02774108 235.87445068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02774109 235.87451172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02774110 235.87451172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02774111 235.87452698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02774112 235.87455750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02774113 235.87458801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02774114 235.87458801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02774115 235.87463379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02774116 235.87463379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02774117 235.87466431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02774118 235.87466431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02774119 235.87471008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02774120 235.87471008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02774121 235.87474060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02774122 235.87477112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02774123 235.87478638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02774124 235.87478638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02774125 235.87484741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02774126 235.87484741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02774127 235.87486267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02774128 235.87489319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02774129 235.87492371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02774130 235.87492371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02774131 235.87496948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02774132 235.87496948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02774133 235.87500000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02774134 235.87500000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02774135 235.87504578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02774136 235.87504578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02774137 235.87509155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02774138 235.87509155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02774139 235.87512207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02774140 235.87512207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02774141 235.87516785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02774142 235.87516785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02774143 235.87519836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02774144 235.87522888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02774145 235.87524414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02774146 235.87524414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02774147 235.87530518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02774148 235.87530518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02774149 235.87532043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02774150 235.87535095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02774151 235.87538147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02774152 235.87538147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02774153 235.87542725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02774154 235.87542725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02774155 235.87545776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02774156 235.87548828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02774157 235.87550354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02774158 235.87550354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02774159 235.87556458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02774160 235.87556458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02774161 235.87557983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02774162 235.87561035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02774163 235.87564087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02774164 235.87564087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02774165 235.87565613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02774166 235.87568665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02774167 235.87571716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02774168 235.87571716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02774169 235.87573242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02774170 235.87573242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02774171 235.87579346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02774172 235.87579346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02774173 235.87580872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02774174 235.87580872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02774175 235.87586975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02774176 235.87586975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02774177 235.87588501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02774178 235.87588501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02774179 235.87594604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02774180 235.87594604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02774181 235.87596130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02774182 235.87596130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02774183 235.87602234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02774184 235.87602234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02774185 235.87603760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02774186 235.87603760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02774187 235.87606812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02774188 235.87609863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02774189 235.87612915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02774190 235.87612915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02774191 235.87614441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02774192 235.87617493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02774193 235.87620544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02774194 235.87620544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02774195 235.87622070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02774196 235.87622070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02774197 235.87625122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02774198 235.87625122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02774199 235.87628174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02774200 235.87628174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02774201 235.87629700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02774202 235.87629700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02774203 235.87635803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02774204 235.87635803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02774205 235.87637329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02774206 235.87640381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02774207 235.87643433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02774208 235.87643433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02774209 235.87648010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02774210 235.87648010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02774211 235.87651062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02774212 235.87651062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02774213 235.87655640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02774214 235.87655640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02774215 235.87658691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02774216 235.87660217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02774217 235.87663269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02774218 235.87663269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02774219 235.87667847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02774220 235.87667847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02774221 235.87670898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02774222 235.87670898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02774223 235.87673950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02774224 235.87673950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02774225 235.87678528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02774226 235.87678528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02774227 235.87681580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02774228 235.87683105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02774229 235.87686157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02774230 235.87686157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02774231 235.87692261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02774232 235.87692261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02774233 235.87693787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02774234 235.87693787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02774235 235.87699890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02774236 235.87699890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02774237 235.87701416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02774238 235.87704468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02774239 235.87707520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02774240 235.87707520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02774241 235.87712097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02774242 235.87712097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02774243 235.87715149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02774244 235.87715149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02774245 235.87719727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02774246 235.87719727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02774247 235.87724304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02774248 235.87724304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02774249 235.87727356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02774250 235.87727356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02774251 235.87731934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02774252 235.87731934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02774253 235.87734985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02774254 235.87738037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02774255 235.87739563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02774256 235.87739563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02774257 235.87745667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02774258 235.87745667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02774259 235.87747192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02774260 235.87750244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02774261 235.87753296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02774262 235.87753296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02774263 235.87757874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02774264 235.87757874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02774265 235.87760925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02774266 235.87762451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02774267 235.87765503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02774268 235.87765503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02774269 235.87771606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02774270 235.87771606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02774271 235.87773132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02774272 235.87776184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02774273 235.87779236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02774274 235.87779236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02774275 235.87783813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02774276 235.87783813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02774277 235.87786865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02774278 235.87788391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02774279 235.87791443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02774280 235.87791443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02774281 235.87796021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02774282 235.87796021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02774283 235.87802124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02774284 235.87802124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02774285 235.87803650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02774286 235.87803650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02774287 235.87809753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02774288 235.87809753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02774289 235.87814331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02774290 235.87814331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02774291 235.87817383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02774292 235.87817383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02774293 235.87821960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02774294 235.87821960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02774295 235.87826538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02774296 235.87826538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02774297 235.87829590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02774298 235.87832642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02774299 235.87834167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02774300 235.87834167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02774301 235.87840271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02774302 235.87840271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02774303 235.87843323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02774304 235.87844849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02774305 235.87847900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02774306 235.87847900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02774307 235.87852478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02774308 235.87852478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02774309 235.87858582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02774310 235.87858582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02774311 235.87860107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02774312 235.87860107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02774313 235.87866211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02774314 235.87866211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02774315 235.87867737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02774316 235.87867737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02774317 235.87873840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02774318 235.87873840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02774319 235.87875366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02774320 235.87875366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02774321 235.87881470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02774322 235.87881470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02774323 235.87882996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02774324 235.87882996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02774325 235.87886047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02774326 235.87886047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02774327 235.87889099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02774328 235.87889099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02774329 235.87890625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02774330 235.87890625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02774331 235.87893677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02774332 235.87896729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02774333 235.87898254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02774334 235.87898254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02774335 235.87901306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02774336 235.87901306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02774337 235.87904358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02774338 235.87904358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02774339 235.87905884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02774340 235.87905884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02774341 235.87908936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02774342 235.87908936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02774343 235.87911987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02774344 235.87911987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02774345 235.87913513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02774346 235.87913513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02774347 235.87916565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02774348 235.87916565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02774349 235.87922668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02774350 235.87922668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02774351 235.87924194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02774352 235.87924194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02774353 235.87927246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02774354 235.87927246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02774355 235.87930298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02774356 235.87930298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02774357 235.87931824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02774358 235.87931824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02774359 235.87934875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02774360 235.87934875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02774361 235.87937927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02774362 235.87937927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02774363 235.87939453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02774364 235.87942505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02774365 235.87945557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02774366 235.87945557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02774367 235.87947083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02774368 235.87947083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02774369 235.87950134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02774370 235.87950134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02774371 235.87953186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02774372 235.87953186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02774373 235.87954712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02774374 235.87954712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02774375 235.87957764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02774376 235.87957764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02774377 235.87960815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02774378 235.87962341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02774379 235.87965393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02774380 235.87965393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02774381 235.87968445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02774382 235.87968445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02774383 235.87969971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02774384 235.87969971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02774385 235.87973022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02774386 235.87973022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02774387 235.87976074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02774388 235.87976074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02774389 235.87977600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02774390 235.87977600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02774391 235.87980652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02774392 235.87980652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02774393 235.87985229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02774394 235.87985229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02774395 235.87988281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02774396 235.87988281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02774397 235.87991333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02774398 235.87991333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02774399 235.87992859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02774400 235.87992859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02774401 235.87995911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02774402 235.87995911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02774403 235.87998962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02774404 235.87998962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02774405 235.88002014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02774406 235.88002014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02774407 235.88003540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02774408 235.88006592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02774409 235.88009644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02774410 235.88009644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02774411 235.88011169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02774412 235.88011169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02774413 235.88014221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02774414 235.88014221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02774415 235.88017273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02774416 235.88017273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02774417 235.88018799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02774418 235.88018799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02774419 235.88021851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02774420 235.88021851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02774421 235.88024902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02774422 235.88024902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02774423 235.88026428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02774424 235.88029480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02774425 235.88032532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02774426 235.88032532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02774427 235.88034058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02774428 235.88034058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02774429 235.88037109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02774430 235.88037109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02774431 235.88040161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02774432 235.88040161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02774433 235.88041687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02774434 235.88041687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02774435 235.88044739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02774436 235.88044739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02774437 235.88047791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02774438 235.88047791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02774439 235.88049316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02774440 235.88052368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02774441 235.88055420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02774442 235.88055420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02774443 235.88056946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02774444 235.88056946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02774445 235.88059998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02774446 235.88059998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02774447 235.88063049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02774448 235.88063049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02774449 235.88064575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02774450 235.88064575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02774451 235.88067627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02774452 235.88067627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02774453 235.88070679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02774454 235.88070679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02774455 235.88072205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02774456 235.88075256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02774457 235.88078308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02774458 235.88078308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02774459 235.88081360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02774460 235.88081360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02774461 235.88082886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02774462 235.88082886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02774463 235.88085938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02774464 235.88085938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02774465 235.88088989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02774466 235.88088989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02774467 235.88090515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02774468 235.88090515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02774469 235.88093567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02774470 235.88093567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02774471 235.88096619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02774472 235.88096619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02774473 235.88098145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02774474 235.88101196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02774475 235.88104248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02774476 235.88104248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02774477 235.88105774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02774478 235.88105774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02774479 235.88108826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02774480 235.88108826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02774481 235.88111877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02774482 235.88111877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02774483 235.88113403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02774484 235.88113403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02774485 235.88116455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02774486 235.88116455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02774487 235.88119507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02774488 235.88119507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02774489 235.88121033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02774490 235.88121033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02774491 235.88124084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02774492 235.88127136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02774493 235.88128662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02774494 235.88128662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02774495 235.88131714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02774496 235.88131714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02774497 235.88134766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02774498 235.88134766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02774499 235.88136292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02774500 235.88136292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02774501 235.88142395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02774502 235.88142395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02774503 235.88143921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02774504 235.88143921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02774505 235.88150024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02774506 235.88150024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02774507 235.88153076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02774508 235.88153076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02774509 235.88154602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02774510 235.88154602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02774511 235.88157654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02774512 235.88157654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02774513 235.88162231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02774514 235.88162231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02774515 235.88165283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02774516 235.88165283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02774517 235.88168335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02774518 235.88168335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02774519 235.88169861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02774520 235.88169861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02774521 235.88172913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02774522 235.88172913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02774523 235.88175964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02774524 235.88175964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02774525 235.88177490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02774526 235.88177490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02774527 235.88183594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02774528 235.88183594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02774529 235.88185120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02774530 235.88185120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02774531 235.88191223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02774532 235.88191223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02774533 235.88192749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02774534 235.88192749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02774535 235.88198853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02774536 235.88198853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02774537 235.88200378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02774538 235.88200378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02774539 235.88206482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02774540 235.88206482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02774541 235.88208008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02774542 235.88211060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02774543 235.88214111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02774544 235.88214111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02774545 235.88215637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02774546 235.88218689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02774547 235.88221741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02774548 235.88221741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02774549 235.88226318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02774550 235.88226318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02774551 235.88229370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02774552 235.88229370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02774553 235.88233948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02774554 235.88233948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02774555 235.88237000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02774556 235.88237000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02774557 235.88241577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02774558 235.88241577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02774559 235.88244629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02774560 235.88244629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02774561 235.88249207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02774562 235.88249207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02774563 235.88252258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02774564 235.88252258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02774565 235.88256836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02774566 235.88256836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02774567 235.88264465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02774568 235.88264465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02774569 235.88270569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02774570 235.88270569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02774571 235.88272095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02774572 235.88275146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02774573 235.88278198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02774574 235.88278198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02774575 235.88279724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02774576 235.88282776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02774577 235.88285828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02774578 235.88285828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02774579 235.88287354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02774580 235.88287354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02774581 235.88290405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02774582 235.88293457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02774583 235.88294983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02774584 235.88294983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02774585 235.88301086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02774586 235.88301086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02774587 235.88302612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02774588 235.88305664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02774589 235.88308716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02774590 235.88308716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02774591 235.88311768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02774592 235.88313293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02774593 235.88316345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02774594 235.88316345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02774595 235.88319397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02774596 235.88319397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02774597 235.88323975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02774598 235.88323975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02774599 235.88327026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02774600 235.88327026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02774601 235.88331604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02774602 235.88331604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02774603 235.88334656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02774604 235.88334656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02774605 235.88336182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02774606 235.88339233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02774607 235.88342285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02774608 235.88342285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02774609 235.88343811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02774610 235.88343811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02774611 235.88346863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02774612 235.88346863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02774613 235.88349915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02774614 235.88349915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02774615 235.88351440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02774616 235.88351440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02774617 235.88354492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02774618 235.88354492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02774619 235.88357544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02774620 235.88359070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02774621 235.88362122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02774622 235.88362122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02774623 235.88366699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02774624 235.88366699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02774625 235.88369751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02774626 235.88369751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02774627 235.88374329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02774628 235.88374329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02774629 235.88377380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02774630 235.88377380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02774631 235.88381958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02774632 235.88381958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02774633 235.88385010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02774634 235.88385010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02774635 235.88391113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02774636 235.88391113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02774637 235.88392639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02774638 235.88392639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02774639 235.88398743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02774640 235.88398743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02774641 235.88400269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02774642 235.88400269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02774643 235.88406372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02774644 235.88406372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02774645 235.88407898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02774646 235.88407898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02774647 235.88414001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02774648 235.88414001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02774649 235.88415527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02774650 235.88415527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02774651 235.88421631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02774652 235.88421631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02774653 235.88423157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02774654 235.88423157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02774655 235.88429260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02774656 235.88429260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02774657 235.88430786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02774658 235.88430786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02774659 235.88436890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02774660 235.88436890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02774661 235.88438416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02774662 235.88441467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02774663 235.88444519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02774664 235.88444519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02774665 235.88446045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02774666 235.88449097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02774667 235.88452148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02774668 235.88452148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02774669 235.88453674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02774670 235.88453674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02774671 235.88459778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02774672 235.88459778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02774673 235.88462830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02774674 235.88462830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02774675 235.88467407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02774676 235.88467407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02774677 235.88470459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02774678 235.88471985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02774679 235.88475037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02774680 235.88475037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02774681 235.88479614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02774682 235.88479614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02774683 235.88482666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02774684 235.88482666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02774685 235.88487244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02774686 235.88487244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02774687 235.88490295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02774688 235.88490295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02774689 235.88494873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02774690 235.88494873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02774691 235.88497925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02774692 235.88497925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02774693 235.88502502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02774694 235.88502502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02774695 235.88505554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02774696 235.88505554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02774697 235.88510132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02774698 235.88510132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02774699 235.88513184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02774700 235.88516235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02774701 235.88517761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02774702 235.88517761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02774703 235.88520813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02774704 235.88520813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02774705 235.88525391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02774706 235.88525391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02774707 235.88528442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02774708 235.88528442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02774709 235.88533020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02774710 235.88533020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02774711 235.88536072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02774712 235.88536072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02774713 235.88542175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02774714 235.88542175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02774715 235.88543701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02774716 235.88546753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02774717 235.88549805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02774718 235.88549805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02774719 235.88551331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02774720 235.88554382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02774721 235.88557434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02774722 235.88557434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02774723 235.88558960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02774724 235.88562012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02774725 235.88565063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02774726 235.88565063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02774727 235.88566589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02774728 235.88569641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02774729 235.88572693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02774730 235.88572693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02774731 235.88574219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02774732 235.88574219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02774733 235.88580322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02774734 235.88580322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02774735 235.88581848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02774736 235.88584900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02774737 235.88587952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02774738 235.88587952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02774739 235.88592529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02774740 235.88592529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02774741 235.88595581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02774742 235.88595581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02774743 235.88597107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02774744 235.88600159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02774745 235.88603210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02774746 235.88603210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02774747 235.88604736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02774748 235.88607788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02774749 235.88610840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02774750 235.88610840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02774751 235.88612366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02774752 235.88615417 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02774753 235.88618469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02774754 235.88618469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02774755 235.88621521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02774756 235.88623047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02774757 235.88626099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02774758 235.88626099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02774759 235.88629150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02774760 235.88629150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02774761 235.88633728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02774762 235.88633728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02774763 235.88636780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02774764 235.88636780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02774765 235.88641357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02774766 235.88641357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02774767 235.88644409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02774768 235.88644409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02774769 235.88648987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02774770 235.88648987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02774771 235.88652039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02774772 235.88652039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02774773 235.88653564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02774774 235.88656616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02774775 235.88659668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02774776 235.88659668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02774777 235.88661194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02774778 235.88664246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02774779 235.88667297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02774780 235.88667297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02774781 235.88668823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02774782 235.88671875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02774783 235.88674927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02774784 235.88674927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02774785 235.88679504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02774786 235.88679504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02774787 235.88682556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02774788 235.88682556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02774789 235.88687134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02774790 235.88687134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02774791 235.88690186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02774792 235.88690186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02774793 235.88694763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02774794 235.88694763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02774795 235.88697815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02774796 235.88697815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02774797 235.88702393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02774798 235.88702393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02774799 235.88705444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02774800 235.88705444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02774801 235.88710022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02774802 235.88710022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02774803 235.88713074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02774804 235.88713074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02774805 235.88717651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02774806 235.88717651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02774807 235.88720703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02774808 235.88720703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02774809 235.88725281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02774810 235.88725281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02774811 235.88728333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02774812 235.88728333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02774813 235.88731384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02774814 235.88732910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02774815 235.88735962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02774816 235.88735962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02774817 235.88739014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02774818 235.88740540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02774819 235.88743591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02774820 235.88743591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02774821 235.88746643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02774822 235.88748169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02774823 235.88751221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02774824 235.88751221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02774825 235.88755798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02774826 235.88755798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02774827 235.88758850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02774828 235.88758850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02774829 235.88761902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02774830 235.88761902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02774831 235.88766479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02774832 235.88766479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02774833 235.88769531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02774834 235.88772583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02774835 235.88774109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02774836 235.88774109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02774837 235.88780212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02774838 235.88780212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02774839 235.88781738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02774840 235.88781738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02774841 235.88787842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02774842 235.88787842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02774843 235.88789368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02774844 235.88789368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02774845 235.88795471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02774846 235.88795471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02774847 235.88796997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02774848 235.88796997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02774849 235.88803101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02774850 235.88803101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02774851 235.88804626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02774852 235.88807678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02774853 235.88810730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02774854 235.88810730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02774855 235.88815308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02774856 235.88815308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02774857 235.88818359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02774858 235.88818359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02774859 235.88822937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02774860 235.88822937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02774861 235.88825989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02774862 235.88827515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02774863 235.88830566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02774864 235.88830566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02774865 235.88835144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02774866 235.88835144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02774867 235.88838196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02774868 235.88838196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02774869 235.88842773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02774870 235.88842773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02774871 235.88848877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02774872 235.88848877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02774873 235.88851929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02774874 235.88851929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02774875 235.88856506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02774876 235.88856506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02774877 235.88859558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02774878 235.88859558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02774879 235.88864136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02774880 235.88864136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02774881 235.88868713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02774882 235.88868713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02774883 235.88871765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02774884 235.88871765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02774885 235.88876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02774886 235.88876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02774887 235.88879395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02774888 235.88879395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02774889 235.88883972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02774890 235.88883972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02774891 235.88887024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02774892 235.88890076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02774893 235.88891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02774894 235.88891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02774895 235.88897705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02774896 235.88897705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02774897 235.88899231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02774898 235.88899231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02774899 235.88905334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02774900 235.88905334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02774901 235.88906860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02774902 235.88906860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02774903 235.88912964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02774904 235.88912964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02774905 235.88917542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02774906 235.88917542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02774907 235.88920593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02774908 235.88920593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02774909 235.88925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02774910 235.88925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02774911 235.88928223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02774912 235.88928223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02774913 235.88932800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02774914 235.88932800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02774915 235.88935852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02774916 235.88935852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02774917 235.88940430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02774918 235.88940430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02774919 235.88943481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02774920 235.88946533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02774921 235.88948059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02774922 235.88948059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02774923 235.88954163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02774924 235.88954163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02774925 235.88955688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02774926 235.88955688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02774927 235.88961792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02774928 235.88961792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02774929 235.88963318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02774930 235.88966370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02774931 235.88969421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02774932 235.88969421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02774933 235.88973999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02774934 235.88973999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02774935 235.88977051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02774936 235.88978577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02774937 235.88981628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02774938 235.88981628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02774939 235.88986206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02774940 235.88986206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02774941 235.88989258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02774942 235.88989258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02774943 235.88993835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02774944 235.88993835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02774945 235.88996887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02774946 235.88999939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02774947 235.89002991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02774948 235.89002991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02774949 235.89004517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02774950 235.89007568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02774951 235.89010620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02774952 235.89010620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02774953 235.89012146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02774954 235.89015198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02774955 235.89018250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02774956 235.89018250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02774957 235.89019775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02774958 235.89019775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02774959 235.89025879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02774960 235.89025879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02774961 235.89027405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02774962 235.89027405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02774963 235.89033508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02774964 235.89033508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02774965 235.89035034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02774966 235.89035034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02774967 235.89041138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02774968 235.89041138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02774969 235.89045715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02774970 235.89045715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02774971 235.89048767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02774972 235.89048767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02774973 235.89053345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02774974 235.89053345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02774975 235.89057922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02774976 235.89057922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02774977 235.89060974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02774978 235.89060974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02774979 235.89065552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02774980 235.89065552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02774981 235.89068604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02774982 235.89068604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02774983 235.89073181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02774984 235.89073181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02774985 235.89076233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02774986 235.89076233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02774987 235.89082336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02774988 235.89082336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02774989 235.89083862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02774990 235.89086914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02774991 235.89089966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02774992 235.89089966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02774993 235.89094543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02774994 235.89094543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02774995 235.89097595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02774996 235.89097595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02774997 235.89102173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02774998 235.89102173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02774999 235.89106750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02775000 235.89106750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02775001 235.89109802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02775002 235.89109802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02775003 235.89114380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02775004 235.89114380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02775005 235.89117432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02775006 235.89120483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02775007 235.89122009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02775008 235.89122009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02775009 235.89135742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02775010 235.89135742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02775011 235.89140320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02775012 235.89140320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02775013 235.89152527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02775014 235.89152527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02775015 235.89155579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02775016 235.89155579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02775017 235.89161682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02775018 235.89161682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02775019 235.89166260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02775020 235.89166260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02775021 235.89169312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02775022 235.89169312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02775023 235.89173889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02775024 235.89173889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02775025 235.89178467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02775026 235.89178467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02775027 235.89181519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02775028 235.89181519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02775029 235.89186096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02775030 235.89186096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02775031 235.89189148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02775032 235.89192200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02775033 235.89193726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02775034 235.89193726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02775035 235.89196777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02775036 235.89196777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02775037 235.89199829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02775038 235.89199829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02775039 235.89207458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02775040 235.89207458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02775041 235.89208984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02775042 235.89208984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02775043 235.89212036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02775044 235.89212036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02775045 235.89215088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02775046 235.89215088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02775047 235.89216614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02775048 235.89219666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02775049 235.89222717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02775050 235.89222717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02775051 235.89224243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02775052 235.89224243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02775053 235.89227295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02775054 235.89227295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02775055 235.89230347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02775056 235.89230347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02775057 235.89233398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02775058 235.89233398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02775059 235.89234924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02775060 235.89234924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02775061 235.89237976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02775062 235.89241028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02775063 235.89242554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02775064 235.89242554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02775065 235.89245605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02775066 235.89245605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02775067 235.89248657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02775068 235.89248657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02775069 235.89253235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02775070 235.89253235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02775071 235.89257813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02775072 235.89257813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02775073 235.89260864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02775074 235.89260864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02775075 235.89265442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02775076 235.89265442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02775077 235.89268494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02775078 235.89268494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02775079 235.89271545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02775080 235.89271545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02775081 235.89276123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02775082 235.89276123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02775083 235.89279175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02775084 235.89279175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02775085 235.89286804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02775086 235.89286804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02775087 235.89288330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02775088 235.89288330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02775089 235.89294434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02775090 235.89294434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02775091 235.89295959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02775092 235.89295959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02775093 235.89302063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02775094 235.89302063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02775095 235.89303589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02775096 235.89303589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02775097 235.89306641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02775098 235.89306641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02775099 235.89309692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02775100 235.89309692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02775101 235.89312744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02775102 235.89312744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02775103 235.89314270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02775104 235.89314270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02775105 235.89317322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02775106 235.89317322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02775107 235.89320374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02775108 235.89320374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02775109 235.89324951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02775110 235.89324951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02775111 235.89328003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02775112 235.89328003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02775113 235.89329529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02775114 235.89329529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02775115 235.89335632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02775116 235.89335632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02775117 235.89337158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02775118 235.89337158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02775119 235.89343262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02775120 235.89343262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02775121 235.89344788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02775122 235.89347839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02775123 235.89350891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02775124 235.89350891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02775125 235.89355469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02775126 235.89355469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02775127 235.89358521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02775128 235.89358521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02775129 235.89360046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02775130 235.89360046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02775131 235.89363098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02775132 235.89363098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02775133 235.89366150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02775134 235.89367676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02775135 235.89370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02775136 235.89370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02775137 235.89373779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02775138 235.89373779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02775139 235.89375305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02775140 235.89375305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02775141 235.89378357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02775142 235.89378357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02775143 235.89381409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02775144 235.89381409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02775145 235.89382935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02775146 235.89382935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02775147 235.89385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02775148 235.89385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02775149 235.89389038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02775150 235.89389038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02775151 235.89392090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02775152 235.89393616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02775153 235.89396667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02775154 235.89396667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02775155 235.89399719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02775156 235.89399719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02775157 235.89401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02775158 235.89401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02775159 235.89404297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02775160 235.89404297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02775161 235.89407349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02775162 235.89407349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02775163 235.89408875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02775164 235.89408875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02775165 235.89411926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02775166 235.89411926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02775167 235.89414978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02775168 235.89416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02775169 235.89419556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02775170 235.89419556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02775171 235.89422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02775172 235.89422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02775173 235.89424133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02775174 235.89424133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02775175 235.89427185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02775176 235.89427185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02775177 235.89430237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02775178 235.89430237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02775179 235.89431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02775180 235.89431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02775181 235.89434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02775182 235.89437866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02775183 235.89439392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02775184 235.89439392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02775185 235.89442444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02775186 235.89442444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02775187 235.89445496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02775188 235.89445496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02775189 235.89447021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02775190 235.89447021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02775191 235.89450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02775192 235.89450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02775193 235.89453125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02775194 235.89453125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02775195 235.89457703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02775196 235.89457703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02775197 235.89460754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02775198 235.89460754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02775199 235.89462280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02775200 235.89462280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02775201 235.89465332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02775202 235.89465332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02775203 235.89468384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02775204 235.89468384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02775205 235.89471436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02775206 235.89471436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02775207 235.89472961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02775208 235.89472961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02775209 235.89476013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02775210 235.89479065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02775211 235.89480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02775212 235.89480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02775213 235.89483643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02775214 235.89483643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02775215 235.89486694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02775216 235.89486694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02775217 235.89488220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02775218 235.89488220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02775219 235.89491272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02775220 235.89491272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02775221 235.89494324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02775222 235.89494324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02775223 235.89495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02775224 235.89495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02775225 235.89498901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02775226 235.89501953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02775227 235.89503479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02775228 235.89503479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02775229 235.89506531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02775230 235.89506531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02775231 235.89509583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02775232 235.89509583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02775233 235.89511108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02775234 235.89511108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02775235 235.89514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02775236 235.89514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02775237 235.89517212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02775238 235.89517212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02775239 235.89518738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02775240 235.89518738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02775241 235.89521790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02775242 235.89524841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02775243 235.89526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02775244 235.89526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02775245 235.89529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02775246 235.89529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02775247 235.89532471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02775248 235.89532471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02775249 235.89533997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02775250 235.89533997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02775251 235.89537048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02775252 235.89537048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02775253 235.89540100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02775254 235.89540100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02775255 235.89543152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02775256 235.89543152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02776727 235.91780090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02776728 235.91780090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -02776729 235.91783142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02776730 235.91783142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -02776731 235.91784668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02776732 235.91787720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -02776733 235.91790771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02776734 235.91790771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -02776735 235.91792297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02776736 235.91792297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -02776737 235.91795349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02776738 235.91795349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -02776739 235.91798401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02776740 235.91798401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -02776741 235.91799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02776742 235.91799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -02776743 235.91802979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02776744 235.91802979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -02776745 235.91815186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02776746 235.91815186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -02776747 235.91821289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02776748 235.91821289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -02776749 235.91822815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02776750 235.91822815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02776751 235.91828918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02776752 235.91828918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02776753 235.91830444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02776754 235.91833496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02776755 235.91836548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02776756 235.91836548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02776757 235.91838074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02776758 235.91841125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02776759 235.91844177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02776760 235.91844177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02776761 235.91845703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02776762 235.91845703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02776763 235.91851807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02776764 235.91851807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02776765 235.91856384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02776766 235.91856384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02776767 235.91864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02776768 235.91864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02776769 235.91870117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02776770 235.91870117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02781981 235.99813843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11128 -02781982 235.99813843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11128 -02781983 235.99815369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11138 -02781984 235.99815369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11138 -02781985 235.99818420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11148 -02781986 235.99818420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11148 -02781987 235.99821472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11158 -02781988 235.99822998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11158 -02781989 235.99826050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11168 -02781990 235.99826050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11168 -02781991 235.99829102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11178 -02781992 235.99829102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11178 -02781993 235.99830627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11188 -02781994 235.99830627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11188 -02781995 235.99833679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11198 -02781996 235.99833679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11198 -02781997 235.99836731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a8 -02781998 235.99836731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a8 -02781999 235.99838257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b8 -02782000 235.99838257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b8 -02782001 235.99841309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c8 -02782002 235.99841309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c8 -02782003 235.99844360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d8 -02782004 235.99845886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d8 -02782005 235.99848938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e8 -02782006 235.99848938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e8 -02782007 235.99851990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f8 -02782008 235.99851990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f8 -02782009 235.99853516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11208 -02782010 235.99853516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11208 -02782011 235.99856567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11218 -02782012 235.99856567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11218 -02782013 235.99859619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11228 -02782014 235.99859619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11228 -02782015 235.99861145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11238 -02782016 235.99861145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11238 -02782017 235.99864197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11248 -02782018 235.99864197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11248 -02782019 235.99867249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11258 -02782020 235.99867249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11258 -02782021 235.99868774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11268 -02782022 235.99871826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11268 -02782023 235.99874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11278 -02782024 235.99874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11278 -02788087 236.09031677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff8 -02788088 236.09031677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cff8 -02788089 236.09034729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d008 -02788090 236.09034729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d008 -02788091 236.09036255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d018 -02788092 236.09036255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d018 -02788093 236.09039307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -02788094 236.09039307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d028 -02788095 236.09042358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -02788096 236.09043884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d038 -02788097 236.09046936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -02788098 236.09046936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d048 -02788099 236.09049988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -02788100 236.09049988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d058 -02788101 236.09051514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -02788102 236.09051514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d068 -02788103 236.09054565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -02788104 236.09054565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d078 -02788105 236.09057617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d088 -02788106 236.09057617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d088 -02788107 236.09062195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d098 -02788108 236.09062195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d098 -02788109 236.09065247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a8 -02788110 236.09065247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0a8 -02788111 236.09069824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b8 -02788112 236.09069824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0b8 -02788113 236.09072876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c8 -02788114 236.09072876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0c8 -02788115 236.09075928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d8 -02788116 236.09075928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0d8 -02788117 236.09080505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e8 -02788118 236.09080505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0e8 -02788119 236.09083557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f8 -02788120 236.09085083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d0f8 -02788121 236.09088135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d108 -02788122 236.09088135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d108 -02788123 236.09091187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d118 -02788124 236.09091187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d118 -02788125 236.09095764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d128 -02788126 236.09095764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d128 -02788127 236.09098816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d138 -02788128 236.09098816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d138 -02788129 236.09100342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d148 -02788130 236.09100342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d148 -02794013 236.17968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28928 -02794014 236.17971802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28928 -02794015 236.17973328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28938 -02794016 236.17973328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28938 -02794017 236.17976379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28948 -02794018 236.17976379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28948 -02794019 236.17979431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28958 -02794020 236.17979431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28958 -02794021 236.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28968 -02794022 236.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28968 -02794023 236.17984009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28978 -02794024 236.17984009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28978 -02794025 236.17987061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28988 -02794026 236.17987061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28988 -02794027 236.17988586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28998 -02794028 236.17988586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28998 -02794029 236.17991638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a8 -02794030 236.17991638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a8 -02794031 236.17994690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b8 -02794032 236.17996216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b8 -02794033 236.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c8 -02794034 236.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c8 -02794035 236.18002319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d8 -02794036 236.18002319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d8 -02794037 236.18003845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e8 -02794038 236.18003845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e8 -02794039 236.18006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f8 -02794040 236.18006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f8 -02794041 236.18009949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a08 -02794042 236.18009949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a08 -02794043 236.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a18 -02794044 236.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a18 -02794045 236.18014526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a28 -02794046 236.18014526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a28 -02794047 236.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a38 -02794048 236.18019104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a38 -02794049 236.18022156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a48 -02794050 236.18022156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a48 -02794051 236.18025208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a58 -02794052 236.18025208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a58 -02794053 236.18028259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a68 -02794054 236.18028259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a68 -02794055 236.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a78 -02794056 236.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a78 -02810125 236.41920471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -02810126 236.41920471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a8 -02810127 236.41921997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -02810128 236.41925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b8 -02810129 236.41928101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -02810130 236.41928101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c8 -02810131 236.41929626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -02810132 236.41929626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d8 -02810133 236.41932678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -02810134 236.41932678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e8 -02810135 236.41935730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -02810136 236.41935730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f8 -02810137 236.41937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -02810138 236.41937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48108 -02810139 236.41940308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -02810140 236.41940308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48118 -02810141 236.41943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -02810142 236.41943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48128 -02810143 236.41944885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -02810144 236.41944885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48138 -02810145 236.41947937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -02810146 236.41950989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48148 -02810147 236.41954041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -02810148 236.41954041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48158 -02810149 236.41955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -02810150 236.41955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48168 -02810151 236.41958618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48178 -02810152 236.41958618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48178 -02810153 236.41961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48188 -02810154 236.41961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48188 -02810155 236.41963196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48198 -02810156 236.41963196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48198 -02810157 236.41966248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a8 -02810158 236.41966248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a8 -02810159 236.41969299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b8 -02810160 236.41969299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b8 -02810161 236.41970825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c8 -02810162 236.41970825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c8 -02810163 236.41973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d8 -02810164 236.41973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d8 -02810165 236.41978455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e8 -02810166 236.41978455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481e8 -02810167 236.41981506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f8 -02810168 236.41981506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481f8 -02815647 236.59909058 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815648 236.59913635 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815649 236.59913635 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815650 236.59916687 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02815651 236.59928894 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815652 236.59928894 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815653 236.59934998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815654 236.59936523 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815655 236.94366455 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02815656 236.96360779 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815657 236.96360779 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815658 238.23590088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -02815659 238.23593140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -02815660 238.23905945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815661 238.96435547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02815662 238.98358154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815663 238.98358154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815664 239.10627747 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815665 239.10630798 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815666 239.10632324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815667 239.10635376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02815668 239.10646057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815669 239.10647583 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815670 239.10653687 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02815671 239.10656738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02815672 240.98593140 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02815673 241.00518799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815674 241.00518799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02815675 241.49874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02815676 241.49874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02815677 241.49877930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02815678 241.49877930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02815679 241.49880981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02815680 241.49880981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02815681 241.49882507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02815682 241.49882507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02815683 241.49885559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02815684 241.49885559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02815685 241.49888611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02815686 241.49890137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02815687 241.49893188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02815688 241.49893188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02815689 241.49896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02815690 241.49896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02815691 241.49897766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02815692 241.49897766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02815693 241.49900818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02815694 241.49900818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02815695 241.49903870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02815696 241.49903870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02815697 241.49905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02815698 241.49905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02815699 241.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02815700 241.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02815701 241.49911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02815702 241.49911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02815703 241.49913025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02815704 241.49913025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02815705 241.49916077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02815706 241.49916077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02815707 241.49919128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02815708 241.49920654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02815709 241.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02815710 241.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02815711 241.49926758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02815712 241.49926758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02815713 241.49928284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02815714 241.49928284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02815715 241.49931335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02815716 241.49931335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02815717 241.49934387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02815718 241.49935913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02815719 241.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02815720 241.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02815721 241.49942017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02815722 241.49942017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02815723 241.49945068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02815724 241.49945068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02815725 241.49946594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02815726 241.49946594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02815727 241.49949646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02815728 241.49952698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02815729 241.49954224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02815730 241.49954224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02815731 241.49957275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02815732 241.49957275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02815733 241.49960327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02815734 241.49960327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02815735 241.49961853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02815736 241.49961853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02815737 241.49964905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02815738 241.49964905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02815739 241.49967957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02815740 241.49967957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02815741 241.49969482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02815742 241.49969482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02815743 241.49972534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02815744 241.49972534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02815745 241.49975586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02815746 241.49975586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02815747 241.49977112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02815748 241.49980164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02815749 241.49983215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02815750 241.49983215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02815751 241.49984741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02815752 241.49984741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02815753 241.49987793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02815754 241.49987793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02815755 241.49990845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02815756 241.49990845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02815757 241.49992371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02815758 241.49992371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02815759 241.49995422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02815760 241.49995422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02815761 241.49998474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02815762 241.49998474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02815763 241.50000000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02815764 241.50000000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02815765 241.50003052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02815766 241.50003052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02815767 241.50006104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02815768 241.50007629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02815769 241.50010681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02815770 241.50010681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02815771 241.50013733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02815772 241.50013733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02815773 241.50015259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02815774 241.50015259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02815775 241.50018311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02815776 241.50018311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02815777 241.50021362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02815778 241.50021362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02815779 241.50024414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02815780 241.50024414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02815781 241.50025940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02815782 241.50025940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02815783 241.50028992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02815784 241.50028992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02815785 241.50032043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02815786 241.50032043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02815787 241.50033569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02815788 241.50033569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02815789 241.50036621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02815790 241.50039673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02815791 241.50041199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02815792 241.50041199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02815793 241.50044250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02815794 241.50044250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02815795 241.50047302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02815796 241.50047302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02815797 241.50048828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02815798 241.50048828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02815799 241.50054932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02815800 241.50054932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02815801 241.50056458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02815802 241.50056458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02815803 241.50059509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02815804 241.50059509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02815805 241.50062561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02815806 241.50062561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02815807 241.50064087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02815808 241.50064087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02815809 241.50067139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02815810 241.50067139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02815811 241.50070190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02815812 241.50070190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02815813 241.50071716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02815814 241.50074768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02815815 241.50077820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02815816 241.50077820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02815817 241.50079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02815818 241.50079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02815819 241.50082397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02815820 241.50082397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02815821 241.50085449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02815822 241.50085449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02815823 241.50086975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02815824 241.50086975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02815825 241.50090027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02815826 241.50090027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02815827 241.50093079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02815828 241.50093079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02815829 241.50094604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02815830 241.50094604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02815831 241.50097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02815832 241.50097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02815833 241.50100708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02815834 241.50100708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02815835 241.50103760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02815836 241.50105286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02815837 241.50108337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02815838 241.50108337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02815839 241.50111389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02815840 241.50111389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02815841 241.50112915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02815842 241.50112915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02815843 241.50115967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02815844 241.50115967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02815845 241.50119019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02815846 241.50119019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02815847 241.50120544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02815848 241.50120544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02815849 241.50123596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02815850 241.50123596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02815851 241.50126648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02815852 241.50126648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02815853 241.50128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02815854 241.50128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02815855 241.50131226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02815856 241.50134277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02815857 241.50135803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02815858 241.50135803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02815859 241.50138855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02815860 241.50138855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02815861 241.50141907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02815862 241.50141907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02815863 241.50143433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02815864 241.50143433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02815865 241.50146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02815866 241.50146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02815867 241.50149536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02815868 241.50149536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02815869 241.50151062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02815870 241.50151062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02815871 241.50154114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02815872 241.50154114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02815873 241.50157166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02815874 241.50157166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02815875 241.50158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02815876 241.50158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02815877 241.50161743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02815878 241.50164795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02815879 241.50166321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02815880 241.50166321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02815881 241.50169373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02815882 241.50169373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02815883 241.50172424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02815884 241.50175476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02815885 241.50177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02815886 241.50177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02815887 241.50180054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02815888 241.50180054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02815889 241.50184631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02815890 241.50184631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02815891 241.50187683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02815892 241.50187683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02815893 241.50192261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02815894 241.50192261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02815895 241.50195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02815896 241.50195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02815897 241.50198364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02815898 241.50198364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02815899 241.50199890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02815900 241.50199890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02815901 241.50202942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02815902 241.50205994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02815903 241.50207520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02815904 241.50207520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02815905 241.50210571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02815906 241.50210571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02815907 241.50213623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02815908 241.50213623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02815909 241.50215149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02815910 241.50215149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02815911 241.50218201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02815912 241.50218201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02815913 241.50221252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02815914 241.50221252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02815915 241.50222778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02815916 241.50222778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02815917 241.50225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02815918 241.50225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02815919 241.50228882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02815920 241.50228882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02815921 241.50230408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02815922 241.50233459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02815923 241.50236511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02815924 241.50236511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02815925 241.50238037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02815926 241.50238037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02815927 241.50241089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02815928 241.50241089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02815929 241.50244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02815930 241.50244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02815931 241.50245667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02815932 241.50245667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02815933 241.50248718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02815934 241.50248718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02815935 241.50251770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02815936 241.50251770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02815937 241.50254822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02815938 241.50254822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02815939 241.50256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02815940 241.50259399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02815941 241.50262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02815942 241.50262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02815943 241.50263977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02815944 241.50263977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02815945 241.50267029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02815946 241.50267029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02815947 241.50270081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02815948 241.50270081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02815949 241.50271606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02815950 241.50271606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02815951 241.50274658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02815952 241.50274658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02815953 241.50277710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02815954 241.50277710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02815955 241.50279236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02815956 241.50279236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02815957 241.50282288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02815958 241.50282288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02815959 241.50285339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02815960 241.50286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02815961 241.50289917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02815962 241.50289917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02815963 241.50292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02815964 241.50292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02815965 241.50294495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02815966 241.50294495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02815967 241.50297546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02815968 241.50297546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02815969 241.50300598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02815970 241.50300598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02815971 241.50302124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02815972 241.50302124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02815973 241.50305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02815974 241.50305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02815975 241.50308228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02815976 241.50308228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02815977 241.50309753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02815978 241.50309753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02815979 241.50312805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02815980 241.50312805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02815981 241.50315857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02815982 241.50317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02815983 241.50320435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02815984 241.50320435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02815985 241.50323486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02815986 241.50323486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02815987 241.50325012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02815988 241.50325012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02815989 241.50328064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02815990 241.50328064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02815991 241.50331116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02815992 241.50331116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02815993 241.50334167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02815994 241.50334167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02815995 241.50335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02815996 241.50335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02815997 241.50338745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02815998 241.50338745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02815999 241.50341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02816000 241.50341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02816001 241.50343323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02816002 241.50346375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02816003 241.50349426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02816004 241.50349426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02816005 241.50350952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02816006 241.50350952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02816007 241.50354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02816008 241.50354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02816009 241.50357056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02816010 241.50357056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02816011 241.50361633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02816012 241.50361633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02816013 241.50364685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02816014 241.50364685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02816015 241.50366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02816016 241.50366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02816017 241.50369263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02816018 241.50369263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02816019 241.50372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02816020 241.50372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02816021 241.50373840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02816022 241.50373840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02816023 241.50376892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02816024 241.50376892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02816025 241.50379944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02816026 241.50379944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02816027 241.50381470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02816028 241.50384521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02816029 241.50387573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02816030 241.50387573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02816031 241.50389099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02816032 241.50389099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02816033 241.50392151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02816034 241.50392151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02816035 241.50395203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02816036 241.50395203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02816037 241.50396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02816038 241.50396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02816039 241.50399780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02816040 241.50399780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02816041 241.50402832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02816042 241.50402832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02816043 241.50404358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02816044 241.50404358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02816045 241.50407410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02816046 241.50410461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02816047 241.50413513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02816048 241.50413513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02816049 241.50415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02816050 241.50415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02816051 241.50418091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02816052 241.50418091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02816053 241.50421143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02816054 241.50421143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02816055 241.50422668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02816056 241.50422668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02816057 241.50425720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02816058 241.50425720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02816059 241.50428772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02816060 241.50428772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02816061 241.50430298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02816062 241.50433350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02816063 241.50436401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02816064 241.50436401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02816065 241.50437927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02816066 241.50437927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02816067 241.50440979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02816068 241.50440979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02816069 241.50444031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02816070 241.50444031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02816071 241.50445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02816072 241.50445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02816073 241.50448608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02816074 241.50448608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02816075 241.50451660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02816076 241.50453186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02816077 241.50456238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02816078 241.50456238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02816079 241.50459290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02816080 241.50459290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02816081 241.50460815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02816082 241.50460815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02816083 241.50463867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02816084 241.50463867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02816085 241.50466919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02816086 241.50466919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02816087 241.50468445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02816088 241.50468445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02816089 241.50471497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02816090 241.50471497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02816091 241.50474548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02816092 241.50474548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02816093 241.50476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02816094 241.50476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02816095 241.50482178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02816096 241.50482178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02816097 241.50485229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02816098 241.50485229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02816099 241.50486755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02816100 241.50486755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02816101 241.50489807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02816102 241.50489807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02816103 241.50492859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02816104 241.50492859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02816105 241.50494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02816106 241.50494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02816107 241.50497437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02816108 241.50497437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02816109 241.50500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02816110 241.50500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02816111 241.50502014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02816112 241.50502014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02816113 241.50505066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02816114 241.50505066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02816115 241.50508118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02816116 241.50509644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02816117 241.50512695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02816118 241.50512695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02816119 241.50515747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02816120 241.50515747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02816121 241.50517273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02816122 241.50517273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02816123 241.50520325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02816124 241.50520325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02816125 241.50523376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02816126 241.50523376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02816127 241.50524902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02816128 241.50524902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02816129 241.50527954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02816130 241.50527954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02816131 241.50531006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02816132 241.50531006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02816133 241.50532532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02816134 241.50532532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02816135 241.50535583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02816136 241.50538635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02816137 241.50540161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02816138 241.50540161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02816139 241.50543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02816140 241.50543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02816141 241.50546265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02816142 241.50546265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02816143 241.50547791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02816144 241.50547791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02816145 241.50550842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02816146 241.50550842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02816147 241.50553894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02816148 241.50553894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02816149 241.50555420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02816150 241.50555420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02816151 241.50558472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02816152 241.50558472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02816153 241.50561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02816154 241.50561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02816155 241.50564575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02816156 241.50566101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02816157 241.50569153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02816158 241.50569153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02816159 241.50572205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02816160 241.50572205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02816161 241.50573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02816162 241.50573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02816163 241.50576782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02816164 241.50576782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02816165 241.50579834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02816166 241.50579834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02816167 241.50581360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02816168 241.50581360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02816169 241.50584412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02816170 241.50584412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02816171 241.50587463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02816172 241.50587463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02816173 241.50588989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02816174 241.50588989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02816175 241.50592041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02816176 241.50595093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02816177 241.50596619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02816178 241.50596619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02816179 241.50599670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02816180 241.50599670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02816181 241.50602722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02816182 241.50602722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02816183 241.50604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02816184 241.50604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02816185 241.50607300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02816186 241.50607300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02816187 241.50610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02816188 241.50610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02816189 241.50611877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02816190 241.50611877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02816191 241.50617981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02816192 241.50617981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02816193 241.50619507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02816194 241.50619507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02816195 241.50622559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02816196 241.50622559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02816197 241.50625610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02816198 241.50627136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02816199 241.50630188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02816200 241.50630188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02816201 241.50633240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02816202 241.50633240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02816203 241.50634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02816204 241.50634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02816205 241.50637817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02816206 241.50637817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02816207 241.50640869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02816208 241.50640869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02816209 241.50643921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02816210 241.50643921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02816211 241.50645447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02816212 241.50645447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02816213 241.50648499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02816214 241.50648499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02816215 241.50653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02816216 241.50653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02816217 241.50656128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02816218 241.50656128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02816219 241.50659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02816220 241.50659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02816221 241.50660706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02816222 241.50660706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02816223 241.50663757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02816224 241.50663757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02816225 241.50666809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02816226 241.50666809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02816227 241.50668335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02816228 241.50671387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02816229 241.50674438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02816230 241.50674438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02816231 241.50675964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02816232 241.50675964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02816233 241.50679016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02816234 241.50679016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02816235 241.50682068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02816236 241.50682068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02816237 241.50683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02816238 241.50683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02816239 241.50686646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02816240 241.50686646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02816241 241.50689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02816242 241.50689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02816243 241.50691223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02816244 241.50691223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02816245 241.50694275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02816246 241.50694275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02816247 241.50697327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02816248 241.50697327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02816249 241.50698853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02816250 241.50701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02816251 241.50704956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02816252 241.50704956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02816253 241.50706482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02816254 241.50706482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02816255 241.50709534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02816256 241.50709534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02816257 241.50712585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02816258 241.50712585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02816259 241.50715637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02816260 241.50715637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02816261 241.50717163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02816262 241.50717163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02816263 241.50720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02816264 241.50720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02816265 241.50723267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02816266 241.50723267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02816267 241.50724792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02816268 241.50724792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02816269 241.50727844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02816270 241.50730896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02816271 241.50732422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02816272 241.50732422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02816273 241.50735474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02816274 241.50735474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02816275 241.50738525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02816276 241.50738525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02816277 241.50740051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02816278 241.50740051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02816279 241.50743103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02816280 241.50743103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02816281 241.50746155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02816282 241.50746155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02816283 241.50747681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02816284 241.50747681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02816285 241.50750732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02816286 241.50750732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02816287 241.50753784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02816288 241.50753784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02816289 241.50755310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02816290 241.50755310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02816291 241.50758362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02816292 241.50761414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02816293 241.50762939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02816294 241.50762939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02816295 241.50765991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02816296 241.50765991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02816297 241.50769043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02816298 241.50769043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02816299 241.50770569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02816300 241.50770569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02816301 241.50773621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02816302 241.50773621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02816303 241.50776672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02816304 241.50776672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02816305 241.50778198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02816306 241.50778198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02816307 241.50781250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02816308 241.50781250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02816309 241.50784302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02816310 241.50784302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02816311 241.50785828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02816312 241.50788879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02816313 241.50791931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02816314 241.50791931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02816315 241.50794983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02816316 241.50794983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02816317 241.50796509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02816318 241.50796509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02816319 241.50799561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02816320 241.50799561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02816321 241.50802612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02816322 241.50802612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02816323 241.50804138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02816324 241.50804138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02816325 241.50807190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02816326 241.50807190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02816327 241.50810242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02816328 241.50810242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02816329 241.50811768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02816330 241.50811768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02816331 241.50814819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02816332 241.50814819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02816333 241.50817871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02816334 241.50819397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02816335 241.50822449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02816336 241.50822449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02816337 241.50825500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02816338 241.50825500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02816339 241.50827026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02816340 241.50827026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02816341 241.50830078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02816342 241.50830078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02816343 241.50833130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02816344 241.50833130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02816345 241.50834656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02816346 241.50834656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02816347 241.50837708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02816348 241.50837708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02816349 241.50840759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02816350 241.50840759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02816351 241.50842285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02816352 241.50842285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02816353 241.50845337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02816354 241.50848389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02816355 241.50849915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02816356 241.50849915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02816357 241.50852966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02816358 241.50852966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02816359 241.50856018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02816360 241.50856018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02816361 241.50857544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02816362 241.50857544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02816363 241.50860596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02816364 241.50860596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02816365 241.50863647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02816366 241.50865173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02816367 241.50868225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02816368 241.50868225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02816369 241.50871277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02816370 241.50871277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02816371 241.50875854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02816372 241.50875854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02816373 241.50878906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02816374 241.50878906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02816375 241.50883484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02816376 241.50883484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02816377 241.50886536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02816378 241.50886536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02816379 241.50891113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02816380 241.50891113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02816381 241.50894165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02816382 241.50894165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02816383 241.50898743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02816384 241.50898743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02816385 241.50901794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02816386 241.50901794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02816387 241.50904846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02816388 241.50904846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02816389 241.50906372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02816390 241.50906372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02816391 241.50909424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02816392 241.50912476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02816393 241.50914001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02816394 241.50914001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02816395 241.50917053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02816396 241.50917053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02816397 241.50920105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02816398 241.50920105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02816399 241.50921631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02816400 241.50921631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02816401 241.50924683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02816402 241.50924683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02816403 241.50927734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02816404 241.50927734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02816405 241.50929260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02816406 241.50929260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02816407 241.50932312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02816408 241.50932312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02816409 241.50935364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02816410 241.50935364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02816411 241.50936890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02816412 241.50939941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02816413 241.50942993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02816414 241.50942993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02816415 241.50944519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02816416 241.50944519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02816417 241.50947571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02816418 241.50947571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02816419 241.50950623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02816420 241.50950623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02816421 241.50955200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02816422 241.50955200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02816423 241.50958252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02816424 241.50958252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02816425 241.50961304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02816426 241.50961304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02816427 241.50962830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02816428 241.50962830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02816429 241.50965881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02816430 241.50965881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02816431 241.50968933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02816432 241.50968933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02816433 241.50970459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02816434 241.50973511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02816435 241.50976563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02816436 241.50976563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02816437 241.50978088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02816438 241.50978088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02816439 241.50981140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02816440 241.50981140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02816441 241.50984192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02816442 241.50984192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02816443 241.50985718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02816444 241.50985718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02816445 241.50988770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02816446 241.50991821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02816447 241.50993347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02816448 241.50993347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02816449 241.50996399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02816450 241.50996399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02816451 241.50999451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02816452 241.50999451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02816453 241.51000977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02816454 241.51000977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02816455 241.51004028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02816456 241.51004028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02816457 241.51007080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02816458 241.51007080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02816459 241.51008606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02816460 241.51008606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02816461 241.51011658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02816462 241.51011658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02816463 241.51014709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02816464 241.51014709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02816465 241.51016235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02816466 241.51016235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02816467 241.51019287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02816468 241.51022339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02816469 241.51025391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02816470 241.51025391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02816471 241.51026917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02816472 241.51026917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02816473 241.51029968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02816474 241.51029968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02816475 241.51033020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02816476 241.51033020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02816477 241.51034546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02816478 241.51034546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02816479 241.51037598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02816480 241.51037598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02816481 241.51040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02816482 241.51040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02816483 241.51042175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02816484 241.51042175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02816485 241.51045227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02816486 241.51045227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02816487 241.51048279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02816488 241.51049805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02816489 241.51052856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02816490 241.51052856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02816491 241.51055908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02816492 241.51055908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02816493 241.51057434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02816494 241.51057434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02816495 241.51060486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02816496 241.51063538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02816497 241.51065063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02816498 241.51065063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02816499 241.51068115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02816500 241.51068115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02816501 241.51071167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02816502 241.51071167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02816503 241.51072693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02816504 241.51072693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02816505 241.51075745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02816506 241.51075745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02816507 241.51078796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02816508 241.51078796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02816509 241.51080322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02816510 241.51080322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02816511 241.51083374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02816512 241.51083374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02816513 241.51086426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02816514 241.51086426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02816515 241.51087952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02816516 241.51091003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02816517 241.51094055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02816518 241.51094055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02816519 241.51095581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02816520 241.51095581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02816521 241.51098633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02816522 241.51098633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02816523 241.51101685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02816524 241.51101685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02816525 241.51104736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02816526 241.51104736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02816527 241.51106262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02816528 241.51106262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02816529 241.51109314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02816530 241.51109314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02816531 241.51112366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02816532 241.51112366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02816533 241.51113892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02816534 241.51113892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02816535 241.51116943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02816536 241.51116943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02816537 241.51119995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02816538 241.51121521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02816539 241.51124573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02816540 241.51124573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02816541 241.51127625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02816542 241.51127625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02816543 241.51129150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02816544 241.51129150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02816545 241.51132202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02816546 241.51132202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02816547 241.51135254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02816548 241.51135254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02816549 241.51136780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02816550 241.51136780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02816551 241.51139832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02816552 241.51139832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02816553 241.51142883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02816554 241.51142883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02816555 241.51144409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02816556 241.51144409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02816557 241.51147461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02816558 241.51150513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02816559 241.51152039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02816560 241.51152039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02816561 241.51155090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02816562 241.51155090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02816563 241.51158142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02816564 241.51158142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02816565 241.51159668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02816566 241.51159668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02816567 241.51162720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02816568 241.51162720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02816569 241.51165771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02816570 241.51165771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02816571 241.51167297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02816572 241.51167297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02816573 241.51170349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02816574 241.51170349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02816575 241.51173401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02816576 241.51174927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02816577 241.51177979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02816578 241.51177979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02816579 241.51181030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02816580 241.51181030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02816581 241.51184082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02816582 241.51184082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02816583 241.51185608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02816584 241.51185608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02816585 241.51188660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02816586 241.51188660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02816587 241.51191711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02816588 241.51191711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02816589 241.51193237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02816590 241.51193237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02816591 241.51196289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02816592 241.51196289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02816593 241.51199341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02816594 241.51199341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02816595 241.51200867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02816596 241.51203918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02816597 241.51206970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02816598 241.51206970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02816599 241.51208496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02816600 241.51208496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02816601 241.51211548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02816602 241.51211548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02816603 241.51214600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02816604 241.51214600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02816605 241.51216125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02816606 241.51216125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02816607 241.51219177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02816608 241.51219177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02816609 241.51222229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02816610 241.51222229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02816611 241.51223755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02816612 241.51223755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02816613 241.51226807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02816614 241.51229858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02816615 241.51231384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02816616 241.51231384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02816617 241.51234436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02816618 241.51234436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02816619 241.51237488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02816620 241.51237488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02816621 241.51239014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02816622 241.51239014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02816623 241.51242065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02816624 241.51242065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02816625 241.51245117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02816626 241.51245117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02816627 241.51246643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02816628 241.51246643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02816629 241.51249695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02816630 241.51249695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02816631 241.51252747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02816632 241.51252747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02816633 241.51255798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02816634 241.51257324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02816635 241.51260376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02816636 241.51260376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02816637 241.51263428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02816638 241.51263428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02816639 241.51264954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02816640 241.51264954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02816641 241.51268005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02816642 241.51268005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02816643 241.51271057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02816644 241.51271057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02816645 241.51272583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02816646 241.51272583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02816647 241.51275635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02816648 241.51275635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02816649 241.51278687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02816650 241.51278687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02816651 241.51280212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02816652 241.51283264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02816653 241.51286316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02816654 241.51286316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02816655 241.51287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02816656 241.51287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02816657 241.51290894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02816658 241.51290894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02816659 241.51293945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02816660 241.51293945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02816661 241.51295471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02816662 241.51295471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02816663 241.51298523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02816664 241.51298523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02816665 241.51301575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02816666 241.51301575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02816667 241.51303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02816668 241.51303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02816669 241.51306152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02816670 241.51306152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02816671 241.51309204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02816672 241.51309204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02816673 241.51310730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02816674 241.51313782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02816675 241.51316833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02816676 241.51316833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02816677 241.51318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02816678 241.51318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02816679 241.51321411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02816680 241.51321411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02816681 241.51324463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02816682 241.51324463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02816683 241.51325989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02816684 241.51325989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02816685 241.51329041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02816686 241.51329041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02816687 241.51332092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02816688 241.51332092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02816689 241.51335144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02816690 241.51335144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02816691 241.51336670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02816692 241.51339722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02816693 241.51342773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02816694 241.51342773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02816695 241.51344299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02816696 241.51344299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02816697 241.51347351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02816698 241.51347351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02816699 241.51350403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02816700 241.51350403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02816701 241.51351929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02816702 241.51351929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02816703 241.51354980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02816704 241.51354980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02816705 241.51358032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02816706 241.51358032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02816707 241.51359558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02816708 241.51359558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02816709 241.51362610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02816710 241.51365662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02816711 241.51367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02816712 241.51367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02816713 241.51370239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02816714 241.51370239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02816715 241.51373291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02816716 241.51373291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02816717 241.51374817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02816718 241.51374817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02816719 241.51377869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02816720 241.51377869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02816721 241.51380920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02816722 241.51380920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02816723 241.51382446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02816724 241.51382446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02816725 241.51385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02816726 241.51385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02816727 241.51388550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02816728 241.51390076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02816729 241.51393127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02816730 241.51393127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02816731 241.51396179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02816732 241.51396179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02816733 241.51397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02816734 241.51397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02816735 241.51400757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02816736 241.51400757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02816737 241.51403809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02816738 241.51403809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02816739 241.51405334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02816740 241.51405334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02816741 241.51408386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02816742 241.51408386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02816743 241.51411438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02816744 241.51411438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02816745 241.51414490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02816746 241.51416016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02816747 241.51419067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02816748 241.51419067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02816749 241.51422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02816750 241.51422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02816751 241.51423645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02816752 241.51423645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02816753 241.51426697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02816754 241.51426697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02816755 241.51429749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02816756 241.51429749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02816757 241.51431274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02816758 241.51431274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02816759 241.51434326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02816760 241.51434326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02816761 241.51437378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02816762 241.51437378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02816763 241.51438904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02816764 241.51438904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02816765 241.51441956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02816766 241.51441956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02816767 241.51445007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02816768 241.51446533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02816769 241.51449585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02816770 241.51449585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02816771 241.51452637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02816772 241.51452637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02816773 241.51454163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02816774 241.51454163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02816775 241.51457214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02816776 241.51457214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02816777 241.51460266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02816778 241.51460266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02816779 241.51461792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02816780 241.51461792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02816781 241.51464844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02816782 241.51464844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02816783 241.51467896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02816784 241.51467896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02816785 241.51469421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02816786 241.51469421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02816787 241.51472473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02816788 241.51475525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02816789 241.51477051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02816790 241.51477051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02816791 241.51480103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02816792 241.51480103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02816793 241.51483154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02816794 241.51483154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02816795 241.51484680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02816796 241.51484680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02816797 241.51487732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02816798 241.51487732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02816799 241.51490784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02816800 241.51490784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02816801 241.51493835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02816802 241.51493835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02816803 241.51495361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02816804 241.51495361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02816805 241.51498413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02816806 241.51501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02816807 241.51502991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02816808 241.51502991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02816809 241.51506042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02816810 241.51506042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02816811 241.51509094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02816812 241.51509094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02816813 241.51510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02816814 241.51510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02816815 241.51513672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02816816 241.51513672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02816817 241.51516724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02816818 241.51516724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02816819 241.51518250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02816820 241.51518250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02816821 241.51521301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02816822 241.51521301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02816823 241.51524353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02816824 241.51524353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02816825 241.51525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02816826 241.51525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02816827 241.51531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02816828 241.51531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02816829 241.51533508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02816830 241.51533508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02816831 241.51536560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02816832 241.51536560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02816833 241.51539612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02816834 241.51539612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02816835 241.51541138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02816836 241.51541138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02816837 241.51544189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02816838 241.51544189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02816839 241.51547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02816840 241.51547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02816841 241.51548767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02816842 241.51548767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02816843 241.51551819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02816844 241.51551819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02816845 241.51554871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02816846 241.51556396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02816847 241.51559448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02816848 241.51559448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02816849 241.51562500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02816850 241.51562500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02816851 241.51567078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02816852 241.51567078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02816853 241.51570129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02816854 241.51570129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02816855 241.51573181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02816856 241.51574707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02816857 241.51577759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02816858 241.51577759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02816859 241.51582336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02816860 241.51582336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02816861 241.51585388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02816862 241.51585388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02816863 241.51589966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02816864 241.51589966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02816865 241.51593018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02816866 241.51593018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02816867 241.51596069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02816868 241.51597595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02816869 241.51600647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02816870 241.51600647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02816871 241.51603699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02816872 241.51603699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02816873 241.51605225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02816874 241.51605225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02816875 241.51608276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02816876 241.51608276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02816877 241.51611328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02816878 241.51611328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02816879 241.51612854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02816880 241.51612854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02816881 241.51615906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02816882 241.51615906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02816883 241.51618958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02816884 241.51618958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02816885 241.51620483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02816886 241.51620483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02816887 241.51623535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02816888 241.51626587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02816889 241.51628113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02816890 241.51628113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02816891 241.51631165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02816892 241.51631165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02816893 241.51634216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02816894 241.51634216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02816895 241.51635742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02816896 241.51635742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02816897 241.51638794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02816898 241.51638794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02816899 241.51641846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02816900 241.51641846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02816901 241.51646423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02816902 241.51646423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02816903 241.51649475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02816904 241.51649475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02816905 241.51652527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02816906 241.51652527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02816907 241.51654053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02816908 241.51654053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02816909 241.51657104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02816910 241.51657104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02816911 241.51660156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02816912 241.51661682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02816913 241.51664734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02816914 241.51664734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02816915 241.51669312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02816916 241.51669312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02816917 241.51672363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02816918 241.51672363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02816919 241.51675415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02816920 241.51675415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02816921 241.51676941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02816922 241.51676941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02816923 241.51683044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02816924 241.51683044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02816925 241.51684570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02816926 241.51684570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02816927 241.51687622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02816928 241.51687622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02816929 241.51690674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02816930 241.51690674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02816931 241.51692200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02816932 241.51692200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02816933 241.51695251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02816934 241.51695251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02816935 241.51698303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02816936 241.51698303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02816937 241.51699829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02816938 241.51702881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02816939 241.51705933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02816940 241.51705933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02816941 241.51707458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02816942 241.51707458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02816943 241.51710510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02816944 241.51710510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02816945 241.51713562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02816946 241.51713562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02816947 241.51715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02816948 241.51715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02816949 241.51718140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02816950 241.51718140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02816951 241.51721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02816952 241.51721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02816953 241.51724243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02816954 241.51724243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02816955 241.51725769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02816956 241.51725769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02816957 241.51728821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02816958 241.51728821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02816959 241.51731873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02816960 241.51733398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02816961 241.51736450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02816962 241.51736450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02816963 241.51739502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02816964 241.51739502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02816965 241.51741028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02816966 241.51741028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02816967 241.51744080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02816968 241.51744080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02816969 241.51747131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02816970 241.51747131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02816971 241.51748657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02816972 241.51748657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02816973 241.51751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02816974 241.51751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02816975 241.51754761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02816976 241.51754761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02816977 241.51756287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02816978 241.51756287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02816979 241.51759338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02816980 241.51762390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02816981 241.51763916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02816982 241.51763916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02816983 241.51766968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02816984 241.51766968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02816985 241.51770020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02816986 241.51770020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02816987 241.51771545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02816988 241.51771545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02816989 241.51774597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02816990 241.51774597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02816991 241.51777649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02816992 241.51777649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02816993 241.51779175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02816994 241.51779175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02816995 241.51782227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02816996 241.51782227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02816997 241.51785278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02816998 241.51785278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02816999 241.51786804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02817000 241.51786804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02817001 241.51789856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02817002 241.51792908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02817003 241.51795959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02817004 241.51795959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02817005 241.51797485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02817006 241.51797485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02817007 241.51800537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02817008 241.51800537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02817009 241.51803589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02817010 241.51803589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02817011 241.51805115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02817012 241.51805115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02817013 241.51808167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02817014 241.51808167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02817015 241.51811218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02817016 241.51811218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02817017 241.51812744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02817018 241.51812744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02817019 241.51815796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02817020 241.51815796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02817021 241.51818848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02817022 241.51818848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02817023 241.51820374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02817024 241.51823425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02817025 241.51826477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02817026 241.51826477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02817027 241.51828003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02817028 241.51828003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02817029 241.51831055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02817030 241.51831055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02817031 241.51834106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02817032 241.51834106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02817033 241.51835632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02817034 241.51835632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02817035 241.51838684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02817036 241.51838684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02817037 241.51841736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02817038 241.51841736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02817039 241.51843262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02817040 241.51843262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02817041 241.51846313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02817042 241.51846313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02817043 241.51849365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02817044 241.51849365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02817045 241.51853943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02817046 241.51853943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02817047 241.51856995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02817048 241.51856995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02817049 241.51858521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02817050 241.51858521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02817051 241.51861572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02817052 241.51861572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02817053 241.51864624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02817054 241.51864624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02817055 241.51866150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02817056 241.51866150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02817057 241.51869202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02817058 241.51869202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02817059 241.51872253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02817060 241.51872253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02817061 241.51875305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02817062 241.51875305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02817063 241.51876831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02817064 241.51876831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02817065 241.51879883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02817066 241.51882935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02817067 241.51884460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02817068 241.51884460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02817069 241.51887512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02817070 241.51887512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02817071 241.51890564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02817072 241.51890564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02817073 241.51892090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02817074 241.51892090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02817075 241.51895142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02817076 241.51895142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02817077 241.51898193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02817078 241.51898193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02817079 241.51899719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02817080 241.51899719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02817081 241.51902771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02817082 241.51902771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02817083 241.51905823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02817084 241.51905823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02817085 241.51907349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02817086 241.51910400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02817087 241.51913452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02817088 241.51913452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02817089 241.51914978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02817090 241.51914978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02817091 241.51918030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02817092 241.51918030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02817093 241.51921082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02817094 241.51921082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02817095 241.51922607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02817096 241.51922607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02817097 241.51925659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02817098 241.51925659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02817099 241.51928711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02817100 241.51928711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02817101 241.51930237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02817102 241.51930237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02817103 241.51933289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02817104 241.51933289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02817105 241.51936340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02817106 241.51936340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02817107 241.51937866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02817108 241.51940918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02817109 241.51943970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02817110 241.51943970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02817111 241.51945496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02817112 241.51945496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02817113 241.51948547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02817114 241.51948547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02817115 241.51951599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02817116 241.51951599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02817117 241.51954651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02817118 241.51954651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02817119 241.51956177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02817120 241.51956177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02817121 241.51959229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02817122 241.51959229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02817123 241.51962280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02817124 241.51962280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02817125 241.51963806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02817126 241.51963806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02817127 241.51966858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02817128 241.51969910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02817129 241.51971436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02817130 241.51971436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02817131 241.51974487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02817132 241.51974487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02817133 241.51977539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02817134 241.51977539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02817135 241.51979065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02817136 241.51979065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02817137 241.51982117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02817138 241.51982117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02817139 241.51985168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02817140 241.51985168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02817141 241.51986694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02817142 241.51986694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02817143 241.51989746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02817144 241.51989746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02817145 241.51992798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02817146 241.51992798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02817147 241.51994324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02817148 241.51994324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02817149 241.51997375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02817150 241.52000427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02817151 241.52001953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02817152 241.52001953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02817153 241.52005005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02817154 241.52005005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02817155 241.52008057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02817156 241.52008057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02817157 241.52009583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02817158 241.52009583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02817159 241.52012634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02817160 241.52012634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02817161 241.52015686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02817162 241.52015686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02817163 241.52017212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02817164 241.52017212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02817165 241.52020264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02817166 241.52020264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02817167 241.52023315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02817168 241.52023315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02817169 241.52024841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02817170 241.52027893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02817171 241.52030945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02817172 241.52030945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02817173 241.52033997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02817174 241.52033997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02817175 241.52035522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02817176 241.52035522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02817177 241.52038574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02817178 241.52038574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02817179 241.52041626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02817180 241.52041626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02817181 241.52043152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02817182 241.52043152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02817183 241.52046204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02817184 241.52046204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02817185 241.52049255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02817186 241.52049255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02817187 241.52050781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02817188 241.52050781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02817189 241.52053833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02817190 241.52056885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02817191 241.52058411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02817192 241.52058411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02817193 241.52061462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02817194 241.52061462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02817195 241.52064514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02817196 241.52064514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02817197 241.52066040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02817198 241.52066040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02817199 241.52069092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02817200 241.52069092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02817201 241.52072144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02817202 241.52072144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02817203 241.52073669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02817204 241.52073669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02817205 241.52076721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02817206 241.52076721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02817207 241.52079773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02817208 241.52079773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02817209 241.52081299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02817210 241.52081299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02817211 241.52084351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02817212 241.52087402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02817213 241.52088928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02817214 241.52088928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02817215 241.52091980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02817216 241.52091980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02817217 241.52095032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02817218 241.52095032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02817219 241.52096558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02817220 241.52096558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02817221 241.52099609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02817222 241.52099609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02817223 241.52102661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02817224 241.52102661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02817225 241.52105713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02817226 241.52105713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02817227 241.52107239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02817228 241.52107239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02817229 241.52110291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02817230 241.52110291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02817231 241.52113342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02817232 241.52114868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02817233 241.52117920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02817234 241.52117920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02817235 241.52120972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02817236 241.52120972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02817237 241.52122498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02817238 241.52122498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02817239 241.52125549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02817240 241.52125549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02817241 241.52128601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02817242 241.52128601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02817243 241.52130127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02817244 241.52130127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02817245 241.52133179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02817246 241.52133179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02817247 241.52136230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02817248 241.52136230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02817249 241.52137756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02817250 241.52137756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02817251 241.52140808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02817252 241.52143860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02817253 241.52145386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02817254 241.52145386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02817255 241.52148438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02817256 241.52148438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02817257 241.52151489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02817258 241.52151489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02820999 241.57516479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -02821000 241.57516479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -02821001 241.57519531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -02821002 241.57519531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -02821003 241.57522583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -02821004 241.57522583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -02821005 241.57524109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -02821006 241.57527161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -02821007 241.57530212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -02821008 241.57530212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -02821009 241.57531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -02821010 241.57531738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -02821011 241.57534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -02821012 241.57534790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -02821013 241.57537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -02821014 241.57537842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -02821015 241.57539368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -02821016 241.57539368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -02821017 241.57542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -02821018 241.57542419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -02821019 241.57545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -02821020 241.57545471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -02821021 241.57546997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -02821022 241.57546997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -02821023 241.57550049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -02821024 241.57550049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -02821025 241.57553101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -02821026 241.57554626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -02821027 241.57557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -02821028 241.57557678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -02821029 241.57560730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -02821030 241.57560730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -02821031 241.57562256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -02821032 241.57562256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -02821033 241.57565308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -02821034 241.57565308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -02821035 241.57568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -02821036 241.57568359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -02821037 241.57569885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -02821038 241.57569885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -02821039 241.57572937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -02821040 241.57572937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -02821041 241.57575989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -02821042 241.57575989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -02826925 241.65946960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -02826926 241.65951538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -02826927 241.65954590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -02826928 241.65954590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -02826929 241.65957642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -02826930 241.65957642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -02826931 241.65959167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -02826932 241.65959167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -02826933 241.65962219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -02826934 241.65962219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -02826935 241.65965271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -02826936 241.65965271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -02826937 241.65966797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -02826938 241.65966797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -02826939 241.65969849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -02826940 241.65969849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -02826941 241.65972900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -02826942 241.65972900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -02826943 241.65974426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -02826944 241.65974426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -02826945 241.65977478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -02826946 241.65980530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -02826947 241.65982056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -02826948 241.65982056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -02826949 241.65985107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -02826950 241.65985107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -02826951 241.65988159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -02826952 241.65988159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -02826953 241.65989685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -02826954 241.65989685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -02826955 241.65992737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -02826956 241.65992737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -02826957 241.65995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -02826958 241.65995789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -02826959 241.65998840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -02826960 241.65998840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -02826961 241.66000366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -02826962 241.66000366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -02826963 241.66003418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -02826964 241.66003418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -02826965 241.66006470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -02826966 241.66007996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -02826967 241.66011047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -02826968 241.66011047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -02845863 241.92486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf68 -02845864 241.92486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf68 -02845865 241.92489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf78 -02845866 241.92489624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf78 -02845867 241.92491150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf88 -02845868 241.92491150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf88 -02845869 241.92494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf98 -02845870 241.92494202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf98 -02845871 241.92497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa8 -02845872 241.92497253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfa8 -02845873 241.92498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb8 -02845874 241.92498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfb8 -02845875 241.92501831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc8 -02845876 241.92504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfc8 -02845877 241.92506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd8 -02845878 241.92506409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfd8 -02845879 241.92509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe8 -02845880 241.92509460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bfe8 -02845881 241.92512512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff8 -02845882 241.92512512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bff8 -02845883 241.92514038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c008 -02845884 241.92514038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c008 -02845885 241.92517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c018 -02845886 241.92517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c018 -02845887 241.92520142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c028 -02845888 241.92520142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c028 -02845889 241.92521667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c038 -02845890 241.92521667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c038 -02845891 241.92524719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -02845892 241.92524719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c048 -02845893 241.92527771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -02845894 241.92527771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c058 -02845895 241.92529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -02845896 241.92529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c068 -02845897 241.92535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -02845898 241.92535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c078 -02845899 241.92536926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -02845900 241.92536926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c088 -02845901 241.92539978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -02845902 241.92539978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c098 -02845903 241.92543030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -02845904 241.92543030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0a8 -02845905 241.92544556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -02845906 241.92544556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c0b8 -02851177 242.00045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -02851178 242.00045776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -02851179 242.00048828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -02851180 242.00048828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -02851181 242.00051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -02851182 242.00051880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -02851183 242.00053406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -02851184 242.00056458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -02851185 242.00059509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -02851186 242.00059509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -02851187 242.00061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c8 -02851188 242.00061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465c8 -02851189 242.00064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d8 -02851190 242.00064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465d8 -02851191 242.00067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e8 -02851192 242.00067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465e8 -02851193 242.00068665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f8 -02851194 242.00068665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x465f8 -02851195 242.00071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46608 -02851196 242.00071716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46608 -02851197 242.00074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46618 -02851198 242.00074768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46618 -02851199 242.00076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46628 -02851200 242.00076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46628 -02851201 242.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46638 -02851202 242.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46638 -02851203 242.00082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -02851204 242.00082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -02851205 242.00083923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -02851206 242.00086975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -02851207 242.00090027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -02851208 242.00090027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -02851209 242.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46678 -02851210 242.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46678 -02851211 242.00094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46688 -02851212 242.00094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46688 -02851213 242.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46698 -02851214 242.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46698 -02851215 242.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -02851216 242.00099182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -02851217 242.00102234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -02851218 242.00102234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -02851219 242.00105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -02851220 242.00105286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -02856621 242.07772827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -02856622 242.07772827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -02856623 242.07774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -02856624 242.07774353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -02856625 242.07777405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -02856626 242.07777405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -02856627 242.07780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -02856628 242.07780457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -02856629 242.07781982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -02856630 242.07785034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -02856631 242.07788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -02856632 242.07788086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -02856633 242.07789612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -02856634 242.07789612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -02856635 242.07792664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -02856636 242.07792664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -02856637 242.07795715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -02856638 242.07795715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -02856639 242.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -02856640 242.07797241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -02856641 242.07800293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -02856642 242.07800293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -02856643 242.07803345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51048 -02856644 242.07803345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51048 -02856645 242.07804871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51058 -02856646 242.07804871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51058 -02856647 242.07807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51068 -02856648 242.07807922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51068 -02856649 242.07810974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51078 -02856650 242.07810974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51078 -02856651 242.07815552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51088 -02856652 242.07815552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51088 -02856653 242.07818604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51098 -02856654 242.07818604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51098 -02856655 242.07820129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a8 -02856656 242.07820129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510a8 -02856657 242.07823181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b8 -02856658 242.07823181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510b8 -02856659 242.07826233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c8 -02856660 242.07826233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510c8 -02856661 242.07827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d8 -02856662 242.07827759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510d8 -02856663 242.07830811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e8 -02856664 242.07830811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x510e8 -02857569 243.00761414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02857570 243.02763367 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857571 243.02766418 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857572 244.12068176 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857573 244.12072754 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857574 244.12072754 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857575 244.12075806 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02857576 244.12088013 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857577 244.12088013 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857578 244.12094116 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857579 244.12095642 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857580 245.02952576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02857581 245.04844666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857582 245.04844666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857583 246.05549622 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -02857584 246.05667114 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -02857585 246.62805176 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857586 246.62809753 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857587 246.62817383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857588 246.62817383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02857589 246.62829590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857590 246.62829590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857591 246.62837219 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02857592 246.62840271 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02857593 247.04977417 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02857594 247.06900024 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857595 247.06900024 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02857596 247.09194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02857597 247.09194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02857598 247.09196472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02857599 247.09196472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02857600 247.09199524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02857601 247.09199524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02857602 247.09202576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02857603 247.09202576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02857604 247.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02857605 247.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02857606 247.09207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02857607 247.09207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02857608 247.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02857609 247.09211731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02857610 247.09214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02857611 247.09214783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02857612 247.09217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02857613 247.09217834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02857614 247.09219360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02857615 247.09219360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02857616 247.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02857617 247.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02857618 247.09225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02857619 247.09225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02857620 247.09226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02857621 247.09226990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02857622 247.09230042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02857623 247.09230042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02857624 247.09233093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02857625 247.09233093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02857626 247.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02857627 247.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02857628 247.09237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02857629 247.09237671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02857630 247.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02857631 247.09242249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02857632 247.09245300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02857633 247.09245300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02857634 247.09248352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02857635 247.09248352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02857636 247.09249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02857637 247.09249878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02857638 247.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02857639 247.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02857640 247.09255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02857641 247.09255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02857642 247.09257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02857643 247.09257507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02857644 247.09260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02857645 247.09260559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02857646 247.09263611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02857647 247.09266663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02857648 247.09268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02857649 247.09268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02857650 247.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02857651 247.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02857652 247.09274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02857653 247.09274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02857654 247.09275818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02857655 247.09275818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02857656 247.09278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02857657 247.09278870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02857658 247.09281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02857659 247.09281921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02857660 247.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02857661 247.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02857662 247.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02857663 247.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02857664 247.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02857665 247.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02857666 247.09291077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02857667 247.09294128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02857668 247.09294128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02857669 247.09297180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02857670 247.09298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02857671 247.09298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02857672 247.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02857673 247.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02857674 247.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02857675 247.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02857676 247.09306335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02857677 247.09306335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02857678 247.09309387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02857679 247.09309387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02857680 247.09312439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02857681 247.09312439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02857682 247.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02857683 247.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02857684 247.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02857685 247.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02857686 247.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02857687 247.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02857688 247.09321594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02857689 247.09321594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02857690 247.09324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02857691 247.09324646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02857692 247.09327698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02857693 247.09329224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02857694 247.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02857695 247.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02857696 247.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02857697 247.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02857698 247.09336853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02857699 247.09336853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02857700 247.09339905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02857701 247.09339905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02857702 247.09342957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02857703 247.09342957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02857704 247.09346008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02857705 247.09346008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02857706 247.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02857707 247.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02857708 247.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02857709 247.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02857710 247.09353638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02857711 247.09355164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02857712 247.09355164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02857713 247.09358215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02857714 247.09361267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02857715 247.09361267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02857716 247.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02857717 247.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02857718 247.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02857719 247.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02857720 247.09370422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02857721 247.09370422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02857722 247.09373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02857723 247.09373474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02857724 247.09376526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02857725 247.09376526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02857726 247.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02857727 247.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02857728 247.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02857729 247.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02857730 247.09384155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02857731 247.09384155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02857732 247.09385681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02857733 247.09385681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02857734 247.09388733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02857735 247.09388733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02857736 247.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02857737 247.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02857738 247.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02857739 247.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02857740 247.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02857741 247.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02857742 247.09400940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02857743 247.09400940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02857744 247.09403992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02857745 247.09403992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02857746 247.09407043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02857747 247.09407043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02857748 247.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02857749 247.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02857750 247.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02857751 247.09414673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02857752 247.09416199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02857753 247.09416199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02857754 247.09419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02857755 247.09419250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02857756 247.09422302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02857757 247.09422302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02857758 247.09425354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02857759 247.09425354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02857760 247.09426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02857761 247.09426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02857762 247.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02857763 247.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02857764 247.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02857765 247.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02857766 247.09437561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02857767 247.09437561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02857768 247.09440613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02857769 247.09440613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02857770 247.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02857771 247.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02857772 247.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02857773 247.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02857774 247.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02857775 247.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02857776 247.09449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02857777 247.09449768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02857778 247.09452820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02857779 247.09452820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02857780 247.09455872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02857781 247.09455872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02857782 247.09457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02857783 247.09457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02857784 247.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02857785 247.09463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02857786 247.09465027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02857787 247.09465027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02857788 247.09468079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02857789 247.09468079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02857790 247.09471130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02857791 247.09471130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02857792 247.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02857793 247.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02857794 247.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02857795 247.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02857796 247.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02857797 247.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02857798 247.09480286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02857799 247.09480286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02857800 247.09483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02857801 247.09483337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02857802 247.09486389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02857803 247.09487915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02857804 247.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02857805 247.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02857806 247.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02857807 247.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02857808 247.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02857809 247.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02857810 247.09498596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02857811 247.09498596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02857812 247.09501648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02857813 247.09501648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02857814 247.09504700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02857815 247.09504700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02857816 247.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02857817 247.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02857818 247.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02857819 247.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02857820 247.09512329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02857821 247.09513855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02857822 247.09516907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02857823 247.09516907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02857824 247.09519958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02857825 247.09519958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02857826 247.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02857827 247.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02857828 247.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02857829 247.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02857830 247.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02857831 247.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02857832 247.09529114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02857833 247.09529114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02857834 247.09532166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02857835 247.09532166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02857836 247.09535217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02857837 247.09535217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02857838 247.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02857839 247.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02857840 247.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02857841 247.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02857842 247.09542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02857843 247.09542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02857844 247.09544373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02857845 247.09544373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02857846 247.09547424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02857847 247.09547424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02857848 247.09550476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02857849 247.09550476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02857850 247.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02857851 247.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02857852 247.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02857853 247.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02857854 247.09559631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02857855 247.09559631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02857856 247.09562683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02857857 247.09562683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02857858 247.09565735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02857859 247.09565735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02857860 247.09567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02857861 247.09567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02857862 247.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02857863 247.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02857864 247.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02857865 247.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02857866 247.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02857867 247.09577942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02857868 247.09580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02857869 247.09580994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02857870 247.09584045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02857871 247.09584045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02857872 247.09585571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02857873 247.09585571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02857874 247.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02857875 247.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02857876 247.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02857877 247.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02857878 247.09593201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02857879 247.09593201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02857880 247.09596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02857881 247.09596252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02857882 247.09599304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02857883 247.09599304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02857884 247.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02857885 247.09603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02857886 247.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02857887 247.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02857888 247.09608459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02857889 247.09608459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02857890 247.09611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02857891 247.09611511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02857892 247.09614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02857893 247.09614563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02857894 247.09616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02857895 247.09616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02857896 247.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02857897 247.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02857898 247.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02857899 247.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02857900 247.09623718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02857901 247.09623718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02857902 247.09626770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02857903 247.09626770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02857904 247.09629822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02857905 247.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02857906 247.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02857907 247.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02857908 247.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02857909 247.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02857910 247.09638977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02857911 247.09638977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02857912 247.09642029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02857913 247.09642029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02857914 247.09645081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02857915 247.09645081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02857916 247.09646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02857917 247.09646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02857918 247.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02857919 247.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02857920 247.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02857921 247.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02857922 247.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02857923 247.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02857924 247.09657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02857925 247.09657288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02857926 247.09660339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02857927 247.09663391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02857928 247.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02857929 247.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02857930 247.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02857931 247.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02857932 247.09671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02857933 247.09671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02857934 247.09672546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02857935 247.09672546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02857936 247.09675598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02857937 247.09675598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02857938 247.09678650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02857939 247.09678650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02857940 247.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02857941 247.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02857942 247.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02857943 247.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02857944 247.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02857945 247.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02857946 247.09687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02857947 247.09687805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02857948 247.09690857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02857949 247.09690857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02857950 247.09693909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02857951 247.09693909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02857952 247.09695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02857953 247.09695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02857954 247.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02857955 247.09701538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02857956 247.09701538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02857957 247.09703064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02857958 247.09706116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02857959 247.09706116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02857960 247.09709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02857961 247.09709167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02857962 247.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02857963 247.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02857964 247.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02857965 247.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02857966 247.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02857967 247.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02857968 247.09718323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02857969 247.09718323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02857970 247.09721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02857971 247.09721375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02857972 247.09724426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02857973 247.09724426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02857974 247.09727478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02857975 247.09727478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02857976 247.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02857977 247.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02857978 247.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02857979 247.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02857980 247.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02857981 247.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02857982 247.09736633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02857983 247.09736633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02857984 247.09739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02857985 247.09739685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02857986 247.09742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02857987 247.09742737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02857988 247.09744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02857989 247.09744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02857990 247.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02857991 247.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02857992 247.09750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02857993 247.09750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02857994 247.09751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02857995 247.09751892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02857996 247.09754944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02857997 247.09754944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02857998 247.09757996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02857999 247.09757996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02858000 247.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02858001 247.09762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02858002 247.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02858003 247.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02858004 247.09767151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02858005 247.09767151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02858006 247.09770203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02858007 247.09770203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02858008 247.09773254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02858009 247.09773254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02858010 247.09774780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02858011 247.09774780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02858012 247.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02858013 247.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02858014 247.09780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02858015 247.09780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02858016 247.09782410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02858017 247.09782410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02858018 247.09785461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02858019 247.09785461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02858020 247.09788513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02858021 247.09788513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02858022 247.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02858023 247.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02858024 247.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02858025 247.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02858026 247.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02858027 247.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02858028 247.09797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02858029 247.09797668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02858030 247.09800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02858031 247.09800720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02858032 247.09803772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02858033 247.09803772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02858034 247.09806824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02858035 247.09806824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02858036 247.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02858037 247.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02858038 247.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02858039 247.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02858040 247.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02858041 247.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02858042 247.09815979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02858043 247.09815979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02858044 247.09819031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02858045 247.09822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02858046 247.09822083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02858047 247.09823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02858048 247.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02858049 247.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02858050 247.09829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02858051 247.09829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02858052 247.09831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02858053 247.09831238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02858054 247.09834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02858055 247.09834290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02858056 247.09837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02858057 247.09837341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02858058 247.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02858059 247.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02858060 247.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02858061 247.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02858062 247.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02858063 247.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02858064 247.09846497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02858065 247.09846497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02858066 247.09849548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02858067 247.09849548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02858068 247.09852600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02858069 247.09852600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02858070 247.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02858071 247.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02858072 247.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02858073 247.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02858074 247.09860229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02858075 247.09860229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02858076 247.09861755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02858077 247.09861755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02858078 247.09864807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02858079 247.09864807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02858080 247.09867859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02858081 247.09867859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02858082 247.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02858083 247.09872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02858084 247.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02858085 247.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02858086 247.09877014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02858087 247.09877014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02858088 247.09880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02858089 247.09880066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02858090 247.09883118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02858091 247.09883118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02858092 247.09886169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02858093 247.09886169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02858094 247.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02858095 247.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02858096 247.09890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02858097 247.09890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02858098 247.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02858099 247.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02858100 247.09895325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02858101 247.09895325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02858102 247.09898376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02858103 247.09898376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02858104 247.09901428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02858105 247.09901428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02858106 247.09902954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02858107 247.09902954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02858108 247.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02858109 247.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02858110 247.09909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02858111 247.09910583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02858112 247.09913635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02858113 247.09913635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02858114 247.09916687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02858115 247.09916687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02858116 247.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02858117 247.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02858118 247.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02858119 247.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02858120 247.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02858121 247.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02858122 247.09925842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02858123 247.09925842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02858124 247.09928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02858125 247.09928894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02858126 247.09931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02858127 247.09931946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02858128 247.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02858129 247.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02858130 247.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02858131 247.09939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02858132 247.09941101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02858133 247.09941101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02858134 247.09944153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02858135 247.09944153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02858136 247.09947205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02858137 247.09947205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02858138 247.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02858139 247.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02858140 247.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02858141 247.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02858142 247.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02858143 247.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02858144 247.09956360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02858145 247.09956360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02858146 247.09959412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02858147 247.09959412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02858148 247.09965515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02858149 247.09965515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02858150 247.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02858151 247.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02858152 247.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02858153 247.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02858154 247.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02858155 247.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02858156 247.09974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02858157 247.09974670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02858158 247.09977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02858159 247.09977722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02858160 247.09980774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02858161 247.09980774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02858162 247.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02858163 247.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02858164 247.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02858165 247.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02858166 247.09988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02858167 247.09989929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02858168 247.09989929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02858169 247.09992981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02858170 247.09996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02858171 247.09996033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02858172 247.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02858173 247.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02858174 247.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02858175 247.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02858176 247.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02858177 247.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02858178 247.10005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02858179 247.10005188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02858180 247.10008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02858181 247.10008240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02858182 247.10011292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02858183 247.10011292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02858184 247.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02858185 247.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02858186 247.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02858187 247.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02858188 247.10018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02858189 247.10018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02858190 247.10020447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02858191 247.10020447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02858192 247.10023499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02858193 247.10023499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02858194 247.10026550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02858195 247.10026550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02858196 247.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02858197 247.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02858198 247.10031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02858199 247.10031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02858200 247.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02858201 247.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02858202 247.10037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02858203 247.10037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02858204 247.10038757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02858205 247.10038757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02858206 247.10041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02858207 247.10041809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02858208 247.10044861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02858209 247.10044861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02858210 247.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02858211 247.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02858212 247.10049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02858213 247.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02858214 247.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02858215 247.10054016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02858216 247.10057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02858217 247.10057068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02858218 247.10060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02858219 247.10060120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02858220 247.10061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02858221 247.10061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02858222 247.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02858223 247.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02858224 247.10067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02858225 247.10067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02858226 247.10069275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02858227 247.10069275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02858228 247.10072327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02858229 247.10072327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02858230 247.10075378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02858231 247.10075378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02858232 247.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02858233 247.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02858234 247.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02858235 247.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02858236 247.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02858237 247.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02858238 247.10084534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02858239 247.10087585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02858240 247.10087585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02858241 247.10090637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02858242 247.10092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02858243 247.10092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02858244 247.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02858245 247.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02858246 247.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02858247 247.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02858248 247.10099792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02858249 247.10099792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02858250 247.10102844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02858251 247.10102844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02858252 247.10105896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02858253 247.10105896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02858254 247.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02858255 247.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02858256 247.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02858257 247.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02858258 247.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02858259 247.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02858260 247.10116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02858261 247.10116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02858262 247.10118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02858263 247.10118103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02858264 247.10121155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02858265 247.10121155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02858266 247.10124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02858267 247.10124207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02858268 247.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02858269 247.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02858270 247.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02858271 247.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02858272 247.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02858273 247.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02858274 247.10133362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02858275 247.10133362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02858276 247.10136414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02858277 247.10136414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02858278 247.10139465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02858279 247.10139465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02858280 247.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02858281 247.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02858282 247.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02858283 247.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02858284 247.10147095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02858285 247.10148621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02858286 247.10148621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02858287 247.10151672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02858288 247.10154724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02858289 247.10154724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02858290 247.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02858291 247.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02858292 247.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02858293 247.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02858294 247.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02858295 247.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02858296 247.10163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02858297 247.10163879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02858298 247.10166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02858299 247.10166931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02858300 247.10169983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02858301 247.10169983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02858302 247.10171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02858303 247.10171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02858304 247.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02858305 247.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02858306 247.10177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02858307 247.10177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02858308 247.10179138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02858309 247.10179138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02858310 247.10182190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02858311 247.10182190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02858312 247.10185242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02858313 247.10185242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02858314 247.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02858315 247.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02858316 247.10189819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02858317 247.10189819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02858318 247.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02858319 247.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02858320 247.10195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02858321 247.10195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02858322 247.10197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02858323 247.10197449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02858324 247.10200500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02858325 247.10200500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02858326 247.10203552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02858327 247.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02858328 247.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02858329 247.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02858330 247.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02858331 247.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02858332 247.10212708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02858333 247.10212708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02858334 247.10215759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02858335 247.10215759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02858336 247.10218811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02858337 247.10218811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02858338 247.10220337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02858339 247.10220337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02858340 247.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02858341 247.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02858342 247.10226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02858343 247.10226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02858344 247.10227966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02858345 247.10227966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02858346 247.10231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02858347 247.10231018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02858348 247.10234070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02858349 247.10234070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02858350 247.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02858351 247.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02858352 247.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02858353 247.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02858354 247.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02858355 247.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02858356 247.10243225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02858357 247.10243225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02858358 247.10246277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02858359 247.10246277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02858360 247.10249329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02858361 247.10249329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02858362 247.10250854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02858363 247.10250854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02858364 247.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02858365 247.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02858366 247.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02858367 247.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02858368 247.10258484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02858369 247.10258484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02858370 247.10261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02858371 247.10261536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02858372 247.10264587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02858373 247.10267639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02858374 247.10267639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02858375 247.10269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02858376 247.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02858377 247.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02858378 247.10275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02858379 247.10275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02858380 247.10276794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02858381 247.10276794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02858382 247.10279846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02858383 247.10279846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02858384 247.10282898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02858385 247.10282898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02858386 247.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02858387 247.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02858388 247.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02858389 247.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02858390 247.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02858391 247.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02858392 247.10292053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02858393 247.10295105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02858394 247.10298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02858395 247.10298157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02858396 247.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02858397 247.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02858398 247.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02858399 247.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02858400 247.10305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02858401 247.10305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02858402 247.10307312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02858403 247.10307312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02858404 247.10310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02858405 247.10310364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02858406 247.10313416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02858407 247.10313416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02858408 247.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02858409 247.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02858410 247.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02858411 247.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02858412 247.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02858413 247.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02858414 247.10322571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02858415 247.10322571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02858416 247.10325623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02858417 247.10325623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02858418 247.10328674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02858419 247.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02858420 247.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02858421 247.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02858422 247.10336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02858423 247.10336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02858424 247.10337830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02858425 247.10337830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02858426 247.10340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02858427 247.10340881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02858428 247.10343933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02858429 247.10343933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02858430 247.10346985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02858431 247.10346985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02858432 247.10348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02858433 247.10348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02858434 247.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02858435 247.10354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02858436 247.10356140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02858437 247.10356140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02858438 247.10359192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02858439 247.10359192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02858440 247.10362244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02858441 247.10362244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02858442 247.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02858443 247.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02858444 247.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02858445 247.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02858446 247.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02858447 247.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02858448 247.10371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02858449 247.10371399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02858450 247.10374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02858451 247.10374451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02858452 247.10377502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02858453 247.10377502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02858454 247.10379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02858455 247.10379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02858456 247.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02858457 247.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02858458 247.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02858459 247.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02858460 247.10386658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02858461 247.10386658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02858462 247.10389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02858463 247.10389709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02858464 247.10392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02858465 247.10392761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02858466 247.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02858467 247.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02858468 247.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02858469 247.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02858470 247.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02858471 247.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02858472 247.10401917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02858473 247.10404968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02858474 247.10408020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02858475 247.10408020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02858476 247.10409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02858477 247.10409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02858478 247.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02858479 247.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02858480 247.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02858481 247.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02858482 247.10417175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02858483 247.10417175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02858484 247.10420227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02858485 247.10420227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02858486 247.10423279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02858487 247.10423279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02858488 247.10426331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02858489 247.10426331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02858490 247.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02858491 247.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02858492 247.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02858493 247.10433960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02858494 247.10435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02858495 247.10435486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02858496 247.10438538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02858497 247.10438538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02858498 247.10441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02858499 247.10441589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02858500 247.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02858501 247.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02858502 247.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02858503 247.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02858504 247.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02858505 247.10450745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02858506 247.10453796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02858507 247.10453796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02858508 247.10456848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02858509 247.10456848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02858510 247.10458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02858511 247.10458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02858512 247.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02858513 247.10464478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02858514 247.10464478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02858515 247.10466003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02858516 247.10469055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02858517 247.10469055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02858518 247.10472107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02858519 247.10472107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02858520 247.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02858521 247.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02858522 247.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02858523 247.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02858524 247.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02858525 247.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02858526 247.10481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02858527 247.10481262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02858528 247.10484314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02858529 247.10484314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02858530 247.10487366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02858531 247.10487366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02858532 247.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02858533 247.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02858534 247.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02858535 247.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02858536 247.10494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02858537 247.10494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02858538 247.10496521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02858539 247.10496521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02858540 247.10499573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02858541 247.10499573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02858542 247.10502625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02858543 247.10502625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02858544 247.10505676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02858545 247.10505676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02858546 247.10507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02858547 247.10507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02858548 247.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02858549 247.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02858550 247.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02858551 247.10514832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02858552 247.10514832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02858553 247.10517883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02858554 247.10520935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02858555 247.10520935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02858556 247.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02858557 247.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02858558 247.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02858559 247.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02858560 247.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02858561 247.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02858562 247.10530090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02858563 247.10530090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02858564 247.10533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02858565 247.10533142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02858566 247.10536194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02858567 247.10536194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02858568 247.10537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02858569 247.10537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02858570 247.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02858571 247.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02858572 247.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02858573 247.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02858574 247.10545349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02858575 247.10545349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02858576 247.10548401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02858577 247.10548401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02858578 247.10551453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02858579 247.10551453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02858580 247.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02858581 247.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02858582 247.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02858583 247.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02858584 247.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02858585 247.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02858586 247.10563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02858587 247.10563660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02858588 247.10566711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02858589 247.10566711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02858590 247.10568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02858591 247.10568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02858592 247.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02858593 247.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02858594 247.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02858595 247.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02858596 247.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02858597 247.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02858598 247.10578918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02858599 247.10578918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02858600 247.10581970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02858601 247.10585022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02858602 247.10586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02858603 247.10586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02858604 247.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02858605 247.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02858606 247.10592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02858607 247.10592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02858608 247.10594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02858609 247.10594177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02858610 247.10597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02858611 247.10597229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02858612 247.10600281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02858613 247.10600281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02858614 247.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02858615 247.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02858616 247.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02858617 247.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02858618 247.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02858619 247.10609436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02858620 247.10612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02858621 247.10612488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02858622 247.10615540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02858623 247.10615540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02858624 247.10617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02858625 247.10617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02858626 247.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02858627 247.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02858628 247.10623169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02858629 247.10623169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02858630 247.10624695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02858631 247.10624695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02858632 247.10627747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02858633 247.10627747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02858634 247.10630798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02858635 247.10630798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02858636 247.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02858637 247.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02858638 247.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02858639 247.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02858640 247.10639954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02858641 247.10639954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02858642 247.10643005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02858643 247.10643005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02858644 247.10646057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02858645 247.10646057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02858646 247.10647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02858647 247.10647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02858648 247.10653687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02858649 247.10653687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02858650 247.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02858651 247.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02858652 247.10658264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02858653 247.10658264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02858654 247.10661316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02858655 247.10661316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02858656 247.10664368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02858657 247.10664368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02858658 247.10665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02858659 247.10665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02858660 247.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02858661 247.10671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02858662 247.10673523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02858663 247.10673523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02858664 247.10676575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02858665 247.10676575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02858666 247.10679626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02858667 247.10679626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02858668 247.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02858669 247.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02858670 247.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02858671 247.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02858672 247.10688782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02858673 247.10688782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02858674 247.10691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02858675 247.10691833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02858676 247.10694885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02858677 247.10694885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02858678 247.10696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02858679 247.10696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02858680 247.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02858681 247.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02858682 247.10702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02858683 247.10702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02858684 247.10704041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02858685 247.10704041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02858686 247.10707092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02858687 247.10710144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02858688 247.10711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02858689 247.10711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02858690 247.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02858691 247.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02858692 247.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02858693 247.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02858694 247.10719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02858695 247.10719299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02858696 247.10722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02858697 247.10722351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02858698 247.10725403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02858699 247.10725403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02858700 247.10726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02858701 247.10726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02858702 247.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02858703 247.10733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02858704 247.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02858705 247.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02858706 247.10737610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02858707 247.10737610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02858708 247.10740662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02858709 247.10740662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02858710 247.10743713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02858711 247.10743713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02858712 247.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02858713 247.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02858714 247.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02858715 247.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02858716 247.10751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02858717 247.10751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02858718 247.10752869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02858719 247.10752869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02858720 247.10755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02858721 247.10755920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02858722 247.10758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02858723 247.10758972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02858724 247.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02858725 247.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02858726 247.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02858727 247.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02858728 247.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02858729 247.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02858730 247.10768127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02858731 247.10771179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02858732 247.10771179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02858733 247.10774231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02858734 247.10775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02858735 247.10775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02858736 247.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02858737 247.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02858738 247.10781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02858739 247.10781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02858740 247.10783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02858741 247.10783386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02858742 247.10786438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02858743 247.10786438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02858744 247.10789490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02858745 247.10789490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02858746 247.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02858747 247.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02858748 247.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02858749 247.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02858750 247.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02858751 247.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02858752 247.10798645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02858753 247.10798645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02858754 247.10801697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02858755 247.10801697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02858756 247.10804749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02858757 247.10804749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02858758 247.10807800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02858759 247.10807800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02858760 247.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02858761 247.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02858762 247.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02858763 247.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02858764 247.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02858765 247.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02858766 247.10816956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02858767 247.10816956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02858768 247.10820007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02858769 247.10820007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02858770 247.10823059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02858771 247.10823059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02858772 247.10824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02858773 247.10824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02858774 247.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02858775 247.10830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02858776 247.10830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02858777 247.10832214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02858778 247.10835266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02858779 247.10835266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02858780 247.10838318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02858781 247.10838318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02858782 247.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02858783 247.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02858784 247.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02858785 247.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02858786 247.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02858787 247.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02858788 247.10847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02858789 247.10847473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02858790 247.10850525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02858791 247.10850525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02858792 247.10853577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02858793 247.10853577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02858794 247.10855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02858795 247.10855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02858796 247.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02858797 247.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02858798 247.10861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02858799 247.10861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02858800 247.10862732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02858801 247.10862732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02858802 247.10865784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02858803 247.10865784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02858804 247.10868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02858805 247.10868835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02858806 247.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02858807 247.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02858808 247.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02858809 247.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02858810 247.10877991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02858811 247.10877991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02858812 247.10881042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02858813 247.10881042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02858814 247.10884094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02858815 247.10884094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02858816 247.10887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02858817 247.10887146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02858818 247.10888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02858819 247.10888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02858820 247.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02858821 247.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02858822 247.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02858823 247.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02858824 247.10896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02858825 247.10896301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02858826 247.10899353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02858827 247.10899353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02858828 247.10902405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02858829 247.10902405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02858830 247.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02858831 247.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02858832 247.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02858833 247.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02858834 247.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02858835 247.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02858836 247.10911560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02858837 247.10911560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02858838 247.10914612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02858839 247.10914612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02858840 247.10917664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02858841 247.10917664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02858842 247.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02858843 247.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02858844 247.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02858845 247.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02858846 247.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02858847 247.10926819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02858848 247.10929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02858849 247.10929871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02858850 247.10932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02858851 247.10932922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02858852 247.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02858853 247.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02858854 247.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02858855 247.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02858856 247.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02858857 247.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02858858 247.10942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02858859 247.10942078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02858860 247.10945129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02858861 247.10945129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02858862 247.10948181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02858863 247.10948181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02858864 247.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02858865 247.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02858866 247.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02858867 247.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02858868 247.10955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02858869 247.10955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02858870 247.10957336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02858871 247.10957336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02858872 247.10960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02858873 247.10960388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02858874 247.10963440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02858875 247.10963440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02858876 247.10966492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02858877 247.10966492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02858878 247.10968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02858879 247.10971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02858880 247.10974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02858881 247.10974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02858882 247.10975647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02858883 247.10975647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02858884 247.10978699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02858885 247.10978699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02858886 247.10981750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02858887 247.10981750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02858888 247.10983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02858889 247.10983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02858890 247.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02858891 247.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02858892 247.10989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02858893 247.10989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02858894 247.10990906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02858895 247.10990906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02858896 247.10993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02858897 247.10993958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02858898 247.10997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02858899 247.10997009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02858900 247.10998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02858901 247.10998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02858902 247.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02858903 247.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02858904 247.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02858905 247.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02858906 247.11006165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02858907 247.11006165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02858908 247.11009216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02858909 247.11009216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02858910 247.11012268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02858911 247.11013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02858912 247.11013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02858913 247.11016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02858914 247.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02858915 247.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02858916 247.11021423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02858917 247.11021423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02858918 247.11024475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02858919 247.11024475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02858920 247.11027527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02858921 247.11027527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02858922 247.11029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02858923 247.11029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02858924 247.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02858925 247.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02858926 247.11035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02858927 247.11035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02858928 247.11036682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02858929 247.11036682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02858930 247.11039734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02858931 247.11039734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02858932 247.11042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02858933 247.11042786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02858934 247.11045837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02858935 247.11045837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02858936 247.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02858937 247.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02858938 247.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02858939 247.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02858940 247.11053467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02858941 247.11053467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02858942 247.11054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02858943 247.11054993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02858944 247.11058044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02858945 247.11058044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02858946 247.11061096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02858947 247.11061096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02858948 247.11062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02858949 247.11062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02858950 247.11065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02858951 247.11068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02858952 247.11070251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02858953 247.11070251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02858954 247.11073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02858955 247.11073303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02858956 247.11076355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02858957 247.11076355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02858958 247.11077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02858959 247.11077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02858960 247.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02858961 247.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02858962 247.11083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02858963 247.11083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02858964 247.11085510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02858965 247.11085510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02858966 247.11088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02858967 247.11088562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02858968 247.11091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02858969 247.11091614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02858970 247.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02858971 247.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02858972 247.11099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02858973 247.11099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02858974 247.11100769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02858975 247.11100769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02858976 247.11103821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02858977 247.11103821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02858978 247.11106873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02858979 247.11106873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02858980 247.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02858981 247.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02858982 247.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02858983 247.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02858984 247.11114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02858985 247.11114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02858986 247.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02858987 247.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02858988 247.11119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02858989 247.11119080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02858990 247.11122131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02858991 247.11122131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02858992 247.11125183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02858993 247.11125183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02858994 247.11126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02858995 247.11126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02858996 247.11129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02858997 247.11129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02858998 247.11132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02858999 247.11132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02859000 247.11134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02859001 247.11134338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02859002 247.11137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02859003 247.11137390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02859004 247.11140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02859005 247.11140442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02859006 247.11141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02859007 247.11141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02859008 247.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02859009 247.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02859010 247.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02859011 247.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02859012 247.11149597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02859013 247.11152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02859014 247.11152649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02859015 247.11155701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02859016 247.11157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02859017 247.11157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02859018 247.11160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02859019 247.11160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02859020 247.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02859021 247.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02859022 247.11164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02859023 247.11164856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02859024 247.11167908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02859025 247.11167908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02859026 247.11170959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02859027 247.11170959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02859028 247.11172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02859029 247.11172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02859030 247.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02859031 247.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02859032 247.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02859033 247.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02859034 247.11180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02859035 247.11180115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02859036 247.11183167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02859037 247.11183167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02859038 247.11186218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02859039 247.11186218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02859040 247.11187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02859041 247.11187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02859042 247.11190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02859043 247.11190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02859044 247.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02859045 247.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02859046 247.11196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02859047 247.11196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02859048 247.11198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02859049 247.11198425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02859050 247.11201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02859051 247.11201477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02859052 247.11204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02859053 247.11204529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02859054 247.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02859055 247.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02859056 247.11209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02859057 247.11212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02859058 247.11212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02859059 247.11213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02859060 247.11213684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02859061 247.11216736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02859062 247.11219788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02859063 247.11219788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02859064 247.11221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02859065 247.11221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02859066 247.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02859067 247.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02859068 247.11227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02859069 247.11227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02859070 247.11228943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02859071 247.11228943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02859072 247.11231995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02859073 247.11231995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02859074 247.11235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02859075 247.11235046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02859076 247.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02859077 247.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02859078 247.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02859079 247.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02859080 247.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02859081 247.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02859082 247.11244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02859083 247.11244202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02859084 247.11247253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02859085 247.11247253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02859086 247.11250305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02859087 247.11250305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02859088 247.11251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02859089 247.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02859090 247.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02859091 247.11257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02859092 247.11259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02859093 247.11259460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -02859094 247.11262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02859095 247.11262512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -02859096 247.11265564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02859097 247.11265564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -02859098 247.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02859099 247.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -02859100 247.11270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02859101 247.11270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -02859102 247.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02859103 247.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -02859104 247.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02859105 247.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -02859106 247.11277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02859107 247.11277771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -02859108 247.11280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02859109 247.11280823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -02859110 247.11283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02859111 247.11283875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -02859112 247.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02859113 247.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -02859114 247.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02859115 247.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -02859116 247.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02859117 247.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -02859118 247.11293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02859119 247.11293030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -02859120 247.11296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02859121 247.11296082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -02859122 247.11299133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02859123 247.11300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -02859124 247.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02859125 247.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -02859126 247.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02859127 247.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -02859128 247.11308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02859129 247.11308289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -02859130 247.11311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02859131 247.11311340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -02859132 247.11314392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02859133 247.11314392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -02859134 247.11315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02859135 247.11315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -02859136 247.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02859137 247.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -02859138 247.11322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02859139 247.11322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -02859140 247.11323547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02859141 247.11323547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -02859142 247.11326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02859143 247.11326599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -02859144 247.11331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02859145 247.11331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -02859146 247.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02859147 247.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -02859148 247.11337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02859149 247.11338806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -02859150 247.11341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02859151 247.11341858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -02859152 247.11344910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02859153 247.11344910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -02859154 247.11347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02859155 247.11347961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -02859156 247.11349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02859157 247.11349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -02859158 247.11352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02859159 247.11352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -02859160 247.11355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02859161 247.11355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -02859162 247.11357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02859163 247.11357117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -02859164 247.11360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02859165 247.11360168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -02859166 247.11363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02859167 247.11363220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -02859168 247.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02859169 247.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -02859170 247.11370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02859171 247.11370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -02859172 247.11372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02859173 247.11372375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -02859174 247.11375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02859175 247.11375427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -02859176 247.11378479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02859177 247.11378479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -02859178 247.11380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02859179 247.11380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -02859180 247.11383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02859181 247.11383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -02859182 247.11386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02859183 247.11386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -02859184 247.11387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02859185 247.11387634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -02859186 247.11390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02859187 247.11390686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -02859188 247.11393738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02859189 247.11393738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -02859190 247.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02859191 247.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -02859192 247.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02859193 247.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -02859194 247.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02859195 247.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -02859196 247.11402893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02859197 247.11402893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -02859198 247.11405945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02859199 247.11405945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -02859200 247.11408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02859201 247.11408997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -02859202 247.11410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02859203 247.11410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -02859204 247.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02859205 247.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -02859206 247.11416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02859207 247.11416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -02859208 247.11418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02859209 247.11418152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -02859210 247.11421204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02859211 247.11424255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -02859212 247.11424255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02859213 247.11427307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -02859214 247.11428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02859215 247.11428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -02859216 247.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02859217 247.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -02859218 247.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02859219 247.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -02859220 247.11436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02859221 247.11436462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -02859222 247.11439514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02859223 247.11439514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -02859224 247.11442566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02859225 247.11442566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -02859226 247.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02859227 247.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -02859228 247.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02859229 247.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -02859230 247.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02859231 247.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -02859232 247.11451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02859233 247.11451721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -02859234 247.11454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02859235 247.11454773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -02859236 247.11457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02859237 247.11457825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -02859238 247.11459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02859239 247.11459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -02859240 247.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02859241 247.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -02859242 247.11465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02859243 247.11465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -02859244 247.11466980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02859245 247.11466980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -02859246 247.11470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02859247 247.11470032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -02859248 247.11473083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02859249 247.11474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -02859250 247.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02859251 247.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -02859252 247.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02859253 247.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -02859254 247.11482239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02859255 247.11482239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -02859256 247.11485291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02859257 247.11485291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -02859258 247.11488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02859259 247.11488342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -02859260 247.11489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02859261 247.11489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -02859262 247.11492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02859263 247.11492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -02859264 247.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02859265 247.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -02859266 247.11497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02859267 247.11497498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -02859268 247.11500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02859269 247.11500549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -02859270 247.11503601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02859271 247.11503601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -02859272 247.11506653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02859273 247.11506653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -02859274 247.11508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02859275 247.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -02859276 247.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02859277 247.11514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -02859278 247.11515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02859279 247.11515808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -02859280 247.11518860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02859281 247.11518860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -02859282 247.11521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02859283 247.11521912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -02859284 247.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02859285 247.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -02859286 247.11529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02859287 247.11529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -02859288 247.11531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02859289 247.11531067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -02859290 247.11534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02859291 247.11534119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -02859292 247.11537170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02859293 247.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -02859294 247.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02859295 247.11541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -02859296 247.11544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02859297 247.11544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -02859298 247.11546326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02859299 247.11546326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -02859300 247.11549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02859301 247.11549377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -02859302 247.11552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02859303 247.11552429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -02859304 247.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02859305 247.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -02859306 247.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02859307 247.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -02859308 247.11560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02859309 247.11560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -02860584 247.13308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02860585 247.13308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -02860586 247.13310242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02860587 247.13310242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -02860588 247.13313293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02860589 247.13313293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -02860590 247.13316345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02860591 247.13316345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -02860592 247.13317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02860593 247.13317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -02860594 247.13320923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02860595 247.13320923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -02860596 247.13323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02860597 247.13323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -02860598 247.13325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02860599 247.13325500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -02860600 247.13328552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02860601 247.13328552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -02860602 247.13331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02860603 247.13331604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -02860604 247.13333130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02860605 247.13333130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -02860606 247.13336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02860607 247.13336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -02860608 247.13339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02860609 247.13339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -02860610 247.13340759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02860611 247.13340759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -02860612 247.13343811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02860613 247.13343811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -02860614 247.13346863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02860615 247.13348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -02860616 247.13348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02860617 247.13351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -02860618 247.13354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02860619 247.13354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -02860620 247.13357544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02860621 247.13357544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -02860622 247.13359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02860623 247.13359070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -02860624 247.13362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02860625 247.13362122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -02860626 247.13365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02860627 247.13365173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -02865626 247.20228577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -02865627 247.20228577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -02865628 247.20230103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -02865629 247.20230103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -02865630 247.20233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -02865631 247.20233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -02865632 247.20236206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -02865633 247.20236206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -02865634 247.20237732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -02865635 247.20237732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -02865636 247.20240784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -02865637 247.20240784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -02865638 247.20243835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -02865639 247.20243835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -02865640 247.20245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -02865641 247.20245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -02865642 247.20248413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -02865643 247.20248413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -02865644 247.20251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -02865645 247.20251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -02865646 247.20252991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -02865647 247.20252991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -02865648 247.20256042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be8 -02865649 247.20256042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10be8 -02865650 247.20259094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf8 -02865651 247.20259094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bf8 -02865652 247.20260620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c08 -02865653 247.20260620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c08 -02865654 247.20263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c18 -02865655 247.20266724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c18 -02865656 247.20266724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c28 -02865657 247.20268250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c28 -02865658 247.20271301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c38 -02865659 247.20271301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c38 -02865660 247.20274353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c48 -02865661 247.20274353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c48 -02865662 247.20275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c58 -02865663 247.20275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c58 -02865664 247.20278931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c68 -02865665 247.20278931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c68 -02865666 247.20281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c78 -02865667 247.20281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c78 -02865668 247.20283508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c88 -02865669 247.20283508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c88 -02881250 247.41780090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -02881251 247.41780090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -02881252 247.41783142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -02881253 247.41783142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -02881254 247.41786194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -02881255 247.41786194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -02881256 247.41787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -02881257 247.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -02881258 247.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -02881259 247.41793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -02881260 247.41795349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -02881261 247.41795349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -02881262 247.41798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -02881263 247.41798401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -02881264 247.41801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -02881265 247.41801453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -02881266 247.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -02881267 247.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -02881268 247.41806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -02881269 247.41806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -02881270 247.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f418 -02881271 247.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f418 -02881272 247.41810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f428 -02881273 247.41810608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f428 -02881274 247.41813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f438 -02881275 247.41813660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f438 -02881276 247.41816711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f448 -02881277 247.41816711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f448 -02881278 247.41818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f458 -02881279 247.41818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f458 -02881280 247.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f468 -02881281 247.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f468 -02881282 247.41824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f478 -02881283 247.41824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f478 -02881284 247.41825867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f488 -02881285 247.41825867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f488 -02881286 247.41828918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f498 -02881287 247.41831970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f498 -02881288 247.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a8 -02881289 247.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a8 -02881290 247.41836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b8 -02881291 247.41836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b8 -02881292 247.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c8 -02881293 247.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c8 -02885260 247.47346497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -02885261 247.47346497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -02885262 247.47348022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -02885263 247.47348022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -02885264 247.47351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -02885265 247.47351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -02885266 247.47354126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -02885267 247.47354126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -02885268 247.47355652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -02885269 247.47355652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -02885270 247.47358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -02885271 247.47358704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -02885272 247.47361755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -02885273 247.47361755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -02885274 247.47363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -02885275 247.47363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -02885276 247.47366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -02885277 247.47369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -02885278 247.47369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37158 -02885279 247.47370911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37158 -02885280 247.47373962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37168 -02885281 247.47373962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37168 -02885282 247.47377014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -02885283 247.47377014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -02885284 247.47378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -02885285 247.47378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -02885286 247.47381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -02885287 247.47381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -02885288 247.47384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a8 -02885289 247.47384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371a8 -02885290 247.47386169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b8 -02885291 247.47386169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371b8 -02885292 247.47389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c8 -02885293 247.47389221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371c8 -02885294 247.47392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d8 -02885295 247.47392273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371d8 -02885296 247.47393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e8 -02885297 247.47393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371e8 -02885298 247.47396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f8 -02885299 247.47396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x371f8 -02885300 247.47399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37208 -02885301 247.47399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37208 -02885302 247.47402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -02885303 247.47402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37218 -02890542 247.54656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -02890543 247.54660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d8 -02890544 247.54663086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -02890545 247.54663086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e8 -02890546 247.54664612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -02890547 247.54664612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f8 -02890548 247.54667664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -02890549 247.54667664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41608 -02890550 247.54670715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -02890551 247.54670715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41618 -02890552 247.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -02890553 247.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41628 -02890554 247.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -02890555 247.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41638 -02890556 247.54678345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -02890557 247.54678345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41648 -02890558 247.54679871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -02890559 247.54679871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41658 -02890560 247.54682922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -02890561 247.54682922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41668 -02890562 247.54685974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -02890563 247.54685974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41678 -02890564 247.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -02890565 247.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41688 -02890566 247.54690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -02890567 247.54690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41698 -02890568 247.54693604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -02890569 247.54693604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416a8 -02890570 247.54695129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -02890571 247.54695129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416b8 -02890572 247.54698181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -02890573 247.54698181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416c8 -02890574 247.54701233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -02890575 247.54701233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416d8 -02890576 247.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e8 -02890577 247.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416e8 -02890578 247.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f8 -02890579 247.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x416f8 -02890580 247.54708862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41708 -02890581 247.54708862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41708 -02890582 247.54710388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41718 -02890583 247.54710388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41718 -02890584 247.54713440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41728 -02890585 247.54713440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41728 -02895914 247.62101746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -02895915 247.62104797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -02895916 247.62106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -02895917 247.62106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -02895918 247.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -02895919 247.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -02895920 247.62112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -02895921 247.62112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -02895922 247.62113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -02895923 247.62113953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -02895924 247.62117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -02895925 247.62117004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -02895926 247.62120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -02895927 247.62120056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -02895928 247.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -02895929 247.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -02895930 247.62124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -02895931 247.62124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -02895932 247.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -02895933 247.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -02895934 247.62129211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -02895935 247.62129211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -02895936 247.62132263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -02895937 247.62132263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -02895938 247.62135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -02895939 247.62135315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -02895940 247.62136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -02895941 247.62136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -02895942 247.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -02895943 247.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -02895944 247.62142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -02895945 247.62142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -02895946 247.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -02895947 247.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -02895948 247.62147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -02895949 247.62147522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -02895950 247.62150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed8 -02895951 247.62150574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bed8 -02895952 247.62153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee8 -02895953 247.62153625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bee8 -02895954 247.62155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef8 -02895955 247.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bef8 -02895956 247.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf08 -02895957 247.62161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf08 -02899482 248.04023743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02899483 248.04023743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -02899484 248.04026794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02899485 248.04026794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -02899486 248.04029846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02899487 248.04029846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -02899488 248.04031372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02899489 248.04031372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -02899490 248.04034424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02899491 248.04034424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -02899492 248.04037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02899493 248.04037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -02899494 248.04042053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02899495 248.04042053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -02899496 248.04045105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02899497 248.04045105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -02899498 248.04046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02899499 248.04046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -02899500 248.04049683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02899501 248.04049683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -02899502 248.04055786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02899503 248.04055786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -02899504 248.04057312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02899505 248.04057312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -02899506 248.04060364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02899507 248.04060364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -02899508 248.04063416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02899509 248.04063416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -02899510 248.04064941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02899511 248.04064941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -02899512 248.04067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02899513 248.04067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -02899514 248.04071045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02899515 248.04072571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -02899516 248.04075623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02899517 248.04075623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -02899518 248.04078674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02899519 248.04078674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -02899520 248.04080200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02899521 248.04080200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -02899522 248.04083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02899523 248.04083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -02899524 248.04086304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02899525 248.04086304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -02899526 248.04087830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02899527 248.04087830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -02899528 248.04090881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02899529 248.04090881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -02899530 248.04093933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02899531 248.04093933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -02899532 248.04095459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02899533 248.04095459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -02899534 248.04098511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02899535 248.04098511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -02899536 248.04101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02899537 248.04101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -02899538 248.04103088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02899539 248.04103088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -02899540 248.04106140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02899541 248.04109192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -02899542 248.04109192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02899543 248.04110718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -02899544 248.04113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02899545 248.04113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -02899546 248.04116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02899547 248.04116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -02899548 248.04118347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02899549 248.04118347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -02899550 248.04121399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02899551 248.04121399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -02899552 248.04124451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02899553 248.04124451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -02899554 248.04125977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02899555 248.04125977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -02899556 248.04129028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02899557 248.04129028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -02899558 248.04132080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02899559 248.04132080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -02899560 248.04135132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02899561 248.04135132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -02899562 248.04136658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02899563 248.04136658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -02899564 248.04139709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02899565 248.04142761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -02899566 248.04144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02899567 248.04144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -02899568 248.04147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02899569 248.04147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -02899570 248.04150391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02899571 248.04150391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -02899572 248.04151917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02899573 248.04151917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -02899574 248.04158020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02899575 248.04158020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -02899576 248.04159546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02899577 248.04159546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -02899578 248.04162598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02899579 248.04162598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -02899580 248.04165649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02899581 248.04165649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -02899582 248.04167175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02899583 248.04167175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -02899584 248.04170227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02899585 248.04170227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -02899586 248.04173279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02899587 248.04173279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -02899588 248.04174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02899589 248.04174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -02899590 248.04177856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02899591 248.04177856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -02899592 248.04180908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02899593 248.04182434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -02899594 248.04185486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02899595 248.04185486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -02899596 248.04188538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02899597 248.04188538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -02899598 248.04190063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02899599 248.04190063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -02899600 248.04193115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02899601 248.04193115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -02899602 248.04196167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02899603 248.04196167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -02899604 248.04197693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02899605 248.04197693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -02899606 248.04203796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02899607 248.04203796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -02899608 248.04205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02899609 248.04205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -02899610 248.04208374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02899611 248.04208374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -02899612 248.04211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02899613 248.04211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -02901268 248.06643677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -02901269 248.06643677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -02901270 248.06645203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -02901271 248.06648254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -02901272 248.06651306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -02901273 248.06651306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -02901274 248.06655884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -02901275 248.06655884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -02901276 248.06658936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -02901277 248.06658936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -02901278 248.06660461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -02901279 248.06660461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -02901280 248.06663513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -02901281 248.06666565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -02901282 248.06668091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -02901283 248.06668091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -02901284 248.06671143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -02901285 248.06671143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -02901286 248.06674194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -02901287 248.06674194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -02901288 248.06675720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -02901289 248.06675720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -02901290 248.06678772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -02901291 248.06678772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -02901292 248.06681824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -02901293 248.06681824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -02901294 248.06684875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -02901295 248.06684875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -02901296 248.06686401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -02901297 248.06686401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -02901298 248.06689453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -02901299 248.06689453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -02901300 248.06692505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -02901301 248.06694031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -02901302 248.06697083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -02901303 248.06697083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -02901304 248.06700134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -02901305 248.06700134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -02901306 248.06701660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -02901307 248.06701660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -02901308 248.06704712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -02901309 248.06704712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -02901310 248.06707764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -02901311 248.06707764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -02905770 248.13450623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -02905771 248.13450623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4c0 -02905772 248.13452148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -02905773 248.13455200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4d0 -02905774 248.13458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -02905775 248.13458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4e0 -02905776 248.13459778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -02905777 248.13459778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd4f0 -02905778 248.13462830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -02905779 248.13462830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd500 -02905780 248.13465881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -02905781 248.13465881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd510 -02905782 248.13467407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -02905783 248.13467407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd520 -02905784 248.13470459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -02905785 248.13473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd530 -02905786 248.13476563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -02905787 248.13476563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd540 -02905788 248.13478088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -02905789 248.13478088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd550 -02905790 248.13481140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -02905791 248.13481140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd560 -02905792 248.13484192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -02905793 248.13484192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd570 -02905794 248.13485718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -02905795 248.13485718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd580 -02905796 248.13488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -02905797 248.13491821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd590 -02905798 248.13493347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -02905799 248.13493347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5a0 -02905800 248.13496399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -02905801 248.13496399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5b0 -02905802 248.13499451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -02905803 248.13499451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5c0 -02905804 248.13500977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -02905805 248.13500977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5d0 -02905806 248.13504028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -02905807 248.13504028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5e0 -02905808 248.13507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -02905809 248.13507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd5f0 -02905810 248.13508606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -02905811 248.13511658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd600 -02905812 248.13514709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -02905813 248.13514709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xd610 -02910282 248.20262146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -02910283 248.20265198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c0 -02910284 248.20268250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -02910285 248.20268250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d0 -02910286 248.20269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -02910287 248.20269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e0 -02910288 248.20272827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -02910289 248.20272827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f0 -02910290 248.20275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -02910291 248.20275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16200 -02910292 248.20277405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -02910293 248.20277405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16210 -02910294 248.20283508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -02910295 248.20283508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16220 -02910296 248.20285034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -02910297 248.20285034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16230 -02910298 248.20288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -02910299 248.20288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16240 -02910300 248.20291138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -02910301 248.20291138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16250 -02910302 248.20292664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -02910303 248.20292664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16260 -02910304 248.20295715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -02910305 248.20295715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16270 -02910306 248.20298767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -02910307 248.20298767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16280 -02910308 248.20300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -02910309 248.20300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16290 -02910310 248.20303345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -02910311 248.20303345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a0 -02910312 248.20306396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -02910313 248.20307922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b0 -02910314 248.20310974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -02910315 248.20310974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c0 -02910316 248.20314026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -02910317 248.20314026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d0 -02910318 248.20315552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -02910319 248.20315552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e0 -02910320 248.20318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -02910321 248.20318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f0 -02910322 248.20321655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -02910323 248.20321655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16300 -02910324 248.20323181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -02910325 248.20323181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16310 -02924854 248.41709900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -02924855 248.41709900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32920 -02924856 248.41712952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -02924857 248.41714478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32930 -02924858 248.41717529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -02924859 248.41717529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32940 -02924860 248.41720581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -02924861 248.41720581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32950 -02924862 248.41723633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -02924863 248.41723633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32960 -02924864 248.41725159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -02924865 248.41725159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32970 -02924866 248.41728210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -02924867 248.41728210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32980 -02924868 248.41731262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -02924869 248.41731262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32990 -02924870 248.41732788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -02924871 248.41732788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329a0 -02924872 248.41735840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -02924873 248.41735840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329b0 -02924874 248.41738892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -02924875 248.41738892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329c0 -02924876 248.41740417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -02924877 248.41743469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329d0 -02924878 248.41746521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -02924879 248.41746521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329e0 -02924880 248.41748047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -02924881 248.41748047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x329f0 -02924882 248.41751099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -02924883 248.41751099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a00 -02924884 248.41754150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -02924885 248.41754150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a10 -02924886 248.41755676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -02924887 248.41755676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a20 -02924888 248.41758728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -02924889 248.41758728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a30 -02924890 248.41761780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -02924891 248.41761780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a40 -02924892 248.41763306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -02924893 248.41763306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a50 -02924894 248.41766357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -02924895 248.41766357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a60 -02924896 248.41769409 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -02924897 248.41770935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a70 -02928573 248.47163391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d50 -02928574 248.47164917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -02928575 248.47164917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d60 -02928576 248.47167969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -02928577 248.47167969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d70 -02928578 248.47171021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -02928579 248.47171021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d80 -02928580 248.47172546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -02928581 248.47172546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d90 -02928582 248.47175598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -02928583 248.47178650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da0 -02928584 248.47180176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -02928585 248.47180176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db0 -02928586 248.47183228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -02928587 248.47183228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc0 -02928588 248.47186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -02928589 248.47186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd0 -02928590 248.47193909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -02928591 248.47193909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de0 -02928592 248.47195435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -02928593 248.47195435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df0 -02928594 248.47198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -02928595 248.47198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e00 -02928596 248.47201538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -02928597 248.47201538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e10 -02928598 248.47204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -02928599 248.47204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e20 -02928600 248.47206116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -02928601 248.47206116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e30 -02928602 248.47209167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -02928603 248.47209167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e40 -02928604 248.47212219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -02928605 248.47213745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e50 -02928606 248.47216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -02928607 248.47216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e60 -02928608 248.47219849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -02928609 248.47219849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e70 -02928610 248.47221375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -02928611 248.47221375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e80 -02928612 248.47224426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -02928613 248.47224426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e90 -02928614 248.47227478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -02928615 248.47227478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea0 -02928616 248.47229004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb0 -02933594 248.54473877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -02933595 248.54473877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a40 -02933596 248.54476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -02933597 248.54476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a50 -02933598 248.54479980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -02933599 248.54479980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a60 -02933600 248.54481506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -02933601 248.54481506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a70 -02933602 248.54487610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -02933603 248.54487610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a80 -02933604 248.54492188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -02933605 248.54492188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a90 -02933606 248.54496765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -02933607 248.54496765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa0 -02933608 248.54499817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -02933609 248.54499817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab0 -02933610 248.54502869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -02933611 248.54502869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac0 -02933612 248.54504395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -02933613 248.54504395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad0 -02933614 248.54507446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -02933615 248.54507446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae0 -02933616 248.54510498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -02933617 248.54510498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af0 -02933618 248.54512024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -02933619 248.54512024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b00 -02933620 248.54515076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -02933621 248.54515076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b10 -02933622 248.54518127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -02933623 248.54518127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b20 -02933624 248.54519653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -02933625 248.54519653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b30 -02933626 248.54522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -02933627 248.54522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b40 -02933628 248.54525757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -02933629 248.54525757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b50 -02933630 248.54527283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -02933631 248.54527283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b60 -02933632 248.54530334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -02933633 248.54533386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b70 -02933634 248.54533386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -02933635 248.54536438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b80 -02933636 248.54537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -02933637 248.54537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b90 -02938416 248.61566162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -02938417 248.61566162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -02938418 248.61567688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -02938419 248.61567688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -02938420 248.61570740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -02938421 248.61570740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -02938422 248.61573792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -02938423 248.61573792 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -02938424 248.61575317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -02938425 248.61575317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -02938426 248.61578369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -02938427 248.61578369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -02938428 248.61581421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -02938429 248.61581421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -02938430 248.61582947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -02938431 248.61582947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -02938432 248.61585999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -02938433 248.61585999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -02938434 248.61589050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -02938435 248.61590576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -02938436 248.61593628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -02938437 248.61593628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -02938438 248.61596680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -02938439 248.61596680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -02938440 248.61601257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -02938441 248.61601257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -02938442 248.61604309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -02938443 248.61604309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -02938444 248.61605835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -02938445 248.61605835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -02938446 248.61608887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -02938447 248.61608887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -02938448 248.61611938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -02938449 248.61611938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -02938450 248.61613464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -02938451 248.61613464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -02938452 248.61616516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -02938453 248.61616516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -02938454 248.61619568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -02938455 248.61619568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d220 -02938456 248.61621094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -02938457 248.61624146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d230 -02938458 248.61627197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -02938459 248.61627197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d240 -02941376 249.07081604 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02941377 249.09233093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941378 249.09233093 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941379 249.13456726 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941380 249.13461304 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941381 249.13464355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941382 249.13464355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02941383 249.13479614 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941384 249.13479614 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941385 249.13487244 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941386 249.13490295 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941387 251.09312439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -02941388 251.11326599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941389 251.11326599 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941390 251.64193726 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941391 251.64198303 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941392 251.64201355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -02941393 251.64201355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -02941394 251.64218140 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941395 251.64218140 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941396 251.64224243 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -02941397 251.64227295 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -02941398 252.67187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02941399 252.67187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -02941400 252.67189026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02941401 252.67189026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -02941402 252.67192078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02941403 252.67192078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -02941404 252.67198181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02941405 252.67198181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -02941406 252.67199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02941407 252.67199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -02941408 252.67202759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02941409 252.67202759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -02941410 252.67205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02941411 252.67205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -02941412 252.67207336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02941413 252.67207336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -02941414 252.67210388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02941415 252.67210388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -02941416 252.67213440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02941417 252.67213440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -02941418 252.67214966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02941419 252.67218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -02941420 252.67221069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02941421 252.67221069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -02941422 252.67222595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02941423 252.67222595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -02941424 252.67225647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02941425 252.67225647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -02941426 252.67228699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02941427 252.67228699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -02941428 252.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02941429 252.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -02941430 252.67233276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02941431 252.67233276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -02941432 252.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02941433 252.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -02941434 252.67237854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02941435 252.67237854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -02941436 252.67240906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02941437 252.67240906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -02941438 252.67243958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02941439 252.67245483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -02941440 252.67245483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02941441 252.67248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -02941442 252.67251587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02941443 252.67251587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -02941444 252.67253113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02941445 252.67253113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -02941446 252.67256165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02941447 252.67256165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -02941448 252.67259216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02941449 252.67259216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -02941450 252.67260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02941451 252.67260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -02941452 252.67263794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02941453 252.67263794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -02941454 252.67266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02941455 252.67266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -02941456 252.67271423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02941457 252.67271423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -02941458 252.67274475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02941459 252.67274475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -02941460 252.67277527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02941461 252.67277527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -02941462 252.67279053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02941463 252.67279053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -02941464 252.67282104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02941465 252.67282104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -02941466 252.67285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02941467 252.67285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -02941468 252.67286682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02941469 252.67286682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -02941470 252.67292786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02941471 252.67292786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -02941472 252.67294312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02941473 252.67294312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -02941474 252.67297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02941475 252.67297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -02941476 252.67300415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02941477 252.67300415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -02941478 252.67301941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02941479 252.67301941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -02941480 252.67304993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02941481 252.67304993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -02941482 252.67308044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02941483 252.67308044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -02941484 252.67309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02941485 252.67309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -02941486 252.67312622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02941487 252.67312622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -02941488 252.67315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02941489 252.67315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -02941490 252.67317200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02941491 252.67320251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -02941492 252.67323303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02941493 252.67323303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -02941494 252.67324829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02941495 252.67324829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -02941496 252.67327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02941497 252.67327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -02941498 252.67330933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02941499 252.67330933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -02941500 252.67332458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02941501 252.67332458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -02941502 252.67335510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02941503 252.67335510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -02941504 252.67338562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02941505 252.67338562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -02941506 252.67340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02941507 252.67343140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -02941508 252.67346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02941509 252.67346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -02941510 252.67347717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02941511 252.67347717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -02941512 252.67350769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02941513 252.67350769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -02941514 252.67353821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02941515 252.67353821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -02941516 252.67356873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02941517 252.67356873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -02941518 252.67358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02941519 252.67358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -02941520 252.67361450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02941521 252.67361450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -02941522 252.67366028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02941523 252.67366028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -02941524 252.67369080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02941525 252.67369080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -02941526 252.67372131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02941527 252.67372131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -02941528 252.67373657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02941529 252.67373657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -02941530 252.67376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02941531 252.67376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -02941532 252.67379761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02941533 252.67381287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -02941534 252.67384338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02941535 252.67384338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -02941536 252.67387390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02941537 252.67387390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -02941538 252.67388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02941539 252.67388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -02941540 252.67391968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02941541 252.67391968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -02941542 252.67395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02941543 252.67395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -02941544 252.67396545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02941545 252.67396545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -02941546 252.67399597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02941547 252.67399597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -02941548 252.67402649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02941549 252.67402649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -02941550 252.67404175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02941551 252.67407227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -02941552 252.67410278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02941553 252.67410278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -02941554 252.67411804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02941555 252.67411804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -02941556 252.67414856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02941557 252.67414856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -02941558 252.67417908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02941559 252.67417908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -02941560 252.67419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02941561 252.67419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -02941562 252.67422485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02941563 252.67422485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -02941564 252.67425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02941565 252.67425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -02941566 252.67428589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02941567 252.67428589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -02941568 252.67430115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02941569 252.67430115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -02941570 252.67433167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02941571 252.67433167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -02941572 252.67436218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02941573 252.67436218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -02941574 252.67437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02941575 252.67437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -02941576 252.67440796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02941577 252.67440796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -02941578 252.67443848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02941579 252.67445374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -02941580 252.67445374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02941581 252.67448425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -02941582 252.67451477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02941583 252.67451477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -02941584 252.67453003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02941585 252.67453003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -02941586 252.67456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02941587 252.67456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -02941588 252.67459106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02941589 252.67459106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -02941590 252.67460632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02941591 252.67460632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -02941592 252.67463684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02941593 252.67463684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -02941594 252.67466736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02941595 252.67466736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -02941596 252.67468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02941597 252.67468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -02941598 252.67471313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02941599 252.67471313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -02941600 252.67474365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02941601 252.67475891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -02941602 252.67478943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02941603 252.67478943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -02941604 252.67481995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02941605 252.67481995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -02941606 252.67483521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02941607 252.67483521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -02941608 252.67486572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02941609 252.67486572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -02941610 252.67489624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02941611 252.67489624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -02941612 252.67491150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02941613 252.67491150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -02941614 252.67494202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02941615 252.67494202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -02941616 252.67497253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02941617 252.67497253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -02941618 252.67498779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02941619 252.67501831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -02941620 252.67504883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02941621 252.67504883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -02941622 252.67507935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02941623 252.67507935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -02941624 252.67509460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02941625 252.67509460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -02941626 252.67512512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02941627 252.67512512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -02941628 252.67515564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02941629 252.67515564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -02941630 252.67517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02941631 252.67517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -02941632 252.67520142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02941633 252.67520142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -02941634 252.67523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02941635 252.67523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -02941636 252.67524719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02941637 252.67524719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -02941638 252.67527771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02941639 252.67530823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -02941640 252.67532349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02941641 252.67532349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -02941642 252.67535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02941643 252.67535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -02941644 252.67538452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02941645 252.67538452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -02941646 252.67539978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02941647 252.67539978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -02941648 252.67543030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02941649 252.67543030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -02941650 252.67546082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02941651 252.67546082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -02941652 252.67547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02941653 252.67547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -02941654 252.67550659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02941655 252.67550659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -02941656 252.67553711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02941657 252.67553711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -02941658 252.67555237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02941659 252.67558289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -02941660 252.67561340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02941661 252.67561340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -02941662 252.67562866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02941663 252.67562866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -02941664 252.67565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02941665 252.67565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -02941666 252.67568970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02941667 252.67568970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -02941668 252.67570496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02941669 252.67573547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -02941670 252.67576599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02941671 252.67576599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -02941672 252.67578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02941673 252.67578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -02941674 252.67581177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02941675 252.67581177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -02941676 252.67584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02941677 252.67584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -02941678 252.67587280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02941679 252.67587280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -02941680 252.67588806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02941681 252.67588806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -02941682 252.67591858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02941683 252.67591858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -02941684 252.67594910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02941685 252.67594910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -02941686 252.67596436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02941687 252.67596436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -02941688 252.67599487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02941689 252.67602539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -02941690 252.67604065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02941691 252.67604065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -02941692 252.67607117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02941693 252.67607117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -02941694 252.67610168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02941695 252.67610168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -02941696 252.67611694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02941697 252.67611694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -02941698 252.67614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02941699 252.67614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -02941700 252.67617798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02941701 252.67617798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -02941702 252.67619324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02941703 252.67619324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -02941704 252.67622375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02941705 252.67622375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -02941706 252.67625427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02941707 252.67625427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -02941708 252.67626953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02941709 252.67630005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -02941710 252.67633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02941711 252.67633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -02941712 252.67634583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02941713 252.67634583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -02941714 252.67637634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02941715 252.67637634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -02941716 252.67640686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02941717 252.67640686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -02941718 252.67642212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02941719 252.67642212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -02941720 252.67645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02941721 252.67645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -02941722 252.67648315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02941723 252.67648315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -02941724 252.67649841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02941725 252.67649841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -02941726 252.67652893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02941727 252.67652893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -02941728 252.67655945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02941729 252.67658997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -02941730 252.67660522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02941731 252.67660522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -02941732 252.67663574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02941733 252.67663574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -02941734 252.67666626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02941735 252.67666626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -02941736 252.67668152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02941737 252.67668152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -02941738 252.67671204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02941739 252.67671204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -02941740 252.67674255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02941741 252.67674255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -02941742 252.67675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02941743 252.67675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -02941744 252.67678833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02941745 252.67678833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -02941746 252.67681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02941747 252.67681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -02941748 252.67683411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02941749 252.67686462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -02941750 252.67689514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02941751 252.67689514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -02941752 252.67691040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02941753 252.67691040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -02941754 252.67694092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02941755 252.67694092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -02941756 252.67697144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02941757 252.67697144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -02941758 252.67698669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02941759 252.67698669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -02941760 252.67701721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02941761 252.67701721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -02941762 252.67704773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02941763 252.67704773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -02941764 252.67706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02941765 252.67706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -02941766 252.67709351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02941767 252.67709351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -02941768 252.67712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02941769 252.67713928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -02941770 252.67716980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02941771 252.67716980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -02941772 252.67720032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02941773 252.67720032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -02941774 252.67721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02941775 252.67721558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -02941776 252.67724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02941777 252.67724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -02941778 252.67727661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02941779 252.67727661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -02941780 252.67729187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02941781 252.67729187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -02941782 252.67732239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02941783 252.67732239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -02941784 252.67735291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02941785 252.67735291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -02941786 252.67738342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02941787 252.67738342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -02941788 252.67739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02941789 252.67739868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -02941790 252.67742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02941791 252.67745972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -02941792 252.67747498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02941793 252.67747498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -02941794 252.67750549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02941795 252.67750549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -02941796 252.67753601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02941797 252.67753601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -02941798 252.67755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02941799 252.67755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -02941800 252.67758179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02941801 252.67758179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -02941802 252.67761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02941803 252.67761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -02941804 252.67762756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02941805 252.67762756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -02941806 252.67765808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02941807 252.67765808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -02941808 252.67768860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02941809 252.67768860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -02941810 252.67770386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02941811 252.67773438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -02941812 252.67776489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02941813 252.67776489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -02941814 252.67778015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02941815 252.67778015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -02941816 252.67781067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02941817 252.67781067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -02941818 252.67784119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02941819 252.67784119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -02941820 252.67785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02941821 252.67785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -02941822 252.67788696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02941823 252.67788696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -02941824 252.67791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02941825 252.67791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -02941826 252.67793274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02941827 252.67793274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -02941828 252.67796326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02941829 252.67796326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -02941830 252.67799377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02941831 252.67800903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -02941832 252.67803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02941833 252.67803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -02941834 252.67807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02941835 252.67807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -02941836 252.67808533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02941837 252.67808533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -02941838 252.67811584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02941839 252.67811584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -02941840 252.67814636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02941841 252.67814636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -02941842 252.67817688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02941843 252.67817688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -02941844 252.67819214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02941845 252.67819214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -02941846 252.67822266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02941847 252.67822266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -02941848 252.67825317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02941849 252.67825317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -02941850 252.67826843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02941851 252.67826843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -02941852 252.67829895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02941853 252.67832947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -02941854 252.67834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02941855 252.67834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -02941856 252.67837524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02941857 252.67837524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -02941858 252.67840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02941859 252.67840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -02941860 252.67842102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02941861 252.67842102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -02941862 252.67845154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02941863 252.67845154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -02941864 252.67848206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02941865 252.67848206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -02941866 252.67849731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02941867 252.67849731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -02941868 252.67852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02941869 252.67852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -02941870 252.67855835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02941871 252.67855835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -02941872 252.67857361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02941873 252.67857361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -02941874 252.67860413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02941875 252.67863464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -02941876 252.67864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02941877 252.67864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -02941878 252.67868042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02941879 252.67868042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -02941880 252.67871094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02941881 252.67871094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -02941882 252.67872620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02941883 252.67872620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -02941884 252.67875671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02941885 252.67875671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -02941886 252.67878723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02941887 252.67878723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -02941888 252.67880249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02941889 252.67880249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -02941890 252.67883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02941891 252.67883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -02941892 252.67886353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02941893 252.67886353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -02941894 252.67887878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02941895 252.67887878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -02941896 252.67890930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02941897 252.67893982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -02941898 252.67897034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02941899 252.67897034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -02941900 252.67898560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02941901 252.67898560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -02941902 252.67901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02941903 252.67901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -02941904 252.67904663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02941905 252.67904663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -02941906 252.67906189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02941907 252.67906189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -02941908 252.67909241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02941909 252.67909241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -02941910 252.67912292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02941911 252.67912292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -02941912 252.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02941913 252.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -02941914 252.67916870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02941915 252.67916870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -02941916 252.67919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02941917 252.67921448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -02941918 252.67921448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02941919 252.67924500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -02941920 252.67927551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02941921 252.67927551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -02941922 252.67929077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02941923 252.67929077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -02941924 252.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02941925 252.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -02941926 252.67935181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02941927 252.67935181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -02941928 252.67936707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02941929 252.67936707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -02941930 252.67939758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02941931 252.67939758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -02941932 252.67942810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02941933 252.67942810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -02941934 252.67944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02941935 252.67944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -02941936 252.67947388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02941937 252.67947388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -02941938 252.67950439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02941939 252.67951965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -02941940 252.67955017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02941941 252.67955017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -02941942 252.67958069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02941943 252.67958069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -02941944 252.67959595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02941945 252.67959595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -02941946 252.67962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02941947 252.67962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -02941948 252.67965698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02941949 252.67965698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -02941950 252.67968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02941951 252.67968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -02941952 252.67970276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02941953 252.67970276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -02941954 252.67973328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02941955 252.67973328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -02941956 252.67976379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02941957 252.67976379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -02941958 252.67977905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02941959 252.67977905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -02941960 252.67980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02941961 252.67984009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -02941962 252.67985535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02941963 252.67985535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -02941964 252.67988586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02941965 252.67988586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -02941966 252.67991638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02941967 252.67991638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -02941968 252.67993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02941969 252.67993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -02941970 252.67996216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02941971 252.67996216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -02941972 252.67999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02941973 252.67999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -02941974 252.68000793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02941975 252.68000793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -02941976 252.68003845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02941977 252.68003845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -02941978 252.68006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02941979 252.68006897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -02941980 252.68008423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02941981 252.68008423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -02941982 252.68011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02941983 252.68014526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -02941984 252.68016052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02941985 252.68016052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -02941986 252.68019104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02941987 252.68019104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -02941988 252.68022156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02941989 252.68022156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -02941990 252.68023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02941991 252.68023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -02941992 252.68026733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02941993 252.68026733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -02941994 252.68029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02941995 252.68029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -02941996 252.68031311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02941997 252.68031311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -02941998 252.68034363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02941999 252.68034363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -02942000 252.68037415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02942001 252.68037415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -02942002 252.68038940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02942003 252.68038940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -02942004 252.68041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02942005 252.68045044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -02942006 252.68048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02942007 252.68048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -02942008 252.68049622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02942009 252.68049622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -02942010 252.68052673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02942011 252.68052673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -02942012 252.68055725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02942013 252.68055725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -02942014 252.68057251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02942015 252.68057251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -02942016 252.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02942017 252.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -02942018 252.68063354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02942019 252.68063354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -02942020 252.68064880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02942021 252.68064880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -02942022 252.68067932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02942023 252.68067932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -02942024 252.68070984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02942025 252.68072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -02942026 252.68075562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02942027 252.68075562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -02942028 252.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02942029 252.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -02942030 252.68080139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02942031 252.68080139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -02942032 252.68083191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02942033 252.68083191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -02942034 252.68086243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02942035 252.68086243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -02942036 252.68087769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02942037 252.68087769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -02942038 252.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02942039 252.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -02942040 252.68093872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02942041 252.68093872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -02942042 252.68095398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02942043 252.68095398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -02942044 252.68098450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02942045 252.68098450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -02942046 252.68101501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02942047 252.68103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -02942048 252.68106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02942049 252.68106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -02942050 252.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02942051 252.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -02942052 252.68110657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02942053 252.68110657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -02942054 252.68113708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02942055 252.68113708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -02942056 252.68116760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02942057 252.68116760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -02942058 252.68118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02942059 252.68118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -02942060 252.68121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02942061 252.68121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -02942062 252.68124390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02942063 252.68124390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -02942064 252.68127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02942065 252.68127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -02942066 252.68128967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02942067 252.68128967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -02942068 252.68132019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02942069 252.68135071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -02942070 252.68136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02942071 252.68136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -02942072 252.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02942073 252.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -02942074 252.68142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02942075 252.68142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -02942076 252.68144226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02942077 252.68144226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -02942078 252.68147278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02942079 252.68147278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -02942080 252.68150330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02942081 252.68150330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -02942082 252.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02942083 252.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -02942084 252.68154907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02942085 252.68154907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -02942086 252.68157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02942087 252.68157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -02942088 252.68159485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02942089 252.68159485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -02942090 252.68162537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02942091 252.68165588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -02942092 252.68167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02942093 252.68167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -02942094 252.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02942095 252.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -02942096 252.68173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02942097 252.68173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -02942098 252.68174744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02942099 252.68174744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -02942100 252.68177795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02942101 252.68177795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -02942102 252.68180847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02942103 252.68180847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -02942104 252.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02942105 252.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -02942106 252.68185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02942107 252.68185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -02942108 252.68188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02942109 252.68188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -02942110 252.68190002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02942111 252.68193054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -02942112 252.68196106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02942113 252.68196106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -02942114 252.68199158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02942115 252.68199158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -02942116 252.68200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02942117 252.68200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -02942118 252.68203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02942119 252.68203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -02942120 252.68206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02942121 252.68206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -02942122 252.68208313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02942123 252.68208313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -02942124 252.68211365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02942125 252.68211365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -02942126 252.68214417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02942127 252.68214417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -02942128 252.68215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02942129 252.68215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -02942130 252.68218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02942131 252.68218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -02942132 252.68222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02942133 252.68223572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -02942134 252.68226624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02942135 252.68226624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -02942136 252.68229675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02942137 252.68229675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -02942138 252.68231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02942139 252.68231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -02942140 252.68234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02942141 252.68234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -02942142 252.68237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02942143 252.68237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -02942144 252.68238831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02942145 252.68238831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -02942146 252.68241882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02942147 252.68241882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -02942148 252.68244934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02942149 252.68244934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -02942150 252.68246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02942151 252.68246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -02942152 252.68249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02942153 252.68252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -02942154 252.68254089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02942155 252.68254089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -02942156 252.68257141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02942157 252.68257141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -02942158 252.68260193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02942159 252.68260193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -02942160 252.68261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02942161 252.68261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -02942162 252.68264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02942163 252.68264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -02942164 252.68267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02942165 252.68267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -02942166 252.68269348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02942167 252.68269348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -02942168 252.68272400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02942169 252.68272400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -02942170 252.68275452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02942171 252.68275452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -02942172 252.68278503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02942173 252.68280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -02942174 252.68283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02942175 252.68283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -02942176 252.68286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02942177 252.68286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -02942178 252.68287659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02942179 252.68287659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -02942180 252.68290710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02942181 252.68290710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -02942182 252.68293762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02942183 252.68293762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -02942184 252.68295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02942185 252.68295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -02942186 252.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02942187 252.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -02942188 252.68301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02942189 252.68301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -02942190 252.68302917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02942191 252.68305969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -02942192 252.68305969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02942193 252.68309021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -02942194 252.68310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02942195 252.68310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -02942196 252.68313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02942197 252.68313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -02942198 252.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02942199 252.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -02942200 252.68318176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02942201 252.68318176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -02942202 252.68321228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02942203 252.68321228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -02942204 252.68324280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02942205 252.68324280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -02942206 252.68325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02942207 252.68325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -02942208 252.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02942209 252.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -02942210 252.68331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02942211 252.68331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -02942212 252.68333435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02942213 252.68336487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -02942214 252.68339539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02942215 252.68339539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -02942216 252.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02942217 252.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -02942218 252.68344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02942219 252.68344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -02942220 252.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02942221 252.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -02942222 252.68348694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02942223 252.68348694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -02942224 252.68351746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02942225 252.68351746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -02942226 252.68354797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02942227 252.68354797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -02942228 252.68357849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02942229 252.68357849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -02942230 252.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02942231 252.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -02942232 252.68362427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02942233 252.68362427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -02942234 252.68367004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02942235 252.68367004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -02942236 252.68370056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02942237 252.68370056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -02942238 252.68373108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02942239 252.68373108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -02942240 252.68374634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02942241 252.68374634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -02942242 252.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02942243 252.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -02942244 252.68380737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02942245 252.68380737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -02942246 252.68382263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02942247 252.68382263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -02942248 252.68385315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02942249 252.68385315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -02942250 252.68388367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02942251 252.68388367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -02942252 252.68389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02942253 252.68392944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -02942254 252.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02942255 252.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -02942256 252.68397522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02942257 252.68397522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -02942258 252.68400574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02942259 252.68400574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -02942260 252.68403625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02942261 252.68403625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -02942262 252.68405151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02942263 252.68405151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -02942264 252.68408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02942265 252.68408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -02942266 252.68411255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02942267 252.68411255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -02942268 252.68412781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02942269 252.68412781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -02942270 252.68415833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02942271 252.68415833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -02942272 252.68418884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02942273 252.68418884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -02942274 252.68420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02942275 252.68423462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -02942276 252.68426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02942277 252.68426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -02942278 252.68428040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02942279 252.68428040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -02942280 252.68431091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02942281 252.68431091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -02942282 252.68434143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02942283 252.68434143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -02942284 252.68437195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02942285 252.68437195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -02942286 252.68438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02942287 252.68438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -02942288 252.68441772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02942289 252.68441772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -02942290 252.68444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02942291 252.68444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -02942292 252.68446350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02942293 252.68446350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -02942294 252.68449402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02942295 252.68449402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -02942296 252.68452454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02942297 252.68453979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -02942298 252.68457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02942299 252.68457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -02942300 252.68460083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02942301 252.68460083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -02942302 252.68461609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02942303 252.68461609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -02942304 252.68464661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02942305 252.68464661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -02942306 252.68467712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02942307 252.68467712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -02942308 252.68469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02942309 252.68469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -02942310 252.68472290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02942311 252.68472290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -02942312 252.68476868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02942313 252.68476868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -02942314 252.68479919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02942315 252.68482971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -02942316 252.68484497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02942317 252.68484497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -02942318 252.68487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02942319 252.68487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -02942320 252.68490601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02942321 252.68490601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -02942322 252.68492126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02942323 252.68492126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -02942324 252.68495178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02942325 252.68495178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -02942326 252.68498230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02942327 252.68498230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -02942328 252.68499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02942329 252.68499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -02942330 252.68502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02942331 252.68502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -02942332 252.68505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02942333 252.68505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -02942334 252.68508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02942335 252.68508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -02942336 252.68510437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02942337 252.68513489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -02942338 252.68516541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02942339 252.68516541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -02942340 252.68518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02942341 252.68518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -02942342 252.68521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02942343 252.68521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -02942344 252.68524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02942345 252.68524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -02942346 252.68525696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02942347 252.68525696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -02942348 252.68528748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02942349 252.68528748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -02942350 252.68531799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02942351 252.68531799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -02942352 252.68533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02942353 252.68533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -02942354 252.68536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02942355 252.68536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -02942356 252.68539429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02942357 252.68539429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -02942358 252.68540955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02942359 252.68544006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -02942360 252.68547058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02942361 252.68547058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -02942362 252.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02942363 252.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -02942364 252.68551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02942365 252.68551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -02942366 252.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02942367 252.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -02942368 252.68556213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02942369 252.68556213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -02942370 252.68559265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02942371 252.68559265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -02942372 252.68562317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02942373 252.68562317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -02942374 252.68563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02942375 252.68563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -02942376 252.68566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02942377 252.68566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -02942378 252.68569946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02942379 252.68569946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -02942380 252.68574524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02942381 252.68574524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -02942382 252.68577576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02942383 252.68577576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -02942384 252.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02942385 252.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -02942386 252.68582153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02942387 252.68582153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -02942388 252.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02942389 252.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -02942390 252.68588257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02942391 252.68588257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -02942392 252.68589783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02942393 252.68589783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -02942394 252.68592834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02942395 252.68592834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -02942396 252.68595886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02942397 252.68595886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -02942398 252.68597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02942399 252.68597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -02942400 252.68600464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02942401 252.68603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -02942402 252.68605042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02942403 252.68605042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -02942404 252.68608093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02942405 252.68608093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -02942406 252.68611145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02942407 252.68611145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -02942408 252.68612671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02942409 252.68612671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -02942410 252.68615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02942411 252.68615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -02942412 252.68618774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02942413 252.68618774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -02942414 252.68620300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02942415 252.68620300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -02942416 252.68623352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02942417 252.68623352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -02942418 252.68626404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02942419 252.68626404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -02942420 252.68627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02942421 252.68627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -02942422 252.68630981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02942423 252.68634033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -02942424 252.68635559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02942425 252.68635559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -02942426 252.68638611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02942427 252.68638611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -02942428 252.68641663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02942429 252.68641663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -02942430 252.68643188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02942431 252.68643188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -02942432 252.68646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02942433 252.68646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -02942434 252.68649292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02942435 252.68649292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -02942436 252.68650818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02942437 252.68650818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -02942438 252.68653870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02942439 252.68653870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -02942440 252.68656921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02942441 252.68656921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -02942442 252.68658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02942443 252.68658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -02942444 252.68661499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02942445 252.68664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -02942446 252.68667603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02942447 252.68667603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -02942448 252.68669128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02942449 252.68669128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -02942450 252.68672180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02942451 252.68672180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -02942452 252.68675232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02942453 252.68675232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -02942454 252.68676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02942455 252.68676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -02942456 252.68679810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02942457 252.68679810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -02942458 252.68682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02942459 252.68682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -02942460 252.68684387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02942461 252.68684387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -02942462 252.68687439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02942463 252.68687439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -02942464 252.68690491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02942465 252.68690491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -02942466 252.68692017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02942467 252.68695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -02942468 252.68698120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02942469 252.68698120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -02942470 252.68699646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02942471 252.68699646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -02942472 252.68702698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02942473 252.68702698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -02942474 252.68705750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02942475 252.68705750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -02942476 252.68707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02942477 252.68707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -02942478 252.68710327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02942479 252.68710327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -02942480 252.68713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02942481 252.68713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -02942482 252.68714905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02942483 252.68714905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -02942484 252.68717957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02942485 252.68717957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -02942486 252.68721008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02942487 252.68721008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -02942488 252.68722534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02942489 252.68725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -02942490 252.68728638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02942491 252.68728638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -02942492 252.68730164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02942493 252.68730164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -02942494 252.68733215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02942495 252.68733215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -02942496 252.68736267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02942497 252.68736267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -02942498 252.68739319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02942499 252.68739319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -02942500 252.68740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02942501 252.68740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -02942502 252.68743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02942503 252.68743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -02942504 252.68746948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02942505 252.68746948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -02942506 252.68748474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02942507 252.68748474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -02942508 252.68751526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02942509 252.68751526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -02942510 252.68754578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02942511 252.68756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -02942512 252.68759155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02942513 252.68759155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -02942514 252.68762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02942515 252.68762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -02942516 252.68763733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02942517 252.68763733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -02942518 252.68766785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02942519 252.68766785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -02942520 252.68769836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02942521 252.68769836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -02942522 252.68771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02942523 252.68771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -02942524 252.68774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02942525 252.68774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -02942526 252.68777466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02942527 252.68777466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -02942528 252.68778992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02942529 252.68778992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -02942530 252.68782043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02942531 252.68782043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -02942532 252.68785095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02942533 252.68786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -02942534 252.68789673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02942535 252.68789673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -02942536 252.68792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02942537 252.68792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -02942538 252.68794250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02942539 252.68794250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -02942540 252.68797302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02942541 252.68797302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -02942542 252.68800354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02942543 252.68800354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -02942544 252.68801880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02942545 252.68801880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -02942546 252.68804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02942547 252.68804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -02942548 252.68807983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02942549 252.68807983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -02942550 252.68809509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02942551 252.68809509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -02942552 252.68812561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02942553 252.68812561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -02942554 252.68815613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02942555 252.68818665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -02942556 252.68820190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02942557 252.68820190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -02942558 252.68823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02942559 252.68823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -02942560 252.68826294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02942561 252.68826294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -02942562 252.68827820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02942563 252.68827820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -02942564 252.68830872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02942565 252.68830872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -02942566 252.68833923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02942567 252.68833923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -02942568 252.68835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02942569 252.68835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -02942570 252.68838501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02942571 252.68838501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -02942572 252.68841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02942573 252.68841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -02942574 252.68843079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02942575 252.68846130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -02942576 252.68849182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02942577 252.68849182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -02942578 252.68850708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02942579 252.68850708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -02942580 252.68853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02942581 252.68853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -02942582 252.68856812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02942583 252.68856812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -02942584 252.68858337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02942585 252.68858337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -02942586 252.68861389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02942587 252.68861389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -02942588 252.68864441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02942589 252.68864441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -02942590 252.68865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02942591 252.68865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -02942592 252.68869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02942593 252.68869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -02942594 252.68872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02942595 252.68872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -02942596 252.68873596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02942597 252.68876648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -02942598 252.68879700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02942599 252.68879700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -02942600 252.68881226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02942601 252.68881226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -02942602 252.68884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02942603 252.68884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -02942604 252.68887329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02942605 252.68887329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -02942606 252.68888855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02942607 252.68888855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -02942608 252.68891907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02942609 252.68891907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -02942610 252.68894958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02942611 252.68894958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -02942612 252.68898010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02942613 252.68898010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -02942614 252.68899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02942615 252.68899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -02942616 252.68902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02942617 252.68902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -02942618 252.68905640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02942619 252.68907166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -02942620 252.68910217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02942621 252.68910217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -02942622 252.68913269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02942623 252.68913269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -02942624 252.68914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02942625 252.68914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -02942626 252.68917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02942627 252.68917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -02942628 252.68920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02942629 252.68920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -02942630 252.68922424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02942631 252.68922424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -02942632 252.68925476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02942633 252.68925476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -02942634 252.68928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02942635 252.68928528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -02942636 252.68930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02942637 252.68930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -02942638 252.68933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02942639 252.68933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -02942640 252.68936157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02942641 252.68937683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -02942642 252.68940735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02942643 252.68940735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -02942644 252.68943787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02942645 252.68943787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -02942646 252.68945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02942647 252.68945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -02942648 252.68948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02942649 252.68948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -02942650 252.68951416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02942651 252.68951416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -02942652 252.68952942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02942653 252.68952942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -02942654 252.68955994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02942655 252.68955994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -02942656 252.68959045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02942657 252.68959045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -02942658 252.68960571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02942659 252.68963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -02942660 252.68966675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02942661 252.68966675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -02942662 252.68968201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02942663 252.68968201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -02942664 252.68971252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02942665 252.68971252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -02942666 252.68974304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02942667 252.68974304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -02942668 252.68977356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02942669 252.68977356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -02942670 252.68978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02942671 252.68978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -02942672 252.68981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02942673 252.68981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -02942674 252.68984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02942675 252.68984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -02942676 252.68986511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02942677 252.68986511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -02942678 252.68989563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02942679 252.68992615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -02942680 252.68994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02942681 252.68994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -02942682 252.68997192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02942683 252.68997192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -02942684 252.69000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02942685 252.69000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -02942686 252.69001770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02942687 252.69001770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -02942688 252.69004822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02942689 252.69004822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -02942690 252.69007874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02942691 252.69007874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -02942692 252.69009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02942693 252.69009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -02942694 252.69012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02942695 252.69012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -02942696 252.69015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02942697 252.69017029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -02942698 252.69020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02942699 252.69020081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -02942700 252.69023132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02942701 252.69023132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -02942702 252.69024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02942703 252.69024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -02942704 252.69027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02942705 252.69027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -02942706 252.69030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02942707 252.69030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -02942708 252.69032288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02942709 252.69032288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -02942710 252.69035339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02942711 252.69035339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -02942712 252.69038391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02942713 252.69038391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -02942714 252.69042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02942715 252.69042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -02942716 252.69046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02942717 252.69046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -02942718 252.69049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02942719 252.69049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -02942720 252.69050598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02942721 252.69050598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -02942722 252.69053650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02942723 252.69053650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -02942724 252.69056702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02942725 252.69056702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -02942726 252.69058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02942727 252.69058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -02942728 252.69061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02942729 252.69061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -02942730 252.69064331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02942731 252.69064331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -02942732 252.69065857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02942733 252.69068909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -02942734 252.69071960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02942735 252.69071960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -02942736 252.69073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02942737 252.69073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -02942738 252.69076538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02942739 252.69076538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -02942740 252.69079590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02942741 252.69079590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -02942742 252.69081116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02942743 252.69081116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -02942744 252.69084167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02942745 252.69084167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -02942746 252.69087219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02942747 252.69087219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -02942748 252.69088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02942749 252.69088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -02942750 252.69091797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02942751 252.69094849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -02942752 252.69096375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02942753 252.69096375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -02942754 252.69099426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02942755 252.69099426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -02942756 252.69102478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02942757 252.69102478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -02942758 252.69104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02942759 252.69104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -02942760 252.69107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02942761 252.69107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -02942762 252.69110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02942763 252.69110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -02942764 252.69111633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02942765 252.69111633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -02942766 252.69114685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02942767 252.69114685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -02942768 252.69117737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02942769 252.69117737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -02942770 252.69119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02942771 252.69119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -02942772 252.69122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02942773 252.69125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -02942774 252.69128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02942775 252.69128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -02942776 252.69129944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02942777 252.69129944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -02942778 252.69132996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02942779 252.69132996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -02942780 252.69136047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02942781 252.69136047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -02942782 252.69137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02942783 252.69137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -02942784 252.69140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02942785 252.69140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -02942786 252.69143677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02942787 252.69143677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -02942788 252.69145203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02942789 252.69145203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -02942790 252.69148254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02942791 252.69151306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -02942792 252.69152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02942793 252.69152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -02942794 252.69155884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02942795 252.69155884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -02942796 252.69158936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02942797 252.69158936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -02942798 252.69160461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02942799 252.69160461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -02942800 252.69163513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02942801 252.69163513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -02942802 252.69166565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02942803 252.69166565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -02942804 252.69168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02942805 252.69168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -02942806 252.69171143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02942807 252.69171143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -02942808 252.69174194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02942809 252.69174194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -02942810 252.69175720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02942811 252.69178772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -02942812 252.69181824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02942813 252.69181824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -02942814 252.69183350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02942815 252.69183350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -02942816 252.69186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02942817 252.69186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -02942818 252.69189453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02942819 252.69189453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -02942820 252.69190979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02942821 252.69190979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -02942822 252.69194031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02942823 252.69194031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -02942824 252.69197083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02942825 252.69197083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -02942826 252.69198608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02942827 252.69198608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -02942828 252.69201660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02942829 252.69201660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -02942830 252.69204712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02942831 252.69204712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -02942832 252.69207764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02942833 252.69209290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -02942834 252.69212341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02942835 252.69212341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -02942836 252.69215393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02942837 252.69215393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -02942838 252.69216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02942839 252.69216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -02942840 252.69219971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02942841 252.69219971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -02942842 252.69223022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02942843 252.69223022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -02942844 252.69224548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02942845 252.69224548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -02942846 252.69227600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02942847 252.69227600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -02942848 252.69230652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02942849 252.69230652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -02942850 252.69232178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02942851 252.69232178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -02942852 252.69235229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02942853 252.69238281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -02942854 252.69239807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02942855 252.69239807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -02942856 252.69242859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02942857 252.69242859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -02942858 252.69245911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02942859 252.69245911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -02942860 252.69247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02942861 252.69247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -02942862 252.69250488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02942863 252.69250488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -02942864 252.69253540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02942865 252.69253540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -02942866 252.69255066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02942867 252.69255066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -02942868 252.69258118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02942869 252.69258118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -02942870 252.69261169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02942871 252.69261169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -02942872 252.69262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02942873 252.69265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -02942874 252.69268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02942875 252.69268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -02942876 252.69270325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02942877 252.69270325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -02942878 252.69273376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02942879 252.69273376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -02942880 252.69276428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02942881 252.69276428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -02942882 252.69279480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02942883 252.69279480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -02942884 252.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02942885 252.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -02942886 252.69284058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02942887 252.69284058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -02942888 252.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02942889 252.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -02942890 252.69288635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02942891 252.69288635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -02942892 252.69291687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02942893 252.69291687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -02945266 252.72634888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -02945267 252.72634888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -02945268 252.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -02945269 252.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -02945270 252.72639465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -02945271 252.72642517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -02945272 252.72645569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -02945273 252.72645569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -02945274 252.72647095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -02945275 252.72647095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -02945276 252.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -02945277 252.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -02945278 252.72653198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -02945279 252.72653198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -02945280 252.72654724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -02945281 252.72654724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -02945282 252.72657776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -02945283 252.72657776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -02945284 252.72660828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -02945285 252.72660828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -02945286 252.72662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -02945287 252.72662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -02945288 252.72665405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -02945289 252.72665405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -02945290 252.72668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -02945291 252.72669983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -02945292 252.72673035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -02945293 252.72673035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -02945294 252.72676086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -02945295 252.72676086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -02945296 252.72679138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -02945297 252.72679138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -02945298 252.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -02945299 252.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -02945300 252.72683716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -02945301 252.72683716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -02945302 252.72686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -02945303 252.72686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -02945304 252.72688293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -02945305 252.72688293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -02945306 252.72691345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -02945307 252.72691345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -02945308 252.72694397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -02945309 252.72694397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -02959596 252.92791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f8 -02959597 252.92791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x248f8 -02959598 252.92794800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24908 -02959599 252.92794800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24908 -02959600 252.92797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24918 -02959601 252.92797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24918 -02959602 252.92799377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24928 -02959603 252.92799377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24928 -02959604 252.92805481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24938 -02959605 252.92805481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24938 -02959606 252.92807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24948 -02959607 252.92807007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24948 -02959608 252.92810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24958 -02959609 252.92810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24958 -02959610 252.92813110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24968 -02959611 252.92813110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24968 -02959612 252.92814636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24978 -02959613 252.92814636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24978 -02959614 252.92817688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24988 -02959615 252.92817688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24988 -02959616 252.92820740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24998 -02959617 252.92820740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24998 -02959618 252.92823792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a8 -02959619 252.92823792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249a8 -02959620 252.92825317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b8 -02959621 252.92825317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249b8 -02959622 252.92828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c8 -02959623 252.92828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249c8 -02959624 252.92831421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d8 -02959625 252.92832947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249d8 -02959626 252.92835999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e8 -02959627 252.92835999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249e8 -02959628 252.92839050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f8 -02959629 252.92839050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x249f8 -02959630 252.92840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a08 -02959631 252.92840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a08 -02959632 252.92843628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a18 -02959633 252.92843628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a18 -02959634 252.92846680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a28 -02959635 252.92846680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a28 -02959636 252.92848206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a38 -02959637 252.92848206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a38 -02959638 252.92851257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a48 -02959639 252.92851257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a48 -02963794 252.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc28 -02963795 252.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc28 -02963796 252.98629761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc38 -02963797 252.98629761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc38 -02963798 252.98631287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc48 -02963799 252.98631287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc48 -02963800 252.98634338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -02963801 252.98637390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -02963802 252.98637390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -02963803 252.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -02963804 252.98641968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -02963805 252.98641968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -02963806 252.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -02963807 252.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -02963808 252.98646545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -02963809 252.98646545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -02963810 252.98649597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -02963811 252.98649597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -02963812 252.98652649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -02963813 252.98652649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -02963814 252.98654175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -02963815 252.98654175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -02963816 252.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -02963817 252.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -02963818 252.98660278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -02963819 252.98660278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -02963820 252.98661804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -02963821 252.98661804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -02963822 252.98664856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -02963823 252.98664856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -02963824 252.98667908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -02963825 252.98669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -02963826 252.98672485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -02963827 252.98672485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -02963828 252.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -02963829 252.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -02963830 252.98677063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -02963831 252.98677063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -02963832 252.98680115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -02963833 252.98680115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -02963834 252.98683167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -02963835 252.98683167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -02963836 252.98684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -02963837 252.98684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -02975366 253.07591248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39298 -02975367 253.07591248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -02975368 253.07591248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39298 -02975369 253.07591248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -02975370 253.07594299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a8 -02975371 253.07594299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -02975372 253.07594299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392a8 -02975373 253.07594299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -02975374 253.07597351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b8 -02975375 253.07597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -02975376 253.07597351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392b8 -02975377 253.07597351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -02975378 253.07598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c8 -02975379 253.07598877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -02975380 253.07598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392c8 -02975381 253.07598877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -02975382 253.07601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d8 -02975383 253.07601929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -02975384 253.07601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392d8 -02975385 253.07601929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -02975386 253.07604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e8 -02975387 253.07604980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -02975388 253.07604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392e8 -02975389 253.07604980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -02975390 253.07606506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f8 -02975391 253.07606506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -02975392 253.07609558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x392f8 -02975393 253.07609558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -02975394 253.07612610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39308 -02975395 253.07612610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -02975396 253.07612610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39308 -02975397 253.07612610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -02975398 253.07614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39318 -02975399 253.07614136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -02975400 253.07614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39318 -02975401 253.07614136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -02975402 253.07617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39328 -02975403 253.07617188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -02975404 253.07617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39328 -02975405 253.07617188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -02975406 253.07620239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39338 -02975407 253.07620239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -02975408 253.07620239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39338 -02975409 253.07620239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -02986571 253.15507507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -02986572 253.15507507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -02986573 253.15507507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -02986574 253.15507507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -02986575 253.15509033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a8 -02986576 253.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -02986577 253.15509033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a8 -02986578 253.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -02986579 253.15512085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b8 -02986580 253.15512085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -02986581 253.15512085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b8 -02986582 253.15512085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -02986583 253.15515137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c8 -02986584 253.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -02986585 253.15515137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c8 -02986586 253.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -02986587 253.15518188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d8 -02986588 253.15518188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -02986589 253.15518188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d8 -02986590 253.15518188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -02986591 253.15519714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e8 -02986592 253.15519714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -02986593 253.15519714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e8 -02986594 253.15519714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -02986595 253.15522766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f8 -02986596 253.15522766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -02986597 253.15522766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f8 -02986598 253.15522766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -02986599 253.15525818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16308 -02986600 253.15525818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -02986601 253.15525818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16308 -02986602 253.15525818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -02986603 253.15527344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16318 -02986604 253.15527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -02986605 253.15527344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16318 -02986606 253.15530396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -02986607 253.15533447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16328 -02986608 253.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -02986609 253.15533447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16328 -02986610 253.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -02986611 253.15534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16338 -02986612 253.15534973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -02986613 253.15534973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16338 -02986614 253.15534973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -03012512 253.42399597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a188 -03012513 253.42405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -03012514 253.42405701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -03012515 253.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -03012516 253.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -03012517 253.42413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -03012518 253.42413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -03012519 253.42414856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -03012520 253.42417908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -03012521 253.42420959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -03012522 253.42420959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -03012523 253.42422485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -03012524 253.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -03012525 253.42428589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -03012526 253.42428589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -03012527 253.42430115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -03012528 253.42433167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -03012529 253.42436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -03012530 253.42436218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -03012531 253.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -03012532 253.42440796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -03012533 253.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -03012534 253.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -03012535 253.42448425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -03012536 253.42448425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -03012537 253.42451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -03012538 253.42451477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -03012539 253.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -03012540 253.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -03012541 253.42459106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -03012542 253.42459106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -03012543 253.42463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -03012544 253.42463684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -03012545 253.42466736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -03012546 253.42466736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -03012547 253.42471313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -03012548 253.42471313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -03012549 253.42474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -03012550 253.42474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -03012551 253.42478943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -03012552 253.42478943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -03012553 253.42481995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -03012554 253.42481995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -03012555 253.42485046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -03020851 253.55204773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a628 -03020852 253.55204773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a628 -03020853 253.55207825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a638 -03020854 253.55207825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a638 -03020855 253.55210876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a648 -03020856 253.55210876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a648 -03020857 253.55212402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a658 -03020858 253.55215454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a658 -03020859 253.55218506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a668 -03020860 253.55218506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a668 -03020861 253.55220032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a678 -03020862 253.55220032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a678 -03020863 253.55223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a688 -03020864 253.55223083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a688 -03020865 253.55226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a698 -03020866 253.55226135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a698 -03020867 253.55227661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a8 -03020868 253.55227661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a8 -03020869 253.55230713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b8 -03020870 253.55230713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b8 -03020871 253.55233765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c8 -03020872 253.55233765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c8 -03020873 253.55235291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d8 -03020874 253.55235291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d8 -03020875 253.55238342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -03020876 253.55238342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -03020877 253.55241394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -03020878 253.55241394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -03020879 253.55242920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -03020880 253.55245972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -03020881 253.55249023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -03020882 253.55249023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -03020883 253.55250549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -03020884 253.55250549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -03020885 253.55253601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -03020886 253.55253601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -03020887 253.55256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -03020888 253.55256653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -03020889 253.55258179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -03020890 253.55258179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -03020891 253.55261230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -03020892 253.55261230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -03020893 253.55264282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -03020894 253.55264282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -03025173 253.72439575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03025174 254.14909363 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025175 254.14921570 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025176 254.14921570 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025177 254.14924622 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03025178 254.14938354 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025179 254.14938354 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025180 254.14942932 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025181 254.14945984 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025182 255.13494873 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03025183 255.15414429 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025184 255.15414429 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025185 256.65548706 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025186 256.65554810 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025187 256.65554810 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025188 256.65557861 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03025189 256.65570068 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025190 256.65570068 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025191 256.65573120 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03025192 256.65576172 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03025193 257.15551758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03025194 257.17495728 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025195 257.17495728 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03025196 258.26284790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03025197 258.26284790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03025198 258.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03025199 258.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03025200 258.26290894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03025201 258.26290894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03025202 258.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03025203 258.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03025204 258.26296997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03025205 258.26296997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03025206 258.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03025207 258.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03025208 258.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03025209 258.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03025210 258.26303101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03025211 258.26303101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03025212 258.26306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03025213 258.26306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03025214 258.26309204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03025215 258.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03025216 258.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03025217 258.26315308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03025218 258.26315308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03025219 258.26315308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03025220 258.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03025221 258.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03025222 258.26321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03025223 258.26321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03025224 258.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03025225 258.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03025226 258.26327515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03025227 258.26327515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03025228 258.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03025229 258.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03025230 258.26333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03025231 258.26333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03025232 258.26333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03025233 258.26333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03025234 258.26336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03025235 258.26336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03025236 258.26339722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03025237 258.26339722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03025238 258.26342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03025239 258.26342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03025240 258.26345825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03025241 258.26345825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03025242 258.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03025243 258.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03025244 258.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03025245 258.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03025246 258.26351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03025247 258.26351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03025248 258.26354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03025249 258.26354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03025250 258.26358032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03025251 258.26358032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03025252 258.26361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03025253 258.26361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03025254 258.26364136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03025255 258.26364136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03025256 258.26364136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03025257 258.26367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03025258 258.26370239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03025259 258.26370239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03025260 258.26373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03025261 258.26373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03025262 258.26376343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03025263 258.26376343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03025264 258.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03025265 258.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03025266 258.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03025267 258.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03025268 258.26382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03025269 258.26382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03025270 258.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03025271 258.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03025272 258.26388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03025273 258.26388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03025274 258.26391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03025275 258.26391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03025276 258.26394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03025277 258.26394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03025278 258.26394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03025279 258.26397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03025280 258.26400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03025281 258.26400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03025282 258.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03025283 258.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03025284 258.26406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03025285 258.26406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03025286 258.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03025287 258.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03025288 258.26412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03025289 258.26412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03025290 258.26412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03025291 258.26412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03025292 258.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03025293 258.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03025294 258.26419067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03025295 258.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03025296 258.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03025297 258.26425171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03025298 258.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03025299 258.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03025300 258.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03025301 258.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03025302 258.26431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03025303 258.26431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03025304 258.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03025305 258.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03025306 258.26437378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03025307 258.26437378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03025308 258.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03025309 258.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03025310 258.26443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03025311 258.26443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03025312 258.26443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03025313 258.26443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03025314 258.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03025315 258.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03025316 258.26449585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03025317 258.26449585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03025318 258.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03025319 258.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03025320 258.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03025321 258.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03025322 258.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03025323 258.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03025324 258.26461792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03025325 258.26461792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03025326 258.26464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03025327 258.26464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03025328 258.26467896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03025329 258.26467896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03025330 258.26470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03025331 258.26470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03025332 258.26473999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03025333 258.26473999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03025334 258.26473999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03025335 258.26480103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03025336 258.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03025337 258.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03025338 258.26486206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03025339 258.26486206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03025340 258.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03025341 258.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03025342 258.26492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03025343 258.26492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03025344 258.26492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03025345 258.26492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03025346 258.26495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03025347 258.26495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03025348 258.26498413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03025349 258.26498413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03025350 258.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03025351 258.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03025352 258.26504517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03025353 258.26504517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03025354 258.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03025355 258.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03025356 258.26510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03025357 258.26510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03025358 258.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03025359 258.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03025360 258.26516724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03025361 258.26516724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03025362 258.26519775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03025363 258.26519775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03025364 258.26522827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03025365 258.26522827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03025366 258.26522827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03025367 258.26522827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03025368 258.26525879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03025369 258.26525879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03025370 258.26528931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03025371 258.26528931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03025372 258.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03025373 258.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03025374 258.26535034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03025375 258.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03025376 258.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03025377 258.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03025378 258.26541138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03025379 258.26541138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03025380 258.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03025381 258.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03025382 258.26547241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03025383 258.26547241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03025384 258.26550293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03025385 258.26550293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03025386 258.26553345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03025387 258.26553345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03025388 258.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03025389 258.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03025390 258.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03025391 258.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03025392 258.26559448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03025393 258.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03025394 258.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03025395 258.26565552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03025396 258.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03025397 258.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03025398 258.26571655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03025399 258.26571655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03025400 258.26571655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03025401 258.26571655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03025402 258.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03025403 258.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03025404 258.26577759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03025405 258.26577759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03025406 258.26580811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03025407 258.26580811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03025408 258.26583862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03025409 258.26583862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03025410 258.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03025411 258.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03025412 258.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03025413 258.26589966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03025414 258.26593018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03025415 258.26593018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03025416 258.26596069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03025417 258.26596069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03025418 258.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03025419 258.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03025420 258.26602173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03025421 258.26602173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03025422 258.26602173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03025423 258.26602173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03025424 258.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03025425 258.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03025426 258.26608276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03025427 258.26608276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03025428 258.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03025429 258.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03025430 258.26614380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03025431 258.26614380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03025432 258.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03025433 258.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03025434 258.26620483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03025435 258.26620483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03025436 258.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03025437 258.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03025438 258.26626587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03025439 258.26626587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03025440 258.26629639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03025441 258.26629639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03025442 258.26632690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03025443 258.26632690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03025444 258.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03025445 258.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03025446 258.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03025447 258.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03025448 258.26638794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03025449 258.26638794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03025450 258.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03025451 258.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03025452 258.26644897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03025453 258.26644897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03025454 258.26647949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03025455 258.26651001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03025456 258.26651001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03025457 258.26651001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03025458 258.26654053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03025459 258.26654053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03025460 258.26657104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03025461 258.26657104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03025462 258.26660156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03025463 258.26660156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03025464 258.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03025465 258.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03025466 258.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03025467 258.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03025468 258.26669312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03025469 258.26669312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03025470 258.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03025471 258.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03025472 258.26675415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03025473 258.26675415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03025474 258.26678467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03025475 258.26681519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03025476 258.26681519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03025477 258.26681519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03025478 258.26684570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03025479 258.26684570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03025480 258.26687622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03025481 258.26687622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03025482 258.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03025483 258.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03025484 258.26693726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03025485 258.26693726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03025486 258.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03025487 258.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03025488 258.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03025489 258.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03025490 258.26699829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03025491 258.26699829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03025492 258.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03025493 258.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03025494 258.26705933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03025495 258.26705933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03025496 258.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03025497 258.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03025498 258.26712036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03025499 258.26712036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03025500 258.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03025501 258.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03025502 258.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03025503 258.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03025504 258.26718140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03025505 258.26721191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03025506 258.26721191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03025507 258.26724243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03025508 258.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03025509 258.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03025510 258.26730347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03025511 258.26730347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03025512 258.26730347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03025513 258.26730347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03025514 258.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03025515 258.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03025516 258.26736450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03025517 258.26736450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03025518 258.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03025519 258.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03025520 258.26742554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03025521 258.26742554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03025522 258.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03025523 258.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03025524 258.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03025525 258.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03025526 258.26748657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03025527 258.26748657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03025528 258.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03025529 258.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03025530 258.26754761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03025531 258.26754761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03025532 258.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03025533 258.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03025534 258.26760864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03025535 258.26760864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03025536 258.26760864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03025537 258.26760864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03025538 258.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03025539 258.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03025540 258.26766968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03025541 258.26766968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03025542 258.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03025543 258.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03025544 258.26773071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03025545 258.26773071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03025546 258.26776123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03025547 258.26776123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03025548 258.26776123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03025549 258.26779175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03025550 258.26779175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03025551 258.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03025552 258.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03025553 258.26785278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03025554 258.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03025555 258.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03025556 258.26791382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03025557 258.26791382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03025558 258.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03025559 258.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03025560 258.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03025561 258.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03025562 258.26797485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03025563 258.26797485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03025564 258.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03025565 258.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03025566 258.26803589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03025567 258.26803589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03025568 258.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03025569 258.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03025570 258.26809692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03025571 258.26809692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03025572 258.26809692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03025573 258.26809692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03025574 258.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03025575 258.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03025576 258.26815796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03025577 258.26815796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03025578 258.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03025579 258.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03025580 258.26821899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03025581 258.26821899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03025582 258.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03025583 258.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03025584 258.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03025585 258.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03025586 258.26828003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03025587 258.26828003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03025588 258.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03025589 258.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03025590 258.26834106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03025591 258.26834106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03025592 258.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03025593 258.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03025594 258.26840210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03025595 258.26840210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03025596 258.26840210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03025597 258.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03025598 258.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03025599 258.26846313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03025600 258.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03025601 258.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03025602 258.26852417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03025603 258.26852417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03025604 258.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03025605 258.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03025606 258.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03025607 258.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03025608 258.26858521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03025609 258.26858521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03025610 258.26861572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03025611 258.26861572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03025612 258.26864624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03025613 258.26864624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03025614 258.26867676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03025615 258.26867676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03025616 258.26870728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03025617 258.26870728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03025618 258.26873779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03025619 258.26873779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03025620 258.26873779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03025621 258.26873779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03025622 258.26876831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03025623 258.26876831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03025624 258.26879883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03025625 258.26882935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03025626 258.26885986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03025627 258.26885986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03025628 258.26889038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03025629 258.26889038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03025630 258.26889038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03025631 258.26889038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03025632 258.26892090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03025633 258.26892090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03025634 258.26895142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03025635 258.26895142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03025636 258.26898193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03025637 258.26898193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03025638 258.26901245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03025639 258.26901245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03025640 258.26904297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03025641 258.26904297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03025642 258.26904297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03025643 258.26904297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03025644 258.26910400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03025645 258.26910400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03025646 258.26913452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03025647 258.26913452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03025648 258.26916504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03025649 258.26916504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03025650 258.26919556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03025651 258.26919556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03025652 258.26919556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03025653 258.26919556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03025654 258.26922607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03025655 258.26922607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03025656 258.26925659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03025657 258.26925659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03025658 258.26928711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03025659 258.26928711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03025660 258.26931763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03025661 258.26931763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03025662 258.26934814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03025663 258.26934814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03025664 258.26937866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03025665 258.26937866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03025666 258.26940918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03025667 258.26940918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03025668 258.26943970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03025669 258.26943970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03025670 258.26947021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03025671 258.26947021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03025672 258.26950073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03025673 258.26950073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03025674 258.26953125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03025675 258.26953125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03025676 258.26953125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03025677 258.26956177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03025678 258.26956177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03025679 258.26959229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03025680 258.26962280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03025681 258.26962280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03025682 258.26965332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03025683 258.26965332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03025684 258.26968384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03025685 258.26968384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03025686 258.26968384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03025687 258.26968384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03025688 258.26971436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03025689 258.26971436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03025690 258.26974487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03025691 258.26974487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03025692 258.26977539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03025693 258.26977539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03025694 258.26980591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03025695 258.26980591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03025696 258.26983643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03025697 258.26983643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03025698 258.26983643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03025699 258.26983643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03025700 258.26986694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03025701 258.26986694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03025702 258.26989746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03025703 258.26989746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03025704 258.26992798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03025705 258.26995850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03025706 258.26995850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03025707 258.26998901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03025708 258.26998901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03025709 258.26998901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03025710 258.27001953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03025711 258.27001953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03025712 258.27005005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03025713 258.27005005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03025714 258.27008057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03025715 258.27008057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03025716 258.27011108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03025717 258.27011108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03025718 258.27014160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03025719 258.27014160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03025720 258.27014160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03025721 258.27014160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03025722 258.27017212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03025723 258.27017212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03025724 258.27020264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03025725 258.27020264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03025726 258.27023315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03025727 258.27023315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03025728 258.27026367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03025729 258.27026367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03025730 258.27029419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03025731 258.27029419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03025732 258.27032471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03025733 258.27032471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03025734 258.27032471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03025735 258.27032471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03025736 258.27035522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03025737 258.27035522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03025738 258.27038574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03025739 258.27038574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03025740 258.27041626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03025741 258.27041626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03025742 258.27044678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03025743 258.27044678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03025744 258.27047729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03025745 258.27047729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03025746 258.27047729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03025747 258.27047729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03025748 258.27050781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03025749 258.27053833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03025750 258.27053833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03025751 258.27056885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03025752 258.27059937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03025753 258.27059937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03025754 258.27062988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03025755 258.27062988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03025756 258.27062988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03025757 258.27062988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03025758 258.27066040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03025759 258.27066040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03025760 258.27069092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03025761 258.27069092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03025762 258.27072144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03025763 258.27072144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03025764 258.27075195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03025765 258.27075195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03025766 258.27078247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03025767 258.27078247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03025768 258.27078247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03025769 258.27078247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03025770 258.27081299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03025771 258.27081299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03025772 258.27087402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03025773 258.27087402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03025774 258.27090454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03025775 258.27090454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03025776 258.27093506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03025777 258.27093506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03025778 258.27096558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03025779 258.27096558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03025780 258.27096558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03025781 258.27096558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03025782 258.27099609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03025783 258.27099609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03025784 258.27102661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03025785 258.27102661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03025786 258.27105713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03025787 258.27105713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03025788 258.27108765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03025789 258.27108765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03025790 258.27111816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03025791 258.27111816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03025792 258.27111816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03025793 258.27111816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03025794 258.27114868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03025795 258.27117920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03025796 258.27120972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03025797 258.27120972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03025798 258.27124023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03025799 258.27124023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03025800 258.27127075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03025801 258.27127075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03025802 258.27127075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03025803 258.27127075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03025804 258.27130127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03025805 258.27130127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03025806 258.27133179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03025807 258.27133179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03025808 258.27136230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03025809 258.27136230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03025810 258.27139282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03025811 258.27139282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03025812 258.27142334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03025813 258.27142334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03025814 258.27142334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03025815 258.27142334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03025816 258.27145386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03025817 258.27145386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03025818 258.27148438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03025819 258.27148438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03025820 258.27151489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03025821 258.27151489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03025822 258.27154541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03025823 258.27154541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03025824 258.27157593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03025825 258.27157593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03025826 258.27157593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03025827 258.27160645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03025828 258.27163696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03025829 258.27163696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03025830 258.27166748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03025831 258.27166748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03025832 258.27169800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03025833 258.27169800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03025834 258.27172852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03025835 258.27172852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03025836 258.27175903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03025837 258.27175903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03025838 258.27175903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03025839 258.27175903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03025840 258.27178955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03025841 258.27178955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03025842 258.27182007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03025843 258.27182007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03025844 258.27185059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03025845 258.27185059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03025846 258.27188110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03025847 258.27188110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03025848 258.27191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03025849 258.27191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03025850 258.27191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03025851 258.27191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03025852 258.27194214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03025853 258.27197266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03025854 258.27200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03025855 258.27200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03025856 258.27203369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03025857 258.27203369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03025858 258.27206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03025859 258.27206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03025860 258.27206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03025861 258.27206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03025862 258.27209473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03025863 258.27209473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03025864 258.27212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03025865 258.27212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03025866 258.27215576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03025867 258.27215576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03025868 258.27218628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03025869 258.27218628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03025870 258.27221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03025871 258.27221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03025872 258.27221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03025873 258.27221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03025874 258.27224731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03025875 258.27224731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03025876 258.27227783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03025877 258.27230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03025878 258.27230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03025879 258.27233887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03025880 258.27236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03025881 258.27236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03025882 258.27236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03025883 258.27236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03025884 258.27239990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03025885 258.27239990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03025886 258.27243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03025887 258.27243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03025888 258.27246094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03025889 258.27246094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03025890 258.27249146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03025891 258.27249146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03025892 258.27252197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03025893 258.27252197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03025894 258.27255249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03025895 258.27255249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03025896 258.27255249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03025897 258.27255249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03025898 258.27258301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03025899 258.27258301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03025900 258.27261353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03025901 258.27261353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03025902 258.27264404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03025903 258.27264404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03025904 258.27267456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03025905 258.27267456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03025906 258.27270508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03025907 258.27270508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03025908 258.27273560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03025909 258.27273560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03025910 258.27276611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03025911 258.27276611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03025912 258.27279663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03025913 258.27279663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03025914 258.27282715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03025915 258.27282715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03025916 258.27285767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03025917 258.27285767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03025918 258.27285767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03025919 258.27285767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03025920 258.27291870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03025921 258.27291870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03025922 258.27294922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03025923 258.27294922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03025924 258.27297974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03025925 258.27297974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03025926 258.27301025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03025927 258.27301025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03025928 258.27301025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03025929 258.27304077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03025930 258.27307129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03025931 258.27307129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03025932 258.27310181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03025933 258.27310181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03025934 258.27313232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03025935 258.27313232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03025936 258.27316284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03025937 258.27316284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03025938 258.27316284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03025939 258.27316284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03025940 258.27319336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03025941 258.27319336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03025942 258.27322388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03025943 258.27322388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03025944 258.27325439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03025945 258.27325439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03025946 258.27328491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03025947 258.27328491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03025948 258.27331543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03025949 258.27331543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03025950 258.27334595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03025951 258.27334595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03025952 258.27334595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03025953 258.27334595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03025954 258.27337646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03025955 258.27337646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03025956 258.27343750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03025957 258.27343750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03025958 258.27346802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03025959 258.27346802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03025960 258.27349854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03025961 258.27349854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03025962 258.27349854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03025963 258.27349854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03025964 258.27352905 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03025965 258.27352905 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03025966 258.27355957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03025967 258.27355957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03025968 258.27359009 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03025969 258.27359009 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03025970 258.27362061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03025971 258.27362061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03025972 258.27365112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03025973 258.27365112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03025974 258.27368164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03025975 258.27368164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03025976 258.27371216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03025977 258.27371216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03025978 258.27374268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03025979 258.27374268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03025980 258.27377319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03025981 258.27377319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03025982 258.27380371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03025983 258.27380371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03025984 258.27380371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03025985 258.27380371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03025986 258.27383423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03025987 258.27383423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03025988 258.27386475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03025989 258.27386475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03025990 258.27389526 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03025991 258.27389526 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03025992 258.27392578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03025993 258.27395630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03025994 258.27395630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03025995 258.27395630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03025996 258.27398682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03025997 258.27398682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03025998 258.27401733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03025999 258.27401733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03026000 258.27404785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03026001 258.27404785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03026002 258.27407837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03026003 258.27407837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03026004 258.27410889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03026005 258.27410889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03026006 258.27413940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03026007 258.27413940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03026008 258.27413940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03026009 258.27413940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03026010 258.27416992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03026011 258.27416992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03026012 258.27420044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03026013 258.27420044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03026014 258.27423096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03026015 258.27423096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03026016 258.27426147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03026017 258.27426147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03026018 258.27429199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03026019 258.27429199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03026020 258.27429199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03026021 258.27429199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03026022 258.27432251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03026023 258.27432251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03026024 258.27435303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03026025 258.27435303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03026026 258.27438354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03026027 258.27438354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03026028 258.27441406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03026029 258.27444458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03026030 258.27444458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03026031 258.27444458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03026032 258.27447510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03026033 258.27447510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03026034 258.27450562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03026035 258.27450562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03026036 258.27453613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03026037 258.27453613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03026038 258.27456665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03026039 258.27456665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03026040 258.27459717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03026041 258.27459717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03026042 258.27459717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03026043 258.27459717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03026044 258.27462769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03026045 258.27462769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03026046 258.27465820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03026047 258.27465820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03026048 258.27468872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03026049 258.27468872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03026050 258.27471924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03026051 258.27471924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03026052 258.27474976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03026053 258.27474976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03026054 258.27474976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03026055 258.27474976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03026056 258.27478027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03026057 258.27481079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03026058 258.27484131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03026059 258.27484131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03026060 258.27487183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03026061 258.27487183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03026062 258.27490234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03026063 258.27490234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03026064 258.27493286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03026065 258.27493286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03026066 258.27493286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03026067 258.27493286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03026068 258.27496338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03026069 258.27496338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03026070 258.27499390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03026071 258.27499390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03026072 258.27502441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03026073 258.27502441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03026074 258.27505493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03026075 258.27508545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03026076 258.27508545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03026077 258.27508545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03026078 258.27511597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03026079 258.27511597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03026080 258.27514648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03026081 258.27514648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03026082 258.27517700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03026083 258.27517700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03026084 258.27520752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03026085 258.27520752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03026086 258.27523804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03026087 258.27523804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03026088 258.27523804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03026089 258.27523804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03026090 258.27526855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03026091 258.27526855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03026092 258.27529907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03026093 258.27529907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03026094 258.27532959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03026095 258.27536011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03026096 258.27539063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03026097 258.27539063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03026098 258.27539063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03026099 258.27539063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03026100 258.27542114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03026101 258.27542114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03026102 258.27545166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03026103 258.27545166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03026104 258.27548218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03026105 258.27548218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03026106 258.27551270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03026107 258.27551270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03026108 258.27554321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03026109 258.27554321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03026110 258.27554321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03026111 258.27554321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03026112 258.27557373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03026113 258.27560425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03026114 258.27563477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03026115 258.27563477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03026116 258.27566528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03026117 258.27566528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03026118 258.27569580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03026119 258.27569580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03026120 258.27572632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03026121 258.27572632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03026122 258.27572632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03026123 258.27572632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03026124 258.27575684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03026125 258.27575684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03026126 258.27578735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03026127 258.27578735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03026128 258.27581787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03026129 258.27581787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03026130 258.27584839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03026131 258.27587891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03026132 258.27587891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03026133 258.27587891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03026134 258.27590942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03026135 258.27590942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03026136 258.27593994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03026137 258.27593994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03026138 258.27597046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03026139 258.27597046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03026140 258.27600098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03026141 258.27600098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03026142 258.27603149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03026143 258.27603149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03026144 258.27603149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03026145 258.27603149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03026146 258.27606201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03026147 258.27606201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03026148 258.27609253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03026149 258.27609253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03026150 258.27612305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03026151 258.27612305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03026152 258.27615356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03026153 258.27618408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03026154 258.27618408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03026155 258.27618408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03026156 258.27621460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03026157 258.27621460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03026158 258.27624512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03026159 258.27624512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03026160 258.27627563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03026161 258.27627563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03026162 258.27630615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03026163 258.27630615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03026164 258.27636719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03026165 258.27636719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03026166 258.27636719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03026167 258.27636719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03026168 258.27639771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03026169 258.27639771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03026170 258.27642822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03026171 258.27642822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03026172 258.27645874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03026173 258.27645874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03026174 258.27648926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03026175 258.27651978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03026176 258.27651978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03026177 258.27651978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03026178 258.27655029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03026179 258.27655029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03026180 258.27658081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03026181 258.27658081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03026182 258.27661133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03026183 258.27661133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03026184 258.27664185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03026185 258.27664185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03026186 258.27667236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03026187 258.27667236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03026188 258.27667236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03026189 258.27667236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03026190 258.27670288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03026191 258.27670288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03026192 258.27673340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03026193 258.27676392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03026194 258.27679443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03026195 258.27679443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03026196 258.27682495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03026197 258.27682495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03026198 258.27682495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03026199 258.27682495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03026200 258.27685547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03026201 258.27685547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03026202 258.27688599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03026203 258.27688599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03026204 258.27691650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03026205 258.27691650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03026206 258.27694702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03026207 258.27694702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03026208 258.27697754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03026209 258.27697754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03026210 258.27697754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03026211 258.27697754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03026212 258.27700806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03026213 258.27700806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03026214 258.27703857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03026215 258.27703857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03026216 258.27706909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03026217 258.27706909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03026218 258.27709961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03026219 258.27713013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03026220 258.27713013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03026221 258.27716064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03026222 258.27716064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03026223 258.27716064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03026224 258.27719116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03026225 258.27719116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03026226 258.27722168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03026227 258.27722168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03026228 258.27725220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03026229 258.27725220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03026230 258.27728271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03026231 258.27728271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03026232 258.27731323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03026233 258.27731323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03026234 258.27731323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03026235 258.27731323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03026236 258.27734375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03026237 258.27734375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03026238 258.27737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03026239 258.27737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03026240 258.27740479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03026241 258.27740479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03026242 258.27743530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03026243 258.27743530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03026244 258.27746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03026245 258.27746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03026246 258.27746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03026247 258.27746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03026248 258.27749634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03026249 258.27749634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03026250 258.27752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03026251 258.27752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03026252 258.27755737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03026253 258.27755737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03026254 258.27758789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03026255 258.27758789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03026256 258.27761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03026257 258.27761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03026258 258.27761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03026259 258.27761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03026260 258.27764893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03026261 258.27767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03026262 258.27767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03026263 258.27770996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03026264 258.27774048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03026265 258.27774048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03026266 258.27777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03026267 258.27777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03026268 258.27777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03026269 258.27777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03026270 258.27780151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03026271 258.27780151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03026272 258.27783203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03026273 258.27783203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03026274 258.27786255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03026275 258.27786255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03026276 258.27789307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03026277 258.27789307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03026278 258.27792358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03026279 258.27792358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03026280 258.27795410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03026281 258.27795410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03026282 258.27795410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03026283 258.27795410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03026284 258.27798462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03026285 258.27798462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03026286 258.27801514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03026287 258.27801514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03026288 258.27804565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03026289 258.27804565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03026290 258.27807617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03026291 258.27807617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03026292 258.27810669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03026293 258.27810669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03026294 258.27810669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03026295 258.27810669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03026296 258.27813721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03026297 258.27813721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03026298 258.27816772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03026299 258.27816772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03026300 258.27819824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03026301 258.27819824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03026302 258.27822876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03026303 258.27822876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03026304 258.27825928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03026305 258.27825928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03026306 258.27825928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03026307 258.27828979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03026308 258.27832031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03026309 258.27832031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03026310 258.27835083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03026311 258.27835083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03026312 258.27838135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03026313 258.27838135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03026314 258.27841187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03026315 258.27841187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03026316 258.27841187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03026317 258.27841187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03026318 258.27844238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03026319 258.27844238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03026320 258.27847290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03026321 258.27847290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03026322 258.27850342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03026323 258.27850342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03026324 258.27853394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03026325 258.27853394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03026326 258.27856445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03026327 258.27856445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03026328 258.27856445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03026329 258.27856445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03026330 258.27859497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03026331 258.27859497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03026332 258.27862549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03026333 258.27862549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03026334 258.27865601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03026335 258.27865601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03026336 258.27868652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03026337 258.27868652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03026338 258.27871704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03026339 258.27871704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03026340 258.27874756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03026341 258.27874756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03026342 258.27877808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03026343 258.27877808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03026344 258.27880859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03026345 258.27880859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03026346 258.27883911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03026347 258.27883911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03026348 258.27886963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03026349 258.27886963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03026350 258.27890015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03026351 258.27890015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03026352 258.27890015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03026353 258.27890015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03026354 258.27893066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03026355 258.27893066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03026356 258.27896118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03026357 258.27896118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03026358 258.27899170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03026359 258.27899170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03026360 258.27902222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03026361 258.27902222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03026362 258.27905273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03026363 258.27905273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03026364 258.27905273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03026365 258.27905273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03026366 258.27908325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03026367 258.27908325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03026368 258.27911377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03026369 258.27914429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03026370 258.27914429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03026371 258.27917480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03026372 258.27920532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03026373 258.27920532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03026374 258.27920532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03026375 258.27920532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03026376 258.27923584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03026377 258.27923584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03026378 258.27929688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03026379 258.27929688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03026380 258.27932739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03026381 258.27932739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03026382 258.27935791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03026383 258.27935791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03026384 258.27935791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03026385 258.27935791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03026386 258.27938843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03026387 258.27938843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03026388 258.27941895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03026389 258.27941895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03026390 258.27944946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03026391 258.27944946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03026392 258.27947998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03026393 258.27947998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03026394 258.27951050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03026395 258.27951050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03026396 258.27954102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03026397 258.27954102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03026398 258.27954102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03026399 258.27957153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03026400 258.27960205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03026401 258.27960205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03026402 258.27963257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03026403 258.27963257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03026404 258.27966309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03026405 258.27966309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03026406 258.27969360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03026407 258.27969360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03026408 258.27969360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03026409 258.27969360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03026410 258.27972412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03026411 258.27972412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03026412 258.27975464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03026413 258.27975464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03026414 258.27978516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03026415 258.27981567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03026416 258.27984619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03026417 258.27984619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03026418 258.27984619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03026419 258.27984619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03026420 258.27987671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03026421 258.27987671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03026422 258.27990723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03026423 258.27990723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03026424 258.27993774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03026425 258.27993774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03026426 258.27996826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03026427 258.27996826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03026428 258.27999878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03026429 258.27999878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03026430 258.28002930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03026431 258.28002930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03026432 258.28005981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03026433 258.28005981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03026434 258.28009033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03026435 258.28009033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03026436 258.28015137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03026437 258.28015137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03026438 258.28015137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03026439 258.28015137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03026440 258.28018188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03026441 258.28018188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03026442 258.28021240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03026443 258.28021240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03026444 258.28024292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03026445 258.28024292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03026446 258.28030396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03026447 258.28030396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03026448 258.28033447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03026449 258.28033447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03026450 258.28033447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03026451 258.28033447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03026452 258.28036499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03026453 258.28036499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03026454 258.28039551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03026455 258.28039551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03026456 258.28042603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03026457 258.28042603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03026458 258.28045654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03026459 258.28045654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03026460 258.28048706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03026461 258.28048706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03026462 258.28048706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03026463 258.28048706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03026464 258.28051758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03026465 258.28051758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03026466 258.28054810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03026467 258.28057861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03026468 258.28060913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03026469 258.28060913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03026470 258.28063965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03026471 258.28063965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03026472 258.28063965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03026473 258.28063965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03026474 258.28067017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03026475 258.28067017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03026476 258.28070068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03026477 258.28070068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03026478 258.28073120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03026479 258.28073120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03026480 258.28076172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03026481 258.28076172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03026482 258.28079224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03026483 258.28079224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03026484 258.28079224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03026485 258.28079224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03026486 258.28082275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03026487 258.28085327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03026488 258.28088379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03026489 258.28088379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03026490 258.28091431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03026491 258.28091431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03026492 258.28094482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03026493 258.28094482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03026494 258.28094482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03026495 258.28094482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03026496 258.28097534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03026497 258.28097534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03026498 258.28100586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03026499 258.28100586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03026500 258.28103638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03026501 258.28103638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03026502 258.28106689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03026503 258.28106689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03026504 258.28109741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03026505 258.28109741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03026506 258.28112793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03026507 258.28112793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03026508 258.28112793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03026509 258.28112793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03026510 258.28115845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03026511 258.28115845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03026512 258.28118896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03026513 258.28118896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03026514 258.28121948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03026515 258.28121948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03026516 258.28125000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03026517 258.28125000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03026518 258.28128052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03026519 258.28128052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03026520 258.28128052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03026521 258.28131104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03026522 258.28131104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03026523 258.28134155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03026524 258.28137207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03026525 258.28137207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03026526 258.28140259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03026527 258.28140259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03026528 258.28143311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03026529 258.28143311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03026530 258.28143311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03026531 258.28143311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03026532 258.28146362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03026533 258.28146362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03026534 258.28149414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03026535 258.28149414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03026536 258.28152466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03026537 258.28152466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03026538 258.28155518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03026539 258.28155518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03026540 258.28158569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03026541 258.28158569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03026542 258.28158569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03026543 258.28158569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03026544 258.28161621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03026545 258.28161621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03026546 258.28164673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03026547 258.28164673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03026548 258.28167725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03026549 258.28167725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03026550 258.28170776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03026551 258.28173828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03026552 258.28176880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03026553 258.28176880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03026554 258.28176880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03026555 258.28176880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03026556 258.28179932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03026557 258.28179932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03026558 258.28182983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03026559 258.28182983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03026560 258.28186035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03026561 258.28186035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03026562 258.28189087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03026563 258.28189087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03026564 258.28192139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03026565 258.28192139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03026566 258.28192139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03026567 258.28192139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03026568 258.28195190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03026569 258.28198242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03026570 258.28201294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03026571 258.28201294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03026572 258.28204346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03026573 258.28204346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03026574 258.28207397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03026575 258.28207397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03026576 258.28207397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03026577 258.28207397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03026578 258.28210449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03026579 258.28210449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03026580 258.28213501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03026581 258.28213501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03026582 258.28216553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03026583 258.28216553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03026584 258.28219604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03026585 258.28219604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03026586 258.28222656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03026587 258.28222656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03026588 258.28225708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03026589 258.28225708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03026590 258.28228760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03026591 258.28228760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03026592 258.28231812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03026593 258.28231812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03026594 258.28234863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03026595 258.28234863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03026596 258.28237915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03026597 258.28237915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03026598 258.28237915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03026599 258.28237915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03026600 258.28240967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03026601 258.28240967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03026602 258.28244019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03026603 258.28247070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03026604 258.28250122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03026605 258.28250122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03026606 258.28253174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03026607 258.28253174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03026608 258.28256226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03026609 258.28256226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03026610 258.28256226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03026611 258.28256226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03026612 258.28259277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03026613 258.28259277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03026614 258.28262329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03026615 258.28262329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03026616 258.28265381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03026617 258.28265381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03026618 258.28268433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03026619 258.28268433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03026620 258.28271484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03026621 258.28271484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03026622 258.28271484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03026623 258.28271484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03026624 258.28277588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03026625 258.28277588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03026626 258.28280640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03026627 258.28280640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03026628 258.28283691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03026629 258.28283691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03026630 258.28286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03026631 258.28286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03026632 258.28286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03026633 258.28286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03026634 258.28289795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03026635 258.28289795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03026636 258.28292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03026637 258.28292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03026638 258.28295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03026639 258.28295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03026640 258.28298950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03026641 258.28298950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03026642 258.28302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03026643 258.28302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03026644 258.28302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03026645 258.28302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03026646 258.28305054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03026647 258.28308105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03026648 258.28311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03026649 258.28311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03026650 258.28314209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03026651 258.28314209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03026652 258.28317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03026653 258.28317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03026654 258.28317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03026655 258.28317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03026656 258.28320313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03026657 258.28320313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03026658 258.28323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03026659 258.28323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03026660 258.28326416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03026661 258.28326416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03026662 258.28329468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03026663 258.28329468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03026664 258.28332520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03026665 258.28332520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03026666 258.28335571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03026667 258.28335571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03026668 258.28335571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03026669 258.28338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03026670 258.28338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03026671 258.28341675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03026672 258.28344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03026673 258.28344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03026674 258.28347778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03026675 258.28347778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03026676 258.28350830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03026677 258.28350830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03026678 258.28350830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03026679 258.28350830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03026680 258.28353882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03026681 258.28353882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03026682 258.28356934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03026683 258.28356934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03026684 258.28359985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03026685 258.28359985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03026686 258.28363037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03026687 258.28363037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03026688 258.28366089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03026689 258.28366089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03026690 258.28366089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03026691 258.28366089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03026692 258.28369141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03026693 258.28369141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03026694 258.28372192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03026695 258.28372192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03026696 258.28375244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03026697 258.28375244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03026698 258.28378296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03026699 258.28378296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03026700 258.28381348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03026701 258.28381348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03026702 258.28381348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03026703 258.28381348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03026704 258.28384399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03026705 258.28384399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03026706 258.28387451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03026707 258.28387451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03026708 258.28390503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03026709 258.28390503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03026710 258.28393555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03026711 258.28396606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03026712 258.28396606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03026713 258.28396606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03026714 258.28399658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03026715 258.28399658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03026716 258.28402710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03026717 258.28402710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03026718 258.28405762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03026719 258.28405762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03026720 258.28408813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03026721 258.28408813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03026722 258.28411865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03026723 258.28411865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03026724 258.28414917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03026725 258.28414917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03026726 258.28414917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03026727 258.28414917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03026728 258.28417969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03026729 258.28417969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03026730 258.28421021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03026731 258.28421021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03026732 258.28424072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03026733 258.28424072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03026734 258.28427124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03026735 258.28427124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03026736 258.28430176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03026737 258.28430176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03026738 258.28433228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03026739 258.28433228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03026740 258.28436279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03026741 258.28436279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03026742 258.28439331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03026743 258.28439331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03026744 258.28442383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03026745 258.28442383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03026746 258.28445435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03026747 258.28445435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03026748 258.28445435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03026749 258.28445435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03026750 258.28448486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03026751 258.28448486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03026752 258.28451538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03026753 258.28451538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03026754 258.28454590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03026755 258.28457642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03026756 258.28460693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03026757 258.28460693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03026758 258.28460693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03026759 258.28460693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03026760 258.28463745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03026761 258.28463745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03026762 258.28466797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03026763 258.28466797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03026764 258.28469849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03026765 258.28469849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03026766 258.28472900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03026767 258.28472900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03026768 258.28475952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03026769 258.28475952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03026770 258.28475952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03026771 258.28475952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03026772 258.28479004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03026773 258.28479004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03026774 258.28482056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03026775 258.28482056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03026776 258.28485107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03026777 258.28485107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03026778 258.28488159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03026779 258.28488159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03026780 258.28491211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03026781 258.28491211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03026782 258.28494263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03026783 258.28494263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03026784 258.28494263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03026785 258.28494263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03026786 258.28497314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03026787 258.28497314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03026788 258.28500366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03026789 258.28503418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03026790 258.28503418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03026791 258.28506470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03026792 258.28509521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03026793 258.28509521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03026794 258.28509521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03026795 258.28509521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03026796 258.28512573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03026797 258.28512573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03026798 258.28515625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03026799 258.28515625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03026800 258.28518677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03026801 258.28518677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03026802 258.28521729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03026803 258.28521729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03026804 258.28524780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03026805 258.28524780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03026806 258.28524780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03026807 258.28524780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03026808 258.28527832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03026809 258.28527832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03026810 258.28530884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03026811 258.28530884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03026812 258.28533936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03026813 258.28533936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03026814 258.28536987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03026815 258.28536987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03026816 258.28540039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03026817 258.28540039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03026818 258.28540039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03026819 258.28540039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03026820 258.28543091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03026821 258.28543091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03026822 258.28546143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03026823 258.28546143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03026824 258.28549194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03026825 258.28549194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03026826 258.28552246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03026827 258.28552246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03026828 258.28555298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03026829 258.28555298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03026830 258.28555298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03026831 258.28558350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03026832 258.28558350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03026833 258.28561401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03026834 258.28564453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03026835 258.28564453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03026836 258.28567505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03026837 258.28567505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03026838 258.28570557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03026839 258.28570557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03026840 258.28573608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03026841 258.28573608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03026842 258.28573608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03026843 258.28573608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03026844 258.28576660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03026845 258.28576660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03026846 258.28579712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03026847 258.28579712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03026848 258.28582764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03026849 258.28582764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03026850 258.28585815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03026851 258.28585815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03026852 258.28588867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03026853 258.28588867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03026854 258.28588867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03026855 258.28591919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03026856 258.28594971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03026857 258.28594971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03026858 258.28598022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03026859 258.28598022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03026860 258.28601074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03026861 258.28601074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03026862 258.28604126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03026863 258.28604126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03026864 258.28604126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03026865 258.28604126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03026866 258.28607178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03026867 258.28607178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03026868 258.28613281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03026869 258.28613281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03026870 258.28616333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03026871 258.28616333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03026872 258.28619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03026873 258.28619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03026874 258.28619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03026875 258.28619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03026876 258.28622437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03026877 258.28622437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03026878 258.28625488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03026879 258.28625488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03026880 258.28628540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03026881 258.28628540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03026882 258.28631592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03026883 258.28634644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03026884 258.28634644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03026885 258.28634644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03026886 258.28637695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03026887 258.28637695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03026888 258.28640747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03026889 258.28640747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03026890 258.28643799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03026891 258.28643799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03026892 258.28646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03026893 258.28646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03026894 258.28649902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03026895 258.28649902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03026896 258.28652954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03026897 258.28652954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03026898 258.28652954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03026899 258.28652954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03026900 258.28656006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03026901 258.28656006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03026902 258.28659058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03026903 258.28659058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03026904 258.28662109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03026905 258.28662109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03026906 258.28665161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03026907 258.28665161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03026908 258.28668213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03026909 258.28668213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03026910 258.28668213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03026911 258.28668213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03026912 258.28671265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03026913 258.28674316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03026914 258.28677368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03026915 258.28677368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03026916 258.28680420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03026917 258.28680420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03026918 258.28683472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03026919 258.28683472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03026920 258.28683472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03026921 258.28683472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03026922 258.28686523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03026923 258.28686523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03026924 258.28689575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03026925 258.28689575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03026926 258.28692627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03026927 258.28692627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03026928 258.28695679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03026929 258.28695679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03026930 258.28698730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03026931 258.28698730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03026932 258.28701782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03026933 258.28701782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03026934 258.28704834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03026935 258.28704834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03026936 258.28707886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03026937 258.28707886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03026938 258.28710938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03026939 258.28710938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03026940 258.28713989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03026941 258.28713989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03026942 258.28717041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03026943 258.28717041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03026944 258.28717041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03026945 258.28717041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03026946 258.28720093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03026947 258.28720093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03026948 258.28723145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03026949 258.28723145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03026950 258.28726196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03026951 258.28729248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03026952 258.28732300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03026953 258.28732300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03026954 258.28732300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03026955 258.28732300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03026956 258.28735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03026957 258.28735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03026958 258.28738403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03026959 258.28738403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03026960 258.28741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03026961 258.28741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03026962 258.28744507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03026963 258.28744507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03026964 258.28747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03026965 258.28747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03026966 258.28747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03026967 258.28747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03026968 258.28750610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03026969 258.28753662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03026970 258.28756714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03026971 258.28756714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03026972 258.28759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03026973 258.28759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03026974 258.28762817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03026975 258.28762817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03026976 258.28762817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03026977 258.28762817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03026978 258.28765869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03026979 258.28765869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03026980 258.28768921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03026981 258.28768921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03026982 258.28771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03026983 258.28771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03026984 258.28775024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03026985 258.28775024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03026986 258.28778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03026987 258.28778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03026988 258.28778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03026989 258.28781128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03026990 258.28781128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03026991 258.28784180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03026992 258.28787231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03026993 258.28787231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03026994 258.28790283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03026995 258.28790283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03026996 258.28793335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03026997 258.28793335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03026998 258.28796387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03026999 258.28796387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03027000 258.28796387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03027001 258.28796387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03027002 258.28799438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03027003 258.28799438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03027004 258.28802490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03027005 258.28802490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03027006 258.28805542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03027007 258.28808594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03027008 258.28811646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03027009 258.28811646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03027010 258.28811646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03027011 258.28811646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03027012 258.28814697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03027013 258.28814697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03027014 258.28817749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03027015 258.28817749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03027016 258.28820801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03027017 258.28820801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03027018 258.28823853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03027019 258.28823853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03027020 258.28826904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03027021 258.28826904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03027022 258.28826904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03027023 258.28829956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03027024 258.28833008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03027025 258.28833008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03027026 258.28836060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03027027 258.28839111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03027028 258.28842163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03027029 258.28842163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03027030 258.28842163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03027031 258.28842163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03027032 258.28845215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03027033 258.28845215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03027034 258.28848267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03027035 258.28848267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03027036 258.28851318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03027037 258.28851318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03027038 258.28854370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03027039 258.28854370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03027040 258.28857422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03027041 258.28857422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03027042 258.28857422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03027043 258.28857422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03027044 258.28860474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03027045 258.28860474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03027046 258.28863525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03027047 258.28863525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03027048 258.28866577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03027049 258.28869629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03027050 258.28869629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03027051 258.28872681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03027052 258.28875732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03027053 258.28875732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03027054 258.28875732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03027055 258.28875732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03027056 258.28878784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03027057 258.28878784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03027058 258.28881836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03027059 258.28881836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03027060 258.28884888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03027061 258.28884888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03027062 258.28887939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03027063 258.28887939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03027064 258.28890991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03027065 258.28890991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03027066 258.28890991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03027067 258.28890991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03027068 258.28894043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03027069 258.28894043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03027070 258.28897095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03027071 258.28897095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03027072 258.28900146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03027073 258.28900146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03027074 258.28903198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03027075 258.28903198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03027076 258.28906250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03027077 258.28906250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03027078 258.28906250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03027079 258.28906250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03027080 258.28909302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03027081 258.28909302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03027082 258.28912354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03027083 258.28912354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03027084 258.28915405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03027085 258.28915405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03027086 258.28918457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03027087 258.28918457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03036392 258.41796875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -03036393 258.41796875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -03036394 258.41799927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -03036395 258.41799927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -03036396 258.41802979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -03036397 258.41802979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -03036398 258.41806030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -03036399 258.41806030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e58 -03036400 258.41806030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -03036401 258.41806030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e68 -03036402 258.41809082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -03036403 258.41809082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e78 -03036404 258.41812134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e88 -03036405 258.41812134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e88 -03036406 258.41815186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e98 -03036407 258.41815186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e98 -03036408 258.41818237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea8 -03036409 258.41818237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ea8 -03036410 258.41821289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb8 -03036411 258.41821289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16eb8 -03036412 258.41821289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec8 -03036413 258.41821289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ec8 -03036414 258.41824341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -03036415 258.41824341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -03036416 258.41827393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee8 -03036417 258.41827393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee8 -03036418 258.41830444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef8 -03036419 258.41830444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef8 -03036420 258.41833496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f08 -03036421 258.41833496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f08 -03036422 258.41836548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f18 -03036423 258.41836548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f18 -03036424 258.41839600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f28 -03036425 258.41839600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f28 -03036426 258.41839600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -03036427 258.41839600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -03036428 258.41842651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -03036429 258.41845703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -03036430 258.41845703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -03036431 258.41848755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -03036432 258.41851807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -03036433 258.41851807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -03036434 258.41854858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -03036435 258.41854858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -03040978 258.48196411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -03040979 258.48196411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -03040980 258.48199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -03040981 258.48199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -03040982 258.48202515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -03040983 258.48202515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -03040984 258.48205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -03040985 258.48205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -03040986 258.48208618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -03040987 258.48208618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -03040988 258.48208618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -03040989 258.48208618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -03040990 258.48211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd8 -03040991 258.48211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd8 -03040992 258.48214722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde8 -03040993 258.48214722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde8 -03040994 258.48217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf8 -03040995 258.48220825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf8 -03040996 258.48220825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe08 -03040997 258.48223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe08 -03040998 258.48223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe18 -03040999 258.48223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe18 -03041000 258.48226929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe28 -03041001 258.48226929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe28 -03041002 258.48229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -03041003 258.48229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -03041004 258.48233032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -03041005 258.48233032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -03041006 258.48236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -03041007 258.48236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -03041008 258.48239136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -03041009 258.48239136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -03041010 258.48239136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -03041011 258.48239136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -03041012 258.48242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -03041013 258.48242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -03041014 258.48245239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -03041015 258.48245239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -03041016 258.48248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -03041017 258.48248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -03041018 258.48251343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -03041019 258.48251343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -03041020 258.48254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -03041021 258.48254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -03046274 258.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f8 -03046275 258.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a2f8 -03046276 258.55508423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a308 -03046277 258.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a308 -03046278 258.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a318 -03046279 258.55514526 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a318 -03046280 258.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a328 -03046281 258.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a328 -03046282 258.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a338 -03046283 258.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a338 -03046284 258.55520630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a348 -03046285 258.55520630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a348 -03046286 258.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a358 -03046287 258.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a358 -03046288 258.55526733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a368 -03046289 258.55526733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a368 -03046290 258.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -03046291 258.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -03046292 258.55532837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -03046293 258.55532837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -03046294 258.55532837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -03046295 258.55532837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -03046296 258.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03046297 258.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03046298 258.55538940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03046299 258.55538940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03046300 258.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03046301 258.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03046302 258.55545044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03046303 258.55545044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03046304 258.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03046305 258.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03046306 258.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03046307 258.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03046308 258.55551147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03046309 258.55551147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03046310 258.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03046311 258.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03046312 258.55557251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03046313 258.55557251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03046314 258.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03046315 258.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03046316 258.55563354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03046317 258.55563354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03051544 258.62792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -03051545 258.62792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -03051546 258.62792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -03051547 258.62792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -03051548 258.62796021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -03051549 258.62796021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -03051550 258.62799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -03051551 258.62799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -03051552 258.62802124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -03051553 258.62802124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -03051554 258.62805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -03051555 258.62805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -03051556 258.62808228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -03051557 258.62808228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -03051558 258.62808228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -03051559 258.62808228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -03051560 258.62811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -03051561 258.62811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -03051562 258.62814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -03051563 258.62814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -03051564 258.62817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -03051565 258.62817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -03051566 258.62820435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -03051567 258.62820435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -03051568 258.62823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -03051569 258.62823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -03051570 258.62823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -03051571 258.62823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -03051572 258.62826538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -03051573 258.62826538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -03051574 258.62829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -03051575 258.62829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -03051576 258.62832642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -03051577 258.62832642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -03051578 258.62835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -03051579 258.62835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -03051580 258.62838745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -03051581 258.62838745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -03051582 258.62841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -03051583 258.62841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -03051584 258.62841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e8 -03051585 258.62844849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e8 -03051586 258.62847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f8 -03051587 258.62847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f8 -03057378 258.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf8 -03057379 258.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf8 -03057380 258.70834351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe08 -03057381 258.70834351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe08 -03057382 258.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe18 -03057383 258.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe18 -03057384 258.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -03057385 258.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -03057386 258.70843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -03057387 258.70843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -03057388 258.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -03057389 258.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -03057390 258.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -03057391 258.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -03057392 258.70849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe68 -03057393 258.70849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe68 -03057394 258.70852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe78 -03057395 258.70852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe78 -03057396 258.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe88 -03057397 258.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe88 -03057398 258.70858765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe98 -03057399 258.70858765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe98 -03057400 258.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea8 -03057401 258.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea8 -03057402 258.70864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -03057403 258.70864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -03057404 258.70864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -03057405 258.70864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -03057406 258.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -03057407 258.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -03057408 258.70870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -03057409 258.70870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -03057410 258.70874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -03057411 258.70874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -03057412 258.70877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -03057413 258.70877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -03057414 258.70880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -03057415 258.70880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -03057416 258.70880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -03057417 258.70880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -03057418 258.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -03057419 258.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -03057420 258.70886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -03057421 258.70889282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -03067082 259.16351318 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067083 259.16357422 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067084 259.16363525 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067085 259.16363525 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03067086 259.16378784 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067087 259.16378784 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067088 259.16390991 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067089 259.16394043 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067090 259.17736816 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067091 259.19708252 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067092 259.19708252 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067093 259.20950317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -03067094 259.20950317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03067095 259.22479248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067096 261.19812012 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067097 261.21713257 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067098 261.21713257 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067099 261.67181396 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067100 261.67184448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067101 261.67184448 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067102 261.67187500 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03067103 261.67199707 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067104 261.67199707 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067105 261.67205811 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03067106 261.67208862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03067107 263.21984863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03067108 263.24011230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067109 263.24011230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03067110 263.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03067111 263.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03067112 263.84072876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03067113 263.84072876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03067114 263.84072876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03067115 263.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03067116 263.84078979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03067117 263.84078979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03067118 263.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03067119 263.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03067120 263.84085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03067121 263.84085083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03067122 263.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03067123 263.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03067124 263.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03067125 263.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03067126 263.84091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03067127 263.84091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03067128 263.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03067129 263.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03067130 263.84097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03067131 263.84097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03067132 263.84100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03067133 263.84100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03067134 263.84103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03067135 263.84103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03067136 263.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03067137 263.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03067138 263.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03067139 263.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03067140 263.84109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03067141 263.84109497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03067142 263.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03067143 263.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03067144 263.84115601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03067145 263.84115601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03067146 263.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03067147 263.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03067148 263.84121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03067149 263.84121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03067150 263.84121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03067151 263.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03067152 263.84127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03067153 263.84127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03067154 263.84130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03067155 263.84130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03067156 263.84133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03067157 263.84133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03067158 263.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03067159 263.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03067160 263.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03067161 263.84136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03067162 263.84140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03067163 263.84140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03067164 263.84143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03067165 263.84143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03067166 263.84146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03067167 263.84146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03067168 263.84149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03067169 263.84149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03067170 263.84152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03067171 263.84152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03067172 263.84152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03067173 263.84152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03067174 263.84155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03067175 263.84155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03067176 263.84158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03067177 263.84158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03067178 263.84161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03067179 263.84161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03067180 263.84164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03067181 263.84164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03067182 263.84167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03067183 263.84167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03067184 263.84167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03067185 263.84170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03067186 263.84170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03067187 263.84173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03067188 263.84176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03067189 263.84176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03067190 263.84179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03067191 263.84179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03067192 263.84182739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03067193 263.84182739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03067194 263.84185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03067195 263.84185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03067196 263.84185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03067197 263.84185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03067198 263.84188843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03067199 263.84188843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03067200 263.84191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03067201 263.84191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03067202 263.84194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03067203 263.84194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03067204 263.84197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03067205 263.84197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03067206 263.84201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03067207 263.84201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03067208 263.84201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03067209 263.84201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03067210 263.84204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03067211 263.84204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03067212 263.84207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03067213 263.84207153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03067214 263.84210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03067215 263.84210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03067216 263.84213257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03067217 263.84216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03067218 263.84216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03067219 263.84216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03067220 263.84219360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03067221 263.84219360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03067222 263.84222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03067223 263.84222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03067224 263.84225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03067225 263.84225464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03067226 263.84228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03067227 263.84228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03067228 263.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03067229 263.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03067230 263.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03067231 263.84231567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03067232 263.84234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03067233 263.84234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03067234 263.84240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03067235 263.84240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03067236 263.84243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03067237 263.84243774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03067238 263.84246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03067239 263.84246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03067240 263.84252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03067241 263.84252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03067242 263.84255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03067243 263.84255981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03067244 263.84259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03067245 263.84259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03067246 263.84262085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03067247 263.84262085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03067248 263.84265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03067249 263.84265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03067250 263.84265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03067251 263.84265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03067252 263.84268188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03067253 263.84271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03067254 263.84274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03067255 263.84274292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03067256 263.84277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03067257 263.84277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03067258 263.84280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03067259 263.84280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03067260 263.84280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03067261 263.84280396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03067262 263.84283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03067263 263.84283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03067264 263.84286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03067265 263.84286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03067266 263.84289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03067267 263.84289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03067268 263.84292603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03067269 263.84292603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03067270 263.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03067271 263.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03067272 263.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03067273 263.84295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03067274 263.84298706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03067275 263.84301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03067276 263.84304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03067277 263.84304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03067278 263.84307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03067279 263.84307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03067280 263.84310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03067281 263.84310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03067282 263.84310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03067283 263.84310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03067284 263.84313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03067285 263.84313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03067286 263.84317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03067287 263.84317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03067288 263.84320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03067289 263.84320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03067290 263.84323120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03067291 263.84323120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03067292 263.84326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03067293 263.84326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03067294 263.84326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03067295 263.84329224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03067296 263.84332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03067297 263.84332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03067298 263.84335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03067299 263.84335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03067300 263.84338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03067301 263.84338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03067302 263.84341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03067303 263.84341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03067304 263.84344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03067305 263.84344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03067306 263.84344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03067307 263.84344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03067308 263.84347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03067309 263.84347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03067310 263.84350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03067311 263.84350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03067312 263.84353638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03067313 263.84353638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03067314 263.84356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03067315 263.84359741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03067316 263.84359741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03067317 263.84359741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03067318 263.84362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03067319 263.84362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03067320 263.84365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03067321 263.84365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03067322 263.84368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03067323 263.84368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03067324 263.84371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03067325 263.84371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03067326 263.84375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03067327 263.84375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03067328 263.84375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03067329 263.84375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03067330 263.84378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03067331 263.84378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03067332 263.84381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03067333 263.84384155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03067334 263.84387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03067335 263.84387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03067336 263.84390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03067337 263.84390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03067338 263.84390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03067339 263.84390259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03067340 263.84393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03067341 263.84393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03067342 263.84396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03067343 263.84396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03067344 263.84399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03067345 263.84399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03067346 263.84402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03067347 263.84402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03067348 263.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03067349 263.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03067350 263.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03067351 263.84405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03067352 263.84408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03067353 263.84411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03067354 263.84414673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03067355 263.84414673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03067356 263.84417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03067357 263.84417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03067358 263.84420776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03067359 263.84420776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03067360 263.84423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03067361 263.84423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03067362 263.84423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03067363 263.84423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03067364 263.84426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03067365 263.84426880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03067366 263.84429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03067367 263.84429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03067368 263.84432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03067369 263.84432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03067370 263.84436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03067371 263.84436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03067372 263.84439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03067373 263.84439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03067374 263.84442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03067375 263.84442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03067376 263.84445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03067377 263.84445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03067378 263.84448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03067379 263.84448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03067380 263.84451294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03067381 263.84451294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03067382 263.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03067383 263.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03067384 263.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03067385 263.84454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03067386 263.84457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03067387 263.84457397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03067388 263.84460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03067389 263.84463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03067390 263.84466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03067391 263.84466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03067392 263.84469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03067393 263.84469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03067394 263.84469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03067395 263.84469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03067396 263.84472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03067397 263.84472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03067398 263.84475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03067399 263.84475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03067400 263.84478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03067401 263.84478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03067402 263.84481812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03067403 263.84481812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03067404 263.84484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03067405 263.84484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03067406 263.84487915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03067407 263.84487915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03067408 263.84487915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03067409 263.84487915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03067410 263.84490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03067411 263.84494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03067412 263.84497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03067413 263.84497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03067414 263.84500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03067415 263.84500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03067416 263.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03067417 263.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03067418 263.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03067419 263.84503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03067420 263.84506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03067421 263.84506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03067422 263.84509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03067423 263.84509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03067424 263.84512329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03067425 263.84512329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03067426 263.84515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03067427 263.84515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03067428 263.84518433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03067429 263.84518433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03067430 263.84521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03067431 263.84521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03067432 263.84524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03067433 263.84524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03067434 263.84527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03067435 263.84527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03067436 263.84530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03067437 263.84530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03067438 263.84533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03067439 263.84533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03067440 263.84533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03067441 263.84533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03067442 263.84536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03067443 263.84536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03067444 263.84539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03067445 263.84542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03067446 263.84545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03067447 263.84545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03067448 263.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03067449 263.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03067450 263.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03067451 263.84548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03067452 263.84552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03067453 263.84552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03067454 263.84555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03067455 263.84555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03067456 263.84558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03067457 263.84558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03067458 263.84561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03067459 263.84561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03067460 263.84564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03067461 263.84564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03067462 263.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03067463 263.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03067464 263.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03067465 263.84567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03067466 263.84570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03067467 263.84570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03067468 263.84573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03067469 263.84573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03067470 263.84576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03067471 263.84576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03067472 263.84579468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03067473 263.84579468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03067474 263.84582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03067475 263.84582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03067476 263.84582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03067477 263.84582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03067478 263.84585571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03067479 263.84585571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03067480 263.84588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03067481 263.84588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03067482 263.84591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03067483 263.84591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03067484 263.84594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03067485 263.84597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03067486 263.84597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03067487 263.84597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03067488 263.84597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03067489 263.84600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03067490 263.84603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03067491 263.84603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03067492 263.84606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03067493 263.84606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03067494 263.84609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03067495 263.84609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03067496 263.84613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03067497 263.84613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03067498 263.84613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03067499 263.84613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03067500 263.84616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03067501 263.84616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03067502 263.84619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03067503 263.84619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03067504 263.84622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03067505 263.84622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03067506 263.84625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03067507 263.84625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03067508 263.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03067509 263.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03067510 263.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03067511 263.84628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03067512 263.84631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03067513 263.84631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03067514 263.84634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03067515 263.84634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03067516 263.84637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03067517 263.84637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03067518 263.84640503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03067519 263.84640503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03067520 263.84643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03067521 263.84643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03067522 263.84646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03067523 263.84646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03067524 263.84646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03067525 263.84646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03067526 263.84652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03067527 263.84652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03067528 263.84655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03067529 263.84655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03067530 263.84658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03067531 263.84658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03067532 263.84661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03067533 263.84661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03067534 263.84661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03067535 263.84661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03067536 263.84664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03067537 263.84664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03067538 263.84667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03067539 263.84667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03067540 263.84671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03067541 263.84671021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03067542 263.84674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03067543 263.84674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03067544 263.84677124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03067545 263.84677124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03067546 263.84680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03067547 263.84680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03067548 263.84683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03067549 263.84683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03067550 263.84686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03067551 263.84686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03067552 263.84689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03067553 263.84689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03067554 263.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03067555 263.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03067556 263.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03067557 263.84692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03067558 263.84695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03067559 263.84695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03067560 263.84698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03067561 263.84698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03067562 263.84701538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03067563 263.84701538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03067564 263.84704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03067565 263.84704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03067566 263.84707642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03067567 263.84707642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03067568 263.84707642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03067569 263.84710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03067570 263.84713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03067571 263.84713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03067572 263.84716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03067573 263.84716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03067574 263.84719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03067575 263.84719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03067576 263.84722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03067577 263.84722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03067578 263.84725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03067579 263.84725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03067580 263.84725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03067581 263.84725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03067582 263.84729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03067583 263.84729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03067584 263.84732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03067585 263.84732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03067586 263.84735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03067587 263.84735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03067588 263.84738159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03067589 263.84738159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03067590 263.84741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03067591 263.84741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03067592 263.84741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03067593 263.84741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03067594 263.84744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03067595 263.84744263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03067596 263.84747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03067597 263.84750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03067598 263.84750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03067599 263.84753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03067600 263.84756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03067601 263.84756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03067602 263.84756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03067603 263.84756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03067604 263.84759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03067605 263.84759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03067606 263.84762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03067607 263.84762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03067608 263.84765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03067609 263.84765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03067610 263.84768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03067611 263.84768677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03067612 263.84771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03067613 263.84771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03067614 263.84771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03067615 263.84771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03067616 263.84774780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03067617 263.84774780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03067618 263.84777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03067619 263.84777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03067620 263.84780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03067621 263.84780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03067622 263.84783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03067623 263.84783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03067624 263.84786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03067625 263.84786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03067626 263.84790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03067627 263.84790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03067628 263.84793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03067629 263.84793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03067630 263.84796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03067631 263.84796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03067632 263.84799194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03067633 263.84799194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03067634 263.84802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03067635 263.84802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03067636 263.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03067637 263.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03067638 263.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03067639 263.84805298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03067640 263.84808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03067641 263.84808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03067642 263.84811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03067643 263.84811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03067644 263.84814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03067645 263.84817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03067646 263.84817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03067647 263.84820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03067648 263.84820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03067649 263.84820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03067650 263.84823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03067651 263.84823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03067652 263.84826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03067653 263.84826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03067654 263.84829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03067655 263.84829712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03067656 263.84832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03067657 263.84832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03067658 263.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03067659 263.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03067660 263.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03067661 263.84835815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03067662 263.84838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03067663 263.84838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03067664 263.84841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03067665 263.84841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03067666 263.84844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03067667 263.84844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03067668 263.84848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03067669 263.84848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03067670 263.84851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03067671 263.84851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03067672 263.84851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03067673 263.84854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03067674 263.84854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03067675 263.84857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03067676 263.84860229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03067677 263.84860229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03067678 263.84863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03067679 263.84863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03067680 263.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03067681 263.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03067682 263.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03067683 263.84866333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03067684 263.84869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03067685 263.84869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03067686 263.84872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03067687 263.84872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03067688 263.84875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03067689 263.84875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03067690 263.84878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03067691 263.84878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03067692 263.84881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03067693 263.84881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03067694 263.84884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03067695 263.84884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03067696 263.84884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03067697 263.84884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03067698 263.84887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03067699 263.84887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03067700 263.84890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03067701 263.84890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03067702 263.84893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03067703 263.84893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03067704 263.84896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03067705 263.84896851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03067706 263.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03067707 263.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03067708 263.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03067709 263.84899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03067710 263.84902954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03067711 263.84906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03067712 263.84909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03067713 263.84909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03067714 263.84912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03067715 263.84912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03067716 263.84915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03067717 263.84915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03067718 263.84915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03067719 263.84915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03067720 263.84918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03067721 263.84918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03067722 263.84921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03067723 263.84921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03067724 263.84927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03067725 263.84927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03067726 263.84930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03067727 263.84930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03067728 263.84930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03067729 263.84930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03067730 263.84933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03067731 263.84933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03067732 263.84936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03067733 263.84936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03067734 263.84939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03067735 263.84939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03067736 263.84942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03067737 263.84942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03067738 263.84945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03067739 263.84945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03067740 263.84948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03067741 263.84948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03067742 263.84951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03067743 263.84951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03067744 263.84954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03067745 263.84954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03067746 263.84957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03067747 263.84957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03067748 263.84960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03067749 263.84960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03067750 263.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03067751 263.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03067752 263.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03067753 263.84963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03067754 263.84967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03067755 263.84967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03067756 263.84970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03067757 263.84970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03067758 263.84973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03067759 263.84973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03067760 263.84979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03067761 263.84979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03067762 263.84979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03067763 263.84979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03067764 263.84982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03067765 263.84982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03067766 263.84985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03067767 263.84985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03067768 263.84988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03067769 263.84988403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03067770 263.84991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03067771 263.84991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03067772 263.84994507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03067773 263.84994507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03067774 263.84994507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03067775 263.84994507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03067776 263.84997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03067777 263.84997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03067778 263.85000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03067779 263.85000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03067780 263.85003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03067781 263.85003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03067782 263.85006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03067783 263.85006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03067784 263.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03067785 263.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03067786 263.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03067787 263.85009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03067788 263.85012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03067789 263.85012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03067790 263.85015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03067791 263.85015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03067792 263.85018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03067793 263.85018921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03067794 263.85021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03067795 263.85021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03067796 263.85025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03067797 263.85025024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03067798 263.85028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03067799 263.85028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03067800 263.85028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03067801 263.85031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03067802 263.85034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03067803 263.85034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03067804 263.85037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03067805 263.85037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03067806 263.85040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03067807 263.85040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03067808 263.85043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03067809 263.85043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03067810 263.85043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03067811 263.85043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03067812 263.85046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03067813 263.85046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03067814 263.85049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03067815 263.85049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03067816 263.85052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03067817 263.85052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03067818 263.85055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03067819 263.85055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03067820 263.85058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03067821 263.85058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03067822 263.85058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03067823 263.85058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03067824 263.85061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03067825 263.85064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03067826 263.85064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03067827 263.85067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03067828 263.85070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03067829 263.85070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03067830 263.85073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03067831 263.85073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03067832 263.85073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03067833 263.85073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03067834 263.85076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03067835 263.85076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03067836 263.85079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03067837 263.85079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03067838 263.85083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03067839 263.85083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03067840 263.85086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03067841 263.85086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03067842 263.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03067843 263.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03067844 263.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03067845 263.85089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03067846 263.85092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03067847 263.85095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03067848 263.85098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03067849 263.85098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03067850 263.85101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03067851 263.85101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03067852 263.85104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03067853 263.85104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03067854 263.85107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03067855 263.85107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03067856 263.85107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03067857 263.85107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03067858 263.85110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03067859 263.85110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03067860 263.85113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03067861 263.85113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03067862 263.85116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03067863 263.85116577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03067864 263.85119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03067865 263.85119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03067866 263.85122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03067867 263.85122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03067868 263.85122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03067869 263.85122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03067870 263.85125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03067871 263.85128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03067872 263.85131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03067873 263.85131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03067874 263.85134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03067875 263.85134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03067876 263.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03067877 263.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03067878 263.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03067879 263.85137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03067880 263.85140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03067881 263.85140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03067882 263.85144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03067883 263.85144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03067884 263.85147095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03067885 263.85147095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03067886 263.85150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03067887 263.85150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03067888 263.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03067889 263.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03067890 263.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03067891 263.85153198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03067892 263.85156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03067893 263.85156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03067894 263.85162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03067895 263.85162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03067896 263.85165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03067897 263.85165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03067898 263.85168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03067899 263.85168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03067900 263.85168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03067901 263.85168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03067902 263.85171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03067903 263.85171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03067904 263.85174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03067905 263.85174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03067906 263.85177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03067907 263.85177612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03067908 263.85180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03067909 263.85180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03067910 263.85186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03067911 263.85186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03067912 263.85186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03067913 263.85186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03067914 263.85189819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03067915 263.85189819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03067916 263.85192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03067917 263.85192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03067918 263.85195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03067919 263.85195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03067920 263.85198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03067921 263.85198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03067922 263.85202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03067923 263.85202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03067924 263.85202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03067925 263.85205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03067926 263.85208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03067927 263.85208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03067928 263.85211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03067929 263.85211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03067930 263.85214233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03067931 263.85214233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03067932 263.85217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03067933 263.85217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03067934 263.85217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03067935 263.85217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03067936 263.85220337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03067937 263.85220337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03067938 263.85223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03067939 263.85223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03067940 263.85226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03067941 263.85226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03067942 263.85229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03067943 263.85229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03067944 263.85232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03067945 263.85232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03067946 263.85232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03067947 263.85232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03067948 263.85235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03067949 263.85238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03067950 263.85238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03067951 263.85241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03067952 263.85244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03067953 263.85244751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03067954 263.85247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03067955 263.85247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03067956 263.85247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03067957 263.85247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03067958 263.85250854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03067959 263.85250854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03067960 263.85253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03067961 263.85253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03067962 263.85256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03067963 263.85256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03067964 263.85260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03067965 263.85260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03067966 263.85263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03067967 263.85263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03067968 263.85266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03067969 263.85266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03067970 263.85266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03067971 263.85269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03067972 263.85272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03067973 263.85272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03067974 263.85275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03067975 263.85275269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03067976 263.85278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03067977 263.85278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03067978 263.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03067979 263.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03067980 263.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03067981 263.85281372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03067982 263.85284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03067983 263.85284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03067984 263.85287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03067985 263.85287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03067986 263.85290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03067987 263.85290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03067988 263.85293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03067989 263.85293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03067990 263.85296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03067991 263.85296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03067992 263.85299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03067993 263.85299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03067994 263.85302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03067995 263.85302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03067996 263.85305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03067997 263.85305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03067998 263.85308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03067999 263.85308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03068000 263.85311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03068001 263.85311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03068002 263.85311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03068003 263.85311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03068004 263.85314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03068005 263.85314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03068006 263.85317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03068007 263.85317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03068008 263.85321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03068009 263.85324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03068010 263.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03068011 263.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03068012 263.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03068013 263.85327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03068014 263.85330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03068015 263.85330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03068016 263.85333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03068017 263.85333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03068018 263.85336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03068019 263.85336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03068020 263.85339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03068021 263.85339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03068022 263.85342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03068023 263.85342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03068024 263.85345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03068025 263.85345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03068026 263.85345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03068027 263.85348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03068028 263.85351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03068029 263.85351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03068030 263.85354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03068031 263.85354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03068032 263.85357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03068033 263.85357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03068034 263.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03068035 263.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03068036 263.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03068037 263.85360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03068038 263.85363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03068039 263.85363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03068040 263.85366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03068041 263.85366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03068042 263.85369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03068043 263.85369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03068044 263.85372925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03068045 263.85372925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03068046 263.85375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03068047 263.85375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03068048 263.85375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03068049 263.85375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03068050 263.85379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03068051 263.85379028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03068052 263.85382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03068053 263.85382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03068054 263.85385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03068055 263.85385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03068056 263.85388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03068057 263.85388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03068058 263.85391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03068059 263.85391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03068060 263.85391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03068061 263.85391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03068062 263.85394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03068063 263.85394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03068064 263.85397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03068065 263.85397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03068066 263.85400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03068067 263.85400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03068068 263.85403442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03068069 263.85403442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03068070 263.85406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03068071 263.85406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03068072 263.85406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03068073 263.85409546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03068074 263.85412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03068075 263.85412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03068076 263.85415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03068077 263.85415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03068078 263.85418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03068079 263.85418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03068080 263.85421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03068081 263.85421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03068082 263.85424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03068083 263.85424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03068084 263.85424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03068085 263.85424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03068086 263.85427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03068087 263.85427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03068088 263.85430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03068089 263.85430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03068090 263.85433960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03068091 263.85433960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03068092 263.85437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03068093 263.85437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03068094 263.85440063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03068095 263.85440063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03068096 263.85440063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03068097 263.85440063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03068098 263.85443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03068099 263.85443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03068100 263.85446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03068101 263.85446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03068102 263.85449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03068103 263.85449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03068104 263.85452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03068105 263.85452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03068106 263.85455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03068107 263.85455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03068108 263.85455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03068109 263.85458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03068110 263.85461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03068111 263.85461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03068112 263.85464478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03068113 263.85464478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03068114 263.85467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03068115 263.85467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03068116 263.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03068117 263.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03068118 263.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03068119 263.85470581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03068120 263.85473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03068121 263.85473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03068122 263.85476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03068123 263.85476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03068124 263.85479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03068125 263.85479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03068126 263.85482788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03068127 263.85482788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03068128 263.85485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03068129 263.85485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03068130 263.85485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03068131 263.85485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03068132 263.85488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03068133 263.85488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03068134 263.85491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03068135 263.85491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03068136 263.85494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03068137 263.85494995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03068138 263.85498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03068139 263.85501099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03068140 263.85504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03068141 263.85504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03068142 263.85504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03068143 263.85504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03068144 263.85507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03068145 263.85507202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03068146 263.85510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03068147 263.85510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03068148 263.85513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03068149 263.85513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03068150 263.85516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03068151 263.85516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03068152 263.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03068153 263.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03068154 263.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03068155 263.85519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03068156 263.85522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03068157 263.85525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03068158 263.85528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03068159 263.85528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03068160 263.85531616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03068161 263.85531616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03068162 263.85534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03068163 263.85534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03068164 263.85534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03068165 263.85534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03068166 263.85537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03068167 263.85537720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03068168 263.85540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03068169 263.85540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03068170 263.85543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03068171 263.85543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03068172 263.85546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03068173 263.85546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03068174 263.85549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03068175 263.85549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03068176 263.85552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03068177 263.85552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03068178 263.85556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03068179 263.85556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03068180 263.85559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03068181 263.85559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03068182 263.85562134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03068183 263.85562134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03068184 263.85565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03068185 263.85565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03068186 263.85568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03068187 263.85568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03068188 263.85568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03068189 263.85568237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03068190 263.85571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03068191 263.85571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03068192 263.85574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03068193 263.85574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03068194 263.85577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03068195 263.85577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03068196 263.85580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03068197 263.85580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03068198 263.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03068199 263.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03068200 263.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03068201 263.85583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03068202 263.85586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03068203 263.85586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03068204 263.85589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03068205 263.85589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03068206 263.85592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03068207 263.85592651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03068208 263.85595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03068209 263.85595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03068210 263.85598755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03068211 263.85598755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03068212 263.85601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03068213 263.85601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03068214 263.85604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03068215 263.85604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03068216 263.85607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03068217 263.85607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03068218 263.85610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03068219 263.85610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03068220 263.85614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03068221 263.85614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03068222 263.85614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03068223 263.85614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03068224 263.85617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03068225 263.85617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03068226 263.85620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03068227 263.85620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03068228 263.85623169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03068229 263.85623169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03068230 263.85626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03068231 263.85629272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03068232 263.85629272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03068233 263.85629272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03068234 263.85632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03068235 263.85632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03068236 263.85635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03068237 263.85635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03068238 263.85638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03068239 263.85638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03068240 263.85641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03068241 263.85641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03068242 263.85644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03068243 263.85644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03068244 263.85647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03068245 263.85647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03068246 263.85647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03068247 263.85647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03068248 263.85650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03068249 263.85653687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03068250 263.85656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03068251 263.85656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03068252 263.85659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03068253 263.85659790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03068254 263.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03068255 263.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03068256 263.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03068257 263.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03068258 263.85665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03068259 263.85665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03068260 263.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03068261 263.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03068262 263.85671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03068263 263.85671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03068264 263.85675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03068265 263.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03068266 263.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03068267 263.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03068268 263.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03068269 263.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03068270 263.85684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03068271 263.85684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03068272 263.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03068273 263.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03068274 263.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03068275 263.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03068276 263.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03068277 263.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03068278 263.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03068279 263.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03068280 263.85696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03068281 263.85696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03068282 263.85699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03068283 263.85699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03068284 263.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03068285 263.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03068286 263.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03068287 263.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03068288 263.85708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03068289 263.85708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03068290 263.85711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03068291 263.85711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03068292 263.85714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03068293 263.85714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03068294 263.85717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03068295 263.85717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03068296 263.85720825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03068297 263.85720825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03068298 263.85723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03068299 263.85723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03068300 263.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03068301 263.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03068302 263.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03068303 263.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03068304 263.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03068305 263.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03068306 263.85733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03068307 263.85733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03068308 263.85736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03068309 263.85736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03068310 263.85739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03068311 263.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03068312 263.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03068313 263.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03068314 263.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03068315 263.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03068316 263.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03068317 263.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03068318 263.85751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03068319 263.85751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03068320 263.85754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03068321 263.85754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03068322 263.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03068323 263.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03068324 263.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03068325 263.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03068326 263.85760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03068327 263.85760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03068328 263.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03068329 263.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03068330 263.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03068331 263.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03068332 263.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03068333 263.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03068334 263.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03068335 263.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03068336 263.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03068337 263.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03068338 263.85775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03068339 263.85775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03068340 263.85778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03068341 263.85778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03068342 263.85781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03068343 263.85781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03068344 263.85784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03068345 263.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03068346 263.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03068347 263.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03068348 263.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03068349 263.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03068350 263.85794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03068351 263.85794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03068352 263.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03068353 263.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03068354 263.85800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03068355 263.85800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03068356 263.85803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03068357 263.85803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03068358 263.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03068359 263.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03068360 263.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03068361 263.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03068362 263.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03068363 263.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03068364 263.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03068365 263.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03068366 263.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03068367 263.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03068368 263.85818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03068369 263.85818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03068370 263.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03068371 263.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03068372 263.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03068373 263.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03068374 263.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03068375 263.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03068376 263.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03068377 263.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03068378 263.85830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03068379 263.85830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03068380 263.85833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03068381 263.85833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03068382 263.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03068383 263.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03068384 263.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03068385 263.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03068386 263.85839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03068387 263.85842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03068388 263.85842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03068389 263.85845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03068390 263.85848999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03068391 263.85848999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03068392 263.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03068393 263.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03068394 263.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03068395 263.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03068396 263.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03068397 263.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03068398 263.85858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03068399 263.85858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03068400 263.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03068401 263.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03068402 263.85864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03068403 263.85864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03068404 263.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03068405 263.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03068406 263.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03068407 263.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03068408 263.85870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03068409 263.85870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03068410 263.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03068411 263.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03068412 263.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03068413 263.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03068414 263.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03068415 263.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03068416 263.85882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03068417 263.85885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03068418 263.85885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03068419 263.85885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03068420 263.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03068421 263.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03068422 263.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03068423 263.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03068424 263.85894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03068425 263.85894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03068426 263.85897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03068427 263.85897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03068428 263.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03068429 263.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03068430 263.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03068431 263.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03068432 263.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03068433 263.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03068434 263.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03068435 263.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03068436 263.85910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03068437 263.85910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03068438 263.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03068439 263.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03068440 263.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03068441 263.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03068442 263.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03068443 263.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03068444 263.85919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03068445 263.85922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03068446 263.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03068447 263.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03068448 263.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03068449 263.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03068450 263.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03068451 263.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03068452 263.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03068453 263.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03068454 263.85934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03068455 263.85934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03068456 263.85937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03068457 263.85937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03068458 263.85940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03068459 263.85940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03068460 263.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03068461 263.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03068462 263.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03068463 263.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03068464 263.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03068465 263.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03068466 263.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03068467 263.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03068468 263.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03068469 263.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03068470 263.85958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03068471 263.85958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03068472 263.85961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03068473 263.85961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03068474 263.85964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03068475 263.85964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03068476 263.85968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03068477 263.85968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03068478 263.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03068479 263.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03068480 263.85974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03068481 263.85974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03068482 263.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03068483 263.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03068484 263.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03068485 263.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03068486 263.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03068487 263.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03068488 263.85983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03068489 263.85983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03068490 263.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03068491 263.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03068492 263.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03068493 263.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03068494 263.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03068495 263.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03068496 263.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03068497 263.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03068498 263.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03068499 263.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03068500 263.85998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03068501 263.85998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03068502 263.86001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03068503 263.86001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03068504 263.86004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03068505 263.86007690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03068506 263.86007690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03068507 263.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03068508 263.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03068509 263.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03068510 263.86013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03068511 263.86013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03068512 263.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03068513 263.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03068514 263.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03068515 263.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03068516 263.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03068517 263.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03068518 263.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03068519 263.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03068520 263.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03068521 263.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03068522 263.86029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03068523 263.86029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03068524 263.86032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03068525 263.86032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03068526 263.86035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03068527 263.86035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03068528 263.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03068529 263.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03068530 263.86041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03068531 263.86041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03068532 263.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03068533 263.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03068534 263.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03068535 263.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03068536 263.86047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03068537 263.86047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03068538 263.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03068539 263.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03068540 263.86053467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03068541 263.86056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03068542 263.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03068543 263.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03068544 263.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03068545 263.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03068546 263.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03068547 263.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03068548 263.86065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03068549 263.86065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03068550 263.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03068551 263.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03068552 263.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03068553 263.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03068554 263.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03068555 263.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03068556 263.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03068557 263.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03068558 263.86077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03068559 263.86077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03068560 263.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03068561 263.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03068562 263.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03068563 263.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03068564 263.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03068565 263.86090088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03068566 263.86090088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03068567 263.86090088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03068568 263.86093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03068569 263.86093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03068570 263.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03068571 263.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03068572 263.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03068573 263.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03068574 263.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03068575 263.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03068576 263.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03068577 263.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03068578 263.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03068579 263.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03068580 263.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03068581 263.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03068582 263.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03068583 263.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03068584 263.86114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03068585 263.86114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03068586 263.86117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03068587 263.86117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03068588 263.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03068589 263.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03068590 263.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03068591 263.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03068592 263.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03068593 263.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03068594 263.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03068595 263.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03068596 263.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03068597 263.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03068598 263.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03068599 263.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03068600 263.86135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03068601 263.86135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03068602 263.86138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03068603 263.86138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03068604 263.86138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03068605 263.86138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03068606 263.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03068607 263.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03068608 263.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03068609 263.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03068610 263.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03068611 263.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03068612 263.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03068613 263.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03068614 263.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03068615 263.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03068616 263.86157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03068617 263.86157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03068618 263.86160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03068619 263.86160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03068620 263.86163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03068621 263.86163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03068622 263.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03068623 263.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03068624 263.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03068625 263.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03068626 263.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03068627 263.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03068628 263.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03068629 263.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03068630 263.86175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03068631 263.86175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03068632 263.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03068633 263.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03068634 263.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03068635 263.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03068636 263.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03068637 263.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03068638 263.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03068639 263.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03068640 263.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03068641 263.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03068642 263.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03068643 263.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03068644 263.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03068645 263.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03068646 263.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03068647 263.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03068648 263.86199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03068649 263.86199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03068650 263.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03068651 263.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03068652 263.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03068653 263.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03068654 263.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03068655 263.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03068656 263.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03068657 263.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03068658 263.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03068659 263.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03068660 263.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03068661 263.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03068662 263.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03068663 263.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03068664 263.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03068665 263.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03068666 263.86224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03068667 263.86224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03068668 263.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03068669 263.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03068670 263.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03068671 263.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03068672 263.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03068673 263.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03068674 263.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03068675 263.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03068676 263.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03068677 263.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03068678 263.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03068679 263.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03068680 263.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03068681 263.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03068682 263.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03068683 263.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03068684 263.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03068685 263.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03068686 263.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03068687 263.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03068688 263.86254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03068689 263.86254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03068690 263.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03068691 263.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03068692 263.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03068693 263.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03068694 263.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03068695 263.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03068696 263.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03068697 263.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03068698 263.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03068699 263.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03068700 263.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03068701 263.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03068702 263.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03068703 263.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03068704 263.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03068705 263.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03068706 263.86279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03068707 263.86279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03068708 263.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03068709 263.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03068710 263.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03068711 263.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03068712 263.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03068713 263.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03068714 263.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03068715 263.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03068716 263.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03068717 263.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03068718 263.86294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03068719 263.86294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03068720 263.86297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03068721 263.86297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03068722 263.86300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03068723 263.86300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03068724 263.86303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03068725 263.86303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03068726 263.86306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03068727 263.86306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03068728 263.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03068729 263.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03068730 263.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03068731 263.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03068732 263.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03068733 263.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03068734 263.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03068735 263.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03068736 263.86318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03068737 263.86318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03068738 263.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03068739 263.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03068740 263.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03068741 263.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03068742 263.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03068743 263.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03068744 263.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03068745 263.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03068746 263.86334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03068747 263.86334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03068748 263.86337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03068749 263.86337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03068750 263.86340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03068751 263.86340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03068752 263.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03068753 263.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03068754 263.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03068755 263.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03068756 263.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03068757 263.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03068758 263.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03068759 263.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03068760 263.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03068761 263.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03068762 263.86355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03068763 263.86358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03068764 263.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03068765 263.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03068766 263.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03068767 263.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03068768 263.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03068769 263.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03068770 263.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03068771 263.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03068772 263.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03068773 263.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03068774 263.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03068775 263.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03068776 263.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03068777 263.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03068778 263.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03068779 263.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03068780 263.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03068781 263.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03068782 263.86383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03068783 263.86383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03068784 263.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03068785 263.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03068786 263.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03068787 263.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03068788 263.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03068789 263.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03068790 263.86395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03068791 263.86395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03068792 263.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03068793 263.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03068794 263.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03068795 263.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03068796 263.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03068797 263.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03068798 263.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03068799 263.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03068800 263.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03068801 263.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03068802 263.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03068803 263.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03068804 263.86413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03068805 263.86413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03068806 263.86416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03068807 263.86416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03068808 263.86419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03068809 263.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03068810 263.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03068811 263.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03068812 263.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03068813 263.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03068814 263.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03068815 263.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03068816 263.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03068817 263.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03068818 263.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03068819 263.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03068820 263.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03068821 263.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03068822 263.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03068823 263.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03068824 263.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03068825 263.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03068826 263.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03068827 263.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03068828 263.86447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03068829 263.86447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03068830 263.86450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03068831 263.86450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03068832 263.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03068833 263.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03068834 263.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03068835 263.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03068836 263.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03068837 263.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03068838 263.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03068839 263.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03068840 263.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03068841 263.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03068842 263.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03068843 263.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03068844 263.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03068845 263.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03068846 263.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03068847 263.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03068848 263.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03068849 263.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03068850 263.86477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03068851 263.86477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03068852 263.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03068853 263.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03068854 263.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03068855 263.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03068856 263.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03068857 263.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03068858 263.86489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03068859 263.86489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03068860 263.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03068861 263.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03068862 263.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03068863 263.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03068864 263.86499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03068865 263.86499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03068866 263.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03068867 263.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03068868 263.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03068869 263.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03068870 263.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03068871 263.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03068872 263.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03068873 263.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03068874 263.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03068875 263.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03068876 263.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03068877 263.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03068878 263.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03068879 263.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03068880 263.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03068881 263.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03068882 263.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03068883 263.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03068884 263.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03068885 263.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03068886 263.86529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03068887 263.86529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03068888 263.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03068889 263.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03068890 263.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03068891 263.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03068892 263.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03068893 263.86538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03068894 263.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03068895 263.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03068896 263.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03068897 263.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03068898 263.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03068899 263.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03068900 263.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03068901 263.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03068902 263.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03068903 263.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03068904 263.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03068905 263.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03068906 263.86557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03068907 263.86557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03068908 263.86560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03068909 263.86560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03068910 263.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03068911 263.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03068912 263.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03068913 263.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03072710 263.91781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -03072711 263.91781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -03072712 263.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -03072713 263.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -03072714 263.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -03072715 263.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -03072716 263.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -03072717 263.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -03072718 263.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -03072719 263.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -03072720 263.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -03072721 263.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -03072722 263.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -03072723 263.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -03072724 263.91799927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -03072725 263.91799927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -03072726 263.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -03072727 263.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -03072728 263.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -03072729 263.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfd8 -03072730 263.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -03072731 263.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfe8 -03072732 263.91812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -03072733 263.91812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbff8 -03072734 263.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -03072735 263.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc008 -03072736 263.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -03072737 263.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc018 -03072738 263.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -03072739 263.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc028 -03072740 263.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -03072741 263.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc038 -03072742 263.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -03072743 263.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc048 -03072744 263.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -03072745 263.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc058 -03072746 263.91830444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -03072747 263.91830444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc068 -03072748 263.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -03072749 263.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc078 -03072750 263.91836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -03072751 263.91836548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc088 -03072752 263.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -03072753 263.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc098 -03076964 263.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14438 -03076965 263.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14438 -03076966 263.97708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14448 -03076967 263.97708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14448 -03076968 263.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14458 -03076969 263.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14458 -03076970 263.97714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14468 -03076971 263.97714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14468 -03076972 263.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14478 -03076973 263.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14478 -03076974 263.97720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -03076975 263.97720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14488 -03076976 263.97720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -03076977 263.97720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14498 -03076978 263.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -03076979 263.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144a8 -03076980 263.97726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -03076981 263.97726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144b8 -03076982 263.97729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -03076983 263.97732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -03076984 263.97732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -03076985 263.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -03076986 263.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -03076987 263.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -03076988 263.97738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -03076989 263.97738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -03076990 263.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -03076991 263.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -03076992 263.97744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -03076993 263.97744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -03076994 263.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -03076995 263.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -03076996 263.97750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -03076997 263.97750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -03076998 263.97750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -03076999 263.97750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -03077000 263.97753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -03077001 263.97753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -03077002 263.97756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -03077003 263.97756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -03077004 263.97760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -03077005 263.97760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -03077006 263.97763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -03077007 263.97763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -03082892 264.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -03082893 264.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd78 -03082894 264.06192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -03082895 264.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd88 -03082896 264.06198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -03082897 264.06198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd98 -03082898 264.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -03082899 264.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fda8 -03082900 264.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -03082901 264.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdb8 -03082902 264.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -03082903 264.06204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdc8 -03082904 264.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd8 -03082905 264.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdd8 -03082906 264.06210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde8 -03082907 264.06210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fde8 -03082908 264.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf8 -03082909 264.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fdf8 -03082910 264.06216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe08 -03082911 264.06216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe08 -03082912 264.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe18 -03082913 264.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe18 -03082914 264.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe28 -03082915 264.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe28 -03082916 264.06222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -03082917 264.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe38 -03082918 264.06228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -03082919 264.06228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -03082920 264.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -03082921 264.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -03082922 264.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -03082923 264.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -03082924 264.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -03082925 264.06234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -03082926 264.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -03082927 264.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -03082928 264.06240845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -03082929 264.06240845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -03082930 264.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -03082931 264.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -03082932 264.06246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -03082933 264.06246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -03082934 264.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -03082935 264.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -03088130 264.13540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a128 -03088131 264.13540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a128 -03088132 264.13543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a138 -03088133 264.13543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a138 -03088134 264.13543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a148 -03088135 264.13543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a148 -03088136 264.13546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a158 -03088137 264.13546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a158 -03088138 264.13549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a168 -03088139 264.13549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a168 -03088140 264.13552856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a178 -03088141 264.13555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a178 -03088142 264.13558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a188 -03088143 264.13558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a188 -03088144 264.13558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a198 -03088145 264.13558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a198 -03088146 264.13562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a8 -03088147 264.13562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1a8 -03088148 264.13565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b8 -03088149 264.13565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1b8 -03088150 264.13568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c8 -03088151 264.13568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1c8 -03088152 264.13571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d8 -03088153 264.13571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1d8 -03088154 264.13574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e8 -03088155 264.13574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1e8 -03088156 264.13574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f8 -03088157 264.13574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a1f8 -03088158 264.13577271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a208 -03088159 264.13580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a208 -03088160 264.13583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a218 -03088161 264.13583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a218 -03088162 264.13586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a228 -03088163 264.13586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a228 -03088164 264.13589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a238 -03088165 264.13589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a238 -03088166 264.13592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a248 -03088167 264.13592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a248 -03088168 264.13592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a258 -03088169 264.13592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a258 -03088170 264.13595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a268 -03088171 264.13595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a268 -03088172 264.13598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a278 -03088173 264.13598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a278 -03093418 264.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -03093419 264.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -03093420 264.20925903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -03093421 264.20928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -03093422 264.20932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -03093423 264.20932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -03093424 264.20932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03093425 264.20932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03093426 264.20935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -03093427 264.20935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -03093428 264.20938110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -03093429 264.20938110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -03093430 264.20941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -03093431 264.20941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -03093432 264.20944214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -03093433 264.20944214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -03093434 264.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -03093435 264.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -03093436 264.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -03093437 264.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -03093438 264.20950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -03093439 264.20950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -03093440 264.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -03093441 264.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -03093442 264.20956421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -03093443 264.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346e8 -03093444 264.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -03093445 264.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346f8 -03093446 264.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -03093447 264.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34708 -03093448 264.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -03093449 264.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34718 -03093450 264.20968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -03093451 264.20968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34728 -03093452 264.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -03093453 264.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34738 -03093454 264.20974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -03093455 264.20974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -03093456 264.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -03093457 264.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -03093458 264.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -03093459 264.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -03093460 264.20980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -03093461 264.20980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -03108727 264.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52488 -03108728 264.42312622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52498 -03108729 264.42312622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52498 -03108730 264.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a8 -03108731 264.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524a8 -03108732 264.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b8 -03108733 264.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524b8 -03108734 264.42318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c8 -03108735 264.42318726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524c8 -03108736 264.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d8 -03108737 264.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524d8 -03108738 264.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e8 -03108739 264.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524e8 -03108740 264.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f8 -03108741 264.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x524f8 -03108742 264.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52508 -03108743 264.42330933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52508 -03108744 264.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52518 -03108745 264.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52518 -03108746 264.42337036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52528 -03108747 264.42337036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52528 -03108748 264.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52538 -03108749 264.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52538 -03108750 264.42343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52548 -03108751 264.42343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52548 -03108752 264.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52558 -03108753 264.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52558 -03108754 264.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52568 -03108755 264.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52568 -03108756 264.42349243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52578 -03108757 264.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52578 -03108758 264.42355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52588 -03108759 264.42355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52588 -03108760 264.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52598 -03108761 264.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52598 -03108762 264.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a8 -03108763 264.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525a8 -03108764 264.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b8 -03108765 264.42361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525b8 -03108766 264.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c8 -03108767 264.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525c8 -03108768 264.42367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d8 -03108769 264.42367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525d8 -03108770 264.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x525e8 -03109005 264.47976685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03109006 265.24243164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03109007 265.26235962 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109008 265.26235962 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03109009 265.66329956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03109010 265.66329956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03109011 265.66333008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03109012 265.66333008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03109013 265.66336060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03109014 265.66336060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03109015 265.66342163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03109016 265.66342163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03109017 265.66342163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03109018 265.66342163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03109019 265.66345215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03109020 265.66345215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03109021 265.66348267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03109022 265.66348267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03109023 265.66351318 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03109024 265.66351318 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03109025 265.66354370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03109026 265.66354370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03109027 265.66357422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03109028 265.66357422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03109029 265.66360474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03109030 265.66360474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03109031 265.66360474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03109032 265.66363525 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03109033 265.66366577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03109034 265.66366577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03109035 265.66369629 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03109036 265.66369629 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03109037 265.66372681 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03109038 265.66372681 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03109039 265.66375732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03109040 265.66375732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03109041 265.66375732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03109042 265.66375732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03109043 265.66378784 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03109044 265.66378784 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03109045 265.66384888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03109046 265.66384888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03109047 265.66387939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03109048 265.66387939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03109049 265.66390991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03109050 265.66390991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03109051 265.66390991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03109052 265.66390991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03109053 265.66394043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03109054 265.66394043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03109055 265.66397095 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03109056 265.66397095 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03109057 265.66400146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03109058 265.66403198 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03109059 265.66406250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03109060 265.66406250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03109061 265.66406250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03109062 265.66406250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03109063 265.66409302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03109064 265.66409302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03109065 265.66412354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03109066 265.66412354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03109067 265.66415405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03109068 265.66415405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03109069 265.66418457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03109070 265.66421509 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03109071 265.66424561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03109072 265.66424561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03109073 265.66424561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03109074 265.66424561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03109075 265.66427612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03109076 265.66427612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03109077 265.66430664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03109078 265.66430664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03109079 265.66433716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03109080 265.66433716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03109081 265.66439819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03109082 265.66439819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03109083 265.66439819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03109084 265.66439819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03109085 265.66442871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03109086 265.66442871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03109087 265.66445923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03109088 265.66445923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03109089 265.66448975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03109090 265.66448975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03109091 265.66452026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03109092 265.66452026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03109093 265.66455078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03109094 265.66455078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03109095 265.66458130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03109096 265.66458130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03109097 265.66461182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03109098 265.66461182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03109099 265.66464233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03109100 265.66464233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03109101 265.66467285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03109102 265.66467285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03109103 265.66470337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03109104 265.66470337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03109105 265.66470337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03109106 265.66473389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03109107 265.66476440 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03109108 265.66476440 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03109109 265.66479492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03109110 265.66479492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03109111 265.66482544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03109112 265.66482544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03109113 265.66485596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03109114 265.66485596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03109115 265.66485596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03109116 265.66485596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03109117 265.66488647 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03109118 265.66488647 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03109119 265.66491699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03109120 265.66494751 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03109121 265.66497803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03109122 265.66497803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03109123 265.66500854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03109124 265.66500854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03109125 265.66503906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03109126 265.66503906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03109127 265.66503906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03109128 265.66503906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03109129 265.66506958 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03109130 265.66506958 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03109131 265.66510010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03109132 265.66513062 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03109133 265.66516113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03109134 265.66519165 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03109135 265.66519165 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03109136 265.66519165 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03109137 265.66522217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03109138 265.66522217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03109139 265.66525269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03109140 265.66525269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03109141 265.66528320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03109142 265.66528320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03109143 265.66531372 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03109144 265.66531372 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03109145 265.66534424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03109146 265.66534424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03109147 265.66537476 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03109148 265.66537476 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03109149 265.66540527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03109150 265.66540527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03109151 265.66543579 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03109152 265.66543579 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03109153 265.66546631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03109154 265.66546631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03109155 265.66549683 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03109156 265.66549683 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03109157 265.66552734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03109158 265.66552734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03109159 265.66555786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03109160 265.66555786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03109161 265.66558838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03109162 265.66558838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03109163 265.66561890 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03109164 265.66561890 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03109165 265.66564941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03109166 265.66564941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03109167 265.66564941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03109168 265.66564941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03109169 265.66571045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03109170 265.66571045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03109171 265.66574097 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03109172 265.66574097 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03109173 265.66577148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03109174 265.66577148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03109175 265.66580200 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03109176 265.66580200 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03109177 265.66583252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03109178 265.66583252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03109179 265.66583252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03109180 265.66586304 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03109181 265.66589355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03109182 265.66589355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03109183 265.66592407 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03109184 265.66592407 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03109185 265.66595459 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03109186 265.66595459 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03109187 265.66598511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03109188 265.66598511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03109189 265.66598511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03109190 265.66598511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03109191 265.66601563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03109192 265.66604614 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03109193 265.66607666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03109194 265.66607666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03109195 265.66610718 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03109196 265.66610718 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03109197 265.66613770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03109198 265.66613770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03109199 265.66613770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03109200 265.66613770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03109201 265.66616821 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03109202 265.66616821 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03109203 265.66622925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03109204 265.66622925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03109205 265.66625977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03109206 265.66625977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03109207 265.66629028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03109208 265.66629028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03109209 265.66629028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03109210 265.66629028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03109211 265.66632080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03109212 265.66632080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03109213 265.66635132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03109214 265.66638184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03109215 265.66641235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03109216 265.66641235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03109217 265.66644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03109218 265.66644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03109219 265.66644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03109220 265.66644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03109221 265.66647339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03109222 265.66647339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03109223 265.66650391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03109224 265.66650391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03109225 265.66653442 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03109226 265.66656494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03109227 265.66659546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03109228 265.66659546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03109229 265.66662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03109230 265.66662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03109231 265.66662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03109232 265.66662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03109233 265.66665649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03109234 265.66665649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03109235 265.66668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03109236 265.66668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03109237 265.66671753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03109238 265.66674805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03109239 265.66677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03109240 265.66677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03109241 265.66677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03109242 265.66677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03109243 265.66680908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03109244 265.66680908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03109245 265.66683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03109246 265.66683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03109247 265.66687012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03109248 265.66687012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03109249 265.66693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03109250 265.66693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03109251 265.66693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03109252 265.66693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03109253 265.66696167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03109254 265.66696167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03109255 265.66699219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03109256 265.66699219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03109257 265.66702271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03109258 265.66702271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03109259 265.66705322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03109260 265.66705322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03109261 265.66708374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03109262 265.66708374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03109263 265.66711426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03109264 265.66711426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03109265 265.66714478 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03109266 265.66714478 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03109267 265.66717529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03109268 265.66717529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03109269 265.66720581 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03109270 265.66720581 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03109271 265.66723633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03109272 265.66723633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03109273 265.66723633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03109274 265.66723633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03109275 265.66729736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03109276 265.66729736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03109277 265.66732788 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03109278 265.66732788 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03109279 265.66735840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03109280 265.66735840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03109281 265.66738892 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03109282 265.66738892 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03109283 265.66741943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03109284 265.66741943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03109285 265.66741943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03109286 265.66744995 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03109287 265.66748047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03109288 265.66748047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03109289 265.66751099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03109290 265.66751099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03109291 265.66754150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03109292 265.66754150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03109293 265.66757202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03109294 265.66757202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03109295 265.66757202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03109296 265.66757202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03109297 265.66760254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03109298 265.66760254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03109299 265.66766357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03109300 265.66766357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03109301 265.66769409 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03109302 265.66769409 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03109303 265.66772461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03109304 265.66772461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03109305 265.66772461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03109306 265.66772461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03109307 265.66775513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03109308 265.66775513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03109309 265.66778564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03109310 265.66778564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03109311 265.66784668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03109312 265.66784668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03109313 265.66787720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03109314 265.66787720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03109315 265.66787720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03109316 265.66787720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03109317 265.66790771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03109318 265.66790771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03109319 265.66793823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03109320 265.66793823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03109321 265.66796875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03109322 265.66799927 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03109323 265.66802979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03109324 265.66802979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03109325 265.66802979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03109326 265.66802979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03109327 265.66806030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03109328 265.66806030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03109329 265.66809082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03109330 265.66809082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03109331 265.66812134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03109332 265.66812134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03109333 265.66815186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03109334 265.66818237 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03109335 265.66821289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03109336 265.66821289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03109337 265.66821289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03109338 265.66821289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03109339 265.66824341 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03109340 265.66824341 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03109341 265.66827393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03109342 265.66827393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03109343 265.66830444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03109344 265.66830444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03109345 265.66833496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03109346 265.66836548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03109347 265.66836548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03109348 265.66836548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03109349 265.66839600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03109350 265.66839600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03109351 265.66842651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03109352 265.66842651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03109353 265.66845703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03109354 265.66845703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03109355 265.66848755 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03109356 265.66848755 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03109357 265.66851807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03109358 265.66851807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03109359 265.66854858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03109360 265.66854858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03109361 265.66857910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03109362 265.66857910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03109363 265.66860962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03109364 265.66860962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03109365 265.66864014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03109366 265.66864014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03109367 265.66867065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03109368 265.66867065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03109369 265.66867065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03109370 265.66867065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03109371 265.66870117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03109372 265.66870117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03109373 265.66873169 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03109374 265.66876221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03109375 265.66879272 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03109376 265.66879272 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03109377 265.66882324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03109378 265.66882324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03109379 265.66882324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03109380 265.66882324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03109381 265.66885376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03109382 265.66885376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03109383 265.66888428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03109384 265.66888428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03109385 265.66891479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03109386 265.66891479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03109387 265.66894531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03109388 265.66894531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03109389 265.66897583 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03109390 265.66897583 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03109391 265.66900635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03109392 265.66900635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03109393 265.66903687 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03109394 265.66903687 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03109395 265.66906738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03109396 265.66906738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03109397 265.66909790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03109398 265.66909790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03109399 265.66912842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03109400 265.66912842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03109401 265.66915894 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03109402 265.66915894 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03109403 265.66918945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03109404 265.66918945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03109405 265.66921997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03109406 265.66921997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03109407 265.66925049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03109408 265.66925049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03109409 265.66928101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03109410 265.66928101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03109411 265.66931152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03109412 265.66931152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03109413 265.66931152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03109414 265.66931152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03109415 265.66934204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03109416 265.66937256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03109417 265.66940308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03109418 265.66940308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03109419 265.66943359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03109420 265.66943359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03109421 265.66946411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03109422 265.66946411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03109423 265.66946411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03109424 265.66946411 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03109425 265.66949463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03109426 265.66949463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03109427 265.66952515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03109428 265.66952515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03109429 265.66955566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03109430 265.66958618 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03109431 265.66961670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03109432 265.66961670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03109433 265.66964722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03109434 265.66964722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03109435 265.66964722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03109436 265.66964722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03109437 265.66967773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03109438 265.66967773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03109439 265.66970825 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03109440 265.66970825 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03109441 265.66973877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03109442 265.66973877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03109443 265.66979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03109444 265.66979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03109445 265.66979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03109446 265.66979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03109447 265.66983032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03109448 265.66983032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03109449 265.66986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03109450 265.66986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03109451 265.66989136 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03109452 265.66989136 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03109453 265.66992188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03109454 265.66992188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03109455 265.66995239 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03109456 265.66995239 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03109457 265.66998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03109458 265.66998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03109459 265.67001343 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03109460 265.67001343 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03109461 265.67004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03109462 265.67004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03109463 265.67007446 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03109464 265.67007446 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03109465 265.67010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03109466 265.67010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03109467 265.67010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03109468 265.67010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03109469 265.67013550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03109470 265.67013550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03109471 265.67016602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03109472 265.67016602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03109473 265.67022705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03109474 265.67022705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03109475 265.67025757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03109476 265.67025757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03109477 265.67025757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03109478 265.67025757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03109479 265.67028809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03109480 265.67028809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03109481 265.67031860 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03109482 265.67031860 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03109483 265.67034912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03109484 265.67034912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03109485 265.67041016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03109486 265.67041016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03109487 265.67044067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03109488 265.67044067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03109489 265.67044067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03109490 265.67044067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03109491 265.67047119 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03109492 265.67047119 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03109493 265.67050171 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03109494 265.67050171 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03109495 265.67053223 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03109496 265.67053223 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03109497 265.67059326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03109498 265.67059326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03109499 265.67059326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03109500 265.67059326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03109501 265.67062378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03109502 265.67062378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03109503 265.67065430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03109504 265.67065430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03109505 265.67068481 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03109506 265.67068481 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03109507 265.67071533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03109508 265.67071533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03109509 265.67074585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03109510 265.67074585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03109511 265.67077637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03109512 265.67077637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03109513 265.67080688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03109514 265.67080688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03109515 265.67083740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03109516 265.67083740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03109517 265.67086792 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03109518 265.67086792 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03109519 265.67089844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03109520 265.67089844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03109521 265.67092896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03109522 265.67092896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03109523 265.67095947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03109524 265.67095947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03109525 265.67098999 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03109526 265.67098999 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03109527 265.67102051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03109528 265.67102051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03109529 265.67105103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03109530 265.67105103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03109531 265.67105103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03109532 265.67105103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03109533 265.67108154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03109534 265.67111206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03109535 265.67114258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03109536 265.67114258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03109537 265.67117310 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03109538 265.67117310 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03109539 265.67120361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03109540 265.67120361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03109541 265.67123413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03109542 265.67123413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03109543 265.67123413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03109544 265.67126465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03109545 265.67129517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03109546 265.67129517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03109547 265.67132568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03109548 265.67132568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03109549 265.67135620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03109550 265.67135620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03109551 265.67138672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03109552 265.67138672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03109553 265.67138672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03109554 265.67138672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03109555 265.67141724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03109556 265.67141724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03109557 265.67144775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03109558 265.67147827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03109559 265.67150879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03109560 265.67150879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03109561 265.67153931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03109562 265.67153931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03109563 265.67153931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03109564 265.67153931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03109565 265.67156982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03109566 265.67156982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03109567 265.67160034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03109568 265.67160034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03109569 265.67163086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03109570 265.67163086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03109571 265.67166138 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03109572 265.67169189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03109573 265.67169189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03109574 265.67169189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03109575 265.67172241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03109576 265.67172241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03109577 265.67175293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03109578 265.67175293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03109579 265.67178345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03109580 265.67178345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03113327 265.72659302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -03113328 265.72662354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9730 -03113329 265.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -03113330 265.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9740 -03113331 265.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -03113332 265.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9750 -03113333 265.72668457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -03113334 265.72668457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9760 -03113335 265.72671509 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -03113336 265.72671509 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9770 -03113337 265.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -03113338 265.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9780 -03113339 265.72677612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -03113340 265.72677612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9790 -03113341 265.72680664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -03113342 265.72680664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a0 -03113343 265.72683716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -03113344 265.72683716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b0 -03113345 265.72683716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -03113346 265.72683716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c0 -03113347 265.72686768 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -03113348 265.72689819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d0 -03113349 265.72692871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -03113350 265.72692871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e0 -03113351 265.72695923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -03113352 265.72695923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f0 -03113353 265.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -03113354 265.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9800 -03113355 265.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -03113356 265.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9810 -03113357 265.72702026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -03113358 265.72702026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9820 -03113359 265.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -03113360 265.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9830 -03113361 265.72708130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -03113362 265.72708130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9840 -03113363 265.72711182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -03113364 265.72711182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9850 -03113365 265.72714233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -03113366 265.72714233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9860 -03113367 265.72714233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -03113368 265.72717285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9870 -03113369 265.72720337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -03113370 265.72720337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9880 -03126729 265.91635132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -03126730 265.91635132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a00 -03126731 265.91635132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -03126732 265.91635132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a10 -03126733 265.91638184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -03126734 265.91638184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a20 -03126735 265.91641235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -03126736 265.91641235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a30 -03126737 265.91644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -03126738 265.91644287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a40 -03126739 265.91647339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -03126740 265.91647339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a50 -03126741 265.91650391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -03126742 265.91650391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a60 -03126743 265.91650391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -03126744 265.91653442 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a70 -03126745 265.91656494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -03126746 265.91656494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a80 -03126747 265.91659546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -03126748 265.91659546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a90 -03126749 265.91662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -03126750 265.91662598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa0 -03126751 265.91665649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -03126752 265.91665649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab0 -03126753 265.91668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -03126754 265.91668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac0 -03126755 265.91668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -03126756 265.91668701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad0 -03126757 265.91671753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -03126758 265.91674805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae0 -03126759 265.91677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -03126760 265.91677856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af0 -03126761 265.91680908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -03126762 265.91680908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b00 -03126763 265.91683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -03126764 265.91683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b10 -03126765 265.91683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -03126766 265.91683960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b20 -03126767 265.91687012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -03126768 265.91687012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b30 -03126769 265.91690063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -03126770 265.91690063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b40 -03126771 265.91693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -03126772 265.91693115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b50 -03131257 265.98324585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -03131258 265.98324585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c780 -03131259 265.98327637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -03131260 265.98327637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c790 -03131261 265.98330688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -03131262 265.98330688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7a0 -03131263 265.98333740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -03131264 265.98333740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7b0 -03131265 265.98336792 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -03131266 265.98339844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7c0 -03131267 265.98339844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -03131268 265.98339844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7d0 -03131269 265.98342896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -03131270 265.98342896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7e0 -03131271 265.98345947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -03131272 265.98345947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c7f0 -03131273 265.98348999 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -03131274 265.98348999 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c800 -03131275 265.98352051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -03131276 265.98352051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c810 -03131277 265.98355103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -03131278 265.98355103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c820 -03131279 265.98355103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -03131280 265.98355103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c830 -03131281 265.98358154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -03131282 265.98358154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c840 -03131283 265.98361206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -03131284 265.98361206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c850 -03131285 265.98364258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -03131286 265.98364258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c860 -03131287 265.98367310 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -03131288 265.98370361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c870 -03131289 265.98370361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -03131290 265.98370361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c880 -03131291 265.98373413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -03131292 265.98373413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c890 -03131293 265.98376465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -03131294 265.98376465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a0 -03131295 265.98379517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -03131296 265.98379517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b0 -03131297 265.98382568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -03131298 265.98382568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c0 -03131299 265.98385620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -03131300 265.98385620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d0 -03136959 266.06408691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -03136960 266.06408691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -03136961 266.06411743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -03136962 266.06411743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -03136963 266.06411743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -03136964 266.06411743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -03136965 266.06414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -03136966 266.06414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -03136967 266.06417847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -03136968 266.06417847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -03136969 266.06420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -03136970 266.06420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -03136971 266.06423950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -03136972 266.06427002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -03136973 266.06427002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -03136974 266.06427002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -03136975 266.06430054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -03136976 266.06430054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -03136977 266.06433105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -03136978 266.06433105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -03136979 266.06436157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -03136980 266.06436157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -03136981 266.06439209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -03136982 266.06439209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -03136983 266.06442261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -03136984 266.06442261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -03136985 266.06442261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -03136986 266.06442261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a80 -03136987 266.06445313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -03136988 266.06445313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a90 -03136989 266.06448364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -03136990 266.06448364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa0 -03136991 266.06451416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -03136992 266.06454468 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab0 -03136993 266.06457520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -03136994 266.06457520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac0 -03136995 266.06457520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -03136996 266.06457520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad0 -03136997 266.06460571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -03136998 266.06460571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae0 -03136999 266.06463623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -03137000 266.06463623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af0 -03137001 266.06466675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -03137002 266.06466675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b00 -03142895 266.14804077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -03142896 266.14804077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43330 -03142897 266.14807129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -03142898 266.14807129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43340 -03142899 266.14810181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -03142900 266.14810181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43350 -03142901 266.14813232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -03142902 266.14813232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43360 -03142903 266.14813232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -03142904 266.14813232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43370 -03142905 266.14816284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -03142906 266.14816284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43380 -03142907 266.14819336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -03142908 266.14822388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43390 -03142909 266.14825439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -03142910 266.14825439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433a0 -03142911 266.14828491 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -03142912 266.14828491 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433b0 -03142913 266.14831543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -03142914 266.14831543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433c0 -03142915 266.14831543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -03142916 266.14831543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433d0 -03142917 266.14834595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -03142918 266.14834595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433e0 -03142919 266.14837646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -03142920 266.14837646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x433f0 -03142921 266.14840698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -03142922 266.14840698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43400 -03142923 266.14843750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -03142924 266.14843750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43410 -03142925 266.14846802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -03142926 266.14846802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43420 -03142927 266.14846802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -03142928 266.14846802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43430 -03142929 266.14852905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -03142930 266.14852905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43440 -03142931 266.14855957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -03142932 266.14855957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43450 -03142933 266.14859009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -03142934 266.14859009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43460 -03142935 266.14862061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -03142936 266.14862061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43470 -03142937 266.14862061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -03142938 266.14862061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43480 -03150903 266.68643188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150904 266.68646240 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150905 266.68649292 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150906 266.68652344 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03150907 266.68661499 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150908 266.68664551 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03150909 266.68670654 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150910 266.68670654 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03150911 267.26400757 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03150912 267.28363037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150913 267.28363037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150914 269.19268799 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150915 269.19271851 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150916 269.19274902 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150917 269.19274902 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03150918 269.19287109 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150919 269.19287109 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03150920 269.19293213 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03150921 269.19296265 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03150922 269.28460693 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03150923 269.30609131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150924 269.30609131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03150925 269.42855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03150926 269.42855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03150927 269.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03150928 269.42861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03150929 269.42861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03150930 269.42861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03150931 269.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03150932 269.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03150933 269.42868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03150934 269.42868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03150935 269.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03150936 269.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03150937 269.42874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03150938 269.42874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03150939 269.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03150940 269.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03150941 269.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03150942 269.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03150943 269.42880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03150944 269.42880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03150945 269.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03150946 269.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03150947 269.42886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03150948 269.42886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03150949 269.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03150950 269.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03150951 269.42892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03150952 269.42892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03150953 269.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03150954 269.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03150955 269.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03150956 269.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03150957 269.42898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03150958 269.42898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03150959 269.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03150960 269.42904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03150961 269.42904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03150962 269.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03150963 269.42910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03150964 269.42910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03150965 269.42910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03150966 269.42910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03150967 269.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03150968 269.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03150969 269.42916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03150970 269.42916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03150971 269.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03150972 269.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03150973 269.42922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03150974 269.42922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03150975 269.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03150976 269.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03150977 269.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03150978 269.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03150979 269.42929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03150980 269.42929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03150981 269.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03150982 269.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03150983 269.42935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03150984 269.42935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03150985 269.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03150986 269.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03150987 269.42941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03150988 269.42941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03150989 269.42941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03150990 269.42941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03150991 269.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03150992 269.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03150993 269.42947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03150994 269.42947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03150995 269.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03150996 269.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03150997 269.42953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03150998 269.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03150999 269.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03151000 269.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03151001 269.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03151002 269.42959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03151003 269.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03151004 269.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03151005 269.42965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03151006 269.42965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03151007 269.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03151008 269.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03151009 269.42971802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03151010 269.42971802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03151011 269.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03151012 269.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03151013 269.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03151014 269.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03151015 269.42977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03151016 269.42977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03151017 269.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03151018 269.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03151019 269.42984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03151020 269.42984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03151021 269.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03151022 269.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03151023 269.42990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03151024 269.42990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03151025 269.42990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03151026 269.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03151027 269.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03151028 269.42996216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03151029 269.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03151030 269.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03151031 269.43002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03151032 269.43002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03151033 269.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03151034 269.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03151035 269.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03151036 269.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03151037 269.43008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03151038 269.43008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03151039 269.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03151040 269.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03151041 269.43014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03151042 269.43014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03151043 269.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03151044 269.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03151045 269.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03151046 269.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03151047 269.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03151048 269.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03151049 269.43026733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03151050 269.43026733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03151051 269.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03151052 269.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03151053 269.43032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03151054 269.43032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03151055 269.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03151056 269.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03151057 269.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03151058 269.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03151059 269.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03151060 269.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03151061 269.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03151062 269.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03151063 269.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03151064 269.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03151065 269.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03151066 269.43051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03151067 269.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03151068 269.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03151069 269.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03151070 269.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03151071 269.43057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03151072 269.43057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03151073 269.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03151074 269.43063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03151075 269.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03151076 269.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03151077 269.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03151078 269.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03151079 269.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03151080 269.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03151081 269.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03151082 269.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03151083 269.43075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03151084 269.43075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03151085 269.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03151086 269.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03151087 269.43081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03151088 269.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03151089 269.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03151090 269.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03151091 269.43087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03151092 269.43087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03151093 269.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03151094 269.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03151095 269.43093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03151096 269.43093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03151097 269.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03151098 269.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03151099 269.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03151100 269.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03151101 269.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03151102 269.43099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03151103 269.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03151104 269.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03151105 269.43106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03151106 269.43106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03151107 269.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03151108 269.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03151109 269.43112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03151110 269.43112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03151111 269.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03151112 269.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03151113 269.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03151114 269.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03151115 269.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03151116 269.43118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03151117 269.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03151118 269.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03151119 269.43124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03151120 269.43124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03151121 269.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03151122 269.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03151123 269.43130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03151124 269.43130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03151125 269.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03151126 269.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03151127 269.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03151128 269.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03151129 269.43136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03151130 269.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03151131 269.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03151132 269.43142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03151133 269.43145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03151134 269.43145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03151135 269.43148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03151136 269.43148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03151137 269.43148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03151138 269.43148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03151139 269.43151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03151140 269.43151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03151141 269.43154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03151142 269.43154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03151143 269.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03151144 269.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03151145 269.43161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03151146 269.43161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03151147 269.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03151148 269.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03151149 269.43167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03151150 269.43167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03151151 269.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03151152 269.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03151153 269.43173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03151154 269.43173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03151155 269.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03151156 269.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03151157 269.43179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03151158 269.43179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03151159 269.43179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03151160 269.43179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03151161 269.43182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03151162 269.43182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03151163 269.43185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03151164 269.43185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03151165 269.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03151166 269.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03151167 269.43191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03151168 269.43191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03151169 269.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03151170 269.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03151171 269.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03151172 269.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03151173 269.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03151174 269.43197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03151175 269.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03151176 269.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03151177 269.43203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03151178 269.43206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03151179 269.43206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03151180 269.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03151181 269.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03151182 269.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03151183 269.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03151184 269.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03151185 269.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03151186 269.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03151187 269.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03151188 269.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03151189 269.43222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03151190 269.43222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03151191 269.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03151192 269.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03151193 269.43228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03151194 269.43228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03151195 269.43228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03151196 269.43228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03151197 269.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03151198 269.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03151199 269.43234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03151200 269.43234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03151201 269.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03151202 269.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03151203 269.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03151204 269.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03151205 269.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03151206 269.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03151207 269.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03151208 269.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03151209 269.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03151210 269.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03151211 269.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03151212 269.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03151213 269.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03151214 269.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03151215 269.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03151216 269.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03151217 269.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03151218 269.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03151219 269.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03151220 269.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03151221 269.43264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03151222 269.43264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03151223 269.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03151224 269.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03151225 269.43270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03151226 269.43270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03151227 269.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03151228 269.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03151229 269.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03151230 269.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03151231 269.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03151232 269.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03151233 269.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03151234 269.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03151235 269.43289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03151236 269.43289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03151237 269.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03151238 269.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03151239 269.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03151240 269.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03151241 269.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03151242 269.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03151243 269.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03151244 269.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03151245 269.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03151246 269.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03151247 269.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03151248 269.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03151249 269.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03151250 269.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03151251 269.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03151252 269.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03151253 269.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03151254 269.43325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03151255 269.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03151256 269.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03151257 269.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03151258 269.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03151259 269.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03151260 269.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03151261 269.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03151262 269.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03151263 269.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03151264 269.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03151265 269.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03151266 269.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03151267 269.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03151268 269.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03151269 269.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03151270 269.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03151271 269.43362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03151272 269.43362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03151273 269.43368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03151274 269.43368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03151275 269.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03151276 269.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03151277 269.43374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03151278 269.43374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03151279 269.43377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03151280 269.43380737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03151281 269.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03151282 269.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03151283 269.43386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03151284 269.43386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03151285 269.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03151286 269.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03151287 269.43392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03151288 269.43392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03151289 269.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03151290 269.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03151291 269.43399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03151292 269.43399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03151293 269.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03151294 269.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03151295 269.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03151296 269.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03151297 269.43405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03151298 269.43405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03151299 269.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03151300 269.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03151301 269.43411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03151302 269.43411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03151303 269.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03151304 269.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03151305 269.43417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03151306 269.43417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03151307 269.43417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03151308 269.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03151309 269.43423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03151310 269.43423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03151311 269.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03151312 269.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03151313 269.43429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03151314 269.43429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03151315 269.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03151316 269.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03151317 269.43435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03151318 269.43435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03151319 269.43435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03151320 269.43435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03151321 269.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03151322 269.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03151323 269.43441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03151324 269.43441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03151325 269.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03151326 269.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03151327 269.43447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03151328 269.43447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03151329 269.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03151330 269.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03151331 269.43453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03151332 269.43453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03151333 269.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03151334 269.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03151335 269.43460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03151336 269.43460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03151337 269.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03151338 269.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03151339 269.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03151340 269.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03151341 269.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03151342 269.43466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03151343 269.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03151344 269.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03151345 269.43472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03151346 269.43472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03151347 269.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03151348 269.43478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03151349 269.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03151350 269.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03151351 269.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03151352 269.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03151353 269.43484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03151354 269.43484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03151355 269.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03151356 269.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03151357 269.43490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03151358 269.43490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03151359 269.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03151360 269.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03151361 269.43496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03151362 269.43496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03151363 269.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03151364 269.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03151365 269.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03151366 269.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03151367 269.43502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03151368 269.43502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03151369 269.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03151370 269.43508911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03151371 269.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03151372 269.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03151373 269.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03151374 269.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03151375 269.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03151376 269.43515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03151377 269.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03151378 269.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03151379 269.43521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03151380 269.43521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03151381 269.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03151382 269.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03151383 269.43527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03151384 269.43527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03151385 269.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03151386 269.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03151387 269.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03151388 269.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03151389 269.43533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03151390 269.43533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03151391 269.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03151392 269.43539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03151393 269.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03151394 269.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03151395 269.43545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03151396 269.43545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03151397 269.43545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03151398 269.43545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03151399 269.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03151400 269.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03151401 269.43551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03151402 269.43551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03151403 269.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03151404 269.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03151405 269.43557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03151406 269.43557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03151407 269.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03151408 269.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03151409 269.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03151410 269.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03151411 269.43563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03151412 269.43563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03151413 269.43566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03151414 269.43569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03151415 269.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03151416 269.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03151417 269.43576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03151418 269.43576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03151419 269.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03151420 269.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03151421 269.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03151422 269.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03151423 269.43582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03151424 269.43582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03151425 269.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03151426 269.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03151427 269.43588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03151428 269.43588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03151429 269.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03151430 269.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03151431 269.43594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03151432 269.43594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03151433 269.43594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03151434 269.43594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03151435 269.43597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03151436 269.43600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03151437 269.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03151438 269.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03151439 269.43606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03151440 269.43606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03151441 269.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03151442 269.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03151443 269.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03151444 269.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03151445 269.43612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03151446 269.43612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03151447 269.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03151448 269.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03151449 269.43618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03151450 269.43618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03151451 269.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03151452 269.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03151453 269.43624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03151454 269.43624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03151455 269.43624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03151456 269.43624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03151457 269.43627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03151458 269.43630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03151459 269.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03151460 269.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03151461 269.43637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03151462 269.43637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03151463 269.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03151464 269.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03151465 269.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03151466 269.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03151467 269.43643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03151468 269.43643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03151469 269.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03151470 269.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03151471 269.43649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03151472 269.43649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03151473 269.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03151474 269.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03151475 269.43655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03151476 269.43655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03151477 269.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03151478 269.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03151479 269.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03151480 269.43661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03151481 269.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03151482 269.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03151483 269.43667603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03151484 269.43667603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03151485 269.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03151486 269.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03151487 269.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03151488 269.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03151489 269.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03151490 269.43673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03151491 269.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03151492 269.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03151493 269.43679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03151494 269.43679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03151495 269.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03151496 269.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03151497 269.43685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03151498 269.43685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03151499 269.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03151500 269.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03151501 269.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03151502 269.43692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03151503 269.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03151504 269.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03151505 269.43698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03151506 269.43698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03151507 269.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03151508 269.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03151509 269.43704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03151510 269.43704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03151511 269.43704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03151512 269.43704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03151513 269.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03151514 269.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03151515 269.43710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03151516 269.43710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03151517 269.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03151518 269.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03151519 269.43716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03151520 269.43716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03151521 269.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03151522 269.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03151523 269.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03151524 269.43722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03151525 269.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03151526 269.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03151527 269.43728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03151528 269.43728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03151529 269.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03151530 269.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03151531 269.43734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03151532 269.43734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03151533 269.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03151534 269.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03151535 269.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03151536 269.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03151537 269.43740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03151538 269.43740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03151539 269.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03151540 269.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03151541 269.43746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03151542 269.43746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03151543 269.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03151544 269.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03151545 269.43753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03151546 269.43753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03151547 269.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03151548 269.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03151549 269.43759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03151550 269.43759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03151551 269.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03151552 269.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03151553 269.43765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03151554 269.43765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03151555 269.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03151556 269.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03151557 269.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03151558 269.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03151559 269.43771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03151560 269.43771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03151561 269.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03151562 269.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03151563 269.43777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03151564 269.43777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03151565 269.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03151566 269.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03151567 269.43783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03151568 269.43783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03151569 269.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03151570 269.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03151571 269.43789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03151572 269.43789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03151573 269.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03151574 269.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03151575 269.43795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03151576 269.43795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03151577 269.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03151578 269.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03151579 269.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03151580 269.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03151581 269.43801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03151582 269.43801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03151583 269.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03151584 269.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03151585 269.43807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03151586 269.43807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03151587 269.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03151588 269.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03151589 269.43814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03151590 269.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03151591 269.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03151592 269.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03151593 269.43820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03151594 269.43820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03151595 269.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03151596 269.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03151597 269.43826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03151598 269.43826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03151599 269.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03151600 269.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03151601 269.43832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03151602 269.43832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03151603 269.43832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03151604 269.43832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03151605 269.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03151606 269.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03151607 269.43838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03151608 269.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03151609 269.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03151610 269.43844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03151611 269.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03151612 269.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03151613 269.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03151614 269.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03151615 269.43850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03151616 269.43850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03151617 269.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03151618 269.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03151619 269.43856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03151620 269.43856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03151621 269.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03151622 269.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03151623 269.43862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03151624 269.43862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03151625 269.43862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03151626 269.43862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03151627 269.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03151628 269.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03151629 269.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03151630 269.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03151631 269.43875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03151632 269.43875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03151633 269.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03151634 269.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03151635 269.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03151636 269.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03151637 269.43881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03151638 269.43881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03151639 269.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03151640 269.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03151641 269.43887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03151642 269.43887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03151643 269.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03151644 269.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03151645 269.43893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03151646 269.43893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03151647 269.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03151648 269.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03151649 269.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03151650 269.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03151651 269.43899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03151652 269.43899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03151653 269.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03151654 269.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03151655 269.43905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03151656 269.43905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03151657 269.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03151658 269.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03151659 269.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03151660 269.43911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03151661 269.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03151662 269.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03151663 269.43917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03151664 269.43917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03151665 269.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03151666 269.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03151667 269.43923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03151668 269.43923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03151669 269.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03151670 269.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03151671 269.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03151672 269.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03151673 269.43930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03151674 269.43930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03151675 269.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03151676 269.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03151677 269.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03151678 269.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03151679 269.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03151680 269.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03151681 269.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03151682 269.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03151683 269.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03151684 269.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03151685 269.43948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03151686 269.43948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03151687 269.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03151688 269.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03151689 269.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03151690 269.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03151691 269.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03151692 269.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03151693 269.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03151694 269.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03151695 269.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03151696 269.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03151697 269.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03151698 269.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03151699 269.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03151700 269.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03151701 269.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03151702 269.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03151703 269.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03151704 269.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03151705 269.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03151706 269.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03151707 269.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03151708 269.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03151709 269.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03151710 269.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03151711 269.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03151712 269.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03151713 269.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03151714 269.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03151715 269.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03151716 269.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03151717 269.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03151718 269.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03151719 269.43997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03151720 269.43997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03151721 269.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03151722 269.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03151723 269.44003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03151724 269.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03151725 269.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03151726 269.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03151727 269.44009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03151728 269.44009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03151729 269.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03151730 269.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03151731 269.44015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03151732 269.44015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03151733 269.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03151734 269.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03151735 269.44021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03151736 269.44021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03151737 269.44021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03151738 269.44021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03151739 269.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03151740 269.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03151741 269.44027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03151742 269.44027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03151743 269.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03151744 269.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03151745 269.44033813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03151746 269.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03151747 269.44039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03151748 269.44039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03151749 269.44039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03151750 269.44039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03151751 269.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03151752 269.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03151753 269.44046021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03151754 269.44046021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03151755 269.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03151756 269.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03151757 269.44052124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03151758 269.44052124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03151759 269.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03151760 269.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03151761 269.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03151762 269.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03151763 269.44058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03151764 269.44058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03151765 269.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03151766 269.44064331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03151767 269.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03151768 269.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03151769 269.44070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03151770 269.44070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03151771 269.44070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03151772 269.44070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03151773 269.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03151774 269.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03151775 269.44076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03151776 269.44076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03151777 269.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03151778 269.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03151779 269.44082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03151780 269.44082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03151781 269.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03151782 269.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03151783 269.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03151784 269.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03151785 269.44088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03151786 269.44088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03151787 269.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03151788 269.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03151789 269.44094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03151790 269.44094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03151791 269.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03151792 269.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03151793 269.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03151794 269.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03151795 269.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03151796 269.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03151797 269.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03151798 269.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03151799 269.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03151800 269.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03151801 269.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03151802 269.44113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03151803 269.44113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03151804 269.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03151805 269.44119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03151806 269.44119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03151807 269.44119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03151808 269.44119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03151809 269.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03151810 269.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03151811 269.44125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03151812 269.44125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03151813 269.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03151814 269.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03151815 269.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03151816 269.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03151817 269.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03151818 269.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03151819 269.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03151820 269.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03151821 269.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03151822 269.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03151823 269.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03151824 269.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03151825 269.44143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03151826 269.44143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03151827 269.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03151828 269.44149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03151829 269.44149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03151830 269.44149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03151831 269.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03151832 269.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03151833 269.44155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03151834 269.44155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03151835 269.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03151836 269.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03151837 269.44161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03151838 269.44161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03151839 269.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03151840 269.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03151841 269.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03151842 269.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03151843 269.44168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03151844 269.44168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03151845 269.44171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03151846 269.44171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03151847 269.44174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03151848 269.44174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03151849 269.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03151850 269.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03151851 269.44180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03151852 269.44180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03151853 269.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03151854 269.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03151855 269.44186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03151856 269.44186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03151857 269.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03151858 269.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03151859 269.44192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03151860 269.44192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03151861 269.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03151862 269.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03151863 269.44198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03151864 269.44198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03151865 269.44198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03151866 269.44198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03151867 269.44201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03151868 269.44201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03151869 269.44204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03151870 269.44204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03151871 269.44207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03151872 269.44210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03151873 269.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03151874 269.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03151875 269.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03151876 269.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03151877 269.44216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03151878 269.44216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03151879 269.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03151880 269.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03151881 269.44223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03151882 269.44223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03151883 269.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03151884 269.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03151885 269.44229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03151886 269.44229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03151887 269.44229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03151888 269.44229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03151889 269.44232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03151890 269.44232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03151891 269.44235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03151892 269.44235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03151893 269.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03151894 269.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03151895 269.44241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03151896 269.44241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03151897 269.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03151898 269.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03151899 269.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03151900 269.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03151901 269.44247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03151902 269.44247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03151903 269.44250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03151904 269.44253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03151905 269.44253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03151906 269.44256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03151907 269.44259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03151908 269.44259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03151909 269.44259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03151910 269.44259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03151911 269.44262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03151912 269.44262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03151913 269.44265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03151914 269.44265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03151915 269.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03151916 269.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03151917 269.44271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03151918 269.44271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03151919 269.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03151920 269.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03151921 269.44277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03151922 269.44277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03151923 269.44277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03151924 269.44277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03151925 269.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03151926 269.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03151927 269.44284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03151928 269.44284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03151929 269.44287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03151930 269.44287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03151931 269.44290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03151932 269.44290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03151933 269.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03151934 269.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03151935 269.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03151936 269.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03151937 269.44296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03151938 269.44296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03151939 269.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03151940 269.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03151941 269.44302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03151942 269.44302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03151943 269.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03151944 269.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03151945 269.44308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03151946 269.44308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03151947 269.44308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03151948 269.44308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03151949 269.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03151950 269.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03151951 269.44314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03151952 269.44317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03151953 269.44317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03151954 269.44320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03151955 269.44320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03151956 269.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03151957 269.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03151958 269.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03151959 269.44326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03151960 269.44326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03151961 269.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03151962 269.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03151963 269.44332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03151964 269.44332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03151965 269.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03151966 269.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03151967 269.44338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03151968 269.44338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03151969 269.44338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03151970 269.44338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03151971 269.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03151972 269.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03151973 269.44345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03151974 269.44345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03151975 269.44348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03151976 269.44348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03151977 269.44351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03151978 269.44351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03151979 269.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03151980 269.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03151981 269.44357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03151982 269.44357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03151983 269.44357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03151984 269.44357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03151985 269.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03151986 269.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03151987 269.44363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03151988 269.44363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03151989 269.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03151990 269.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03151991 269.44369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03151992 269.44369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03151993 269.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03151994 269.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03151995 269.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03151996 269.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03151997 269.44375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03151998 269.44375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03151999 269.44378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03152000 269.44381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03152001 269.44381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03152002 269.44384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03152003 269.44387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03152004 269.44387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03152005 269.44387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03152006 269.44387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03152007 269.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03152008 269.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03152009 269.44393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03152010 269.44393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03152011 269.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03152012 269.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03152013 269.44400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03152014 269.44400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03152015 269.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03152016 269.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03152017 269.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03152018 269.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03152019 269.44406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03152020 269.44406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03152021 269.44409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03152022 269.44409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03152023 269.44412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03152024 269.44412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03152025 269.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03152026 269.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03152027 269.44418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03152028 269.44418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03152029 269.44418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03152030 269.44418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03152031 269.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03152032 269.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03152033 269.44424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03152034 269.44424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03152035 269.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03152036 269.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03152037 269.44430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03152038 269.44430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03152039 269.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03152040 269.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03152041 269.44436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03152042 269.44436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03152043 269.44436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03152044 269.44436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03152045 269.44439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03152046 269.44439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03152047 269.44442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03152048 269.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03152049 269.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03152050 269.44448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03152051 269.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03152052 269.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03152053 269.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03152054 269.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03152055 269.44454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03152056 269.44454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03152057 269.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03152058 269.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03152059 269.44461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03152060 269.44461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03152061 269.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03152062 269.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03152063 269.44467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03152064 269.44467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03152065 269.44467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03152066 269.44467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03152067 269.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03152068 269.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03155245 269.49008179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -03155246 269.49008179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -03155247 269.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -03155248 269.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -03155249 269.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -03155250 269.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -03155251 269.49014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -03155252 269.49014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -03155253 269.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -03155254 269.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -03155255 269.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -03155256 269.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -03155257 269.49023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -03155258 269.49023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -03155259 269.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -03155260 269.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -03155261 269.49029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -03155262 269.49029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -03155263 269.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -03155264 269.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -03155265 269.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -03155266 269.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -03155267 269.49038696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -03155268 269.49038696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -03155269 269.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -03155270 269.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -03155271 269.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -03155272 269.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -03155273 269.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -03155274 269.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -03155275 269.49047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -03155276 269.49047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -03155277 269.49050903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -03155278 269.49053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -03155279 269.49057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -03155280 269.49057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -03155281 269.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -03155282 269.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -03155283 269.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -03155284 269.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -03155285 269.49063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -03155286 269.49063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -03155287 269.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -03155288 269.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -03160507 269.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb8 -03160508 269.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bb8 -03160509 269.56423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc8 -03160510 269.56423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bc8 -03160511 269.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd8 -03160512 269.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bd8 -03160513 269.56430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be8 -03160514 269.56430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13be8 -03160515 269.56430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf8 -03160516 269.56430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13bf8 -03160517 269.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c08 -03160518 269.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c08 -03160519 269.56436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c18 -03160520 269.56436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c18 -03160521 269.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c28 -03160522 269.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c28 -03160523 269.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -03160524 269.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -03160525 269.56445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -03160526 269.56445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -03160527 269.56445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -03160528 269.56445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -03160529 269.56448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -03160530 269.56451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -03160531 269.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -03160532 269.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -03160533 269.56457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -03160534 269.56457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -03160535 269.56460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -03160536 269.56460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -03160537 269.56460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -03160538 269.56460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -03160539 269.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -03160540 269.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -03160541 269.56466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -03160542 269.56466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -03160543 269.56469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -03160544 269.56472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -03160545 269.56475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -03160546 269.56475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -03160547 269.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -03160548 269.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -03160549 269.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -03160550 269.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -03165975 269.64031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e698 -03165976 269.64035034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e698 -03165977 269.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a8 -03165978 269.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6a8 -03165979 269.64041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b8 -03165980 269.64041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6b8 -03165981 269.64041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c8 -03165982 269.64041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6c8 -03165983 269.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d8 -03165984 269.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6d8 -03165985 269.64047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e8 -03165986 269.64047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6e8 -03165987 269.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f8 -03165988 269.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e6f8 -03165989 269.64053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e708 -03165990 269.64053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e708 -03165991 269.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e718 -03165992 269.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e718 -03165993 269.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e728 -03165994 269.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e728 -03165995 269.64059448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e738 -03165996 269.64062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e738 -03165997 269.64065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e748 -03165998 269.64065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e748 -03165999 269.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -03166000 269.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e758 -03166001 269.64071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -03166002 269.64071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -03166003 269.64071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -03166004 269.64071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -03166005 269.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -03166006 269.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -03166007 269.64077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -03166008 269.64077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -03166009 269.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -03166010 269.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -03166011 269.64083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -03166012 269.64083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -03166013 269.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -03166014 269.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -03166015 269.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -03166016 269.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -03166017 269.64089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -03166018 269.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -03171741 269.72100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -03171742 269.72100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ac8 -03171743 269.72103882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad8 -03171744 269.72103882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ad8 -03171745 269.72106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae8 -03171746 269.72109985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ae8 -03171747 269.72109985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af8 -03171748 269.72109985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29af8 -03171749 269.72113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b08 -03171750 269.72113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b08 -03171751 269.72116089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b18 -03171752 269.72116089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b18 -03171753 269.72119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b28 -03171754 269.72119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b28 -03171755 269.72122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b38 -03171756 269.72122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b38 -03171757 269.72125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b48 -03171758 269.72125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b48 -03171759 269.72125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b58 -03171760 269.72125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b58 -03171761 269.72128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b68 -03171762 269.72128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b68 -03171763 269.72131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b78 -03171764 269.72131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b78 -03171765 269.72134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b88 -03171766 269.72137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b88 -03171767 269.72140503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b98 -03171768 269.72140503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b98 -03171769 269.72143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba8 -03171770 269.72143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ba8 -03171771 269.72143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb8 -03171772 269.72143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bb8 -03171773 269.72146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc8 -03171774 269.72146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bc8 -03171775 269.72149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd8 -03171776 269.72149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bd8 -03171777 269.72152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be8 -03171778 269.72152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29be8 -03171779 269.72155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf8 -03171780 269.72155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29bf8 -03171781 269.72158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c08 -03171782 269.72158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c08 -03171783 269.72158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c18 -03171784 269.72158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c18 -03185873 269.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45468 -03185874 269.91769409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45468 -03185875 269.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45478 -03185876 269.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45478 -03185877 269.91775513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45488 -03185878 269.91775513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45488 -03185879 269.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45498 -03185880 269.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45498 -03185881 269.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a8 -03185882 269.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454a8 -03185883 269.91781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b8 -03185884 269.91781616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454b8 -03185885 269.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c8 -03185886 269.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454c8 -03185887 269.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d8 -03185888 269.91787720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454d8 -03185889 269.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e8 -03185890 269.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454e8 -03185891 269.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f8 -03185892 269.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x454f8 -03185893 269.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45508 -03185894 269.91793823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45508 -03185895 269.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45518 -03185896 269.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45518 -03185897 269.91799927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45528 -03185898 269.91799927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45528 -03185899 269.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45538 -03185900 269.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45538 -03185901 269.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45548 -03185902 269.91806030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45548 -03185903 269.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45558 -03185904 269.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45558 -03185905 269.91812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45568 -03185906 269.91812134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45568 -03185907 269.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45578 -03185908 269.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45578 -03185909 269.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45588 -03185910 269.91818237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45588 -03185911 269.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45598 -03185912 269.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45598 -03185913 269.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a8 -03185914 269.91824341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x455a8 -03185915 269.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b8 -03185916 269.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x455b8 -03190449 269.98147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -03190450 269.98147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -03190451 269.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -03190452 269.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -03190453 269.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -03190454 269.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -03190455 269.98153687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -03190456 269.98153687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -03190457 269.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -03190458 269.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -03190459 269.98159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -03190460 269.98159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -03190461 269.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -03190462 269.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3c8 -03190463 269.98165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -03190464 269.98165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3d8 -03190465 269.98165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -03190466 269.98165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3e8 -03190467 269.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -03190468 269.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3f8 -03190469 269.98171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -03190470 269.98171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e408 -03190471 269.98175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -03190472 269.98178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e418 -03190473 269.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -03190474 269.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e428 -03190475 269.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -03190476 269.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e438 -03190477 269.98184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -03190478 269.98184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e448 -03190479 269.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -03190480 269.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e458 -03190481 269.98190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -03190482 269.98190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e468 -03190483 269.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -03190484 269.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e478 -03190485 269.98196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -03190486 269.98196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e488 -03190487 269.98196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -03190488 269.98196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e498 -03190489 269.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -03190490 269.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4a8 -03190491 269.98202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -03190492 269.98202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e4b8 -03192811 271.30825806 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03192812 271.32696533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192813 271.32699585 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192814 271.69909668 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192815 271.69915771 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192816 271.69918823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192817 271.69918823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03192818 271.69931030 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192819 271.69931030 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192820 271.69934082 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192821 271.69937134 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192822 271.91302490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -03192823 271.91305542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03192824 272.44860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192825 273.32897949 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03192826 273.34826660 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192827 273.34829712 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192828 274.20629883 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192829 274.20629883 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192830 274.20632935 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03192831 274.20635986 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03192832 274.20645142 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192833 274.20645142 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192834 274.20654297 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03192835 274.20657349 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03192836 275.01483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03192837 275.01486206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03192838 275.01489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03192839 275.01489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03192840 275.01492310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03192841 275.01492310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03192842 275.01492310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03192843 275.01495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03192844 275.01495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03192845 275.01498413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03192846 275.01501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03192847 275.01501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03192848 275.01504517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03192849 275.01504517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03192850 275.01507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03192851 275.01507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03192852 275.01510620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03192853 275.01510620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03192854 275.01510620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03192855 275.01510620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03192856 275.01513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03192857 275.01513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03192858 275.01516724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03192859 275.01516724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03192860 275.01519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03192861 275.01519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03192862 275.01522827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03192863 275.01522827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03192864 275.01525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03192865 275.01525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03192866 275.01525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03192867 275.01525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03192868 275.01528931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03192869 275.01528931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03192870 275.01531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03192871 275.01531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03192872 275.01535034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03192873 275.01535034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03192874 275.01538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03192875 275.01538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03192876 275.01541138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03192877 275.01541138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03192878 275.01541138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03192879 275.01541138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03192880 275.01544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03192881 275.01544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03192882 275.01547241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03192883 275.01550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03192884 275.01553345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03192885 275.01553345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03192886 275.01556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03192887 275.01556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03192888 275.01556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03192889 275.01556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03192890 275.01559448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03192891 275.01559448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03192892 275.01562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03192893 275.01562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03192894 275.01565552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03192895 275.01565552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03192896 275.01568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03192897 275.01568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03192898 275.01571655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03192899 275.01571655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03192900 275.01571655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03192901 275.01571655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03192902 275.01574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03192903 275.01574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03192904 275.01577759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03192905 275.01577759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03192906 275.01580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03192907 275.01580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03192908 275.01583862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03192909 275.01586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03192910 275.01589966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03192911 275.01589966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03192912 275.01589966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03192913 275.01589966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03192914 275.01593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03192915 275.01593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03192916 275.01596069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03192917 275.01596069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03192918 275.01599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03192919 275.01599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03192920 275.01602173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03192921 275.01602173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03192922 275.01605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03192923 275.01605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03192924 275.01605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03192925 275.01605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03192926 275.01608276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03192927 275.01608276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03192928 275.01611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03192929 275.01614380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03192930 275.01617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03192931 275.01617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03192932 275.01620483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03192933 275.01620483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03192934 275.01620483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03192935 275.01620483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03192936 275.01623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03192937 275.01623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03192938 275.01626587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03192939 275.01626587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03192940 275.01629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03192941 275.01629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03192942 275.01632690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03192943 275.01632690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03192944 275.01635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03192945 275.01635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03192946 275.01635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03192947 275.01635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03192948 275.01638794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03192949 275.01641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03192950 275.01644897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03192951 275.01644897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03192952 275.01647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03192953 275.01647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03192954 275.01651001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03192955 275.01651001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03192956 275.01651001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03192957 275.01651001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03192958 275.01654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03192959 275.01654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03192960 275.01660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03192961 275.01660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03192962 275.01663208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03192963 275.01663208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03192964 275.01666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03192965 275.01666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03192966 275.01669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03192967 275.01669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03192968 275.01669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03192969 275.01669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03192970 275.01672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03192971 275.01675415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03192972 275.01678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03192973 275.01678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03192974 275.01681519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03192975 275.01681519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03192976 275.01684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03192977 275.01684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03192978 275.01684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03192979 275.01684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03192980 275.01687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03192981 275.01687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03192982 275.01690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03192983 275.01690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03192984 275.01693726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03192985 275.01693726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03192986 275.01696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03192987 275.01696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03192988 275.01699829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03192989 275.01699829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03192990 275.01699829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03192991 275.01699829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03192992 275.01702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03192993 275.01702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03192994 275.01705933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03192995 275.01705933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03192996 275.01708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03192997 275.01708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03192998 275.01712036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03192999 275.01712036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03193000 275.01715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03193001 275.01715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03193002 275.01715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03193003 275.01718140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03193004 275.01721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03193005 275.01721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03193006 275.01724243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03193007 275.01724243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03193008 275.01727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03193009 275.01727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03193010 275.01730347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03193011 275.01730347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03193012 275.01730347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03193013 275.01730347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03193014 275.01733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03193015 275.01733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03193016 275.01736450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03193017 275.01736450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03193018 275.01739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03193019 275.01739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03193020 275.01742554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03193021 275.01742554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03193022 275.01745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03193023 275.01748657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03193024 275.01748657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03193025 275.01748657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03193026 275.01751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03193027 275.01751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03193028 275.01754761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03193029 275.01754761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03193030 275.01757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03193031 275.01757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03193032 275.01760864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03193033 275.01760864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03193034 275.01763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03193035 275.01763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03193036 275.01763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03193037 275.01763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03193038 275.01766968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03193039 275.01766968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03193040 275.01770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03193041 275.01770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03193042 275.01773071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03193043 275.01773071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03193044 275.01776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03193045 275.01776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03193046 275.01779175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03193047 275.01779175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03193048 275.01779175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03193049 275.01779175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03193050 275.01782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03193051 275.01785278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03193052 275.01785278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03193053 275.01788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03193054 275.01791382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03193055 275.01791382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03193056 275.01794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03193057 275.01794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03193058 275.01794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03193059 275.01794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03193060 275.01797485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03193061 275.01797485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03193062 275.01800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03193063 275.01800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03193064 275.01803589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03193065 275.01803589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03193066 275.01806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03193067 275.01806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03193068 275.01809692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03193069 275.01809692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03193070 275.01809692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03193071 275.01809692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03193072 275.01812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03193073 275.01812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03193074 275.01815796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03193075 275.01815796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03193076 275.01818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03193077 275.01818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03193078 275.01821899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03193079 275.01821899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03193080 275.01824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03193081 275.01824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03193082 275.01828003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03193083 275.01828003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03193084 275.01828003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03193085 275.01828003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03193086 275.01831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03193087 275.01831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03193088 275.01834106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03193089 275.01834106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03193090 275.01837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03193091 275.01837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03193092 275.01840210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03193093 275.01843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03193094 275.01843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03193095 275.01843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03193096 275.01846313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03193097 275.01846313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03193098 275.01849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03193099 275.01849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03193100 275.01852417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03193101 275.01852417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03193102 275.01855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03193103 275.01855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03193104 275.01858521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03193105 275.01858521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03193106 275.01858521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03193107 275.01858521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03193108 275.01861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03193109 275.01861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03193110 275.01864624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03193111 275.01864624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03193112 275.01867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03193113 275.01867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03193114 275.01870728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03193115 275.01870728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03193116 275.01873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03193117 275.01873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03193118 275.01873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03193119 275.01873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03193120 275.01876831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03193121 275.01876831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03193122 275.01879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03193123 275.01882935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03193124 275.01885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03193125 275.01885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03193126 275.01889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03193127 275.01889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03193128 275.01889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03193129 275.01889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03193130 275.01892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03193131 275.01892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03193132 275.01895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03193133 275.01895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03193134 275.01898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03193135 275.01898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03193136 275.01901245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03193137 275.01901245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03193138 275.01904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03193139 275.01904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03193140 275.01907349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03193141 275.01907349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03193142 275.01907349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03193143 275.01907349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03193144 275.01910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03193145 275.01910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03193146 275.01913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03193147 275.01913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03193148 275.01916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03193149 275.01916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03193150 275.01919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03193151 275.01919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03193152 275.01922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03193153 275.01922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03193154 275.01922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03193155 275.01925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03193156 275.01925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03193157 275.01928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03193158 275.01931763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03193159 275.01931763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03193160 275.01934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03193161 275.01934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03193162 275.01937866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03193163 275.01937866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03193164 275.01937866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03193165 275.01937866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03193166 275.01940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03193167 275.01940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03193168 275.01943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03193169 275.01943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03193170 275.01947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03193171 275.01947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03193172 275.01950073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03193173 275.01950073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03193174 275.01953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03193175 275.01953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03193176 275.01953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03193177 275.01953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03193178 275.01956177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03193179 275.01956177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03193180 275.01959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03193181 275.01959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03193182 275.01962280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03193183 275.01962280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03193184 275.01965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03193185 275.01965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03193186 275.01968384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03193187 275.01968384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03193188 275.01971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03193189 275.01971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03193190 275.01971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03193191 275.01971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03193192 275.01980591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03193193 275.01980591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03193194 275.01983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03193195 275.01983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03193196 275.01986694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03193197 275.01986694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03193198 275.01986694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03193199 275.01986694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03193200 275.01989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03193201 275.01989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03193202 275.01992798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03193203 275.01992798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03193204 275.01995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03193205 275.01995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03193206 275.01998901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03193207 275.01998901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03193208 275.02001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03193209 275.02001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03193210 275.02001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03193211 275.02001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03193212 275.02005005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03193213 275.02005005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03193214 275.02008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03193215 275.02008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03193216 275.02011108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03193217 275.02011108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03193218 275.02014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03193219 275.02014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03193220 275.02017212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03193221 275.02017212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03193222 275.02017212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03193223 275.02017212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03193224 275.02020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03193225 275.02020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03193226 275.02023315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03193227 275.02023315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03193228 275.02026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03193229 275.02029419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03193230 275.02029419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03193231 275.02032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03193232 275.02032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03193233 275.02032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03193234 275.02035522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03193235 275.02035522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03193236 275.02038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03193237 275.02038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03193238 275.02041626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03193239 275.02041626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03193240 275.02044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03193241 275.02044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03193242 275.02047729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03193243 275.02047729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03193244 275.02050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03193245 275.02050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03193246 275.02050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03193247 275.02050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03193248 275.02053833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03193249 275.02053833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03193250 275.02056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03193251 275.02056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03193252 275.02059937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03193253 275.02059937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03193254 275.02062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03193255 275.02062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03193256 275.02066040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03193257 275.02066040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03193258 275.02066040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03193259 275.02066040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03193260 275.02069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03193261 275.02069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03193262 275.02072144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03193263 275.02072144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03193264 275.02075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03193265 275.02075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03193266 275.02078247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03193267 275.02078247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03193268 275.02081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03193269 275.02081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03193270 275.02081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03193271 275.02084351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03193272 275.02084351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03193273 275.02087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03193274 275.02090454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03193275 275.02090454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03193276 275.02093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03193277 275.02093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03193278 275.02096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03193279 275.02096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03193280 275.02096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03193281 275.02096558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03193282 275.02099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03193283 275.02099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03193284 275.02102661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03193285 275.02102661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03193286 275.02105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03193287 275.02105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03193288 275.02108765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03193289 275.02108765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03193290 275.02111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03193291 275.02111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03193292 275.02111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03193293 275.02111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03193294 275.02114868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03193295 275.02114868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03193296 275.02117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03193297 275.02117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03193298 275.02120972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03193299 275.02124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03193300 275.02127075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03193301 275.02127075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03193302 275.02130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03193303 275.02130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03193304 275.02130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03193305 275.02130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03193306 275.02133179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03193307 275.02133179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03193308 275.02136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03193309 275.02136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03193310 275.02139282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03193311 275.02139282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03193312 275.02142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03193313 275.02142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03193314 275.02145386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03193315 275.02145386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03193316 275.02145386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03193317 275.02145386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03193318 275.02148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03193319 275.02148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03193320 275.02151489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03193321 275.02151489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03193322 275.02154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03193323 275.02154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03193324 275.02157593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03193325 275.02157593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03193326 275.02160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03193327 275.02160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03193328 275.02160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03193329 275.02160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03193330 275.02163696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03193331 275.02163696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03193332 275.02166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03193333 275.02169800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03193334 275.02169800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03193335 275.02172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03193336 275.02175903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03193337 275.02175903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03193338 275.02175903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03193339 275.02175903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03193340 275.02178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03193341 275.02178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03193342 275.02182007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03193343 275.02182007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03193344 275.02185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03193345 275.02185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03193346 275.02188110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03193347 275.02188110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03193348 275.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03193349 275.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03193350 275.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03193351 275.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03193352 275.02194214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03193353 275.02194214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03193354 275.02197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03193355 275.02197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03193356 275.02200317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03193357 275.02200317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03193358 275.02203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03193359 275.02203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03193360 275.02206421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03193361 275.02206421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03193362 275.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03193363 275.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03193364 275.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03193365 275.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03193366 275.02212524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03193367 275.02212524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03193368 275.02215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03193369 275.02215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03193370 275.02218628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03193371 275.02218628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03193372 275.02221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03193373 275.02221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03193374 275.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03193375 275.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03193376 275.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03193377 275.02227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03193378 275.02230835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03193379 275.02230835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03193380 275.02233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03193381 275.02233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03193382 275.02236938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03193383 275.02236938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03193384 275.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03193385 275.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03193386 275.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03193387 275.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03193388 275.02243042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03193389 275.02243042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03193390 275.02246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03193391 275.02246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03193392 275.02249146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03193393 275.02249146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03193394 275.02252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03193395 275.02252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03193396 275.02255249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03193397 275.02255249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03193398 275.02255249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03193399 275.02255249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03193400 275.02258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03193401 275.02258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03193402 275.02261353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03193403 275.02261353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03193404 275.02264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03193405 275.02264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03193406 275.02267456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03193407 275.02267456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03193408 275.02270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03193409 275.02270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03193410 275.02270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03193411 275.02270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03193412 275.02273560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03193413 275.02273560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03193414 275.02279663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03193415 275.02279663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03193416 275.02282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03193417 275.02282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03193418 275.02285767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03193419 275.02285767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03193420 275.02288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03193421 275.02288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03193422 275.02288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03193423 275.02288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03193424 275.02291870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03193425 275.02291870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03193426 275.02294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03193427 275.02294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03193428 275.02297974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03193429 275.02297974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03193430 275.02301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03193431 275.02304077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03193432 275.02304077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03193433 275.02304077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03193434 275.02307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03193435 275.02307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03193436 275.02310181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03193437 275.02310181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03193438 275.02313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03193439 275.02313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03193440 275.02316284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03193441 275.02316284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03193442 275.02319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03193443 275.02319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03193444 275.02319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03193445 275.02319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03193446 275.02322388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03193447 275.02322388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03193448 275.02325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03193449 275.02328491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03193450 275.02331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03193451 275.02331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03193452 275.02334595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03193453 275.02334595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03193454 275.02334595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03193455 275.02334595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03193456 275.02337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03193457 275.02337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03193458 275.02340698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03193459 275.02340698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03193460 275.02343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03193461 275.02343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03193462 275.02346802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03193463 275.02346802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03193464 275.02349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03193465 275.02349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03193466 275.02349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03193467 275.02352905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03193468 275.02352905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03193469 275.02355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03193470 275.02359009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03193471 275.02362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03193472 275.02365112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03193473 275.02365112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03193474 275.02368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03193475 275.02368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03193476 275.02368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03193477 275.02368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03193478 275.02371216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03193479 275.02371216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03193480 275.02374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03193481 275.02374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03193482 275.02377319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03193483 275.02377319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03193484 275.02380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03193485 275.02380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03193486 275.02383423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03193487 275.02383423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03193488 275.02383423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03193489 275.02383423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03193490 275.02386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03193491 275.02386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03193492 275.02389526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03193493 275.02389526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03193494 275.02392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03193495 275.02392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03193496 275.02395630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03193497 275.02398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03193498 275.02398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03193499 275.02398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03193500 275.02401733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03193501 275.02401733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03193502 275.02404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03193503 275.02404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03193504 275.02407837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03193505 275.02407837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03193506 275.02410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03193507 275.02410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03193508 275.02413940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03193509 275.02413940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03193510 275.02413940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03193511 275.02413940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03193512 275.02416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03193513 275.02416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03193514 275.02420044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03193515 275.02420044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03193516 275.02423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03193517 275.02423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03193518 275.02426147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03193519 275.02426147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03193520 275.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03193521 275.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03193522 275.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03193523 275.02429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03193524 275.02432251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03193525 275.02432251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03193526 275.02435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03193527 275.02435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03193528 275.02438354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03193529 275.02438354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03193530 275.02441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03193531 275.02441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03193532 275.02444458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03193533 275.02444458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03193534 275.02447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03193535 275.02447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03193536 275.02447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03193537 275.02447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03193538 275.02450562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03193539 275.02450562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03193540 275.02453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03193541 275.02456665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03193542 275.02456665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03193543 275.02459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03193544 275.02462769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03193545 275.02462769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03193546 275.02462769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03193547 275.02462769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03193548 275.02465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03193549 275.02465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03193550 275.02468872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03193551 275.02468872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03193552 275.02471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03193553 275.02471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03193554 275.02474976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03193555 275.02474976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03193556 275.02478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03193557 275.02478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03193558 275.02478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03193559 275.02478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03193560 275.02481079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03193561 275.02481079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03193562 275.02484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03193563 275.02487183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03193564 275.02490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03193565 275.02490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03193566 275.02493286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03193567 275.02493286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03193568 275.02493286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03193569 275.02493286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03193570 275.02496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03193571 275.02496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03193572 275.02499390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03193573 275.02499390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03193574 275.02502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03193575 275.02502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03193576 275.02505493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03193577 275.02505493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03193578 275.02508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03193579 275.02511597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03193580 275.02511597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03193581 275.02511597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03193582 275.02514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03193583 275.02514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03193584 275.02517700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03193585 275.02517700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03193586 275.02520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03193587 275.02520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03193588 275.02523804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03193589 275.02523804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03193590 275.02526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03193591 275.02526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03193592 275.02526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03193593 275.02526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03193594 275.02529907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03193595 275.02532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03193596 275.02536011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03193597 275.02536011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03193598 275.02539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03193599 275.02539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03193600 275.02542114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03193601 275.02542114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03193602 275.02542114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03193603 275.02542114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03193604 275.02545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03193605 275.02545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03193606 275.02548218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03193607 275.02548218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03193608 275.02551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03193609 275.02551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03193610 275.02554321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03193611 275.02554321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03193612 275.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03193613 275.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03193614 275.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03193615 275.02557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03193616 275.02560425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03193617 275.02560425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03193618 275.02563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03193619 275.02563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03193620 275.02566528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03193621 275.02566528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03193622 275.02569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03193623 275.02569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03193624 275.02572632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03193625 275.02572632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03193626 275.02572632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03193627 275.02575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03193628 275.02578735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03193629 275.02578735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03193630 275.02581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03193631 275.02581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03193632 275.02584839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03193633 275.02584839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03193634 275.02587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03193635 275.02587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03193636 275.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03193637 275.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03193638 275.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03193639 275.02590942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03193640 275.02593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03193641 275.02593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03193642 275.02597046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03193643 275.02597046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03193644 275.02600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03193645 275.02600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03193646 275.02603149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03193647 275.02603149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03193648 275.02606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03193649 275.02606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03193650 275.02609253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03193651 275.02609253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03193652 275.02612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03193653 275.02612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03193654 275.02615356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03193655 275.02615356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03193656 275.02618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03193657 275.02618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03193658 275.02621460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03193659 275.02621460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03193660 275.02621460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03193661 275.02621460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03193662 275.02624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03193663 275.02627563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03193664 275.02630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03193665 275.02630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03193666 275.02633667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03193667 275.02633667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03193668 275.02636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03193669 275.02636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03193670 275.02636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03193671 275.02636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03193672 275.02639771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03193673 275.02639771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03193674 275.02642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03193675 275.02642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03193676 275.02645874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03193677 275.02645874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03193678 275.02648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03193679 275.02648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03193680 275.02651978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03193681 275.02651978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03193682 275.02651978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03193683 275.02651978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03193684 275.02655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03193685 275.02655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03193686 275.02658081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03193687 275.02658081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03193688 275.02661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03193689 275.02661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03193690 275.02664185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03193691 275.02664185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03193692 275.02667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03193693 275.02667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03193694 275.02670288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03193695 275.02670288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03193696 275.02673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03193697 275.02673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03193698 275.02676392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03193699 275.02676392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03193700 275.02679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03193701 275.02679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03193702 275.02682495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03193703 275.02682495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03193704 275.02685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03193705 275.02685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03193706 275.02685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03193707 275.02685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03193708 275.02688599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03193709 275.02688599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03193710 275.02691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03193711 275.02691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03193712 275.02694702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03193713 275.02694702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03193714 275.02697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03193715 275.02697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03193716 275.02700806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03193717 275.02700806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03193718 275.02700806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03193719 275.02700806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03193720 275.02703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03193721 275.02703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03193722 275.02706909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03193723 275.02706909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03193724 275.02709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03193725 275.02709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03193726 275.02713013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03193727 275.02716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03193728 275.02716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03193729 275.02716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03193730 275.02719116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03193731 275.02719116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03193732 275.02722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03193733 275.02722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03193734 275.02725220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03193735 275.02725220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03193736 275.02728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03193737 275.02728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03193738 275.02731323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03193739 275.02731323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03193740 275.02731323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03193741 275.02731323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03193742 275.02734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03193743 275.02734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03193744 275.02737427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03193745 275.02737427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03193746 275.02740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03193747 275.02740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03193748 275.02743530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03193749 275.02743530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03193750 275.02746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03193751 275.02746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03193752 275.02749634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03193753 275.02749634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03193754 275.02749634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03193755 275.02749634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03193756 275.02752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03193757 275.02752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03193758 275.02755737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03193759 275.02755737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03193760 275.02758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03193761 275.02758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03193762 275.02761841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03193763 275.02761841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03193764 275.02764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03193765 275.02764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03193766 275.02764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03193767 275.02764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03193768 275.02767944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03193769 275.02767944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03193770 275.02770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03193771 275.02774048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03193772 275.02774048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03193773 275.02777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03193774 275.02780151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03193775 275.02780151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03193776 275.02780151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03193777 275.02780151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03193778 275.02783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03193779 275.02783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03193780 275.02786255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03193781 275.02786255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03193782 275.02789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03193783 275.02789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03193784 275.02792358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03193785 275.02792358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03193786 275.02795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03193787 275.02795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03193788 275.02795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03193789 275.02795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03193790 275.02798462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03193791 275.02798462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03193792 275.02801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03193793 275.02801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03193794 275.02804565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03193795 275.02804565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03193796 275.02807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03193797 275.02807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03193798 275.02810669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03193799 275.02810669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03193800 275.02810669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03193801 275.02810669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03193802 275.02813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03193803 275.02813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03193804 275.02816772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03193805 275.02816772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03193806 275.02819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03193807 275.02819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03193808 275.02822876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03193809 275.02822876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03193810 275.02825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03193811 275.02825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03193812 275.02828979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03193813 275.02828979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03193814 275.02828979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03193815 275.02832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03193816 275.02832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03193817 275.02835083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03193818 275.02838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03193819 275.02838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03193820 275.02841187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03193821 275.02841187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03193822 275.02844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03193823 275.02844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03193824 275.02844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03193825 275.02844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03193826 275.02847290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03193827 275.02847290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03193828 275.02850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03193829 275.02850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03193830 275.02853394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03193831 275.02853394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03193832 275.02856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03193833 275.02856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03193834 275.02859497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03193835 275.02859497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03193836 275.02859497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03193837 275.02859497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03193838 275.02862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03193839 275.02862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03193840 275.02865601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03193841 275.02865601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03193842 275.02868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03193843 275.02868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03193844 275.02871704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03193845 275.02871704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03193846 275.02874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03193847 275.02874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03193848 275.02874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03193849 275.02874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03193850 275.02877808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03193851 275.02877808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03193852 275.02880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03193853 275.02880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03193854 275.02883911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03193855 275.02883911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03193856 275.02886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03193857 275.02886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03193858 275.02890015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03193859 275.02890015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03193860 275.02893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03193861 275.02893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03193862 275.02896118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03193863 275.02896118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03193864 275.02899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03193865 275.02899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03193866 275.02902222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03193867 275.02902222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03193868 275.02905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03193869 275.02905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03193870 275.02908325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03193871 275.02908325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03193872 275.02908325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03193873 275.02908325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03193874 275.02911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03193875 275.02911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03193876 275.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03193877 275.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03193878 275.02917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03193879 275.02917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03193880 275.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03193881 275.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03193882 275.02923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03193883 275.02923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03193884 275.02923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03193885 275.02923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03193886 275.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03193887 275.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03193888 275.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03193889 275.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03193890 275.02932739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03193891 275.02932739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03193892 275.02935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03193893 275.02935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03193894 275.02938843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03193895 275.02938843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03193896 275.02938843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03193897 275.02938843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03193898 275.02941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03193899 275.02941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03193900 275.02944946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03193901 275.02944946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03193902 275.02947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03193903 275.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03193904 275.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03193905 275.02954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03193906 275.02954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03193907 275.02954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03193908 275.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03193909 275.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03193910 275.02960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03193911 275.02960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03193912 275.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03193913 275.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03193914 275.02966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03193915 275.02966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03193916 275.02969360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03193917 275.02969360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03193918 275.02969360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03193919 275.02969360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03193920 275.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03193921 275.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03193922 275.02975464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03193923 275.02975464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03193924 275.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03193925 275.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03193926 275.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03193927 275.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03193928 275.02984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03193929 275.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03193930 275.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03193931 275.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03193932 275.02990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03193933 275.02990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03193934 275.02993774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03193935 275.02993774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03193936 275.02996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03193937 275.02996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03193938 275.02999878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03193939 275.02999878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03193940 275.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03193941 275.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03193942 275.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03193943 275.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03193944 275.03005981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03193945 275.03005981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03193946 275.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03193947 275.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03193948 275.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03193949 275.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03193950 275.03015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03193951 275.03015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03193952 275.03018188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03193953 275.03018188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03193954 275.03021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03193955 275.03021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03193956 275.03024292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03193957 275.03024292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03193958 275.03027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03193959 275.03027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03193960 275.03030396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03193961 275.03030396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03193962 275.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03193963 275.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03193964 275.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03193965 275.03033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03193966 275.03036499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03193967 275.03036499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03193968 275.03039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03193969 275.03039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03193970 275.03042603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03193971 275.03042603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03193972 275.03045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03193973 275.03048706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03193974 275.03051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03193975 275.03051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03193976 275.03051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03193977 275.03051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03193978 275.03054810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03193979 275.03054810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03193980 275.03057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03193981 275.03057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03193982 275.03060913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03193983 275.03060913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03193984 275.03063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03193985 275.03063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03193986 275.03067017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03193987 275.03067017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03193988 275.03067017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03193989 275.03067017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03193990 275.03070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03193991 275.03070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03193992 275.03073120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03193993 275.03073120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03193994 275.03076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03193995 275.03079224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03193996 275.03082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03193997 275.03082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03193998 275.03082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03193999 275.03082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03194000 275.03085327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03194001 275.03085327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03194002 275.03088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03194003 275.03088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03194004 275.03091431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03194005 275.03091431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03194006 275.03094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03194007 275.03094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03194008 275.03097534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03194009 275.03097534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03194010 275.03097534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03194011 275.03097534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03194012 275.03100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03194013 275.03100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03194014 275.03103638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03194015 275.03103638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03194016 275.03106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03194017 275.03106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03194018 275.03109741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03194019 275.03109741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03194020 275.03112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03194021 275.03112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03194022 275.03112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03194023 275.03112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03194024 275.03115845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03194025 275.03115845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03194026 275.03118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03194027 275.03118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03194028 275.03121948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03194029 275.03125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03194030 275.03125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03194031 275.03128052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03194032 275.03131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03194033 275.03131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03194034 275.03131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03194035 275.03131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03194036 275.03134155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03194037 275.03134155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03194038 275.03137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03194039 275.03137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03194040 275.03140259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03194041 275.03140259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03194042 275.03143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03194043 275.03143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03194044 275.03146362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03194045 275.03146362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03194046 275.03146362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03194047 275.03146362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03194048 275.03149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03194049 275.03149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03194050 275.03152466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03194051 275.03152466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03194052 275.03155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03194053 275.03155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03194054 275.03158569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03194055 275.03158569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03194056 275.03161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03194057 275.03161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03194058 275.03161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03194059 275.03161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03194060 275.03164673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03194061 275.03164673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03194062 275.03167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03194063 275.03167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03194064 275.03170776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03194065 275.03170776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03194066 275.03173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03194067 275.03173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03194068 275.03176880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03194069 275.03176880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03194070 275.03176880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03194071 275.03176880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03194072 275.03179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03194073 275.03182983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03194074 275.03182983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03194075 275.03186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03194076 275.03189087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03194077 275.03189087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03194078 275.03192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03194079 275.03192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03194080 275.03192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03194081 275.03192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03194082 275.03195190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03194083 275.03195190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03194084 275.03198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03194085 275.03198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03194086 275.03201294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03194087 275.03201294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03194088 275.03204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03194089 275.03204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03194090 275.03207397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03194091 275.03207397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03194092 275.03210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03194093 275.03210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03194094 275.03210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03194095 275.03210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03194096 275.03213501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03194097 275.03213501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03194098 275.03216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03194099 275.03216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03194100 275.03219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03194101 275.03219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03194102 275.03222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03194103 275.03222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03194104 275.03225708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03194105 275.03225708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03194106 275.03225708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03194107 275.03225708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03194108 275.03228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03194109 275.03228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03194110 275.03231812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03194111 275.03231812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03194112 275.03234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03194113 275.03234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03194114 275.03237915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03194115 275.03237915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03194116 275.03240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03194117 275.03240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03194118 275.03240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03194119 275.03244019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03194120 275.03247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03194121 275.03247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03194122 275.03250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03194123 275.03250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03194124 275.03253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03194125 275.03253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03194126 275.03256226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03194127 275.03256226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03194128 275.03256226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03194129 275.03256226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03194130 275.03259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03194131 275.03259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03194132 275.03262329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03194133 275.03262329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03194134 275.03265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03194135 275.03265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03194136 275.03268433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03194137 275.03268433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03194138 275.03271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03194139 275.03271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03194140 275.03271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03194141 275.03271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03194142 275.03274536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03194143 275.03274536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03194144 275.03277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03194145 275.03277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03194146 275.03280640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03194147 275.03280640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03194148 275.03283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03194149 275.03286743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03194150 275.03289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03194151 275.03289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03194152 275.03289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03194153 275.03289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03194154 275.03292847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03194155 275.03292847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03194156 275.03295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03194157 275.03295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03194158 275.03298950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03194159 275.03298950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03194160 275.03302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03194161 275.03302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03194162 275.03305054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03194163 275.03305054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03194164 275.03305054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03194165 275.03305054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03194166 275.03308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03194167 275.03308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03194168 275.03311157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03194169 275.03314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03194170 275.03317261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03194171 275.03317261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03194172 275.03320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03194173 275.03320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03194174 275.03320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03194175 275.03320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03194176 275.03323364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03194177 275.03323364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03194178 275.03326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03194179 275.03326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03194180 275.03329468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03194181 275.03329468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03194182 275.03332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03194183 275.03332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03194184 275.03335571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03194185 275.03335571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03194186 275.03338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03194187 275.03338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03194188 275.03341675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03194189 275.03341675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03194190 275.03344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03194191 275.03344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03194192 275.03347778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03194193 275.03347778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03194194 275.03350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03194195 275.03350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03194196 275.03350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03194197 275.03350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03194198 275.03353882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03194199 275.03353882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03194200 275.03356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03194201 275.03356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03194202 275.03359985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03194203 275.03359985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03194204 275.03363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03194205 275.03363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03194206 275.03366089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03194207 275.03366089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03194208 275.03369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03194209 275.03369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03194210 275.03369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03194211 275.03369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03194212 275.03372192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03194213 275.03372192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03194214 275.03375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03194215 275.03375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03194216 275.03378296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03194217 275.03378296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03194218 275.03381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03194219 275.03381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03194220 275.03384399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03194221 275.03384399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03194222 275.03384399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03194223 275.03387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03194224 275.03387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03194225 275.03390503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03194226 275.03393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03194227 275.03393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03194228 275.03396606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03194229 275.03396606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03194230 275.03399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03194231 275.03399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03194232 275.03399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03194233 275.03399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03194234 275.03402710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03194235 275.03402710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03194236 275.03405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03194237 275.03405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03194238 275.03408813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03194239 275.03408813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03194240 275.03411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03194241 275.03411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03194242 275.03414917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03194243 275.03414917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03194244 275.03414917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03194245 275.03414917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03194246 275.03417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03194247 275.03417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03194248 275.03421021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03194249 275.03421021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03194250 275.03424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03194251 275.03424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03194252 275.03427124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03194253 275.03427124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03194254 275.03430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03194255 275.03430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03194256 275.03430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03194257 275.03430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03194258 275.03433228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03194259 275.03433228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03194260 275.03436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03194261 275.03436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03194262 275.03439331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03194263 275.03439331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03194264 275.03442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03194265 275.03442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03194266 275.03445435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03194267 275.03448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03194268 275.03448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03194269 275.03448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03194270 275.03451538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03194271 275.03451538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03194272 275.03454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03194273 275.03454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03194274 275.03457642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03194275 275.03457642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03194276 275.03460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03194277 275.03460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03194278 275.03463745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03194279 275.03463745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03194280 275.03463745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03194281 275.03463745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03194282 275.03466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03194283 275.03466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03194284 275.03469849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03194285 275.03469849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03194286 275.03472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03194287 275.03472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03194288 275.03475952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03194289 275.03475952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03194290 275.03479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03194291 275.03479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03194292 275.03479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03194293 275.03482056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03194294 275.03485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03194295 275.03485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03194296 275.03488159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03194297 275.03488159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03194298 275.03491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03194299 275.03491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03194300 275.03494263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03194301 275.03494263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03194302 275.03494263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03194303 275.03494263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03194304 275.03497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03194305 275.03497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03194306 275.03500366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03194307 275.03500366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03194308 275.03503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03194309 275.03503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03194310 275.03506470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03194311 275.03506470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03194312 275.03509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03194313 275.03509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03194314 275.03509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03194315 275.03509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03194316 275.03512573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03194317 275.03512573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03194318 275.03515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03194319 275.03515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03194320 275.03518677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03194321 275.03518677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03194322 275.03521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03194323 275.03521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03194324 275.03524780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03194325 275.03524780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03194326 275.03527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03194327 275.03527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03194328 275.03527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03194329 275.03527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03194330 275.03530884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03194331 275.03530884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03194332 275.03533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03194333 275.03533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03194334 275.03536987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03194335 275.03540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03194336 275.03540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03194337 275.03543091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03194338 275.03543091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03194339 275.03543091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03194340 275.03546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03194341 275.03546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03194342 275.03549194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03194343 275.03549194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03194344 275.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03194345 275.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03194346 275.03555298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03194347 275.03555298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03194348 275.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03194349 275.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03194350 275.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03194351 275.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03194352 275.03561401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03194353 275.03561401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03194354 275.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03194355 275.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03194356 275.03567505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03194357 275.03567505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03194358 275.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03194359 275.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03194360 275.03573608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03194361 275.03573608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03194362 275.03573608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03194363 275.03573608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03194364 275.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03194365 275.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03194366 275.03579712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03194367 275.03579712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03194368 275.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03194369 275.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03194370 275.03585815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03194371 275.03585815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03194372 275.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03194373 275.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03194374 275.03591919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03194375 275.03591919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03194376 275.03591919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03194377 275.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03194378 275.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03194379 275.03598022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03194380 275.03601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03194381 275.03601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03194382 275.03604126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03194383 275.03604126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03194384 275.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03194385 275.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03194386 275.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03194387 275.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03194388 275.03610229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03194389 275.03610229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03194390 275.03613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03194391 275.03613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03194392 275.03616333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03194393 275.03616333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03194394 275.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03194395 275.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03194396 275.03622437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03194397 275.03622437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03194398 275.03622437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03194399 275.03622437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03194400 275.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03194401 275.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03194402 275.03628540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03194403 275.03628540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03194404 275.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03194405 275.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03194406 275.03634644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03194407 275.03634644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03194408 275.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03194409 275.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03194410 275.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03194411 275.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03194412 275.03640747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03194413 275.03640747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03194414 275.03643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03194415 275.03643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03194416 275.03646851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03194417 275.03646851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03194418 275.03649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03194419 275.03649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03194420 275.03652954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03194421 275.03652954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03194422 275.03652954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03194423 275.03656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03194424 275.03659058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03194425 275.03659058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03194426 275.03662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03194427 275.03662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03194428 275.03665161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03194429 275.03665161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03194430 275.03668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03194431 275.03668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03194432 275.03671265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03194433 275.03671265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03194434 275.03671265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03194435 275.03671265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03194436 275.03674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03194437 275.03674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03194438 275.03677368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03194439 275.03677368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03194440 275.03680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03194441 275.03680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03194442 275.03683472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03194443 275.03686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03194444 275.03686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03194445 275.03686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03194446 275.03689575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03194447 275.03689575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03194448 275.03692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03194449 275.03692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03194450 275.03695679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03194451 275.03695679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03194452 275.03698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03194453 275.03698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03194454 275.03701782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03194455 275.03701782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03194456 275.03701782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03194457 275.03701782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03194458 275.03704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03194459 275.03704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03194460 275.03707886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03194461 275.03707886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03194462 275.03710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03194463 275.03713989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03194464 275.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03194465 275.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03194466 275.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03194467 275.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03194468 275.03720093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03194469 275.03720093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03194470 275.03723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03194471 275.03723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03194472 275.03726196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03194473 275.03726196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03194474 275.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03194475 275.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03194476 275.03732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03194477 275.03732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03194478 275.03732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03194479 275.03732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03194480 275.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03194481 275.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03194482 275.03738403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03194483 275.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03194484 275.03744507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03194485 275.03744507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03194486 275.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03194487 275.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03194488 275.03750610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03194489 275.03750610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03194490 275.03750610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03194491 275.03750610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03194492 275.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03194493 275.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03194494 275.03756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03194495 275.03756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03194496 275.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03194497 275.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03194498 275.03762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03194499 275.03762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03194500 275.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03194501 275.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03194502 275.03768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03194503 275.03768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03194504 275.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03194505 275.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03194506 275.03775024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03194507 275.03775024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03194508 275.03778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03194509 275.03778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03194510 275.03781128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03194511 275.03781128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03194512 275.03781128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03194513 275.03781128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03194514 275.03784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03194515 275.03784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03194516 275.03787231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03194517 275.03787231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03194518 275.03790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03194519 275.03793335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03194520 275.03796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03194521 275.03796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03194522 275.03796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03194523 275.03796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03194524 275.03799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03194525 275.03799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03194526 275.03802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03194527 275.03802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03194528 275.03805542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03194529 275.03805542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03194530 275.03808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03194531 275.03808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03194532 275.03811646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03194533 275.03811646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03194534 275.03811646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03194535 275.03811646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03194536 275.03814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03194537 275.03814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03194538 275.03817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03194539 275.03817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03194540 275.03820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03194541 275.03820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03194542 275.03823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03194543 275.03823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03194544 275.03826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03194545 275.03826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03194546 275.03829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03194547 275.03829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03194548 275.03829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03194549 275.03829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03194550 275.03833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03194551 275.03833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03194552 275.03836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03194553 275.03836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03194554 275.03839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03194555 275.03839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03194556 275.03842163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03194557 275.03845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03194558 275.03845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03194559 275.03845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03194560 275.03848267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03194561 275.03848267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03194562 275.03851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03194563 275.03851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03194564 275.03854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03194565 275.03854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03194566 275.03857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03194567 275.03857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03194568 275.03860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03194569 275.03860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03194570 275.03860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03194571 275.03860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03194572 275.03863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03194573 275.03863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03194574 275.03866577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03194575 275.03866577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03194576 275.03869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03194577 275.03869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03194578 275.03872681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03194579 275.03872681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03194580 275.03875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03194581 275.03875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03194582 275.03875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03194583 275.03875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03194584 275.03878784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03194585 275.03881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03194586 275.03884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03194587 275.03884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03194588 275.03887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03194589 275.03887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03194590 275.03890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03194591 275.03890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03194592 275.03890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03194593 275.03890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03194594 275.03894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03194595 275.03894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03194596 275.03897095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03194597 275.03897095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03194598 275.03900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03194599 275.03900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03194600 275.03903198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03194601 275.03903198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03194602 275.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03194603 275.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03194604 275.03909302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03194605 275.03909302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03194606 275.03909302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03194607 275.03909302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03194608 275.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03194609 275.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03194610 275.03915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03194611 275.03915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03194612 275.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03194613 275.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03194614 275.03921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03194615 275.03921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03194616 275.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03194617 275.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03194618 275.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03194619 275.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03194620 275.03927612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03194621 275.03927612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03194622 275.03930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03194623 275.03933716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03194624 275.03933716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03194625 275.03936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03194626 275.03939819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03194627 275.03939819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03194628 275.03939819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03194629 275.03939819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03194630 275.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03194631 275.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03194632 275.03945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03194633 275.03945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03194634 275.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03194635 275.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03194636 275.03952026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03194637 275.03952026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03194638 275.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03194639 275.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03194640 275.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03194641 275.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03194642 275.03958130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03194643 275.03958130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03194644 275.03961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03194645 275.03961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03194646 275.03964233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03194647 275.03964233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03194648 275.03967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03194649 275.03967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03194650 275.03970337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03194651 275.03970337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03194652 275.03970337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03194653 275.03970337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03194654 275.03973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03194655 275.03973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03194656 275.03976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03194657 275.03976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03194658 275.03979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03194659 275.03979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03194660 275.03982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03194661 275.03982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03194662 275.03985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03194663 275.03985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03194664 275.03988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03194665 275.03988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03194666 275.03988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03194667 275.03991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03194668 275.03994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03194669 275.03994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03194670 275.03997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03194671 275.03997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03194672 275.04000854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03194673 275.04000854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03194674 275.04003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03194675 275.04003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03194676 275.04003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03194677 275.04003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03194678 275.04006958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03194679 275.04006958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03194680 275.04010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03194681 275.04010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03194682 275.04013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03194683 275.04013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03194684 275.04016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03194685 275.04016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03194686 275.04019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03194687 275.04019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03194688 275.04019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03194689 275.04019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03194690 275.04022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03194691 275.04022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03194692 275.04025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03194693 275.04025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03194694 275.04028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03194695 275.04028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03194696 275.04031372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03194697 275.04031372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03194698 275.04034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03194699 275.04034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03194700 275.04034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03194701 275.04034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03194702 275.04037476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03194703 275.04037476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03194704 275.04040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03194705 275.04040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03194706 275.04043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03194707 275.04043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03194708 275.04046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03194709 275.04049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03194710 275.04049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03194711 275.04049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03194712 275.04052734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03194713 275.04052734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03194714 275.04055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03194715 275.04055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03194716 275.04058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03194717 275.04058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03194718 275.04061890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03194719 275.04061890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03194720 275.04064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03194721 275.04064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03194722 275.04067993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03194723 275.04067993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03194724 275.04067993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03194725 275.04067993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03194726 275.04071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03194727 275.04071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03194728 275.04074097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03194729 275.04074097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03194730 275.04077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03194731 275.04077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03194732 275.04080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03194733 275.04080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03194734 275.04083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03194735 275.04083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03194736 275.04086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03194737 275.04086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03194738 275.04089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03194739 275.04089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03194740 275.04092407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03194741 275.04092407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03194742 275.04095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03194743 275.04095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03194744 275.04098511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03194745 275.04098511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03194746 275.04098511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03194747 275.04098511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03194748 275.04101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03194749 275.04101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03194750 275.04104614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03194751 275.04104614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03194752 275.04107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03194753 275.04107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03194754 275.04110718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03194755 275.04110718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03194756 275.04113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03194757 275.04113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03194758 275.04113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03194759 275.04113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03194760 275.04116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03194761 275.04116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03194762 275.04119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03194763 275.04122925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03194764 275.04122925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03194765 275.04125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03194766 275.04129028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03194767 275.04129028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03194768 275.04132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03194769 275.04132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03194770 275.04132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03194771 275.04132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03194772 275.04135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03194773 275.04135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03194774 275.04138184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03194775 275.04138184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03194776 275.04141235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03194777 275.04141235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03194778 275.04144287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03194779 275.04144287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03194780 275.04147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03194781 275.04147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03194782 275.04147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03194783 275.04147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03194784 275.04150391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03194785 275.04150391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03194786 275.04153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03194787 275.04153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03194788 275.04156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03194789 275.04156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03194790 275.04159546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03194791 275.04159546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03194792 275.04162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03194793 275.04162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03194794 275.04162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03194795 275.04162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03194796 275.04165649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03194797 275.04165649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03194798 275.04168701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03194799 275.04168701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03194800 275.04171753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03194801 275.04171753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03194802 275.04174805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03194803 275.04174805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03194804 275.04177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03194805 275.04177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03194806 275.04177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03194807 275.04180908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03194808 275.04180908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03194809 275.04183960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03194810 275.04187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03194811 275.04187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03194812 275.04190063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03194813 275.04190063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03194814 275.04193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03194815 275.04193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03196390 275.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03196391 275.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -03196392 275.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03196393 275.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -03196394 275.06393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03196395 275.06393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -03196396 275.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03196397 275.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -03196398 275.06399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03196399 275.06399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -03196400 275.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03196401 275.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -03196402 275.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03196403 275.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -03196404 275.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03196405 275.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -03196406 275.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03196407 275.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -03196408 275.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03196409 275.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -03196410 275.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03196411 275.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -03196412 275.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03196413 275.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -03196414 275.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03196415 275.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -03196416 275.06423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03196417 275.06423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -03196418 275.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03196419 275.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -03196420 275.06430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03196421 275.06430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -03196422 275.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03196423 275.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -03196424 275.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03196425 275.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -03196426 275.06436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03196427 275.06436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -03196428 275.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03196429 275.06442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -03196430 275.06442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03196431 275.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -03196432 275.06448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03196433 275.06448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -03202893 275.15527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a88 -03202894 275.15530396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a98 -03202895 275.15530396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a98 -03202896 275.15536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa8 -03202897 275.15536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14aa8 -03202898 275.15536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab8 -03202899 275.15536499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ab8 -03202900 275.15542603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac8 -03202901 275.15542603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ac8 -03202902 275.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad8 -03202903 275.15548706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ad8 -03202904 275.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae8 -03202905 275.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae8 -03202906 275.15554810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -03202907 275.15554810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -03202908 275.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -03202909 275.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -03202910 275.15560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -03202911 275.15560913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -03202912 275.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -03202913 275.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -03202914 275.15567017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -03202915 275.15567017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -03202916 275.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -03202917 275.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -03202918 275.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -03202919 275.15573120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -03202920 275.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -03202921 275.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -03202922 275.15579224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -03202923 275.15579224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -03202924 275.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -03202925 275.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -03202926 275.15585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -03202927 275.15585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -03202928 275.15585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -03202929 275.15585327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -03202930 275.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -03202931 275.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -03202932 275.15591431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -03202933 275.15591431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -03202934 275.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -03202935 275.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -03202936 275.15597534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -03222503 275.44003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -03222504 275.44003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -03222505 275.44006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -03222506 275.44006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -03222507 275.44006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -03222508 275.44006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -03222509 275.44009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -03222510 275.44009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -03222511 275.44012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -03222512 275.44012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -03222513 275.44015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -03222514 275.44015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -03222515 275.44018555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -03222516 275.44021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -03222517 275.44021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -03222518 275.44021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -03222519 275.44024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -03222520 275.44024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -03222521 275.44027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -03222522 275.44027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -03222523 275.44030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -03222524 275.44030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -03222525 275.44033813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -03222526 275.44033813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -03222527 275.44036865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -03222528 275.44036865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -03222529 275.44039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -03222530 275.44039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -03222531 275.44039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -03222532 275.44039917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -03222533 275.44042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b038 -03222534 275.44042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b038 -03222535 275.44046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b048 -03222536 275.44049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b048 -03222537 275.44052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b058 -03222538 275.44052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b058 -03222539 275.44055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b068 -03222540 275.44055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b068 -03222541 275.44055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b078 -03222542 275.44055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b078 -03222543 275.44058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b088 -03222544 275.44058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b088 -03222545 275.44061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b098 -03222546 275.44061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b098 -03229125 275.53433228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e38 -03229126 275.53433228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e38 -03229127 275.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e48 -03229128 275.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e48 -03229129 275.53439331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e58 -03229130 275.53439331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e58 -03229131 275.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e68 -03229132 275.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e68 -03229133 275.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e78 -03229134 275.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e78 -03229135 275.53445435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e88 -03229136 275.53445435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e88 -03229137 275.53448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e98 -03229138 275.53451538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e98 -03229139 275.53454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea8 -03229140 275.53454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ea8 -03229141 275.53457642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb8 -03229142 275.53457642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47eb8 -03229143 275.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec8 -03229144 275.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec8 -03229145 275.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed8 -03229146 275.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed8 -03229147 275.53463745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee8 -03229148 275.53463745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee8 -03229149 275.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef8 -03229150 275.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef8 -03229151 275.53469849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f08 -03229152 275.53469849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f08 -03229153 275.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f18 -03229154 275.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f18 -03229155 275.53475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f28 -03229156 275.53475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f28 -03229157 275.53475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f38 -03229158 275.53475952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f38 -03229159 275.53479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f48 -03229160 275.53482056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f48 -03229161 275.53485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f58 -03229162 275.53485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f58 -03229163 275.53488159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f68 -03229164 275.53488159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f68 -03229165 275.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f78 -03229166 275.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f78 -03229167 275.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f88 -03229168 275.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f88 -03234725 276.06527710 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -03234726 276.06646729 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -03234727 276.71261597 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234728 276.71264648 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234729 276.71267700 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234730 276.71270752 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03234731 276.71279907 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234732 276.71279907 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234733 276.71289063 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234734 276.71292114 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234735 277.37222290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03234736 277.39129639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234737 277.39132690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234738 278.44110107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234739 278.44189453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234740 278.44308472 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234741 278.44381714 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234742 278.57531738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234743 278.57553101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234744 278.69305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234745 278.69445801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234746 278.69464111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234747 278.71734619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234748 278.71813965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234749 278.71841431 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234750 278.71945190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234751 278.71966553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234752 278.77157593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234753 278.77331543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234754 278.77352905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234755 278.80877686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234756 278.81094360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234757 278.81115723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234758 279.02243042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234759 279.02392578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234760 279.02413940 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234761 279.04022217 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234762 279.04067993 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234763 279.04098511 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234764 279.07617188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234765 279.07672119 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234766 279.07736206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234767 279.07772827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234768 279.08004761 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234769 279.08029175 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234770 279.17498779 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234771 279.18811035 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234772 279.18835449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234773 279.21411133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234774 279.21520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234775 279.21542358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234776 279.21997070 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234777 279.22003174 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234778 279.22003174 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234779 279.22006226 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03234780 279.22024536 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234781 279.22024536 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234782 279.22033691 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03234783 279.22033691 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03234784 279.33255005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234785 279.33361816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234786 279.33383179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234787 279.39382935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03234788 279.39666748 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234789 279.39730835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234790 279.39758301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234791 279.39840698 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234792 279.39862061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234793 279.41912842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234794 279.41915894 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03234795 279.66824341 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234796 279.67034912 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234797 279.67056274 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234798 279.73492432 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234799 279.73568726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234800 279.73590088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234801 279.79013062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234802 279.79196167 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234803 279.79217529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234804 279.84945679 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234805 279.85043335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234806 279.85119629 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234807 279.85144043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234808 279.85202026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234809 279.85226440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234810 279.85241699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234811 279.85317993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234812 279.92492676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234813 279.92901611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234814 279.92922974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234815 279.95214844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234816 279.95281982 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234817 279.95306396 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234818 279.97006226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234819 279.98001099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234820 279.98052979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234821 279.98101807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234822 279.98138428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234823 279.98205566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234824 279.98245239 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234825 279.98284912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03234826 279.98306274 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234827 279.99975586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234828 280.00531006 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234829 280.00579834 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234830 280.00622559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234831 280.00659180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234832 280.02612305 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234833 280.02661133 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234834 280.02813721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234835 280.02850342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234836 280.07196045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234837 280.07247925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03234838 280.61523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03234839 280.61526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03234840 280.61529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03234841 280.61529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03234842 280.61532593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03234843 280.61532593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03234844 280.61535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03234845 280.61535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03234846 280.61538696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03234847 280.61538696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03234848 280.61538696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03234849 280.61538696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03234850 280.61541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03234851 280.61541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03234852 280.61544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03234853 280.61547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03234854 280.61550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03234855 280.61550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03234856 280.61553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03234857 280.61553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03234858 280.61553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03234859 280.61553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03234860 280.61557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03234861 280.61557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03234862 280.61560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03234863 280.61560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03234864 280.61563110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03234865 280.61563110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03234866 280.61566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03234867 280.61566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03234868 280.61569214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03234869 280.61569214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03234870 280.61569214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03234871 280.61572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03234872 280.61575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03234873 280.61575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03234874 280.61578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03234875 280.61578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03234876 280.61581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03234877 280.61581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03234878 280.61584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03234879 280.61584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03234880 280.61584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03234881 280.61584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03234882 280.61587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03234883 280.61587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03234884 280.61590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03234885 280.61590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03234886 280.61593628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03234887 280.61596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03234888 280.61599731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03234889 280.61599731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03234890 280.61602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03234891 280.61602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03234892 280.61602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03234893 280.61602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03234894 280.61605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03234895 280.61605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03234896 280.61608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03234897 280.61608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03234898 280.61611938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03234899 280.61611938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03234900 280.61614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03234901 280.61614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03234902 280.61618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03234903 280.61618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03234904 280.61621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03234905 280.61621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03234906 280.61624146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03234907 280.61624146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03234908 280.61627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03234909 280.61627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03234910 280.61630249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03234911 280.61630249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03234912 280.61633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03234913 280.61633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03234914 280.61633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03234915 280.61633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03234916 280.61636353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03234917 280.61636353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03234918 280.61639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03234919 280.61639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03234920 280.61642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03234921 280.61642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03234922 280.61645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03234923 280.61648560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03234924 280.61648560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03234925 280.61648560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03234926 280.61651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03234927 280.61651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03234928 280.61654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03234929 280.61654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03234930 280.61657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03234931 280.61657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03234932 280.61660767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03234933 280.61660767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03234934 280.61663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03234935 280.61663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03234936 280.61663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03234937 280.61663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03234938 280.61666870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03234939 280.61669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03234940 280.61672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03234941 280.61672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03234942 280.61676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03234943 280.61676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03234944 280.61679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03234945 280.61679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03234946 280.61682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03234947 280.61682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03234948 280.61682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03234949 280.61682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03234950 280.61685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03234951 280.61685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03234952 280.61688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03234953 280.61691284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03234954 280.61691284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03234955 280.61694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03234956 280.61697388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03234957 280.61697388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03234958 280.61697388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03234959 280.61697388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03234960 280.61700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03234961 280.61700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03234962 280.61703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03234963 280.61703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03234964 280.61709595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03234965 280.61709595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03234966 280.61712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03234967 280.61712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03234968 280.61712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03234969 280.61712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03234970 280.61715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03234971 280.61715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03234972 280.61718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03234973 280.61718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03234974 280.61721802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03234975 280.61721802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03234976 280.61724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03234977 280.61724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03234978 280.61727905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03234979 280.61727905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03234980 280.61730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03234981 280.61730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03234982 280.61734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03234983 280.61734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03234984 280.61737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03234985 280.61737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03234986 280.61740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03234987 280.61740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03234988 280.61743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03234989 280.61743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03234990 280.61743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03234991 280.61743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03234992 280.61746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03234993 280.61746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03234994 280.61749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03234995 280.61749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03234996 280.61752319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03234997 280.61755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03234998 280.61755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03234999 280.61758423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03235000 280.61761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03235001 280.61761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03235002 280.61761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03235003 280.61761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03235004 280.61764526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03235005 280.61764526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03235006 280.61767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03235007 280.61767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03235008 280.61770630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03235009 280.61770630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03235010 280.61773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03235011 280.61773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03235012 280.61776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03235013 280.61776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03235014 280.61776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03235015 280.61776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03235016 280.61779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03235017 280.61779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03235018 280.61782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03235019 280.61782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03235020 280.61785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03235021 280.61785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03235022 280.61788940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03235023 280.61788940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03235024 280.61791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03235025 280.61791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03235026 280.61791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03235027 280.61791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03235028 280.61795044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03235029 280.61795044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03235030 280.61798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03235031 280.61798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03235032 280.61801147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03235033 280.61804199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03235034 280.61807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03235035 280.61807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03235036 280.61807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03235037 280.61807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03235038 280.61810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03235039 280.61810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03235040 280.61813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03235041 280.61813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03235042 280.61816406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03235043 280.61816406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03235044 280.61819458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03235045 280.61819458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03235046 280.61822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03235047 280.61822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03235048 280.61822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03235049 280.61822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03235050 280.61825562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03235051 280.61828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03235052 280.61831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03235053 280.61831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03235054 280.61834717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03235055 280.61834717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03235056 280.61837769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03235057 280.61837769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03235058 280.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03235059 280.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03235060 280.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03235061 280.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03235062 280.61843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03235063 280.61843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03235064 280.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03235065 280.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03235066 280.61849976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03235067 280.61849976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03235068 280.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03235069 280.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03235070 280.61856079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03235071 280.61856079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03235072 280.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03235073 280.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03235074 280.61862183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03235075 280.61862183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03235076 280.61865234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03235077 280.61865234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03235078 280.61868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03235079 280.61868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03235080 280.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03235081 280.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03235082 280.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03235083 280.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03235084 280.61874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03235085 280.61874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03235086 280.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03235087 280.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03235088 280.61880493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03235089 280.61880493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03235090 280.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03235091 280.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03235092 280.61886597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03235093 280.61886597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03235094 280.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03235095 280.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03235096 280.61892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03235097 280.61892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03235098 280.61895752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03235099 280.61895752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03235100 280.61898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03235101 280.61898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03235102 280.61901855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03235103 280.61901855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03235104 280.61901855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03235105 280.61901855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03235106 280.61904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03235107 280.61904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03235108 280.61907959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03235109 280.61911011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03235110 280.61914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03235111 280.61914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03235112 280.61917114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03235113 280.61917114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03235114 280.61920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03235115 280.61920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03235116 280.61920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03235117 280.61920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03235118 280.61923218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03235119 280.61923218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03235120 280.61926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03235121 280.61926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03235122 280.61929321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03235123 280.61929321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03235124 280.61932373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03235125 280.61935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03235126 280.61935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03235127 280.61935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03235128 280.61938477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03235129 280.61938477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03235130 280.61941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03235131 280.61941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03235132 280.61944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03235133 280.61944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03235134 280.61947632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03235135 280.61947632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03235136 280.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03235137 280.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03235138 280.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03235139 280.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03235140 280.61953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03235141 280.61953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03235142 280.61956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03235143 280.61956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03235144 280.61959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03235145 280.61959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03235146 280.61962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03235147 280.61962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03235148 280.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03235149 280.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03235150 280.61968994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03235151 280.61968994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03235152 280.61972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03235153 280.61972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03235154 280.61975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03235155 280.61975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03235156 280.61978149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03235157 280.61978149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03235158 280.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03235159 280.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03235160 280.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03235161 280.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03235162 280.61984253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03235163 280.61984253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03235164 280.61987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03235165 280.61987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03235166 280.61990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03235167 280.61990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03235168 280.61993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03235169 280.61993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03235170 280.61996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03235171 280.61996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03235172 280.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03235173 280.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03235174 280.62002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03235175 280.62002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03235176 280.62005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03235177 280.62005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03235178 280.62008667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03235179 280.62008667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03235180 280.62011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03235181 280.62011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03235182 280.62014771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03235183 280.62014771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03235184 280.62014771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03235185 280.62014771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03235186 280.62017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03235187 280.62017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03235188 280.62020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03235189 280.62020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03235190 280.62023926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03235191 280.62026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03235192 280.62030029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03235193 280.62030029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03235194 280.62030029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03235195 280.62030029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03235196 280.62033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03235197 280.62033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03235198 280.62036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03235199 280.62036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03235200 280.62039185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03235201 280.62039185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03235202 280.62042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03235203 280.62042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03235204 280.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03235205 280.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03235206 280.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03235207 280.62045288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03235208 280.62048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03235209 280.62048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03235210 280.62051392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03235211 280.62054443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03235212 280.62057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03235213 280.62057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03235214 280.62060547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03235215 280.62060547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03235216 280.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03235217 280.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03235218 280.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03235219 280.62063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03235220 280.62066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03235221 280.62066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03235222 280.62069702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03235223 280.62069702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03235224 280.62072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03235225 280.62072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03235226 280.62075806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03235227 280.62075806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03235228 280.62078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03235229 280.62078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03235230 280.62078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03235231 280.62081909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03235232 280.62081909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03235233 280.62084961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03235234 280.62088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03235235 280.62088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03235236 280.62091064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03235237 280.62091064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03235238 280.62094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03235239 280.62094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03235240 280.62094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03235241 280.62094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03235242 280.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03235243 280.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03235244 280.62100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03235245 280.62100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03235246 280.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03235247 280.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03235248 280.62106323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03235249 280.62106323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03235250 280.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03235251 280.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03235252 280.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03235253 280.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03235254 280.62112427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03235255 280.62112427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03235256 280.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03235257 280.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03235258 280.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03235259 280.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03235260 280.62124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03235261 280.62124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03235262 280.62124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03235263 280.62124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03235264 280.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03235265 280.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03235266 280.62130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03235267 280.62130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03235268 280.62133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03235269 280.62133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03235270 280.62136841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03235271 280.62136841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03235272 280.62139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03235273 280.62139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03235274 280.62142944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03235275 280.62142944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03235276 280.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03235277 280.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03235278 280.62149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03235279 280.62149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03235280 280.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03235281 280.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03235282 280.62155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03235283 280.62155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03235284 280.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03235285 280.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03235286 280.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03235287 280.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03235288 280.62161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03235289 280.62164307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03235290 280.62167358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03235291 280.62167358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03235292 280.62170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03235293 280.62170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03235294 280.62173462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03235295 280.62173462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03235296 280.62173462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03235297 280.62173462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03235298 280.62176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03235299 280.62176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03235300 280.62179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03235301 280.62179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03235302 280.62182617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03235303 280.62182617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03235304 280.62185669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03235305 280.62185669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03235306 280.62188721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03235307 280.62188721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03235308 280.62188721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03235309 280.62188721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03235310 280.62191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03235311 280.62191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03235312 280.62194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03235313 280.62194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03235314 280.62197876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03235315 280.62200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03235316 280.62200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03235317 280.62203979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03235318 280.62203979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03235319 280.62203979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03235320 280.62207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03235321 280.62207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03235322 280.62210083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03235323 280.62210083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03235324 280.62213135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03235325 280.62213135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03235326 280.62216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03235327 280.62216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03235328 280.62219238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03235329 280.62219238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03235330 280.62222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03235331 280.62222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03235332 280.62222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03235333 280.62222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03235334 280.62225342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03235335 280.62225342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03235336 280.62228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03235337 280.62228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03235338 280.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03235339 280.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03235340 280.62234497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03235341 280.62234497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03235342 280.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03235343 280.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03235344 280.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03235345 280.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03235346 280.62240601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03235347 280.62240601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03235348 280.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03235349 280.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03235350 280.62246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03235351 280.62246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03235352 280.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03235353 280.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03235354 280.62252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03235355 280.62252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03235356 280.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03235357 280.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03235358 280.62258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03235359 280.62258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03235360 280.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03235361 280.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03235362 280.62265015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03235363 280.62265015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03235364 280.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03235365 280.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03235366 280.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03235367 280.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03235368 280.62271118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03235369 280.62271118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03235370 280.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03235371 280.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03235372 280.62277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03235373 280.62277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03235374 280.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03235375 280.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03235376 280.62283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03235377 280.62283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03235378 280.62283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03235379 280.62283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03235380 280.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03235381 280.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03235382 280.62289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03235383 280.62289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03235384 280.62292480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03235385 280.62295532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03235386 280.62295532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03235387 280.62298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03235388 280.62301636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03235389 280.62301636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03235390 280.62301636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03235391 280.62301636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03235392 280.62304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03235393 280.62304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03235394 280.62307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03235395 280.62307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03235396 280.62310791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03235397 280.62310791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03235398 280.62313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03235399 280.62313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03235400 280.62316895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03235401 280.62316895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03235402 280.62316895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03235403 280.62316895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03235404 280.62319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03235405 280.62319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03235406 280.62322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03235407 280.62322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03235408 280.62326050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03235409 280.62326050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03235410 280.62329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03235411 280.62329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03235412 280.62332153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03235413 280.62332153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03235414 280.62332153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03235415 280.62335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03235416 280.62335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03235417 280.62338257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03235418 280.62341309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03235419 280.62341309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03235420 280.62344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03235421 280.62344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03235422 280.62347412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03235423 280.62347412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03235424 280.62347412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03235425 280.62347412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03235426 280.62350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03235427 280.62350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03235428 280.62353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03235429 280.62353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03235430 280.62356567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03235431 280.62356567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03235432 280.62359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03235433 280.62359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03235434 280.62362671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03235435 280.62362671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03235436 280.62362671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03235437 280.62362671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03235438 280.62365723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03235439 280.62365723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03235440 280.62368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03235441 280.62368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03235442 280.62371826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03235443 280.62371826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03235444 280.62374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03235445 280.62374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03235446 280.62377930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03235447 280.62377930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03235448 280.62380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03235449 280.62380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03235450 280.62380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03235451 280.62380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03235452 280.62384033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03235453 280.62384033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03235454 280.62387085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03235455 280.62387085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03235456 280.62390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03235457 280.62390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03235458 280.62393188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03235459 280.62396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03235460 280.62396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03235461 280.62396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03235462 280.62399292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03235463 280.62399292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03235464 280.62402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03235465 280.62402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03235466 280.62405396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03235467 280.62405396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03235468 280.62408447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03235469 280.62408447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03235470 280.62411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03235471 280.62411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03235472 280.62411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03235473 280.62411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03235474 280.62414551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03235475 280.62414551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03235476 280.62417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03235477 280.62417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03235478 280.62420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03235479 280.62420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03235480 280.62423706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03235481 280.62423706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03235482 280.62426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03235483 280.62426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03235484 280.62426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03235485 280.62426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03235486 280.62429810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03235487 280.62432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03235488 280.62432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03235489 280.62435913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03235490 280.62438965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03235491 280.62438965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03235492 280.62442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03235493 280.62442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03235494 280.62442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03235495 280.62442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03235496 280.62445068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03235497 280.62445068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03235498 280.62448120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03235499 280.62448120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03235500 280.62451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03235501 280.62451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03235502 280.62454224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03235503 280.62454224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03235504 280.62457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03235505 280.62457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03235506 280.62460327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03235507 280.62460327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03235508 280.62460327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03235509 280.62460327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03235510 280.62463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03235511 280.62463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03235512 280.62466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03235513 280.62466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03235514 280.62469482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03235515 280.62469482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03235516 280.62472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03235517 280.62472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03235518 280.62475586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03235519 280.62475586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03235520 280.62475586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03235521 280.62475586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03235522 280.62478638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03235523 280.62478638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03235524 280.62481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03235525 280.62481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03235526 280.62484741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03235527 280.62484741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03235528 280.62487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03235529 280.62487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03235530 280.62490845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03235531 280.62490845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03235532 280.62490845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03235533 280.62493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03235534 280.62493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03235535 280.62496948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03235536 280.62500000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03235537 280.62500000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03235538 280.62503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03235539 280.62503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03235540 280.62506104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03235541 280.62506104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03235542 280.62506104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03235543 280.62506104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03235544 280.62509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03235545 280.62509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03235546 280.62512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03235547 280.62512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03235548 280.62515259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03235549 280.62515259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03235550 280.62518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03235551 280.62518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03235552 280.62521362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03235553 280.62521362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03235554 280.62521362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03235555 280.62521362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03235556 280.62524414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03235557 280.62524414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03235558 280.62527466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03235559 280.62527466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03235560 280.62530518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03235561 280.62530518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03235562 280.62536621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03235563 280.62536621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03235564 280.62539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03235565 280.62539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03235566 280.62539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03235567 280.62539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03235568 280.62542725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03235569 280.62542725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03235570 280.62545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03235571 280.62545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03235572 280.62548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03235573 280.62548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03235574 280.62551880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03235575 280.62551880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03235576 280.62554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03235577 280.62554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03235578 280.62554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03235579 280.62554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03235580 280.62557983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03235581 280.62557983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03235582 280.62561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03235583 280.62561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03235584 280.62564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03235585 280.62564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03235586 280.62567139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03235587 280.62567139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03235588 280.62570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03235589 280.62570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03235590 280.62573242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03235591 280.62573242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03235592 280.62576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03235593 280.62576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03235594 280.62579346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03235595 280.62579346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03235596 280.62582397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03235597 280.62582397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03235598 280.62585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03235599 280.62585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03235600 280.62585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03235601 280.62585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03235602 280.62588501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03235603 280.62588501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03235604 280.62591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03235605 280.62591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03235606 280.62594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03235607 280.62594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03235608 280.62600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03235609 280.62600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03235610 280.62603760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03235611 280.62603760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03235612 280.62603760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03235613 280.62603760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03235614 280.62606812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03235615 280.62606812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03235616 280.62609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03235617 280.62609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03235618 280.62612915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03235619 280.62612915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03235620 280.62615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03235621 280.62615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03235622 280.62619019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03235623 280.62619019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03235624 280.62619019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03235625 280.62619019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03235626 280.62622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03235627 280.62625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03235628 280.62625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03235629 280.62628174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03235630 280.62631226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03235631 280.62631226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03235632 280.62634277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03235633 280.62634277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03235634 280.62634277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03235635 280.62634277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03235636 280.62637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03235637 280.62637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03235638 280.62640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03235639 280.62640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03235640 280.62643433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03235641 280.62643433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03235642 280.62646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03235643 280.62646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03235644 280.62649536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03235645 280.62649536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03235646 280.62649536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03235647 280.62649536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03235648 280.62652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03235649 280.62652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03235650 280.62655640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03235651 280.62655640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03235652 280.62658691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03235653 280.62658691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03235654 280.62661743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03235655 280.62664795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03235656 280.62664795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03235657 280.62664795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03235658 280.62667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03235659 280.62667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03235660 280.62670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03235661 280.62673950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03235662 280.62677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03235663 280.62677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03235664 280.62680054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03235665 280.62680054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03235666 280.62683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03235667 280.62683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03235668 280.62683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03235669 280.62683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03235670 280.62686157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03235671 280.62686157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03235672 280.62689209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03235673 280.62689209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03235674 280.62692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03235675 280.62692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03235676 280.62695313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03235677 280.62695313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03235678 280.62698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03235679 280.62698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03235680 280.62698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03235681 280.62698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03235682 280.62704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03235683 280.62704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03235684 280.62707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03235685 280.62707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03235686 280.62710571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03235687 280.62710571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03235688 280.62713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03235689 280.62713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03235690 280.62713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03235691 280.62713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03235692 280.62716675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03235693 280.62716675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03235694 280.62719727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03235695 280.62719727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03235696 280.62722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03235697 280.62722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03235698 280.62725830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03235699 280.62725830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03235700 280.62728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03235701 280.62728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03235702 280.62728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03235703 280.62731934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03235704 280.62734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03235705 280.62734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03235706 280.62738037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03235707 280.62738037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03235708 280.62741089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03235709 280.62741089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03235710 280.62744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03235711 280.62744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03235712 280.62744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03235713 280.62744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03235714 280.62747192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03235715 280.62747192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03235716 280.62750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03235717 280.62750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03235718 280.62753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03235719 280.62753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03235720 280.62756348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03235721 280.62756348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03235722 280.62759399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03235723 280.62762451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03235724 280.62762451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03235725 280.62762451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03235726 280.62765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03235727 280.62765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03235728 280.62768555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03235729 280.62768555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03235730 280.62771606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03235731 280.62771606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03235732 280.62774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03235733 280.62774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03235734 280.62777710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03235735 280.62777710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03235736 280.62777710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03235737 280.62777710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03235738 280.62780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03235739 280.62780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03235740 280.62783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03235741 280.62783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03235742 280.62786865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03235743 280.62789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03235744 280.62789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03235745 280.62792969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03235746 280.62792969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03235747 280.62792969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03235748 280.62796021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03235749 280.62796021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03235750 280.62799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03235751 280.62799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03235752 280.62802124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03235753 280.62802124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03235754 280.62805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03235755 280.62805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03235756 280.62808228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03235757 280.62808228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03235758 280.62808228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03235759 280.62808228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03235760 280.62811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03235761 280.62811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03235762 280.62814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03235763 280.62814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03235764 280.62817383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03235765 280.62817383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03235766 280.62820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03235767 280.62820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03235768 280.62823486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03235769 280.62823486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03235770 280.62823486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03235771 280.62823486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03235772 280.62829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03235773 280.62829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03235774 280.62832642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03235775 280.62832642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03235776 280.62835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03235777 280.62835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03235778 280.62838745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03235779 280.62838745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03235780 280.62841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03235781 280.62841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03235782 280.62841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03235783 280.62841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03235784 280.62844849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03235785 280.62844849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03235786 280.62847900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03235787 280.62850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03235788 280.62850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03235789 280.62854004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03235790 280.62857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03235791 280.62857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03235792 280.62857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03235793 280.62857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03235794 280.62860107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03235795 280.62860107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03235796 280.62863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03235797 280.62863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03235798 280.62866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03235799 280.62866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03235800 280.62869263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03235801 280.62869263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03235802 280.62872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03235803 280.62872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03235804 280.62872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03235805 280.62875366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03235806 280.62878418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03235807 280.62878418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03235808 280.62881470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03235809 280.62881470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03235810 280.62884521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03235811 280.62884521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03235812 280.62887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03235813 280.62887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03235814 280.62887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03235815 280.62887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03235816 280.62890625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03235817 280.62890625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03235818 280.62893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03235819 280.62893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03235820 280.62896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03235821 280.62896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03235822 280.62899780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03235823 280.62899780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03235824 280.62902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03235825 280.62902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03235826 280.62902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03235827 280.62905884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03235828 280.62908936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03235829 280.62908936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03235830 280.62911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03235831 280.62911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03235832 280.62915039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03235833 280.62915039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03235834 280.62918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03235835 280.62918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03235836 280.62921143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03235837 280.62921143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03235838 280.62921143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03235839 280.62921143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03235840 280.62924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03235841 280.62924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03235842 280.62927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03235843 280.62927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03235844 280.62930298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03235845 280.62930298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03235846 280.62933350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03235847 280.62936401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03235848 280.62936401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03235849 280.62936401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03235850 280.62939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03235851 280.62939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03235852 280.62942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03235853 280.62942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03235854 280.62945557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03235855 280.62945557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03235856 280.62948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03235857 280.62948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03235858 280.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03235859 280.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03235860 280.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03235861 280.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03235862 280.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03235863 280.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03235864 280.62957764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03235865 280.62960815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03235866 280.62963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03235867 280.62963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03235868 280.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03235869 280.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03235870 280.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03235871 280.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03235872 280.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03235873 280.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03235874 280.62973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03235875 280.62973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03235876 280.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03235877 280.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03235878 280.62979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03235879 280.62979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03235880 280.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03235881 280.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03235882 280.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03235883 280.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03235884 280.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03235885 280.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03235886 280.62988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03235887 280.62988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03235888 280.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03235889 280.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03235890 280.62994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03235891 280.62994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03235892 280.62997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03235893 280.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03235894 280.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03235895 280.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03235896 280.63003540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03235897 280.63003540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03235898 280.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03235899 280.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03235900 280.63009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03235901 280.63009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03235902 280.63012695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03235903 280.63012695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03235904 280.63015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03235905 280.63015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03235906 280.63015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03235907 280.63015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03235908 280.63021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03235909 280.63021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03235910 280.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03235911 280.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03235912 280.63027954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03235913 280.63027954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03235914 280.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03235915 280.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03235916 280.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03235917 280.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03235918 280.63034058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03235919 280.63034058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03235920 280.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03235921 280.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03235922 280.63040161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03235923 280.63040161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03235924 280.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03235925 280.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03235926 280.63046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03235927 280.63046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03235928 280.63046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03235929 280.63049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03235930 280.63052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03235931 280.63052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03235932 280.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03235933 280.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03235934 280.63058472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03235935 280.63058472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03235936 280.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03235937 280.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03235938 280.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03235939 280.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03235940 280.63064575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03235941 280.63064575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03235942 280.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03235943 280.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03235944 280.63070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03235945 280.63070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03235946 280.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03235947 280.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03235948 280.63076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03235949 280.63076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03235950 280.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03235951 280.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03235952 280.63082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03235953 280.63082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03235954 280.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03235955 280.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03235956 280.63088989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03235957 280.63088989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03235958 280.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03235959 280.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03235960 280.63095093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03235961 280.63095093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03235962 280.63095093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03235963 280.63095093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03235964 280.63098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03235965 280.63098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03235966 280.63101196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03235967 280.63101196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03235968 280.63104248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03235969 280.63104248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03235970 280.63107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03235971 280.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03235972 280.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03235973 280.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03235974 280.63113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03235975 280.63113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03235976 280.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03235977 280.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03235978 280.63119507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03235979 280.63119507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03235980 280.63122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03235981 280.63122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03235982 280.63125610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03235983 280.63125610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03235984 280.63125610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03235985 280.63125610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03235986 280.63128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03235987 280.63128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03235988 280.63131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03235989 280.63131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03235990 280.63134766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03235991 280.63137817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03235992 280.63140869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03235993 280.63140869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03235994 280.63143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03235995 280.63143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03235996 280.63143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03235997 280.63143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03235998 280.63146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03235999 280.63146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03236000 280.63150024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03236001 280.63150024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03236002 280.63153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03236003 280.63153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03236004 280.63156128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03236005 280.63156128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03236006 280.63159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03236007 280.63159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03236008 280.63159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03236009 280.63159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03236010 280.63162231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03236011 280.63162231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03236012 280.63165283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03236013 280.63168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03236014 280.63171387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03236015 280.63171387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03236016 280.63174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03236017 280.63174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03236018 280.63174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03236019 280.63174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03236020 280.63177490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03236021 280.63177490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03236022 280.63180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03236023 280.63180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03236024 280.63183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03236025 280.63183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03236026 280.63186646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03236027 280.63186646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03236028 280.63189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03236029 280.63189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03236030 280.63189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03236031 280.63189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03236032 280.63192749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03236033 280.63192749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03236034 280.63195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03236035 280.63198853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03236036 280.63201904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03236037 280.63201904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03236038 280.63204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03236039 280.63204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03236040 280.63204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03236041 280.63204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03236042 280.63208008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03236043 280.63208008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03236044 280.63211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03236045 280.63211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03236046 280.63214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03236047 280.63214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03236048 280.63217163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03236049 280.63217163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03236050 280.63220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03236051 280.63220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03236052 280.63223267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03236053 280.63223267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03236054 280.63223267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03236055 280.63226318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03236056 280.63229370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03236057 280.63229370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03236058 280.63232422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03236059 280.63232422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03236060 280.63235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03236061 280.63235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03236062 280.63238525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03236063 280.63238525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03236064 280.63238525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03236065 280.63238525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03236066 280.63241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03236067 280.63241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03236068 280.63244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03236069 280.63244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03238142 280.66146851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03238143 280.66146851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -03238144 280.66149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03238145 280.66152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -03238146 280.66152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03238147 280.66156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -03238148 280.66159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03238149 280.66159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -03238150 280.66162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03238151 280.66162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -03238152 280.66162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03238153 280.66162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -03238154 280.66165161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03238155 280.66165161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -03238156 280.66168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03238157 280.66168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -03238158 280.66171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03238159 280.66171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -03238160 280.66174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03238161 280.66174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -03238162 280.66177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03238163 280.66177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -03238164 280.66177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03238165 280.66180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -03238166 280.66183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03238167 280.66183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -03238168 280.66186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03238169 280.66186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -03238170 280.66189575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03238171 280.66189575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -03238172 280.66192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03238173 280.66192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -03238174 280.66192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03238175 280.66192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -03238176 280.66195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03238177 280.66195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -03238178 280.66198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03238179 280.66198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -03238180 280.66201782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03238181 280.66201782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -03238182 280.66204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03238183 280.66204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -03238184 280.66207886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03238185 280.66207886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -03257393 280.93096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d118 -03257394 280.93099976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d128 -03257395 280.93099976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d128 -03257396 280.93103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d138 -03257397 280.93103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d138 -03257398 280.93106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -03257399 280.93106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -03257400 280.93106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -03257401 280.93106079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -03257402 280.93109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -03257403 280.93109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -03257404 280.93112183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -03257405 280.93112183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -03257406 280.93115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -03257407 280.93115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -03257408 280.93118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -03257409 280.93118286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -03257410 280.93121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -03257411 280.93121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -03257412 280.93121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -03257413 280.93121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -03257414 280.93124390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -03257415 280.93127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -03257416 280.93130493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -03257417 280.93130493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -03257418 280.93133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -03257419 280.93133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -03257420 280.93136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -03257421 280.93136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -03257422 280.93136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -03257423 280.93136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -03257424 280.93139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -03257425 280.93139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -03257426 280.93142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -03257427 280.93142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -03257428 280.93145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -03257429 280.93145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -03257430 280.93148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -03257431 280.93148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -03257432 280.93151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -03257433 280.93151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -03257434 280.93151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -03257435 280.93154907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -03257436 280.93157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -03261832 280.99343872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd8 -03261833 280.99343872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bd8 -03261834 280.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be8 -03261835 280.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35be8 -03261836 280.99349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf8 -03261837 280.99349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35bf8 -03261838 280.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c08 -03261839 280.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c08 -03261840 280.99356079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c18 -03261841 280.99356079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c18 -03261842 280.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c28 -03261843 280.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c28 -03261844 280.99362183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c38 -03261845 280.99362183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c38 -03261846 280.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c48 -03261847 280.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c48 -03261848 280.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c58 -03261849 280.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c58 -03261850 280.99368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c68 -03261851 280.99368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c68 -03261852 280.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c78 -03261853 280.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c78 -03261854 280.99374390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c88 -03261855 280.99374390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c88 -03261856 280.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c98 -03261857 280.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c98 -03261858 280.99380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca8 -03261859 280.99380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ca8 -03261860 280.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb8 -03261861 280.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cb8 -03261862 280.99386597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc8 -03261863 280.99386597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cc8 -03261864 280.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd8 -03261865 280.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cd8 -03261866 280.99392700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce8 -03261867 280.99392700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ce8 -03261868 280.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf8 -03261869 280.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35cf8 -03261870 280.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d08 -03261871 280.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d08 -03261872 280.99398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -03261873 280.99398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d18 -03261874 280.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -03261875 280.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -03266796 281.06332397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -03266797 281.06332397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f6f8 -03266798 281.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -03266799 281.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f708 -03266800 281.06338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -03266801 281.06338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f718 -03266802 281.06338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -03266803 281.06338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f728 -03266804 281.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -03266805 281.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f738 -03266806 281.06344604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -03266807 281.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f748 -03266808 281.06350708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f758 -03266809 281.06350708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f758 -03266810 281.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f768 -03266811 281.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f768 -03266812 281.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f778 -03266813 281.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f778 -03266814 281.06356812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f788 -03266815 281.06356812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f788 -03266816 281.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f798 -03266817 281.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f798 -03266818 281.06362915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a8 -03266819 281.06362915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7a8 -03266820 281.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b8 -03266821 281.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7b8 -03266822 281.06369019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c8 -03266823 281.06369019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7c8 -03266824 281.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d8 -03266825 281.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7d8 -03266826 281.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e8 -03266827 281.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7e8 -03266828 281.06375122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f8 -03266829 281.06378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f7f8 -03266830 281.06381226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f808 -03266831 281.06381226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f808 -03266832 281.06384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f818 -03266833 281.06384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f818 -03266834 281.06387329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f828 -03266835 281.06387329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f828 -03266836 281.06387329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f838 -03266837 281.06387329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f838 -03266838 281.06390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f848 -03266839 281.06390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f848 -03273490 281.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -03273491 281.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -03273492 281.15847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -03273493 281.15847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -03273494 281.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -03273495 281.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -03273496 281.15853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -03273497 281.15853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -03273498 281.15853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -03273499 281.15853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -03273500 281.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c868 -03273501 281.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c868 -03273502 281.15859985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c878 -03273503 281.15859985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c878 -03273504 281.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c888 -03273505 281.15866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c888 -03273506 281.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c898 -03273507 281.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c898 -03273508 281.15872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a8 -03273509 281.15872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8a8 -03273510 281.15872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b8 -03273511 281.15872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8b8 -03273512 281.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c8 -03273513 281.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8c8 -03273514 281.15878296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d8 -03273515 281.15878296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8d8 -03273516 281.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e8 -03273517 281.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8e8 -03273518 281.15884399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f8 -03273519 281.15884399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c8f8 -03273520 281.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c908 -03273521 281.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c908 -03273522 281.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c918 -03273523 281.15890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c918 -03273524 281.15890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c928 -03273525 281.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c928 -03273526 281.15896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c938 -03273527 281.15896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c938 -03273528 281.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c948 -03273529 281.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c948 -03273530 281.15902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c958 -03273531 281.15902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c958 -03273532 281.15902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c968 -03273533 281.15902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c968 -03276727 281.44287109 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276728 281.44287109 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276729 281.72940063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276730 281.72943115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276731 281.72946167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276732 281.72949219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03276733 281.72958374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276734 281.72961426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276735 281.72967529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03276736 281.72967529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03276737 282.52706909 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03276738 282.52731323 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276739 282.57241821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276740 282.57333374 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03276741 282.57360840 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276742 282.59277344 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276743 282.59487915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03276744 282.59509277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276745 282.61944580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276746 282.62652588 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276747 282.62716675 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276748 282.79626465 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276749 282.79711914 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276750 282.82952881 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276751 282.83001709 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276752 282.83111572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03276753 282.83132935 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276754 282.86614990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276755 282.86666870 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276756 282.86718750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276757 282.88467407 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276758 282.88546753 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03276759 282.88568115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276760 282.90921021 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276761 282.90960693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276762 282.91009521 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276763 282.91067505 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276764 282.98980713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276765 282.99041748 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276766 283.02999878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276767 283.05691528 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276768 283.06311035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276769 283.06314087 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276770 283.06317139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276771 283.06329346 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276772 283.06341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276773 283.06347656 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276774 283.06356812 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276775 283.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276776 283.06402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276777 283.06402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03276778 283.44512939 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03276779 283.46551514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276780 283.46551514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03276781 283.72659302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03276782 283.72662354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03276783 283.72665405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03276784 283.72665405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03276785 283.72665405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03276786 283.72665405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03276787 283.72668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03276788 283.72668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03276789 283.72671509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03276790 283.72671509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03276791 283.72674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03276792 283.72674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03276793 283.72677612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03276794 283.72677612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03276795 283.72680664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03276796 283.72680664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03276797 283.72683716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03276798 283.72683716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03276799 283.72686768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03276800 283.72686768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03276801 283.72689819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03276802 283.72689819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03276803 283.72692871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03276804 283.72692871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03276805 283.72695923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03276806 283.72695923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03276807 283.72698975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03276808 283.72698975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03276809 283.72698975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03276810 283.72698975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03276811 283.72702026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03276812 283.72702026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03276813 283.72705078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03276814 283.72705078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03276815 283.72708130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03276816 283.72708130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03276817 283.72711182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03276818 283.72714233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03276819 283.72714233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03276820 283.72714233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03276821 283.72717285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03276822 283.72717285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03276823 283.72720337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03276824 283.72720337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03276825 283.72723389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03276826 283.72723389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03276827 283.72726440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03276828 283.72726440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03276829 283.72729492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03276830 283.72729492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03276831 283.72729492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03276832 283.72729492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03276833 283.72732544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03276834 283.72732544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03276835 283.72735596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03276836 283.72735596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03276837 283.72738647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03276838 283.72741699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03276839 283.72744751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03276840 283.72744751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03276841 283.72744751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03276842 283.72744751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03276843 283.72747803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03276844 283.72747803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03276845 283.72750854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03276846 283.72750854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03276847 283.72753906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03276848 283.72753906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03276849 283.72756958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03276850 283.72756958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03276851 283.72760010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03276852 283.72760010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03276853 283.72763062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03276854 283.72763062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03276855 283.72763062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03276856 283.72763062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03276857 283.72766113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03276858 283.72769165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03276859 283.72772217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03276860 283.72772217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03276861 283.72775269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03276862 283.72775269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03276863 283.72778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03276864 283.72778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03276865 283.72778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03276866 283.72778320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03276867 283.72781372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03276868 283.72781372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03276869 283.72784424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03276870 283.72784424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03276871 283.72787476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03276872 283.72787476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03276873 283.72790527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03276874 283.72790527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03276875 283.72793579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03276876 283.72793579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03276877 283.72793579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03276878 283.72796631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03276879 283.72799683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03276880 283.72799683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03276881 283.72802734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03276882 283.72802734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03276883 283.72805786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03276884 283.72805786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03276885 283.72808838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03276886 283.72808838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03276887 283.72808838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03276888 283.72808838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03276889 283.72811890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03276890 283.72811890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03276891 283.72814941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03276892 283.72814941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03276893 283.72817993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03276894 283.72817993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03276895 283.72821045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03276896 283.72821045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03276897 283.72824097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03276898 283.72824097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03276899 283.72827148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03276900 283.72827148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03276901 283.72830200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03276902 283.72830200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03276903 283.72833252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03276904 283.72833252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03276905 283.72839355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03276906 283.72839355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03276907 283.72842407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03276908 283.72842407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03276909 283.72842407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03276910 283.72842407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03276911 283.72845459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03276912 283.72845459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03276913 283.72848511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03276914 283.72848511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03276915 283.72851563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03276916 283.72851563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03276917 283.72854614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03276918 283.72854614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03276919 283.72857666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03276920 283.72857666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03276921 283.72857666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03276922 283.72857666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03276923 283.72860718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03276924 283.72863770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03276925 283.72866821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03276926 283.72866821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03276927 283.72869873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03276928 283.72869873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03276929 283.72872925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03276930 283.72872925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03276931 283.72872925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03276932 283.72872925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03276933 283.72875977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03276934 283.72875977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03276935 283.72879028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03276936 283.72879028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03276937 283.72882080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03276938 283.72882080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03276939 283.72885132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03276940 283.72885132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03276941 283.72888184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03276942 283.72888184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03276943 283.72888184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03276944 283.72891235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03276945 283.72894287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03276946 283.72894287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03276947 283.72897339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03276948 283.72897339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03276949 283.72900391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03276950 283.72900391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03276951 283.72903442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03276952 283.72903442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03276953 283.72903442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03276954 283.72903442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03276955 283.72906494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03276956 283.72906494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03276957 283.72909546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03276958 283.72909546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03276959 283.72912598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03276960 283.72912598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03276961 283.72915649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03276962 283.72915649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03276963 283.72918701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03276964 283.72921753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03276965 283.72921753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03276966 283.72921753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03276967 283.72924805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03276968 283.72924805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03276969 283.72927856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03276970 283.72927856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03276971 283.72930908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03276972 283.72930908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03276973 283.72933960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03276974 283.72933960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03276975 283.72937012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03276976 283.72937012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03276977 283.72937012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03276978 283.72937012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03276979 283.72940063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03276980 283.72940063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03276981 283.72943115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03276982 283.72943115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03276983 283.72946167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03276984 283.72946167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03276985 283.72949219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03276986 283.72952271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03276987 283.72952271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03276988 283.72952271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03276989 283.72955322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03276990 283.72955322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03276991 283.72958374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03276992 283.72958374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03276993 283.72961426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03276994 283.72961426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03276995 283.72964478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03276996 283.72964478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03276997 283.72967529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03276998 283.72967529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03276999 283.72967529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03277000 283.72967529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03277001 283.72970581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03277002 283.72970581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03277003 283.72973633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03277004 283.72973633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03277005 283.72976685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03277006 283.72979736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03277007 283.72982788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03277008 283.72982788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03277009 283.72985840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03277010 283.72985840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03277011 283.72985840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03277012 283.72985840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03277013 283.72988892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03277014 283.72988892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03277015 283.72991943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03277016 283.72991943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03277017 283.72994995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03277018 283.72994995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03277019 283.72998047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03277020 283.72998047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03277021 283.73001099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03277022 283.73001099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03277023 283.73001099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03277024 283.73001099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03277025 283.73004150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03277026 283.73004150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03277027 283.73007202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03277028 283.73010254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03277029 283.73013306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03277030 283.73013306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03277031 283.73016357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03277032 283.73016357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03277033 283.73016357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03277034 283.73016357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03277035 283.73019409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03277036 283.73019409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03277037 283.73022461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03277038 283.73022461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03277039 283.73025513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03277040 283.73025513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03277041 283.73028564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03277042 283.73028564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03277043 283.73031616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03277044 283.73031616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03277045 283.73031616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03277046 283.73031616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03277047 283.73034668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03277048 283.73037720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03277049 283.73037720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03277050 283.73040771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03277051 283.73043823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03277052 283.73043823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03277053 283.73046875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03277054 283.73046875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03277055 283.73046875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03277056 283.73046875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03277057 283.73049927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03277058 283.73049927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03277059 283.73052979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03277060 283.73052979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03277061 283.73056030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03277062 283.73056030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03277063 283.73059082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03277064 283.73059082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03277065 283.73062134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03277066 283.73062134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03277067 283.73065186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03277068 283.73065186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03277069 283.73065186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03277070 283.73068237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03277071 283.73071289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03277072 283.73071289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03277073 283.73074341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03277074 283.73074341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03277075 283.73077393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03277076 283.73077393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03277077 283.73080444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03277078 283.73080444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03277079 283.73080444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03277080 283.73080444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03277081 283.73083496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03277082 283.73083496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03277083 283.73086548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03277084 283.73086548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03277085 283.73089600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03277086 283.73089600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03277087 283.73092651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03277088 283.73092651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03277089 283.73095703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03277090 283.73095703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03277091 283.73098755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03277092 283.73098755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03277093 283.73101807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03277094 283.73101807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03277095 283.73104858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03277096 283.73104858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03277097 283.73107910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03277098 283.73107910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03277099 283.73110962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03277100 283.73110962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03277101 283.73110962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03277102 283.73110962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03277103 283.73117065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03277104 283.73117065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03277105 283.73120117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03277106 283.73120117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03277107 283.73126221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03277108 283.73126221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03277109 283.73126221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03277110 283.73126221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03277111 283.73129272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03277112 283.73129272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03277113 283.73132324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03277114 283.73132324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03277115 283.73135376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03277116 283.73135376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03277117 283.73138428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03277118 283.73138428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03277119 283.73141479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03277120 283.73141479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03277121 283.73144531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03277122 283.73144531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03277123 283.73147583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03277124 283.73147583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03277125 283.73150635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03277126 283.73150635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03277127 283.73153687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03277128 283.73153687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03277129 283.73156738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03277130 283.73156738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03277131 283.73159790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03277132 283.73159790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03277133 283.73159790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03277134 283.73159790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03277135 283.73162842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03277136 283.73162842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03277137 283.73165894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03277138 283.73165894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03277139 283.73168945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03277140 283.73168945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03277141 283.73171997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03277142 283.73175049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03277143 283.73175049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03277144 283.73175049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03277145 283.73178101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03277146 283.73178101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03277147 283.73181152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03277148 283.73181152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03277149 283.73184204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03277150 283.73184204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03277151 283.73187256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03277152 283.73187256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03277153 283.73190308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03277154 283.73190308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03277155 283.73190308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03277156 283.73190308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03277157 283.73193359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03277158 283.73193359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03277159 283.73196411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03277160 283.73196411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03277161 283.73199463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03277162 283.73199463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03277163 283.73202515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03277164 283.73205566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03277165 283.73205566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03277166 283.73205566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03277167 283.73208618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03277168 283.73208618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03277169 283.73211670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03277170 283.73211670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03277171 283.73214722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03277172 283.73214722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03277173 283.73217773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03277174 283.73217773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03277175 283.73220825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03277176 283.73220825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03277177 283.73223877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03277178 283.73223877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03277179 283.73223877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03277180 283.73223877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03277181 283.73226929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03277182 283.73226929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03277183 283.73229980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03277184 283.73233032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03277185 283.73236084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03277186 283.73236084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03277187 283.73239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03277188 283.73239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03277189 283.73239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03277190 283.73239136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03277191 283.73242188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03277192 283.73242188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03277193 283.73245239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03277194 283.73245239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03277195 283.73248291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03277196 283.73248291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03277197 283.73251343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03277198 283.73251343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03277199 283.73254395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03277200 283.73254395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03277201 283.73254395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03277202 283.73254395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03277203 283.73257446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03277204 283.73260498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03277205 283.73263550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03277206 283.73263550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03277207 283.73266602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03277208 283.73266602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03277209 283.73269653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03277210 283.73269653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03277211 283.73269653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03277212 283.73269653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03277213 283.73272705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03277214 283.73272705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03277215 283.73275757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03277216 283.73275757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03277217 283.73278809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03277218 283.73278809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03277219 283.73281860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03277220 283.73281860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03277221 283.73284912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03277222 283.73284912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03277223 283.73284912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03277224 283.73287964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03277225 283.73287964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03277226 283.73291016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03277227 283.73294067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03277228 283.73294067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03277229 283.73297119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03277230 283.73297119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03277231 283.73300171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03277232 283.73300171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03277233 283.73303223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03277234 283.73303223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03277235 283.73303223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03277236 283.73303223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03277237 283.73306274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03277238 283.73306274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03277239 283.73309326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03277240 283.73309326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03277241 283.73312378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03277242 283.73312378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03277243 283.73315430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03277244 283.73315430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03277245 283.73318481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03277246 283.73318481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03277247 283.73321533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03277248 283.73321533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03277249 283.73324585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03277250 283.73324585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03277251 283.73327637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03277252 283.73327637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03277253 283.73330688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03277254 283.73330688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03277255 283.73333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03277256 283.73333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03277257 283.73333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03277258 283.73333740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03277259 283.73336792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03277260 283.73336792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03277261 283.73339844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03277262 283.73339844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03277263 283.73342896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03277264 283.73342896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03291857 283.94128418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -03291858 283.94131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e768 -03291859 283.94134521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -03291860 283.94134521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e778 -03291861 283.94137573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -03291862 283.94137573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e788 -03291863 283.94140625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -03291864 283.94140625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e798 -03291865 283.94143677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -03291866 283.94143677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7a8 -03291867 283.94146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -03291868 283.94146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7b8 -03291869 283.94146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -03291870 283.94146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7c8 -03291871 283.94149780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -03291872 283.94149780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7d8 -03291873 283.94152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -03291874 283.94152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7e8 -03291875 283.94155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -03291876 283.94155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e7f8 -03291877 283.94158936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -03291878 283.94161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e808 -03291879 283.94161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -03291880 283.94161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e818 -03291881 283.94165039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -03291882 283.94165039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e828 -03291883 283.94168091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -03291884 283.94168091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e838 -03291885 283.94171143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -03291886 283.94171143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e848 -03291887 283.94174194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -03291888 283.94174194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e858 -03291889 283.94177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -03291890 283.94177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e868 -03291891 283.94177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -03291892 283.94177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e878 -03291893 283.94180298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -03291894 283.94180298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e888 -03291895 283.94183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -03291896 283.94183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e898 -03291897 283.94186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -03291898 283.94189453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a8 -03291899 283.94192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b8 -03291900 283.94192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b8 -03295925 283.99868774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26688 -03295926 283.99868774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26688 -03295927 283.99871826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26698 -03295928 283.99871826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26698 -03295929 283.99874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a8 -03295930 283.99874878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266a8 -03295931 283.99877930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b8 -03295932 283.99877930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266b8 -03295933 283.99880981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c8 -03295934 283.99880981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266c8 -03295935 283.99880981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d8 -03295936 283.99884033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266d8 -03295937 283.99884033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e8 -03295938 283.99887085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266e8 -03295939 283.99890137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f8 -03295940 283.99890137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x266f8 -03295941 283.99893188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26708 -03295942 283.99893188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26708 -03295943 283.99896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26718 -03295944 283.99896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26718 -03295945 283.99896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26728 -03295946 283.99896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26728 -03295947 283.99899292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26738 -03295948 283.99899292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26738 -03295949 283.99902344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26748 -03295950 283.99902344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26748 -03295951 283.99905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26758 -03295952 283.99905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26758 -03295953 283.99908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26768 -03295954 283.99908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26768 -03295955 283.99911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26778 -03295956 283.99911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26778 -03295957 283.99911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26788 -03295958 283.99911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26788 -03295959 283.99914551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26798 -03295960 283.99914551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26798 -03295961 283.99917603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a8 -03295962 283.99917603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267a8 -03295963 283.99920654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b8 -03295964 283.99923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267b8 -03295965 283.99923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c8 -03295966 283.99926758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267c8 -03295967 283.99929810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d8 -03295968 283.99929810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x267d8 -03297907 284.02725220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03297908 284.02725220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03297909 284.02728271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03297910 284.02728271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03297911 284.02731323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03297912 284.02734375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03297913 284.02737427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03297914 284.02737427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03297915 284.02740479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -03297916 284.02740479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -03297917 284.02740479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -03297918 284.02740479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -03297919 284.02743530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d8 -03297920 284.02743530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d8 -03297921 284.02746582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e8 -03297922 284.02746582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e8 -03297923 284.02749634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f8 -03297924 284.02749634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f8 -03297925 284.02752686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a508 -03297926 284.02752686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a508 -03297927 284.02755737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a518 -03297928 284.02755737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a518 -03297929 284.02755737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a528 -03297930 284.02755737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a528 -03297931 284.02758789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a538 -03297932 284.02761841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a538 -03297933 284.02764893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a548 -03297934 284.02764893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a548 -03297935 284.02767944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a558 -03297936 284.02767944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a558 -03297937 284.02770996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a568 -03297938 284.02770996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a568 -03297939 284.02770996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a578 -03297940 284.02770996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a578 -03297941 284.02774048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a588 -03297942 284.02774048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a588 -03297943 284.02777100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a598 -03297944 284.02777100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a598 -03297945 284.02780151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a8 -03297946 284.02780151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a8 -03297947 284.02783203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b8 -03297948 284.02783203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b8 -03297949 284.02786255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c8 -03297950 284.02786255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c8 -03298721 284.03900146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde8 -03298722 284.03900146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bde8 -03298723 284.03900146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf8 -03298724 284.03900146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bdf8 -03298725 284.03903198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be08 -03298726 284.03903198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be08 -03298727 284.03906250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be18 -03298728 284.03906250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be18 -03298729 284.03909302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be28 -03298730 284.03909302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be28 -03298731 284.03912354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be38 -03298732 284.03912354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be38 -03298733 284.03915405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be48 -03298734 284.03915405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be48 -03298735 284.03915405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be58 -03298736 284.03918457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be58 -03298737 284.03921509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be68 -03298738 284.03921509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be68 -03298739 284.03924561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be78 -03298740 284.03924561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be78 -03298741 284.03927612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be88 -03298742 284.03927612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be88 -03298743 284.03930664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be98 -03298744 284.03930664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be98 -03298745 284.03930664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea8 -03298746 284.03930664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bea8 -03298747 284.03933716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb8 -03298748 284.03933716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2beb8 -03298749 284.03936768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec8 -03298750 284.03936768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bec8 -03298751 284.03939819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed8 -03298752 284.03939819 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bed8 -03298753 284.03942871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee8 -03298754 284.03942871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bee8 -03298755 284.03945923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef8 -03298756 284.03945923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bef8 -03298757 284.03948975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf08 -03298758 284.03948975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf08 -03298759 284.03952026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf18 -03298760 284.03952026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf18 -03298761 284.03955078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf28 -03298762 284.03955078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf28 -03298763 284.03958130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf38 -03298764 284.03958130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf38 -03300276 284.06094360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -03300277 284.06097412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -03300278 284.06097412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -03300279 284.06100464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -03300280 284.06100464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -03300281 284.06103516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -03300282 284.06106567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -03300283 284.06109619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -03300284 284.06109619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -03300285 284.06109619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -03300286 284.06109619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -03300287 284.06112671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -03300288 284.06112671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -03300289 284.06115723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -03300290 284.06115723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -03300291 284.06118774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -03300292 284.06118774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -03300293 284.06121826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -03300294 284.06121826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -03300295 284.06124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -03300296 284.06124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -03300297 284.06124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -03300298 284.06124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -03300299 284.06127930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -03300300 284.06127930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -03300301 284.06130981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -03300302 284.06130981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -03300303 284.06134033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -03300304 284.06137085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -03300305 284.06140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -03300306 284.06140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -03300307 284.06140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -03300308 284.06140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -03300309 284.06143188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef88 -03300310 284.06143188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef88 -03300311 284.06146240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef98 -03300312 284.06146240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef98 -03300313 284.06149292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa8 -03300314 284.06149292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efa8 -03300315 284.06152344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb8 -03300316 284.06152344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efb8 -03300317 284.06155396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc8 -03300318 284.06155396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efc8 -03300319 284.06155396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2efd8 -03300997 284.07113647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30508 -03300998 284.07113647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30508 -03300999 284.07116699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30518 -03301000 284.07119751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30518 -03301001 284.07122803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30528 -03301002 284.07122803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30528 -03301003 284.07125854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30538 -03301004 284.07125854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30538 -03301005 284.07125854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30548 -03301006 284.07125854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30548 -03301007 284.07128906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30558 -03301008 284.07128906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30558 -03301009 284.07131958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -03301010 284.07131958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -03301011 284.07135010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -03301012 284.07135010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -03301013 284.07138062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -03301014 284.07138062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -03301015 284.07141113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -03301016 284.07141113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -03301017 284.07144165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -03301018 284.07144165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -03301019 284.07147217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -03301020 284.07150269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -03301021 284.07153320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -03301022 284.07153320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -03301023 284.07156372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -03301024 284.07156372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -03301025 284.07156372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -03301026 284.07156372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -03301027 284.07159424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -03301028 284.07159424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -03301029 284.07162476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -03301030 284.07162476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -03301031 284.07165527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -03301032 284.07165527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -03301033 284.07168579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -03301034 284.07171631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -03301035 284.07171631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -03301036 284.07171631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -03301037 284.07174683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -03301038 284.07174683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -03301039 284.07177734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -03301040 284.07177734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -03305775 284.13870239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -03305776 284.13870239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -03305777 284.13873291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -03305778 284.13873291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -03305779 284.13876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -03305780 284.13876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -03305781 284.13876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -03305782 284.13876343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -03305783 284.13879395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -03305784 284.13879395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -03305785 284.13882446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -03305786 284.13885498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -03305787 284.13888550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab8 -03305788 284.13888550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab8 -03305789 284.13891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac8 -03305790 284.13891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac8 -03305791 284.13891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad8 -03305792 284.13891602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad8 -03305793 284.13894653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae8 -03305794 284.13894653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ae8 -03305795 284.13897705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af8 -03305796 284.13897705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39af8 -03305797 284.13900757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b08 -03305798 284.13900757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b08 -03305799 284.13903809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b18 -03305800 284.13903809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b18 -03305801 284.13906860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b28 -03305802 284.13906860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b28 -03305803 284.13909912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b38 -03305804 284.13909912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b38 -03305805 284.13909912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b48 -03305806 284.13909912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b48 -03305807 284.13912964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b58 -03305808 284.13916016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b58 -03305809 284.13919067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b68 -03305810 284.13919067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b68 -03305811 284.13922119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b78 -03305812 284.13922119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b78 -03305813 284.13925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b88 -03305814 284.13925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b88 -03305815 284.13925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b98 -03305816 284.13925171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b98 -03305817 284.13928223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba8 -03305818 284.13928223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ba8 -03311781 284.22372437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45608 -03311782 284.22372437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45608 -03311783 284.22375488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45618 -03311784 284.22375488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45618 -03311785 284.22375488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45628 -03311786 284.22375488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45628 -03311787 284.22378540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45638 -03311788 284.22378540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45638 -03311789 284.22381592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45648 -03311790 284.22381592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45648 -03311791 284.22384644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45658 -03311792 284.22384644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45658 -03311793 284.22387695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45668 -03311794 284.22387695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45668 -03311795 284.22390747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45678 -03311796 284.22393799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45678 -03311797 284.22393799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45688 -03311798 284.22393799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45688 -03311799 284.22396851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45698 -03311800 284.22396851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45698 -03311801 284.22399902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a8 -03311802 284.22399902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456a8 -03311803 284.22402954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b8 -03311804 284.22402954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456b8 -03311805 284.22406006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c8 -03311806 284.22406006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456c8 -03311807 284.22409058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d8 -03311808 284.22409058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456d8 -03311809 284.22409058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e8 -03311810 284.22409058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456e8 -03311811 284.22412109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f8 -03311812 284.22412109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x456f8 -03311813 284.22415161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45708 -03311814 284.22415161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45708 -03311815 284.22421265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45718 -03311816 284.22421265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45718 -03311817 284.22424316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45728 -03311818 284.22424316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45728 -03311819 284.22427368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45738 -03311820 284.22427368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45738 -03311821 284.22430420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45748 -03311822 284.22430420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45748 -03311823 284.22433472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45758 -03311824 284.22433472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45758 -03318675 284.43475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03318676 285.26611328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03318677 285.26611328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03318678 285.26614380 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03318679 285.26614380 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03318680 285.26617432 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03318681 285.26617432 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03318682 285.26620483 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03318683 285.26620483 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03318684 285.26623535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03318685 285.26623535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03318686 285.26626587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03318687 285.26626587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03318688 285.26626587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03318689 285.26629639 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03318690 285.26632690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03318691 285.26632690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03318692 285.26635742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03318693 285.26635742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03318694 285.26638794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03318695 285.26638794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03318696 285.26641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03318697 285.26641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03318698 285.26641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03318699 285.26641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03318700 285.26644897 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03318701 285.26644897 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03318702 285.26651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03318703 285.26651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03318704 285.26654053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03318705 285.26654053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03318706 285.26657104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03318707 285.26657104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03318708 285.26657104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03318709 285.26660156 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03318710 285.26663208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03318711 285.26663208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03318712 285.26666260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03318713 285.26666260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03318714 285.26669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03318715 285.26669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03318716 285.26672363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03318717 285.26672363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03318718 285.26675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03318719 285.26675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03318720 285.26675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03318721 285.26675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03318722 285.26678467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03318723 285.26678467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03318724 285.26681519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03318725 285.26684570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03318726 285.26687622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03318727 285.26687622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03318728 285.26690674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03318729 285.26690674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03318730 285.26690674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03318731 285.26690674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03318732 285.26693726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03318733 285.26693726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03318734 285.26696777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03318735 285.26696777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03318736 285.26699829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03318737 285.26699829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03318738 285.26702881 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03318739 285.26702881 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03318740 285.26705933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03318741 285.26705933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03318742 285.26705933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03318743 285.26705933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03318744 285.26708984 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03318745 285.26712036 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03318746 285.26715088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03318747 285.26715088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03318748 285.26718140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03318749 285.26718140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03318750 285.26721191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03318751 285.26721191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03318752 285.26721191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03318753 285.26721191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03318754 285.26724243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03318755 285.26724243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03318756 285.26727295 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03318757 285.26727295 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03318758 285.26730347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03318759 285.26730347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03318760 285.26733398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03318761 285.26733398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03318762 285.26736450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03318763 285.26736450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03318764 285.26736450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03318765 285.26739502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03318766 285.26742554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03318767 285.26742554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03318768 285.26745605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03318769 285.26745605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03318770 285.26748657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03318771 285.26748657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03318772 285.26754761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03318773 285.26754761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03318774 285.26754761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03318775 285.26754761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03318776 285.26757813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03318777 285.26757813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03318778 285.26760864 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03318779 285.26760864 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03318780 285.26763916 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03318781 285.26763916 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03318782 285.26766968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03318783 285.26766968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03318784 285.26770020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03318785 285.26770020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03318786 285.26773071 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03318787 285.26773071 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03318788 285.26776123 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03318789 285.26776123 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03318790 285.26779175 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03318791 285.26779175 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03318792 285.26782227 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03318793 285.26782227 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03318794 285.26785278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03318795 285.26785278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03318796 285.26785278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03318797 285.26785278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03318798 285.26788330 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03318799 285.26788330 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03318800 285.26794434 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03318801 285.26794434 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03318802 285.26797485 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03318803 285.26797485 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03318804 285.26800537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03318805 285.26800537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03318806 285.26800537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03318807 285.26800537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03318808 285.26803589 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03318809 285.26806641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03318810 285.26809692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03318811 285.26809692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03318812 285.26812744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03318813 285.26812744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03318814 285.26815796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03318815 285.26815796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03318816 285.26815796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03318817 285.26815796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03318818 285.26818848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03318819 285.26818848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03318820 285.26821899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03318821 285.26821899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03318822 285.26824951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03318823 285.26824951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03318824 285.26828003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03318825 285.26828003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03318826 285.26831055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03318827 285.26834106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03318828 285.26834106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03318829 285.26834106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03318830 285.26837158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03318831 285.26837158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03318832 285.26840210 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03318833 285.26840210 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03318834 285.26843262 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03318835 285.26843262 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03318836 285.26846313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03318837 285.26846313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03318838 285.26849365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03318839 285.26849365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03318840 285.26849365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03318841 285.26849365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03318842 285.26852417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03318843 285.26852417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03318844 285.26855469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03318845 285.26855469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03318846 285.26858521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03318847 285.26861572 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03318848 285.26864624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03318849 285.26864624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03318850 285.26864624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03318851 285.26864624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03318852 285.26867676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03318853 285.26867676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03318854 285.26870728 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03318855 285.26870728 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03318856 285.26873779 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03318857 285.26873779 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03318858 285.26876831 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03318859 285.26876831 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03318860 285.26879883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03318861 285.26879883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03318862 285.26879883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03318863 285.26879883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03318864 285.26882935 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03318865 285.26885986 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03318866 285.26889038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03318867 285.26889038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03318868 285.26892090 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03318869 285.26892090 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03318870 285.26895142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03318871 285.26895142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03318872 285.26895142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03318873 285.26895142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03318874 285.26898193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03318875 285.26898193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03318876 285.26901245 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03318877 285.26901245 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03318878 285.26904297 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03318879 285.26904297 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03318880 285.26907349 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03318881 285.26907349 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03318882 285.26910400 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03318883 285.26910400 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03318884 285.26913452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03318885 285.26913452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03318886 285.26916504 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03318887 285.26916504 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03318888 285.26919556 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03318889 285.26919556 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03318890 285.26922607 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03318891 285.26922607 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03318892 285.26925659 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03318893 285.26925659 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03318894 285.26928711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03318895 285.26928711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03318896 285.26928711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03318897 285.26928711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03318898 285.26931763 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03318899 285.26931763 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03318900 285.26934814 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03318901 285.26934814 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03318902 285.26937866 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03318903 285.26937866 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03318904 285.26940918 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03318905 285.26940918 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03318906 285.26943970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03318907 285.26943970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03318908 285.26947021 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03318909 285.26947021 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03318910 285.26950073 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03318911 285.26950073 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03318912 285.26953125 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03318913 285.26953125 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03318914 285.26956177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03318915 285.26956177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03318916 285.26959229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03318917 285.26959229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03318918 285.26959229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03318919 285.26959229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03318920 285.26962280 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03318921 285.26962280 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03318922 285.26968384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03318923 285.26968384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03318924 285.26971436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03318925 285.26971436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03318926 285.26974487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03318927 285.26974487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03318928 285.26974487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03318929 285.26977539 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03318930 285.26980591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03318931 285.26980591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03318932 285.26983643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03318933 285.26983643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03318934 285.26986694 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03318935 285.26986694 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03318936 285.26989746 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03318937 285.26989746 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03318938 285.26992798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03318939 285.26992798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03318940 285.26992798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03318941 285.26992798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03318942 285.26995850 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03318943 285.26995850 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03318944 285.26998901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03318945 285.26998901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03318946 285.27001953 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03318947 285.27005005 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03318948 285.27008057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03318949 285.27008057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03318950 285.27008057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03318951 285.27008057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03318952 285.27011108 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03318953 285.27011108 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03318954 285.27014160 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03318955 285.27014160 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03318956 285.27017212 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03318957 285.27017212 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03318958 285.27020264 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03318959 285.27020264 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03318960 285.27023315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03318961 285.27023315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03318962 285.27023315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03318963 285.27023315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03318964 285.27026367 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03318965 285.27026367 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03318966 285.27029419 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03318967 285.27032471 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03318968 285.27035522 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03318969 285.27035522 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03318970 285.27038574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03318971 285.27038574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03318972 285.27038574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03318973 285.27038574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03318974 285.27041626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03318975 285.27041626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03318976 285.27044678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03318977 285.27044678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03318978 285.27047729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03318979 285.27047729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03318980 285.27050781 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03318981 285.27050781 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03318982 285.27053833 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03318983 285.27053833 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03318984 285.27056885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03318985 285.27056885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03318986 285.27056885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03318987 285.27059937 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03318988 285.27062988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03318989 285.27062988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03318990 285.27066040 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03318991 285.27066040 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03318992 285.27072144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03318993 285.27072144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03318994 285.27072144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03318995 285.27072144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03318996 285.27075195 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03318997 285.27075195 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03318998 285.27078247 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03318999 285.27078247 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03319000 285.27081299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03319001 285.27081299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03319002 285.27084351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03319003 285.27084351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03319004 285.27087402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03319005 285.27087402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03319006 285.27087402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03319007 285.27090454 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03319008 285.27093506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03319009 285.27093506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03319010 285.27096558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03319011 285.27096558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03319012 285.27099609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03319013 285.27099609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03319014 285.27102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03319015 285.27102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03319016 285.27102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03319017 285.27102661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03319018 285.27105713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03319019 285.27105713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03319020 285.27108765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03319021 285.27108765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03319022 285.27111816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03319023 285.27111816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03319024 285.27114868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03319025 285.27117920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03319026 285.27117920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03319027 285.27117920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03330032 285.43215942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -03330033 285.43215942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17320 -03330034 285.43218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -03330035 285.43218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17330 -03330036 285.43222046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -03330037 285.43222046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17340 -03330038 285.43228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -03330039 285.43228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17350 -03330040 285.43228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -03330041 285.43228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17360 -03330042 285.43231201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -03330043 285.43231201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17370 -03330044 285.43234253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -03330045 285.43237305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17380 -03330046 285.43240356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -03330047 285.43240356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17390 -03330048 285.43243408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -03330049 285.43243408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a0 -03330050 285.43243408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -03330051 285.43243408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b0 -03330052 285.43246460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -03330053 285.43246460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c0 -03330054 285.43249512 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -03330055 285.43249512 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d0 -03330056 285.43252563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -03330057 285.43252563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e0 -03330058 285.43255615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -03330059 285.43255615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f0 -03330060 285.43258667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -03330061 285.43258667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17400 -03330062 285.43258667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -03330063 285.43258667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17410 -03330064 285.43261719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -03330065 285.43264771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17420 -03330066 285.43267822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -03330067 285.43267822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17430 -03330068 285.43270874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -03330069 285.43270874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17440 -03330070 285.43273926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -03330071 285.43273926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17450 -03330072 285.43276978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -03330073 285.43276978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17460 -03330074 285.43276978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -03330075 285.43276978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17470 -03335209 285.50662231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -03335210 285.50662231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d0 -03335211 285.50665283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -03335212 285.50665283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e0 -03335213 285.50668335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -03335214 285.50668335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f0 -03335215 285.50671387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -03335216 285.50671387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21500 -03335217 285.50674438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -03335218 285.50674438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21510 -03335219 285.50677490 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -03335220 285.50677490 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21520 -03335221 285.50680542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -03335222 285.50680542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21530 -03335223 285.50680542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -03335224 285.50680542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21540 -03335225 285.50683594 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -03335226 285.50683594 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21550 -03335227 285.50686646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -03335228 285.50689697 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21560 -03335229 285.50692749 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -03335230 285.50692749 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21570 -03335231 285.50695801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -03335232 285.50695801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21580 -03335233 285.50695801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -03335234 285.50695801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21590 -03335235 285.50698853 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -03335236 285.50698853 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a0 -03335237 285.50701904 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -03335238 285.50701904 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b0 -03335239 285.50704956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -03335240 285.50704956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c0 -03335241 285.50708008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -03335242 285.50708008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d0 -03335243 285.50711060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -03335244 285.50711060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e0 -03335245 285.50711060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -03335246 285.50711060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f0 -03335247 285.50714111 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -03335248 285.50717163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21600 -03335249 285.50720215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -03335250 285.50720215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21610 -03335251 285.50723267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -03335252 285.50723267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21620 -03341085 285.59445190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -03341086 285.59445190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc70 -03341087 285.59448242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -03341088 285.59448242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc80 -03341089 285.59448242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -03341090 285.59448242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc90 -03341091 285.59451294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -03341092 285.59451294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca0 -03341093 285.59454346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -03341094 285.59454346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb0 -03341095 285.59457397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -03341096 285.59457397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc0 -03341097 285.59463501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -03341098 285.59463501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd0 -03341099 285.59463501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -03341100 285.59463501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce0 -03341101 285.59466553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -03341102 285.59466553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf0 -03341103 285.59469604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -03341104 285.59469604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd00 -03341105 285.59472656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -03341106 285.59472656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd10 -03341107 285.59475708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -03341108 285.59478760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd20 -03341109 285.59481812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -03341110 285.59481812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd30 -03341111 285.59481812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -03341112 285.59481812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd40 -03341113 285.59484863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -03341114 285.59484863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd50 -03341115 285.59487915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -03341116 285.59487915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd60 -03341117 285.59490967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -03341118 285.59490967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd70 -03341119 285.59497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -03341120 285.59497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd80 -03341121 285.59497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -03341122 285.59497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd90 -03341123 285.59500122 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -03341124 285.59500122 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda0 -03341125 285.59503174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -03341126 285.59503174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb0 -03341127 285.59506226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -03341128 285.59506226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc0 -03347135 285.68176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -03347136 285.68176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -03347137 285.68179321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -03347138 285.68179321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -03347139 285.68182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -03347140 285.68182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -03347141 285.68185425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -03347142 285.68185425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -03347143 285.68185425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -03347144 285.68188477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -03347145 285.68191528 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -03347146 285.68191528 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -03347147 285.68194580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -03347148 285.68194580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -03347149 285.68197632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -03347150 285.68197632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -03347151 285.68200684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -03347152 285.68200684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -03347153 285.68203735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -03347154 285.68203735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -03347155 285.68203735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -03347156 285.68203735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -03347157 285.68209839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -03347158 285.68209839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a30 -03347159 285.68212891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -03347160 285.68212891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a40 -03347161 285.68215942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -03347162 285.68215942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a50 -03347163 285.68218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -03347164 285.68218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a60 -03347165 285.68218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -03347166 285.68218994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a70 -03347167 285.68225098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -03347168 285.68225098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a80 -03347169 285.68228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -03347170 285.68228149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a90 -03347171 285.68231201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -03347172 285.68231201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa0 -03347173 285.68234253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -03347174 285.68234253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab0 -03347175 285.68234253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -03347176 285.68234253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac0 -03347177 285.68237305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -03347178 285.68237305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad0 -03360573 286.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03360574 286.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03360575 286.20956421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03360576 286.20956421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03360577 286.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03360578 286.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03360579 286.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03360580 286.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03360581 286.20962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03360582 286.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03360583 286.20968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03360584 286.20968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03360585 286.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03360586 286.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03360587 286.20974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03360588 286.20974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03360589 286.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03360590 286.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03360591 286.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03360592 286.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03360593 286.20980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03360594 286.20980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03360595 286.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03360596 286.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03360597 286.20986938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03360598 286.20986938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03360599 286.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03360600 286.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03360601 286.20993042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03360602 286.20993042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03360603 286.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03360604 286.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03360605 286.20999146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03360606 286.20999146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03360607 286.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03360608 286.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03360609 286.21005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03360610 286.21005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03360611 286.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03360612 286.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03360613 286.21011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03360614 286.21011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03360615 286.21011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03360616 286.21011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03360617 286.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03360618 286.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03360619 286.21017456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03360620 286.21017456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03360621 286.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03360622 286.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03360623 286.21023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03360624 286.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03360625 286.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03360626 286.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03360627 286.21029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03360628 286.21029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03360629 286.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03360630 286.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03360631 286.21035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03360632 286.21035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03360633 286.21038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03360634 286.21038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03360635 286.21041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03360636 286.21041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03360637 286.21041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03360638 286.21041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03360639 286.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03360640 286.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03360641 286.21047974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03360642 286.21051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03360643 286.21054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03360644 286.21054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03360645 286.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03360646 286.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03360647 286.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03360648 286.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03360649 286.21060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03360650 286.21060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03360651 286.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03360652 286.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03360653 286.21066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03360654 286.21066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03360655 286.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03360656 286.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03360657 286.21072388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03360658 286.21072388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03360659 286.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03360660 286.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03360661 286.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03360662 286.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03360663 286.21078491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03360664 286.21081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03360665 286.21084595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03360666 286.21084595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03360667 286.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03360668 286.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03360669 286.21090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03360670 286.21090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03360671 286.21090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03360672 286.21090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03360673 286.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03360674 286.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03360675 286.21096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03360676 286.21096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03360677 286.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03360678 286.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03360679 286.21102905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03360680 286.21102905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03360681 286.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03360682 286.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03360683 286.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03360684 286.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03360685 286.21109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03360686 286.21112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03360687 286.21115112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03360688 286.21115112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03360689 286.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03360690 286.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03360691 286.21121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03360692 286.21121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03360693 286.21121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03360694 286.21121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03360695 286.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03360696 286.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03360697 286.21130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03360698 286.21130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03360699 286.21133423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03360700 286.21133423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03360701 286.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03360702 286.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03360703 286.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03360704 286.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03360705 286.21139526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03360706 286.21139526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03360707 286.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03360708 286.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03360709 286.21145630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03360710 286.21145630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03360711 286.21148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03360712 286.21151733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03360713 286.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03360714 286.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03360715 286.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03360716 286.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03360717 286.21157837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03360718 286.21157837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03360719 286.21160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03360720 286.21160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03360721 286.21163940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03360722 286.21163940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03360723 286.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03360724 286.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03360725 286.21170044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03360726 286.21170044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03360727 286.21170044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03360728 286.21170044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03360729 286.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03360730 286.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03360731 286.21176147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03360732 286.21179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03360733 286.21182251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03360734 286.21182251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03360735 286.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03360736 286.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03360737 286.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03360738 286.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03360739 286.21188354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03360740 286.21188354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03360741 286.21191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03360742 286.21191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03360743 286.21194458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03360744 286.21194458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03360745 286.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03360746 286.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03360747 286.21200562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03360748 286.21200562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03376983 286.43954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -03376984 286.43954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -03376985 286.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -03376986 286.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -03376987 286.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -03376988 286.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -03376989 286.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -03376990 286.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -03376991 286.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -03376992 286.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -03376993 286.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -03376994 286.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -03376995 286.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -03376996 286.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -03376997 286.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -03376998 286.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -03376999 286.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -03377000 286.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -03377001 286.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -03377002 286.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -03377003 286.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -03377004 286.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -03377005 286.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -03377006 286.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -03377007 286.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -03377008 286.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -03377009 286.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -03377010 286.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -03377011 286.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -03377012 286.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -03377013 286.43997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -03377014 286.43997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -03377015 286.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -03377016 286.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -03377017 286.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -03377018 286.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -03377019 286.44003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21238 -03377020 286.44003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21238 -03377021 286.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21248 -03377022 286.44009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21248 -03377023 286.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21258 -03377024 286.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21258 -03377025 286.44015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21268 -03377026 286.44015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21268 -03381547 286.50253296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb8 -03381548 286.50253296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fb8 -03381549 286.50256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc8 -03381550 286.50256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fc8 -03381551 286.50259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd8 -03381552 286.50259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fd8 -03381553 286.50259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe8 -03381554 286.50259399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29fe8 -03381555 286.50262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff8 -03381556 286.50262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ff8 -03381557 286.50265503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a008 -03381558 286.50265503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a008 -03381559 286.50268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a018 -03381560 286.50268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a018 -03381561 286.50271606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a028 -03381562 286.50271606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a028 -03381563 286.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a038 -03381564 286.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a038 -03381565 286.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a048 -03381566 286.50274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a048 -03381567 286.50277710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a058 -03381568 286.50277710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a058 -03381569 286.50280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a068 -03381570 286.50283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a068 -03381571 286.50283813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a078 -03381572 286.50286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a078 -03381573 286.50289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a088 -03381574 286.50289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a088 -03381575 286.50289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a098 -03381576 286.50289917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a098 -03381577 286.50292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a8 -03381578 286.50292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0a8 -03381579 286.50296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b8 -03381580 286.50296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0b8 -03381581 286.50299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c8 -03381582 286.50299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0c8 -03381583 286.50302124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d8 -03381584 286.50302124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0d8 -03381585 286.50305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e8 -03381586 286.50305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0e8 -03381587 286.50305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f8 -03381588 286.50305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a0f8 -03381589 286.50308228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a108 -03381590 286.50308228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a108 -03386838 286.57580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34508 -03386839 286.57580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34518 -03386840 286.57580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34518 -03386841 286.57583618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34528 -03386842 286.57583618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34528 -03386843 286.57586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34538 -03386844 286.57586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34538 -03386845 286.57589722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34548 -03386846 286.57589722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34548 -03386847 286.57592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34558 -03386848 286.57592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34558 -03386849 286.57595825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34568 -03386850 286.57595825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34568 -03386851 286.57598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34578 -03386852 286.57598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34578 -03386853 286.57598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -03386854 286.57598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -03386855 286.57601929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -03386856 286.57604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -03386857 286.57608032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -03386858 286.57608032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -03386859 286.57611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -03386860 286.57611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -03386861 286.57614136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -03386862 286.57614136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -03386863 286.57614136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -03386864 286.57614136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -03386865 286.57617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -03386866 286.57617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -03386867 286.57620239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -03386868 286.57620239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -03386869 286.57623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -03386870 286.57623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -03386871 286.57626343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -03386872 286.57626343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -03386873 286.57629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -03386874 286.57629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -03386875 286.57629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -03386876 286.57632446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -03386877 286.57635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -03386878 286.57635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -03386879 286.57638550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03386880 286.57638550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -03386881 286.57641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -03391771 286.64443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03391772 286.64443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03391773 286.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03391774 286.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03391775 286.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03391776 286.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03391777 286.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03391778 286.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03391779 286.64456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03391780 286.64456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03391781 286.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03391782 286.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03391783 286.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03391784 286.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03391785 286.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03391786 286.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03391787 286.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03391788 286.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03391789 286.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03391790 286.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03391791 286.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -03391792 286.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -03391793 286.64474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -03391794 286.64474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -03391795 286.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -03391796 286.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -03391797 286.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e008 -03391798 286.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e008 -03391799 286.64480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -03391800 286.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e018 -03391801 286.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -03391802 286.64486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e028 -03391803 286.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -03391804 286.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e038 -03391805 286.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -03391806 286.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e048 -03391807 286.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -03391808 286.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e058 -03391809 286.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -03391810 286.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e068 -03391811 286.64498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -03391812 286.64498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e078 -03391813 286.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -03391814 286.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e088 -03396877 286.71478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec8 -03396878 286.71478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ec8 -03396879 286.71481323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed8 -03396880 286.71481323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ed8 -03396881 286.71484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee8 -03396882 286.71484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ee8 -03396883 286.71484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef8 -03396884 286.71484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ef8 -03396885 286.71487427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f08 -03396886 286.71487427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f08 -03396887 286.71490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f18 -03396888 286.71493530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f18 -03396889 286.71493530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f28 -03396890 286.71496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f28 -03396891 286.71499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f38 -03396892 286.71499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f38 -03396893 286.71499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f48 -03396894 286.71499634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f48 -03396895 286.71502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f58 -03396896 286.71502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f58 -03396897 286.71505737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f68 -03396898 286.71505737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f68 -03396899 286.71508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f78 -03396900 286.71508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f78 -03396901 286.71511841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f88 -03396902 286.71511841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f88 -03396903 286.71514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f98 -03396904 286.71514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f98 -03396905 286.71514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa8 -03396906 286.71514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fa8 -03396907 286.71517944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb8 -03396908 286.71517944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fb8 -03396909 286.71520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc8 -03396910 286.71520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fc8 -03396911 286.71524048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd8 -03396912 286.71524048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fd8 -03396913 286.71530151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe8 -03396914 286.71530151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47fe8 -03396915 286.71530151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff8 -03396916 286.71530151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ff8 -03396917 286.71533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48008 -03396918 286.71533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48008 -03396919 286.71536255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48018 -03396920 286.71536255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48018 -03402467 287.48980713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03402468 287.51181030 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402469 287.51184082 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402470 288.31573486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -03402471 288.34307861 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402472 288.34320068 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402473 288.34365845 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402474 288.34375000 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03402475 289.24908447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402476 289.24911499 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402477 289.24914551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402478 289.24917603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03402479 289.24929810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402480 289.24929810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402481 289.24938965 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402482 289.24942017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402483 289.51486206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03402484 289.53717041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402485 289.53717041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402486 291.53982544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03402487 291.56195068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402488 291.56198120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402489 291.75668335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402490 291.75671387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402491 291.75674438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03402492 291.75674438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03402493 291.75686646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402494 291.75686646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402495 291.75692749 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03402496 291.75695801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03402497 291.79269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03402498 291.79269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03402499 291.79272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03402500 291.79272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03402501 291.79275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03402502 291.79275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03402503 291.79275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03402504 291.79275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03402505 291.79278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03402506 291.79281616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03402507 291.79281616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03402508 291.79284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03402509 291.79287720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03402510 291.79287720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03402511 291.79290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03402512 291.79290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03402513 291.79290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03402514 291.79290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03402515 291.79293823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03402516 291.79293823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03402517 291.79296875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03402518 291.79296875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03402519 291.79299927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03402520 291.79299927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03402521 291.79302979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03402522 291.79302979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03402523 291.79306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03402524 291.79306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03402525 291.79306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03402526 291.79306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03402527 291.79309082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03402528 291.79309082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03402529 291.79312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03402530 291.79312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03402531 291.79315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03402532 291.79315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03402533 291.79318237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03402534 291.79318237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03402535 291.79321289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03402536 291.79321289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03402537 291.79324341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03402538 291.79324341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03402539 291.79324341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03402540 291.79324341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03402541 291.79327393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03402542 291.79327393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03402543 291.79330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03402544 291.79330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03402545 291.79333496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03402546 291.79333496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03402547 291.79336548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03402548 291.79339600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03402549 291.79339600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03402550 291.79339600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03402551 291.79342651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03402552 291.79342651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03402553 291.79345703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03402554 291.79345703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03402555 291.79348755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03402556 291.79348755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03402557 291.79351807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03402558 291.79351807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03402559 291.79354858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03402560 291.79354858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03402561 291.79354858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03402562 291.79354858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03402563 291.79357910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03402564 291.79357910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03402565 291.79360962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03402566 291.79364014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03402567 291.79367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03402568 291.79367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03402569 291.79370117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03402570 291.79370117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03402571 291.79370117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03402572 291.79370117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03402573 291.79373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03402574 291.79373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03402575 291.79376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03402576 291.79376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03402577 291.79379272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03402578 291.79379272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03402579 291.79382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03402580 291.79382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03402581 291.79385376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03402582 291.79385376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03402583 291.79385376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03402584 291.79385376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03402585 291.79388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03402586 291.79391479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03402587 291.79394531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03402588 291.79394531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03402589 291.79397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03402590 291.79397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03402591 291.79400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03402592 291.79400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03402593 291.79403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03402594 291.79403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03402595 291.79403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03402596 291.79403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03402597 291.79406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03402598 291.79406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03402599 291.79409790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03402600 291.79409790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03402601 291.79412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03402602 291.79412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03402603 291.79415894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03402604 291.79415894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03402605 291.79418945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03402606 291.79418945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03402607 291.79418945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03402608 291.79421997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03402609 291.79425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03402610 291.79425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03402611 291.79428101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03402612 291.79428101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03402613 291.79431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03402614 291.79431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03402615 291.79434204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03402616 291.79434204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03402617 291.79434204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03402618 291.79434204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03402619 291.79437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03402620 291.79437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03402621 291.79443359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03402622 291.79443359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03402623 291.79446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03402624 291.79446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03402625 291.79449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03402626 291.79449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03402627 291.79449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03402628 291.79449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03402629 291.79452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03402630 291.79452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03402631 291.79455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03402632 291.79455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03402633 291.79458618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03402634 291.79458618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03402635 291.79461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03402636 291.79461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03402637 291.79464722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03402638 291.79464722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03402639 291.79467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03402640 291.79467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03402641 291.79470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03402642 291.79470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03402643 291.79473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03402644 291.79473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03402645 291.79476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03402646 291.79476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03402647 291.79479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03402648 291.79479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03402649 291.79483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03402650 291.79483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03402651 291.79483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03402652 291.79483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03402653 291.79486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03402654 291.79486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03402655 291.79489136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03402656 291.79489136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03402657 291.79492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03402658 291.79495239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03402659 291.79498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03402660 291.79498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03402661 291.79498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03402662 291.79498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03402663 291.79501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03402664 291.79501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03402665 291.79504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03402666 291.79504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03402667 291.79507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03402668 291.79507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03402669 291.79510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03402670 291.79510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03402671 291.79513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03402672 291.79513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03402673 291.79513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03402674 291.79513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03402675 291.79516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03402676 291.79516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03402677 291.79519653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03402678 291.79519653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03402679 291.79522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03402680 291.79522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03402681 291.79525757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03402682 291.79525757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03402683 291.79528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03402684 291.79528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03402685 291.79528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03402686 291.79528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03402687 291.79531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03402688 291.79531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03402689 291.79534912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03402690 291.79534912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03402691 291.79537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03402692 291.79541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03402693 291.79544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03402694 291.79544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03402695 291.79547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03402696 291.79547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03402697 291.79547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03402698 291.79547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03402699 291.79550171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03402700 291.79550171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03402701 291.79553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03402702 291.79553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03402703 291.79556274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03402704 291.79556274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03402705 291.79559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03402706 291.79559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03402707 291.79562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03402708 291.79562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03402709 291.79562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03402710 291.79565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03402711 291.79568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03402712 291.79568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03402713 291.79571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03402714 291.79571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03402715 291.79574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03402716 291.79574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03402717 291.79577637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03402718 291.79577637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03402719 291.79577637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03402720 291.79577637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03402721 291.79580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03402722 291.79580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03402723 291.79583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03402724 291.79583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03402725 291.79586792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03402726 291.79586792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03402727 291.79589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03402728 291.79589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03402729 291.79592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03402730 291.79592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03402731 291.79592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03402732 291.79592896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03402733 291.79595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03402734 291.79595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03402735 291.79598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03402736 291.79598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03402737 291.79602051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03402738 291.79602051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03402739 291.79605103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03402740 291.79605103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03402741 291.79608154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03402742 291.79608154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03402743 291.79608154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03402744 291.79608154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03402745 291.79611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03402746 291.79611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03402747 291.79614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03402748 291.79614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03402749 291.79617310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03402750 291.79617310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03402751 291.79620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03402752 291.79623413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03402753 291.79623413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03402754 291.79626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03402755 291.79626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03402756 291.79626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03402757 291.79629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03402758 291.79629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03402759 291.79632568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03402760 291.79632568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03402761 291.79635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03402762 291.79635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03402763 291.79638672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03402764 291.79638672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03402765 291.79641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03402766 291.79641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03402767 291.79641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03402768 291.79641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03402769 291.79644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03402770 291.79644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03402771 291.79647827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03402772 291.79647827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03402773 291.79650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03402774 291.79650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03402775 291.79653931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03402776 291.79653931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03402777 291.79656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03402778 291.79656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03402779 291.79656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03402780 291.79656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03402781 291.79660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03402782 291.79660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03402783 291.79663086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03402784 291.79666138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03402785 291.79669189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03402786 291.79669189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03402787 291.79672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03402788 291.79672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03402789 291.79672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03402790 291.79672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03402791 291.79675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03402792 291.79675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03402793 291.79678345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03402794 291.79678345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03402795 291.79681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03402796 291.79681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03402797 291.79684448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03402798 291.79684448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03402799 291.79687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03402800 291.79687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03402801 291.79687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03402802 291.79687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03402803 291.79690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03402804 291.79690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03402805 291.79693604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03402806 291.79693604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03402807 291.79696655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03402808 291.79696655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03402809 291.79699707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03402810 291.79699707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03402811 291.79702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03402812 291.79702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03402813 291.79705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03402814 291.79705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03402815 291.79705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03402816 291.79705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03402817 291.79708862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03402818 291.79711914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03402819 291.79711914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03402820 291.79714966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03402821 291.79718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03402822 291.79718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03402823 291.79721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03402824 291.79721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03402825 291.79721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03402826 291.79721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03402827 291.79724121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03402828 291.79724121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03402829 291.79727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03402830 291.79727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03402831 291.79730225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03402832 291.79730225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03402833 291.79733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03402834 291.79733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03402835 291.79736328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03402836 291.79736328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03402837 291.79736328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03402838 291.79736328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03402839 291.79739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03402840 291.79739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03402841 291.79742432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03402842 291.79745483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03402843 291.79745483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03402844 291.79748535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03402845 291.79751587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03402846 291.79751587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03402847 291.79751587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03402848 291.79751587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03402849 291.79754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03402850 291.79754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03402851 291.79757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03402852 291.79757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03402853 291.79760742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03402854 291.79760742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03402855 291.79763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03402856 291.79763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03402857 291.79766846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03402858 291.79766846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03402859 291.79766846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03402860 291.79766846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03402861 291.79769897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03402862 291.79769897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03402863 291.79772949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03402864 291.79772949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03402865 291.79776001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03402866 291.79776001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03402867 291.79779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03402868 291.79779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03402869 291.79782104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03402870 291.79782104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03402871 291.79785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03402872 291.79785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03402873 291.79785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03402874 291.79785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03402875 291.79788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03402876 291.79788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03402877 291.79791260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03402878 291.79791260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03402879 291.79794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03402880 291.79794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03402881 291.79797363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03402882 291.79800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03402883 291.79800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03402884 291.79800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03402885 291.79803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03402886 291.79803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03402887 291.79806519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03402888 291.79806519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03402889 291.79809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03402890 291.79809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03402891 291.79812622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03402892 291.79812622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03402893 291.79815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03402894 291.79815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03402895 291.79815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03402896 291.79815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03402897 291.79818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03402898 291.79818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03402899 291.79821777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03402900 291.79821777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03402901 291.79824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03402902 291.79824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03402903 291.79827881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03402904 291.79827881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03402905 291.79830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03402906 291.79830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03402907 291.79830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03402908 291.79830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03402909 291.79833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03402910 291.79833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03402911 291.79837036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03402912 291.79837036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03402913 291.79840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03402914 291.79840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03402915 291.79843140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03402916 291.79843140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03402917 291.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03402918 291.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03402919 291.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03402920 291.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03402921 291.79849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03402922 291.79849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03402923 291.79852295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03402924 291.79855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03402925 291.79855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03402926 291.79858398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03402927 291.79861450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03402928 291.79861450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03402929 291.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03402930 291.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03402931 291.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03402932 291.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03402933 291.79867554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03402934 291.79867554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03402935 291.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03402936 291.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03402937 291.79873657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03402938 291.79873657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03402939 291.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03402940 291.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03402941 291.79879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03402942 291.79879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03402943 291.79879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03402944 291.79879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03402945 291.79882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03402946 291.79885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03402947 291.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03402948 291.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03402949 291.79891968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03402950 291.79891968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03402951 291.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03402952 291.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03402953 291.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03402954 291.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03402955 291.79898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03402956 291.79898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03402957 291.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03402958 291.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03402959 291.79904175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03402960 291.79904175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03402961 291.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03402962 291.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03402963 291.79910278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03402964 291.79910278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03402965 291.79910278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03402966 291.79910278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03402967 291.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03402968 291.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03402969 291.79916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03402970 291.79916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03402971 291.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03402972 291.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03402973 291.79922485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03402974 291.79922485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03402975 291.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03402976 291.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03402977 291.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03402978 291.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03402979 291.79928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03402980 291.79928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03402981 291.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03402982 291.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03402983 291.79934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03402984 291.79934692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03402985 291.79937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03402986 291.79940796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03402987 291.79940796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03402988 291.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03402989 291.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03402990 291.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03402991 291.79946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03402992 291.79946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03402993 291.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03402994 291.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03402995 291.79953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03402996 291.79953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03402997 291.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03402998 291.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03402999 291.79959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03403000 291.79959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03403001 291.79959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03403002 291.79959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03403003 291.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03403004 291.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03403005 291.79965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03403006 291.79965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03403007 291.79968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03403008 291.79971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03403009 291.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03403010 291.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03403011 291.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03403012 291.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03403013 291.79977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03403014 291.79977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03403015 291.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03403016 291.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03403017 291.79983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03403018 291.79983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03403019 291.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03403020 291.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03403021 291.79989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03403022 291.79989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03403023 291.79989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03403024 291.79989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03403025 291.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03403026 291.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03403027 291.79995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03403028 291.79995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03403029 291.79998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03403030 291.79998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03403031 291.80001831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03403032 291.80001831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03403033 291.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03403034 291.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03403035 291.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03403036 291.80007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03403037 291.80007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03403038 291.80010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03403039 291.80014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03403040 291.80014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03403041 291.80017090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03403042 291.80017090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03403043 291.80020142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03403044 291.80020142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03403045 291.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03403046 291.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03403047 291.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03403048 291.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03403049 291.80026245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03403050 291.80026245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03403051 291.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03403052 291.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03403053 291.80032349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03403054 291.80032349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03403055 291.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03403056 291.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03403057 291.80038452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03403058 291.80038452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03403059 291.80038452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03403060 291.80038452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03403061 291.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03403062 291.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03403063 291.80044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03403064 291.80044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03403065 291.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03403066 291.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03403067 291.80050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03403068 291.80050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03403069 291.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03403070 291.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03403071 291.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03403072 291.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03403073 291.80056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03403074 291.80056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03403075 291.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03403076 291.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03403077 291.80065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03403078 291.80065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03403079 291.80068970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03403080 291.80068970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03403081 291.80068970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03403082 291.80068970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03403083 291.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03403084 291.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03403085 291.80075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03403086 291.80075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03403087 291.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03403088 291.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03403089 291.80081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03403090 291.80081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03403091 291.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03403092 291.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03403093 291.80087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03403094 291.80087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03403095 291.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03403096 291.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03403097 291.80093384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03403098 291.80093384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03403099 291.80096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03403100 291.80096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03403101 291.80099487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03403102 291.80099487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03403103 291.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03403104 291.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03403105 291.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03403106 291.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03403107 291.80105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03403108 291.80105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03403109 291.80108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03403110 291.80111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03403111 291.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03403112 291.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03403113 291.80117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03403114 291.80117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03403115 291.80117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03403116 291.80117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03403117 291.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03403118 291.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03403119 291.80123901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03403120 291.80123901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03403121 291.80126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03403122 291.80126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03403123 291.80130005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03403124 291.80130005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03403125 291.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03403126 291.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03403127 291.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03403128 291.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03403129 291.80136108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03403130 291.80139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03403131 291.80142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03403132 291.80142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03403133 291.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03403134 291.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03403135 291.80148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03403136 291.80148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03403137 291.80148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03403138 291.80148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03403139 291.80151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03403140 291.80151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03403141 291.80154419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03403142 291.80154419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03403143 291.80157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03403144 291.80157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03403145 291.80160522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03403146 291.80160522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03403147 291.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03403148 291.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03403149 291.80166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03403150 291.80166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03403151 291.80166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03403152 291.80169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03403153 291.80172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03403154 291.80172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03403155 291.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03403156 291.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03403157 291.80178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03403158 291.80178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03403159 291.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03403160 291.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03403161 291.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03403162 291.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03403163 291.80184937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03403164 291.80184937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03403165 291.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03403166 291.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03403167 291.80191040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03403168 291.80191040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03403169 291.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03403170 291.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03403171 291.80197144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03403172 291.80197144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03403173 291.80197144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03403174 291.80197144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03403175 291.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03403176 291.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03403177 291.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03403178 291.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03403179 291.80209351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03403180 291.80209351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03403181 291.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03403182 291.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03403183 291.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03403184 291.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03403185 291.80215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03403186 291.80215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03403187 291.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03403188 291.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03403189 291.80221558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03403190 291.80221558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03403191 291.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03403192 291.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03403193 291.80227661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03403194 291.80227661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03403195 291.80227661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03403196 291.80227661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03403197 291.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03403198 291.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03403199 291.80233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03403200 291.80236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03403201 291.80239868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03403202 291.80239868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03403203 291.80242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03403204 291.80242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03403205 291.80245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03403206 291.80245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03403207 291.80245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03403208 291.80245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03403209 291.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03403210 291.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03403211 291.80252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03403212 291.80252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03403213 291.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03403214 291.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03403215 291.80258179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03403216 291.80258179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03403217 291.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03403218 291.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03403219 291.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03403220 291.80264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03403221 291.80267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03403222 291.80267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03403223 291.80270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03403224 291.80270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03403225 291.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03403226 291.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03403227 291.80276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03403228 291.80276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03403229 291.80276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03403230 291.80276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03403231 291.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03403232 291.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03403233 291.80282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03403234 291.80282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03403235 291.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03403236 291.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03403237 291.80288696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03403238 291.80288696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03403239 291.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03403240 291.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03403241 291.80294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03403242 291.80294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03403243 291.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03403244 291.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03403245 291.80300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03403246 291.80300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03403247 291.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03403248 291.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03403249 291.80307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03403250 291.80307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03403251 291.80307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03403252 291.80307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03403253 291.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03403254 291.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03403255 291.80313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03403256 291.80313110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03403257 291.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03403258 291.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03403259 291.80319214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03403260 291.80319214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03403261 291.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03403262 291.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03403263 291.80325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03403264 291.80325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03403265 291.80325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03403266 291.80325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03403267 291.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03403268 291.80331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03403269 291.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03403270 291.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03403271 291.80337524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03403272 291.80337524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03403273 291.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03403274 291.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03403275 291.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03403276 291.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03403277 291.80343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03403278 291.80343628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03403279 291.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03403280 291.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03403281 291.80349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03403282 291.80349731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03403283 291.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03403284 291.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03403285 291.80355835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03403286 291.80355835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03403287 291.80355835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03403288 291.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03403289 291.80361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03403290 291.80361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03403291 291.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03403292 291.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03403293 291.80368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03403294 291.80368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03403295 291.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03403296 291.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03403297 291.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03403298 291.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03403299 291.80374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03403300 291.80374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03403301 291.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03403302 291.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03403303 291.80380249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03403304 291.80380249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03403305 291.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03403306 291.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03403307 291.80386353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03403308 291.80386353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03403309 291.80386353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03403310 291.80386353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03403311 291.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03403312 291.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03403313 291.80392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03403314 291.80395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03403315 291.80398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03403316 291.80398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03403317 291.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03403318 291.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03403319 291.80404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03403320 291.80404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03403321 291.80404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03403322 291.80404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03403323 291.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03403324 291.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03403325 291.80410767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03403326 291.80410767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03403327 291.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03403328 291.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03403329 291.80416870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03403330 291.80416870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03403331 291.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03403332 291.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03403333 291.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03403334 291.80422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03403335 291.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03403336 291.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03403337 291.80429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03403338 291.80429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03403339 291.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03403340 291.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03403341 291.80435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03403342 291.80435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03403343 291.80435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03403344 291.80435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03403345 291.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03403346 291.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03403347 291.80441284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03403348 291.80441284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03403349 291.80444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03403350 291.80444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03403351 291.80447388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03403352 291.80447388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03403353 291.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03403354 291.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03403355 291.80453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03403356 291.80453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03403357 291.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03403358 291.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03403359 291.80459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03403360 291.80459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03403361 291.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03403362 291.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03403363 291.80465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03403364 291.80465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03403365 291.80465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03403366 291.80465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03403367 291.80468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03403368 291.80468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03403369 291.80471802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03403370 291.80471802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03403371 291.80474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03403372 291.80477905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03403373 291.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03403374 291.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03403375 291.80484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03403376 291.80484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03403377 291.80484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03403378 291.80484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03403379 291.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03403380 291.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03403381 291.80490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03403382 291.80490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03403383 291.80493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03403384 291.80493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03403385 291.80496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03403386 291.80496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03403387 291.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03403388 291.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03403389 291.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03403390 291.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03403391 291.80502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03403392 291.80502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03403393 291.80508423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03403394 291.80508423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03403395 291.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03403396 291.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03403397 291.80514526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03403398 291.80514526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03403399 291.80514526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03403400 291.80514526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03403401 291.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03403402 291.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03403403 291.80520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03403404 291.80520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03403405 291.80523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03403406 291.80523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03403407 291.80526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03403408 291.80526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03403409 291.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03403410 291.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03403411 291.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03403412 291.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03403413 291.80532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03403414 291.80532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03403415 291.80535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03403416 291.80538940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03403417 291.80538940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03403418 291.80541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03403419 291.80545044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03403420 291.80545044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03403421 291.80545044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03403422 291.80545044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03403423 291.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03403424 291.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03403425 291.80551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03403426 291.80551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03403427 291.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03403428 291.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03403429 291.80557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03403430 291.80557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03403431 291.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03403432 291.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03403433 291.80563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03403434 291.80563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03403435 291.80563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03403436 291.80563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03403437 291.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03403438 291.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03403439 291.80569458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03403440 291.80569458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03403441 291.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03403442 291.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03403443 291.80575562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03403444 291.80575562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03403445 291.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03403446 291.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03403447 291.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03403448 291.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03403449 291.80581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03403450 291.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03403451 291.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03403452 291.80587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03403453 291.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03403454 291.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03403455 291.80593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03403456 291.80593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03403457 291.80593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03403458 291.80593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03403459 291.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03403460 291.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03403461 291.80599976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03403462 291.80599976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03403463 291.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03403464 291.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03403465 291.80606079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03403466 291.80606079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03403467 291.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03403468 291.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03403469 291.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03403470 291.80612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03403471 291.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03403472 291.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03403473 291.80618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03403474 291.80618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03403475 291.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03403476 291.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03403477 291.80624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03403478 291.80624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03403479 291.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03403480 291.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03403481 291.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03403482 291.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03403483 291.80630493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03403484 291.80630493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03403485 291.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03403486 291.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03403487 291.80636597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03403488 291.80636597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03403489 291.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03403490 291.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03403491 291.80642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03403492 291.80642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03403493 291.80642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03403494 291.80642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03403495 291.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03403496 291.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03403497 291.80648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03403498 291.80648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03403499 291.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03403500 291.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03403501 291.80654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03403502 291.80654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03403503 291.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03403504 291.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03403505 291.80661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03403506 291.80661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03403507 291.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03403508 291.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03403509 291.80667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03403510 291.80667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03403511 291.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03403512 291.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03403513 291.80673218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03403514 291.80673218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03403515 291.80673218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03403516 291.80673218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03403517 291.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03403518 291.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03403519 291.80679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03403520 291.80679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03403521 291.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03403522 291.80685425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03403523 291.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03403524 291.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03403525 291.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03403526 291.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03403527 291.80691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03403528 291.80691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03403529 291.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03403530 291.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03403531 291.80697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03403532 291.80697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03403533 291.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03403534 291.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03403535 291.80703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03403536 291.80703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03403537 291.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03403538 291.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03403539 291.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03403540 291.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03403541 291.80709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03403542 291.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03403543 291.80715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03403544 291.80715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03403545 291.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03403546 291.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03403547 291.80722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03403548 291.80722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03403549 291.80722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03403550 291.80722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03403551 291.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03403552 291.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03403553 291.80728149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03403554 291.80728149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03403555 291.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03403556 291.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03403557 291.80734253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03403558 291.80734253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03403559 291.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03403560 291.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03403561 291.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03403562 291.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03403563 291.80740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03403564 291.80740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03403565 291.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03403566 291.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03403567 291.80746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03403568 291.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03403569 291.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03403570 291.80752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03403571 291.80752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03403572 291.80752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03403573 291.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03403574 291.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03403575 291.80758667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03403576 291.80758667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03403577 291.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03403578 291.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03403579 291.80764771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03403580 291.80764771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03403581 291.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03403582 291.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03403583 291.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03403584 291.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03403585 291.80770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03403586 291.80770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03403587 291.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03403588 291.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03403589 291.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03403590 291.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03403591 291.80783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03403592 291.80783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03403593 291.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03403594 291.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03403595 291.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03403596 291.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03403597 291.80789185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03403598 291.80789185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03403599 291.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03403600 291.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03403601 291.80795288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03403602 291.80795288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03403603 291.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03403604 291.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03403605 291.80801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03403606 291.80801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03403607 291.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03403608 291.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03403609 291.80807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03403610 291.80807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03403611 291.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03403612 291.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03403613 291.80813599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03403614 291.80813599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03403615 291.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03403616 291.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03403617 291.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03403618 291.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03403619 291.80819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03403620 291.80819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03403621 291.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03403622 291.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03403623 291.80825806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03403624 291.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03403625 291.80831909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03403626 291.80831909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03403627 291.80831909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03403628 291.80831909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03403629 291.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03403630 291.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03403631 291.80838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03403632 291.80838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03403633 291.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03403634 291.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03403635 291.80844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03403636 291.80844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03403637 291.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03403638 291.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03403639 291.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03403640 291.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03403641 291.80850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03403642 291.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03403643 291.80856323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03403644 291.80856323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03403645 291.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03403646 291.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03403647 291.80862427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03403648 291.80862427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03403649 291.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03403650 291.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03403651 291.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03403652 291.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03403653 291.80868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03403654 291.80868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03403655 291.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03403656 291.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03403657 291.80874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03403658 291.80874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03403659 291.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03403660 291.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03403661 291.80880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03403662 291.80880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03403663 291.80880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03403664 291.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03403665 291.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03403666 291.80886841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03403667 291.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03403668 291.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03403669 291.80892944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03403670 291.80892944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03403671 291.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03403672 291.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03403673 291.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03403674 291.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03403675 291.80899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03403676 291.80899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03403677 291.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03403678 291.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03403679 291.80905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03403680 291.80905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03403681 291.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03403682 291.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03403683 291.80911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03403684 291.80911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03403685 291.80911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03403686 291.80914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03403687 291.80917358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03403688 291.80917358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03403689 291.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03403690 291.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03403691 291.80923462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03403692 291.80923462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03403693 291.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03403694 291.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03403695 291.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03403696 291.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03403697 291.80929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03403698 291.80929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03403699 291.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03403700 291.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03403701 291.80935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03403702 291.80935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03403703 291.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03403704 291.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03403705 291.80941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03403706 291.80941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03403707 291.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03403708 291.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03403709 291.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03403710 291.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03403711 291.80947876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03403712 291.80947876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03403713 291.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03403714 291.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03403715 291.80953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03403716 291.80953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03403717 291.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03403718 291.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03403719 291.80960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03403720 291.80960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03403721 291.80960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03403722 291.80963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03403723 291.80966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03403724 291.80966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03403725 291.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03403726 291.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03403727 291.80972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03403728 291.80972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03403729 291.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03403730 291.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03403731 291.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03403732 291.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03403733 291.80978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03403734 291.80978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03403735 291.80981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03403736 291.80981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03403737 291.80984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03403738 291.80984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03403739 291.80987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03403740 291.80987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03403741 291.80990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03403742 291.80990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03403743 291.80990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03403744 291.80990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03403745 291.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03403746 291.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03403747 291.80996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03403748 291.80996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03403749 291.80999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03403750 291.81002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03403751 291.81002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03403752 291.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03403753 291.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03403754 291.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03403755 291.81008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03403756 291.81008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03403757 291.81011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03403758 291.81011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03403759 291.81015015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03403760 291.81015015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03403761 291.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03403762 291.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03403763 291.81021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03403764 291.81021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03403765 291.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03403766 291.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03403767 291.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03403768 291.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03403769 291.81027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03403770 291.81027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03403771 291.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03403772 291.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03403773 291.81033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03403774 291.81033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03403775 291.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03403776 291.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03403777 291.81039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03403778 291.81039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03403779 291.81039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03403780 291.81039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03403781 291.81042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03403782 291.81042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03403783 291.81045532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03403784 291.81045532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03403785 291.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03403786 291.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03403787 291.81051636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03403788 291.81051636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03403789 291.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03403790 291.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03403791 291.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03403792 291.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03403793 291.81057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03403794 291.81057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03403795 291.81060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03403796 291.81063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03403797 291.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03403798 291.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03403799 291.81069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03403800 291.81069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03403801 291.81069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03403802 291.81069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03403803 291.81072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03403804 291.81072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03403805 291.81076050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03403806 291.81076050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03403807 291.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03403808 291.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03403809 291.81082153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03403810 291.81082153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03403811 291.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03403812 291.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03403813 291.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03403814 291.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03403815 291.81088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03403816 291.81088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03403817 291.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03403818 291.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03403819 291.81094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03403820 291.81094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03403821 291.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03403822 291.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03403823 291.81100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03403824 291.81100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03403825 291.81103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03403826 291.81103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03403827 291.81103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03403828 291.81106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03403829 291.81106567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03403830 291.81109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03403831 291.81112671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03403832 291.81112671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03403833 291.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03403834 291.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03403835 291.81118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03403836 291.81118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03403837 291.81118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03403838 291.81118774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03403839 291.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03403840 291.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03403841 291.81124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03403842 291.81124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03403843 291.81127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03403844 291.81127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03403845 291.81130981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03403846 291.81130981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03403847 291.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03403848 291.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03403849 291.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03403850 291.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03403851 291.81137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03403852 291.81137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03403853 291.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03403854 291.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03403855 291.81143188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03403856 291.81143188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03403857 291.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03403858 291.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03403859 291.81149292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03403860 291.81149292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03403861 291.81149292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03403862 291.81149292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03403863 291.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03403864 291.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03403865 291.81155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03403866 291.81155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03403867 291.81158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03403868 291.81158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03403869 291.81161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03403870 291.81161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03403871 291.81164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03403872 291.81167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03403873 291.81167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03403874 291.81167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03403875 291.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03403876 291.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03403877 291.81173706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03403878 291.81173706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03403879 291.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03403880 291.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03403881 291.81179810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03403882 291.81179810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03403883 291.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03403884 291.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03403885 291.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03403886 291.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03403887 291.81185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03403888 291.81185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03403889 291.81188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03403890 291.81188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03403891 291.81192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03403892 291.81192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03403893 291.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03403894 291.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03403895 291.81198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03403896 291.81198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03403897 291.81198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03403898 291.81198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03403899 291.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03403900 291.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03403901 291.81204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03403902 291.81204224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03403903 291.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03403904 291.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03403905 291.81210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03403906 291.81210327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03403907 291.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03403908 291.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03403909 291.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03403910 291.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03403911 291.81216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03403912 291.81216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03403913 291.81219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03403914 291.81219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03403915 291.81222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03403916 291.81222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03403917 291.81225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03403918 291.81228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03403919 291.81228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03403920 291.81228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03403921 291.81228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03403922 291.81231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03403923 291.81234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03403924 291.81234741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03403925 291.81237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03403926 291.81237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03403927 291.81240845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03403928 291.81240845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03403929 291.81243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03403930 291.81243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03403931 291.81246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03403932 291.81246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03403933 291.81246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03403934 291.81246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03403935 291.81250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03403936 291.81250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03403937 291.81253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03403938 291.81253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03403939 291.81256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03403940 291.81256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03403941 291.81259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03403942 291.81259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03403943 291.81262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03403944 291.81262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03403945 291.81262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03403946 291.81262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03403947 291.81265259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03403948 291.81265259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03403949 291.81268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03403950 291.81268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03403951 291.81271362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03403952 291.81271362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03403953 291.81274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03403954 291.81274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03403955 291.81277466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03403956 291.81277466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03403957 291.81277466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03403958 291.81277466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03403959 291.81280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03403960 291.81280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03403961 291.81283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03403962 291.81283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03403963 291.81286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03403964 291.81289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03403965 291.81289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03403966 291.81292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03403967 291.81292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03403968 291.81292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03403969 291.81295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03403970 291.81295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03403971 291.81298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03403972 291.81298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03403973 291.81301880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03403974 291.81301880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03403975 291.81304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03403976 291.81304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03403977 291.81307983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03403978 291.81307983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03403979 291.81307983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03403980 291.81307983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03403981 291.81311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03403982 291.81311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03403983 291.81314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03403984 291.81314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03403985 291.81317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03403986 291.81317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03403987 291.81320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03403988 291.81320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03403989 291.81323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03403990 291.81323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03403991 291.81326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03403992 291.81326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03403993 291.81326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03403994 291.81326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03403995 291.81329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03403996 291.81329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03403997 291.81332397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03403998 291.81332397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03403999 291.81335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03404000 291.81335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03404001 291.81338501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03404002 291.81338501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03404003 291.81341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03404004 291.81341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03404005 291.81341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03404006 291.81341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03404007 291.81344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03404008 291.81344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03404009 291.81347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03404010 291.81347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03404011 291.81350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03404012 291.81353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03404013 291.81356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03404014 291.81356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03404015 291.81356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03404016 291.81356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03404017 291.81359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03404018 291.81359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03404019 291.81362915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03404020 291.81362915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03404021 291.81365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03404022 291.81365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03404023 291.81369019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03404024 291.81369019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03404025 291.81372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03404026 291.81372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03404027 291.81372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03404028 291.81372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03404029 291.81375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03404030 291.81375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03404031 291.81378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03404032 291.81378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03404033 291.81381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03404034 291.81381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03404035 291.81384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03404036 291.81384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03404037 291.81387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03404038 291.81387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03404039 291.81387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03404040 291.81390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03404041 291.81393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03404042 291.81393433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03404043 291.81396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03404044 291.81396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03404045 291.81399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03404046 291.81399536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03404047 291.81402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03404048 291.81402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03404049 291.81405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03404050 291.81405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03404051 291.81405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03404052 291.81405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03404053 291.81408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03404054 291.81408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03404055 291.81411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03404056 291.81414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03404057 291.81417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03404058 291.81417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03404059 291.81420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03404060 291.81420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03404061 291.81420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03404062 291.81420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03404063 291.81423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03404064 291.81423950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03404065 291.81427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03404066 291.81427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03404067 291.81430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03404068 291.81430054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03404069 291.81433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03404070 291.81433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03404071 291.81436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03404072 291.81436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03404073 291.81436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03404074 291.81436157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03404075 291.81439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03404076 291.81439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03404077 291.81442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03404078 291.81442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03404079 291.81445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03404080 291.81445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03404081 291.81448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03404082 291.81448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03404083 291.81451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03404084 291.81451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03404085 291.81454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03404086 291.81454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03404087 291.81457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03404088 291.81457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03404089 291.81460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03404090 291.81460571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03404091 291.81463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03404092 291.81463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03404093 291.81466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03404094 291.81466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03404095 291.81466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03404096 291.81466675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03404097 291.81469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03404098 291.81469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03404099 291.81472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03404100 291.81472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03404101 291.81475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03404102 291.81475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03404103 291.81478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03404104 291.81481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03404105 291.81484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03404106 291.81484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03404107 291.81484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03404108 291.81484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03404109 291.81488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03404110 291.81488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03404111 291.81491089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03404112 291.81491089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03404113 291.81494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03404114 291.81494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03404115 291.81497192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03404116 291.81497192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03404117 291.81500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03404118 291.81500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03404119 291.81500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03404120 291.81500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03404121 291.81503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03404122 291.81503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03404123 291.81506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03404124 291.81506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03404125 291.81509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03404126 291.81509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03404127 291.81512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03404128 291.81512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03404129 291.81515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03404130 291.81515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03404131 291.81515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03404132 291.81515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03404133 291.81518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03404134 291.81518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03404135 291.81521606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03404136 291.81521606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03404137 291.81524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03404138 291.81524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03404139 291.81530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03404140 291.81530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03404141 291.81530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03404142 291.81530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03404143 291.81536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03404144 291.81536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03404145 291.81539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03404146 291.81539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03404147 291.81542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03404148 291.81542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03404149 291.81546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03404150 291.81546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03404151 291.81546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03404152 291.81546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03404153 291.81549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03404154 291.81549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03404155 291.81552124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03404156 291.81555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03404157 291.81555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03404158 291.81558228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03404159 291.81558228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03404160 291.81561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03404161 291.81564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03404162 291.81564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03404163 291.81564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03404164 291.81564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03404165 291.81567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03404166 291.81567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03404167 291.81570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03404168 291.81570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03404169 291.81573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03404170 291.81573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03404171 291.81576538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03404172 291.81576538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03404173 291.81579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03404174 291.81579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03404175 291.81579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03404176 291.81579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03404177 291.81582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03404178 291.81582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03404179 291.81585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03404180 291.81585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03404181 291.81588745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03404182 291.81588745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03404183 291.81591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03404184 291.81591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03404185 291.81594849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03404186 291.81594849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03404187 291.81594849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03404188 291.81594849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03404189 291.81597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03404190 291.81597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03404191 291.81600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03404192 291.81600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03404193 291.81604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03404194 291.81604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03404195 291.81607056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03404196 291.81607056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03404197 291.81610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03404198 291.81610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03404199 291.81610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03404200 291.81610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03404201 291.81613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03404202 291.81613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03404203 291.81619263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03404204 291.81619263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03404205 291.81622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03404206 291.81622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03404207 291.81625366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03404208 291.81625366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03404209 291.81628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03404210 291.81628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03404211 291.81631470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03404212 291.81631470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03404213 291.81634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03404214 291.81634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03404215 291.81640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03404216 291.81640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03404217 291.81643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03404218 291.81643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03404219 291.81643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03404220 291.81643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03404221 291.81646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03404222 291.81646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03404223 291.81649780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03404224 291.81649780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03404225 291.81652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03404226 291.81652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03404227 291.81655884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03404228 291.81655884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03404229 291.81658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03404230 291.81658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03404231 291.81658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03404232 291.81658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03404233 291.81661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03404234 291.81661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03404235 291.81665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03404236 291.81665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03404237 291.81668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03404238 291.81668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03404239 291.81671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03404240 291.81671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03404241 291.81674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03404242 291.81674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03404243 291.81674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03404244 291.81677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03404245 291.81680298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03404246 291.81680298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03404247 291.81683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03404248 291.81683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03404249 291.81686401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03404250 291.81686401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03404251 291.81689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03404252 291.81689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03404253 291.81689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03404254 291.81689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03404255 291.81692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03404256 291.81692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03404257 291.81695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03404258 291.81695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03404259 291.81698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03404260 291.81698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03404261 291.81701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03404262 291.81701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03404263 291.81704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03404264 291.81704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03404265 291.81707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03404266 291.81707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03404267 291.81707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03404268 291.81707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03404269 291.81710815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03404270 291.81710815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03404271 291.81713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03404272 291.81713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03404273 291.81716919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03404274 291.81716919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03404275 291.81719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03404276 291.81719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03404277 291.81723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03404278 291.81723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03404279 291.81723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03404280 291.81723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03404281 291.81726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03404282 291.81726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03404283 291.81729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03404284 291.81729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03404285 291.81732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03404286 291.81732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03404287 291.81735229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03404288 291.81738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03404289 291.81738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03404290 291.81738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03404291 291.81738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03404292 291.81741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03404293 291.81744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03404294 291.81744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03404295 291.81747437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03404296 291.81747437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03404297 291.81750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03404298 291.81750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03404299 291.81753540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03404300 291.81753540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03404301 291.81753540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03404302 291.81753540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03404303 291.81756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03404304 291.81756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03404305 291.81759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03404306 291.81759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03404307 291.81762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03404308 291.81762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03404309 291.81765747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03404310 291.81765747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03404311 291.81768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03404312 291.81768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03404313 291.81768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03404314 291.81768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03404315 291.81771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03404316 291.81774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03404317 291.81774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03404318 291.81777954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03404319 291.81781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03404320 291.81781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03404321 291.81784058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03404322 291.81784058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03404323 291.81787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03404324 291.81787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03404325 291.81787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03404326 291.81787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03404327 291.81790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03404328 291.81790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03404329 291.81793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03404330 291.81793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03404331 291.81796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03404332 291.81796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03404333 291.81799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03404334 291.81799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03404335 291.81802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03404336 291.81802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03404337 291.81802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03404338 291.81802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03404339 291.81805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03404340 291.81805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03404341 291.81808472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03404342 291.81808472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03404343 291.81811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03404344 291.81811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03404345 291.81814575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03404346 291.81814575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03404347 291.81817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03404348 291.81817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03404349 291.81817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03404350 291.81817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03404351 291.81820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03404352 291.81820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03404353 291.81823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03404354 291.81823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03404355 291.81826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03404356 291.81826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03404357 291.81829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03404358 291.81829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03404359 291.81832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03404360 291.81832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03404361 291.81832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03404362 291.81832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03404363 291.81835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03404364 291.81838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03404365 291.81838989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03404366 291.81842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03404367 291.81845093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03404368 291.81845093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03404369 291.81848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03404370 291.81848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03404371 291.81848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03404372 291.81848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03404373 291.81851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03404374 291.81851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03404375 291.81854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03404376 291.81854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03404377 291.81857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03404378 291.81857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03404379 291.81860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03404380 291.81860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03404381 291.81863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03404382 291.81863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03404383 291.81866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03404384 291.81866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03404385 291.81866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03404386 291.81866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03404387 291.81869507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03404388 291.81869507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03404389 291.81872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03404390 291.81872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03404391 291.81878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03404392 291.81878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03404393 291.81881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03404394 291.81881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03404395 291.81881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03404396 291.81881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03404397 291.81884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03404398 291.81884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03404399 291.81887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03404400 291.81887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03404401 291.81890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03404402 291.81890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03404403 291.81893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03404404 291.81893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03404405 291.81896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03404406 291.81896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03404407 291.81896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03404408 291.81896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03404409 291.81900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03404410 291.81903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03404411 291.81906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03404412 291.81906128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03404413 291.81909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03404414 291.81909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03404415 291.81912231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03404416 291.81912231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03404417 291.81912231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03404418 291.81915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03404419 291.81918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03404420 291.81918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03404421 291.81921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03404422 291.81921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03404423 291.81924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03404424 291.81924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03412651 291.93179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d98 -03412652 291.93179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d98 -03412653 291.93182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da8 -03412654 291.93182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14da8 -03412655 291.93185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db8 -03412656 291.93185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14db8 -03412657 291.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc8 -03412658 291.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc8 -03412659 291.93191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd8 -03412660 291.93191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd8 -03412661 291.93191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de8 -03412662 291.93191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de8 -03412663 291.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df8 -03412664 291.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df8 -03412665 291.93197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -03412666 291.93197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e08 -03412667 291.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -03412668 291.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e18 -03412669 291.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -03412670 291.93203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e28 -03412671 291.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -03412672 291.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e38 -03412673 291.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -03412674 291.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e48 -03412675 291.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e58 -03412676 291.93209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e58 -03412677 291.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e68 -03412678 291.93215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e68 -03412679 291.93215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e78 -03412680 291.93218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e78 -03412681 291.93222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e88 -03412682 291.93222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e88 -03412683 291.93225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e98 -03412684 291.93225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e98 -03412685 291.93225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea8 -03412686 291.93225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea8 -03412687 291.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb8 -03412688 291.93228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb8 -03412689 291.93231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec8 -03412690 291.93231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec8 -03412691 291.93234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed8 -03412692 291.93234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed8 -03412693 291.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee8 -03412694 291.93237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee8 -03416744 291.98770142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -03416745 291.98770142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -03416746 291.98773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -03416747 291.98776245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -03416748 291.98776245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -03416749 291.98779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -03416750 291.98782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -03416751 291.98782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -03416752 291.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -03416753 291.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -03416754 291.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -03416755 291.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -03416756 291.98788452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -03416757 291.98788452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -03416758 291.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -03416759 291.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -03416760 291.98794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -03416761 291.98794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -03416762 291.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -03416763 291.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -03416764 291.98800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -03416765 291.98800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -03416766 291.98800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -03416767 291.98800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -03416768 291.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce28 -03416769 291.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce28 -03416770 291.98806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce38 -03416771 291.98806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce38 -03416772 291.98809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce48 -03416773 291.98809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce48 -03416774 291.98812866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce58 -03416775 291.98812866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce58 -03416776 291.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce68 -03416777 291.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce68 -03416778 291.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce78 -03416779 291.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce78 -03416780 291.98818970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce88 -03416781 291.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce88 -03416782 291.98825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce98 -03416783 291.98825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce98 -03416784 291.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea8 -03416785 291.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea8 -03416786 291.98831177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb8 -03416787 291.98831177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb8 -03421966 292.05953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27098 -03421967 292.05953979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27098 -03421968 292.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a8 -03421969 292.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a8 -03421970 292.05960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b8 -03421971 292.05960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b8 -03421972 292.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c8 -03421973 292.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c8 -03421974 292.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d8 -03421975 292.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d8 -03421976 292.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e8 -03421977 292.05966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e8 -03421978 292.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f8 -03421979 292.05972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f8 -03421980 292.05972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27108 -03421981 292.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27108 -03421982 292.05978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27118 -03421983 292.05978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27118 -03421984 292.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27128 -03421985 292.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27128 -03421986 292.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27138 -03421987 292.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27138 -03421988 292.05984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27148 -03421989 292.05984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27148 -03421990 292.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27158 -03421991 292.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27158 -03421992 292.05990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27168 -03421993 292.05990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27168 -03421994 292.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27178 -03421995 292.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27178 -03421996 292.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27188 -03421997 292.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27188 -03421998 292.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27198 -03421999 292.05996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27198 -03422000 292.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a8 -03422001 292.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a8 -03422002 292.06002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b8 -03422003 292.06002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b8 -03422004 292.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c8 -03422005 292.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c8 -03422006 292.06008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d8 -03422007 292.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d8 -03422008 292.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e8 -03422009 292.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e8 -03426974 292.12945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -03426975 292.12945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -03426976 292.12948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -03426977 292.12948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -03426978 292.12951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -03426979 292.12951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -03426980 292.12954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -03426981 292.12954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -03426982 292.12954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -03426983 292.12954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -03426984 292.12957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -03426985 292.12957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -03426986 292.12960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -03426987 292.12960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -03426988 292.12963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -03426989 292.12963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -03426990 292.12966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -03426991 292.12966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -03426992 292.12969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -03426993 292.12969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -03426994 292.12973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -03426995 292.12973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -03426996 292.12973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -03426997 292.12973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -03426998 292.12976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -03426999 292.12976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -03427000 292.12979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -03427001 292.12982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -03427002 292.12982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -03427003 292.12985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -03427004 292.12988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -03427005 292.12988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -03427006 292.12988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -03427007 292.12988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -03427008 292.12991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -03427009 292.12991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -03427010 292.12994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -03427011 292.12994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -03427012 292.12997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -03427013 292.12997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -03427014 292.13000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -03427015 292.13000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -03427016 292.13003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -03427017 292.13003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -03433544 292.22116089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da68 -03433545 292.22116089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da68 -03433546 292.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da78 -03433547 292.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da78 -03433548 292.22122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da88 -03433549 292.22122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da88 -03433550 292.22122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da98 -03433551 292.22122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da98 -03433552 292.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa8 -03433553 292.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa8 -03433554 292.22128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab8 -03433555 292.22128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab8 -03433556 292.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac8 -03433557 292.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac8 -03433558 292.22134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad8 -03433559 292.22134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad8 -03433560 292.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae8 -03433561 292.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae8 -03433562 292.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf8 -03433563 292.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf8 -03433564 292.22140503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db08 -03433565 292.22143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db08 -03433566 292.22146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db18 -03433567 292.22146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db18 -03433568 292.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db28 -03433569 292.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db28 -03433570 292.22152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db38 -03433571 292.22152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db38 -03433572 292.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db48 -03433573 292.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db48 -03433574 292.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db58 -03433575 292.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db58 -03433576 292.22158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db68 -03433577 292.22158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db68 -03433578 292.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db78 -03433579 292.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db78 -03433580 292.22164917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db88 -03433581 292.22164917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db88 -03433582 292.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db98 -03433583 292.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db98 -03433584 292.22171021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba8 -03433585 292.22171021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba8 -03433586 292.22171021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb8 -03433587 292.22174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb8 -03444386 293.56436157 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03444387 293.58462524 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444388 293.58465576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444389 293.70877075 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03444390 293.70953369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03444391 294.26284790 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444392 294.26287842 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444393 294.26290894 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444394 294.26290894 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03444395 294.26303101 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444396 294.26303101 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444397 294.26312256 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444398 294.26315308 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444399 295.58685303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03444400 295.60800171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444401 295.60800171 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444402 296.77029419 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444403 296.77032471 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444404 296.77035522 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03444405 296.77035522 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03444406 296.77047729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444407 296.77047729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444408 296.77056885 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03444409 296.77059937 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03444410 297.37396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03444411 297.37396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03444412 297.37399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03444413 297.37399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03444414 297.37402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03444415 297.37402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03444416 297.37405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03444417 297.37405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03444418 297.37408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03444419 297.37411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03444420 297.37411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03444421 297.37414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03444422 297.37414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03444423 297.37414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03444424 297.37417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03444425 297.37417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03444426 297.37420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03444427 297.37420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03444428 297.37423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03444429 297.37423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03444430 297.37426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03444431 297.37426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03444432 297.37429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03444433 297.37429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03444434 297.37429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03444435 297.37429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03444436 297.37432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03444437 297.37432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03444438 297.37435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03444439 297.37435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03444440 297.37438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03444441 297.37438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03444442 297.37442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03444443 297.37442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03444444 297.37445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03444445 297.37445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03444446 297.37445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03444447 297.37445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03444448 297.37448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03444449 297.37448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03444450 297.37451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03444451 297.37451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03444452 297.37454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03444453 297.37454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03444454 297.37457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03444455 297.37457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03444456 297.37460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03444457 297.37460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03444458 297.37460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03444459 297.37460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03444460 297.37463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03444461 297.37466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03444462 297.37466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03444463 297.37469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03444464 297.37472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03444465 297.37472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03444466 297.37475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03444467 297.37475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03444468 297.37478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03444469 297.37478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03444470 297.37478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03444471 297.37478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03444472 297.37481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03444473 297.37481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03444474 297.37484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03444475 297.37484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03444476 297.37487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03444477 297.37487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03444478 297.37490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03444479 297.37490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03444480 297.37493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03444481 297.37493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03444482 297.37493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03444483 297.37496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03444484 297.37500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03444485 297.37500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03444486 297.37503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03444487 297.37503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03444488 297.37506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03444489 297.37506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03444490 297.37509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03444491 297.37509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03444492 297.37509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03444493 297.37509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03444494 297.37512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03444495 297.37512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03444496 297.37515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03444497 297.37515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03444498 297.37518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03444499 297.37518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03444500 297.37521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03444501 297.37521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03444502 297.37524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03444503 297.37524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03444504 297.37524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03444505 297.37524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03444506 297.37527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03444507 297.37527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03444508 297.37530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03444509 297.37530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03444510 297.37533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03444511 297.37533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03444512 297.37536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03444513 297.37536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03444514 297.37539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03444515 297.37539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03444516 297.37539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03444517 297.37539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03444518 297.37542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03444519 297.37542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03444520 297.37545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03444521 297.37548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03444522 297.37548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03444523 297.37551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03444524 297.37554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03444525 297.37554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03444526 297.37557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03444527 297.37557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03444528 297.37557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03444529 297.37557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03444530 297.37561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03444531 297.37561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03444532 297.37564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03444533 297.37564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03444534 297.37567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03444535 297.37570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03444536 297.37570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03444537 297.37573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03444538 297.37573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03444539 297.37573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03444540 297.37576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03444541 297.37576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03444542 297.37579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03444543 297.37579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03444544 297.37582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03444545 297.37582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03444546 297.37585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03444547 297.37585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03444548 297.37588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03444549 297.37588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03444550 297.37588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03444551 297.37588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03444552 297.37591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03444553 297.37591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03444554 297.37594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03444555 297.37594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03444556 297.37597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03444557 297.37597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03444558 297.37600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03444559 297.37600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03444560 297.37603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03444561 297.37603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03444562 297.37603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03444563 297.37603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03444564 297.37606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03444565 297.37606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03444566 297.37609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03444567 297.37609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03444568 297.37612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03444569 297.37615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03444570 297.37619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03444571 297.37619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03444572 297.37619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03444573 297.37619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03444574 297.37622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03444575 297.37622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03444576 297.37625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03444577 297.37625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03444578 297.37628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03444579 297.37628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03444580 297.37631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03444581 297.37631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03444582 297.37634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03444583 297.37634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03444584 297.37637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03444585 297.37637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03444586 297.37637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03444587 297.37637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03444588 297.37640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03444589 297.37640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03444590 297.37643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03444591 297.37643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03444592 297.37646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03444593 297.37646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03444594 297.37649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03444595 297.37652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03444596 297.37652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03444597 297.37652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03444598 297.37655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03444599 297.37655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03444600 297.37658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03444601 297.37658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03444602 297.37661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03444603 297.37661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03444604 297.37664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03444605 297.37664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03444606 297.37667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03444607 297.37667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03444608 297.37667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03444609 297.37667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03444610 297.37670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03444611 297.37670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03444612 297.37673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03444613 297.37673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03444614 297.37677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03444615 297.37677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03444616 297.37680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03444617 297.37680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03444618 297.37683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03444619 297.37683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03444620 297.37683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03444621 297.37683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03444622 297.37686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03444623 297.37686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03444624 297.37689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03444625 297.37689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03444626 297.37692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03444627 297.37692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03444628 297.37695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03444629 297.37695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03444630 297.37698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03444631 297.37698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03444632 297.37698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03444633 297.37698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03444634 297.37701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03444635 297.37704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03444636 297.37704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03444637 297.37707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03444638 297.37710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03444639 297.37710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03444640 297.37713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03444641 297.37713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03444642 297.37716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03444643 297.37716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03444644 297.37716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03444645 297.37716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03444646 297.37719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03444647 297.37719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03444648 297.37722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03444649 297.37722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03444650 297.37725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03444651 297.37725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03444652 297.37728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03444653 297.37728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03444654 297.37731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03444655 297.37731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03444656 297.37731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03444657 297.37731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03444658 297.37734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03444659 297.37734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03444660 297.37738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03444661 297.37738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03444662 297.37741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03444663 297.37741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03444664 297.37744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03444665 297.37744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03444666 297.37747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03444667 297.37747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03444668 297.37747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03444669 297.37747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03444670 297.37750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03444671 297.37750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03444672 297.37753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03444673 297.37753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03444674 297.37756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03444675 297.37756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03444676 297.37759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03444677 297.37759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03444678 297.37762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03444679 297.37762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03444680 297.37762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03444681 297.37765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03444682 297.37768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03444683 297.37768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03444684 297.37771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03444685 297.37771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03444686 297.37774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03444687 297.37774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03444688 297.37777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03444689 297.37777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03444690 297.37777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03444691 297.37777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03444692 297.37780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03444693 297.37780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03444694 297.37783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03444695 297.37783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03444696 297.37786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03444697 297.37786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03444698 297.37789917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03444699 297.37789917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03444700 297.37792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03444701 297.37792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03444702 297.37796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03444703 297.37796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03444704 297.37796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03444705 297.37796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03444706 297.37799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03444707 297.37799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03444708 297.37802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03444709 297.37802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03444710 297.37805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03444711 297.37805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03444712 297.37808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03444713 297.37808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03444714 297.37811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03444715 297.37811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03444716 297.37811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03444717 297.37811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03444718 297.37814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03444719 297.37817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03444720 297.37817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03444721 297.37820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03444722 297.37823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03444723 297.37823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03444724 297.37826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03444725 297.37826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03444726 297.37826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03444727 297.37826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03444728 297.37829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03444729 297.37829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03444730 297.37832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03444731 297.37832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03444732 297.37835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03444733 297.37835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03444734 297.37838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03444735 297.37838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03444736 297.37841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03444737 297.37841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03444738 297.37844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03444739 297.37844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03444740 297.37847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03444741 297.37847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03444742 297.37850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03444743 297.37850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03444744 297.37854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03444745 297.37857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03444746 297.37857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03444747 297.37857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03444748 297.37860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03444749 297.37860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03444750 297.37863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03444751 297.37863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03444752 297.37866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03444753 297.37866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03444754 297.37869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03444755 297.37869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03444756 297.37872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03444757 297.37872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03444758 297.37875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03444759 297.37875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03444760 297.37875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03444761 297.37875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03444762 297.37878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03444763 297.37878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03444764 297.37881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03444765 297.37881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03444766 297.37884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03444767 297.37884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03444768 297.37887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03444769 297.37887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03444770 297.37890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03444771 297.37890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03444772 297.37890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03444773 297.37890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03444774 297.37893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03444775 297.37893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03444776 297.37896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03444777 297.37899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03444778 297.37902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03444779 297.37902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03444780 297.37905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03444781 297.37905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03444782 297.37905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03444783 297.37905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03444784 297.37908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03444785 297.37908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03444786 297.37911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03444787 297.37911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03444788 297.37915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03444789 297.37915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03444790 297.37918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03444791 297.37918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03444792 297.37921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03444793 297.37921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03444794 297.37921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03444795 297.37921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03444796 297.37924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03444797 297.37924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03444798 297.37927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03444799 297.37927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03444800 297.37930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03444801 297.37930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03444802 297.37933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03444803 297.37933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03444804 297.37936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03444805 297.37936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03444806 297.37936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03444807 297.37939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03444808 297.37942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03444809 297.37942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03444810 297.37945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03444811 297.37945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03444812 297.37948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03444813 297.37948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03444814 297.37951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03444815 297.37951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03444816 297.37954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03444817 297.37954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03444818 297.37954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03444819 297.37954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03444820 297.37957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03444821 297.37957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03444822 297.37960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03444823 297.37960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03444824 297.37963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03444825 297.37963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03444826 297.37966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03444827 297.37966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03444828 297.37969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03444829 297.37969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03444830 297.37969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03444831 297.37969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03444832 297.37973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03444833 297.37976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03444834 297.37976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03444835 297.37979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03444836 297.37982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03444837 297.37982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03444838 297.37985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03444839 297.37985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03444840 297.37985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03444841 297.37985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03444842 297.37988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03444843 297.37988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03444844 297.37991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03444845 297.37991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03444846 297.37994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03444847 297.37994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03444848 297.37997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03444849 297.37997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03444850 297.38000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03444851 297.38000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03444852 297.38000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03444853 297.38000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03444854 297.38003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03444855 297.38003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03444856 297.38006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03444857 297.38006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03444858 297.38009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03444859 297.38009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03444860 297.38012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03444861 297.38015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03444862 297.38015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03444863 297.38018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03444864 297.38018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03444865 297.38018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03444866 297.38021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03444867 297.38021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03444868 297.38024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03444869 297.38024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03444870 297.38027954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03444871 297.38027954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03444872 297.38031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03444873 297.38031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03444874 297.38034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03444875 297.38034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03444876 297.38034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03444877 297.38034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03444878 297.38037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03444879 297.38037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03444880 297.38040161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03444881 297.38040161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03444882 297.38043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03444883 297.38043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03444884 297.38046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03444885 297.38046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03444886 297.38049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03444887 297.38049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03444888 297.38049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03444889 297.38049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03444890 297.38055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03444891 297.38055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03444892 297.38058472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03444893 297.38058472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03444894 297.38061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03444895 297.38061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03444896 297.38064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03444897 297.38064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03444898 297.38064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03444899 297.38064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03444900 297.38067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03444901 297.38067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03444902 297.38070679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03444903 297.38070679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03444904 297.38073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03444905 297.38073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03444906 297.38076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03444907 297.38076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03444908 297.38079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03444909 297.38079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03444910 297.38079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03444911 297.38079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03444912 297.38082886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03444913 297.38085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03444914 297.38085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03444915 297.38088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03444916 297.38092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03444917 297.38092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03444918 297.38095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03444919 297.38095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03444920 297.38098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03444921 297.38098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03444922 297.38098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03444923 297.38098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03444924 297.38101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03444925 297.38101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03444926 297.38104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03444927 297.38104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03444928 297.38107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03444929 297.38107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03444930 297.38110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03444931 297.38110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03444932 297.38113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03444933 297.38113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03444934 297.38113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03444935 297.38113403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03444936 297.38116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03444937 297.38116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03444938 297.38119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03444939 297.38119507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03444940 297.38122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03444941 297.38122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03444942 297.38125610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03444943 297.38125610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03444944 297.38128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03444945 297.38128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03444946 297.38128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03444947 297.38128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03444948 297.38131714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03444949 297.38131714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03444950 297.38134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03444951 297.38134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03444952 297.38137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03444953 297.38137817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03444954 297.38140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03444955 297.38143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03444956 297.38143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03444957 297.38143921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03444958 297.38146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03444959 297.38146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03444960 297.38150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03444961 297.38150024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03444962 297.38153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03444963 297.38153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03444964 297.38156128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03444965 297.38156128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03444966 297.38159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03444967 297.38159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03444968 297.38159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03444969 297.38159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03444970 297.38162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03444971 297.38162231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03444972 297.38165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03444973 297.38165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03444974 297.38168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03444975 297.38168335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03444976 297.38171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03444977 297.38171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03444978 297.38174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03444979 297.38174438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03444980 297.38177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03444981 297.38177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03444982 297.38177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03444983 297.38177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03444984 297.38180542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03444985 297.38180542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03444986 297.38183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03444987 297.38183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03444988 297.38186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03444989 297.38186646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03444990 297.38189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03444991 297.38189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03444992 297.38192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03444993 297.38192749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03444994 297.38195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03444995 297.38195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03444996 297.38198853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03444997 297.38198853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03444998 297.38201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03444999 297.38201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03445000 297.38204956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03445001 297.38204956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03445002 297.38208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03445003 297.38208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03445004 297.38208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03445005 297.38208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03445006 297.38211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03445007 297.38211060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03445008 297.38214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03445009 297.38214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03445010 297.38217163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03445011 297.38217163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03445012 297.38220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03445013 297.38220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03445014 297.38223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03445015 297.38223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03445016 297.38223267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03445017 297.38226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03445018 297.38229370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03445019 297.38229370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03445020 297.38232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03445021 297.38232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03445022 297.38235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03445023 297.38235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03445024 297.38238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03445025 297.38238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03445026 297.38241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03445027 297.38241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03445028 297.38244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03445029 297.38244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03445030 297.38247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03445031 297.38247681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03445032 297.38250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03445033 297.38250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03445034 297.38253784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03445035 297.38253784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03445036 297.38256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03445037 297.38256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03445038 297.38256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03445039 297.38256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03445040 297.38259888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03445041 297.38259888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03445042 297.38262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03445043 297.38262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03445044 297.38265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03445045 297.38265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03445046 297.38269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03445047 297.38269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03445048 297.38272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03445049 297.38272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03445050 297.38272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03445051 297.38272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03445052 297.38275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03445053 297.38278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03445054 297.38278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03445055 297.38281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03445056 297.38284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03445057 297.38284302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03445058 297.38287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03445059 297.38287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03445060 297.38287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03445061 297.38287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03445062 297.38290405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03445063 297.38290405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03445064 297.38293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03445065 297.38293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03445066 297.38296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03445067 297.38296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03445068 297.38299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03445069 297.38299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03445070 297.38302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03445071 297.38302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03445072 297.38302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03445073 297.38302612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03445074 297.38305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03445075 297.38305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03445076 297.38308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03445077 297.38308716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03445078 297.38314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03445079 297.38314819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03445080 297.38317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03445081 297.38317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03445082 297.38317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03445083 297.38317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03445084 297.38320923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03445085 297.38320923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03445086 297.38323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03445087 297.38323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03445088 297.38327026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03445089 297.38327026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03445090 297.38330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03445091 297.38330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03445092 297.38333130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03445093 297.38333130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03445094 297.38336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03445095 297.38336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03445096 297.38336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03445097 297.38336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03445098 297.38339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03445099 297.38339233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03445100 297.38342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03445101 297.38342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03445102 297.38345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03445103 297.38345337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03445104 297.38348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03445105 297.38348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03445106 297.38351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03445107 297.38351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03445108 297.38351440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03445109 297.38354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03445110 297.38357544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03445111 297.38357544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03445112 297.38360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03445113 297.38360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03445114 297.38363647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03445115 297.38363647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03445116 297.38366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03445117 297.38366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03445118 297.38366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03445119 297.38366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03445120 297.38369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03445121 297.38369751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03445122 297.38372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03445123 297.38372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03445124 297.38375854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03445125 297.38375854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03445126 297.38378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03445127 297.38378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03445128 297.38381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03445129 297.38381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03445130 297.38381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03445131 297.38381958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03445132 297.38385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03445133 297.38385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03445134 297.38388062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03445135 297.38388062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03445136 297.38391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03445137 297.38391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03445138 297.38394165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03445139 297.38394165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03445140 297.38397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03445141 297.38397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03445142 297.38397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03445143 297.38397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03445144 297.38400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03445145 297.38400269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03445146 297.38403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03445147 297.38403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03445148 297.38406372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03445149 297.38409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03445150 297.38409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03445151 297.38412476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03445152 297.38415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03445153 297.38415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03445154 297.38415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03445155 297.38415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03445156 297.38418579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03445157 297.38418579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03445158 297.38421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03445159 297.38421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03445160 297.38424683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03445161 297.38424683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03445162 297.38427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03445163 297.38427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03445164 297.38430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03445165 297.38430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03445166 297.38430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03445167 297.38430786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03445168 297.38433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03445169 297.38433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03445170 297.38436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03445171 297.38436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03445172 297.38439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03445173 297.38439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03445174 297.38442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03445175 297.38442993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03445176 297.38446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03445177 297.38446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03445178 297.38446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03445179 297.38446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03445180 297.38449097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03445181 297.38449097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03445182 297.38452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03445183 297.38452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03445184 297.38455200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03445185 297.38455200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03445186 297.38458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03445187 297.38458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03445188 297.38461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03445189 297.38461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03445190 297.38461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03445191 297.38461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03445192 297.38464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03445193 297.38467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03445194 297.38467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03445195 297.38470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03445196 297.38473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03445197 297.38473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03445198 297.38476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03445199 297.38476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03445200 297.38476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03445201 297.38476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03445202 297.38479614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03445203 297.38479614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03445204 297.38482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03445205 297.38482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03445206 297.38485718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03445207 297.38485718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03445208 297.38488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03445209 297.38488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03445210 297.38491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03445211 297.38491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03445212 297.38494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03445213 297.38494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03445214 297.38494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03445215 297.38494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03445216 297.38497925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03445217 297.38500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03445218 297.38504028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03445219 297.38504028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03445220 297.38507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03445221 297.38507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03445222 297.38510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03445223 297.38510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03445224 297.38510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03445225 297.38510132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03445226 297.38513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03445227 297.38513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03445228 297.38516235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03445229 297.38516235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03445230 297.38519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03445231 297.38519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03445232 297.38522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03445233 297.38522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03445234 297.38525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03445235 297.38525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03445236 297.38525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03445237 297.38525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03445238 297.38528442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03445239 297.38528442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03445240 297.38531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03445241 297.38531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03445242 297.38534546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03445243 297.38534546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03445244 297.38537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03445245 297.38537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03445246 297.38540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03445247 297.38540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03445248 297.38540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03445249 297.38540649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03445250 297.38543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03445251 297.38546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03445252 297.38546753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03445253 297.38549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03445254 297.38552856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03445255 297.38552856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03445256 297.38555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03445257 297.38555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03445258 297.38558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03445259 297.38558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03445260 297.38558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03445261 297.38558960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03445262 297.38562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03445263 297.38562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03445264 297.38565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03445265 297.38565063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03445266 297.38568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03445267 297.38568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03445268 297.38571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03445269 297.38571167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03445270 297.38574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03445271 297.38574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03445272 297.38574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03445273 297.38574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03445274 297.38577271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03445275 297.38577271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03445276 297.38580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03445277 297.38580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03445278 297.38583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03445279 297.38583374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03445280 297.38586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03445281 297.38586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03445282 297.38589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03445283 297.38589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03445284 297.38589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03445285 297.38589478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03445286 297.38592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03445287 297.38592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03445288 297.38595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03445289 297.38595581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03445290 297.38598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03445291 297.38598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03445292 297.38601685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03445293 297.38604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03445294 297.38604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03445295 297.38604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03445296 297.38607788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03445297 297.38607788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03445298 297.38610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03445299 297.38610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03445300 297.38613892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03445301 297.38613892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03445302 297.38616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03445303 297.38616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03445304 297.38619995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03445305 297.38619995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03445306 297.38619995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03445307 297.38619995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03445308 297.38623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03445309 297.38623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03445310 297.38626099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03445311 297.38626099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03445312 297.38629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03445313 297.38629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03445314 297.38632202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03445315 297.38632202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03445316 297.38635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03445317 297.38635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03445318 297.38638306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03445319 297.38638306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03445320 297.38638306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03445321 297.38638306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03445322 297.38641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03445323 297.38641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03445324 297.38644409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03445325 297.38644409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03445326 297.38647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03445327 297.38647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03445328 297.38650513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03445329 297.38650513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03445330 297.38653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03445331 297.38653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03445332 297.38653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03445333 297.38653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03445334 297.38656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03445335 297.38656616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03445336 297.38659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03445337 297.38662720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03445338 297.38665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03445339 297.38665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03445340 297.38668823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03445341 297.38668823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03445342 297.38668823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03445343 297.38668823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03445344 297.38671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03445345 297.38671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03445346 297.38674927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03445347 297.38674927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03445348 297.38677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03445349 297.38677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03445350 297.38681030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03445351 297.38681030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03445352 297.38684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03445353 297.38684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03445354 297.38684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03445355 297.38684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03445356 297.38687134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03445357 297.38687134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03445358 297.38690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03445359 297.38690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03445360 297.38693237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03445361 297.38693237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03445362 297.38696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03445363 297.38696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03445364 297.38699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03445365 297.38699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03445366 297.38699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03445367 297.38699341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03445368 297.38702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03445369 297.38702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03445370 297.38705444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03445371 297.38705444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03445372 297.38708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03445373 297.38708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03445374 297.38711548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03445375 297.38711548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03445376 297.38717651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03445377 297.38717651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03445378 297.38717651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03445379 297.38717651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03445380 297.38720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03445381 297.38723755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03445382 297.38726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03445383 297.38726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03445384 297.38729858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03445385 297.38729858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03445386 297.38732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03445387 297.38732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03445388 297.38735962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03445389 297.38735962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03445390 297.38739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03445391 297.38739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03445392 297.38742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03445393 297.38742065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03445394 297.38745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03445395 297.38745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03445396 297.38748169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03445397 297.38748169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03445398 297.38748169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03445399 297.38751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03445400 297.38751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03445401 297.38754272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03445402 297.38757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03445403 297.38757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03445404 297.38760376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03445405 297.38760376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03445406 297.38763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03445407 297.38763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03445408 297.38763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03445409 297.38763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03445410 297.38766479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03445411 297.38766479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03445412 297.38769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03445413 297.38769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03445414 297.38772583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03445415 297.38772583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03445416 297.38775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03445417 297.38775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03445418 297.38778687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03445419 297.38778687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03445420 297.38778687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03445421 297.38778687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03445422 297.38781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03445423 297.38781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03445424 297.38784790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03445425 297.38784790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03445426 297.38787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03445427 297.38787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03445428 297.38790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03445429 297.38790894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03445430 297.38793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03445431 297.38793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03445432 297.38796997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03445433 297.38796997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03445434 297.38796997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03445435 297.38796997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03445436 297.38800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03445437 297.38800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03445438 297.38803101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03445439 297.38803101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03445440 297.38806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03445441 297.38809204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03445442 297.38812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03445443 297.38812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03445444 297.38812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03445445 297.38812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03445446 297.38815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03445447 297.38815308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03445448 297.38818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03445449 297.38818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03445450 297.38821411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03445451 297.38821411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03445452 297.38824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03445453 297.38824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03445454 297.38827515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03445455 297.38827515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03445456 297.38830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03445457 297.38830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03445458 297.38833618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03445459 297.38833618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03445460 297.38836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03445461 297.38836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03445462 297.38839722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03445463 297.38839722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03445464 297.38842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03445465 297.38842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03445466 297.38842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03445467 297.38842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03445468 297.38845825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03445469 297.38845825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03445470 297.38848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03445471 297.38848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03445472 297.38851929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03445473 297.38851929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03445474 297.38854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03445475 297.38854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03445476 297.38858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03445477 297.38858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03445478 297.38858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03445479 297.38858032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03445480 297.38861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03445481 297.38861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03445482 297.38864136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03445483 297.38864136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03445484 297.38867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03445485 297.38867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03445486 297.38870239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03445487 297.38870239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03445488 297.38873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03445489 297.38873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03445490 297.38876343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03445491 297.38876343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03445492 297.38876343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03445493 297.38879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03445494 297.38882446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03445495 297.38882446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03445496 297.38885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03445497 297.38885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03445498 297.38888550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03445499 297.38888550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03445500 297.38891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03445501 297.38891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03445502 297.38891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03445503 297.38891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03445504 297.38894653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03445505 297.38894653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03445506 297.38897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03445507 297.38897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03445508 297.38900757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03445509 297.38900757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03445510 297.38903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03445511 297.38903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03445512 297.38906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03445513 297.38906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03445514 297.38906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03445515 297.38906860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03445516 297.38909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03445517 297.38909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03445518 297.38912964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03445519 297.38912964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03445520 297.38916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03445521 297.38919067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03445522 297.38922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03445523 297.38922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03445524 297.38922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03445525 297.38922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03445526 297.38925171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03445527 297.38925171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03445528 297.38928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03445529 297.38928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03445530 297.38931274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03445531 297.38931274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03445532 297.38934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03445533 297.38934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03445534 297.38937378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03445535 297.38937378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03445536 297.38937378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03445537 297.38937378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03445538 297.38940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03445539 297.38940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03445540 297.38943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03445541 297.38943481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03445542 297.38946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03445543 297.38946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03445544 297.38949585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03445545 297.38952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03445546 297.38952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03445547 297.38955688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03445548 297.38955688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03445549 297.38955688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03445550 297.38958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03445551 297.38958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03445552 297.38961792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03445553 297.38961792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03445554 297.38964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03445555 297.38964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03445556 297.38967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03445557 297.38967896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03445558 297.38970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03445559 297.38970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03445560 297.38970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03445561 297.38970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03445562 297.38973999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03445563 297.38973999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03445564 297.38977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03445565 297.38977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03445566 297.38980103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03445567 297.38980103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03445568 297.38983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03445569 297.38983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03445570 297.38986206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03445571 297.38986206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03445572 297.38986206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03445573 297.38986206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03445574 297.38989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03445575 297.38989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03445576 297.38992310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03445577 297.38992310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03445578 297.38998413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03445579 297.38998413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03445580 297.39001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03445581 297.39001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03445582 297.39001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03445583 297.39004517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03445584 297.39007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03445585 297.39007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03445586 297.39010620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03445587 297.39010620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03445588 297.39013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03445589 297.39013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03445590 297.39016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03445591 297.39016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03445592 297.39016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03445593 297.39016724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03445594 297.39019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03445595 297.39019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03445596 297.39022827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03445597 297.39022827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03445598 297.39025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03445599 297.39025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03445600 297.39028931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03445601 297.39028931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03445602 297.39031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03445603 297.39031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03445604 297.39035034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03445605 297.39035034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03445606 297.39035034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03445607 297.39038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03445608 297.39041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03445609 297.39041138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03445610 297.39044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03445611 297.39044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03445612 297.39047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03445613 297.39047241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03445614 297.39050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03445615 297.39050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03445616 297.39050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03445617 297.39050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03445618 297.39053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03445619 297.39053345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03445620 297.39056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03445621 297.39056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03445622 297.39059448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03445623 297.39059448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03445624 297.39062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03445625 297.39062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03445626 297.39065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03445627 297.39065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03445628 297.39065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03445629 297.39065552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03445630 297.39068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03445631 297.39068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03445632 297.39071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03445633 297.39071655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03445634 297.39074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03445635 297.39074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03445636 297.39077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03445637 297.39077759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03445638 297.39080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03445639 297.39080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03445640 297.39080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03445641 297.39080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03445642 297.39083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03445643 297.39083862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03445644 297.39086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03445645 297.39089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03445646 297.39089966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03445647 297.39093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03445648 297.39096069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03445649 297.39096069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03445650 297.39099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03445651 297.39099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03445652 297.39099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03445653 297.39099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03445654 297.39102173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03445655 297.39102173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03445656 297.39105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03445657 297.39105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03445658 297.39108276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03445659 297.39108276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03445660 297.39111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03445661 297.39111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03445662 297.39114380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03445663 297.39114380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03445664 297.39117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03445665 297.39117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03445666 297.39120483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03445667 297.39120483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03445668 297.39123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03445669 297.39123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03445670 297.39126587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03445671 297.39126587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03445672 297.39129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03445673 297.39129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03445674 297.39129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03445675 297.39129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03445676 297.39132690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03445677 297.39132690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03445678 297.39135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03445679 297.39135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03445680 297.39138794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03445681 297.39138794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03445682 297.39141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03445683 297.39141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03445684 297.39144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03445685 297.39144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03445686 297.39144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03445687 297.39144897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03445688 297.39147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03445689 297.39147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03445690 297.39151001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03445691 297.39151001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03445692 297.39154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03445693 297.39157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03445694 297.39157104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03445695 297.39160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03445696 297.39160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03445697 297.39160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03445698 297.39163208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03445699 297.39163208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03445700 297.39166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03445701 297.39166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03445702 297.39169312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03445703 297.39169312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03445704 297.39172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03445705 297.39172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03445706 297.39175415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03445707 297.39175415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03445708 297.39178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03445709 297.39178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03445710 297.39178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03445711 297.39178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03445712 297.39181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03445713 297.39181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03445714 297.39184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03445715 297.39184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03445716 297.39187622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03445717 297.39187622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03445718 297.39190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03445719 297.39190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03445720 297.39193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03445721 297.39193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03445722 297.39193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03445723 297.39193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03445724 297.39196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03445725 297.39196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03445726 297.39199829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03445727 297.39199829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03445728 297.39202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03445729 297.39202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03445730 297.39205933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03445731 297.39205933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03445732 297.39208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03445733 297.39208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03445734 297.39208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03445735 297.39208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03445736 297.39212036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03445737 297.39215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03445738 297.39215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03445739 297.39218140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03445740 297.39221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03445741 297.39221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03445742 297.39224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03445743 297.39224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03445744 297.39224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03445745 297.39224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03445746 297.39227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03445747 297.39227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03445748 297.39230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03445749 297.39230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03445750 297.39233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03445751 297.39233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03445752 297.39236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03445753 297.39236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03445754 297.39239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03445755 297.39239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03445756 297.39239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03445757 297.39239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03445758 297.39242554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03445759 297.39242554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03445760 297.39245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03445761 297.39245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03445762 297.39248657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03445763 297.39248657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03445764 297.39251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03445765 297.39251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03445766 297.39254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03445767 297.39254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03445768 297.39257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03445769 297.39257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03445770 297.39257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03445771 297.39257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03445772 297.39260864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03445773 297.39260864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03445774 297.39263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03445775 297.39263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03445776 297.39266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03445777 297.39266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03445778 297.39270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03445779 297.39270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03445780 297.39273071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03445781 297.39273071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03445782 297.39273071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03445783 297.39276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03445784 297.39279175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03445785 297.39279175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03445786 297.39282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03445787 297.39282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03445788 297.39285278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03445789 297.39285278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03445790 297.39288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03445791 297.39288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03445792 297.39288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03445793 297.39288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03445794 297.39291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03445795 297.39291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03445796 297.39294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03445797 297.39294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03445798 297.39297485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03445799 297.39297485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03445800 297.39300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03445801 297.39300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03445802 297.39303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03445803 297.39303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03445804 297.39303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03445805 297.39303589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03445806 297.39306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03445807 297.39306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03445808 297.39309692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03445809 297.39309692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03445810 297.39312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03445811 297.39312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03445812 297.39315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03445813 297.39315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03445814 297.39318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03445815 297.39318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03445816 297.39318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03445817 297.39318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03445818 297.39321899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03445819 297.39321899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03445820 297.39324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03445821 297.39324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03445822 297.39328003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03445823 297.39331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03445824 297.39331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03445825 297.39334106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03445826 297.39337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03445827 297.39337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03445828 297.39337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03445829 297.39337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03445830 297.39340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03445831 297.39340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03445832 297.39343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03445833 297.39343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03445834 297.39346313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03445835 297.39346313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03445836 297.39349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03445837 297.39349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03445838 297.39352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03445839 297.39352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03445840 297.39352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03445841 297.39352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03445842 297.39355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03445843 297.39355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03445844 297.39358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03445845 297.39358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03445846 297.39361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03445847 297.39361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03445848 297.39364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03445849 297.39364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03445850 297.39367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03445851 297.39367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03445852 297.39367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03445853 297.39367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03445854 297.39370728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03445855 297.39370728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03445856 297.39373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03445857 297.39373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03445858 297.39376831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03445859 297.39376831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03445860 297.39379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03445861 297.39379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03445862 297.39382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03445863 297.39382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03445864 297.39382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03445865 297.39382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03445866 297.39385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03445867 297.39389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03445868 297.39389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03445869 297.39392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03445870 297.39395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03445871 297.39395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03445872 297.39398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03445873 297.39398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03445874 297.39398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03445875 297.39398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03445876 297.39401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03445877 297.39401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03445878 297.39404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03445879 297.39404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03445880 297.39407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03445881 297.39407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03445882 297.39410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03445883 297.39410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03445884 297.39413452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03445885 297.39413452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03445886 297.39416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03445887 297.39416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03445888 297.39416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03445889 297.39416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03445890 297.39419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03445891 297.39419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03445892 297.39422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03445893 297.39422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03445894 297.39425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03445895 297.39425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03445896 297.39428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03445897 297.39428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03445898 297.39431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03445899 297.39431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03445900 297.39431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03445901 297.39431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03445902 297.39434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03445903 297.39434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03445904 297.39437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03445905 297.39437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03445906 297.39440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03445907 297.39440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03445908 297.39443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03445909 297.39443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03445910 297.39447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03445911 297.39447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03445912 297.39447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03445913 297.39450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03445914 297.39453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03445915 297.39453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03445916 297.39456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03445917 297.39456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03445918 297.39459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03445919 297.39459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03445920 297.39462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03445921 297.39462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03445922 297.39462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03445923 297.39462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03445924 297.39465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03445925 297.39465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03445926 297.39468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03445927 297.39468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03445928 297.39471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03445929 297.39471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03445930 297.39474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03445931 297.39474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03445932 297.39477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03445933 297.39477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03445934 297.39477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03445935 297.39477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03445936 297.39480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03445937 297.39480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03445938 297.39483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03445939 297.39483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03445940 297.39486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03445941 297.39486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03445942 297.39489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03445943 297.39489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03445944 297.39492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03445945 297.39495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03445946 297.39495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03445947 297.39495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03445948 297.39498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03445949 297.39498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03445950 297.39501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03445951 297.39501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03445952 297.39505005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03445953 297.39505005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03445954 297.39508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03445955 297.39508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03445956 297.39511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03445957 297.39511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03445958 297.39511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03445959 297.39511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03445960 297.39514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03445961 297.39514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03445962 297.39517212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03445963 297.39517212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03445964 297.39520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03445965 297.39520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03445966 297.39523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03445967 297.39523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03445968 297.39526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03445969 297.39526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03445970 297.39526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03445971 297.39526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03445972 297.39529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03445973 297.39529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03445974 297.39532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03445975 297.39532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03445976 297.39535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03445977 297.39535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03445978 297.39538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03445979 297.39538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03445980 297.39541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03445981 297.39541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03445982 297.39541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03445983 297.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03445984 297.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03445985 297.39547729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03445986 297.39550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03445987 297.39550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03445988 297.39553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03445989 297.39553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03445990 297.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03445991 297.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03445992 297.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03445993 297.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03445994 297.39559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03445995 297.39559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03445996 297.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03445997 297.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03445998 297.39566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03445999 297.39566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03446000 297.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03446001 297.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03446002 297.39572144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03446003 297.39572144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03446004 297.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03446005 297.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03446006 297.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03446007 297.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03446008 297.39578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03446009 297.39578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03446010 297.39581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03446011 297.39581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03446012 297.39584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03446013 297.39584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03446014 297.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03446015 297.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03446016 297.39590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03446017 297.39590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03446018 297.39590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03446019 297.39590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03446020 297.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03446021 297.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03446022 297.39596558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03446023 297.39596558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03446024 297.39599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03446025 297.39602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03446026 297.39602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03446027 297.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03446028 297.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03446029 297.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03446030 297.39608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03446031 297.39608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03446032 297.39611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03446033 297.39611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03446034 297.39614868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03446035 297.39614868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03446036 297.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03446037 297.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03446038 297.39620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03446039 297.39620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03446040 297.39620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03446041 297.39620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03446042 297.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03446043 297.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03446044 297.39627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03446045 297.39627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03446046 297.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03446047 297.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03446048 297.39633179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03446049 297.39633179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03446050 297.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03446051 297.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03446052 297.39639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03446053 297.39639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03446054 297.39639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03446055 297.39639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03446056 297.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03446057 297.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03446058 297.39645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03446059 297.39645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03446060 297.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03446061 297.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03446062 297.39651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03446063 297.39651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03446064 297.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03446065 297.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03446066 297.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03446067 297.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03446068 297.39657593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03446069 297.39660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03446070 297.39660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03446071 297.39663696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03446072 297.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03446073 297.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03446074 297.39669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03446075 297.39669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03446076 297.39669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03446077 297.39669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03446078 297.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03446079 297.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03446080 297.39675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03446081 297.39675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03446082 297.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03446083 297.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03446084 297.39682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03446085 297.39682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03446086 297.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03446087 297.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03446088 297.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03446089 297.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03446090 297.39688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03446091 297.39688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03446092 297.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03446093 297.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03446094 297.39694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03446095 297.39694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03446096 297.39697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03446097 297.39697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03446098 297.39700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03446099 297.39700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03446100 297.39700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03446101 297.39700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03446102 297.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03446103 297.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03446104 297.39706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03446105 297.39706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03446106 297.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03446107 297.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03446108 297.39712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03446109 297.39712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03446110 297.39715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03446111 297.39715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03446112 297.39718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03446113 297.39718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03446114 297.39718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03446115 297.39721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03446116 297.39724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03446117 297.39724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03446118 297.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03446119 297.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03446120 297.39730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03446121 297.39730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03446122 297.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03446123 297.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03446124 297.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03446125 297.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03446126 297.39736938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03446127 297.39736938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03446128 297.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03446129 297.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03446130 297.39743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03446131 297.39743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03446132 297.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03446133 297.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03446134 297.39749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03446135 297.39749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03446136 297.39749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03446137 297.39749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03446138 297.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03446139 297.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03446140 297.39755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03446141 297.39755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03446142 297.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03446143 297.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03446144 297.39761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03446145 297.39761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03446146 297.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03446147 297.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03446148 297.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03446149 297.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03446150 297.39767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03446151 297.39767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03446152 297.39770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03446153 297.39770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03446154 297.39773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03446155 297.39773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03446156 297.39776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03446157 297.39779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03446158 297.39779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03446159 297.39779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03446160 297.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03446161 297.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03446162 297.39785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03446163 297.39785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03446164 297.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03446165 297.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03446166 297.39791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03446167 297.39791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03446168 297.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03446169 297.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03446170 297.39797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03446171 297.39797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03446172 297.39797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03446173 297.39797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03446174 297.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03446175 297.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03446176 297.39804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03446177 297.39804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03446178 297.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03446179 297.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03446180 297.39810181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03446181 297.39810181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03446182 297.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03446183 297.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03446184 297.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03446185 297.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03446186 297.39816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03446187 297.39816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03446188 297.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03446189 297.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03446190 297.39822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03446191 297.39822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03446192 297.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03446193 297.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03446194 297.39828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03446195 297.39828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03446196 297.39828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03446197 297.39828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03446198 297.39831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03446199 297.39834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03446200 297.39834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03446201 297.39837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03446202 297.39840698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03446203 297.39840698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03446204 297.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03446205 297.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03446206 297.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03446207 297.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03446208 297.39846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03446209 297.39846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03446210 297.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03446211 297.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03446212 297.39852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03446213 297.39852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03449188 297.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03449189 297.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -03449190 297.43936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03449191 297.43936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -03449192 297.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03449193 297.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -03449194 297.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03449195 297.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -03449196 297.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03449197 297.43942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -03449198 297.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03449199 297.43948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -03449200 297.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03449201 297.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -03449202 297.43954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03449203 297.43954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -03449204 297.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03449205 297.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -03449206 297.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03449207 297.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -03449208 297.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03449209 297.43960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -03449210 297.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03449211 297.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -03449212 297.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -03449213 297.43966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -03449214 297.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -03449215 297.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -03449216 297.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -03449217 297.43972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -03449218 297.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -03449219 297.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -03449220 297.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -03449221 297.43978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -03449222 297.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -03449223 297.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -03449224 297.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -03449225 297.43984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -03449226 297.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -03449227 297.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -03449228 297.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -03449229 297.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -03449230 297.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -03449231 297.43991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -03453506 297.49896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c88 -03453507 297.49896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c88 -03453508 297.49899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c98 -03453509 297.49899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c98 -03453510 297.49899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca8 -03453511 297.49899292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ca8 -03453512 297.49902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb8 -03453513 297.49905396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cb8 -03453514 297.49905396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc8 -03453515 297.49908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cc8 -03453516 297.49911499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd8 -03453517 297.49911499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cd8 -03453518 297.49914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce8 -03453519 297.49914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ce8 -03453520 297.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf8 -03453521 297.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12cf8 -03453522 297.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d08 -03453523 297.49917603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d08 -03453524 297.49920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d18 -03453525 297.49920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d18 -03453526 297.49923706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -03453527 297.49923706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d28 -03453528 297.49926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -03453529 297.49926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d38 -03453530 297.49929810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -03453531 297.49929810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d48 -03453532 297.49932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -03453533 297.49932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d58 -03453534 297.49932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -03453535 297.49932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d68 -03453536 297.49935913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -03453537 297.49935913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d78 -03453538 297.49938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -03453539 297.49938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d88 -03453540 297.49942017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -03453541 297.49942017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d98 -03453542 297.49945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -03453543 297.49945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12da8 -03453544 297.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -03453545 297.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12db8 -03453546 297.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -03453547 297.49948120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dc8 -03453548 297.49951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -03453549 297.49951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12dd8 -03460104 297.59146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -03460105 297.59146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -03460106 297.59146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -03460107 297.59146118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -03460108 297.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -03460109 297.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -03460110 297.59152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -03460111 297.59152222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -03460112 297.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -03460113 297.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -03460114 297.59158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -03460115 297.59158325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -03460116 297.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -03460117 297.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -03460118 297.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb28 -03460119 297.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb28 -03460120 297.59164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb38 -03460121 297.59164429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb38 -03460122 297.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb48 -03460123 297.59170532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb48 -03460124 297.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb58 -03460125 297.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb58 -03460126 297.59176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -03460127 297.59176636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -03460128 297.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -03460129 297.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -03460130 297.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -03460131 297.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -03460132 297.59182739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -03460133 297.59182739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -03460134 297.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -03460135 297.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -03460136 297.59188843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -03460137 297.59188843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -03460138 297.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -03460139 297.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -03460140 297.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd8 -03460141 297.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd8 -03460142 297.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe8 -03460143 297.59194946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe8 -03460144 297.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf8 -03460145 297.59201050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf8 -03460146 297.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc08 -03460147 297.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc08 -03467075 297.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -03467076 297.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -03467077 297.68942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -03467078 297.68942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -03467079 297.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -03467080 297.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -03467081 297.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -03467082 297.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -03467083 297.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b8 -03467084 297.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b8 -03467085 297.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c8 -03467086 297.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c8 -03467087 297.68954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d8 -03467088 297.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4d8 -03467089 297.68960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e8 -03467090 297.68960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4e8 -03467091 297.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -03467092 297.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -03467093 297.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -03467094 297.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -03467095 297.68966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -03467096 297.68966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -03467097 297.68969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -03467098 297.68969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -03467099 297.68972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -03467100 297.68972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -03467101 297.68975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d548 -03467102 297.68975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d548 -03467103 297.68978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d558 -03467104 297.68978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d558 -03467105 297.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d568 -03467106 297.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d568 -03467107 297.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d578 -03467108 297.68984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d578 -03467109 297.68984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -03467110 297.68988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -03467111 297.68991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -03467112 297.68991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -03467113 297.68994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -03467114 297.68994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -03467115 297.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -03467116 297.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -03467117 297.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -03467118 297.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -03484919 297.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -03484920 297.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -03484921 297.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -03484922 297.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -03484923 297.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -03484924 297.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -03484925 297.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -03484926 297.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -03484927 297.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -03484928 297.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -03484929 297.93902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -03484930 297.93902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -03484931 297.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -03484932 297.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -03484933 297.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -03484934 297.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -03484935 297.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -03484936 297.93908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -03484937 297.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -03484938 297.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -03484939 297.93914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -03484940 297.93917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -03484941 297.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -03484942 297.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -03484943 297.93923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -03484944 297.93923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -03484945 297.93923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -03484946 297.93923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -03484947 297.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -03484948 297.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -03484949 297.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -03484950 297.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -03484951 297.93933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -03484952 297.93933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -03484953 297.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -03484954 297.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -03484955 297.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -03484956 297.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -03484957 297.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -03484958 297.93939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -03484959 297.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -03484960 297.93945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -03484961 297.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -03484962 297.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -03486299 299.27664185 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486300 299.27670288 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486301 299.27673340 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486302 299.27673340 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03486303 299.27685547 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486304 299.27685547 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486305 299.27691650 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486306 299.27691650 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486307 299.63452148 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03486308 299.65350342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486309 299.65353394 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486310 301.65521240 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03486311 301.67431641 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486312 301.67431641 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486313 301.78411865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486314 301.78414917 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486315 301.78417969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03486316 301.78417969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03486317 301.78430176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486318 301.78433228 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486319 301.78436279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03486320 301.78439331 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03486321 301.87933350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03486322 301.87933350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03486323 301.87936401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03486324 301.87939453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03486325 301.87942505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03486326 301.87942505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03486327 301.87945557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03486328 301.87945557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03486329 301.87948608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03486330 301.87948608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03486331 301.87948608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03486332 301.87948608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03486333 301.87951660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03486334 301.87951660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03486335 301.87954712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03486336 301.87954712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03486337 301.87957764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03486338 301.87957764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03486339 301.87960815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03486340 301.87963867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03486341 301.87966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03486342 301.87966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03486343 301.87966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03486344 301.87966919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03486345 301.87969971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03486346 301.87969971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03486347 301.87973022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03486348 301.87973022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03486349 301.87976074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03486350 301.87976074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03486351 301.87979126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03486352 301.87979126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03486353 301.87982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03486354 301.87982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03486355 301.87982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03486356 301.87982178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03486357 301.87985229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03486358 301.87988281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03486359 301.87988281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03486360 301.87991333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03486361 301.87994385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03486362 301.87994385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03486363 301.87997437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03486364 301.87997437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03486365 301.88000488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03486366 301.88000488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03486367 301.88003540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03486368 301.88003540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03486369 301.88006592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03486370 301.88006592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03486371 301.88009644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03486372 301.88009644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03486373 301.88012695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03486374 301.88012695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03486375 301.88012695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03486376 301.88012695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03486377 301.88018799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03486378 301.88018799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03486379 301.88021851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03486380 301.88021851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03486381 301.88024902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03486382 301.88027954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03486383 301.88027954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03486384 301.88027954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03486385 301.88031006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03486386 301.88031006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03486387 301.88034058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03486388 301.88034058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03486389 301.88037109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03486390 301.88037109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03486391 301.88040161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03486392 301.88040161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03486393 301.88043213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03486394 301.88043213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03486395 301.88046265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03486396 301.88046265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03486397 301.88046265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03486398 301.88046265 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03486399 301.88049316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03486400 301.88049316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03486401 301.88052368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03486402 301.88052368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03486403 301.88055420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03486404 301.88055420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03486405 301.88058472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03486406 301.88058472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03486407 301.88061523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03486408 301.88061523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03486409 301.88064575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03486410 301.88064575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03486411 301.88067627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03486412 301.88067627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03486413 301.88070679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03486414 301.88070679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03486415 301.88073730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03486416 301.88073730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03486417 301.88076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03486418 301.88076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03486419 301.88076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03486420 301.88076782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03486421 301.88079834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03486422 301.88079834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03486423 301.88082886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03486424 301.88082886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03486425 301.88085938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03486426 301.88085938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03486427 301.88088989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03486428 301.88092041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03486429 301.88092041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03486430 301.88092041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03486431 301.88098145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03486432 301.88101196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03486433 301.88101196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03486434 301.88104248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03486435 301.88107300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03486436 301.88107300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03486437 301.88107300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03486438 301.88107300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03486439 301.88110352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03486440 301.88110352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03486441 301.88113403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03486442 301.88113403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03486443 301.88116455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03486444 301.88116455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03486445 301.88119507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03486446 301.88122559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03486447 301.88125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03486448 301.88125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03486449 301.88125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03486450 301.88125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03486451 301.88128662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03486452 301.88128662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03486453 301.88131714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03486454 301.88131714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03486455 301.88134766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03486456 301.88134766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03486457 301.88137817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03486458 301.88137817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03486459 301.88140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03486460 301.88140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03486461 301.88140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03486462 301.88140869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03486463 301.88143921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03486464 301.88143921 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03486465 301.88146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03486466 301.88146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03486467 301.88150024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03486468 301.88150024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03486469 301.88153076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03486470 301.88153076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03486471 301.88156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03486472 301.88156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03486473 301.88156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03486474 301.88156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03486475 301.88159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03486476 301.88159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03486477 301.88162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03486478 301.88162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03486479 301.88165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03486480 301.88165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03486481 301.88168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03486482 301.88168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03486483 301.88171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03486484 301.88171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03486485 301.88171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03486486 301.88174438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03486487 301.88177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03486488 301.88177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03486489 301.88180542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03486490 301.88180542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03486491 301.88183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03486492 301.88183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03486493 301.88186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03486494 301.88186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03486495 301.88186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03486496 301.88186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03486497 301.88189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03486498 301.88189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03486499 301.88192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03486500 301.88192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03486501 301.88195801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03486502 301.88198853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03486503 301.88204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03486504 301.88204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03486505 301.88204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03486506 301.88204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03486507 301.88208008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03486508 301.88208008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03486509 301.88214111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03486510 301.88214111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03486511 301.88217163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03486512 301.88217163 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03486513 301.88220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03486514 301.88220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03486515 301.88220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03486516 301.88220215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03486517 301.88223267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03486518 301.88223267 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03486519 301.88226318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03486520 301.88226318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03486521 301.88229370 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03486522 301.88232422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03486523 301.88235474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03486524 301.88235474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03486525 301.88235474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03486526 301.88235474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03486527 301.88238525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03486528 301.88238525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03486529 301.88241577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03486530 301.88241577 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03486531 301.88244629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03486532 301.88244629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03486533 301.88247681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03486534 301.88247681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03486535 301.88250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03486536 301.88250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03486537 301.88250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03486538 301.88250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03486539 301.88253784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03486540 301.88253784 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03486541 301.88256836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03486542 301.88256836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03486543 301.88262939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03486544 301.88262939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03486545 301.88265991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03486546 301.88265991 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03486547 301.88269043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03486548 301.88269043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03486549 301.88269043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03486550 301.88269043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03486551 301.88272095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03486552 301.88272095 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03486553 301.88275146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03486554 301.88275146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03486555 301.88278198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03486556 301.88278198 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03486557 301.88281250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03486558 301.88281250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03486559 301.88284302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03486560 301.88284302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03486561 301.88284302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03486562 301.88284302 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03486563 301.88287354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03486564 301.88290405 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03486565 301.88293457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03486566 301.88293457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03486567 301.88296509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03486568 301.88296509 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03486569 301.88299561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03486570 301.88299561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03486571 301.88299561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03486572 301.88299561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03486573 301.88302612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03486574 301.88302612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03486575 301.88305664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03486576 301.88308716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03486577 301.88311768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03486578 301.88311768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03486579 301.88314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03486580 301.88314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03486581 301.88314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03486582 301.88314819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03486583 301.88317871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03486584 301.88317871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03486585 301.88320923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03486586 301.88320923 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03486587 301.88323975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03486588 301.88323975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03486589 301.88327026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03486590 301.88327026 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03486591 301.88330078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03486592 301.88330078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03486593 301.88333130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03486594 301.88333130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03486595 301.88336182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03486596 301.88336182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03486597 301.88339233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03486598 301.88339233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03486599 301.88342285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03486600 301.88342285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03486601 301.88345337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03486602 301.88345337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03486603 301.88348389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03486604 301.88348389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03486605 301.88348389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03486606 301.88348389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03486607 301.88351440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03486608 301.88351440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03486609 301.88354492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03486610 301.88354492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03486611 301.88357544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03486612 301.88357544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03486613 301.88360596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03486614 301.88360596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03486615 301.88363647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03486616 301.88363647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03486617 301.88366699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03486618 301.88366699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03486619 301.88369751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03486620 301.88369751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03486621 301.88372803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03486622 301.88372803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03486623 301.88375854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03486624 301.88375854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03486625 301.88378906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03486626 301.88378906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03486627 301.88381958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03486628 301.88381958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03486629 301.88385010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03486630 301.88385010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03486631 301.88388062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03486632 301.88388062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03486633 301.88391113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03486634 301.88394165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03486635 301.88394165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03486636 301.88394165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03486637 301.88400269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03486638 301.88400269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03486639 301.88403320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03486640 301.88403320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03486641 301.88406372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03486642 301.88409424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03486643 301.88409424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03486644 301.88409424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03486645 301.88412476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03486646 301.88412476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03486647 301.88415527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03486648 301.88415527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03486649 301.88418579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03486650 301.88418579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03486651 301.88421631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03486652 301.88421631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03486653 301.88424683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03486654 301.88424683 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03486655 301.88427734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03486656 301.88427734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03486657 301.88427734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03486658 301.88430786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03486659 301.88433838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03486660 301.88433838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03486661 301.88436890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03486662 301.88436890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03486663 301.88439941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03486664 301.88439941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03486665 301.88442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03486666 301.88442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03486667 301.88442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03486668 301.88442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03486669 301.88446045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03486670 301.88446045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03486671 301.88449097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03486672 301.88449097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03486673 301.88452148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03486674 301.88452148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03486675 301.88455200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03486676 301.88458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03486677 301.88458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03486678 301.88458252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03486679 301.88461304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03486680 301.88461304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03486681 301.88464355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03486682 301.88464355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03486683 301.88467407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03486684 301.88467407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03486685 301.88470459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03486686 301.88470459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03486687 301.88473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03486688 301.88473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03486689 301.88473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03486690 301.88473511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03486691 301.88476563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03486692 301.88476563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03486693 301.88479614 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03486694 301.88482666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03486695 301.88485718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03486696 301.88485718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03486697 301.88488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03486698 301.88488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03486699 301.88488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03486700 301.88488770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03486701 301.88491821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03486702 301.88491821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03486703 301.88497925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03486704 301.88497925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03486705 301.88500977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03486706 301.88500977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03486707 301.88507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03486708 301.88507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03486709 301.88507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03486710 301.88507080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03486711 301.88510132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03486712 301.88510132 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03486713 301.88513184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03486714 301.88513184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03486715 301.88516235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03486716 301.88516235 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03486717 301.88519287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03486718 301.88519287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03486719 301.88522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03486720 301.88522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03486721 301.88522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03486722 301.88522339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03486723 301.88525391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03486724 301.88525391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03486725 301.88528442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03486726 301.88531494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03486727 301.88534546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03486728 301.88534546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03486729 301.88537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03486730 301.88537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03486731 301.88537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03486732 301.88537598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03486733 301.88540649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03486734 301.88540649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03486735 301.88543701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03486736 301.88543701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03486737 301.88546753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03486738 301.88546753 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03486739 301.88549805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03486740 301.88549805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03486741 301.88552856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03486742 301.88552856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03486743 301.88552856 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03486744 301.88555908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03486745 301.88558960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03486746 301.88558960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03486747 301.88562012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03486748 301.88562012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03486749 301.88565063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03486750 301.88565063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03486751 301.88568115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03486752 301.88568115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03486753 301.88568115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03486754 301.88568115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03486755 301.88571167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03486756 301.88571167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03486757 301.88574219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03486758 301.88574219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03486759 301.88577271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03486760 301.88577271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03486761 301.88580322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03486762 301.88580322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03486763 301.88583374 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03486764 301.88586426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03486765 301.88586426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03486766 301.88586426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03486767 301.88589478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03486768 301.88589478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03486769 301.88592529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03486770 301.88592529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03486771 301.88595581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03486772 301.88595581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03486773 301.88601685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03486774 301.88601685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03486775 301.88601685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03486776 301.88601685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03486777 301.88604736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03486778 301.88604736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03486779 301.88607788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03486780 301.88607788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03486781 301.88610840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03486782 301.88610840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03486783 301.88613892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03486784 301.88613892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03486785 301.88616943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03486786 301.88616943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03486787 301.88616943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03486788 301.88619995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03486789 301.88623047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03486790 301.88623047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03486791 301.88626099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03486792 301.88626099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03486793 301.88629150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03486794 301.88629150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03486795 301.88632202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03486796 301.88632202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03486797 301.88632202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03486798 301.88632202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03486799 301.88635254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03486800 301.88635254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03486801 301.88638306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03486802 301.88638306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03486803 301.88641357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03486804 301.88641357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03486805 301.88644409 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03486806 301.88644409 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03486807 301.88647461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03486808 301.88647461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03486809 301.88650513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03486810 301.88650513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03486811 301.88653564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03486812 301.88653564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03486813 301.88656616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03486814 301.88656616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03486815 301.88659668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03486816 301.88659668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03486817 301.88662720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03486818 301.88662720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03486819 301.88665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03486820 301.88665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03486821 301.88665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03486822 301.88665771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03486823 301.88668823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03486824 301.88668823 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03486825 301.88671875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03486826 301.88671875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03486827 301.88674927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03486828 301.88674927 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03486829 301.88677979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03486830 301.88681030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03486831 301.88681030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03486832 301.88681030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03486833 301.88684082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03486834 301.88684082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03486835 301.88687134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03486836 301.88687134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03486837 301.88690186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03486838 301.88690186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03486839 301.88693237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03486840 301.88693237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03486841 301.88702393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03486842 301.88705444 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03486843 301.88708496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03486844 301.88708496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03486845 301.88711548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03486846 301.88711548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03486847 301.88711548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03486848 301.88711548 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03486849 301.88714600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03486850 301.88714600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03486851 301.88717651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03486852 301.88717651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03486853 301.88720703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03486854 301.88720703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03486855 301.88723755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03486856 301.88723755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03486857 301.88726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03486858 301.88726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03486859 301.88726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03486860 301.88726807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03486861 301.88729858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03486862 301.88729858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03486863 301.88732910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03486864 301.88735962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03486865 301.88739014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03486866 301.88739014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03486867 301.88742065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03486868 301.88742065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03486869 301.88745117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03486870 301.88745117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03486871 301.88745117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03486872 301.88745117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03486873 301.88748169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03486874 301.88748169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03486875 301.88751221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03486876 301.88751221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03486877 301.88754272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03486878 301.88754272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03486879 301.88757324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03486880 301.88757324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03486881 301.88760376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03486882 301.88760376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03486883 301.88760376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03486884 301.88763428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03486885 301.88766479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03486886 301.88766479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03486887 301.88769531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03486888 301.88769531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03486889 301.88772583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03486890 301.88772583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03486891 301.88775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03486892 301.88775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03486893 301.88775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03486894 301.88775635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03486895 301.88778687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03486896 301.88778687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03486897 301.88781738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03486898 301.88781738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03486899 301.88784790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03486900 301.88784790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03486901 301.88787842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03486902 301.88787842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03486903 301.88790894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03486904 301.88790894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03486905 301.88793945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03486906 301.88793945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03486907 301.88796997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03486908 301.88796997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03486909 301.88800049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03486910 301.88800049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03486911 301.88803101 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03486912 301.88806152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03486913 301.88809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03486914 301.88809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03486915 301.88809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03486916 301.88809204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03486917 301.88812256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03486918 301.88812256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03486919 301.88815308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03486920 301.88815308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03486921 301.88818359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03486922 301.88818359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03486923 301.88821411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03486924 301.88821411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03486925 301.88824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03486926 301.88824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03486927 301.88824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03486928 301.88824463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03486929 301.88827515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03486930 301.88827515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03486931 301.88830566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03486932 301.88830566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03486933 301.88836670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03486934 301.88836670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03486935 301.88839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03486936 301.88839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03486937 301.88839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03486938 301.88839722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03486939 301.88842773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03486940 301.88842773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03486941 301.88845825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03486942 301.88845825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03486943 301.88848877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03486944 301.88848877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03486945 301.88851929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03486946 301.88851929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03486947 301.88854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03486948 301.88854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03486949 301.88854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03486950 301.88854980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03486951 301.88858032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03486952 301.88858032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03486953 301.88861084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03486954 301.88864136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03486955 301.88867188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03486956 301.88867188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03486957 301.88870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03486958 301.88870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03486959 301.88870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03486960 301.88870239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03486961 301.88873291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03486962 301.88873291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03486963 301.88876343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03486964 301.88876343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03486965 301.88879395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03486966 301.88879395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03486967 301.88882446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03486968 301.88882446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03486969 301.88885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03486970 301.88885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03486971 301.88888550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03486972 301.88888550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03486973 301.88888550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03486974 301.88891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03486975 301.88894653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03486976 301.88894653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03486977 301.88897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03486978 301.88897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03486979 301.88900757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03486980 301.88900757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03486981 301.88903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03486982 301.88903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03486983 301.88906860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03486984 301.88906860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03486985 301.88909912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03486986 301.88909912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03486987 301.88912964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03486988 301.88912964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03486989 301.88916016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03486990 301.88916016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03486991 301.88919067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03486992 301.88919067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03486993 301.88919067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03486994 301.88919067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03486995 301.88922119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03486996 301.88922119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03486997 301.88925171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03486998 301.88925171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03486999 301.88928223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03487000 301.88928223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03487001 301.88931274 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03487002 301.88934326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03487003 301.88934326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03487004 301.88934326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03487005 301.88937378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03487006 301.88937378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03487007 301.88940430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03487008 301.88940430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03487009 301.88943481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03487010 301.88943481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03487011 301.88946533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03487012 301.88946533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03487013 301.88949585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03487014 301.88949585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03487015 301.88949585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03487016 301.88949585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03487017 301.88952637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03487018 301.88952637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03487019 301.88955688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03487020 301.88955688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03487021 301.88958740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03487022 301.88958740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03487023 301.88964844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03487024 301.88964844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03487025 301.88967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03487026 301.88967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03487027 301.88967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03487028 301.88967896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03487029 301.88970947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03487030 301.88970947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03487031 301.88973999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03487032 301.88973999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03487033 301.88977051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03487034 301.88977051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03487035 301.88980103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03487036 301.88980103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03487037 301.88983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03487038 301.88983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03487039 301.88983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03487040 301.88983154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03487041 301.88986206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03487042 301.88986206 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03487043 301.88989258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03487044 301.88992310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03487045 301.88995361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03487046 301.88995361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03487047 301.88998413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03487048 301.88998413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03487049 301.89001465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03487050 301.89001465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03487051 301.89007568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03487052 301.89007568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03487053 301.89010620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03487054 301.89010620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03487055 301.89013672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03487056 301.89013672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03487057 301.89013672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03487058 301.89013672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03487059 301.89016724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03487060 301.89019775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03487061 301.89022827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03487062 301.89022827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03487063 301.89025879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03487064 301.89025879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03487065 301.89028931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03487066 301.89028931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03487067 301.89028931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03487068 301.89028931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03487069 301.89031982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03487070 301.89031982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03487071 301.89035034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03487072 301.89035034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03487073 301.89038086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03487074 301.89038086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03487075 301.89041138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03487076 301.89041138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03487077 301.89044189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03487078 301.89044189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03487079 301.89047241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03487080 301.89047241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03487081 301.89050293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03487082 301.89050293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03487083 301.89053345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03487084 301.89053345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03487085 301.89056396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03487086 301.89056396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03487087 301.89059448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03487088 301.89059448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03487089 301.89062500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03487090 301.89062500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03487091 301.89062500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03487092 301.89062500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03487093 301.89065552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03487094 301.89065552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03487095 301.89068604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03487096 301.89068604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03487097 301.89071655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03487098 301.89071655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03487099 301.89074707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03487100 301.89077759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03487101 301.89077759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03487102 301.89077759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03487103 301.89080811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03487104 301.89080811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03487105 301.89083862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03487106 301.89083862 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03487107 301.89086914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03487108 301.89086914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03487109 301.89089966 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03487110 301.89089966 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03487111 301.89093018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03487112 301.89093018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03487113 301.89096069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03487114 301.89099121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03487115 301.89102173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03487116 301.89102173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03487117 301.89105225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03487118 301.89105225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03487119 301.89108276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03487120 301.89108276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03487121 301.89108276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03487122 301.89108276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03487123 301.89111328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03487124 301.89111328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03487125 301.89114380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03487126 301.89114380 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03487127 301.89117432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03487128 301.89117432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03487129 301.89120483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03487130 301.89120483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03487131 301.89123535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03487132 301.89123535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03487133 301.89126587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03487134 301.89126587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03487135 301.89126587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03487136 301.89129639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03487137 301.89132690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03487138 301.89132690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03487139 301.89135742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03487140 301.89135742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03487141 301.89138794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03487142 301.89138794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03487143 301.89141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03487144 301.89141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03487145 301.89141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03487146 301.89141846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03487147 301.89144897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03487148 301.89144897 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03487149 301.89147949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03487150 301.89147949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03487151 301.89151001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03487152 301.89151001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03487153 301.89154053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03487154 301.89154053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03487155 301.89157104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03487156 301.89157104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03487157 301.89160156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03487158 301.89160156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03487159 301.89163208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03487160 301.89163208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03487161 301.89166260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03487162 301.89166260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03487163 301.89169312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03487164 301.89169312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03487165 301.89172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03487166 301.89172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03487167 301.89172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03487168 301.89172363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03487169 301.89175415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03487170 301.89175415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03487171 301.89178467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03487172 301.89178467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03487173 301.89181519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03487174 301.89181519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03487175 301.89184570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03487176 301.89187622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03487177 301.89187622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03487178 301.89187622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03487179 301.89190674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03487180 301.89190674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03487181 301.89193726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03487182 301.89193726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03487183 301.89196777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03487184 301.89196777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03487185 301.89199829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03487186 301.89202881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03487187 301.89205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03487188 301.89205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03487189 301.89205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03487190 301.89205933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03487191 301.89208984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03487192 301.89208984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03487193 301.89212036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03487194 301.89212036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03487195 301.89215088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03487196 301.89215088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03487197 301.89218140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03487198 301.89218140 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03487199 301.89221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03487200 301.89221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03487201 301.89221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03487202 301.89221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03487203 301.89224243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03487204 301.89224243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03487205 301.89227295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03487206 301.89230347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03487207 301.89233398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03487208 301.89233398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03487209 301.89236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03487210 301.89236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03487211 301.89236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03487212 301.89236450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03487213 301.89239502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03487214 301.89239502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03487215 301.89242554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03487216 301.89242554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03487217 301.89245605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03487218 301.89245605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03487219 301.89248657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03487220 301.89248657 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03487221 301.89251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03487222 301.89251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03487223 301.89251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03487224 301.89251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03487225 301.89254761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03487226 301.89257813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03487227 301.89260864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03487228 301.89260864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03487229 301.89263916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03487230 301.89263916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03487231 301.89266968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03487232 301.89266968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03487233 301.89266968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03487234 301.89266968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03487235 301.89270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03487236 301.89270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03487237 301.89273071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03487238 301.89273071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03487239 301.89276123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03487240 301.89276123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03487241 301.89279175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03487242 301.89279175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03487243 301.89282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03487244 301.89282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03487245 301.89285278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03487246 301.89285278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03487247 301.89288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03487248 301.89288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03487249 301.89291382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03487250 301.89291382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03487251 301.89297485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03487252 301.89297485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03487253 301.89300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03487254 301.89300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03487255 301.89300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03487256 301.89300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03487257 301.89303589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03487258 301.89303589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03487259 301.89306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03487260 301.89306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03487261 301.89309692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03487262 301.89312744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03487263 301.89315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03487264 301.89315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03487265 301.89315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03487266 301.89315796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03487267 301.89318848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03487268 301.89318848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03487269 301.89321899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03487270 301.89321899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03487271 301.89324951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03487272 301.89324951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03487273 301.89328003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03487274 301.89328003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03487275 301.89331055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03487276 301.89331055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03487277 301.89331055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03487278 301.89331055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03487279 301.89334106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03487280 301.89334106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03487281 301.89337158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03487282 301.89337158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03487283 301.89343262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03487284 301.89343262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03487285 301.89346313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03487286 301.89346313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03487287 301.89349365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03487288 301.89349365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03487289 301.89349365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03487290 301.89349365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03487291 301.89352417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03487292 301.89352417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03487293 301.89355469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03487294 301.89355469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03487295 301.89358521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03487296 301.89358521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03487297 301.89361572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03487298 301.89361572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03487299 301.89364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03487300 301.89364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03487301 301.89364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03487302 301.89364624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03487303 301.89367676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03487304 301.89370728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03487305 301.89373779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03487306 301.89373779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03487307 301.89376831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03487308 301.89376831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03487309 301.89379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03487310 301.89379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03487311 301.89379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03487312 301.89379883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03487313 301.89382935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03487314 301.89382935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03487315 301.89385986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03487316 301.89385986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03487317 301.89389038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03487318 301.89389038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03487319 301.89392090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03487320 301.89395142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03487321 301.89398193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03487322 301.89398193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03487323 301.89401245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03487324 301.89401245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03487325 301.89404297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03487326 301.89404297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03487327 301.89407349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03487328 301.89407349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03487329 301.89410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03487330 301.89410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03487331 301.89410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03487332 301.89410400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03487333 301.89413452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03487334 301.89416504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03487335 301.89419556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03487336 301.89419556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03487337 301.89422607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03487338 301.89422607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03487339 301.89425659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03487340 301.89425659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03487341 301.89428711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03487342 301.89428711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03487343 301.89428711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03487344 301.89428711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03487345 301.89431763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03487346 301.89431763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03487347 301.89434814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03487348 301.89434814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03487349 301.89437866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03487350 301.89437866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03487351 301.89440918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03487352 301.89440918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03487353 301.89443970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03487354 301.89443970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03487355 301.89447021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03487356 301.89447021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03487357 301.89450073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03487358 301.89450073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03487359 301.89453125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03487360 301.89453125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03487361 301.89456177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03487362 301.89456177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03487363 301.89459229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03487364 301.89459229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03487365 301.89459229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03487366 301.89459229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03487367 301.89462280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03487368 301.89462280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03487369 301.89465332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03487370 301.89465332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03487371 301.89468384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03487372 301.89468384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03487373 301.89471436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03487374 301.89471436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03487375 301.89474487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03487376 301.89474487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03487377 301.89477539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03487378 301.89477539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03487379 301.89480591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03487380 301.89480591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03487381 301.89483643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03487382 301.89483643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03487383 301.89486694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03487384 301.89486694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03487385 301.89489746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03487386 301.89489746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03487387 301.89489746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03487388 301.89489746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03487389 301.89495850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03487390 301.89495850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03487391 301.89498901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03487392 301.89498901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03487393 301.89501953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03487394 301.89501953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03487395 301.89505005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03487396 301.89505005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03487397 301.89508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03487398 301.89508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03487399 301.89508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03487400 301.89508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03487401 301.89511108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03487402 301.89511108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03487403 301.89514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03487404 301.89514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03487405 301.89517212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03487406 301.89520264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03487407 301.89523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03487408 301.89523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03487409 301.89523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03487410 301.89523315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03487411 301.89526367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03487412 301.89526367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03487413 301.89529419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03487414 301.89529419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03487415 301.89532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03487416 301.89532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03487417 301.89535522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03487418 301.89535522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03487419 301.89538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03487420 301.89538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03487421 301.89538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03487422 301.89538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03487423 301.89541626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03487424 301.89541626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03487425 301.89544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03487426 301.89547729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03487427 301.89550781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03487428 301.89550781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03487429 301.89553833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03487430 301.89553833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03487431 301.89553833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03487432 301.89553833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03487433 301.89556885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03487434 301.89556885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03487435 301.89559937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03487436 301.89559937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03487437 301.89562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03487438 301.89562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03487439 301.89566040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03487440 301.89566040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03487441 301.89569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03487442 301.89569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03487443 301.89569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03487444 301.89569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03487445 301.89572144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03487446 301.89575195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03487447 301.89578247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03487448 301.89578247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03487449 301.89581299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03487450 301.89581299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03487451 301.89584351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03487452 301.89584351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03487453 301.89587402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03487454 301.89587402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03487455 301.89587402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03487456 301.89587402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03487457 301.89590454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03487458 301.89590454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03487459 301.89596558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03487460 301.89596558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03487461 301.89599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03487462 301.89599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03487463 301.89602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03487464 301.89602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03487465 301.89602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03487466 301.89602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03487467 301.89605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03487468 301.89605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03487469 301.89608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03487470 301.89608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03487471 301.89611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03487472 301.89611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03487473 301.89614868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03487474 301.89617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03487475 301.89617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03487476 301.89617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03487477 301.89620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03487478 301.89620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03487479 301.89624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03487480 301.89624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03487481 301.89627075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03487482 301.89627075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03487483 301.89630127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03487484 301.89630127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03487485 301.89633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03487486 301.89633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03487487 301.89633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03487488 301.89633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03487489 301.89636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03487490 301.89636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03487491 301.89639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03487492 301.89639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03487493 301.89642334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03487494 301.89645386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03487495 301.89648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03487496 301.89648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03487497 301.89648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03487498 301.89648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03487499 301.89651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03487500 301.89651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03487501 301.89654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03487502 301.89654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03487503 301.89657593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03487504 301.89657593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03487505 301.89660645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03487506 301.89660645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03487507 301.89663696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03487508 301.89663696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03487509 301.89666748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03487510 301.89666748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03487511 301.89666748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03487512 301.89666748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03487513 301.89669800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03487514 301.89672852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03487515 301.89675903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03487516 301.89675903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03487517 301.89678955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03487518 301.89678955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03487519 301.89682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03487520 301.89682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03487521 301.89682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03487522 301.89682007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03487523 301.89685059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03487524 301.89685059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03487525 301.89688110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03487526 301.89688110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03487527 301.89691162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03487528 301.89691162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03487529 301.89697266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03487530 301.89697266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03487531 301.89700317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03487532 301.89700317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03487533 301.89703369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03487534 301.89703369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03487535 301.89706421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03487536 301.89706421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03487537 301.89709473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03487538 301.89709473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03487539 301.89712524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03487540 301.89712524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03487541 301.89712524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03487542 301.89712524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03487543 301.89715576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03487544 301.89715576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03487545 301.89718628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03487546 301.89718628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03487547 301.89721680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03487548 301.89724731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03487549 301.89727783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03487550 301.89727783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03487551 301.89727783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03487552 301.89727783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03487553 301.89730835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03487554 301.89730835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03487555 301.89733887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03487556 301.89733887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03487557 301.89736938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03487558 301.89736938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03487559 301.89739990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03487560 301.89739990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03487561 301.89743042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03487562 301.89743042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03487563 301.89746094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03487564 301.89746094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03487565 301.89746094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03487566 301.89746094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03487567 301.89749146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03487568 301.89749146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03487569 301.89752197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03487570 301.89755249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03487571 301.89758301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03487572 301.89758301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03487573 301.89761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03487574 301.89761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03487575 301.89761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03487576 301.89761353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03487577 301.89764404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03487578 301.89764404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03487579 301.89767456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03487580 301.89767456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03487581 301.89770508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03487582 301.89770508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03487583 301.89773560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03487584 301.89773560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03487585 301.89776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03487586 301.89776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03487587 301.89776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03487588 301.89776611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03487589 301.89779663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03487590 301.89782715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03487591 301.89785767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03487592 301.89785767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03487593 301.89788818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03487594 301.89788818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03487595 301.89791870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03487596 301.89791870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03487597 301.89794922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03487598 301.89794922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03487599 301.89797974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03487600 301.89797974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03487601 301.89801025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03487602 301.89801025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03487603 301.89804077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03487604 301.89804077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03487605 301.89807129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03487606 301.89807129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03487607 301.89807129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03487608 301.89810181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03487609 301.89813232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03487610 301.89813232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03487611 301.89816284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03487612 301.89816284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03487613 301.89819336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03487614 301.89819336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03487615 301.89822388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03487616 301.89822388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03487617 301.89825439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03487618 301.89825439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03487619 301.89825439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03487620 301.89825439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03487621 301.89828491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03487622 301.89831543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03487623 301.89834595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03487624 301.89834595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03487625 301.89837646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03487626 301.89837646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03487627 301.89840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03487628 301.89840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03487629 301.89840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03487630 301.89840698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03487631 301.89843750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03487632 301.89843750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03487633 301.89846802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03487634 301.89846802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03487635 301.89849854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03487636 301.89849854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03487637 301.89852905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03487638 301.89855957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03487639 301.89855957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03487640 301.89855957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03487641 301.89859009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03487642 301.89859009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03487643 301.89862061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03487644 301.89862061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03487645 301.89865112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03487646 301.89865112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03487647 301.89868164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03487648 301.89868164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03487649 301.89871216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03487650 301.89871216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03487651 301.89871216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03487652 301.89871216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03487653 301.89874268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03487654 301.89874268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03487655 301.89877319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03487656 301.89877319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03487657 301.89880371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03487658 301.89883423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03487659 301.89886475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03487660 301.89886475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03487661 301.89886475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03487662 301.89886475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03487663 301.89889526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03487664 301.89889526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03487665 301.89892578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03487666 301.89892578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03487667 301.89895630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03487668 301.89898682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03487669 301.89901733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03487670 301.89901733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03487671 301.89904785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03487672 301.89904785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03487673 301.89904785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03487674 301.89904785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03487675 301.89907837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03487676 301.89907837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03487677 301.89910889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03487678 301.89910889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03487679 301.89913940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03487680 301.89913940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03487681 301.89916992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03487682 301.89916992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03487683 301.89920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03487684 301.89920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03487685 301.89920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03487686 301.89920044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03487687 301.89923096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03487688 301.89926147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03487689 301.89929199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03487690 301.89929199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03487691 301.89932251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03487692 301.89932251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03487693 301.89935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03487694 301.89935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03487695 301.89935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03487696 301.89935303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03487697 301.89938354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03487698 301.89938354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03487699 301.89941406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03487700 301.89941406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03487701 301.89944458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03487702 301.89944458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03487703 301.89947510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03487704 301.89947510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03487705 301.89950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03487706 301.89950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03487707 301.89950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03487708 301.89950562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03487709 301.89953613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03487710 301.89956665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03487711 301.89959717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03487712 301.89959717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03487713 301.89962769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03487714 301.89962769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03487715 301.89965820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03487716 301.89965820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03487717 301.89968872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03487718 301.89968872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03487719 301.89968872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03487720 301.89968872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03490076 301.93417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8590 -03490077 301.93420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -03490078 301.93420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a0 -03490079 301.93423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -03490080 301.93423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b0 -03490081 301.93426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -03490082 301.93426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c0 -03490083 301.93429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -03490084 301.93429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d0 -03490085 301.93429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -03490086 301.93429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e0 -03490087 301.93432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -03490088 301.93435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f0 -03490089 301.93438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -03490090 301.93438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8600 -03490091 301.93441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -03490092 301.93441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8610 -03490093 301.93444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -03490094 301.93444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8620 -03490095 301.93447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -03490096 301.93447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8630 -03490097 301.93447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -03490098 301.93447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8640 -03490099 301.93450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -03490100 301.93450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8650 -03490101 301.93453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -03490102 301.93453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8660 -03490103 301.93457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -03490104 301.93457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8670 -03490105 301.93460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -03490106 301.93460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8680 -03490107 301.93463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -03490108 301.93463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x8690 -03490109 301.93466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -03490110 301.93466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a0 -03490111 301.93469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -03490112 301.93469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b0 -03490113 301.93472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -03490114 301.93472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c0 -03490115 301.93475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -03490116 301.93475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d0 -03490117 301.93478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -03490118 301.93478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e0 -03490119 301.93478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f0 -03493965 301.99114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -03493966 301.99114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff20 -03493967 301.99118042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -03493968 301.99118042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff30 -03493969 301.99121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -03493970 301.99121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff40 -03493971 301.99124146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -03493972 301.99124146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff50 -03493973 301.99127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -03493974 301.99127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff60 -03493975 301.99130249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -03493976 301.99130249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff70 -03493977 301.99133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -03493978 301.99133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff80 -03493979 301.99133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -03493980 301.99133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xff90 -03493981 301.99136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -03493982 301.99136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffa0 -03493983 301.99139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -03493984 301.99139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffb0 -03493985 301.99142456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -03493986 301.99142456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffc0 -03493987 301.99145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -03493988 301.99145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffd0 -03493989 301.99148560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -03493990 301.99148560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xffe0 -03493991 301.99151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -03493992 301.99151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff0 -03493993 301.99154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -03493994 301.99154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10000 -03493995 301.99157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -03493996 301.99157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10010 -03493997 301.99160767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -03493998 301.99160767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10020 -03493999 301.99163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -03494000 301.99163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10030 -03494001 301.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -03494002 301.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10040 -03494003 301.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -03494004 301.99166870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10050 -03494005 301.99169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -03494006 301.99169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10060 -03494007 301.99172974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -03494008 301.99172974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10070 -03498225 302.05636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -03498226 302.05636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18440 -03498227 302.05639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -03498228 302.05639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18450 -03498229 302.05642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -03498230 302.05642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18460 -03498231 302.05645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -03498232 302.05648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18470 -03498233 302.05648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -03498234 302.05648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18480 -03498235 302.05651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -03498236 302.05651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18490 -03498237 302.05654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -03498238 302.05654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a0 -03498239 302.05657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -03498240 302.05657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b0 -03498241 302.05661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -03498242 302.05661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c0 -03498243 302.05664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -03498244 302.05664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d0 -03498245 302.05664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -03498246 302.05664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e0 -03498247 302.05667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -03498248 302.05667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f0 -03498249 302.05670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -03498250 302.05670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18500 -03498251 302.05673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -03498252 302.05676270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18510 -03498253 302.05679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -03498254 302.05679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18520 -03498255 302.05679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -03498256 302.05679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18530 -03498257 302.05682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -03498258 302.05682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18540 -03498259 302.05685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -03498260 302.05685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18550 -03498261 302.05688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -03498262 302.05688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18560 -03498263 302.05691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -03498264 302.05691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18570 -03498265 302.05694580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -03498266 302.05694580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18580 -03498267 302.05697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -03498268 302.05697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18590 -03503367 302.13146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -03503368 302.13146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f0 -03503369 302.13146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -03503370 302.13146973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22500 -03503371 302.13150024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -03503372 302.13153076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22510 -03503373 302.13156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -03503374 302.13156128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22520 -03503375 302.13159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -03503376 302.13159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22530 -03503377 302.13162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -03503378 302.13162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22540 -03503379 302.13162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -03503380 302.13162231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22550 -03503381 302.13165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -03503382 302.13165283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22560 -03503383 302.13168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -03503384 302.13168335 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22570 -03503385 302.13171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -03503386 302.13171387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22580 -03503387 302.13174438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -03503388 302.13174438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22590 -03503389 302.13177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -03503390 302.13177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a0 -03503391 302.13177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -03503392 302.13180542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b0 -03503393 302.13183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -03503394 302.13183594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c0 -03503395 302.13186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -03503396 302.13186646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d0 -03503397 302.13189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -03503398 302.13189697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e0 -03503399 302.13192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -03503400 302.13192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f0 -03503401 302.13192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -03503402 302.13192749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22600 -03503403 302.13195801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -03503404 302.13195801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22610 -03503405 302.13198853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -03503406 302.13198853 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22620 -03503407 302.13204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -03503408 302.13204956 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22630 -03503409 302.13208008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -03503410 302.13208008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22640 -03508477 302.20648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -03508478 302.20648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a0 -03508479 302.20651245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -03508480 302.20651245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b0 -03508481 302.20654297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -03508482 302.20657349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c0 -03508483 302.20660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -03508484 302.20660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d0 -03508485 302.20660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -03508486 302.20660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e0 -03508487 302.20663452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -03508488 302.20663452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f0 -03508489 302.20666504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -03508490 302.20666504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c500 -03508491 302.20669556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -03508492 302.20669556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c510 -03508493 302.20672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -03508494 302.20672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c520 -03508495 302.20675659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -03508496 302.20675659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c530 -03508497 302.20675659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -03508498 302.20675659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c540 -03508499 302.20678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -03508500 302.20678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c550 -03508501 302.20681763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -03508502 302.20681763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c560 -03508503 302.20684814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -03508504 302.20687866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c570 -03508505 302.20690918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -03508506 302.20690918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c580 -03508507 302.20693970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -03508508 302.20693970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c590 -03508509 302.20693970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -03508510 302.20693970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5a0 -03508511 302.20697021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -03508512 302.20697021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5b0 -03508513 302.20700073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -03508514 302.20700073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5c0 -03508515 302.20703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -03508516 302.20703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5d0 -03508517 302.20706177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -03508518 302.20706177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5e0 -03508519 302.20709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -03508520 302.20709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c5f0 -03510133 302.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -03510134 302.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f860 -03510135 302.23092651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -03510136 302.23092651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f870 -03510137 302.23092651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -03510138 302.23092651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f880 -03510139 302.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -03510140 302.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f890 -03510141 302.23098755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -03510142 302.23098755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a0 -03510143 302.23101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -03510144 302.23104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b0 -03510145 302.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -03510146 302.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c0 -03510147 302.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -03510148 302.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d0 -03510149 302.23110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -03510150 302.23110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e0 -03510151 302.23114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -03510152 302.23114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f0 -03510153 302.23123169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -03510154 302.23123169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f900 -03510155 302.23123169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -03510156 302.23123169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f910 -03510157 302.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -03510158 302.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f920 -03510159 302.23129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -03510160 302.23129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f930 -03510161 302.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -03510162 302.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f940 -03510163 302.23135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -03510164 302.23135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f950 -03510165 302.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -03510166 302.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f960 -03510167 302.23141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -03510168 302.23141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f970 -03510169 302.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -03510170 302.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f980 -03510171 302.23147583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -03510172 302.23147583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f990 -03510173 302.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -03510174 302.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a0 -03510175 302.23153687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -03510176 302.23153687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b0 -03510429 302.23526001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -03510430 302.23526001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a0 -03510431 302.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -03510432 302.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b0 -03510433 302.23532104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -03510434 302.23532104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c0 -03510435 302.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -03510436 302.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d0 -03510437 302.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -03510438 302.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e0 -03510439 302.23538208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -03510440 302.23538208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f0 -03510441 302.23541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -03510442 302.23544312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30200 -03510443 302.23547363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -03510444 302.23547363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30210 -03510445 302.23550415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -03510446 302.23550415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30220 -03510447 302.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -03510448 302.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30230 -03510449 302.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -03510450 302.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30240 -03510451 302.23556519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -03510452 302.23556519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30250 -03510453 302.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -03510454 302.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30260 -03510455 302.23562622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -03510456 302.23562622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30270 -03510457 302.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -03510458 302.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30280 -03510459 302.23568726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -03510460 302.23568726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30290 -03510461 302.23568726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -03510462 302.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a0 -03510463 302.23574829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -03510464 302.23574829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b0 -03510465 302.23577881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -03510466 302.23577881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c0 -03510467 302.23580933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -03510468 302.23580933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d0 -03510469 302.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -03510470 302.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e0 -03510471 302.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -03510472 302.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f0 -03510817 302.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -03510818 302.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc0 -03510819 302.24105835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -03510820 302.24105835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd0 -03510821 302.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -03510822 302.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de0 -03510823 302.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -03510824 302.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df0 -03510825 302.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -03510826 302.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -03510827 302.24118042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -03510828 302.24118042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -03510829 302.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -03510830 302.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -03510831 302.24124146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -03510832 302.24124146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -03510833 302.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -03510834 302.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -03510835 302.24130249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -03510836 302.24130249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -03510837 302.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -03510838 302.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -03510839 302.24136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -03510840 302.24136353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -03510841 302.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -03510842 302.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -03510843 302.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -03510844 302.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -03510845 302.24142456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -03510846 302.24142456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -03510847 302.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -03510848 302.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -03510849 302.24148560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -03510850 302.24148560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -03510851 302.24151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -03510852 302.24154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -03510853 302.24154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -03510854 302.24154663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -03510855 302.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -03510856 302.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -03510857 302.24160767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -03510858 302.24160767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -03510859 302.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -03510860 302.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -03524335 302.44131470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -03524336 302.44131470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b430 -03524337 302.44134521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -03524338 302.44134521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b440 -03524339 302.44137573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -03524340 302.44140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b450 -03524341 302.44140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -03524342 302.44140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b460 -03524343 302.44143677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -03524344 302.44143677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b470 -03524345 302.44146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -03524346 302.44146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b480 -03524347 302.44149780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -03524348 302.44149780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -03524349 302.44152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -03524350 302.44152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -03524351 302.44155884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -03524352 302.44155884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -03524353 302.44158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -03524354 302.44158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -03524355 302.44158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -03524356 302.44158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -03524357 302.44161987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -03524358 302.44161987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -03524359 302.44165039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -03524360 302.44168091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -03524361 302.44171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -03524362 302.44171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -03524363 302.44174194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -03524364 302.44174194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -03524365 302.44174194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -03524366 302.44174194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -03524367 302.44177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -03524368 302.44177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -03524369 302.44180298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -03524370 302.44180298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -03524371 302.44183350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -03524372 302.44183350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -03524373 302.44186401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -03524374 302.44186401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -03524375 302.44189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -03524376 302.44189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -03524377 302.44189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -03524378 302.44189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -03525395 302.45703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -03525396 302.45703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d550 -03525397 302.45706177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -03525398 302.45706177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d560 -03525399 302.45709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -03525400 302.45709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d570 -03525401 302.45715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -03525402 302.45715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d580 -03525403 302.45721436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -03525404 302.45721436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d590 -03525405 302.45724487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -03525406 302.45724487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -03525407 302.45727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -03525408 302.45727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -03525409 302.45730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -03525410 302.45730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -03525411 302.45730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -03525412 302.45730591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -03525413 302.45733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -03525414 302.45733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -03525415 302.45736694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -03525416 302.45736694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -03525417 302.45739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -03525418 302.45739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -03525419 302.45742798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -03525420 302.45745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -03525421 302.45745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -03525422 302.45745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -03525423 302.45748901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -03525424 302.45748901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -03525425 302.45751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -03525426 302.45751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -03525427 302.45755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -03525428 302.45755005 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -03525429 302.45758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -03525430 302.45758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -03525431 302.45761108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -03525432 302.45761108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -03525433 302.45761108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -03525434 302.45761108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -03525435 302.45764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -03525436 302.45764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -03525437 302.45767212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -03525438 302.45767212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -03528215 302.95889282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03528216 302.95889282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03528217 302.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03528218 302.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03528219 302.95895386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03528220 302.95895386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03528221 302.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03528222 302.95901489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03528223 302.95901489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03528224 302.95901489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03528225 302.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03528226 302.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03528227 302.95907593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03528228 302.95907593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03528229 302.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03528230 302.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03528231 302.95913696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03528232 302.95913696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03528233 302.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03528234 302.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03528235 302.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03528236 302.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03528237 302.95919800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03528238 302.95919800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03528239 302.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03528240 302.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03528241 302.95925903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03528242 302.95928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03528243 302.95932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03528244 302.95932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03528245 302.95932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03528246 302.95932007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03528247 302.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03528248 302.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03528249 302.95938110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03528250 302.95938110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03528251 302.95941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03528252 302.95941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03528253 302.95944214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03528254 302.95944214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03528255 302.95947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03528256 302.95947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03528257 302.95950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03528258 302.95950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03528259 302.95950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03528260 302.95950317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03528261 302.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03528262 302.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03528263 302.95956421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03528264 302.95959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03528265 302.95962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03528266 302.95962524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03528267 302.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03528268 302.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03528269 302.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03528270 302.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03528271 302.95968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03528272 302.95968628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03528273 302.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03528274 302.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03528275 302.95974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03528276 302.95974731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03528277 302.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03528278 302.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03528279 302.95980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03528280 302.95980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03528281 302.95980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03528282 302.95980835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03528283 302.95983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03528284 302.95986938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03528285 302.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03528286 302.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03528287 302.95993042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03528288 302.95993042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03528289 302.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03528290 302.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03528291 302.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03528292 302.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03528293 302.95999146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03528294 302.95999146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03528295 302.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03528296 302.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03528297 302.96005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03528298 302.96005249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03528299 302.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03528300 302.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03528301 302.96011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03528302 302.96011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03528303 302.96011353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03528304 302.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03528305 302.96017456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03528306 302.96017456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03528307 302.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03528308 302.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03528309 302.96023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03528310 302.96023560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03528311 302.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03528312 302.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03528313 302.96029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03528314 302.96029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03528315 302.96029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03528316 302.96029663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03528317 302.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03528318 302.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03528319 302.96035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03528320 302.96035767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03528321 302.96038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03528322 302.96038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03528323 302.96041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03528324 302.96041870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03528325 302.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03528326 302.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03528327 302.96047974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03528328 302.96047974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03528329 302.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03528330 302.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03528331 302.96054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03528332 302.96054077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03528333 302.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03528334 302.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03528335 302.96060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03528336 302.96060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03528337 302.96060181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03528338 302.96063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03528339 302.96066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03528340 302.96066284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03528341 302.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03528342 302.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03528343 302.96072388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03528344 302.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03528345 302.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03528346 302.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03528347 302.96078491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03528348 302.96078491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03528349 302.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03528350 302.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03528351 302.96084595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03528352 302.96084595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03528353 302.96087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03528354 302.96087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03528355 302.96090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03528356 302.96090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03528357 302.96090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03528358 302.96090698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03528359 302.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03528360 302.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03528361 302.96096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03528362 302.96096802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03528363 302.96099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03528364 302.96102905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03528365 302.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03528366 302.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03528367 302.96109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03528368 302.96109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03528369 302.96109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03528370 302.96109009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03528371 302.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03528372 302.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03528373 302.96115112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03528374 302.96115112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03528375 302.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03528376 302.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03528377 302.96121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03528378 302.96121216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03528379 302.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03528380 302.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03528381 302.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03528382 302.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03528383 302.96127319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03528384 302.96130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03528385 302.96130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03528386 302.96133423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03528387 302.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03528388 302.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03528389 302.96139526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03528390 302.96139526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03532669 303.02185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -03532670 303.02185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -03532671 303.02188110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -03532672 303.02188110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -03532673 303.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -03532674 303.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -03532675 303.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -03532676 303.02191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -03532677 303.02194214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -03532678 303.02194214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -03532679 303.02197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -03532680 303.02197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -03532681 303.02200317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -03532682 303.02203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -03532683 303.02206421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -03532684 303.02206421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -03532685 303.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -03532686 303.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -03532687 303.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -03532688 303.02209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -03532689 303.02212524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -03532690 303.02212524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -03532691 303.02215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -03532692 303.02215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -03532693 303.02218628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -03532694 303.02218628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -03532695 303.02221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -03532696 303.02221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -03532697 303.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -03532698 303.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -03532699 303.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -03532700 303.02224731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -03532701 303.02227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -03532702 303.02227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -03532703 303.02230835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -03532704 303.02233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -03532705 303.02236938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -03532706 303.02236938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -03532707 303.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -03532708 303.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -03532709 303.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -03532710 303.02239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -03532711 303.02243042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -03532712 303.02243042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -03539855 303.12420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c08 -03539856 303.12420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c08 -03539857 303.12423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c18 -03539858 303.12423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c18 -03539859 303.12423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c28 -03539860 303.12423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c28 -03539861 303.12426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c38 -03539862 303.12426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c38 -03539863 303.12429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c48 -03539864 303.12429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c48 -03539865 303.12432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c58 -03539866 303.12432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c58 -03539867 303.12435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c68 -03539868 303.12435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c68 -03539869 303.12438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c78 -03539870 303.12438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c78 -03539871 303.12438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c88 -03539872 303.12438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c88 -03539873 303.12442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c98 -03539874 303.12445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c98 -03539875 303.12448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca8 -03539876 303.12448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca8 -03539877 303.12451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -03539878 303.12451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -03539879 303.12454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -03539880 303.12454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -03539881 303.12454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -03539882 303.12454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -03539883 303.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -03539884 303.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -03539885 303.12460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -03539886 303.12460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -03539887 303.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -03539888 303.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -03539889 303.12466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -03539890 303.12466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -03539891 303.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -03539892 303.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -03539893 303.12472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -03539894 303.12472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -03539895 303.12475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -03539896 303.12475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -03539897 303.12478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -03539898 303.12478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -03547175 303.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c8 -03547176 303.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c8 -03547177 303.22824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d8 -03547178 303.22824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d8 -03547179 303.22827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e8 -03547180 303.22827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e8 -03547181 303.22830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f8 -03547182 303.22830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f8 -03547183 303.22830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26108 -03547184 303.22833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26108 -03547185 303.22836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26118 -03547186 303.22836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26118 -03547187 303.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26128 -03547188 303.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26128 -03547189 303.22842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26138 -03547190 303.22842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26138 -03547191 303.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26148 -03547192 303.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26148 -03547193 303.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26158 -03547194 303.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26158 -03547195 303.22848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26168 -03547196 303.22848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26168 -03547197 303.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26178 -03547198 303.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26178 -03547199 303.22854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26188 -03547200 303.22854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26188 -03547201 303.22857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26198 -03547202 303.22857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26198 -03547203 303.22860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a8 -03547204 303.22860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a8 -03547205 303.22860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b8 -03547206 303.22863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b8 -03547207 303.22866821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c8 -03547208 303.22866821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c8 -03547209 303.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d8 -03547210 303.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261d8 -03547211 303.22872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e8 -03547212 303.22872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261e8 -03547213 303.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f8 -03547214 303.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x261f8 -03547215 303.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26208 -03547216 303.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26208 -03547217 303.22879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26218 -03547218 303.22879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26218 -03561683 303.44082642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -03561684 303.44082642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42628 -03561685 303.44085693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -03561686 303.44085693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42638 -03561687 303.44085693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -03561688 303.44085693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42648 -03561689 303.44088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -03561690 303.44088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42658 -03561691 303.44091797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -03561692 303.44091797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42668 -03561693 303.44094849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -03561694 303.44097900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42678 -03561695 303.44100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -03561696 303.44100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42688 -03561697 303.44100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42698 -03561698 303.44100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42698 -03561699 303.44104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a8 -03561700 303.44104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a8 -03561701 303.44107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b8 -03561702 303.44107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b8 -03561703 303.44110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c8 -03561704 303.44110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c8 -03561705 303.44113159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d8 -03561706 303.44113159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d8 -03561707 303.44116211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e8 -03561708 303.44116211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e8 -03561709 303.44119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f8 -03561710 303.44119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f8 -03561711 303.44119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42708 -03561712 303.44119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42708 -03561713 303.44122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42718 -03561714 303.44125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42718 -03561715 303.44125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42728 -03561716 303.44128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42728 -03561717 303.44131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42738 -03561718 303.44131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42738 -03561719 303.44134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42748 -03561720 303.44134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42748 -03561721 303.44134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42758 -03561722 303.44134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42758 -03561723 303.44137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42768 -03561724 303.44137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42768 -03561725 303.44140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42778 -03561726 303.44140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42778 -03565803 303.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -03565804 303.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e8 -03565805 303.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -03565806 303.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f8 -03565807 303.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -03565808 303.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a708 -03565809 303.49911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -03565810 303.49911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a718 -03565811 303.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -03565812 303.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a728 -03565813 303.49917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -03565814 303.49917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a738 -03565815 303.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -03565816 303.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a748 -03565817 303.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -03565818 303.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a758 -03565819 303.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -03565820 303.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a768 -03565821 303.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -03565822 303.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a778 -03565823 303.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a788 -03565824 303.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a788 -03565825 303.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a798 -03565826 303.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a798 -03565827 303.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a8 -03565828 303.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a8 -03565829 303.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b8 -03565830 303.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b8 -03565831 303.49942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c8 -03565832 303.49942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c8 -03565833 303.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d8 -03565834 303.49948120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d8 -03565835 303.49948120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e8 -03565836 303.49948120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7e8 -03565837 303.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f8 -03565838 303.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7f8 -03565839 303.49954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a808 -03565840 303.49954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a808 -03565841 303.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a818 -03565842 303.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a818 -03565843 303.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a828 -03565844 303.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a828 -03565845 303.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a838 -03565846 303.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a838 -03570101 303.67645264 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570102 303.69631958 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570103 303.69631958 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570104 304.29208374 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570105 304.29208374 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570106 304.29211426 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570107 304.29214478 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03570108 304.29223633 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570109 304.29223633 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570110 304.29232788 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570111 304.29235840 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570112 305.69808960 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570113 305.71762085 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570114 305.71765137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570115 306.07696533 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -03570116 306.07818604 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -03570117 306.79846191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570118 306.79849243 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570119 306.79852295 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570120 306.79855347 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03570121 306.79864502 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570122 306.79864502 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570123 306.79870605 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03570124 306.79870605 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03570125 307.71975708 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03570126 307.74023438 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570127 307.74023438 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03570128 308.56024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03570129 308.56024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03570130 308.56027222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03570131 308.56027222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03570132 308.56030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03570133 308.56030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03570134 308.56033325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03570135 308.56033325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03570136 308.56036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03570137 308.56036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03570138 308.56039429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03570139 308.56039429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03570140 308.56042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03570141 308.56042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03570142 308.56042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03570143 308.56042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03570144 308.56045532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03570145 308.56048584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03570146 308.56051636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03570147 308.56051636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03570148 308.56054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03570149 308.56054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03570150 308.56057739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03570151 308.56057739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03570152 308.56057739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03570153 308.56057739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03570154 308.56060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03570155 308.56060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03570156 308.56063843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03570157 308.56063843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03570158 308.56066895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03570159 308.56066895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03570160 308.56069946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03570161 308.56069946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03570162 308.56072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03570163 308.56072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03570164 308.56072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03570165 308.56072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03570166 308.56076050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03570167 308.56079102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03570168 308.56082153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03570169 308.56082153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03570170 308.56085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03570171 308.56085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03570172 308.56088257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03570173 308.56088257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03570174 308.56088257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03570175 308.56088257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03570176 308.56091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03570177 308.56091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03570178 308.56094360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03570179 308.56094360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03570180 308.56097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03570181 308.56097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03570182 308.56100464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03570183 308.56100464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03570184 308.56103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03570185 308.56103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03570186 308.56103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03570187 308.56103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03570188 308.56109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03570189 308.56109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03570190 308.56112671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03570191 308.56112671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03570192 308.56115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03570193 308.56115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03570194 308.56118774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03570195 308.56118774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03570196 308.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03570197 308.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03570198 308.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03570199 308.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03570200 308.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03570201 308.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03570202 308.56127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03570203 308.56127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03570204 308.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03570205 308.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03570206 308.56134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03570207 308.56134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03570208 308.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03570209 308.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03570210 308.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03570211 308.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03570212 308.56143188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03570213 308.56143188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03570214 308.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03570215 308.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03570216 308.56149292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03570217 308.56149292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03570218 308.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03570219 308.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03570220 308.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03570221 308.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03570222 308.56155396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03570223 308.56155396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03570224 308.56158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03570225 308.56158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03570226 308.56161499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03570227 308.56161499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03570228 308.56164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03570229 308.56164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03570230 308.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03570231 308.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03570232 308.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03570233 308.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03570234 308.56173706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03570235 308.56173706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03570236 308.56176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03570237 308.56176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03570238 308.56179810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03570239 308.56179810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03570240 308.56182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03570241 308.56182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03570242 308.56182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03570243 308.56182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03570244 308.56185913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03570245 308.56185913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03570246 308.56188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03570247 308.56188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03570248 308.56192017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03570249 308.56192017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03570250 308.56195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03570251 308.56195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03570252 308.56201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03570253 308.56201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03570254 308.56201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03570255 308.56201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03570256 308.56204224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03570257 308.56204224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03570258 308.56207275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03570259 308.56210327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03570260 308.56213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03570261 308.56213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03570262 308.56216431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03570263 308.56216431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03570264 308.56216431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03570265 308.56216431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03570266 308.56219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03570267 308.56219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03570268 308.56222534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03570269 308.56222534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03570270 308.56225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03570271 308.56225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03570272 308.56228638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03570273 308.56228638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03570274 308.56231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03570275 308.56231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03570276 308.56231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03570277 308.56231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03570278 308.56234741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03570279 308.56234741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03570280 308.56237793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03570281 308.56240845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03570282 308.56243896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03570283 308.56243896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03570284 308.56246948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03570285 308.56246948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03570286 308.56246948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03570287 308.56246948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03570288 308.56250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03570289 308.56250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03570290 308.56253052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03570291 308.56253052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03570292 308.56256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03570293 308.56256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03570294 308.56259155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03570295 308.56259155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03570296 308.56262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03570297 308.56262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03570298 308.56262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03570299 308.56262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03570300 308.56265259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03570301 308.56265259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03570302 308.56268311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03570303 308.56271362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03570304 308.56274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03570305 308.56274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03570306 308.56277466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03570307 308.56277466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03570308 308.56280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03570309 308.56280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03570310 308.56280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03570311 308.56280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03570312 308.56283569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03570313 308.56283569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03570314 308.56286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03570315 308.56286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03570316 308.56289673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03570317 308.56289673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03570318 308.56292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03570319 308.56292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03570320 308.56295776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03570321 308.56295776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03570322 308.56295776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03570323 308.56295776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03570324 308.56298828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03570325 308.56301880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03570326 308.56304932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03570327 308.56304932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03570328 308.56307983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03570329 308.56307983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03570330 308.56311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03570331 308.56311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03570332 308.56311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03570333 308.56311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03570334 308.56314087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03570335 308.56314087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03570336 308.56317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03570337 308.56317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03570338 308.56320190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03570339 308.56320190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03570340 308.56323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03570341 308.56323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03570342 308.56326294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03570343 308.56326294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03570344 308.56326294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03570345 308.56329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03570346 308.56329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03570347 308.56332397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03570348 308.56335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03570349 308.56335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03570350 308.56338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03570351 308.56338501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03570352 308.56341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03570353 308.56341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03570354 308.56341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03570355 308.56341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03570356 308.56344604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03570357 308.56344604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03570358 308.56347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03570359 308.56347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03570360 308.56350708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03570361 308.56350708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03570362 308.56353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03570363 308.56353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03570364 308.56356812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03570365 308.56356812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03570366 308.56359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03570367 308.56359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03570368 308.56362915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03570369 308.56362915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03570370 308.56365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03570371 308.56365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03570372 308.56369019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03570373 308.56369019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03570374 308.56372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03570375 308.56372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03570376 308.56375122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03570377 308.56375122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03570378 308.56375122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03570379 308.56375122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03570380 308.56378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03570381 308.56378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03570382 308.56381226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03570383 308.56381226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03570384 308.56384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03570385 308.56384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03570386 308.56387329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03570387 308.56390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03570388 308.56390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03570389 308.56390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03570390 308.56393433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03570391 308.56393433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03570392 308.56396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03570393 308.56396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03570394 308.56399536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03570395 308.56399536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03570396 308.56402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03570397 308.56402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03570398 308.56405640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03570399 308.56405640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03570400 308.56405640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03570401 308.56405640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03570402 308.56408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03570403 308.56408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03570404 308.56411743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03570405 308.56411743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03570406 308.56414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03570407 308.56417847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03570408 308.56420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03570409 308.56420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03570410 308.56420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03570411 308.56420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03570412 308.56423950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03570413 308.56423950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03570414 308.56427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03570415 308.56427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03570416 308.56430054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03570417 308.56430054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03570418 308.56433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03570419 308.56433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03570420 308.56436157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03570421 308.56436157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03570422 308.56439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03570423 308.56439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03570424 308.56439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03570425 308.56439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03570426 308.56442261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03570427 308.56445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03570428 308.56448364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03570429 308.56448364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03570430 308.56451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03570431 308.56451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03570432 308.56454468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03570433 308.56454468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03570434 308.56454468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03570435 308.56454468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03570436 308.56457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03570437 308.56457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03570438 308.56460571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03570439 308.56460571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03570440 308.56463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03570441 308.56463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03570442 308.56466675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03570443 308.56466675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03570444 308.56469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03570445 308.56469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03570446 308.56472778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03570447 308.56472778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03570448 308.56475830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03570449 308.56478882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03570450 308.56481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03570451 308.56481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03570452 308.56484985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03570453 308.56484985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03570454 308.56484985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03570455 308.56484985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03570456 308.56488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03570457 308.56488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03570458 308.56491089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03570459 308.56491089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03570460 308.56494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03570461 308.56494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03570462 308.56497192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03570463 308.56497192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03570464 308.56500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03570465 308.56500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03570466 308.56500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03570467 308.56500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03570468 308.56506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03570469 308.56506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03570470 308.56509399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03570471 308.56509399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03570472 308.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03570473 308.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03570474 308.56515503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03570475 308.56515503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03570476 308.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03570477 308.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03570478 308.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03570479 308.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03570480 308.56521606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03570481 308.56521606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03570482 308.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03570483 308.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03570484 308.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03570485 308.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03570486 308.56530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03570487 308.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03570488 308.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03570489 308.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03570490 308.56536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03570491 308.56536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03570492 308.56539917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03570493 308.56539917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03570494 308.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03570495 308.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03570496 308.56546021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03570497 308.56546021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03570498 308.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03570499 308.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03570500 308.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03570501 308.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03570502 308.56552124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03570503 308.56552124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03570504 308.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03570505 308.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03570506 308.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03570507 308.56561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03570508 308.56564331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03570509 308.56564331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03570510 308.56564331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03570511 308.56564331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03570512 308.56567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03570513 308.56567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03570514 308.56570435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03570515 308.56570435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03570516 308.56573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03570517 308.56573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03570518 308.56576538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03570519 308.56576538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03570520 308.56579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03570521 308.56579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03570522 308.56582642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03570523 308.56582642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03570524 308.56582642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03570525 308.56582642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03570526 308.56585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03570527 308.56588745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03570528 308.56591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03570529 308.56591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03570530 308.56594849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03570531 308.56594849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03570532 308.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03570533 308.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03570534 308.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03570535 308.56597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03570536 308.56600952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03570537 308.56600952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03570538 308.56604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03570539 308.56604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03570540 308.56607056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03570541 308.56607056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03570542 308.56610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03570543 308.56610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03570544 308.56613159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03570545 308.56613159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03570546 308.56613159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03570547 308.56616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03570548 308.56619263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03570549 308.56619263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03570550 308.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03570551 308.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03570552 308.56625366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03570553 308.56625366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03570554 308.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03570555 308.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03570556 308.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03570557 308.56631470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03570558 308.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03570559 308.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03570560 308.56637573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03570561 308.56637573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03570562 308.56640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03570563 308.56640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03570564 308.56643677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03570565 308.56643677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03570566 308.56643677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03570567 308.56643677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03570568 308.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03570569 308.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03570570 308.56649780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03570571 308.56649780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03570572 308.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03570573 308.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03570574 308.56655884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03570575 308.56655884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03570576 308.56658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03570577 308.56661987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03570578 308.56661987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03570579 308.56661987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03570580 308.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03570581 308.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03570582 308.56668091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03570583 308.56668091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03570584 308.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03570585 308.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03570586 308.56674194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03570587 308.56674194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03570588 308.56677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03570589 308.56677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03570590 308.56677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03570591 308.56677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03570592 308.56680298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03570593 308.56683350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03570594 308.56686401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03570595 308.56686401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03570596 308.56689453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03570597 308.56689453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03570598 308.56692505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03570599 308.56692505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03570600 308.56692505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03570601 308.56692505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03570602 308.56695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03570603 308.56695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03570604 308.56698608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03570605 308.56698608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03570606 308.56701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03570607 308.56701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03570608 308.56704712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03570609 308.56704712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03570610 308.56707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03570611 308.56707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03570612 308.56710815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03570613 308.56710815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03570614 308.56713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03570615 308.56713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03570616 308.56716919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03570617 308.56716919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03570618 308.56719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03570619 308.56719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03570620 308.56723022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03570621 308.56723022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03570622 308.56723022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03570623 308.56723022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03570624 308.56726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03570625 308.56729126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03570626 308.56732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03570627 308.56732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03570628 308.56735229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03570629 308.56735229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03570630 308.56738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03570631 308.56738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03570632 308.56741333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03570633 308.56741333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03570634 308.56741333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03570635 308.56741333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03570636 308.56744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03570637 308.56744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03570638 308.56747437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03570639 308.56750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03570640 308.56753540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03570641 308.56753540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03570642 308.56756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03570643 308.56756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03570644 308.56756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03570645 308.56756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03570646 308.56759644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03570647 308.56759644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03570648 308.56762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03570649 308.56762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03570650 308.56765747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03570651 308.56765747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03570652 308.56768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03570653 308.56768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03570654 308.56771851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03570655 308.56771851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03570656 308.56774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03570657 308.56774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03570658 308.56777954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03570659 308.56777954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03570660 308.56781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03570661 308.56781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03570662 308.56784058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03570663 308.56784058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03570664 308.56787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03570665 308.56787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03570666 308.56787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03570667 308.56787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03570668 308.56790161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03570669 308.56790161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03570670 308.56793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03570671 308.56793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03570672 308.56796265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03570673 308.56799316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03570674 308.56802368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03570675 308.56802368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03570676 308.56802368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03570677 308.56802368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03570678 308.56805420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03570679 308.56805420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03570680 308.56808472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03570681 308.56808472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03570682 308.56811523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03570683 308.56811523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03570684 308.56814575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03570685 308.56814575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03570686 308.56817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03570687 308.56817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03570688 308.56820679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03570689 308.56820679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03570690 308.56820679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03570691 308.56820679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03570692 308.56823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03570693 308.56826782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03570694 308.56829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03570695 308.56829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03570696 308.56832886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03570697 308.56832886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03570698 308.56835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03570699 308.56835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03570700 308.56835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03570701 308.56835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03570702 308.56838989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03570703 308.56838989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03570704 308.56842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03570705 308.56842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03570706 308.56845093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03570707 308.56845093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03570708 308.56848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03570709 308.56848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03570710 308.56851196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03570711 308.56851196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03570712 308.56851196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03570713 308.56854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03570714 308.56857300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03570715 308.56857300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03570716 308.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03570717 308.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03570718 308.56863403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03570719 308.56863403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03570720 308.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03570721 308.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03570722 308.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03570723 308.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03570724 308.56869507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03570725 308.56869507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03570726 308.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03570727 308.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03570728 308.56875610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03570729 308.56875610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03570730 308.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03570731 308.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03570732 308.56881714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03570733 308.56881714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03570734 308.56881714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03570735 308.56884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03570736 308.56887817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03570737 308.56887817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03570738 308.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03570739 308.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03570740 308.56893921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03570741 308.56893921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03570742 308.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03570743 308.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03570744 308.56900024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03570745 308.56900024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03570746 308.56900024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03570747 308.56900024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03570748 308.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03570749 308.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03570750 308.56906128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03570751 308.56906128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03570752 308.56909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03570753 308.56912231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03570754 308.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03570755 308.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03570756 308.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03570757 308.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03570758 308.56918335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03570759 308.56918335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03570760 308.56921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03570761 308.56921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03570762 308.56924438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03570763 308.56924438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03570764 308.56927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03570765 308.56927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03570766 308.56930542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03570767 308.56930542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03570768 308.56930542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03570769 308.56930542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03570770 308.56933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03570771 308.56936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03570772 308.56939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03570773 308.56939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03570774 308.56942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03570775 308.56942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03570776 308.56945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03570777 308.56945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03570778 308.56945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03570779 308.56945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03570780 308.56948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03570781 308.56948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03570782 308.56951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03570783 308.56951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03570784 308.56954956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03570785 308.56954956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03570786 308.56958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03570787 308.56958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03570788 308.56961060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03570789 308.56961060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03570790 308.56961060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03570791 308.56964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03570792 308.56967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03570793 308.56967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03570794 308.56970215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03570795 308.56970215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03570796 308.56973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03570797 308.56973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03570798 308.56976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03570799 308.56976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03570800 308.56979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03570801 308.56979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03570802 308.56979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03570803 308.56979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03570804 308.56982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03570805 308.56982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03570806 308.56985474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03570807 308.56985474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03570808 308.56988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03570809 308.56988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03570810 308.56991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03570811 308.56991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03570812 308.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03570813 308.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03570814 308.56997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03570815 308.56997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03570816 308.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03570817 308.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03570818 308.57003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03570819 308.57003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03570820 308.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03570821 308.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03570822 308.57009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03570823 308.57009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03570824 308.57009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03570825 308.57009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03570826 308.57012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03570827 308.57012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03570828 308.57015991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03570829 308.57015991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03570830 308.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03570831 308.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03570832 308.57022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03570833 308.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03570834 308.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03570835 308.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03570836 308.57028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03570837 308.57028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03570838 308.57031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03570839 308.57031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03570840 308.57034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03570841 308.57034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03570842 308.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03570843 308.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03570844 308.57040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03570845 308.57040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03570846 308.57040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03570847 308.57040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03570848 308.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03570849 308.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03570850 308.57046509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03570851 308.57049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03570852 308.57052612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03570853 308.57052612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03570854 308.57055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03570855 308.57055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03570856 308.57058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03570857 308.57058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03570858 308.57058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03570859 308.57058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03570860 308.57061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03570861 308.57061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03570862 308.57064819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03570863 308.57064819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03570864 308.57067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03570865 308.57067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03570866 308.57070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03570867 308.57070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03570868 308.57073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03570869 308.57073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03570870 308.57073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03570871 308.57077026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03570872 308.57080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03570873 308.57080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03570874 308.57083130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03570875 308.57083130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03570876 308.57086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03570877 308.57086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03570878 308.57089233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03570879 308.57089233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03570880 308.57089233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03570881 308.57089233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03570882 308.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03570883 308.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03570884 308.57095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03570885 308.57095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03570886 308.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03570887 308.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03570888 308.57101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03570889 308.57101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03570890 308.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03570891 308.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03570892 308.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03570893 308.57107544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03570894 308.57110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03570895 308.57110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03570896 308.57113647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03570897 308.57113647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03570898 308.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03570899 308.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03570900 308.57119751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03570901 308.57119751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03570902 308.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03570903 308.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03570904 308.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03570905 308.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03570906 308.57125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03570907 308.57125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03570908 308.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03570909 308.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03570910 308.57131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03570911 308.57131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03570912 308.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03570913 308.57138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03570914 308.57138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03570915 308.57138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03570916 308.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03570917 308.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03570918 308.57144165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03570919 308.57144165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03570920 308.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03570921 308.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03570922 308.57150269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03570923 308.57150269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03570924 308.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03570925 308.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03570926 308.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03570927 308.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03570928 308.57156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03570929 308.57156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03570930 308.57159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03570931 308.57162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03570932 308.57165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03570933 308.57165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03570934 308.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03570935 308.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03570936 308.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03570937 308.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03570938 308.57171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03570939 308.57171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03570940 308.57177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03570941 308.57177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03570942 308.57180786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03570943 308.57180786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03570944 308.57183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03570945 308.57183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03570946 308.57186890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03570947 308.57186890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03570948 308.57192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03570949 308.57192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03570950 308.57196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03570951 308.57196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03570952 308.57199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03570953 308.57199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03570954 308.57202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03570955 308.57202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03570956 308.57202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03570957 308.57202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03570958 308.57205200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03570959 308.57205200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03570960 308.57208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03570961 308.57211304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03570962 308.57214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03570963 308.57214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03570964 308.57217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03570965 308.57217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03570966 308.57217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03570967 308.57217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03570968 308.57220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03570969 308.57220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03570970 308.57223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03570971 308.57223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03570972 308.57226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03570973 308.57226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03570974 308.57229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03570975 308.57229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03570976 308.57232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03570977 308.57232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03570978 308.57232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03570979 308.57232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03570980 308.57235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03570981 308.57238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03570982 308.57241821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03570983 308.57241821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03570984 308.57244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03570985 308.57244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03570986 308.57247925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03570987 308.57247925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03570988 308.57247925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03570989 308.57247925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03570990 308.57250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03570991 308.57250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03570992 308.57254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03570993 308.57254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03570994 308.57257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03570995 308.57257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03570996 308.57260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03570997 308.57260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03570998 308.57263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03570999 308.57263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03571000 308.57263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03571001 308.57263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03571002 308.57266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03571003 308.57269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03571004 308.57272339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03571005 308.57272339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03571006 308.57275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03571007 308.57275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03571008 308.57278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03571009 308.57278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03571010 308.57281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03571011 308.57281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03571012 308.57281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03571013 308.57281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03571014 308.57284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03571015 308.57284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03571016 308.57287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03571017 308.57287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03571018 308.57290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03571019 308.57290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03571020 308.57293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03571021 308.57293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03571022 308.57296753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03571023 308.57296753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03571024 308.57299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03571025 308.57299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03571026 308.57302856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03571027 308.57302856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03571028 308.57305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03571029 308.57305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03571030 308.57308960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03571031 308.57308960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03571032 308.57312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03571033 308.57312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03571034 308.57312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03571035 308.57312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03571036 308.57315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03571037 308.57315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03571038 308.57318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03571039 308.57318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03571040 308.57321167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03571041 308.57321167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03571042 308.57324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03571043 308.57327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03571044 308.57327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03571045 308.57327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03571046 308.57330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03571047 308.57330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03571048 308.57333374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03571049 308.57333374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03571050 308.57336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03571051 308.57336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03571052 308.57339478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03571053 308.57339478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03571054 308.57342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03571055 308.57342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03571056 308.57342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03571057 308.57342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03571058 308.57345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03571059 308.57345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03571060 308.57348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03571061 308.57348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03571062 308.57351685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03571063 308.57351685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03571064 308.57354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03571065 308.57357788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03571066 308.57360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03571067 308.57360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03571068 308.57360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03571069 308.57360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03571070 308.57363892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03571071 308.57363892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03571072 308.57366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03571073 308.57366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03571074 308.57369995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03571075 308.57369995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03571076 308.57373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03571077 308.57373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03571078 308.57376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03571079 308.57376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03571080 308.57376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03571081 308.57376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03571082 308.57379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03571083 308.57382202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03571084 308.57385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03571085 308.57385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03571086 308.57388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03571087 308.57388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03571088 308.57391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03571089 308.57391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03571090 308.57391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03571091 308.57391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03571092 308.57394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03571093 308.57394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03571094 308.57397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03571095 308.57397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03571096 308.57400513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03571097 308.57400513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03571098 308.57403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03571099 308.57403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03571100 308.57406616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03571101 308.57406616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03571102 308.57409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03571103 308.57409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03571104 308.57412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03571105 308.57412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03571106 308.57415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03571107 308.57415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03571108 308.57418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03571109 308.57418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03571110 308.57421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03571111 308.57421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03571112 308.57421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03571113 308.57421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03571114 308.57424927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03571115 308.57427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03571116 308.57431030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03571117 308.57431030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03571118 308.57434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03571119 308.57434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03571120 308.57437134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03571121 308.57437134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03571122 308.57440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03571123 308.57440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03571124 308.57440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03571125 308.57440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03571126 308.57443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03571127 308.57443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03571128 308.57446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03571129 308.57446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03571130 308.57449341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03571131 308.57452393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03571132 308.57455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03571133 308.57455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03571134 308.57455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03571135 308.57455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03571136 308.57458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03571137 308.57458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03571138 308.57461548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03571139 308.57461548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03571140 308.57464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03571141 308.57464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03571142 308.57467651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03571143 308.57467651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03571144 308.57470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03571145 308.57470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03571146 308.57470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03571147 308.57473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03571148 308.57476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03571149 308.57476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03571150 308.57479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03571151 308.57479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03571152 308.57482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03571153 308.57482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03571154 308.57485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03571155 308.57485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03571156 308.57485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03571157 308.57485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03571158 308.57489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03571159 308.57489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03571160 308.57492065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03571161 308.57492065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03571162 308.57495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03571163 308.57495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03571164 308.57498169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03571165 308.57501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03571166 308.57501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03571167 308.57501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03571168 308.57504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03571169 308.57504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03571170 308.57507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03571171 308.57507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03571172 308.57510376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03571173 308.57510376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03571174 308.57513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03571175 308.57513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03571176 308.57516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03571177 308.57516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03571178 308.57519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03571179 308.57519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03571180 308.57519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03571181 308.57522583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03571182 308.57525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03571183 308.57525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03571184 308.57528687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03571185 308.57528687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03571186 308.57531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03571187 308.57531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03571188 308.57534790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03571189 308.57534790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03571190 308.57534790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03571191 308.57534790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03571192 308.57537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03571193 308.57537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03571194 308.57540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03571195 308.57540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03571196 308.57543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03571197 308.57543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03571198 308.57546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03571199 308.57546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03571200 308.57550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03571201 308.57550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03571202 308.57553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03571203 308.57553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03571204 308.57556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03571205 308.57556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03571206 308.57559204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03571207 308.57559204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03571208 308.57562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03571209 308.57562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03571210 308.57565308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03571211 308.57565308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03571212 308.57565308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03571213 308.57565308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03571214 308.57568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03571215 308.57568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03571216 308.57571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03571217 308.57571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03571218 308.57574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03571219 308.57574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03571220 308.57577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03571221 308.57577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03571222 308.57580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03571223 308.57580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03571224 308.57583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03571225 308.57583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03571226 308.57586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03571227 308.57586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03571228 308.57589722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03571229 308.57589722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03571230 308.57592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03571231 308.57592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03571232 308.57595825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03571233 308.57595825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03571234 308.57598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03571235 308.57598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03571236 308.57598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03571237 308.57598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03571238 308.57601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03571239 308.57601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03571240 308.57604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03571241 308.57608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03571242 308.57611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03571243 308.57611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03571244 308.57614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03571245 308.57614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03571246 308.57614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03571247 308.57614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03571248 308.57617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03571249 308.57617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03571250 308.57620239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03571251 308.57620239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03571252 308.57623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03571253 308.57623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03571254 308.57626343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03571255 308.57626343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03571256 308.57629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03571257 308.57629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03571258 308.57629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03571259 308.57629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03571260 308.57632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03571261 308.57635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03571262 308.57638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03571263 308.57638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03571264 308.57641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03571265 308.57641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03571266 308.57644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03571267 308.57644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03571268 308.57644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03571269 308.57644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03571270 308.57647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03571271 308.57647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03571272 308.57650757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03571273 308.57650757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03571274 308.57653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03571275 308.57653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03571276 308.57656860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03571277 308.57656860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03571278 308.57659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03571279 308.57659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03571280 308.57662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03571281 308.57662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03571282 308.57666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03571283 308.57666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03571284 308.57669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03571285 308.57669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03571286 308.57672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03571287 308.57672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03571288 308.57675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03571289 308.57675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03571290 308.57678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03571291 308.57678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03571292 308.57678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03571293 308.57678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03571294 308.57681274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03571295 308.57681274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03571296 308.57684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03571297 308.57684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03571298 308.57687378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03571299 308.57690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03571300 308.57693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03571301 308.57693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03571302 308.57693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03571303 308.57693481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03571304 308.57696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03571305 308.57696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03571306 308.57699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03571307 308.57699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03571308 308.57702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03571309 308.57702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03571310 308.57705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03571311 308.57705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03571312 308.57708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03571313 308.57708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03571314 308.57708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03571315 308.57708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03571316 308.57711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03571317 308.57711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03571318 308.57714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03571319 308.57717896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03571320 308.57720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03571321 308.57720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03571322 308.57723999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03571323 308.57723999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03571324 308.57723999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03571325 308.57723999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03571326 308.57727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03571327 308.57727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03571328 308.57730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03571329 308.57730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03571330 308.57733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03571331 308.57733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03571332 308.57736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03571333 308.57736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03571334 308.57739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03571335 308.57739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03571336 308.57742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03571337 308.57742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03571338 308.57742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03571339 308.57742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03571340 308.57745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03571341 308.57748413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03571342 308.57751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03571343 308.57751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03571344 308.57754517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03571345 308.57754517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03571346 308.57757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03571347 308.57757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03571348 308.57757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03571349 308.57757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03571350 308.57760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03571351 308.57760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03571352 308.57763672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03571353 308.57763672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03571354 308.57766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03571355 308.57766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03571356 308.57769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03571357 308.57769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03571358 308.57772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03571359 308.57772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03571360 308.57772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03571361 308.57772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03571362 308.57775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03571363 308.57778931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03571364 308.57781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03571365 308.57781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03571366 308.57785034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03571367 308.57785034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03571368 308.57788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03571369 308.57788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03571370 308.57788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03571371 308.57788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03571372 308.57791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03571373 308.57791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03571374 308.57794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03571375 308.57794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03571376 308.57797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03571377 308.57797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03571378 308.57800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03571379 308.57800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03571380 308.57803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03571381 308.57803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03571382 308.57803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03571383 308.57806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03571384 308.57809448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03571385 308.57809448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03571386 308.57812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03571387 308.57812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03571388 308.57815552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03571389 308.57815552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03571390 308.57818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03571391 308.57818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03571392 308.57821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03571393 308.57821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03571394 308.57821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03571395 308.57821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03571396 308.57824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03571397 308.57824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03571398 308.57827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03571399 308.57827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03571400 308.57830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03571401 308.57830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03571402 308.57833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03571403 308.57833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03571404 308.57836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03571405 308.57836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03571406 308.57839966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03571407 308.57839966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03571408 308.57843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03571409 308.57843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03571410 308.57846069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03571411 308.57846069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03571412 308.57849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03571413 308.57849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03571414 308.57852173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03571415 308.57852173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03571416 308.57852173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03571417 308.57852173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03571418 308.57855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03571419 308.57855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03571420 308.57858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03571421 308.57858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03571422 308.57861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03571423 308.57861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03571424 308.57864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03571425 308.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03571426 308.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03571427 308.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03571428 308.57870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03571429 308.57870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03571430 308.57873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03571431 308.57873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03571432 308.57876587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03571433 308.57876587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03571434 308.57879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03571435 308.57879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03571436 308.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03571437 308.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03571438 308.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03571439 308.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03571440 308.57885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03571441 308.57885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03571442 308.57888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03571443 308.57891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03571444 308.57894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03571445 308.57894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03571446 308.57897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03571447 308.57897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03571448 308.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03571449 308.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03571450 308.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03571451 308.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03571452 308.57904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03571453 308.57904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03571454 308.57907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03571455 308.57907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03571456 308.57910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03571457 308.57910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03571458 308.57913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03571459 308.57913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03571460 308.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03571461 308.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03571462 308.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03571463 308.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03571464 308.57919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03571465 308.57922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03571466 308.57925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03571467 308.57925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03571468 308.57928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03571469 308.57928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03571470 308.57931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03571471 308.57931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03571472 308.57931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03571473 308.57931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03571474 308.57934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03571475 308.57934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03571476 308.57937622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03571477 308.57937622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03571478 308.57940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03571479 308.57940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03571480 308.57943726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03571481 308.57943726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03571482 308.57946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03571483 308.57946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03571484 308.57946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03571485 308.57949829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03571486 308.57952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03571487 308.57952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03571488 308.57955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03571489 308.57955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03571490 308.57958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03571491 308.57958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03571492 308.57962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03571493 308.57962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03571494 308.57962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03571495 308.57962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03571496 308.57965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03571497 308.57965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03571498 308.57968140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03571499 308.57968140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03571500 308.57971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03571501 308.57971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03571502 308.57974243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03571503 308.57974243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03571504 308.57977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03571505 308.57977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03571506 308.57980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03571507 308.57980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03571508 308.57983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03571509 308.57983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03571510 308.57986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03571511 308.57986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03571512 308.57989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03571513 308.57989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03571514 308.57992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03571515 308.57992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03571516 308.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03571517 308.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03571518 308.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03571519 308.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03571520 308.57998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03571521 308.57998657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03571522 308.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03571523 308.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03571524 308.58004761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03571525 308.58004761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03571526 308.58007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03571527 308.58007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03571528 308.58010864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03571529 308.58010864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03571530 308.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03571531 308.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03571532 308.58016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03571533 308.58016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03571534 308.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03571535 308.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03571536 308.58023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03571537 308.58023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03571538 308.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03571539 308.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03571540 308.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03571541 308.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03571542 308.58029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03571543 308.58029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03571544 308.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03571545 308.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03571546 308.58035278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03571547 308.58035278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03571548 308.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03571549 308.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03571550 308.58041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03571551 308.58041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03571552 308.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03571553 308.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03571554 308.58047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03571555 308.58047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03571556 308.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03571557 308.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03571558 308.58053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03571559 308.58053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03571560 308.58056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03571561 308.58056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03571562 308.58059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03571563 308.58059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03571564 308.58059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03571565 308.58059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03571566 308.58062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03571567 308.58062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03571568 308.58065796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03571569 308.58068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03571570 308.58071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03571571 308.58071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03571572 308.58074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03571573 308.58074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03571574 308.58074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03571575 308.58074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03571576 308.58078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03571577 308.58078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03571578 308.58081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03571579 308.58081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03571580 308.58084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03571581 308.58084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03571582 308.58087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03571583 308.58087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03571584 308.58090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03571585 308.58090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03571586 308.58093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03571587 308.58093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03571588 308.58096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03571589 308.58096313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03571590 308.58099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03571591 308.58099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03571592 308.58102417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03571593 308.58102417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03571594 308.58105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03571595 308.58105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03571596 308.58105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03571597 308.58108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03571598 308.58111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03571599 308.58111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03571600 308.58114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03571601 308.58114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03571602 308.58117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03571603 308.58117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03571604 308.58120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03571605 308.58120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03571606 308.58120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03571607 308.58120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03571608 308.58123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03571609 308.58123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03571610 308.58126831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03571611 308.58126831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03571612 308.58132935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03571613 308.58132935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03571614 308.58135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03571615 308.58135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03571616 308.58139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03571617 308.58139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03571618 308.58139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03571619 308.58139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03571620 308.58142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03571621 308.58142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03571622 308.58145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03571623 308.58145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03571624 308.58148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03571625 308.58148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03571626 308.58151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03571627 308.58151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03571628 308.58154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03571629 308.58154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03571630 308.58154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03571631 308.58157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03571632 308.58160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03571633 308.58160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03571634 308.58163452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03571635 308.58163452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03571636 308.58166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03571637 308.58166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03571638 308.58169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03571639 308.58169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03571640 308.58169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03571641 308.58169556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03571642 308.58172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03571643 308.58172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03571644 308.58175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03571645 308.58175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03571646 308.58178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03571647 308.58178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03571648 308.58181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03571649 308.58181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03571650 308.58184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03571651 308.58184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03571652 308.58187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03571653 308.58187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03571654 308.58190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03571655 308.58190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03571656 308.58193970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03571657 308.58193970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03571658 308.58197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03571659 308.58197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03571660 308.58200073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03571661 308.58200073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03571662 308.58203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03571663 308.58203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03571664 308.58203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03571665 308.58203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03571666 308.58206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03571667 308.58206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03571668 308.58209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03571669 308.58209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03571670 308.58212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03571671 308.58215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03571672 308.58218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03571673 308.58218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03571674 308.58218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03571675 308.58218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03571676 308.58221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03571677 308.58221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03571678 308.58224487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03571679 308.58224487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03571680 308.58227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03571681 308.58227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03571682 308.58230591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03571683 308.58230591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03571684 308.58233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03571685 308.58233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03571686 308.58233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03571687 308.58233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03571688 308.58236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03571689 308.58239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03571690 308.58239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03571691 308.58242798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03571692 308.58245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03571693 308.58245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03571694 308.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03571695 308.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03571696 308.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03571697 308.58248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03571698 308.58251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03571699 308.58251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03571700 308.58255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03571701 308.58255005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03571702 308.58258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03571703 308.58258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03571704 308.58261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03571705 308.58261108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03571706 308.58264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03571707 308.58264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03571708 308.58264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03571709 308.58264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03571710 308.58267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03571711 308.58270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03571712 308.58273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03571713 308.58273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03571714 308.58276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03571715 308.58276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03571716 308.58279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03571717 308.58279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03571718 308.58282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03571719 308.58282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03571720 308.58282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03571721 308.58282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03571722 308.58285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03571723 308.58285522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03571724 308.58288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03571725 308.58288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03571726 308.58291626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03571727 308.58291626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03571728 308.58294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03571729 308.58294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03571730 308.58297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03571731 308.58297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03571732 308.58300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03571733 308.58300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03571734 308.58303833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03571735 308.58303833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03571736 308.58306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03571737 308.58306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03571738 308.58309937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03571739 308.58309937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03571740 308.58312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03571741 308.58312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03571742 308.58312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03571743 308.58312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03571744 308.58316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03571745 308.58316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03571746 308.58319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03571747 308.58319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03571748 308.58322144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03571749 308.58322144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03571750 308.58325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03571751 308.58328247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03571752 308.58328247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03571753 308.58328247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03571754 308.58331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03571755 308.58331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03571756 308.58334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03571757 308.58334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03571758 308.58337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03571759 308.58337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03571760 308.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03571761 308.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03571762 308.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03571763 308.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03571764 308.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03571765 308.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03571766 308.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03571767 308.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03571768 308.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03571769 308.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03571770 308.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03571771 308.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03571772 308.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03571773 308.58358765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03571774 308.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03571775 308.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03571776 308.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03571777 308.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03571778 308.58364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03571779 308.58364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03571780 308.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03571781 308.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03571782 308.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03571783 308.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03571784 308.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03571785 308.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03571786 308.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03571787 308.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03571788 308.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03571789 308.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03571790 308.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03571791 308.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03571792 308.58383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03571793 308.58386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03571794 308.58389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03571795 308.58389282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03571796 308.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03571797 308.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03571798 308.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03571799 308.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03574355 308.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -03574356 308.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -03574357 308.61950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -03574358 308.61953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -03574359 308.61953735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -03574360 308.61956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -03574361 308.61956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -03574362 308.61959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -03574363 308.61959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -03574364 308.61962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -03574365 308.61962891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -03574366 308.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -03574367 308.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -03574368 308.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -03574369 308.61965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -03574370 308.61968994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -03574371 308.61972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -03574372 308.61972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -03574373 308.61975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -03574374 308.61978149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -03574375 308.61978149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -03574376 308.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -03574377 308.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -03574378 308.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -03574379 308.61981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -03574380 308.61984253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -03574381 308.61984253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -03574382 308.61987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -03574383 308.61987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -03574384 308.61990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -03574385 308.61990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -03574386 308.61993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -03574387 308.61993408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -03574388 308.61996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -03574389 308.61996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -03574390 308.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03574391 308.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -03574392 308.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03574393 308.61999512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -03574394 308.62002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03574395 308.62002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -03574396 308.62005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03574397 308.62005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -03574398 308.62008667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -03579758 308.69424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -03579759 308.69424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -03579760 308.69427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -03579761 308.69427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -03579762 308.69430542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -03579763 308.69430542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -03579764 308.69433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -03579765 308.69433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -03579766 308.69433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d78 -03579767 308.69433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d78 -03579768 308.69436646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d88 -03579769 308.69436646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d88 -03579770 308.69442749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d98 -03579771 308.69442749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d98 -03579772 308.69445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da8 -03579773 308.69445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da8 -03579774 308.69448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db8 -03579775 308.69448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db8 -03579776 308.69448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc8 -03579777 308.69448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc8 -03579778 308.69451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd8 -03579779 308.69451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd8 -03579780 308.69454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de8 -03579781 308.69454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de8 -03579782 308.69458008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df8 -03579783 308.69458008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df8 -03579784 308.69461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e08 -03579785 308.69461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e08 -03579786 308.69464111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e18 -03579787 308.69464111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e18 -03579788 308.69464111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e28 -03579789 308.69467163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e28 -03579790 308.69470215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e38 -03579791 308.69470215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e38 -03579792 308.69473267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e48 -03579793 308.69473267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e48 -03579794 308.69476318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e58 -03579795 308.69476318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e58 -03579796 308.69479370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e68 -03579797 308.69479370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e68 -03579798 308.69482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e78 -03579799 308.69482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e78 -03579800 308.69482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e88 -03579801 308.69482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13e88 -03597039 308.93963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35938 -03597040 308.93966675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35948 -03597041 308.93966675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35948 -03597042 308.93969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35958 -03597043 308.93969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35958 -03597044 308.93972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35968 -03597045 308.93972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35968 -03597046 308.93975830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35978 -03597047 308.93975830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35978 -03597048 308.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35988 -03597049 308.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35988 -03597050 308.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35998 -03597051 308.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35998 -03597052 308.93981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a8 -03597053 308.93981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359a8 -03597054 308.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b8 -03597055 308.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359b8 -03597056 308.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c8 -03597057 308.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359c8 -03597058 308.93991089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d8 -03597059 308.93991089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d8 -03597060 308.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e8 -03597061 308.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e8 -03597062 308.93997192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f8 -03597063 308.93997192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f8 -03597064 308.94000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a08 -03597065 308.94000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a08 -03597066 308.94003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a18 -03597067 308.94003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a18 -03597068 308.94006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a28 -03597069 308.94006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a28 -03597070 308.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a38 -03597071 308.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a38 -03597072 308.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a48 -03597073 308.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a48 -03597074 308.94012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a58 -03597075 308.94012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a58 -03597076 308.94015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a68 -03597077 308.94015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a68 -03597078 308.94018555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a78 -03597079 308.94018555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a78 -03597080 308.94021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a88 -03597081 308.94021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a88 -03597082 308.94024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a98 -03601309 308.99884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dea8 -03601310 308.99887085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -03601311 308.99887085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -03601312 308.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -03601313 308.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -03601314 308.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -03601315 308.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -03601316 308.99893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -03601317 308.99893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -03601318 308.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -03601319 308.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -03601320 308.99899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -03601321 308.99899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -03601322 308.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -03601323 308.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -03601324 308.99905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -03601325 308.99905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -03601326 308.99905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03601327 308.99905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -03601328 308.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03601329 308.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -03601330 308.99911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03601331 308.99911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -03601332 308.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03601333 308.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -03601334 308.99917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03601335 308.99917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -03601336 308.99920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03601337 308.99920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -03601338 308.99920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03601339 308.99923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -03601340 308.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03601341 308.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -03601342 308.99929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03601343 308.99929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -03601344 308.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03601345 308.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -03601346 308.99935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -03601347 308.99935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -03601348 308.99935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -03601349 308.99935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -03601350 308.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -03601351 308.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -03601352 308.99942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e008 -03606108 309.07806396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -03606109 309.07806396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -03606110 309.07812500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -03606111 309.07812500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -03606112 309.07815552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -03606113 309.07815552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -03606114 309.07818604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -03606115 309.07818604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -03606116 309.07821655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -03606117 309.07824707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -03606118 309.07827759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -03606119 309.07827759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -03606120 309.07830811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -03606121 309.07830811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -03606122 309.07833862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -03606123 309.07833862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -03606124 309.07839966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -03606125 309.07839966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -03606126 309.07843018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -03606127 309.07846069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -03606128 309.07849121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -03606129 309.07849121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -03606130 309.07852173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -03606131 309.07852173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -03606132 309.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -03606133 309.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -03606134 309.07858276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -03606135 309.07861328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -03606136 309.07864380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -03606137 309.07864380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -03606138 309.07867432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -03606139 309.07867432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -03606140 309.07873535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -03606141 309.07873535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -03606142 309.07876587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -03606143 309.07876587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -03606144 309.07879639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -03606145 309.07879639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -03606146 309.07882690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -03606147 309.07885742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -03606148 309.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -03606149 309.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -03606150 309.07894897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -03606151 309.07894897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -03611936 309.17214966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac8 -03611937 309.17214966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac8 -03611938 309.17218018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad8 -03611939 309.17218018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad8 -03611940 309.17221069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -03611941 309.17221069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -03611942 309.17221069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -03611943 309.17221069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -03611944 309.17224121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -03611945 309.17224121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -03611946 309.17227173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -03611947 309.17227173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -03611948 309.17230225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -03611949 309.17233276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -03611950 309.17236328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -03611951 309.17236328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -03611952 309.17236328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -03611953 309.17236328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -03611954 309.17239380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -03611955 309.17239380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -03611956 309.17242432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -03611957 309.17242432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -03611958 309.17245483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -03611959 309.17245483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -03611960 309.17248535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -03611961 309.17248535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -03611962 309.17251587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -03611963 309.17251587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -03611964 309.17254639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -03611965 309.17254639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -03611966 309.17254639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -03611967 309.17254639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -03611968 309.17257690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -03611969 309.17257690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -03611970 309.17260742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -03611971 309.17263794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -03611972 309.17266846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -03611973 309.17266846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -03611974 309.17269897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -03611975 309.17269897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -03611976 309.17269897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -03611977 309.17269897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -03611978 309.17272949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -03611979 309.17272949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -03612022 309.74154663 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03612023 309.76068115 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612024 309.76068115 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612025 311.67465210 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03612026 311.67514038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03612027 311.76205444 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03612028 311.78289795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612029 311.78289795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612030 311.81204224 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03612031 311.81210327 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03612032 311.81210327 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612033 311.81213379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03612034 311.81225586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03612035 311.81225586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03612036 311.81228638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03612037 311.81231689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03612038 313.78463745 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03612039 313.80438232 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612040 313.80438232 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03612041 314.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03612042 314.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03612043 314.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03612044 314.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03612045 314.17343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03612046 314.17343140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03612047 314.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03612048 314.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03612049 314.17349243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03612050 314.17349243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03612051 314.17352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03612052 314.17355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03612053 314.17355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03612054 314.17355347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03612055 314.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03612056 314.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03612057 314.17361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03612058 314.17361450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03612059 314.17364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03612060 314.17364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03612061 314.17367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03612062 314.17367554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03612063 314.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03612064 314.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03612065 314.17373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03612066 314.17373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03612067 314.17373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03612068 314.17373657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03612069 314.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03612070 314.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03612071 314.17379761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03612072 314.17382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03612073 314.17385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03612074 314.17385864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03612075 314.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03612076 314.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03612077 314.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03612078 314.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03612079 314.17391968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03612080 314.17391968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03612081 314.17395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03612082 314.17395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03612083 314.17398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03612084 314.17398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03612085 314.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03612086 314.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03612087 314.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03612088 314.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03612089 314.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03612090 314.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03612091 314.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03612092 314.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03612093 314.17410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03612094 314.17410278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03612095 314.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03612096 314.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03612097 314.17416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03612098 314.17416382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03612099 314.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03612100 314.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03612101 314.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03612102 314.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03612103 314.17422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03612104 314.17422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03612105 314.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03612106 314.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03612107 314.17428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03612108 314.17431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03612109 314.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03612110 314.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03612111 314.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03612112 314.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03612113 314.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03612114 314.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03612115 314.17440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03612116 314.17440796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03612117 314.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03612118 314.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03612119 314.17446899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03612120 314.17446899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03612121 314.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03612122 314.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03612123 314.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03612124 314.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03612125 314.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03612126 314.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03612127 314.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03612128 314.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03612129 314.17459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03612130 314.17459106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03612131 314.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03612132 314.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03612133 314.17465210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03612134 314.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03612135 314.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03612136 314.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03612137 314.17471313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03612138 314.17471313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03612139 314.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03612140 314.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03612141 314.17477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03612142 314.17477417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03612143 314.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03612144 314.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03612145 314.17483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03612146 314.17483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03612147 314.17483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03612148 314.17483521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03612149 314.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03612150 314.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03612151 314.17489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03612152 314.17489624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03612153 314.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03612154 314.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03612155 314.17495728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03612156 314.17495728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03612157 314.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03612158 314.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03612159 314.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03612160 314.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03612161 314.17501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03612162 314.17501831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03612163 314.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03612164 314.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03612165 314.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03612166 314.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03612167 314.17514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03612168 314.17514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03612169 314.17514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03612170 314.17514038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03612171 314.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03612172 314.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03612173 314.17520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03612174 314.17520142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03612175 314.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03612176 314.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03612177 314.17526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03612178 314.17526245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03612179 314.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03612180 314.17532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03612181 314.17532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03612182 314.17532349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03612183 314.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03612184 314.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03612185 314.17538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03612186 314.17538452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03612187 314.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03612188 314.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03612189 314.17544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03612190 314.17544556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03612191 314.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03612192 314.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03612193 314.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03612194 314.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03612195 314.17550659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03612196 314.17550659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03612197 314.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03612198 314.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03612199 314.17556763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03612200 314.17556763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03612201 314.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03612202 314.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03612203 314.17562866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03612204 314.17562866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03612205 314.17562866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03612206 314.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03612207 314.17568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03612208 314.17568970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03612209 314.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03612210 314.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03612211 314.17575073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03612212 314.17575073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03612213 314.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03612214 314.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03612215 314.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03612216 314.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03612217 314.17581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03612218 314.17581177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03612219 314.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03612220 314.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03612221 314.17587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03612222 314.17587280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03612223 314.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03612224 314.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03612225 314.17593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03612226 314.17593384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03612227 314.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03612228 314.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03612229 314.17599487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03612230 314.17602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03612231 314.17605591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03612232 314.17605591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03612233 314.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03612234 314.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03612235 314.17611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03612236 314.17611694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03612237 314.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03612238 314.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03612239 314.17617798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03612240 314.17617798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03612241 314.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03612242 314.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03612243 314.17623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03612244 314.17623901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03612245 314.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03612246 314.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03612247 314.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03612248 314.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03612249 314.17630005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03612250 314.17630005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03612251 314.17633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03612252 314.17636108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03612253 314.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03612254 314.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03612255 314.17642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03612256 314.17642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03612257 314.17642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03612258 314.17642212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03612259 314.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03612260 314.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03612261 314.17648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03612262 314.17648315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03612263 314.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03612264 314.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03612265 314.17654419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03612266 314.17654419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03612267 314.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03612268 314.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03612269 314.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03612270 314.17660522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03612271 314.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03612272 314.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03612273 314.17666626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03612274 314.17666626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03612275 314.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03612276 314.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03612277 314.17672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03612278 314.17672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03612279 314.17672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03612280 314.17672729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03612281 314.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03612282 314.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03612283 314.17678833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03612284 314.17678833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03612285 314.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03612286 314.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03612287 314.17684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03612288 314.17684937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03612289 314.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03612290 314.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03612291 314.17691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03612292 314.17691040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03612293 314.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03612294 314.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03612295 314.17697144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03612296 314.17697144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03612297 314.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03612298 314.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03612299 314.17703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03612300 314.17703247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03612301 314.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03612302 314.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03612303 314.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03612304 314.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03612305 314.17709351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03612306 314.17709351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03612307 314.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03612308 314.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03612309 314.17715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03612310 314.17715454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03612311 314.17718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03612312 314.17721558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03612313 314.17721558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03612314 314.17721558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03612315 314.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03612316 314.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03612317 314.17727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03612318 314.17727661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03612319 314.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03612320 314.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03612321 314.17733765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03612322 314.17733765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03612323 314.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03612324 314.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03612325 314.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03612326 314.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03612327 314.17739868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03612328 314.17739868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03612329 314.17742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03612330 314.17742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03612331 314.17745972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03612332 314.17749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03612333 314.17752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03612334 314.17752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03612335 314.17752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03612336 314.17752075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03612337 314.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03612338 314.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03612339 314.17758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03612340 314.17758179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03612341 314.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03612342 314.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03612343 314.17764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03612344 314.17764282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03612345 314.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03612346 314.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03612347 314.17770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03612348 314.17770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03612349 314.17770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03612350 314.17770386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03612351 314.17773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03612352 314.17776489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03612353 314.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03612354 314.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03612355 314.17782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03612356 314.17782593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03612357 314.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03612358 314.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03612359 314.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03612360 314.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03612361 314.17788696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03612362 314.17788696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03612363 314.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03612364 314.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03612365 314.17794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03612366 314.17794800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03612367 314.17797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03612368 314.17800903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03612369 314.17800903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03612370 314.17800903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03612371 314.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03612372 314.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03612373 314.17807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03612374 314.17807007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03612375 314.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03612376 314.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03612377 314.17813110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03612378 314.17813110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03612379 314.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03612380 314.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03612381 314.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03612382 314.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03612383 314.17819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03612384 314.17819214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03612385 314.17822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03612386 314.17825317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03612387 314.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03612388 314.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03612389 314.17831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03612390 314.17831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03612391 314.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03612392 314.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03612393 314.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03612394 314.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03612395 314.17837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03612396 314.17837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03612397 314.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03612398 314.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03612399 314.17843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03612400 314.17843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03612401 314.17846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03612402 314.17849731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03612403 314.17849731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03612404 314.17849731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03612405 314.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03612406 314.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03612407 314.17855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03612408 314.17855835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03612409 314.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03612410 314.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03612411 314.17861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03612412 314.17861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03612413 314.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03612414 314.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03612415 314.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03612416 314.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03612417 314.17868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03612418 314.17871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03612419 314.17874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03612420 314.17874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03612421 314.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03612422 314.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03612423 314.17880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03612424 314.17880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03612425 314.17880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03612426 314.17880249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03612427 314.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03612428 314.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03612429 314.17886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03612430 314.17886353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03612431 314.17889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03612432 314.17892456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03612433 314.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03612434 314.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03612435 314.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03612436 314.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03612437 314.17898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03612438 314.17898560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03612439 314.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03612440 314.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03612441 314.17904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03612442 314.17904663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03612443 314.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03612444 314.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03612445 314.17910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03612446 314.17910767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03612447 314.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03612448 314.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03612449 314.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03612450 314.17916870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03612451 314.17919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03612452 314.17919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03612453 314.17922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03612454 314.17922974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03612455 314.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03612456 314.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03612457 314.17929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03612458 314.17929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03612459 314.17929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03612460 314.17929077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03612461 314.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03612462 314.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03612463 314.17935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03612464 314.17935181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03612465 314.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03612466 314.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03612467 314.17941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03612468 314.17941284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03612469 314.17944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03612470 314.17944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03612471 314.17947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03612472 314.17947388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03612473 314.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03612474 314.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03612475 314.17953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03612476 314.17953491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03612477 314.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03612478 314.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03612479 314.17959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03612480 314.17959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03612481 314.17959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03612482 314.17959595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03612483 314.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03612484 314.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03612485 314.17965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03612486 314.17965698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03612487 314.17968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03612488 314.17971802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03612489 314.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03612490 314.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03612491 314.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03612492 314.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03612493 314.17977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03612494 314.17977905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03612495 314.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03612496 314.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03612497 314.17984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03612498 314.17984009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03612499 314.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03612500 314.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03612501 314.17990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03612502 314.17990112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03612503 314.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03612504 314.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03612505 314.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03612506 314.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03612507 314.17996216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03612508 314.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03612509 314.18002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03612510 314.18002319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03612511 314.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03612512 314.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03612513 314.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03612514 314.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03612515 314.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03612516 314.18008423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03612517 314.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03612518 314.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03612519 314.18014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03612520 314.18014526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03612521 314.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03612522 314.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03612523 314.18020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03612524 314.18020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03612525 314.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03612526 314.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03612527 314.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03612528 314.18026733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03612529 314.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03612530 314.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03612531 314.18032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03612532 314.18032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03612533 314.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03612534 314.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03612535 314.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03612536 314.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03612537 314.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03612538 314.18038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03612539 314.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03612540 314.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03612541 314.18045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03612542 314.18045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03612543 314.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03612544 314.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03612545 314.18051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03612546 314.18051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03612547 314.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03612548 314.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03612549 314.18057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03612550 314.18057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03612551 314.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03612552 314.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03612553 314.18063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03612554 314.18063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03612555 314.18066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03612556 314.18066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03612557 314.18069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03612558 314.18069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03612559 314.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03612560 314.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03612561 314.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03612562 314.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03612563 314.18075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03612564 314.18075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03612565 314.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03612566 314.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03612567 314.18081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03612568 314.18081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03612569 314.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03612570 314.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03612571 314.18087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03612572 314.18087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03612573 314.18087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03612574 314.18087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03612575 314.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03612576 314.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03612577 314.18093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03612578 314.18096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03612579 314.18096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03612580 314.18099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03612581 314.18099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03612582 314.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03612583 314.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03612584 314.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03612585 314.18106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03612586 314.18106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03612587 314.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03612588 314.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03612589 314.18112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03612590 314.18112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03612591 314.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03612592 314.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03612593 314.18118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03612594 314.18118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03612595 314.18118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03612596 314.18118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03612597 314.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03612598 314.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03612599 314.18124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03612600 314.18124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03612601 314.18127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03612602 314.18127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03612603 314.18130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03612604 314.18130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03612605 314.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03612606 314.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03612607 314.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03612608 314.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03612609 314.18136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03612610 314.18139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03612611 314.18142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03612612 314.18142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03612613 314.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03612614 314.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03612615 314.18148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03612616 314.18148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03612617 314.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03612618 314.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03612619 314.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03612620 314.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03612621 314.18154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03612622 314.18154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03612623 314.18157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03612624 314.18157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03612625 314.18161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03612626 314.18161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03612627 314.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03612628 314.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03612629 314.18167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03612630 314.18167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03612631 314.18167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03612632 314.18167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03612633 314.18170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03612634 314.18173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03612635 314.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03612636 314.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03612637 314.18179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03612638 314.18179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03612639 314.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03612640 314.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03612641 314.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03612642 314.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03612643 314.18185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03612644 314.18185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03612645 314.18188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03612646 314.18188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03612647 314.18191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03612648 314.18191528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03612649 314.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03612650 314.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03612651 314.18197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03612652 314.18197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03612653 314.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03612654 314.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03612655 314.18203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03612656 314.18203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03612657 314.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03612658 314.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03612659 314.18209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03612660 314.18209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03612661 314.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03612662 314.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03612663 314.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03612664 314.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03612665 314.18215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03612666 314.18215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03612667 314.18218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03612668 314.18218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03612669 314.18222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03612670 314.18222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03612671 314.18225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03612672 314.18225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03612673 314.18228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03612674 314.18228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03612675 314.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03612676 314.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03612677 314.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03612678 314.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03612679 314.18234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03612680 314.18237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03612681 314.18240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03612682 314.18240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03612683 314.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03612684 314.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03612685 314.18246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03612686 314.18246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03612687 314.18246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03612688 314.18246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03612689 314.18249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03612690 314.18249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03612691 314.18252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03612692 314.18252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03612693 314.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03612694 314.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03612695 314.18258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03612696 314.18258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03612697 314.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03612698 314.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03612699 314.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03612700 314.18264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03612701 314.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03612702 314.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03612703 314.18270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03612704 314.18270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03612705 314.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03612706 314.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03612707 314.18276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03612708 314.18276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03612709 314.18276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03612710 314.18276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03612711 314.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03612712 314.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03612713 314.18283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03612714 314.18283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03612715 314.18286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03612716 314.18286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03612717 314.18289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03612718 314.18289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03612719 314.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03612720 314.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03612721 314.18295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03612722 314.18295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03612723 314.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03612724 314.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03612725 314.18301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03612726 314.18301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03612727 314.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03612728 314.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03612729 314.18307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03612730 314.18307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03612731 314.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03612732 314.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03612733 314.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03612734 314.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03612735 314.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03612736 314.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03612737 314.18319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03612738 314.18319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03612739 314.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03612740 314.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03612741 314.18325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03612742 314.18325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03612743 314.18325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03612744 314.18325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03612745 314.18328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03612746 314.18331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03612747 314.18334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03612748 314.18334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03612749 314.18338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03612750 314.18338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03612751 314.18341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03612752 314.18341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03612753 314.18341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03612754 314.18341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03612755 314.18344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03612756 314.18344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03612757 314.18347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03612758 314.18347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03612759 314.18350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03612760 314.18350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03612761 314.18353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03612762 314.18353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03612763 314.18356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03612764 314.18356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03612765 314.18356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03612766 314.18359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03612767 314.18362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03612768 314.18362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03612769 314.18365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03612770 314.18365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03612771 314.18368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03612772 314.18368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03612773 314.18371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03612774 314.18371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03612775 314.18374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03612776 314.18374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03612777 314.18374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03612778 314.18374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03612779 314.18377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03612780 314.18377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03612781 314.18380737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03612782 314.18380737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03612783 314.18383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03612784 314.18383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03612785 314.18386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03612786 314.18386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03612787 314.18389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03612788 314.18389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03612789 314.18392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03612790 314.18392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03612791 314.18395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03612792 314.18395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03612793 314.18399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03612794 314.18399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03612795 314.18402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03612796 314.18402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03612797 314.18405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03612798 314.18405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03612799 314.18405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03612800 314.18405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03612801 314.18408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03612802 314.18408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03612803 314.18411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03612804 314.18411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03612805 314.18414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03612806 314.18414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03612807 314.18417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03612808 314.18420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03612809 314.18420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03612810 314.18420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03612811 314.18423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03612812 314.18423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03612813 314.18426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03612814 314.18426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03612815 314.18429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03612816 314.18429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03612817 314.18432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03612818 314.18432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03612819 314.18435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03612820 314.18435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03612821 314.18435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03612822 314.18435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03612823 314.18438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03612824 314.18438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03612825 314.18441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03612826 314.18441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03612827 314.18444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03612828 314.18447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03612829 314.18450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03612830 314.18450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03612831 314.18453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03612832 314.18453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03612833 314.18453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03612834 314.18453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03612835 314.18457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03612836 314.18457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03612837 314.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03612838 314.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03612839 314.18463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03612840 314.18463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03612841 314.18466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03612842 314.18466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03612843 314.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03612844 314.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03612845 314.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03612846 314.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03612847 314.18472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03612848 314.18472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03612849 314.18475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03612850 314.18478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03612851 314.18481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03612852 314.18481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03612853 314.18484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03612854 314.18484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03612855 314.18484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03612856 314.18484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03612857 314.18487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03612858 314.18487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03612859 314.18490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03612860 314.18490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03612861 314.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03612862 314.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03612863 314.18496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03612864 314.18496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03612865 314.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03612866 314.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03612867 314.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03612868 314.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03612869 314.18502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03612870 314.18502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03612871 314.18505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03612872 314.18508911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03612873 314.18511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03612874 314.18511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03612875 314.18515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03612876 314.18515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03612877 314.18515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03612878 314.18515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03612879 314.18518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03612880 314.18518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03612881 314.18521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03612882 314.18521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03612883 314.18524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03612884 314.18524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03612885 314.18527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03612886 314.18527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03612887 314.18530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03612888 314.18533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03612889 314.18533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03612890 314.18533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03612891 314.18536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03612892 314.18536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03612893 314.18539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03612894 314.18539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03612895 314.18542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03612896 314.18542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03612897 314.18545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03612898 314.18545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03612899 314.18548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03612900 314.18548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03612901 314.18551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03612902 314.18551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03612903 314.18554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03612904 314.18554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03612905 314.18557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03612906 314.18557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03612907 314.18560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03612908 314.18560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03612909 314.18563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03612910 314.18563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03612911 314.18563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03612912 314.18563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03612913 314.18566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03612914 314.18569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03612915 314.18572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03612916 314.18572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03612917 314.18576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03612918 314.18576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03612919 314.18579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03612920 314.18579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03612921 314.18579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03612922 314.18579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03612923 314.18582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03612924 314.18582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03612925 314.18585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03612926 314.18585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03612927 314.18588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03612928 314.18588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03612929 314.18591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03612930 314.18594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03612931 314.18594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03612932 314.18594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03612933 314.18597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03612934 314.18597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03612935 314.18600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03612936 314.18600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03612937 314.18603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03612938 314.18603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03612939 314.18606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03612940 314.18606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03612941 314.18609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03612942 314.18609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03612943 314.18612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03612944 314.18612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03612945 314.18612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03612946 314.18615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03612947 314.18618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03612948 314.18618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03612949 314.18621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03612950 314.18621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03612951 314.18624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03612952 314.18624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03612953 314.18627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03612954 314.18627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03612955 314.18627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03612956 314.18627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03612957 314.18630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03612958 314.18630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03612959 314.18634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03612960 314.18634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03612961 314.18637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03612962 314.18637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03612963 314.18640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03612964 314.18643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03612965 314.18643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03612966 314.18643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03612967 314.18646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03612968 314.18646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03612969 314.18649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03612970 314.18649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03612971 314.18652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03612972 314.18652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03612973 314.18655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03612974 314.18655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03612975 314.18658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03612976 314.18658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03612977 314.18658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03612978 314.18658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03612979 314.18661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03612980 314.18661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03612981 314.18664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03612982 314.18664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03612983 314.18667603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03612984 314.18670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03612985 314.18673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03612986 314.18673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03612987 314.18673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03612988 314.18673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03612989 314.18676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03612990 314.18676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03612991 314.18679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03612992 314.18679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03612993 314.18682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03612994 314.18682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03612995 314.18685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03612996 314.18685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03612997 314.18688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03612998 314.18688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03612999 314.18692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03613000 314.18692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03613001 314.18692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03613002 314.18695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03613003 314.18698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03613004 314.18698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03613005 314.18701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03613006 314.18701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03613007 314.18704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03613008 314.18704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03613009 314.18707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03613010 314.18707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03613011 314.18707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03613012 314.18707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03613013 314.18710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03613014 314.18710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03613015 314.18713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03613016 314.18713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03613017 314.18716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03613018 314.18716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03613019 314.18719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03613020 314.18719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03613021 314.18722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03613022 314.18722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03613023 314.18725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03613024 314.18725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03613025 314.18728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03613026 314.18728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03613027 314.18731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03613028 314.18731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03613029 314.18734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03613030 314.18734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03613031 314.18737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03613032 314.18737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03613033 314.18737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03613034 314.18737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03613035 314.18740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03613036 314.18740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03613037 314.18743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03613038 314.18743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03613039 314.18746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03613040 314.18750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03613041 314.18753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03613042 314.18753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03613043 314.18753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03613044 314.18753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03613045 314.18756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03613046 314.18756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03613047 314.18759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03613048 314.18759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03613049 314.18762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03613050 314.18762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03613051 314.18765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03613052 314.18765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03613053 314.18768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03613054 314.18768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03613055 314.18771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03613056 314.18771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03613057 314.18771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03613058 314.18774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03613059 314.18777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03613060 314.18777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03613061 314.18780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03613062 314.18780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03613063 314.18783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03613064 314.18783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03613065 314.18786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03613066 314.18786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03613067 314.18786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03613068 314.18786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03613069 314.18789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03613070 314.18789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03613071 314.18792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03613072 314.18792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03613073 314.18795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03613074 314.18795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03613075 314.18798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03613076 314.18798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03613077 314.18801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03613078 314.18801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03613079 314.18801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03613080 314.18801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03613081 314.18804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03613082 314.18804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03613083 314.18807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03613084 314.18807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03613085 314.18811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03613086 314.18814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03613087 314.18814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03613088 314.18817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03613089 314.18817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03613090 314.18817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03613091 314.18820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03613092 314.18820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03613093 314.18823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03613094 314.18823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03613095 314.18826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03613096 314.18826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03613097 314.18829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03613098 314.18829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03613099 314.18832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03613100 314.18832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03613101 314.18832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03613102 314.18832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03613103 314.18835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03613104 314.18835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03613105 314.18838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03613106 314.18838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03613107 314.18841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03613108 314.18841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03613109 314.18844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03613110 314.18844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03613111 314.18847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03613112 314.18847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03613113 314.18850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03613114 314.18850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03613115 314.18850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03613116 314.18853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03613117 314.18853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03613118 314.18856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03613119 314.18859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03613120 314.18859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03613121 314.18862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03613122 314.18862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03613123 314.18865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03613124 314.18865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03613125 314.18865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03613126 314.18865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03613127 314.18869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03613128 314.18869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03613129 314.18872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03613130 314.18872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03613131 314.18875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03613132 314.18875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03613133 314.18878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03613134 314.18878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03613135 314.18881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03613136 314.18881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03613137 314.18881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03613138 314.18881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03613139 314.18884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03613140 314.18884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03613141 314.18887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03613142 314.18887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03613143 314.18890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03613144 314.18890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03613145 314.18893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03613146 314.18893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03613147 314.18896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03613148 314.18896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03613149 314.18896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03613150 314.18896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03613151 314.18899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03613152 314.18899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03613153 314.18905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03613154 314.18905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03613155 314.18908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03613156 314.18908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03613157 314.18911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03613158 314.18911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03613159 314.18914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03613160 314.18914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03613161 314.18914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03613162 314.18914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03613163 314.18917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03613164 314.18917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03613165 314.18920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03613166 314.18920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03613167 314.18923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03613168 314.18923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03613169 314.18927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03613170 314.18927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03613171 314.18930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03613172 314.18930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03613173 314.18933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03613174 314.18933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03613175 314.18936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03613176 314.18936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03613177 314.18939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03613178 314.18939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03613179 314.18942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03613180 314.18942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03613181 314.18945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03613182 314.18945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03613183 314.18945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03613184 314.18945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03613185 314.18948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03613186 314.18948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03613187 314.18951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03613188 314.18954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03613189 314.18957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03613190 314.18957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03613191 314.18960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03613192 314.18960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03613193 314.18960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03613194 314.18960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03613195 314.18963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03613196 314.18963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03613197 314.18966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03613198 314.18966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03613199 314.18969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03613200 314.18969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03613201 314.18972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03613202 314.18972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03613203 314.18975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03613204 314.18975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03613205 314.18975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03613206 314.18975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03613207 314.18978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03613208 314.18981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03613209 314.18984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03613210 314.18984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03613211 314.18988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03613212 314.18988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03613213 314.18991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03613214 314.18991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03613215 314.18994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03613216 314.18994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03613217 314.18997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03613218 314.18997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03613219 314.19000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03613220 314.19000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03613221 314.19003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03613222 314.19003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03613223 314.19006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03613224 314.19006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03613225 314.19009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03613226 314.19009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03613227 314.19009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03613228 314.19012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03613229 314.19015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03613230 314.19015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03613231 314.19018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03613232 314.19018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03613233 314.19021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03613234 314.19021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03613235 314.19024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03613236 314.19024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03613237 314.19024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03613238 314.19024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03613239 314.19027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03613240 314.19027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03613241 314.19030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03613242 314.19030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03613243 314.19033813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03613244 314.19036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03613245 314.19039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03613246 314.19039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03613247 314.19039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03613248 314.19039917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03613249 314.19042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03613250 314.19042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03613251 314.19049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03613252 314.19049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03613253 314.19052124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03613254 314.19052124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03613255 314.19055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03613256 314.19055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03613257 314.19058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03613258 314.19058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03613259 314.19064331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03613260 314.19064331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03613261 314.19067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03613262 314.19067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03613263 314.19073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03613264 314.19073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03613265 314.19073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03613266 314.19073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03613267 314.19079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03613268 314.19079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03613269 314.19082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03613270 314.19082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03613271 314.19085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03613272 314.19085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03613273 314.19088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03613274 314.19088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03613275 314.19088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03613276 314.19088745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03613277 314.19091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03613278 314.19091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03613279 314.19094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03613280 314.19094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03613281 314.19097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03613282 314.19097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03613283 314.19100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03613284 314.19104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03613285 314.19104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03613286 314.19104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03613287 314.19107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03613288 314.19107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03613289 314.19110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03613290 314.19110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03613291 314.19113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03613292 314.19113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03613293 314.19116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03613294 314.19116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03613295 314.19119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03613296 314.19119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03613297 314.19119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03613298 314.19119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03613299 314.19122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03613300 314.19122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03613301 314.19125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03613302 314.19128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03613303 314.19131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03613304 314.19131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03613305 314.19134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03613306 314.19134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03613307 314.19134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03613308 314.19134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03613309 314.19137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03613310 314.19137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03613311 314.19140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03613312 314.19140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03613313 314.19143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03613314 314.19143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03613315 314.19146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03613316 314.19146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03613317 314.19149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03613318 314.19149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03613319 314.19152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03613320 314.19152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03613321 314.19152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03613322 314.19155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03613323 314.19158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03613324 314.19158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03613325 314.19161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03613326 314.19161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03613327 314.19165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03613328 314.19165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03613329 314.19168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03613330 314.19168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03613331 314.19168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03613332 314.19168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03613333 314.19171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03613334 314.19171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03613335 314.19174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03613336 314.19174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03613337 314.19177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03613338 314.19177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03613339 314.19180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03613340 314.19183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03613341 314.19183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03613342 314.19183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03613343 314.19186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03613344 314.19186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03613345 314.19189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03613346 314.19189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03613347 314.19192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03613348 314.19192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03613349 314.19195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03613350 314.19195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03613351 314.19198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03613352 314.19198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03613353 314.19198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03613354 314.19198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03613355 314.19201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03613356 314.19201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03613357 314.19204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03613358 314.19207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03613359 314.19210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03613360 314.19210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03613361 314.19213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03613362 314.19213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03613363 314.19213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03613364 314.19213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03613365 314.19216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03613366 314.19216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03613367 314.19219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03613368 314.19219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03613369 314.19223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03613370 314.19223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03613371 314.19226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03613372 314.19229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03613373 314.19229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03613374 314.19232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03613375 314.19232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03613376 314.19232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03613377 314.19235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03613378 314.19235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03613379 314.19238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03613380 314.19238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03613381 314.19241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03613382 314.19241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03613383 314.19244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03613384 314.19244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03613385 314.19247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03613386 314.19247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03613387 314.19247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03613388 314.19247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03613389 314.19253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03613390 314.19253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03613391 314.19256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03613392 314.19256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03613393 314.19259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03613394 314.19259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03613395 314.19262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03613396 314.19262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03613397 314.19262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03613398 314.19262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03613399 314.19265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03613400 314.19265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03613401 314.19268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03613402 314.19271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03613403 314.19274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03613404 314.19274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03613405 314.19277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03613406 314.19277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03613407 314.19277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03613408 314.19277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03613409 314.19281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03613410 314.19281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03613411 314.19284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03613412 314.19284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03613413 314.19287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03613414 314.19287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03613415 314.19290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03613416 314.19290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03613417 314.19293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03613418 314.19293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03613419 314.19296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03613420 314.19296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03613421 314.19299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03613422 314.19299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03613423 314.19302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03613424 314.19302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03613425 314.19305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03613426 314.19305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03613427 314.19308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03613428 314.19308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03613429 314.19311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03613430 314.19311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03613431 314.19314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03613432 314.19314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03613433 314.19317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03613434 314.19317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03613435 314.19320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03613436 314.19320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03613437 314.19323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03613438 314.19323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03613439 314.19326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03613440 314.19326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03613441 314.19326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03613442 314.19326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03613443 314.19329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03613444 314.19329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03613445 314.19332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03613446 314.19332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03613447 314.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03613448 314.19338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03613449 314.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03613450 314.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03613451 314.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03613452 314.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03613453 314.19345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03613454 314.19345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03613455 314.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03613456 314.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03613457 314.19351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03613458 314.19351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03613459 314.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03613460 314.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03613461 314.19357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03613462 314.19357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03613463 314.19357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03613464 314.19357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03613465 314.19360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03613466 314.19363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03613467 314.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03613468 314.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03613469 314.19369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03613470 314.19369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03613471 314.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03613472 314.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03613473 314.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03613474 314.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03613475 314.19375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03613476 314.19375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03613477 314.19378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03613478 314.19378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03613479 314.19381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03613480 314.19381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03613481 314.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03613482 314.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03613483 314.19387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03613484 314.19387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03613485 314.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03613486 314.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03613487 314.19393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03613488 314.19393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03613489 314.19396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03613490 314.19396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03613491 314.19400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03613492 314.19400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03613493 314.19403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03613494 314.19403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03613495 314.19406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03613496 314.19406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03613497 314.19406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03613498 314.19406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03613499 314.19409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03613500 314.19409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03613501 314.19412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03613502 314.19412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03613503 314.19415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03613504 314.19418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03613505 314.19421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03613506 314.19421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03613507 314.19421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03613508 314.19421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03613509 314.19424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03613510 314.19424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03613511 314.19427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03613512 314.19427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03613513 314.19430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03613514 314.19430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03613515 314.19433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03613516 314.19433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03613517 314.19436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03613518 314.19436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03613519 314.19436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03613520 314.19436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03613521 314.19439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03613522 314.19442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03613523 314.19445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03613524 314.19445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03613525 314.19448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03613526 314.19448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03613527 314.19451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03613528 314.19451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03613529 314.19454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03613530 314.19454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03613531 314.19454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03613532 314.19454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03613533 314.19458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03613534 314.19458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03613535 314.19461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03613536 314.19461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03613537 314.19464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03613538 314.19464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03613539 314.19467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03613540 314.19467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03613541 314.19470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03613542 314.19470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03613543 314.19470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03613544 314.19470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03613545 314.19473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03613546 314.19473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03613547 314.19476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03613548 314.19476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03613549 314.19479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03613550 314.19482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03613551 314.19482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03613552 314.19485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03613553 314.19485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03613554 314.19485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03613555 314.19488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03613556 314.19488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03613557 314.19491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03613558 314.19491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03613559 314.19494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03613560 314.19494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03613561 314.19497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03613562 314.19497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03613563 314.19500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03613564 314.19500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03613565 314.19500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03613566 314.19500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03613567 314.19503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03613568 314.19503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03613569 314.19506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03613570 314.19506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03613571 314.19509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03613572 314.19509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03613573 314.19512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03613574 314.19512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03613575 314.19515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03613576 314.19515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03613577 314.19515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03613578 314.19515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03613579 314.19519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03613580 314.19519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03613581 314.19522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03613582 314.19522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03613583 314.19525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03613584 314.19525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03613585 314.19528198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03613586 314.19528198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03613587 314.19531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03613588 314.19531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03613589 314.19534302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03613590 314.19534302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03613591 314.19534302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03613592 314.19537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03613593 314.19537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03613594 314.19540405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03613595 314.19543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03613596 314.19543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03613597 314.19546509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03613598 314.19546509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03613599 314.19549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03613600 314.19549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03613601 314.19549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03613602 314.19549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03613603 314.19552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03613604 314.19552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03613605 314.19555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03613606 314.19555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03613607 314.19558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03613608 314.19558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03613609 314.19561768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03613610 314.19561768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03613611 314.19564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03613612 314.19564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03613613 314.19564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03613614 314.19564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03613615 314.19567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03613616 314.19567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03613617 314.19570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03613618 314.19570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03613619 314.19577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03613620 314.19577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03613621 314.19580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03613622 314.19580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03613623 314.19580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03613624 314.19580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03613625 314.19583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03613626 314.19583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03613627 314.19586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03613628 314.19586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03613629 314.19589233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03613630 314.19589233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03613631 314.19592285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03613632 314.19592285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03613633 314.19595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03613634 314.19595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03613635 314.19595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03613636 314.19598389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03613637 314.19601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03613638 314.19601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03613639 314.19604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03613640 314.19604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03613641 314.19607544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03613642 314.19607544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03613643 314.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03613644 314.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03613645 314.19613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03613646 314.19613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03613647 314.19613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03613648 314.19613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03613649 314.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03613650 314.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03613651 314.19619751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03613652 314.19619751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03613653 314.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03613654 314.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03613655 314.19625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03613656 314.19625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03613657 314.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03613658 314.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03613659 314.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03613660 314.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03613661 314.19631958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03613662 314.19631958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03613663 314.19635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03613664 314.19635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03613665 314.19638062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03613666 314.19638062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03613667 314.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03613668 314.19644165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03613669 314.19644165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03613670 314.19644165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03613671 314.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03613672 314.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03613673 314.19650269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03613674 314.19650269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03613675 314.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03613676 314.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03613677 314.19656372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03613678 314.19656372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03613679 314.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03613680 314.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03613681 314.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03613682 314.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03613683 314.19662476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03613684 314.19662476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03613685 314.19665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03613686 314.19665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03613687 314.19668579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03613688 314.19668579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03613689 314.19671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03613690 314.19671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03613691 314.19674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03613692 314.19674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03613693 314.19674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03613694 314.19674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03613695 314.19677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03613696 314.19680786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03613697 314.19683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03613698 314.19683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03613699 314.19686890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03613700 314.19686890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03613701 314.19689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03613702 314.19689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03613703 314.19692993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03613704 314.19692993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03613705 314.19692993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03613706 314.19692993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03613707 314.19696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03613708 314.19696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03613709 314.19702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03613710 314.19702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03613711 314.19705200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03613712 314.19705200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03613713 314.19708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03613714 314.19708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03613715 314.19708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03613716 314.19708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03613717 314.19711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03613718 314.19711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03613719 314.19714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03613720 314.19717407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03613721 314.19720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03613722 314.19720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03613723 314.19723511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03613724 314.19723511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03613725 314.19723511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03613726 314.19723511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03613727 314.19726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03613728 314.19726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03613729 314.19729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03613730 314.19729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03613731 314.19732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03613732 314.19732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03613733 314.19735718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03613734 314.19735718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03613735 314.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03613736 314.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03613737 314.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03613738 314.19738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03613739 314.19741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03613740 314.19744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03613741 314.19747925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03613742 314.19747925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03613743 314.19750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03613744 314.19750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03613745 314.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03613746 314.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03613747 314.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03613748 314.19754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03613749 314.19757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03613750 314.19757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03613751 314.19760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03613752 314.19760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03613753 314.19763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03613754 314.19763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03613755 314.19766235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03613756 314.19766235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03613757 314.19769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03613758 314.19772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03613759 314.19772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03613760 314.19772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03613761 314.19775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03613762 314.19775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03613763 314.19778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03613764 314.19778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03613765 314.19781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03613766 314.19781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03613767 314.19784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03613768 314.19784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03613769 314.19787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03613770 314.19787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03613771 314.19787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03613772 314.19787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03613773 314.19790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03613774 314.19790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03613775 314.19793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03613776 314.19793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03613777 314.19796753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03613778 314.19799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03613779 314.19802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03613780 314.19802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03613781 314.19802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03613782 314.19802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03613783 314.19805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03613784 314.19805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03613785 314.19808960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03613786 314.19808960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03613787 314.19812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03613788 314.19812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03613789 314.19815063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03613790 314.19815063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03613791 314.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03613792 314.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03613793 314.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03613794 314.19818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03613795 314.19821167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03613796 314.19824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03613797 314.19827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03613798 314.19827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03613799 314.19830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03613800 314.19830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03613801 314.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03613802 314.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03613803 314.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03613804 314.19833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03613805 314.19836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03613806 314.19836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03613807 314.19839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03613808 314.19839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03613809 314.19842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03613810 314.19842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03613811 314.19845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03613812 314.19845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03613813 314.19848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03613814 314.19851685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03613815 314.19851685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03613816 314.19851685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03613817 314.19854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03613818 314.19854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03613819 314.19857788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03613820 314.19857788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03613821 314.19860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03613822 314.19860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03613823 314.19863892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03613824 314.19863892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03613825 314.19866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03613826 314.19866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03613827 314.19866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03613828 314.19866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03613829 314.19869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03613830 314.19869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03613831 314.19873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03613832 314.19873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03613833 314.19876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03613834 314.19876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03613835 314.19879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03613836 314.19879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03613837 314.19882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03613838 314.19882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03613839 314.19882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03613840 314.19882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03613841 314.19885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03613842 314.19888306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03613843 314.19891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03613844 314.19891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03613845 314.19894409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03613846 314.19894409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03613847 314.19897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03613848 314.19897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03613849 314.19897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03613850 314.19897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03613851 314.19900513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03613852 314.19900513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03613853 314.19903564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03613854 314.19903564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03613855 314.19906616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03613856 314.19906616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03613857 314.19909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03613858 314.19909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03613859 314.19912720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03613860 314.19912720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03613861 314.19915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03613862 314.19915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03613863 314.19918823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03613864 314.19918823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03613865 314.19921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03613866 314.19921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03613867 314.19924927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03613868 314.19924927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03613869 314.19927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03613870 314.19927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03613871 314.19931030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03613872 314.19931030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03613873 314.19931030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03613874 314.19934082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03613875 314.19937134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03613876 314.19937134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03613877 314.19940186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03613878 314.19940186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03613879 314.19943237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03613880 314.19943237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03613881 314.19946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03613882 314.19946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03613883 314.19946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03613884 314.19946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03613885 314.19949341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03613886 314.19949341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03613887 314.19952393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03613888 314.19955444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03613889 314.19958496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03613890 314.19958496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03613891 314.19961548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03613892 314.19961548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03613893 314.19961548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03613894 314.19961548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03613895 314.19964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03613896 314.19964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03613897 314.19967651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03613898 314.19967651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03613899 314.19970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03613900 314.19970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03613901 314.19973755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03613902 314.19973755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03613903 314.19976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03613904 314.19976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03613905 314.19979858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03613906 314.19979858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03613907 314.19982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03613908 314.19982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03613909 314.19985962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03613910 314.19985962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03613911 314.19989014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03613912 314.19989014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03613913 314.19992065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03613914 314.19992065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03613915 314.19995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03613916 314.19995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03613917 314.19995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03613918 314.19998169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03613919 314.20001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03613920 314.20001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03613921 314.20004272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03613922 314.20004272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03613923 314.20007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03613924 314.20007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03613925 314.20010376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03613926 314.20010376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03613927 314.20010376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03613928 314.20010376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03613929 314.20013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03613930 314.20013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03613931 314.20016479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03613932 314.20016479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03630305 314.43252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac8 -03630306 314.43252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac8 -03630307 314.43252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad8 -03630308 314.43252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad8 -03630309 314.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -03630310 314.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -03630311 314.43258667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -03630312 314.43258667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -03630313 314.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -03630314 314.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -03630315 314.43264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -03630316 314.43264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -03630317 314.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -03630318 314.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -03630319 314.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -03630320 314.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -03630321 314.43270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -03630322 314.43270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -03630323 314.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -03630324 314.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -03630325 314.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -03630326 314.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -03630327 314.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -03630328 314.43283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -03630329 314.43283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -03630330 314.43283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -03630331 314.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -03630332 314.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -03630333 314.43289185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -03630334 314.43289185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -03630335 314.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -03630336 314.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -03630337 314.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -03630338 314.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -03630339 314.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -03630340 314.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -03630341 314.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -03630342 314.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -03630343 314.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -03630344 314.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -03630345 314.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -03630346 314.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -03630347 314.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -03630348 314.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -03638811 314.49435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -03638812 314.49435425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03638813 314.49435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -03638814 314.49435425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -03638815 314.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -03638816 314.49438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03638817 314.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -03638818 314.49438477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -03638819 314.49441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -03638820 314.49441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03638821 314.49441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -03638822 314.49441528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -03638823 314.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -03638824 314.49444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03638825 314.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -03638826 314.49444580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -03638827 314.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -03638828 314.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03638829 314.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -03638830 314.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -03638831 314.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -03638832 314.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03638833 314.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -03638834 314.49447632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -03638835 314.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -03638836 314.49450684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03638837 314.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -03638838 314.49450684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -03638839 314.49453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -03638840 314.49453735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03638841 314.49453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -03638842 314.49453735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -03638843 314.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -03638844 314.49456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03638845 314.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -03638846 314.49456787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -03638847 314.49459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b8 -03638848 314.49459839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03638849 314.49459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4b8 -03638850 314.49462891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -03638851 314.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c8 -03638852 314.49462891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03638853 314.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4c8 -03638854 314.49462891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -03649773 314.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -03649774 314.57147217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -03649775 314.57150269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f18 -03649776 314.57150269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -03649777 314.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -03649778 314.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -03649779 314.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f28 -03649780 314.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -03649781 314.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f38 -03649782 314.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -03649783 314.57153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f38 -03649784 314.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -03649785 314.57156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -03649786 314.57156372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -03649787 314.57156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f48 -03649788 314.57156372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -03649789 314.57159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -03649790 314.57159424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -03649791 314.57159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f58 -03649792 314.57159424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -03649793 314.57162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -03649794 314.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -03649795 314.57162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f68 -03649796 314.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -03649797 314.57165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -03649798 314.57165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -03649799 314.57165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f78 -03649800 314.57165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -03649801 314.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -03649802 314.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -03649803 314.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f88 -03649804 314.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -03649805 314.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -03649806 314.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -03649807 314.57168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f98 -03649808 314.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -03649809 314.57171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -03649810 314.57171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -03649811 314.57171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fa8 -03649812 314.57171631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -03649813 314.57174683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -03649814 314.57174683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -03649815 314.57177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37fb8 -03649816 314.57177734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -03660337 314.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c8 -03660338 314.64636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c8 -03660339 314.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424c8 -03660340 314.64636230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c8 -03660341 314.64639282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d8 -03660342 314.64642334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d8 -03660343 314.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424d8 -03660344 314.64642334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d8 -03660345 314.64645386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e8 -03660346 314.64645386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e8 -03660347 314.64645386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424e8 -03660348 314.64645386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e8 -03660349 314.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f8 -03660350 314.64648438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f8 -03660351 314.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x424f8 -03660352 314.64648438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f8 -03660353 314.64651489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42508 -03660354 314.64651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e108 -03660355 314.64651489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42508 -03660356 314.64651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e108 -03660357 314.64651489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42518 -03660358 314.64651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e118 -03660359 314.64651489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42518 -03660360 314.64651489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e118 -03660361 314.64654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42528 -03660362 314.64654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e128 -03660363 314.64654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42528 -03660364 314.64654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e128 -03660365 314.64657593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42538 -03660366 314.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e138 -03660367 314.64657593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42538 -03660368 314.64657593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e138 -03660369 314.64660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42548 -03660370 314.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e148 -03660371 314.64660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42548 -03660372 314.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e148 -03660373 314.64663696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42558 -03660374 314.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e158 -03660375 314.64663696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42558 -03660376 314.64663696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e158 -03660377 314.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42568 -03660378 314.64666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e168 -03660379 314.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42568 -03660380 314.64666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e168 -03671375 314.72387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d158 -03671376 314.72387695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d28 -03671377 314.72387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d158 -03671378 314.72387695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d28 -03671379 314.72387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d168 -03671380 314.72387695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d38 -03671381 314.72387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d168 -03671382 314.72387695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d38 -03671383 314.72390747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d178 -03671384 314.72390747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d48 -03671385 314.72390747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d178 -03671386 314.72390747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d48 -03671387 314.72393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d188 -03671388 314.72393799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d58 -03671389 314.72393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d188 -03671390 314.72393799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d58 -03671391 314.72396851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d198 -03671392 314.72396851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d68 -03671393 314.72396851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d198 -03671394 314.72396851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d68 -03671395 314.72399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a8 -03671396 314.72399902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d78 -03671397 314.72399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a8 -03671398 314.72402954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d78 -03671399 314.72402954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b8 -03671400 314.72402954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d88 -03671401 314.72406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b8 -03671402 314.72406006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d88 -03671403 314.72406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c8 -03671404 314.72406006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d98 -03671405 314.72406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c8 -03671406 314.72406006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d98 -03671407 314.72409058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d8 -03671408 314.72409058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da8 -03671409 314.72409058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d8 -03671410 314.72409058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28da8 -03671411 314.72412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e8 -03671412 314.72412109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db8 -03671413 314.72412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e8 -03671414 314.72412109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28db8 -03671415 314.72415161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f8 -03671416 314.72415161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc8 -03671417 314.72415161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f8 -03671418 314.72415161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc8 -03689882 314.93927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47398 -03689883 314.93930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a8 -03689884 314.93930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473a8 -03689885 314.93930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b8 -03689886 314.93930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473b8 -03689887 314.93933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c8 -03689888 314.93936157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473c8 -03689889 314.93939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d8 -03689890 314.93939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473d8 -03689891 314.93942261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e8 -03689892 314.93942261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473e8 -03689893 314.93945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f8 -03689894 314.93945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x473f8 -03689895 314.93948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47408 -03689896 314.93948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47408 -03689897 314.93948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47418 -03689898 314.93948364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47418 -03689899 314.93951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47428 -03689900 314.93951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47428 -03689901 314.93954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47438 -03689902 314.93954468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47438 -03689903 314.93957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47448 -03689904 314.93957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47448 -03689905 314.93960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47458 -03689906 314.93960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47458 -03689907 314.93963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47468 -03689908 314.93963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47468 -03689909 314.93966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47478 -03689910 314.93966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47478 -03689911 314.93969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47488 -03689912 314.93969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47488 -03689913 314.93972778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47498 -03689914 314.93972778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47498 -03689915 314.93975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -03689916 314.93975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -03689917 314.93978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -03689918 314.93978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -03689919 314.93978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -03689920 314.93978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -03689921 314.93981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -03689922 314.93981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -03689923 314.93984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -03689924 314.93984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -03689925 314.93988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -03694449 315.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -03694450 315.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -03694451 315.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -03694452 315.00332642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -03694453 315.00335693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -03694454 315.00335693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -03694455 315.00338745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -03694456 315.00341797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -03694457 315.00344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -03694458 315.00344849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -03694459 315.00347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -03694460 315.00347900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -03694461 315.00350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -03694462 315.00350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -03694463 315.00350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -03694464 315.00350952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -03694465 315.00354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -03694466 315.00354004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502d8 -03694467 315.00357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -03694468 315.00357056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502e8 -03694469 315.00360107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -03694470 315.00360107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x502f8 -03694471 315.00363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -03694472 315.00363159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50308 -03694473 315.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -03694474 315.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50318 -03694475 315.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -03694476 315.00366211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50328 -03694477 315.00369263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -03694478 315.00372314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50338 -03694479 315.00375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -03694480 315.00375366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -03694481 315.00378418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -03694482 315.00378418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -03694483 315.00381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -03694484 315.00381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -03694485 315.00381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -03694486 315.00381470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -03694487 315.00384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -03694488 315.00384521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -03694489 315.00387573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -03694490 315.00387573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -03694491 315.00390625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a8 -03694492 315.00390625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a8 -03695821 315.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -03695822 315.80578613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03695823 315.82489014 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695824 315.82489014 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695825 316.82608032 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695826 316.82611084 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695827 316.82614136 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695828 316.82617188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03695829 316.82629395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695830 316.82629395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03695831 316.82635498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695832 316.82635498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03695833 317.82641602 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03695834 317.84667969 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695835 317.84671021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695836 319.33242798 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695837 319.33248901 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695838 319.33248901 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03695839 319.33251953 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03695840 319.33261108 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695841 319.33264160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03695842 319.33267212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03695843 319.33270264 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03695844 319.49935913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03695845 319.49935913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03695846 319.49938965 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03695847 319.49938965 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03695848 319.49942017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03695849 319.49942017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03695850 319.49945068 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03695851 319.49945068 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03695852 319.49948120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03695853 319.49948120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03695854 319.49948120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03695855 319.49948120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03695856 319.49951172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03695857 319.49951172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03695858 319.49954224 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03695859 319.49954224 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03695860 319.49957275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03695861 319.49960327 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03695862 319.49963379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03695863 319.49963379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03695864 319.49963379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03695865 319.49963379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03695866 319.49966431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03695867 319.49966431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03695868 319.49969482 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03695869 319.49969482 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03695870 319.49972534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03695871 319.49972534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03695872 319.49975586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03695873 319.49975586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03695874 319.49978638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03695875 319.49978638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03695876 319.49978638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03695877 319.49978638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03695878 319.49981689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03695879 319.49981689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03695880 319.49984741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03695881 319.49984741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03695882 319.49987793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03695883 319.49990845 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03695884 319.49990845 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03695885 319.49993896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03695886 319.49996948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03695887 319.49996948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03695888 319.49996948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03695889 319.49996948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03695890 319.50000000 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03695891 319.50000000 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03695892 319.50003052 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03695893 319.50003052 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03695894 319.50006104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03695895 319.50006104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03695896 319.50009155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03695897 319.50009155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03695898 319.50012207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03695899 319.50012207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03695900 319.50012207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03695901 319.50012207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03695902 319.50015259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03695903 319.50015259 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03695904 319.50018311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03695905 319.50018311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03695906 319.50021362 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03695907 319.50021362 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03695908 319.50024414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03695909 319.50024414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03695910 319.50027466 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03695911 319.50027466 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03695912 319.50030518 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03695913 319.50030518 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03695914 319.50033569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03695915 319.50033569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03695916 319.50036621 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03695917 319.50036621 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03695918 319.50039673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03695919 319.50039673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03695920 319.50042725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03695921 319.50042725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03695922 319.50042725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03695923 319.50042725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03695924 319.50045776 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03695925 319.50045776 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03695926 319.50048828 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03695927 319.50048828 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03695928 319.50051880 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03695929 319.50051880 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03695930 319.50054932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03695931 319.50054932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03695932 319.50057983 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03695933 319.50057983 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03695934 319.50061035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03695935 319.50061035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03695936 319.50061035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03695937 319.50064087 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03695938 319.50067139 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03695939 319.50067139 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03695940 319.50070190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03695941 319.50070190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03695942 319.50073242 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03695943 319.50073242 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03695944 319.50076294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03695945 319.50076294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03695946 319.50076294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03695947 319.50076294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03695948 319.50079346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03695949 319.50079346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03695950 319.50082397 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03695951 319.50082397 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03695952 319.50085449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03695953 319.50085449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03695954 319.50088501 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03695955 319.50088501 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03695956 319.50091553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03695957 319.50091553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03695958 319.50091553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03695959 319.50091553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03695960 319.50094604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03695961 319.50094604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03695962 319.50097656 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03695963 319.50097656 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03695964 319.50100708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03695965 319.50100708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03695966 319.50103760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03695967 319.50103760 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03695968 319.50106812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03695969 319.50106812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03695970 319.50109863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03695971 319.50109863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03695972 319.50112915 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03695973 319.50112915 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03695974 319.50115967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03695975 319.50115967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03695976 319.50119019 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03695977 319.50119019 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03695978 319.50122070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03695979 319.50122070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03695980 319.50122070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03695981 319.50125122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03695982 319.50128174 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03695983 319.50128174 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03695984 319.50131226 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03695985 319.50131226 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03695986 319.50134277 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03695987 319.50134277 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03695988 319.50137329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03695989 319.50137329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03695990 319.50140381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03695991 319.50140381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03695992 319.50140381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03695993 319.50140381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03695994 319.50143433 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03695995 319.50143433 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03695996 319.50146484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03695997 319.50146484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03695998 319.50149536 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03695999 319.50149536 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03696000 319.50152588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03696001 319.50152588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03696002 319.50155640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03696003 319.50155640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03696004 319.50155640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03696005 319.50155640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03696006 319.50158691 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03696007 319.50161743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03696008 319.50161743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03696009 319.50164795 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03696010 319.50167847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03696011 319.50167847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03696012 319.50170898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03696013 319.50170898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03696014 319.50170898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03696015 319.50170898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03696016 319.50173950 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03696017 319.50173950 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03696018 319.50177002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03696019 319.50177002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03696020 319.50180054 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03696021 319.50180054 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03696022 319.50183105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03696023 319.50183105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03696024 319.50186157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03696025 319.50186157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03696026 319.50186157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03696027 319.50186157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03696028 319.50189209 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03696029 319.50189209 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03696030 319.50192261 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03696031 319.50192261 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03696032 319.50195313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03696033 319.50195313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03696034 319.50198364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03696035 319.50198364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03696036 319.50201416 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03696037 319.50201416 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03696038 319.50201416 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03696039 319.50201416 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03696040 319.50204468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03696041 319.50204468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03696042 319.50207520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03696043 319.50207520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03696044 319.50210571 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03696045 319.50210571 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03696046 319.50213623 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03696047 319.50216675 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03696048 319.50216675 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03696049 319.50219727 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03696050 319.50219727 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03696051 319.50219727 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03696052 319.50222778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03696053 319.50222778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03696054 319.50225830 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03696055 319.50225830 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03696056 319.50228882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03696057 319.50228882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03696058 319.50231934 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03696059 319.50231934 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03696060 319.50234985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03696061 319.50234985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03696062 319.50234985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03696063 319.50234985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03696064 319.50238037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03696065 319.50238037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03696066 319.50241089 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03696067 319.50244141 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03696068 319.50247192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03696069 319.50247192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03696070 319.50250244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03696071 319.50250244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03696072 319.50250244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03696073 319.50250244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03696074 319.50253296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03696075 319.50253296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03696076 319.50256348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03696077 319.50256348 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03696078 319.50259399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03696079 319.50259399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03696080 319.50262451 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03696081 319.50262451 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03696082 319.50265503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03696083 319.50265503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03696084 319.50265503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03696085 319.50265503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03696086 319.50268555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03696087 319.50271606 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03696088 319.50274658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03696089 319.50274658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03696090 319.50277710 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03696091 319.50277710 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03696092 319.50280762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03696093 319.50280762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03696094 319.50280762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03696095 319.50280762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03696096 319.50283813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03696097 319.50283813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03696098 319.50286865 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03696099 319.50286865 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03696100 319.50289917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03696101 319.50289917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03696102 319.50292969 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03696103 319.50292969 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03696104 319.50296021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03696105 319.50296021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03696106 319.50299072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03696107 319.50299072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03696108 319.50299072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03696109 319.50302124 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03696110 319.50305176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03696111 319.50305176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03696112 319.50308228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03696113 319.50308228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03696114 319.50311279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03696115 319.50311279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03696116 319.50314331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03696117 319.50314331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03696118 319.50314331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03696119 319.50314331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03696120 319.50317383 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03696121 319.50317383 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03696122 319.50320435 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03696123 319.50320435 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03696124 319.50323486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03696125 319.50323486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03696126 319.50326538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03696127 319.50329590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03696128 319.50329590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03696129 319.50329590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03696130 319.50332642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03696131 319.50332642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03696132 319.50335693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03696133 319.50335693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03696134 319.50338745 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03696135 319.50338745 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03696136 319.50341797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03696137 319.50341797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03696138 319.50344849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03696139 319.50344849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03696140 319.50344849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03696141 319.50344849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03696142 319.50347900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03696143 319.50347900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03696144 319.50350952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03696145 319.50350952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03696146 319.50354004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03696147 319.50357056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03696148 319.50360107 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03696149 319.50360107 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03696150 319.50360107 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03696151 319.50360107 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03696152 319.50363159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03696153 319.50363159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03696154 319.50366211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03696155 319.50366211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03696156 319.50369263 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03696157 319.50369263 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03696158 319.50372314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03696159 319.50372314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03696160 319.50375366 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03696161 319.50375366 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03696162 319.50378418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03696163 319.50378418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03696164 319.50378418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03696165 319.50378418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03696166 319.50381470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03696167 319.50384521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03696168 319.50387573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03696169 319.50387573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03696170 319.50390625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03696171 319.50390625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03696172 319.50393677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03696173 319.50393677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03696174 319.50393677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03696175 319.50393677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03696176 319.50396729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03696177 319.50396729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03696178 319.50399780 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03696179 319.50399780 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03696180 319.50402832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03696181 319.50402832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03696182 319.50405884 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03696183 319.50405884 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03696184 319.50408936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03696185 319.50408936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03696186 319.50408936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03696187 319.50411987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03696188 319.50415039 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03696189 319.50415039 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03696190 319.50418091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03696191 319.50418091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03696192 319.50421143 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03696193 319.50421143 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03696194 319.50424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03696195 319.50424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03696196 319.50424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03696197 319.50424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03696198 319.50427246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03696199 319.50427246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03696200 319.50430298 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03696201 319.50430298 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03696202 319.50433350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03696203 319.50433350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03696204 319.50436401 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03696205 319.50436401 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03696206 319.50439453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03696207 319.50439453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03696208 319.50442505 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03696209 319.50442505 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03696210 319.50445557 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03696211 319.50445557 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03696212 319.50448608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03696213 319.50448608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03696214 319.50451660 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03696215 319.50451660 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03696216 319.50454712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03696217 319.50454712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03696218 319.50457764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03696219 319.50457764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03696220 319.50457764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03696221 319.50457764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03696222 319.50460815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03696223 319.50460815 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03696224 319.50463867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03696225 319.50463867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03696226 319.50466919 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03696227 319.50469971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03696228 319.50473022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03696229 319.50473022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03696230 319.50473022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03696231 319.50473022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03696232 319.50476074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03696233 319.50476074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03696234 319.50479126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03696235 319.50479126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03696236 319.50482178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03696237 319.50482178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03696238 319.50485229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03696239 319.50485229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03696240 319.50488281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03696241 319.50488281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03696242 319.50488281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03696243 319.50488281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03696244 319.50491333 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03696245 319.50491333 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03696246 319.50494385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03696247 319.50494385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03696248 319.50497437 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03696249 319.50500488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03696250 319.50500488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03696251 319.50503540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03696252 319.50503540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03696253 319.50503540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03696254 319.50506592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03696255 319.50506592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03696256 319.50509644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03696257 319.50509644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03696258 319.50512695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03696259 319.50512695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03696260 319.50515747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03696261 319.50515747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03696262 319.50518799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03696263 319.50518799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03696264 319.50518799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03696265 319.50518799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03696266 319.50521851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03696267 319.50521851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03696268 319.50524902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03696269 319.50524902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03696270 319.50527954 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03696271 319.50527954 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03696272 319.50531006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03696273 319.50531006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03696274 319.50534058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03696275 319.50537109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03696276 319.50537109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03696277 319.50537109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03696278 319.50540161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03696279 319.50540161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03696280 319.50543213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03696281 319.50543213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03696282 319.50546265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03696283 319.50546265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03696284 319.50549316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03696285 319.50549316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03696286 319.50552368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03696287 319.50552368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03696288 319.50552368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03696289 319.50552368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03696290 319.50555420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03696291 319.50555420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03696292 319.50558472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03696293 319.50558472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03696294 319.50561523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03696295 319.50564575 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03696296 319.50567627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03696297 319.50567627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03696298 319.50567627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03696299 319.50567627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03696300 319.50570679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03696301 319.50570679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03696302 319.50573730 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03696303 319.50573730 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03696304 319.50576782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03696305 319.50576782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03696306 319.50579834 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03696307 319.50579834 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03696308 319.50582886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03696309 319.50582886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03696310 319.50582886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03696311 319.50582886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03696312 319.50585938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03696313 319.50585938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03696314 319.50588989 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03696315 319.50588989 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03696316 319.50592041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03696317 319.50592041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03696318 319.50595093 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03696319 319.50595093 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03696320 319.50598145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03696321 319.50598145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03696322 319.50601196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03696323 319.50601196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03696324 319.50601196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03696325 319.50604248 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03696326 319.50607300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03696327 319.50607300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03696328 319.50610352 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03696329 319.50610352 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03696330 319.50613403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03696331 319.50613403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03696332 319.50616455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03696333 319.50616455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03696334 319.50616455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03696335 319.50616455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03696336 319.50619507 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03696337 319.50619507 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03696338 319.50622559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03696339 319.50622559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03696340 319.50625610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03696341 319.50625610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03696342 319.50628662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03696343 319.50628662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03696344 319.50631714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03696345 319.50631714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03696346 319.50631714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03696347 319.50634766 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03696348 319.50637817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03696349 319.50637817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03696350 319.50640869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03696351 319.50640869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03696352 319.50643921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03696353 319.50643921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03696354 319.50646973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03696355 319.50646973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03696356 319.50646973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03696357 319.50646973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03696358 319.50650024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03696359 319.50650024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03696360 319.50653076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03696361 319.50653076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03696362 319.50656128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03696363 319.50656128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03696364 319.50659180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03696365 319.50662231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03696366 319.50662231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03696367 319.50662231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03696368 319.50665283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03696369 319.50665283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03696370 319.50668335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03696371 319.50668335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03696372 319.50671387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03696373 319.50671387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03696374 319.50674438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03696375 319.50674438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03696376 319.50677490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03696377 319.50677490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03696378 319.50680542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03696379 319.50680542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03696380 319.50680542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03696381 319.50680542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03696382 319.50683594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03696383 319.50683594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03696384 319.50686646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03696385 319.50689697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03696386 319.50692749 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03696387 319.50692749 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03696388 319.50695801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03696389 319.50695801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03696390 319.50695801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03696391 319.50695801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03696392 319.50698853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03696393 319.50698853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03696394 319.50701904 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03696395 319.50701904 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03696396 319.50704956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03696397 319.50704956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03696398 319.50708008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03696399 319.50708008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03696400 319.50711060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03696401 319.50711060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03696402 319.50711060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03696403 319.50711060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03696404 319.50714111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03696405 319.50717163 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03696406 319.50720215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03696407 319.50720215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03696408 319.50723267 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03696409 319.50723267 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03696410 319.50726318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03696411 319.50726318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03696412 319.50726318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03696413 319.50726318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03696414 319.50729370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03696415 319.50729370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03696416 319.50732422 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03696417 319.50732422 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03696418 319.50735474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03696419 319.50735474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03696420 319.50738525 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03696421 319.50738525 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03696422 319.50741577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03696423 319.50741577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03696424 319.50741577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03696425 319.50744629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03696426 319.50747681 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03696427 319.50747681 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03696428 319.50750732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03696429 319.50750732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03696430 319.50753784 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03696431 319.50753784 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03696432 319.50756836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03696433 319.50756836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03696434 319.50759888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03696435 319.50759888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03696436 319.50759888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03696437 319.50759888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03696438 319.50762939 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03696439 319.50762939 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03696440 319.50765991 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03696441 319.50765991 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03696442 319.50769043 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03696443 319.50769043 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03696444 319.50772095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03696445 319.50775146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03696446 319.50775146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03696447 319.50775146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03696448 319.50778198 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03696449 319.50778198 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03696450 319.50781250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03696451 319.50781250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03696452 319.50784302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03696453 319.50784302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03696454 319.50787354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03696455 319.50787354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03696456 319.50790405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03696457 319.50790405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03696458 319.50790405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03696459 319.50790405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03696460 319.50793457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03696461 319.50793457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03696462 319.50796509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03696463 319.50796509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03696464 319.50799561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03696465 319.50802612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03696466 319.50805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03696467 319.50805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03696468 319.50805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03696469 319.50805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03696470 319.50808716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03696471 319.50808716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03696472 319.50811768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03696473 319.50811768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03696474 319.50814819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03696475 319.50814819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03696476 319.50817871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03696477 319.50817871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03696478 319.50820923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03696479 319.50820923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03696480 319.50820923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03696481 319.50820923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03696482 319.50823975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03696483 319.50823975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03696484 319.50827026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03696485 319.50830078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03696486 319.50833130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03696487 319.50833130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03696488 319.50836182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03696489 319.50836182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03696490 319.50839233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03696491 319.50839233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03696492 319.50839233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03696493 319.50839233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03696494 319.50842285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03696495 319.50842285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03696496 319.50845337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03696497 319.50845337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03696498 319.50848389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03696499 319.50848389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03696500 319.50851440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03696501 319.50851440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03696502 319.50854492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03696503 319.50854492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03696504 319.50854492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03696505 319.50857544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03696506 319.50860596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03696507 319.50860596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03696508 319.50863647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03696509 319.50863647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03696510 319.50866699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03696511 319.50866699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03696512 319.50869751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03696513 319.50869751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03696514 319.50869751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03696515 319.50869751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03696516 319.50872803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03696517 319.50872803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03696518 319.50875854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03696519 319.50875854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03696520 319.50878906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03696521 319.50878906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03696522 319.50881958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03696523 319.50881958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03696524 319.50885010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03696525 319.50885010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03696526 319.50888062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03696527 319.50888062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03696528 319.50891113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03696529 319.50891113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03696530 319.50894165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03696531 319.50894165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03696532 319.50897217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03696533 319.50897217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03696534 319.50900269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03696535 319.50900269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03696536 319.50900269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03696537 319.50900269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03696538 319.50903320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03696539 319.50903320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03696540 319.50906372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03696541 319.50906372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03696542 319.50909424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03696543 319.50912476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03696544 319.50915527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03696545 319.50915527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03696546 319.50918579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03696547 319.50918579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03696548 319.50918579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03696549 319.50918579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03696550 319.50921631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03696551 319.50921631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03696552 319.50924683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03696553 319.50924683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03696554 319.50927734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03696555 319.50927734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03696556 319.50930786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03696557 319.50930786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03696558 319.50933838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03696559 319.50933838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03696560 319.50933838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03696561 319.50936890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03696562 319.50939941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03696563 319.50939941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03696564 319.50942993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03696565 319.50942993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03696566 319.50946045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03696567 319.50946045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03696568 319.50949097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03696569 319.50949097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03696570 319.50949097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03696571 319.50949097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03696572 319.50952148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03696573 319.50952148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03696574 319.50955200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03696575 319.50955200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03696576 319.50958252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03696577 319.50958252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03696578 319.50961304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03696579 319.50961304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03696580 319.50964355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03696581 319.50964355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03696582 319.50967407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03696583 319.50967407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03696584 319.50970459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03696585 319.50970459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03696586 319.50973511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03696587 319.50973511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03696588 319.50976563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03696589 319.50976563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03696590 319.50979614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03696591 319.50979614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03696592 319.50979614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03696593 319.50979614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03696594 319.50982666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03696595 319.50982666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03696596 319.50985718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03696597 319.50988770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03696598 319.50991821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03696599 319.50991821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03696600 319.50994873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03696601 319.50994873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03696602 319.50997925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03696603 319.50997925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03696604 319.50997925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03696605 319.50997925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03696606 319.51000977 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03696607 319.51000977 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03696608 319.51004028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03696609 319.51004028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03696610 319.51007080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03696611 319.51007080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03696612 319.51010132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03696613 319.51010132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03696614 319.51013184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03696615 319.51013184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03696616 319.51013184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03696617 319.51016235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03696618 319.51019287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03696619 319.51019287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03696620 319.51022339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03696621 319.51022339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03696622 319.51025391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03696623 319.51025391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03696624 319.51028442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03696625 319.51028442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03696626 319.51028442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03696627 319.51028442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03696628 319.51031494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03696629 319.51031494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03696630 319.51034546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03696631 319.51034546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03696632 319.51037598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03696633 319.51037598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03696634 319.51040649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03696635 319.51043701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03696636 319.51043701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03696637 319.51043701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03696638 319.51046753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03696639 319.51046753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03696640 319.51049805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03696641 319.51049805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03696642 319.51052856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03696643 319.51052856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03696644 319.51055908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03696645 319.51055908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03696646 319.51058960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03696647 319.51058960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03696648 319.51058960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03696649 319.51058960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03696650 319.51062012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03696651 319.51062012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03696652 319.51065063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03696653 319.51065063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03696654 319.51068115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03696655 319.51068115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03696656 319.51074219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03696657 319.51074219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03696658 319.51077271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03696659 319.51077271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03696660 319.51077271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03696661 319.51077271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03696662 319.51080322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03696663 319.51080322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03696664 319.51083374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03696665 319.51083374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03696666 319.51086426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03696667 319.51086426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03696668 319.51089478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03696669 319.51089478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03696670 319.51092529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03696671 319.51092529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03696672 319.51092529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03696673 319.51092529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03696674 319.51095581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03696675 319.51098633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03696676 319.51101685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03696677 319.51101685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03696678 319.51104736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03696679 319.51104736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03696680 319.51107788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03696681 319.51107788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03696682 319.51107788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03696683 319.51107788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03696684 319.51110840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03696685 319.51110840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03696686 319.51113892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03696687 319.51113892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03696688 319.51116943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03696689 319.51116943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03696690 319.51119995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03696691 319.51123047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03696692 319.51123047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03696693 319.51123047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03696694 319.51126099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03696695 319.51126099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03696696 319.51129150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03696697 319.51129150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03696698 319.51132202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03696699 319.51132202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03696700 319.51135254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03696701 319.51135254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03696702 319.51138306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03696703 319.51138306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03696704 319.51141357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03696705 319.51141357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03696706 319.51141357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03696707 319.51141357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03696708 319.51144409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03696709 319.51144409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03696710 319.51147461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03696711 319.51150513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03696712 319.51153564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03696713 319.51153564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03696714 319.51156616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03696715 319.51156616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03696716 319.51156616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03696717 319.51156616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03696718 319.51159668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03696719 319.51159668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03696720 319.51162720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03696721 319.51162720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03696722 319.51165771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03696723 319.51165771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03696724 319.51168823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03696725 319.51171875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03696726 319.51171875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03696727 319.51171875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03696728 319.51174927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03696729 319.51174927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03696730 319.51177979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03696731 319.51177979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03696732 319.51181030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03696733 319.51181030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03696734 319.51184082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03696735 319.51184082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03696736 319.51187134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03696737 319.51187134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03696738 319.51187134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03696739 319.51187134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03696740 319.51190186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03696741 319.51190186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03696742 319.51193237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03696743 319.51193237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03696744 319.51196289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03696745 319.51199341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03696746 319.51202393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03696747 319.51202393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03696748 319.51202393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03696749 319.51202393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03696750 319.51205444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03696751 319.51205444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03696752 319.51208496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03696753 319.51208496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03696754 319.51211548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03696755 319.51211548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03696756 319.51214600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03696757 319.51214600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03696758 319.51217651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03696759 319.51217651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03696760 319.51220703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03696761 319.51220703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03696762 319.51220703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03696763 319.51220703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03696764 319.51223755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03696765 319.51226807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03696766 319.51229858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03696767 319.51229858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03696768 319.51232910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03696769 319.51232910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03696770 319.51235962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03696771 319.51235962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03696772 319.51235962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03696773 319.51235962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03696774 319.51239014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03696775 319.51239014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03696776 319.51242065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03696777 319.51242065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03696778 319.51245117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03696779 319.51245117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03696780 319.51248169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03696781 319.51248169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03696782 319.51251221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03696783 319.51251221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03696784 319.51251221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03696785 319.51254272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03696786 319.51257324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03696787 319.51257324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03696788 319.51260376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03696789 319.51260376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03696790 319.51263428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03696791 319.51263428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03696792 319.51266479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03696793 319.51266479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03696794 319.51266479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03696795 319.51266479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03696796 319.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03696797 319.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03696798 319.51272583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03696799 319.51272583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03696800 319.51275635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03696801 319.51278687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03696802 319.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03696803 319.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03696804 319.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03696805 319.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03696806 319.51284790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03696807 319.51284790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03696808 319.51287842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03696809 319.51287842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03696810 319.51290894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03696811 319.51290894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03696812 319.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03696813 319.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03696814 319.51296997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03696815 319.51296997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03696816 319.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03696817 319.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03696818 319.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03696819 319.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03696820 319.51303101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03696821 319.51306152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03696822 319.51309204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03696823 319.51309204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03696824 319.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03696825 319.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03696826 319.51315308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03696827 319.51315308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03696828 319.51315308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03696829 319.51315308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03696830 319.51318359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03696831 319.51318359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03696832 319.51321411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03696833 319.51321411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03696834 319.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03696835 319.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03696836 319.51327515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03696837 319.51327515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03696838 319.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03696839 319.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03696840 319.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03696841 319.51333618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03696842 319.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03696843 319.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03696844 319.51339722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03696845 319.51339722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03696846 319.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03696847 319.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03696848 319.51345825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03696849 319.51345825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03696850 319.51345825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03696851 319.51345825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03696852 319.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03696853 319.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03696854 319.51351929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03696855 319.51351929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03696856 319.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03696857 319.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03696858 319.51358032 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03696859 319.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03696860 319.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03696861 319.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03696862 319.51364136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03696863 319.51364136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03696864 319.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03696865 319.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03696866 319.51370239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03696867 319.51370239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03696868 319.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03696869 319.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03696870 319.51376343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03696871 319.51376343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03696872 319.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03696873 319.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03696874 319.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03696875 319.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03696876 319.51382446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03696877 319.51382446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03696878 319.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03696879 319.51388550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03696880 319.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03696881 319.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03696882 319.51394653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03696883 319.51394653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03696884 319.51394653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03696885 319.51394653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03696886 319.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03696887 319.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03696888 319.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03696889 319.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03696890 319.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03696891 319.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03696892 319.51406860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03696893 319.51406860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03696894 319.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03696895 319.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03696896 319.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03696897 319.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03696898 319.51412964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03696899 319.51412964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03696900 319.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03696901 319.51419067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03696902 319.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03696903 319.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03696904 319.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03696905 319.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03696906 319.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03696907 319.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03696908 319.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03696909 319.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03696910 319.51431274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03696911 319.51431274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03696912 319.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03696913 319.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03696914 319.51437378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03696915 319.51437378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03696916 319.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03696917 319.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03696918 319.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03696919 319.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03696920 319.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03696921 319.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03696922 319.51449585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03696923 319.51449585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03696924 319.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03696925 319.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03696926 319.51455688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03696927 319.51455688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03696928 319.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03696929 319.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03696930 319.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03696931 319.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03696932 319.51461792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03696933 319.51461792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03696934 319.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03696935 319.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03696936 319.51467896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03696937 319.51467896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03696938 319.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03696939 319.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03696940 319.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03696941 319.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03696942 319.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03696943 319.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03696944 319.51480103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03696945 319.51480103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03696946 319.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03696947 319.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03696948 319.51486206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03696949 319.51486206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03696950 319.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03696951 319.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03696952 319.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03696953 319.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03696954 319.51492310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03696955 319.51492310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03696956 319.51495361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03696957 319.51495361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03696958 319.51498413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03696959 319.51498413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03696960 319.51501465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03696961 319.51504517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03696962 319.51504517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03696963 319.51504517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03696964 319.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03696965 319.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03696966 319.51510620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03696967 319.51510620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03696968 319.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03696969 319.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03696970 319.51516724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03696971 319.51516724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03696972 319.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03696973 319.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03696974 319.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03696975 319.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03696976 319.51522827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03696977 319.51522827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03696978 319.51525879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03696979 319.51525879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03696980 319.51528931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03696981 319.51531982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03696982 319.51535034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03696983 319.51535034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03696984 319.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03696985 319.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03696986 319.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03696987 319.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03696988 319.51541138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03696989 319.51541138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03696990 319.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03696991 319.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03696992 319.51547241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03696993 319.51547241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03696994 319.51550293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03696995 319.51550293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03696996 319.51553345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03696997 319.51553345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03696998 319.51553345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03696999 319.51556396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03697000 319.51559448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03697001 319.51559448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03697002 319.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03697003 319.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03697004 319.51565552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03697005 319.51565552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03697006 319.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03697007 319.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03697008 319.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03697009 319.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03697010 319.51571655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03697011 319.51571655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03697012 319.51574707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03697013 319.51574707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03697014 319.51577759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03697015 319.51577759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03697016 319.51580811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03697017 319.51580811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03697018 319.51583862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03697019 319.51583862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03697020 319.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03697021 319.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03697022 319.51589966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03697023 319.51589966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03697024 319.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03697025 319.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03697026 319.51596069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03697027 319.51596069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03697028 319.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03697029 319.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03697030 319.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03697031 319.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03697032 319.51602173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03697033 319.51602173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03697034 319.51605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03697035 319.51605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03697036 319.51608276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03697037 319.51608276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03697038 319.51611328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03697039 319.51614380 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03697040 319.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03697041 319.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03697042 319.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03697043 319.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03697044 319.51620483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03697045 319.51620483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03697046 319.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03697047 319.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03697048 319.51626587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03697049 319.51626587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03697050 319.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03697051 319.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03697052 319.51632690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03697053 319.51632690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03697054 319.51632690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03697055 319.51632690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03697056 319.51635742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03697057 319.51635742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03697058 319.51638794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03697059 319.51641846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03697060 319.51644897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03697061 319.51644897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03697062 319.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03697063 319.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03697064 319.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03697065 319.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03697066 319.51651001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03697067 319.51651001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03697068 319.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03697069 319.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03697070 319.51657104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03697071 319.51657104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03697072 319.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03697073 319.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03697074 319.51663208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03697075 319.51663208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03697076 319.51663208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03697077 319.51663208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03697078 319.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03697079 319.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03697080 319.51669312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03697081 319.51672363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03697082 319.51675415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03697083 319.51675415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03697084 319.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03697085 319.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03697086 319.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03697087 319.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03697088 319.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03697089 319.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03697090 319.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03697091 319.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03697092 319.51687622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03697093 319.51687622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03697094 319.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03697095 319.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03697096 319.51693726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03697097 319.51693726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03697098 319.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03697099 319.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03697100 319.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03697101 319.51699829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03697102 319.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03697103 319.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03697104 319.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03697105 319.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03697106 319.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03697107 319.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03697108 319.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03697109 319.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03697110 319.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03697111 319.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03697112 319.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03697113 319.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03697114 319.51718140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03697115 319.51718140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03697116 319.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03697117 319.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03697118 319.51724243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03697119 319.51724243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03697120 319.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03697121 319.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03697122 319.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03697123 319.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03697124 319.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03697125 319.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03697126 319.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03697127 319.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03697128 319.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03697129 319.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03697130 319.51742554 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03697131 319.51742554 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03697132 319.51742554 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03697133 319.51742554 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03697134 319.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03697135 319.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03697136 319.51748657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03697137 319.51748657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03697138 319.51751709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03697139 319.51751709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03697140 319.51754761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03697141 319.51754761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03697142 319.51760864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03697143 319.51760864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03697144 319.51760864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03697145 319.51760864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03697146 319.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03697147 319.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03697148 319.51766968 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03697149 319.51766968 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03697150 319.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03697151 319.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03697152 319.51773071 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03697153 319.51773071 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03697154 319.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03697155 319.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03697156 319.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03697157 319.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03697158 319.51779175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03697159 319.51779175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03697160 319.51782227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03697161 319.51782227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03697162 319.51785278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03697163 319.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03697164 319.51791382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03697165 319.51791382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03697166 319.51791382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03697167 319.51791382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03697168 319.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03697169 319.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03697170 319.51797485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03697171 319.51797485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03697172 319.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03697173 319.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03697174 319.51803589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03697175 319.51803589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03697176 319.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03697177 319.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03697178 319.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03697179 319.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03697180 319.51809692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03697181 319.51809692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03697182 319.51812744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03697183 319.51815796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03697184 319.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03697185 319.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03697186 319.51821899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03697187 319.51821899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03697188 319.51821899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03697189 319.51821899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03697190 319.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03697191 319.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03697192 319.51828003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03697193 319.51828003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03697194 319.51831055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03697195 319.51831055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03697196 319.51834106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03697197 319.51834106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03697198 319.51837158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03697199 319.51837158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03697200 319.51840210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03697201 319.51840210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03697202 319.51840210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03697203 319.51843262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03697204 319.51846313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03697205 319.51846313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03697206 319.51849365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03697207 319.51849365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03697208 319.51852417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03697209 319.51852417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03697210 319.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03697211 319.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03697212 319.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03697213 319.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03697214 319.51858521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03697215 319.51858521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03697216 319.51861572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03697217 319.51861572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03697218 319.51864624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03697219 319.51864624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03697220 319.51867676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03697221 319.51867676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03697222 319.51870728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03697223 319.51870728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03697224 319.51870728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03697225 319.51873779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03697226 319.51876831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03697227 319.51876831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03697228 319.51879883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03697229 319.51879883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03697230 319.51882935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03697231 319.51882935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03697232 319.51885986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03697233 319.51885986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03697234 319.51885986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03697235 319.51885986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03697236 319.51889038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03697237 319.51889038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03697238 319.51892090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03697239 319.51892090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03697240 319.51895142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03697241 319.51895142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03697242 319.51898193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03697243 319.51898193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03697244 319.51901245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03697245 319.51901245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03697246 319.51904297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03697247 319.51904297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03697248 319.51907349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03697249 319.51907349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03697250 319.51910400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03697251 319.51910400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03697252 319.51913452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03697253 319.51913452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03697254 319.51916504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03697255 319.51916504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03697256 319.51919556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03697257 319.51919556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03697258 319.51919556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03697259 319.51919556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03697260 319.51922607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03697261 319.51922607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03697262 319.51925659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03697263 319.51925659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03697264 319.51928711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03697265 319.51931763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03697266 319.51934814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03697267 319.51934814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03697268 319.51934814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03697269 319.51934814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03697270 319.51937866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03697271 319.51937866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03697272 319.51940918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03697273 319.51940918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03697274 319.51943970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03697275 319.51943970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03697276 319.51947021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03697277 319.51947021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03697278 319.51950073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03697279 319.51950073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03697280 319.51950073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03697281 319.51950073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03697282 319.51953125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03697283 319.51953125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03697284 319.51956177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03697285 319.51956177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03697286 319.51959229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03697287 319.51962280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03697288 319.51965332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03697289 319.51965332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03697290 319.51965332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03697291 319.51965332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03697292 319.51968384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03697293 319.51968384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03697294 319.51971436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03697295 319.51971436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03697296 319.51974487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03697297 319.51974487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03697298 319.51977539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03697299 319.51977539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03697300 319.51980591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03697301 319.51980591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03697302 319.51980591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03697303 319.51980591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03697304 319.51983643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03697305 319.51983643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03697306 319.51986694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03697307 319.51989746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03697308 319.51992798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03697309 319.51992798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03697310 319.51995850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03697311 319.51995850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03697312 319.51998901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03697313 319.51998901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03697314 319.51998901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03697315 319.51998901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03697316 319.52001953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03697317 319.52001953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03697318 319.52005005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03697319 319.52005005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03697320 319.52008057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03697321 319.52008057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03697322 319.52011108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03697323 319.52011108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03697324 319.52014160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03697325 319.52014160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03697326 319.52014160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03697327 319.52014160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03697328 319.52020264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03697329 319.52020264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03697330 319.52023315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03697331 319.52023315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03697332 319.52026367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03697333 319.52026367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03697334 319.52029419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03697335 319.52029419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03697336 319.52029419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03697337 319.52029419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03697338 319.52032471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03697339 319.52032471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03697340 319.52035522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03697341 319.52035522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03697342 319.52038574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03697343 319.52038574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03697344 319.52041626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03697345 319.52041626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03697346 319.52044678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03697347 319.52044678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03697348 319.52047729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03697349 319.52047729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03697350 319.52050781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03697351 319.52050781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03697352 319.52053833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03697353 319.52053833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03697354 319.52056885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03697355 319.52056885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03697356 319.52059937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03697357 319.52059937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03697358 319.52059937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03697359 319.52059937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03697360 319.52062988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03697361 319.52062988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03697362 319.52066040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03697363 319.52066040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03697364 319.52069092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03697365 319.52069092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03697366 319.52072144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03697367 319.52075195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03697368 319.52078247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03697369 319.52078247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03697370 319.52078247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03697371 319.52078247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03697372 319.52081299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03697373 319.52081299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03697374 319.52084351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03697375 319.52084351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03697376 319.52087402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03697377 319.52087402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03697378 319.52090454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03697379 319.52090454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03697380 319.52093506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03697381 319.52093506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03697382 319.52093506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03697383 319.52093506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03697384 319.52096558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03697385 319.52099609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03697386 319.52102661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03697387 319.52102661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03697388 319.52105713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03697389 319.52105713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03697390 319.52108765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03697391 319.52108765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03697392 319.52108765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03697393 319.52108765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03697394 319.52111816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03697395 319.52111816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03697396 319.52114868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03697397 319.52114868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03697398 319.52117920 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03697399 319.52117920 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03697400 319.52120972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03697401 319.52120972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03697402 319.52124023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03697403 319.52124023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03697404 319.52127075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03697405 319.52127075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03697406 319.52130127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03697407 319.52130127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03697408 319.52133179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03697409 319.52133179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03697410 319.52136230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03697411 319.52136230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03697412 319.52139282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03697413 319.52139282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03697414 319.52139282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03697415 319.52139282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03697416 319.52142334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03697417 319.52142334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03697418 319.52145386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03697419 319.52145386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03697420 319.52148438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03697421 319.52151489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03697422 319.52154541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03697423 319.52154541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03697424 319.52157593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -03697425 319.52157593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -03697426 319.52157593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -03697427 319.52157593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -03697428 319.52160645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -03697429 319.52160645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -03697430 319.52163696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -03697431 319.52163696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -03697432 319.52166748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -03697433 319.52166748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -03697434 319.52169800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -03697435 319.52169800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -03697436 319.52172852 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -03697437 319.52172852 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -03697438 319.52175903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -03697439 319.52175903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -03697440 319.52178955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -03697441 319.52178955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -03697442 319.52182007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -03697443 319.52182007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -03697444 319.52185059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -03697445 319.52185059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -03697446 319.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -03697447 319.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -03697448 319.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -03697449 319.52188110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -03697450 319.52191162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -03697451 319.52191162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -03697452 319.52194214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -03697453 319.52194214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -03697454 319.52197266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -03697455 319.52197266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -03697456 319.52200317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -03697457 319.52203369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -03697458 319.52203369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -03697459 319.52203369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -03697460 319.52206421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -03697461 319.52206421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -03697462 319.52209473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -03697463 319.52209473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -03697464 319.52212524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -03697465 319.52212524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -03697466 319.52215576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -03697467 319.52215576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -03697468 319.52218628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -03697469 319.52218628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -03697470 319.52221680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -03697471 319.52221680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -03697472 319.52221680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -03697473 319.52221680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -03697474 319.52224731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -03697475 319.52224731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -03697476 319.52227783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -03697477 319.52230835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -03697478 319.52233887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -03697479 319.52233887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -03697480 319.52236938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -03697481 319.52236938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -03697482 319.52236938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -03697483 319.52236938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -03697484 319.52239990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -03697485 319.52239990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -03697486 319.52243042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -03697487 319.52243042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -03697488 319.52246094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -03697489 319.52246094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -03697490 319.52249146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -03697491 319.52249146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -03697492 319.52252197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -03697493 319.52252197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -03697494 319.52255249 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -03697495 319.52255249 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -03697496 319.52258301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -03697497 319.52258301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -03697498 319.52261353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -03697499 319.52261353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -03697500 319.52264404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -03697501 319.52264404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -03697502 319.52267456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -03697503 319.52267456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -03697504 319.52267456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -03697505 319.52267456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -03697506 319.52270508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -03697507 319.52270508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -03697508 319.52273560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -03697509 319.52273560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -03697510 319.52276611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -03697511 319.52279663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -03697512 319.52282715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -03697513 319.52282715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -03697514 319.52282715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -03697515 319.52282715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -03697516 319.52285767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -03697517 319.52285767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -03697518 319.52288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -03697519 319.52288818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -03697520 319.52291870 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -03697521 319.52291870 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -03697522 319.52294922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -03697523 319.52294922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -03697524 319.52297974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -03697525 319.52297974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -03697526 319.52301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -03697527 319.52301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -03697528 319.52301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -03697529 319.52301025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -03697530 319.52307129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -03697531 319.52307129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -03697532 319.52310181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -03697533 319.52310181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -03697534 319.52313232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -03697535 319.52313232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -03697536 319.52316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -03697537 319.52316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -03697538 319.52316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -03697539 319.52316284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -03697540 319.52319336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -03697541 319.52319336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -03697542 319.52322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -03697543 319.52322388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -03697544 319.52325439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -03697545 319.52325439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -03697546 319.52328491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -03697547 319.52328491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -03697548 319.52331543 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -03697549 319.52331543 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -03697550 319.52334595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -03697551 319.52334595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -03697552 319.52337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -03697553 319.52337646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -03697554 319.52340698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -03697555 319.52340698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -03697556 319.52343750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -03697557 319.52343750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -03697558 319.52346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -03697559 319.52346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -03697560 319.52346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -03697561 319.52346802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -03697562 319.52349854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -03697563 319.52349854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -03697564 319.52352905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -03697565 319.52352905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -03697566 319.52355957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -03697567 319.52359009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -03697568 319.52362061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -03697569 319.52362061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -03697570 319.52362061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -03697571 319.52362061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -03697572 319.52365112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -03697573 319.52365112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -03697574 319.52368164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -03697575 319.52368164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -03697576 319.52371216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -03697577 319.52371216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -03697578 319.52374268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -03697579 319.52374268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -03697580 319.52377319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -03697581 319.52377319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -03697582 319.52380371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -03697583 319.52380371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -03697584 319.52380371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -03697585 319.52383423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -03697586 319.52386475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -03697587 319.52386475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -03697588 319.52389526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -03697589 319.52389526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -03697590 319.52392578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -03697591 319.52392578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -03697592 319.52395630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -03697593 319.52395630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -03697594 319.52395630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -03697595 319.52395630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -03697596 319.52398682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -03697597 319.52398682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -03697598 319.52401733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -03697599 319.52401733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -03697600 319.52404785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -03697601 319.52404785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -03697602 319.52407837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -03697603 319.52407837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -03697604 319.52410889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -03697605 319.52410889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -03697606 319.52413940 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -03697607 319.52413940 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -03697608 319.52416992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -03697609 319.52416992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -03697610 319.52420044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -03697611 319.52420044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -03697612 319.52423096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -03697613 319.52423096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -03697614 319.52426147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -03697615 319.52426147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -03697616 319.52426147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -03697617 319.52426147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -03697618 319.52429199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -03697619 319.52429199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -03697620 319.52432251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -03697621 319.52432251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -03697622 319.52435303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -03697623 319.52438354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -03697624 319.52441406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -03697625 319.52441406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -03697626 319.52441406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -03697627 319.52441406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -03697628 319.52444458 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -03697629 319.52444458 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -03697630 319.52447510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -03697631 319.52447510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -03697632 319.52450562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -03697633 319.52450562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -03697634 319.52453613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -03697635 319.52453613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -03697636 319.52456665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -03697637 319.52456665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -03697638 319.52459717 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -03697639 319.52459717 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -03697640 319.52462769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -03697641 319.52462769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -03697642 319.52465820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -03697643 319.52465820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -03697644 319.52468872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -03697645 319.52468872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -03697646 319.52471924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -03697647 319.52471924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -03697648 319.52474976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -03697649 319.52474976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -03697650 319.52474976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -03697651 319.52478027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -03697652 319.52481079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -03697653 319.52481079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -03697654 319.52484131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -03697655 319.52484131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -03697656 319.52487183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -03697657 319.52487183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -03697658 319.52490234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -03697659 319.52490234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -03697660 319.52490234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -03697661 319.52490234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -03697662 319.52493286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -03697663 319.52493286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -03697664 319.52496338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -03697665 319.52499390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -03697666 319.52502441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -03697667 319.52502441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -03697668 319.52505493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -03697669 319.52505493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -03697670 319.52505493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -03697671 319.52505493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -03697672 319.52508545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -03697673 319.52508545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -03697674 319.52511597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -03697675 319.52511597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -03697676 319.52514648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -03697677 319.52514648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -03697678 319.52517700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -03697679 319.52520752 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -03697680 319.52520752 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -03697681 319.52520752 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -03697682 319.52523804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -03697683 319.52523804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -03697684 319.52526855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -03697685 319.52526855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -03697686 319.52529907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -03697687 319.52529907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -03697688 319.52532959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -03697689 319.52532959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -03697690 319.52536011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -03697691 319.52536011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -03697692 319.52539063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -03697693 319.52539063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -03697694 319.52542114 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -03697695 319.52542114 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -03697696 319.52545166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -03697697 319.52545166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -03697698 319.52548218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -03697699 319.52548218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -03697700 319.52551270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -03697701 319.52551270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -03697702 319.52554321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -03697703 319.52554321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -03697704 319.52554321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -03697705 319.52554321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -03697706 319.52557373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -03697707 319.52560425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -03697708 319.52563477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -03697709 319.52563477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -03697710 319.52566528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -03697711 319.52566528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -03697712 319.52569580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -03697713 319.52569580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -03697714 319.52569580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -03697715 319.52569580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -03697716 319.52572632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -03697717 319.52572632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -03697718 319.52575684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -03697719 319.52575684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -03697720 319.52578735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -03697721 319.52581787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -03697722 319.52584839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -03697723 319.52584839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -03697724 319.52584839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -03697725 319.52584839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -03697726 319.52587891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -03697727 319.52587891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -03697728 319.52590942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -03697729 319.52590942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -03697730 319.52593994 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -03697731 319.52593994 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -03697732 319.52597046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -03697733 319.52597046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -03697734 319.52600098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -03697735 319.52600098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -03697736 319.52600098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -03697737 319.52603149 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -03697738 319.52606201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -03697739 319.52606201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -03697740 319.52609253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -03697741 319.52609253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -03697742 319.52612305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -03697743 319.52612305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -03697744 319.52615356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -03697745 319.52615356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -03697746 319.52618408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -03697747 319.52618408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -03697748 319.52618408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -03697749 319.52618408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -03697750 319.52621460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -03697751 319.52624512 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -03697752 319.52627563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -03697753 319.52627563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -03697754 319.52630615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -03697755 319.52630615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -03697756 319.52633667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -03697757 319.52633667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -03697758 319.52633667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -03697759 319.52633667 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -03697760 319.52636719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -03697761 319.52636719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -03697762 319.52639771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -03697763 319.52639771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -03697764 319.52642822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -03697765 319.52642822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -03697766 319.52645874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -03697767 319.52648926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -03697768 319.52648926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -03697769 319.52648926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -03697770 319.52651978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -03697771 319.52651978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -03697772 319.52655029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -03697773 319.52655029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -03697774 319.52658081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -03697775 319.52658081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -03697776 319.52661133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -03697777 319.52661133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -03697778 319.52664185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -03697779 319.52664185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -03697780 319.52664185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -03697781 319.52667236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -03697782 319.52670288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -03697783 319.52670288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -03697784 319.52673340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -03697785 319.52673340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -03697786 319.52676392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -03697787 319.52676392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -03697788 319.52679443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -03697789 319.52679443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -03697790 319.52679443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -03697791 319.52679443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -03697792 319.52682495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -03697793 319.52682495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -03697794 319.52685547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -03697795 319.52685547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -03697796 319.52691650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -03697797 319.52691650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -03697798 319.52694702 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -03697799 319.52694702 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -03697800 319.52697754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -03697801 319.52697754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -03697802 319.52697754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -03697803 319.52697754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -03697804 319.52700806 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -03697805 319.52700806 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -03697806 319.52703857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -03697807 319.52703857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -03697808 319.52706909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -03697809 319.52706909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -03697810 319.52709961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -03697811 319.52709961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -03697812 319.52713013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -03697813 319.52713013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -03697814 319.52716064 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -03697815 319.52716064 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -03697816 319.52719116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -03697817 319.52719116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -03697818 319.52722168 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -03697819 319.52722168 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -03697820 319.52725220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -03697821 319.52725220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -03697822 319.52728271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -03697823 319.52728271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -03697824 319.52728271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -03697825 319.52728271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -03697826 319.52731323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -03697827 319.52731323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -03697828 319.52737427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -03697829 319.52737427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -03697830 319.52740479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -03697831 319.52740479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -03697832 319.52743530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -03697833 319.52743530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -03697834 319.52743530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -03697835 319.52743530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -03697836 319.52746582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -03697837 319.52746582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -03697838 319.52749634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -03697839 319.52749634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -03697840 319.52752686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -03697841 319.52752686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -03697842 319.52755737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -03697843 319.52758789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -03697844 319.52761841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -03697845 319.52761841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -03697846 319.52761841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -03697847 319.52761841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -03697848 319.52764893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -03697849 319.52764893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -03697850 319.52767944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -03697851 319.52767944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -03697852 319.52770996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -03697853 319.52770996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -03697854 319.52774048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -03697855 319.52774048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -03697856 319.52777100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -03697857 319.52777100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -03697858 319.52780151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -03697859 319.52780151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -03697860 319.52783203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -03697861 319.52783203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -03697862 319.52786255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -03697863 319.52786255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -03697864 319.52789307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -03697865 319.52789307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -03697866 319.52792358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -03697867 319.52792358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -03700782 319.57128906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -03700783 319.57128906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa90 -03700784 319.57131958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -03700785 319.57131958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa0 -03700786 319.57135010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -03700787 319.57135010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab0 -03700788 319.57141113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -03700789 319.57141113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac0 -03700790 319.57144165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -03700791 319.57144165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad0 -03700792 319.57144165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -03700793 319.57144165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae0 -03700794 319.57147217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -03700795 319.57147217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf0 -03700796 319.57150269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -03700797 319.57150269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab00 -03700798 319.57153320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -03700799 319.57153320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab10 -03700800 319.57156372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -03700801 319.57159424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab20 -03700802 319.57162476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -03700803 319.57162476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab30 -03700804 319.57162476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -03700805 319.57162476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab40 -03700806 319.57165527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -03700807 319.57165527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab50 -03700808 319.57168579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -03700809 319.57168579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab60 -03700810 319.57171631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -03700811 319.57171631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab70 -03700812 319.57174683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -03700813 319.57174683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab80 -03700814 319.57177734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -03700815 319.57177734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xab90 -03700816 319.57180786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -03700817 319.57180786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba0 -03700818 319.57183838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -03700819 319.57183838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -03700820 319.57186890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -03700821 319.57186890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -03700822 319.57189941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -03700823 319.57189941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -03700824 319.57192993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -03700825 319.57192993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -03706053 319.64575195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f40 -03706054 319.64578247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -03706055 319.64578247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f50 -03706056 319.64581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -03706057 319.64581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f60 -03706058 319.64581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -03706059 319.64581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f70 -03706060 319.64584351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -03706061 319.64587402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f80 -03706062 319.64587402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -03706063 319.64590454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f90 -03706064 319.64593506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -03706065 319.64593506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fa0 -03706066 319.64596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -03706067 319.64596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fb0 -03706068 319.64596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -03706069 319.64596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fc0 -03706070 319.64599609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -03706071 319.64599609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fd0 -03706072 319.64602661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -03706073 319.64602661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14fe0 -03706074 319.64605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -03706075 319.64605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ff0 -03706076 319.64608765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -03706077 319.64608765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15000 -03706078 319.64611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -03706079 319.64611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15010 -03706080 319.64611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -03706081 319.64611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15020 -03706082 319.64614868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -03706083 319.64614868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15030 -03706084 319.64617920 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -03706085 319.64620972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15040 -03706086 319.64624023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -03706087 319.64624023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15050 -03706088 319.64627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -03706089 319.64627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15060 -03706090 319.64627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -03706091 319.64627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15070 -03706092 319.64630127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -03706093 319.64630127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15080 -03706094 319.64633179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -03706095 319.64633179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15090 -03706096 319.64636230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x150a0 -03710950 319.71496582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -03710951 319.71496582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e850 -03710952 319.71499634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -03710953 319.71499634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e860 -03710954 319.71502686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -03710955 319.71502686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e870 -03710956 319.71505737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -03710957 319.71505737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e880 -03710958 319.71508789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -03710959 319.71508789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e890 -03710960 319.71511841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -03710961 319.71511841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8a0 -03710962 319.71514893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -03710963 319.71514893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8b0 -03710964 319.71517944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -03710965 319.71517944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8c0 -03710966 319.71520996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -03710967 319.71520996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8d0 -03710968 319.71524048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -03710969 319.71524048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8e0 -03710970 319.71524048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -03710971 319.71524048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e8f0 -03710972 319.71527100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -03710973 319.71527100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e900 -03710974 319.71530151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -03710975 319.71530151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e910 -03710976 319.71533203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -03710977 319.71536255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e920 -03710978 319.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -03710979 319.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e930 -03710980 319.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -03710981 319.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e940 -03710982 319.71542358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -03710983 319.71542358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e950 -03710984 319.71545410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -03710985 319.71545410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e960 -03710986 319.71548462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -03710987 319.71548462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e970 -03710988 319.71551514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -03710989 319.71551514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e980 -03710990 319.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -03710991 319.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e990 -03710992 319.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -03710993 319.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9a0 -03738512 319.93716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd8 -03738513 319.93716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -03738514 319.93716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c9f0 -03738515 319.93716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be8 -03738516 319.93716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be8 -03738517 319.93719482 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -03738518 319.93719482 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca00 -03738519 319.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf8 -03738520 319.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf8 -03738521 319.93722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -03738522 319.93722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca10 -03738523 319.93722534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c08 -03738524 319.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c08 -03738525 319.93725586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -03738526 319.93725586 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca20 -03738527 319.93728638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c18 -03738528 319.93728638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c18 -03738529 319.93728638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -03738530 319.93728638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca30 -03738531 319.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c28 -03738532 319.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c28 -03738533 319.93731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -03738534 319.93731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca40 -03738535 319.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c38 -03738536 319.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c38 -03738537 319.93734741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -03738538 319.93734741 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca50 -03738539 319.93734741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c48 -03738540 319.93734741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c48 -03738541 319.93737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -03738542 319.93737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca60 -03738543 319.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c58 -03738544 319.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c58 -03738545 319.93740845 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -03738546 319.93740845 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca70 -03738547 319.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c68 -03738548 319.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c68 -03738549 319.93743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -03738550 319.93743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca80 -03738551 319.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c78 -03738552 319.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c78 -03738553 319.93746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -03738554 319.93746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca90 -03738555 319.93746948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c88 -03739665 319.94534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df8 -03739666 319.94534302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd0 -03739667 319.94537354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e08 -03739668 319.94537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -03739669 319.94537354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e08 -03739670 319.94537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe0 -03739671 319.94540405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e18 -03739672 319.94543457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -03739673 319.94543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e18 -03739674 319.94543457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf0 -03739675 319.94543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e28 -03739676 319.94543457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -03739677 319.94543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e28 -03739678 319.94543457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc00 -03739679 319.94546509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e38 -03739680 319.94546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -03739681 319.94546509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e38 -03739682 319.94546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc10 -03739683 319.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e48 -03739684 319.94549561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -03739685 319.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e48 -03739686 319.94549561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc20 -03739687 319.94552612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e58 -03739688 319.94552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -03739689 319.94552612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e58 -03739690 319.94552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc30 -03739691 319.94555664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -03739692 319.94555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -03739693 319.94555664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -03739694 319.94555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc40 -03739695 319.94558716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e78 -03739696 319.94558716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -03739697 319.94558716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e78 -03739698 319.94558716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc50 -03739699 319.94558716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e88 -03739700 319.94558716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -03739701 319.94558716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e88 -03739702 319.94561768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc60 -03739703 319.94561768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e98 -03739704 319.94564819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -03739705 319.94564819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e98 -03739706 319.94564819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc70 -03739707 319.94567871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ea8 -03739708 319.94567871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc80 -03747889 320.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa8 -03747890 320.00408936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -03747891 320.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fa8 -03747892 320.00408936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b30 -03747893 320.00411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb8 -03747894 320.00411987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -03747895 320.00411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fb8 -03747896 320.00411987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b40 -03747897 320.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc8 -03747898 320.00415039 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -03747899 320.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fc8 -03747900 320.00415039 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b50 -03747901 320.00418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd8 -03747902 320.00418091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -03747903 320.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fd8 -03747904 320.00421143 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b60 -03747905 320.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe8 -03747906 320.00421143 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -03747907 320.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21fe8 -03747908 320.00421143 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b70 -03747909 320.00424194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff8 -03747910 320.00424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -03747911 320.00424194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21ff8 -03747912 320.00424194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b80 -03747913 320.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22008 -03747914 320.00427246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -03747915 320.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22008 -03747916 320.00427246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b90 -03747917 320.00430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03747918 320.00430298 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -03747919 320.00430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22018 -03747920 320.00430298 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba0 -03747921 320.00433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03747922 320.00433350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -03747923 320.00433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22028 -03747924 320.00433350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb0 -03747925 320.00436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03747926 320.00436401 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -03747927 320.00436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22038 -03747928 320.00436401 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc0 -03747929 320.00436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03747930 320.00436401 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -03747931 320.00436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22048 -03747932 320.00439453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd0 -03757330 320.07263184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -03757331 320.07263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6e8 -03757332 320.07263184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaf0 -03757333 320.07266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f8 -03757334 320.07266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b6f8 -03757335 320.07266235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -03757336 320.07266235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb00 -03757337 320.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b708 -03757338 320.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b708 -03757339 320.07269287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -03757340 320.07269287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb10 -03757341 320.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b718 -03757342 320.07269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b718 -03757343 320.07269287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -03757344 320.07269287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb20 -03757345 320.07272339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b728 -03757346 320.07272339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b728 -03757347 320.07272339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -03757348 320.07272339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb30 -03757349 320.07275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b738 -03757350 320.07275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b738 -03757351 320.07278442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -03757352 320.07278442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb40 -03757353 320.07278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b748 -03757354 320.07278442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b748 -03757355 320.07281494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -03757356 320.07281494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb50 -03757357 320.07281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b758 -03757358 320.07284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b758 -03757359 320.07284546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -03757360 320.07284546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb60 -03757361 320.07284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b768 -03757362 320.07284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b768 -03757363 320.07284546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -03757364 320.07284546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb70 -03757365 320.07287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b778 -03757366 320.07287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b778 -03757367 320.07287598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -03757368 320.07287598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb80 -03757369 320.07290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b788 -03757370 320.07290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b788 -03757371 320.07290649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -03757372 320.07290649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb90 -03757373 320.07293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b798 -03764477 320.14230347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -03764478 320.14230347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -03764479 320.14233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -03764480 320.14233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -03764481 320.14236450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -03764482 320.14236450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -03764483 320.14239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -03764484 320.14239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x353f8 -03764485 320.14242554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35408 -03764486 320.14242554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35408 -03764487 320.14242554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35418 -03764488 320.14242554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35418 -03764489 320.14245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35428 -03764490 320.14245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35428 -03764491 320.14248657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35438 -03764492 320.14248657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35438 -03764493 320.14251709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35448 -03764494 320.14251709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35448 -03764495 320.14254761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -03764496 320.14254761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -03764497 320.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -03764498 320.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -03764499 320.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -03764500 320.14257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -03764501 320.14260864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35488 -03764502 320.14260864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35488 -03764503 320.14263916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35498 -03764504 320.14266968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35498 -03764505 320.14266968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a8 -03764506 320.14270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a8 -03764507 320.14273071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b8 -03764508 320.14273071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b8 -03764509 320.14273071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c8 -03764510 320.14273071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c8 -03764511 320.14276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d8 -03764512 320.14276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d8 -03764513 320.14279175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e8 -03764514 320.14279175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e8 -03764515 320.14282227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f8 -03764516 320.14282227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f8 -03764517 320.14285278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35508 -03764518 320.14285278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35508 -03764519 320.14288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35518 -03764520 320.14288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35518 -03769613 320.21331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -03769614 320.21331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -03769615 320.21334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -03769616 320.21334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -03769617 320.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -03769618 320.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -03769619 320.21340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -03769620 320.21340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -03769621 320.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -03769622 320.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -03769623 320.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -03769624 320.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -03769625 320.21347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -03769626 320.21347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -03769627 320.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -03769628 320.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -03769629 320.21353149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -03769630 320.21353149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -03769631 320.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -03769632 320.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -03769633 320.21359253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -03769634 320.21359253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -03769635 320.21359253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -03769636 320.21359253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -03769637 320.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -03769638 320.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -03769639 320.21365356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -03769640 320.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -03769641 320.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -03769642 320.21371460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -03769643 320.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -03769644 320.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -03769645 320.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -03769646 320.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f548 -03769647 320.21377563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -03769648 320.21377563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f558 -03769649 320.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -03769650 320.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f568 -03769651 320.21383667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -03769652 320.21383667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f578 -03769653 320.21386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -03769654 320.21386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f588 -03769655 320.21389771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f598 -03769656 320.21389771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f598 -03779627 321.83929443 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779628 321.83935547 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779629 321.83938599 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779630 321.83938599 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03779631 321.83950806 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779632 321.83950806 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03779633 321.83959961 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779634 321.83959961 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03779635 321.86642456 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03779636 321.88482666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779637 321.88482666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779638 323.88702393 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03779639 323.90722656 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779640 323.90725708 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779641 324.34671021 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779642 324.34674072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779643 324.34674072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03779644 324.34677124 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03779645 324.34689331 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779646 324.34689331 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03779647 324.34695435 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03779648 324.34698486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03779649 325.35220337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03779650 325.35220337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03779651 325.35223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03779652 325.35223389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03779653 325.35226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03779654 325.35226440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03779655 325.35229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03779656 325.35229492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03779657 325.35232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03779658 325.35232544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03779659 325.35235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03779660 325.35235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03779661 325.35235596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03779662 325.35238647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03779663 325.35238647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03779664 325.35241699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03779665 325.35244751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03779666 325.35244751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03779667 325.35247803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03779668 325.35247803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03779669 325.35250854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03779670 325.35250854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03779671 325.35253906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03779672 325.35253906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03779673 325.35253906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03779674 325.35253906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03779675 325.35260010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03779676 325.35260010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03779677 325.35263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03779678 325.35263062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03779679 325.35266113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03779680 325.35269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03779681 325.35269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03779682 325.35269165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03779683 325.35272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03779684 325.35272217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03779685 325.35275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03779686 325.35275269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03779687 325.35278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03779688 325.35278320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03779689 325.35281372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03779690 325.35281372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03779691 325.35284424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03779692 325.35284424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03779693 325.35284424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03779694 325.35284424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03779695 325.35287476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03779696 325.35287476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03779697 325.35290527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03779698 325.35290527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03779699 325.35293579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03779700 325.35293579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03779701 325.35296631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03779702 325.35296631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03779703 325.35299683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03779704 325.35299683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03779705 325.35299683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03779706 325.35302734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03779707 325.35305786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03779708 325.35305786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03779709 325.35308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03779710 325.35308838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03779711 325.35311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03779712 325.35311890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03779713 325.35314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03779714 325.35314941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03779715 325.35317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03779716 325.35317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03779717 325.35317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03779718 325.35317993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03779719 325.35321045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03779720 325.35321045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03779721 325.35324097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03779722 325.35324097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03779723 325.35327148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03779724 325.35327148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03779725 325.35330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03779726 325.35330200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03779727 325.35333252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03779728 325.35333252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03779729 325.35333252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03779730 325.35333252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03779731 325.35339355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03779732 325.35339355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03779733 325.35342407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03779734 325.35342407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03779735 325.35345459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03779736 325.35348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03779737 325.35348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03779738 325.35348511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03779739 325.35354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03779740 325.35354614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03779741 325.35357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03779742 325.35357666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03779743 325.35360718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03779744 325.35360718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03779745 325.35363770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03779746 325.35363770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03779747 325.35363770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03779748 325.35363770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03779749 325.35366821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03779750 325.35366821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03779751 325.35369873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03779752 325.35372925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03779753 325.35375977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03779754 325.35375977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03779755 325.35379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03779756 325.35379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03779757 325.35379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03779758 325.35379028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03779759 325.35382080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03779760 325.35382080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03779761 325.35385132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03779762 325.35385132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03779763 325.35388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03779764 325.35388184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03779765 325.35391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03779766 325.35391235 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03779767 325.35394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03779768 325.35394287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03779769 325.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03779770 325.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03779771 325.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03779772 325.35397339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03779773 325.35403442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03779774 325.35403442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03779775 325.35406494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03779776 325.35406494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03779777 325.35409546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03779778 325.35409546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03779779 325.35412598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03779780 325.35412598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03779781 325.35412598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03779782 325.35412598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03779783 325.35415649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03779784 325.35415649 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03779785 325.35418701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03779786 325.35418701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03779787 325.35421753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03779788 325.35424805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03779789 325.35427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03779790 325.35427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03779791 325.35427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03779792 325.35427856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03779793 325.35430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03779794 325.35430908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03779795 325.35437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03779796 325.35437012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03779797 325.35440063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03779798 325.35440063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03779799 325.35443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03779800 325.35443115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03779801 325.35446167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03779802 325.35446167 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03779803 325.35449219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03779804 325.35449219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03779805 325.35452271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03779806 325.35452271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03779807 325.35455322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03779808 325.35455322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03779809 325.35458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03779810 325.35458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03779811 325.35458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03779812 325.35458374 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03779813 325.35461426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03779814 325.35461426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03779815 325.35464478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03779816 325.35464478 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03779817 325.35467529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03779818 325.35467529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03779819 325.35470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03779820 325.35470581 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03779821 325.35473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03779822 325.35473633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03779823 325.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03779824 325.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03779825 325.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03779826 325.35476685 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03779827 325.35479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03779828 325.35479736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03779829 325.35482788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03779830 325.35482788 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03779831 325.35485840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03779832 325.35485840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03779833 325.35488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03779834 325.35488892 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03779835 325.35491943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03779836 325.35491943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03779837 325.35494995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03779838 325.35494995 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03779839 325.35498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03779840 325.35498047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03779841 325.35501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03779842 325.35501099 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03779843 325.35504150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03779844 325.35504150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03779845 325.35507202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03779846 325.35507202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03779847 325.35507202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03779848 325.35507202 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03779849 325.35510254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03779850 325.35510254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03779851 325.35513306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03779852 325.35513306 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03779853 325.35516357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03779854 325.35516357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03779855 325.35519409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03779856 325.35519409 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03779857 325.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03779858 325.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03779859 325.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03779860 325.35522461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03779861 325.35525513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03779862 325.35525513 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03779863 325.35528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03779864 325.35528564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03779865 325.35531616 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03779866 325.35534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03779867 325.35534668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03779868 325.35537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03779869 325.35537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03779870 325.35537720 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03779871 325.35540771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03779872 325.35540771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03779873 325.35543823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03779874 325.35543823 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03779875 325.35546875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03779876 325.35546875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03779877 325.35549927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03779878 325.35549927 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03779879 325.35552979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03779880 325.35552979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03779881 325.35556030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03779882 325.35556030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03779883 325.35556030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03779884 325.35556030 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03779885 325.35559082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03779886 325.35559082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03779887 325.35562134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03779888 325.35562134 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03779889 325.35565186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03779890 325.35565186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03779891 325.35568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03779892 325.35568237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03779893 325.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03779894 325.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03779895 325.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03779896 325.35571289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03779897 325.35574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03779898 325.35574341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03779899 325.35577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03779900 325.35577393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03779901 325.35580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03779902 325.35580444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03779903 325.35583496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03779904 325.35583496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03779905 325.35586548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03779906 325.35586548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03779907 325.35586548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03779908 325.35589600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03779909 325.35589600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03779910 325.35592651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03779911 325.35595703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03779912 325.35595703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03779913 325.35598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03779914 325.35598755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03779915 325.35601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03779916 325.35601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03779917 325.35601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03779918 325.35601807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03779919 325.35604858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03779920 325.35604858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03779921 325.35607910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03779922 325.35607910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03779923 325.35610962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03779924 325.35610962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03779925 325.35614014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03779926 325.35614014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03779927 325.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03779928 325.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03779929 325.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03779930 325.35617065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03779931 325.35620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03779932 325.35620117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03779933 325.35623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03779934 325.35623169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03779935 325.35626221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03779936 325.35626221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03779937 325.35629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03779938 325.35629272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03779939 325.35632324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03779940 325.35632324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03779941 325.35635376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03779942 325.35635376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03779943 325.35635376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03779944 325.35635376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03779945 325.35638428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03779946 325.35638428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03779947 325.35641479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03779948 325.35641479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03779949 325.35644531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03779950 325.35644531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03779951 325.35647583 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03779952 325.35650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03779953 325.35650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03779954 325.35650635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03779955 325.35653687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03779956 325.35653687 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03779957 325.35659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03779958 325.35659790 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03779959 325.35662842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03779960 325.35662842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03779961 325.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03779962 325.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03779963 325.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03779964 325.35665894 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03779965 325.35668945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03779966 325.35671997 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03779967 325.35675049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03779968 325.35675049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03779969 325.35678101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03779970 325.35678101 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03779971 325.35681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03779972 325.35681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03779973 325.35681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03779974 325.35681152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03779975 325.35684204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03779976 325.35684204 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03779977 325.35687256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03779978 325.35687256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03779979 325.35690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03779980 325.35690308 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03779981 325.35693359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03779982 325.35693359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03779983 325.35696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03779984 325.35696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03779985 325.35696411 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03779986 325.35699463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03779987 325.35702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03779988 325.35702515 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03779989 325.35705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03779990 325.35705566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03779991 325.35708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03779992 325.35708618 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03779993 325.35714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03779994 325.35714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03779995 325.35714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03779996 325.35714722 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03779997 325.35717773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03779998 325.35717773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03779999 325.35720825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03780000 325.35720825 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03780001 325.35723877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03780002 325.35726929 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03780003 325.35729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03780004 325.35729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03780005 325.35729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03780006 325.35729980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03780007 325.35733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03780008 325.35733032 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03780009 325.35736084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03780010 325.35736084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03780011 325.35739136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03780012 325.35739136 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03780013 325.35742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03780014 325.35742188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03780015 325.35745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03780016 325.35745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03780017 325.35745239 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03780018 325.35748291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03780019 325.35751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03780020 325.35751343 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03780021 325.35754395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03780022 325.35754395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03780023 325.35757446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03780024 325.35757446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03780025 325.35760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03780026 325.35760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03780027 325.35760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03780028 325.35760498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03780029 325.35763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03780030 325.35763550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03780031 325.35766602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03780032 325.35766602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03780033 325.35769653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03780034 325.35772705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03780035 325.35772705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03780036 325.35775757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03780037 325.35775757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03780038 325.35775757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03780039 325.35778809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03780040 325.35778809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03780041 325.35781860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03780042 325.35781860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03780043 325.35784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03780044 325.35784912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03780045 325.35787964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03780046 325.35787964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03780047 325.35791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03780048 325.35791016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03780049 325.35794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03780050 325.35794067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03780051 325.35797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03780052 325.35797119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03780053 325.35800171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03780054 325.35800171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03780055 325.35803223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03780056 325.35803223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03780057 325.35806274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03780058 325.35806274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03780059 325.35809326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03780060 325.35809326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03780061 325.35809326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03780062 325.35809326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03780063 325.35812378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03780064 325.35812378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03780065 325.35815430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03780066 325.35815430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03780067 325.35818481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03780068 325.35818481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03780069 325.35821533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03780070 325.35821533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03780071 325.35824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03780072 325.35824585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03780073 325.35827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03780074 325.35827637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03780075 325.35830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03780076 325.35830688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03780077 325.35833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03780078 325.35833740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03780079 325.35836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03780080 325.35836792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03780081 325.35839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03780082 325.35839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03780083 325.35839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03780084 325.35839844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03780085 325.35842896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03780086 325.35842896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03780087 325.35845947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03780088 325.35845947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03780089 325.35848999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03780090 325.35848999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03780091 325.35852051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03780092 325.35852051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03780093 325.35855103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03780094 325.35855103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03780095 325.35858154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03780096 325.35858154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03780097 325.35858154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03780098 325.35858154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03780099 325.35861206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03780100 325.35861206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03780101 325.35864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03780102 325.35864258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03780103 325.35867310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03780104 325.35867310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03780105 325.35870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03780106 325.35870361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03780107 325.35873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03780108 325.35873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03780109 325.35873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03780110 325.35873413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03780111 325.35876465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03780112 325.35879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03780113 325.35879517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03780114 325.35882568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03780115 325.35885620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03780116 325.35885620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03780117 325.35888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03780118 325.35888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03780119 325.35888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03780120 325.35888672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03780121 325.35891724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03780122 325.35891724 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03780123 325.35894775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03780124 325.35894775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03780125 325.35897827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03780126 325.35897827 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03780127 325.35900879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03780128 325.35900879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03780129 325.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03780130 325.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03780131 325.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03780132 325.35903931 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03780133 325.35906982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03780134 325.35906982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03780135 325.35910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03780136 325.35910034 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03780137 325.35913086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03780138 325.35913086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03780139 325.35916138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03780140 325.35916138 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03780141 325.35919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03780142 325.35919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03780143 325.35919189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03780144 325.35922241 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03780145 325.35925293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03780146 325.35925293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03780147 325.35928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03780148 325.35928345 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03780149 325.35931396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03780150 325.35931396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03780151 325.35934448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03780152 325.35934448 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03780153 325.35937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03780154 325.35937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03780155 325.35937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03780156 325.35937500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03780157 325.35940552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03780158 325.35940552 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03780159 325.35943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03780160 325.35943604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03780161 325.35946655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03780162 325.35946655 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03780163 325.35949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03780164 325.35949707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03780165 325.35952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03780166 325.35952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03780167 325.35952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03780168 325.35952759 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03780169 325.35955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03780170 325.35955811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03780171 325.35958862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03780172 325.35958862 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03780173 325.35961914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03780174 325.35961914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03780175 325.35964966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03780176 325.35964966 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03780177 325.35968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03780178 325.35968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03780179 325.35968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03780180 325.35968018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03780181 325.35971069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03780182 325.35971069 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03780183 325.35974121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03780184 325.35974121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03780185 325.35977173 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03780186 325.35980225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03780187 325.35980225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03780188 325.35983276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03780189 325.35983276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03780190 325.35983276 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03780191 325.35986328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03780192 325.35986328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03780193 325.35989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03780194 325.35989380 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03780195 325.35992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03780196 325.35992432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03780197 325.35995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03780198 325.35995483 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03780199 325.35998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03780200 325.35998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03780201 325.35998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03780202 325.35998535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03780203 325.36001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03780204 325.36001587 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03780205 325.36004639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03780206 325.36004639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03780207 325.36007690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03780208 325.36007690 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03780209 325.36010742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03780210 325.36010742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03780211 325.36013794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03780212 325.36013794 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03780213 325.36016846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03780214 325.36016846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03780215 325.36016846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03780216 325.36016846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03780217 325.36019897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03780218 325.36019897 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03780219 325.36022949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03780220 325.36022949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03780221 325.36026001 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03780222 325.36029053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03780223 325.36029053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03780224 325.36032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03780225 325.36032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03780226 325.36032104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03780227 325.36035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03780228 325.36035156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03780229 325.36038208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03780230 325.36038208 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03780231 325.36041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03780232 325.36041260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03780233 325.36044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03780234 325.36044312 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03780235 325.36047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03780236 325.36047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03780237 325.36047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03780238 325.36047363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03780239 325.36050415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03780240 325.36050415 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03780241 325.36053467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03780242 325.36053467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03780243 325.36056519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03780244 325.36056519 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03780245 325.36059570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03780246 325.36059570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03780247 325.36062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03780248 325.36062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03780249 325.36062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03780250 325.36062622 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03780251 325.36065674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03780252 325.36065674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03780253 325.36068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03780254 325.36068726 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03780255 325.36071777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03780256 325.36071777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03780257 325.36074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03780258 325.36074829 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03780259 325.36077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03780260 325.36077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03780261 325.36077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03780262 325.36077881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03780263 325.36080933 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03780264 325.36083984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03780265 325.36083984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03780266 325.36087036 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03780267 325.36090088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03780268 325.36090088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03780269 325.36093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03780270 325.36093140 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03780271 325.36096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03780272 325.36096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03780273 325.36096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03780274 325.36096191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03780275 325.36099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03780276 325.36099243 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03780277 325.36102295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03780278 325.36102295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03780279 325.36105347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03780280 325.36105347 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03780281 325.36108398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03780282 325.36108398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03780283 325.36111450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03780284 325.36111450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03780285 325.36111450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03780286 325.36111450 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03780287 325.36114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03780288 325.36114502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03780289 325.36117554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03780290 325.36117554 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03780291 325.36120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03780292 325.36120605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03780293 325.36123657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03780294 325.36123657 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03780295 325.36126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03780296 325.36126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03780297 325.36126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03780298 325.36126709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03780299 325.36129761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03780300 325.36129761 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03780301 325.36132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03780302 325.36132813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03780303 325.36135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03780304 325.36135864 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03780305 325.36138916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03780306 325.36141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03780307 325.36141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03780308 325.36141968 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03780309 325.36145020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03780310 325.36145020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03780311 325.36148071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03780312 325.36148071 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03780313 325.36151123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03780314 325.36151123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03780315 325.36154175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03780316 325.36154175 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03780317 325.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03780318 325.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03780319 325.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03780320 325.36157227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03780321 325.36160278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03780322 325.36160278 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03780323 325.36163330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03780324 325.36163330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03780325 325.36166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03780326 325.36166382 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03780327 325.36169434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03780328 325.36169434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03780329 325.36172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03780330 325.36172485 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03780331 325.36175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03780332 325.36175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03780333 325.36175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03780334 325.36175537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03780335 325.36178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03780336 325.36178589 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03780337 325.36181641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03780338 325.36181641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03780339 325.36184692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03780340 325.36184692 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03780341 325.36187744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03780342 325.36187744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03780343 325.36190796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03780344 325.36190796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03780345 325.36190796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03780346 325.36190796 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03780347 325.36193848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03780348 325.36196899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03780349 325.36196899 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03780350 325.36199951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03780351 325.36203003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03780352 325.36203003 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03780353 325.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03780354 325.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03780355 325.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03780356 325.36206055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03780357 325.36209106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03780358 325.36209106 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03780359 325.36212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03780360 325.36212158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03780361 325.36215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03780362 325.36215210 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03780363 325.36218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03780364 325.36218262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03780365 325.36221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03780366 325.36221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03780367 325.36221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03780368 325.36221313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03780369 325.36224365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03780370 325.36224365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03780371 325.36227417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03780372 325.36227417 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03780373 325.36230469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03780374 325.36233521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03780375 325.36233521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03780376 325.36236572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03780377 325.36236572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03780378 325.36236572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03780379 325.36239624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03780380 325.36239624 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03780381 325.36242676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03780382 325.36242676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03780383 325.36245728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03780384 325.36245728 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03780385 325.36248779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03780386 325.36248779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03780387 325.36251831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03780388 325.36251831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03780389 325.36254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03780390 325.36254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03780391 325.36254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03780392 325.36254883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03780393 325.36257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03780394 325.36257935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03780395 325.36260986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03780396 325.36260986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03780397 325.36264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03780398 325.36264038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03780399 325.36267090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03780400 325.36267090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03780401 325.36270142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03780402 325.36270142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03780403 325.36270142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03780404 325.36270142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03780405 325.36273193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03780406 325.36273193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03780407 325.36276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03780408 325.36276245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03780409 325.36279297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03780410 325.36279297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03780411 325.36282349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03780412 325.36282349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03780413 325.36285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03780414 325.36285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03780415 325.36285400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03780416 325.36288452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03780417 325.36288452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03780418 325.36291504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03780419 325.36294556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03780420 325.36294556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03780421 325.36297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03780422 325.36297607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03780423 325.36300659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03780424 325.36300659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03780425 325.36300659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03780426 325.36300659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03780427 325.36303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03780428 325.36303711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03780429 325.36306763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03780430 325.36306763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03780431 325.36309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03780432 325.36309814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03780433 325.36312866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03780434 325.36312866 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03780435 325.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03780436 325.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03780437 325.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03780438 325.36315918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03780439 325.36318970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03780440 325.36318970 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03780441 325.36322021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03780442 325.36322021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03780443 325.36325073 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03780444 325.36328125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03780445 325.36328125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03780446 325.36331177 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03780447 325.36334229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03780448 325.36334229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03780449 325.36334229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03780450 325.36334229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03780451 325.36337280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03780452 325.36337280 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03780453 325.36340332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03780454 325.36340332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03780455 325.36343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03780456 325.36343384 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03780457 325.36346436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03780458 325.36346436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03780459 325.36349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03780460 325.36349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03780461 325.36349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03780462 325.36349487 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03780463 325.36352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03780464 325.36352539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03780465 325.36355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03780466 325.36355591 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03780467 325.36358643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03780468 325.36358643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03780469 325.36361694 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03780470 325.36364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03780471 325.36364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03780472 325.36364746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03780473 325.36367798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03780474 325.36367798 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03780475 325.36370850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03780476 325.36370850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03780477 325.36373901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03780478 325.36373901 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03780479 325.36376953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03780480 325.36376953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03780481 325.36380005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03780482 325.36380005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03780483 325.36380005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03780484 325.36380005 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03780485 325.36383057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03780486 325.36383057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03780487 325.36386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03780488 325.36386108 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03780489 325.36389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03780490 325.36389160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03780491 325.36392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03780492 325.36392212 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03780493 325.36395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03780494 325.36395264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03780495 325.36398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03780496 325.36398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03780497 325.36398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03780498 325.36401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03780499 325.36401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03780500 325.36404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03780501 325.36407471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03780502 325.36407471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03780503 325.36410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03780504 325.36410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03780505 325.36413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03780506 325.36413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03780507 325.36413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03780508 325.36413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03780509 325.36416626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03780510 325.36416626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03780511 325.36419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03780512 325.36419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03780513 325.36422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03780514 325.36422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03780515 325.36425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03780516 325.36425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03780517 325.36428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03780518 325.36428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03780519 325.36428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03780520 325.36428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03780521 325.36431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03780522 325.36431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03780523 325.36434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03780524 325.36434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03780525 325.36437988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03780526 325.36437988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03780527 325.36441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03780528 325.36441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03780529 325.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03780530 325.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03780531 325.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03780532 325.36444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03780533 325.36447144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03780534 325.36447144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03780535 325.36450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03780536 325.36450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03780537 325.36453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03780538 325.36453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03780539 325.36456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03780540 325.36456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03780541 325.36459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03780542 325.36459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03780543 325.36459351 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03780544 325.36462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03780545 325.36462402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03780546 325.36465454 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03780547 325.36468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03780548 325.36468506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03780549 325.36471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03780550 325.36471558 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03780551 325.36474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03780552 325.36474609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03780553 325.36477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03780554 325.36477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03780555 325.36477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03780556 325.36477661 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03780557 325.36480713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03780558 325.36480713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03780559 325.36483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03780560 325.36483765 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03780561 325.36486816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03780562 325.36486816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03780563 325.36489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03780564 325.36489868 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03780565 325.36492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03780566 325.36492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03780567 325.36492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03780568 325.36492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03780569 325.36495972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03780570 325.36495972 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03780571 325.36499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03780572 325.36502075 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03780573 325.36505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03780574 325.36505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03780575 325.36508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03780576 325.36508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03780577 325.36508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03780578 325.36508179 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03780579 325.36511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03780580 325.36511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03780581 325.36514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03780582 325.36514282 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03780583 325.36517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03780584 325.36517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03780585 325.36520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03780586 325.36520386 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03780587 325.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03780588 325.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03780589 325.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03780590 325.36523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03780591 325.36526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03780592 325.36526489 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03780593 325.36529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03780594 325.36529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03780595 325.36532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03780596 325.36532593 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03780597 325.36535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03780598 325.36535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03780599 325.36538696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03780600 325.36538696 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03780601 325.36541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03780602 325.36541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03780603 325.36544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03780604 325.36544800 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03780605 325.36550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03780606 325.36550903 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03780607 325.36553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03780608 325.36553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03780609 325.36557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03780610 325.36557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03780611 325.36557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03780612 325.36557007 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03780613 325.36560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03780614 325.36560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03780615 325.36563110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03780616 325.36563110 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03780617 325.36566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03780618 325.36566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03780619 325.36569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03780620 325.36569214 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03780621 325.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03780622 325.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03780623 325.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03780624 325.36572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03780625 325.36575317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03780626 325.36575317 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03780627 325.36578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03780628 325.36578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03780629 325.36581421 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03780630 325.36584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03780631 325.36584473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03780632 325.36587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03780633 325.36587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03780634 325.36587524 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03780635 325.36590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03780636 325.36590576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03780637 325.36593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03780638 325.36593628 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03780639 325.36596680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03780640 325.36596680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03780641 325.36599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03780642 325.36599731 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03780643 325.36602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03780644 325.36602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03780645 325.36602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03780646 325.36602783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03780647 325.36605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03780648 325.36605835 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03780649 325.36608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03780650 325.36608887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03780651 325.36611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03780652 325.36611938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03780653 325.36614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03780654 325.36614990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03780655 325.36618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03780656 325.36618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03780657 325.36618042 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03780658 325.36621094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03780659 325.36624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03780660 325.36624146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03780661 325.36627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03780662 325.36627197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03780663 325.36630249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03780664 325.36630249 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03780665 325.36633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03780666 325.36633301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03780667 325.36636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03780668 325.36636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03780669 325.36636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03780670 325.36636353 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03780671 325.36639404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03780672 325.36639404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03780673 325.36642456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03780674 325.36642456 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03780675 325.36645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03780676 325.36645508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03780677 325.36648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03780678 325.36648560 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03780679 325.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03780680 325.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03780681 325.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03780682 325.36651611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03780683 325.36654663 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03780684 325.36657715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03780685 325.36657715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03780686 325.36660767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03780687 325.36663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03780688 325.36663818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03780689 325.36666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03780690 325.36666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03780691 325.36666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03780692 325.36666870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03780693 325.36669922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03780694 325.36669922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03780695 325.36672974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03780696 325.36672974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03780697 325.36676025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03780698 325.36676025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03780699 325.36679077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03780700 325.36679077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03780701 325.36682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03780702 325.36682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03780703 325.36682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03780704 325.36682129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03780705 325.36685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03780706 325.36685181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03780707 325.36688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03780708 325.36688232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03780709 325.36691284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03780710 325.36694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03780711 325.36694336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03780712 325.36697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03780713 325.36697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03780714 325.36697388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03780715 325.36700439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03780716 325.36700439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03780717 325.36703491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03780718 325.36703491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03780719 325.36706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03780720 325.36706543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03780721 325.36709595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03780722 325.36709595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03780723 325.36712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03780724 325.36712646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03780725 325.36715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03780726 325.36715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03780727 325.36715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03780728 325.36715698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03780729 325.36718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03780730 325.36718750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03780731 325.36721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03780732 325.36721802 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03780733 325.36724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03780734 325.36724854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03780735 325.36727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03780736 325.36727905 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03780737 325.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03780738 325.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03780739 325.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03780740 325.36730957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03780741 325.36734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03780742 325.36734009 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03780743 325.36737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03780744 325.36737061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03780745 325.36740112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03780746 325.36740112 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03780747 325.36743164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03780748 325.36743164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03780749 325.36746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03780750 325.36746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03780751 325.36746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03780752 325.36746216 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03780753 325.36749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03780754 325.36749268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03780755 325.36752319 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03780756 325.36755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03780757 325.36755371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03780758 325.36758423 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03780759 325.36761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03780760 325.36761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03780761 325.36761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03780762 325.36761475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03780763 325.36764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03780764 325.36764526 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03780765 325.36767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03780766 325.36767578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03780767 325.36770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03780768 325.36770630 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03780769 325.36773682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03780770 325.36773682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03780771 325.36776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03780772 325.36776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03780773 325.36776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03780774 325.36776733 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03780775 325.36779785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03780776 325.36779785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03780777 325.36782837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03780778 325.36782837 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03780779 325.36785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03780780 325.36785889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03780781 325.36788940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03780782 325.36788940 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03780783 325.36791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03780784 325.36791992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03780785 325.36795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03780786 325.36795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03780787 325.36795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03780788 325.36795044 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03780789 325.36798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03780790 325.36798096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03780791 325.36801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03780792 325.36801147 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03780793 325.36804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03780794 325.36804199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03780795 325.36807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03780796 325.36807251 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03780797 325.36810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03780798 325.36810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03780799 325.36810303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03780800 325.36813354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03780801 325.36816406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03780802 325.36816406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03780803 325.36819458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03780804 325.36819458 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03780805 325.36822510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03780806 325.36822510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03780807 325.36825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03780808 325.36825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03780809 325.36825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03780810 325.36825562 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03780811 325.36828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03780812 325.36828613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03780813 325.36831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03780814 325.36831665 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03780815 325.36834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03780816 325.36834717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03780817 325.36837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03780818 325.36837769 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03780819 325.36840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03780820 325.36840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03780821 325.36840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03780822 325.36840820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03780823 325.36843872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03780824 325.36843872 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03780825 325.36846924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03780826 325.36846924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03780827 325.36849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03780828 325.36849976 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03780829 325.36853027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03780830 325.36853027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03780831 325.36856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03780832 325.36856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03780833 325.36856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03780834 325.36856079 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03780835 325.36859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03780836 325.36859131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03780837 325.36862183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03780838 325.36862183 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03780839 325.36865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03780840 325.36865234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03780841 325.36868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03780842 325.36868286 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03780843 325.36871338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03780844 325.36874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03780845 325.36874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03780846 325.36874390 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03780847 325.36877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03780848 325.36877441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03780849 325.36880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03780850 325.36880493 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03780851 325.36883545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03780852 325.36883545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03780853 325.36886597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03780854 325.36886597 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03780855 325.36889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03780856 325.36889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03780857 325.36889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03780858 325.36889648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03780859 325.36892700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03780860 325.36892700 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03780861 325.36895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03780862 325.36895752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03780863 325.36898804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03780864 325.36898804 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03780865 325.36901855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03780866 325.36901855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03780867 325.36904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03780868 325.36904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03780869 325.36904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03780870 325.36904907 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03780871 325.36907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03780872 325.36907959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03780873 325.36911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03780874 325.36911011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03780875 325.36914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03780876 325.36914063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03780877 325.36917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03780878 325.36917114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03780879 325.36920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03780880 325.36920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03780881 325.36920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03780882 325.36920166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03780883 325.36923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03780884 325.36923218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03780885 325.36926270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03780886 325.36929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03780887 325.36929321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03780888 325.36932373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03780889 325.36935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03780890 325.36935425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03780891 325.36938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03780892 325.36938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03780893 325.36938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03780894 325.36938477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03780895 325.36941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03780896 325.36941528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03780897 325.36944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03780898 325.36944580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03780899 325.36947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03780900 325.36947632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03780901 325.36950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03780902 325.36950684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03780903 325.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03780904 325.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03780905 325.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03780906 325.36953735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03780907 325.36956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03780908 325.36956787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03780909 325.36959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03780910 325.36959839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03780911 325.36962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03780912 325.36962891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03780913 325.36965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03780914 325.36965942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03780915 325.36968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03780916 325.36968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03780917 325.36968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03780918 325.36968994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03780919 325.36972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03780920 325.36972046 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03780921 325.36975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03780922 325.36975098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03780923 325.36978149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03780924 325.36978149 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03780925 325.36981201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03780926 325.36981201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03780927 325.36984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03780928 325.36984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03780929 325.36984253 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03780930 325.36987305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03780931 325.36987305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03780932 325.36990356 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03780933 325.36993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03780934 325.36993408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03780935 325.36996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03780936 325.36996460 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03780937 325.36999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03780938 325.36999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03780939 325.36999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03780940 325.36999512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03780941 325.37002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03780942 325.37002563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03780943 325.37005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03780944 325.37005615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03780945 325.37008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03780946 325.37008667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03780947 325.37011719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03780948 325.37011719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03780949 325.37014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03780950 325.37014771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03780951 325.37017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03780952 325.37017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03780953 325.37017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03780954 325.37017822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03780955 325.37020874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03780956 325.37020874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03780957 325.37023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03780958 325.37023926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03780959 325.37026978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03780960 325.37026978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03780961 325.37030029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03780962 325.37030029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03780963 325.37033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03780964 325.37033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03780965 325.37033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03780966 325.37033081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03780967 325.37036133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03780968 325.37039185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03780969 325.37042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03780970 325.37042236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03780971 325.37045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03780972 325.37045288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03780973 325.37048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03780974 325.37048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03780975 325.37048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03780976 325.37048340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03780977 325.37051392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03780978 325.37051392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03780979 325.37054443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03780980 325.37054443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03780981 325.37057495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03780982 325.37057495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03780983 325.37060547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03780984 325.37060547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03780985 325.37063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03780986 325.37063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03780987 325.37063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03780988 325.37063599 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03780989 325.37066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03780990 325.37066650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03780991 325.37069702 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03780992 325.37072754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03780993 325.37075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03780994 325.37075806 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03780995 325.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03780996 325.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03780997 325.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03780998 325.37078857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03780999 325.37081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03781000 325.37081909 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03781001 325.37084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03781002 325.37084961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03781003 325.37088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03781004 325.37088013 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03781005 325.37091064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03781006 325.37091064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03781007 325.37094116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03781008 325.37094116 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03781009 325.37097168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03781010 325.37097168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03781011 325.37097168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03781012 325.37097168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03781013 325.37100220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03781014 325.37100220 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03781015 325.37103271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03781016 325.37106323 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03781017 325.37109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03781018 325.37109375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03781019 325.37112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03781020 325.37112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03781021 325.37112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03781022 325.37112427 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03781023 325.37115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03781024 325.37115479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03781025 325.37118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03781026 325.37118530 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03781027 325.37121582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03781028 325.37121582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03781029 325.37124634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03781030 325.37124634 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03781031 325.37127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03781032 325.37127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03781033 325.37127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03781034 325.37127686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03781035 325.37130737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03781036 325.37130737 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03781037 325.37133789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03781038 325.37133789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03781039 325.37139893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03781040 325.37139893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03781041 325.37142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03781042 325.37142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03781043 325.37142944 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03781044 325.37145996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03781045 325.37149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03781046 325.37149048 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03781047 325.37152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03781048 325.37152100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03781049 325.37155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03781050 325.37155151 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03781051 325.37158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03781052 325.37158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03781053 325.37158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03781054 325.37158203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03781055 325.37161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03781056 325.37161255 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03781057 325.37164307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03781058 325.37164307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03781059 325.37167358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03781060 325.37167358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03781061 325.37170410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03781062 325.37170410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03781063 325.37173462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03781064 325.37173462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03781065 325.37176514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03781066 325.37176514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03781067 325.37176514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03781068 325.37179565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03781069 325.37179565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03781070 325.37182617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03781071 325.37185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03781072 325.37185669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03781073 325.37188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03781074 325.37188721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03781075 325.37191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03781076 325.37191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03781077 325.37191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03781078 325.37191772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03781079 325.37194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03781080 325.37194824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03781081 325.37197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03781082 325.37197876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03781083 325.37200928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03781084 325.37200928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03781085 325.37203979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03781086 325.37203979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03781087 325.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03781088 325.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03781089 325.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03781090 325.37207031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03781091 325.37210083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03781092 325.37210083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03781093 325.37213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03781094 325.37213135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03781095 325.37216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03781096 325.37216187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03781097 325.37219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03781098 325.37219238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03781099 325.37222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03781100 325.37222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03781101 325.37222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03781102 325.37222290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03781103 325.37225342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03781104 325.37225342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03781105 325.37228394 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03781106 325.37231445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03781107 325.37234497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03781108 325.37234497 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03781109 325.37237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03781110 325.37237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03781111 325.37237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03781112 325.37237549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03781113 325.37240601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03781114 325.37240601 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03781115 325.37243652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03781116 325.37243652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03781117 325.37246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03781118 325.37246704 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03781119 325.37249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03781120 325.37249756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03781121 325.37252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03781122 325.37252808 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03781123 325.37255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03781124 325.37255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03781125 325.37255859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03781126 325.37258911 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03781127 325.37261963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03781128 325.37261963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03781129 325.37265015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03781130 325.37265015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03781131 325.37268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03781132 325.37268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03781133 325.37271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03781134 325.37271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03781135 325.37271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03781136 325.37271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03781137 325.37274170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03781138 325.37274170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03781139 325.37277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03781140 325.37277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03781141 325.37280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03781142 325.37280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03781143 325.37283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03781144 325.37283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03781145 325.37286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03781146 325.37286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03781147 325.37286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03781148 325.37286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03781149 325.37289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03781150 325.37289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03781151 325.37292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03781152 325.37292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03781153 325.37295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03781154 325.37295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03781155 325.37298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03781156 325.37298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03781157 325.37301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03781158 325.37301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03781159 325.37301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03781160 325.37301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03781161 325.37304688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03781162 325.37304688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03781163 325.37307739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03781164 325.37307739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03781165 325.37310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03781166 325.37310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03781167 325.37313843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03781168 325.37316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03781169 325.37316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03781170 325.37316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03781171 325.37319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03781172 325.37319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03781173 325.37322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03781174 325.37322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03781175 325.37326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03781176 325.37326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03781177 325.37329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03781178 325.37329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03781179 325.37332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03781180 325.37332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03781181 325.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03781182 325.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03781183 325.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03781184 325.37335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03781185 325.37338257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03781186 325.37338257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03781187 325.37341309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03781188 325.37341309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03781189 325.37344360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03781190 325.37344360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03781191 325.37347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03781192 325.37347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03781193 325.37350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03781194 325.37350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03781195 325.37350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03781196 325.37350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03781197 325.37353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03781198 325.37353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03781199 325.37356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03781200 325.37356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03781201 325.37359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03781202 325.37359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03781203 325.37362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03781204 325.37362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03781205 325.37365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03781206 325.37365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03781207 325.37365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03781208 325.37365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03781209 325.37368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03781210 325.37368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03781211 325.37371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03781212 325.37374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03781213 325.37377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03781214 325.37377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03781215 325.37380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03781216 325.37380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03781217 325.37380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03781218 325.37380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03781219 325.37384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03781220 325.37384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03781221 325.37387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03781222 325.37387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03781223 325.37390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03781224 325.37390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03781225 325.37393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03781226 325.37393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03781227 325.37396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03781228 325.37396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03781229 325.37396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03781230 325.37396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03781231 325.37399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03781232 325.37399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03781233 325.37402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03781234 325.37402344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03781235 325.37405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03781236 325.37405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03781237 325.37408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03781238 325.37408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03781239 325.37411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03781240 325.37411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03781241 325.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03781242 325.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03781243 325.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03781244 325.37414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03781245 325.37417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03781246 325.37417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03781247 325.37420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03781248 325.37420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03781249 325.37423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03781250 325.37423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03781251 325.37426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03781252 325.37426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03781253 325.37429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03781254 325.37429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03781255 325.37429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03781256 325.37432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03781257 325.37432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03781258 325.37435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03781259 325.37438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03781260 325.37438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03781261 325.37442017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03781262 325.37442017 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03781263 325.37445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03781264 325.37445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03781265 325.37445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03781266 325.37445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03781267 325.37448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03781268 325.37448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03781269 325.37451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03781270 325.37451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03781271 325.37454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03781272 325.37454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03781273 325.37457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03781274 325.37457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03781275 325.37460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03781276 325.37460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03781277 325.37460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03781278 325.37460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03781279 325.37463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03781280 325.37463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03781281 325.37466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03781282 325.37466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03781283 325.37469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03781284 325.37469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03781285 325.37472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03781286 325.37472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03781287 325.37475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03781288 325.37475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03781289 325.37478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03781290 325.37478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03781291 325.37478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03781292 325.37478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03781293 325.37481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03781294 325.37481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03781295 325.37487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03781296 325.37487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03781297 325.37490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03781298 325.37493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03781299 325.37493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03781300 325.37493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03781301 325.37496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03781302 325.37496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03781303 325.37500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03781304 325.37500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03781305 325.37503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03781306 325.37503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03781307 325.37506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03781308 325.37506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03781309 325.37509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03781310 325.37509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03781311 325.37509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03781312 325.37509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03781313 325.37512207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03781314 325.37512207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03781315 325.37515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03781316 325.37515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03781317 325.37518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03781318 325.37518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03781319 325.37521362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03781320 325.37521362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03781321 325.37524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03781322 325.37524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03781323 325.37524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03781324 325.37524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03781325 325.37527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03781326 325.37527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03781327 325.37530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03781328 325.37530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03781329 325.37533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03781330 325.37533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03781331 325.37536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03781332 325.37536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03781333 325.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03781334 325.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03781335 325.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03781336 325.37539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03781337 325.37542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03781338 325.37545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03781339 325.37545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03781340 325.37548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03781341 325.37551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03781342 325.37551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03781343 325.37554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03781344 325.37554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03781345 325.37557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03781346 325.37557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03781347 325.37557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03781348 325.37557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03781349 325.37561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03781350 325.37561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03781351 325.37564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03781352 325.37564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03781353 325.37567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03781354 325.37567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03781355 325.37570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03781356 325.37570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03781357 325.37573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03781358 325.37573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03781359 325.37573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03781360 325.37573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03781361 325.37576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03781362 325.37576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03781363 325.37579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03781364 325.37579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03781365 325.37582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03781366 325.37582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03781367 325.37585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03781368 325.37585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03781369 325.37588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03781370 325.37588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03781371 325.37588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03781372 325.37588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03781373 325.37591553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03781374 325.37591553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03781375 325.37594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03781376 325.37597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03781377 325.37600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03781378 325.37600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03781379 325.37603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03781380 325.37603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03781381 325.37603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03781382 325.37603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03781383 325.37606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03781384 325.37606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03781385 325.37609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03781386 325.37609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03781387 325.37612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03781388 325.37612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03781389 325.37615967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03781390 325.37615967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03781391 325.37619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03781392 325.37619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03781393 325.37619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03781394 325.37619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03781395 325.37622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03781396 325.37622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03781397 325.37625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03781398 325.37625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03781399 325.37628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03781400 325.37628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03781401 325.37631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03781402 325.37631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03781403 325.37634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03781404 325.37634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03781405 325.37637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03781406 325.37637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03781407 325.37637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03781408 325.37637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03781409 325.37640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03781410 325.37643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03781411 325.37646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03781412 325.37646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03781413 325.37649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03781414 325.37649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03781415 325.37652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03781416 325.37652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03781417 325.37652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03781418 325.37652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03781419 325.37655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03781420 325.37655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03781421 325.37658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03781422 325.37658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03781423 325.37661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03781424 325.37661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03781425 325.37664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03781426 325.37664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03781427 325.37667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03781428 325.37667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03781429 325.37667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03781430 325.37670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03781431 325.37673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03781432 325.37673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03781433 325.37677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03781434 325.37677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03781435 325.37680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03781436 325.37680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03781437 325.37683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03781438 325.37683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03781439 325.37683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03781440 325.37683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03781441 325.37686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03781442 325.37686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03781443 325.37689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03781444 325.37689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03781445 325.37692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03781446 325.37692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03781447 325.37695313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03781448 325.37695313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03781449 325.37698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03781450 325.37698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03781451 325.37698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03781452 325.37698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03781453 325.37701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03781454 325.37701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03781455 325.37704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03781456 325.37704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03781457 325.37707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03781458 325.37707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03781459 325.37710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03781460 325.37710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03781461 325.37713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03781462 325.37713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03781463 325.37716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03781464 325.37716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03781465 325.37716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03781466 325.37716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03781467 325.37719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03781468 325.37719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03781469 325.37722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03781470 325.37725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03781471 325.37725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03781472 325.37728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03781473 325.37731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03781474 325.37731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03781475 325.37731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03781476 325.37731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03781477 325.37734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03781478 325.37734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03781479 325.37738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03781480 325.37738037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03781481 325.37741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03781482 325.37741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03781483 325.37744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03781484 325.37744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03781485 325.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03781486 325.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03781487 325.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03781488 325.37747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03781489 325.37750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03781490 325.37753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03781491 325.37756348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03781492 325.37756348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03781493 325.37759399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03781494 325.37759399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03781495 325.37762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03781496 325.37762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03781497 325.37762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03781498 325.37762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03781499 325.37765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03781500 325.37765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03781501 325.37768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03781502 325.37768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03781503 325.37771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03781504 325.37771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03781505 325.37774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03781506 325.37774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03781507 325.37777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03781508 325.37777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03781509 325.37780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03781510 325.37780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03781511 325.37783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03781512 325.37783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03781513 325.37786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03781514 325.37786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03781515 325.37789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03781516 325.37789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03781517 325.37792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03781518 325.37792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03781519 325.37796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03781520 325.37796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03781521 325.37796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03781522 325.37796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03781523 325.37799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03781524 325.37799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03781525 325.37802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03781526 325.37802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03781527 325.37805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03781528 325.37805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03781529 325.37808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03781530 325.37808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03781531 325.37811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03781532 325.37811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03781533 325.37811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03781534 325.37811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03781535 325.37814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03781536 325.37814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03781537 325.37817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03781538 325.37817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03781539 325.37820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03781540 325.37820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03781541 325.37823486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03781542 325.37823486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03781543 325.37826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03781544 325.37826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03781545 325.37826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03781546 325.37826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03781547 325.37829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03781548 325.37832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03781549 325.37832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03781550 325.37835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03781551 325.37838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03781552 325.37838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03781553 325.37841797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03781554 325.37841797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03781555 325.37841797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03781556 325.37841797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03781557 325.37844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03781558 325.37844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03781559 325.37847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03781560 325.37847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03781561 325.37850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03781562 325.37850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03781563 325.37854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03781564 325.37854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03781565 325.37857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03781566 325.37857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03781567 325.37857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03781568 325.37857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03781569 325.37860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03781570 325.37860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03781571 325.37863159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03781572 325.37863159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03781573 325.37866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03781574 325.37866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03781575 325.37869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03781576 325.37869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03781577 325.37872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03781578 325.37872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03781579 325.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03781580 325.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03781581 325.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03781582 325.37875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03781583 325.37878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03781584 325.37878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03781585 325.37881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03781586 325.37881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03781587 325.37884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03781588 325.37887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03781589 325.37890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03781590 325.37890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03781591 325.37890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03781592 325.37890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03781593 325.37893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03781594 325.37893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03781595 325.37896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03781596 325.37896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03781597 325.37899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03781598 325.37899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03781599 325.37902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03781600 325.37902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03781601 325.37905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03781602 325.37905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03781603 325.37905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03781604 325.37905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03781605 325.37908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03781606 325.37908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03781607 325.37911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03781608 325.37911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03781609 325.37915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03781610 325.37915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03781611 325.37918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03781612 325.37918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03781613 325.37921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03781614 325.37921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03781615 325.37921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03781616 325.37924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03781617 325.37924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03781618 325.37927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03781619 325.37930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03781620 325.37930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03781621 325.37933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03781622 325.37933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03781623 325.37936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03781624 325.37936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03781625 325.37939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03781626 325.37939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03781627 325.37942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03781628 325.37942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03781629 325.37945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03781630 325.37945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03781631 325.37948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03781632 325.37948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03781633 325.37951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03781634 325.37951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03781635 325.37954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03781636 325.37954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03781637 325.37954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03781638 325.37954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03781639 325.37957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03781640 325.37957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03781641 325.37960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03781642 325.37960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03781643 325.37963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03781644 325.37963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03781645 325.37966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03781646 325.37969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03781647 325.37969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03781648 325.37969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03781649 325.37973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03781650 325.37973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03781651 325.37976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03781652 325.37976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03781653 325.37979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03781654 325.37979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03781655 325.37982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03781656 325.37982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03781657 325.37985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03781658 325.37985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03781659 325.37985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03781660 325.37985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03781661 325.37988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03781662 325.37988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03781663 325.37991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03781664 325.37991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03781665 325.37994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03781666 325.37994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03781667 325.37997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03781668 325.37997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03781669 325.38000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03781670 325.38000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03781671 325.38000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03781672 325.38000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03781673 325.38003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03781674 325.38003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03781675 325.38006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03781676 325.38006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03781677 325.38009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03781678 325.38009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03781679 325.38012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03781680 325.38012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03781681 325.38015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03781682 325.38015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03781683 325.38018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03781684 325.38018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03781685 325.38018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03781686 325.38018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03781687 325.38021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03781688 325.38021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03781689 325.38024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03781690 325.38027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03781691 325.38027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03781692 325.38031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03781693 325.38034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03781694 325.38034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03781695 325.38034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03781696 325.38034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03781697 325.38037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03781698 325.38037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03781699 325.38040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03781700 325.38040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03781701 325.38043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03781702 325.38043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03781703 325.38046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03781704 325.38046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03781705 325.38049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03781706 325.38049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03781707 325.38049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03781708 325.38052368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03781709 325.38055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03781710 325.38055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03781711 325.38058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03781712 325.38058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03781713 325.38061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03781714 325.38061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03781715 325.38064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03781716 325.38064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03781717 325.38064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03781718 325.38064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03781719 325.38067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03781720 325.38067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03781721 325.38070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03781722 325.38070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03781723 325.38073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03781724 325.38073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03781725 325.38076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03781726 325.38076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03781727 325.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03781728 325.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03781729 325.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03781730 325.38079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03781731 325.38082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03781732 325.38082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03781733 325.38085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03781734 325.38085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03781735 325.38088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03781736 325.38088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03781737 325.38092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03781738 325.38092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03781739 325.38095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03781740 325.38098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03781741 325.38098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03781742 325.38098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03781743 325.38101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03781744 325.38101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03781745 325.38104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03781746 325.38104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03781747 325.38107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03781748 325.38107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03781749 325.38110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03781750 325.38110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03781751 325.38113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03781752 325.38113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03781753 325.38113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03781754 325.38113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03781755 325.38116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03781756 325.38116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03781757 325.38119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03781758 325.38119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03781759 325.38122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03781760 325.38122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03781761 325.38125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03781762 325.38125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03781763 325.38128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03781764 325.38128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03781765 325.38128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03781766 325.38128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03781767 325.38131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03781768 325.38131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03781769 325.38134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03781770 325.38134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03781771 325.38140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03781772 325.38140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03781773 325.38143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03781774 325.38143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03781775 325.38146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03781776 325.38146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03781777 325.38150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03781778 325.38150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03781779 325.38153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03781780 325.38153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03781781 325.38156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03781782 325.38156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03781783 325.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03781784 325.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03781785 325.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03781786 325.38159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03781787 325.38162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03781788 325.38162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03781789 325.38165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03781790 325.38165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03781791 325.38168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03781792 325.38168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03781793 325.38171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03781794 325.38171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03781795 325.38174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03781796 325.38174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03781797 325.38177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03781798 325.38177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03781799 325.38177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03781800 325.38177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03781801 325.38180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03781802 325.38180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03781803 325.38183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03781804 325.38183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03781805 325.38189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03781806 325.38189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03781807 325.38192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03781808 325.38192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03781809 325.38192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03781810 325.38192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03781811 325.38195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03781812 325.38195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03781813 325.38198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03781814 325.38198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03781815 325.38201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03781816 325.38201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03781817 325.38204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03781818 325.38204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03781819 325.38208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03781820 325.38208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03781821 325.38208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03781822 325.38211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03781823 325.38211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03781824 325.38214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03781825 325.38217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03781826 325.38217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03781827 325.38220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03781828 325.38220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03781829 325.38223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03781830 325.38223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03781831 325.38223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03781832 325.38223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03781833 325.38226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03781834 325.38226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03781835 325.38229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03781836 325.38229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03781837 325.38232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03781838 325.38232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03781839 325.38235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03781840 325.38235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03781841 325.38238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03781842 325.38238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03781843 325.38241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03781844 325.38241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03781845 325.38244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03781846 325.38244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03781847 325.38247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03781848 325.38247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03781849 325.38250732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03781850 325.38250732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03781851 325.38253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03781852 325.38253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03781853 325.38256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03781854 325.38256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03781855 325.38256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03781856 325.38256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03781857 325.38259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03781858 325.38259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -03781859 325.38262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03781860 325.38262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -03781861 325.38265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03781862 325.38265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -03781863 325.38269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03781864 325.38269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -03781865 325.38272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03781866 325.38272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -03781867 325.38272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03781868 325.38272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -03781869 325.38275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03781870 325.38275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -03781871 325.38278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03781872 325.38281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -03781873 325.38284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03781874 325.38284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -03781875 325.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03781876 325.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -03781877 325.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03781878 325.38287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -03781879 325.38290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03781880 325.38290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -03781881 325.38293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03781882 325.38293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -03781883 325.38296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03781884 325.38296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -03781885 325.38299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03781886 325.38299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -03781887 325.38302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03781888 325.38302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -03781889 325.38302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03781890 325.38302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -03781891 325.38305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03781892 325.38308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -03785991 325.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -03785992 325.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd678 -03785993 325.43960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -03785994 325.43960571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -03785995 325.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -03785996 325.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -03785997 325.43966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -03785998 325.43966675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -03785999 325.43969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -03786000 325.43972778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -03786001 325.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -03786002 325.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -03786003 325.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -03786004 325.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -03786005 325.43978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -03786006 325.43978882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -03786007 325.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -03786008 325.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -03786009 325.43984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -03786010 325.43984985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -03786011 325.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -03786012 325.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -03786013 325.43991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -03786014 325.43991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -03786015 325.43991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -03786016 325.43991089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -03786017 325.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -03786018 325.43997192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -03786019 325.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -03786020 325.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -03786021 325.44003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -03786022 325.44003296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -03786023 325.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -03786024 325.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -03786025 325.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -03786026 325.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -03786027 325.44009399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -03786028 325.44009399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -03786029 325.44012451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -03786030 325.44012451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -03786031 325.44015503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -03786032 325.44015503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -03786033 325.44018555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -03786034 325.44018555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -03790395 325.50057983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16018 -03790396 325.50057983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16018 -03790397 325.50061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16028 -03790398 325.50061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16028 -03790399 325.50061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16038 -03790400 325.50061035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16038 -03790401 325.50064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16048 -03790402 325.50064087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16048 -03790403 325.50067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16058 -03790404 325.50067139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16058 -03790405 325.50070190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16068 -03790406 325.50070190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16068 -03790407 325.50073242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16078 -03790408 325.50076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16078 -03790409 325.50076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16088 -03790410 325.50076294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16088 -03790411 325.50079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16098 -03790412 325.50079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16098 -03790413 325.50082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a8 -03790414 325.50082397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a8 -03790415 325.50085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b8 -03790416 325.50085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b8 -03790417 325.50088501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c8 -03790418 325.50088501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c8 -03790419 325.50091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d8 -03790420 325.50091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d8 -03790421 325.50091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e8 -03790422 325.50091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e8 -03790423 325.50094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f8 -03790424 325.50094604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f8 -03790425 325.50097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16108 -03790426 325.50097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16108 -03790427 325.50100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16118 -03790428 325.50100708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16118 -03790429 325.50103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16128 -03790430 325.50103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16128 -03790431 325.50106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16138 -03790432 325.50106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16138 -03790433 325.50106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16148 -03790434 325.50106812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16148 -03790435 325.50109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16158 -03790436 325.50109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16158 -03790437 325.50112915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16168 -03790438 325.50112915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16168 -03795516 325.57107544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20018 -03795517 325.57113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20028 -03795518 325.57113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20028 -03795519 325.57113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20038 -03795520 325.57113647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20038 -03795521 325.57116699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20048 -03795522 325.57116699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20048 -03795523 325.57119751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20058 -03795524 325.57119751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20058 -03795525 325.57122803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20068 -03795526 325.57122803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20068 -03795527 325.57125854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20078 -03795528 325.57125854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20078 -03795529 325.57128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -03795530 325.57128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -03795531 325.57128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -03795532 325.57128906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -03795533 325.57131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -03795534 325.57131958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -03795535 325.57135010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -03795536 325.57135010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -03795537 325.57138062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -03795538 325.57141113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -03795539 325.57144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -03795540 325.57144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -03795541 325.57144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -03795542 325.57144165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -03795543 325.57147217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -03795544 325.57147217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -03795545 325.57150269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -03795546 325.57150269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20108 -03795547 325.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -03795548 325.57153320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20118 -03795549 325.57156372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -03795550 325.57156372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20128 -03795551 325.57159424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -03795552 325.57159424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20138 -03795553 325.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -03795554 325.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20148 -03795555 325.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20158 -03795556 325.57162476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20158 -03795557 325.57165527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20168 -03795558 325.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20168 -03795559 325.57168579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20178 -03800749 325.64373779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03800750 325.64373779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -03800751 325.64373779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03800752 325.64373779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -03800753 325.64376831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03800754 325.64376831 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -03800755 325.64379883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03800756 325.64379883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -03800757 325.64382935 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03800758 325.64385986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -03800759 325.64389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03800760 325.64389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -03800761 325.64389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03800762 325.64389038 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -03800763 325.64392090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03800764 325.64392090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -03800765 325.64395142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03800766 325.64395142 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -03800767 325.64398193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03800768 325.64398193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -03800769 325.64401245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03800770 325.64401245 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -03800771 325.64404297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -03800772 325.64404297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -03800773 325.64404297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -03800774 325.64404297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -03800775 325.64407349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03800776 325.64407349 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -03800777 325.64410400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03800778 325.64410400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -03800779 325.64413452 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03800780 325.64416504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -03800781 325.64419556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03800782 325.64419556 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -03800783 325.64422607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -03800784 325.64422607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -03800785 325.64422607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -03800786 325.64422607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -03800787 325.64425659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d8 -03800788 325.64425659 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4d8 -03800789 325.64428711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e8 -03800790 325.64428711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4e8 -03800791 325.64431763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f8 -03800792 325.64431763 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4f8 -03802519 325.66818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -03802520 325.66818237 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -03802521 325.66821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -03802522 325.66821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -03802523 325.66821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -03802524 325.66821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -03802525 325.66824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -03802526 325.66824341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -03802527 325.66827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -03802528 325.66827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -03802529 325.66830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -03802530 325.66830444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -03802531 325.66833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -03802532 325.66833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -03802533 325.66836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -03802534 325.66836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -03802535 325.66836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -03802536 325.66836548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -03802537 325.66839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -03802538 325.66839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -03802539 325.66842651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -03802540 325.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -03802541 325.66845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -03802542 325.66848755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -03802543 325.66848755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -03802544 325.66851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -03802545 325.66851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -03802546 325.66851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -03802547 325.66854858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -03802548 325.66854858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -03802549 325.66857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -03802550 325.66857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -03802551 325.66860962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -03802552 325.66860962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -03802553 325.66864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -03802554 325.66864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -03802555 325.66867065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -03802556 325.66867065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -03802557 325.66867065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -03802558 325.66867065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -03802559 325.66870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -03802560 325.66870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -03802561 325.66873169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc48 -03802562 325.66873169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc48 -03803491 325.68161011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -03803492 325.68161011 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -03803493 325.68164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -03803494 325.68167114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -03803495 325.68167114 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f978 -03803496 325.68170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f978 -03803497 325.68170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f988 -03803498 325.68170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f988 -03803499 325.68173218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f998 -03803500 325.68173218 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f998 -03803501 325.68176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a8 -03803502 325.68176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9a8 -03803503 325.68179321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b8 -03803504 325.68179321 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9b8 -03803505 325.68182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c8 -03803506 325.68182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9c8 -03803507 325.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d8 -03803508 325.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9d8 -03803509 325.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e8 -03803510 325.68185425 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e8 -03803511 325.68188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f8 -03803512 325.68188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f8 -03803513 325.68191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa08 -03803514 325.68191528 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa08 -03803515 325.68194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa18 -03803516 325.68194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa18 -03803517 325.68197632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa28 -03803518 325.68197632 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa28 -03803519 325.68200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa38 -03803520 325.68200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa38 -03803521 325.68203735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa48 -03803522 325.68203735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa48 -03803523 325.68203735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa58 -03803524 325.68203735 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa58 -03803525 325.68206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa68 -03803526 325.68206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa68 -03803527 325.68209839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa78 -03803528 325.68209839 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa78 -03803529 325.68212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa88 -03803530 325.68212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa88 -03803531 325.68215942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa98 -03803532 325.68215942 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa98 -03803533 325.68218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa8 -03803534 325.68218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa8 -03821538 326.85382080 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821539 326.85385132 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821540 326.85385132 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821541 326.85388184 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03821542 326.85400391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821543 326.85400391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03821544 326.85406494 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821545 326.85409546 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03821546 327.93008423 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03821547 327.94894409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821548 327.94894409 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821549 329.36032104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821550 329.36032104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821551 329.36035156 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821552 329.36035156 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03821553 329.36047363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821554 329.36047363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03821555 329.36056519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03821556 329.36056519 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03821557 329.94979858 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03821558 329.97064209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821559 329.97064209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03821560 330.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03821561 330.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03821562 330.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03821563 330.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03821564 330.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03821565 330.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03821566 330.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03821567 330.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03821568 330.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03821569 330.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03821570 330.93228149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03821571 330.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03821572 330.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03821573 330.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03821574 330.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03821575 330.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03821576 330.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03821577 330.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03821578 330.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03821579 330.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03821580 330.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03821581 330.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03821582 330.93246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03821583 330.93246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03821584 330.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03821585 330.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03821586 330.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03821587 330.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03821588 330.93252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03821589 330.93252563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03821590 330.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03821591 330.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03821592 330.93258667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03821593 330.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03821594 330.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03821595 330.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03821596 330.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03821597 330.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03821598 330.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03821599 330.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03821600 330.93270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03821601 330.93270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03821602 330.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03821603 330.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03821604 330.93276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03821605 330.93276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03821606 330.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03821607 330.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03821608 330.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03821609 330.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03821610 330.93283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03821611 330.93283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03821612 330.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03821613 330.93289185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03821614 330.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03821615 330.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03821616 330.93295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03821617 330.93295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03821618 330.93295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03821619 330.93295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03821620 330.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03821621 330.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03821622 330.93301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03821623 330.93301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03821624 330.93307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03821625 330.93307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03821626 330.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03821627 330.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03821628 330.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03821629 330.93313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03821630 330.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03821631 330.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03821632 330.93319702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03821633 330.93319702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03821634 330.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03821635 330.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03821636 330.93325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03821637 330.93325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03821638 330.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03821639 330.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03821640 330.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03821641 330.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03821642 330.93331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03821643 330.93331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03821644 330.93334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03821645 330.93334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03821646 330.93338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03821647 330.93338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03821648 330.93341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03821649 330.93344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03821650 330.93344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03821651 330.93344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03821652 330.93347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03821653 330.93347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03821654 330.93350220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03821655 330.93350220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03821656 330.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03821657 330.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03821658 330.93356323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03821659 330.93356323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03821660 330.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03821661 330.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03821662 330.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03821663 330.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03821664 330.93362427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03821665 330.93362427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03821666 330.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03821667 330.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03821668 330.93368530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03821669 330.93368530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03821670 330.93371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03821671 330.93374634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03821672 330.93374634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03821673 330.93374634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03821674 330.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03821675 330.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03821676 330.93380737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03821677 330.93380737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03821678 330.93383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03821679 330.93383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03821680 330.93386841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03821681 330.93386841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03821682 330.93389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03821683 330.93389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03821684 330.93392944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03821685 330.93392944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03821686 330.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03821687 330.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03821688 330.93399048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03821689 330.93399048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03821690 330.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03821691 330.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03821692 330.93405151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03821693 330.93405151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03821694 330.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03821695 330.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03821696 330.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03821697 330.93411255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03821698 330.93414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03821699 330.93414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03821700 330.93417358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03821701 330.93417358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03821702 330.93420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03821703 330.93420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03821704 330.93423462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03821705 330.93423462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03821706 330.93423462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03821707 330.93423462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03821708 330.93426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03821709 330.93426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03821710 330.93429565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03821711 330.93429565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03821712 330.93432617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03821713 330.93432617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03821714 330.93435669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03821715 330.93435669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03821716 330.93438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03821717 330.93438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03821718 330.93441772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03821719 330.93441772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03821720 330.93444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03821721 330.93444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03821722 330.93447876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03821723 330.93447876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03821724 330.93450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03821725 330.93450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03821726 330.93453979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03821727 330.93453979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03821728 330.93453979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03821729 330.93453979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03821730 330.93457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03821731 330.93457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03821732 330.93460083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03821733 330.93460083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03821734 330.93463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03821735 330.93463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03821736 330.93466187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03821737 330.93466187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03821738 330.93469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03821739 330.93469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03821740 330.93472290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03821741 330.93472290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03821742 330.93475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03821743 330.93475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03821744 330.93478394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03821745 330.93478394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03821746 330.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03821747 330.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03821748 330.93484497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03821749 330.93484497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03821750 330.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03821751 330.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03821752 330.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03821753 330.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03821754 330.93490601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03821755 330.93490601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03821756 330.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03821757 330.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03821758 330.93496704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03821759 330.93499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03821760 330.93502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03821761 330.93502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03821762 330.93502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03821763 330.93502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03821764 330.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03821765 330.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03821766 330.93508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03821767 330.93508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03821768 330.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03821769 330.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03821770 330.93515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03821771 330.93515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03821772 330.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03821773 330.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03821774 330.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03821775 330.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03821776 330.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03821777 330.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03821778 330.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03821779 330.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03821780 330.93530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03821781 330.93530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03821782 330.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03821783 330.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03821784 330.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03821785 330.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03821786 330.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03821787 330.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03821788 330.93539429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03821789 330.93539429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03821790 330.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03821791 330.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03821792 330.93545532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03821793 330.93545532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03821794 330.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03821795 330.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03821796 330.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03821797 330.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03821798 330.93551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03821799 330.93551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03821800 330.93554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03821801 330.93557739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03821802 330.93560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03821803 330.93560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03821804 330.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03821805 330.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03821806 330.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03821807 330.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03821808 330.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03821809 330.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03821810 330.93569946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03821811 330.93569946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03821812 330.93572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03821813 330.93572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03821814 330.93576050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03821815 330.93576050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03821816 330.93579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03821817 330.93579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03821818 330.93582153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03821819 330.93582153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03821820 330.93582153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03821821 330.93585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03821822 330.93588257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03821823 330.93588257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03821824 330.93591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03821825 330.93591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03821826 330.93594360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03821827 330.93594360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03821828 330.93597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03821829 330.93597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03821830 330.93597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03821831 330.93597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03821832 330.93600464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03821833 330.93600464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03821834 330.93603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03821835 330.93603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03821836 330.93606567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03821837 330.93606567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03821838 330.93609619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03821839 330.93609619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03821840 330.93612671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03821841 330.93612671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03821842 330.93615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03821843 330.93615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03821844 330.93618774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03821845 330.93618774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03821846 330.93621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03821847 330.93621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03821848 330.93624878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03821849 330.93624878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03821850 330.93627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03821851 330.93627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03821852 330.93627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03821853 330.93627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03821854 330.93630981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03821855 330.93630981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03821856 330.93634033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03821857 330.93634033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03821858 330.93637085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03821859 330.93637085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03821860 330.93640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03821861 330.93640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03821862 330.93643188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03821863 330.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03821864 330.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03821865 330.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03821866 330.93649292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03821867 330.93649292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03821868 330.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03821869 330.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03821870 330.93655396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03821871 330.93655396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03821872 330.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03821873 330.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03821874 330.93661499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03821875 330.93661499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03821876 330.93661499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03821877 330.93661499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03821878 330.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03821879 330.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03821880 330.93667603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03821881 330.93667603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03821882 330.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03821883 330.93673706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03821884 330.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03821885 330.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03821886 330.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03821887 330.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03821888 330.93679810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03821889 330.93679810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03821890 330.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03821891 330.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03821892 330.93685913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03821893 330.93685913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03821894 330.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03821895 330.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03821896 330.93692017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03821897 330.93692017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03821898 330.93692017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03821899 330.93692017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03821900 330.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03821901 330.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03821902 330.93698120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03821903 330.93698120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03821904 330.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03821905 330.93704224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03821906 330.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03821907 330.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03821908 330.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03821909 330.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03821910 330.93710327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03821911 330.93710327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03821912 330.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03821913 330.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03821914 330.93716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03821915 330.93716431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03821916 330.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03821917 330.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03821918 330.93722534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03821919 330.93722534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03821920 330.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03821921 330.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03821922 330.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03821923 330.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03821924 330.93728638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03821925 330.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03821926 330.93734741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03821927 330.93734741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03821928 330.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03821929 330.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03821930 330.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03821931 330.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03821932 330.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03821933 330.93740845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03821934 330.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03821935 330.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03821936 330.93746948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03821937 330.93746948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03821938 330.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03821939 330.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03821940 330.93753052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03821941 330.93753052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03821942 330.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03821943 330.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03821944 330.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03821945 330.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03821946 330.93759155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03821947 330.93762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03821948 330.93765259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03821949 330.93765259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03821950 330.93768311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03821951 330.93768311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03821952 330.93771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03821953 330.93771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03821954 330.93771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03821955 330.93771362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03821956 330.93774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03821957 330.93774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03821958 330.93777466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03821959 330.93777466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03821960 330.93780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03821961 330.93780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03821962 330.93783569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03821963 330.93783569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03821964 330.93786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03821965 330.93786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03821966 330.93789673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03821967 330.93789673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03821968 330.93792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03821969 330.93792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03821970 330.93795776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03821971 330.93795776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03821972 330.93798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03821973 330.93798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03821974 330.93801880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03821975 330.93801880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03821976 330.93804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03821977 330.93804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03821978 330.93804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03821979 330.93804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03821980 330.93807983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03821981 330.93807983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03821982 330.93811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03821983 330.93811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03821984 330.93814087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03821985 330.93814087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03821986 330.93817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03821987 330.93817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03821988 330.93820190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03821989 330.93820190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03821990 330.93823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03821991 330.93823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03821992 330.93826294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03821993 330.93826294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03821994 330.93829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03821995 330.93829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03821996 330.93832397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03821997 330.93832397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03821998 330.93835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03821999 330.93835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03822000 330.93835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03822001 330.93835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03822002 330.93838501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03822003 330.93838501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03822004 330.93841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03822005 330.93841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03822006 330.93844604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03822007 330.93844604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03822008 330.93847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03822009 330.93850708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03822010 330.93850708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03822011 330.93850708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03822012 330.93853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03822013 330.93853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03822014 330.93856812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03822015 330.93856812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03822016 330.93859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03822017 330.93859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03822018 330.93862915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03822019 330.93862915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03822020 330.93865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03822021 330.93865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03822022 330.93869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03822023 330.93869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03822024 330.93869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03822025 330.93869019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03822026 330.93872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03822027 330.93872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03822028 330.93875122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03822029 330.93875122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03822030 330.93878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03822031 330.93881226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03822032 330.93884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03822033 330.93884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03822034 330.93884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03822035 330.93884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03822036 330.93887329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03822037 330.93887329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03822038 330.93890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03822039 330.93890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03822040 330.93893433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03822041 330.93893433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03822042 330.93896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03822043 330.93896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03822044 330.93899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03822045 330.93899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03822046 330.93899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03822047 330.93899536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03822048 330.93902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03822049 330.93902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03822050 330.93905640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03822051 330.93908691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03822052 330.93911743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03822053 330.93911743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03822054 330.93914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03822055 330.93914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03822056 330.93914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03822057 330.93914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03822058 330.93917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03822059 330.93917847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03822060 330.93920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03822061 330.93920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03822062 330.93923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03822063 330.93923950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03822064 330.93927002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03822065 330.93927002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03822066 330.93930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03822067 330.93930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03822068 330.93930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03822069 330.93930054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03822070 330.93933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03822071 330.93933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03822072 330.93936157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03822073 330.93939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03822074 330.93942261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03822075 330.93942261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03822076 330.93945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03822077 330.93945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03822078 330.93948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03822079 330.93948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03822080 330.93948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03822081 330.93948364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03822082 330.93951416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03822083 330.93951416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03822084 330.93954468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03822085 330.93954468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03822086 330.93957520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03822087 330.93957520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03822088 330.93960571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03822089 330.93960571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03822090 330.93963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03822091 330.93963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03822092 330.93963623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03822093 330.93966675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03822094 330.93969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03822095 330.93969727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03822096 330.93972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03822097 330.93972778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03822098 330.93975830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03822099 330.93975830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03822100 330.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03822101 330.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03822102 330.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03822103 330.93978882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03822104 330.93981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03822105 330.93981934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03822106 330.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03822107 330.93984985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03822108 330.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03822109 330.93988037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03822110 330.93991089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03822111 330.93991089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03822112 330.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03822113 330.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03822114 330.93994141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03822115 330.93997192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03822116 330.94000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03822117 330.94000244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03822118 330.94003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03822119 330.94003296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03822120 330.94006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03822121 330.94006348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03822122 330.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03822123 330.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03822124 330.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03822125 330.94009399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03822126 330.94012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03822127 330.94012451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03822128 330.94015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03822129 330.94015503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03822130 330.94018555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03822131 330.94021606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03822132 330.94024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03822133 330.94024658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03822134 330.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03822135 330.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03822136 330.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03822137 330.94027710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03822138 330.94030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03822139 330.94030762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03822140 330.94042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03822141 330.94042969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03822142 330.94046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03822143 330.94046021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03822144 330.94049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03822145 330.94049072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03822146 330.94052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03822147 330.94052124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03822148 330.94055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03822149 330.94055176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03822150 330.94058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03822151 330.94058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03822152 330.94058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03822153 330.94058228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03822154 330.94061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03822155 330.94061279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03822156 330.94064331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03822157 330.94064331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03822158 330.94067383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03822159 330.94067383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03822160 330.94070435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03822161 330.94070435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03822162 330.94073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03822163 330.94073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03822164 330.94073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03822165 330.94073486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03822166 330.94076538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03822167 330.94076538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03822168 330.94079590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03822169 330.94079590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03822170 330.94082642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03822171 330.94085693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03822172 330.94088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03822173 330.94088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03822174 330.94088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03822175 330.94088745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03822176 330.94091797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03822177 330.94091797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03822178 330.94094849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03822179 330.94094849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03822180 330.94097900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03822181 330.94097900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03822182 330.94100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03822183 330.94100952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03822184 330.94104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03822185 330.94104004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03822186 330.94107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03822187 330.94107056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03822188 330.94110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03822189 330.94110107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03822190 330.94113159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03822191 330.94113159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03822192 330.94116211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03822193 330.94116211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03822194 330.94119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03822195 330.94119263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03822196 330.94122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03822197 330.94122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03822198 330.94122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03822199 330.94122314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03822200 330.94125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03822201 330.94125366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03822202 330.94128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03822203 330.94128418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03822204 330.94131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03822205 330.94131470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03822206 330.94134521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03822207 330.94137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03822208 330.94137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03822209 330.94137573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03822210 330.94140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03822211 330.94140625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03822212 330.94143677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03822213 330.94143677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03822214 330.94146729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03822215 330.94146729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03822216 330.94149780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03822217 330.94149780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03822218 330.94152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03822219 330.94152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03822220 330.94152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03822221 330.94152832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03822222 330.94155884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03822223 330.94155884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03822224 330.94158936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03822225 330.94158936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03822226 330.94161987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03822227 330.94161987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03822228 330.94165039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03822229 330.94165039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03822230 330.94168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03822231 330.94168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03822232 330.94168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03822233 330.94168091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03822234 330.94171143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03822235 330.94171143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03822236 330.94174194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03822237 330.94174194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03822238 330.94177246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03822239 330.94180298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03822240 330.94183350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03822241 330.94183350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03822242 330.94186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03822243 330.94186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03822244 330.94186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03822245 330.94186401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03822246 330.94189453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03822247 330.94189453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03822248 330.94192505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03822249 330.94192505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03822250 330.94195557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03822251 330.94195557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03822252 330.94198608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03822253 330.94198608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03822254 330.94201660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03822255 330.94201660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03822256 330.94204712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03822257 330.94204712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03822258 330.94207764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03822259 330.94207764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03822260 330.94210815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03822261 330.94210815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03822262 330.94213867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03822263 330.94213867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03822264 330.94216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03822265 330.94216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03822266 330.94216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03822267 330.94216919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03822268 330.94219971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03822269 330.94219971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03822270 330.94223022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03822271 330.94223022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03822272 330.94226074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03822273 330.94226074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03822274 330.94229126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03822275 330.94232178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03822276 330.94232178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03822277 330.94232178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03822278 330.94235229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03822279 330.94235229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03822280 330.94238281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03822281 330.94238281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03822282 330.94241333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03822283 330.94241333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03822284 330.94244385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03822285 330.94244385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03822286 330.94247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03822287 330.94247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03822288 330.94247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03822289 330.94247437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03822290 330.94250488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03822291 330.94250488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03822292 330.94253540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03822293 330.94256592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03822294 330.94259644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03822295 330.94259644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03822296 330.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03822297 330.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03822298 330.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03822299 330.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03822300 330.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03822301 330.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03822302 330.94268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03822303 330.94268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03822304 330.94271851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03822305 330.94271851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03822306 330.94274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03822307 330.94274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03822308 330.94277954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03822309 330.94277954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03822310 330.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03822311 330.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03822312 330.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03822313 330.94284058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03822314 330.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03822315 330.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03822316 330.94290161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03822317 330.94290161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03822318 330.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03822319 330.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03822320 330.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03822321 330.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03822322 330.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03822323 330.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03822324 330.94299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03822325 330.94299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03822326 330.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03822327 330.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03822328 330.94305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03822329 330.94305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03822330 330.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03822331 330.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03822332 330.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03822333 330.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03822334 330.94314575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03822335 330.94314575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03822336 330.94317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03822337 330.94317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03822338 330.94320679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03822339 330.94320679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03822340 330.94323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03822341 330.94323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03822342 330.94326782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03822343 330.94326782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03822344 330.94329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03822345 330.94329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03822346 330.94329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03822347 330.94329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03822348 330.94332886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03822349 330.94332886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03822350 330.94335938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03822351 330.94335938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03822352 330.94338989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03822353 330.94342041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03822354 330.94345093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03822355 330.94345093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03822356 330.94345093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03822357 330.94345093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03822358 330.94348145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03822359 330.94348145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03822360 330.94351196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03822361 330.94351196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03822362 330.94354248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03822363 330.94354248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03822364 330.94357300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03822365 330.94357300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03822366 330.94360352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03822367 330.94360352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03822368 330.94360352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03822369 330.94360352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03822370 330.94363403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03822371 330.94363403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03822372 330.94366455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03822373 330.94369507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03822374 330.94372559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03822375 330.94372559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03822376 330.94375610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03822377 330.94375610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03822378 330.94375610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03822379 330.94375610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03822380 330.94378662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03822381 330.94378662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03822382 330.94381714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03822383 330.94381714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03822384 330.94384766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03822385 330.94384766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03822386 330.94387817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03822387 330.94387817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03822388 330.94390869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03822389 330.94390869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03822390 330.94390869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03822391 330.94390869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03822392 330.94393921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03822393 330.94396973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03822394 330.94400024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03822395 330.94400024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03822396 330.94403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03822397 330.94403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03822398 330.94406128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03822399 330.94406128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03822400 330.94409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03822401 330.94409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03822402 330.94409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03822403 330.94409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03822404 330.94412231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03822405 330.94412231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03822406 330.94415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03822407 330.94418335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03822408 330.94421387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03822409 330.94421387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03822410 330.94424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03822411 330.94424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03822412 330.94424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03822413 330.94424438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03822414 330.94427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03822415 330.94427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03822416 330.94430542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03822417 330.94430542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03822418 330.94433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03822419 330.94433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03822420 330.94436646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03822421 330.94436646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03822422 330.94439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03822423 330.94439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03822424 330.94439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03822425 330.94442749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03822426 330.94445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03822427 330.94445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03822428 330.94448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03822429 330.94448853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03822430 330.94451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03822431 330.94451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03822432 330.94454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03822433 330.94454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03822434 330.94454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03822435 330.94454956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03822436 330.94458008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03822437 330.94458008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03822438 330.94461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03822439 330.94461060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03822440 330.94464111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03822441 330.94464111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03822442 330.94467163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03822443 330.94467163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03822444 330.94470215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03822445 330.94470215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03822446 330.94470215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03822447 330.94473267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03822448 330.94476318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03822449 330.94476318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03822450 330.94479370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03822451 330.94479370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03822452 330.94482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03822453 330.94482422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03822454 330.94485474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03822455 330.94485474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03822456 330.94488525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03822457 330.94488525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03822458 330.94488525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03822459 330.94488525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03822460 330.94491577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03822461 330.94491577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03822462 330.94494629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03822463 330.94494629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03822464 330.94497681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03822465 330.94497681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03822466 330.94503784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03822467 330.94503784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03822468 330.94503784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03822469 330.94503784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03822470 330.94506836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03822471 330.94506836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03822472 330.94509888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03822473 330.94509888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03822474 330.94512939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03822475 330.94512939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03822476 330.94515991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03822477 330.94515991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03822478 330.94519043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03822479 330.94519043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03822480 330.94519043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03822481 330.94519043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03822482 330.94522095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03822483 330.94522095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03822484 330.94525146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03822485 330.94525146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03822486 330.94528198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03822487 330.94531250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03822488 330.94534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03822489 330.94534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03822490 330.94534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03822491 330.94534302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03822492 330.94537354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03822493 330.94537354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03822494 330.94540405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03822495 330.94540405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03822496 330.94543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03822497 330.94543457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03822498 330.94546509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03822499 330.94546509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03822500 330.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03822501 330.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03822502 330.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03822503 330.94549561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03822504 330.94552612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03822505 330.94555664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03822506 330.94555664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03822507 330.94558716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03822508 330.94561768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03822509 330.94561768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03822510 330.94564819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03822511 330.94564819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03822512 330.94567871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03822513 330.94567871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03822514 330.94567871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03822515 330.94567871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03822516 330.94570923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03822517 330.94570923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03822518 330.94573975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03822519 330.94573975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03822520 330.94577026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03822521 330.94577026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03822522 330.94580078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03822523 330.94580078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03822524 330.94583130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03822525 330.94583130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03822526 330.94583130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03822527 330.94586182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03822528 330.94589233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03822529 330.94589233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03822530 330.94592285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03822531 330.94592285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03822532 330.94595337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03822533 330.94595337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03822534 330.94598389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03822535 330.94598389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03822536 330.94598389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03822537 330.94598389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03822538 330.94601440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03822539 330.94601440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03822540 330.94604492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03822541 330.94604492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03822542 330.94607544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03822543 330.94607544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03822544 330.94610596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03822545 330.94613647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03822546 330.94613647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03822547 330.94613647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03822548 330.94616699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03822549 330.94616699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03822550 330.94619751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03822551 330.94619751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03822552 330.94622803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03822553 330.94622803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03822554 330.94625854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03822555 330.94625854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03822556 330.94628906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03822557 330.94628906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03822558 330.94628906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03822559 330.94628906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03822560 330.94631958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03822561 330.94631958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03822562 330.94635010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03822563 330.94638062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03822564 330.94641113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03822565 330.94641113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03822566 330.94644165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03822567 330.94644165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03822568 330.94647217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03822569 330.94647217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03822570 330.94647217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03822571 330.94647217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03822572 330.94650269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03822573 330.94650269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03822574 330.94653320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03822575 330.94653320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03822576 330.94656372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03822577 330.94656372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03822578 330.94659424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03822579 330.94659424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03822580 330.94662476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03822581 330.94662476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03822582 330.94665527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03822583 330.94665527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03822584 330.94668579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03822585 330.94668579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03822586 330.94671631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03822587 330.94671631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03822588 330.94674683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03822589 330.94674683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03822590 330.94677734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03822591 330.94677734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03822592 330.94677734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03822593 330.94677734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03822594 330.94680786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03822595 330.94680786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03822596 330.94683838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03822597 330.94683838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03822598 330.94686890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03822599 330.94689941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03822600 330.94692993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03822601 330.94692993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03822602 330.94696045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03822603 330.94696045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03822604 330.94699097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03822605 330.94699097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03822606 330.94702148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03822607 330.94702148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03822608 330.94705200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03822609 330.94705200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03822610 330.94708252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03822611 330.94708252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03822612 330.94708252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03822613 330.94708252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03822614 330.94711304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03822615 330.94711304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03822616 330.94717407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03822617 330.94717407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03822618 330.94720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03822619 330.94720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03822620 330.94723511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03822621 330.94723511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03822622 330.94726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03822623 330.94726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03822624 330.94726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03822625 330.94726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03822626 330.94729614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03822627 330.94729614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03822628 330.94732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03822629 330.94732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03822630 330.94735718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03822631 330.94735718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03822632 330.94738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03822633 330.94738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03822634 330.94741821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03822635 330.94741821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03822636 330.94744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03822637 330.94744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03822638 330.94747925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03822639 330.94747925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03822640 330.94750977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03822641 330.94750977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03822642 330.94754028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03822643 330.94754028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03822644 330.94757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03822645 330.94757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03822646 330.94757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03822647 330.94757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03822648 330.94760132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03822649 330.94760132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03822650 330.94763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03822651 330.94763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03822652 330.94766235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03822653 330.94766235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03822654 330.94769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03822655 330.94772339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03822656 330.94772339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03822657 330.94772339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03822658 330.94775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03822659 330.94775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03822660 330.94778442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03822661 330.94778442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03822662 330.94781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03822663 330.94781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03822664 330.94784546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03822665 330.94784546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03822666 330.94787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03822667 330.94787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03822668 330.94787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03822669 330.94787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03822670 330.94790649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03822671 330.94790649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03822672 330.94793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03822673 330.94793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03822674 330.94796753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03822675 330.94799805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03822676 330.94802856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03822677 330.94802856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03822678 330.94805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03822679 330.94805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03822680 330.94805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03822681 330.94805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03822682 330.94808960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03822683 330.94808960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03822684 330.94812012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03822685 330.94812012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03822686 330.94815063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03822687 330.94815063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03822688 330.94818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03822689 330.94818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03822690 330.94821167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03822691 330.94821167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03822692 330.94824219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03822693 330.94824219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03822694 330.94827271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03822695 330.94827271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03822696 330.94830322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03822697 330.94830322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03822698 330.94833374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03822699 330.94833374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03822700 330.94836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03822701 330.94836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03822702 330.94836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03822703 330.94836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03822704 330.94839478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03822705 330.94839478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03822706 330.94842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03822707 330.94842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03822708 330.94845581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03822709 330.94845581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03822710 330.94848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03822711 330.94848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03822712 330.94851685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03822713 330.94851685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03822714 330.94854736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03822715 330.94854736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03822716 330.94857788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03822717 330.94857788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03822718 330.94860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03822719 330.94860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03822720 330.94863892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03822721 330.94863892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03822722 330.94866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03822723 330.94866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03822724 330.94869995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03822725 330.94869995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03822726 330.94869995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03822727 330.94869995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03822728 330.94873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03822729 330.94873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03822730 330.94876099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03822731 330.94876099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03822732 330.94879150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03822733 330.94882202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03822734 330.94885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03822735 330.94885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03822736 330.94885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03822737 330.94885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03822738 330.94888306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03822739 330.94888306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03822740 330.94891357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03822741 330.94891357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03822742 330.94894409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03822743 330.94894409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03822744 330.94897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03822745 330.94897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03822746 330.94900513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03822747 330.94900513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03822748 330.94900513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03822749 330.94900513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03822750 330.94903564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03822751 330.94903564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03822752 330.94906616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03822753 330.94906616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03822754 330.94909668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03822755 330.94912720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03822756 330.94915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03822757 330.94915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03822758 330.94915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03822759 330.94915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03822760 330.94918823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03822761 330.94918823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03822762 330.94921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03822763 330.94921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03822764 330.94924927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03822765 330.94924927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03822766 330.94927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03822767 330.94927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03822768 330.94931030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03822769 330.94931030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03822770 330.94931030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03822771 330.94931030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03822772 330.94934082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03822773 330.94937134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03822774 330.94940186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03822775 330.94940186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03822776 330.94943237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03822777 330.94943237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03822778 330.94946289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03822779 330.94946289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03822780 330.94949341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03822781 330.94949341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03822782 330.94949341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03822783 330.94949341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03822784 330.94952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03822785 330.94952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03822786 330.94955444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03822787 330.94955444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03822788 330.94958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03822789 330.94958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03822790 330.94961548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03822791 330.94961548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03822792 330.94964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03822793 330.94964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03822794 330.94967651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03822795 330.94967651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03822796 330.94970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03822797 330.94970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03822798 330.94973755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03822799 330.94973755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03822800 330.94976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03822801 330.94976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03822802 330.94979858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03822803 330.94979858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03822804 330.94979858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03822805 330.94979858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03822806 330.94982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03822807 330.94982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03822808 330.94985962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03822809 330.94985962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03822810 330.94989014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03822811 330.94992065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03822812 330.94995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03822813 330.94995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03822814 330.94995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03822815 330.94995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03822816 330.94998169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03822817 330.94998169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03822818 330.95001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03822819 330.95001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03822820 330.95004272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03822821 330.95004272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03822822 330.95007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03822823 330.95007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03822824 330.95010376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03822825 330.95010376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03822826 330.95010376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03822827 330.95010376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03822828 330.95013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03822829 330.95013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03822830 330.95016479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03822831 330.95019531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03822832 330.95022583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03822833 330.95022583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03822834 330.95025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03822835 330.95025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03822836 330.95028687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03822837 330.95028687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03822838 330.95028687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03822839 330.95028687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03822840 330.95031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03822841 330.95031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03822842 330.95034790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03822843 330.95034790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03822844 330.95037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03822845 330.95037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03822846 330.95040894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03822847 330.95040894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03822848 330.95043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03822849 330.95043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03822850 330.95043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03822851 330.95043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03822852 330.95050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03822853 330.95050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03822854 330.95053101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03822855 330.95053101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03822856 330.95056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03822857 330.95056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03822858 330.95059204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03822859 330.95059204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03822860 330.95059204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03822861 330.95059204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03822862 330.95062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03822863 330.95062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03822864 330.95065308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03822865 330.95065308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03822866 330.95068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03822867 330.95068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03822868 330.95071411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03822869 330.95071411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03822870 330.95074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03822871 330.95074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03822872 330.95074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03822873 330.95077515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03822874 330.95080566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03822875 330.95080566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03822876 330.95083618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03822877 330.95083618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03822878 330.95086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03822879 330.95086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03822880 330.95089722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03822881 330.95089722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03822882 330.95089722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03822883 330.95089722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03822884 330.95092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03822885 330.95092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03822886 330.95095825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03822887 330.95095825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03822888 330.95098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03822889 330.95098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03822890 330.95101929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03822891 330.95104980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03822892 330.95108032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03822893 330.95108032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03822894 330.95108032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03822895 330.95108032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03822896 330.95111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03822897 330.95111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03822898 330.95114136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03822899 330.95114136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03822900 330.95117188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03822901 330.95117188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03822902 330.95120239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03822903 330.95120239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03822904 330.95123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03822905 330.95123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03822906 330.95123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03822907 330.95123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03822908 330.95126343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03822909 330.95129395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03822910 330.95132446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03822911 330.95132446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03822912 330.95135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03822913 330.95135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03822914 330.95138550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03822915 330.95138550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03822916 330.95138550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03822917 330.95138550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03822918 330.95141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03822919 330.95141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03822920 330.95144653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03822921 330.95144653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03822922 330.95147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03822923 330.95147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03822924 330.95150757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03822925 330.95150757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03822926 330.95153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03822927 330.95153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03822928 330.95153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03822929 330.95156860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03822930 330.95159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03822931 330.95159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03822932 330.95162964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03822933 330.95162964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03822934 330.95166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03822935 330.95166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03822936 330.95169067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03822937 330.95169067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03822938 330.95169067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03822939 330.95169067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03822940 330.95172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03822941 330.95172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03822942 330.95175171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03822943 330.95175171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03822944 330.95178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03822945 330.95178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03822946 330.95181274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03822947 330.95181274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03822948 330.95184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03822949 330.95187378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03822950 330.95187378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03822951 330.95187378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03822952 330.95190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03822953 330.95190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03822954 330.95193481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03822955 330.95193481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03822956 330.95196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03822957 330.95196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03822958 330.95199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03822959 330.95199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03822960 330.95202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03822961 330.95202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03822962 330.95202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03822963 330.95202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03822964 330.95205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03822965 330.95205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03822966 330.95208740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03822967 330.95211792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03822968 330.95214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03822969 330.95214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03822970 330.95217896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03822971 330.95217896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03822972 330.95217896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03822973 330.95217896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03822974 330.95220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03822975 330.95220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03822976 330.95223999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03822977 330.95223999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03822978 330.95227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03822979 330.95227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03822980 330.95230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03822981 330.95230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03822982 330.95233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03822983 330.95233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03822984 330.95233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03822985 330.95233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03822986 330.95236206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03822987 330.95239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03822988 330.95242310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03822989 330.95242310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03822990 330.95245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03822991 330.95245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03822992 330.95248413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03822993 330.95248413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03822994 330.95248413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03822995 330.95248413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03822996 330.95251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03822997 330.95251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03822998 330.95254517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03822999 330.95254517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03823000 330.95257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03823001 330.95257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03823002 330.95260620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03823003 330.95260620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03823004 330.95263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03823005 330.95266724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03823006 330.95266724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03823007 330.95266724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03823008 330.95269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03823009 330.95269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03823010 330.95272827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03823011 330.95272827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03823012 330.95278931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03823013 330.95278931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03823014 330.95281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03823015 330.95281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03823016 330.95281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03823017 330.95285034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03823018 330.95288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03823019 330.95288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03823020 330.95291138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03823021 330.95294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03823022 330.95297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03823023 330.95297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03823024 330.95297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03823025 330.95297241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03823026 330.95300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03823027 330.95303345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03823028 330.95306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03823029 330.95306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03823030 330.95309448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03823031 330.95309448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03823032 330.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03823033 330.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03823034 330.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03823035 330.95312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03823036 330.95315552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03823037 330.95315552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03823038 330.95318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03823039 330.95318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03823040 330.95321655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03823041 330.95321655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03823042 330.95324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03823043 330.95324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03823044 330.95327759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03823045 330.95327759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03823046 330.95327759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03823047 330.95327759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03823048 330.95330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03823049 330.95333862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03823050 330.95336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03823051 330.95336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03823052 330.95339966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03823053 330.95339966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03823054 330.95343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03823055 330.95343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03823056 330.95346069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03823057 330.95346069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03823058 330.95346069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03823059 330.95346069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03823060 330.95349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03823061 330.95349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03823062 330.95352173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03823063 330.95352173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03823064 330.95355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03823065 330.95355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03823066 330.95358276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03823067 330.95358276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03823068 330.95361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03823069 330.95361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03823070 330.95364380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03823071 330.95364380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03823072 330.95367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03823073 330.95367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03823074 330.95370483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03823075 330.95370483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03823076 330.95373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03823077 330.95373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03823078 330.95376587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03823079 330.95376587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03823080 330.95376587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03823081 330.95379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03823082 330.95382690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03823083 330.95382690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03823084 330.95385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03823085 330.95385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03823086 330.95388794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03823087 330.95388794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03823088 330.95391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03823089 330.95391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03823090 330.95391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03823091 330.95391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03823092 330.95394897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03823093 330.95394897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03823094 330.95397949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03823095 330.95401001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03823096 330.95404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03823097 330.95404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03823098 330.95407104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03823099 330.95407104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03823100 330.95410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03823101 330.95410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03823102 330.95410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03823103 330.95410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03823104 330.95413208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03823105 330.95413208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03823106 330.95416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03823107 330.95416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03823108 330.95419312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03823109 330.95419312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03823110 330.95422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03823111 330.95422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03823112 330.95425415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03823113 330.95425415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03823114 330.95425415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03823115 330.95428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03823116 330.95431519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03823117 330.95431519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03823118 330.95434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03823119 330.95434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03823120 330.95437622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03823121 330.95437622 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03823122 330.95440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03823123 330.95440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03823124 330.95440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03823125 330.95440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03823126 330.95443726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03823127 330.95443726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03823128 330.95446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03823129 330.95446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03823130 330.95449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03823131 330.95449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03823132 330.95452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03823133 330.95452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03823134 330.95455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03823135 330.95455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03823136 330.95458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03823137 330.95458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03823138 330.95462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03823139 330.95462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03823140 330.95465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03823141 330.95465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03823142 330.95468140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03823143 330.95468140 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03823144 330.95471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03823145 330.95471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03823146 330.95471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03823147 330.95471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03823148 330.95474243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03823149 330.95474243 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03823150 330.95477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03823151 330.95477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03823152 330.95480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03823153 330.95480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03823154 330.95483398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03823155 330.95486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03823156 330.95489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03823157 330.95489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03823158 330.95489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03823159 330.95489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03823160 330.95492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03823161 330.95492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03823162 330.95495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03823163 330.95495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03823164 330.95498657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03823165 330.95498657 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03823166 330.95501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03823167 330.95501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03823168 330.95504761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03823169 330.95504761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03823170 330.95504761 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03823171 330.95507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03823172 330.95510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03823173 330.95510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03823174 330.95513916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03823175 330.95513916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03823176 330.95516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03823177 330.95516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03823178 330.95520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03823179 330.95520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03823180 330.95520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03823181 330.95523071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03823182 330.95526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03823183 330.95526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03823184 330.95529175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03823185 330.95529175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03823186 330.95532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03823187 330.95532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03823188 330.95535278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03823189 330.95535278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03823190 330.95535278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03823191 330.95535278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03823192 330.95538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03823193 330.95538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03823194 330.95541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03823195 330.95541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03823196 330.95544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03823197 330.95544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03823198 330.95547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03823199 330.95547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03823200 330.95550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03823201 330.95550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03823202 330.95553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03823203 330.95553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03823204 330.95556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03823205 330.95556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03823206 330.95559692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03823207 330.95559692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03823208 330.95562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03823209 330.95562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03823210 330.95565796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03823211 330.95565796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03823212 330.95568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03823213 330.95568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03823214 330.95568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03823215 330.95568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03823216 330.95571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03823217 330.95571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03823218 330.95574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03823219 330.95574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03823220 330.95578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03823221 330.95578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03823222 330.95581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03823223 330.95584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03823224 330.95584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03823225 330.95584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03823226 330.95587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03823227 330.95587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03823228 330.95590210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03823229 330.95590210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03823230 330.95593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03823231 330.95593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03823232 330.95596313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03823233 330.95596313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03823234 330.95599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03823235 330.95599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03823236 330.95599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03823237 330.95599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03823238 330.95602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03823239 330.95605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03823240 330.95608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03823241 330.95608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03823242 330.95611572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03823243 330.95611572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03823244 330.95614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03823245 330.95614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03823246 330.95614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03823247 330.95614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03823248 330.95617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03823249 330.95617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03823250 330.95620728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03823251 330.95620728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03823252 330.95623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03823253 330.95623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03823254 330.95626831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03823255 330.95629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03823256 330.95629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03823257 330.95629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03823258 330.95632935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03823259 330.95632935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03823260 330.95635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03823261 330.95635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03823262 330.95639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03823263 330.95639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03823264 330.95642090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03823265 330.95642090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03823266 330.95645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03823267 330.95645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03823268 330.95648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03823269 330.95648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03823270 330.95648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03823271 330.95651245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03823272 330.95654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03823273 330.95654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03823274 330.95657349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03823275 330.95657349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03823276 330.95660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03823277 330.95660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03823278 330.95663452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03823279 330.95663452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03823280 330.95663452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03823281 330.95663452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03823282 330.95666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03823283 330.95666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03823284 330.95672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03823285 330.95672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03823286 330.95675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03823287 330.95675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03823288 330.95678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03823289 330.95678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03823290 330.95678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03823291 330.95678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03823292 330.95681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03823293 330.95681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03823294 330.95684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03823295 330.95684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03823296 330.95687866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03823297 330.95687866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03823298 330.95690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03823299 330.95690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03823300 330.95693970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03823301 330.95693970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03823302 330.95697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03823303 330.95697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03823304 330.95700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03823305 330.95700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03823306 330.95703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03823307 330.95703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03823308 330.95706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03823309 330.95706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03823310 330.95709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03823311 330.95709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03823312 330.95709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03823313 330.95709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03823314 330.95712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03823315 330.95712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03823316 330.95715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03823317 330.95718384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03823318 330.95721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03823319 330.95721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03823320 330.95724487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03823321 330.95724487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03823322 330.95727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03823323 330.95727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03823324 330.95727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03823325 330.95727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03823326 330.95730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03823327 330.95730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03823328 330.95733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03823329 330.95733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03823330 330.95736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03823331 330.95736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03823332 330.95739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03823333 330.95739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03823334 330.95742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03823335 330.95742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03823336 330.95745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03823337 330.95745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03823338 330.95748901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03823339 330.95748901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03823340 330.95751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03823341 330.95751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03823342 330.95755005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03823343 330.95755005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03823344 330.95758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03823345 330.95758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03823346 330.95758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03823347 330.95758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03823348 330.95761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03823349 330.95761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03823350 330.95764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03823351 330.95764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03823352 330.95767212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03823353 330.95770264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03823354 330.95773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03823355 330.95773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03823356 330.95773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03823357 330.95773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03823358 330.95776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03823359 330.95776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03823360 330.95779419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03823361 330.95779419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03823362 330.95782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03823363 330.95782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03823364 330.95785522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03823365 330.95785522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03823366 330.95788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03823367 330.95788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03823368 330.95788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03823369 330.95788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03823370 330.95791626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03823371 330.95791626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03823372 330.95797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03823373 330.95797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03823374 330.95800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03823375 330.95800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03823376 330.95803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03823377 330.95803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03823378 330.95806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03823379 330.95806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03823380 330.95806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03823381 330.95806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03823382 330.95809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03823383 330.95809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03823384 330.95812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03823385 330.95812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03823386 330.95816040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03823387 330.95816040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03823388 330.95819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03823389 330.95819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03823390 330.95822144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03823391 330.95822144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03823392 330.95825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03823393 330.95825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03823394 330.95828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03823395 330.95828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03823396 330.95831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03823397 330.95831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03823398 330.95834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03823399 330.95834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03823400 330.95837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03823401 330.95837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03823402 330.95837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03823403 330.95837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03823404 330.95840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03823405 330.95840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03823406 330.95843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03823407 330.95843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03823408 330.95846558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03823409 330.95846558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03823410 330.95849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03823411 330.95852661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03823412 330.95852661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03823413 330.95852661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03823414 330.95855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03823415 330.95855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03823416 330.95858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03823417 330.95858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03823418 330.95861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03823419 330.95861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03823420 330.95864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03823421 330.95864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03823422 330.95867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03823423 330.95867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03823424 330.95867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03823425 330.95867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03823426 330.95870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03823427 330.95870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03823428 330.95874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03823429 330.95874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03823430 330.95880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03823431 330.95880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03823432 330.95883179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03823433 330.95883179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03823434 330.95886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03823435 330.95886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03823436 330.95886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03823437 330.95886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03823438 330.95889282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03823439 330.95889282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03823440 330.95892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03823441 330.95892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03823442 330.95895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03823443 330.95895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03823444 330.95898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03823445 330.95898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03823446 330.95901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03823447 330.95901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03823448 330.95901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03823449 330.95901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03823450 330.95904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03823451 330.95907593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -03823452 330.95910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03823453 330.95910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -03823454 330.95913696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03823455 330.95913696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -03823456 330.95916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03823457 330.95916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -03823458 330.95916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03823459 330.95916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -03823460 330.95919800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03823461 330.95919800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -03823462 330.95922852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03823463 330.95922852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -03823464 330.95925903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03823465 330.95925903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -03823466 330.95928955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03823467 330.95928955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -03823468 330.95932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03823469 330.95932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -03823470 330.95932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03823471 330.95935059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -03823472 330.95938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03823473 330.95938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -03823474 330.95941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03823475 330.95941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -03823476 330.95944214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03823477 330.95944214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -03823478 330.95947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03823479 330.95947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -03823480 330.95950317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03823481 330.95950317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -03823482 330.95950317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03823483 330.95950317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -03823484 330.95953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03823485 330.95953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -03823486 330.95956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03823487 330.95956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -03823488 330.95959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03823489 330.95959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -03823490 330.95962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03823491 330.95962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -03823492 330.95965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03823493 330.95965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -03823494 330.95968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03823495 330.95968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -03823496 330.95971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03823497 330.95971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -03823498 330.95974731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03823499 330.95974731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -03823500 330.95977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03823501 330.95977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -03823502 330.95980835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03823503 330.95980835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -03823504 330.95980835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03823505 330.95980835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -03823506 330.95983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03823507 330.95983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -03823508 330.95986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03823509 330.95986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -03823510 330.95989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03823511 330.95989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -03823512 330.95993042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03823513 330.95996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -03823514 330.95996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03823515 330.95996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -03823516 330.95999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03823517 330.95999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -03823518 330.96002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03823519 330.96002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -03823520 330.96005249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03823521 330.96005249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -03823522 330.96008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03823523 330.96008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -03823524 330.96011353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03823525 330.96011353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -03823526 330.96011353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03823527 330.96011353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -03823528 330.96014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03823529 330.96014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -03823530 330.96017456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03823531 330.96020508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -03823532 330.96023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03823533 330.96023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -03823534 330.96026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03823535 330.96026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -03823536 330.96029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03823537 330.96029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -03823538 330.96029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03823539 330.96029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -03823540 330.96032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03823541 330.96032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -03823542 330.96035767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03823543 330.96035767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -03823544 330.96038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03823545 330.96038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -03823546 330.96041870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03823547 330.96041870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -03823548 330.96044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03823549 330.96044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -03823550 330.96044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03823551 330.96044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -03823552 330.96047974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03823553 330.96051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -03823554 330.96054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03823555 330.96054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -03823556 330.96057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03823557 330.96057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -03823558 330.96060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03823559 330.96060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -03823560 330.96060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03823561 330.96060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -03823562 330.96063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03823563 330.96063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -03823564 330.96066284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03823565 330.96066284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -03823566 330.96069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03823567 330.96069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -03823568 330.96072388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03823569 330.96072388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -03823570 330.96075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03823571 330.96075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -03823572 330.96075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03823573 330.96078491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -03823574 330.96081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03823575 330.96081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -03823576 330.96084595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03823577 330.96084595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -03823578 330.96087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03823579 330.96087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -03823580 330.96090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03823581 330.96090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -03823582 330.96090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03823583 330.96090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -03823584 330.96093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03823585 330.96093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -03823586 330.96096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03823587 330.96096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -03823588 330.96099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03823589 330.96099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -03823590 330.96102905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03823591 330.96105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -03823592 330.96109009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03823593 330.96109009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -03823594 330.96109009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03823595 330.96109009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -03823596 330.96112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03823597 330.96112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -03823598 330.96115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03823599 330.96115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -03823600 330.96118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03823601 330.96118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -03823602 330.96121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03823603 330.96121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -03823604 330.96124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03823605 330.96124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -03823606 330.96124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03823607 330.96124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -03823608 330.96127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03823609 330.96127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -03823610 330.96130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03823611 330.96133423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -03823612 330.96136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03823613 330.96136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -03823614 330.96139526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03823615 330.96139526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -03823616 330.96139526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03823617 330.96139526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -03823618 330.96142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03823619 330.96142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -03823620 330.96145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03823621 330.96145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -03823622 330.96148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03823623 330.96148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -03823624 330.96151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03823625 330.96151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -03823626 330.96154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03823627 330.96154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -03823628 330.96154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03823629 330.96154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -03823630 330.96157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03823631 330.96157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -03823632 330.96160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03823633 330.96163940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -03823634 330.96166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03823635 330.96166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -03823636 330.96170044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03823637 330.96170044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -03823638 330.96170044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03823639 330.96170044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -03823640 330.96173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03823641 330.96173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -03823642 330.96176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03823643 330.96176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -03823644 330.96179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03823645 330.96179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -03823646 330.96182251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03823647 330.96182251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -03823648 330.96185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03823649 330.96185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -03823650 330.96188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03823651 330.96188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -03823652 330.96188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03823653 330.96191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -03823654 330.96194458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03823655 330.96194458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -03823656 330.96197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03823657 330.96197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -03823658 330.96200562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03823659 330.96200562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -03823660 330.96203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03823661 330.96203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -03823662 330.96203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03823663 330.96203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -03823664 330.96206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03823665 330.96206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -03823666 330.96209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03823667 330.96209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -03823668 330.96212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03823669 330.96212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -03823670 330.96215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03823671 330.96215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -03823672 330.96218872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03823673 330.96218872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -03823674 330.96221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03823675 330.96221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -03823676 330.96224976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03823677 330.96224976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -03823678 330.96228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03823679 330.96228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -03823680 330.96231079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03823681 330.96231079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -03823682 330.96234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03823683 330.96234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -03823684 330.96237183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03823685 330.96237183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -03823686 330.96243286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03823687 330.96243286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -03823688 330.96246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03823689 330.96246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -03823690 330.96249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03823691 330.96249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -03823692 330.96249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03823693 330.96249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -03823694 330.96252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03823695 330.96252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -03823696 330.96255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03823697 330.96255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -03823698 330.96258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03823699 330.96258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -03823700 330.96261597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03823701 330.96261597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -03823702 330.96264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03823703 330.96264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -03823704 330.96267700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03823705 330.96267700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -03823706 330.96267700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03823707 330.96270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -03823708 330.96273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03823709 330.96273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -03823710 330.96276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03823711 330.96276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -03823712 330.96279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03823713 330.96279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -03823714 330.96282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03823715 330.96282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -03823716 330.96282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03823717 330.96282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -03823718 330.96286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03823719 330.96286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -03823720 330.96289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03823721 330.96289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -03823722 330.96292114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03823723 330.96292114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -03823724 330.96295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03823725 330.96295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -03823726 330.96298218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03823727 330.96298218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -03823728 330.96298218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03823729 330.96301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -03823730 330.96304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03823731 330.96304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -03823732 330.96307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03823733 330.96307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -03823734 330.96310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03823735 330.96310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -03823736 330.96313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03823737 330.96313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -03823738 330.96313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03823739 330.96313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -03823740 330.96316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03823741 330.96316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -03823742 330.96319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03823743 330.96319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -03823744 330.96322632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03823745 330.96322632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -03823746 330.96325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03823747 330.96325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -03823748 330.96328735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03823749 330.96328735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -03823750 330.96331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03823751 330.96331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -03823752 330.96334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03823753 330.96334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -03823754 330.96337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03823755 330.96337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -03823756 330.96340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03823757 330.96340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -03823758 330.96343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03823759 330.96343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -03823760 330.96347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03823761 330.96347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -03823762 330.96347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03823763 330.96347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -03823764 330.96350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03823765 330.96350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -03823766 330.96353149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03823767 330.96353149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -03826700 331.00479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -03826701 331.00479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -03826702 331.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -03826703 331.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -03826704 331.00485229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -03826705 331.00485229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -03826706 331.00488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -03826707 331.00491333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -03826708 331.00491333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -03826709 331.00491333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -03826710 331.00494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -03826711 331.00494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -03826712 331.00497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -03826713 331.00497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -03826714 331.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -03826715 331.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -03826716 331.00503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -03826717 331.00503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -03826718 331.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -03826719 331.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -03826720 331.00509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -03826721 331.00509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -03826722 331.00509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -03826723 331.00509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -03826724 331.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -03826725 331.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -03826726 331.00515747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -03826727 331.00518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -03826728 331.00521851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -03826729 331.00521851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -03826730 331.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -03826731 331.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -03826732 331.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -03826733 331.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -03826734 331.00527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -03826735 331.00527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -03826736 331.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -03826737 331.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -03826738 331.00534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -03826739 331.00534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -03826740 331.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -03826741 331.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -03826742 331.00540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -03826743 331.00540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -03832100 331.08020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -03832101 331.08020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -03832102 331.08023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -03832103 331.08023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -03832104 331.08023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -03832105 331.08026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -03832106 331.08029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -03832107 331.08029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -03832108 331.08032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -03832109 331.08032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -03832110 331.08035278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -03832111 331.08035278 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -03832112 331.08038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -03832113 331.08038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -03832114 331.08038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -03832115 331.08038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -03832116 331.08041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -03832117 331.08041382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -03832118 331.08044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -03832119 331.08044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -03832120 331.08047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -03832121 331.08047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -03832122 331.08050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -03832123 331.08050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -03832124 331.08053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -03832125 331.08053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -03832126 331.08053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -03832127 331.08053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -03832128 331.08056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -03832129 331.08056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -03832130 331.08059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -03832131 331.08059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -03832132 331.08062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa8 -03832133 331.08062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa8 -03832134 331.08065796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -03832135 331.08065796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -03832136 331.08068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -03832137 331.08068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -03832138 331.08071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -03832139 331.08071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -03832140 331.08071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -03832141 331.08071899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -03832142 331.08074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -03832143 331.08074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -03837412 331.15426636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa8 -03837413 331.15426636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffa8 -03837414 331.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb8 -03837415 331.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffb8 -03837416 331.15432739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc8 -03837417 331.15432739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffc8 -03837418 331.15435791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd8 -03837419 331.15438843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffd8 -03837420 331.15438843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe8 -03837421 331.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ffe8 -03837422 331.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff8 -03837423 331.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fff8 -03837424 331.15444946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20008 -03837425 331.15444946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20008 -03837426 331.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20018 -03837427 331.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20018 -03837428 331.15451050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20028 -03837429 331.15451050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20028 -03837430 331.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20038 -03837431 331.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20038 -03837432 331.15457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20048 -03837433 331.15457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20048 -03837434 331.15457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20058 -03837435 331.15457153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20058 -03837436 331.15460205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20068 -03837437 331.15460205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20068 -03837438 331.15463257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20078 -03837439 331.15463257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20078 -03837440 331.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -03837441 331.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20088 -03837442 331.15469360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -03837443 331.15469360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20098 -03837444 331.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -03837445 331.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200a8 -03837446 331.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -03837447 331.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200b8 -03837448 331.15475464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -03837449 331.15475464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200c8 -03837450 331.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -03837451 331.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200d8 -03837452 331.15481567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -03837453 331.15481567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200e8 -03837454 331.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -03837455 331.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x200f8 -03843074 331.23370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b098 -03843075 331.23370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b098 -03843076 331.23373413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a8 -03843077 331.23373413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a8 -03843078 331.23376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b8 -03843079 331.23376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b8 -03843080 331.23379517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c8 -03843081 331.23379517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c8 -03843082 331.23382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d8 -03843083 331.23382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d8 -03843084 331.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e8 -03843085 331.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e8 -03843086 331.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f8 -03843087 331.23385620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f8 -03843088 331.23388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -03843089 331.23388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -03843090 331.23394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -03843091 331.23394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -03843092 331.23397827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -03843093 331.23397827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -03843094 331.23400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -03843095 331.23400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -03843096 331.23400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -03843097 331.23400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -03843098 331.23403931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -03843099 331.23403931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -03843100 331.23406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -03843101 331.23406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -03843102 331.23410034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -03843103 331.23410034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -03843104 331.23413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -03843105 331.23416138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -03843106 331.23416138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -03843107 331.23416138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -03843108 331.23419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -03843109 331.23419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -03843110 331.23422241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -03843111 331.23422241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -03843112 331.23425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -03843113 331.23425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -03843114 331.23428345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -03843115 331.23428345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -03843116 331.23431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -03843117 331.23431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -03855923 331.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -03855924 331.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -03855925 331.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -03855926 331.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -03855927 331.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -03855928 331.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -03855929 331.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -03855930 331.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -03855931 331.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -03855932 331.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -03855933 331.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -03855934 331.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -03855935 331.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -03855936 331.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -03855937 331.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -03855938 331.43313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -03855939 331.43313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -03855940 331.43316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -03855941 331.43319702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -03855942 331.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -03855943 331.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -03855944 331.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -03855945 331.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -03855946 331.43325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -03855947 331.43325806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -03855948 331.43328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -03855949 331.43328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -03855950 331.43331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -03855951 331.43331909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -03855952 331.43334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -03855953 331.43334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -03855954 331.43338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -03855955 331.43338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -03855956 331.43338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -03855957 331.43338013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -03855958 331.43341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -03855959 331.43341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -03855960 331.43344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -03855961 331.43344116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -03855962 331.43347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -03855963 331.43350220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -03855964 331.43353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44368 -03855965 331.43353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44368 -03855966 331.43356323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44378 -03859870 331.48886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -03859871 331.48886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -03859872 331.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -03859873 331.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -03859874 331.48892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -03859875 331.48892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -03859876 331.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -03859877 331.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -03859878 331.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -03859879 331.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -03859880 331.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -03859881 331.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -03859882 331.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -03859883 331.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -03859884 331.48904419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -03859885 331.48904419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -03859886 331.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -03859887 331.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -03859888 331.48910522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -03859889 331.48913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -03859890 331.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -03859891 331.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -03859892 331.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -03859893 331.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -03859894 331.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -03859895 331.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -03859896 331.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -03859897 331.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -03859898 331.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -03859899 331.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -03859900 331.48928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -03859901 331.48928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -03859902 331.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -03859903 331.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -03859904 331.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -03859905 331.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -03859906 331.48934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -03859907 331.48934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -03859908 331.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -03859909 331.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bea8 -03859910 331.48941040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -03859911 331.48941040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4beb8 -03859912 331.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -03859913 331.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bec8 -03863446 331.86666870 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863447 331.86672974 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863448 331.86676025 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863449 331.86676025 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03863450 331.86688232 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863451 331.86688232 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03863452 331.86694336 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863453 331.86694336 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03863454 331.97244263 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03863455 331.99206543 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863456 331.99206543 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863457 333.99258423 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03863458 334.01300049 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863459 334.01300049 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863460 334.37377930 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863461 334.37384033 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863462 334.37387085 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863463 334.37387085 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03863464 334.37399292 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863465 334.37399292 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03863466 334.37405396 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03863467 334.37405396 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03863468 335.40069580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03863469 335.40121460 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -03863470 336.01431274 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03863471 336.03378296 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863472 336.03378296 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03863473 336.08712769 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -03863474 336.08831787 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -03863475 336.10519409 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03863476 336.10522461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -03863477 336.10525513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03863478 336.10525513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -03863479 336.10525513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03863480 336.10525513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -03863481 336.10528564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03863482 336.10528564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -03863483 336.10531616 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03863484 336.10531616 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -03863485 336.10534668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03863486 336.10534668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -03863487 336.10537720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03863488 336.10537720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -03863489 336.10540771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03863490 336.10540771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -03863491 336.10540771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03863492 336.10540771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -03863493 336.10543823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03863494 336.10546875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -03863495 336.10549927 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03863496 336.10549927 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -03863497 336.10552979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03863498 336.10552979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -03863499 336.10556030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03863500 336.10556030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -03863501 336.10556030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03863502 336.10556030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -03863503 336.10559082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03863504 336.10559082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -03863505 336.10562134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03863506 336.10562134 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -03863507 336.10565186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03863508 336.10565186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -03863509 336.10568237 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03863510 336.10568237 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -03863511 336.10571289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03863512 336.10571289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -03863513 336.10571289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03863514 336.10574341 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -03863515 336.10577393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03863516 336.10577393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -03863517 336.10580444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03863518 336.10580444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -03863519 336.10583496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03863520 336.10583496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -03863521 336.10586548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03863522 336.10586548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -03863523 336.10589600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03863524 336.10589600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -03863525 336.10589600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03863526 336.10589600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -03863527 336.10592651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03863528 336.10592651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -03863529 336.10595703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03863530 336.10595703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -03863531 336.10598755 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03863532 336.10601807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -03863533 336.10604858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03863534 336.10604858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -03863535 336.10604858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03863536 336.10604858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -03863537 336.10607910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03863538 336.10607910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -03863539 336.10610962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03863540 336.10610962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -03863541 336.10614014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03863542 336.10614014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -03863543 336.10617065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03863544 336.10617065 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -03863545 336.10620117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03863546 336.10620117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -03863547 336.10620117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03863548 336.10620117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -03863549 336.10623169 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03863550 336.10623169 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -03863551 336.10626221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03863552 336.10629272 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -03863553 336.10632324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03863554 336.10632324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -03863555 336.10635376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03863556 336.10635376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -03863557 336.10635376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03863558 336.10635376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -03863559 336.10638428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03863560 336.10638428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -03863561 336.10641479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03863562 336.10641479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -03863563 336.10644531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03863564 336.10644531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -03863565 336.10647583 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03863566 336.10647583 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -03863567 336.10650635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03863568 336.10650635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -03863569 336.10650635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03863570 336.10650635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -03863571 336.10653687 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03863572 336.10656738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -03863573 336.10659790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03863574 336.10659790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -03863575 336.10662842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03863576 336.10662842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -03863577 336.10665894 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03863578 336.10665894 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -03863579 336.10668945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03863580 336.10668945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -03863581 336.10668945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03863582 336.10668945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -03863583 336.10671997 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03863584 336.10675049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -03863585 336.10678101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03863586 336.10678101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -03863587 336.10681152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03863588 336.10681152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -03863589 336.10684204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03863590 336.10684204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -03863591 336.10684204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03863592 336.10684204 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -03863593 336.10687256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03863594 336.10687256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -03863595 336.10690308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03863596 336.10690308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -03863597 336.10693359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03863598 336.10693359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -03863599 336.10699463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03863600 336.10699463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -03863601 336.10699463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03863602 336.10699463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -03863603 336.10702515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03863604 336.10702515 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -03863605 336.10705566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03863606 336.10705566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -03863607 336.10708618 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03863608 336.10708618 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -03863609 336.10711670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03863610 336.10714722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -03863611 336.10714722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03863612 336.10714722 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -03863613 336.10717773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03863614 336.10717773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -03863615 336.10720825 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03863616 336.10720825 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -03863617 336.10723877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03863618 336.10723877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -03863619 336.10726929 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03863620 336.10726929 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -03863621 336.10729980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03863622 336.10729980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -03863623 336.10733032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03863624 336.10733032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -03863625 336.10733032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03863626 336.10733032 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -03863627 336.10736084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03863628 336.10736084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -03863629 336.10739136 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03863630 336.10742188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -03863631 336.10745239 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03863632 336.10745239 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -03863633 336.10748291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03863634 336.10748291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -03863635 336.10748291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03863636 336.10748291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -03863637 336.10751343 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03863638 336.10751343 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -03863639 336.10754395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03863640 336.10754395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -03863641 336.10757446 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03863642 336.10757446 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -03863643 336.10760498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03863644 336.10760498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -03863645 336.10763550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03863646 336.10763550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -03863647 336.10763550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03863648 336.10763550 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -03863649 336.10766602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03863650 336.10769653 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -03863651 336.10772705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03863652 336.10772705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -03863653 336.10775757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03863654 336.10775757 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -03863655 336.10778809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03863656 336.10778809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -03863657 336.10778809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03863658 336.10778809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -03863659 336.10781860 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03863660 336.10781860 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -03863661 336.10784912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03863662 336.10784912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -03863663 336.10787964 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03863664 336.10787964 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -03863665 336.10791016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03863666 336.10791016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -03863667 336.10794067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03863668 336.10794067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -03863669 336.10794067 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03863670 336.10797119 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -03863671 336.10800171 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03863672 336.10800171 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -03863673 336.10803223 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03863674 336.10803223 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -03863675 336.10806274 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03863676 336.10806274 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -03863677 336.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03863678 336.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -03863679 336.10812378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03863680 336.10812378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -03863681 336.10812378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03863682 336.10812378 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -03863683 336.10815430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03863684 336.10815430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -03863685 336.10818481 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03863686 336.10818481 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -03863687 336.10821533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03863688 336.10824585 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -03863689 336.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03863690 336.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -03863691 336.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03863692 336.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -03863693 336.10830688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03863694 336.10830688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -03863695 336.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03863696 336.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -03863697 336.10836792 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03863698 336.10836792 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -03863699 336.10839844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03863700 336.10839844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -03863701 336.10842896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03863702 336.10842896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -03863703 336.10842896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03863704 336.10842896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -03863705 336.10845947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03863706 336.10845947 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -03863707 336.10848999 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03863708 336.10852051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -03863709 336.10855103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03863710 336.10855103 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -03863711 336.10858154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03863712 336.10858154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -03863713 336.10858154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03863714 336.10858154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -03863715 336.10861206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03863716 336.10861206 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -03863717 336.10864258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03863718 336.10864258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -03863719 336.10867310 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03863720 336.10867310 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -03863721 336.10870361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03863722 336.10870361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -03863723 336.10873413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03863724 336.10873413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -03863725 336.10873413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03863726 336.10873413 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -03863727 336.10876465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03863728 336.10876465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -03863729 336.10879517 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03863730 336.10882568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -03863731 336.10885620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03863732 336.10885620 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -03863733 336.10888672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03863734 336.10888672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -03863735 336.10891724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03863736 336.10891724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -03863737 336.10891724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03863738 336.10891724 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -03863739 336.10894775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03863740 336.10894775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -03863741 336.10897827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03863742 336.10897827 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -03863743 336.10900879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03863744 336.10900879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -03863745 336.10903931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03863746 336.10903931 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -03863747 336.10906982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03863748 336.10906982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -03863749 336.10910034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03863750 336.10910034 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -03863751 336.10913086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03863752 336.10913086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -03863753 336.10916138 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03863754 336.10916138 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -03863755 336.10919189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03863756 336.10919189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -03863757 336.10922241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03863758 336.10922241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -03863759 336.10922241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03863760 336.10922241 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -03863761 336.10925293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03863762 336.10925293 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -03863763 336.10928345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03863764 336.10928345 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -03863765 336.10931396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03863766 336.10931396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -03863767 336.10934448 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03863768 336.10934448 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -03863769 336.10937500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03863770 336.10937500 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -03863771 336.10940552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03863772 336.10940552 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -03863773 336.10943604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03863774 336.10943604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -03863775 336.10946655 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03863776 336.10946655 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -03863777 336.10949707 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03863778 336.10949707 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -03863779 336.10952759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03863780 336.10952759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -03863781 336.10952759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03863782 336.10952759 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -03863783 336.10955811 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03863784 336.10955811 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -03863785 336.10958862 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03863786 336.10958862 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -03863787 336.10961914 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03863788 336.10961914 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -03863789 336.10964966 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03863790 336.10968018 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -03863791 336.10971069 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03863792 336.10971069 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -03863793 336.10971069 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03863794 336.10971069 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -03863795 336.10974121 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03863796 336.10974121 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -03863797 336.10977173 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03863798 336.10977173 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -03863799 336.10980225 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03863800 336.10980225 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -03863801 336.10983276 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03863802 336.10983276 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -03863803 336.10986328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03863804 336.10986328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -03863805 336.10986328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03863806 336.10986328 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -03863807 336.10989380 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03863808 336.10989380 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -03863809 336.10992432 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03863810 336.10995483 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -03863811 336.10998535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03863812 336.10998535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -03863813 336.11001587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03863814 336.11001587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -03863815 336.11001587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03863816 336.11001587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -03863817 336.11004639 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03863818 336.11004639 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -03863819 336.11007690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03863820 336.11007690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -03863821 336.11010742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03863822 336.11010742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -03863823 336.11013794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03863824 336.11013794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -03863825 336.11016846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03863826 336.11016846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -03863827 336.11016846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03863828 336.11019897 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -03863829 336.11022949 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03863830 336.11022949 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -03863831 336.11026001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03863832 336.11026001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -03863833 336.11029053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03863834 336.11029053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -03863835 336.11032104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03863836 336.11032104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -03863837 336.11032104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03863838 336.11032104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -03863839 336.11035156 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03863840 336.11035156 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -03863841 336.11038208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03863842 336.11038208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -03863843 336.11041260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03863844 336.11041260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -03863845 336.11044312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03863846 336.11044312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -03863847 336.11047363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03863848 336.11047363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -03863849 336.11050415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03863850 336.11050415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -03863851 336.11053467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03863852 336.11053467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -03863853 336.11056519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03863854 336.11056519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -03863855 336.11059570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03863856 336.11059570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -03863857 336.11062622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03863858 336.11062622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -03863859 336.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03863860 336.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -03863861 336.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03863862 336.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -03863863 336.11068726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03863864 336.11068726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -03863865 336.11071777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03863866 336.11071777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -03863867 336.11074829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03863868 336.11074829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -03863869 336.11077881 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03863870 336.11080933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -03863871 336.11080933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03863872 336.11080933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -03863873 336.11083984 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03863874 336.11083984 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -03863875 336.11087036 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03863876 336.11087036 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -03863877 336.11090088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03863878 336.11090088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -03863879 336.11093140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03863880 336.11093140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -03863881 336.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03863882 336.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -03863883 336.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03863884 336.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -03863885 336.11099243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03863886 336.11099243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -03863887 336.11102295 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03863888 336.11105347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -03863889 336.11108398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03863890 336.11108398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -03863891 336.11111450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03863892 336.11111450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -03863893 336.11111450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03863894 336.11111450 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -03863895 336.11114502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03863896 336.11114502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -03863897 336.11117554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03863898 336.11117554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -03863899 336.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03863900 336.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -03863901 336.11123657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03863902 336.11123657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -03863903 336.11126709 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03863904 336.11126709 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -03863905 336.11129761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03863906 336.11129761 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -03863907 336.11132813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03863908 336.11132813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -03863909 336.11138916 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03863910 336.11138916 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -03863911 336.11141968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03863912 336.11141968 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -03863913 336.11145020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03863914 336.11145020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -03863915 336.11145020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03863916 336.11145020 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -03863917 336.11151123 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03863918 336.11151123 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -03863919 336.11160278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03863920 336.11160278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -03863921 336.11160278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03863922 336.11160278 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -03863923 336.11163330 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03863924 336.11163330 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -03863925 336.11166382 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03863926 336.11166382 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -03863927 336.11175537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03863928 336.11175537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -03863929 336.11175537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03863930 336.11175537 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -03863931 336.11178589 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03863932 336.11178589 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -03863933 336.11181641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03863934 336.11181641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -03863935 336.11184692 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03863936 336.11187744 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -03863937 336.11190796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03863938 336.11190796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -03863939 336.11190796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03863940 336.11190796 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -03863941 336.11193848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03863942 336.11193848 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -03863943 336.11196899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03863944 336.11196899 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -03863945 336.11199951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03863946 336.11199951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -03863947 336.11203003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03863948 336.11203003 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -03863949 336.11206055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03863950 336.11206055 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -03863951 336.11209106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03863952 336.11209106 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -03863953 336.11212158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03863954 336.11212158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -03863955 336.11215210 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03863956 336.11215210 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -03863957 336.11221313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03863958 336.11221313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -03863959 336.11224365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03863960 336.11224365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -03863961 336.11224365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03863962 336.11224365 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -03863963 336.11227417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03863964 336.11227417 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -03863965 336.11230469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03863966 336.11230469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -03863967 336.11233521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03863968 336.11233521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -03863969 336.11236572 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03863970 336.11236572 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -03863971 336.11239624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03863972 336.11239624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -03863973 336.11239624 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03863974 336.11242676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -03863975 336.11245728 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03863976 336.11245728 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -03863977 336.11248779 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03863978 336.11248779 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -03863979 336.11251831 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03863980 336.11251831 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -03863981 336.11254883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03863982 336.11254883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -03863983 336.11254883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03863984 336.11254883 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -03863985 336.11260986 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03863986 336.11264038 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -03863987 336.11267090 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03863988 336.11267090 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -03863989 336.11270142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03863990 336.11270142 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -03863991 336.11273193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03863992 336.11273193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -03863993 336.11273193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03863994 336.11273193 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -03863995 336.11276245 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03863996 336.11276245 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -03863997 336.11282349 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03863998 336.11282349 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -03863999 336.11285400 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03864000 336.11285400 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -03864001 336.11288452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03864002 336.11288452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -03864003 336.11288452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03864004 336.11288452 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -03864005 336.11291504 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03864006 336.11291504 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -03864007 336.11294556 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03864008 336.11297607 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -03864009 336.11300659 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03864010 336.11300659 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -03864011 336.11303711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03864012 336.11303711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -03864013 336.11303711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03864014 336.11303711 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -03864015 336.11306763 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03864016 336.11306763 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -03864017 336.11309814 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03864018 336.11309814 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -03864019 336.11312866 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03864020 336.11312866 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -03864021 336.11315918 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03864022 336.11315918 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -03864023 336.11318970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03864024 336.11318970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -03864025 336.11318970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03864026 336.11318970 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -03864027 336.11322021 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03864028 336.11325073 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -03864029 336.11328125 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03864030 336.11328125 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -03864031 336.11331177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03864032 336.11331177 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -03864033 336.11334229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03864034 336.11334229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -03864035 336.11334229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03864036 336.11334229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -03864037 336.11337280 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03864038 336.11337280 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -03864039 336.11340332 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03864040 336.11340332 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -03864041 336.11343384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03864042 336.11343384 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -03864043 336.11346436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03864044 336.11346436 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -03864045 336.11349487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03864046 336.11349487 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -03864047 336.11352539 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03864048 336.11352539 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -03864049 336.11355591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03864050 336.11355591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -03864051 336.11358643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03864052 336.11358643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -03864053 336.11361694 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03864054 336.11361694 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -03864055 336.11364746 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03864056 336.11364746 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -03864057 336.11367798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03864058 336.11367798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -03864059 336.11367798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03864060 336.11367798 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -03864061 336.11370850 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03864062 336.11370850 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -03864063 336.11373901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03864064 336.11373901 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -03864065 336.11376953 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03864066 336.11376953 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -03864067 336.11380005 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03864068 336.11383057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -03864069 336.11383057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03864070 336.11383057 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -03864071 336.11386108 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03864072 336.11386108 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -03864073 336.11389160 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03864074 336.11389160 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -03864075 336.11392212 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03864076 336.11392212 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -03864077 336.11395264 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03864078 336.11395264 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -03864079 336.11398315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03864080 336.11398315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -03864081 336.11398315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03864082 336.11398315 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -03864083 336.11401367 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03864084 336.11401367 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -03864085 336.11404419 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03864086 336.11404419 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -03864087 336.11407471 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03864088 336.11410522 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -03864089 336.11413574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03864090 336.11413574 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -03864091 336.11416626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03864092 336.11416626 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -03864093 336.11419678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03864094 336.11419678 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -03864095 336.11422729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03864096 336.11422729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -03864097 336.11425781 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03864098 336.11428833 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -03864099 336.11431885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03864100 336.11431885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -03864101 336.11431885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03864102 336.11431885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -03864103 336.11434937 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03864104 336.11434937 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -03864105 336.11437988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03864106 336.11437988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -03864107 336.11441040 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03864108 336.11441040 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -03864109 336.11444092 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03864110 336.11444092 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -03864111 336.11447144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03864112 336.11447144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -03864113 336.11447144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03864114 336.11447144 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -03864115 336.11450195 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03864116 336.11450195 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -03864117 336.11453247 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03864118 336.11456299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -03864119 336.11459351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03864120 336.11459351 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -03864121 336.11462402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03864122 336.11462402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -03864123 336.11462402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03864124 336.11462402 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -03864125 336.11465454 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03864126 336.11465454 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -03864127 336.11468506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03864128 336.11468506 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -03864129 336.11471558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03864130 336.11471558 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -03864131 336.11474609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03864132 336.11474609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -03864133 336.11477661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03864134 336.11477661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -03864135 336.11477661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03864136 336.11477661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -03864137 336.11480713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03864138 336.11483765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -03864139 336.11486816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03864140 336.11486816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -03864141 336.11489868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03864142 336.11489868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -03864143 336.11492920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03864144 336.11492920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -03864145 336.11492920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03864146 336.11492920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -03864147 336.11495972 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03864148 336.11495972 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -03864149 336.11499023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03864150 336.11499023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -03864151 336.11502075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03864152 336.11502075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -03864153 336.11505127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03864154 336.11505127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -03864155 336.11508179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03864156 336.11511230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -03864157 336.11511230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03864158 336.11511230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -03864159 336.11514282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03864160 336.11514282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -03864161 336.11517334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03864162 336.11517334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -03864163 336.11520386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03864164 336.11520386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -03864165 336.11523438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03864166 336.11523438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -03864167 336.11526489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03864168 336.11526489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -03864169 336.11526489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03864170 336.11526489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -03864171 336.11529541 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03864172 336.11529541 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -03864173 336.11532593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03864174 336.11535645 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -03864175 336.11538696 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03864176 336.11538696 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -03864177 336.11541748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03864178 336.11541748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -03864179 336.11541748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03864180 336.11541748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -03864181 336.11544800 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03864182 336.11544800 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -03864183 336.11547852 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03864184 336.11547852 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -03864185 336.11550903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03864186 336.11550903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -03864187 336.11553955 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03864188 336.11553955 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -03864189 336.11557007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03864190 336.11557007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -03864191 336.11557007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03864192 336.11557007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -03864193 336.11560059 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03864194 336.11563110 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -03864195 336.11566162 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03864196 336.11566162 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -03864197 336.11569214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03864198 336.11569214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -03864199 336.11572266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03864200 336.11572266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -03864201 336.11572266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03864202 336.11572266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -03864203 336.11575317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03864204 336.11575317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -03864205 336.11578369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03864206 336.11578369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -03864207 336.11581421 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03864208 336.11581421 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -03864209 336.11584473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03864210 336.11584473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -03864211 336.11587524 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03864212 336.11587524 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -03864213 336.11590576 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03864214 336.11590576 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -03864215 336.11593628 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03864216 336.11593628 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -03864217 336.11596680 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03864218 336.11596680 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -03864219 336.11599731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03864220 336.11599731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -03864221 336.11602783 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03864222 336.11602783 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -03864223 336.11605835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03864224 336.11605835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -03864225 336.11605835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03864226 336.11605835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -03864227 336.11608887 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03864228 336.11608887 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -03864229 336.11611938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03864230 336.11611938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -03864231 336.11614990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03864232 336.11614990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -03864233 336.11618042 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03864234 336.11621094 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -03864235 336.11621094 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03864236 336.11621094 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -03864237 336.11624146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03864238 336.11624146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -03864239 336.11627197 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03864240 336.11627197 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -03864241 336.11630249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03864242 336.11630249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -03864243 336.11633301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03864244 336.11633301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -03864245 336.11636353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03864246 336.11636353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -03864247 336.11636353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03864248 336.11636353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -03864249 336.11639404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03864250 336.11639404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -03864251 336.11642456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03864252 336.11642456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -03864253 336.11645508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03864254 336.11648560 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -03864255 336.11651611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03864256 336.11651611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -03864257 336.11651611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03864258 336.11651611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -03864259 336.11654663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03864260 336.11654663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -03864261 336.11657715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03864262 336.11657715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -03864263 336.11660767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03864264 336.11660767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -03864265 336.11663818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03864266 336.11663818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -03864267 336.11666870 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03864268 336.11666870 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -03864269 336.11669922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03864270 336.11669922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -03864271 336.11669922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03864272 336.11669922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -03864273 336.11672974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03864274 336.11676025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -03864275 336.11679077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03864276 336.11679077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -03864277 336.11682129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03864278 336.11682129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -03864279 336.11685181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03864280 336.11685181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -03864281 336.11685181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03864282 336.11685181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -03864283 336.11688232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03864284 336.11688232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -03864285 336.11691284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03864286 336.11691284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -03864287 336.11694336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03864288 336.11694336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -03864289 336.11697388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03864290 336.11697388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -03864291 336.11700439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03864292 336.11700439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -03864293 336.11700439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03864294 336.11703491 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -03864295 336.11706543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03864296 336.11706543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -03864297 336.11709595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03864298 336.11709595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -03864299 336.11712646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03864300 336.11712646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -03864301 336.11715698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03864302 336.11715698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -03864303 336.11715698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03864304 336.11715698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -03864305 336.11718750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03864306 336.11718750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -03864307 336.11721802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03864308 336.11721802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -03864309 336.11724854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03864310 336.11724854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -03864311 336.11727905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03864312 336.11727905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -03864313 336.11730957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03864314 336.11730957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -03864315 336.11734009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03864316 336.11734009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -03864317 336.11737061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03864318 336.11737061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -03864319 336.11740112 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03864320 336.11740112 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -03864321 336.11743164 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03864322 336.11743164 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -03864323 336.11746216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03864324 336.11746216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -03864325 336.11749268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03864326 336.11749268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -03864327 336.11749268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03864328 336.11749268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -03864329 336.11752319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03864330 336.11752319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -03864331 336.11755371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03864332 336.11755371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -03864333 336.11758423 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03864334 336.11761475 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -03864335 336.11764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03864336 336.11764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -03864337 336.11764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03864338 336.11764526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -03864339 336.11767578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03864340 336.11767578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -03864341 336.11770630 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03864342 336.11770630 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -03864343 336.11773682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03864344 336.11773682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -03864345 336.11776733 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03864346 336.11776733 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -03864347 336.11779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03864348 336.11779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -03864349 336.11779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03864350 336.11779785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -03864351 336.11782837 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03864352 336.11782837 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -03864353 336.11785889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03864354 336.11788940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -03864355 336.11791992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03864356 336.11791992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -03864357 336.11795044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03864358 336.11795044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -03864359 336.11795044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03864360 336.11795044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -03864361 336.11798096 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03864362 336.11798096 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -03864363 336.11801147 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03864364 336.11801147 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -03864365 336.11804199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03864366 336.11804199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -03864367 336.11807251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03864368 336.11807251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -03864369 336.11810303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03864370 336.11810303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -03864371 336.11813354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03864372 336.11813354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -03864373 336.11813354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03864374 336.11816406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -03864375 336.11819458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03864376 336.11819458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -03864377 336.11822510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03864378 336.11822510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -03864379 336.11825562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03864380 336.11825562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -03864381 336.11828613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03864382 336.11828613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -03864383 336.11828613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03864384 336.11828613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -03864385 336.11831665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03864386 336.11831665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -03864387 336.11834717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03864388 336.11834717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -03864389 336.11837769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03864390 336.11837769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -03864391 336.11840820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03864392 336.11840820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -03864393 336.11843872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03864394 336.11843872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -03864395 336.11846924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03864396 336.11846924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -03864397 336.11849976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03864398 336.11849976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -03864399 336.11853027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03864400 336.11853027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -03864401 336.11856079 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03864402 336.11856079 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -03864403 336.11859131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03864404 336.11859131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -03864405 336.11859131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03864406 336.11859131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -03864407 336.11862183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03864408 336.11862183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -03864409 336.11865234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03864410 336.11865234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -03864411 336.11868286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03864412 336.11868286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -03864413 336.11871338 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03864414 336.11874390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -03864415 336.11874390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03864416 336.11874390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -03864417 336.11877441 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03864418 336.11877441 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -03864419 336.11880493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03864420 336.11880493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -03864421 336.11883545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03864422 336.11883545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -03864423 336.11886597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03864424 336.11886597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -03864425 336.11889648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03864426 336.11889648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -03864427 336.11892700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03864428 336.11892700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -03864429 336.11892700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03864430 336.11892700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -03864431 336.11895752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03864432 336.11895752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -03864433 336.11898804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03864434 336.11901855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -03864435 336.11904907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03864436 336.11904907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -03864437 336.11907959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03864438 336.11907959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -03864439 336.11907959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03864440 336.11907959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -03864441 336.11911011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03864442 336.11911011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -03864443 336.11914063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03864444 336.11914063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -03864445 336.11917114 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03864446 336.11917114 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -03864447 336.11920166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03864448 336.11920166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -03864449 336.11923218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03864450 336.11923218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -03864451 336.11923218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03864452 336.11923218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -03864453 336.11926270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03864454 336.11929321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -03864455 336.11932373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03864456 336.11932373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -03864457 336.11935425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03864458 336.11935425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -03864459 336.11938477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03864460 336.11938477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -03864461 336.11938477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03864462 336.11938477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -03864463 336.11941528 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03864464 336.11941528 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -03864465 336.11944580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03864466 336.11944580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -03864467 336.11947632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03864468 336.11947632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -03864469 336.11950684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03864470 336.11950684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -03864471 336.11953735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03864472 336.11953735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -03864473 336.11953735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03864474 336.11956787 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -03864475 336.11959839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03864476 336.11959839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -03864477 336.11962891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03864478 336.11962891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -03864479 336.11965942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03864480 336.11965942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -03864481 336.11968994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03864482 336.11968994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -03864483 336.11972046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03864484 336.11972046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -03864485 336.11972046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03864486 336.11972046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -03864487 336.11975098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03864488 336.11975098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -03864489 336.11978149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03864490 336.11978149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -03864491 336.11981201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03864492 336.11981201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -03864493 336.11984253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03864494 336.11987305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -03864495 336.11987305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03864496 336.11987305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -03864497 336.11990356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03864498 336.11990356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -03864499 336.11993408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03864500 336.11993408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -03864501 336.11996460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03864502 336.11996460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -03864503 336.11999512 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03864504 336.11999512 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -03864505 336.12002563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03864506 336.12002563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -03864507 336.12002563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03864508 336.12002563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -03864509 336.12005615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03864510 336.12005615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -03864511 336.12008667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03864512 336.12008667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -03864513 336.12011719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03864514 336.12014771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -03864515 336.12017822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03864516 336.12017822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -03864517 336.12017822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03864518 336.12017822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -03864519 336.12020874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03864520 336.12020874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -03864521 336.12023926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03864522 336.12023926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -03864523 336.12026978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03864524 336.12026978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -03864525 336.12030029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03864526 336.12030029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -03864527 336.12033081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03864528 336.12033081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -03864529 336.12033081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03864530 336.12033081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -03864531 336.12036133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03864532 336.12036133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -03864533 336.12039185 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03864534 336.12042236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -03864535 336.12045288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03864536 336.12045288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -03864537 336.12048340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03864538 336.12048340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -03864539 336.12051392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03864540 336.12051392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -03864541 336.12051392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03864542 336.12051392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -03864543 336.12054443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03864544 336.12054443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -03864545 336.12057495 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03864546 336.12057495 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -03864547 336.12060547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03864548 336.12060547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -03864549 336.12063599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03864550 336.12063599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -03864551 336.12066650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03864552 336.12066650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -03864553 336.12066650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03864554 336.12069702 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -03864555 336.12072754 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03864556 336.12072754 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -03864557 336.12075806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03864558 336.12075806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -03864559 336.12078857 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03864560 336.12078857 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -03864561 336.12081909 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03864562 336.12081909 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -03864563 336.12081909 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03864564 336.12081909 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -03864565 336.12084961 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03864566 336.12084961 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -03864567 336.12088013 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03864568 336.12088013 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -03864569 336.12091064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03864570 336.12091064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -03864571 336.12094116 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03864572 336.12094116 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -03864573 336.12097168 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03864574 336.12097168 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -03864575 336.12100220 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03864576 336.12100220 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -03864577 336.12103271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03864578 336.12103271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -03864579 336.12106323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03864580 336.12106323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -03864581 336.12109375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03864582 336.12109375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -03864583 336.12112427 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03864584 336.12112427 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -03864585 336.12112427 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03864586 336.12112427 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -03864587 336.12115479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03864588 336.12115479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -03864589 336.12118530 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03864590 336.12118530 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -03864591 336.12121582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03864592 336.12121582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -03864593 336.12124634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03864594 336.12127686 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -03864595 336.12130737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03864596 336.12130737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -03864597 336.12130737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03864598 336.12130737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -03864599 336.12133789 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03864600 336.12133789 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -03864601 336.12136841 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03864602 336.12136841 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -03864603 336.12139893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03864604 336.12139893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -03864605 336.12142944 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03864606 336.12142944 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -03864607 336.12145996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03864608 336.12145996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -03864609 336.12145996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03864610 336.12145996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -03864611 336.12149048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03864612 336.12149048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -03864613 336.12152100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03864614 336.12155151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -03864615 336.12158203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03864616 336.12158203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -03864617 336.12161255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03864618 336.12161255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -03864619 336.12161255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03864620 336.12161255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -03864621 336.12164307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03864622 336.12164307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -03864623 336.12167358 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03864624 336.12167358 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -03864625 336.12170410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03864626 336.12170410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -03864627 336.12173462 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03864628 336.12173462 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -03864629 336.12176514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03864630 336.12176514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -03864631 336.12176514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03864632 336.12176514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -03864633 336.12179565 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03864634 336.12182617 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -03864635 336.12185669 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03864636 336.12185669 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -03864637 336.12188721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03864638 336.12188721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -03864639 336.12191772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03864640 336.12191772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -03864641 336.12191772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03864642 336.12191772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -03864643 336.12194824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03864644 336.12194824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -03864645 336.12197876 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03864646 336.12197876 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -03864647 336.12200928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03864648 336.12200928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -03864649 336.12203979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03864650 336.12203979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -03864651 336.12207031 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03864652 336.12210083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -03864653 336.12210083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03864654 336.12210083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -03864655 336.12213135 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03864656 336.12213135 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -03864657 336.12216187 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03864658 336.12216187 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -03864659 336.12219238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03864660 336.12219238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -03864661 336.12222290 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03864662 336.12222290 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -03864663 336.12225342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03864664 336.12225342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -03864665 336.12225342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03864666 336.12225342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -03864667 336.12228394 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03864668 336.12228394 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -03864669 336.12234497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03864670 336.12234497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -03864671 336.12237549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03864672 336.12237549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -03864673 336.12240601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03864674 336.12240601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -03864675 336.12240601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03864676 336.12240601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -03864677 336.12243652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03864678 336.12243652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -03864679 336.12246704 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03864680 336.12246704 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -03864681 336.12249756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03864682 336.12249756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -03864683 336.12252808 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03864684 336.12252808 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -03864685 336.12255859 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03864686 336.12255859 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -03864687 336.12258911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03864688 336.12258911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -03864689 336.12261963 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03864690 336.12261963 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -03864691 336.12265015 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03864692 336.12265015 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -03864693 336.12268066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03864694 336.12268066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -03864695 336.12271118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03864696 336.12271118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -03864697 336.12271118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03864698 336.12271118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -03864699 336.12274170 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03864700 336.12274170 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -03864701 336.12277222 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03864702 336.12277222 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -03864703 336.12280273 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03864704 336.12280273 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -03864705 336.12283325 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03864706 336.12286377 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -03864707 336.12289429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03864708 336.12289429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -03864709 336.12289429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03864710 336.12289429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -03864711 336.12292480 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03864712 336.12292480 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -03864713 336.12295532 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03864714 336.12295532 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -03864715 336.12298584 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03864716 336.12298584 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -03864717 336.12301636 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03864718 336.12301636 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -03864719 336.12304688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03864720 336.12304688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -03864721 336.12304688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03864722 336.12307739 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -03864723 336.12310791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03864724 336.12310791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -03864725 336.12313843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03864726 336.12313843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -03864727 336.12316895 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03864728 336.12316895 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -03864729 336.12319946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03864730 336.12319946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -03864731 336.12319946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03864732 336.12319946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -03864733 336.12322998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03864734 336.12322998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -03864735 336.12326050 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03864736 336.12326050 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -03864737 336.12329102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03864738 336.12329102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -03864739 336.12332153 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03864740 336.12332153 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -03864741 336.12335205 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03864742 336.12335205 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -03864743 336.12338257 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03864744 336.12338257 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -03864745 336.12341309 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03864746 336.12341309 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -03864747 336.12344360 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03864748 336.12344360 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -03864749 336.12347412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03864750 336.12347412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -03864751 336.12350464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03864752 336.12350464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -03864753 336.12353516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03864754 336.12353516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -03864755 336.12353516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03864756 336.12353516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -03864757 336.12356567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03864758 336.12356567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -03864759 336.12359619 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03864760 336.12359619 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -03864761 336.12362671 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03864762 336.12365723 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -03864763 336.12368774 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03864764 336.12368774 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -03864765 336.12368774 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03864766 336.12368774 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -03864767 336.12371826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03864768 336.12371826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -03864769 336.12374878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03864770 336.12374878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -03864771 336.12377930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03864772 336.12377930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -03864773 336.12380981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03864774 336.12380981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -03864775 336.12384033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03864776 336.12384033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -03864777 336.12384033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03864778 336.12384033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -03864779 336.12387085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03864780 336.12387085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -03864781 336.12390137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03864782 336.12393188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -03864783 336.12396240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03864784 336.12396240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -03864785 336.12399292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03864786 336.12399292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -03864787 336.12399292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03864788 336.12399292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -03864789 336.12402344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03864790 336.12402344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -03864791 336.12405396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03864792 336.12405396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -03864793 336.12408447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03864794 336.12408447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -03864795 336.12411499 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03864796 336.12411499 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -03864797 336.12414551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03864798 336.12414551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -03864799 336.12414551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03864800 336.12417603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -03864801 336.12417603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03864802 336.12420654 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -03864803 336.12423706 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03864804 336.12423706 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -03864805 336.12426758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03864806 336.12426758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -03864807 336.12429810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03864808 336.12429810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -03864809 336.12432861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03864810 336.12432861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -03864811 336.12432861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03864812 336.12432861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -03864813 336.12435913 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03864814 336.12435913 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -03864815 336.12438965 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03864816 336.12438965 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -03864817 336.12442017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03864818 336.12442017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -03864819 336.12445068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03864820 336.12445068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -03864821 336.12448120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03864822 336.12448120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -03864823 336.12448120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03864824 336.12448120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -03864825 336.12451172 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03864826 336.12451172 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -03864827 336.12454224 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03864828 336.12457275 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -03864829 336.12460327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03864830 336.12460327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -03864831 336.12463379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03864832 336.12463379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -03864833 336.12463379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03864834 336.12463379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -03864835 336.12466431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03864836 336.12466431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -03864837 336.12469482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03864838 336.12469482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -03864839 336.12472534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03864840 336.12472534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -03864841 336.12475586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03864842 336.12475586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -03864843 336.12478638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03864844 336.12478638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -03864845 336.12478638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03864846 336.12481689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -03864847 336.12481689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03864848 336.12484741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -03864849 336.12487793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03864850 336.12487793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -03864851 336.12490845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03864852 336.12490845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -03864853 336.12493896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03864854 336.12493896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -03864855 336.12493896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03864856 336.12493896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -03864857 336.12496948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03864858 336.12496948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -03864859 336.12500000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03864860 336.12500000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -03864861 336.12503052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03864862 336.12503052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -03864863 336.12506104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03864864 336.12506104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -03864865 336.12509155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03864866 336.12509155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -03864867 336.12512207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03864868 336.12512207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -03864869 336.12512207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03864870 336.12515259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -03864871 336.12518311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03864872 336.12518311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -03864873 336.12521362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03864874 336.12521362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -03864875 336.12524414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03864876 336.12524414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -03864877 336.12527466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03864878 336.12527466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -03864879 336.12527466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03864880 336.12527466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -03864881 336.12530518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03864882 336.12530518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -03864883 336.12533569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03864884 336.12533569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -03864885 336.12536621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03864886 336.12536621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -03864887 336.12539673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03864888 336.12542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -03864889 336.12542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03864890 336.12542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -03864891 336.12545776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03864892 336.12545776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -03864893 336.12548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03864894 336.12548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -03864895 336.12551880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03864896 336.12551880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -03864897 336.12554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03864898 336.12554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -03864899 336.12557983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03864900 336.12557983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -03864901 336.12557983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03864902 336.12557983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -03864903 336.12561035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03864904 336.12561035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -03864905 336.12564087 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03864906 336.12564087 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -03864907 336.12567139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03864908 336.12570190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -03864909 336.12573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03864910 336.12573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -03864911 336.12573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03864912 336.12573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -03864913 336.12576294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03864914 336.12576294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -03864915 336.12579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03864916 336.12579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -03864917 336.12582397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03864918 336.12582397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -03864919 336.12585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03864920 336.12585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -03864921 336.12588501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03864922 336.12588501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -03864923 336.12591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03864924 336.12591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -03864925 336.12591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03864926 336.12591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -03864927 336.12594604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03864928 336.12597656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -03864929 336.12600708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03864930 336.12600708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -03864931 336.12603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03864932 336.12603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -03864933 336.12606812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03864934 336.12606812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -03864935 336.12606812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03864936 336.12606812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -03864937 336.12609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03864938 336.12609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -03864939 336.12612915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03864940 336.12612915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -03864941 336.12615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03864942 336.12615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -03864943 336.12619019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03864944 336.12619019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -03864945 336.12622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03864946 336.12622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -03864947 336.12622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03864948 336.12625122 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -03864949 336.12628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03864950 336.12628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -03864951 336.12631226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03864952 336.12631226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -03864953 336.12634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03864954 336.12634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -03864955 336.12637329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03864956 336.12637329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -03864957 336.12637329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03864958 336.12637329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -03864959 336.12640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03864960 336.12640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -03864961 336.12643433 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03864962 336.12643433 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -03864963 336.12646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03864964 336.12646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -03864965 336.12649536 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03864966 336.12649536 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -03864967 336.12652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03864968 336.12652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -03864969 336.12655640 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03864970 336.12655640 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -03864971 336.12658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03864972 336.12658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -03864973 336.12661743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03864974 336.12661743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -03864975 336.12664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03864976 336.12664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -03864977 336.12667847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03864978 336.12667847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -03864979 336.12670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03864980 336.12670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -03864981 336.12670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03864982 336.12670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -03864983 336.12673950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03864984 336.12673950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -03864985 336.12677002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03864986 336.12680054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -03864987 336.12683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03864988 336.12683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -03864989 336.12686157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03864990 336.12686157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -03864991 336.12686157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03864992 336.12686157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -03864993 336.12689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03864994 336.12689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -03864995 336.12692261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03864996 336.12692261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -03864997 336.12695313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03864998 336.12695313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -03864999 336.12698364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03865000 336.12698364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -03865001 336.12701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03865002 336.12701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -03865003 336.12701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03865004 336.12701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -03865005 336.12707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03865006 336.12707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -03865007 336.12710571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03865008 336.12710571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -03865009 336.12713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03865010 336.12713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -03865011 336.12716675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03865012 336.12716675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -03865013 336.12716675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03865014 336.12716675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -03865015 336.12719727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03865016 336.12719727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -03865017 336.12722778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03865018 336.12722778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -03865019 336.12725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03865020 336.12725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -03865021 336.12728882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03865022 336.12728882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -03865023 336.12731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03865024 336.12731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -03865025 336.12734985 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03865026 336.12734985 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -03865027 336.12738037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03865028 336.12738037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -03865029 336.12741089 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03865030 336.12741089 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -03865031 336.12744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03865032 336.12744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -03865033 336.12747192 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03865034 336.12747192 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -03865035 336.12750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03865036 336.12750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -03865037 336.12750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03865038 336.12750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -03865039 336.12753296 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03865040 336.12753296 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -03865041 336.12756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03865042 336.12756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -03865043 336.12759399 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03865044 336.12759399 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -03865045 336.12762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03865046 336.12762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -03865047 336.12765503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03865048 336.12765503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -03865049 336.12765503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03865050 336.12765503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -03865051 336.12768555 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03865052 336.12771606 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -03865053 336.12771606 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03865054 336.12774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -03865055 336.12777710 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -03868643 336.17880249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -03868644 336.17880249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c0 -03868645 336.17880249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -03868646 336.17880249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d0 -03868647 336.17883301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -03868648 336.17883301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e0 -03868649 336.17886353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -03868650 336.17889404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f0 -03868651 336.17892456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -03868652 336.17892456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb200 -03868653 336.17895508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -03868654 336.17895508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb210 -03868655 336.17895508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -03868656 336.17895508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb220 -03868657 336.17898560 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -03868658 336.17898560 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb230 -03868659 336.17901611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -03868660 336.17901611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb240 -03868661 336.17904663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -03868662 336.17904663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb250 -03868663 336.17907715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -03868664 336.17907715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb260 -03868665 336.17910767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -03868666 336.17910767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb270 -03868667 336.17913818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -03868668 336.17913818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb280 -03868669 336.17913818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -03868670 336.17916870 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb290 -03868671 336.17919922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -03868672 336.17919922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a0 -03868673 336.17922974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -03868674 336.17922974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b0 -03868675 336.17926025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -03868676 336.17926025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c0 -03868677 336.17929077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -03868678 336.17929077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d0 -03868679 336.17929077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -03868680 336.17929077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e0 -03868681 336.17932129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -03868682 336.17932129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f0 -03868683 336.17935181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -03868684 336.17935181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb300 -03868685 336.17938232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -03868686 336.17938232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xb310 -03886309 336.43057251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -03886310 336.43057251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d0 -03886311 336.43060303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -03886312 336.43060303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e0 -03886313 336.43063354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -03886314 336.43063354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f0 -03886315 336.43066406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -03886316 336.43066406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da00 -03886317 336.43069458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -03886318 336.43069458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da10 -03886319 336.43072510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -03886320 336.43072510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -03886321 336.43075562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -03886322 336.43075562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -03886323 336.43078613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -03886324 336.43078613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -03886325 336.43078613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -03886326 336.43078613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -03886327 336.43081665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -03886328 336.43081665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -03886329 336.43084717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -03886330 336.43084717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -03886331 336.43087769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -03886332 336.43090820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -03886333 336.43093872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -03886334 336.43093872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -03886335 336.43093872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -03886336 336.43093872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -03886337 336.43096924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -03886338 336.43096924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -03886339 336.43099976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -03886340 336.43099976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -03886341 336.43103027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -03886342 336.43103027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -03886343 336.43106079 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -03886344 336.43106079 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -03886345 336.43109131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -03886346 336.43109131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -03886347 336.43109131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -03886348 336.43109131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -03886349 336.43112183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -03886350 336.43112183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -03886351 336.43115234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -03886352 336.43118286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -03897023 336.56121826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03897024 336.56121826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -03897025 336.56121826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03897026 336.56121826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f850 -03897027 336.56124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03897028 336.56124878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -03897029 336.56124878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03897030 336.56124878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f860 -03897031 336.56127930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03897032 336.56127930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -03897033 336.56127930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03897034 336.56127930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f870 -03897035 336.56130981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03897036 336.56130981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -03897037 336.56130981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03897038 336.56130981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f880 -03897039 336.56134033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03897040 336.56134033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -03897041 336.56134033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03897042 336.56137085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f890 -03897043 336.56137085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03897044 336.56137085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03897045 336.56137085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -03897046 336.56137085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8a0 -03897047 336.56140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03897048 336.56140137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03897049 336.56140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -03897050 336.56140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8b0 -03897051 336.56143188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03897052 336.56143188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03897053 336.56143188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -03897054 336.56143188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8c0 -03897055 336.56146240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03897056 336.56146240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03897057 336.56146240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -03897058 336.56146240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8d0 -03897059 336.56149292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03897060 336.56149292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03897061 336.56149292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -03897062 336.56149292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8e0 -03897063 336.56152344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03897064 336.56152344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03897065 336.56152344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -03897066 336.56152344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f8f0 -03912776 336.67742920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e8 -03912777 336.67742920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -03912778 336.67742920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137e8 -03912779 336.67745972 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -03912780 336.67749023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -03912781 336.67749023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -03912782 336.67749023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x137f8 -03912783 336.67749023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -03912784 336.67749023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -03912785 336.67749023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -03912786 336.67749023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13808 -03912787 336.67752075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -03912788 336.67752075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -03912789 336.67752075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -03912790 336.67752075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -03912791 336.67755127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -03912792 336.67755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -03912793 336.67755127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -03912794 336.67755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -03912795 336.67758179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -03912796 336.67758179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -03912797 336.67758179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -03912798 336.67758179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -03912799 336.67761230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -03912800 336.67761230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -03912801 336.67761230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -03912802 336.67761230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -03912803 336.67764282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -03912804 336.67764282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -03912805 336.67764282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -03912806 336.67764282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -03912807 336.67764282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -03912808 336.67764282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -03912809 336.67767334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -03912810 336.67767334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -03912811 336.67770386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -03912812 336.67770386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -03912813 336.67770386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -03912814 336.67770386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -03912815 336.67773438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -03912816 336.67773438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -03912817 336.67773438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -03912818 336.67773438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -03912819 336.67776489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -03932853 336.93429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae8 -03932854 336.93429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae8 -03932855 336.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af8 -03932856 336.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af8 -03932857 336.93435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b08 -03932858 336.93435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b08 -03932859 336.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b18 -03932860 336.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b18 -03932861 336.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b28 -03932862 336.93441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b28 -03932863 336.93444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b38 -03932864 336.93444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b38 -03932865 336.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b48 -03932866 336.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b48 -03932867 336.93450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b58 -03932868 336.93450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b58 -03932869 336.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b68 -03932870 336.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b68 -03932871 336.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b78 -03932872 336.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b78 -03932873 336.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b88 -03932874 336.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b88 -03932875 336.93460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b98 -03932876 336.93460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b98 -03932877 336.93463135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba8 -03932878 336.93463135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ba8 -03932879 336.93466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb8 -03932880 336.93466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bb8 -03932881 336.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc8 -03932882 336.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bc8 -03932883 336.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd8 -03932884 336.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bd8 -03932885 336.93475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be8 -03932886 336.93475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36be8 -03932887 336.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf8 -03932888 336.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36bf8 -03932889 336.93481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c08 -03932890 336.93481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c08 -03932891 336.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c18 -03932892 336.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c18 -03932893 336.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c28 -03932894 336.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c28 -03932895 336.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c38 -03932896 336.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c38 -03938385 337.01260376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c8 -03938386 337.01260376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417c8 -03938387 337.01263428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d8 -03938388 337.01263428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417d8 -03938389 337.01266479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e8 -03938390 337.01266479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417e8 -03938391 337.01269531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f8 -03938392 337.01269531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x417f8 -03938393 337.01269531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41808 -03938394 337.01269531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41808 -03938395 337.01272583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41818 -03938396 337.01272583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41818 -03938397 337.01275635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41828 -03938398 337.01275635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41828 -03938399 337.01278687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41838 -03938400 337.01281738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41838 -03938401 337.01284790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41848 -03938402 337.01284790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41848 -03938403 337.01287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41858 -03938404 337.01287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41858 -03938405 337.01287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41868 -03938406 337.01287842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41868 -03938407 337.01290894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41878 -03938408 337.01290894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41878 -03938409 337.01293945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41888 -03938410 337.01293945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41888 -03938411 337.01296997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41898 -03938412 337.01296997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41898 -03938413 337.01300049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a8 -03938414 337.01300049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a8 -03938415 337.01303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b8 -03938416 337.01303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b8 -03938417 337.01303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c8 -03938418 337.01303101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c8 -03938419 337.01306152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d8 -03938420 337.01309204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d8 -03938421 337.01312256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e8 -03938422 337.01312256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e8 -03938423 337.01315308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f8 -03938424 337.01315308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f8 -03938425 337.01318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41908 -03938426 337.01318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41908 -03938427 337.01318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41918 -03938428 337.01318359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41918 -03945054 337.11077881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e828 -03945055 337.11080933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e838 -03945056 337.11080933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e838 -03945057 337.11083984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e848 -03945058 337.11083984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e848 -03945059 337.11087036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e858 -03945060 337.11087036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e858 -03945061 337.11090088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e868 -03945062 337.11090088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e868 -03945063 337.11090088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e878 -03945064 337.11093140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e878 -03945065 337.11096191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e888 -03945066 337.11096191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e888 -03945067 337.11099243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e898 -03945068 337.11099243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e898 -03945069 337.11102295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a8 -03945070 337.11102295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8a8 -03945071 337.11105347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b8 -03945072 337.11105347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8b8 -03945073 337.11105347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c8 -03945074 337.11105347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8c8 -03945075 337.11108398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d8 -03945076 337.11108398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8d8 -03945077 337.11111450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e8 -03945078 337.11111450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8e8 -03945079 337.11114502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f8 -03945080 337.11114502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e8f8 -03945081 337.11117554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e908 -03945082 337.11117554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e908 -03945083 337.11120605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e918 -03945084 337.11120605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e918 -03945085 337.11123657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e928 -03945086 337.11123657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e928 -03945087 337.11126709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e938 -03945088 337.11126709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e938 -03945089 337.11129761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e948 -03945090 337.11129761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e948 -03945091 337.11132813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e958 -03945092 337.11132813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e958 -03945093 337.11135864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e968 -03945094 337.11135864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e968 -03945095 337.11135864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e978 -03945096 337.11135864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e978 -03945097 337.11138916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e988 -03947263 338.03427124 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03947264 338.05392456 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947265 338.05395508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947266 339.38647461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947267 339.38650513 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947268 339.38653564 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947269 339.38653564 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03947270 339.38668823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947271 339.38668823 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03947272 339.38671875 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947273 339.38674927 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03947274 340.05490112 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03947275 340.07482910 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947276 340.07482910 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947277 341.89373779 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947278 341.89379883 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947279 341.89382935 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947280 341.89382935 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03947281 341.89395142 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947282 341.89395142 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03947283 341.89401245 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03947284 341.89404297 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03947285 342.07751465 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03947286 342.09765625 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947287 342.09765625 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03947288 342.14355469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03947289 342.14355469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03947290 342.14358521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03947291 342.14361572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03947292 342.14364624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03947293 342.14364624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03947294 342.14367676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03947295 342.14367676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03947296 342.14370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03947297 342.14370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03947298 342.14370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03947299 342.14370728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03947300 342.14373779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03947301 342.14373779 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03947302 342.14376831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03947303 342.14376831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03947304 342.14379883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03947305 342.14379883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03947306 342.14382935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03947307 342.14382935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03947308 342.14385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03947309 342.14385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03947310 342.14385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03947311 342.14385986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03947312 342.14389038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03947313 342.14392090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03947314 342.14395142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03947315 342.14395142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03947316 342.14398193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03947317 342.14398193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03947318 342.14401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03947319 342.14401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03947320 342.14401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03947321 342.14401245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03947322 342.14404297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03947323 342.14404297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03947324 342.14407349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03947325 342.14407349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03947326 342.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03947327 342.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03947328 342.14413452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03947329 342.14413452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03947330 342.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03947331 342.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03947332 342.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03947333 342.14419556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03947334 342.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03947335 342.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03947336 342.14425659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03947337 342.14425659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03947338 342.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03947339 342.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03947340 342.14431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03947341 342.14431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03947342 342.14431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03947343 342.14431763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03947344 342.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03947345 342.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03947346 342.14437866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03947347 342.14437866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03947348 342.14440918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03947349 342.14440918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03947350 342.14443970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03947351 342.14443970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03947352 342.14450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03947353 342.14450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03947354 342.14450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03947355 342.14450073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03947356 342.14453125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03947357 342.14453125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03947358 342.14456177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03947359 342.14456177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03947360 342.14459229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03947361 342.14459229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03947362 342.14462280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03947363 342.14462280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03947364 342.14465332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03947365 342.14465332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03947366 342.14468384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03947367 342.14468384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03947368 342.14471436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03947369 342.14471436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03947370 342.14474487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03947371 342.14474487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03947372 342.14477539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03947373 342.14477539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03947374 342.14480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03947375 342.14480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03947376 342.14480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03947377 342.14480591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03947378 342.14483643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03947379 342.14486694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03947380 342.14489746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03947381 342.14489746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03947382 342.14492798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03947383 342.14492798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03947384 342.14495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03947385 342.14495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03947386 342.14495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03947387 342.14495850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03947388 342.14498901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03947389 342.14498901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03947390 342.14501953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03947391 342.14501953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03947392 342.14505005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03947393 342.14505005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03947394 342.14511108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03947395 342.14511108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03947396 342.14514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03947397 342.14514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03947398 342.14514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03947399 342.14514160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03947400 342.14517212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03947401 342.14517212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03947402 342.14520264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03947403 342.14520264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03947404 342.14523315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03947405 342.14523315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03947406 342.14526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03947407 342.14526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03947408 342.14529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03947409 342.14529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03947410 342.14529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03947411 342.14529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03947412 342.14538574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03947413 342.14538574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03947414 342.14541626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03947415 342.14541626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03947416 342.14544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03947417 342.14544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03947418 342.14544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03947419 342.14544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03947420 342.14547729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03947421 342.14547729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03947422 342.14550781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03947423 342.14550781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03947424 342.14553833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03947425 342.14553833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03947426 342.14556885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03947427 342.14556885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03947428 342.14559937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03947429 342.14559937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03947430 342.14562988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03947431 342.14562988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03947432 342.14566040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03947433 342.14566040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03947434 342.14569092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03947435 342.14569092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03947436 342.14572144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03947437 342.14572144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03947438 342.14575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03947439 342.14575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03947440 342.14575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03947441 342.14575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03947442 342.14578247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03947443 342.14578247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03947444 342.14581299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03947445 342.14581299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03947446 342.14584351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03947447 342.14584351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03947448 342.14587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03947449 342.14587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03947450 342.14590454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03947451 342.14593506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03947452 342.14593506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03947453 342.14593506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03947454 342.14596558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03947455 342.14596558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03947456 342.14599609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03947457 342.14599609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03947458 342.14602661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03947459 342.14602661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03947460 342.14605713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03947461 342.14605713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03947462 342.14608765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03947463 342.14608765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03947464 342.14611816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03947465 342.14611816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03947466 342.14614868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03947467 342.14614868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03947468 342.14617920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03947469 342.14617920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03947470 342.14620972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03947471 342.14620972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03947472 342.14624023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03947473 342.14624023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03947474 342.14624023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03947475 342.14624023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03947476 342.14627075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03947477 342.14630127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03947478 342.14633179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03947479 342.14633179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03947480 342.14636230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03947481 342.14636230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03947482 342.14639282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03947483 342.14639282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03947484 342.14639282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03947485 342.14639282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03947486 342.14642334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03947487 342.14642334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03947488 342.14645386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03947489 342.14645386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03947490 342.14648438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03947491 342.14648438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03947492 342.14651489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03947493 342.14651489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03947494 342.14654541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03947495 342.14654541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03947496 342.14654541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03947497 342.14654541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03947498 342.14657593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03947499 342.14660645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03947500 342.14663696 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03947501 342.14663696 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03947502 342.14666748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03947503 342.14666748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03947504 342.14669800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03947505 342.14669800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03947506 342.14672852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03947507 342.14672852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03947508 342.14672852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03947509 342.14672852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03947510 342.14675903 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03947511 342.14675903 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03947512 342.14678955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03947513 342.14678955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03947514 342.14682007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03947515 342.14682007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03947516 342.14688110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03947517 342.14688110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03947518 342.14688110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03947519 342.14688110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03947520 342.14691162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03947521 342.14691162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03947522 342.14694214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03947523 342.14694214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03947524 342.14697266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03947525 342.14697266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03947526 342.14703369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03947527 342.14703369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03947528 342.14709473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03947529 342.14709473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03947530 342.14712524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03947531 342.14712524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03947532 342.14715576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03947533 342.14718628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03947534 342.14718628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03947535 342.14718628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03947536 342.14721680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03947537 342.14721680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03947538 342.14724731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03947539 342.14724731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03947540 342.14727783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03947541 342.14727783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03947542 342.14730835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03947543 342.14733887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03947544 342.14733887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03947545 342.14733887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03947546 342.14736938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03947547 342.14736938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03947548 342.14739990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03947549 342.14739990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03947550 342.14743042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03947551 342.14743042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03947552 342.14746094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03947553 342.14746094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03947554 342.14749146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03947555 342.14749146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03947556 342.14752197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03947557 342.14752197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03947558 342.14752197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03947559 342.14752197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03947560 342.14755249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03947561 342.14758301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03947562 342.14761353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03947563 342.14761353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03947564 342.14764404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03947565 342.14764404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03947566 342.14767456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03947567 342.14767456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03947568 342.14767456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03947569 342.14767456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03947570 342.14770508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03947571 342.14770508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03947572 342.14773560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03947573 342.14773560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03947574 342.14776611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03947575 342.14776611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03947576 342.14779663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03947577 342.14779663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03947578 342.14782715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03947579 342.14782715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03947580 342.14782715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03947581 342.14782715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03947582 342.14785767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03947583 342.14788818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03947584 342.14791870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03947585 342.14791870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03947586 342.14794922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03947587 342.14794922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03947588 342.14797974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03947589 342.14797974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03947590 342.14797974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03947591 342.14797974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03947592 342.14801025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03947593 342.14801025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03947594 342.14804077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03947595 342.14804077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03947596 342.14807129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03947597 342.14807129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03947598 342.14810181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03947599 342.14810181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03947600 342.14813232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03947601 342.14813232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03947602 342.14813232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03947603 342.14816284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03947604 342.14819336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03947605 342.14819336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03947606 342.14822388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03947607 342.14822388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03947608 342.14828491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03947609 342.14828491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03947610 342.14831543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03947611 342.14831543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03947612 342.14834595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03947613 342.14834595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03947614 342.14840698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03947615 342.14840698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03947616 342.14843750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03947617 342.14843750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03947618 342.14846802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03947619 342.14846802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03947620 342.14849854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03947621 342.14849854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03947622 342.14855957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03947623 342.14855957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03947624 342.14859009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03947625 342.14862061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03947626 342.14862061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03947627 342.14862061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03947628 342.14865112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03947629 342.14865112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03947630 342.14868164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03947631 342.14868164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03947632 342.14871216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03947633 342.14871216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03947634 342.14874268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03947635 342.14877319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03947636 342.14877319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03947637 342.14877319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03947638 342.14880371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03947639 342.14880371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03947640 342.14883423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03947641 342.14883423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03947642 342.14886475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03947643 342.14886475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03947644 342.14889526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03947645 342.14889526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03947646 342.14892578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03947647 342.14892578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03947648 342.14892578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03947649 342.14892578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03947650 342.14895630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03947651 342.14895630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03947652 342.14898682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03947653 342.14898682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03947654 342.14901733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03947655 342.14904785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03947656 342.14907837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03947657 342.14907837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03947658 342.14910889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03947659 342.14910889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03947660 342.14910889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03947661 342.14910889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03947662 342.14913940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03947663 342.14913940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03947664 342.14916992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03947665 342.14916992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03947666 342.14920044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03947667 342.14920044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03947668 342.14923096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03947669 342.14923096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03947670 342.14926147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03947671 342.14926147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03947672 342.14926147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03947673 342.14926147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03947674 342.14929199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03947675 342.14932251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03947676 342.14935303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03947677 342.14935303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03947678 342.14938354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03947679 342.14938354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03947680 342.14941406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03947681 342.14941406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03947682 342.14941406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03947683 342.14941406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03947684 342.14944458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03947685 342.14944458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03947686 342.14947510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03947687 342.14947510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03947688 342.14950562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03947689 342.14950562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03947690 342.14953613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03947691 342.14953613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03947692 342.14956665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03947693 342.14956665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03947694 342.14959717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03947695 342.14959717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03947696 342.14962769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03947697 342.14962769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03947698 342.14965820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03947699 342.14965820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03947700 342.14968872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03947701 342.14968872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03947702 342.14971924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03947703 342.14971924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03947704 342.14971924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03947705 342.14971924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03947706 342.14974976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03947707 342.14974976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03947708 342.14978027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03947709 342.14978027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03947710 342.14981079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03947711 342.14984131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03947712 342.14987183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03947713 342.14987183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03947714 342.14990234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03947715 342.14990234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03947716 342.14990234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03947717 342.14990234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03947718 342.14993286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03947719 342.14993286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03947720 342.14996338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03947721 342.14996338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03947722 342.14999390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03947723 342.14999390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03947724 342.15002441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03947725 342.15002441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03947726 342.15005493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03947727 342.15005493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03947728 342.15005493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03947729 342.15005493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03947730 342.15008545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03947731 342.15011597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03947732 342.15014648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03947733 342.15014648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03947734 342.15017700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03947735 342.15017700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03947736 342.15020752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03947737 342.15020752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03947738 342.15020752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03947739 342.15020752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03947740 342.15023804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03947741 342.15023804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03947742 342.15026855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03947743 342.15026855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03947744 342.15032959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03947745 342.15032959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03947746 342.15036011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03947747 342.15036011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03947748 342.15036011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03947749 342.15036011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03947750 342.15039063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03947751 342.15042114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03947752 342.15048218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03947753 342.15048218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03947754 342.15054321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03947755 342.15054321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03947756 342.15054321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03947757 342.15054321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03947758 342.15057373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03947759 342.15057373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03947760 342.15060425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03947761 342.15060425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03947762 342.15063477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03947763 342.15063477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03947764 342.15066528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03947765 342.15069580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03947766 342.15069580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03947767 342.15069580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03947768 342.15072632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03947769 342.15072632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03947770 342.15075684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03947771 342.15075684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03947772 342.15078735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03947773 342.15078735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03947774 342.15081787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03947775 342.15081787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03947776 342.15084839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03947777 342.15084839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03947778 342.15084839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03947779 342.15084839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03947780 342.15087891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03947781 342.15090942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03947782 342.15093994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03947783 342.15093994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03947784 342.15097046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03947785 342.15097046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03947786 342.15100098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03947787 342.15100098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03947788 342.15100098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03947789 342.15100098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03947790 342.15103149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03947791 342.15103149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03947792 342.15106201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03947793 342.15106201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03947794 342.15109253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03947795 342.15112305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03947796 342.15115356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03947797 342.15115356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03947798 342.15115356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03947799 342.15115356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03947800 342.15118408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03947801 342.15118408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03947802 342.15121460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03947803 342.15121460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03947804 342.15124512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03947805 342.15124512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03947806 342.15127563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03947807 342.15127563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03947808 342.15130615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03947809 342.15130615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03947810 342.15133667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03947811 342.15133667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03947812 342.15136719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03947813 342.15136719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03947814 342.15139771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03947815 342.15139771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03947816 342.15142822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03947817 342.15142822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03947818 342.15145874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03947819 342.15145874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03947820 342.15148926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03947821 342.15148926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03947822 342.15148926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03947823 342.15148926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03947824 342.15151978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03947825 342.15151978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03947826 342.15158081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03947827 342.15158081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03947828 342.15161133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03947829 342.15161133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03947830 342.15164185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03947831 342.15164185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03947832 342.15164185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03947833 342.15164185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03947834 342.15167236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03947835 342.15167236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03947836 342.15170288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03947837 342.15170288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03947838 342.15173340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03947839 342.15173340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03947840 342.15176392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03947841 342.15176392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03947842 342.15179443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03947843 342.15179443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03947844 342.15182495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03947845 342.15182495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03947846 342.15185547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03947847 342.15185547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03947848 342.15188599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03947849 342.15188599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03947850 342.15191650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03947851 342.15191650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03947852 342.15194702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03947853 342.15194702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03947854 342.15194702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03947855 342.15194702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03947856 342.15197754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03947857 342.15197754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03947858 342.15200806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03947859 342.15200806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03947860 342.15203857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03947861 342.15206909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03947862 342.15209961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03947863 342.15209961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03947864 342.15213013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03947865 342.15213013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03947866 342.15213013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03947867 342.15213013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03947868 342.15216064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03947869 342.15216064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03947870 342.15219116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03947871 342.15219116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03947872 342.15222168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03947873 342.15222168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03947874 342.15225220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03947875 342.15225220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03947876 342.15228271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03947877 342.15228271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03947878 342.15231323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03947879 342.15231323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03947880 342.15234375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03947881 342.15234375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03947882 342.15237427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03947883 342.15237427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03947884 342.15240479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03947885 342.15240479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03947886 342.15243530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03947887 342.15243530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03947888 342.15243530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03947889 342.15243530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03947890 342.15246582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03947891 342.15246582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03947892 342.15249634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03947893 342.15249634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03947894 342.15252686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03947895 342.15255737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03947896 342.15258789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03947897 342.15258789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03947898 342.15258789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03947899 342.15258789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03947900 342.15261841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03947901 342.15261841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03947902 342.15264893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03947903 342.15264893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03947904 342.15267944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03947905 342.15267944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03947906 342.15270996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03947907 342.15270996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03947908 342.15274048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03947909 342.15274048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03947910 342.15274048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03947911 342.15274048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03947912 342.15277100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03947913 342.15277100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03947914 342.15280151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03947915 342.15283203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03947916 342.15286255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03947917 342.15286255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03947918 342.15289307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03947919 342.15289307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03947920 342.15292358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03947921 342.15292358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03947922 342.15292358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03947923 342.15292358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03947924 342.15295410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03947925 342.15295410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03947926 342.15298462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03947927 342.15298462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03947928 342.15301514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03947929 342.15301514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03947930 342.15304565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03947931 342.15307617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03947932 342.15307617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03947933 342.15307617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03947934 342.15310669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03947935 342.15310669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03947936 342.15313721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03947937 342.15313721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03947938 342.15316772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03947939 342.15316772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03947940 342.15319824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03947941 342.15319824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03947942 342.15322876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03947943 342.15322876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03947944 342.15322876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03947945 342.15322876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03947946 342.15325928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03947947 342.15325928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03947948 342.15328979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03947949 342.15328979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03947950 342.15332031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03947951 342.15335083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03947952 342.15338135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03947953 342.15338135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03947954 342.15338135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03947955 342.15338135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03947956 342.15341187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03947957 342.15341187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03947958 342.15344238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03947959 342.15344238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03947960 342.15347290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03947961 342.15347290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03947962 342.15350342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03947963 342.15350342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03947964 342.15353394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03947965 342.15353394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03947966 342.15353394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03947967 342.15353394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03947968 342.15356445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03947969 342.15359497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03947970 342.15362549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03947971 342.15362549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03947972 342.15365601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03947973 342.15365601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03947974 342.15368652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03947975 342.15368652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03947976 342.15371704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03947977 342.15371704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03947978 342.15371704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03947979 342.15371704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03947980 342.15374756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03947981 342.15374756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03947982 342.15377808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03947983 342.15377808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03947984 342.15380859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03947985 342.15380859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03947986 342.15383911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03947987 342.15386963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03947988 342.15386963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03947989 342.15386963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03947990 342.15390015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03947991 342.15390015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03947992 342.15393066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03947993 342.15393066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03947994 342.15396118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03947995 342.15396118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03947996 342.15399170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03947997 342.15399170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03947998 342.15402222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03947999 342.15402222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03948000 342.15402222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03948001 342.15402222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03948002 342.15405273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03948003 342.15405273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03948004 342.15408325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03948005 342.15408325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03948006 342.15411377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03948007 342.15414429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03948008 342.15417480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03948009 342.15417480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03948010 342.15417480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03948011 342.15417480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03948012 342.15420532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03948013 342.15420532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03948014 342.15423584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03948015 342.15423584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03948016 342.15426636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03948017 342.15426636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03948018 342.15429688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03948019 342.15429688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03948020 342.15432739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03948021 342.15432739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03948022 342.15432739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03948023 342.15432739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03948024 342.15435791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03948025 342.15435791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03948026 342.15438843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03948027 342.15441895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03948028 342.15444946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03948029 342.15444946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03948030 342.15447998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03948031 342.15447998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03948032 342.15451050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03948033 342.15451050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03948034 342.15451050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03948035 342.15451050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03948036 342.15454102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03948037 342.15454102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03948038 342.15457153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03948039 342.15457153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03948040 342.15460205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03948041 342.15460205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03948042 342.15463257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03948043 342.15463257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03948044 342.15466309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03948045 342.15466309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03948046 342.15466309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03948047 342.15469360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03948048 342.15472412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03948049 342.15472412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03948050 342.15475464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03948051 342.15475464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03948052 342.15478516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03948053 342.15478516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03948054 342.15481567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03948055 342.15481567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03948056 342.15481567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03948057 342.15481567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03948058 342.15484619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03948059 342.15484619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03948060 342.15487671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03948061 342.15487671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03948062 342.15490723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03948063 342.15490723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03948064 342.15493774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03948065 342.15493774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03948066 342.15496826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03948067 342.15496826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03948068 342.15496826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03948069 342.15499878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03948070 342.15502930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03948071 342.15502930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03948072 342.15505981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03948073 342.15505981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03948074 342.15509033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03948075 342.15509033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03948076 342.15512085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03948077 342.15512085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03948078 342.15512085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03948079 342.15512085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03948080 342.15518188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03948081 342.15518188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03948082 342.15521240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03948083 342.15521240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03948084 342.15524292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03948085 342.15524292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03948086 342.15527344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03948087 342.15530396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03948088 342.15530396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03948089 342.15530396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03948090 342.15533447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03948091 342.15536499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03948092 342.15539551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03948093 342.15539551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03948094 342.15542603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03948095 342.15542603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03948096 342.15545654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03948097 342.15545654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03948098 342.15545654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03948099 342.15545654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03948100 342.15548706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03948101 342.15548706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03948102 342.15551758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03948103 342.15551758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03948104 342.15554810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03948105 342.15557861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03948106 342.15560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03948107 342.15560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03948108 342.15560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03948109 342.15560913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03948110 342.15563965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03948111 342.15563965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03948112 342.15567017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03948113 342.15567017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03948114 342.15570068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03948115 342.15570068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03948116 342.15573120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03948117 342.15573120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03948118 342.15576172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03948119 342.15576172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03948120 342.15576172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03948121 342.15576172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03948122 342.15579224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03948123 342.15579224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03948124 342.15582275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03948125 342.15585327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03948126 342.15588379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03948127 342.15588379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03948128 342.15591431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03948129 342.15591431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03948130 342.15594482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03948131 342.15594482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03948132 342.15594482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03948133 342.15594482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03948134 342.15597534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03948135 342.15597534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03948136 342.15600586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03948137 342.15600586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03948138 342.15603638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03948139 342.15603638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03948140 342.15606689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03948141 342.15606689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03948142 342.15609741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03948143 342.15609741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03948144 342.15609741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03948145 342.15612793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03948146 342.15615845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03948147 342.15615845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03948148 342.15618896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03948149 342.15618896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03948150 342.15621948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03948151 342.15621948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03948152 342.15625000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03948153 342.15625000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03948154 342.15625000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03948155 342.15625000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03948156 342.15628052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03948157 342.15628052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03948158 342.15631104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03948159 342.15631104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03948160 342.15634155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03948161 342.15634155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03948162 342.15637207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03948163 342.15637207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03948164 342.15640259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03948165 342.15640259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03948166 342.15640259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03948167 342.15643311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03948168 342.15646362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03948169 342.15646362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03948170 342.15649414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03948171 342.15649414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03948172 342.15652466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03948173 342.15652466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03948174 342.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03948175 342.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03948176 342.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03948177 342.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03948178 342.15658569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03948179 342.15658569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03948180 342.15661621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03948181 342.15661621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03948182 342.15664673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03948183 342.15664673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03948184 342.15667725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03948185 342.15667725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03948186 342.15670776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03948187 342.15673828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03948188 342.15673828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03948189 342.15673828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03948190 342.15676880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03948191 342.15676880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03948192 342.15679932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03948193 342.15679932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03948194 342.15682983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03948195 342.15682983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03948196 342.15686035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03948197 342.15686035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03948198 342.15689087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03948199 342.15689087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03948200 342.15689087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03948201 342.15689087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03948202 342.15692139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03948203 342.15692139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03948204 342.15695190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03948205 342.15695190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03948206 342.15698242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03948207 342.15698242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03948208 342.15701294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03948209 342.15704346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03948210 342.15704346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03948211 342.15704346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03948212 342.15707397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03948213 342.15707397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -03948214 342.15710449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03948215 342.15710449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -03948216 342.15713501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03948217 342.15713501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -03948218 342.15716553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03948219 342.15716553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -03948220 342.15719604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03948221 342.15719604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -03948222 342.15719604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03948223 342.15719604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -03948224 342.15722656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03948225 342.15722656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -03948226 342.15725708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03948227 342.15725708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -03948228 342.15731812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03948229 342.15731812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -03948230 342.15734863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03948231 342.15734863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -03948232 342.15734863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03948233 342.15737915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -03948234 342.15740967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03948235 342.15740967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -03948236 342.15744019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03948237 342.15744019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -03948238 342.15747070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03948239 342.15747070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -03948240 342.15750122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03948241 342.15750122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -03948242 342.15753174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03948243 342.15753174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -03948244 342.15756226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03948245 342.15756226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -03948246 342.15759277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03948247 342.15759277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -03948248 342.15762329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03948249 342.15762329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -03948250 342.15765381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03948251 342.15765381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -03948252 342.15768433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03948253 342.15768433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -03948254 342.15768433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03948255 342.15771484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -03948256 342.15774536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03948257 342.15774536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -03948258 342.15777588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03948259 342.15777588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -03948260 342.15780640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03948261 342.15780640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -03948262 342.15783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03948263 342.15783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -03948264 342.15783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03948265 342.15783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -03948266 342.15786743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03948267 342.15789795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -03948268 342.15792847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03948269 342.15792847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -03948270 342.15795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03948271 342.15795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -03948272 342.15798950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03948273 342.15798950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -03948274 342.15798950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03948275 342.15798950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -03948276 342.15802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03948277 342.15802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -03948278 342.15805054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03948279 342.15805054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -03948280 342.15808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03948281 342.15808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -03948282 342.15811157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03948283 342.15811157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -03948284 342.15814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03948285 342.15814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -03948286 342.15817261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03948287 342.15817261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -03948288 342.15820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03948289 342.15820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -03948290 342.15823364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03948291 342.15823364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -03948292 342.15826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03948293 342.15826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -03948294 342.15832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03948295 342.15832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -03948296 342.15832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03948297 342.15832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -03948298 342.15835571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03948299 342.15835571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -03948300 342.15838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03948301 342.15838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -03948302 342.15841675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03948303 342.15841675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -03948304 342.15844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03948305 342.15844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -03948306 342.15847778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03948307 342.15847778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -03948308 342.15850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03948309 342.15850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -03948310 342.15853882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03948311 342.15853882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -03948312 342.15856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03948313 342.15859985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -03948314 342.15863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03948315 342.15863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -03948316 342.15863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03948317 342.15863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -03948318 342.15866089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03948319 342.15866089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -03948320 342.15869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03948321 342.15869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -03948322 342.15872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03948323 342.15872192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -03948324 342.15875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03948325 342.15875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -03948326 342.15878296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03948327 342.15878296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -03948328 342.15881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03948329 342.15881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -03948330 342.15884399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03948331 342.15884399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -03948332 342.15887451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03948333 342.15887451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -03948334 342.15890503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03948335 342.15890503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -03948336 342.15893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03948337 342.15893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -03948338 342.15893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03948339 342.15893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -03948340 342.15896606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03948341 342.15896606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -03948342 342.15899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03948343 342.15899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -03948344 342.15902710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03948345 342.15905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -03948346 342.15908813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03948347 342.15908813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -03948348 342.15911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03948349 342.15911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -03948350 342.15911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03948351 342.15911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -03948352 342.15914917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03948353 342.15914917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -03948354 342.15917969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03948355 342.15917969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -03948356 342.15921021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03948357 342.15921021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -03948358 342.15924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03948359 342.15924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -03948360 342.15927124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03948361 342.15927124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -03948362 342.15927124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03948363 342.15927124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -03948364 342.15930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03948365 342.15930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -03948366 342.15933228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03948367 342.15936279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -03948368 342.15939331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03948369 342.15939331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -03948370 342.15942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03948371 342.15942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -03948372 342.15942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03948373 342.15942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -03948374 342.15945435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03948375 342.15945435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -03948376 342.15951538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03948377 342.15951538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -03948378 342.15954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03948379 342.15954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -03948380 342.15957642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03948381 342.15957642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -03948382 342.15957642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03948383 342.15957642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -03948384 342.15960693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03948385 342.15960693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -03948386 342.15963745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03948387 342.15963745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -03948388 342.15966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03948389 342.15966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -03948390 342.15969849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03948391 342.15969849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -03948392 342.15972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03948393 342.15972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -03948394 342.15975952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03948395 342.15975952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -03948396 342.15979004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03948397 342.15979004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -03948398 342.15982056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03948399 342.15982056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -03948400 342.15985107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03948401 342.15985107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -03948402 342.15988159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03948403 342.15988159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -03948404 342.15991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03948405 342.15991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -03948406 342.15991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03948407 342.15991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -03948408 342.15994263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03948409 342.15994263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -03948410 342.15997314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03948411 342.15997314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -03948412 342.16000366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03948413 342.16003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -03948414 342.16006470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03948415 342.16006470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -03948416 342.16006470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03948417 342.16006470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -03948418 342.16009521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03948419 342.16009521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -03948420 342.16012573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03948421 342.16012573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -03948422 342.16015625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03948423 342.16015625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -03948424 342.16018677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03948425 342.16018677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -03948426 342.16021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03948427 342.16021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -03948428 342.16021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03948429 342.16021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -03948430 342.16024780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03948431 342.16024780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -03948432 342.16027832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03948433 342.16030884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -03948434 342.16033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03948435 342.16033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -03948436 342.16036987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03948437 342.16036987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -03948438 342.16036987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03948439 342.16036987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -03948440 342.16040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03948441 342.16040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -03948442 342.16043091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03948443 342.16043091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -03948444 342.16046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03948445 342.16046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -03948446 342.16049194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03948447 342.16049194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -03948448 342.16052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03948449 342.16052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -03948450 342.16052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03948451 342.16055298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -03948452 342.16058350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03948453 342.16058350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -03948454 342.16061401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03948455 342.16061401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -03948456 342.16064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03948457 342.16064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -03948458 342.16067505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03948459 342.16067505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -03948460 342.16070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03948461 342.16070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -03948462 342.16070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03948463 342.16070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -03948464 342.16073608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03948465 342.16073608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -03948466 342.16076660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03948467 342.16076660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -03948468 342.16079712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03948469 342.16079712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -03948470 342.16082764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03948471 342.16085815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -03948472 342.16085815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03948473 342.16085815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -03948474 342.16088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03948475 342.16088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -03948476 342.16091919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03948477 342.16091919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -03948478 342.16094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03948479 342.16094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -03948480 342.16098022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03948481 342.16098022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -03948482 342.16101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03948483 342.16101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -03948484 342.16101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03948485 342.16101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -03948486 342.16104126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03948487 342.16104126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -03948488 342.16107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03948489 342.16107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -03948490 342.16110229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03948491 342.16110229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -03948492 342.16113281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03948493 342.16116333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -03948494 342.16116333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03948495 342.16116333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -03948496 342.16119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03948497 342.16119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -03948498 342.16122437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03948499 342.16122437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -03948500 342.16125488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03948501 342.16125488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -03948502 342.16128540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03948503 342.16128540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -03948504 342.16131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03948505 342.16131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -03948506 342.16134644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03948507 342.16134644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -03948508 342.16134644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03948509 342.16134644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -03948510 342.16137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03948511 342.16137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -03948512 342.16140747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03948513 342.16140747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -03948514 342.16143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03948515 342.16146851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -03948516 342.16149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03948517 342.16149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -03948518 342.16149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03948519 342.16149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -03948520 342.16152954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03948521 342.16152954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -03948522 342.16156006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03948523 342.16156006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -03948524 342.16159058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03948525 342.16159058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -03948526 342.16162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03948527 342.16162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -03948528 342.16165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03948529 342.16165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -03948530 342.16165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03948531 342.16165161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -03948532 342.16168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03948533 342.16168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -03948534 342.16171265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03948535 342.16174316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -03948536 342.16177368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03948537 342.16177368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -03948538 342.16180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03948539 342.16180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -03948540 342.16180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03948541 342.16180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -03948542 342.16183472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03948543 342.16183472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -03948544 342.16186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03948545 342.16186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -03948546 342.16189575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03948547 342.16189575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -03948548 342.16192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03948549 342.16192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -03948550 342.16195679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03948551 342.16195679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -03948552 342.16195679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03948553 342.16195679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -03948554 342.16198730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03948555 342.16201782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -03948556 342.16201782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03948557 342.16204834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -03948558 342.16207886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03948559 342.16207886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -03948560 342.16210938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03948561 342.16210938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -03948562 342.16213989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03948563 342.16213989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -03948564 342.16217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03948565 342.16217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -03948566 342.16220093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03948567 342.16220093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -03948568 342.16223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03948569 342.16223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -03948570 342.16226196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03948571 342.16226196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -03948572 342.16229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03948573 342.16229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -03948574 342.16229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03948575 342.16232300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -03948576 342.16235352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03948577 342.16235352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -03948578 342.16238403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03948579 342.16238403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -03948580 342.16244507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03948581 342.16244507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -03948582 342.16244507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03948583 342.16244507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -03948584 342.16247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03948585 342.16247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -03948586 342.16250610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03948587 342.16250610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -03948588 342.16253662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03948589 342.16256714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -03948590 342.16259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03948591 342.16259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -03948592 342.16259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03948593 342.16259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -03948594 342.16262817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03948595 342.16262817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -03948596 342.16265869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03948597 342.16265869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -03948598 342.16268921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03948599 342.16268921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -03948600 342.16271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03948601 342.16271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -03948602 342.16275024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03948603 342.16275024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -03948604 342.16275024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03948605 342.16275024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -03948606 342.16278076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03948607 342.16278076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -03948608 342.16281128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03948609 342.16281128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -03948610 342.16284180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03948611 342.16287231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -03948612 342.16290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03948613 342.16290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -03948614 342.16293335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03948615 342.16293335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -03948616 342.16293335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03948617 342.16293335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -03948618 342.16296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03948619 342.16296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -03948620 342.16299438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03948621 342.16299438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -03948622 342.16302490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03948623 342.16302490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -03948624 342.16305542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03948625 342.16305542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -03948626 342.16308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03948627 342.16308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -03948628 342.16308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03948629 342.16308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -03948630 342.16311646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03948631 342.16314697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -03948632 342.16317749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03948633 342.16317749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -03948634 342.16320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03948635 342.16320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -03948636 342.16323853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03948637 342.16323853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -03948638 342.16323853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03948639 342.16323853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -03948640 342.16326904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03948641 342.16326904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -03948642 342.16329956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03948643 342.16329956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -03948644 342.16333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03948645 342.16333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -03948646 342.16336060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03948647 342.16336060 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -03948648 342.16339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03948649 342.16339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -03948650 342.16339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03948651 342.16342163 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -03948652 342.16345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03948653 342.16345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -03948654 342.16348267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03948655 342.16348267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -03948656 342.16351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03948657 342.16351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -03948658 342.16354370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03948659 342.16354370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -03948660 342.16354370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03948661 342.16354370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -03948662 342.16357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03948663 342.16357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -03948664 342.16360474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03948665 342.16360474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -03948666 342.16363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03948667 342.16363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -03948668 342.16366577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03948669 342.16366577 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -03948670 342.16369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03948671 342.16369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -03948672 342.16372681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03948673 342.16372681 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -03948674 342.16375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03948675 342.16375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -03948676 342.16378784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03948677 342.16378784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -03948678 342.16381836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03948679 342.16381836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -03948680 342.16384888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03948681 342.16384888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -03948682 342.16387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03948683 342.16387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -03948684 342.16387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03948685 342.16387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -03948686 342.16390991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03948687 342.16390991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -03948688 342.16394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03948689 342.16394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -03948690 342.16397095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03948691 342.16397095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -03948692 342.16400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03948693 342.16400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -03948694 342.16403198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03948695 342.16403198 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -03948696 342.16406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03948697 342.16406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -03948698 342.16409302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03948699 342.16409302 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -03948700 342.16412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03948701 342.16412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -03948702 342.16415405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03948703 342.16415405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -03948704 342.16418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03948705 342.16418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -03948706 342.16421509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03948707 342.16421509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -03948708 342.16424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03948709 342.16424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -03948710 342.16427612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03948711 342.16427612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -03948712 342.16430664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03948713 342.16430664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -03948714 342.16433716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03948715 342.16433716 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -03948716 342.16436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03948717 342.16436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -03948718 342.16442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03948719 342.16442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -03948720 342.16445923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03948721 342.16445923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -03948722 342.16448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03948723 342.16448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -03948724 342.16452026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03948725 342.16452026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -03948726 342.16452026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03948727 342.16452026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -03948728 342.16455078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03948729 342.16455078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -03948730 342.16458130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03948731 342.16461182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -03948732 342.16464233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03948733 342.16464233 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -03948734 342.16467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03948735 342.16467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -03948736 342.16467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03948737 342.16467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -03948738 342.16470337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03948739 342.16470337 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -03948740 342.16473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03948741 342.16473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -03948742 342.16476440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03948743 342.16476440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -03948744 342.16479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03948745 342.16479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -03948746 342.16482544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03948747 342.16482544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -03948748 342.16482544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03948749 342.16485596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -03948750 342.16488647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03948751 342.16488647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -03948752 342.16491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03948753 342.16491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -03948754 342.16494751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03948755 342.16494751 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -03948756 342.16497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03948757 342.16497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -03948758 342.16497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03948759 342.16497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -03948760 342.16500854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03948761 342.16500854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -03948762 342.16503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03948763 342.16503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -03948764 342.16506958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03948765 342.16510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -03948766 342.16513062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03948767 342.16513062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -03948768 342.16513062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03948769 342.16513062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -03948770 342.16516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03948771 342.16516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -03948772 342.16519165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03948773 342.16519165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -03948774 342.16522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03948775 342.16522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -03948776 342.16525269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03948777 342.16525269 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -03948778 342.16528320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03948779 342.16528320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -03948780 342.16531372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03948781 342.16531372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -03948782 342.16531372 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03948783 342.16534424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -03948784 342.16537476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03948785 342.16537476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -03948786 342.16540527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03948787 342.16540527 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -03948788 342.16543579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03948789 342.16543579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -03948790 342.16546631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03948791 342.16546631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -03948792 342.16546631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03948793 342.16546631 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -03948794 342.16549683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03948795 342.16549683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -03948796 342.16552734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03948797 342.16552734 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -03948798 342.16555786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03948799 342.16555786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -03948800 342.16558838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03948801 342.16561890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -03948802 342.16561890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03948803 342.16561890 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -03948804 342.16564941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03948805 342.16564941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -03948806 342.16567993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03948807 342.16567993 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -03948808 342.16571045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03948809 342.16571045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -03948810 342.16574097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03948811 342.16574097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -03948812 342.16577148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03948813 342.16577148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -03948814 342.16577148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03948815 342.16577148 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -03948816 342.16580200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03948817 342.16580200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -03948818 342.16583252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03948819 342.16583252 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -03948820 342.16586304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03948821 342.16589355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -03948822 342.16592407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03948823 342.16592407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -03948824 342.16592407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03948825 342.16592407 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -03948826 342.16595459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03948827 342.16595459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -03948828 342.16598511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03948829 342.16598511 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -03948830 342.16601563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03948831 342.16601563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -03948832 342.16604614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03948833 342.16604614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -03948834 342.16607666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03948835 342.16607666 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -03948836 342.16610718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03948837 342.16610718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -03948838 342.16610718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03948839 342.16610718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -03948840 342.16616821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03948841 342.16616821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -03948842 342.16619873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03948843 342.16619873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -03948844 342.16622925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03948845 342.16622925 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -03948846 342.16625977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03948847 342.16625977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -03948848 342.16625977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03948849 342.16625977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -03948850 342.16629028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03948851 342.16629028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -03948852 342.16632080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03948853 342.16632080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -03948854 342.16635132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03948855 342.16635132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -03948856 342.16638184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03948857 342.16638184 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -03948858 342.16641235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03948859 342.16641235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -03948860 342.16644287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03948861 342.16644287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -03948862 342.16647339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03948863 342.16647339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -03948864 342.16650391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03948865 342.16650391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -03948866 342.16653442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03948867 342.16653442 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -03948868 342.16656494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03948869 342.16656494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -03948870 342.16656494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03948871 342.16656494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -03948872 342.16659546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03948873 342.16659546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -03948874 342.16662598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03948875 342.16662598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -03948876 342.16665649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03948877 342.16668701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -03948878 342.16668701 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03948879 342.16671753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -03948880 342.16674805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03948881 342.16674805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -03948882 342.16674805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03948883 342.16674805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -03948884 342.16677856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03948885 342.16677856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -03948886 342.16680908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03948887 342.16680908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -03948888 342.16683960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03948889 342.16683960 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -03948890 342.16687012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03948891 342.16687012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -03948892 342.16690063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03948893 342.16690063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -03948894 342.16690063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03948895 342.16690063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -03948896 342.16693115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03948897 342.16693115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -03948898 342.16696167 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03948899 342.16699219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -03948900 342.16702271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03948901 342.16702271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -03948902 342.16705322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03948903 342.16705322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -03948904 342.16705322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03948905 342.16705322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -03948906 342.16708374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03948907 342.16708374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -03948908 342.16711426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03948909 342.16711426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -03948910 342.16714478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03948911 342.16714478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -03948912 342.16717529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03948913 342.16717529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -03948914 342.16720581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03948915 342.16720581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -03948916 342.16720581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03948917 342.16720581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -03948918 342.16723633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03948919 342.16723633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -03948920 342.16726685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03948921 342.16729736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -03948922 342.16732788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03948923 342.16732788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -03948924 342.16735840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03948925 342.16735840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -03948926 342.16735840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03948927 342.16735840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -03948928 342.16738892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03948929 342.16738892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -03948930 342.16741943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03948931 342.16741943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -03948932 342.16744995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03948933 342.16744995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -03948934 342.16748047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03948935 342.16748047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -03948936 342.16751099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03948937 342.16751099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -03948938 342.16754150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03948939 342.16754150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -03948940 342.16754150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03948941 342.16757202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -03948942 342.16760254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03948943 342.16760254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -03948944 342.16763306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03948945 342.16763306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -03948946 342.16766357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03948947 342.16766357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -03948948 342.16769409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03948949 342.16769409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -03948950 342.16769409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03948951 342.16769409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -03948952 342.16772461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03948953 342.16772461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -03948954 342.16775513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03948955 342.16775513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -03948956 342.16778564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03948957 342.16778564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -03948958 342.16781616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03948959 342.16781616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -03948960 342.16784668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03948961 342.16784668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -03948962 342.16787720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03948963 342.16787720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -03948964 342.16790771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03948965 342.16790771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -03948966 342.16793823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03948967 342.16793823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -03948968 342.16796875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03948969 342.16796875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -03948970 342.16799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03948971 342.16799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -03948972 342.16799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03948973 342.16799927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -03948974 342.16802979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03948975 342.16802979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -03948976 342.16806030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03948977 342.16806030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -03948978 342.16809082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03948979 342.16809082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -03948980 342.16812134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03948981 342.16812134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -03948982 342.16815186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03948983 342.16815186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -03948984 342.16818237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03948985 342.16818237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -03948986 342.16821289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03948987 342.16821289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -03948988 342.16824341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03948989 342.16824341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -03948990 342.16827393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03948991 342.16827393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -03948992 342.16830444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03948993 342.16830444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -03948994 342.16833496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03948995 342.16833496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -03948996 342.16833496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03948997 342.16833496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -03948998 342.16836548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03948999 342.16836548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -03949000 342.16839600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03949001 342.16839600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -03949002 342.16842651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03949003 342.16845703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -03949004 342.16848755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03949005 342.16848755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -03949006 342.16848755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03949007 342.16848755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -03949008 342.16851807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03949009 342.16851807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -03949010 342.16854858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03949011 342.16854858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -03949012 342.16857910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03949013 342.16857910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -03949014 342.16860962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03949015 342.16860962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -03949016 342.16864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03949017 342.16864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -03949018 342.16864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03949019 342.16864014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -03949020 342.16867065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03949021 342.16867065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -03949022 342.16870117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03949023 342.16870117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -03949024 342.16873169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03949025 342.16876221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -03949026 342.16879272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03949027 342.16879272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -03949028 342.16879272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03949029 342.16879272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -03949030 342.16882324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03949031 342.16882324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -03949032 342.16885376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03949033 342.16885376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -03949034 342.16888428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03949035 342.16888428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -03949036 342.16891479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03949037 342.16891479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -03949038 342.16894531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03949039 342.16894531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -03949040 342.16894531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03949041 342.16894531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -03949042 342.16897583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03949043 342.16897583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -03949044 342.16903687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03949045 342.16903687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -03949046 342.16906738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03949047 342.16906738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -03949048 342.16909790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03949049 342.16912842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -03949050 342.16912842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03949051 342.16912842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -03949052 342.16915894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03949053 342.16918945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -03949054 342.16921997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03949055 342.16921997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -03949056 342.16925049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03949057 342.16925049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -03949058 342.16928101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03949059 342.16928101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -03949060 342.16928101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03949061 342.16928101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -03949062 342.16931152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03949063 342.16931152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -03949064 342.16934204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03949065 342.16934204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -03949066 342.16937256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03949067 342.16937256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -03949068 342.16940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03949069 342.16940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -03949070 342.16943359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03949071 342.16943359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -03949072 342.16943359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03949073 342.16946411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -03949074 342.16949463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03949075 342.16949463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -03949076 342.16952515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03949077 342.16952515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -03949078 342.16955566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03949079 342.16955566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -03949080 342.16958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03949081 342.16958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03949082 342.16958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03949083 342.16958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03949084 342.16961670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03949085 342.16961670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03949086 342.16964722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03949087 342.16964722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03949088 342.16967773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03949089 342.16967773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03949090 342.16970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03949091 342.16970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03949092 342.16973877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03949093 342.16973877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03949094 342.16976929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03949095 342.16976929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03949096 342.16979980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03949097 342.16979980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03949098 342.16983032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03949099 342.16983032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03949100 342.16986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03949101 342.16986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03949102 342.16989136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03949103 342.16989136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03949104 342.16992188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03949105 342.16992188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03949106 342.16992188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03949107 342.16992188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03949108 342.16995239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03949109 342.16995239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03949110 342.16998291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03949111 342.16998291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03949112 342.17001343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03949113 342.17004395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03949114 342.17007446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03949115 342.17007446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03949116 342.17007446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03949117 342.17007446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03949118 342.17010498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03949119 342.17010498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03949120 342.17013550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03949121 342.17013550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03949122 342.17016602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03949123 342.17016602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03949124 342.17019653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03949125 342.17019653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -03949126 342.17022705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03949127 342.17022705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -03949128 342.17022705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03949129 342.17022705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -03949130 342.17025757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03949131 342.17025757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -03949132 342.17028809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03949133 342.17028809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -03949134 342.17031860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03949135 342.17034912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -03949136 342.17037964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03949137 342.17037964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -03949138 342.17037964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03949139 342.17037964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -03949140 342.17041016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03949141 342.17041016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -03949142 342.17044067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03949143 342.17044067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -03949144 342.17047119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03949145 342.17047119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -03949146 342.17050171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03949147 342.17050171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -03949148 342.17053223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03949149 342.17053223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -03949150 342.17053223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03949151 342.17053223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -03949152 342.17056274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03949153 342.17056274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -03949154 342.17059326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03949155 342.17062378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -03949156 342.17065430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03949157 342.17065430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -03949158 342.17068481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03949159 342.17068481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -03949160 342.17071533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03949161 342.17071533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -03949162 342.17071533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03949163 342.17071533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -03949164 342.17074585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03949165 342.17074585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -03949166 342.17077637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03949167 342.17077637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -03949168 342.17080688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03949169 342.17080688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -03949170 342.17083740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03949171 342.17083740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -03949172 342.17086792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03949173 342.17086792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -03949174 342.17086792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03949175 342.17089844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -03949176 342.17092896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03949177 342.17092896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -03951788 342.20803833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -03951789 342.20803833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -03951790 342.20806885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -03951791 342.20806885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -03951792 342.20809937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -03951793 342.20809937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -03951794 342.20812988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -03951795 342.20812988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -03951796 342.20816040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -03951797 342.20816040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -03951798 342.20819092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -03951799 342.20819092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -03951800 342.20819092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -03951801 342.20819092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -03951802 342.20822144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -03951803 342.20822144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -03951804 342.20825195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -03951805 342.20825195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -03951806 342.20828247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -03951807 342.20831299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -03951808 342.20834351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -03951809 342.20834351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -03951810 342.20834351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -03951811 342.20834351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -03951812 342.20837402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -03951813 342.20837402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -03951814 342.20840454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -03951815 342.20840454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -03951816 342.20843506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -03951817 342.20843506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -03951818 342.20846558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -03951819 342.20846558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -03951820 342.20849609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -03951821 342.20849609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -03951822 342.20852661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -03951823 342.20852661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -03951824 342.20852661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -03951825 342.20852661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -03951826 342.20855713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -03951827 342.20855713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -03951828 342.20858765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -03951829 342.20861816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -03951830 342.20864868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -03951831 342.20864868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -03968024 342.44070435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -03968025 342.44073486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -03968026 342.44076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -03968027 342.44076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -03968028 342.44079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -03968029 342.44079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -03968030 342.44079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -03968031 342.44079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -03968032 342.44082642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -03968033 342.44082642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -03968034 342.44085693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -03968035 342.44085693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -03968036 342.44088745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -03968037 342.44088745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -03968038 342.44091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -03968039 342.44091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -03968040 342.44094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -03968041 342.44094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -03968042 342.44094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -03968043 342.44094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -03968044 342.44097900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -03968045 342.44097900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -03968046 342.44100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -03968047 342.44104004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -03968048 342.44107056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -03968049 342.44107056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -03968050 342.44110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -03968051 342.44110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -03968052 342.44110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -03968053 342.44110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -03968054 342.44113159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -03968055 342.44113159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -03968056 342.44116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -03968057 342.44116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -03968058 342.44119263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -03968059 342.44119263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -03968060 342.44122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -03968061 342.44122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -03968062 342.44125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -03968063 342.44125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -03968064 342.44125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -03968065 342.44125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -03968066 342.44128418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -03968067 342.44131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -03974936 342.54248047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -03974937 342.54248047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37048 -03974938 342.54251099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37058 -03974939 342.54251099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37058 -03974940 342.54254150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37068 -03974941 342.54254150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37068 -03974942 342.54257202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37078 -03974943 342.54260254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37078 -03974944 342.54260254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37088 -03974945 342.54260254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37088 -03974946 342.54263306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37098 -03974947 342.54263306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37098 -03974948 342.54266357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a8 -03974949 342.54266357 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370a8 -03974950 342.54269409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b8 -03974951 342.54269409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370b8 -03974952 342.54272461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -03974953 342.54272461 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370c8 -03974954 342.54275513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -03974955 342.54275513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370d8 -03974956 342.54278564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -03974957 342.54278564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370e8 -03974958 342.54278564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -03974959 342.54278564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x370f8 -03974960 342.54281616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -03974961 342.54281616 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37108 -03974962 342.54284668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -03974963 342.54284668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37118 -03974964 342.54287720 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -03974965 342.54290771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37128 -03974966 342.54293823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -03974967 342.54293823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37138 -03974968 342.54293823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -03974969 342.54293823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37148 -03974970 342.54296875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37158 -03974971 342.54296875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37158 -03974972 342.54299927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37168 -03974973 342.54299927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37168 -03974974 342.54302979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -03974975 342.54302979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37178 -03974976 342.54306030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -03974977 342.54306030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37188 -03974978 342.54309082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -03974979 342.54309082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37198 -03981648 342.64526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -03981649 342.64526367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -03981650 342.64529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -03981651 342.64529419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -03981652 342.64532471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -03981653 342.64532471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -03981654 342.64535522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -03981655 342.64535522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -03981656 342.64538574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -03981657 342.64538574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -03981658 342.64541626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -03981659 342.64541626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -03981660 342.64544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -03981661 342.64544678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -03981662 342.64547729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -03981663 342.64547729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -03981664 342.64550781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -03981665 342.64550781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -03981666 342.64553833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -03981667 342.64553833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -03981668 342.64556885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -03981669 342.64556885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -03981670 342.64559937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -03981671 342.64559937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -03981672 342.64562988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -03981673 342.64562988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -03981674 342.64566040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -03981675 342.64566040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -03981676 342.64569092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -03981677 342.64569092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -03981678 342.64572144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -03981679 342.64572144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -03981680 342.64572144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -03981681 342.64575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -03981682 342.64575195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -03981683 342.64578247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -03981684 342.64581299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -03981685 342.64581299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -03981686 342.64584351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -03981687 342.64584351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -03981688 342.64587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -03981689 342.64587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -03981690 342.64587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -03981691 342.64587402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -03989174 344.10037231 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -03989175 344.12011719 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03989176 344.12011719 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03989177 344.40106201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03989178 344.40112305 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03989179 344.40112305 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -03989180 344.40115356 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -03989181 344.40127563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03989182 344.40127563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03989183 344.40133667 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -03989184 344.40136719 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -03989185 345.12265015 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03989186 345.12268066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -03989187 345.12271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03989188 345.12271118 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -03989189 345.12274170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03989190 345.12274170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -03989191 345.12277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03989192 345.12277222 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -03989193 345.12280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03989194 345.12280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -03989195 345.12280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03989196 345.12280273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -03989197 345.12283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03989198 345.12283325 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -03989199 345.12286377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03989200 345.12289429 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -03989201 345.12292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03989202 345.12292480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -03989203 345.12295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03989204 345.12295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -03989205 345.12295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03989206 345.12295532 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -03989207 345.12298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03989208 345.12298584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -03989209 345.12301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03989210 345.12301636 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -03989211 345.12304688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03989212 345.12304688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -03989213 345.12307739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03989214 345.12307739 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -03989215 345.12310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03989216 345.12310791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -03989217 345.12313843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03989218 345.12313843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -03989219 345.12313843 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03989220 345.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -03989221 345.12316895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03989222 345.12319946 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -03989223 345.12322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03989224 345.12322998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -03989225 345.12326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03989226 345.12326050 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -03989227 345.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03989228 345.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -03989229 345.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03989230 345.12329102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -03989231 345.12332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03989232 345.12332153 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -03989233 345.12335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03989234 345.12335205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -03989235 345.12338257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03989236 345.12338257 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -03989237 345.12341309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03989238 345.12341309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -03989239 345.12344360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03989240 345.12344360 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -03989241 345.12347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03989242 345.12347412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -03989243 345.12350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03989244 345.12350464 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -03989245 345.12353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03989246 345.12353516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -03989247 345.12356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03989248 345.12356567 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -03989249 345.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03989250 345.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -03989251 345.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03989252 345.12359619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -03989253 345.12362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03989254 345.12362671 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -03989255 345.12365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03989256 345.12365723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -03989257 345.12368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03989258 345.12368774 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -03989259 345.12371826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03989260 345.12374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -03989261 345.12374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03989262 345.12374878 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -03989263 345.12377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03989264 345.12377930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -03989265 345.12380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03989266 345.12380981 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -03989267 345.12384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03989268 345.12384033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -03989269 345.12387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03989270 345.12387085 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -03989271 345.12390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03989272 345.12390137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -03989273 345.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03989274 345.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -03989275 345.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03989276 345.12393188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -03989277 345.12396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03989278 345.12396240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -03989279 345.12399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03989280 345.12399292 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -03989281 345.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03989282 345.12405396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -03989283 345.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03989284 345.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -03989285 345.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03989286 345.12408447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -03989287 345.12411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03989288 345.12411499 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -03989289 345.12414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03989290 345.12414551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -03989291 345.12417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03989292 345.12417603 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -03989293 345.12420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03989294 345.12420654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -03989295 345.12423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03989296 345.12423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -03989297 345.12423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03989298 345.12423706 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -03989299 345.12426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03989300 345.12426758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -03989301 345.12429810 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03989302 345.12432861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -03989303 345.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03989304 345.12435913 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -03989305 345.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03989306 345.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -03989307 345.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03989308 345.12438965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -03989309 345.12445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03989310 345.12445068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -03989311 345.12448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03989312 345.12448120 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -03989313 345.12451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03989314 345.12451172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -03989315 345.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03989316 345.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -03989317 345.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03989318 345.12454224 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -03989319 345.12457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03989320 345.12457275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -03989321 345.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03989322 345.12460327 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -03989323 345.12463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03989324 345.12463379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -03989325 345.12466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03989326 345.12466431 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -03989327 345.12469482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03989328 345.12472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -03989329 345.12472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03989330 345.12472534 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -03989331 345.12475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03989332 345.12475586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -03989333 345.12478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03989334 345.12478638 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -03989335 345.12481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03989336 345.12481689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -03989337 345.12484741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03989338 345.12484741 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -03989339 345.12487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03989340 345.12487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -03989341 345.12487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03989342 345.12487793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -03989343 345.12490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03989344 345.12490845 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -03989345 345.12493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03989346 345.12493896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -03989347 345.12496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03989348 345.12496948 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -03989349 345.12500000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03989350 345.12503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -03989351 345.12503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03989352 345.12503052 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -03989353 345.12506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03989354 345.12506104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -03989355 345.12509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03989356 345.12509155 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -03989357 345.12512207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03989358 345.12512207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -03989359 345.12515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03989360 345.12515259 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -03989361 345.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03989362 345.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -03989363 345.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03989364 345.12518311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -03989365 345.12521362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03989366 345.12521362 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -03989367 345.12524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03989368 345.12524414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -03989369 345.12527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03989370 345.12527466 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -03989371 345.12530518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03989372 345.12533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -03989373 345.12533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03989374 345.12533569 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -03989375 345.12536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03989376 345.12536621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -03989377 345.12539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03989378 345.12539673 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -03989379 345.12542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03989380 345.12542725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -03989381 345.12545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03989382 345.12545776 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -03989383 345.12548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03989384 345.12548828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -03989385 345.12551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03989386 345.12551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -03989387 345.12551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03989388 345.12551880 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -03989389 345.12554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03989390 345.12554932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -03989391 345.12557983 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03989392 345.12561035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -03989393 345.12564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03989394 345.12564087 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -03989395 345.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03989396 345.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -03989397 345.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03989398 345.12567139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -03989399 345.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03989400 345.12570190 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -03989401 345.12573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03989402 345.12573242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -03989403 345.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03989404 345.12576294 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -03989405 345.12579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03989406 345.12579346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -03989407 345.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03989408 345.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -03989409 345.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03989410 345.12582397 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -03989411 345.12585449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03989412 345.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -03989413 345.12588501 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03989414 345.12591553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -03989415 345.12594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03989416 345.12594604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -03989417 345.12597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03989418 345.12597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -03989419 345.12597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03989420 345.12597656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -03989421 345.12600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03989422 345.12600708 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -03989423 345.12603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03989424 345.12603760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -03989425 345.12606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03989426 345.12606812 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -03989427 345.12609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03989428 345.12609863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -03989429 345.12612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03989430 345.12612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -03989431 345.12612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03989432 345.12612915 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -03989433 345.12615967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03989434 345.12619019 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -03989435 345.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03989436 345.12622070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -03989437 345.12625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03989438 345.12625122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -03989439 345.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03989440 345.12628174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -03989441 345.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03989442 345.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -03989443 345.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03989444 345.12631226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -03989445 345.12634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03989446 345.12634277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -03989447 345.12637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03989448 345.12637329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -03989449 345.12640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03989450 345.12640381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -03989451 345.12643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03989452 345.12643433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -03989453 345.12646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03989454 345.12646484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -03989455 345.12649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03989456 345.12649536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -03989457 345.12652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03989458 345.12652588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -03989459 345.12655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03989460 345.12655640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -03989461 345.12658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03989462 345.12658691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -03989463 345.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03989464 345.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -03989465 345.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03989466 345.12661743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -03989467 345.12664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03989468 345.12664795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -03989469 345.12667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03989470 345.12667847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -03989471 345.12670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03989472 345.12670898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -03989473 345.12673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03989474 345.12673950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -03989475 345.12677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03989476 345.12677002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -03989477 345.12680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03989478 345.12680054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -03989479 345.12683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03989480 345.12683105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -03989481 345.12686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03989482 345.12686157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -03989483 345.12689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03989484 345.12689209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -03989485 345.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03989486 345.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -03989487 345.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03989488 345.12692261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -03989489 345.12695313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03989490 345.12695313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -03989491 345.12698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03989492 345.12698364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -03989493 345.12701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03989494 345.12701416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -03989495 345.12704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03989496 345.12704468 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -03989497 345.12707520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03989498 345.12710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -03989499 345.12710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03989500 345.12710571 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -03989501 345.12713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03989502 345.12713623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -03989503 345.12716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03989504 345.12716675 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -03989505 345.12719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03989506 345.12719727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -03989507 345.12722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03989508 345.12722778 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -03989509 345.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03989510 345.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -03989511 345.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03989512 345.12725830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -03989513 345.12728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03989514 345.12728882 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -03989515 345.12731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03989516 345.12731934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -03989517 345.12734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03989518 345.12734985 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -03989519 345.12741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03989520 345.12741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -03989521 345.12741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03989522 345.12741089 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -03989523 345.12744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03989524 345.12744141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -03989525 345.12747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03989526 345.12747192 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -03989527 345.12750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03989528 345.12750244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -03989529 345.12753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03989530 345.12753296 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -03989531 345.12756348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03989532 345.12756348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -03989533 345.12759399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03989534 345.12759399 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -03989535 345.12762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03989536 345.12762451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -03989537 345.12765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03989538 345.12765503 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -03989539 345.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03989540 345.12768555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -03989541 345.12771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03989542 345.12771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -03989543 345.12771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03989544 345.12771606 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -03989545 345.12774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03989546 345.12774658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -03989547 345.12777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03989548 345.12777710 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -03989549 345.12780762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03989550 345.12783813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -03989551 345.12786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03989552 345.12786865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -03989553 345.12789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03989554 345.12789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -03989555 345.12789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03989556 345.12789917 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -03989557 345.12792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03989558 345.12792969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -03989559 345.12796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03989560 345.12796021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -03989561 345.12799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03989562 345.12799072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -03989563 345.12802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03989564 345.12802124 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -03989565 345.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03989566 345.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -03989567 345.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03989568 345.12805176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -03989569 345.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03989570 345.12808228 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -03989571 345.12811279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03989572 345.12814331 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -03989573 345.12817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03989574 345.12817383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -03989575 345.12820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03989576 345.12820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -03989577 345.12820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03989578 345.12820435 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -03989579 345.12823486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03989580 345.12823486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -03989581 345.12826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03989582 345.12826538 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -03989583 345.12829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03989584 345.12829590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -03989585 345.12832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03989586 345.12832642 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -03989587 345.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03989588 345.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -03989589 345.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03989590 345.12835693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -03989591 345.12838745 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03989592 345.12841797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -03989593 345.12844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03989594 345.12844849 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -03989595 345.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03989596 345.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -03989597 345.12850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03989598 345.12850952 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -03989599 345.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03989600 345.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -03989601 345.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03989602 345.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -03989603 345.12857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03989604 345.12857056 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -03989605 345.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03989606 345.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -03989607 345.12863159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03989608 345.12863159 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -03989609 345.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03989610 345.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -03989611 345.12869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03989612 345.12869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -03989613 345.12869263 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03989614 345.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -03989615 345.12875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03989616 345.12875366 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -03989617 345.12878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03989618 345.12878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -03989619 345.12881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03989620 345.12881470 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -03989621 345.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03989622 345.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -03989623 345.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03989624 345.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -03989625 345.12887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03989626 345.12887573 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -03989627 345.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03989628 345.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -03989629 345.12893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03989630 345.12893677 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -03989631 345.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03989632 345.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -03989633 345.12899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03989634 345.12899780 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -03989635 345.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03989636 345.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -03989637 345.12905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03989638 345.12905884 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -03989639 345.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03989640 345.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -03989641 345.12911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03989642 345.12911987 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -03989643 345.12915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03989644 345.12915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -03989645 345.12915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03989646 345.12915039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -03989647 345.12918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03989648 345.12918091 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -03989649 345.12921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03989650 345.12921143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -03989651 345.12924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03989652 345.12924194 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -03989653 345.12927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03989654 345.12927246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -03989655 345.12930298 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03989656 345.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -03989657 345.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03989658 345.12933350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -03989659 345.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03989660 345.12936401 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -03989661 345.12939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03989662 345.12939453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -03989663 345.12942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03989664 345.12942505 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -03989665 345.12945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03989666 345.12945557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -03989667 345.12948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03989668 345.12948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -03989669 345.12948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03989670 345.12948608 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -03989671 345.12951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03989672 345.12951660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -03989673 345.12954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03989674 345.12954712 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -03989675 345.12957764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03989676 345.12960815 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -03989677 345.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03989678 345.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -03989679 345.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03989680 345.12963867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -03989681 345.12966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03989682 345.12966919 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -03989683 345.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03989684 345.12969971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -03989685 345.12973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03989686 345.12973022 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -03989687 345.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03989688 345.12976074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -03989689 345.12979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03989690 345.12979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -03989691 345.12979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03989692 345.12979126 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -03989693 345.12982178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03989694 345.12985229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -03989695 345.12988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03989696 345.12988281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -03989697 345.12991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03989698 345.12991333 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -03989699 345.12994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03989700 345.12994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -03989701 345.12994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03989702 345.12994385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -03989703 345.12997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03989704 345.12997437 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -03989705 345.13000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03989706 345.13000488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -03989707 345.13003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03989708 345.13003540 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -03989709 345.13006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03989710 345.13006592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -03989711 345.13009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03989712 345.13009644 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -03989713 345.13012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03989714 345.13012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -03989715 345.13012695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03989716 345.13015747 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -03989717 345.13018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03989718 345.13018799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -03989719 345.13021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03989720 345.13021851 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -03989721 345.13024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03989722 345.13024902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -03989723 345.13027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03989724 345.13027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -03989725 345.13027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03989726 345.13027954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -03989727 345.13031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03989728 345.13031006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -03989729 345.13034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03989730 345.13034058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -03989731 345.13037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03989732 345.13037109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -03989733 345.13040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03989734 345.13040161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -03989735 345.13043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03989736 345.13043213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -03989737 345.13046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03989738 345.13046265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -03989739 345.13049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03989740 345.13049316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -03989741 345.13052368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03989742 345.13052368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -03989743 345.13055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03989744 345.13055420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -03989745 345.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03989746 345.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -03989747 345.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03989748 345.13058472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -03989749 345.13061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03989750 345.13061523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -03989751 345.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03989752 345.13064575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -03989753 345.13067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03989754 345.13067627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -03989755 345.13070679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03989756 345.13073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -03989757 345.13073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03989758 345.13073730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -03989759 345.13076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03989760 345.13076782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -03989761 345.13079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03989762 345.13079834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -03989763 345.13082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03989764 345.13082886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -03989765 345.13085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03989766 345.13085938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -03989767 345.13088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03989768 345.13088989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -03989769 345.13092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03989770 345.13092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -03989771 345.13092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03989772 345.13092041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -03989773 345.13095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03989774 345.13095093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -03989775 345.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03989776 345.13098145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -03989777 345.13101196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03989778 345.13104248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -03989779 345.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03989780 345.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -03989781 345.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03989782 345.13107300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -03989783 345.13110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03989784 345.13110352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -03989785 345.13113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03989786 345.13113403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -03989787 345.13116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03989788 345.13116455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -03989789 345.13119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03989790 345.13119507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -03989791 345.13122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03989792 345.13122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -03989793 345.13122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03989794 345.13122559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -03989795 345.13125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03989796 345.13125610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -03989797 345.13128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03989798 345.13128662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -03989799 345.13131714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03989800 345.13134766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -03989801 345.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03989802 345.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -03989803 345.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03989804 345.13137817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -03989805 345.13140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03989806 345.13140869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -03989807 345.13143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03989808 345.13143921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -03989809 345.13146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03989810 345.13146973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -03989811 345.13150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03989812 345.13150024 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -03989813 345.13153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03989814 345.13153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -03989815 345.13153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03989816 345.13153076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -03989817 345.13156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03989818 345.13156128 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -03989819 345.13159180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03989820 345.13162231 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -03989821 345.13165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03989822 345.13165283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -03989823 345.13168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03989824 345.13168335 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -03989825 345.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03989826 345.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -03989827 345.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03989828 345.13171387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -03989829 345.13174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03989830 345.13174438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -03989831 345.13177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03989832 345.13177490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -03989833 345.13180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03989834 345.13180542 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -03989835 345.13183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03989836 345.13183594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -03989837 345.13186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03989838 345.13186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -03989839 345.13186646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03989840 345.13189697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -03989841 345.13192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03989842 345.13192749 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -03989843 345.13195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03989844 345.13195801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -03989845 345.13198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03989846 345.13198853 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -03989847 345.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03989848 345.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -03989849 345.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03989850 345.13201904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -03989851 345.13204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03989852 345.13204956 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -03989853 345.13208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03989854 345.13208008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -03989855 345.13211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03989856 345.13211060 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -03989857 345.13214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03989858 345.13214111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -03989859 345.13217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03989860 345.13217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -03989861 345.13217163 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03989862 345.13220215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -03989863 345.13223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03989864 345.13223267 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -03989865 345.13226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03989866 345.13226318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -03989867 345.13229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03989868 345.13229370 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -03989869 345.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03989870 345.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -03989871 345.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03989872 345.13232422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -03989873 345.13235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03989874 345.13235474 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -03989875 345.13238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03989876 345.13238525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -03989877 345.13241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03989878 345.13241577 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -03989879 345.13244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03989880 345.13244629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -03989881 345.13247681 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03989882 345.13250732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -03989883 345.13250732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03989884 345.13250732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -03989885 345.13253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03989886 345.13253784 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -03989887 345.13256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03989888 345.13256836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -03989889 345.13259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03989890 345.13259888 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -03989891 345.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03989892 345.13262939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -03989893 345.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03989894 345.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -03989895 345.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03989896 345.13265991 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -03989897 345.13269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03989898 345.13269043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -03989899 345.13272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03989900 345.13272095 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -03989901 345.13275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03989902 345.13275146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -03989903 345.13278198 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03989904 345.13281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -03989905 345.13281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03989906 345.13281250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -03989907 345.13284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03989908 345.13284302 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -03989909 345.13287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03989910 345.13287354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -03989911 345.13290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03989912 345.13290405 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -03989913 345.13293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03989914 345.13293457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -03989915 345.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03989916 345.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -03989917 345.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03989918 345.13296509 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -03989919 345.13299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03989920 345.13299561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -03989921 345.13302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03989922 345.13302612 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -03989923 345.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03989924 345.13305664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -03989925 345.13308716 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03989926 345.13311768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -03989927 345.13311768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03989928 345.13311768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -03989929 345.13314819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03989930 345.13314819 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -03989931 345.13317871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03989932 345.13317871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -03989933 345.13320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03989934 345.13320923 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -03989935 345.13323975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03989936 345.13323975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -03989937 345.13327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03989938 345.13327026 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -03989939 345.13330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03989940 345.13330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -03989941 345.13330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03989942 345.13330078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -03989943 345.13333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03989944 345.13333130 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -03989945 345.13336182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03989946 345.13339233 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -03989947 345.13342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03989948 345.13342285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -03989949 345.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03989950 345.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -03989951 345.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03989952 345.13345337 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -03989953 345.13348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03989954 345.13348389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -03989955 345.13351440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03989956 345.13351440 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -03989957 345.13354492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03989958 345.13354492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -03989959 345.13357544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03989960 345.13357544 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -03989961 345.13360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03989962 345.13360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -03989963 345.13360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03989964 345.13360596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -03989965 345.13363647 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03989966 345.13366699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -03989967 345.13369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03989968 345.13369751 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -03989969 345.13372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03989970 345.13372803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -03989971 345.13375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03989972 345.13375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -03989973 345.13375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03989974 345.13375854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -03989975 345.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03989976 345.13378906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -03989977 345.13381958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03989978 345.13381958 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -03989979 345.13385010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03989980 345.13385010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -03989981 345.13388062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03989982 345.13388062 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -03989983 345.13391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03989984 345.13391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -03989985 345.13394165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03989986 345.13394165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -03989987 345.13394165 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03989988 345.13397217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -03989989 345.13400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03989990 345.13400269 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -03989991 345.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03989992 345.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -03989993 345.13406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03989994 345.13406372 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -03989995 345.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03989996 345.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -03989997 345.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03989998 345.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -03989999 345.13412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03990000 345.13412476 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -03990001 345.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03990002 345.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -03990003 345.13418579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03990004 345.13418579 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -03990005 345.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03990006 345.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -03990007 345.13424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03990008 345.13424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -03990009 345.13424683 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03990010 345.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -03990011 345.13430786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03990012 345.13430786 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -03990013 345.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03990014 345.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -03990015 345.13436890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03990016 345.13436890 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -03990017 345.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03990018 345.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -03990019 345.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03990020 345.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -03990021 345.13442993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03990022 345.13442993 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -03990023 345.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03990024 345.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -03990025 345.13449097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03990026 345.13449097 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -03990027 345.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03990028 345.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -03990029 345.13455200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03990030 345.13455200 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -03990031 345.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03990032 345.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -03990033 345.13461304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03990034 345.13461304 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -03990035 345.13464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03990036 345.13464355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -03990037 345.13467407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03990038 345.13467407 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -03990039 345.13470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03990040 345.13470459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -03990041 345.13473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03990042 345.13473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -03990043 345.13473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03990044 345.13473511 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -03990045 345.13476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03990046 345.13476563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -03990047 345.13479614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03990048 345.13479614 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -03990049 345.13482666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03990050 345.13482666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -03990051 345.13485718 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03990052 345.13488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -03990053 345.13488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03990054 345.13488770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -03990055 345.13491821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03990056 345.13491821 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -03990057 345.13494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03990058 345.13494873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -03990059 345.13497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03990060 345.13497925 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -03990061 345.13500977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03990062 345.13500977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -03990063 345.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03990064 345.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -03990065 345.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03990066 345.13504028 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -03990067 345.13507080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03990068 345.13507080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -03990069 345.13510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03990070 345.13510132 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -03990071 345.13513184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03990072 345.13513184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -03990073 345.13519287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03990074 345.13519287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -03990075 345.13519287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03990076 345.13519287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -03990077 345.13522339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03990078 345.13522339 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -03990079 345.13525391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03990080 345.13525391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -03990081 345.13528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03990082 345.13528442 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -03990083 345.13531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03990084 345.13531494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -03990085 345.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03990086 345.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -03990087 345.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03990088 345.13534546 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -03990089 345.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03990090 345.13537598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -03990091 345.13543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03990092 345.13543701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -03990093 345.13546753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03990094 345.13546753 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -03990095 345.13549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03990096 345.13549805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -03990097 345.13552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03990098 345.13552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -03990099 345.13552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03990100 345.13552856 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -03990101 345.13555908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03990102 345.13555908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -03990103 345.13558960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03990104 345.13558960 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -03990105 345.13562012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03990106 345.13562012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -03990107 345.13565063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03990108 345.13565063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -03990977 345.14782715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03990978 345.14782715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -03990979 345.14785767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03990980 345.14785767 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -03990981 345.14788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03990982 345.14788818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -03990983 345.14791870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03990984 345.14791870 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -03990985 345.14794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03990986 345.14794922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -03990987 345.14797974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03990988 345.14797974 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -03990989 345.14801025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03990990 345.14801025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -03990991 345.14804077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03990992 345.14804077 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -03990993 345.14807129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03990994 345.14807129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -03990995 345.14807129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03990996 345.14807129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -03990997 345.14810181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03990998 345.14810181 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -03990999 345.14813232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03991000 345.14813232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -03991001 345.14816284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03991002 345.14816284 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -03991003 345.14819336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03991004 345.14822388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -03991005 345.14822388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03991006 345.14822388 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -03991007 345.14825439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03991008 345.14825439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -03991009 345.14828491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03991010 345.14828491 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -03991011 345.14831543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03991012 345.14831543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -03991013 345.14834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03991014 345.14834595 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -03991015 345.14837646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03991016 345.14837646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -03991017 345.14840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03991018 345.14840698 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -03991019 345.14843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -03991020 345.14843750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04011592 345.43872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -04011593 345.43875122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -04011594 345.43875122 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -04011595 345.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -04011596 345.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -04011597 345.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -04011598 345.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -04011599 345.43881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -04011600 345.43881226 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -04011601 345.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -04011602 345.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -04011603 345.43887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -04011604 345.43887329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -04011605 345.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -04011606 345.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -04011607 345.43893433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -04011608 345.43893433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -04011609 345.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -04011610 345.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -04011611 345.43899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -04011612 345.43899536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -04011613 345.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -04011614 345.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -04011615 345.43905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -04011616 345.43905640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -04011617 345.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -04011618 345.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -04011619 345.43911743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -04011620 345.43911743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -04011621 345.43911743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -04011622 345.43911743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -04011623 345.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -04011624 345.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -04011625 345.43917847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -04011626 345.43917847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -04011627 345.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -04011628 345.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -04011629 345.43923950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -04011630 345.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -04011631 345.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -04011632 345.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdb8 -04011633 345.43930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -04011634 345.43930054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdc8 -04011635 345.43933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cdd8 -04016546 345.51196289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36748 -04016547 345.51199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36758 -04016548 345.51199341 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36758 -04016549 345.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36768 -04016550 345.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36768 -04016551 345.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36778 -04016552 345.51202393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36778 -04016553 345.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36788 -04016554 345.51205444 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36788 -04016555 345.51208496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36798 -04016556 345.51208496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36798 -04016557 345.51211548 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a8 -04016558 345.51214600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367a8 -04016559 345.51217651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b8 -04016560 345.51217651 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367b8 -04016561 345.51220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c8 -04016562 345.51220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367c8 -04016563 345.51220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d8 -04016564 345.51220703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d8 -04016565 345.51223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -04016566 345.51223755 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -04016567 345.51226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -04016568 345.51226807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -04016569 345.51229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -04016570 345.51229858 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -04016571 345.51232910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -04016572 345.51235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -04016573 345.51235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -04016574 345.51235962 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -04016575 345.51239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -04016576 345.51239014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -04016577 345.51242065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -04016578 345.51242065 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -04016579 345.51245117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -04016580 345.51245117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -04016581 345.51248169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -04016582 345.51248169 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -04016583 345.51251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -04016584 345.51251221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -04016585 345.51254272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -04016586 345.51254272 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -04016587 345.51257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -04016588 345.51257324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -04016589 345.51260376 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a8 -04023799 345.61398315 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -04023800 345.61401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -04023801 345.61401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -04023802 345.61401367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -04023803 345.61404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -04023804 345.61404419 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -04023805 345.61407471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -04023806 345.61407471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -04023807 345.61410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -04023808 345.61410522 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -04023809 345.61413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -04023810 345.61413574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -04023811 345.61416626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -04023812 345.61416626 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -04023813 345.61419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -04023814 345.61419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -04023815 345.61419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -04023816 345.61419678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -04023817 345.61422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -04023818 345.61422729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -04023819 345.61425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -04023820 345.61425781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -04023821 345.61428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -04023822 345.61428833 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -04023823 345.61431885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -04023824 345.61434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -04023825 345.61434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -04023826 345.61434937 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -04023827 345.61437988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -04023828 345.61437988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -04023829 345.61441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -04023830 345.61441040 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -04023831 345.61444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -04023832 345.61444092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -04023833 345.61447144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -04023834 345.61447144 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -04023835 345.61450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -04023836 345.61450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -04023837 345.61450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -04023838 345.61450195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -04023839 345.61453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -04023840 345.61453247 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -04023841 345.61456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -04023842 345.61456299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -04029469 345.69277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb28 -04029470 345.69277954 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb28 -04029471 345.69281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb38 -04029472 345.69281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb38 -04029473 345.69284058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb48 -04029474 345.69284058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb48 -04029475 345.69284058 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb58 -04029476 345.69287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb58 -04029477 345.69290161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb68 -04029478 345.69290161 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb68 -04029479 345.69293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb78 -04029480 345.69293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb78 -04029481 345.69296265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb88 -04029482 345.69296265 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb88 -04029483 345.69299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb98 -04029484 345.69299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb98 -04029485 345.69299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba8 -04029486 345.69299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fba8 -04029487 345.69302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -04029488 345.69302368 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbb8 -04029489 345.69305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -04029490 345.69305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbc8 -04029491 345.69308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -04029492 345.69308472 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbd8 -04029493 345.69311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -04029494 345.69311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbe8 -04029495 345.69314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -04029496 345.69314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fbf8 -04029497 345.69314575 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -04029498 345.69317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc08 -04029499 345.69320679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -04029500 345.69320679 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc18 -04029501 345.69323730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -04029502 345.69323730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc28 -04029503 345.69326782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -04029504 345.69326782 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc38 -04029505 345.69329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -04029506 345.69329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc48 -04029507 345.69329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -04029508 345.69329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc58 -04029509 345.69332886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -04029510 345.69332886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc68 -04029511 345.69335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -04029512 345.69335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc78 -04031072 346.12179565 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04031073 346.14370728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04031074 346.14370728 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04031075 346.17681885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04031076 346.17730713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04031077 346.90725708 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04031078 346.90731812 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04031079 346.90734863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04031080 346.90734863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04031081 346.90747070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04031082 346.90747070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04031083 346.90753174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04031084 346.90753174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04031085 347.75570679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04031086 347.75570679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04031087 347.75573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04031088 347.75573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04031089 347.75576782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04031090 347.75576782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04031091 347.75579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04031092 347.75579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04031093 347.75582886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04031094 347.75582886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04031095 347.75585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04031096 347.75585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04031097 347.75588989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04031098 347.75588989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04031099 347.75588989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04031100 347.75588989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04031101 347.75592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04031102 347.75592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04031103 347.75595093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04031104 347.75595093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04031105 347.75598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04031106 347.75598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04031107 347.75601196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04031108 347.75604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04031109 347.75604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04031110 347.75604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04031111 347.75607300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04031112 347.75607300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04031113 347.75610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04031114 347.75610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04031115 347.75613403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04031116 347.75613403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04031117 347.75616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04031118 347.75616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04031119 347.75619507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04031120 347.75619507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04031121 347.75622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04031122 347.75622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04031123 347.75622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04031124 347.75622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04031125 347.75625610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04031126 347.75625610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04031127 347.75628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04031128 347.75631714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04031129 347.75634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04031130 347.75634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04031131 347.75637817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04031132 347.75637817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04031133 347.75637817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04031134 347.75637817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04031135 347.75640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04031136 347.75640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04031137 347.75643921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04031138 347.75643921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04031139 347.75646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04031140 347.75646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04031141 347.75650024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04031142 347.75650024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04031143 347.75653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04031144 347.75653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04031145 347.75653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04031146 347.75653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04031147 347.75656128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04031148 347.75659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04031149 347.75662231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04031150 347.75662231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04031151 347.75665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04031152 347.75665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04031153 347.75668335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04031154 347.75668335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04031155 347.75668335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04031156 347.75668335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04031157 347.75671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04031158 347.75671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04031159 347.75674438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04031160 347.75674438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04031161 347.75677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04031162 347.75677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04031163 347.75680542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04031164 347.75680542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04031165 347.75683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04031166 347.75686646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04031167 347.75686646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04031168 347.75686646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04031169 347.75689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04031170 347.75689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04031171 347.75692749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04031172 347.75692749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04031173 347.75695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04031174 347.75695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04031175 347.75698853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04031176 347.75698853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04031177 347.75701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04031178 347.75701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04031179 347.75701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04031180 347.75701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04031181 347.75704956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04031182 347.75704956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04031183 347.75708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04031184 347.75711060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04031185 347.75714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04031186 347.75714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04031187 347.75717163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04031188 347.75717163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04031189 347.75717163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04031190 347.75717163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04031191 347.75720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04031192 347.75720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04031193 347.75723267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04031194 347.75723267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04031195 347.75726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04031196 347.75726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04031197 347.75729370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04031198 347.75729370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04031199 347.75732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04031200 347.75732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04031201 347.75732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04031202 347.75732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04031203 347.75735474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04031204 347.75738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04031205 347.75741577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04031206 347.75741577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04031207 347.75744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04031208 347.75744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04031209 347.75747681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04031210 347.75747681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04031211 347.75750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04031212 347.75750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04031213 347.75753784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04031214 347.75753784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04031215 347.75756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04031216 347.75756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04031217 347.75759888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04031218 347.75759888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04031219 347.75762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04031220 347.75762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04031221 347.75765991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04031222 347.75765991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04031223 347.75765991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04031224 347.75765991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04031225 347.75769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04031226 347.75769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04031227 347.75772095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04031228 347.75775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04031229 347.75778198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04031230 347.75778198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04031231 347.75781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04031232 347.75781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04031233 347.75781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04031234 347.75781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04031235 347.75784302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04031236 347.75784302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04031237 347.75787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04031238 347.75787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04031239 347.75790405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04031240 347.75790405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04031241 347.75793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04031242 347.75793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04031243 347.75796509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04031244 347.75796509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04031245 347.75796509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04031246 347.75796509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04031247 347.75799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04031248 347.75802612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04031249 347.75805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04031250 347.75805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04031251 347.75808716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04031252 347.75808716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04031253 347.75811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04031254 347.75811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04031255 347.75811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04031256 347.75811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04031257 347.75814819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04031258 347.75814819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04031259 347.75817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04031260 347.75817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04031261 347.75820923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04031262 347.75820923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04031263 347.75823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04031264 347.75823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04031265 347.75827026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04031266 347.75827026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04031267 347.75827026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04031268 347.75830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04031269 347.75833130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04031270 347.75833130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04031271 347.75836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04031272 347.75836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04031273 347.75839233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04031274 347.75839233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04031275 347.75842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04031276 347.75842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04031277 347.75845337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04031278 347.75845337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04031279 347.75845337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04031280 347.75845337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04031281 347.75848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04031282 347.75848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04031283 347.75851440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04031284 347.75851440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04031285 347.75854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04031286 347.75854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04031287 347.75857544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04031288 347.75857544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04031289 347.75860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04031290 347.75860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04031291 347.75863647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04031292 347.75863647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04031293 347.75866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04031294 347.75866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04031295 347.75869751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04031296 347.75869751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04031297 347.75872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04031298 347.75872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04031299 347.75875854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04031300 347.75875854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04031301 347.75875854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04031302 347.75875854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04031303 347.75878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04031304 347.75878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04031305 347.75881958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04031306 347.75881958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04031307 347.75885010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04031308 347.75888062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04031309 347.75891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04031310 347.75891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04031311 347.75891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04031312 347.75891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04031313 347.75894165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04031314 347.75894165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04031315 347.75897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04031316 347.75897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04031317 347.75900269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04031318 347.75900269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04031319 347.75903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04031320 347.75903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04031321 347.75906372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04031322 347.75906372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04031323 347.75906372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04031324 347.75906372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04031325 347.75909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04031326 347.75909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04031327 347.75912476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04031328 347.75912476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04031329 347.75915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04031330 347.75918579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04031331 347.75921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04031332 347.75921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04031333 347.75924683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04031334 347.75924683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04031335 347.75924683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04031336 347.75924683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04031337 347.75927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04031338 347.75927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04031339 347.75930786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04031340 347.75930786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04031341 347.75933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04031342 347.75933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04031343 347.75936890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04031344 347.75936890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04031345 347.75939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04031346 347.75939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04031347 347.75939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04031348 347.75942993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04031349 347.75946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04031350 347.75946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04031351 347.75949097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04031352 347.75949097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04031353 347.75952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04031354 347.75952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04031355 347.75955200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04031356 347.75955200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04031357 347.75958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04031358 347.75958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04031359 347.75964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04031360 347.75964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04031361 347.75967407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04031362 347.75967407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04031363 347.75970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04031364 347.75970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04031365 347.75976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04031366 347.75976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04031367 347.75979614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04031368 347.75979614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04031369 347.75985718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04031370 347.75985718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04031371 347.75985718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04031372 347.75985718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04031373 347.75988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04031374 347.75988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04031375 347.75991821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04031376 347.75991821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04031377 347.75994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04031378 347.75994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04031379 347.75997925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04031380 347.75997925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04031381 347.76000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04031382 347.76004028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04031383 347.76004028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04031384 347.76004028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04031385 347.76007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04031386 347.76007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04031387 347.76010132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04031388 347.76010132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04031389 347.76013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04031390 347.76013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04031391 347.76016235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04031392 347.76016235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04031393 347.76019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04031394 347.76019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04031395 347.76019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04031396 347.76019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04031397 347.76022339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04031398 347.76022339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04031399 347.76025391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04031400 347.76025391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04031401 347.76028442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04031402 347.76031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04031403 347.76034546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04031404 347.76034546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04031405 347.76034546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04031406 347.76034546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04031407 347.76037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04031408 347.76037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04031409 347.76040649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04031410 347.76040649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04031411 347.76043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04031412 347.76043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04031413 347.76046753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04031414 347.76046753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04031415 347.76049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04031416 347.76049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04031417 347.76049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04031418 347.76049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04031419 347.76052856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04031420 347.76055908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04031421 347.76058960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04031422 347.76058960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04031423 347.76062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04031424 347.76062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04031425 347.76065063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04031426 347.76065063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04031427 347.76068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04031428 347.76068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04031429 347.76071167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04031430 347.76071167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04031431 347.76074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04031432 347.76074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04031433 347.76077271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04031434 347.76077271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04031435 347.76080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04031436 347.76080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04031437 347.76083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04031438 347.76083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04031439 347.76083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04031440 347.76083374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04031441 347.76086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04031442 347.76086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04031443 347.76089478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04031444 347.76089478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04031445 347.76092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04031446 347.76095581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04031447 347.76098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04031448 347.76098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04031449 347.76098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04031450 347.76098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04031451 347.76101685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04031452 347.76101685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04031453 347.76104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04031454 347.76104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04031455 347.76107788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04031456 347.76107788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04031457 347.76110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04031458 347.76110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04031459 347.76113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04031460 347.76113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04031461 347.76113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04031462 347.76113892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04031463 347.76116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04031464 347.76116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04031465 347.76119995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04031466 347.76119995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04031467 347.76123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04031468 347.76126099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04031469 347.76129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04031470 347.76129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04031471 347.76129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04031472 347.76129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04031473 347.76132202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04031474 347.76132202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04031475 347.76135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04031476 347.76135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04031477 347.76138306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04031478 347.76138306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04031479 347.76141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04031480 347.76141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04031481 347.76144409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04031482 347.76144409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04031483 347.76144409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04031484 347.76144409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04031485 347.76147461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04031486 347.76147461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04031487 347.76150513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04031488 347.76153564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04031489 347.76156616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04031490 347.76156616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04031491 347.76159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04031492 347.76159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04031493 347.76162720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04031494 347.76162720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04031495 347.76162720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04031496 347.76162720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04031497 347.76165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04031498 347.76165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04031499 347.76168823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04031500 347.76168823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04031501 347.76171875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04031502 347.76171875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04031503 347.76174927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04031504 347.76174927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04031505 347.76177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04031506 347.76177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04031507 347.76181030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04031508 347.76181030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04031509 347.76184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04031510 347.76184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04031511 347.76187134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04031512 347.76187134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04031513 347.76190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04031514 347.76190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04031515 347.76193237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04031516 347.76193237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04031517 347.76193237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04031518 347.76193237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04031519 347.76196289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04031520 347.76196289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04031521 347.76199341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04031522 347.76202393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04031523 347.76205444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04031524 347.76205444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04031525 347.76208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04031526 347.76208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04031527 347.76208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04031528 347.76208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04031529 347.76211548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04031530 347.76211548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04031531 347.76214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04031532 347.76214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04031533 347.76217651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04031534 347.76217651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04031535 347.76220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04031536 347.76223755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04031537 347.76223755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04031538 347.76223755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04031539 347.76226807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04031540 347.76226807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04031541 347.76229858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04031542 347.76229858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04031543 347.76232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04031544 347.76232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04031545 347.76235962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04031546 347.76235962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04031547 347.76239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04031548 347.76239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04031549 347.76242065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04031550 347.76242065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04031551 347.76242065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04031552 347.76242065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04031553 347.76245117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04031554 347.76248169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04031555 347.76251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04031556 347.76251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04031557 347.76254272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04031558 347.76254272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04031559 347.76257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04031560 347.76257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04031561 347.76257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04031562 347.76257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04031563 347.76260376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04031564 347.76260376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04031565 347.76263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04031566 347.76263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04031567 347.76266479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04031568 347.76266479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04031569 347.76269531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04031570 347.76272583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04031571 347.76272583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04031572 347.76272583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04031573 347.76275635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04031574 347.76275635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04031575 347.76278687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04031576 347.76278687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04031577 347.76281738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04031578 347.76281738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04031579 347.76284790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04031580 347.76284790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04031581 347.76287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04031582 347.76287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04031583 347.76287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04031584 347.76287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04031585 347.76290894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04031586 347.76290894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04031587 347.76293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04031588 347.76296997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04031589 347.76300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04031590 347.76300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04031591 347.76303101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04031592 347.76303101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04031593 347.76306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04031594 347.76306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04031595 347.76306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04031596 347.76306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04031597 347.76309204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04031598 347.76309204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04031599 347.76312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04031600 347.76312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04031601 347.76315308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04031602 347.76315308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04031603 347.76321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04031604 347.76321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04031605 347.76321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04031606 347.76321411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04031607 347.76324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04031608 347.76324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04031609 347.76327515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04031610 347.76327515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04031611 347.76330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04031612 347.76330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04031613 347.76333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04031614 347.76333618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04031615 347.76336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04031616 347.76336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04031617 347.76336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04031618 347.76336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04031619 347.76342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04031620 347.76342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04031621 347.76345825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04031622 347.76345825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04031623 347.76348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04031624 347.76348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04031625 347.76351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04031626 347.76351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04031627 347.76351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04031628 347.76351929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04031629 347.76354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04031630 347.76354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04031631 347.76358032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04031632 347.76358032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04031633 347.76361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04031634 347.76361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04031635 347.76367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04031636 347.76367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04031637 347.76367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04031638 347.76367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04031639 347.76370239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04031640 347.76370239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04031641 347.76373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04031642 347.76373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04031643 347.76376343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04031644 347.76376343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04031645 347.76379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04031646 347.76379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04031647 347.76382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04031648 347.76382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04031649 347.76385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04031650 347.76385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04031651 347.76388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04031652 347.76388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04031653 347.76391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04031654 347.76391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04031655 347.76394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04031656 347.76394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04031657 347.76397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04031658 347.76397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04031659 347.76400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04031660 347.76400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04031661 347.76400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04031662 347.76400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04031663 347.76403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04031664 347.76403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04031665 347.76406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04031666 347.76406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04031667 347.76409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04031668 347.76412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04031669 347.76416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04031670 347.76416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04031671 347.76416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04031672 347.76416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04031673 347.76419067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04031674 347.76419067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04031675 347.76422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04031676 347.76422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04031677 347.76425171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04031678 347.76425171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04031679 347.76428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04031680 347.76428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04031681 347.76431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04031682 347.76431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04031683 347.76431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04031684 347.76431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04031685 347.76434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04031686 347.76434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04031687 347.76437378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04031688 347.76440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04031689 347.76443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04031690 347.76443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04031691 347.76446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04031692 347.76446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04031693 347.76446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04031694 347.76446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04031695 347.76449585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04031696 347.76449585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04031697 347.76452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04031698 347.76452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04031699 347.76455688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04031700 347.76455688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04031701 347.76458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04031702 347.76458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04031703 347.76461792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04031704 347.76461792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04031705 347.76464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04031706 347.76464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04031707 347.76464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04031708 347.76464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04031709 347.76467896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04031710 347.76470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04031711 347.76473999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04031712 347.76473999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04031713 347.76477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04031714 347.76477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04031715 347.76480103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04031716 347.76480103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04031717 347.76480103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04031718 347.76480103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04031719 347.76483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04031720 347.76483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04031721 347.76486206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04031722 347.76486206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04031723 347.76489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04031724 347.76489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04031725 347.76492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04031726 347.76492310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04031727 347.76495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04031728 347.76495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04031729 347.76495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04031730 347.76498413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04031731 347.76501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04031732 347.76501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04031733 347.76504517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04031734 347.76504517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04031735 347.76507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04031736 347.76507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04031737 347.76510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04031738 347.76510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04031739 347.76510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04031740 347.76510620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04031741 347.76513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04031742 347.76513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04031743 347.76516724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04031744 347.76516724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04044336 347.93890381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae58 -04044337 347.93893433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae68 -04044338 347.93893433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae68 -04044339 347.93896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae78 -04044340 347.93896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae78 -04044341 347.93899536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae88 -04044342 347.93899536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae88 -04044343 347.93902588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae98 -04044344 347.93902588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae98 -04044345 347.93905640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea8 -04044346 347.93908691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aea8 -04044347 347.93908691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb8 -04044348 347.93908691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aeb8 -04044349 347.93911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec8 -04044350 347.93911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aec8 -04044351 347.93914795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed8 -04044352 347.93914795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aed8 -04044353 347.93917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee8 -04044354 347.93917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aee8 -04044355 347.93920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef8 -04044356 347.93920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aef8 -04044357 347.93923950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af08 -04044358 347.93923950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af08 -04044359 347.93923950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af18 -04044360 347.93923950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af18 -04044361 347.93927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af28 -04044362 347.93927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af28 -04044363 347.93930054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af38 -04044364 347.93930054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af38 -04044365 347.93933105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af48 -04044366 347.93933105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af48 -04044367 347.93936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af58 -04044368 347.93936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af58 -04044369 347.93939209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af68 -04044370 347.93939209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af68 -04044371 347.93939209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af78 -04044372 347.93939209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af78 -04044373 347.93942261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af88 -04044374 347.93945313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af88 -04044375 347.93945313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -04044376 347.93948364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -04044377 347.93951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -04044378 347.93951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -04044379 347.93954468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb8 -04048577 347.99731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -04048578 347.99731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -04048579 347.99734497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -04048580 347.99734497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -04048581 347.99737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -04048582 347.99737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -04048583 347.99737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -04048584 347.99737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -04048585 347.99740601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -04048586 347.99740601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -04048587 347.99743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -04048588 347.99743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -04048589 347.99746704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -04048590 347.99746704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -04048591 347.99749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -04048592 347.99749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -04048593 347.99752808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -04048594 347.99752808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -04048595 347.99752808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -04048596 347.99752808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -04048597 347.99755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -04048598 347.99755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -04048599 347.99758911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -04048600 347.99758911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -04048601 347.99761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -04048602 347.99761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -04048603 347.99765015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -04048604 347.99765015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -04048605 347.99768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -04048606 347.99768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -04048607 347.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -04048608 347.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -04048609 347.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -04048610 347.99771118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -04048611 347.99774170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -04048612 347.99777222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -04048613 347.99777222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -04048614 347.99780273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -04048615 347.99783325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -04048616 347.99783325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -04048617 347.99786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -04048618 347.99786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -04048619 347.99786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -04048620 347.99786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -04053657 348.06692505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -04053658 348.06692505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1a8 -04053659 348.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -04053660 348.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1b8 -04053661 348.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -04053662 348.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1c8 -04053663 348.06698608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -04053664 348.06698608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1d8 -04053665 348.06701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -04053666 348.06701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1e8 -04053667 348.06704712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -04053668 348.06704712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d1f8 -04053669 348.06707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -04053670 348.06707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -04053671 348.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -04053672 348.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -04053673 348.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -04053674 348.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -04053675 348.06713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -04053676 348.06713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -04053677 348.06716919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -04053678 348.06716919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -04053679 348.06719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -04053680 348.06719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -04053681 348.06723022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -04053682 348.06726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -04053683 348.06726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -04053684 348.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -04053685 348.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -04053686 348.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -04053687 348.06732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -04053688 348.06732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -04053689 348.06735229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -04053690 348.06735229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -04053691 348.06738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -04053692 348.06738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -04053693 348.06741333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -04053694 348.06741333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -04053695 348.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -04053696 348.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -04053697 348.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -04053698 348.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -04053699 348.06747437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -04053700 348.06747437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -04058859 348.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37438 -04058860 348.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37438 -04058861 348.13900757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37448 -04058862 348.13900757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37448 -04058863 348.13903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37458 -04058864 348.13903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37458 -04058865 348.13906860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37468 -04058866 348.13906860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37468 -04058867 348.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37478 -04058868 348.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37478 -04058869 348.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37488 -04058870 348.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37488 -04058871 348.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37498 -04058872 348.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37498 -04058873 348.13916016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a8 -04058874 348.13916016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a8 -04058875 348.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b8 -04058876 348.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b8 -04058877 348.13922119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c8 -04058878 348.13922119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c8 -04058879 348.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d8 -04058880 348.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d8 -04058881 348.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e8 -04058882 348.13928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e8 -04058883 348.13931274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f8 -04058884 348.13931274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x374f8 -04058885 348.13934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37508 -04058886 348.13934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37508 -04058887 348.13937378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37518 -04058888 348.13937378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37518 -04058889 348.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37528 -04058890 348.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37528 -04058891 348.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37538 -04058892 348.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37538 -04058893 348.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37548 -04058894 348.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37548 -04058895 348.13946533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37558 -04058896 348.13946533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37558 -04058897 348.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37568 -04058898 348.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37568 -04058899 348.13952637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37578 -04058900 348.13952637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37578 -04058901 348.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37588 -04058902 348.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37588 -04063917 348.20837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41228 -04063918 348.20840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41238 -04063919 348.20840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41238 -04063920 348.20843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41248 -04063921 348.20843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41248 -04063922 348.20846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -04063923 348.20846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -04063924 348.20849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -04063925 348.20849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -04063926 348.20852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -04063927 348.20852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -04063928 348.20852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -04063929 348.20852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -04063930 348.20855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -04063931 348.20855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -04063932 348.20858765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -04063933 348.20858765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -04063934 348.20861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -04063935 348.20861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -04063936 348.20864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -04063937 348.20864868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -04063938 348.20867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -04063939 348.20867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -04063940 348.20867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -04063941 348.20867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -04063942 348.20870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f8 -04063943 348.20870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f8 -04063944 348.20874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -04063945 348.20874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -04063946 348.20877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -04063947 348.20877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -04063948 348.20880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -04063949 348.20880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -04063950 348.20883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -04063951 348.20883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -04063952 348.20886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -04063953 348.20886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -04063954 348.20892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -04063955 348.20892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -04063956 348.20895386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -04063957 348.20895386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -04063958 348.20898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -04063959 348.20898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -04063960 348.20898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41388 -04072985 349.41360474 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072986 349.41366577 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072987 349.41369629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04072988 349.41369629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04072989 349.41381836 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072990 349.41381836 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04072991 349.41384888 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072992 349.41387939 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04072993 350.18005371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04072994 350.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04072995 350.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04072996 351.92001343 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072997 351.92004395 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04072998 351.92007446 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04072999 351.92010498 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04073000 351.92022705 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04073001 351.92022705 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04073002 351.92028809 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04073003 351.92031860 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04073004 352.20175171 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04073005 352.22033691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04073006 352.22033691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04073007 352.70852661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04073008 352.70852661 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04073009 352.70855713 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04073010 352.70858765 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04073011 352.70861816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04073012 352.70861816 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04073013 352.70864868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04073014 352.70864868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04073015 352.70864868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04073016 352.70864868 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04073017 352.70867920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04073018 352.70867920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04073019 352.70870972 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04073020 352.70870972 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04073021 352.70874023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04073022 352.70874023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04073023 352.70877075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04073024 352.70877075 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04073025 352.70880127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04073026 352.70880127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04073027 352.70880127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04073028 352.70880127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04073029 352.70883179 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04073030 352.70886230 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04073031 352.70889282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04073032 352.70889282 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04073033 352.70892334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04073034 352.70892334 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04073035 352.70895386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04073036 352.70895386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04073037 352.70895386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04073038 352.70895386 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04073039 352.70898438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04073040 352.70898438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04073041 352.70901489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04073042 352.70901489 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04073043 352.70904541 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04073044 352.70904541 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04073045 352.70907593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04073046 352.70907593 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04073047 352.70910645 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04073048 352.70910645 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04073049 352.70910645 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04073050 352.70913696 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04073051 352.70916748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04073052 352.70916748 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04073053 352.70919800 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04073054 352.70919800 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04073055 352.70922852 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04073056 352.70922852 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04073057 352.70925903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04073058 352.70925903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04073059 352.70925903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04073060 352.70925903 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04073061 352.70928955 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04073062 352.70928955 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04073063 352.70932007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04073064 352.70932007 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04073065 352.70935059 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04073066 352.70935059 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04073067 352.70938110 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04073068 352.70941162 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04073069 352.70944214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04073070 352.70944214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04073071 352.70944214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04073072 352.70944214 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04073073 352.70947266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04073074 352.70947266 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04073075 352.70950317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04073076 352.70950317 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04073077 352.70953369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04073078 352.70953369 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04073079 352.70956421 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04073080 352.70956421 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04073081 352.70959473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04073082 352.70959473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04073083 352.70959473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04073084 352.70959473 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04073085 352.70962524 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04073086 352.70962524 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04073087 352.70965576 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04073088 352.70968628 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04073089 352.70971680 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04073090 352.70971680 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04073091 352.70974731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04073092 352.70974731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04073093 352.70974731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04073094 352.70974731 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04073095 352.70977783 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04073096 352.70977783 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04073097 352.70980835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04073098 352.70980835 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04073099 352.70983887 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04073100 352.70983887 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04073101 352.70986938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04073102 352.70986938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04073103 352.70989990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04073104 352.70989990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04073105 352.70989990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04073106 352.70989990 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04073107 352.70993042 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04073108 352.70996094 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04073109 352.70999146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04073110 352.70999146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04073111 352.71002197 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04073112 352.71002197 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04073113 352.71005249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04073114 352.71005249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04073115 352.71005249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04073116 352.71005249 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04073117 352.71008301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04073118 352.71008301 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04073119 352.71011353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04073120 352.71011353 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04073121 352.71014404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04073122 352.71014404 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04073123 352.71017456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04073124 352.71017456 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04073125 352.71020508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04073126 352.71020508 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04073127 352.71023560 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04073128 352.71023560 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04073129 352.71026611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04073130 352.71026611 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04073131 352.71029663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04073132 352.71029663 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04073133 352.71032715 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04073134 352.71035767 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04073135 352.71038818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04073136 352.71038818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04073137 352.71038818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04073138 352.71038818 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04073139 352.71041870 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04073140 352.71041870 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04073141 352.71044922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04073142 352.71044922 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04073143 352.71047974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04073144 352.71047974 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04073145 352.71051025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04073146 352.71051025 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04073147 352.71054077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04073148 352.71054077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04073149 352.71054077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04073150 352.71054077 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04073151 352.71057129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04073152 352.71057129 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04073153 352.71060181 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04073154 352.71063232 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04073155 352.71066284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04073156 352.71066284 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04073157 352.71069336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04073158 352.71069336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04073159 352.71069336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04073160 352.71069336 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04073161 352.71072388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04073162 352.71072388 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04073163 352.71075439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04073164 352.71075439 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04073165 352.71078491 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04073166 352.71078491 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04073167 352.71081543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04073168 352.71081543 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04073169 352.71084595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04073170 352.71084595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04073171 352.71084595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04073172 352.71084595 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04073173 352.71087646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04073174 352.71090698 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04073175 352.71093750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04073176 352.71093750 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04073177 352.71096802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04073178 352.71096802 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04073179 352.71099854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04073180 352.71099854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04073181 352.71102905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04073182 352.71102905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04073183 352.71102905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04073184 352.71102905 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04073185 352.71105957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04073186 352.71105957 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04073187 352.71109009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04073188 352.71109009 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04073189 352.71112061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04073190 352.71112061 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04073191 352.71115112 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04073192 352.71115112 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04073193 352.71118164 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04073194 352.71118164 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04073195 352.71121216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04073196 352.71121216 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04073197 352.71124268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04073198 352.71124268 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04073199 352.71127319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04073200 352.71127319 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04073201 352.71130371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04073202 352.71130371 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04073203 352.71133423 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04073204 352.71133423 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04073205 352.71133423 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04073206 352.71133423 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04073207 352.71136475 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04073208 352.71136475 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04073209 352.71139526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04073210 352.71139526 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04073211 352.71142578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04073212 352.71142578 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04073213 352.71145630 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04073214 352.71148682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04073215 352.71148682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04073216 352.71148682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04073217 352.71151733 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04073218 352.71151733 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04073219 352.71154785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04073220 352.71154785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04073221 352.71157837 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04073222 352.71157837 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04073223 352.71160889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04073224 352.71160889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04073225 352.71163940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04073226 352.71163940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04073227 352.71163940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04073228 352.71163940 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04073229 352.71166992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04073230 352.71166992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04073231 352.71170044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04073232 352.71170044 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04073233 352.71173096 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04073234 352.71176147 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04073235 352.71179199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04073236 352.71179199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04073237 352.71182251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04073238 352.71182251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04073239 352.71182251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04073240 352.71182251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04073241 352.71185303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04073242 352.71185303 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04073243 352.71188354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04073244 352.71188354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04073245 352.71191406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04073246 352.71191406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04073247 352.71194458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04073248 352.71194458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04073249 352.71197510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04073250 352.71197510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04073251 352.71197510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04073252 352.71197510 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04073253 352.71200562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04073254 352.71203613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04073255 352.71206665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04073256 352.71206665 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04073257 352.71209717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04073258 352.71209717 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04073259 352.71212769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04073260 352.71212769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04073261 352.71212769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04073262 352.71212769 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04073263 352.71215820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04073264 352.71215820 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04073265 352.71218872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04073266 352.71218872 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04073267 352.71221924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04073268 352.71221924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04073269 352.71224976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04073270 352.71224976 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04073271 352.71228027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04073272 352.71228027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04073273 352.71228027 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04073274 352.71231079 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04073275 352.71234131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04073276 352.71234131 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04073277 352.71237183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04073278 352.71237183 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04073279 352.71240234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04073280 352.71240234 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04073281 352.71243286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04073282 352.71243286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04073283 352.71243286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04073284 352.71243286 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04073285 352.71246338 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04073286 352.71246338 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04073287 352.71249390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04073288 352.71249390 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04073289 352.71252441 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04073290 352.71252441 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04073291 352.71255493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04073292 352.71255493 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04073293 352.71258545 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04073294 352.71261597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04073295 352.71261597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04073296 352.71261597 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04073297 352.71264648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04073298 352.71264648 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04073299 352.71267700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04073300 352.71267700 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04073301 352.71270752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04073302 352.71270752 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04073303 352.71273804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04073304 352.71273804 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04073305 352.71276855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04073306 352.71276855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04073307 352.71276855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04073308 352.71276855 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04073309 352.71279907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04073310 352.71279907 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04073311 352.71282959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04073312 352.71282959 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04073313 352.71286011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04073314 352.71286011 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04073315 352.71289063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04073316 352.71292114 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04073317 352.71292114 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04073318 352.71292114 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04073319 352.71295166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04073320 352.71295166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04073321 352.71298218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04073322 352.71298218 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04073323 352.71301270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04073324 352.71301270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04073325 352.71304321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04073326 352.71304321 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04073327 352.71307373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04073328 352.71307373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04073329 352.71307373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04073330 352.71307373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04073331 352.71310425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04073332 352.71310425 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04073333 352.71313477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04073334 352.71313477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04073335 352.71316528 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04073336 352.71319580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04073337 352.71322632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04073338 352.71322632 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04073339 352.71325684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04073340 352.71325684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04073341 352.71325684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04073342 352.71325684 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04073343 352.71328735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04073344 352.71328735 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04073345 352.71331787 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04073346 352.71331787 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04073347 352.71334839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04073348 352.71334839 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04073349 352.71337891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04073350 352.71337891 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04073351 352.71340942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04073352 352.71340942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04073353 352.71340942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04073354 352.71340942 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04073355 352.71343994 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04073356 352.71347046 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04073357 352.71350098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04073358 352.71350098 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04073359 352.71353149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04073360 352.71353149 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04073361 352.71356201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04073362 352.71356201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04073363 352.71356201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04073364 352.71356201 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04073365 352.71359253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04073366 352.71359253 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04073367 352.71362305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04073368 352.71362305 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04073369 352.71365356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04073370 352.71365356 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04073371 352.71368408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04073372 352.71368408 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04073373 352.71371460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04073374 352.71371460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04073375 352.71371460 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04073376 352.71374512 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04073377 352.71377563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04073378 352.71377563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04073379 352.71380615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04073380 352.71380615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04073381 352.71383667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04073382 352.71383667 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04073383 352.71386719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04073384 352.71386719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04073385 352.71386719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04073386 352.71386719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04073387 352.71389771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04073388 352.71389771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04073389 352.71392822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04073390 352.71392822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04073391 352.71395874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04073392 352.71395874 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04073393 352.71398926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04073394 352.71398926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04073395 352.71401978 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04073396 352.71405029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04073397 352.71405029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04073398 352.71405029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04073399 352.71408081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04073400 352.71408081 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04073401 352.71411133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04073402 352.71411133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04073403 352.71414185 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04073404 352.71414185 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04073405 352.71417236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04073406 352.71417236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04073407 352.71420288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04073408 352.71420288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04073409 352.71420288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04073410 352.71420288 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04073411 352.71423340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04073412 352.71423340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04073413 352.71426392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04073414 352.71426392 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04073415 352.71429443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04073416 352.71432495 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04073417 352.71435547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04073418 352.71435547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04073419 352.71435547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04073420 352.71435547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04073421 352.71438599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04073422 352.71438599 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04073423 352.71441650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04073424 352.71441650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04073425 352.71444702 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04073426 352.71444702 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04073427 352.71447754 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04073428 352.71447754 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04073429 352.71450806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04073430 352.71450806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04073431 352.71450806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04073432 352.71450806 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04073433 352.71453857 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04073434 352.71453857 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04073435 352.71456909 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04073436 352.71459961 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04073437 352.71463013 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04073438 352.71463013 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04073439 352.71466064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04073440 352.71466064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04073441 352.71466064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04073442 352.71466064 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04073443 352.71469116 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04073444 352.71469116 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04073445 352.71472168 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04073446 352.71472168 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04073447 352.71475220 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04073448 352.71475220 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04073449 352.71478271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04073450 352.71478271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04073451 352.71481323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04073452 352.71481323 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04073453 352.71484375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04073454 352.71484375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04073455 352.71484375 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04073456 352.71487427 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04073457 352.71490479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04073458 352.71490479 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04073459 352.71493530 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04073460 352.71493530 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04073461 352.71496582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04073462 352.71496582 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04073463 352.71499634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04073464 352.71499634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04073465 352.71499634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04073466 352.71499634 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04073467 352.71502686 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04073468 352.71502686 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04073469 352.71505737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04073470 352.71505737 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04073471 352.71508789 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04073472 352.71508789 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04073473 352.71511841 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04073474 352.71511841 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04073475 352.71514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04073476 352.71514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04073477 352.71514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04073478 352.71517944 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04073479 352.71520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04073480 352.71520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04073481 352.71524048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04073482 352.71524048 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04073483 352.71527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04073484 352.71527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04073485 352.71530151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04073486 352.71530151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04073487 352.71530151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04073488 352.71530151 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04073489 352.71533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04073490 352.71533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04073491 352.71536255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04073492 352.71536255 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04073493 352.71539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04073494 352.71539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04073495 352.71542358 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04073496 352.71542358 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04073497 352.71545410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04073498 352.71545410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04073499 352.71548462 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04073500 352.71548462 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04073501 352.71551514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04073502 352.71551514 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04073503 352.71554565 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04073504 352.71554565 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04073505 352.71557617 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04073506 352.71557617 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04073507 352.71560669 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04073508 352.71560669 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04073509 352.71563721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04073510 352.71563721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04073511 352.71563721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04073512 352.71563721 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04073513 352.71566772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04073514 352.71566772 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04073515 352.71569824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04073516 352.71569824 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04073517 352.71572876 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04073518 352.71575928 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04073519 352.71578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04073520 352.71578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04073521 352.71578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04073522 352.71578979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04073523 352.71582031 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04073524 352.71582031 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04073525 352.71585083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04073526 352.71585083 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04073527 352.71588135 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04073528 352.71588135 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04073529 352.71591187 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04073530 352.71591187 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04073531 352.71594238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04073532 352.71594238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04073533 352.71594238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04073534 352.71594238 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04073535 352.71597290 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04073536 352.71597290 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04073537 352.71600342 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04073538 352.71603394 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04073539 352.71606445 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04073540 352.71606445 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04073541 352.71609497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04073542 352.71609497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04073543 352.71609497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04073544 352.71609497 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04073545 352.71612549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04073546 352.71612549 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04073547 352.71615601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04073548 352.71615601 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04073549 352.71618652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04073550 352.71618652 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04073551 352.71621704 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04073552 352.71621704 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04073553 352.71624756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04073554 352.71624756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04073555 352.71624756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04073556 352.71624756 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04073557 352.71627808 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04073558 352.71630859 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04073559 352.71633911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04073560 352.71633911 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04073561 352.71636963 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04073562 352.71636963 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04073563 352.71640015 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04073564 352.71640015 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04073565 352.71643066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04073566 352.71643066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04073567 352.71643066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04073568 352.71643066 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04073569 352.71646118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04073570 352.71646118 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04073571 352.71649170 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04073572 352.71649170 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04073573 352.71652222 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04073574 352.71652222 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04073575 352.71655273 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04073576 352.71655273 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04073577 352.71658325 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04073578 352.71658325 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04073579 352.71661377 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -04073580 352.71661377 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -04073581 352.71664429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -04073582 352.71664429 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -04073583 352.71667480 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -04073584 352.71667480 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -04073585 352.71670532 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -04073586 352.71670532 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -04073587 352.71673584 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -04073588 352.71673584 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -04073589 352.71676636 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -04073590 352.71676636 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -04073591 352.71679688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -04073592 352.71679688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -04073593 352.71682739 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -04073594 352.71682739 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -04073595 352.71685791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -04073596 352.71685791 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -04073597 352.71688843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -04073598 352.71688843 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -04073599 352.71691895 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -04073600 352.71691895 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -04073601 352.71694946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -04073602 352.71694946 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -04073603 352.71697998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -04073604 352.71697998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -04073605 352.71701050 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -04073606 352.71701050 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -04073607 352.71704102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -04073608 352.71704102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -04073609 352.71704102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -04073610 352.71704102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -04073611 352.71707153 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -04073612 352.71707153 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -04073613 352.71710205 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -04073614 352.71710205 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -04073615 352.71713257 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -04073616 352.71713257 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -04073617 352.71716309 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -04073618 352.71719360 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -04073619 352.71722412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -04073620 352.71722412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -04073621 352.71722412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -04073622 352.71722412 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -04073623 352.71725464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -04073624 352.71725464 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -04073625 352.71728516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -04073626 352.71728516 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -04073627 352.71731567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -04073628 352.71731567 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -04073629 352.71734619 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -04073630 352.71734619 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -04073631 352.71737671 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -04073632 352.71737671 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -04073633 352.71737671 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -04073634 352.71737671 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -04073635 352.71740723 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -04073636 352.71740723 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -04073637 352.71743774 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -04073638 352.71746826 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -04073639 352.71749878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -04073640 352.71749878 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -04073641 352.71752930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -04073642 352.71752930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -04073643 352.71752930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -04073644 352.71752930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -04073645 352.71755981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -04073646 352.71755981 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -04073647 352.71759033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -04073648 352.71759033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -04073649 352.71762085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -04073650 352.71762085 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -04073651 352.71765137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -04073652 352.71765137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -04073653 352.71768188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -04073654 352.71768188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -04073655 352.71768188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -04073656 352.71768188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -04073657 352.71771240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -04073658 352.71774292 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -04073659 352.71777344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -04073660 352.71777344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -04073661 352.71780396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -04073662 352.71780396 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -04073663 352.71783447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -04073664 352.71783447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -04073665 352.71783447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -04073666 352.71783447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -04073667 352.71786499 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -04073668 352.71786499 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -04073669 352.71789551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -04073670 352.71789551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -04073671 352.71792603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -04073672 352.71792603 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -04073673 352.71795654 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -04073674 352.71795654 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -04073675 352.71798706 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -04073676 352.71798706 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -04073677 352.71801758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -04073678 352.71801758 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -04073679 352.71804810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -04073680 352.71804810 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -04073681 352.71807861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -04073682 352.71807861 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -04073683 352.71810913 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -04073684 352.71810913 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -04073685 352.71813965 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -04073686 352.71813965 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -04073687 352.71817017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -04073688 352.71817017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -04073689 352.71817017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -04073690 352.71817017 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -04073691 352.71820068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -04073692 352.71820068 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -04073693 352.71823120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -04073694 352.71823120 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -04073695 352.71826172 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -04073696 352.71826172 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -04073697 352.71829224 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -04073698 352.71832275 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -04073699 352.71832275 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -04073700 352.71832275 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -04073701 352.71835327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -04073702 352.71835327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -04073703 352.71838379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -04073704 352.71838379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -04073705 352.71841431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -04073706 352.71841431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -04073707 352.71844482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -04073708 352.71844482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -04073709 352.71847534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -04073710 352.71847534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -04073711 352.71847534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -04073712 352.71847534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -04073713 352.71850586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -04073714 352.71850586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -04073715 352.71853638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -04073716 352.71853638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -04073717 352.71856689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -04073718 352.71859741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -04073719 352.71862793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -04073720 352.71862793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -04073721 352.71865845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -04073722 352.71865845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -04073723 352.71865845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -04073724 352.71865845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -04073725 352.71868896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -04073726 352.71868896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -04073727 352.71871948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -04073728 352.71871948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -04073729 352.71875000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -04073730 352.71875000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -04073731 352.71878052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -04073732 352.71878052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -04073733 352.71881104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -04073734 352.71881104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -04073735 352.71881104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -04073736 352.71881104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -04073737 352.71884155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -04073738 352.71887207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -04073739 352.71890259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -04073740 352.71890259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -04073741 352.71893311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -04073742 352.71893311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -04073743 352.71896362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -04073744 352.71896362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -04073745 352.71896362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -04073746 352.71896362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -04073747 352.71899414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -04073748 352.71899414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -04073749 352.71902466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -04073750 352.71902466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -04073751 352.71905518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -04073752 352.71905518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -04073753 352.71908569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -04073754 352.71908569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -04073755 352.71911621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -04073756 352.71911621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -04073757 352.71911621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -04073758 352.71914673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -04073759 352.71917725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -04073760 352.71917725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -04073761 352.71920776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -04073762 352.71920776 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -04073763 352.71923828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -04073764 352.71923828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -04073765 352.71926880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -04073766 352.71926880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -04073767 352.71926880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -04073768 352.71926880 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -04073769 352.71929932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -04073770 352.71929932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -04073771 352.71932983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -04073772 352.71932983 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -04073773 352.71936035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -04073774 352.71936035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -04073775 352.71939087 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -04073776 352.71939087 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -04073777 352.71942139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -04073778 352.71945190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -04073779 352.71945190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -04073780 352.71945190 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -04073781 352.71948242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -04073782 352.71948242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -04073783 352.71951294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -04073784 352.71951294 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -04073785 352.71954346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -04073786 352.71954346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -04073787 352.71957397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -04073788 352.71957397 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -04073789 352.71960449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -04073790 352.71960449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -04073791 352.71960449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -04073792 352.71960449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -04073793 352.71963501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -04073794 352.71963501 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -04073795 352.71966553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -04073796 352.71966553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -04073797 352.71969604 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -04073798 352.71972656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -04073799 352.71975708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -04073800 352.71975708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -04073801 352.71975708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -04073802 352.71975708 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -04073803 352.71978760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -04073804 352.71978760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -04073805 352.71981812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -04073806 352.71981812 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -04073807 352.71984863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -04073808 352.71984863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -04073809 352.71987915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -04073810 352.71987915 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -04073811 352.71990967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -04073812 352.71990967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -04073813 352.71990967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -04073814 352.71990967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -04073815 352.71994019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -04073816 352.71994019 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -04073817 352.71997070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -04073818 352.72000122 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -04073819 352.72003174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -04073820 352.72003174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -04073821 352.72006226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -04073822 352.72006226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -04073823 352.72006226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -04073824 352.72006226 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -04073825 352.72009277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -04073826 352.72009277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -04073827 352.72012329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -04073828 352.72012329 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -04073829 352.72015381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -04073830 352.72015381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -04073831 352.72018433 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -04073832 352.72018433 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -04073833 352.72021484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -04073834 352.72021484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -04073835 352.72024536 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -04073836 352.72024536 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -04073837 352.72024536 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -04073838 352.72027588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -04073839 352.72030640 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -04073840 352.72030640 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -04073841 352.72033691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -04073842 352.72033691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -04073843 352.72036743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -04073844 352.72036743 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -04073845 352.72039795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -04073846 352.72039795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -04073847 352.72039795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -04073848 352.72039795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -04073849 352.72042847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -04073850 352.72042847 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -04073851 352.72045898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -04073852 352.72045898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -04073853 352.72048950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -04073854 352.72048950 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -04073855 352.72052002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -04073856 352.72055054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -04073857 352.72055054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -04073858 352.72055054 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -04073859 352.72058105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -04073860 352.72058105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -04073861 352.72061157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -04073862 352.72061157 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -04073863 352.72064209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -04073864 352.72064209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -04073865 352.72067261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -04073866 352.72067261 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -04073867 352.72070313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -04073868 352.72070313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -04073869 352.72070313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -04073870 352.72070313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -04073871 352.72073364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -04073872 352.72073364 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -04073873 352.72076416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -04073874 352.72076416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -04073875 352.72079468 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -04073876 352.72082520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -04073877 352.72085571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -04073878 352.72085571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -04073879 352.72085571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -04073880 352.72085571 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -04073881 352.72088623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -04073882 352.72088623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -04073883 352.72091675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -04073884 352.72091675 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -04073885 352.72094727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -04073886 352.72094727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -04073887 352.72097778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -04073888 352.72097778 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -04073889 352.72100830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -04073890 352.72100830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -04073891 352.72103882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -04073892 352.72103882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -04073893 352.72103882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -04073894 352.72103882 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -04073895 352.72106934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -04073896 352.72109985 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -04073897 352.72113037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -04073898 352.72113037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -04073899 352.72116089 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -04073900 352.72116089 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -04073901 352.72119141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -04073902 352.72119141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -04073903 352.72119141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -04073904 352.72119141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -04073905 352.72122192 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -04073906 352.72122192 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -04073907 352.72125244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -04073908 352.72125244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -04073909 352.72128296 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -04073910 352.72128296 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -04073911 352.72131348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -04073912 352.72131348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -04073913 352.72134399 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -04073914 352.72134399 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -04073915 352.72134399 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -04073916 352.72137451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -04073917 352.72140503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -04073918 352.72140503 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -04073919 352.72143555 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -04073920 352.72143555 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -04073921 352.72146606 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -04073922 352.72146606 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -04073923 352.72149658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -04073924 352.72149658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -04073925 352.72149658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -04073926 352.72149658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -04073927 352.72152710 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -04073928 352.72152710 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -04073929 352.72155762 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -04073930 352.72155762 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -04073931 352.72158813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -04073932 352.72158813 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -04073933 352.72161865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -04073934 352.72161865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -04073935 352.72164917 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -04073936 352.72164917 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -04073937 352.72167969 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -04073938 352.72167969 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -04073939 352.72171021 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -04073940 352.72171021 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -04073941 352.72174072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -04073942 352.72174072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -04073943 352.72177124 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -04073944 352.72177124 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -04073945 352.72180176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -04073946 352.72180176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -04073947 352.72183228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -04073948 352.72183228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -04073949 352.72183228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -04073950 352.72183228 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -04073951 352.72186279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -04073952 352.72186279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -04073953 352.72189331 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -04073954 352.72189331 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -04073955 352.72192383 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -04073956 352.72195435 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -04073957 352.72198486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -04073958 352.72198486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -04073959 352.72198486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -04073960 352.72198486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -04073961 352.72201538 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -04073962 352.72201538 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -04073963 352.72204590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -04073964 352.72204590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -04073965 352.72207642 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -04073966 352.72207642 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -04073967 352.72210693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -04073968 352.72210693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -04073969 352.72213745 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -04073970 352.72213745 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -04073971 352.72213745 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -04073972 352.72213745 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -04073973 352.72216797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -04073974 352.72216797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -04073975 352.72219849 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -04073976 352.72222900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -04073977 352.72225952 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -04073978 352.72225952 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -04073979 352.72229004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -04073980 352.72229004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -04073981 352.72229004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -04073982 352.72229004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -04073983 352.72232056 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -04073984 352.72232056 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -04073985 352.72235107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -04073986 352.72235107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -04073987 352.72238159 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -04073988 352.72238159 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -04073989 352.72241211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -04073990 352.72241211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -04073991 352.72244263 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -04073992 352.72244263 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -04073993 352.72244263 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -04073994 352.72247314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -04073995 352.72250366 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -04073996 352.72250366 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -04073997 352.72253418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -04073998 352.72253418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -04073999 352.72256470 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -04074000 352.72256470 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -04074001 352.72259521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -04074002 352.72259521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -04074003 352.72262573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -04074004 352.72262573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -04074005 352.72262573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -04074006 352.72262573 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -04074007 352.72265625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -04074008 352.72265625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -04074009 352.72271729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -04074010 352.72271729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -04074011 352.72274780 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -04074012 352.72274780 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -04074013 352.72280884 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -04074014 352.72280884 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -04074015 352.72283936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -04074016 352.72283936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -04074017 352.72286987 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -04074018 352.72286987 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -04074019 352.72290039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -04074020 352.72290039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -04074021 352.72293091 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -04074022 352.72293091 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -04074023 352.72293091 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -04074024 352.72293091 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -04074025 352.72296143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -04074026 352.72296143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -04074027 352.72299194 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -04074028 352.72299194 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -04074029 352.72302246 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -04074030 352.72305298 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -04074031 352.72308350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -04074032 352.72308350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -04074033 352.72308350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -04074034 352.72308350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -04074035 352.72311401 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -04074036 352.72311401 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -04074037 352.72314453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -04074038 352.72314453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -04074039 352.72317505 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -04074040 352.72317505 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -04074041 352.72320557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -04074042 352.72320557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -04074043 352.72323608 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -04074044 352.72323608 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -04074045 352.72323608 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -04074046 352.72323608 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -04074047 352.72329712 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -04074048 352.72329712 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -04074049 352.72332764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -04074050 352.72332764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -04074051 352.72338867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -04074052 352.72338867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -04074053 352.72341919 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -04074054 352.72341919 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -04074055 352.72341919 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -04074056 352.72341919 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -04074057 352.72344971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -04074058 352.72344971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -04074059 352.72348022 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -04074060 352.72348022 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -04074061 352.72351074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -04074062 352.72351074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -04074063 352.72354126 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -04074064 352.72354126 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -04074065 352.72357178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -04074066 352.72357178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -04074067 352.72357178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -04074068 352.72357178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -04074069 352.72360229 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -04074070 352.72363281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -04074071 352.72366333 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -04074072 352.72366333 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -04074073 352.72369385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -04074074 352.72369385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -04074075 352.72372437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -04074076 352.72372437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -04074077 352.72372437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -04074078 352.72372437 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -04074079 352.72375488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -04074080 352.72375488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -04074081 352.72378540 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -04074082 352.72378540 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -04074083 352.72381592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -04074084 352.72381592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -04074085 352.72384644 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -04074086 352.72384644 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -04074087 352.72387695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -04074088 352.72387695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -04074089 352.72387695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -04074090 352.72390747 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -04074091 352.72393799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -04074092 352.72393799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -04074093 352.72396851 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -04074094 352.72396851 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -04074095 352.72399902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -04074096 352.72399902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -04074097 352.72402954 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -04074098 352.72402954 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -04074099 352.72406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -04074100 352.72406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -04074101 352.72406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -04074102 352.72406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -04074103 352.72409058 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -04074104 352.72409058 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -04074105 352.72412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -04074106 352.72412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -04074107 352.72415161 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -04074108 352.72415161 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -04074109 352.72418213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -04074110 352.72421265 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -04074111 352.72421265 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -04074112 352.72421265 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -04074113 352.72424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -04074114 352.72424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -04074115 352.72427368 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -04074116 352.72427368 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -04074117 352.72430420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -04074118 352.72430420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -04074119 352.72433472 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -04074120 352.72433472 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -04074121 352.72436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -04074122 352.72436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -04074123 352.72436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -04074124 352.72436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -04074125 352.72439575 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -04074126 352.72439575 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -04074127 352.72442627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -04074128 352.72445679 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -04074129 352.72448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -04074130 352.72448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -04074131 352.72451782 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -04074132 352.72451782 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -04074133 352.72451782 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -04074134 352.72451782 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -04074135 352.72454834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -04074136 352.72454834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -04074137 352.72457886 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -04074138 352.72457886 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -04074139 352.72460938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -04074140 352.72460938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -04074141 352.72463989 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -04074142 352.72463989 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -04074143 352.72467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -04074144 352.72467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -04074145 352.72467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -04074146 352.72467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -04074147 352.72470093 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -04074148 352.72470093 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -04074149 352.72473145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -04074150 352.72476196 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -04074151 352.72479248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -04074152 352.72479248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -04074153 352.72482300 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -04074154 352.72482300 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -04074155 352.72485352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -04074156 352.72485352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -04074157 352.72485352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -04074158 352.72485352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -04074159 352.72488403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -04074160 352.72488403 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -04074161 352.72491455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -04074162 352.72491455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -04074163 352.72494507 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -04074164 352.72494507 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -04074165 352.72497559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -04074166 352.72497559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -04074167 352.72500610 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -04074168 352.72500610 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -04074169 352.72500610 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -04074170 352.72503662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -04074171 352.72506714 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -04074172 352.72506714 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -04074173 352.72509766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -04074174 352.72509766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -04074175 352.72512817 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -04074176 352.72512817 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -04074177 352.72515869 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -04074178 352.72515869 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -04074179 352.72515869 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -04074180 352.72515869 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -04074181 352.72518921 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -04074182 352.72518921 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -04074183 352.72521973 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -04074184 352.72521973 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -04074185 352.72525024 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -04074186 352.72525024 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -04074187 352.72528076 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -04074188 352.72528076 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -04074189 352.72531128 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -04074190 352.72531128 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -04074191 352.72534180 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -04074192 352.72534180 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -04074193 352.72537231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -04074194 352.72537231 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -04074195 352.72540283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -04074196 352.72540283 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -04074197 352.72543335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -04074198 352.72543335 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -04074199 352.72546387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -04074200 352.72546387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -04074201 352.72546387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -04074202 352.72546387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -04074203 352.72549438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -04074204 352.72549438 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -04074205 352.72552490 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -04074206 352.72552490 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -04074207 352.72555542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -04074208 352.72555542 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -04074209 352.72558594 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -04074210 352.72561646 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -04074211 352.72564697 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -04074212 352.72564697 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -04074213 352.72564697 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -04074214 352.72564697 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -04074215 352.72567749 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -04074216 352.72567749 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -04074217 352.72570801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -04074218 352.72570801 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -04074219 352.72573853 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -04074220 352.72573853 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -04074221 352.72576904 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -04074222 352.72576904 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -04074223 352.72579956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -04074224 352.72579956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -04074225 352.72579956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -04074226 352.72579956 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -04074227 352.72583008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -04074228 352.72583008 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -04074229 352.72586060 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -04074230 352.72589111 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -04074231 352.72589111 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -04074232 352.72592163 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -04074233 352.72595215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -04074234 352.72595215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -04074235 352.72595215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -04074236 352.72595215 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -04074237 352.72598267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -04074238 352.72598267 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -04074239 352.72601318 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -04074240 352.72601318 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -04074241 352.72604370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -04074242 352.72604370 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -04074243 352.72607422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -04074244 352.72607422 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -04074245 352.72610474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -04074246 352.72610474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -04074247 352.72610474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -04074248 352.72610474 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -04074249 352.72613525 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -04074250 352.72616577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -04074251 352.72616577 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -04074252 352.72619629 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -04074253 352.72622681 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -04074254 352.72622681 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -04074255 352.72625732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -04074256 352.72625732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -04074257 352.72625732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -04074258 352.72625732 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -04074259 352.72628784 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -04074260 352.72628784 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -04074261 352.72631836 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -04074262 352.72631836 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -04074263 352.72634888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -04074264 352.72634888 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -04074265 352.72637939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -04074266 352.72637939 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -04074267 352.72640991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -04074268 352.72640991 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -04074269 352.72644043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -04074270 352.72644043 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -04074271 352.72647095 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -04074272 352.72647095 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -04074273 352.72650146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -04074274 352.72650146 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -04074275 352.72653198 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -04074276 352.72653198 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -04074277 352.72656250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -04074278 352.72656250 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -04074279 352.72659302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -04074280 352.72659302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -04074281 352.72659302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -04074282 352.72659302 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -04074283 352.72662354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -04074284 352.72662354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -04074285 352.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -04074286 352.72665405 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -04074287 352.72668457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -04074288 352.72668457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -04074289 352.72671509 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -04074290 352.72671509 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -04074291 352.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -04074292 352.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -04074293 352.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -04074294 352.72674561 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -04074295 352.72677612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -04074296 352.72677612 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -04074297 352.72680664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -04074298 352.72680664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -04074299 352.72683716 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -04074300 352.72686768 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -04074301 352.72686768 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -04074302 352.72689819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -04074303 352.72689819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -04074304 352.72689819 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -04074305 352.72692871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -04074306 352.72692871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -04074307 352.72695923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -04074308 352.72695923 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -04074309 352.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -04074310 352.72698975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -04074311 352.72702026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -04074312 352.72702026 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -04074313 352.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -04074314 352.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -04074315 352.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -04074316 352.72705078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -04074317 352.72708130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -04074318 352.72708130 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -04074319 352.72711182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -04074320 352.72711182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -04074321 352.72714233 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -04074322 352.72717285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -04074323 352.72720337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -04074324 352.72720337 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -04074325 352.72723389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -04074326 352.72723389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -04074327 352.72723389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -04074328 352.72723389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -04074329 352.72726440 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -04074330 352.72726440 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -04074331 352.72729492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -04074332 352.72729492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -04074333 352.72732544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -04074334 352.72732544 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -04074335 352.72735596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -04074336 352.72735596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -04074337 352.72738647 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -04074338 352.72738647 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -04074339 352.72738647 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -04074340 352.72741699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -04074341 352.72744751 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -04074342 352.72744751 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -04074343 352.72747803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -04074344 352.72747803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -04074345 352.72750854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -04074346 352.72750854 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -04074347 352.72753906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -04074348 352.72753906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -04074349 352.72753906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -04074350 352.72753906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -04074351 352.72756958 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -04074352 352.72756958 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -04074353 352.72760010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -04074354 352.72760010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -04074355 352.72763062 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -04074356 352.72763062 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -04074357 352.72766113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -04074358 352.72766113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -04074359 352.72769165 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -04074360 352.72769165 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -04074361 352.72772217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -04074362 352.72772217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -04074363 352.72775269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -04074364 352.72775269 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -04074365 352.72778320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -04074366 352.72778320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -04074367 352.72781372 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -04074368 352.72781372 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -04074369 352.72784424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -04074370 352.72784424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -04074371 352.72784424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -04074372 352.72784424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -04074373 352.72787476 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -04074374 352.72787476 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -04074375 352.72790527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -04074376 352.72790527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -04074377 352.72793579 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -04074378 352.72793579 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -04074379 352.72796631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -04074380 352.72796631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -04074381 352.72799683 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -04074382 352.72799683 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -04074383 352.72802734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -04074384 352.72802734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -04074385 352.72802734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -04074386 352.72802734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -04074387 352.72805786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -04074388 352.72805786 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -04074389 352.72808838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -04074390 352.72808838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -04074391 352.72811890 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -04074392 352.72814941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -04074393 352.72814941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -04074394 352.72817993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -04074395 352.72817993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -04074396 352.72817993 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -04074397 352.72821045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -04074398 352.72821045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -04074399 352.72824097 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -04074400 352.72824097 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -04074401 352.72827148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -04074402 352.72827148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -04074403 352.72830200 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -04074404 352.72830200 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -04074405 352.72833252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -04074406 352.72833252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -04074407 352.72833252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -04074408 352.72833252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -04074409 352.72836304 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -04074410 352.72836304 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -04074411 352.72839355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -04074412 352.72839355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -04074413 352.72842407 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -04074414 352.72842407 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -04074415 352.72845459 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -04074416 352.72848511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -04074417 352.72848511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -04074418 352.72848511 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -04074419 352.72851563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -04074420 352.72851563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -04074421 352.72854614 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -04074422 352.72854614 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -04074423 352.72857666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -04074424 352.72857666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -04074425 352.72860718 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -04074426 352.72860718 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -04074427 352.72863770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -04074428 352.72863770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -04074429 352.72863770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -04074430 352.72863770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -04074431 352.72866821 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -04074432 352.72866821 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -04074433 352.72869873 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -04074434 352.72869873 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -04074435 352.72872925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -04074436 352.72872925 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -04074437 352.72875977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -04074438 352.72875977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -04074439 352.72879028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -04074440 352.72879028 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -04074441 352.72882080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -04074442 352.72882080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -04074443 352.72882080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -04074444 352.72882080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -04074445 352.72885132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -04074446 352.72885132 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -04074447 352.72888184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -04074448 352.72888184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -04074449 352.72891235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -04074450 352.72891235 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -04074451 352.72894287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -04074452 352.72894287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -04074453 352.72897339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -04074454 352.72897339 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -04074455 352.72900391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -04074456 352.72900391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -04074457 352.72903442 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -04074458 352.72903442 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -04074459 352.72906494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -04074460 352.72906494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -04074461 352.72909546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -04074462 352.72909546 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -04074463 352.72912598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -04074464 352.72912598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -04074465 352.72912598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -04074466 352.72912598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -04074467 352.72915649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -04074468 352.72915649 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -04074469 352.72918701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -04074470 352.72918701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -04074471 352.72921753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -04074472 352.72921753 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -04074473 352.72927856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -04074474 352.72927856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -04074475 352.72927856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -04074476 352.72927856 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -04074477 352.72930908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -04074478 352.72930908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -04074479 352.72933960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -04074480 352.72933960 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -04074481 352.72937012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -04074482 352.72937012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -04074483 352.72940063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -04074484 352.72940063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -04074485 352.72943115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -04074486 352.72943115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -04074487 352.72943115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -04074488 352.72943115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -04074489 352.72946167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -04074490 352.72946167 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -04074491 352.72949219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -04074492 352.72952271 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -04074493 352.72955322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -04074494 352.72955322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -04074495 352.72958374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -04074496 352.72958374 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -04074497 352.72961426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -04074498 352.72961426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -04074499 352.72961426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -04074500 352.72961426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -04074501 352.72964478 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -04074502 352.72964478 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -04074503 352.72967529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -04074504 352.72967529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -04074505 352.72970581 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -04074506 352.72970581 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -04074507 352.72973633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -04074508 352.72973633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -04074509 352.72976685 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -04074510 352.72976685 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -04074511 352.72976685 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -04074512 352.72979736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -04074513 352.72982788 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -04074514 352.72982788 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -04074515 352.72985840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -04074516 352.72985840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -04074517 352.72988892 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -04074518 352.72988892 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -04074519 352.72991943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -04074520 352.72991943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -04074521 352.72991943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -04074522 352.72991943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -04074523 352.72994995 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -04074524 352.72994995 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -04074525 352.72998047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -04074526 352.72998047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -04074527 352.73001099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -04074528 352.73001099 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -04074529 352.73004150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -04074530 352.73004150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -04074531 352.73007202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -04074532 352.73007202 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -04074533 352.73010254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -04074534 352.73010254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -04074535 352.73013306 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -04074536 352.73013306 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -04074537 352.73016357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -04074538 352.73016357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -04074539 352.73019409 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -04074540 352.73019409 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -04074541 352.73022461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -04074542 352.73022461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -04074543 352.73025513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -04074544 352.73025513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -04074545 352.73025513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -04074546 352.73025513 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -04074547 352.73028564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -04074548 352.73028564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -04074549 352.73031616 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -04074550 352.73031616 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -04074551 352.73034668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -04074552 352.73037720 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -04074553 352.73040771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -04074554 352.73040771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -04074555 352.73040771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -04074556 352.73040771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -04074557 352.73043823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -04074558 352.73043823 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -04074559 352.73046875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -04074560 352.73046875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -04074561 352.73049927 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -04074562 352.73049927 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -04074563 352.73052979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -04074564 352.73052979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -04074565 352.73056030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -04074566 352.73056030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -04074567 352.73056030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -04074568 352.73056030 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -04074569 352.73059082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -04074570 352.73059082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -04074571 352.73065186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -04074572 352.73065186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -04074573 352.73068237 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -04074574 352.73068237 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -04074575 352.73071289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -04074576 352.73071289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -04074577 352.73074341 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -04074578 352.73074341 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -04074579 352.73077393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -04074580 352.73077393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -04074581 352.73080444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -04074582 352.73080444 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -04074583 352.73083496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -04074584 352.73083496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -04074585 352.73086548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -04074586 352.73086548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -04074587 352.73086548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -04074588 352.73086548 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -04074589 352.73089600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -04074590 352.73089600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -04074591 352.73092651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -04074592 352.73092651 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -04074593 352.73095703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -04074594 352.73095703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -04074595 352.73098755 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -04074596 352.73101807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -04074597 352.73104858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -04074598 352.73104858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -04074599 352.73104858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -04074600 352.73104858 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -04074601 352.73107910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -04074602 352.73107910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -04074603 352.73110962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -04074604 352.73110962 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -04074605 352.73114014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -04074606 352.73114014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -04074607 352.73120117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -04074608 352.73120117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -04074609 352.73123169 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -04074610 352.73123169 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -04074611 352.73126221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -04074612 352.73126221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -04074613 352.73129272 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -04074614 352.73129272 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -04074615 352.73132324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -04074616 352.73135376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -04074617 352.73135376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -04074618 352.73135376 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -04074619 352.73138428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -04074620 352.73138428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -04074621 352.73144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -04074622 352.73144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -04074623 352.73147583 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -04074624 352.73150635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -04074625 352.73150635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -04074626 352.73150635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -04074627 352.73153687 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -04074628 352.73153687 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -04074629 352.73156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -04074630 352.73156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -04074631 352.73159790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -04074632 352.73159790 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -04074633 352.73162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -04074634 352.73162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -04089047 352.93734741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -04089048 352.93734741 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20580 -04089049 352.93737793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -04089050 352.93737793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20590 -04089051 352.93740845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -04089052 352.93740845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205a0 -04089053 352.93740845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -04089054 352.93743896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205b0 -04089055 352.93746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -04089056 352.93746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205c0 -04089057 352.93750000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -04089058 352.93750000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205d0 -04089059 352.93753052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -04089060 352.93753052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205e0 -04089061 352.93756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -04089062 352.93756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x205f0 -04089063 352.93756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -04089064 352.93756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20600 -04089065 352.93759155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -04089066 352.93759155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20610 -04089067 352.93762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -04089068 352.93762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20620 -04089069 352.93765259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -04089070 352.93765259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20630 -04089071 352.93768311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -04089072 352.93768311 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20640 -04089073 352.93771362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -04089074 352.93771362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20650 -04089075 352.93771362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -04089076 352.93771362 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -04089077 352.93774414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -04089078 352.93774414 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -04089079 352.93777466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -04089080 352.93777466 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -04089081 352.93780518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -04089082 352.93780518 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -04089083 352.93783569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -04089084 352.93786621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -04089085 352.93789673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -04089086 352.93789673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -04089087 352.93789673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -04089088 352.93789673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -04089089 352.93792725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -04089090 352.93792725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -04094621 353.01623535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -04094622 353.01623535 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b0 -04094623 353.01626587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -04094624 353.01626587 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c0 -04094625 353.01629639 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -04094626 353.01629639 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d0 -04094627 353.01632690 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -04094628 353.01635742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e0 -04094629 353.01635742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -04094630 353.01635742 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f0 -04094631 353.01638794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -04094632 353.01638794 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b400 -04094633 353.01641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -04094634 353.01641846 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b410 -04094635 353.01644897 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -04094636 353.01644897 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b420 -04094637 353.01647949 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -04094638 353.01647949 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b430 -04094639 353.01651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -04094640 353.01651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b440 -04094641 353.01651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -04094642 353.01651001 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b450 -04094643 353.01654053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -04094644 353.01654053 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b460 -04094645 353.01657104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -04094646 353.01657104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b470 -04094647 353.01660156 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -04094648 353.01663208 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b480 -04094649 353.01666260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -04094650 353.01666260 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b490 -04094651 353.01669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -04094652 353.01669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4a0 -04094653 353.01669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -04094654 353.01669312 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4b0 -04094655 353.01672363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -04094656 353.01672363 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4c0 -04094657 353.01675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -04094658 353.01675415 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4d0 -04094659 353.01678467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -04094660 353.01678467 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4e0 -04094661 353.01681519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -04094662 353.01681519 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b4f0 -04094663 353.01684570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -04094664 353.01684570 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b500 -04101273 353.11062622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -04101274 353.11062622 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38390 -04101275 353.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -04101276 353.11065674 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a0 -04101277 353.11068726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -04101278 353.11068726 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b0 -04101279 353.11071777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -04101280 353.11071777 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c0 -04101281 353.11074829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -04101282 353.11074829 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d0 -04101283 353.11077881 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -04101284 353.11077881 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e0 -04101285 353.11080933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -04101286 353.11080933 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f0 -04101287 353.11083984 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -04101288 353.11083984 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38400 -04101289 353.11087036 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -04101290 353.11087036 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38410 -04101291 353.11090088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -04101292 353.11090088 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38420 -04101293 353.11093140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -04101294 353.11093140 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38430 -04101295 353.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -04101296 353.11096191 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38440 -04101297 353.11099243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -04101298 353.11099243 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38450 -04101299 353.11102295 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -04101300 353.11102295 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38460 -04101301 353.11105347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -04101302 353.11105347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38470 -04101303 353.11105347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -04101304 353.11105347 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38480 -04101305 353.11108398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -04101306 353.11108398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x38490 -04101307 353.11114502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -04101308 353.11114502 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a0 -04101309 353.11117554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -04101310 353.11117554 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b0 -04101311 353.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -04101312 353.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384c0 -04101313 353.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -04101314 353.11120605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384d0 -04101315 353.11123657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -04101316 353.11123657 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x384e0 -04106479 353.18704224 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -04106480 353.18707275 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42640 -04106481 353.18710327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -04106482 353.18710327 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42650 -04106483 353.18713379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -04106484 353.18713379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42660 -04106485 353.18713379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -04106486 353.18713379 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42670 -04106487 353.18716431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -04106488 353.18716431 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42680 -04106489 353.18719482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -04106490 353.18719482 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42690 -04106491 353.18722534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -04106492 353.18722534 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426a0 -04106493 353.18725586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -04106494 353.18725586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426b0 -04106495 353.18728638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -04106496 353.18728638 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426c0 -04106497 353.18731689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -04106498 353.18731689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426d0 -04106499 353.18731689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -04106500 353.18731689 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426e0 -04106501 353.18737793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -04106502 353.18737793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x426f0 -04106503 353.18740845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -04106504 353.18740845 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42700 -04106505 353.18743896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -04106506 353.18743896 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42710 -04106507 353.18746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -04106508 353.18746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42720 -04106509 353.18746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -04106510 353.18746948 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42730 -04106511 353.18750000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -04106512 353.18750000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42740 -04106513 353.18753052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -04106514 353.18753052 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42750 -04106515 353.18756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -04106516 353.18756104 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42760 -04106517 353.18759155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -04106518 353.18759155 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42770 -04106519 353.18762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -04106520 353.18762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42780 -04106521 353.18762207 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -04106522 353.18765259 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x42790 -04121919 353.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -04121920 353.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb98 -04121921 353.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba8 -04121922 353.43020630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba8 -04121923 353.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -04121924 353.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -04121925 353.43026733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -04121926 353.43026733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -04121927 353.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -04121928 353.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -04121929 353.43032837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -04121930 353.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -04121931 353.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -04121932 353.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -04121933 353.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -04121934 353.43038940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -04121935 353.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -04121936 353.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -04121937 353.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -04121938 353.43045044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -04121939 353.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -04121940 353.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -04121941 353.43051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -04121942 353.43051147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -04121943 353.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -04121944 353.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -04121945 353.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -04121946 353.43057251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -04121947 353.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -04121948 353.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -04121949 353.43063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -04121950 353.43063354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -04121951 353.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -04121952 353.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -04121953 353.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -04121954 353.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -04121955 353.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -04121956 353.43069458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -04121957 353.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -04121958 353.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -04121959 353.43075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -04121960 353.43075562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -04121961 353.43081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -04121962 353.43081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -04126058 353.48690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ce8 -04126059 353.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf8 -04126060 353.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cf8 -04126061 353.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d08 -04126062 353.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d08 -04126063 353.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d18 -04126064 353.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d18 -04126065 353.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d28 -04126066 353.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d28 -04126067 353.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d38 -04126068 353.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d38 -04126069 353.48706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d48 -04126070 353.48709106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d48 -04126071 353.48709106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d58 -04126072 353.48709106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d58 -04126073 353.48712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d68 -04126074 353.48712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d68 -04126075 353.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d78 -04126076 353.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d78 -04126077 353.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d88 -04126078 353.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d88 -04126079 353.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d98 -04126080 353.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d98 -04126081 353.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da8 -04126082 353.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da8 -04126083 353.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db8 -04126084 353.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db8 -04126085 353.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc8 -04126086 353.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc8 -04126087 353.48730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd8 -04126088 353.48730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd8 -04126089 353.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de8 -04126090 353.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de8 -04126091 353.48736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df8 -04126092 353.48736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df8 -04126093 353.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e08 -04126094 353.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e08 -04126095 353.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e18 -04126096 353.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e18 -04126097 353.48742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -04126098 353.48742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e28 -04126099 353.48745728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -04126100 353.48745728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e38 -04126101 353.48748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e48 -04130821 353.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -04130822 353.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -04130823 353.55252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -04130824 353.55252075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -04130825 353.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e8 -04130826 353.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e8 -04130827 353.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f8 -04130828 353.55258179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f8 -04130829 353.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20208 -04130830 353.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20208 -04130831 353.55264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20218 -04130832 353.55264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20218 -04130833 353.55267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20228 -04130834 353.55267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20228 -04130835 353.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -04130836 353.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -04130837 353.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -04130838 353.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -04130839 353.55273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -04130840 353.55273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -04130841 353.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -04130842 353.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -04130843 353.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -04130844 353.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -04130845 353.55282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -04130846 353.55282593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -04130847 353.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -04130848 353.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -04130849 353.55288696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -04130850 353.55288696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -04130851 353.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -04130852 353.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -04130853 353.55294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -04130854 353.55294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -04130855 353.55297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -04130856 353.55297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -04130857 353.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -04130858 353.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -04130859 353.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -04130860 353.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -04130861 353.55303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -04130862 353.55303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20308 -04130863 353.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20318 -04130864 353.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20318 -04136172 353.62637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a8f8 -04136173 353.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a908 -04136174 353.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a908 -04136175 353.62643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a918 -04136176 353.62643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a918 -04136177 353.62643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a928 -04136178 353.62643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a928 -04136179 353.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a938 -04136180 353.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a938 -04136181 353.62649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a948 -04136182 353.62649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a948 -04136183 353.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a958 -04136184 353.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a958 -04136185 353.62655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a968 -04136186 353.62655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a968 -04136187 353.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a978 -04136188 353.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a978 -04136189 353.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a988 -04136190 353.62661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a988 -04136191 353.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a998 -04136192 353.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a998 -04136193 353.62667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a8 -04136194 353.62667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9a8 -04136195 353.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b8 -04136196 353.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9b8 -04136197 353.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c8 -04136198 353.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9c8 -04136199 353.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d8 -04136200 353.62673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9d8 -04136201 353.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e8 -04136202 353.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9e8 -04136203 353.62680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f8 -04136204 353.62680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a9f8 -04136205 353.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa08 -04136206 353.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa08 -04136207 353.62686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa18 -04136208 353.62686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa18 -04136209 353.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa28 -04136210 353.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa28 -04136211 353.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa38 -04136212 353.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa38 -04136213 353.62692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa48 -04136214 353.62692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa48 -04136215 353.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa58 -04141181 353.69467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -04141182 353.69467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34588 -04141183 353.69470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -04141184 353.69470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34598 -04141185 353.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -04141186 353.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345a8 -04141187 353.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -04141188 353.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345b8 -04141189 353.69479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -04141190 353.69479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345c8 -04141191 353.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -04141192 353.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345d8 -04141193 353.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -04141194 353.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345e8 -04141195 353.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -04141196 353.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x345f8 -04141197 353.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -04141198 353.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34608 -04141199 353.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -04141200 353.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34618 -04141201 353.69494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -04141202 353.69494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34628 -04141203 353.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -04141204 353.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34638 -04141205 353.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -04141206 353.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34648 -04141207 353.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -04141208 353.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34658 -04141209 353.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -04141210 353.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34668 -04141211 353.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -04141212 353.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34678 -04141213 353.69509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -04141214 353.69509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34688 -04141215 353.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -04141216 353.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34698 -04141217 353.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -04141218 353.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346a8 -04141219 353.69519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -04141220 353.69519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346b8 -04141221 353.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -04141222 353.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346c8 -04141223 353.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -04141224 353.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x346d8 -04156787 354.22143555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04156788 354.24090576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04156789 354.24090576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04156790 354.42727661 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04156791 354.42730713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04156792 354.42733765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04156793 354.42733765 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04156794 354.42745972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04156795 354.42745972 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04156796 354.42755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04156797 354.42755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04156798 355.39303589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04156799 355.39303589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04156800 355.39306641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04156801 355.39306641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04156802 355.39309692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04156803 355.39309692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04156804 355.39312744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04156805 355.39312744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04156806 355.39315796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04156807 355.39315796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04156808 355.39318848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04156809 355.39318848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04156810 355.39318848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04156811 355.39318848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04156812 355.39321899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04156813 355.39321899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04156814 355.39324951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04156815 355.39324951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04156816 355.39328003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04156817 355.39328003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04156818 355.39331055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04156819 355.39334106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04156820 355.39337158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04156821 355.39337158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04156822 355.39337158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04156823 355.39337158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04156824 355.39340210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04156825 355.39340210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04156826 355.39343262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04156827 355.39343262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04156828 355.39346313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04156829 355.39346313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04156830 355.39349365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04156831 355.39349365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04156832 355.39352417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04156833 355.39352417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04156834 355.39352417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04156835 355.39352417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04156836 355.39355469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04156837 355.39355469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04156838 355.39358521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04156839 355.39361572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04156840 355.39364624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04156841 355.39364624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04156842 355.39367676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04156843 355.39367676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04156844 355.39367676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04156845 355.39367676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04156846 355.39370728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04156847 355.39370728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04156848 355.39373779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04156849 355.39373779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04156850 355.39376831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04156851 355.39376831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04156852 355.39379883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04156853 355.39379883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04156854 355.39382935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04156855 355.39382935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04156856 355.39382935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04156857 355.39382935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04156858 355.39385986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04156859 355.39389038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04156860 355.39392090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04156861 355.39392090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04156862 355.39395142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04156863 355.39395142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04156864 355.39398193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04156865 355.39398193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04156866 355.39398193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04156867 355.39398193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04156868 355.39401245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04156869 355.39401245 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04156870 355.39404297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04156871 355.39404297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04156872 355.39407349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04156873 355.39407349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04156874 355.39410400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04156875 355.39410400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04156876 355.39413452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04156877 355.39413452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04156878 355.39416504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04156879 355.39416504 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04156880 355.39419556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04156881 355.39419556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04156882 355.39422607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04156883 355.39422607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04156884 355.39425659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04156885 355.39425659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04156886 355.39428711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04156887 355.39428711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04156888 355.39431763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04156889 355.39431763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04156890 355.39431763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04156891 355.39431763 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04156892 355.39434814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04156893 355.39434814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04156894 355.39437866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04156895 355.39437866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04156896 355.39440918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04156897 355.39440918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04156898 355.39447021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04156899 355.39447021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04156900 355.39447021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04156901 355.39447021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04156902 355.39450073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04156903 355.39450073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04156904 355.39453125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04156905 355.39453125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04156906 355.39456177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04156907 355.39456177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04156908 355.39459229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04156909 355.39459229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04156910 355.39462280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04156911 355.39462280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04156912 355.39462280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04156913 355.39462280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04156914 355.39465332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04156915 355.39465332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04156916 355.39468384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04156917 355.39471436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04156918 355.39471436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04156919 355.39474487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04156920 355.39477539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04156921 355.39477539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04156922 355.39477539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04156923 355.39480591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04156924 355.39483643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04156925 355.39483643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04156926 355.39486694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04156927 355.39486694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04156928 355.39489746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04156929 355.39489746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04156930 355.39492798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04156931 355.39492798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04156932 355.39495850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04156933 355.39495850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04156934 355.39495850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04156935 355.39495850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04156936 355.39498901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04156937 355.39498901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04156938 355.39501953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04156939 355.39501953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04156940 355.39505005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04156941 355.39505005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04156942 355.39508057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04156943 355.39511108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04156944 355.39511108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04156945 355.39511108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04156946 355.39514160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04156947 355.39514160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04156948 355.39517212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04156949 355.39517212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04156950 355.39520264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04156951 355.39520264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04156952 355.39523315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04156953 355.39523315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04156954 355.39526367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04156955 355.39526367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04156956 355.39526367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04156957 355.39526367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04156958 355.39529419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04156959 355.39529419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04156960 355.39532471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04156961 355.39532471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04156962 355.39535522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04156963 355.39538574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04156964 355.39541626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04156965 355.39541626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04156966 355.39541626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04156967 355.39541626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04156968 355.39544678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04156969 355.39544678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04156970 355.39547729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04156971 355.39547729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04156972 355.39550781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04156973 355.39550781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04156974 355.39553833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04156975 355.39553833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04156976 355.39556885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04156977 355.39556885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04156978 355.39556885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04156979 355.39556885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04156980 355.39562988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04156981 355.39562988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04156982 355.39566040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04156983 355.39566040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04156984 355.39569092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04156985 355.39569092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04156986 355.39572144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04156987 355.39572144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04156988 355.39575195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04156989 355.39575195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04156990 355.39575195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04156991 355.39575195 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04156992 355.39578247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04156993 355.39578247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04156994 355.39581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04156995 355.39581299 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04156996 355.39584351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04156997 355.39584351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04156998 355.39587402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04156999 355.39587402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04157000 355.39590454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04157001 355.39590454 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04157002 355.39593506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04157003 355.39593506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04157004 355.39596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04157005 355.39596558 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04157006 355.39599609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04157007 355.39599609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04157008 355.39602661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04157009 355.39602661 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04157010 355.39605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04157011 355.39605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04157012 355.39605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04157013 355.39605713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04157014 355.39608765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04157015 355.39608765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04157016 355.39611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04157017 355.39611816 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04157018 355.39614868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04157019 355.39614868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04157020 355.39617920 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04157021 355.39620972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04157022 355.39620972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04157023 355.39620972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04157024 355.39624023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04157025 355.39624023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04157026 355.39627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04157027 355.39627075 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04157028 355.39630127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04157029 355.39630127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04157030 355.39633179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04157031 355.39633179 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04157032 355.39636230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04157033 355.39636230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04157034 355.39639282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04157035 355.39639282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04157036 355.39639282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04157037 355.39639282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04157038 355.39642334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04157039 355.39642334 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04157040 355.39645386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04157041 355.39648438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04157042 355.39651489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04157043 355.39651489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04157044 355.39654541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04157045 355.39654541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04157046 355.39654541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04157047 355.39654541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04157048 355.39657593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04157049 355.39657593 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04157050 355.39660645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04157051 355.39660645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04157052 355.39663696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04157053 355.39663696 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04157054 355.39666748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04157055 355.39666748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04157056 355.39669800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04157057 355.39669800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04157058 355.39669800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04157059 355.39672852 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04157060 355.39675903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04157061 355.39675903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04157062 355.39678955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04157063 355.39678955 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04157064 355.39682007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04157065 355.39682007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04157066 355.39685059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04157067 355.39685059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04157068 355.39685059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04157069 355.39685059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04157070 355.39688110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04157071 355.39688110 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04157072 355.39691162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04157073 355.39691162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04157074 355.39694214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04157075 355.39694214 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04157076 355.39697266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04157077 355.39697266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04157078 355.39700317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04157079 355.39700317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04157080 355.39703369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04157081 355.39703369 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04157082 355.39706421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04157083 355.39706421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04157084 355.39709473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04157085 355.39709473 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04157086 355.39712524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04157087 355.39712524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04157088 355.39715576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04157089 355.39715576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04157090 355.39718628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04157091 355.39718628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04157092 355.39718628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04157093 355.39718628 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04157094 355.39721680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04157095 355.39721680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04157096 355.39724731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04157097 355.39724731 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04157098 355.39727783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04157099 355.39730835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04157100 355.39733887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04157101 355.39733887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04157102 355.39733887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04157103 355.39733887 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04157104 355.39736938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04157105 355.39736938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04157106 355.39739990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04157107 355.39739990 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04157108 355.39743042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04157109 355.39743042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04157110 355.39746094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04157111 355.39746094 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04157112 355.39749146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04157113 355.39749146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04157114 355.39749146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04157115 355.39749146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04157116 355.39752197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04157117 355.39752197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04157118 355.39755249 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04157119 355.39758301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04157120 355.39761353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04157121 355.39761353 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04157122 355.39764404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04157123 355.39764404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04157124 355.39764404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04157125 355.39764404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04157126 355.39767456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04157127 355.39767456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04157128 355.39770508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04157129 355.39770508 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04157130 355.39773560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04157131 355.39773560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04157132 355.39776611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04157133 355.39776611 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04157134 355.39779663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04157135 355.39779663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04157136 355.39779663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04157137 355.39782715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04157138 355.39785767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04157139 355.39785767 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04157140 355.39788818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04157141 355.39788818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04157142 355.39791870 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04157143 355.39791870 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04157144 355.39794922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04157145 355.39794922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04157146 355.39797974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04157147 355.39797974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04157148 355.39797974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04157149 355.39797974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04157150 355.39801025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04157151 355.39801025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04157152 355.39804077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04157153 355.39804077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04157154 355.39807129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04157155 355.39807129 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04157156 355.39810181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04157157 355.39813232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04157158 355.39813232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04157159 355.39813232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04157160 355.39816284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04157161 355.39816284 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04157162 355.39819336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04157163 355.39819336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04157164 355.39822388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04157165 355.39822388 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04157166 355.39825439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04157167 355.39825439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04157168 355.39828491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04157169 355.39828491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04157170 355.39828491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04157171 355.39828491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04157172 355.39831543 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04157173 355.39831543 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04157174 355.39834595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04157175 355.39834595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04157176 355.39837646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04157177 355.39840698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04157178 355.39843750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04157179 355.39843750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04157180 355.39843750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04157181 355.39843750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04157182 355.39846802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04157183 355.39846802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04157184 355.39849854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04157185 355.39849854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04157186 355.39852905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04157187 355.39852905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04157188 355.39855957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04157189 355.39855957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04157190 355.39859009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04157191 355.39859009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04157192 355.39859009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04157193 355.39859009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04157194 355.39862061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04157195 355.39862061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04157196 355.39865112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04157197 355.39868164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04157198 355.39871216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04157199 355.39871216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04157200 355.39874268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04157201 355.39874268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04157202 355.39877319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04157203 355.39877319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04157204 355.39877319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04157205 355.39877319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04157206 355.39880371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04157207 355.39880371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04157208 355.39883423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04157209 355.39883423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04157210 355.39886475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04157211 355.39886475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04157212 355.39889526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04157213 355.39889526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04157214 355.39892578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04157215 355.39892578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04157216 355.39892578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04157217 355.39895630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04157218 355.39898682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04157219 355.39898682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04157220 355.39901733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04157221 355.39901733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04157222 355.39904785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04157223 355.39904785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04157224 355.39907837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04157225 355.39907837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04157226 355.39907837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04157227 355.39907837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04157228 355.39910889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04157229 355.39910889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04157230 355.39913940 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04157231 355.39913940 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04157232 355.39916992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04157233 355.39916992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04157234 355.39920044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04157235 355.39920044 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04157236 355.39923096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04157237 355.39923096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04157238 355.39926147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04157239 355.39926147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04157240 355.39929199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04157241 355.39929199 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04157242 355.39932251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04157243 355.39932251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04157244 355.39935303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04157245 355.39935303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04157246 355.39938354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04157247 355.39938354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04157248 355.39938354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04157249 355.39938354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04157250 355.39941406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04157251 355.39941406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04157252 355.39944458 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04157253 355.39944458 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04157254 355.39947510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04157255 355.39947510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04157256 355.39950562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04157257 355.39953613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04157258 355.39956665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04157259 355.39956665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04157260 355.39956665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04157261 355.39956665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04157262 355.39959717 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04157263 355.39959717 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04157264 355.39962769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04157265 355.39962769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04157266 355.39965820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04157267 355.39965820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04157268 355.39968872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04157269 355.39968872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04157270 355.39971924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04157271 355.39971924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04157272 355.39971924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04157273 355.39971924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04157274 355.39974976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04157275 355.39974976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04157276 355.39978027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04157277 355.39981079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04157278 355.39984131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04157279 355.39984131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04157280 355.39987183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04157281 355.39987183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04157282 355.39987183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04157283 355.39987183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04157284 355.39990234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04157285 355.39990234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04157286 355.39993286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04157287 355.39993286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04157288 355.39996338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04157289 355.39996338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04157290 355.39999390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04157291 355.39999390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04157292 355.40002441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04157293 355.40002441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04157294 355.40002441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04157295 355.40002441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04157296 355.40005493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04157297 355.40008545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04157298 355.40011597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04157299 355.40011597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04157300 355.40014648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04157301 355.40014648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04157302 355.40017700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04157303 355.40017700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04157304 355.40017700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04157305 355.40017700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04157306 355.40020752 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04157307 355.40020752 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04157308 355.40023804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04157309 355.40023804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04157310 355.40026855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04157311 355.40026855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04157312 355.40029907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04157313 355.40029907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04157314 355.40032959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04157315 355.40032959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04157316 355.40036011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04157317 355.40036011 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04157318 355.40039063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04157319 355.40039063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04157320 355.40042114 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04157321 355.40042114 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04157322 355.40045166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04157323 355.40045166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04157324 355.40048218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04157325 355.40048218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04157326 355.40051270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04157327 355.40051270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04157328 355.40051270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04157329 355.40051270 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04157330 355.40054321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04157331 355.40054321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04157332 355.40057373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04157333 355.40057373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04157334 355.40060425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04157335 355.40060425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04157336 355.40063477 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04157337 355.40066528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04157338 355.40066528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04157339 355.40066528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04157340 355.40069580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04157341 355.40069580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04157342 355.40072632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04157343 355.40072632 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04157344 355.40075684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04157345 355.40075684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04157346 355.40078735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04157347 355.40078735 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04157348 355.40081787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04157349 355.40081787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04157350 355.40081787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04157351 355.40081787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04157352 355.40084839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04157353 355.40084839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04157354 355.40087891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04157355 355.40087891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04157356 355.40090942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04157357 355.40093994 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04157358 355.40097046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04157359 355.40097046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04157360 355.40097046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04157361 355.40097046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04157362 355.40100098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04157363 355.40100098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04157364 355.40103149 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04157365 355.40103149 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04157366 355.40106201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04157367 355.40106201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04157368 355.40109253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04157369 355.40109253 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04160428 355.44375610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -04160429 355.44375610 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -04160430 355.44378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -04160431 355.44378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -04160432 355.44381714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -04160433 355.44384766 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -04160434 355.44387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -04160435 355.44387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -04160436 355.44387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -04160437 355.44387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -04160438 355.44390869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -04160439 355.44390869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -04160440 355.44393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -04160441 355.44393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -04160442 355.44396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -04160443 355.44396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -04160444 355.44400024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -04160445 355.44400024 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -04160446 355.44403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -04160447 355.44403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -04160448 355.44403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -04160449 355.44406128 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -04160450 355.44409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -04160451 355.44409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -04160452 355.44412231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -04160453 355.44412231 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -04160454 355.44415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -04160455 355.44415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -04160456 355.44418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -04160457 355.44418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -04160458 355.44418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -04160459 355.44418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -04160460 355.44421387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -04160461 355.44421387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -04160462 355.44424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -04160463 355.44424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -04160464 355.44427490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -04160465 355.44427490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -04160466 355.44430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -04160467 355.44430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -04160468 355.44433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -04160469 355.44433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -04160470 355.44436646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -04160471 355.44436646 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -04165422 355.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -04165423 355.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -04165424 355.51419067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -04165425 355.51419067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -04165426 355.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -04165427 355.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -04165428 355.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -04165429 355.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -04165430 355.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -04165431 355.51425171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -04165432 355.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -04165433 355.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -04165434 355.51431274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -04165435 355.51431274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -04165436 355.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -04165437 355.51437378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -04165438 355.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -04165439 355.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -04165440 355.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -04165441 355.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -04165442 355.51443481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -04165443 355.51443481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -04165444 355.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -04165445 355.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -04165446 355.51449585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -04165447 355.51449585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -04165448 355.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -04165449 355.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -04165450 355.51455688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -04165451 355.51455688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -04165452 355.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -04165453 355.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -04165454 355.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -04165455 355.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -04165456 355.51461792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -04165457 355.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -04165458 355.51467896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -04165459 355.51467896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -04165460 355.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -04165461 355.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -04165462 355.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -04165463 355.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -04165464 355.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -04165465 355.51473999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -04171238 355.59887695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -04171239 355.59887695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d380 -04171240 355.59890747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -04171241 355.59890747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d390 -04171242 355.59893799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -04171243 355.59893799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3a0 -04171244 355.59893799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -04171245 355.59893799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3b0 -04171246 355.59896851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -04171247 355.59896851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3c0 -04171248 355.59899902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -04171249 355.59899902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3d0 -04171250 355.59902954 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -04171251 355.59902954 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3e0 -04171252 355.59906006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -04171253 355.59906006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d3f0 -04171254 355.59909058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -04171255 355.59909058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d400 -04171256 355.59909058 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -04171257 355.59912109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d410 -04171258 355.59915161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -04171259 355.59915161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d420 -04171260 355.59918213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -04171261 355.59918213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d430 -04171262 355.59921265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -04171263 355.59921265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d440 -04171264 355.59924316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -04171265 355.59924316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d450 -04171266 355.59924316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -04171267 355.59924316 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d460 -04171268 355.59927368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -04171269 355.59927368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d470 -04171270 355.59930420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -04171271 355.59930420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d480 -04171272 355.59933472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -04171273 355.59933472 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d490 -04171274 355.59936523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -04171275 355.59939575 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4a0 -04171276 355.59942627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -04171277 355.59942627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4b0 -04171278 355.59942627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -04171279 355.59942627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4c0 -04171280 355.59945679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -04171281 355.59945679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d4d0 -04177046 355.68075562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -04177047 355.68075562 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28900 -04177048 355.68078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -04177049 355.68078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28910 -04177050 355.68081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -04177051 355.68081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28920 -04177052 355.68084717 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -04177053 355.68087769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28930 -04177054 355.68087769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -04177055 355.68090820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28940 -04177056 355.68090820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -04177057 355.68090820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28950 -04177058 355.68093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -04177059 355.68093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28960 -04177060 355.68096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -04177061 355.68096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28970 -04177062 355.68099976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -04177063 355.68099976 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28980 -04177064 355.68103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -04177065 355.68103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28990 -04177066 355.68106079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -04177067 355.68106079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289a0 -04177068 355.68106079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -04177069 355.68106079 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289b0 -04177070 355.68109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -04177071 355.68109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289c0 -04177072 355.68112183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -04177073 355.68112183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289d0 -04177074 355.68115234 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -04177075 355.68118286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289e0 -04177076 355.68121338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -04177077 355.68121338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x289f0 -04177078 355.68124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -04177079 355.68124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a00 -04177080 355.68124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -04177081 355.68124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a10 -04177082 355.68127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -04177083 355.68127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a20 -04177084 355.68130493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -04177085 355.68130493 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a30 -04177086 355.68133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -04177087 355.68133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a40 -04177088 355.68136597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -04177089 355.68136597 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a50 -04178235 355.69760132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -04178236 355.69760132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -04178237 355.69760132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -04178238 355.69763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -04178239 355.69763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -04178240 355.69766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -04178241 355.69766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -04178242 355.69769287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -04178243 355.69769287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -04178244 355.69772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -04178245 355.69772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -04178246 355.69775391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -04178247 355.69775391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -04178248 355.69775391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -04178249 355.69775391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -04178250 355.69778442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -04178251 355.69781494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -04178252 355.69784546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -04178253 355.69784546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -04178254 355.69787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -04178255 355.69787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -04178256 355.69790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -04178257 355.69790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -04178258 355.69790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -04178259 355.69790649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -04178260 355.69793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -04178261 355.69793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -04178262 355.69796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -04178263 355.69796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -04178264 355.69799805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -04178265 355.69799805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -04178266 355.69802856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -04178267 355.69802856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -04178268 355.69805908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -04178269 355.69805908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -04178270 355.69805908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -04178271 355.69808960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -04178272 355.69812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -04178273 355.69812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -04178274 355.69815063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -04178275 355.69815063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -04178276 355.69818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -04178277 355.69818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -04178278 355.69821167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -04179486 355.71530151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -04179487 355.71530151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d540 -04179488 355.71533203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -04179489 355.71533203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d550 -04179490 355.71536255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -04179491 355.71536255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d560 -04179492 355.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -04179493 355.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d570 -04179494 355.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -04179495 355.71539307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d580 -04179496 355.71542358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -04179497 355.71545410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d590 -04179498 355.71548462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -04179499 355.71548462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a0 -04179500 355.71551514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -04179501 355.71551514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b0 -04179502 355.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -04179503 355.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c0 -04179504 355.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -04179505 355.71554565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d0 -04179506 355.71557617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -04179507 355.71557617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e0 -04179508 355.71560669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -04179509 355.71560669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f0 -04179510 355.71563721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -04179511 355.71563721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d600 -04179512 355.71566772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -04179513 355.71569824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d610 -04179514 355.71569824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -04179515 355.71569824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d620 -04179516 355.71572876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -04179517 355.71572876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d630 -04179518 355.71575928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -04179519 355.71575928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d640 -04179520 355.71578979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -04179521 355.71578979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d650 -04179522 355.71582031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -04179523 355.71582031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d660 -04179524 355.71585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -04179525 355.71585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d670 -04179526 355.71585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -04179527 355.71585083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d680 -04179528 355.71588135 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -04179529 355.71588135 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d690 -04180364 355.72769165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -04180365 355.72769165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0b0 -04180366 355.72772217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -04180367 355.72772217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0c0 -04180368 355.72775269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -04180369 355.72775269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0d0 -04180370 355.72778320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -04180371 355.72778320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0e0 -04180372 355.72778320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -04180373 355.72778320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f0f0 -04180374 355.72781372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -04180375 355.72781372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f100 -04180376 355.72784424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -04180377 355.72787476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f110 -04180378 355.72790527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -04180379 355.72790527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f120 -04180380 355.72793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -04180381 355.72793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f130 -04180382 355.72793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -04180383 355.72793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f140 -04180384 355.72796631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -04180385 355.72796631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f150 -04180386 355.72799683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -04180387 355.72799683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f160 -04180388 355.72802734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -04180389 355.72802734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f170 -04180390 355.72805786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -04180391 355.72805786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f180 -04180392 355.72808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -04180393 355.72808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f190 -04180394 355.72808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -04180395 355.72808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1a0 -04180396 355.72811890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -04180397 355.72814941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1b0 -04180398 355.72817993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -04180399 355.72817993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1c0 -04180400 355.72821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -04180401 355.72821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1d0 -04180402 355.72824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -04180403 355.72824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1e0 -04180404 355.72824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -04180405 355.72824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f1f0 -04180406 355.72827148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -04180407 355.72827148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f200 -04194824 355.93243408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -04194825 355.93243408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b490 -04194826 355.93246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -04194827 355.93246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4a0 -04194828 355.93249512 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -04194829 355.93249512 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4b0 -04194830 355.93252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -04194831 355.93252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4c0 -04194832 355.93255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -04194833 355.93255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4d0 -04194834 355.93255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -04194835 355.93255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4e0 -04194836 355.93261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -04194837 355.93261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b4f0 -04194838 355.93264771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -04194839 355.93264771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b500 -04194840 355.93267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -04194841 355.93267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b510 -04194842 355.93270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -04194843 355.93270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b520 -04194844 355.93270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -04194845 355.93270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b530 -04194846 355.93273926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -04194847 355.93273926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b540 -04194848 355.93276978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -04194849 355.93276978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b550 -04194850 355.93280029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -04194851 355.93280029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b560 -04194852 355.93283081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -04194853 355.93283081 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b570 -04194854 355.93286133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -04194855 355.93286133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b580 -04194856 355.93289185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -04194857 355.93289185 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b590 -04194858 355.93292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -04194859 355.93292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5a0 -04194860 355.93295288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -04194861 355.93295288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5b0 -04194862 355.93298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -04194863 355.93298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5c0 -04194864 355.93301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -04194865 355.93301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5d0 -04194866 355.93304443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -04194867 355.93304443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5e0 -04195414 355.94079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -04195415 355.94082642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -04195416 355.94082642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -04195417 355.94082642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -04195418 355.94085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -04195419 355.94085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -04195420 355.94088745 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -04195421 355.94088745 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -04195422 355.94091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -04195423 355.94091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -04195424 355.94094849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -04195425 355.94094849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -04195426 355.94097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -04195427 355.94097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -04195428 355.94097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -04195429 355.94097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -04195430 355.94100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -04195431 355.94100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -04195432 355.94104004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -04195433 355.94104004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -04195434 355.94107056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -04195435 355.94110107 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -04195436 355.94113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -04195437 355.94113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -04195438 355.94113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -04195439 355.94113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c0 -04195440 355.94116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -04195441 355.94116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d0 -04195442 355.94119263 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -04195443 355.94119263 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e0 -04195444 355.94122314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -04195445 355.94122314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f0 -04195446 355.94125366 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -04195447 355.94125366 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c800 -04195448 355.94128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -04195449 355.94128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c810 -04195450 355.94128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -04195451 355.94128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c820 -04195452 355.94131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -04195453 355.94131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c830 -04195454 355.94134521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -04195455 355.94137573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c840 -04195456 355.94140625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -04195457 355.94140625 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c850 -04198692 356.24209595 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04198693 356.26181030 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04198694 356.26181030 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04198695 356.93441772 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04198696 356.93447876 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04198697 356.93450928 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04198698 356.93450928 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04198699 356.93463135 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04198700 356.93463135 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04198701 356.93478394 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04198702 356.93481445 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04198703 358.26266479 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04198704 358.28286743 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04198705 358.28286743 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04198706 358.90774536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04198707 358.90777588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04198708 358.90780640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04198709 358.90780640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04198710 358.90783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04198711 358.90783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04198712 358.90786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04198713 358.90786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04198714 358.90786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04198715 358.90786743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04198716 358.90789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04198717 358.90789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04198718 358.90792847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04198719 358.90792847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04198720 358.90795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04198721 358.90795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04198722 358.90798950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04198723 358.90798950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04198724 358.90802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04198725 358.90802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04198726 358.90805054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04198727 358.90805054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04198728 358.90808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04198729 358.90808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04198730 358.90811157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04198731 358.90811157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04198732 358.90814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04198733 358.90814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04198734 358.90817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04198735 358.90817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04198736 358.90817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04198737 358.90817261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04198738 358.90820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04198739 358.90820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04198740 358.90823364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04198741 358.90823364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04198742 358.90826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04198743 358.90826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04198744 358.90829468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04198745 358.90829468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04198746 358.90832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04198747 358.90832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04198748 358.90835571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04198749 358.90835571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04198750 358.90838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04198751 358.90838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04198752 358.90841675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04198753 358.90841675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04198754 358.90844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04198755 358.90844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04198756 358.90847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04198757 358.90847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04198758 358.90847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04198759 358.90847778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04198760 358.90850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04198761 358.90850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04198762 358.90853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04198763 358.90853882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04198764 358.90856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04198765 358.90859985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04198766 358.90863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04198767 358.90863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04198768 358.90866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04198769 358.90866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04198770 358.90866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04198771 358.90866089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04198772 358.90869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04198773 358.90869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04198774 358.90872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04198775 358.90872192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04198776 358.90875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04198777 358.90875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04198778 358.90878296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04198779 358.90878296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04198780 358.90881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04198781 358.90881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04198782 358.90881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04198783 358.90881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04198784 358.90884399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04198785 358.90887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04198786 358.90890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04198787 358.90890503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04198788 358.90893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04198789 358.90893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04198790 358.90896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04198791 358.90896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04198792 358.90896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04198793 358.90896606 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04198794 358.90899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04198795 358.90899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04198796 358.90902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04198797 358.90902710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04198798 358.90905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04198799 358.90905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04198800 358.90908813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04198801 358.90908813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04198802 358.90911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04198803 358.90911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04198804 358.90911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04198805 358.90911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04198806 358.90914917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04198807 358.90917969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04198808 358.90921021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04198809 358.90921021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04198810 358.90924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04198811 358.90924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04198812 358.90927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04198813 358.90927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04198814 358.90927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04198815 358.90927124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04198816 358.90930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04198817 358.90930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04198818 358.90933228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04198819 358.90933228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04198820 358.90936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04198821 358.90936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04198822 358.90939331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04198823 358.90939331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04198824 358.90942383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04198825 358.90942383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04198826 358.90945435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04198827 358.90945435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04198828 358.90948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04198829 358.90948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04198830 358.90951538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04198831 358.90951538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04198832 358.90954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04198833 358.90957642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04198834 358.90960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04198835 358.90960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04198836 358.90960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04198837 358.90960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04198838 358.90963745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04198839 358.90963745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04198840 358.90966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04198841 358.90966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04198842 358.90969849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04198843 358.90969849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04198844 358.90972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04198845 358.90972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04198846 358.90975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04198847 358.90975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04198848 358.90975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04198849 358.90975952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04198850 358.90979004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04198851 358.90979004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04198852 358.90982056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04198853 358.90985107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04198854 358.90988159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04198855 358.90988159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04198856 358.90991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04198857 358.90991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04198858 358.90991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04198859 358.90991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04198860 358.90994263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04198861 358.90994263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04198862 358.90997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04198863 358.90997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04198864 358.91000366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04198865 358.91000366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04198866 358.91003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04198867 358.91003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04198868 358.91006470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04198869 358.91006470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04198870 358.91009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04198871 358.91009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04198872 358.91009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04198873 358.91009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04198874 358.91012573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04198875 358.91015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04198876 358.91018677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04198877 358.91018677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04198878 358.91021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04198879 358.91021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04198880 358.91024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04198881 358.91024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04198882 358.91024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04198883 358.91024780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04198884 358.91027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04198885 358.91027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04198886 358.91030884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04198887 358.91030884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04198888 358.91033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04198889 358.91033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04198890 358.91036987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04198891 358.91036987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04198892 358.91040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04198893 358.91040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04198894 358.91040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04198895 358.91040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04198896 358.91043091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04198897 358.91046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04198898 358.91049194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04198899 358.91049194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04198900 358.91052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04198901 358.91052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04198902 358.91055298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04198903 358.91055298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04198904 358.91055298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04198905 358.91055298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04198906 358.91058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04198907 358.91058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04198908 358.91064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04198909 358.91064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04198910 358.91067505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04198911 358.91067505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04198912 358.91070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04198913 358.91070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04198914 358.91070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04198915 358.91070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04198916 358.91073608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04198917 358.91073608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04198918 358.91076660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04198919 358.91079712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04198920 358.91082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04198921 358.91082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04198922 358.91085815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04198923 358.91085815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04198924 358.91088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04198925 358.91088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04198926 358.91088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04198927 358.91088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04198928 358.91091919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04198929 358.91091919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04198930 358.91094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04198931 358.91094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04198932 358.91098022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04198933 358.91098022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04198934 358.91101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04198935 358.91101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04198936 358.91104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04198937 358.91104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04198938 358.91104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04198939 358.91104126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04198940 358.91107178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04198941 358.91110229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04198942 358.91113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04198943 358.91113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04198944 358.91116333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04198945 358.91116333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04198946 358.91119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04198947 358.91119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04198948 358.91119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04198949 358.91119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04198950 358.91122437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04198951 358.91122437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04198952 358.91125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04198953 358.91125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04198954 358.91128540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04198955 358.91128540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04198956 358.91131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04198957 358.91131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04198958 358.91134644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04198959 358.91134644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04198960 358.91134644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04198961 358.91137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04198962 358.91140747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04198963 358.91140747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04198964 358.91143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04198965 358.91143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04198966 358.91146851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04198967 358.91146851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04198968 358.91149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04198969 358.91149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04198970 358.91149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04198971 358.91149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04198972 358.91152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04198973 358.91152954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04198974 358.91156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04198975 358.91156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04198976 358.91159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04198977 358.91159058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04198978 358.91162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04198979 358.91162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04198980 358.91165161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04198981 358.91165161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04198982 358.91168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04198983 358.91168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04198984 358.91171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04198985 358.91171265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04198986 358.91174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04198987 358.91174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04198988 358.91177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04198989 358.91177368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04198990 358.91180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04198991 358.91180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04198992 358.91183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04198993 358.91183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04198994 358.91183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04198995 358.91183472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04198996 358.91186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04198997 358.91186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04198998 358.91189575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04198999 358.91189575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04199000 358.91192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04199001 358.91192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04199002 358.91195679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04199003 358.91198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04199004 358.91198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04199005 358.91198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04199006 358.91201782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04199007 358.91201782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04199008 358.91204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04199009 358.91204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04199010 358.91207886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04199011 358.91207886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04199012 358.91210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04199013 358.91210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04199014 358.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04199015 358.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04199016 358.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04199017 358.91213989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04199018 358.91217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04199019 358.91217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04199020 358.91220093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04199021 358.91220093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04199022 358.91223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04199023 358.91223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04199024 358.91226196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04199025 358.91229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04199026 358.91229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04199027 358.91229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04199028 358.91232300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04199029 358.91232300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04199030 358.91235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04199031 358.91235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04199032 358.91238403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04199033 358.91238403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04199034 358.91241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04199035 358.91241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04199036 358.91244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04199037 358.91244507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04199038 358.91247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04199039 358.91247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04199040 358.91247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04199041 358.91250610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04199042 358.91253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04199043 358.91253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04199044 358.91256714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04199045 358.91256714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04199046 358.91259766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04199047 358.91259766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04199048 358.91262817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04199049 358.91262817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04199050 358.91262817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04199051 358.91262817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04199052 358.91265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04199053 358.91265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04199054 358.91268921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04199055 358.91268921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04199056 358.91271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04199057 358.91271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04199058 358.91275024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04199059 358.91275024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04199060 358.91278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04199061 358.91278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04199062 358.91281128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04199063 358.91281128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04199064 358.91284180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04199065 358.91284180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04199066 358.91287231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04199067 358.91287231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04199068 358.91290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04199069 358.91290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04199070 358.91293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04199071 358.91293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04199072 358.91293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04199073 358.91293335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04199074 358.91296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04199075 358.91296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04199076 358.91299438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04199077 358.91299438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04199078 358.91302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04199079 358.91302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04199080 358.91305542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04199081 358.91308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04199082 358.91308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04199083 358.91308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04199084 358.91311646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04199085 358.91311646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04199086 358.91314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04199087 358.91314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04199088 358.91317749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04199089 358.91317749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04199090 358.91320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04199091 358.91320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04199092 358.91323853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04199093 358.91323853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04199094 358.91326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04199095 358.91326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04199096 358.91326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04199097 358.91326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04199098 358.91329956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04199099 358.91329956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04199100 358.91333008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04199101 358.91336060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04199102 358.91339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04199103 358.91339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04199104 358.91342163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04199105 358.91342163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04199106 358.91342163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04199107 358.91342163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04199108 358.91345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04199109 358.91345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04199110 358.91348267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04199111 358.91348267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04199112 358.91351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04199113 358.91351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04199114 358.91354370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04199115 358.91354370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04199116 358.91357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04199117 358.91357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04199118 358.91357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04199119 358.91357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04199120 358.91363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04199121 358.91363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04199122 358.91366577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04199123 358.91366577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04199124 358.91369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04199125 358.91369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04199126 358.91372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04199127 358.91372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04199128 358.91372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04199129 358.91372681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04199130 358.91375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04199131 358.91375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04199132 358.91378784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04199133 358.91378784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04199134 358.91381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04199135 358.91381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04199136 358.91384888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04199137 358.91384888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04199138 358.91387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04199139 358.91387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04199140 358.91387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04199141 358.91390991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04199142 358.91394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04199143 358.91394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04199144 358.91397095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04199145 358.91397095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04199146 358.91400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04199147 358.91400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04199148 358.91403198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04199149 358.91403198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04199150 358.91406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04199151 358.91406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04199152 358.91406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04199153 358.91406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04199154 358.91409302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04199155 358.91409302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04199156 358.91412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04199157 358.91412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04199158 358.91415405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04199159 358.91415405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04199160 358.91418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04199161 358.91421509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04199162 358.91421509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04199163 358.91421509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04199164 358.91424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04199165 358.91424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04199166 358.91427612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04199167 358.91427612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04199168 358.91430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04199169 358.91430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04199170 358.91433716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04199171 358.91433716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04199172 358.91436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04199173 358.91436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04199174 358.91436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04199175 358.91436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04199176 358.91439819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04199177 358.91439819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04199178 358.91442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04199179 358.91442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04199180 358.91445923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04199181 358.91445923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04199182 358.91448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04199183 358.91452026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04199184 358.91455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04199185 358.91455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04199186 358.91458130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04199187 358.91458130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04199188 358.91461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04199189 358.91461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04199190 358.91464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04199191 358.91464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04199192 358.91467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04199193 358.91467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04199194 358.91467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04199195 358.91467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04199196 358.91470337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04199197 358.91470337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04199198 358.91473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04199199 358.91473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04199200 358.91476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04199201 358.91476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04199202 358.91479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04199203 358.91482544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04199204 358.91485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04199205 358.91485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04199206 358.91485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04199207 358.91485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04199208 358.91488647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04199209 358.91488647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04199210 358.91491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04199211 358.91491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04199212 358.91494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04199213 358.91494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04199214 358.91497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04199215 358.91497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04199216 358.91500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04199217 358.91500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04199218 358.91500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04199219 358.91500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04199220 358.91503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04199221 358.91503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04199222 358.91506958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04199223 358.91510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04199224 358.91513062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04199225 358.91513062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04199226 358.91516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04199227 358.91516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04199228 358.91516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04199229 358.91516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04199230 358.91519165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04199231 358.91519165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04199232 358.91522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04199233 358.91522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04199234 358.91525269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04199235 358.91525269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04199236 358.91528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04199237 358.91528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04199238 358.91531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04199239 358.91531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04199240 358.91531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04199241 358.91531372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04199242 358.91534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04199243 358.91534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04199244 358.91537476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04199245 358.91540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04199246 358.91543579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04199247 358.91543579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04199248 358.91546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04199249 358.91546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04199250 358.91549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04199251 358.91549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04199252 358.91549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04199253 358.91549683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04199254 358.91552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04199255 358.91552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04199256 358.91555786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04199257 358.91555786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04199258 358.91558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04199259 358.91558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04199260 358.91561890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04199261 358.91561890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04199262 358.91564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04199263 358.91564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04199264 358.91564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04199265 358.91567993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04199266 358.91571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04199267 358.91571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04199268 358.91574097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04199269 358.91574097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04199270 358.91577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04199271 358.91577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04199272 358.91580200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04199273 358.91580200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04199274 358.91580200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04199275 358.91580200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04199276 358.91583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04199277 358.91583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04199278 358.91586304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04199279 358.91586304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04199280 358.91589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04199281 358.91589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04199282 358.91592407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04199283 358.91592407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04199284 358.91595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04199285 358.91595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04199286 358.91595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04199287 358.91598511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04199288 358.91601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04199289 358.91601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04199290 358.91604614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04199291 358.91604614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04199292 358.91607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04199293 358.91607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04199294 358.91610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04199295 358.91610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04199296 358.91610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04199297 358.91610718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04199298 358.91613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04199299 358.91613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04199300 358.91616821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04199301 358.91616821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04199302 358.91619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04199303 358.91619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04199304 358.91622925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04199305 358.91622925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04199306 358.91625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04199307 358.91629028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04199308 358.91629028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04199309 358.91629028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04199310 358.91632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04199311 358.91632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04199312 358.91635132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04199313 358.91635132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04199314 358.91638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04199315 358.91638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04199316 358.91641235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04199317 358.91641235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04199318 358.91644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04199319 358.91644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04199320 358.91644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04199321 358.91644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04199322 358.91647339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04199323 358.91647339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04199324 358.91650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04199325 358.91650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04199326 358.91653442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04199327 358.91653442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04199328 358.91656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04199329 358.91659546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04199330 358.91659546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04199331 358.91659546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04199332 358.91662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04199333 358.91662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04199334 358.91665649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04199335 358.91665649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04199336 358.91668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04199337 358.91668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04199338 358.91671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04199339 358.91671753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04199340 358.91674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04199341 358.91674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04199342 358.91674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04199343 358.91674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04199344 358.91677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04199345 358.91677856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04199346 358.91680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04199347 358.91680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04199348 358.91683960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04199349 358.91687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04199350 358.91690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04199351 358.91690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04199352 358.91690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04199353 358.91690063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04199354 358.91693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04199355 358.91693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04199356 358.91696167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04199357 358.91696167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04199358 358.91699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04199359 358.91699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04199360 358.91702271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04199361 358.91702271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04199362 358.91705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04199363 358.91705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04199364 358.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04199365 358.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04199366 358.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04199367 358.91708374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04199368 358.91711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04199369 358.91711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04199370 358.91714478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04199371 358.91717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04199372 358.91720581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04199373 358.91720581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04199374 358.91723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04199375 358.91723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04199376 358.91723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04199377 358.91723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04199378 358.91726685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04199379 358.91726685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04199380 358.91729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04199381 358.91729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04199382 358.91732788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04199383 358.91732788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04199384 358.91735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04199385 358.91735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04199386 358.91738892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04199387 358.91738892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04199388 358.91738892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04199389 358.91738892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04199390 358.91741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04199391 358.91741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04199392 358.91744995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04199393 358.91748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04199394 358.91751099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04199395 358.91751099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04199396 358.91754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04199397 358.91754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04199398 358.91754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04199399 358.91754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04199400 358.91757202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04199401 358.91757202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04199402 358.91760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04199403 358.91760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04199404 358.91763306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04199405 358.91763306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04199406 358.91766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04199407 358.91766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04199408 358.91769409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04199409 358.91769409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04199410 358.91769409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04199411 358.91769409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04199412 358.91772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04199413 358.91775513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04199414 358.91778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04199415 358.91778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04199416 358.91781616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04199417 358.91781616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04199418 358.91784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04199419 358.91784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04199420 358.91787720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04199421 358.91787720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04199422 358.91787720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04199423 358.91787720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04199424 358.91790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04199425 358.91790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04199426 358.91793823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04199427 358.91793823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04199428 358.91796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04199429 358.91796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04199430 358.91799927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04199431 358.91799927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04199432 358.91802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04199433 358.91802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04199434 358.91802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04199435 358.91806030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04199436 358.91809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04199437 358.91809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04199438 358.91812134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04199439 358.91812134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04199440 358.91815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04199441 358.91815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04199442 358.91818237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04199443 358.91818237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04199444 358.91818237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04199445 358.91818237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04199446 358.91821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04199447 358.91821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04199448 358.91824341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04199449 358.91824341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04199450 358.91827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04199451 358.91827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04199452 358.91830444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04199453 358.91830444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04199454 358.91833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04199455 358.91833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04199456 358.91833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04199457 358.91836548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04199458 358.91839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04199459 358.91839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04199460 358.91842651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04199461 358.91842651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04199462 358.91845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04199463 358.91845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04199464 358.91848755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04199465 358.91848755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04199466 358.91848755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04199467 358.91848755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04199468 358.91851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04199469 358.91851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04199470 358.91854858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04199471 358.91854858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04199472 358.91857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04199473 358.91857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04199474 358.91860962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04199475 358.91860962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04199476 358.91864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04199477 358.91867065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04199478 358.91867065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04199479 358.91867065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04199480 358.91870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04199481 358.91870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04199482 358.91873169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04199483 358.91873169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04199484 358.91876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04199485 358.91876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04199486 358.91879272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04199487 358.91879272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04199488 358.91882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04199489 358.91882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04199490 358.91882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04199491 358.91882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04199492 358.91885376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04199493 358.91885376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04199494 358.91888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04199495 358.91888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04199496 358.91891479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04199497 358.91891479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04199498 358.91894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04199499 358.91897583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04199500 358.91897583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04199501 358.91897583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04199502 358.91900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04199503 358.91900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04199504 358.91903687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04199505 358.91903687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04199506 358.91906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04199507 358.91906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04199508 358.91909790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04199509 358.91909790 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04199510 358.91912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04199511 358.91912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04199512 358.91912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04199513 358.91912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04199514 358.91915894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04199515 358.91915894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04199516 358.91918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04199517 358.91918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04199518 358.91921997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04199519 358.91921997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04199520 358.91925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04199521 358.91928101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04199522 358.91928101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04199523 358.91928101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04199524 358.91931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04199525 358.91931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04199526 358.91934204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04199527 358.91934204 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04199528 358.91937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04199529 358.91937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04199530 358.91940308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04199531 358.91940308 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04199532 358.91943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04199533 358.91943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04199534 358.91946411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04199535 358.91946411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04199536 358.91946411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04199537 358.91946411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04199538 358.91949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04199539 358.91952515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04199540 358.91952515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04199541 358.91955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04199542 358.91958618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04199543 358.91958618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04199544 358.91961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04199545 358.91961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04199546 358.91961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04199547 358.91961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04199548 358.91964722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04199549 358.91964722 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04199550 358.91967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04199551 358.91967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04199552 358.91970825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04199553 358.91970825 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04199554 358.91973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04199555 358.91973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04199556 358.91976929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04199557 358.91976929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04199558 358.91976929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04199559 358.91976929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04199560 358.91979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04199561 358.91983032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04199562 358.91986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04199563 358.91986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04199564 358.91989136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04199565 358.91989136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04199566 358.91992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04199567 358.91992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04199568 358.91992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04199569 358.91992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04199570 358.91995239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04199571 358.91995239 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04199572 358.91998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04199573 358.91998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04199574 358.92001343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04199575 358.92001343 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04199576 358.92004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04199577 358.92004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04199578 358.92007446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04199579 358.92007446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04199580 358.92007446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04199581 358.92007446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04199582 358.92010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04199583 358.92013550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04199584 358.92016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04199585 358.92016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04199586 358.92019653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04199587 358.92019653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04199588 358.92022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04199589 358.92022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04199590 358.92025757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04199591 358.92025757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04199592 358.92025757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04199593 358.92025757 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04199594 358.92028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04199595 358.92028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04199596 358.92031860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04199597 358.92031860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04199598 358.92034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04199599 358.92034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04199600 358.92037964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04199601 358.92037964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04199602 358.92041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04199603 358.92041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04199604 358.92044067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04199605 358.92044067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04199606 358.92047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04199607 358.92047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04199608 358.92050171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04199609 358.92050171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04199610 358.92053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04199611 358.92053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04199612 358.92056274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04199613 358.92056274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04199614 358.92056274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04199615 358.92056274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04199616 358.92059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04199617 358.92059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04199618 358.92062378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04199619 358.92062378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04199620 358.92065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04199621 358.92065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04199622 358.92068481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04199623 358.92068481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04199624 358.92071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04199625 358.92071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04199626 358.92074585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04199627 358.92074585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04199628 358.92077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04199629 358.92077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04199630 358.92080688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04199631 358.92080688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04199632 358.92083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04199633 358.92083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04199634 358.92086792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04199635 358.92086792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04199636 358.92089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04199637 358.92089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04199638 358.92089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04199639 358.92089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04199640 358.92092896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04199641 358.92092896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04199642 358.92095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04199643 358.92095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04199644 358.92098999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04199645 358.92098999 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04199646 358.92102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04199647 358.92105103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04199648 358.92105103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04199649 358.92105103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04199650 358.92108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04199651 358.92108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04199652 358.92111206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04199653 358.92111206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04199654 358.92114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04199655 358.92114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04199656 358.92117310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04199657 358.92117310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04199658 358.92120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04199659 358.92120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04199660 358.92120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04199661 358.92120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04199662 358.92123413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04199663 358.92123413 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04199664 358.92126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04199665 358.92126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04199666 358.92129517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04199667 358.92129517 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04199668 358.92132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04199669 358.92135620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04199670 358.92135620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04199671 358.92135620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04199672 358.92138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04199673 358.92138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04199674 358.92141724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04199675 358.92141724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04199676 358.92144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04199677 358.92144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04199678 358.92147827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04199679 358.92147827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04199680 358.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04199681 358.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04199682 358.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04199683 358.92150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04199684 358.92153931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04199685 358.92153931 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04199686 358.92156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04199687 358.92156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04199688 358.92160034 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04199689 358.92163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04199690 358.92166138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04199691 358.92166138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04199692 358.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04199693 358.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04199694 358.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04199695 358.92169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04199696 358.92172241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04199697 358.92172241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04199698 358.92175293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04199699 358.92175293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04199700 358.92178345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04199701 358.92178345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04199702 358.92181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04199703 358.92181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04199704 358.92184448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04199705 358.92184448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04199706 358.92184448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04199707 358.92184448 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04199708 358.92187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04199709 358.92187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04199710 358.92190552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04199711 358.92193604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04199712 358.92196655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04199713 358.92196655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04199714 358.92199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04199715 358.92199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04199716 358.92199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04199717 358.92199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04199718 358.92202759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04199719 358.92202759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04199720 358.92205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04199721 358.92205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04199722 358.92208862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04199723 358.92208862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04199724 358.92211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04199725 358.92211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04199726 358.92214966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04199727 358.92214966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04199728 358.92214966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04199729 358.92214966 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04199730 358.92218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04199731 358.92221069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04199732 358.92224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04199733 358.92224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04199734 358.92227173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04199735 358.92227173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04199736 358.92230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04199737 358.92230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04199738 358.92230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04199739 358.92230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04199740 358.92233276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04199741 358.92233276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04199742 358.92236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04199743 358.92236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04199744 358.92239380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04199745 358.92239380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04199746 358.92242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04199747 358.92242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04199748 358.92245483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04199749 358.92245483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04199750 358.92248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04199751 358.92248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04199752 358.92248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04199753 358.92251587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04199754 358.92254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04199755 358.92254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04199756 358.92257690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04199757 358.92257690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04199758 358.92260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04199759 358.92260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04199760 358.92263794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04199761 358.92263794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04200406 358.93176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04200407 358.93176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04200408 358.93179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04200409 358.93179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04200410 358.93182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04200411 358.93182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04200412 358.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04200413 358.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04200414 358.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04200415 358.93188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04200416 358.93191528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04200417 358.93191528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04200418 358.93194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04200419 358.93194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04200420 358.93197632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04200421 358.93197632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04200422 358.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04200423 358.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04200424 358.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04200425 358.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04200426 358.93203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04200427 358.93203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04200428 358.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04200429 358.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04200430 358.93209839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04200431 358.93209839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04200432 358.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04200433 358.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04200434 358.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04200435 358.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04200436 358.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04200437 358.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04200438 358.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04200439 358.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04200440 358.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04200441 358.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04200442 358.93228149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04200443 358.93228149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04200444 358.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04200445 358.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04200446 358.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04200447 358.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04200448 358.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04200449 358.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04205051 358.99697876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd688 -04205052 358.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -04205053 358.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd698 -04205054 358.99703979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -04205055 358.99703979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6a8 -04205056 358.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -04205057 358.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6b8 -04205058 358.99710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -04205059 358.99710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6c8 -04205060 358.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -04205061 358.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6d8 -04205062 358.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -04205063 358.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6e8 -04205064 358.99716187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -04205065 358.99716187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd6f8 -04205066 358.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -04205067 358.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd708 -04205068 358.99722290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -04205069 358.99722290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd718 -04205070 358.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -04205071 358.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd728 -04205072 358.99728394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -04205073 358.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd738 -04205074 358.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -04205075 358.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd748 -04205076 358.99734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -04205077 358.99734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd758 -04205078 358.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -04205079 358.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd768 -04205080 358.99740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -04205081 358.99740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd778 -04205082 358.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -04205083 358.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd788 -04205084 358.99746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -04205085 358.99746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd798 -04205086 358.99746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -04205087 358.99746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7a8 -04205088 358.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -04205089 358.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7b8 -04205090 358.99752808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -04205091 358.99752808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7c8 -04205092 358.99755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -04205093 358.99758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7d8 -04205094 358.99761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd7e8 -04210332 359.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b98 -04210333 359.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b98 -04210334 359.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba8 -04210335 359.06991577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba8 -04210336 359.06994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb8 -04210337 359.06994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb8 -04210338 359.06997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc8 -04210339 359.06997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc8 -04210340 359.07000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd8 -04210341 359.07000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd8 -04210342 359.07003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be8 -04210343 359.07003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be8 -04210344 359.07006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf8 -04210345 359.07006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf8 -04210346 359.07006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c08 -04210347 359.07006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c08 -04210348 359.07009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c18 -04210349 359.07009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c18 -04210350 359.07012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c28 -04210351 359.07012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c28 -04210352 359.07015991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c38 -04210353 359.07015991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c38 -04210354 359.07019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c48 -04210355 359.07022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c48 -04210356 359.07022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c58 -04210357 359.07022095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c58 -04210358 359.07025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c68 -04210359 359.07025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c68 -04210360 359.07028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c78 -04210361 359.07028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c78 -04210362 359.07031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c88 -04210363 359.07031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c88 -04210364 359.07034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c98 -04210365 359.07034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c98 -04210366 359.07037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca8 -04210367 359.07037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca8 -04210368 359.07037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -04210369 359.07037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -04210370 359.07040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -04210371 359.07040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -04210372 359.07043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -04210373 359.07043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -04210374 359.07046509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -04210375 359.07046509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -04215256 359.13726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -04215257 359.13726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -04215258 359.13726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -04215259 359.13729858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -04215260 359.13732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -04215261 359.13732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -04215262 359.13735962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -04215263 359.13735962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -04215264 359.13739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -04215265 359.13739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -04215266 359.13742065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -04215267 359.13742065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -04215268 359.13742065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -04215269 359.13742065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -04215270 359.13745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -04215271 359.13745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -04215272 359.13748169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -04215273 359.13748169 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -04215274 359.13751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -04215275 359.13751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -04215276 359.13754272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -04215277 359.13754272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -04215278 359.13757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -04215279 359.13757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -04215280 359.13757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -04215281 359.13757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -04215282 359.13760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -04215283 359.13760376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -04215284 359.13763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -04215285 359.13763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -04215286 359.13766479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -04215287 359.13766479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -04215288 359.13769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -04215289 359.13769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -04215290 359.13772583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -04215291 359.13772583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -04215292 359.13772583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21698 -04215293 359.13772583 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21698 -04215294 359.13775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a8 -04215295 359.13775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a8 -04215296 359.13778687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b8 -04215297 359.13778687 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216b8 -04215298 359.13781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c8 -04215299 359.13781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x216c8 -04220244 359.20547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -04220245 359.20547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -04220246 359.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -04220247 359.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -04220248 359.20553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -04220249 359.20553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -04220250 359.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -04220251 359.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -04220252 359.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -04220253 359.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -04220254 359.20559692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -04220255 359.20559692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -04220256 359.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -04220257 359.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -04220258 359.20565796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -04220259 359.20565796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -04220260 359.20568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -04220261 359.20568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -04220262 359.20571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -04220263 359.20571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -04220264 359.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f8 -04220265 359.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f8 -04220266 359.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b208 -04220267 359.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b208 -04220268 359.20578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b218 -04220269 359.20578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b218 -04220270 359.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b228 -04220271 359.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b228 -04220272 359.20584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b238 -04220273 359.20584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b238 -04220274 359.20587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b248 -04220275 359.20590210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b248 -04220276 359.20590210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b258 -04220277 359.20590210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b258 -04220278 359.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b268 -04220279 359.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b268 -04220280 359.20596313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b278 -04220281 359.20596313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b278 -04220282 359.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b288 -04220283 359.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b288 -04220284 359.20602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b298 -04220285 359.20602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b298 -04220286 359.20605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a8 -04220287 359.20605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a8 -04236674 359.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c8 -04236675 359.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2c8 -04236676 359.43252563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d8 -04236677 359.43252563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2d8 -04236678 359.43255615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e8 -04236679 359.43255615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2e8 -04236680 359.43258667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f8 -04236681 359.43258667 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b2f8 -04236682 359.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -04236683 359.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b308 -04236684 359.43264771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -04236685 359.43264771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b318 -04236686 359.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -04236687 359.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b328 -04236688 359.43270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -04236689 359.43270874 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b338 -04236690 359.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -04236691 359.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b348 -04236692 359.43276978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -04236693 359.43276978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b358 -04236694 359.43276978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -04236695 359.43276978 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b368 -04236696 359.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -04236697 359.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b378 -04236698 359.43283081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -04236699 359.43283081 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b388 -04236700 359.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -04236701 359.43289185 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b398 -04236702 359.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -04236703 359.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3a8 -04236704 359.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -04236705 359.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3b8 -04236706 359.43295288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -04236707 359.43295288 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3c8 -04236708 359.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -04236709 359.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3d8 -04236710 359.43301392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -04236711 359.43301392 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3e8 -04236712 359.43304443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -04236713 359.43304443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b3f8 -04236714 359.43307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -04236715 359.43307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b408 -04236716 359.43307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -04236717 359.43307495 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b418 -04240600 360.28460693 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04240601 360.30538940 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240602 360.30538940 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240603 360.95101929 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04240604 360.95162964 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04240605 361.94952393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240606 361.94955444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240607 361.94958496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240608 361.94958496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04240609 361.94970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240610 361.94970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04240611 361.94976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240612 361.94979858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04240613 362.30636597 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04240614 362.32507324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240615 362.32510376 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240616 364.32601929 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04240617 364.34515381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240618 364.34518433 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240619 364.45678711 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240620 364.45681763 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240621 364.45681763 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04240622 364.45684814 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04240623 364.45700073 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240624 364.45700073 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04240625 364.45703125 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04240626 364.45706177 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04240627 364.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04240628 364.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04240629 364.48684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04240630 364.48684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04240631 364.48684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04240632 364.48684692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04240633 364.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04240634 364.48690796 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04240635 364.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04240636 364.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04240637 364.48696899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04240638 364.48696899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04240639 364.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04240640 364.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04240641 364.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04240642 364.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04240643 364.48703003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04240644 364.48703003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04240645 364.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04240646 364.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04240647 364.48709106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04240648 364.48709106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04240649 364.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04240650 364.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04240651 364.48715210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04240652 364.48715210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04240653 364.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04240654 364.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04240655 364.48721313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04240656 364.48721313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04240657 364.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04240658 364.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04240659 364.48727417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04240660 364.48727417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04240661 364.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04240662 364.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04240663 364.48733521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04240664 364.48733521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04240665 364.48733521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04240666 364.48733521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04240667 364.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04240668 364.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04240669 364.48739624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04240670 364.48739624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04240671 364.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04240672 364.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04240673 364.48745728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04240674 364.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04240675 364.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04240676 364.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04240677 364.48751831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04240678 364.48751831 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04240679 364.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04240680 364.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04240681 364.48757935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04240682 364.48757935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04240683 364.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04240684 364.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04240685 364.48764038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04240686 364.48764038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04240687 364.48764038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04240688 364.48764038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04240689 364.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04240690 364.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04240691 364.48770142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04240692 364.48770142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04240693 364.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04240694 364.48776245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04240695 364.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04240696 364.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04240697 364.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04240698 364.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04240699 364.48782349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04240700 364.48782349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04240701 364.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04240702 364.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04240703 364.48788452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04240704 364.48788452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04240705 364.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04240706 364.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04240707 364.48794556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04240708 364.48794556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04240709 364.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04240710 364.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04240711 364.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04240712 364.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04240713 364.48800659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04240714 364.48803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04240715 364.48806763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04240716 364.48806763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04240717 364.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04240718 364.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04240719 364.48812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04240720 364.48812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04240721 364.48812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04240722 364.48812866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04240723 364.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04240724 364.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04240725 364.48818970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04240726 364.48818970 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04240727 364.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04240728 364.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04240729 364.48825073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04240730 364.48825073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04240731 364.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04240732 364.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04240733 364.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04240734 364.48831177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04240735 364.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04240736 364.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04240737 364.48837280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04240738 364.48837280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04240739 364.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04240740 364.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04240741 364.48843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04240742 364.48843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04240743 364.48843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04240744 364.48843384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04240745 364.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04240746 364.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04240747 364.48849487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04240748 364.48849487 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04240749 364.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04240750 364.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04240751 364.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04240752 364.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04240753 364.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04240754 364.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04240755 364.48861694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04240756 364.48861694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04240757 364.48864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04240758 364.48867798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04240759 364.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04240760 364.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04240761 364.48873901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04240762 364.48873901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04240763 364.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04240764 364.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04240765 364.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04240766 364.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04240767 364.48880005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04240768 364.48880005 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04240769 364.48886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04240770 364.48886108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04240771 364.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04240772 364.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04240773 364.48892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04240774 364.48892212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04240775 364.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04240776 364.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04240777 364.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04240778 364.48898315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04240779 364.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04240780 364.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04240781 364.48904419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04240782 364.48904419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04240783 364.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04240784 364.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04240785 364.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04240786 364.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04240787 364.48910522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04240788 364.48913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04240789 364.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04240790 364.48916626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04240791 364.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04240792 364.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04240793 364.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04240794 364.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04240795 364.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04240796 364.48922729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04240797 364.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04240798 364.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04240799 364.48928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04240800 364.48928833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04240801 364.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04240802 364.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04240803 364.48934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04240804 364.48934937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04240805 364.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04240806 364.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04240807 364.48941040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04240808 364.48941040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04240809 364.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04240810 364.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04240811 364.48947144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04240812 364.48947144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04240813 364.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04240814 364.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04240815 364.48953247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04240816 364.48953247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04240817 364.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04240818 364.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04240819 364.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04240820 364.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04240821 364.48959351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04240822 364.48959351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04240823 364.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04240824 364.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04240825 364.48965454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04240826 364.48965454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04240827 364.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04240828 364.48971558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04240829 364.48971558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04240830 364.48971558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04240831 364.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04240832 364.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04240833 364.48977661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04240834 364.48977661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04240835 364.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04240836 364.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04240837 364.48983765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04240838 364.48983765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04240839 364.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04240840 364.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04240841 364.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04240842 364.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04240843 364.48989868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04240844 364.48989868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04240845 364.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04240846 364.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04240847 364.48995972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04240848 364.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04240849 364.49002075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04240850 364.49002075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04240851 364.49002075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04240852 364.49002075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04240853 364.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04240854 364.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04240855 364.49008179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04240856 364.49008179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04240857 364.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04240858 364.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04240859 364.49014282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04240860 364.49014282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04240861 364.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04240862 364.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04240863 364.49020386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04240864 364.49020386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04240865 364.49020386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04240866 364.49020386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04240867 364.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04240868 364.49026489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04240869 364.49029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04240870 364.49029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04240871 364.49032593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04240872 364.49032593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04240873 364.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04240874 364.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04240875 364.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04240876 364.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04240877 364.49038696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04240878 364.49038696 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04240879 364.49041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04240880 364.49041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04240881 364.49044800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04240882 364.49044800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04240883 364.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04240884 364.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04240885 364.49050903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04240886 364.49050903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04240887 364.49050903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04240888 364.49050903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04240889 364.49053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04240890 364.49057007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04240891 364.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04240892 364.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04240893 364.49063110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04240894 364.49063110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04240895 364.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04240896 364.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04240897 364.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04240898 364.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04240899 364.49069214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04240900 364.49069214 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04240901 364.49072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04240902 364.49072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04240903 364.49075317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04240904 364.49075317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04240905 364.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04240906 364.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04240907 364.49081421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04240908 364.49081421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04240909 364.49081421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04240910 364.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04240911 364.49087524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04240912 364.49087524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04240913 364.49090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04240914 364.49090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04240915 364.49093628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04240916 364.49093628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04240917 364.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04240918 364.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04240919 364.49099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04240920 364.49099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04240921 364.49099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04240922 364.49099731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04240923 364.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04240924 364.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04240925 364.49105835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04240926 364.49105835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04240927 364.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04240928 364.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04240929 364.49111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04240930 364.49111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04240931 364.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04240932 364.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04240933 364.49118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04240934 364.49118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04240935 364.49121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04240936 364.49121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04240937 364.49124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04240938 364.49124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04240939 364.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04240940 364.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04240941 364.49130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04240942 364.49130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04240943 364.49130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04240944 364.49130249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04240945 364.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04240946 364.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04240947 364.49136353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04240948 364.49136353 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04240949 364.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04240950 364.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04240951 364.49142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04240952 364.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04240953 364.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04240954 364.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04240955 364.49148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04240956 364.49148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04240957 364.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04240958 364.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04240959 364.49154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04240960 364.49154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04240961 364.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04240962 364.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04240963 364.49160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04240964 364.49160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04240965 364.49160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04240966 364.49160767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04240967 364.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04240968 364.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04240969 364.49166870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04240970 364.49166870 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04240971 364.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04240972 364.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04240973 364.49172974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04240974 364.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04240975 364.49179077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04240976 364.49179077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04240977 364.49179077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04240978 364.49179077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04240979 364.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04240980 364.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04240981 364.49185181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04240982 364.49185181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04240983 364.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04240984 364.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04240985 364.49191284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04240986 364.49191284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04240987 364.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04240988 364.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04240989 364.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04240990 364.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04240991 364.49197388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04240992 364.49197388 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04240993 364.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04240994 364.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04240995 364.49203491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04240996 364.49206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04240997 364.49209595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04240998 364.49209595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04240999 364.49209595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04241000 364.49209595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04241001 364.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04241002 364.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04241003 364.49215698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04241004 364.49215698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04241005 364.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04241006 364.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04241007 364.49221802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04241008 364.49221802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04241009 364.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04241010 364.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04241011 364.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04241012 364.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04241013 364.49227905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04241014 364.49227905 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04241015 364.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04241016 364.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04241017 364.49234009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04241018 364.49237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04241019 364.49240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04241020 364.49240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04241021 364.49240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04241022 364.49240112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04241023 364.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04241024 364.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04241025 364.49246216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04241026 364.49246216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04241027 364.49249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04241028 364.49249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04241029 364.49252319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04241030 364.49252319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04241031 364.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04241032 364.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04241033 364.49258423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04241034 364.49258423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04241035 364.49258423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04241036 364.49258423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04241037 364.49261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04241038 364.49264526 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04241039 364.49267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04241040 364.49267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04241041 364.49270630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04241042 364.49270630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04241043 364.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04241044 364.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04241045 364.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04241046 364.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04241047 364.49276733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04241048 364.49276733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04241049 364.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04241050 364.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04241051 364.49282837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04241052 364.49282837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04241053 364.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04241054 364.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04241055 364.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04241056 364.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04241057 364.49291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04241058 364.49291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04241059 364.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04241060 364.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04241061 364.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04241062 364.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04241063 364.49301147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04241064 364.49301147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04241065 364.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04241066 364.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04241067 364.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04241068 364.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04241069 364.49307251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04241070 364.49307251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04241071 364.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04241072 364.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04241073 364.49313354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04241074 364.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04241075 364.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04241076 364.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04241077 364.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04241078 364.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04241079 364.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04241080 364.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04241081 364.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04241082 364.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04241083 364.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04241084 364.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04241085 364.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04241086 364.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04241087 364.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04241088 364.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04241089 364.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04241090 364.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04241091 364.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04241092 364.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04241093 364.49343872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04241094 364.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04241095 364.49349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04241096 364.49349976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04241097 364.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04241098 364.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04241099 364.49356079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04241100 364.49356079 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04241101 364.49359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04241102 364.49362183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04241103 364.49365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04241104 364.49365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04241105 364.49368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04241106 364.49368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04241107 364.49368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04241108 364.49368286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04241109 364.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04241110 364.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04241111 364.49374390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04241112 364.49374390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04241113 364.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04241114 364.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04241115 364.49380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04241116 364.49380493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04241117 364.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04241118 364.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04241119 364.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04241120 364.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04241121 364.49386597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04241122 364.49389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04241123 364.49392700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04241124 364.49392700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04241125 364.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04241126 364.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04241127 364.49398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04241128 364.49398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04241129 364.49398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04241130 364.49398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04241131 364.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04241132 364.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04241133 364.49404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04241134 364.49404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04241135 364.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04241136 364.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04241137 364.49411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04241138 364.49411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04241139 364.49414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04241140 364.49414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04241141 364.49417114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04241142 364.49417114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04241143 364.49417114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04241144 364.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04241145 364.49423218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04241146 364.49423218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04241147 364.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04241148 364.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04241149 364.49429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04241150 364.49429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04241151 364.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04241152 364.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04241153 364.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04241154 364.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04241155 364.49435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04241156 364.49435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04241157 364.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04241158 364.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04241159 364.49441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04241160 364.49441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04241161 364.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04241162 364.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04241163 364.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04241164 364.49447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04241165 364.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04241166 364.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04241167 364.49453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04241168 364.49453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04241169 364.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04241170 364.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04241171 364.49459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04241172 364.49459839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04241173 364.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04241174 364.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04241175 364.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04241176 364.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04241177 364.49465942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04241178 364.49465942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04241179 364.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04241180 364.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04241181 364.49472046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04241182 364.49472046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04241183 364.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04241184 364.49478149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04241185 364.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04241186 364.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04241187 364.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04241188 364.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04241189 364.49484253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04241190 364.49484253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04241191 364.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04241192 364.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04241193 364.49490356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04241194 364.49490356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04241195 364.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04241196 364.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04241197 364.49496460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04241198 364.49496460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04241199 364.49496460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04241200 364.49499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04241201 364.49502563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04241202 364.49502563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04241203 364.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04241204 364.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04241205 364.49508667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04241206 364.49508667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04241207 364.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04241208 364.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04241209 364.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04241210 364.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04241211 364.49514771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04241212 364.49514771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04241213 364.49517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04241214 364.49517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04241215 364.49520874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04241216 364.49520874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04241217 364.49523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04241218 364.49523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04241219 364.49526978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04241220 364.49526978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04241221 364.49526978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04241222 364.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04241223 364.49533081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04241224 364.49533081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04241225 364.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04241226 364.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04241227 364.49539185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04241228 364.49539185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04241229 364.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04241230 364.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04241231 364.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04241232 364.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04241233 364.49545288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04241234 364.49545288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04241235 364.49548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04241236 364.49548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04241237 364.49551392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04241238 364.49551392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04241239 364.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04241240 364.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04241241 364.49557495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04241242 364.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04241243 364.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04241244 364.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04241245 364.49563599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04241246 364.49563599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04241247 364.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04241248 364.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04241249 364.49569702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04241250 364.49569702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04241251 364.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04241252 364.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04241253 364.49575806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04241254 364.49575806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04241255 364.49575806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04241256 364.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04241257 364.49581909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04241258 364.49581909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04241259 364.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04241260 364.49588013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04241261 364.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04241262 364.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04241263 364.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04241264 364.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04241265 364.49594116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04241266 364.49594116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04241267 364.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04241268 364.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04241269 364.49600220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04241270 364.49600220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04241271 364.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04241272 364.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04241273 364.49606323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04241274 364.49606323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04241275 364.49606323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04241276 364.49606323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04241277 364.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04241278 364.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04241279 364.49612427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04241280 364.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04241281 364.49618530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04241282 364.49618530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04241283 364.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04241284 364.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04241285 364.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04241286 364.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04241287 364.49624634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04241288 364.49624634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04241289 364.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04241290 364.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04241291 364.49630737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04241292 364.49630737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04241293 364.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04241294 364.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04241295 364.49636841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04241296 364.49636841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04241297 364.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04241298 364.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04241299 364.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04241300 364.49642944 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04241301 364.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04241302 364.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04241303 364.49649048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04241304 364.49649048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04241305 364.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04241306 364.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04241307 364.49655151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04241308 364.49655151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04241309 364.49655151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04241310 364.49655151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04241311 364.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04241312 364.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04241313 364.49661255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04241314 364.49661255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04241315 364.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04241316 364.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04241317 364.49667358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04241318 364.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04241319 364.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04241320 364.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04241321 364.49673462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04241322 364.49673462 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04241323 364.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04241324 364.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04241325 364.49679565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04241326 364.49679565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04241327 364.49682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04241328 364.49682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04241329 364.49685669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04241330 364.49685669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04241331 364.49685669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04241332 364.49685669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04241333 364.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04241334 364.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04241335 364.49691772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04241336 364.49691772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04241337 364.49694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04241338 364.49697876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04241339 364.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04241340 364.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04241341 364.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04241342 364.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04241343 364.49703979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04241344 364.49703979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04241345 364.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04241346 364.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04241347 364.49710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04241348 364.49710083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04241349 364.49713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04241350 364.49713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04241351 364.49716187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04241352 364.49716187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04241353 364.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04241354 364.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04241355 364.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04241356 364.49722290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04241357 364.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04241358 364.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04241359 364.49728394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04241360 364.49728394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04241361 364.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04241362 364.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04241363 364.49734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04241364 364.49734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04241365 364.49734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04241366 364.49734497 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04241367 364.49737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04241368 364.49737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04241369 364.49740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04241370 364.49740601 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04241371 364.49743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04241372 364.49743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04241373 364.49746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04241374 364.49746704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04241375 364.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04241376 364.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04241377 364.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04241378 364.49752808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04241379 364.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04241380 364.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04241381 364.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04241382 364.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04241383 364.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04241384 364.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04241385 364.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04241386 364.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04241387 364.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04241388 364.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04241389 364.49768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04241390 364.49768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04241391 364.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04241392 364.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04241393 364.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04241394 364.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04241395 364.49777222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04241396 364.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04241397 364.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04241398 364.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04241399 364.49783325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04241400 364.49783325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04241401 364.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04241402 364.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04241403 364.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04241404 364.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04241405 364.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04241406 364.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04241407 364.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04241408 364.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04241409 364.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04241410 364.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04241411 364.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04241412 364.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04241413 364.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04241414 364.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04241415 364.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04241416 364.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04241417 364.49807739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04241418 364.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04241419 364.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04241420 364.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04241421 364.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04241422 364.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04241423 364.49826050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04241424 364.49826050 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04241425 364.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04241426 364.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04241427 364.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04241428 364.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04241429 364.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04241430 364.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04241431 364.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04241432 364.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04241433 364.49838257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04241434 364.49838257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04241435 364.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04241436 364.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04241437 364.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04241438 364.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04241439 364.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04241440 364.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04241441 364.49850464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04241442 364.49850464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04241443 364.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04241444 364.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04241445 364.49856567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04241446 364.49856567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04241447 364.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04241448 364.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04241449 364.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04241450 364.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04241451 364.49862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04241452 364.49862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04241453 364.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04241454 364.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04241455 364.49868774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04241456 364.49868774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04241457 364.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04241458 364.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04241459 364.49874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04241460 364.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04241461 364.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04241462 364.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04241463 364.49880981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04241464 364.49880981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04241465 364.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04241466 364.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04241467 364.49887085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04241468 364.49887085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04241469 364.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04241470 364.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04241471 364.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04241472 364.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04241473 364.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04241474 364.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04241475 364.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04241476 364.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04241477 364.49899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04241478 364.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04241479 364.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04241480 364.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04241481 364.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04241482 364.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04241483 364.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04241484 364.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04241485 364.49911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04241486 364.49911499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04241487 364.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04241488 364.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04241489 364.49917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04241490 364.49917603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04241491 364.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04241492 364.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04241493 364.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04241494 364.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04241495 364.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04241496 364.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04241497 364.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04241498 364.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04241499 364.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04241500 364.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04241501 364.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04241502 364.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04241503 364.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04241504 364.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04241505 364.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04241506 364.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04241507 364.49942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04241508 364.49942017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04241509 364.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04241510 364.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04241511 364.49948120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04241512 364.49948120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04241513 364.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04241514 364.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04241515 364.49954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04241516 364.49954224 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04241517 364.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04241518 364.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04241519 364.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04241520 364.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04241521 364.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04241522 364.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04241523 364.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04241524 364.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04241525 364.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04241526 364.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04241527 364.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04241528 364.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04241529 364.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04241530 364.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04241531 364.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04241532 364.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04241533 364.49978638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04241534 364.49978638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04241535 364.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04241536 364.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04241537 364.49984741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04241538 364.49984741 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04241539 364.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04241540 364.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04241541 364.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04241542 364.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04241543 364.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04241544 364.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04241545 364.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04241546 364.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04241547 364.50000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04241548 364.50000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04241549 364.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04241550 364.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04241551 364.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04241552 364.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04241553 364.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04241554 364.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04241555 364.50009155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04241556 364.50009155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04241557 364.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04241558 364.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04241559 364.50015259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04241560 364.50015259 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04241561 364.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04241562 364.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04241563 364.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04241564 364.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04241565 364.50024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04241566 364.50024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04241567 364.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04241568 364.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04241569 364.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04241570 364.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04241571 364.50033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04241572 364.50033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04241573 364.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04241574 364.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04241575 364.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04241576 364.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04241577 364.50039673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04241578 364.50039673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04241579 364.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04241580 364.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04241581 364.50045776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04241582 364.50045776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04241583 364.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04241584 364.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04241585 364.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04241586 364.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04241587 364.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04241588 364.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04241589 364.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04241590 364.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04241591 364.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04241592 364.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04241593 364.50064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04241594 364.50064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04241595 364.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04241596 364.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04241597 364.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04241598 364.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04241599 364.50070190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04241600 364.50070190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04241601 364.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04241602 364.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04241603 364.50076294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04241604 364.50076294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04241605 364.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04241606 364.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04241607 364.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04241608 364.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04241609 364.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04241610 364.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04241611 364.50088501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04241612 364.50088501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04241613 364.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04241614 364.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04241615 364.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04241616 364.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04241617 364.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04241618 364.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04241619 364.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04241620 364.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04241621 364.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04241622 364.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04241623 364.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04241624 364.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04241625 364.50106812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04241626 364.50106812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04241627 364.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04241628 364.50112915 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04241629 364.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04241630 364.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04241631 364.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04241632 364.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04241633 364.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04241634 364.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04241635 364.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04241636 364.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04241637 364.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04241638 364.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04241639 364.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04241640 364.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04241641 364.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04241642 364.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04241643 364.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04241644 364.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04241645 364.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04241646 364.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04241647 364.50137329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04241648 364.50137329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04241649 364.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04241650 364.50143433 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04241651 364.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04241652 364.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04241653 364.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04241654 364.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04241655 364.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04241656 364.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04241657 364.50152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04241658 364.50152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04241659 364.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04241660 364.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04241661 364.50158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04241662 364.50158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04241663 364.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04241664 364.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04241665 364.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04241666 364.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04241667 364.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04241668 364.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04241669 364.50167847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04241670 364.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04241671 364.50173950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04241672 364.50173950 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04241673 364.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04241674 364.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04241675 364.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04241676 364.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04241677 364.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04241678 364.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04241679 364.50183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04241680 364.50183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04241681 364.50186157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04241682 364.50186157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04241683 364.50189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04241684 364.50189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04241685 364.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04241686 364.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04241687 364.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04241688 364.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04241689 364.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04241690 364.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04241691 364.50198364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04241692 364.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04241693 364.50204468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04241694 364.50204468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04241695 364.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04241696 364.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04241697 364.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04241698 364.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04241699 364.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04241700 364.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04241701 364.50213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04241702 364.50213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04241703 364.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04241704 364.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04241705 364.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04241706 364.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04241707 364.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04241708 364.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04241709 364.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04241710 364.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04241711 364.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04241712 364.50228882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04241713 364.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04241714 364.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04241715 364.50234985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04241716 364.50234985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04241717 364.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04241718 364.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04241719 364.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04241720 364.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04241721 364.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04241722 364.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04241723 364.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04241724 364.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04241725 364.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04241726 364.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04241727 364.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04241728 364.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04241729 364.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04241730 364.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04241731 364.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04241732 364.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04241733 364.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04241734 364.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04241735 364.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04241736 364.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04241737 364.50265503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04241738 364.50265503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04241739 364.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04241740 364.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04241741 364.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04241742 364.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04241743 364.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04241744 364.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04241745 364.50277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04241746 364.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04241747 364.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04241748 364.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04241749 364.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04241750 364.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04241751 364.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04241752 364.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04241753 364.50296021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04241754 364.50296021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04241755 364.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04241756 364.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04241757 364.50302124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04241758 364.50302124 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04241759 364.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04241760 364.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04241761 364.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04241762 364.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04241763 364.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04241764 364.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04241765 364.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04241766 364.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04241767 364.50314331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04241768 364.50317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04241769 364.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04241770 364.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04241771 364.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04241772 364.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04241773 364.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04241774 364.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04241775 364.50326538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04241776 364.50326538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04241777 364.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04241778 364.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04241779 364.50332642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04241780 364.50332642 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04241781 364.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04241782 364.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04241783 364.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04241784 364.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04241785 364.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04241786 364.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04241787 364.50341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04241788 364.50344849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04241789 364.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04241790 364.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04241791 364.50350952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04241792 364.50350952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04241793 364.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04241794 364.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04241795 364.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04241796 364.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04241797 364.50357056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04241798 364.50357056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04241799 364.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04241800 364.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04241801 364.50363159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04241802 364.50363159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04241803 364.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04241804 364.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04241805 364.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04241806 364.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04241807 364.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04241808 364.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04241809 364.50375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04241810 364.50375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04241811 364.50378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04241812 364.50378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04241813 364.50381470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04241814 364.50381470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04241815 364.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04241816 364.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04241817 364.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04241818 364.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04241819 364.50387573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04241820 364.50387573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04241821 364.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04241822 364.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04241823 364.50393677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04241824 364.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04241825 364.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04241826 364.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04241827 364.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04241828 364.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04241829 364.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04241830 364.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04241831 364.50405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04241832 364.50405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04241833 364.50408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04241834 364.50408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04241835 364.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04241836 364.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04241837 364.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04241838 364.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04241839 364.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04241840 364.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04241841 364.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04241842 364.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04241843 364.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04241844 364.50424194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04241845 364.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04241846 364.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04241847 364.50430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04241848 364.50430298 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04241849 364.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04241850 364.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04241851 364.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04241852 364.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04241853 364.50436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04241854 364.50436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04241855 364.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04241856 364.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04241857 364.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04241858 364.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04241859 364.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04241860 364.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04241861 364.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04241862 364.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04241863 364.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04241864 364.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04241865 364.50454712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04241866 364.50454712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04241867 364.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04241868 364.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04241869 364.50460815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04241870 364.50460815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04241871 364.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04241872 364.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04241873 364.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04241874 364.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04241875 364.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04241876 364.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04241877 364.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04241878 364.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04241879 364.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04241880 364.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04241881 364.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04241882 364.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04241883 364.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04241884 364.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04241885 364.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04241886 364.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04241887 364.50485229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04241888 364.50485229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04241889 364.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04241890 364.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04241891 364.50491333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04241892 364.50491333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04241893 364.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04241894 364.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04241895 364.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04241896 364.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04241897 364.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04241898 364.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04241899 364.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04241900 364.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04241901 364.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04241902 364.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04241903 364.50506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04241904 364.50509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04241905 364.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04241906 364.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04241907 364.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04241908 364.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04241909 364.50515747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04241910 364.50515747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04241911 364.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04241912 364.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04241913 364.50521851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04241914 364.50521851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04241915 364.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04241916 364.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04241917 364.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04241918 364.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04241919 364.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04241920 364.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04241921 364.50531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04241922 364.50534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04241923 364.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04241924 364.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04241925 364.50540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04241926 364.50540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04241927 364.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04241928 364.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04241929 364.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04241930 364.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04241931 364.50546265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04241932 364.50546265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04241933 364.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04241934 364.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04241935 364.50552368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04241936 364.50552368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04241937 364.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04241938 364.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04241939 364.50558472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04241940 364.50558472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04241941 364.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04241942 364.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04241943 364.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04241944 364.50564575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04241945 364.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04241946 364.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04241947 364.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04241948 364.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04241949 364.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04241950 364.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04241951 364.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04241952 364.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04241953 364.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04241954 364.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04241955 364.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04241956 364.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04241957 364.50582886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04241958 364.50582886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04241959 364.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04241960 364.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04241961 364.50588989 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04241962 364.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04241963 364.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04241964 364.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04241965 364.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04241966 364.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04241967 364.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04241968 364.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04241969 364.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04241970 364.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04241971 364.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04241972 364.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04241973 364.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04241974 364.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04241975 364.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04241976 364.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04241977 364.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04241978 364.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04241979 364.50613403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04241980 364.50613403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04241981 364.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04241982 364.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04241983 364.50619507 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04241984 364.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04241985 364.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04241986 364.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04241987 364.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04241988 364.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04241989 364.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04241990 364.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04241991 364.50631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04241992 364.50631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04241993 364.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04241994 364.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04241995 364.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04241996 364.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04241997 364.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04241998 364.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04241999 364.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04242000 364.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04242001 364.50643921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04242002 364.50643921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04242003 364.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04242004 364.50650024 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04242005 364.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04242006 364.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04242007 364.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04242008 364.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04242009 364.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04242010 364.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04242011 364.50659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04242012 364.50659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04242013 364.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04242014 364.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04242015 364.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04242016 364.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04242017 364.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04242018 364.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04242019 364.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04242020 364.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04242021 364.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04242022 364.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04242023 364.50674438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04242024 364.50674438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04242025 364.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04242026 364.50680542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04242027 364.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04242028 364.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04242029 364.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04242030 364.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04242031 364.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04242032 364.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04242033 364.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04242034 364.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04242035 364.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04242036 364.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04242037 364.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04242038 364.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04242039 364.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04242040 364.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04242041 364.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04242042 364.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04242043 364.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04242044 364.50704956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04242045 364.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04242046 364.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04242047 364.50711060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04242048 364.50711060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04242049 364.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04242050 364.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04242051 364.50717163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04242052 364.50717163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04242053 364.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04242054 364.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04242055 364.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04242056 364.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04242057 364.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04242058 364.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04242059 364.50726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04242060 364.50726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04242061 364.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04242062 364.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04242063 364.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04242064 364.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04242065 364.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04242066 364.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04242067 364.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04242068 364.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04242069 364.50741577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04242070 364.50741577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04242071 364.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04242072 364.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04242073 364.50747681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04242074 364.50747681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04242075 364.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04242076 364.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04242077 364.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04242078 364.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04242079 364.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04242080 364.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04242081 364.50756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04242082 364.50759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04242083 364.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04242084 364.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04242085 364.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04242086 364.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04242087 364.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04242088 364.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04242089 364.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04242090 364.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04242091 364.50772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04242092 364.50772095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04242093 364.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04242094 364.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04242095 364.50778198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04242096 364.50778198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04242097 364.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04242098 364.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04242099 364.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04242100 364.50784302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04242101 364.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04242102 364.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04242103 364.50790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04242104 364.50790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04242105 364.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04242106 364.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04242107 364.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04242108 364.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04242109 364.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04242110 364.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04242111 364.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04242112 364.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04242113 364.50802612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04242114 364.50802612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04242115 364.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04242116 364.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04242117 364.50808716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04242118 364.50808716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04242119 364.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04242120 364.50814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04242121 364.50814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04242122 364.50814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04242123 364.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04242124 364.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04242125 364.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04242126 364.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04242127 364.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04242128 364.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04242129 364.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04242130 364.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04242131 364.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04242132 364.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04242133 364.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04242134 364.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04242135 364.50833130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04242136 364.50833130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04242137 364.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04242138 364.50839233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04242139 364.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04242140 364.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04242141 364.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04242142 364.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04242143 364.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04242144 364.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04242145 364.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04242146 364.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04242147 364.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04242148 364.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04242149 364.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04242150 364.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04242151 364.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04242152 364.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04242153 364.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04242154 364.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04242155 364.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04242156 364.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04242157 364.50863647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04242158 364.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04242159 364.50869751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04242160 364.50869751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04242161 364.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04242162 364.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04242163 364.50875854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04242164 364.50875854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04242165 364.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04242166 364.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04242167 364.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04242168 364.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04242169 364.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04242170 364.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04242171 364.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04242172 364.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04242173 364.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04242174 364.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04242175 364.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04242176 364.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04242177 364.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04242178 364.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04242179 364.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04242180 364.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04242181 364.50900269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04242182 364.50900269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04242183 364.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04242184 364.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04242185 364.50906372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04242186 364.50906372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04242187 364.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04242188 364.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04242189 364.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04242190 364.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04242191 364.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04242192 364.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04242193 364.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04242194 364.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04242195 364.50918579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04242196 364.50918579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04242197 364.50921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04242198 364.50921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04242199 364.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04242200 364.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04242201 364.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04242202 364.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04242203 364.50930786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04242204 364.50930786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04242205 364.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04242206 364.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04242207 364.50936890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04242208 364.50936890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04242209 364.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04242210 364.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04242211 364.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04242212 364.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04242213 364.50942993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04242214 364.50942993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04242215 364.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04242216 364.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04242217 364.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04242218 364.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04242219 364.50952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04242220 364.50952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04242221 364.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04242222 364.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04242223 364.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04242224 364.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04242225 364.50961304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04242226 364.50961304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04242227 364.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04242228 364.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04242229 364.50967407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04242230 364.50967407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04242231 364.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04242232 364.50973511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04242233 364.50973511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04242234 364.50973511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04242235 364.50976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04242236 364.50976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04242237 364.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04242238 364.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04242239 364.50982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04242240 364.50982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04242241 364.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04242242 364.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04242243 364.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04242244 364.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04242245 364.50991821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04242246 364.50991821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04242247 364.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04242248 364.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04242249 364.50997925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04242250 364.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04242251 364.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04242252 364.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04242253 364.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04242254 364.51007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04242255 364.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04242256 364.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04242257 364.51013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04242258 364.51016235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04242259 364.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04242260 364.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04242261 364.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04242262 364.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04242263 364.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04242264 364.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04242265 364.51028442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04242266 364.51028442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04242267 364.51034546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04242268 364.51034546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04242269 364.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04242270 364.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04242271 364.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04242272 364.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04242273 364.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04242274 364.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04242275 364.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04242276 364.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04242277 364.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04242278 364.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04242279 364.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04242280 364.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04242281 364.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04242282 364.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04242283 364.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04242284 364.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04242285 364.51058960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04242286 364.51058960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04242287 364.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04242288 364.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04242289 364.51065063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04242290 364.51065063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04242291 364.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04242292 364.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04242293 364.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04242294 364.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04242295 364.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04242296 364.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04242297 364.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04242298 364.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04242299 364.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04242300 364.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04242301 364.51080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04242302 364.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04242303 364.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04242304 364.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04242305 364.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04242306 364.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04242307 364.51089478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04242308 364.51089478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04242309 364.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04242310 364.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04242311 364.51095581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04242312 364.51095581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04242313 364.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04242314 364.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04242315 364.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04242316 364.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04242317 364.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04242318 364.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04242319 364.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04242320 364.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04242321 364.51107788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04242322 364.51110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04242323 364.51113892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04242324 364.51113892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04242325 364.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04242326 364.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04242327 364.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04242328 364.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04242329 364.51119995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04242330 364.51119995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04242331 364.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04242332 364.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04242333 364.51126099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04242334 364.51129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04242335 364.51132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04242336 364.51132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04242337 364.51132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04242338 364.51132202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04242339 364.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04242340 364.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04242341 364.51138306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04242342 364.51138306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04242343 364.51141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04242344 364.51141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04242345 364.51144409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04242346 364.51144409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04242347 364.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04242348 364.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04242349 364.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04242350 364.51150513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04242351 364.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04242352 364.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04242353 364.51156616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04242354 364.51156616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04242355 364.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04242356 364.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04242357 364.51162720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04242358 364.51162720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04242359 364.51162720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04242360 364.51162720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04242361 364.51165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04242362 364.51165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04242363 364.51168823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04242364 364.51171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04242365 364.51174927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04242366 364.51174927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04242367 364.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04242368 364.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04242369 364.51181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04242370 364.51181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04242371 364.51181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04242372 364.51181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04242373 364.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04242374 364.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04242375 364.51187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04242376 364.51187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04242377 364.51190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04242378 364.51190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04242379 364.51193237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04242380 364.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04242381 364.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04242382 364.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04242383 364.51199341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04242384 364.51199341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04242385 364.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04242386 364.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04242387 364.51205444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04242388 364.51205444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04242389 364.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04242390 364.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04247040 364.57861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8a8 -04247041 364.57864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -04247042 364.57864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8b8 -04247043 364.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -04247044 364.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8c8 -04247045 364.57867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -04247046 364.57870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8d8 -04247047 364.57873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -04247048 364.57873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8e8 -04247049 364.57876587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -04247050 364.57876587 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd8f8 -04247051 364.57879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -04247052 364.57879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd908 -04247053 364.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -04247054 364.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd918 -04247055 364.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -04247056 364.57882690 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd928 -04247057 364.57885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -04247058 364.57885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd938 -04247059 364.57888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -04247060 364.57888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd948 -04247061 364.57891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -04247062 364.57891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd958 -04247063 364.57894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -04247064 364.57894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd968 -04247065 364.57897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -04247066 364.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -04247067 364.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -04247068 364.57901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -04247069 364.57904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -04247070 364.57904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -04247071 364.57907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -04247072 364.57907104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -04247073 364.57910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -04247074 364.57910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -04247075 364.57913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -04247076 364.57913208 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -04247077 364.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -04247078 364.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -04247079 364.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -04247080 364.57916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -04247081 364.57919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -04247082 364.57919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -04247083 364.57922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -04252975 364.66452026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19228 -04252976 364.66452026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19228 -04252977 364.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19238 -04252978 364.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19238 -04252979 364.66458130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19248 -04252980 364.66458130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19248 -04252981 364.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19258 -04252982 364.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19258 -04252983 364.66464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19268 -04252984 364.66464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19268 -04252985 364.66464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19278 -04252986 364.66464233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19278 -04252987 364.66467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19288 -04252988 364.66470337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19288 -04252989 364.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19298 -04252990 364.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19298 -04252991 364.66476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a8 -04252992 364.66476440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192a8 -04252993 364.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b8 -04252994 364.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b8 -04252995 364.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c8 -04252996 364.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c8 -04252997 364.66482544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d8 -04252998 364.66482544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d8 -04252999 364.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e8 -04253000 364.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e8 -04253001 364.66488647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f8 -04253002 364.66488647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f8 -04253003 364.66494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19308 -04253004 364.66494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19308 -04253005 364.66494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19318 -04253006 364.66494751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19318 -04253007 364.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19328 -04253008 364.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19328 -04253009 364.66500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19338 -04253010 364.66500854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19338 -04253011 364.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19348 -04253012 364.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19348 -04253013 364.66506958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19358 -04253014 364.66506958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19358 -04253015 364.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19368 -04253016 364.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19368 -04253017 364.66513062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19378 -04253018 364.66513062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19378 -04272345 364.93167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef78 -04272346 364.93167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef78 -04272347 364.93167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef88 -04272348 364.93167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef88 -04272349 364.93170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef98 -04272350 364.93170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef98 -04272351 364.93173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa8 -04272352 364.93173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efa8 -04272353 364.93176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb8 -04272354 364.93176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efb8 -04272355 364.93179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc8 -04272356 364.93179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efc8 -04272357 364.93182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd8 -04272358 364.93182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efd8 -04272359 364.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe8 -04272360 364.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3efe8 -04272361 364.93185425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff8 -04272362 364.93188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eff8 -04272363 364.93188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f008 -04272364 364.93191528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f008 -04272365 364.93194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f018 -04272366 364.93194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f018 -04272367 364.93197632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f028 -04272368 364.93197632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f028 -04272369 364.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f038 -04272370 364.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f038 -04272371 364.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f048 -04272372 364.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f048 -04272373 364.93203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f058 -04272374 364.93203735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f058 -04272375 364.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f068 -04272376 364.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f068 -04272377 364.93209839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f078 -04272378 364.93209839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f078 -04272379 364.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f088 -04272380 364.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f088 -04272381 364.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f098 -04272382 364.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f098 -04272383 364.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a8 -04272384 364.93215942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0a8 -04272385 364.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b8 -04272386 364.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0b8 -04272387 364.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c8 -04272388 364.93222046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f0c8 -04276838 364.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bd8 -04276839 364.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be8 -04276840 364.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47be8 -04276841 364.99398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf8 -04276842 364.99398804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47bf8 -04276843 364.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c08 -04276844 364.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c08 -04276845 364.99404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c18 -04276846 364.99404907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c18 -04276847 364.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c28 -04276848 364.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c28 -04276849 364.99411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c38 -04276850 364.99411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c38 -04276851 364.99411011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c48 -04276852 364.99414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c48 -04276853 364.99414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c58 -04276854 364.99417114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c58 -04276855 364.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c68 -04276856 364.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c68 -04276857 364.99423218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c78 -04276858 364.99423218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c78 -04276859 364.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c88 -04276860 364.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c88 -04276861 364.99429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c98 -04276862 364.99429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c98 -04276863 364.99429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca8 -04276864 364.99429321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca8 -04276865 364.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb8 -04276866 364.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb8 -04276867 364.99435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc8 -04276868 364.99435425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc8 -04276869 364.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd8 -04276870 364.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd8 -04276871 364.99441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce8 -04276872 364.99441528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce8 -04276873 364.99444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf8 -04276874 364.99444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf8 -04276875 364.99447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d08 -04276876 364.99447632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d08 -04276877 364.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d18 -04276878 364.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d18 -04276879 364.99453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d28 -04276880 364.99453735 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d28 -04276881 364.99456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d38 -04282513 365.83264160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -04282514 365.89501953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -04282515 366.09674072 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -04282516 366.09793091 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -04282517 366.34655762 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04282518 366.36694336 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282519 366.36694336 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282520 366.96313477 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282521 366.96316528 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282522 366.96319580 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282523 366.96319580 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04282524 366.96331787 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282525 366.96331787 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04282526 366.96337891 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282527 366.96340942 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04282528 368.36749268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04282529 368.38879395 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282530 368.38879395 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282531 369.46981812 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282532 369.46987915 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282533 369.46990967 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04282534 369.46990967 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04282535 369.47015381 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282536 369.47018433 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04282537 369.47024536 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04282538 369.47024536 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04282539 370.07443237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04282540 370.07443237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04282541 370.07443237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04282542 370.07443237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04282543 370.07449341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04282544 370.07449341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04282545 370.07452393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04282546 370.07452393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04282547 370.07455444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04282548 370.07455444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04282549 370.07458496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04282550 370.07458496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04282551 370.07464600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04282552 370.07464600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04282553 370.07467651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04282554 370.07470703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04282555 370.07473755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04282556 370.07473755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04282557 370.07473755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04282558 370.07473755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04282559 370.07476807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04282560 370.07476807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04282561 370.07479858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04282562 370.07479858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04282563 370.07482910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04282564 370.07482910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04282565 370.07489014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04282566 370.07489014 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04282567 370.07492065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04282568 370.07492065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04282569 370.07492065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04282570 370.07492065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04282571 370.07495117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04282572 370.07495117 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04282573 370.07498169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04282574 370.07498169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04282575 370.07501221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04282576 370.07504272 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04282577 370.07507324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04282578 370.07507324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04282579 370.07507324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04282580 370.07507324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04282581 370.07510376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04282582 370.07510376 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04282583 370.07513428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04282584 370.07513428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04282585 370.07516479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04282586 370.07516479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04282587 370.07519531 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04282588 370.07522583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04282589 370.07522583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04282590 370.07522583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04282591 370.07525635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04282592 370.07525635 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04282593 370.07531738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04282594 370.07531738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04282595 370.07534790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04282596 370.07534790 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04282597 370.07537842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04282598 370.07537842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04282599 370.07540894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04282600 370.07540894 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04282601 370.07543945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04282602 370.07543945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04282603 370.07546997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04282604 370.07546997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04282605 370.07550049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04282606 370.07550049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04282607 370.07553101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04282608 370.07553101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04282609 370.07553101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04282610 370.07553101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04282611 370.07556152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04282612 370.07556152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04282613 370.07559204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04282614 370.07559204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04282615 370.07562256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04282616 370.07562256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04282617 370.07565308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04282618 370.07568359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04282619 370.07571411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04282620 370.07571411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04282621 370.07571411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04282622 370.07571411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04282623 370.07574463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04282624 370.07574463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04282625 370.07577515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04282626 370.07577515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04282627 370.07580566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04282628 370.07580566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04282629 370.07583618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04282630 370.07583618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04282631 370.07586670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04282632 370.07586670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04282633 370.07586670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04282634 370.07586670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04282635 370.07589722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04282636 370.07589722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04282637 370.07592773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04282638 370.07595825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04282639 370.07598877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04282640 370.07598877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04282641 370.07601929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04282642 370.07601929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04282643 370.07601929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04282644 370.07601929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04282645 370.07604980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04282646 370.07608032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04282647 370.07611084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04282648 370.07611084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04282649 370.07614136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04282650 370.07614136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04282651 370.07617188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04282652 370.07617188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04282653 370.07617188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04282654 370.07617188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04282655 370.07620239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04282656 370.07620239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04282657 370.07623291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04282658 370.07623291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04282659 370.07626343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04282660 370.07626343 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04282661 370.07629395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04282662 370.07629395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04282663 370.07632446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04282664 370.07632446 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04282665 370.07635498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04282666 370.07635498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04282667 370.07638550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04282668 370.07638550 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04282669 370.07641602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04282670 370.07644653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04282671 370.07647705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04282672 370.07647705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04282673 370.07650757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04282674 370.07650757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04282675 370.07650757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04282676 370.07650757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04282677 370.07653809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04282678 370.07653809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04282679 370.07656860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04282680 370.07656860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04282681 370.07659912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04282682 370.07659912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04282683 370.07662964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04282684 370.07662964 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04282685 370.07666016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04282686 370.07666016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04282687 370.07666016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04282688 370.07666016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04282689 370.07669067 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04282690 370.07672119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04282691 370.07675171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04282692 370.07675171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04282693 370.07678223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04282694 370.07678223 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04282695 370.07681274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04282696 370.07681274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04282697 370.07681274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04282698 370.07681274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04282699 370.07684326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04282700 370.07684326 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04282701 370.07687378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04282702 370.07687378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04282703 370.07690430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04282704 370.07690430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04282705 370.07693481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04282706 370.07693481 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04282707 370.07696533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04282708 370.07696533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04282709 370.07696533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04282710 370.07699585 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04282711 370.07702637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04282712 370.07702637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04282713 370.07705688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04282714 370.07705688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04282715 370.07708740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04282716 370.07708740 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04282717 370.07711792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04282718 370.07711792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04282719 370.07711792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04282720 370.07711792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04282721 370.07714844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04282722 370.07714844 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04282723 370.07717896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04282724 370.07717896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04282725 370.07720947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04282726 370.07720947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04282727 370.07723999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04282728 370.07723999 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04282729 370.07727051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04282730 370.07730103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04282731 370.07730103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04282732 370.07730103 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04282733 370.07733154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04282734 370.07733154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04282735 370.07736206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04282736 370.07736206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04282737 370.07739258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04282738 370.07739258 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04282739 370.07742310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04282740 370.07742310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04282741 370.07745361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04282742 370.07745361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04282743 370.07745361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04282744 370.07745361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04282745 370.07748413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04282746 370.07748413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04282747 370.07751465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04282748 370.07751465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04282749 370.07754517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04282750 370.07757568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04282751 370.07760620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04282752 370.07760620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04282753 370.07760620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04282754 370.07760620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04282755 370.07763672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04282756 370.07763672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04282757 370.07766724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04282758 370.07766724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04282759 370.07769775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04282760 370.07769775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04282761 370.07772827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04282762 370.07772827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04282763 370.07775879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04282764 370.07775879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04282765 370.07775879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04282766 370.07775879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04282767 370.07778931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04282768 370.07778931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04282769 370.07781982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04282770 370.07785034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04282771 370.07788086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04282772 370.07788086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04282773 370.07791138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04282774 370.07791138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04282775 370.07791138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04282776 370.07791138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04282777 370.07794189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04282778 370.07794189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04282779 370.07797241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04282780 370.07797241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04282781 370.07800293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04282782 370.07800293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04282783 370.07803345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04282784 370.07803345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04282785 370.07806396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04282786 370.07806396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04282787 370.07809448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04282788 370.07809448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04282789 370.07809448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04282790 370.07809448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04282791 370.07812500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04282792 370.07815552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04282793 370.07818604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04282794 370.07818604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04282795 370.07821655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04282796 370.07821655 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04282797 370.07824707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04282798 370.07824707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04282799 370.07824707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04282800 370.07824707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04282801 370.07827759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04282802 370.07827759 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04282803 370.07830811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04282804 370.07830811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04282805 370.07833862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04282806 370.07833862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04282807 370.07836914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04282808 370.07836914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04282809 370.07839966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04282810 370.07839966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04282811 370.07839966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04282812 370.07843018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04282813 370.07846069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04282814 370.07846069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04282815 370.07849121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04282816 370.07849121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04282817 370.07852173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04282818 370.07852173 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04282819 370.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04282820 370.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04282821 370.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04282822 370.07855225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04282823 370.07858276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04282824 370.07858276 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04282825 370.07861328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04282826 370.07861328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04282827 370.07864380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04282828 370.07864380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04282829 370.07867432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04282830 370.07867432 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04282831 370.07870483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04282832 370.07870483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04282833 370.07873535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04282834 370.07873535 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04282835 370.07876587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04282836 370.07876587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04282837 370.07879639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04282838 370.07879639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04282839 370.07882690 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04282840 370.07885742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04282841 370.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04282842 370.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04282843 370.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04282844 370.07888794 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04282845 370.07891846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04282846 370.07891846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04282847 370.07897949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04282848 370.07897949 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04282849 370.07901001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04282850 370.07901001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04282851 370.07904053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04282852 370.07904053 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04282853 370.07910156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04282854 370.07910156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04282855 370.07913208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04282856 370.07913208 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04282857 370.07916260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04282858 370.07919312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04282859 370.07919312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04282860 370.07919312 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04282861 370.07922363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04282862 370.07922363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04282863 370.07925415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04282864 370.07925415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04282865 370.07928467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04282866 370.07928467 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04282867 370.07931519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04282868 370.07931519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04282869 370.07934570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04282870 370.07934570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04282871 370.07934570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04282872 370.07934570 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04282873 370.07937622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04282874 370.07937622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04282875 370.07940674 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04282876 370.07943726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04282877 370.07946777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04282878 370.07946777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04282879 370.07949829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04282880 370.07949829 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04282881 370.07952881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04282882 370.07952881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04282883 370.07952881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04282884 370.07952881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04282885 370.07962036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04282886 370.07962036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04282887 370.07965088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04282888 370.07965088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04282889 370.07968140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04282890 370.07968140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04282891 370.07968140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04282892 370.07968140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04282893 370.07971191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04282894 370.07974243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04282895 370.07977295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04282896 370.07977295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04282897 370.07980347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04282898 370.07980347 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04282899 370.07983398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04282900 370.07983398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04282901 370.07983398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04282902 370.07983398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04282903 370.07986450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04282904 370.07986450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04282905 370.07989502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04282906 370.07989502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04282907 370.07992554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04282908 370.07992554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04282909 370.07995605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04282910 370.07995605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04282911 370.07998657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04282912 370.07998657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04282913 370.07998657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04282914 370.08001709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04282915 370.08004761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04282916 370.08004761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04282917 370.08007813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04282918 370.08007813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04282919 370.08010864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04282920 370.08010864 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04282921 370.08013916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04282922 370.08013916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04282923 370.08013916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04282924 370.08013916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04282925 370.08016968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04282926 370.08016968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04282927 370.08020020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04282928 370.08020020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04282929 370.08023071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04282930 370.08023071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04282931 370.08026123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04282932 370.08026123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04282933 370.08029175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04282934 370.08032227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04282935 370.08032227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04282936 370.08032227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04282937 370.08035278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04282938 370.08035278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04282939 370.08038330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04282940 370.08038330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04282941 370.08041382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04282942 370.08041382 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04282943 370.08044434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04282944 370.08044434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04282945 370.08047485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04282946 370.08047485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04282947 370.08047485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04282948 370.08047485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04282949 370.08050537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04282950 370.08050537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04282951 370.08053589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04282952 370.08053589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04282953 370.08056641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04282954 370.08059692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04282955 370.08062744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04282956 370.08062744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04282957 370.08062744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04282958 370.08062744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04282959 370.08065796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04282960 370.08065796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04282961 370.08068848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04282962 370.08068848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04282963 370.08071899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04282964 370.08071899 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04282965 370.08074951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04282966 370.08074951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04282967 370.08078003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04282968 370.08078003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04282969 370.08078003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04282970 370.08078003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04282971 370.08081055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04282972 370.08081055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04282973 370.08084106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04282974 370.08087158 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04282975 370.08090210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04282976 370.08090210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04282977 370.08093262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04282978 370.08093262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04282979 370.08093262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04282980 370.08093262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04282981 370.08096313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04282982 370.08096313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04282983 370.08099365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04282984 370.08099365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04282985 370.08105469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04282986 370.08105469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04282987 370.08108521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04282988 370.08108521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04282989 370.08111572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04282990 370.08111572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04282991 370.08111572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04282992 370.08111572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04282993 370.08114624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04282994 370.08117676 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04282995 370.08120728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04282996 370.08120728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04282997 370.08126831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04282998 370.08126831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04282999 370.08129883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04283000 370.08129883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04283001 370.08132935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04283002 370.08132935 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04283003 370.08135986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04283004 370.08135986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04283005 370.08139038 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04283006 370.08142090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04283007 370.08142090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04283008 370.08142090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04283009 370.08145142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04283010 370.08145142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04283011 370.08148193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04283012 370.08148193 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04283013 370.08151245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04283014 370.08151245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04283015 370.08154297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04283016 370.08154297 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04283017 370.08157349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04283018 370.08157349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04283019 370.08157349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04283020 370.08157349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04283021 370.08160400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04283022 370.08160400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04283023 370.08163452 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04283024 370.08166504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04283025 370.08169556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04283026 370.08169556 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04283027 370.08172607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04283028 370.08172607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04283029 370.08172607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04283030 370.08172607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04283031 370.08175659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04283032 370.08175659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04283033 370.08178711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04283034 370.08178711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04283035 370.08181763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04283036 370.08181763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04283037 370.08184814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04283038 370.08184814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04283039 370.08187866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04283040 370.08187866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04283041 370.08190918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04283042 370.08190918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04283043 370.08193970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04283044 370.08193970 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04283045 370.08197021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04283046 370.08197021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04283047 370.08200073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04283048 370.08200073 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04283049 370.08203125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04283050 370.08203125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04283051 370.08206177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04283052 370.08206177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04283053 370.08206177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04283054 370.08206177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04283055 370.08209229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04283056 370.08209229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04283057 370.08212280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04283058 370.08212280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04283059 370.08215332 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04283060 370.08218384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04283061 370.08221436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04283062 370.08221436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04283063 370.08221436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04283064 370.08221436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04283065 370.08224487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04283066 370.08224487 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04283067 370.08227539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04283068 370.08227539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04283069 370.08230591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04283070 370.08230591 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04283071 370.08233643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04283072 370.08233643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04283073 370.08236694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04283074 370.08236694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04283075 370.08236694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04283076 370.08236694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04283077 370.08239746 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04283078 370.08242798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04283079 370.08245850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04283080 370.08245850 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04283081 370.08248901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04283082 370.08248901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04283083 370.08251953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04283084 370.08251953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04283085 370.08251953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04283086 370.08251953 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04283087 370.08255005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04283088 370.08255005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04283089 370.08258057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04283090 370.08258057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04283091 370.08261108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04283092 370.08261108 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04283093 370.08264160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04283094 370.08264160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04283095 370.08267212 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04283096 370.08270264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04283097 370.08270264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04283098 370.08270264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04283099 370.08273315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04283100 370.08273315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04283101 370.08276367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04283102 370.08276367 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04283103 370.08279419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04283104 370.08279419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04283105 370.08282471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04283106 370.08282471 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04283107 370.08285522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04283108 370.08285522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04283109 370.08288574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04283110 370.08288574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04283111 370.08291626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04283112 370.08291626 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04283113 370.08294678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04283114 370.08294678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04283115 370.08297729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04283116 370.08297729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04283117 370.08300781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04283118 370.08300781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04283119 370.08300781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04283120 370.08300781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04283121 370.08303833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04283122 370.08303833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04283123 370.08306885 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04283124 370.08309937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04283125 370.08312988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04283126 370.08312988 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04283127 370.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04283128 370.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04283129 370.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04283130 370.08316040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04283131 370.08319092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04283132 370.08319092 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04283133 370.08322144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04283134 370.08322144 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04283135 370.08325195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04283136 370.08325195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04283137 370.08328247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04283138 370.08328247 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04283139 370.08331299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04283140 370.08331299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04283141 370.08331299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04283142 370.08331299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04283143 370.08334351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04283144 370.08337402 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04283145 370.08340454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04283146 370.08340454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04283147 370.08343506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04283148 370.08343506 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04283149 370.08346558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04283150 370.08346558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04283151 370.08349609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04283152 370.08349609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04283153 370.08349609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04283154 370.08349609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04283155 370.08352661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04283156 370.08352661 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04283157 370.08355713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04283158 370.08355713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04283159 370.08358765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04283160 370.08358765 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04283161 370.08361816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04283162 370.08361816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04283163 370.08364868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04283164 370.08364868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04283165 370.08367920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04283166 370.08367920 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04283167 370.08370972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04283168 370.08370972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04283169 370.08374023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04283170 370.08374023 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04283171 370.08377075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04283172 370.08377075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04283173 370.08380127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04283174 370.08380127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04283175 370.08380127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04283176 370.08380127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04283177 370.08383179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04283178 370.08383179 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04283179 370.08386230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04283180 370.08386230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04283181 370.08389282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04283182 370.08389282 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04283183 370.08392334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04283184 370.08392334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04283185 370.08395386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04283186 370.08395386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04283187 370.08398438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04283188 370.08398438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04283189 370.08401489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04283190 370.08401489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04283191 370.08404541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04283192 370.08404541 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04283193 370.08407593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04283194 370.08407593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04283195 370.08410645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04283196 370.08410645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04283197 370.08410645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04283198 370.08410645 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04283199 370.08416748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04283200 370.08416748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04283201 370.08419800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04283202 370.08419800 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04283203 370.08422852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04283204 370.08422852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04283205 370.08425903 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04283206 370.08425903 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04283207 370.08428955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04283208 370.08428955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04283209 370.08432007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04283210 370.08432007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04283211 370.08435059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04283212 370.08435059 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04283213 370.08438110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04283214 370.08438110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04283215 370.08441162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04283216 370.08441162 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04283217 370.08444214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04283218 370.08444214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04283219 370.08444214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04283220 370.08444214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04283221 370.08447266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04283222 370.08447266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04283223 370.08450317 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04283224 370.08450317 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04283225 370.08453369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04283226 370.08453369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04283227 370.08456421 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04283228 370.08459473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04283229 370.08459473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04283230 370.08459473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04283231 370.08462524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04283232 370.08462524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04283233 370.08465576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04283234 370.08465576 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04283235 370.08468628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04283236 370.08468628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04283237 370.08471680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04283238 370.08471680 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04283239 370.08474731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04283240 370.08474731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04283241 370.08474731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04283242 370.08474731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04283243 370.08477783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04283244 370.08477783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04283245 370.08480835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04283246 370.08480835 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04283247 370.08483887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04283248 370.08483887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04283249 370.08486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04283250 370.08489990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04283251 370.08493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04283252 370.08493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04283253 370.08493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04283254 370.08493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04283255 370.08496094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04283256 370.08496094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04283257 370.08499146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04283258 370.08499146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04283259 370.08502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04283260 370.08502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04283261 370.08505249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04283262 370.08505249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04283263 370.08508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04283264 370.08508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04283265 370.08508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04283266 370.08508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04283267 370.08511353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04283268 370.08511353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04283269 370.08514404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04283270 370.08514404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04283271 370.08517456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04283272 370.08520508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04283273 370.08523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04283274 370.08523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04283275 370.08523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04283276 370.08523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04283277 370.08526611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04283278 370.08526611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04283279 370.08529663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04283280 370.08529663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04283281 370.08532715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04283282 370.08532715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04283283 370.08535767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04283284 370.08535767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04283285 370.08538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04283286 370.08538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04283287 370.08538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04283288 370.08538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04283289 370.08541870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04283290 370.08541870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04283291 370.08544922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04283292 370.08547974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04283293 370.08551025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04283294 370.08551025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04283295 370.08554077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04283296 370.08554077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04283297 370.08554077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04283298 370.08554077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04283299 370.08557129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04283300 370.08557129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04283301 370.08560181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04283302 370.08560181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04283303 370.08563232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04283304 370.08563232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04283305 370.08566284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04283306 370.08566284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04283307 370.08569336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04283308 370.08569336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04283309 370.08572388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04283310 370.08572388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04283311 370.08572388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04283312 370.08572388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04283313 370.08575439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04283314 370.08578491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04283315 370.08581543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04283316 370.08581543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04283317 370.08584595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04283318 370.08584595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04283319 370.08587646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04283320 370.08587646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04283321 370.08587646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04283322 370.08587646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04283323 370.08593750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04283324 370.08593750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04283325 370.08596802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04283326 370.08596802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04283327 370.08602905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04283328 370.08602905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04283329 370.08602905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04283330 370.08602905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04283331 370.08609009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04283332 370.08609009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04283333 370.08612061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04283334 370.08612061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04283335 370.08615112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04283336 370.08615112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04283337 370.08618164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04283338 370.08618164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04283339 370.08621216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04283340 370.08621216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04283341 370.08624268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04283342 370.08624268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04283343 370.08627319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04283344 370.08627319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04283345 370.08630371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04283346 370.08630371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04283347 370.08633423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04283348 370.08633423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04283349 370.08633423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04283350 370.08633423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04283351 370.08636475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04283352 370.08636475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04283353 370.08639526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04283354 370.08639526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04283355 370.08642578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04283356 370.08645630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04283357 370.08648682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04283358 370.08648682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04283359 370.08651733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04283360 370.08651733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04283361 370.08651733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04283362 370.08651733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04283363 370.08654785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04283364 370.08654785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04283365 370.08657837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04283366 370.08657837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04283367 370.08660889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04283368 370.08660889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04283369 370.08663940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04283370 370.08663940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04283371 370.08666992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04283372 370.08666992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04283373 370.08666992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04283374 370.08670044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04283375 370.08673096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04283376 370.08673096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04283377 370.08676147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04283378 370.08679199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04283379 370.08682251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04283380 370.08682251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04283381 370.08682251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04283382 370.08682251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04283383 370.08685303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04283384 370.08685303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04283385 370.08688354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04283386 370.08688354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04283387 370.08691406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04283388 370.08694458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04283389 370.08697510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04283390 370.08697510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04283391 370.08697510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04283392 370.08697510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04283393 370.08700562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04283394 370.08700562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04283395 370.08703613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04283396 370.08703613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04283397 370.08706665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04283398 370.08706665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04283399 370.08709717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04283400 370.08709717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04283401 370.08712769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04283402 370.08712769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04283403 370.08712769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04283404 370.08712769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04283405 370.08715820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04283406 370.08715820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04283407 370.08718872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04283408 370.08718872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04283409 370.08721924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04283410 370.08724976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04283411 370.08728027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04283412 370.08728027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04283413 370.08731079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04283414 370.08731079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04283415 370.08731079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04283416 370.08731079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04283417 370.08734131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04283418 370.08734131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04283419 370.08737183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04283420 370.08737183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04283421 370.08740234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04283422 370.08740234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04283423 370.08743286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04283424 370.08743286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04283425 370.08746338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04283426 370.08746338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04283427 370.08746338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04283428 370.08746338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04283429 370.08749390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04283430 370.08752441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04283431 370.08755493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04283432 370.08755493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04283433 370.08758545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04283434 370.08758545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04283435 370.08761597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04283436 370.08761597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04283437 370.08761597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04283438 370.08761597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04283439 370.08764648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04283440 370.08764648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04283441 370.08767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04283442 370.08767700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04283443 370.08770752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04283444 370.08770752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04283445 370.08773804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04283446 370.08773804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04283447 370.08776855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04283448 370.08776855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04283449 370.08776855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04283450 370.08776855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04283451 370.08786011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04283452 370.08786011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04283453 370.08789063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04283454 370.08789063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04283455 370.08792114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04283456 370.08792114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04283457 370.08792114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04283458 370.08792114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04283459 370.08795166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04283460 370.08795166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04283461 370.08798218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04283462 370.08798218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04283463 370.08801270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04283464 370.08801270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04283465 370.08804321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04283466 370.08804321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04283467 370.08807373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04283468 370.08810425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04283469 370.08810425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04283470 370.08810425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04283471 370.08813477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04283472 370.08813477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04283473 370.08816528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04283474 370.08816528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04283475 370.08819580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04283476 370.08819580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04283477 370.08822632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04283478 370.08822632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04283479 370.08825684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04283480 370.08825684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04283481 370.08828735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04283482 370.08828735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04283483 370.08831787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04283484 370.08831787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04283485 370.08834839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04283486 370.08834839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04283487 370.08837891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04283488 370.08840942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04283489 370.08840942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04283490 370.08840942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04283491 370.08850098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04283492 370.08850098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04283493 370.08853149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04283494 370.08853149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04283495 370.08856201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04283496 370.08856201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04283497 370.08856201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04283498 370.08856201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04283499 370.08859253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04283500 370.08859253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04283501 370.08862305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04283502 370.08862305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04283503 370.08865356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04283504 370.08868408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04283505 370.08871460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04283506 370.08871460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04283507 370.08871460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04283508 370.08871460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04283509 370.08874512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04283510 370.08874512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04283511 370.08877563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04283512 370.08877563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04283513 370.08880615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04283514 370.08883667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04283515 370.08886719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04283516 370.08886719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04283517 370.08889771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04283518 370.08889771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04283519 370.08889771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04283520 370.08889771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04283521 370.08892822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04283522 370.08892822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04283523 370.08895874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04283524 370.08895874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04283525 370.08898926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04283526 370.08898926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04283527 370.08901978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04283528 370.08901978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04283529 370.08905029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04283530 370.08905029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04283531 370.08905029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04283532 370.08908081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04283533 370.08911133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04283534 370.08911133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04283535 370.08914185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04283536 370.08914185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04283537 370.08917236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04283538 370.08917236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04283539 370.08920288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04283540 370.08920288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04283541 370.08920288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04283542 370.08920288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04283543 370.08923340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04283544 370.08923340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04283545 370.08926392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04283546 370.08926392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04283547 370.08929443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04283548 370.08932495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04283549 370.08935547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04283550 370.08935547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04283551 370.08935547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04283552 370.08935547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04283553 370.08938599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04283554 370.08938599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04283555 370.08941650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04283556 370.08941650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04283557 370.08944702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04283558 370.08944702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04283559 370.08947754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04283560 370.08947754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04283561 370.08950806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04283562 370.08950806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04283563 370.08950806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04283564 370.08950806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04283565 370.08956909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04283566 370.08956909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04283567 370.08959961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04283568 370.08959961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04283569 370.08963013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04283570 370.08963013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04283571 370.08966064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04283572 370.08966064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04283573 370.08969116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04283574 370.08969116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04283575 370.08969116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04283576 370.08969116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04283577 370.08972168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04283578 370.08972168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04283579 370.08975220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04283580 370.08975220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04283581 370.08978271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04283582 370.08981323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04283583 370.08984375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04283584 370.08984375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04283585 370.08984375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04283586 370.08984375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04283587 370.08987427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04283588 370.08987427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04283589 370.08990479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04283590 370.08990479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04283591 370.08993530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04283592 370.08993530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04283593 370.08996582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04283594 370.08996582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04283595 370.08999634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04283596 370.08999634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04283597 370.08999634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04283598 370.08999634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04283599 370.09002686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04283600 370.09005737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04283601 370.09008789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04283602 370.09008789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04283603 370.09011841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04283604 370.09011841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04283605 370.09014893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04283606 370.09014893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04283607 370.09014893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04283608 370.09014893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04283609 370.09017944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04283610 370.09017944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04283611 370.09020996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04283612 370.09020996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04283613 370.09024048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04283614 370.09024048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04283615 370.09027100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04283616 370.09030151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04283617 370.09033203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04283618 370.09033203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04283619 370.09033203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04283620 370.09033203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04283621 370.09036255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04283622 370.09036255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04283623 370.09039307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04283624 370.09039307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04283625 370.09042358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04283626 370.09042358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04283627 370.09045410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04283628 370.09045410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04283629 370.09048462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04283630 370.09048462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04283631 370.09048462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04283632 370.09048462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04283633 370.09051514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04283634 370.09051514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04283635 370.09054565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04283636 370.09057617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04283637 370.09060669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04283638 370.09060669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04283639 370.09063721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04283640 370.09063721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04283641 370.09063721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04283642 370.09063721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04283643 370.09066772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04283644 370.09066772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04283645 370.09069824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04283646 370.09069824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04283647 370.09072876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04283648 370.09072876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04283649 370.09075928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04283650 370.09075928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04283651 370.09078979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04283652 370.09078979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04283653 370.09078979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04283654 370.09082031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04283655 370.09085083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04283656 370.09085083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04283657 370.09088135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04283658 370.09088135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04283659 370.09091187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04283660 370.09091187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04283661 370.09094238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04283662 370.09094238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04283663 370.09094238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04283664 370.09094238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04283665 370.09097290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04283666 370.09097290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04283667 370.09100342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04283668 370.09100342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04283669 370.09103394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04283670 370.09103394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04283671 370.09106445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04283672 370.09106445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04283673 370.09109497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04283674 370.09112549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04283675 370.09112549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04283676 370.09112549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04283677 370.09115601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04283678 370.09115601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04283679 370.09118652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04283680 370.09118652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04283681 370.09121704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04283682 370.09121704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04283683 370.09124756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04283684 370.09124756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04283685 370.09127808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04283686 370.09127808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04283687 370.09127808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04283688 370.09127808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04283689 370.09130859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04283690 370.09130859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04283691 370.09133911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04283692 370.09133911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04283693 370.09136963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04283694 370.09140015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04283695 370.09143066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04283696 370.09143066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04283697 370.09143066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04283698 370.09143066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04283699 370.09146118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04283700 370.09146118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04283701 370.09149170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04283702 370.09149170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04283703 370.09152222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04283704 370.09152222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04283705 370.09155273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04283706 370.09155273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04283707 370.09158325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04283708 370.09158325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04283709 370.09158325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04283710 370.09158325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04283711 370.09161377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04283712 370.09161377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04283713 370.09164429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04283714 370.09164429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04283715 370.09167480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04283716 370.09170532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04283717 370.09173584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04283718 370.09173584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04283719 370.09173584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04283720 370.09173584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04283721 370.09176636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04283722 370.09176636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04283723 370.09179688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04283724 370.09179688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04283725 370.09182739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04283726 370.09182739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04283727 370.09185791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04283728 370.09185791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04283729 370.09191895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04283730 370.09191895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04283731 370.09191895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04283732 370.09191895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04283733 370.09194946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04283734 370.09194946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04283735 370.09197998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04283736 370.09197998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04283737 370.09201050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04283738 370.09201050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04283739 370.09204102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04283740 370.09204102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04283741 370.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04283742 370.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04283743 370.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04283744 370.09210205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04283745 370.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04283746 370.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04283747 370.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04283748 370.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04283749 370.09219360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04283750 370.09219360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04283751 370.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04283752 370.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04283753 370.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04283754 370.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04283755 370.09225464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04283756 370.09225464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04283757 370.09228516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04283758 370.09228516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04283759 370.09231567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04283760 370.09231567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04283761 370.09234619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04283762 370.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04283763 370.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04283764 370.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04283765 370.09240723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04283766 370.09240723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04283767 370.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04283768 370.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04283769 370.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04283770 370.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04283771 370.09249878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04283772 370.09249878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04283773 370.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04283774 370.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04283775 370.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04283776 370.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04283777 370.09255981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04283778 370.09255981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04283779 370.09259033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04283780 370.09259033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04283781 370.09262085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04283782 370.09265137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04283783 370.09265137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04283784 370.09268188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04283785 370.09271240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04283786 370.09271240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04283787 370.09271240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04283788 370.09271240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04283789 370.09274292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04283790 370.09274292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04283791 370.09277344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04283792 370.09277344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04283793 370.09280396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04283794 370.09280396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04283795 370.09286499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04283796 370.09286499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04283797 370.09286499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04283798 370.09289551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04283799 370.09292603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04283800 370.09292603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04283801 370.09298706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04283802 370.09298706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04283803 370.09301758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04283804 370.09301758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04283805 370.09301758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04283806 370.09301758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04283807 370.09304810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04283808 370.09304810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04283809 370.09307861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04283810 370.09307861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04283811 370.09310913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04283812 370.09310913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04283813 370.09313965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04283814 370.09313965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04283815 370.09317017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04283816 370.09317017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04283817 370.09317017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04283818 370.09320068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04283819 370.09320068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04283820 370.09323120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04283821 370.09326172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04283822 370.09326172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04283823 370.09329224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04283824 370.09329224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04283825 370.09332275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04283826 370.09332275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04283827 370.09332275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04283828 370.09332275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04283829 370.09335327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04283830 370.09335327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04283831 370.09338379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04283832 370.09338379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04283833 370.09341431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04283834 370.09341431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04283835 370.09344482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04283836 370.09344482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04283837 370.09347534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04283838 370.09350586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04283839 370.09350586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04283840 370.09350586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04283841 370.09353638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04283842 370.09353638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04283843 370.09356689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04283844 370.09356689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04283845 370.09359741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04283846 370.09359741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04283847 370.09362793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04283848 370.09362793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04283849 370.09365845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04283850 370.09365845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04283851 370.09365845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04283852 370.09365845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04283853 370.09368896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04283854 370.09368896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04283855 370.09371948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04283856 370.09371948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04283857 370.09375000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04283858 370.09375000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04283859 370.09378052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04283860 370.09381104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04283861 370.09381104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04283862 370.09381104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04283863 370.09384155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04283864 370.09384155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04283865 370.09387207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04283866 370.09387207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04283867 370.09390259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04283868 370.09390259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04283869 370.09393311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04283870 370.09393311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04283871 370.09396362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04283872 370.09396362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04283873 370.09396362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04283874 370.09396362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04283875 370.09399414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04283876 370.09399414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04283877 370.09402466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04283878 370.09402466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04283879 370.09405518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04283880 370.09405518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04283881 370.09408569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04283882 370.09411621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04283883 370.09411621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04283884 370.09411621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04283885 370.09414673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04283886 370.09414673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04283887 370.09417725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04283888 370.09417725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04283889 370.09420776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04283890 370.09420776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04283891 370.09423828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04283892 370.09423828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04283893 370.09426880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04283894 370.09426880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04283895 370.09429932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04283896 370.09429932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04283897 370.09429932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04283898 370.09429932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04283899 370.09432983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04283900 370.09432983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04283901 370.09436035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04283902 370.09439087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04283903 370.09442139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04283904 370.09442139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04283905 370.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04283906 370.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04283907 370.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04283908 370.09445190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04283909 370.09448242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04283910 370.09448242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04283911 370.09451294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04283912 370.09451294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04283913 370.09454346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04283914 370.09454346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04283915 370.09457397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04283916 370.09457397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04283917 370.09460449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04283918 370.09460449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04283919 370.09460449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04283920 370.09460449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04283921 370.09463501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04283922 370.09463501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04283923 370.09466553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04283924 370.09469604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04283925 370.09472656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04283926 370.09472656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04283927 370.09475708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04283928 370.09475708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04283929 370.09475708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04283930 370.09475708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04283931 370.09478760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04283932 370.09478760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04283933 370.09481812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04283934 370.09481812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04283935 370.09484863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04283936 370.09487915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04283937 370.09490967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04283938 370.09490967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04283939 370.09490967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04283940 370.09490967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04283941 370.09494019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04283942 370.09494019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04283943 370.09497070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04283944 370.09497070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04283945 370.09500122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04283946 370.09500122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04283947 370.09503174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04283948 370.09503174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04283949 370.09506226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04283950 370.09506226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04283951 370.09509277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04283952 370.09509277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04283953 370.09509277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04283954 370.09512329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04283955 370.09515381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04283956 370.09515381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04283957 370.09518433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04283958 370.09518433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04283959 370.09521484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04283960 370.09521484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04283961 370.09524536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04283962 370.09524536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04283963 370.09524536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04283964 370.09524536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04283965 370.09527588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04283966 370.09527588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04283967 370.09530640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04283968 370.09530640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04283969 370.09533691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04283970 370.09533691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04283971 370.09536743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04283972 370.09539795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04283973 370.09539795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04283974 370.09539795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04283975 370.09542847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04283976 370.09542847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04283977 370.09545898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04283978 370.09545898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04283979 370.09548950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04283980 370.09548950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04283981 370.09552002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04283982 370.09552002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04283983 370.09555054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04283984 370.09555054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04283985 370.09555054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04283986 370.09555054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04283987 370.09558105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04283988 370.09561157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04283989 370.09564209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04283990 370.09564209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04283991 370.09567261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04283992 370.09567261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04283993 370.09570313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04283994 370.09570313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04283995 370.09573364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04283996 370.09573364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04283997 370.09573364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04283998 370.09573364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04283999 370.09576416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04284000 370.09576416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04284001 370.09579468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04284002 370.09579468 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04284003 370.09585571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04284004 370.09585571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04284005 370.09588623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04284006 370.09588623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04284007 370.09588623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04284008 370.09588623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04284009 370.09591675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04284010 370.09591675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04284011 370.09594727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04284012 370.09594727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04284013 370.09597778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04284014 370.09597778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04284015 370.09600830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04284016 370.09600830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04284017 370.09603882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04284018 370.09603882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04284019 370.09603882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04284020 370.09603882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04284021 370.09609985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04284022 370.09609985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04284023 370.09613037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04284024 370.09613037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04284025 370.09616089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04284026 370.09616089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04284027 370.09619141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04284028 370.09619141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04284029 370.09619141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04284030 370.09619141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04284031 370.09622192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04284032 370.09622192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04284033 370.09625244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04284034 370.09625244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04284035 370.09628296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04284036 370.09628296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04284037 370.09631348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04284038 370.09631348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04284039 370.09634399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04284040 370.09634399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04284041 370.09637451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04284042 370.09637451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04284043 370.09640503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04284044 370.09640503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04284045 370.09643555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04284046 370.09643555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04284047 370.09646606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04284048 370.09646606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04284049 370.09652710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04284050 370.09652710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04284051 370.09652710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04284052 370.09655762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04284053 370.09658813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04284054 370.09658813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04284055 370.09661865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04284056 370.09661865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04284057 370.09664917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04284058 370.09664917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04284059 370.09667969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04284060 370.09667969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04284061 370.09667969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04284062 370.09667969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04284063 370.09671021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04284064 370.09671021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04284065 370.09674072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04284066 370.09674072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04284067 370.09677124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04284068 370.09677124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04284069 370.09680176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04284070 370.09680176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04284071 370.09683228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04284072 370.09683228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04284073 370.09686279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04284074 370.09686279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04284075 370.09689331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04284076 370.09689331 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04284077 370.09692383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04284078 370.09692383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04284079 370.09695435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04284080 370.09695435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04284081 370.09698486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04284082 370.09698486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04284083 370.09698486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04284084 370.09698486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04284085 370.09701538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04284086 370.09701538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04284087 370.09704590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04284088 370.09704590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04284089 370.09710693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04284090 370.09710693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04284091 370.09713745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04284092 370.09713745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04284093 370.09713745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04284094 370.09713745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04284095 370.09716797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04284096 370.09716797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04284097 370.09719849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04284098 370.09719849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04284099 370.09722900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04284100 370.09722900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04284101 370.09725952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04284102 370.09725952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04284103 370.09729004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04284104 370.09729004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04284105 370.09732056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04284106 370.09732056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04284107 370.09732056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04284108 370.09735107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04284109 370.09738159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04284110 370.09738159 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04284111 370.09741211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04284112 370.09741211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04284113 370.09744263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04284114 370.09744263 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04284115 370.09747314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04284116 370.09747314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04284117 370.09747314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04284118 370.09747314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04284119 370.09750366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04284120 370.09750366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04284121 370.09753418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04284122 370.09753418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04284123 370.09756470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04284124 370.09756470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04284125 370.09759521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04284126 370.09759521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04284127 370.09762573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04284128 370.09762573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04284129 370.09765625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04284130 370.09765625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04284131 370.09768677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04284132 370.09768677 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04284133 370.09771729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04284134 370.09771729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04284135 370.09774780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04284136 370.09774780 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04284137 370.09777832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04284138 370.09777832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04284139 370.09777832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04284140 370.09777832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04284141 370.09780884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04284142 370.09780884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04284143 370.09783936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04284144 370.09783936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04284145 370.09786987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04284146 370.09786987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04284147 370.09790039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04284148 370.09793091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04284149 370.09793091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04284150 370.09793091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04284151 370.09796143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04284152 370.09796143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04284153 370.09799194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04284154 370.09799194 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04284155 370.09802246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04284156 370.09802246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04284157 370.09805298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04284158 370.09805298 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04284159 370.09808350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04284160 370.09808350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04284161 370.09811401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04284162 370.09811401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04284163 370.09811401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04284164 370.09811401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04284165 370.09814453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04284166 370.09814453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04284167 370.09817505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04284168 370.09820557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04284169 370.09823608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04284170 370.09823608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04284171 370.09826660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04284172 370.09826660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04284173 370.09826660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04284174 370.09826660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04284175 370.09829712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04284176 370.09829712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04284177 370.09832764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04284178 370.09832764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04284179 370.09835815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04284180 370.09835815 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04284181 370.09838867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04284182 370.09838867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04284183 370.09841919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04284184 370.09841919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04284185 370.09841919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04284186 370.09841919 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04284187 370.09844971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04284188 370.09848022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04284189 370.09851074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04284190 370.09851074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04284191 370.09854126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04284192 370.09854126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04284193 370.09857178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04284194 370.09857178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04284195 370.09857178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04284196 370.09857178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04284197 370.09860229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04284198 370.09860229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04284199 370.09863281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04284200 370.09863281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04284201 370.09866333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04284202 370.09866333 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04284203 370.09869385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04284204 370.09869385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04284205 370.09872437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04284206 370.09872437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04284207 370.09872437 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04284208 370.09875488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04284209 370.09878540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04284210 370.09878540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04284211 370.09881592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04284212 370.09881592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04284213 370.09884644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04284214 370.09884644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04284215 370.09887695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04284216 370.09887695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04284217 370.09890747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04284218 370.09890747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04284219 370.09890747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04284220 370.09890747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04284221 370.09893799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04284222 370.09893799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04284223 370.09896851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04284224 370.09896851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04284225 370.09899902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04284226 370.09899902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04284227 370.09902954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04284228 370.09902954 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04284229 370.09906006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04284230 370.09906006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04284231 370.09909058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04284232 370.09909058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04284233 370.09912109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04284234 370.09912109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04284235 370.09915161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04284236 370.09915161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04284237 370.09918213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04284238 370.09918213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04284239 370.09921265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04284240 370.09921265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04284241 370.09921265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04284242 370.09921265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04284243 370.09924316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04284244 370.09924316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04284245 370.09927368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04284246 370.09927368 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04284247 370.09930420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04284248 370.09930420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04284249 370.09933472 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04284250 370.09936523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04284251 370.09936523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04284252 370.09936523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04284253 370.09939575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04284254 370.09939575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04284255 370.09942627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04284256 370.09942627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04284257 370.09945679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04284258 370.09945679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04284259 370.09948730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04284260 370.09948730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04284261 370.09951782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04284262 370.09951782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04284263 370.09951782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04284264 370.09951782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04284265 370.09954834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04284266 370.09954834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04284267 370.09957886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04284268 370.09957886 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04284269 370.09960938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04284270 370.09963989 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04284271 370.09967041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04284272 370.09967041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04284273 370.09970093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04284274 370.09970093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04284275 370.09970093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04284276 370.09970093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04284277 370.09973145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04284278 370.09973145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04284279 370.09976196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04284280 370.09976196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04284281 370.09982300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04284282 370.09982300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04284283 370.09985352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04284284 370.09985352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04284285 370.09988403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04284286 370.09988403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04284287 370.09994507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04284288 370.09994507 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04284289 370.09997559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04284290 370.09997559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04284291 370.10000610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04284292 370.10000610 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04284293 370.10003662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04284294 370.10003662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04284295 370.10009766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04284296 370.10009766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04284297 370.10012817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04284298 370.10012817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04284299 370.10015869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04284300 370.10015869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04284301 370.10015869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04284302 370.10018921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04284303 370.10021973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04284304 370.10021973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04284305 370.10025024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04284306 370.10025024 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04284307 370.10028076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04284308 370.10028076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04284309 370.10031128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04284310 370.10031128 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04284311 370.10034180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04284312 370.10034180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04284313 370.10037231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04284314 370.10037231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04284315 370.10040283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04284316 370.10040283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04284317 370.10043335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04284318 370.10043335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04284319 370.10046387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04284320 370.10046387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04284321 370.10049438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04284322 370.10049438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04284323 370.10049438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04284324 370.10049438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04284325 370.10052490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04284326 370.10052490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04284327 370.10055542 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04284328 370.10058594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04284329 370.10061646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04284330 370.10061646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04284331 370.10064697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04284332 370.10064697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04284333 370.10064697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04284334 370.10064697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04284335 370.10067749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04284336 370.10067749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04284337 370.10070801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04284338 370.10070801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04284339 370.10073853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04284340 370.10073853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04284341 370.10076904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04284342 370.10076904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04285559 370.11898804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -04285560 370.11898804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -04285561 370.11901855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -04285562 370.11901855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -04285563 370.11904907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -04285564 370.11904907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -04285565 370.11907959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -04285566 370.11907959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -04285567 370.11911011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -04285568 370.11911011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -04285569 370.11914063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -04285570 370.11914063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -04285571 370.11917114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -04285572 370.11917114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -04285573 370.11920166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -04285574 370.11920166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -04285575 370.11923218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -04285576 370.11923218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -04285577 370.11926270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -04285578 370.11926270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -04285579 370.11929321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -04285580 370.11929321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -04285581 370.11932373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -04285582 370.11932373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -04285583 370.11935425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -04285584 370.11935425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -04285585 370.11938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -04285586 370.11938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -04285587 370.11938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -04285588 370.11938477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -04285589 370.11941528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -04285590 370.11941528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -04285591 370.11944580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -04285592 370.11944580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -04285593 370.11947632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -04285594 370.11947632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -04285595 370.11950684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -04285596 370.11953735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -04285597 370.11953735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -04285598 370.11953735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -04285599 370.11956787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -04285600 370.11956787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -04285601 370.11959839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -04285602 370.11959839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -04291076 370.19918823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b08 -04291077 370.19921875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -04291078 370.19921875 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -04291079 370.19924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -04291080 370.19924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -04291081 370.19927979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -04291082 370.19927979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -04291083 370.19931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b48 -04291084 370.19931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b48 -04291085 370.19931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b58 -04291086 370.19931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b58 -04291087 370.19934082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b68 -04291088 370.19937134 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b68 -04291089 370.19940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b78 -04291090 370.19940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b78 -04291091 370.19943237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b88 -04291092 370.19943237 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b88 -04291093 370.19946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b98 -04291094 370.19946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b98 -04291095 370.19946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba8 -04291096 370.19946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ba8 -04291097 370.19949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb8 -04291098 370.19949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bb8 -04291099 370.19952393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc8 -04291100 370.19952393 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bc8 -04291101 370.19955444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd8 -04291102 370.19955444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bd8 -04291103 370.19958496 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be8 -04291104 370.19961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11be8 -04291105 370.19961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf8 -04291106 370.19961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11bf8 -04291107 370.19964600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c08 -04291108 370.19964600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c08 -04291109 370.19967651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c18 -04291110 370.19967651 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c18 -04291111 370.19970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -04291112 370.19970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -04291113 370.19973755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -04291114 370.19973755 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -04291115 370.19976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -04291116 370.19976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -04291117 370.19976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -04291118 370.19976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -04291119 370.19979858 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c68 -04307776 370.43826294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -04307777 370.43829346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -04307778 370.43832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -04307779 370.43832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -04307780 370.43835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -04307781 370.43835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -04307782 370.43838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -04307783 370.43838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -04307784 370.43838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -04307785 370.43838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -04307786 370.43841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -04307787 370.43841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -04307788 370.43844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32538 -04307789 370.43844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32538 -04307790 370.43847656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32548 -04307791 370.43847656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32548 -04307792 370.43850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32558 -04307793 370.43850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32558 -04307794 370.43853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32568 -04307795 370.43853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32568 -04307796 370.43856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32578 -04307797 370.43856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32578 -04307798 370.43856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32588 -04307799 370.43859863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32588 -04307800 370.43862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32598 -04307801 370.43862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32598 -04307802 370.43865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a8 -04307803 370.43865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325a8 -04307804 370.43869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b8 -04307805 370.43869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325b8 -04307806 370.43872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c8 -04307807 370.43872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325c8 -04307808 370.43872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d8 -04307809 370.43872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325d8 -04307810 370.43875122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e8 -04307811 370.43875122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325e8 -04307812 370.43878174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f8 -04307813 370.43878174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x325f8 -04307814 370.43881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32608 -04307815 370.43881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32608 -04307816 370.43884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32618 -04307817 370.43884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32618 -04307818 370.43887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32628 -04307819 370.43887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32628 -04312038 370.49896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -04312039 370.49896240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -04312040 370.49899292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -04312041 370.49899292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -04312042 370.49902344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -04312043 370.49902344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -04312044 370.49905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -04312045 370.49905396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -04312046 370.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -04312047 370.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -04312048 370.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -04312049 370.49908447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -04312050 370.49911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -04312051 370.49911499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -04312052 370.49917603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -04312053 370.49917603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -04312054 370.49920654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -04312055 370.49920654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -04312056 370.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -04312057 370.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -04312058 370.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -04312059 370.49923706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -04312060 370.49926758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -04312061 370.49926758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -04312062 370.49929810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -04312063 370.49929810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -04312064 370.49932861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -04312065 370.49932861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -04312066 370.49935913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae8 -04312067 370.49935913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae8 -04312068 370.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf8 -04312069 370.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf8 -04312070 370.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab08 -04312071 370.49938965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab08 -04312072 370.49942017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab18 -04312073 370.49942017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab18 -04312074 370.49945068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab28 -04312075 370.49945068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab28 -04312076 370.49948120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab38 -04312077 370.49948120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab38 -04312078 370.49951172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab48 -04312079 370.49951172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab48 -04312080 370.49954224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -04312081 370.49954224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab58 -04318002 370.58486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -04318003 370.58486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -04318004 370.58486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -04318005 370.58486938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -04318006 370.58489990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -04318007 370.58489990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -04318008 370.58493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -04318009 370.58493042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -04318010 370.58496094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -04318011 370.58496094 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -04318012 370.58499146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -04318013 370.58499146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -04318014 370.58502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -04318015 370.58502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -04318016 370.58502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -04318017 370.58502197 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -04318018 370.58508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -04318019 370.58508301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -04318020 370.58511353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -04318021 370.58511353 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -04318022 370.58514404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -04318023 370.58514404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -04318024 370.58517456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -04318025 370.58517456 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -04318026 370.58520508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -04318027 370.58520508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -04318028 370.58520508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -04318029 370.58520508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46538 -04318030 370.58523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -04318031 370.58523560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46548 -04318032 370.58526611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -04318033 370.58526611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46558 -04318034 370.58529663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -04318035 370.58529663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46568 -04318036 370.58532715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -04318037 370.58535767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46578 -04318038 370.58535767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -04318039 370.58535767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46588 -04318040 370.58538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -04318041 370.58538818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46598 -04318042 370.58541870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -04318043 370.58541870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x465a8 -04318044 370.58544922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -04318045 370.58544922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x465b8 -04323732 370.66918945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51778 -04323733 370.66921997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51778 -04323734 370.66921997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51788 -04323735 370.66921997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51788 -04323736 370.66925049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51798 -04323737 370.66925049 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51798 -04323738 370.66931152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a8 -04323739 370.66931152 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517a8 -04323740 370.66934204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b8 -04323741 370.66934204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517b8 -04323742 370.66940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c8 -04323743 370.66940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517c8 -04323744 370.66940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d8 -04323745 370.66940308 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517d8 -04323746 370.66946411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e8 -04323747 370.66946411 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517e8 -04323748 370.66949463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f8 -04323749 370.66949463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x517f8 -04323750 370.66952515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51808 -04323751 370.66952515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51808 -04323752 370.66955566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51818 -04323753 370.66955566 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51818 -04323754 370.66958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51828 -04323755 370.66958618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51828 -04323756 370.66961670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51838 -04323757 370.66961670 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51838 -04323758 370.66964722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51848 -04323759 370.66967773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51848 -04323760 370.66970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -04323761 370.66970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -04323762 370.66970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -04323763 370.66970825 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -04323764 370.66973877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -04323765 370.66973877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -04323766 370.66976929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -04323767 370.66976929 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -04323768 370.66979980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -04323769 370.66979980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -04323770 370.66983032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -04323771 370.66983032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -04323772 370.66986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -04323773 370.66986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -04323774 370.66986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -04323775 370.66986084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -04324428 371.97616577 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04324429 371.97619629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04324430 371.97622681 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04324431 371.97625732 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04324432 371.97634888 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04324433 371.97634888 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04324434 371.97640991 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04324435 371.97644043 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04324436 372.30761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04324437 372.30761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04324438 372.30764771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04324439 372.30764771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04324440 372.30767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04324441 372.30767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04324442 372.30770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04324443 372.30770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04324444 372.30773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04324445 372.30773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04324446 372.30776978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04324447 372.30780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04324448 372.30780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04324449 372.30780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04324450 372.30783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04324451 372.30783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04324452 372.30786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04324453 372.30786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04324454 372.30789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04324455 372.30789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04324456 372.30792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04324457 372.30792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04324458 372.30795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04324459 372.30795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04324460 372.30795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04324461 372.30795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04324462 372.30798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04324463 372.30801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04324464 372.30804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04324465 372.30804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04324466 372.30807495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04324467 372.30807495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04324468 372.30810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04324469 372.30810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04324470 372.30813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04324471 372.30813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04324472 372.30813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04324473 372.30813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04324474 372.30816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04324475 372.30816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04324476 372.30819702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04324477 372.30819702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04324478 372.30822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04324479 372.30822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04324480 372.30825806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04324481 372.30825806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04324482 372.30828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04324483 372.30828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04324484 372.30831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04324485 372.30831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04324486 372.30834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04324487 372.30834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04324488 372.30838013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04324489 372.30838013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04324490 372.30841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04324491 372.30841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04324492 372.30844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04324493 372.30844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04324494 372.30844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04324495 372.30844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04324496 372.30847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04324497 372.30847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04324498 372.30850220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04324499 372.30850220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04324500 372.30853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04324501 372.30853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04324502 372.30856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04324503 372.30859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04324504 372.30859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04324505 372.30859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04324506 372.30862427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04324507 372.30862427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04324508 372.30865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04324509 372.30865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04324510 372.30868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04324511 372.30868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04324512 372.30871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04324513 372.30871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04324514 372.30874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04324515 372.30874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04324516 372.30877686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04324517 372.30877686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04324518 372.30883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04324519 372.30883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04324520 372.30886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04324521 372.30886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04324522 372.30889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04324523 372.30892944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04324524 372.30892944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04324525 372.30892944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04324526 372.30895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04324527 372.30895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04324528 372.30899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04324529 372.30899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04324530 372.30902100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04324531 372.30902100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04324532 372.30905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04324533 372.30905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04324534 372.30908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04324535 372.30908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04324536 372.30908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04324537 372.30908203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04324538 372.30911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04324539 372.30911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04324540 372.30914307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04324541 372.30914307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04324542 372.30917358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04324543 372.30920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04324544 372.30923462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04324545 372.30923462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04324546 372.30923462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04324547 372.30923462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04324548 372.30926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04324549 372.30926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04324550 372.30929565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04324551 372.30929565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04324552 372.30932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04324553 372.30932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04324554 372.30935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04324555 372.30935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04324556 372.30938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04324557 372.30938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04324558 372.30938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04324559 372.30938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04324560 372.30944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04324561 372.30944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04324562 372.30947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04324563 372.30947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04324564 372.30950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04324565 372.30950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04324566 372.30953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04324567 372.30953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04324568 372.30957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04324569 372.30957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04324570 372.30960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04324571 372.30960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04324572 372.30963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04324573 372.30963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04324574 372.30966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04324575 372.30966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04324576 372.30969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04324577 372.30969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04324578 372.30972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04324579 372.30972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04324580 372.30972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04324581 372.30972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04324582 372.30978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04324583 372.30978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04324584 372.30981445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04324585 372.30981445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04324586 372.30987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04324587 372.30987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04324588 372.30987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04324589 372.30987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04324590 372.30990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04324591 372.30990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04324592 372.30993652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04324593 372.30996704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04324594 372.30999756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04324595 372.30999756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04324596 372.31002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04324597 372.31002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04324598 372.31002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04324599 372.31002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04324600 372.31005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04324601 372.31005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04324602 372.31008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04324603 372.31008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04324604 372.31011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04324605 372.31011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04324606 372.31015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04324607 372.31015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04324608 372.31018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04324609 372.31018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04324610 372.31018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04324611 372.31018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04324612 372.31021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04324613 372.31024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04324614 372.31027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04324615 372.31027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04324616 372.31030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04324617 372.31030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04324618 372.31033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04324619 372.31033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04324620 372.31036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04324621 372.31036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04324622 372.31036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04324623 372.31036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04324624 372.31039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04324625 372.31039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04324626 372.31042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04324627 372.31042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04324628 372.31045532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04324629 372.31045532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04324630 372.31048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04324631 372.31048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04324632 372.31051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04324633 372.31051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04324634 372.31054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04324635 372.31054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04324636 372.31057739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04324637 372.31057739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04324638 372.31060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04324639 372.31060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04324640 372.31063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04324641 372.31063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04324642 372.31066895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04324643 372.31066895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04324644 372.31066895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04324645 372.31066895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04324646 372.31069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04324647 372.31069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04324648 372.31072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04324649 372.31072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04324650 372.31082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04324651 372.31082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04324652 372.31082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04324653 372.31082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04324654 372.31085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04324655 372.31085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04324656 372.31088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04324657 372.31088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04324658 372.31091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04324659 372.31091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04324660 372.31094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04324661 372.31094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04324662 372.31097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04324663 372.31097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04324664 372.31097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04324665 372.31097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04324666 372.31100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04324667 372.31100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04324668 372.31103516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04324669 372.31106567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04324670 372.31109619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04324671 372.31109619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04324672 372.31112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04324673 372.31112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04324674 372.31115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04324675 372.31115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04324676 372.31115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04324677 372.31115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04324678 372.31118774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04324679 372.31118774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04324680 372.31121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04324681 372.31121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04324682 372.31124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04324683 372.31124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04324684 372.31127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04324685 372.31127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04324686 372.31130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04324687 372.31130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04324688 372.31130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04324689 372.31130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04324690 372.31134033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04324691 372.31137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04324692 372.31140137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04324693 372.31140137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04324694 372.31143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04324695 372.31143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04324696 372.31146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04324697 372.31146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04324698 372.31146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04324699 372.31146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04324700 372.31149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04324701 372.31149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04324702 372.31152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04324703 372.31152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04324704 372.31155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04324705 372.31155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04324706 372.31158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04324707 372.31158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04324708 372.31161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04324709 372.31161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04324710 372.31161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04324711 372.31164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04324712 372.31167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04324713 372.31167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04324714 372.31170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04324715 372.31170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04324716 372.31173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04324717 372.31173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04324718 372.31176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04324719 372.31176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04324720 372.31179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04324721 372.31179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04324722 372.31182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04324723 372.31182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04324724 372.31188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04324725 372.31188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04324726 372.31192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04324727 372.31192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04324728 372.31195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04324729 372.31195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04324730 372.31195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04324731 372.31195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04324732 372.31198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04324733 372.31198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04324734 372.31201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04324735 372.31201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04324736 372.31204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04324737 372.31204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04324738 372.31207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04324739 372.31210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04324740 372.31210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04324741 372.31210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04324742 372.31213379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04324743 372.31213379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04324744 372.31216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04324745 372.31216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04324746 372.31219482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04324747 372.31219482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04324748 372.31222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04324749 372.31222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04324750 372.31225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04324751 372.31225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04324752 372.31225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04324753 372.31225586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04324754 372.31228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04324755 372.31228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04324756 372.31231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04324757 372.31231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04324758 372.31234741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04324759 372.31237793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04324760 372.31240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04324761 372.31240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04324762 372.31240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04324763 372.31240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04324764 372.31243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04324765 372.31243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04324766 372.31246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04324767 372.31246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04324768 372.31250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04324769 372.31250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04324770 372.31253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04324771 372.31253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04324772 372.31256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04324773 372.31256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04324774 372.31256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04324775 372.31256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04324776 372.31259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04324777 372.31259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04324778 372.31262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04324779 372.31265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04324780 372.31268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04324781 372.31268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04324782 372.31271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04324783 372.31271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04324784 372.31274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04324785 372.31274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04324786 372.31280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04324787 372.31280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04324788 372.31283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04324789 372.31283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04324790 372.31286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04324791 372.31286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04324792 372.31289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04324793 372.31289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04324794 372.31289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04324795 372.31289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04324796 372.31292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04324797 372.31292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04324798 372.31295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04324799 372.31295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04324800 372.31298828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04324801 372.31301880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04324802 372.31301880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04324803 372.31304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04324804 372.31304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04324805 372.31304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04324806 372.31307983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04324807 372.31307983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04324808 372.31311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04324809 372.31311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04324810 372.31314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04324811 372.31314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04324812 372.31317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04324813 372.31317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04324814 372.31320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04324815 372.31320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04324816 372.31320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04324817 372.31320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04324818 372.31323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04324819 372.31323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04324820 372.31326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04324821 372.31326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04324822 372.31329346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04324823 372.31332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04324824 372.31332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04324825 372.31335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04324826 372.31335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04324827 372.31335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04324828 372.31338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04324829 372.31338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04324830 372.31341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04324831 372.31341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04324832 372.31344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04324833 372.31344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04324834 372.31347656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04324835 372.31347656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04324836 372.31350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04324837 372.31350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04324838 372.31353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04324839 372.31353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04324840 372.31353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04324841 372.31353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04324842 372.31356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04324843 372.31356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04324844 372.31359863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04324845 372.31359863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04324846 372.31362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04324847 372.31362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04324848 372.31365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04324849 372.31365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04324850 372.31369019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04324851 372.31369019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04324852 372.31369019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04324853 372.31369019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04324854 372.31372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04324855 372.31372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04324856 372.31378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04324857 372.31378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04324858 372.31384277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04324859 372.31384277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04324860 372.31387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04324861 372.31387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04324862 372.31390381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04324863 372.31390381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04324864 372.31393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04324865 372.31393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04324866 372.31396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04324867 372.31396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04324868 372.31399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04324869 372.31399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04324870 372.31399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04324871 372.31402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04324872 372.31405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04324873 372.31405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04324874 372.31408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04324875 372.31408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04324876 372.31411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04324877 372.31411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04324878 372.31414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04324879 372.31414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04324880 372.31414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04324881 372.31414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04324882 372.31417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04324883 372.31417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04324884 372.31420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04324885 372.31420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04324886 372.31423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04324887 372.31423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04324888 372.31427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04324889 372.31427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04324890 372.31430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04324891 372.31433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04324892 372.31433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04324893 372.31433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04324894 372.31436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04324895 372.31436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04324896 372.31439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04324897 372.31439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04324898 372.31442261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04324899 372.31442261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04324900 372.31445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04324901 372.31445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04324902 372.31448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04324903 372.31448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04324904 372.31448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04324905 372.31448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04324906 372.31451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04324907 372.31451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04324908 372.31454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04324909 372.31454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04324910 372.31457520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04324911 372.31460571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04324912 372.31463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04324913 372.31463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04324914 372.31463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04324915 372.31463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04324916 372.31466675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04324917 372.31466675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04324918 372.31469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04324919 372.31469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04333180 372.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12160 -04333181 372.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -04333182 372.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12170 -04333183 372.43420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -04333184 372.43420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12180 -04333185 372.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -04333186 372.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12190 -04333187 372.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -04333188 372.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121a0 -04333189 372.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -04333190 372.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121b0 -04333191 372.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -04333192 372.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121c0 -04333193 372.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -04333194 372.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121d0 -04333195 372.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -04333196 372.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121e0 -04333197 372.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -04333198 372.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x121f0 -04333199 372.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -04333200 372.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12200 -04333201 372.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -04333202 372.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12210 -04333203 372.43447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -04333204 372.43447876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12220 -04333205 372.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -04333206 372.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12230 -04333207 372.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -04333208 372.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12240 -04333209 372.43457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -04333210 372.43457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12250 -04333211 372.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -04333212 372.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12260 -04333213 372.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -04333214 372.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12270 -04333215 372.43463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -04333216 372.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12280 -04333217 372.43472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -04333218 372.43472290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12290 -04333219 372.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -04333220 372.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x122a0 -04333221 372.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -04333222 372.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x122b0 -04333223 372.43478394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x122c0 -04337418 372.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5d0 -04337419 372.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -04337420 372.49688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5e0 -04337421 372.49691772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -04337422 372.49691772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a5f0 -04337423 372.49694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -04337424 372.49694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a600 -04337425 372.49697876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -04337426 372.49697876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a610 -04337427 372.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -04337428 372.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a620 -04337429 372.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -04337430 372.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a630 -04337431 372.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -04337432 372.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a640 -04337433 372.49707031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -04337434 372.49707031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a650 -04337435 372.49710083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -04337436 372.49713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a660 -04337437 372.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -04337438 372.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a670 -04337439 372.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -04337440 372.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a680 -04337441 372.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -04337442 372.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a690 -04337443 372.49722290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -04337444 372.49722290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6a0 -04337445 372.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -04337446 372.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6b0 -04337447 372.49728394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -04337448 372.49728394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6c0 -04337449 372.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -04337450 372.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6d0 -04337451 372.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -04337452 372.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6e0 -04337453 372.49737549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -04337454 372.49737549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a6f0 -04337455 372.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -04337456 372.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a700 -04337457 372.49743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -04337458 372.49743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a710 -04337459 372.49746704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -04337460 372.49746704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a720 -04337461 372.49749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a730 -04342701 372.57919312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -04342702 372.57919312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af0 -04342703 372.57922363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -04342704 372.57922363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b00 -04342705 372.57925415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -04342706 372.57925415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b10 -04342707 372.57928467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -04342708 372.57931519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b20 -04342709 372.57931519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -04342710 372.57931519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b30 -04342711 372.57934570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -04342712 372.57934570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b40 -04342713 372.57937622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -04342714 372.57937622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b50 -04342715 372.57940674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -04342716 372.57940674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b60 -04342717 372.57943726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -04342718 372.57943726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b70 -04342719 372.57946777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -04342720 372.57946777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b80 -04342721 372.57946777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -04342722 372.57946777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b90 -04342723 372.57949829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -04342724 372.57949829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba0 -04342725 372.57952881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -04342726 372.57952881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb0 -04342727 372.57958984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -04342728 372.57958984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc0 -04342729 372.57962036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -04342730 372.57962036 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd0 -04342731 372.57965088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -04342732 372.57977295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be0 -04342733 372.57980347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -04342734 372.57980347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf0 -04342735 372.57980347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -04342736 372.57980347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c00 -04342737 372.57983398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -04342738 372.57983398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c10 -04342739 372.57986450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -04342740 372.57986450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c20 -04342741 372.57989502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -04342742 372.57989502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c30 -04342743 372.57992554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -04342744 372.57992554 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c40 -04350097 372.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -04350098 372.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33210 -04350099 372.68643188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -04350100 372.68643188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33220 -04350101 372.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -04350102 372.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33230 -04350103 372.68649292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -04350104 372.68649292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33240 -04350105 372.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -04350106 372.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33250 -04350107 372.68655396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -04350108 372.68655396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33260 -04350109 372.68655396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -04350110 372.68655396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33270 -04350111 372.68658447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -04350112 372.68661499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33280 -04350113 372.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -04350114 372.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33290 -04350115 372.68667603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -04350116 372.68667603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a0 -04350117 372.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -04350118 372.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b0 -04350119 372.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -04350120 372.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c0 -04350121 372.68673706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -04350122 372.68673706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d0 -04350123 372.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -04350124 372.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e0 -04350125 372.68679810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -04350126 372.68679810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f0 -04350127 372.68682861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -04350128 372.68682861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33300 -04350129 372.68685913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -04350130 372.68685913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33310 -04350131 372.68685913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -04350132 372.68688965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33320 -04350133 372.68692017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -04350134 372.68692017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33330 -04350135 372.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -04350136 372.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33340 -04350137 372.68698120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -04350138 372.68698120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33350 -04350139 372.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -04350140 372.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33360 -04366333 374.43252563 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04366334 374.45111084 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04366335 374.45111084 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04366336 374.48239136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04366337 374.48239136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04366338 374.48242188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04366339 374.48245239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04366340 374.48257446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04366341 374.48257446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04366342 374.48263550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04366343 374.48266602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04366344 375.68078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04366345 375.68078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04366346 375.68081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04366347 375.68081665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04366348 375.68084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04366349 375.68084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04366350 375.68087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04366351 375.68087769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04366352 375.68090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04366353 375.68090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04366354 375.68090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04366355 375.68090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04366356 375.68093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04366357 375.68093872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04366358 375.68096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04366359 375.68099976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04366360 375.68103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04366361 375.68103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04366362 375.68106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04366363 375.68106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04366364 375.68106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04366365 375.68106079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04366366 375.68109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04366367 375.68109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04366368 375.68112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04366369 375.68112183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04366370 375.68115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04366371 375.68115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04366372 375.68118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04366373 375.68118286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04366374 375.68121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04366375 375.68121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04366376 375.68124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04366377 375.68124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04366378 375.68124390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04366379 375.68127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04366380 375.68130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04366381 375.68130493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04366382 375.68133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04366383 375.68133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04366384 375.68136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04366385 375.68136597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04366386 375.68139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04366387 375.68139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04366388 375.68139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04366389 375.68139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04366390 375.68142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04366391 375.68142700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04366392 375.68145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04366393 375.68145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04366394 375.68148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04366395 375.68148804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04366396 375.68151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04366397 375.68151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04366398 375.68154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04366399 375.68154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04366400 375.68154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04366401 375.68154907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04366402 375.68157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04366403 375.68157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04366404 375.68161011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04366405 375.68164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04366406 375.68164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04366407 375.68167114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04366408 375.68170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04366409 375.68170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04366410 375.68170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04366411 375.68170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04366412 375.68173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04366413 375.68173218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04366414 375.68176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04366415 375.68176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04366416 375.68179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04366417 375.68179321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04366418 375.68182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04366419 375.68182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04366420 375.68185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04366421 375.68185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04366422 375.68185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04366423 375.68185425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04366424 375.68188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04366425 375.68188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04366426 375.68194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04366427 375.68194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04366428 375.68197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04366429 375.68197632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04366430 375.68200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04366431 375.68200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04366432 375.68203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04366433 375.68203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04366434 375.68203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04366435 375.68203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04366436 375.68206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04366437 375.68206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04366438 375.68209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04366439 375.68209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04366440 375.68212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04366441 375.68212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04366442 375.68215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04366443 375.68215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04366444 375.68218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04366445 375.68218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04366446 375.68218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04366447 375.68222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04366448 375.68222046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04366449 375.68225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04366450 375.68228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04366451 375.68228149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04366452 375.68231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04366453 375.68231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04366454 375.68234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04366455 375.68234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04366456 375.68234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04366457 375.68234253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04366458 375.68237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04366459 375.68237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04366460 375.68240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04366461 375.68240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04366462 375.68243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04366463 375.68243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04366464 375.68246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04366465 375.68246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04366466 375.68249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04366467 375.68249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04366468 375.68252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04366469 375.68252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04366470 375.68255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04366471 375.68255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04366472 375.68258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04366473 375.68258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04366474 375.68261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04366475 375.68261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04366476 375.68264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04366477 375.68264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04366478 375.68264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04366479 375.68264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04366480 375.68267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04366481 375.68267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04366482 375.68270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04366483 375.68273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04366484 375.68276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04366485 375.68276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04366486 375.68280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04366487 375.68280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04366488 375.68283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04366489 375.68283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04366490 375.68283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04366491 375.68283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04366492 375.68286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04366493 375.68286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04366494 375.68289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04366495 375.68289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04366496 375.68292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04366497 375.68292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04366498 375.68295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04366499 375.68295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04366500 375.68298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04366501 375.68298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04366502 375.68298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04366503 375.68301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04366504 375.68304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04366505 375.68304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04366506 375.68307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04366507 375.68307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04366508 375.68310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04366509 375.68310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04366510 375.68313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04366511 375.68313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04366512 375.68313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04366513 375.68313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04366514 375.68316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04366515 375.68316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04366516 375.68319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04366517 375.68319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04366518 375.68322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04366519 375.68325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04366520 375.68328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04366521 375.68328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04366522 375.68328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04366523 375.68328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04366524 375.68331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04366525 375.68331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04366526 375.68334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04366527 375.68334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04366528 375.68338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04366529 375.68341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04366530 375.68344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04366531 375.68344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04366532 375.68344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04366533 375.68344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04366534 375.68347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04366535 375.68347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04366536 375.68350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04366537 375.68350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04366538 375.68353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04366539 375.68356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04366540 375.68359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04366541 375.68359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04366542 375.68362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04366543 375.68362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04366544 375.68362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04366545 375.68362427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04366546 375.68368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04366547 375.68368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04366548 375.68371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04366549 375.68371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04366550 375.68374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04366551 375.68374634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04366552 375.68377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04366553 375.68377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04366554 375.68377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04366555 375.68377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04366556 375.68380737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04366557 375.68380737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04366558 375.68383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04366559 375.68386841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04366560 375.68389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04366561 375.68389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04366562 375.68392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04366563 375.68392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04366564 375.68392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04366565 375.68392944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04366566 375.68395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04366567 375.68395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04366568 375.68399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04366569 375.68399048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04366570 375.68402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04366571 375.68402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04366572 375.68405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04366573 375.68405151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04366574 375.68408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04366575 375.68408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04366576 375.68408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04366577 375.68408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04366578 375.68411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04366579 375.68411255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04366580 375.68414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04366581 375.68417358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04366582 375.68420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04366583 375.68420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04366584 375.68423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04366585 375.68423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04366586 375.68423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04366587 375.68423462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04366588 375.68426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04366589 375.68426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04366590 375.68429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04366591 375.68429565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04366592 375.68432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04366593 375.68432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04366594 375.68435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04366595 375.68435669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04366596 375.68438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04366597 375.68438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04366598 375.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04366599 375.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04366600 375.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04366601 375.68441772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04366602 375.68447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04366603 375.68447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04366604 375.68450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04366605 375.68450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04366606 375.68453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04366607 375.68453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04366608 375.68457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04366609 375.68457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04366610 375.68457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04366611 375.68457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04366612 375.68460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04366613 375.68460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04366614 375.68463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04366615 375.68463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04366616 375.68466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04366617 375.68466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04366618 375.68469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04366619 375.68472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04366620 375.68472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04366621 375.68472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04366622 375.68475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04366623 375.68475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04366624 375.68478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04366625 375.68478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04366626 375.68481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04366627 375.68481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04366628 375.68484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04366629 375.68484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04366630 375.68487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04366631 375.68487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04366632 375.68487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04366633 375.68487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04366634 375.68490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04366635 375.68490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04366636 375.68493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04366637 375.68493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04366638 375.68496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04366639 375.68496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04366640 375.68499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04366641 375.68502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04366642 375.68502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04366643 375.68502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04366644 375.68505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04366645 375.68505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04366646 375.68508911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04366647 375.68508911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04366648 375.68511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04366649 375.68511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04366650 375.68515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04366651 375.68515015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04366652 375.68518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04366653 375.68518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04366654 375.68521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04366655 375.68521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04366656 375.68521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04366657 375.68521118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04366658 375.68524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04366659 375.68524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04366660 375.68527222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04366661 375.68530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04366662 375.68533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04366663 375.68533325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04366664 375.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04366665 375.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04366666 375.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04366667 375.68536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04366668 375.68539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04366669 375.68539429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04366670 375.68542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04366671 375.68542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04366672 375.68545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04366673 375.68545532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04366674 375.68548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04366675 375.68548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04366676 375.68551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04366677 375.68551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04366678 375.68551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04366679 375.68551636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04366680 375.68554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04366681 375.68557739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04366682 375.68560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04366683 375.68560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04366684 375.68563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04366685 375.68563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04366686 375.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04366687 375.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04366688 375.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04366689 375.68566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04366690 375.68569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04366691 375.68569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04366692 375.68572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04366693 375.68572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04366694 375.68576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04366695 375.68576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04366696 375.68579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04366697 375.68579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04366698 375.68582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04366699 375.68582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04366700 375.68585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04366701 375.68585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04366702 375.68585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04366703 375.68588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04366704 375.68591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04366705 375.68591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04366706 375.68594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04366707 375.68594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04366708 375.68597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04366709 375.68597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04366710 375.68600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04366711 375.68600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04366712 375.68600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04366713 375.68600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04366714 375.68603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04366715 375.68603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04366716 375.68606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04366717 375.68606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04366718 375.68609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04366719 375.68609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04366720 375.68612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04366721 375.68612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04366722 375.68615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04366723 375.68615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04366724 375.68615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04366725 375.68618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04366726 375.68621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04366727 375.68621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04366728 375.68624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04366729 375.68624878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04366730 375.68627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04366731 375.68627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04366732 375.68630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04366733 375.68630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04366734 375.68630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04366735 375.68630981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04366736 375.68634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04366737 375.68634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04366738 375.68637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04366739 375.68637085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04366740 375.68640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04366741 375.68640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04366742 375.68643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04366743 375.68643188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04366744 375.68646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04366745 375.68646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04366746 375.68649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04366747 375.68649292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04366748 375.68652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04366749 375.68652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04366750 375.68655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04366751 375.68655396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04366752 375.68658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04366753 375.68658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04366754 375.68661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04366755 375.68661499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04366756 375.68664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04366757 375.68664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04366758 375.68664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04366759 375.68664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04366760 375.68667603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04366761 375.68667603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04366762 375.68670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04366763 375.68670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04366764 375.68673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04366765 375.68673706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04366766 375.68676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04366767 375.68679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04366768 375.68679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04366769 375.68679810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04366770 375.68682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04366771 375.68682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04366772 375.68685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04366773 375.68685913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04366774 375.68688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04366775 375.68688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04366776 375.68692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04366777 375.68692017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04366778 375.68695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04366779 375.68695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04366780 375.68695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04366781 375.68695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04366782 375.68698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04366783 375.68698120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04366784 375.68701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04366785 375.68701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04366786 375.68704224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04366787 375.68707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04366788 375.68710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04366789 375.68710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04366790 375.68710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04366791 375.68710327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04366792 375.68713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04366793 375.68713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04366794 375.68716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04366795 375.68716431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04366796 375.68719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04366797 375.68719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04366798 375.68722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04366799 375.68722534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04366800 375.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04366801 375.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04366802 375.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04366803 375.68725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04366804 375.68728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04366805 375.68728638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04366806 375.68731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04366807 375.68731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04366808 375.68734741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04366809 375.68737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04366810 375.68740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04366811 375.68740845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04366812 375.68743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04366813 375.68743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04366814 375.68743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04366815 375.68743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04366816 375.68746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04366817 375.68746948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04366818 375.68750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04366819 375.68750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04366820 375.68753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04366821 375.68753052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04366822 375.68756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04366823 375.68756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04366824 375.68759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04366825 375.68759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04366826 375.68759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04366827 375.68759155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04366828 375.68762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04366829 375.68765259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04366830 375.68768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04366831 375.68768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04366832 375.68771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04366833 375.68771362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04366834 375.68774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04366835 375.68774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04366836 375.68774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04366837 375.68774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04366838 375.68777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04366839 375.68777466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04366840 375.68780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04366841 375.68780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04366842 375.68783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04366843 375.68783569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04366844 375.68786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04366845 375.68786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04366846 375.68789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04366847 375.68789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04366848 375.68789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04366849 375.68789673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04366850 375.68792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04366851 375.68795776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04366852 375.68798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04366853 375.68798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04366854 375.68801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04366855 375.68801880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04366856 375.68804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04366857 375.68804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04366858 375.68804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04366859 375.68804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04366860 375.68807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04366861 375.68807983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04366862 375.68811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04366863 375.68811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04366864 375.68814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04366865 375.68814087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04366866 375.68817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04366867 375.68817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04366868 375.68820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04366869 375.68820190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04366870 375.68823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04366871 375.68823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04366872 375.68823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04366873 375.68826294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04366874 375.68829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04366875 375.68829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04366876 375.68832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04366877 375.68832397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04366878 375.68835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04366879 375.68835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04366880 375.68838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04366881 375.68838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04366882 375.68838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04366883 375.68838501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04366884 375.68841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04366885 375.68841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04366886 375.68844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04366887 375.68844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04366888 375.68847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04366889 375.68847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04366890 375.68850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04366891 375.68850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04366892 375.68853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04366893 375.68853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04366894 375.68856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04366895 375.68856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04366896 375.68859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04366897 375.68859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04366898 375.68862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04366899 375.68862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04366900 375.68865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04366901 375.68865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04366902 375.68869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04366903 375.68869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04366904 375.68869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04366905 375.68869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04366906 375.68872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04366907 375.68872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04366908 375.68875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04366909 375.68875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04366910 375.68878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04366911 375.68878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04366912 375.68881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04366913 375.68881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04366914 375.68884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04366915 375.68884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04366916 375.68887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04366917 375.68887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04366918 375.68890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04366919 375.68890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04366920 375.68893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04366921 375.68893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04366922 375.68896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04366923 375.68896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04366924 375.68899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04366925 375.68899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04366926 375.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04366927 375.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04366928 375.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04366929 375.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04366930 375.68905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04366931 375.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04366932 375.68911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04366933 375.68911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04366934 375.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04366935 375.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04366936 375.68917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04366937 375.68917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04366938 375.68917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04366939 375.68917847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04366940 375.68920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04366941 375.68920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04366942 375.68923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04366943 375.68923950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04366944 375.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04366945 375.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04366946 375.68930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04366947 375.68930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04366948 375.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04366949 375.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04366950 375.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04366951 375.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04366952 375.68936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04366953 375.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04366954 375.68942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04366955 375.68942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04366956 375.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04366957 375.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04366958 375.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04366959 375.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04366960 375.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04366961 375.68948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04366962 375.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04366963 375.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04366964 375.68954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04366965 375.68954468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04366966 375.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04366967 375.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04366968 375.68960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04366969 375.68960571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04366970 375.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04366971 375.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04366972 375.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04366973 375.68966675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04366974 375.68969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04366975 375.68969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04366976 375.68972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04366977 375.68972778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04366978 375.68975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04366979 375.68975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04366980 375.68978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04366981 375.68978882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04366982 375.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04366983 375.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04366984 375.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04366985 375.68981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04366986 375.68984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04366987 375.68984985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04366988 375.68988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04366989 375.68988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04366990 375.68991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04366991 375.68991089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04366992 375.68994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04366993 375.68994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04366994 375.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04366995 375.68997192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04366996 375.69000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04366997 375.69000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04366998 375.69003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04366999 375.69003296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04367000 375.69006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04367001 375.69006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04367002 375.69009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04367003 375.69009399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04367004 375.69012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04367005 375.69012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04367006 375.69012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04367007 375.69012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04367008 375.69015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04367009 375.69015503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04367010 375.69018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04367011 375.69018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04367012 375.69021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04367013 375.69021606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04367014 375.69024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04367015 375.69027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04367016 375.69027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04367017 375.69027710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04367018 375.69030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04367019 375.69030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04367020 375.69033813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04367021 375.69033813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04367022 375.69036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04367023 375.69036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04367024 375.69042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04367025 375.69042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04367026 375.69042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04367027 375.69046021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04367028 375.69049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04367029 375.69049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04367030 375.69055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04367031 375.69055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04367032 375.69058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04367033 375.69058228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04367034 375.69061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04367035 375.69061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04367036 375.69064331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04367037 375.69067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04367038 375.69070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04367039 375.69070435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04367040 375.69076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04367041 375.69076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04367042 375.69076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04367043 375.69076538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04367044 375.69082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04367045 375.69082642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04367046 375.69085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04367047 375.69085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04367048 375.69091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04367049 375.69091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04367050 375.69091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04367051 375.69091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04367052 375.69097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04367053 375.69097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04367054 375.69100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04367055 375.69104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04367056 375.69107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04367057 375.69107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04367058 375.69107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04367059 375.69107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04367060 375.69110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04367061 375.69110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04367062 375.69113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04367063 375.69113159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04367064 375.69116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04367065 375.69119263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04367066 375.69122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04367067 375.69122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04367068 375.69122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04367069 375.69122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04367070 375.69125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04367071 375.69125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04367072 375.69128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04367073 375.69128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04367074 375.69131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04367075 375.69131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04367076 375.69134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04367077 375.69134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04367078 375.69137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04367079 375.69137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04367080 375.69140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04367081 375.69140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04367082 375.69140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04367083 375.69140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04367084 375.69143677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04367085 375.69146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04367086 375.69149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04367087 375.69149780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04367088 375.69152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04367089 375.69152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04367090 375.69155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04367091 375.69155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04367092 375.69155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04367093 375.69155884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04367094 375.69158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04367095 375.69158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04367096 375.69161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04367097 375.69161987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04367098 375.69165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04367099 375.69165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04367100 375.69168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04367101 375.69168091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04367102 375.69171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04367103 375.69171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04367104 375.69171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04367105 375.69171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04367106 375.69174194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04367107 375.69177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04367108 375.69180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04367109 375.69180298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04367110 375.69183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04367111 375.69183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04367112 375.69186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04367113 375.69186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04367114 375.69186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04367115 375.69186401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04367116 375.69189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04367117 375.69189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04367118 375.69192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04367119 375.69192505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04367120 375.69195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04367121 375.69195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04367122 375.69198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04367123 375.69198608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04367124 375.69201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04367125 375.69201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04367126 375.69204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04367127 375.69204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04367128 375.69204712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04367129 375.69207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04367130 375.69210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04367131 375.69210815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04367132 375.69213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04367133 375.69213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04367134 375.69216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04367135 375.69216919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04367136 375.69219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04367137 375.69219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04367138 375.69219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04367139 375.69219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04367140 375.69223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04367141 375.69223022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04367142 375.69226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04367143 375.69226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04367144 375.69229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04367145 375.69229126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04367146 375.69232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04367147 375.69232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04367148 375.69235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04367149 375.69235229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04367150 375.69238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04367151 375.69238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04367152 375.69241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04367153 375.69241333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04367154 375.69244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04367155 375.69244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04367156 375.69247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04367157 375.69247437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04367158 375.69250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04367159 375.69250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04367160 375.69250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04367161 375.69250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04367162 375.69253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04367163 375.69253540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04367164 375.69256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04367165 375.69256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04367166 375.69259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04367167 375.69259644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04367168 375.69262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04367169 375.69262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04367170 375.69265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04367171 375.69265747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04367172 375.69268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04367173 375.69268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04367174 375.69271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04367175 375.69271851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04367176 375.69274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04367177 375.69274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04367178 375.69277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04367179 375.69277954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04367180 375.69281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04367181 375.69281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04367182 375.69284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04367183 375.69284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04367184 375.69284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04367185 375.69284058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04367186 375.69287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04367187 375.69287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04367188 375.69290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04367189 375.69290161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04367190 375.69293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04367191 375.69293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04367192 375.69296265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04367193 375.69299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04367194 375.69299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04367195 375.69299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04367196 375.69302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04367197 375.69302368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04367198 375.69305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04367199 375.69305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04367200 375.69308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04367201 375.69308472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04367202 375.69311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04367203 375.69311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04367204 375.69314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04367205 375.69314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04367206 375.69314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04367207 375.69314575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04367208 375.69317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04367209 375.69317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04367210 375.69320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04367211 375.69320679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04367212 375.69323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04367213 375.69323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04367214 375.69326782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04367215 375.69329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04367216 375.69329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04367217 375.69329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04367218 375.69332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04367219 375.69332886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04367220 375.69335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04367221 375.69335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04367222 375.69338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04367223 375.69338989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04367224 375.69342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04367225 375.69342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04367226 375.69345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04367227 375.69345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04367228 375.69345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04367229 375.69345093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04367230 375.69348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04367231 375.69348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04367232 375.69351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04367233 375.69351196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04367234 375.69354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04367235 375.69354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04367236 375.69357300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04367237 375.69360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04367238 375.69363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04367239 375.69363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04367240 375.69363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04367241 375.69363403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04367242 375.69366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04367243 375.69366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04367244 375.69369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04367245 375.69369507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04367246 375.69372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04367247 375.69372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04367248 375.69375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04367249 375.69375610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04367250 375.69378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04367251 375.69378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04367252 375.69378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04367253 375.69378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04367254 375.69381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04367255 375.69381714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04367256 375.69384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04367257 375.69384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04367258 375.69387817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04367259 375.69390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04367260 375.69393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04367261 375.69393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04367262 375.69393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04367263 375.69393921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04367264 375.69396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04367265 375.69396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04367266 375.69400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04367267 375.69400024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04367268 375.69403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04367269 375.69403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04367270 375.69406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04367271 375.69406128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04367272 375.69409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04367273 375.69409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04367274 375.69409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04367275 375.69409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04367276 375.69412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04367277 375.69412231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04367278 375.69415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04367279 375.69415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04367280 375.69418335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04367281 375.69421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04367282 375.69424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04367283 375.69424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04367284 375.69424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04367285 375.69424438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04367286 375.69427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04367287 375.69427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04367288 375.69430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04367289 375.69430542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04367290 375.69433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04367291 375.69433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04367292 375.69436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04367293 375.69436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04367294 375.69439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04367295 375.69439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04367296 375.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04367297 375.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04367298 375.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04367299 375.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04367300 375.69445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04367301 375.69445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04367302 375.69448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04367303 375.69451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04367304 375.69454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04367305 375.69454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04367306 375.69458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04367307 375.69458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04367308 375.69458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04367309 375.69458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04367310 375.69461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04367311 375.69461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04367312 375.69464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04367313 375.69464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04367314 375.69467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04367315 375.69467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04367316 375.69470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04367317 375.69470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04367318 375.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04367319 375.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04367320 375.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04367321 375.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04367322 375.69476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04367323 375.69476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04367324 375.69479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04367325 375.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04367326 375.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04367327 375.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04367328 375.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04367329 375.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04367330 375.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04367331 375.69488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04367332 375.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04367333 375.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04367334 375.69494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04367335 375.69494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04367336 375.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04367337 375.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04367338 375.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04367339 375.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04367340 375.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04367341 375.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04367342 375.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04367343 375.69503784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04367344 375.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04367345 375.69509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04367346 375.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04367347 375.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04367348 375.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04367349 375.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04367350 375.69519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04367351 375.69519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04367352 375.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04367353 375.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04367354 375.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04367355 375.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04367356 375.69525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04367357 375.69525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04367358 375.69528198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04367359 375.69528198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04367360 375.69531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04367361 375.69531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04367362 375.69534302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04367363 375.69534302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04367364 375.69537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04367365 375.69537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04367366 375.69537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04367367 375.69540405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04367368 375.69543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04367369 375.69543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04367370 375.69546509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04367371 375.69546509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04367372 375.69549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04367373 375.69549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04367374 375.69552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04367375 375.69552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04367376 375.69552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04367377 375.69552612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04367378 375.69555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04367379 375.69555664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04367380 375.69558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04367381 375.69558716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04367382 375.69561768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04367383 375.69561768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04367384 375.69564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04367385 375.69564819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04367386 375.69567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04367387 375.69567871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04367388 375.69570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04367389 375.69570923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04367390 375.69573975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04367391 375.69573975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04367392 375.69577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04367393 375.69577026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04367394 375.69580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04367395 375.69580078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04367396 375.69583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04367397 375.69583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04367398 375.69583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04367399 375.69583130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04367400 375.69586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04367401 375.69586182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04367402 375.69589233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04367403 375.69589233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04367404 375.69592285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04367405 375.69592285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04367406 375.69595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04367407 375.69595337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04367408 375.69598389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04367409 375.69601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04367410 375.69601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04367411 375.69601440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04367412 375.69604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04367413 375.69604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04367414 375.69607544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04367415 375.69607544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04367416 375.69610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04367417 375.69610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04367418 375.69613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04367419 375.69613647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04367420 375.69616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04367421 375.69616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04367422 375.69616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04367423 375.69616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04367424 375.69619751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04367425 375.69619751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04367426 375.69622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04367427 375.69622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04367428 375.69625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04367429 375.69625854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04367430 375.69628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04367431 375.69628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04367432 375.69631958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04367433 375.69631958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04367434 375.69635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04367435 375.69635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04367436 375.69638062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04367437 375.69638062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04367438 375.69641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04367439 375.69641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04367440 375.69644165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04367441 375.69644165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04367442 375.69647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04367443 375.69647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04367444 375.69647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04367445 375.69647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04367446 375.69650269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04367447 375.69650269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04367448 375.69653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04367449 375.69653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04367450 375.69656372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04367451 375.69656372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04367452 375.69659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04367453 375.69662476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04367454 375.69662476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04367455 375.69662476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04367456 375.69665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04367457 375.69665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04367458 375.69668579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04367459 375.69668579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04367460 375.69671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04367461 375.69671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04367462 375.69674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04367463 375.69674683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04367464 375.69677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04367465 375.69677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04367466 375.69680786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04367467 375.69680786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04367468 375.69680786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04367469 375.69680786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04367470 375.69683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04367471 375.69683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04367472 375.69686890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04367473 375.69686890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04367474 375.69689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04367475 375.69692993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04367476 375.69696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04367477 375.69696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04367478 375.69696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04367479 375.69696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04367480 375.69699097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04367481 375.69699097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04367482 375.69702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04367483 375.69702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04367484 375.69705200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04367485 375.69705200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04367486 375.69708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04367487 375.69708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04367488 375.69711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04367489 375.69711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04367490 375.69711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04367491 375.69711304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04367492 375.69714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04367493 375.69714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04367494 375.69717407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04367495 375.69717407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04367496 375.69720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04367497 375.69723511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04367498 375.69726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04367499 375.69726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04367500 375.69726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04367501 375.69726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04367502 375.69729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04367503 375.69729614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04367504 375.69732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04367505 375.69732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04367506 375.69738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04367507 375.69738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04367508 375.69741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04367509 375.69741821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04367510 375.69744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04367511 375.69744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04367512 375.69747925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04367513 375.69747925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04367514 375.69750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04367515 375.69754028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04367516 375.69757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04367517 375.69757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04367518 375.69760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04367519 375.69760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04367520 375.69760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04367521 375.69760132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04367522 375.69763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04367523 375.69763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04367524 375.69766235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04367525 375.69766235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04367526 375.69769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04367527 375.69769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04367528 375.69772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04367529 375.69772339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04367530 375.69775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04367531 375.69775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04367532 375.69775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04367533 375.69775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04367534 375.69778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04367535 375.69778442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04367536 375.69781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04367537 375.69784546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04367538 375.69787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04367539 375.69787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04367540 375.69790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04367541 375.69790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04367542 375.69790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04367543 375.69790649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04367544 375.69793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04367545 375.69793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04367546 375.69796753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04367547 375.69796753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04367548 375.69799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04367549 375.69799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04367550 375.69802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04367551 375.69802856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04367552 375.69805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04367553 375.69805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04367554 375.69805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04367555 375.69805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04367556 375.69808960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04367557 375.69808960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04367558 375.69812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04367559 375.69815063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04367560 375.69818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04367561 375.69818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04367562 375.69821167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04367563 375.69821167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04367564 375.69824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04367565 375.69824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04367566 375.69824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04367567 375.69824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04367568 375.69827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04367569 375.69827271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04367570 375.69830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04367571 375.69830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04367572 375.69833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04367573 375.69833374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04367574 375.69836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04367575 375.69836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04367576 375.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04367577 375.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04367578 375.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04367579 375.69839478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04367580 375.69842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04367581 375.69845581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04367582 375.69848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04367583 375.69848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04367584 375.69851685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04367585 375.69851685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04367586 375.69854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04367587 375.69854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04367588 375.69854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04367589 375.69854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04367590 375.69857788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04367591 375.69857788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04367592 375.69860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04367593 375.69860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04367594 375.69863892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04367595 375.69863892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04367596 375.69866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04367597 375.69866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04367598 375.69869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04367599 375.69869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04367600 375.69869995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04367601 375.69873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04367602 375.69876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04367603 375.69876099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04367604 375.69879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04367605 375.69879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04367606 375.69882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04367607 375.69882202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04367608 375.69885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04367609 375.69885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04367610 375.69885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04367611 375.69885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04367612 375.69888306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04367613 375.69888306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04367614 375.69891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04367615 375.69891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04367616 375.69894409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04367617 375.69894409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04367618 375.69897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04367619 375.69897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04369706 375.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -04369707 375.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -04369708 375.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -04369709 375.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -04369710 375.72875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -04369711 375.72875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -04369712 375.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -04369713 375.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -04369714 375.72882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -04369715 375.72882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -04369716 375.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -04369717 375.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -04369718 375.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -04369719 375.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -04369720 375.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -04369721 375.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -04369722 375.72891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -04369723 375.72891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -04369724 375.72894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -04369725 375.72894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -04369726 375.72897339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -04369727 375.72897339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -04369728 375.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -04369729 375.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -04369730 375.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -04369731 375.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -04369732 375.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -04369733 375.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -04369734 375.72906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -04369735 375.72906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -04369736 375.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -04369737 375.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -04369738 375.72912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -04369739 375.72912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -04369740 375.72915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -04369741 375.72918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -04369742 375.72918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -04369743 375.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -04369744 375.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -04369745 375.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -04369746 375.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -04369747 375.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -04369748 375.72927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -04369749 375.72927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -04391096 375.93484497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c48 -04391097 375.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -04391098 375.93484497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c48 -04391099 375.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -04391100 375.93487549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c58 -04391101 375.93487549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c58 -04391102 375.93490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -04391103 375.93490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -04391104 375.93490601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c68 -04391105 375.93490601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c68 -04391106 375.93493652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -04391107 375.93493652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -04391108 375.93493652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c78 -04391109 375.93493652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c78 -04391110 375.93493652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c88 -04391111 375.93493652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c88 -04391112 375.93496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -04391113 375.93496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -04391114 375.93496704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c98 -04391115 375.93496704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c98 -04391116 375.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -04391117 375.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -04391118 375.93499756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca8 -04391119 375.93502808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca8 -04391120 375.93505859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb8 -04391121 375.93505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -04391122 375.93505859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb8 -04391123 375.93505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -04391124 375.93508911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc8 -04391125 375.93508911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc8 -04391126 375.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -04391127 375.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -04391128 375.93508911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd8 -04391129 375.93508911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cd8 -04391130 375.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -04391131 375.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -04391132 375.93511963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce8 -04391133 375.93511963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ce8 -04391134 375.93511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -04391135 375.93515015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -04391136 375.93515015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf8 -04391137 375.93515015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cf8 -04391138 375.93518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -04391139 375.93518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -04405000 376.03619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31918 -04405001 376.03619385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf78 -04405002 376.03619385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31918 -04405003 376.03619385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf78 -04405004 376.03622437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31928 -04405005 376.03625488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf88 -04405006 376.03625488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31928 -04405007 376.03625488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf88 -04405008 376.03628540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31938 -04405009 376.03628540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf98 -04405010 376.03628540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31938 -04405011 376.03628540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf98 -04405012 376.03631592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31948 -04405013 376.03631592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa8 -04405014 376.03631592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31948 -04405015 376.03631592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa8 -04405016 376.03631592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31958 -04405017 376.03631592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb8 -04405018 376.03631592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31958 -04405019 376.03631592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb8 -04405020 376.03634644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31968 -04405021 376.03634644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc8 -04405022 376.03634644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31968 -04405023 376.03634644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfc8 -04405024 376.03637695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31978 -04405025 376.03637695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd8 -04405026 376.03637695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31978 -04405027 376.03637695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfd8 -04405028 376.03640747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31988 -04405029 376.03640747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31988 -04405030 376.03640747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe8 -04405031 376.03640747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfe8 -04405032 376.03643799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31998 -04405033 376.03643799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31998 -04405034 376.03646851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff8 -04405035 376.03646851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bff8 -04405036 376.03646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a8 -04405037 376.03646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x319a8 -04405038 376.03646851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c008 -04405039 376.03646851 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c008 -04405040 376.03646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b8 -04405041 376.03646851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x319b8 -04405042 376.03649902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c018 -04405043 376.03649902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c018 -04420998 376.15594482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -04420999 376.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e28 -04421000 376.15594482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae58 -04421001 376.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e28 -04421002 376.15594482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -04421003 376.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e38 -04421004 376.15594482 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae68 -04421005 376.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e38 -04421006 376.15597534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -04421007 376.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e48 -04421008 376.15597534 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae78 -04421009 376.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e48 -04421010 376.15600586 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae88 -04421011 376.15600586 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae88 -04421012 376.15600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e58 -04421013 376.15600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e58 -04421014 376.15603638 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae98 -04421015 376.15603638 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae98 -04421016 376.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e68 -04421017 376.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e68 -04421018 376.15606689 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea8 -04421019 376.15606689 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea8 -04421020 376.15606689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e78 -04421021 376.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e78 -04421022 376.15609741 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -04421023 376.15609741 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb8 -04421024 376.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e88 -04421025 376.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e88 -04421026 376.15609741 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -04421027 376.15612793 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec8 -04421028 376.15612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e98 -04421029 376.15612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e98 -04421030 376.15615845 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -04421031 376.15615845 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed8 -04421032 376.15615845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea8 -04421033 376.15615845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ea8 -04421034 376.15618896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -04421035 376.15618896 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee8 -04421036 376.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb8 -04421037 376.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41eb8 -04421038 376.15621948 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -04421039 376.15621948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec8 -04421040 376.15621948 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef8 -04421041 376.15621948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ec8 -04450014 376.44375610 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a08 -04450015 376.44375610 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a08 -04450016 376.44378662 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a18 -04450017 376.44378662 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a18 -04450018 376.44378662 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a28 -04450019 376.44378662 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a28 -04450020 376.44381714 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a38 -04450021 376.44381714 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a38 -04450022 376.44384766 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a48 -04450023 376.44384766 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a48 -04450024 376.44387817 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a58 -04450025 376.44387817 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a58 -04450026 376.44390869 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a68 -04450027 376.44390869 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a68 -04450028 376.44393921 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a78 -04450029 376.44393921 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a78 -04450030 376.44396973 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a88 -04450031 376.44396973 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a88 -04450032 376.44396973 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a98 -04450033 376.44400024 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a98 -04450034 376.44403076 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa8 -04450035 376.44403076 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52aa8 -04450036 376.44406128 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab8 -04450037 376.44406128 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ab8 -04450038 376.44409180 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac8 -04450039 376.44409180 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ac8 -04450040 376.44412231 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad8 -04450041 376.44412231 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ad8 -04450042 376.44412231 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -04450043 376.44412231 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ae8 -04450044 376.44415283 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -04450045 376.44415283 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52af8 -04450046 376.44418335 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -04450047 376.44418335 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b08 -04450048 376.44421387 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -04450049 376.44421387 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b18 -04450050 376.44424438 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -04450051 376.44424438 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b28 -04450052 376.44427490 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -04450053 376.44427490 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b38 -04450054 376.44427490 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -04450055 376.44430542 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b48 -04450056 376.44433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -04450057 376.44433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -04450119 376.55642700 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -04450120 376.98980713 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450121 376.98986816 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450122 376.98989868 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450123 376.98989868 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04450124 376.99002075 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450125 376.99002075 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04450126 376.99011230 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450127 376.99011230 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04450128 378.47470093 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04450129 378.49572754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450130 378.49572754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450131 379.49600220 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450132 379.49606323 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450133 379.49609375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450134 379.49609375 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04450135 379.49621582 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450136 379.49621582 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04450137 379.49630737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04450138 379.49630737 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04450139 380.49829102 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04450140 380.51980591 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450141 380.51983643 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04450142 381.28076172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04450143 381.28076172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04450144 381.28079224 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04450145 381.28079224 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04450146 381.28082275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04450147 381.28085327 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04450148 381.28088379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04450149 381.28088379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04450150 381.28088379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04450151 381.28088379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04450152 381.28091431 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04450153 381.28091431 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04450154 381.28094482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04450155 381.28094482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04450156 381.28103638 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04450157 381.28103638 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04450158 381.28103638 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04450159 381.28103638 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04450160 381.28106689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04450161 381.28106689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04450162 381.28109741 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04450163 381.28109741 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04450164 381.28112793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04450165 381.28112793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04450166 381.28115845 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04450167 381.28115845 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04450168 381.28118896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04450169 381.28118896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04450170 381.28118896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04450171 381.28121948 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04450172 381.28121948 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04450173 381.28125000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04450174 381.28128052 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04450175 381.28128052 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04450176 381.28131104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04450177 381.28131104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04450178 381.28134155 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04450179 381.28134155 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04450180 381.28134155 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04450181 381.28134155 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04450182 381.28137207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04450183 381.28137207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04450184 381.28140259 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04450185 381.28140259 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04450186 381.28143311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04450187 381.28143311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04450188 381.28146362 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04450189 381.28146362 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04450190 381.28149414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04450191 381.28149414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04450192 381.28152466 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04450193 381.28152466 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04450194 381.28152466 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04450195 381.28155518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04450196 381.28158569 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04450197 381.28158569 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04450198 381.28161621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04450199 381.28161621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04450200 381.28164673 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04450201 381.28164673 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04450202 381.28167725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04450203 381.28167725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04450204 381.28167725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04450205 381.28167725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04450206 381.28170776 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04450207 381.28170776 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04450208 381.28173828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04450209 381.28173828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04450210 381.28176880 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04450211 381.28176880 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04450212 381.28179932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04450213 381.28179932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04450214 381.28182983 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04450215 381.28182983 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04450216 381.28186035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04450217 381.28186035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04450218 381.28189087 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04450219 381.28189087 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04450220 381.28192139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04450221 381.28192139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04450222 381.28195190 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04450223 381.28195190 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04450224 381.28198242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04450225 381.28198242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04450226 381.28198242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04450227 381.28198242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04450228 381.28201294 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04450229 381.28201294 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04450230 381.28204346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04450231 381.28204346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04450232 381.28207397 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04450233 381.28207397 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04450234 381.28210449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04450235 381.28213501 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04450236 381.28216553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04450237 381.28216553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04450238 381.28216553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04450239 381.28216553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04450240 381.28219604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04450241 381.28219604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04450242 381.28222656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04450243 381.28222656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04450244 381.28225708 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04450245 381.28225708 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04450246 381.28228760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04450247 381.28228760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04450248 381.28231812 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04450249 381.28231812 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04450250 381.28231812 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04450251 381.28231812 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04450252 381.28234863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04450253 381.28234863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04450254 381.28237915 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04450255 381.28237915 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04450256 381.28240967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04450257 381.28244019 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04450258 381.28247070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04450259 381.28247070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04450260 381.28247070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04450261 381.28247070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04450262 381.28250122 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04450263 381.28250122 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04450264 381.28253174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04450265 381.28253174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04450266 381.28259277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04450267 381.28259277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04450268 381.28262329 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04450269 381.28262329 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04450270 381.28262329 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04450271 381.28262329 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04450272 381.28265381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04450273 381.28265381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04450274 381.28268433 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04450275 381.28268433 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04450276 381.28271484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04450277 381.28271484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04450278 381.28274536 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04450279 381.28274536 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04450280 381.28277588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04450281 381.28277588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04450282 381.28280640 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04450283 381.28280640 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04450284 381.28283691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04450285 381.28283691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04450286 381.28286743 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04450287 381.28286743 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04450288 381.28289795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04450289 381.28289795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04450290 381.28292847 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04450291 381.28292847 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04450292 381.28295898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04450293 381.28295898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04450294 381.28295898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04450295 381.28295898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04450296 381.28298950 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04450297 381.28302002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04450298 381.28305054 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04450299 381.28305054 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04450300 381.28308105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04450301 381.28308105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04450302 381.28311157 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04450303 381.28311157 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04450304 381.28311157 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04450305 381.28311157 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04450306 381.28314209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04450307 381.28314209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04450308 381.28317261 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04450309 381.28317261 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04450310 381.28320313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04450311 381.28323364 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04450312 381.28326416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04450313 381.28326416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04450314 381.28326416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04450315 381.28326416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04450316 381.28329468 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04450317 381.28329468 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04450318 381.28332520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04450319 381.28332520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04450320 381.28335571 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04450321 381.28335571 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04450322 381.28338623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04450323 381.28338623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04450324 381.28341675 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04450325 381.28341675 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04450326 381.28344727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04450327 381.28344727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04450328 381.28347778 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04450329 381.28347778 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04450330 381.28350830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04450331 381.28350830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04450332 381.28353882 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04450333 381.28353882 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04450334 381.28356934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04450335 381.28356934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04450336 381.28356934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04450337 381.28356934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04450338 381.28359985 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04450339 381.28359985 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04450340 381.28363037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04450341 381.28366089 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04450342 381.28369141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04450343 381.28369141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04450344 381.28372192 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04450345 381.28372192 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04450346 381.28375244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04450347 381.28375244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04450348 381.28375244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04450349 381.28375244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04450350 381.28378296 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04450351 381.28378296 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04450352 381.28381348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04450353 381.28381348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04450354 381.28384399 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04450355 381.28384399 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04450356 381.28387451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04450357 381.28390503 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04450358 381.28390503 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04450359 381.28390503 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04450360 381.28393555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04450361 381.28393555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04450362 381.28396606 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04450363 381.28396606 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04450364 381.28399658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04450365 381.28399658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04450366 381.28402710 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04450367 381.28402710 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04450368 381.28405762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04450369 381.28405762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04450370 381.28405762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04450371 381.28405762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04450372 381.28408813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04450373 381.28408813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04450374 381.28411865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04450375 381.28414917 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04450376 381.28417969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04450377 381.28417969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04450378 381.28421021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04450379 381.28421021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04450380 381.28421021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04450381 381.28421021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04450382 381.28424072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04450383 381.28424072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04450384 381.28427124 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04450385 381.28427124 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04450386 381.28430176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04450387 381.28430176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04450388 381.28433228 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04450389 381.28433228 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04450390 381.28436279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04450391 381.28436279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04450392 381.28436279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04450393 381.28439331 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04450394 381.28439331 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04450395 381.28442383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04450396 381.28445435 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04450397 381.28445435 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04450398 381.28448486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04450399 381.28448486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04450400 381.28451538 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04450401 381.28451538 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04450402 381.28454590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04450403 381.28454590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04450404 381.28454590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04450405 381.28454590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04450406 381.28457642 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04450407 381.28457642 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04450408 381.28460693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04450409 381.28460693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04450410 381.28463745 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04450411 381.28463745 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04450412 381.28466797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04450413 381.28466797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04450414 381.28469849 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04450415 381.28469849 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04450416 381.28472900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04450417 381.28472900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04450418 381.28475952 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04450419 381.28475952 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04450420 381.28479004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04450421 381.28479004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04450422 381.28482056 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04450423 381.28482056 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04450424 381.28485107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04450425 381.28485107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04450426 381.28485107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04450427 381.28485107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04450428 381.28488159 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04450429 381.28488159 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04450430 381.28491211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04450431 381.28491211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04450432 381.28494263 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04450433 381.28494263 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04450434 381.28497314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04450435 381.28500366 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04450436 381.28500366 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04450437 381.28500366 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04450438 381.28503418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04450439 381.28503418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04450440 381.28506470 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04450441 381.28506470 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04450442 381.28509521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04450443 381.28509521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04450444 381.28512573 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04450445 381.28512573 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04450446 381.28515625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04450447 381.28515625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04450448 381.28515625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04450449 381.28515625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04450450 381.28518677 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04450451 381.28518677 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04450452 381.28521729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04450453 381.28524780 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04450454 381.28527832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04450455 381.28527832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04450456 381.28530884 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04450457 381.28530884 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04450458 381.28533936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04450459 381.28533936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04450460 381.28533936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04450461 381.28533936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04450462 381.28536987 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04450463 381.28536987 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04450464 381.28540039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04450465 381.28540039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04450466 381.28543091 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04450467 381.28543091 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04450468 381.28546143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04450469 381.28546143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04450470 381.28549194 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04450471 381.28549194 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04450472 381.28549194 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04450473 381.28552246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04450474 381.28555298 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04450475 381.28555298 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04450476 381.28558350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04450477 381.28558350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04450478 381.28561401 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04450479 381.28561401 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04450480 381.28564453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04450481 381.28564453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04450482 381.28564453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04450483 381.28564453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04450484 381.28567505 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04450485 381.28567505 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04450486 381.28570557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04450487 381.28570557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04450488 381.28573608 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04450489 381.28573608 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04450490 381.28576660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04450491 381.28576660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04450492 381.28579712 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04450493 381.28579712 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04450494 381.28582764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04450495 381.28582764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04450496 381.28585815 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04450497 381.28585815 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04450498 381.28588867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04450499 381.28588867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04450500 381.28591919 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04450501 381.28591919 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04450502 381.28594971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04450503 381.28594971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04450504 381.28598022 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04450505 381.28598022 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04450506 381.28601074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04450507 381.28601074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04450508 381.28604126 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04450509 381.28604126 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04450510 381.28607178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04450511 381.28607178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04450512 381.28610229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04450513 381.28610229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04450514 381.28613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04450515 381.28613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04450516 381.28613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04450517 381.28613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04450518 381.28616333 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04450519 381.28616333 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04450520 381.28619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04450521 381.28619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04450522 381.28622437 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04450523 381.28622437 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04450524 381.28625488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04450525 381.28628540 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04450526 381.28628540 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04450527 381.28628540 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04450528 381.28631592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04450529 381.28631592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04450530 381.28634644 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04450531 381.28634644 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04450532 381.28637695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04450533 381.28637695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04450534 381.28640747 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04450535 381.28640747 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04450536 381.28643799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04450537 381.28643799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04450538 381.28643799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04450539 381.28643799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04450540 381.28646851 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04450541 381.28646851 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04450542 381.28649902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04450543 381.28649902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04450544 381.28652954 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04450545 381.28656006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04450546 381.28659058 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04450547 381.28659058 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04450548 381.28659058 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04450549 381.28659058 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04450550 381.28662109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04450551 381.28662109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04450552 381.28665161 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04450553 381.28665161 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04450554 381.28668213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04450555 381.28668213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04450556 381.28671265 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04450557 381.28671265 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04450558 381.28674316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04450559 381.28674316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04450560 381.28674316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04450561 381.28674316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04450562 381.28677368 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04450563 381.28680420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04450564 381.28683472 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04450565 381.28683472 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04450566 381.28686523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04450567 381.28686523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04450568 381.28689575 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04450569 381.28689575 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04450570 381.28692627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04450571 381.28692627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04450572 381.28692627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04450573 381.28692627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04450574 381.28695679 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04450575 381.28695679 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04450576 381.28698730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04450577 381.28698730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04450578 381.28701782 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04450579 381.28704834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04450580 381.28707886 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04450581 381.28707886 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04450582 381.28707886 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04450583 381.28707886 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04450584 381.28710938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04450585 381.28710938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04450586 381.28713989 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04450587 381.28713989 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04450588 381.28717041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04450589 381.28717041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04450590 381.28720093 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04450591 381.28720093 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04450592 381.28723145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04450593 381.28723145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04450594 381.28723145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04450595 381.28723145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04450596 381.28726196 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04450597 381.28726196 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04450598 381.28729248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04450599 381.28732300 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04450600 381.28732300 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04450601 381.28735352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04450602 381.28738403 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04450603 381.28738403 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04450604 381.28738403 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04450605 381.28738403 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04450606 381.28741455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04450607 381.28741455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04450608 381.28744507 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04450609 381.28744507 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04450610 381.28747559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04450611 381.28747559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04450612 381.28750610 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04450613 381.28753662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04450614 381.28756714 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04450615 381.28756714 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04450616 381.28756714 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04450617 381.28756714 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04450618 381.28759766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04450619 381.28759766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04450620 381.28762817 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04450621 381.28762817 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04450622 381.28765869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04450623 381.28768921 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04450624 381.28771973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04450625 381.28771973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04450626 381.28771973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04450627 381.28771973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04450628 381.28775024 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04450629 381.28775024 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04450630 381.28778076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04450631 381.28778076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04450632 381.28781128 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04450633 381.28781128 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04450634 381.28784180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04450635 381.28784180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04450636 381.28787231 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04450637 381.28787231 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04450638 381.28787231 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04450639 381.28787231 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04450640 381.28790283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04450641 381.28793335 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04450642 381.28796387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04450643 381.28796387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04450644 381.28799438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04450645 381.28799438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04450646 381.28802490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04450647 381.28802490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04450648 381.28802490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04450649 381.28802490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04450650 381.28805542 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04450651 381.28805542 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04450652 381.28808594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04450653 381.28811646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04450654 381.28814697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04450655 381.28814697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04450656 381.28817749 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04450657 381.28817749 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04450658 381.28817749 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04450659 381.28817749 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04450660 381.28820801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04450661 381.28820801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04450662 381.28823853 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04450663 381.28823853 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04450664 381.28826904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04450665 381.28826904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04450666 381.28829956 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04450667 381.28833008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04450668 381.28836060 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04450669 381.28836060 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04450670 381.28836060 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04450671 381.28836060 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04450672 381.28839111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04450673 381.28839111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04450674 381.28842163 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04450675 381.28842163 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04450676 381.28845215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04450677 381.28845215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04450678 381.28848267 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04450679 381.28848267 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04450680 381.28851318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04450681 381.28851318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04450682 381.28851318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04450683 381.28851318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04450684 381.28854370 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04450685 381.28854370 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04450686 381.28857422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04450687 381.28860474 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04450688 381.28863525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04450689 381.28863525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04450690 381.28866577 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04450691 381.28866577 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04450692 381.28866577 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04450693 381.28866577 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04450694 381.28869629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04450695 381.28869629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04450696 381.28872681 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04450697 381.28872681 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04450698 381.28875732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04450699 381.28875732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04450700 381.28878784 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04450701 381.28878784 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04450702 381.28881836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04450703 381.28881836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04450704 381.28881836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04450705 381.28881836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04450706 381.28884888 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04450707 381.28887939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04450708 381.28890991 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04450709 381.28890991 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04450710 381.28894043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04450711 381.28894043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04450712 381.28897095 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04450713 381.28897095 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04450714 381.28897095 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04450715 381.28897095 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04450716 381.28900146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04450717 381.28900146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04450718 381.28903198 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04450719 381.28903198 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04450720 381.28906250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04450721 381.28906250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04450722 381.28909302 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04450723 381.28912354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04450724 381.28915405 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04450725 381.28915405 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04450726 381.28915405 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04450727 381.28915405 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04450728 381.28918457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04450729 381.28918457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04450730 381.28921509 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04450731 381.28921509 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04450732 381.28924561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04450733 381.28924561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04450734 381.28927612 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04450735 381.28927612 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04450736 381.28930664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04450737 381.28930664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04450738 381.28930664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04450739 381.28930664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04450740 381.28933716 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04450741 381.28933716 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04450742 381.28936768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04450743 381.28936768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04450744 381.28939819 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04450745 381.28942871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04450746 381.28945923 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04450747 381.28945923 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04450748 381.28945923 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04450749 381.28945923 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04450750 381.28948975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04450751 381.28948975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04450752 381.28952026 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04450753 381.28952026 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04450754 381.28955078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04450755 381.28955078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04450756 381.28958130 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04450757 381.28958130 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04450758 381.28961182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04450759 381.28961182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04450760 381.28961182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04450761 381.28961182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04450762 381.28964233 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04450763 381.28967285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04450764 381.28970337 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04450765 381.28970337 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04450766 381.28973389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04450767 381.28973389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04450768 381.28976440 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04450769 381.28976440 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04450770 381.28976440 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04450771 381.28976440 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04450772 381.28979492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04450773 381.28979492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04450774 381.28982544 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04450775 381.28982544 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04450776 381.28985596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04450777 381.28985596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04450778 381.28991699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04450779 381.28991699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04450780 381.28994751 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04450781 381.28994751 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04450782 381.28994751 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04450783 381.28994751 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04450784 381.28997803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04450785 381.28997803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04450786 381.29000854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04450787 381.29000854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04450788 381.29003906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04450789 381.29003906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04450790 381.29006958 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04450791 381.29010010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04450792 381.29010010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04450793 381.29010010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04450794 381.29013062 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04450795 381.29013062 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04450796 381.29016113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04450797 381.29016113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04450798 381.29019165 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04450799 381.29019165 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04450800 381.29022217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04450801 381.29022217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04450802 381.29025269 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04450803 381.29025269 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04450804 381.29025269 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04450805 381.29028320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04450806 381.29031372 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04450807 381.29031372 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04450808 381.29034424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04450809 381.29034424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04450810 381.29037476 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04450811 381.29037476 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04450812 381.29040527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04450813 381.29040527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04450814 381.29040527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04450815 381.29040527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04450816 381.29043579 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04450817 381.29043579 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04450818 381.29046631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04450819 381.29046631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04450820 381.29049683 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04450821 381.29049683 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04450822 381.29052734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04450823 381.29055786 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04450824 381.29055786 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04450825 381.29055786 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04450826 381.29058838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04450827 381.29058838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04450828 381.29061890 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04450829 381.29061890 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04450830 381.29064941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04450831 381.29064941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04450832 381.29067993 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04450833 381.29067993 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04450834 381.29071045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04450835 381.29071045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04450836 381.29074097 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04450837 381.29074097 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04450838 381.29074097 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04450839 381.29074097 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04450840 381.29077148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04450841 381.29080200 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04450842 381.29083252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04450843 381.29083252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04450844 381.29086304 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04450845 381.29086304 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04450846 381.29089355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04450847 381.29089355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04450848 381.29089355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04450849 381.29089355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04450850 381.29092407 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04450851 381.29092407 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04450852 381.29095459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04450853 381.29095459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04450854 381.29098511 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04450855 381.29098511 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04450856 381.29101563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04450857 381.29101563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04450858 381.29104614 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04450859 381.29104614 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04450860 381.29107666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04450861 381.29107666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04450862 381.29110718 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04450863 381.29110718 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04450864 381.29113770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04450865 381.29113770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04450866 381.29116821 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04450867 381.29116821 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04450868 381.29119873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04450869 381.29119873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04450870 381.29119873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04450871 381.29119873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04450872 381.29122925 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04450873 381.29122925 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04450874 381.29125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04450875 381.29125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04450876 381.29129028 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04450877 381.29132080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04450878 381.29135132 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04450879 381.29135132 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04450880 381.29135132 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04450881 381.29135132 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04450882 381.29138184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04450883 381.29138184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04450884 381.29141235 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04450885 381.29141235 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04450886 381.29144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04450887 381.29144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04450888 381.29147339 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04450889 381.29147339 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04450890 381.29150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04450891 381.29150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04450892 381.29153442 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04450893 381.29153442 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04450894 381.29153442 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04450895 381.29153442 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04450896 381.29156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04450897 381.29159546 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04450898 381.29162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04450899 381.29162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04450900 381.29165649 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04450901 381.29165649 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04450902 381.29168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04450903 381.29168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04450904 381.29168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04450905 381.29168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04450906 381.29171753 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04450907 381.29171753 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04450908 381.29174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04450909 381.29174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04450910 381.29177856 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04450911 381.29177856 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04450912 381.29180908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04450913 381.29180908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04450914 381.29183960 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04450915 381.29183960 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04450916 381.29183960 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04450917 381.29187012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04450918 381.29190063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04450919 381.29190063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04450920 381.29193115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04450921 381.29193115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04450922 381.29196167 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04450923 381.29196167 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04450924 381.29199219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04450925 381.29199219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04450926 381.29199219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04450927 381.29199219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04450928 381.29202271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04450929 381.29202271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04450930 381.29205322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04450931 381.29205322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04450932 381.29208374 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04450933 381.29208374 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04450934 381.29211426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04450935 381.29214478 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04450936 381.29214478 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04450937 381.29214478 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04450938 381.29217529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04450939 381.29217529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04450940 381.29220581 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04450941 381.29220581 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04450942 381.29223633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04450943 381.29223633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04450944 381.29226685 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04450945 381.29226685 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04450946 381.29229736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04450947 381.29229736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04450948 381.29232788 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04450949 381.29232788 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04450950 381.29232788 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04450951 381.29232788 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04450952 381.29235840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04450953 381.29235840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04450954 381.29238892 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04450955 381.29241943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04450956 381.29244995 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04450957 381.29244995 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04450958 381.29248047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04450959 381.29248047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04450960 381.29248047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04450961 381.29248047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04450962 381.29251099 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04450963 381.29251099 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04450964 381.29254150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04450965 381.29254150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04450966 381.29257202 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04450967 381.29257202 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04450968 381.29260254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04450969 381.29260254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04450970 381.29263306 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04450971 381.29263306 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04450972 381.29263306 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04450973 381.29263306 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04450974 381.29266357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04450975 381.29266357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04450976 381.29269409 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04450977 381.29272461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04450978 381.29275513 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04450979 381.29275513 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04450980 381.29278564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04450981 381.29278564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04450982 381.29278564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04450983 381.29278564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04450984 381.29281616 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04450985 381.29281616 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04450986 381.29284668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04450987 381.29284668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04450988 381.29287720 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04450989 381.29287720 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04450990 381.29290771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04450991 381.29290771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04450992 381.29293823 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04450993 381.29293823 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04450994 381.29296875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04450995 381.29296875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04450996 381.29296875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04450997 381.29299927 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04450998 381.29302979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04450999 381.29302979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04451000 381.29306030 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04451001 381.29306030 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04451002 381.29309082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04451003 381.29309082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04451004 381.29312134 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04451005 381.29312134 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04451006 381.29312134 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04451007 381.29312134 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04451008 381.29315186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04451009 381.29315186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04451010 381.29318237 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04451011 381.29318237 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04451012 381.29321289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04451013 381.29321289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04451014 381.29324341 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04451015 381.29324341 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04451016 381.29327393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04451017 381.29327393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04451018 381.29330444 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04451019 381.29330444 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04451020 381.29333496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04451021 381.29333496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04451022 381.29336548 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04451023 381.29336548 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04451024 381.29339600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04451025 381.29339600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04451026 381.29342651 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04451027 381.29342651 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04451028 381.29342651 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04451029 381.29342651 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04451030 381.29345703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04451031 381.29345703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04451032 381.29348755 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04451033 381.29348755 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04451034 381.29351807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04451035 381.29351807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04451036 381.29354858 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04451037 381.29357910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04451038 381.29357910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04451039 381.29357910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04451040 381.29360962 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04451041 381.29360962 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04451042 381.29364014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04451043 381.29364014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04451044 381.29367065 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04451045 381.29367065 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04451046 381.29370117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04451047 381.29370117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04451048 381.29373169 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04451049 381.29373169 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04451050 381.29376221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04451051 381.29376221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04451052 381.29376221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04451053 381.29376221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04451054 381.29379272 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04451055 381.29379272 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04451056 381.29382324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04451057 381.29382324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04451058 381.29385376 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04451059 381.29388428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04451060 381.29391479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04451061 381.29391479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04451062 381.29391479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04451063 381.29391479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04451064 381.29394531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04451065 381.29394531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04451066 381.29397583 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04451067 381.29397583 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04451068 381.29400635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04451069 381.29400635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04451070 381.29403687 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04451071 381.29403687 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04451072 381.29406738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04451073 381.29406738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04451074 381.29406738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04451075 381.29406738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04451076 381.29409790 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04451077 381.29409790 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04451078 381.29412842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04451079 381.29412842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04451080 381.29415894 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04451081 381.29418945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04451082 381.29421997 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04451083 381.29421997 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04451084 381.29421997 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04451085 381.29421997 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04451086 381.29425049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04451087 381.29425049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04451088 381.29428101 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04451089 381.29428101 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04451090 381.29431152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04451091 381.29431152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04451092 381.29434204 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04451093 381.29434204 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04451094 381.29437256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04451095 381.29437256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04451096 381.29437256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04451097 381.29437256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04451098 381.29440308 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04451099 381.29440308 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04451100 381.29446411 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04451101 381.29446411 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04451102 381.29449463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04451103 381.29449463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04451104 381.29452515 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04451105 381.29455566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04451106 381.29455566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04451107 381.29455566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04451108 381.29458618 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04451109 381.29461670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04451110 381.29464722 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04451111 381.29464722 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04451112 381.29467773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04451113 381.29470825 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04451114 381.29470825 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04451115 381.29470825 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04451116 381.29473877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04451117 381.29473877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04451118 381.29476929 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04451119 381.29476929 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04451120 381.29479980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04451121 381.29479980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04451122 381.29483032 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04451123 381.29483032 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04451124 381.29486084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04451125 381.29486084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04451126 381.29486084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04451127 381.29486084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04451128 381.29489136 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04451129 381.29489136 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04451130 381.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04451131 381.29495239 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04451132 381.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04451133 381.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04451134 381.29501343 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04451135 381.29501343 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04451136 381.29501343 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04451137 381.29501343 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04451138 381.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04451139 381.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04451140 381.29507446 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04451141 381.29507446 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04451142 381.29510498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04451143 381.29513550 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04451144 381.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04451145 381.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04451146 381.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04451147 381.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04451148 381.29519653 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04451149 381.29519653 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04451150 381.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04451151 381.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04451152 381.29525757 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04451153 381.29525757 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04451154 381.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04451155 381.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04451156 381.29531860 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04451157 381.29531860 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04451158 381.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04451159 381.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04451160 381.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04451161 381.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04451162 381.29537964 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04451163 381.29541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04451164 381.29544067 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04451165 381.29544067 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04451166 381.29547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04451167 381.29547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04451168 381.29550171 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04451169 381.29550171 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04451170 381.29550171 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04451171 381.29550171 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04451172 381.29553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04451173 381.29553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04451174 381.29556274 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04451175 381.29556274 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04451176 381.29559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04451177 381.29559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04451178 381.29562378 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04451179 381.29562378 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04451180 381.29565430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04451181 381.29565430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04451182 381.29565430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04451183 381.29568481 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04451184 381.29571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04451185 381.29571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04451186 381.29574585 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04451187 381.29574585 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04451188 381.29577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04451189 381.29577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04451190 381.29580688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04451191 381.29580688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04451192 381.29580688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04451193 381.29580688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04451194 381.29583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04451195 381.29583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04451196 381.29586792 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04451197 381.29586792 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04451198 381.29589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04451199 381.29589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04451200 381.29592896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04451201 381.29592896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04451202 381.29595947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04451203 381.29595947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04451204 381.29598999 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04451205 381.29598999 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04451206 381.29602051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04451207 381.29602051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04451208 381.29605103 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04451209 381.29605103 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04451210 381.29608154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04451211 381.29608154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04451212 381.29611206 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04451213 381.29611206 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04451214 381.29614258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04451215 381.29614258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04451216 381.29614258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04451217 381.29614258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04451218 381.29617310 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04451219 381.29617310 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04451220 381.29620361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04451221 381.29620361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04451222 381.29623413 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04451223 381.29623413 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04451224 381.29626465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04451225 381.29629517 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04451226 381.29629517 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04451227 381.29629517 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04451228 381.29632568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04451229 381.29632568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04451230 381.29635620 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04451231 381.29635620 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04451232 381.29638672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04451233 381.29638672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04451234 381.29641724 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04451235 381.29641724 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04451236 381.29644775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04451237 381.29644775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04451238 381.29644775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04451239 381.29644775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04451240 381.29647827 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04451241 381.29647827 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04451242 381.29650879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04451243 381.29650879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04451244 381.29653931 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04451245 381.29656982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04451246 381.29660034 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04451247 381.29660034 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04451248 381.29660034 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04451249 381.29660034 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04451250 381.29663086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04451251 381.29663086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04451252 381.29666138 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04451253 381.29666138 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04451254 381.29669189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04451255 381.29669189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04451256 381.29672241 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04451257 381.29672241 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04451258 381.29675293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04451259 381.29675293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04451260 381.29675293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04451261 381.29678345 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04451262 381.29681396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04451263 381.29681396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04451264 381.29684448 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04451265 381.29684448 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04451266 381.29687500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04451267 381.29687500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04451268 381.29690552 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04451269 381.29690552 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04451270 381.29693604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04451271 381.29693604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04451272 381.29693604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04451273 381.29693604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04451274 381.29696655 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04451275 381.29696655 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04451276 381.29699707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04451277 381.29702759 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04451278 381.29705811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04451279 381.29705811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04451280 381.29708862 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04451281 381.29708862 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04451282 381.29708862 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04451283 381.29708862 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04451284 381.29711914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04451285 381.29711914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04451286 381.29714966 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04451287 381.29714966 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04451288 381.29718018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04451289 381.29718018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04451290 381.29721069 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04451291 381.29721069 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04451292 381.29724121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04451293 381.29724121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04451294 381.29727173 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04451295 381.29727173 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04451296 381.29730225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04451297 381.29730225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04451298 381.29733276 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04451299 381.29733276 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04451300 381.29736328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04451301 381.29736328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04451302 381.29739380 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04451303 381.29739380 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04451304 381.29739380 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04451305 381.29739380 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04451306 381.29742432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04451307 381.29742432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04451308 381.29745483 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04451309 381.29745483 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04451310 381.29748535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04451311 381.29751587 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04451312 381.29754639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04451313 381.29754639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04451314 381.29754639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04451315 381.29754639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04451316 381.29757690 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04451317 381.29757690 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04451318 381.29760742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04451319 381.29760742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04451320 381.29763794 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04451321 381.29763794 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04451322 381.29766846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04451323 381.29766846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04451324 381.29769897 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04451325 381.29769897 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04451326 381.29772949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04451327 381.29772949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04451328 381.29772949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04451329 381.29772949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04451330 381.29776001 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04451331 381.29779053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04451332 381.29782104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04451333 381.29782104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04451334 381.29785156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04451335 381.29785156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04451336 381.29788208 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04451337 381.29788208 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04451338 381.29788208 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04451339 381.29788208 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04451340 381.29791260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04451341 381.29791260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04451342 381.29794312 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04451343 381.29794312 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04451344 381.29797363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04451345 381.29797363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04451346 381.29800415 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04451347 381.29800415 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04451348 381.29803467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04451349 381.29803467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04451350 381.29803467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04451351 381.29803467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04451352 381.29806519 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04451353 381.29809570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04451354 381.29812622 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04451355 381.29812622 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04451356 381.29815674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04451357 381.29815674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04451358 381.29818726 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04451359 381.29818726 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04451360 381.29818726 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04451361 381.29818726 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04451362 381.29821777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04451363 381.29821777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04451364 381.29824829 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04451365 381.29824829 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04451366 381.29827881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04451367 381.29827881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04451368 381.29830933 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04451369 381.29830933 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04451370 381.29833984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04451371 381.29833984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04451372 381.29837036 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04451373 381.29837036 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04451374 381.29837036 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04451375 381.29840088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04451376 381.29843140 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04451377 381.29843140 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04451378 381.29846191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04451379 381.29846191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04451380 381.29849243 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04451381 381.29849243 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04451382 381.29852295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04451383 381.29852295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04451384 381.29852295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04451385 381.29852295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04451386 381.29855347 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04451387 381.29855347 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04451388 381.29858398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04451389 381.29858398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04451390 381.29861450 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04451391 381.29861450 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04451392 381.29864502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04451393 381.29864502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04451394 381.29867554 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04451395 381.29867554 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04451396 381.29870605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04451397 381.29870605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04451398 381.29873657 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04451399 381.29873657 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04451400 381.29876709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04451401 381.29876709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04451402 381.29879761 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04451403 381.29879761 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04451404 381.29882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04451405 381.29882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04451406 381.29882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04451407 381.29882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04451408 381.29885864 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04451409 381.29885864 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04451410 381.29888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04451411 381.29888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04451412 381.29891968 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04451413 381.29895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04451414 381.29895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04451415 381.29898071 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04451416 381.29898071 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04451417 381.29898071 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04451418 381.29901123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04451419 381.29901123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04451420 381.29904175 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04451421 381.29904175 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04451422 381.29907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04451423 381.29907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04451424 381.29910278 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04451425 381.29910278 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04451426 381.29913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04451427 381.29913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04451428 381.29916382 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04451429 381.29916382 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04451430 381.29916382 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04451431 381.29916382 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04451432 381.29919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04451433 381.29919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04451434 381.29922485 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04451435 381.29925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04451436 381.29928589 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04451437 381.29928589 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04451438 381.29931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04451439 381.29931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04451440 381.29931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04451441 381.29931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04451442 381.29934692 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04451443 381.29934692 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04451444 381.29937744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04451445 381.29937744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04451446 381.29940796 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04451447 381.29940796 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04451448 381.29943848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04451449 381.29943848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04451450 381.29946899 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04451451 381.29946899 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04451452 381.29946899 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04451453 381.29946899 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04451454 381.29949951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04451455 381.29949951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04451456 381.29953003 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04451457 381.29956055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04451458 381.29959106 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04451459 381.29959106 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04451460 381.29962158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04451461 381.29962158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04451462 381.29962158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04451463 381.29962158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04451464 381.29965210 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04451465 381.29965210 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04451466 381.29968262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04451467 381.29968262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04451468 381.29971313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04451469 381.29971313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04451470 381.29974365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04451471 381.29974365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04451472 381.29977417 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04451473 381.29977417 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04451474 381.29977417 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04451475 381.29977417 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04451476 381.29980469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04451477 381.29983521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04451478 381.29986572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04451479 381.29986572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04451480 381.29989624 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04451481 381.29989624 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04451482 381.29992676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04451483 381.29992676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04451484 381.29995728 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04451485 381.29995728 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04451486 381.29995728 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04451487 381.29995728 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04451488 381.29998779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04451489 381.29998779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04451490 381.30001831 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04451491 381.30001831 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04451492 381.30004883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04451493 381.30004883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04451494 381.30007935 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04451495 381.30007935 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04451496 381.30010986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04451497 381.30010986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04451498 381.30010986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04451499 381.30014038 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04451500 381.30017090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04451501 381.30017090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04451502 381.30020142 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04451503 381.30020142 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04451504 381.30023193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04451505 381.30023193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04451506 381.30026245 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04451507 381.30026245 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04451508 381.30026245 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04451509 381.30026245 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04451510 381.30029297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04451511 381.30029297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04451512 381.30032349 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04451513 381.30032349 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04451514 381.30035400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04451515 381.30035400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04451516 381.30038452 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04451517 381.30038452 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04451518 381.30041504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04451519 381.30041504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04451520 381.30041504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04451521 381.30044556 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04451522 381.30047607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04451523 381.30047607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04451524 381.30050659 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04451525 381.30050659 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04451526 381.30053711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04451527 381.30053711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04451528 381.30056763 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04451529 381.30056763 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04451530 381.30056763 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04451531 381.30056763 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04451532 381.30059814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04451533 381.30059814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04451534 381.30062866 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04451535 381.30062866 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04451536 381.30065918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04451537 381.30065918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04451538 381.30068970 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04451539 381.30068970 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04451540 381.30072021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04451541 381.30075073 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04451542 381.30075073 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04451543 381.30075073 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04451544 381.30078125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04451545 381.30078125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04451546 381.30081177 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04451547 381.30081177 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04451548 381.30084229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04451549 381.30084229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04451550 381.30087280 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04451551 381.30087280 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04451552 381.30090332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04451553 381.30090332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04451554 381.30090332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04451555 381.30090332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04451556 381.30093384 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04451557 381.30093384 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04451558 381.30096436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04451559 381.30096436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04451560 381.30099487 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04451561 381.30099487 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04451562 381.30102539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04451563 381.30102539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04451564 381.30105591 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04451565 381.30105591 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04451566 381.30108643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04451567 381.30108643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04451568 381.30111694 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04451569 381.30111694 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04451570 381.30114746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04451571 381.30114746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04451572 381.30117798 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04451573 381.30117798 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04451574 381.30120850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04451575 381.30120850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04451576 381.30120850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04451577 381.30120850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04451578 381.30123901 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04451579 381.30123901 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04451580 381.30126953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04451581 381.30126953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04451582 381.30130005 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04451583 381.30130005 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04451584 381.30133057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04451585 381.30133057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04451586 381.30136108 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04451587 381.30136108 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04451588 381.30139160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04451589 381.30139160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04451590 381.30142212 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04451591 381.30142212 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04451592 381.30145264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04451593 381.30145264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04451594 381.30148315 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04451595 381.30148315 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04451596 381.30151367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04451597 381.30154419 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04451598 381.30154419 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04451599 381.30154419 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04451600 381.30157471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04451601 381.30157471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04451602 381.30160522 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04451603 381.30160522 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04451604 381.30163574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04451605 381.30163574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04451606 381.30166626 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04451607 381.30166626 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04451608 381.30169678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04451609 381.30169678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04451610 381.30169678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04451611 381.30169678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04451612 381.30172729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04451613 381.30172729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04451614 381.30175781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04451615 381.30178833 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04451616 381.30181885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04451617 381.30181885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04451618 381.30184937 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04451619 381.30184937 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04451620 381.30184937 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04451621 381.30184937 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04451622 381.30187988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04451623 381.30187988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04451624 381.30191040 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04451625 381.30191040 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04451626 381.30194092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04451627 381.30194092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04451628 381.30197144 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04451629 381.30200195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04451630 381.30200195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04451631 381.30200195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04451632 381.30203247 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04451633 381.30203247 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04451634 381.30206299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04451635 381.30206299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04451636 381.30209351 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04451637 381.30209351 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04451638 381.30212402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04451639 381.30212402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04451640 381.30215454 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04451641 381.30215454 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04451642 381.30218506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04451643 381.30218506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04451644 381.30221558 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04451645 381.30221558 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04451646 381.30224609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04451647 381.30224609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04451648 381.30227661 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04451649 381.30227661 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04451650 381.30230713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04451651 381.30233765 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04451652 381.30233765 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04451653 381.30233765 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04451654 381.30236816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04451655 381.30236816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04451656 381.30239868 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04451657 381.30239868 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04451658 381.30242920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04451659 381.30242920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04451660 381.30245972 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04451661 381.30245972 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04451662 381.30249023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04451663 381.30249023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04451664 381.30252075 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04451665 381.30252075 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04451666 381.30255127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04451667 381.30255127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04451668 381.30258179 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04451669 381.30258179 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04451670 381.30261230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04451671 381.30261230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04451672 381.30264282 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04451673 381.30264282 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04451674 381.30264282 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04451675 381.30264282 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04451676 381.30267334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04451677 381.30267334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04451678 381.30270386 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04451679 381.30270386 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04451680 381.30273438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04451681 381.30273438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04451682 381.30276489 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04451683 381.30279541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04451684 381.30279541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04451685 381.30279541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04451686 381.30282593 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04451687 381.30282593 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04451688 381.30285645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04451689 381.30285645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04451690 381.30288696 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04451691 381.30288696 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04451692 381.30291748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04451693 381.30291748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04451694 381.30294800 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04451695 381.30294800 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04451696 381.30294800 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04451697 381.30294800 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04451698 381.30297852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04451699 381.30297852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04451700 381.30300903 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04451701 381.30303955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04451702 381.30307007 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04451703 381.30307007 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04451704 381.30310059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04451705 381.30310059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04451706 381.30313110 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04451707 381.30313110 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04451708 381.30313110 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04451709 381.30313110 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04451710 381.30316162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04451711 381.30316162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04451712 381.30319214 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04451713 381.30319214 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04451714 381.30322266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04451715 381.30325317 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04451716 381.30328369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04451717 381.30328369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04451718 381.30328369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04451719 381.30328369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04451720 381.30331421 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04451721 381.30331421 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04451722 381.30334473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04451723 381.30334473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04451724 381.30337524 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04451725 381.30337524 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04451726 381.30340576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04451727 381.30340576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04451728 381.30343628 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04451729 381.30343628 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04451730 381.30343628 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04451731 381.30343628 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04451732 381.30349731 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04451733 381.30349731 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04451734 381.30352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04451735 381.30352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04451736 381.30355835 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04451737 381.30355835 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04451738 381.30358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04451739 381.30358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04451740 381.30358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04451741 381.30358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04451742 381.30361938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04451743 381.30361938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04451744 381.30364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04451745 381.30364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04451746 381.30368042 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04451747 381.30368042 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04451748 381.30371094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04451749 381.30374146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04451750 381.30377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04451751 381.30377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04451752 381.30377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04451753 381.30377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04451754 381.30380249 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04451755 381.30380249 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04451756 381.30383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04451757 381.30383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04451758 381.30386353 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04451759 381.30386353 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04451760 381.30389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04451761 381.30389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04451762 381.30392456 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04451763 381.30392456 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04451764 381.30392456 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04451765 381.30395508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04451766 381.30398560 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04451767 381.30398560 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04451768 381.30401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04451769 381.30401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04451770 381.30404663 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04451771 381.30404663 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04451772 381.30407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04451773 381.30407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04451774 381.30407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04451775 381.30407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04451776 381.30410767 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04451777 381.30413818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04451778 381.30416870 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04451779 381.30416870 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04451780 381.30419922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04451781 381.30419922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04451782 381.30422974 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04451783 381.30422974 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04451784 381.30422974 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04451785 381.30422974 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04451786 381.30426025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04451787 381.30426025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04451788 381.30429077 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04451789 381.30429077 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04451790 381.30432129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04451791 381.30432129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04451792 381.30438232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04451793 381.30438232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04451794 381.30438232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04451795 381.30438232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04451796 381.30441284 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04451797 381.30441284 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04451798 381.30444336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04451799 381.30444336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04451800 381.30447388 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04451801 381.30447388 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04451802 381.30450439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04451803 381.30450439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04451804 381.30453491 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04451805 381.30453491 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04451806 381.30456543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04451807 381.30456543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04451808 381.30456543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04451809 381.30456543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04451810 381.30459595 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04451811 381.30462646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04451812 381.30465698 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04451813 381.30465698 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04451814 381.30468750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04451815 381.30468750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04451816 381.30471802 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04451817 381.30471802 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04451818 381.30471802 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04451819 381.30471802 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04451820 381.30474854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04451821 381.30474854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04451822 381.30477905 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04451823 381.30477905 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04451824 381.30480957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04451825 381.30480957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04451826 381.30484009 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04451827 381.30487061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04451828 381.30487061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04451829 381.30487061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04451830 381.30490112 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04451831 381.30490112 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04451832 381.30493164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04451833 381.30493164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04451834 381.30496216 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04451835 381.30496216 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04451836 381.30499268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04451837 381.30499268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04451838 381.30502319 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04451839 381.30502319 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04451840 381.30502319 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04451841 381.30502319 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04451842 381.30505371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04451843 381.30505371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04451844 381.30508423 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04451845 381.30511475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04451846 381.30514526 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04451847 381.30514526 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04451848 381.30517578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04451849 381.30517578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04451850 381.30517578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04451851 381.30517578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04451852 381.30520630 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04451853 381.30520630 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04451854 381.30523682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04451855 381.30523682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04451856 381.30526733 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04451857 381.30526733 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04451858 381.30529785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04451859 381.30529785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04451860 381.30532837 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04451861 381.30532837 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04451862 381.30535889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04451863 381.30535889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04451864 381.30538940 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04451865 381.30538940 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04451866 381.30541992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04451867 381.30541992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04451868 381.30545044 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04451869 381.30545044 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04451870 381.30548096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04451871 381.30548096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04451872 381.30551147 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04451873 381.30551147 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04451874 381.30551147 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04451875 381.30551147 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04451876 381.30554199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04451877 381.30554199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04451878 381.30557251 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04451879 381.30557251 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04451880 381.30560303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04451881 381.30563354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04451882 381.30566406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04451883 381.30566406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04451884 381.30566406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04451885 381.30566406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04451886 381.30569458 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04451887 381.30569458 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04451888 381.30572510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04451889 381.30572510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04451890 381.30575562 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04451891 381.30575562 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04451892 381.30578613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04451893 381.30578613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04451894 381.30581665 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04451895 381.30581665 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04451896 381.30581665 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04451897 381.30581665 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04451898 381.30584717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04451899 381.30587769 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04451900 381.30590820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04451901 381.30590820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04451902 381.30593872 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04451903 381.30593872 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04451904 381.30596924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04451905 381.30596924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04451906 381.30596924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04451907 381.30596924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04451908 381.30599976 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04451909 381.30599976 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04451910 381.30603027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04451911 381.30603027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04451912 381.30606079 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04451913 381.30606079 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04451914 381.30609131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04451915 381.30612183 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04451916 381.30615234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04451917 381.30615234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04451918 381.30615234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04451919 381.30615234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04451920 381.30618286 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04451921 381.30618286 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04451922 381.30621338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04451923 381.30621338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04451924 381.30624390 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04451925 381.30624390 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04451926 381.30627441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04451927 381.30627441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04451928 381.30630493 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04451929 381.30630493 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04451930 381.30630493 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04451931 381.30630493 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04451932 381.30633545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04451933 381.30636597 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04451934 381.30639648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04451935 381.30639648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04451936 381.30642700 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04451937 381.30642700 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04451938 381.30645752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04451939 381.30645752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04451940 381.30645752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04451941 381.30645752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04451942 381.30648804 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04451943 381.30648804 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04451944 381.30651855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04451945 381.30651855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04451946 381.30654907 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04451947 381.30654907 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04451948 381.30657959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04451949 381.30657959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04451950 381.30661011 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04451951 381.30661011 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04451952 381.30661011 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04451953 381.30661011 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04451954 381.30664063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04451955 381.30667114 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04451956 381.30670166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04451957 381.30670166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04451958 381.30673218 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04451959 381.30673218 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04451960 381.30676270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04451961 381.30676270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04451962 381.30676270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04451963 381.30676270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04451964 381.30679321 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04451965 381.30679321 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04451966 381.30682373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04451967 381.30682373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04451968 381.30685425 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04451969 381.30685425 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04451970 381.30688477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04451971 381.30688477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04451972 381.30691528 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04451973 381.30694580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04451974 381.30694580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04451975 381.30694580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04451976 381.30697632 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04451977 381.30697632 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04451978 381.30700684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -04451979 381.30700684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -04451980 381.30703735 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -04451981 381.30703735 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -04451982 381.30706787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -04451983 381.30706787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -04451984 381.30709839 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -04451985 381.30709839 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -04451986 381.30709839 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -04451987 381.30709839 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -04451988 381.30712891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -04451989 381.30712891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -04451990 381.30715942 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -04451991 381.30715942 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -04451992 381.30718994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -04451993 381.30718994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -04451994 381.30722046 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -04451995 381.30725098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -04451996 381.30725098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -04451997 381.30725098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -04451998 381.30728149 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -04451999 381.30728149 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -04452000 381.30731201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -04452001 381.30731201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -04452002 381.30734253 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -04452003 381.30734253 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -04452004 381.30737305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -04452005 381.30737305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -04452006 381.30740356 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -04452007 381.30740356 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -04452008 381.30740356 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -04452009 381.30740356 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -04452010 381.30743408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -04452011 381.30743408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -04452012 381.30746460 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -04452013 381.30746460 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -04452014 381.30749512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -04452015 381.30749512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -04452016 381.30752563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -04452017 381.30755615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -04452018 381.30755615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -04452019 381.30755615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -04452020 381.30758667 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -04452021 381.30758667 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -04452022 381.30761719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -04452023 381.30761719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -04452024 381.30764771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -04452025 381.30764771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -04452026 381.30767822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -04452027 381.30767822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -04452028 381.30770874 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -04452029 381.30770874 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -04452030 381.30773926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -04452031 381.30773926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -04452032 381.30773926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -04452033 381.30773926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -04452034 381.30776978 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -04452035 381.30776978 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -04452036 381.30780029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -04452037 381.30780029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -04452038 381.30783081 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -04452039 381.30786133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -04452040 381.30789185 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -04452041 381.30789185 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -04452042 381.30789185 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -04452043 381.30789185 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -04452044 381.30792236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -04452045 381.30792236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -04452046 381.30795288 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -04452047 381.30795288 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -04452048 381.30798340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -04452049 381.30798340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -04452050 381.30801392 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -04452051 381.30801392 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -04452052 381.30804443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -04452053 381.30804443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -04452054 381.30804443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -04452055 381.30804443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -04452056 381.30807495 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -04452057 381.30807495 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -04452058 381.30810547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -04452059 381.30810547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -04452060 381.30813599 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -04452061 381.30816650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -04452062 381.30819702 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -04452063 381.30819702 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -04452064 381.30819702 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -04452065 381.30819702 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -04452066 381.30822754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -04452067 381.30822754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -04452068 381.30825806 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -04452069 381.30825806 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -04452070 381.30828857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -04452071 381.30828857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -04452072 381.30831909 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -04452073 381.30831909 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -04452074 381.30834961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -04452075 381.30834961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -04452076 381.30838013 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -04452077 381.30838013 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -04452078 381.30841064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -04452079 381.30841064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -04452080 381.30844116 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -04452081 381.30844116 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -04452082 381.30847168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -04452083 381.30850220 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -04452084 381.30853271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -04452085 381.30853271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -04452086 381.30853271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -04452087 381.30853271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -04452088 381.30856323 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -04452089 381.30856323 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -04452090 381.30859375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -04452091 381.30859375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -04452092 381.30862427 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -04452093 381.30862427 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -04452094 381.30865479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -04452095 381.30865479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -04452096 381.30868530 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -04452097 381.30868530 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -04452098 381.30868530 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -04452099 381.30868530 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -04452100 381.30871582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -04452101 381.30871582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -04452102 381.30874634 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -04452103 381.30877686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -04452104 381.30880737 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -04452105 381.30880737 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -04452106 381.30883789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -04452107 381.30883789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -04452108 381.30883789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -04452109 381.30883789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -04452110 381.30886841 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -04452111 381.30886841 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -04452112 381.30889893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -04452113 381.30889893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -04452114 381.30892944 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -04452115 381.30892944 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -04452116 381.30895996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -04452117 381.30895996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -04452118 381.30899048 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -04452119 381.30899048 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -04452120 381.30899048 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -04452121 381.30899048 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -04460926 381.43386841 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16148 -04460927 381.43386841 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16148 -04460928 381.43389893 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16158 -04460929 381.43389893 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16158 -04460930 381.43392944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16168 -04460931 381.43392944 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16168 -04460932 381.43395996 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16178 -04460933 381.43395996 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16178 -04460934 381.43399048 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16188 -04460935 381.43402100 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16188 -04460936 381.43402100 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16198 -04460937 381.43402100 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16198 -04460938 381.43405151 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a8 -04460939 381.43405151 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161a8 -04460940 381.43408203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b8 -04460941 381.43408203 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161b8 -04460942 381.43411255 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c8 -04460943 381.43411255 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161c8 -04460944 381.43414307 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d8 -04460945 381.43414307 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161d8 -04460946 381.43417358 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e8 -04460947 381.43417358 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161e8 -04460948 381.43417358 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f8 -04460949 381.43417358 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x161f8 -04460950 381.43420410 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16208 -04460951 381.43420410 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16208 -04460952 381.43423462 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16218 -04460953 381.43423462 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16218 -04460954 381.43426514 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16228 -04460955 381.43429565 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16228 -04460956 381.43432617 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16238 -04460957 381.43432617 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16238 -04460958 381.43435669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16248 -04460959 381.43435669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16248 -04460960 381.43435669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16258 -04460961 381.43435669 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16258 -04460962 381.43438721 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16268 -04460963 381.43438721 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16268 -04460964 381.43441772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16278 -04460965 381.43441772 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16278 -04460966 381.43444824 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16288 -04460967 381.43444824 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16288 -04460968 381.43447876 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -04460969 381.43447876 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -04465858 381.50451660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -04465859 381.50451660 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -04465860 381.50454712 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -04465861 381.50454712 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -04465862 381.50457764 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -04465863 381.50457764 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -04465864 381.50460815 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -04465865 381.50460815 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -04465866 381.50463867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -04465867 381.50463867 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -04465868 381.50466919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -04465869 381.50466919 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -04465870 381.50469971 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -04465871 381.50469971 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -04465872 381.50473022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd8 -04465873 381.50473022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd8 -04465874 381.50473022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe8 -04465875 381.50473022 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbe8 -04465876 381.50476074 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf8 -04465877 381.50476074 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbf8 -04465878 381.50479126 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc08 -04465879 381.50482178 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc08 -04465880 381.50485229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc18 -04465881 381.50485229 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc18 -04465882 381.50488281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc28 -04465883 381.50488281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc28 -04465884 381.50488281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc38 -04465885 381.50488281 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc38 -04465886 381.50491333 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc48 -04465887 381.50491333 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc48 -04465888 381.50494385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc58 -04465889 381.50494385 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc58 -04465890 381.50497437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc68 -04465891 381.50497437 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc68 -04465892 381.50500488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc78 -04465893 381.50500488 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc78 -04465894 381.50503540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc88 -04465895 381.50503540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc88 -04465896 381.50503540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc98 -04465897 381.50503540 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc98 -04465898 381.50506592 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -04465899 381.50509644 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fca8 -04465900 381.50512695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -04465901 381.50512695 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fcb8 -04472202 381.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a8 -04472203 381.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a8 -04472204 381.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b8 -04472205 381.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b8 -04472206 381.59609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c8 -04472207 381.59609985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c8 -04472208 381.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d8 -04472209 381.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d8 -04472210 381.59616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e8 -04472211 381.59616089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e8 -04472212 381.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f8 -04472213 381.59622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f8 -04472214 381.59622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c208 -04472215 381.59622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c208 -04472216 381.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c218 -04472217 381.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c218 -04472218 381.59628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c228 -04472219 381.59628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c228 -04472220 381.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c238 -04472221 381.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c238 -04472222 381.59634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c248 -04472223 381.59634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c248 -04472224 381.59637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -04472225 381.59637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -04472226 381.59640503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -04472227 381.59640503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -04472228 381.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -04472229 381.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -04472230 381.59646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -04472231 381.59646606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -04472232 381.59649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -04472233 381.59649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -04472234 381.59652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a8 -04472235 381.59652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a8 -04472236 381.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b8 -04472237 381.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b8 -04472238 381.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c8 -04472239 381.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c8 -04472240 381.59658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d8 -04472241 381.59658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d8 -04472242 381.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e8 -04472243 381.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e8 -04472244 381.59664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f8 -04472245 381.59667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f8 -04478178 381.68225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -04478179 381.68225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -04478180 381.68228149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -04478181 381.68228149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -04478182 381.68231201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -04478183 381.68231201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -04478184 381.68234253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -04478185 381.68234253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -04478186 381.68234253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -04478187 381.68234253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -04478188 381.68237305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb8 -04478189 381.68237305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb8 -04478190 381.68240356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc8 -04478191 381.68240356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc8 -04478192 381.68243408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd8 -04478193 381.68243408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd8 -04478194 381.68246460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce8 -04478195 381.68246460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce8 -04478196 381.68249512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf8 -04478197 381.68249512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf8 -04478198 381.68252563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d08 -04478199 381.68252563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d08 -04478200 381.68255615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d18 -04478201 381.68255615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d18 -04478202 381.68258667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d28 -04478203 381.68258667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d28 -04478204 381.68261719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d38 -04478205 381.68261719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d38 -04478206 381.68264771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d48 -04478207 381.68264771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d48 -04478208 381.68267822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d58 -04478209 381.68267822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d58 -04478210 381.68270874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d68 -04478211 381.68270874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d68 -04478212 381.68273926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d78 -04478213 381.68273926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d78 -04478214 381.68276978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d88 -04478215 381.68276978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d88 -04478216 381.68283081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d98 -04478217 381.68283081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d98 -04478218 381.68283081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da8 -04478219 381.68283081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37da8 -04478220 381.68286133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db8 -04478221 381.68286133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37db8 -04492028 382.00244141 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492029 382.00247192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492030 382.00247192 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492031 382.00250244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04492032 382.00262451 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492033 382.00262451 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04492034 382.00268555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492035 382.00271606 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04492036 382.52206421 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04492037 382.54260254 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492038 382.54260254 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492039 384.50958252 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492040 384.50964355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492041 384.50967407 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492042 384.50967407 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04492043 384.50979614 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492044 384.50979614 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04492045 384.50988770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04492046 384.50988770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04492047 384.54357910 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04492048 384.56396484 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492049 384.56396484 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492050 386.56628418 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04492051 386.58651733 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492052 386.58651733 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04492053 386.87600708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04492054 386.87603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04492055 386.87606812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04492056 386.87606812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04492057 386.87606812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04492058 386.87609863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04492059 386.87612915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04492060 386.87612915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04492061 386.87615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04492062 386.87615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04492063 386.87619019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04492064 386.87619019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04492065 386.87622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04492066 386.87622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04492067 386.87625122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04492068 386.87625122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04492069 386.87625122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04492070 386.87625122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04492071 386.87628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04492072 386.87628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04492073 386.87631226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04492074 386.87631226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04492075 386.87634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04492076 386.87634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04492077 386.87637329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04492078 386.87637329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04492079 386.87640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04492080 386.87640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04492081 386.87640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04492082 386.87640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04492083 386.87643433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04492084 386.87643433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04492085 386.87646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04492086 386.87646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04492087 386.87649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04492088 386.87649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04492089 386.87652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04492090 386.87652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04492091 386.87655640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04492092 386.87655640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04492093 386.87655640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04492094 386.87655640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04492095 386.87658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04492096 386.87658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04492097 386.87661743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04492098 386.87664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04492099 386.87664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04492100 386.87667847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04492101 386.87670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04492102 386.87670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04492103 386.87670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04492104 386.87670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04492105 386.87673950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04492106 386.87673950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04492107 386.87677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04492108 386.87677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04492109 386.87680054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04492110 386.87680054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04492111 386.87683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04492112 386.87683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04492113 386.87686157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04492114 386.87686157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04492115 386.87686157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04492116 386.87686157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04492117 386.87689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04492118 386.87689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04492119 386.87692261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04492120 386.87692261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04492121 386.87695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04492122 386.87695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04492123 386.87698364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04492124 386.87698364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04492125 386.87701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04492126 386.87701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04492127 386.87704468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04492128 386.87704468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04492129 386.87704468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04492130 386.87704468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04492131 386.87707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04492132 386.87707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04492133 386.87710571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04492134 386.87710571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04492135 386.87713623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04492136 386.87716675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04492137 386.87716675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04492138 386.87719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04492139 386.87719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04492140 386.87719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04492141 386.87722778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04492142 386.87722778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04492143 386.87725830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04492144 386.87725830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04492145 386.87728882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04492146 386.87728882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04492147 386.87731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04492148 386.87731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04492149 386.87734985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04492150 386.87734985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04492151 386.87734985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04492152 386.87734985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04492153 386.87738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04492154 386.87738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04492155 386.87741089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04492156 386.87741089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04492157 386.87744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04492158 386.87744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04492159 386.87747192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04492160 386.87747192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04492161 386.87750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04492162 386.87750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04492163 386.87750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04492164 386.87750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04492165 386.87753296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04492166 386.87753296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04492167 386.87756348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04492168 386.87756348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04492169 386.87759399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04492170 386.87759399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04492171 386.87762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04492172 386.87762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04492173 386.87765503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04492174 386.87765503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04492175 386.87768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04492176 386.87768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04492177 386.87771606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04492178 386.87771606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04492179 386.87774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04492180 386.87774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04492181 386.87777710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04492182 386.87780762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04492183 386.87783813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04492184 386.87783813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04492185 386.87783813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04492186 386.87783813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04492187 386.87786865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04492188 386.87786865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04492189 386.87789917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04492190 386.87789917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04492191 386.87792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04492192 386.87796021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04492193 386.87799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04492194 386.87799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04492195 386.87799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04492196 386.87799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04492197 386.87802124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04492198 386.87802124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04492199 386.87805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04492200 386.87808228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04492201 386.87811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04492202 386.87811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04492203 386.87814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04492204 386.87814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04492205 386.87814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04492206 386.87814331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04492207 386.87817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04492208 386.87817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04492209 386.87820435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04492210 386.87820435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04492211 386.87823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04492212 386.87823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04492213 386.87826538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04492214 386.87826538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04492215 386.87829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04492216 386.87829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04492217 386.87829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04492218 386.87829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04492219 386.87832642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04492220 386.87832642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04492221 386.87835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04492222 386.87838745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04492223 386.87841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04492224 386.87841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04492225 386.87844849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04492226 386.87844849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04492227 386.87847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04492228 386.87847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04492229 386.87850952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04492230 386.87850952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04492231 386.87854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04492232 386.87854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04492233 386.87857056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04492234 386.87857056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04492235 386.87860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04492236 386.87860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04492237 386.87863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04492238 386.87863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04492239 386.87863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04492240 386.87863159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04492241 386.87866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04492242 386.87866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04492243 386.87869263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04492244 386.87869263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04492245 386.87872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04492246 386.87875366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04492247 386.87878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04492248 386.87878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04492249 386.87878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04492250 386.87878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04492251 386.87881470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04492252 386.87881470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04492253 386.87884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04492254 386.87884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04492255 386.87887573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04492256 386.87887573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04492257 386.87890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04492258 386.87890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04492259 386.87893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04492260 386.87893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04492261 386.87893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04492262 386.87893677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04492263 386.87896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04492264 386.87896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04492265 386.87899780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04492266 386.87902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04492267 386.87905884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04492268 386.87905884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04492269 386.87908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04492270 386.87908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04492271 386.87908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04492272 386.87908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04492273 386.87911987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04492274 386.87911987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04492275 386.87915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04492276 386.87915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04492277 386.87918091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04492278 386.87918091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04492279 386.87921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04492280 386.87921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04492281 386.87924194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04492282 386.87924194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04492283 386.87927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04492284 386.87927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04492285 386.87927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04492286 386.87930298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04492287 386.87933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04492288 386.87933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04492289 386.87936401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04492290 386.87936401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04492291 386.87939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04492292 386.87939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04492293 386.87942505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04492294 386.87942505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04492295 386.87942505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04492296 386.87942505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04492297 386.87945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04492298 386.87945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04492299 386.87948608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04492300 386.87948608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04492301 386.87951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04492302 386.87951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04492303 386.87954712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04492304 386.87954712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04492305 386.87957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04492306 386.87957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04492307 386.87957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04492308 386.87960815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04492309 386.87963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04492310 386.87963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04492311 386.87966919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04492312 386.87966919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04492313 386.87969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04492314 386.87969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04492315 386.87973022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04492316 386.87973022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04492317 386.87973022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04492318 386.87973022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04492319 386.87976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04492320 386.87976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04492321 386.87979126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04492322 386.87979126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04492323 386.87982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04492324 386.87982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04492325 386.87985229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04492326 386.87988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04492327 386.87988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04492328 386.87988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04492329 386.87991333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04492330 386.87991333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04492331 386.87994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04492332 386.87994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04492333 386.87997437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04492334 386.87997437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04492335 386.88000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04492336 386.88000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04492337 386.88003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04492338 386.88003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04492339 386.88006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04492340 386.88006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04492341 386.88009644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04492342 386.88009644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04492343 386.88012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04492344 386.88012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04492345 386.88015747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04492346 386.88015747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04492347 386.88018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04492348 386.88018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04492349 386.88021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04492350 386.88021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04492351 386.88021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04492352 386.88021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04492353 386.88024902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04492354 386.88027954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04492355 386.88031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04492356 386.88031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04492357 386.88034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04492358 386.88034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04492359 386.88037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04492360 386.88037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04492361 386.88037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04492362 386.88037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04492363 386.88040161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04492364 386.88040161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04492365 386.88043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04492366 386.88043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04492367 386.88046265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04492368 386.88046265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04492369 386.88049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04492370 386.88052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04492371 386.88052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04492372 386.88052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04492373 386.88055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04492374 386.88055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04492375 386.88058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04492376 386.88058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04492377 386.88061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04492378 386.88061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04492379 386.88064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04492380 386.88064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04492381 386.88067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04492382 386.88067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04492383 386.88067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04492384 386.88070679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04492385 386.88073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04492386 386.88073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04492387 386.88076782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04492388 386.88076782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04492389 386.88079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04492390 386.88079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04492391 386.88082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04492392 386.88082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04492393 386.88085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04492394 386.88085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04492395 386.88085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04492396 386.88085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04492397 386.88088989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04492398 386.88088989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04492399 386.88092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04492400 386.88092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04492401 386.88095093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04492402 386.88098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04492403 386.88101196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04492404 386.88101196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04492405 386.88101196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04492406 386.88101196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04492407 386.88104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04492408 386.88104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04492409 386.88107300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04492410 386.88107300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04492411 386.88110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04492412 386.88110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04492413 386.88113403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04492414 386.88113403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04492415 386.88116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04492416 386.88116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04492417 386.88119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04492418 386.88119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04492419 386.88122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04492420 386.88122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04492421 386.88125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04492422 386.88125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04492423 386.88128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04492424 386.88128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04492425 386.88131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04492426 386.88131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04492427 386.88131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04492428 386.88131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04492429 386.88134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04492430 386.88134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04492431 386.88137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04492432 386.88137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04492433 386.88140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04492434 386.88143921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04492435 386.88146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04492436 386.88146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04492437 386.88146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04492438 386.88146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04492439 386.88150024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04492440 386.88150024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04492441 386.88153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04492442 386.88153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04492443 386.88156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04492444 386.88156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04492445 386.88159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04492446 386.88159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04492447 386.88162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04492448 386.88162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04492449 386.88165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04492450 386.88165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04492451 386.88165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04492452 386.88165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04492453 386.88168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04492454 386.88171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04492455 386.88174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04492456 386.88174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04492457 386.88177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04492458 386.88177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04492459 386.88180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04492460 386.88180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04492461 386.88180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04492462 386.88180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04492463 386.88183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04492464 386.88183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04492465 386.88186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04492466 386.88186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04492467 386.88189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04492468 386.88189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04492469 386.88192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04492470 386.88192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04492471 386.88195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04492472 386.88195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04492473 386.88198853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04492474 386.88198853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04492475 386.88201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04492476 386.88201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04492477 386.88204956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04492478 386.88204956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04492479 386.88208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04492480 386.88208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04492481 386.88211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04492482 386.88211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04492483 386.88211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04492484 386.88211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04492485 386.88214111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04492486 386.88214111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04492487 386.88217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04492488 386.88217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04492489 386.88223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04492490 386.88223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04492491 386.88226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04492492 386.88226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04492493 386.88226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04492494 386.88226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04492495 386.88229370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04492496 386.88229370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04492497 386.88232422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04492498 386.88232422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04492499 386.88235474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04492500 386.88235474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04492501 386.88238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04492502 386.88238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04492503 386.88241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04492504 386.88241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04492505 386.88244629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04492506 386.88244629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04492507 386.88247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04492508 386.88247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04492509 386.88250732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04492510 386.88250732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04492511 386.88253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04492512 386.88253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04492513 386.88256836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04492514 386.88256836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04492515 386.88259888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04492516 386.88259888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04492517 386.88259888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04492518 386.88259888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04492519 386.88262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04492520 386.88262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04492521 386.88265991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04492522 386.88265991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04492523 386.88269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04492524 386.88272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04492525 386.88275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04492526 386.88275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04492527 386.88275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04492528 386.88275146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04492529 386.88278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04492530 386.88278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04492531 386.88281250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04492532 386.88281250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04492533 386.88284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04492534 386.88284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04492535 386.88287354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04492536 386.88287354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04492537 386.88290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04492538 386.88290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04492539 386.88290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04492540 386.88290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04492541 386.88293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04492542 386.88296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04492543 386.88299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04492544 386.88299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04492545 386.88302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04492546 386.88302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04492547 386.88305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04492548 386.88305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04492549 386.88308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04492550 386.88308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04492551 386.88308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04492552 386.88308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04492553 386.88311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04492554 386.88311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04492555 386.88314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04492556 386.88314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04492557 386.88317871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04492558 386.88317871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04492559 386.88320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04492560 386.88320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04492561 386.88323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04492562 386.88323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04492563 386.88323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04492564 386.88323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04492565 386.88327026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04492566 386.88330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04492567 386.88333130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04492568 386.88333130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04492569 386.88336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04492570 386.88336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04492571 386.88339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04492572 386.88339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04492573 386.88339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04492574 386.88339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04492575 386.88342285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04492576 386.88342285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04492577 386.88345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04492578 386.88345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04492579 386.88348389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04492580 386.88348389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04492581 386.88351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04492582 386.88351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04492583 386.88354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04492584 386.88354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04492585 386.88354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04492586 386.88357544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04492587 386.88360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04492588 386.88360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04492589 386.88363647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04492590 386.88363647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04492591 386.88366699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04492592 386.88366699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04492593 386.88369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04492594 386.88369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04492595 386.88369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04492596 386.88369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04492597 386.88372803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04492598 386.88372803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04492599 386.88375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04492600 386.88375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04492601 386.88378906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04492602 386.88378906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04492603 386.88381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04492604 386.88381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04492605 386.88385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04492606 386.88385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04492607 386.88388062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04492608 386.88388062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04492609 386.88388062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04492610 386.88388062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04492611 386.88391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04492612 386.88391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04492613 386.88394165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04492614 386.88394165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04492615 386.88397217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04492616 386.88397217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04492617 386.88400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04492618 386.88400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04492619 386.88403320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04492620 386.88403320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04492621 386.88403320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04492622 386.88406372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04492623 386.88409424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04492624 386.88409424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04492625 386.88412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04492626 386.88412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04492627 386.88415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04492628 386.88415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04492629 386.88418579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04492630 386.88418579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04492631 386.88418579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04492632 386.88418579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04492633 386.88421631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04492634 386.88421631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04492635 386.88424683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04492636 386.88424683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04492637 386.88427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04492638 386.88427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04492639 386.88430786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04492640 386.88430786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04492641 386.88433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04492642 386.88433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04492643 386.88433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04492644 386.88433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04492645 386.88436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04492646 386.88436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04492647 386.88439941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04492648 386.88439941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04492649 386.88442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04492650 386.88442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04492651 386.88446045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04492652 386.88446045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04492653 386.88449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04492654 386.88449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04492655 386.88449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04492656 386.88449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04492657 386.88452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04492658 386.88452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04492659 386.88455200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04492660 386.88455200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04492661 386.88458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04492662 386.88458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04492663 386.88461304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04492664 386.88464355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04492665 386.88467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04492666 386.88467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04492667 386.88467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04492668 386.88467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04492669 386.88470459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04492670 386.88470459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04492671 386.88473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04492672 386.88473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04492673 386.88476563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04492674 386.88479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04492675 386.88482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04492676 386.88482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04492677 386.88482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04492678 386.88482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04492679 386.88485718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04492680 386.88485718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04492681 386.88488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04492682 386.88488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04492683 386.88494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04492684 386.88494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04492685 386.88504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04492686 386.88504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04492687 386.88507080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04492688 386.88507080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04492689 386.88510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04492690 386.88510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04492691 386.88513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04492692 386.88513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04492693 386.88513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04492694 386.88513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04492695 386.88516235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04492696 386.88519287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04492697 386.88522339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04492698 386.88522339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04492699 386.88525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04492700 386.88525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04492701 386.88528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04492702 386.88528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04492703 386.88528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04492704 386.88528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04492705 386.88531494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04492706 386.88531494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04492707 386.88534546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04492708 386.88534546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04492709 386.88537598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04492710 386.88537598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04492711 386.88540649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04492712 386.88543701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04492713 386.88546753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04492714 386.88546753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04492715 386.88546753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04492716 386.88546753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04492717 386.88549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04492718 386.88549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04492719 386.88552856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04492720 386.88552856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04492721 386.88555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04492722 386.88555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04492723 386.88558960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04492724 386.88558960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04492725 386.88562012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04492726 386.88562012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04492727 386.88562012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04492728 386.88562012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04492729 386.88565063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04492730 386.88565063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04492731 386.88568115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04492732 386.88571167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04492733 386.88574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04492734 386.88574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04492735 386.88577271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04492736 386.88577271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04492737 386.88577271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04492738 386.88577271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04492739 386.88580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04492740 386.88580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04492741 386.88583374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04492742 386.88583374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04492743 386.88586426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04492744 386.88586426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04492745 386.88589478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04492746 386.88589478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04492747 386.88592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04492748 386.88592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04492749 386.88592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04492750 386.88592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04492751 386.88595581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04492752 386.88598633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04492753 386.88601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04492754 386.88601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04492755 386.88604736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04492756 386.88604736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04492757 386.88607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04492758 386.88607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04492759 386.88607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04492760 386.88607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04492761 386.88610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04492762 386.88610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04492763 386.88613892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04492764 386.88613892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04492765 386.88616943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04492766 386.88616943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04492767 386.88619995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04492768 386.88619995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04492769 386.88623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04492770 386.88623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04492771 386.88626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04492772 386.88626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04492773 386.88626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04492774 386.88629150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04492775 386.88632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04492776 386.88632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04492777 386.88635254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04492778 386.88635254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04492779 386.88638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04492780 386.88638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04492781 386.88641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04492782 386.88641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04492783 386.88641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04492784 386.88641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04492785 386.88644409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04492786 386.88644409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04492787 386.88647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04492788 386.88647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04492789 386.88650513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04492790 386.88650513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04492791 386.88653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04492792 386.88653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04492793 386.88656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04492794 386.88656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04492795 386.88656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04492796 386.88659668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04492797 386.88662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04492798 386.88662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04492799 386.88665771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04492800 386.88665771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04492801 386.88668823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04492802 386.88668823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04492803 386.88671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04492804 386.88671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04492805 386.88671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04492806 386.88671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04492807 386.88674927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04492808 386.88674927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04492809 386.88677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04492810 386.88677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04492811 386.88681030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04492812 386.88681030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04492813 386.88684082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04492814 386.88687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04492815 386.88687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04492816 386.88687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04492817 386.88690186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04492818 386.88690186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04492819 386.88693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04492820 386.88693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04492821 386.88696289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04492822 386.88696289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04492823 386.88699341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04492824 386.88699341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04492825 386.88702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04492826 386.88702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04492827 386.88705444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04492828 386.88705444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04492829 386.88705444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04492830 386.88705444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04492831 386.88711548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04492832 386.88711548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04492833 386.88714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04492834 386.88714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04492835 386.88717651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04492836 386.88717651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04492837 386.88720703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04492838 386.88720703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04492839 386.88720703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04492840 386.88720703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04492841 386.88723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04492842 386.88723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04492843 386.88726807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04492844 386.88726807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04492845 386.88729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04492846 386.88729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04492847 386.88735962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04492848 386.88735962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04492849 386.88735962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04492850 386.88735962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04492851 386.88739014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04492852 386.88739014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04492853 386.88742065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04492854 386.88742065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04492855 386.88745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04492856 386.88745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04492857 386.88748169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04492858 386.88748169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04492859 386.88751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04492860 386.88751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04492861 386.88751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04492862 386.88751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04492863 386.88757324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04492864 386.88757324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04492865 386.88760376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04492866 386.88760376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04492867 386.88763428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04492868 386.88763428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04492869 386.88766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04492870 386.88766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04492871 386.88766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04492872 386.88766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04492873 386.88769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04492874 386.88769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04492875 386.88772583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04492876 386.88772583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04492877 386.88775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04492878 386.88775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04492879 386.88778687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04492880 386.88781738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04492881 386.88784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04492882 386.88784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04492883 386.88784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04492884 386.88784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04492885 386.88787842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04492886 386.88787842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04492887 386.88790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04492888 386.88790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04492889 386.88793945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04492890 386.88793945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04492891 386.88796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04492892 386.88796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04492893 386.88800049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04492894 386.88800049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04492895 386.88800049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04492896 386.88803101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04492897 386.88806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04492898 386.88806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04492899 386.88809204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04492900 386.88809204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04492901 386.88812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04492902 386.88812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04492903 386.88815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04492904 386.88815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04492905 386.88815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04492906 386.88815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04492907 386.88818359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04492908 386.88818359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04492909 386.88821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04492910 386.88821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04492911 386.88824463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04492912 386.88824463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04492913 386.88827515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04492914 386.88827515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04492915 386.88830566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04492916 386.88830566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04492917 386.88833618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04492918 386.88833618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04492919 386.88836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04492920 386.88836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04492921 386.88839722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04492922 386.88839722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04492923 386.88842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04492924 386.88842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04492925 386.88845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04492926 386.88845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04492927 386.88848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04492928 386.88848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04492929 386.88848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04492930 386.88848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04492931 386.88851929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04492932 386.88851929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04492933 386.88854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04492934 386.88858032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04492935 386.88861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04492936 386.88861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04492937 386.88864136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04492938 386.88864136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04492939 386.88864136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04492940 386.88864136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04492941 386.88867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04492942 386.88867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04492943 386.88870239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04492944 386.88870239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04492945 386.88873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04492946 386.88873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04492947 386.88876343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04492948 386.88876343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04492949 386.88879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04492950 386.88879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04492951 386.88879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04492952 386.88879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04492953 386.88882446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04492954 386.88885498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04492955 386.88888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04492956 386.88888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04492957 386.88891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04492958 386.88891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04492959 386.88894653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04492960 386.88894653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04492961 386.88894653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04492962 386.88894653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04492963 386.88897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04492964 386.88897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04492965 386.88900757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04492966 386.88900757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04492967 386.88903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04492968 386.88903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04492969 386.88906860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04492970 386.88906860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04492971 386.88909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04492972 386.88909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04492973 386.88912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04492974 386.88912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04492975 386.88916016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04492976 386.88916016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04492977 386.88919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04492978 386.88919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04492979 386.88922119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04492980 386.88922119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04492981 386.88925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04492982 386.88925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04492983 386.88928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04492984 386.88928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04492985 386.88928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04492986 386.88928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04492987 386.88931274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04492988 386.88931274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04492989 386.88934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04492990 386.88934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04492991 386.88937378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04492992 386.88940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04492993 386.88943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04492994 386.88943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04492995 386.88943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04492996 386.88943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04492997 386.88946533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04492998 386.88946533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04492999 386.88949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04493000 386.88949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04493001 386.88952637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04493002 386.88952637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04493003 386.88955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04493004 386.88955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04493005 386.88958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04493006 386.88958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04493007 386.88958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04493008 386.88958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04493009 386.88961792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04493010 386.88961792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04493011 386.88964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04493012 386.88964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04493013 386.88970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04493014 386.88970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04493015 386.88973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04493016 386.88973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04493017 386.88973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04493018 386.88973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04493019 386.88977051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04493020 386.88977051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04493021 386.88980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04493022 386.88980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04493023 386.88983154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04493024 386.88983154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04493025 386.88986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04493026 386.88986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04493027 386.88989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04493028 386.88989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04493029 386.88989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04493030 386.88989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04493031 386.88992310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04493032 386.88992310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04493033 386.88995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04493034 386.88995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04493035 386.88998413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04493036 386.88998413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04493037 386.89001465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04493038 386.89004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04493039 386.89004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04493040 386.89007568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04493041 386.89007568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04493042 386.89007568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04493043 386.89010620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04493044 386.89010620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04493045 386.89013672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04493046 386.89013672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04493047 386.89016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04493048 386.89016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04493049 386.89019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04493050 386.89019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04493051 386.89022827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04493052 386.89022827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04493053 386.89022827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04493054 386.89025879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04493055 386.89028931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04493056 386.89028931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04493057 386.89031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04493058 386.89031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04493059 386.89035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04493060 386.89035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04493061 386.89038086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04493062 386.89038086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04493063 386.89038086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04493064 386.89038086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04493065 386.89041138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04493066 386.89041138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04493067 386.89044189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04493068 386.89044189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04493069 386.89047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04493070 386.89047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04493071 386.89050293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04493072 386.89050293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04493073 386.89053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04493074 386.89053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04493075 386.89056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04493076 386.89056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04493077 386.89059448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04493078 386.89059448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04493079 386.89062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04493080 386.89062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04493081 386.89065552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04493082 386.89065552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04493083 386.89068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04493084 386.89068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04493085 386.89068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04493086 386.89068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04493087 386.89071655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04493088 386.89071655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04493089 386.89074707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04493090 386.89074707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04493091 386.89077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04493092 386.89077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04493093 386.89080811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04493094 386.89080811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04493095 386.89083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04493096 386.89083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04493097 386.89086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04493098 386.89086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04493099 386.89086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04493100 386.89086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04493101 386.89089966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04493102 386.89089966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04493103 386.89093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04493104 386.89093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04493105 386.89099121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04493106 386.89099121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04493107 386.89102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04493108 386.89102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04493109 386.89102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04493110 386.89102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04493111 386.89105225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04493112 386.89105225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04493113 386.89108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04493114 386.89108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04493115 386.89111328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04493116 386.89111328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04493117 386.89114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04493118 386.89114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04493119 386.89117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04493120 386.89117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04493121 386.89117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04493122 386.89120483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04493123 386.89120483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04493124 386.89123535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04493125 386.89126587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04493126 386.89126587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04493127 386.89129639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04493128 386.89129639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04493129 386.89132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04493130 386.89132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04493131 386.89132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04493132 386.89132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04493133 386.89135742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04493134 386.89135742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04493135 386.89138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04493136 386.89138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04493137 386.89141846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04493138 386.89141846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04493139 386.89144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04493140 386.89144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04493141 386.89147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04493142 386.89147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04493143 386.89151001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04493144 386.89151001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04493145 386.89154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04493146 386.89154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04493147 386.89157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04493148 386.89157104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04493149 386.89160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04493150 386.89160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04493151 386.89163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04493152 386.89163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04493153 386.89166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04493154 386.89166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04493155 386.89166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04493156 386.89166260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04493157 386.89169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04493158 386.89169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04493159 386.89172363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04493160 386.89172363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04493161 386.89175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04493162 386.89178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04493163 386.89181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04493164 386.89181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04493165 386.89181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04493166 386.89181519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04493167 386.89184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04493168 386.89184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04493169 386.89187622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04493170 386.89187622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04493171 386.89193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04493172 386.89193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04493173 386.89196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04493174 386.89196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04493175 386.89196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04493176 386.89196777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04493177 386.89199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04493178 386.89199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04493179 386.89202881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04493180 386.89205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04493181 386.89208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04493182 386.89208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04493183 386.89212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04493184 386.89212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04493185 386.89212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04493186 386.89212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04493187 386.89215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04493188 386.89215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04493189 386.89221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04493190 386.89221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04493191 386.89224243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04493192 386.89224243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04493193 386.89227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04493194 386.89227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04493195 386.89227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04493196 386.89227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04493197 386.89230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04493198 386.89230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04493199 386.89233398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04493200 386.89233398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04493201 386.89236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04493202 386.89239502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04493203 386.89242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04493204 386.89242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04493205 386.89245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04493206 386.89245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04493207 386.89245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04493208 386.89245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04493209 386.89248657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04493210 386.89248657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04493211 386.89251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04493212 386.89251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04493213 386.89254761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04493214 386.89254761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04493215 386.89257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04493216 386.89257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04493217 386.89260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04493218 386.89260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04493219 386.89260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04493220 386.89260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04493221 386.89263916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04493222 386.89263916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04493223 386.89266968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04493224 386.89270020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04493225 386.89273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04493226 386.89273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04493227 386.89276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04493228 386.89276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04493229 386.89276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04493230 386.89276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04493231 386.89279175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04493232 386.89279175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04493233 386.89282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04493234 386.89282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04493235 386.89285278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04493236 386.89285278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04493237 386.89288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04493238 386.89288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04493239 386.89291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04493240 386.89291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04493241 386.89291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04493242 386.89294434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04493243 386.89297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04493244 386.89297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04493245 386.89300537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04493246 386.89300537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04493247 386.89303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04493248 386.89303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04493249 386.89306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04493250 386.89306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04493251 386.89306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04493252 386.89306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04493253 386.89309692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04493254 386.89309692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04493255 386.89312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04493256 386.89312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04493257 386.89315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04493258 386.89315796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04493259 386.89318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04493260 386.89318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04493261 386.89321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04493262 386.89321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04493263 386.89324951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04493264 386.89324951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04493265 386.89328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04493266 386.89328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04493267 386.89331055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04493268 386.89331055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04493269 386.89334106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04493270 386.89334106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04493271 386.89337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04493272 386.89337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04493273 386.89340210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04493274 386.89340210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04493275 386.89340210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04493276 386.89340210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04493277 386.89343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04493278 386.89343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04493279 386.89346313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04493280 386.89346313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04493281 386.89349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04493282 386.89349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04493283 386.89352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04493284 386.89352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04493285 386.89355469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04493286 386.89355469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04493287 386.89358521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04493288 386.89358521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04493289 386.89361572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04493290 386.89361572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04493291 386.89364624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04493292 386.89364624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04493293 386.89367676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04493294 386.89367676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04493295 386.89370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04493296 386.89370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04493297 386.89370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04493298 386.89370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04493299 386.89373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04493300 386.89373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04493301 386.89376831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04493302 386.89376831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04493303 386.89379883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04493304 386.89382935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04493305 386.89385986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04493306 386.89385986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04493307 386.89389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04493308 386.89389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04493309 386.89389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04493310 386.89389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04493311 386.89392090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04493312 386.89392090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04493313 386.89395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04493314 386.89395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04493315 386.89398193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04493316 386.89398193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04493317 386.89401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04493318 386.89401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04493319 386.89404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04493320 386.89404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04493321 386.89407349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04493322 386.89407349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04493323 386.89410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04493324 386.89410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04493325 386.89413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04493326 386.89413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04493327 386.89416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04493328 386.89416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04493329 386.89419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04493330 386.89419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04493331 386.89419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04493332 386.89419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04493333 386.89422607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04493334 386.89425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04493335 386.89428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04493336 386.89428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04493337 386.89431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04493338 386.89431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04493339 386.89434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04493340 386.89434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04493341 386.89434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04493342 386.89434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04493343 386.89437866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04493344 386.89437866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04493345 386.89440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04493346 386.89440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04493347 386.89443970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04493348 386.89447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04493349 386.89450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04493350 386.89450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04493351 386.89450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04493352 386.89450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04493353 386.89453125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04493354 386.89453125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04493355 386.89456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04493356 386.89456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04493357 386.89459229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04493358 386.89459229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04493359 386.89462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04493360 386.89462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04493361 386.89465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04493362 386.89468384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04493363 386.89468384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04493364 386.89468384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04493365 386.89471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04493366 386.89471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04493367 386.89474487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04493368 386.89474487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04493369 386.89477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04493370 386.89477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04493371 386.89480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04493372 386.89480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04493373 386.89483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04493374 386.89483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04493375 386.89483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04493376 386.89483643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04493377 386.89486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04493378 386.89486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04493379 386.89489746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04493380 386.89492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04493381 386.89495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04493382 386.89495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04493383 386.89498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04493384 386.89498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04493385 386.89498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04493386 386.89498901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04493387 386.89501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04493388 386.89501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04493389 386.89505005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04493390 386.89505005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04493391 386.89508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04493392 386.89508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04493393 386.89511108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04493394 386.89511108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04493395 386.89514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04493396 386.89514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04493397 386.89514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04493398 386.89517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04493399 386.89520264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04493400 386.89520264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04493401 386.89523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04493402 386.89523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04493403 386.89526367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04493404 386.89526367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04493405 386.89529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04493406 386.89529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04493407 386.89529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04493408 386.89529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04493409 386.89532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04493410 386.89532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04493411 386.89535522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04493412 386.89535522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04493413 386.89538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04493414 386.89538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04493415 386.89541626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04493416 386.89541626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04493417 386.89544678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04493418 386.89547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04493419 386.89547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04493420 386.89547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04493421 386.89550781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04493422 386.89550781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04493423 386.89553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04493424 386.89553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04493425 386.89556885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04493426 386.89556885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04493427 386.89559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04493428 386.89559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04493429 386.89562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04493430 386.89562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04493431 386.89562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04493432 386.89562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04493433 386.89566040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04493434 386.89566040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04493435 386.89569092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04493436 386.89569092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04493437 386.89572144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04493438 386.89575195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04493439 386.89578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04493440 386.89578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04493441 386.89578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04493442 386.89578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04493443 386.89581299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04493444 386.89581299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04493445 386.89584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04493446 386.89584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04493447 386.89587402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04493448 386.89587402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04493449 386.89590454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04493450 386.89590454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04493451 386.89593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04493452 386.89593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04493453 386.89593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04493454 386.89593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04493455 386.89596558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04493456 386.89596558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04493457 386.89599609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04493458 386.89602661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04493459 386.89605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04493460 386.89605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04493461 386.89608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04493462 386.89608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04493463 386.89608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04493464 386.89608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04493465 386.89611816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04493466 386.89611816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04493467 386.89614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04493468 386.89614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04493469 386.89617920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04493470 386.89617920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04493471 386.89620972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04493472 386.89620972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04493473 386.89624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04493474 386.89624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04493475 386.89627075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04493476 386.89627075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04493477 386.89630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04493478 386.89630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04493479 386.89633179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04493480 386.89633179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04493481 386.89636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04493482 386.89636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04493483 386.89639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04493484 386.89639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04493485 386.89642334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04493486 386.89642334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04493487 386.89642334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04493488 386.89642334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04493489 386.89645386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04493490 386.89645386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04493491 386.89648438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04493492 386.89648438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04493493 386.89651489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04493494 386.89654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04493495 386.89654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04493496 386.89657593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04493497 386.89657593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04493498 386.89657593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04493499 386.89660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04493500 386.89660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04493501 386.89663696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04493502 386.89663696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04493503 386.89666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04493504 386.89666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04493505 386.89669800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04493506 386.89669800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04493507 386.89672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04493508 386.89672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04493509 386.89672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04493510 386.89672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04493511 386.89675903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04493512 386.89675903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04493513 386.89678955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04493514 386.89678955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04493515 386.89682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04493516 386.89682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04493517 386.89685059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04493518 386.89685059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04493519 386.89688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04493520 386.89688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04493521 386.89688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04493522 386.89688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04493523 386.89691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04493524 386.89691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04493525 386.89694214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04493526 386.89694214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04493527 386.89697266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04493528 386.89700317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04493529 386.89703369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04493530 386.89703369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04493531 386.89706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04493532 386.89706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04493533 386.89706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04493534 386.89706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04493535 386.89709473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04493536 386.89709473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04493537 386.89712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04493538 386.89712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04493539 386.89715576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04493540 386.89715576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04493541 386.89718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04493542 386.89718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04493543 386.89721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04493544 386.89721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04493545 386.89721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04493546 386.89721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04493547 386.89724731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04493548 386.89724731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04493549 386.89727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04493550 386.89727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04493551 386.89730835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04493552 386.89730835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04493553 386.89733887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04493554 386.89733887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04493555 386.89736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04493556 386.89736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04493557 386.89736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04493558 386.89736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04493559 386.89739990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04493560 386.89739990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04493561 386.89743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04493562 386.89743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04493563 386.89746094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04493564 386.89746094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04493565 386.89749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04493566 386.89749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04493567 386.89752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04493568 386.89752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04493569 386.89752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04493570 386.89755249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04493571 386.89755249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04493572 386.89758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04493573 386.89761353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04493574 386.89761353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04493575 386.89764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04493576 386.89764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04493577 386.89767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04493578 386.89767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04493579 386.89767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04493580 386.89767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04493581 386.89770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04493582 386.89770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04493583 386.89773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04493584 386.89773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04493585 386.89776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04493586 386.89776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04493587 386.89779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04493588 386.89779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04493589 386.89782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04493590 386.89782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04493591 386.89785767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04493592 386.89785767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04493593 386.89785767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04493594 386.89785767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04493595 386.89788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04493596 386.89788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04493597 386.89791870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04493598 386.89791870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04493599 386.89794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04493600 386.89794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04493601 386.89797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04493602 386.89797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04493603 386.89801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04493604 386.89801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04493605 386.89804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04493606 386.89804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04493607 386.89807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04493608 386.89807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04493609 386.89810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04493610 386.89810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04493611 386.89813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04493612 386.89813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04493613 386.89816284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04493614 386.89816284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04493615 386.89816284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04493616 386.89816284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04493617 386.89819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04493618 386.89819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04493619 386.89822388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04493620 386.89822388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04493621 386.89825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04493622 386.89825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04493623 386.89828491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04493624 386.89828491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04493625 386.89831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04493626 386.89831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04493627 386.89831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04493628 386.89831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04493629 386.89834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04493630 386.89834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04493631 386.89837646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04493632 386.89840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04493633 386.89840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04493634 386.89843750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04493635 386.89846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04493636 386.89846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04493637 386.89846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04493638 386.89846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04493639 386.89849854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04493640 386.89849854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04493641 386.89852905 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04493642 386.89852905 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04493643 386.89855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04493644 386.89855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04493645 386.89859009 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04493646 386.89859009 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04493647 386.89862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04493648 386.89862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04493649 386.89865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04493650 386.89865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04493651 386.89865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04493652 386.89865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04493653 386.89871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04493654 386.89871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04493655 386.89874268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04493656 386.89874268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04493657 386.89877319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04493658 386.89877319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04493659 386.89880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04493660 386.89880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04493661 386.89883423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04493662 386.89883423 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04493663 386.89886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04493664 386.89886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04493665 386.89889526 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04493666 386.89889526 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04493667 386.89892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04493668 386.89892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04493669 386.89895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04493670 386.89895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04493671 386.89898682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04493672 386.89898682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04493673 386.89901733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04493674 386.89901733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04493675 386.89904785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04493676 386.89904785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04493677 386.89907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04493678 386.89907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04493679 386.89910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04493680 386.89910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04493681 386.89910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04493682 386.89910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04493683 386.89913940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04493684 386.89913940 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04493685 386.89916992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04493686 386.89916992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04493687 386.89920044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04493688 386.89920044 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04493689 386.89926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04493690 386.89926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04493691 386.89929199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04493692 386.89929199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04493693 386.89929199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04493694 386.89929199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04493695 386.89932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04493696 386.89932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04493697 386.89935303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04493698 386.89935303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04493699 386.89938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04493700 386.89938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04493701 386.89941406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04493702 386.89941406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04493703 386.89944458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04493704 386.89944458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04493705 386.89944458 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04493706 386.89947510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04493707 386.89950562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04493708 386.89950562 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04493709 386.89953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04493710 386.89953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04493711 386.89956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04493712 386.89956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04493713 386.89959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04493714 386.89959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04493715 386.89959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04493716 386.89962769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04493717 386.89965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04493718 386.89965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04493719 386.89968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04493720 386.89968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04493721 386.89971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04493722 386.89971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04493723 386.89974976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04493724 386.89974976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04493725 386.89974976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04493726 386.89974976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04493727 386.89978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04493728 386.89978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04493729 386.89981079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04493730 386.89981079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04493731 386.89984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04493732 386.89984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04493733 386.89987183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04493734 386.89987183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04493735 386.89990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04493736 386.89990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04493737 386.89993286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04493738 386.89993286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04493739 386.89996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04493740 386.89996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04493741 386.89999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04493742 386.89999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04493743 386.90002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04493744 386.90002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04493745 386.90005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04493746 386.90005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04493747 386.90008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04493748 386.90008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04493749 386.90008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04493750 386.90008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04493751 386.90011597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04493752 386.90011597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04493753 386.90014648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04493754 386.90014648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04493755 386.90017700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04493756 386.90020752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04493757 386.90023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04493758 386.90023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04493759 386.90023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04493760 386.90023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04493761 386.90026855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04493762 386.90026855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04493763 386.90029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04493764 386.90029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04493765 386.90032959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04493766 386.90032959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04493767 386.90036011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04493768 386.90036011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04493769 386.90039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04493770 386.90039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04493771 386.90039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04493772 386.90039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04493773 386.90042114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04493774 386.90042114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04493775 386.90045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04493776 386.90045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04493777 386.90048218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04493778 386.90051270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04493779 386.90054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04493780 386.90054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04493781 386.90054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04493782 386.90054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04493783 386.90057373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04493784 386.90057373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04493785 386.90060425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04493786 386.90060425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04493787 386.90063477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04493788 386.90063477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04493789 386.90066528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04493790 386.90066528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04493791 386.90069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04493792 386.90069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04493793 386.90069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04493794 386.90069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04493795 386.90072632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04493796 386.90072632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04493797 386.90078735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04493798 386.90078735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04493799 386.90081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04493800 386.90081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04493801 386.90084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04493802 386.90084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04493803 386.90087891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04493804 386.90087891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04493805 386.90087891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04493806 386.90087891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04493807 386.90090942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04493808 386.90090942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04493809 386.90093994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04493810 386.90093994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04493811 386.90097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04493812 386.90097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04493813 386.90100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04493814 386.90100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -04493815 386.90103149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04493816 386.90103149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -04493817 386.90106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04493818 386.90106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -04493819 386.90109253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04493820 386.90109253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -04493821 386.90112305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04493822 386.90112305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -04493823 386.90115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04493824 386.90115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -04493825 386.90118408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04493826 386.90118408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -04493827 386.90118408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04493828 386.90118408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -04493829 386.90121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04493830 386.90121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -04493831 386.90127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04493832 386.90127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -04493833 386.90130615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04493834 386.90130615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -04493835 386.90133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04493836 386.90133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -04493837 386.90133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04493838 386.90133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -04493839 386.90136719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04493840 386.90136719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -04493841 386.90139771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04493842 386.90139771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -04493843 386.90142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04493844 386.90142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -04493845 386.90145874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04493846 386.90148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04493847 386.90148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04493848 386.90148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04493849 386.90151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04493850 386.90151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04493851 386.90155029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04493852 386.90155029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04493853 386.90158081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04493854 386.90158081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04493855 386.90161133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04493856 386.90161133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04493857 386.90164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04493858 386.90164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04493859 386.90167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04493860 386.90167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04493861 386.90167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04493862 386.90170288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04493863 386.90173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04493864 386.90173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04493865 386.90176392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04493866 386.90176392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04493867 386.90179443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04493868 386.90179443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04493869 386.90182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04493870 386.90182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04493871 386.90182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04493872 386.90182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04493873 386.90185547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04493874 386.90185547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04493875 386.90188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04493876 386.90188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04493877 386.90191650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04493878 386.90191650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04493879 386.90197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04493880 386.90197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04493881 386.90197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04493882 386.90197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04493883 386.90200806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04493884 386.90200806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04493885 386.90203857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04493886 386.90203857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04493887 386.90206909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04493888 386.90206909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04493889 386.90209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -04493890 386.90209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -04493891 386.90213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -04493892 386.90213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -04493893 386.90213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -04493894 386.90213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -04493895 386.90216064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -04493896 386.90216064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -04493897 386.90219116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -04493898 386.90222168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -04493899 386.90225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -04493900 386.90225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -04493901 386.90228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -04493902 386.90228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -04493903 386.90228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -04493904 386.90228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -04493905 386.90231323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -04493906 386.90231323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -04493907 386.90234375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -04493908 386.90234375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -04493909 386.90237427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -04493910 386.90237427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -04493911 386.90240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -04493912 386.90240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -04493913 386.90243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -04493914 386.90243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -04493915 386.90246582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -04493916 386.90246582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -04493917 386.90246582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -04493918 386.90249634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -04493919 386.90252686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -04493920 386.90252686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -04493921 386.90255737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -04493922 386.90255737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -04493923 386.90258789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -04493924 386.90258789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -04493925 386.90261841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -04493926 386.90261841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -04493927 386.90261841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -04493928 386.90261841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -04493929 386.90264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -04493930 386.90264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -04493931 386.90267944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -04493932 386.90267944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -04493933 386.90270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -04493934 386.90270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -04493935 386.90274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -04493936 386.90274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -04493937 386.90277100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -04493938 386.90277100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -04493939 386.90277100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -04493940 386.90280151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -04493941 386.90283203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -04493942 386.90283203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -04493943 386.90286255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -04493944 386.90286255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -04493945 386.90289307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -04493946 386.90289307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -04493947 386.90292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -04493948 386.90292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -04493949 386.90292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -04493950 386.90292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -04493951 386.90295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -04493952 386.90295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -04493953 386.90298462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -04493954 386.90298462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -04493955 386.90301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -04493956 386.90301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -04493957 386.90304565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -04493958 386.90307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -04493959 386.90307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -04493960 386.90307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -04493961 386.90310669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -04493962 386.90310669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -04493963 386.90313721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -04493964 386.90313721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -04493965 386.90316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -04493966 386.90316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -04493967 386.90319824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -04493968 386.90319824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -04493969 386.90322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -04493970 386.90322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -04493971 386.90325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -04493972 386.90325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -04493973 386.90325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -04493974 386.90325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -04493975 386.90328979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -04493976 386.90328979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -04493977 386.90332031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -04493978 386.90335083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -04493979 386.90338135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -04493980 386.90338135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -04493981 386.90341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -04493982 386.90341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -04493983 386.90341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -04493984 386.90341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -04493985 386.90344238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -04493986 386.90344238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -04493987 386.90347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -04493988 386.90347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -04493989 386.90350342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -04493990 386.90350342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -04493991 386.90353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -04493992 386.90353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -04493993 386.90356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -04493994 386.90356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -04493995 386.90356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -04493996 386.90356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -04493997 386.90359497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -04493998 386.90359497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -04493999 386.90362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -04494000 386.90362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -04494001 386.90365601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -04494002 386.90365601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -04494003 386.90368652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -04494004 386.90371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -04494005 386.90371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -04494006 386.90371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -04494007 386.90374756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -04494008 386.90374756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -04494009 386.90377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -04494010 386.90377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -04494011 386.90380859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -04494012 386.90380859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -04494013 386.90383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -04494014 386.90383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -04494015 386.90386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -04494016 386.90386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -04494017 386.90386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -04494018 386.90386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -04494019 386.90390015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -04494020 386.90390015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -04494021 386.90393066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -04494022 386.90396118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -04494023 386.90399170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -04494024 386.90399170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -04494025 386.90402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -04494026 386.90402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -04494027 386.90405273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -04494028 386.90405273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -04494029 386.90405273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -04494030 386.90405273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -04494031 386.90408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -04494032 386.90408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -04494033 386.90411377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -04494034 386.90411377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -04494035 386.90414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -04494036 386.90414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -04494037 386.90417480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -04494038 386.90420532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -04494039 386.90420532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -04494040 386.90420532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -04494041 386.90423584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -04494042 386.90423584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -04494043 386.90426636 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -04494044 386.90426636 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -04494045 386.90429688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -04494046 386.90429688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -04494047 386.90432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -04494048 386.90432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -04494049 386.90435791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -04494050 386.90435791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -04494051 386.90435791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -04494052 386.90435791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -04494053 386.90438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -04494054 386.90438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -04494055 386.90441895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -04494056 386.90441895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -04494057 386.90444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -04494058 386.90444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -04494059 386.90447998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -04494060 386.90447998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -04494061 386.90451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -04494062 386.90451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -04494063 386.90451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -04494064 386.90451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -04494065 386.90454102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -04494066 386.90457153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -04494067 386.90460205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -04494068 386.90460205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -04494069 386.90463257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -04494070 386.90463257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -04494071 386.90466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -04494072 386.90466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -04494073 386.90469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -04494074 386.90469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -04494075 386.90469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -04494076 386.90469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -04494077 386.90472412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -04494078 386.90472412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -04494079 386.90475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -04494080 386.90475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -04494081 386.90478516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -04494082 386.90478516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -04494083 386.90481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -04494084 386.90481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -04494085 386.90484619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -04494086 386.90484619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -04494087 386.90487671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -04494088 386.90487671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -04494089 386.90490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -04494090 386.90490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -04494091 386.90493774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -04494092 386.90493774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -04494093 386.90496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -04494094 386.90496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -04494095 386.90499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -04494096 386.90499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -04494097 386.90499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -04494098 386.90499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -04494099 386.90502930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -04494100 386.90502930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -04494101 386.90512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -04494102 386.90512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -04494103 386.90515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -04494104 386.90515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -04494105 386.90515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -04494106 386.90515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -04494107 386.90518188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -04494108 386.90518188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -04494109 386.90521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -04494110 386.90521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -04494111 386.90524292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -04494112 386.90524292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -04494113 386.90527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -04494114 386.90527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -04494115 386.90530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -04494116 386.90530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -04494117 386.90530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -04494118 386.90533447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -04494119 386.90533447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -04494120 386.90536499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -04494121 386.90539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -04494122 386.90539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -04494123 386.90542603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -04494124 386.90542603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -04494125 386.90545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -04494126 386.90545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -04494127 386.90548706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -04494128 386.90548706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -04494129 386.90548706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -04494130 386.90548706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -04494131 386.90551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -04494132 386.90551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -04494133 386.90554810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -04494134 386.90554810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -04494135 386.90557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -04494136 386.90557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -04494137 386.90560913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -04494138 386.90563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -04494139 386.90563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -04494140 386.90563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -04494141 386.90567017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -04494142 386.90567017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -04494143 386.90570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -04494144 386.90570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -04494145 386.90573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -04494146 386.90573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -04494147 386.90579224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -04494148 386.90579224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -04494149 386.90579224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -04494150 386.90579224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -04494151 386.90582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -04494152 386.90582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -04494153 386.90585327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -04494154 386.90585327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -04494155 386.90588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -04494156 386.90588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -04494157 386.90591431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -04494158 386.90591431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -04494159 386.90594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -04494160 386.90594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -04494161 386.90594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -04494162 386.90597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -04494163 386.90600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -04494164 386.90600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -04494165 386.90603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -04494166 386.90603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -04494167 386.90606689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -04494168 386.90606689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -04494169 386.90609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -04494170 386.90609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -04494171 386.90609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -04494172 386.90609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -04494173 386.90612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -04494174 386.90612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -04494175 386.90618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -04494176 386.90618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -04494177 386.90621948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -04494178 386.90621948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -04494179 386.90628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -04494180 386.90628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -04494181 386.90628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -04494182 386.90628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -04494183 386.90631104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -04494184 386.90631104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -04494185 386.90634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -04494186 386.90634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -04494187 386.90637207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -04494188 386.90637207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -04494189 386.90643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -04494190 386.90643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -04494191 386.90643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -04494192 386.90643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -04494193 386.90646362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -04494194 386.90649414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -04494195 386.90652466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -04494196 386.90652466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -04494197 386.90655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -04494198 386.90655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -04494199 386.90658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -04494200 386.90658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -04494201 386.90661621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -04494202 386.90661621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -04494203 386.90664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -04494204 386.90664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -04494205 386.90667725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -04494206 386.90667725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -04494207 386.90670776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -04494208 386.90670776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -04494209 386.90673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -04494210 386.90673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -04494211 386.90673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -04494212 386.90673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -04494213 386.90676880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -04494214 386.90676880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -04494215 386.90679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -04494216 386.90679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -04494217 386.90682983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -04494218 386.90686035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -04494219 386.90689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -04494220 386.90689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -04494221 386.90689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -04494222 386.90689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -04494223 386.90692139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -04494224 386.90692139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -04494225 386.90695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -04494226 386.90695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -04494227 386.90698242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -04494228 386.90698242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -04494229 386.90701294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -04494230 386.90701294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -04494231 386.90704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -04494232 386.90704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -04494233 386.90707397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -04494234 386.90707397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -04494235 386.90707397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -04494236 386.90707397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -04494237 386.90713501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -04494238 386.90713501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -04494239 386.90716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -04494240 386.90716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -04494241 386.90719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -04494242 386.90719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -04494243 386.90722656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -04494244 386.90722656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -04494245 386.90722656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -04494246 386.90722656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -04494247 386.90725708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -04494248 386.90725708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -04494249 386.90728760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -04494250 386.90728760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -04494251 386.90731812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -04494252 386.90731812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -04495951 386.93136597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -04495952 386.93136597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -04495953 386.93139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -04495954 386.93139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -04495955 386.93142700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -04495956 386.93145752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -04495957 386.93148804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -04495958 386.93148804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -04495959 386.93151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -04495960 386.93151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -04495961 386.93151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -04495962 386.93151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -04495963 386.93154907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -04495964 386.93154907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -04495965 386.93157959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -04495966 386.93157959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -04495967 386.93161011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -04495968 386.93161011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -04495969 386.93164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -04495970 386.93164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -04495971 386.93167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -04495972 386.93167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -04495973 386.93167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -04495974 386.93167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -04495975 386.93170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -04495976 386.93170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -04495977 386.93173218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -04495978 386.93176270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -04495979 386.93179321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -04495980 386.93179321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -04495981 386.93182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -04495982 386.93182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -04495983 386.93185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -04495984 386.93185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -04495985 386.93185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -04495986 386.93185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -04495987 386.93188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -04495988 386.93188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -04495989 386.93191528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -04495990 386.93191528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -04495991 386.93194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -04495992 386.93194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -04495993 386.93197632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -04495994 386.93197632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -04503722 387.04226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ca8 -04503723 387.04226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -04503724 387.04226685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cb8 -04503725 387.04229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -04503726 387.04229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -04503727 387.04232788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -04503728 387.04235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -04503729 387.04238892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -04503730 387.04238892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -04503731 387.04241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -04503732 387.04241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -04503733 387.04241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -04503734 387.04241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -04503735 387.04244995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -04503736 387.04244995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -04503737 387.04248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -04503738 387.04248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -04503739 387.04251099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -04503740 387.04251099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -04503741 387.04254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -04503742 387.04254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -04503743 387.04257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -04503744 387.04257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -04503745 387.04257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -04503746 387.04257202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -04503747 387.04260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -04503748 387.04260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -04503749 387.04263306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -04503750 387.04266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -04503751 387.04269409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -04503752 387.04269409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -04503753 387.04272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -04503754 387.04272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -04503755 387.04272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -04503756 387.04272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -04503757 387.04275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -04503758 387.04275513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -04503759 387.04278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -04503760 387.04278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -04503761 387.04281616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -04503762 387.04281616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -04503763 387.04284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -04503764 387.04284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -04503765 387.04287720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -04510168 387.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24618 -04510169 387.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -04510170 387.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24628 -04510171 387.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -04510172 387.13296509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24638 -04510173 387.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -04510174 387.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24648 -04510175 387.13302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -04510176 387.13302612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24658 -04510177 387.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -04510178 387.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24668 -04510179 387.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -04510180 387.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24678 -04510181 387.13311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -04510182 387.13311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24688 -04510183 387.13311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -04510184 387.13311768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24698 -04510185 387.13314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -04510186 387.13314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -04510187 387.13317871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -04510188 387.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -04510189 387.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -04510190 387.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -04510191 387.13327026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -04510192 387.13327026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -04510193 387.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -04510194 387.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -04510195 387.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -04510196 387.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -04510197 387.13333130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -04510198 387.13333130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -04510199 387.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -04510200 387.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -04510201 387.13339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -04510202 387.13339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -04510203 387.13342285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -04510204 387.13342285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -04510205 387.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -04510206 387.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -04510207 387.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -04510208 387.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -04510209 387.13348389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -04510210 387.13351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -04510211 387.13354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -04516155 387.21701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -04516156 387.21701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30138 -04516157 387.21701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -04516158 387.21701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30148 -04516159 387.21704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -04516160 387.21704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30158 -04516161 387.21707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30168 -04516162 387.21707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30168 -04516163 387.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30178 -04516164 387.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30178 -04516165 387.21713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30188 -04516166 387.21713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30188 -04516167 387.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30198 -04516168 387.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30198 -04516169 387.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a8 -04516170 387.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301a8 -04516171 387.21719360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b8 -04516172 387.21719360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301b8 -04516173 387.21722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c8 -04516174 387.21722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301c8 -04516175 387.21725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d8 -04516176 387.21728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301d8 -04516177 387.21731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e8 -04516178 387.21731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301e8 -04516179 387.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f8 -04516180 387.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x301f8 -04516181 387.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30208 -04516182 387.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30208 -04516183 387.21737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30218 -04516184 387.21737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30218 -04516185 387.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30228 -04516186 387.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30228 -04516187 387.21743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30238 -04516188 387.21743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30238 -04516189 387.21746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30248 -04516190 387.21746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30248 -04516191 387.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30258 -04516192 387.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30258 -04516193 387.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30268 -04516194 387.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30268 -04516195 387.21752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30278 -04516196 387.21752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30278 -04516197 387.21755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30288 -04516198 387.21759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30288 -04531931 387.43289185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee38 -04531932 387.43289185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee38 -04531933 387.43292236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee48 -04531934 387.43292236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee48 -04531935 387.43292236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee58 -04531936 387.43292236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee58 -04531937 387.43295288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee68 -04531938 387.43295288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee68 -04531939 387.43298340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee78 -04531940 387.43298340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee78 -04531941 387.43301392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee88 -04531942 387.43301392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee88 -04531943 387.43304443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee98 -04531944 387.43304443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee98 -04531945 387.43307495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea8 -04531946 387.43307495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eea8 -04531947 387.43307495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb8 -04531948 387.43307495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eeb8 -04531949 387.43310547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec8 -04531950 387.43310547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eec8 -04531951 387.43313599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed8 -04531952 387.43313599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eed8 -04531953 387.43316650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee8 -04531954 387.43319702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eee8 -04531955 387.43322754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef8 -04531956 387.43322754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eef8 -04531957 387.43322754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef08 -04531958 387.43322754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef08 -04531959 387.43325806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef18 -04531960 387.43325806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef18 -04531961 387.43328857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef28 -04531962 387.43328857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef28 -04531963 387.43331909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef38 -04531964 387.43331909 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef38 -04531965 387.43334961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef48 -04531966 387.43334961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef48 -04531967 387.43338013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef58 -04531968 387.43338013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef58 -04531969 387.43338013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef68 -04531970 387.43338013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef68 -04531971 387.43341064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef78 -04531972 387.43341064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef78 -04531973 387.43344116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef88 -04531974 387.43347168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef88 -04533947 387.92382813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04533948 387.92382813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04533949 387.92385864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04533950 387.92385864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04533951 387.92388916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04533952 387.92388916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04533953 387.92391968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04533954 387.92391968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04533955 387.92395020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04533956 387.92395020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04533957 387.92398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04533958 387.92398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04533959 387.92398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04533960 387.92398071 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04533961 387.92401123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04533962 387.92401123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04533963 387.92404175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04533964 387.92404175 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04533965 387.92407227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04533966 387.92407227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04533967 387.92410278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04533968 387.92410278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04533969 387.92413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04533970 387.92413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04533971 387.92413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04533972 387.92413330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04533973 387.92416382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04533974 387.92416382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04533975 387.92422485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04533976 387.92422485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04533977 387.92425537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04533978 387.92428589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04533979 387.92428589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04533980 387.92428589 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04533981 387.92431641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04533982 387.92431641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04533983 387.92434692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04533984 387.92434692 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04533985 387.92437744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04533986 387.92437744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04533987 387.92440796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04533988 387.92440796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04533989 387.92443848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04533990 387.92443848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04533991 387.92446899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04533992 387.92446899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04533993 387.92446899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04533994 387.92446899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04533995 387.92453003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04533996 387.92453003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04533997 387.92456055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04533998 387.92456055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04533999 387.92459106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04534000 387.92459106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04534001 387.92462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04534002 387.92462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04534003 387.92462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04534004 387.92462158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04534005 387.92465210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04534006 387.92465210 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04534007 387.92468262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04534008 387.92468262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04534009 387.92471313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04534010 387.92471313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04534011 387.92474365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04534012 387.92474365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04534013 387.92477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04534014 387.92477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04534015 387.92477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04534016 387.92477417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04534017 387.92480469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04534018 387.92480469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04534019 387.92483521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04534020 387.92483521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04534021 387.92486572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04534022 387.92486572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04534023 387.92489624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04534024 387.92489624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04534025 387.92492676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04534026 387.92492676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04534027 387.92492676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04534028 387.92492676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04534029 387.92495728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04534030 387.92495728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04534031 387.92498779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04534032 387.92498779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04534033 387.92501831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04534034 387.92504883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04534035 387.92504883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04534036 387.92507935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04534037 387.92507935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04534038 387.92507935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04534039 387.92510986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04534040 387.92510986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04534041 387.92514038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04534042 387.92514038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04534043 387.92517090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04534044 387.92517090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04534045 387.92520142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04534046 387.92520142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04534047 387.92526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04534048 387.92526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04534049 387.92526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04534050 387.92526245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04534051 387.92529297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04534052 387.92529297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04534053 387.92532349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04534054 387.92532349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04534055 387.92535400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04534056 387.92535400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04534057 387.92538452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04534058 387.92538452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04534059 387.92541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04534060 387.92541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04534061 387.92541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04534062 387.92541504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04534063 387.92544556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04534064 387.92547607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04534065 387.92550659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04534066 387.92550659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04534067 387.92553711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04534068 387.92553711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04534069 387.92556763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04534070 387.92556763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04534071 387.92559814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04534072 387.92559814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04534073 387.92562866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04534074 387.92562866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04534075 387.92565918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04534076 387.92565918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04534077 387.92568970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04534078 387.92568970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04534079 387.92572021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04534080 387.92572021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04534081 387.92572021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04534082 387.92572021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04534083 387.92575073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04534084 387.92575073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04534085 387.92578125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04534086 387.92578125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04534087 387.92581177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04534088 387.92581177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04534089 387.92584229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04534090 387.92587280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04534091 387.92587280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04534092 387.92587280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04534093 387.92590332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04534094 387.92590332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04534095 387.92593384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04534096 387.92593384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04534097 387.92596436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04534098 387.92596436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04534099 387.92599487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04534100 387.92599487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04534101 387.92602539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04534102 387.92602539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04534103 387.92605591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04534104 387.92605591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04534105 387.92605591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04534106 387.92605591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04534107 387.92608643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04534108 387.92608643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04534109 387.92611694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04534110 387.92614746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04534111 387.92617798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04534112 387.92617798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04534113 387.92620850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04534114 387.92620850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04534115 387.92620850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04534116 387.92623901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04534117 387.92626953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04534118 387.92626953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04534119 387.92633057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04534120 387.92633057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04534121 387.92636108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04534122 387.92636108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04534123 387.92639160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04534124 387.92639160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04534125 387.92642212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04534126 387.92642212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04534127 387.92645264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04534128 387.92645264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04534129 387.92648315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04534130 387.92648315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04534131 387.92651367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04534132 387.92651367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04534133 387.92651367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04534134 387.92651367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04534135 387.92654419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04534136 387.92654419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04534137 387.92657471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04534138 387.92657471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04534139 387.92660522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04534140 387.92663574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04534141 387.92666626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04534142 387.92666626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04534143 387.92669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04534144 387.92669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04534145 387.92669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04534146 387.92669678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04534147 387.92672729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04534148 387.92672729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04534149 387.92675781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04534150 387.92675781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04534151 387.92678833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04534152 387.92678833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04534153 387.92681885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04534154 387.92681885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04534155 387.92684937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04534156 387.92684937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04534157 387.92684937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04534158 387.92684937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04534159 387.92687988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04534160 387.92691040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04534161 387.92694092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04534162 387.92694092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04534163 387.92697144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04534164 387.92697144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04534165 387.92700195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04534166 387.92700195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04534167 387.92700195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04534168 387.92700195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04534169 387.92703247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04534170 387.92703247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04534171 387.92706299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04534172 387.92706299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04534173 387.92709351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04534174 387.92709351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04534175 387.92712402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04534176 387.92712402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04534177 387.92715454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04534178 387.92715454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04534179 387.92718506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04534180 387.92718506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04534181 387.92721558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04534182 387.92721558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04534183 387.92724609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04534184 387.92724609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04534185 387.92727661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04534186 387.92727661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04534187 387.92730713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04534188 387.92730713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04534189 387.92730713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04534190 387.92730713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04534191 387.92733765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04534192 387.92733765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04534193 387.92736816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04534194 387.92739868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04534195 387.92739868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04534196 387.92742920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04534197 387.92745972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04534198 387.92745972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04534199 387.92749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04534200 387.92749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04534201 387.92749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04534202 387.92749023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04534203 387.92752075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04534204 387.92752075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04534205 387.92755127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04534206 387.92755127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04534207 387.92758179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04534208 387.92758179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04534209 387.92761230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04534210 387.92761230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04534211 387.92764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04534212 387.92764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04534213 387.92764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04534214 387.92764282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04534215 387.92767334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04534216 387.92767334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04534217 387.92770386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04534218 387.92770386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04534219 387.92773438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04534220 387.92773438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04534221 387.92776489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04534222 387.92776489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04534223 387.92779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04534224 387.92779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04534225 387.92779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04534226 387.92779541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04534227 387.92782593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04534228 387.92782593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04534229 387.92785645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04534230 387.92785645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04534231 387.92788696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04534232 387.92788696 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04534233 387.92791748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04534234 387.92794800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04534235 387.92794800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04534236 387.92794800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04534237 387.92797852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04534238 387.92797852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04534239 387.92800903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04534240 387.92800903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04534241 387.92803955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04534242 387.92803955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04534243 387.92807007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04534244 387.92807007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04534245 387.92810059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04534246 387.92810059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04534247 387.92810059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04534248 387.92810059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04534249 387.92813110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04534250 387.92813110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04534251 387.92816162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04534252 387.92816162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04534253 387.92819214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04534254 387.92822266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04534255 387.92825317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04534256 387.92825317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04534257 387.92828369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04534258 387.92828369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04534259 387.92828369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04534260 387.92828369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04534261 387.92831421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04534262 387.92831421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04534263 387.92834473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04534264 387.92834473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04534265 387.92837524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04534266 387.92837524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04534267 387.92840576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04534268 387.92840576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04534269 387.92843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04534270 387.92843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04534271 387.92843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04534272 387.92843628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04534273 387.92846680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04534274 387.92846680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04534275 387.92849731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04534276 387.92849731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04534277 387.92852783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04534278 387.92852783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04534279 387.92855835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04534280 387.92855835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04534281 387.92858887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04534282 387.92858887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04534283 387.92858887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04534284 387.92861938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04534285 387.92864990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04534286 387.92864990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04534287 387.92868042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04534288 387.92868042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04534289 387.92871094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04534290 387.92871094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04534291 387.92874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04534292 387.92874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04534293 387.92874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04534294 387.92874146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04534295 387.92877197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04534296 387.92877197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04534297 387.92880249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04534298 387.92880249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04534415 387.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04534416 387.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04534417 387.93060303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04534418 387.93060303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04534419 387.93063354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04534420 387.93063354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04534421 387.93066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04534422 387.93066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04534423 387.93069458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04534424 387.93069458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04534425 387.93072510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04534426 387.93072510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04534427 387.93075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04534428 387.93075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04534429 387.93078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04534430 387.93078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04534431 387.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04534432 387.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04534433 387.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04534434 387.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04534435 387.93084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04534436 387.93084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04534437 387.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04534438 387.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04534439 387.93093872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04534440 387.93093872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04534441 387.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04534442 387.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04534443 387.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04534444 387.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04534445 387.93099976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04534446 387.93099976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04534447 387.93103027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04534448 387.93103027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04534449 387.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04534450 387.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04534451 387.93109131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04534452 387.93109131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04534453 387.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04534454 387.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04534455 387.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04534456 387.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04534457 387.93115234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04534458 387.93118286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04538311 387.98776245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -04538312 387.98776245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a0 -04538313 387.98779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -04538314 387.98779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b0 -04538315 387.98782349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -04538316 387.98785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c0 -04538317 387.98785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -04538318 387.98785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d0 -04538319 387.98788452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -04538320 387.98788452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e0 -04538321 387.98791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -04538322 387.98791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f0 -04538323 387.98794556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -04538324 387.98794556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9900 -04538325 387.98797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -04538326 387.98797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9910 -04538327 387.98800659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -04538328 387.98800659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9920 -04538329 387.98800659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -04538330 387.98800659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9930 -04538331 387.98803711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -04538332 387.98803711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9940 -04538333 387.98806763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -04538334 387.98806763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9950 -04538335 387.98809814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -04538336 387.98812866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9960 -04538337 387.98815918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -04538338 387.98815918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -04538339 387.98815918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -04538340 387.98815918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -04538341 387.98818970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -04538342 387.98818970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -04538343 387.98822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -04538344 387.98825073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -04538345 387.98828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -04538346 387.98828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -04538347 387.98831177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -04538348 387.98831177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -04538349 387.98831177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -04538350 387.98831177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -04538351 387.98834229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -04538352 387.98834229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -04538353 387.98837280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -04538354 387.98837280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -04542569 388.05044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -04542570 388.05044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -04542571 388.05044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -04542572 388.05044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -04542573 388.05047607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -04542574 388.05047607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -04542575 388.05053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -04542576 388.05053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -04542577 388.05056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -04542578 388.05056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -04542579 388.05059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -04542580 388.05059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -04542581 388.05059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -04542582 388.05059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -04542583 388.05062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -04542584 388.05062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -04542585 388.05065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -04542586 388.05065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -04542587 388.05068970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -04542588 388.05072021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -04542589 388.05075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -04542590 388.05075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -04542591 388.05075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -04542592 388.05075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -04542593 388.05078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -04542594 388.05078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -04542595 388.05081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -04542596 388.05081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -04542597 388.05084229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -04542598 388.05084229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -04542599 388.05090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -04542600 388.05090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -04542601 388.05090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -04542602 388.05090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -04542603 388.05093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -04542604 388.05093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -04542605 388.05096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -04542606 388.05096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -04542607 388.05099487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -04542608 388.05099487 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -04542609 388.05102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -04542610 388.05105591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -04542611 388.05108643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -04542612 388.05108643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -04547625 388.12588501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -04547626 388.12588501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbb0 -04547627 388.12591553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -04547628 388.12591553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbc0 -04547629 388.12591553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -04547630 388.12591553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbd0 -04547631 388.12594604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -04547632 388.12594604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbe0 -04547633 388.12597656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -04547634 388.12597656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bbf0 -04547635 388.12600708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -04547636 388.12600708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc00 -04547637 388.12603760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -04547638 388.12603760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc10 -04547639 388.12606812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -04547640 388.12606812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc20 -04547641 388.12609863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -04547642 388.12609863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc30 -04547643 388.12612915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -04547644 388.12612915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc40 -04547645 388.12615967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -04547646 388.12615967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc50 -04547647 388.12619019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -04547648 388.12619019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc60 -04547649 388.12622070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -04547650 388.12622070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc70 -04547651 388.12625122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -04547652 388.12625122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc80 -04547653 388.12628174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -04547654 388.12628174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc90 -04547655 388.12631226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -04547656 388.12631226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca0 -04547657 388.12634277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -04547658 388.12634277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb0 -04547659 388.12637329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -04547660 388.12637329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc0 -04547661 388.12637329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -04547662 388.12637329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd0 -04547663 388.12640381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -04547664 388.12640381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce0 -04547665 388.12643433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -04547666 388.12643433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf0 -04547667 388.12646484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -04547668 388.12646484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd00 -04552828 388.20129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e40 -04552829 388.20132446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -04552830 388.20132446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e50 -04552831 388.20135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -04552832 388.20135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e60 -04552833 388.20135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -04552834 388.20135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e70 -04552835 388.20138550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -04552836 388.20138550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e80 -04552837 388.20141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -04552838 388.20141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e90 -04552839 388.20144653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -04552840 388.20144653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea0 -04552841 388.20147705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -04552842 388.20147705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb0 -04552843 388.20150757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -04552844 388.20150757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec0 -04552845 388.20153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -04552846 388.20153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed0 -04552847 388.20153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -04552848 388.20156860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee0 -04552849 388.20159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -04552850 388.20159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef0 -04552851 388.20162964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -04552852 388.20162964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f00 -04552853 388.20166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -04552854 388.20166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f10 -04552855 388.20169067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -04552856 388.20169067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f20 -04552857 388.20169067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -04552858 388.20169067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f30 -04552859 388.20172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -04552860 388.20172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f40 -04552861 388.20175171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -04552862 388.20175171 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f50 -04552863 388.20178223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -04552864 388.20178223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f60 -04552865 388.20181274 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -04552866 388.20181274 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f70 -04552867 388.20184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -04552868 388.20184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f80 -04552869 388.20184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -04552870 388.20187378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f90 -04552871 388.20190430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa0 -04568980 388.43304443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45700 -04568981 388.43307495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -04568982 388.43307495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45710 -04568983 388.43310547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -04568984 388.43310547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45720 -04568985 388.43313599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -04568986 388.43313599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45730 -04568987 388.43316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -04568988 388.43316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45740 -04568989 388.43316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -04568990 388.43319702 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45750 -04568991 388.43322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -04568992 388.43322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45760 -04568993 388.43325806 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -04568994 388.43325806 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45770 -04568995 388.43328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -04568996 388.43328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45780 -04568997 388.43331909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -04568998 388.43331909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45790 -04568999 388.43331909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -04569000 388.43331909 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457a0 -04569001 388.43334961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -04569002 388.43334961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457b0 -04569003 388.43338013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -04569004 388.43338013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c0 -04569005 388.43341064 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -04569006 388.43341064 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d0 -04569007 388.43344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -04569008 388.43344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e0 -04569009 388.43347168 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -04569010 388.43347168 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f0 -04569011 388.43350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -04569012 388.43350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45800 -04569013 388.43353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -04569014 388.43353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45810 -04569015 388.43356323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -04569016 388.43356323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45820 -04569017 388.43359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -04569018 388.43359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45830 -04569019 388.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -04569020 388.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45840 -04569021 388.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -04569022 388.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45850 -04569023 388.43365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45860 -04574613 388.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -04574614 388.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50700 -04574615 388.51358032 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -04574616 388.51358032 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50710 -04574617 388.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -04574618 388.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50720 -04574619 388.51364136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -04574620 388.51364136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50730 -04574621 388.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -04574622 388.51370239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50740 -04574623 388.51370239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -04574624 388.51370239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -04574625 388.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -04574626 388.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -04574627 388.51376343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -04574628 388.51376343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -04574629 388.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -04574630 388.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -04574631 388.51382446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -04574632 388.51382446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -04574633 388.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -04574634 388.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -04574635 388.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -04574636 388.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -04574637 388.51388550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -04574638 388.51388550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -04574639 388.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -04574640 388.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -04574641 388.51394653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -04574642 388.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -04574643 388.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -04574644 388.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -04574645 388.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -04574646 388.51400757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50800 -04574647 388.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -04574648 388.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50810 -04574649 388.51406860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -04574650 388.51406860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50820 -04574651 388.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -04574652 388.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50830 -04574653 388.51412964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -04574654 388.51412964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50840 -04574655 388.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -04574656 388.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50850 -04575846 389.52426147 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575847 389.52426147 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575848 389.52429199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04575849 389.52432251 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04575850 389.52441406 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575851 389.52444458 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04575852 389.52450562 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575853 389.52453613 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04575854 390.61141968 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04575855 390.63055420 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04575856 390.63058472 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04575857 392.03158569 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575858 392.03164673 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575859 392.03167725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04575860 392.03167725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04575861 392.03179932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575862 392.03179932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04575863 392.03186035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04575864 392.03186035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04575865 392.46221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04575866 392.46221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04575867 392.46224976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04575868 392.46224976 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04575869 392.46228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04575870 392.46228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04575871 392.46231079 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04575872 392.46234131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04575873 392.46237183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04575874 392.46237183 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04575875 392.46240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04575876 392.46240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04575877 392.46240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04575878 392.46240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04575879 392.46243286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04575880 392.46243286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04575881 392.46246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04575882 392.46246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04575883 392.46249390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04575884 392.46249390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04575885 392.46252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04575886 392.46252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04575887 392.46255493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04575888 392.46255493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04575889 392.46255493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04575890 392.46255493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04575891 392.46258545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04575892 392.46261597 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04575893 392.46264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04575894 392.46264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04575895 392.46267700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04575896 392.46267700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04575897 392.46270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04575898 392.46270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04575899 392.46270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04575900 392.46270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04575901 392.46273804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04575902 392.46273804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04575903 392.46276855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04575904 392.46276855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04575905 392.46279907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04575906 392.46279907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04575907 392.46282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04575908 392.46282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04575909 392.46286011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04575910 392.46286011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04575911 392.46286011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04575912 392.46289063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04575913 392.46292114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04575914 392.46292114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04575915 392.46295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04575916 392.46295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04575917 392.46298218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04575918 392.46298218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04575919 392.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04575920 392.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04575921 392.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04575922 392.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04575923 392.46304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04575924 392.46304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04575925 392.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04575926 392.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04575927 392.46310425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04575928 392.46310425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04575929 392.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04575930 392.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04575931 392.46316528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04575932 392.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04575933 392.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04575934 392.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04575935 392.46322632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04575936 392.46322632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04575937 392.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04575938 392.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04575939 392.46328735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04575940 392.46328735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04575941 392.46331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04575942 392.46331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04575943 392.46334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04575944 392.46334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04575945 392.46334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04575946 392.46334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04575947 392.46337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04575948 392.46337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04575949 392.46343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04575950 392.46343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04575951 392.46347046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04575952 392.46347046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04575953 392.46350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04575954 392.46350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04575955 392.46350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04575956 392.46350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04575957 392.46353149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04575958 392.46353149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04575959 392.46356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04575960 392.46356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04575961 392.46359253 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04575962 392.46362305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04575963 392.46365356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04575964 392.46365356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04575965 392.46365356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04575966 392.46365356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04575967 392.46368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04575968 392.46368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04575969 392.46371460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04575970 392.46371460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04575971 392.46374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04575972 392.46374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04575973 392.46377563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04575974 392.46377563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04575975 392.46380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04575976 392.46380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04575977 392.46383667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04575978 392.46383667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04575979 392.46386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04575980 392.46386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04575981 392.46389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04575982 392.46389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04575983 392.46392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04575984 392.46392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04575985 392.46395874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04575986 392.46395874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04575987 392.46398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04575988 392.46398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04575989 392.46401978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04575990 392.46401978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04575991 392.46405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04575992 392.46405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04575993 392.46411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04575994 392.46411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04575995 392.46414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04575996 392.46414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04575997 392.46414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04575998 392.46414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04575999 392.46417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04576000 392.46417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04576001 392.46420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04576002 392.46420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04576003 392.46423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04576004 392.46423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04576005 392.46426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04576006 392.46426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04576007 392.46429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04576008 392.46429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04576009 392.46432495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04576010 392.46432495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04576011 392.46435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04576012 392.46435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04576013 392.46438599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04576014 392.46438599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04576015 392.46441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04576016 392.46441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04576017 392.46444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04576018 392.46444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04576019 392.46444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04576020 392.46444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04576021 392.46447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04576022 392.46447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04576023 392.46450806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04576024 392.46450806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04576025 392.46453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04576026 392.46453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04576027 392.46459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04576028 392.46459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04576029 392.46459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04576030 392.46459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04576031 392.46463013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04576032 392.46463013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04576033 392.46466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04576034 392.46466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04576035 392.46469116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04576036 392.46469116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04576037 392.46472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04576038 392.46472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04576039 392.46475220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04576040 392.46475220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04576041 392.46478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04576042 392.46478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04576043 392.46478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04576044 392.46481323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04576045 392.46484375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04576046 392.46484375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04576047 392.46487427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04576048 392.46487427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04576049 392.46490479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04576050 392.46490479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04576051 392.46493530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04576052 392.46493530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04576053 392.46493530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04576054 392.46493530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04576055 392.46496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04576056 392.46496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04576057 392.46499634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04576058 392.46499634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04576059 392.46502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04576060 392.46502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04576061 392.46505737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04576062 392.46505737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04576063 392.46508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04576064 392.46508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04576065 392.46511841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04576066 392.46511841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04576067 392.46514893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04576068 392.46514893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04576069 392.46517944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04576070 392.46517944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04576071 392.46520996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04576072 392.46520996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04576073 392.46524048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04576074 392.46524048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04576075 392.46524048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04576076 392.46524048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04576077 392.46527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04576078 392.46527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04576079 392.46530151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04576080 392.46530151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04576081 392.46533203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04576082 392.46536255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04576083 392.46539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04576084 392.46539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04576085 392.46539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04576086 392.46539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04576087 392.46542358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04576088 392.46542358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04576089 392.46545410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04576090 392.46545410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04576091 392.46548462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04576092 392.46548462 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04576093 392.46551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04576094 392.46551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04576095 392.46554565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04576096 392.46554565 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04576097 392.46557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04576098 392.46557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04576099 392.46557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04576100 392.46560669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04576101 392.46563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04576102 392.46563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04576103 392.46566772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04576104 392.46566772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04576105 392.46569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04576106 392.46569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04576107 392.46572876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04576108 392.46572876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04576109 392.46572876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04576110 392.46572876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04576111 392.46575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04576112 392.46575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04576113 392.46578979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04576114 392.46578979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04576115 392.46582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04576116 392.46582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04576117 392.46585083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04576118 392.46585083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04576119 392.46588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04576120 392.46588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04576121 392.46591187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04576122 392.46591187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04576123 392.46594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04576124 392.46594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04576125 392.46597290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04576126 392.46597290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04576127 392.46600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04576128 392.46600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04576129 392.46603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04576130 392.46603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04576131 392.46603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04576132 392.46603394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04576133 392.46606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04576134 392.46606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04576135 392.46609497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04576136 392.46609497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04576137 392.46612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04576138 392.46612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04576139 392.46615601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04576140 392.46618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04576141 392.46618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04576142 392.46618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04576143 392.46621704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04576144 392.46621704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04576145 392.46624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04576146 392.46624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04576147 392.46627808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04576148 392.46627808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04576149 392.46630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04576150 392.46630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04576151 392.46633911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04576152 392.46633911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04576153 392.46636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04576154 392.46636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04576155 392.46636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04576156 392.46636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04576157 392.46643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04576158 392.46643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04576159 392.46646118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04576160 392.46646118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04576161 392.46649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04576162 392.46649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04576163 392.46652222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04576164 392.46652222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04576165 392.46652222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04576166 392.46652222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04576167 392.46655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04576168 392.46655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04576169 392.46658325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04576170 392.46658325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04576171 392.46661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04576172 392.46661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04576173 392.46664429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04576174 392.46664429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04576175 392.46667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04576176 392.46667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04576177 392.46670532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04576178 392.46670532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04576179 392.46673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04576180 392.46673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04576181 392.46676636 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04576182 392.46676636 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04576183 392.46679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04576184 392.46679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04576185 392.46682739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04576186 392.46682739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04576187 392.46682739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04576188 392.46682739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04576189 392.46685791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04576190 392.46685791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04576191 392.46688843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04576192 392.46688843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04576193 392.46691895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04576194 392.46694946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04576195 392.46697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04576196 392.46697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04576197 392.46697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04576198 392.46697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04576199 392.46701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04576200 392.46701050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04576201 392.46704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04576202 392.46704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04576203 392.46707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04576204 392.46707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04576205 392.46710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04576206 392.46710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04576207 392.46713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04576208 392.46713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04576209 392.46716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04576210 392.46716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04576211 392.46716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04576212 392.46719360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04576213 392.46722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04576214 392.46722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04576215 392.46725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04576216 392.46725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04576217 392.46728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04576218 392.46728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04576219 392.46731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04576220 392.46731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04576221 392.46731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04576222 392.46731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04576223 392.46734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04576224 392.46734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04576225 392.46737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04576226 392.46737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04576227 392.46740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04576228 392.46740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04576229 392.46743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04576230 392.46743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04576231 392.46746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04576232 392.46746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04576233 392.46746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04576234 392.46749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04576235 392.46752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04576236 392.46752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04576237 392.46755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04576238 392.46755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04576239 392.46759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04576240 392.46759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04576241 392.46762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04576242 392.46762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04576243 392.46762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04576244 392.46762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04576245 392.46765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04576246 392.46765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04576247 392.46768188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04576248 392.46768188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04576249 392.46771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04576250 392.46771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04576251 392.46774292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04576252 392.46774292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04576253 392.46777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04576254 392.46777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04576255 392.46780396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04576256 392.46780396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04576257 392.46783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04576258 392.46783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04576259 392.46786499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04576260 392.46786499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04576261 392.46789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04576262 392.46789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04576263 392.46792603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04576264 392.46792603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04576265 392.46795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04576266 392.46795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04576267 392.46795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04576268 392.46795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04576269 392.46798706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04576270 392.46798706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04576271 392.46801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04576272 392.46801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04576273 392.46804810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04576274 392.46804810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04576275 392.46807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04576276 392.46810913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04576277 392.46810913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04576278 392.46810913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04576279 392.46813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04576280 392.46813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04576281 392.46817017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04576282 392.46817017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04576283 392.46820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04576284 392.46823120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04576285 392.46826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04576286 392.46826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04576287 392.46826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04576288 392.46826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04576289 392.46829224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04576290 392.46829224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04576291 392.46832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04576292 392.46832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04576293 392.46835327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04576294 392.46838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04576295 392.46841431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04576296 392.46841431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04576297 392.46841431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04576298 392.46841431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04576299 392.46844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04576300 392.46844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04576301 392.46847534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04576302 392.46847534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04576303 392.46850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04576304 392.46850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04576305 392.46853638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04576306 392.46853638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04576307 392.46856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04576308 392.46856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04576309 392.46859741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04576310 392.46859741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04576311 392.46859741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04576312 392.46862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04576313 392.46865845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04576314 392.46865845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04576315 392.46868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04576316 392.46868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04576317 392.46871948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04576318 392.46871948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04576319 392.46875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04576320 392.46875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04576321 392.46875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04576322 392.46875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04576323 392.46878052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04576324 392.46878052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04576325 392.46881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04576326 392.46881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04576327 392.46884155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04576328 392.46884155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04576329 392.46887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04576330 392.46890259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04576331 392.46890259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04576332 392.46890259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04576333 392.46893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04576334 392.46893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04576335 392.46896362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04576336 392.46896362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04576337 392.46899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04576338 392.46899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04576339 392.46902466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04576340 392.46902466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04576341 392.46905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04576342 392.46905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04576343 392.46905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04576344 392.46905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04576345 392.46908569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04576346 392.46908569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04576347 392.46911621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04576348 392.46911621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04576349 392.46914673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04576350 392.46917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04576351 392.46920776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04576352 392.46920776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04576353 392.46920776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04576354 392.46920776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04576355 392.46923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04576356 392.46923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04576357 392.46926880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04576358 392.46926880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04576359 392.46929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04576360 392.46929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04576361 392.46932983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04576362 392.46932983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04576363 392.46936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04576364 392.46936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04576365 392.46939087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04576366 392.46939087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04576367 392.46939087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04576368 392.46939087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04576369 392.46942139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04576370 392.46942139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04576371 392.46945190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04576372 392.46948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04576373 392.46951294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04576374 392.46951294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04576375 392.46954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04576376 392.46954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04576377 392.46954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04576378 392.46954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04576379 392.46957397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04576380 392.46957397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04576381 392.46960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04576382 392.46960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04576383 392.46963501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04576384 392.46963501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04576385 392.46966553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04576386 392.46966553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04576387 392.46969604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04576388 392.46969604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04576389 392.46969604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04576390 392.46969604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04576391 392.46972656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04576392 392.46972656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04576393 392.46975708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04576394 392.46978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04576395 392.46981812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04576396 392.46981812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04576397 392.46984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04576398 392.46984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04576399 392.46984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04576400 392.46984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04576401 392.46987915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04576402 392.46987915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04576403 392.46990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04576404 392.46990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04576405 392.46994019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04576406 392.46994019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04576407 392.46997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04576408 392.46997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04576409 392.47000122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04576410 392.47000122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04576411 392.47000122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04576412 392.47000122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04576413 392.47003174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04576414 392.47003174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04576415 392.47006226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04576416 392.47009277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04576417 392.47012329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04576418 392.47012329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04576419 392.47015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04576420 392.47015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04576421 392.47018433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04576422 392.47018433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04576423 392.47018433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04576424 392.47018433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04576425 392.47021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04576426 392.47021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04576427 392.47024536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04576428 392.47024536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04576429 392.47027588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04576430 392.47027588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04576431 392.47030640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04576432 392.47030640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04576433 392.47033691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04576434 392.47033691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04576435 392.47036743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04576436 392.47036743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04576437 392.47039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04576438 392.47039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04576439 392.47042847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04576440 392.47042847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04576441 392.47045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04576442 392.47045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04576443 392.47048950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04576444 392.47048950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04576445 392.47048950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04576446 392.47048950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04576447 392.47052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04576448 392.47052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04576449 392.47055054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04576450 392.47055054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04576451 392.47058105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04576452 392.47061157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04576453 392.47064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04576454 392.47064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04576455 392.47064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04576456 392.47064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04576457 392.47067261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04576458 392.47067261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04576459 392.47070313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04576460 392.47070313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04576461 392.47073364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04576462 392.47073364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04576463 392.47076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04576464 392.47076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04576465 392.47079468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04576466 392.47079468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04576467 392.47079468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04576468 392.47082520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04576469 392.47085571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04576470 392.47085571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04576471 392.47088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04576472 392.47088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04576473 392.47091675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04576474 392.47091675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04576475 392.47094727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04576476 392.47094727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04576477 392.47097778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04576478 392.47097778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04576479 392.47097778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04576480 392.47097778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04576481 392.47100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04576482 392.47100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04576483 392.47103882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04576484 392.47106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04576485 392.47109985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04576486 392.47109985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04576487 392.47113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04576488 392.47113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04576489 392.47113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04576490 392.47113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04576491 392.47116089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04576492 392.47116089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04576493 392.47119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04576494 392.47119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04576495 392.47122192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04576496 392.47122192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04576497 392.47128296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04576498 392.47128296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04576499 392.47128296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04576500 392.47128296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04576501 392.47131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04576502 392.47131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04576503 392.47134399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04576504 392.47134399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04576505 392.47137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04576506 392.47137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04576507 392.47140503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04576508 392.47140503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04576509 392.47143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04576510 392.47143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04576511 392.47143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04576512 392.47143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04576513 392.47149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04576514 392.47149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04576515 392.47152710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04576516 392.47152710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04576517 392.47155762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04576518 392.47155762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04576519 392.47158813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04576520 392.47158813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04576521 392.47158813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04576522 392.47158813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04576523 392.47161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04576524 392.47161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04576525 392.47164917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04576526 392.47164917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04576527 392.47167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04576528 392.47167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04576529 392.47171021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04576530 392.47171021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04576531 392.47174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04576532 392.47174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04576533 392.47177124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04576534 392.47177124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04576535 392.47180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04576536 392.47180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04576537 392.47183228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04576538 392.47183228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04576539 392.47186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04576540 392.47186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04576541 392.47189331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04576542 392.47189331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04576543 392.47192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04576544 392.47192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04576545 392.47192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04576546 392.47192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04576547 392.47195435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04576548 392.47195435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04576549 392.47198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04576550 392.47198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04576551 392.47201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04576552 392.47201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04576553 392.47207642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04576554 392.47207642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04576555 392.47207642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04576556 392.47207642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04576557 392.47210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04576558 392.47210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04576559 392.47213745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04576560 392.47213745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04576561 392.47216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04576562 392.47216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04576563 392.47219849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04576564 392.47219849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04576565 392.47222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04576566 392.47222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04576567 392.47222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04576568 392.47222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04576569 392.47225952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04576570 392.47225952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04576571 392.47229004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04576572 392.47232056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04576573 392.47235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04576574 392.47235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04576575 392.47238159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04576576 392.47238159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04576577 392.47238159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04576578 392.47238159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04576579 392.47241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04576580 392.47241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04576581 392.47244263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04576582 392.47244263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04576583 392.47247314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04576584 392.47247314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04576585 392.47250366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04576586 392.47250366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04576587 392.47253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04576588 392.47253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04576589 392.47256470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04576590 392.47256470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04576591 392.47256470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04576592 392.47256470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04576593 392.47259521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04576594 392.47262573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04576595 392.47265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04576596 392.47265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04576597 392.47268677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04576598 392.47268677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04576599 392.47271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04576600 392.47271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04576601 392.47271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04576602 392.47271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04576603 392.47274780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04576604 392.47274780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04576605 392.47277832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04576606 392.47277832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04576607 392.47280884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04576608 392.47280884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04576609 392.47283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04576610 392.47283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04576611 392.47286987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04576612 392.47286987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04576613 392.47286987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04576614 392.47290039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04576615 392.47293091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04576616 392.47293091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04576617 392.47296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04576618 392.47296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04576619 392.47299194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04576620 392.47299194 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04576621 392.47302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04576622 392.47302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04576623 392.47302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04576624 392.47302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04576625 392.47305298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04576626 392.47305298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04576627 392.47308350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04576628 392.47308350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04576629 392.47311401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04576630 392.47311401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04576631 392.47314453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04576632 392.47317505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04576633 392.47320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04576634 392.47320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04576635 392.47320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04576636 392.47320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04576637 392.47323608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04576638 392.47323608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04576639 392.47326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04576640 392.47326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04576641 392.47329712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04576642 392.47329712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04576643 392.47332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04576644 392.47332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04576645 392.47335815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04576646 392.47335815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04576647 392.47335815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04576648 392.47335815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04576649 392.47338867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04576650 392.47338867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04576651 392.47344971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04576652 392.47344971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04576653 392.47348022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04576654 392.47348022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04576655 392.47351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04576656 392.47351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04576657 392.47351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04576658 392.47351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04576659 392.47354126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04576660 392.47354126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04576661 392.47357178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04576662 392.47357178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04576663 392.47360229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04576664 392.47360229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04576665 392.47363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04576666 392.47363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04576667 392.47366333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04576668 392.47366333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04576669 392.47366333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04576670 392.47369385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04576671 392.47372437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04576672 392.47372437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04576673 392.47375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04576674 392.47375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04576675 392.47378540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04576676 392.47378540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04576677 392.47381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04576678 392.47381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04576679 392.47381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04576680 392.47381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04576681 392.47384644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04576682 392.47384644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04576683 392.47387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04576684 392.47387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04576685 392.47390747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04576686 392.47390747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04576687 392.47393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04576688 392.47393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04576689 392.47396851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04576690 392.47399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04576691 392.47399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04576692 392.47399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04576693 392.47402954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04576694 392.47402954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04576695 392.47406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04576696 392.47406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04576697 392.47409058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04576698 392.47409058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04576699 392.47412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04576700 392.47412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04576701 392.47415161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04576702 392.47415161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04576703 392.47415161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04576704 392.47415161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04576705 392.47418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04576706 392.47418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04576707 392.47421265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04576708 392.47424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04576709 392.47427368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04576710 392.47427368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04576711 392.47430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04576712 392.47430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04576713 392.47430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04576714 392.47430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04576715 392.47433472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04576716 392.47433472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04576717 392.47436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04576718 392.47436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04576719 392.47439575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04576720 392.47439575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04576721 392.47442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04576722 392.47442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04576723 392.47445679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04576724 392.47445679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04576725 392.47445679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04576726 392.47445679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04576727 392.47448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04576728 392.47448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04576729 392.47451782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04576730 392.47454834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04576731 392.47457886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04576732 392.47457886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04576733 392.47460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04576734 392.47460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04576735 392.47460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04576736 392.47460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04576737 392.47463989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04576738 392.47463989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04576739 392.47467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04576740 392.47467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04576741 392.47470093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04576742 392.47470093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04576743 392.47473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04576744 392.47473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04576745 392.47476196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04576746 392.47476196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04576747 392.47479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04576748 392.47479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04576749 392.47479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04576750 392.47479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04576751 392.47482300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04576752 392.47482300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04576753 392.47485352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04576754 392.47488403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04576755 392.47491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04576756 392.47491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04576757 392.47494507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04576758 392.47494507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04576759 392.47494507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04576760 392.47494507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04576761 392.47497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04576762 392.47497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04576763 392.47500610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04576764 392.47500610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04576765 392.47503662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04576766 392.47503662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04576767 392.47506714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04576768 392.47506714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04576769 392.47509766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04576770 392.47509766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04576771 392.47512817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04576772 392.47512817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04576773 392.47515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04576774 392.47515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04576775 392.47518921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04576776 392.47518921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04576777 392.47521973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04576778 392.47525024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04576779 392.47525024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04576780 392.47525024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04576781 392.47528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04576782 392.47528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04576783 392.47531128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04576784 392.47531128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04576785 392.47534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04576786 392.47534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04576787 392.47537231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04576788 392.47537231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04576789 392.47540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04576790 392.47540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04576791 392.47543335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04576792 392.47543335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04576793 392.47546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04576794 392.47546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04576795 392.47549438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04576796 392.47549438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04576797 392.47552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04576798 392.47552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04576799 392.47555542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04576800 392.47555542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04576801 392.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04576802 392.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04576803 392.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04576804 392.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04576805 392.47561646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04576806 392.47561646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04576807 392.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04576808 392.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04576809 392.47567749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04576810 392.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04576811 392.47573853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04576812 392.47573853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04576813 392.47573853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04576814 392.47573853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04576815 392.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04576816 392.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04576817 392.47579956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04576818 392.47579956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04576819 392.47583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04576820 392.47583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04576821 392.47586060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04576822 392.47586060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04576823 392.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04576824 392.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04576825 392.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04576826 392.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04576827 392.47592163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04576828 392.47592163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04576829 392.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04576830 392.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04576831 392.47598267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04576832 392.47601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04576833 392.47604370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04576834 392.47604370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04576835 392.47604370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04576836 392.47604370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04576837 392.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04576838 392.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04576839 392.47610474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04576840 392.47610474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04576841 392.47613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04576842 392.47613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04576843 392.47616577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04576844 392.47616577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04576845 392.47619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04576846 392.47619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04576847 392.47619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04576848 392.47619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04576849 392.47622681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04576850 392.47622681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04576851 392.47625732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04576852 392.47628784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04576853 392.47631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04576854 392.47631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04576855 392.47634888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04576856 392.47634888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04576857 392.47637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04576858 392.47637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04576859 392.47637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04576860 392.47637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04576861 392.47640991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04576862 392.47640991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04576863 392.47644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04576864 392.47644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04576865 392.47647095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04576866 392.47647095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04576867 392.47650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04576868 392.47650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04576869 392.47653198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04576870 392.47653198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04576871 392.47656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04576872 392.47656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04576873 392.47659302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04576874 392.47659302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04576875 392.47662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04576876 392.47662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04576877 392.47665405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04576878 392.47665405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04576879 392.47668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04576880 392.47668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04576881 392.47668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04576882 392.47668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04576883 392.47671509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04576884 392.47671509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04576885 392.47674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04576886 392.47674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04576887 392.47677612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04576888 392.47677612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04576889 392.47680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04576890 392.47683716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04576891 392.47683716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04576892 392.47683716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04576893 392.47686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04576894 392.47686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04576895 392.47689819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04576896 392.47689819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04576897 392.47692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04576898 392.47692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04576899 392.47695923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04576900 392.47695923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04576901 392.47698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04576902 392.47698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04576903 392.47698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04576904 392.47698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04576905 392.47702026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04576906 392.47702026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04576907 392.47705078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04576908 392.47705078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04576909 392.47708130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04576910 392.47708130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04576911 392.47714233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04576912 392.47714233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04576913 392.47717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04576914 392.47717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04576915 392.47717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04576916 392.47717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04576917 392.47720337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04576918 392.47720337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04576919 392.47723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04576920 392.47723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04576921 392.47726440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04576922 392.47726440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04576923 392.47729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04576924 392.47729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04576925 392.47732544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04576926 392.47732544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04576927 392.47732544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04576928 392.47732544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04576929 392.47738647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04576930 392.47738647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04576931 392.47741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04576932 392.47741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04576933 392.47744751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04576934 392.47744751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04576935 392.47747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04576936 392.47747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04576937 392.47747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04576938 392.47747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04576939 392.47750854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04576940 392.47750854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04576941 392.47753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04576942 392.47753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04576943 392.47756958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04576944 392.47760010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04576945 392.47763062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04576946 392.47763062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04576947 392.47763062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04576948 392.47763062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04576949 392.47766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04576950 392.47766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04576951 392.47769165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04576952 392.47769165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04576953 392.47772217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04576954 392.47772217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04576955 392.47775269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04576956 392.47775269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04576957 392.47778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04576958 392.47778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04576959 392.47781372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04576960 392.47781372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04576961 392.47784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04576962 392.47784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04576963 392.47787476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04576964 392.47787476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04576965 392.47790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04576966 392.47790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04576967 392.47793579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04576968 392.47793579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04576969 392.47796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04576970 392.47796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04576971 392.47796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04576972 392.47796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04576973 392.47799683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04576974 392.47802734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04576975 392.47805786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04576976 392.47805786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04576977 392.47808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04576978 392.47808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04576979 392.47811890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04576980 392.47811890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04576981 392.47811890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04576982 392.47811890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04576983 392.47814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04576984 392.47814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04576985 392.47817993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04576986 392.47817993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04576987 392.47821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04576988 392.47821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04576989 392.47824097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04576990 392.47824097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04576991 392.47827148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04576992 392.47827148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04576993 392.47830200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04576994 392.47830200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04576995 392.47833252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04576996 392.47833252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04576997 392.47836304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04576998 392.47836304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04576999 392.47839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04577000 392.47839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04577001 392.47842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04577002 392.47842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04577003 392.47842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04577004 392.47842407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04577005 392.47845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04577006 392.47845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04577007 392.47848511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04577008 392.47851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04577009 392.47854614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04577010 392.47854614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04577011 392.47857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04577012 392.47857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04577013 392.47860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04577014 392.47860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04577015 392.47860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04577016 392.47860718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04577017 392.47863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04577018 392.47863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04577019 392.47866821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04577020 392.47866821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04577021 392.47869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04577022 392.47869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04577023 392.47872925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04577024 392.47872925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04577025 392.47875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04577026 392.47875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04577027 392.47879028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04577028 392.47879028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04577029 392.47882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04577030 392.47882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04577031 392.47885132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04577032 392.47885132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04577033 392.47888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04577034 392.47888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04577035 392.47891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04577036 392.47891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04577037 392.47891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04577038 392.47891235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04577039 392.47894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04577040 392.47894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04577041 392.47897339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04577042 392.47897339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04577043 392.47900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04577044 392.47903442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04577045 392.47906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04577046 392.47906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04577047 392.47906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04577048 392.47906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04577049 392.47909546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04577050 392.47909546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04577051 392.47912598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04577052 392.47912598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04577053 392.47915649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04577054 392.47915649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04577055 392.47918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04577056 392.47918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04577057 392.47921753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04577058 392.47921753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04577059 392.47921753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04577060 392.47921753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04577061 392.47924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04577062 392.47924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04577063 392.47927856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04577064 392.47930908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04577065 392.47933960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04577066 392.47933960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04577067 392.47937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04577068 392.47937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04577069 392.47940063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04577070 392.47940063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04577071 392.47940063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04577072 392.47940063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04577073 392.47943115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04577074 392.47943115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04577075 392.47946167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04577076 392.47946167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04577077 392.47949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04577078 392.47949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04577079 392.47952271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04577080 392.47955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04577081 392.47955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04577082 392.47955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04577083 392.47958374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04577084 392.47958374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04577085 392.47961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04577086 392.47961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04577087 392.47964478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04577088 392.47964478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04577089 392.47967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04577090 392.47967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04577091 392.47970581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04577092 392.47970581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04577093 392.47970581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04577094 392.47970581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04577095 392.47973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04577096 392.47973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04577097 392.47976685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04577098 392.47976685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04577099 392.47979736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04577100 392.47982788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04577101 392.47985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04577102 392.47985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04577103 392.47985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04577104 392.47985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04577105 392.47988892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04577106 392.47988892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04577107 392.47991943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04577108 392.47991943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04577109 392.47994995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04577110 392.47994995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04577111 392.47998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04577112 392.47998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04577113 392.48001099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04577114 392.48001099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04577115 392.48001099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04577116 392.48001099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04577117 392.48004150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04577118 392.48007202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04577119 392.48010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04577120 392.48010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04577121 392.48013306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04577122 392.48013306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04577123 392.48016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04577124 392.48016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04577125 392.48019409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04577126 392.48019409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04577127 392.48019409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04577128 392.48019409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04577129 392.48022461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04577130 392.48022461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04577131 392.48025513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04577132 392.48025513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04577133 392.48028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04577134 392.48028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04577135 392.48031616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04577136 392.48031616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04577137 392.48034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04577138 392.48034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04577139 392.48037720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04577140 392.48037720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04577141 392.48040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04577142 392.48040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04577143 392.48043823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04577144 392.48043823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04577145 392.48046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04577146 392.48046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04577147 392.48049927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04577148 392.48049927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04577149 392.48049927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04577150 392.48049927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04577151 392.48052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04577152 392.48052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04577153 392.48056030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04577154 392.48056030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04577155 392.48059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04577156 392.48059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04577157 392.48062134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04577158 392.48065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04577159 392.48065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04577160 392.48065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04577161 392.48068237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04577162 392.48068237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04577163 392.48071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04577164 392.48071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04577165 392.48074341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04577166 392.48074341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04577167 392.48077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04577168 392.48077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04577169 392.48080444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04577170 392.48080444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04577171 392.48080444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04577172 392.48080444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04577173 392.48083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04577174 392.48083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04577175 392.48086548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04577176 392.48086548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04577177 392.48089600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04577178 392.48092651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04577179 392.48095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04577180 392.48095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04577181 392.48098755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04577182 392.48098755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04577183 392.48098755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04577184 392.48098755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04577185 392.48101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04577186 392.48101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04577187 392.48104858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04577188 392.48104858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04577189 392.48107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04577190 392.48107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04577191 392.48110962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04577192 392.48110962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04577193 392.48114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04577194 392.48114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04577195 392.48114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04577196 392.48117065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04577197 392.48117065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04577198 392.48120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04577199 392.48123169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04577200 392.48123169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04577201 392.48126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04577202 392.48126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04577203 392.48129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04577204 392.48129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04577205 392.48129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04577206 392.48129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04577207 392.48132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04577208 392.48132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04577209 392.48135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04577210 392.48135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04577211 392.48138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04577212 392.48138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04577213 392.48141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04577214 392.48141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04577215 392.48144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04577216 392.48144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04577217 392.48144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04577218 392.48147583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04577219 392.48150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04577220 392.48150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04577221 392.48153687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04577222 392.48153687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04577223 392.48156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04577224 392.48156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04577225 392.48159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04577226 392.48159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04577227 392.48159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04577228 392.48159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04580418 392.52719116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -04580419 392.52719116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -04580420 392.52719116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -04580421 392.52722168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -04580422 392.52722168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -04580423 392.52725220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -04580424 392.52728271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -04580425 392.52728271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -04580426 392.52731323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -04580427 392.52734375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -04580428 392.52734375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -04580429 392.52737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -04580430 392.52737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -04580431 392.52737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -04580432 392.52737427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -04580433 392.52740479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -04580434 392.52740479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -04580435 392.52743530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -04580436 392.52743530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -04580437 392.52746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -04580438 392.52746582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -04580439 392.52749634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -04580440 392.52749634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -04580441 392.52752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -04580442 392.52752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -04580443 392.52752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -04580444 392.52752686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -04580445 392.52755737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -04580446 392.52758789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -04580447 392.52761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -04580448 392.52761841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -04580449 392.52764893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -04580450 392.52764893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -04580451 392.52767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -04580452 392.52767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -04580453 392.52767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -04580454 392.52767944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -04580455 392.52770996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -04580456 392.52770996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -04580457 392.52774048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -04580458 392.52774048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -04580459 392.52777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -04580460 392.52777100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -04580461 392.52780151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -04586347 392.61108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d8 -04586348 392.61108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157d8 -04586349 392.61108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e8 -04586350 392.61108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157e8 -04586351 392.61111450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f8 -04586352 392.61111450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x157f8 -04586353 392.61114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15808 -04586354 392.61114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15808 -04586355 392.61117554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15818 -04586356 392.61120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15818 -04586357 392.61123657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15828 -04586358 392.61123657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15828 -04586359 392.61123657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15838 -04586360 392.61123657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15838 -04586361 392.61126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15848 -04586362 392.61126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15848 -04586363 392.61129761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15858 -04586364 392.61129761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15858 -04586365 392.61132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15868 -04586366 392.61132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15868 -04586367 392.61135864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15878 -04586368 392.61135864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15878 -04586369 392.61138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15888 -04586370 392.61138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15888 -04586371 392.61141968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15898 -04586372 392.61141968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15898 -04586373 392.61141968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a8 -04586374 392.61141968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158a8 -04586375 392.61145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b8 -04586376 392.61145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158b8 -04586377 392.61148071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -04586378 392.61151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -04586379 392.61154175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -04586380 392.61154175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -04586381 392.61157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -04586382 392.61157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -04586383 392.61157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -04586384 392.61157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -04586385 392.61160278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -04586386 392.61160278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -04586387 392.61163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -04586388 392.61163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -04586389 392.61166382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -04586390 392.61166382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -04591848 392.68728638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -04591849 392.68728638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -04591850 392.68731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -04591851 392.68731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -04591852 392.68734741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -04591853 392.68734741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -04591854 392.68734741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -04591855 392.68734741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -04591856 392.68737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -04591857 392.68737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -04591858 392.68740845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -04591859 392.68740845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -04591860 392.68743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -04591861 392.68743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -04591862 392.68746948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -04591863 392.68750000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -04591864 392.68750000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -04591865 392.68750000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -04591866 392.68753052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -04591867 392.68753052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -04591868 392.68756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -04591869 392.68756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -04591870 392.68759155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -04591871 392.68759155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -04591872 392.68762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -04591873 392.68762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -04591874 392.68765259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -04591875 392.68765259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -04591876 392.68765259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -04591877 392.68765259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -04591878 392.68768311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -04591879 392.68771362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -04591880 392.68774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -04591881 392.68774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -04591882 392.68777466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -04591883 392.68777466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -04591884 392.68780518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -04591885 392.68780518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -04591886 392.68783569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -04591887 392.68783569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -04591888 392.68783569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -04591889 392.68783569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204e8 -04591890 392.68786621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -04591891 392.68786621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x204f8 -04609507 392.93807983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b78 -04609508 392.93811035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b88 -04609509 392.93811035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b88 -04609510 392.93814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b98 -04609511 392.93814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b98 -04609512 392.93817139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba8 -04609513 392.93817139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba8 -04609514 392.93820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb8 -04609515 392.93820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb8 -04609516 392.93820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc8 -04609517 392.93820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc8 -04609518 392.93823242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd8 -04609519 392.93826294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd8 -04609520 392.93829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be8 -04609521 392.93829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be8 -04609522 392.93832397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf8 -04609523 392.93832397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf8 -04609524 392.93835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c08 -04609525 392.93835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c08 -04609526 392.93835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c18 -04609527 392.93835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c18 -04609528 392.93838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c28 -04609529 392.93838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c28 -04609530 392.93841553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c38 -04609531 392.93841553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c38 -04609532 392.93844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c48 -04609533 392.93844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c48 -04609534 392.93847656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c58 -04609535 392.93847656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c58 -04609536 392.93850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c68 -04609537 392.93850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c68 -04609538 392.93850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c78 -04609539 392.93853760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c78 -04609540 392.93856812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c88 -04609541 392.93856812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c88 -04609542 392.93859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -04609543 392.93859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -04609544 392.93862915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -04609545 392.93862915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -04609546 392.93865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -04609547 392.93865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -04609548 392.93869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -04609549 392.93869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -04609550 392.93869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -04614838 393.01382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d218 -04614839 393.01382446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d218 -04614840 393.01385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d228 -04614841 393.01385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d228 -04614842 393.01388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d238 -04614843 393.01388550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d238 -04614844 393.01391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d248 -04614845 393.01391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d248 -04614846 393.01394653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d258 -04614847 393.01397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d258 -04614848 393.01397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d268 -04614849 393.01397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d268 -04614850 393.01400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d278 -04614851 393.01400757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d278 -04614852 393.01403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d288 -04614853 393.01403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d288 -04614854 393.01406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d298 -04614855 393.01406860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d298 -04614856 393.01409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a8 -04614857 393.01409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2a8 -04614858 393.01412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b8 -04614859 393.01412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2b8 -04614860 393.01412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c8 -04614861 393.01412964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2c8 -04614862 393.01416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d8 -04614863 393.01416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2d8 -04614864 393.01419067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e8 -04614865 393.01422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2e8 -04614866 393.01425171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f8 -04614867 393.01425171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d2f8 -04614868 393.01428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -04614869 393.01428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d308 -04614870 393.01431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -04614871 393.01431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d318 -04614872 393.01431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -04614873 393.01431274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d328 -04614874 393.01434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -04614875 393.01434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d338 -04614876 393.01437378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -04614877 393.01437378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d348 -04614878 393.01440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d358 -04614879 393.01440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d358 -04614880 393.01443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d368 -04614881 393.01443481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d368 -04617754 394.53781128 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617755 394.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617756 394.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617757 394.53787231 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04617758 394.53799438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617759 394.53799438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04617760 394.53805542 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617761 394.53808594 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04617762 394.65368652 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04617763 394.67269897 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617764 394.67269897 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617765 396.11285400 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -04617766 396.11401367 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -04617767 396.67532349 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04617768 396.69534302 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617769 396.69534302 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617770 397.04418945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617771 397.04425049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617772 397.04428101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04617773 397.04428101 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04617774 397.04440308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617775 397.04440308 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04617776 397.04449463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04617777 397.04449463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04617778 397.49172974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617779 397.49182129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617780 397.49246216 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617781 397.59283447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617782 397.59289551 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617783 397.59320068 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617784 397.59338379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617785 397.59390259 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617786 397.69570923 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617787 397.69625854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617788 397.79678345 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617789 397.79696655 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617790 397.79754639 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617791 397.89868164 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617792 397.89874268 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617793 397.89935303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617794 398.00277710 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04617795 398.00335693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04617796 398.05944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04617797 398.05947876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04617798 398.05950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04617799 398.05950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04617800 398.05950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04617801 398.05950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04617802 398.05953979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04617803 398.05953979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04617804 398.05957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04617805 398.05957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04617806 398.05960083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04617807 398.05960083 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04617808 398.05963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04617809 398.05963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04617810 398.05966187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04617811 398.05966187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04617812 398.05966187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04617813 398.05969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04617814 398.05972290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04617815 398.05972290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04617816 398.05975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04617817 398.05975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04617818 398.05978394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04617819 398.05978394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04617820 398.05981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04617821 398.05981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04617822 398.05981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04617823 398.05981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04617824 398.05984497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04617825 398.05984497 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04617826 398.05987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04617827 398.05987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04617828 398.05990601 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04617829 398.05993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04617830 398.05996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04617831 398.05996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04617832 398.05996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04617833 398.05996704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04617834 398.05999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04617835 398.05999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04617836 398.06002808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04617837 398.06002808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04617838 398.06005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04617839 398.06005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04617840 398.06008911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04617841 398.06008911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04617842 398.06011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04617843 398.06011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04617844 398.06011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04617845 398.06011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04617846 398.06015015 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04617847 398.06018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04617848 398.06018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04617849 398.06021118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04617850 398.06021118 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04617851 398.06024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04617852 398.06027222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04617853 398.06027222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04617854 398.06030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04617855 398.06030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04617856 398.06030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04617857 398.06030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04617858 398.06033325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04617859 398.06033325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04617860 398.06036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04617861 398.06036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04617862 398.06039429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04617863 398.06039429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04617864 398.06042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04617865 398.06042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04617866 398.06045532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04617867 398.06045532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04617868 398.06045532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04617869 398.06045532 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04617870 398.06048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04617871 398.06051636 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04617872 398.06054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04617873 398.06054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04617874 398.06057739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04617875 398.06057739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04617876 398.06060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04617877 398.06060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04617878 398.06060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04617879 398.06060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04617880 398.06063843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04617881 398.06063843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04617882 398.06066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04617883 398.06066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04617884 398.06069946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04617885 398.06069946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04617886 398.06072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04617887 398.06072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04617888 398.06076050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04617889 398.06076050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04617890 398.06076050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04617891 398.06076050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04617892 398.06079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04617893 398.06079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04617894 398.06082153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04617895 398.06082153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04617896 398.06085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04617897 398.06085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04617898 398.06088257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04617899 398.06091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04617900 398.06091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04617901 398.06091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04617902 398.06094360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04617903 398.06094360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04617904 398.06097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04617905 398.06097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04617906 398.06100464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04617907 398.06100464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04617908 398.06103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04617909 398.06103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04617910 398.06106567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04617911 398.06106567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04617912 398.06109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04617913 398.06109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04617914 398.06109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04617915 398.06109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04617916 398.06112671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04617917 398.06112671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04617918 398.06115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04617919 398.06115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04617920 398.06121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04617921 398.06121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04617922 398.06124878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04617923 398.06124878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04617924 398.06124878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04617925 398.06124878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04617926 398.06127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04617927 398.06127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04617928 398.06130981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04617929 398.06130981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04617930 398.06134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04617931 398.06134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04617932 398.06137085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04617933 398.06137085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04617934 398.06140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04617935 398.06140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04617936 398.06140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04617937 398.06140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04617938 398.06143188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04617939 398.06143188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04617940 398.06146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04617941 398.06146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04617942 398.06149292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04617943 398.06149292 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04617944 398.06152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04617945 398.06152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04617946 398.06155396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04617947 398.06155396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04617948 398.06155396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04617949 398.06155396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04617950 398.06161499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04617951 398.06161499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04617952 398.06164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04617953 398.06164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04617954 398.06167603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04617955 398.06167603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04617956 398.06170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04617957 398.06170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04617958 398.06170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04617959 398.06170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04617960 398.06173706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04617961 398.06173706 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04617962 398.06176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04617963 398.06176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04617964 398.06179810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04617965 398.06179810 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04617966 398.06182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04617967 398.06182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04617968 398.06185913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04617969 398.06185913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04617970 398.06188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04617971 398.06188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04617972 398.06192017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04617973 398.06192017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04617974 398.06195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04617975 398.06195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04617976 398.06198120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04617977 398.06198120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04617978 398.06201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04617979 398.06201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04617980 398.06204224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04617981 398.06204224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04617982 398.06204224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04617983 398.06204224 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04617984 398.06207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04617985 398.06207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04617986 398.06210327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04617987 398.06210327 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04617988 398.06213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04617989 398.06216431 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04617990 398.06219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04617991 398.06219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04617992 398.06219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04617993 398.06219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04617994 398.06222534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04617995 398.06222534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04617996 398.06225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04617997 398.06225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04617998 398.06228638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04617999 398.06228638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04618000 398.06231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04618001 398.06231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04618002 398.06234741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04618003 398.06234741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04618004 398.06234741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04618005 398.06234741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04618006 398.06237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04618007 398.06237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04618008 398.06240845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04618009 398.06240845 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04618010 398.06243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04618011 398.06243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04618012 398.06246948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04618013 398.06246948 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04618014 398.06250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04618015 398.06250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04618016 398.06250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04618017 398.06253052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04618018 398.06253052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04618019 398.06256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04618020 398.06259155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04618021 398.06259155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04618022 398.06262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04618023 398.06262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04618024 398.06265259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04618025 398.06265259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04618026 398.06268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04618027 398.06268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04618028 398.06268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04618029 398.06268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04618030 398.06271362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04618031 398.06271362 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04618032 398.06274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04618033 398.06274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04618034 398.06277466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04618035 398.06277466 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04618036 398.06280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04618037 398.06280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04618038 398.06283569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04618039 398.06283569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04618040 398.06283569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04618041 398.06283569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04618042 398.06286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04618043 398.06286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04618044 398.06289673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04618045 398.06289673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04618046 398.06292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04618047 398.06292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04618048 398.06295776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04618049 398.06295776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04618050 398.06298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04618051 398.06298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04618052 398.06298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04618053 398.06298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04618054 398.06301880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04618055 398.06301880 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04618056 398.06304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04618057 398.06304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04618058 398.06307983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04618059 398.06307983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04618060 398.06311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04618061 398.06311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04618062 398.06314087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04618063 398.06314087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04618064 398.06314087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04618065 398.06317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04618066 398.06320190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04618067 398.06320190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04618068 398.06323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04618069 398.06323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04618070 398.06326294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04618071 398.06326294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04618072 398.06329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04618073 398.06329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04618074 398.06332397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04618075 398.06332397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04618076 398.06332397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04618077 398.06332397 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04618078 398.06335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04618079 398.06335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04618080 398.06338501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04618081 398.06338501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04618082 398.06341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04618083 398.06341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04618084 398.06344604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04618085 398.06344604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04618086 398.06347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04618087 398.06347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04618088 398.06350708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04618089 398.06350708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04618090 398.06353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04618091 398.06353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04618092 398.06356812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04618093 398.06356812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04618094 398.06359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04618095 398.06359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04618096 398.06362915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04618097 398.06362915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04618098 398.06362915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04618099 398.06362915 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04618100 398.06365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04618101 398.06365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04618102 398.06369019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04618103 398.06369019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04618104 398.06372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04618105 398.06372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04618106 398.06375122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04618107 398.06375122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04618108 398.06378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04618109 398.06378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04618110 398.06381226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04618111 398.06381226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04618112 398.06384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04618113 398.06384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04618114 398.06387329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04618115 398.06387329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04618116 398.06390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04618117 398.06390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04618118 398.06393433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04618119 398.06393433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04618120 398.06393433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04618121 398.06393433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04618122 398.06396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04618123 398.06396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04618124 398.06399536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04618125 398.06399536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04618126 398.06402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04618127 398.06402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04618128 398.06405640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04618129 398.06408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04618130 398.06411743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04618131 398.06411743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04618132 398.06411743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04618133 398.06411743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04618134 398.06414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04618135 398.06414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04618136 398.06417847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04618137 398.06417847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04618138 398.06420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04618139 398.06420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04618140 398.06423950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04618141 398.06423950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04618142 398.06427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04618143 398.06427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04618144 398.06427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04618145 398.06427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04618146 398.06430054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04618147 398.06430054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04618148 398.06433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04618149 398.06433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04618150 398.06436157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04618151 398.06439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04618152 398.06439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04618153 398.06442261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04618154 398.06442261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04618155 398.06442261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04618156 398.06445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04618157 398.06445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04618158 398.06448364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04618159 398.06448364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04618160 398.06451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04618161 398.06451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04618162 398.06454468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04618163 398.06454468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04618164 398.06457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04618165 398.06457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04618166 398.06457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04618167 398.06457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04618168 398.06460571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04618169 398.06460571 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04618170 398.06463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04618171 398.06463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04618172 398.06466675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04618173 398.06466675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04618174 398.06469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04618175 398.06472778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04618176 398.06472778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04618177 398.06472778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04618178 398.06475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04618179 398.06475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04618180 398.06478882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04618181 398.06478882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04618182 398.06481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04618183 398.06481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04618184 398.06484985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04618185 398.06484985 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04618186 398.06488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04618187 398.06488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04618188 398.06491089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04618189 398.06491089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04618190 398.06491089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04618191 398.06491089 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04618192 398.06494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04618193 398.06494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04618194 398.06497192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04618195 398.06497192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04618196 398.06500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04618197 398.06500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04618198 398.06503296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04618199 398.06503296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04618200 398.06506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04618201 398.06506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04618202 398.06509399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04618203 398.06509399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04618204 398.06512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04618205 398.06512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04618206 398.06515503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04618207 398.06515503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04618208 398.06518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04618209 398.06518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04618210 398.06521606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04618211 398.06521606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04618212 398.06521606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04618213 398.06521606 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04618214 398.06524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04618215 398.06524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04618216 398.06527710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04618217 398.06527710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04618218 398.06530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04618219 398.06530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04618220 398.06533813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04618221 398.06536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04618222 398.06536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04618223 398.06536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04618224 398.06539917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04618225 398.06539917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04618226 398.06542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04618227 398.06542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04618228 398.06546021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04618229 398.06546021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04618230 398.06549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04618231 398.06549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04618232 398.06552124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04618233 398.06552124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04618234 398.06552124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04618235 398.06552124 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04618236 398.06555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04618237 398.06555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04618238 398.06558228 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04618239 398.06561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04618240 398.06561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04618241 398.06564331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04618242 398.06567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04618243 398.06567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04618244 398.06570435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04618245 398.06570435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04618246 398.06570435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04618247 398.06570435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04618248 398.06573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04618249 398.06573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04618250 398.06576538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04618251 398.06576538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04618252 398.06579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04618253 398.06579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04618254 398.06582642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04618255 398.06582642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04618256 398.06585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04618257 398.06585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04618258 398.06585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04618259 398.06585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04618260 398.06588745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04618261 398.06588745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04618262 398.06591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04618263 398.06591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04618264 398.06594849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04618265 398.06594849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04618266 398.06597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04618267 398.06597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04618268 398.06600952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04618269 398.06600952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04618270 398.06600952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04618271 398.06600952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04618272 398.06604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04618273 398.06604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04618274 398.06607056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04618275 398.06607056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04618276 398.06610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04618277 398.06610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04618278 398.06613159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04618279 398.06613159 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04618280 398.06616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04618281 398.06616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04618282 398.06616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04618283 398.06619263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04618284 398.06619263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04618285 398.06622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04618286 398.06625366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04618287 398.06625366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04618288 398.06628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04618289 398.06628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04618290 398.06631470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04618291 398.06631470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04618292 398.06631470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04618293 398.06631470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04618294 398.06634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04618295 398.06634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04618296 398.06637573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04618297 398.06637573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04618298 398.06640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04618299 398.06640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04618300 398.06643677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04618301 398.06643677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04618302 398.06646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04618303 398.06646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04618304 398.06649780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04618305 398.06649780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04618306 398.06649780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04618307 398.06649780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04618308 398.06652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04618309 398.06652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04618310 398.06655884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04618311 398.06655884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04618312 398.06658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04618313 398.06661987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04618314 398.06661987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04618315 398.06665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04618316 398.06665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04618317 398.06665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04618318 398.06677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04618319 398.06677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04618320 398.06680298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04618321 398.06680298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04618322 398.06680298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04618323 398.06680298 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04618324 398.06683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04618325 398.06683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04618326 398.06686401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04618327 398.06686401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04618328 398.06689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04618329 398.06689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04618330 398.06692505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04618331 398.06692505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04618332 398.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04618333 398.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04618334 398.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04618335 398.06695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04618336 398.06698608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04618337 398.06698608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04618338 398.06701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04618339 398.06701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04618340 398.06704712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04618341 398.06704712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04618342 398.06707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04618343 398.06707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04618344 398.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04618345 398.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04618346 398.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04618347 398.06710815 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04618348 398.06713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04618349 398.06713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04618350 398.06716919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04618351 398.06716919 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04618352 398.06719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04618353 398.06723022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04618354 398.06723022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04618355 398.06726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04618356 398.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04618357 398.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04618358 398.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04618359 398.06729126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04618360 398.06732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04618361 398.06732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04618362 398.06735229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04618363 398.06735229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04618364 398.06738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04618365 398.06738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04618366 398.06741333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04618367 398.06741333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04618368 398.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04618369 398.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04618370 398.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04618371 398.06744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04618372 398.06747437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04618373 398.06747437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04618374 398.06750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04618375 398.06750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04618376 398.06753540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04618377 398.06753540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04618378 398.06756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04618379 398.06756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04618380 398.06759644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04618381 398.06759644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04618382 398.06759644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04618383 398.06759644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04618384 398.06765747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04618385 398.06765747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04618386 398.06768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04618387 398.06768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04618388 398.06771851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04618389 398.06771851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04618390 398.06774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04618391 398.06774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04618392 398.06774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04618393 398.06774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04618394 398.06777954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04618395 398.06777954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04618396 398.06781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04618397 398.06781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04618398 398.06784058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04618399 398.06784058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04618400 398.06787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04618401 398.06787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04618402 398.06790161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04618403 398.06790161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04618404 398.06790161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04618405 398.06790161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04618406 398.06793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04618407 398.06793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04618408 398.06796265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04618409 398.06796265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04618410 398.06799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04618411 398.06799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04618412 398.06802368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04618413 398.06802368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04618414 398.06805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04618415 398.06805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04618416 398.06808472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04618417 398.06808472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04618418 398.06808472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04618419 398.06808472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04618420 398.06811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04618421 398.06811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04618422 398.06814575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04618423 398.06814575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04618424 398.06817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04618425 398.06817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04618426 398.06820679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04618427 398.06823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04618428 398.06823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04618429 398.06823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04618430 398.06826782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04618431 398.06826782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04618432 398.06829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04618433 398.06829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04618434 398.06832886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04618435 398.06832886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04618436 398.06835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04618437 398.06835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04618438 398.06838989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04618439 398.06838989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04618440 398.06838989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04618441 398.06838989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04618442 398.06842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04618443 398.06842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04618444 398.06845093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04618445 398.06845093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04618446 398.06848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04618447 398.06848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04618448 398.06851196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04618449 398.06851196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04618450 398.06854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04618451 398.06854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04618452 398.06854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04618453 398.06854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04618454 398.06857300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04618455 398.06857300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04618456 398.06860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04618457 398.06860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04618458 398.06863403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04618459 398.06863403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04618460 398.06866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04618461 398.06866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04618462 398.06869507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04618463 398.06869507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04618464 398.06872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04618465 398.06872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04618466 398.06872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04618467 398.06872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04618468 398.06875610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04618469 398.06875610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04618470 398.06878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04618471 398.06881714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04618472 398.06881714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04618473 398.06884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04618474 398.06887817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04618475 398.06887817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04618476 398.06887817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04618477 398.06887817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04618478 398.06890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04618479 398.06890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04618480 398.06893921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04618481 398.06893921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04618482 398.06896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04618483 398.06896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04618484 398.06900024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04618485 398.06900024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04618486 398.06903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04618487 398.06903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04618488 398.06903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04618489 398.06903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04618490 398.06906128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04618491 398.06906128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04618492 398.06909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04618493 398.06909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04618494 398.06912231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04618495 398.06912231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04618496 398.06915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04618497 398.06915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04618498 398.06918335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04618499 398.06918335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04618500 398.06918335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04618501 398.06918335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04618502 398.06921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04618503 398.06921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04618504 398.06924438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04618505 398.06924438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04618506 398.06927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04618507 398.06927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04618508 398.06930542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04618509 398.06930542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04618510 398.06933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04618511 398.06933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04618512 398.06933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04618513 398.06933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04618514 398.06936646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04618515 398.06939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04618516 398.06939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04618517 398.06942749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04618518 398.06945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04618519 398.06945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04618520 398.06948853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04618521 398.06948853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04618522 398.06951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04618523 398.06951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04618524 398.06951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04618525 398.06951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04618526 398.06954956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04618527 398.06954956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04618528 398.06958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04618529 398.06958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04618530 398.06961060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04618531 398.06961060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04618532 398.06964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04618533 398.06964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04618534 398.06967163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04618535 398.06967163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04618536 398.06967163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04618537 398.06967163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04618538 398.06970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04618539 398.06970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04618540 398.06973267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04618541 398.06973267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04618542 398.06976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04618543 398.06976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04618544 398.06979370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04618545 398.06979370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04618546 398.06982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04618547 398.06982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04618548 398.06982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04618549 398.06982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04618550 398.06985474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04618551 398.06988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04618552 398.06991577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04618553 398.06991577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04618554 398.06994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04618555 398.06994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04618556 398.06997681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04618557 398.06997681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04618558 398.06997681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04618559 398.06997681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04618560 398.07000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04618561 398.07000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04618562 398.07003784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04618563 398.07003784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04618564 398.07006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04618565 398.07006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04618566 398.07009888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04618567 398.07009888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04618568 398.07012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04618569 398.07012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04618570 398.07012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04618571 398.07012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04618572 398.07015991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04618573 398.07015991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04618574 398.07019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04618575 398.07019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04618576 398.07022095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04618577 398.07022095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04618578 398.07025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04618579 398.07025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04618580 398.07028198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04618581 398.07028198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04618582 398.07031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04618583 398.07031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04618584 398.07031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04618585 398.07031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04618586 398.07034302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04618587 398.07034302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04618588 398.07037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04618589 398.07040405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04618590 398.07040405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04618591 398.07043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04618592 398.07046509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04618593 398.07046509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04618594 398.07046509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04618595 398.07046509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04618596 398.07049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04618597 398.07049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04618598 398.07052612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04618599 398.07052612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04618600 398.07055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04618601 398.07055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04618602 398.07058716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04618603 398.07058716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04618604 398.07061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04618605 398.07061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04618606 398.07061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04618607 398.07064819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04618608 398.07067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04618609 398.07067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04618610 398.07070923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04618611 398.07070923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04618612 398.07073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04618613 398.07073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04618614 398.07077026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04618615 398.07077026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04618616 398.07077026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04618617 398.07077026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04618618 398.07080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04618619 398.07080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04618620 398.07083130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04618621 398.07083130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04618622 398.07086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04618623 398.07086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04618624 398.07089233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04618625 398.07089233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04618626 398.07092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04618627 398.07092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04618628 398.07095337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04618629 398.07095337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04618630 398.07098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04618631 398.07098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04618632 398.07101440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04618633 398.07101440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04618634 398.07104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04618635 398.07104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04618636 398.07107544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04618637 398.07107544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04618638 398.07110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04618639 398.07110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04618640 398.07110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04618641 398.07110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04618642 398.07113647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04618643 398.07113647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04618644 398.07119751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04618645 398.07119751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04618646 398.07122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04618647 398.07122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04618648 398.07125854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04618649 398.07125854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04618650 398.07125854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04618651 398.07125854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04618652 398.07128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04618653 398.07128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04618654 398.07131958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04618655 398.07131958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04618656 398.07135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04618657 398.07135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04618658 398.07138062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04618659 398.07138062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04618660 398.07141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04618661 398.07141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04618662 398.07141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04618663 398.07144165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04618664 398.07147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04618665 398.07147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04618666 398.07150269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04618667 398.07150269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04618668 398.07153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04618669 398.07153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04618670 398.07156372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04618671 398.07156372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04618672 398.07156372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04618673 398.07156372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04618674 398.07159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04618675 398.07159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04618676 398.07162476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04618677 398.07162476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04618678 398.07165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04618679 398.07165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04618680 398.07168579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04618681 398.07171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04618682 398.07171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04618683 398.07171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04618684 398.07174683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04618685 398.07174683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04618686 398.07177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04618687 398.07177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04618688 398.07180786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04618689 398.07180786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04618690 398.07183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04618691 398.07183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04618692 398.07186890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04618693 398.07186890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04618694 398.07189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04618695 398.07189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04618696 398.07192993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04618697 398.07192993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04618698 398.07196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04618699 398.07196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04618700 398.07199097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04618701 398.07199097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04618702 398.07202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04618703 398.07202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04618704 398.07205200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04618705 398.07205200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04618706 398.07205200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04618707 398.07205200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04618708 398.07208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04618709 398.07208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04618710 398.07211304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04618711 398.07211304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04618712 398.07214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04618713 398.07214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04618714 398.07217407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04618715 398.07217407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04618716 398.07220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04618717 398.07220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04618718 398.07223511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04618719 398.07223511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04618720 398.07226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04618721 398.07226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04618722 398.07229614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04618723 398.07229614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04618724 398.07232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04618725 398.07232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04618726 398.07235718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04618727 398.07235718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04618728 398.07235718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04618729 398.07235718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04618730 398.07238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04618731 398.07238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04618732 398.07241821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04618733 398.07241821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04618734 398.07244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04618735 398.07244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04618736 398.07247925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04618737 398.07247925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04618738 398.07250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04618739 398.07250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04618740 398.07254028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04618741 398.07254028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04618742 398.07257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04618743 398.07257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04618744 398.07260132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04618745 398.07260132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04618746 398.07263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04618747 398.07263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04618748 398.07266235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04618749 398.07266235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04618750 398.07269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04618751 398.07269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04618752 398.07269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04618753 398.07269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04618754 398.07272339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04618755 398.07272339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04618756 398.07275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04618757 398.07275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04618758 398.07278442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04618759 398.07278442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04618760 398.07281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04618761 398.07284546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04618762 398.07284546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04618763 398.07284546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04618764 398.07287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04618765 398.07287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04618766 398.07290649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04618767 398.07290649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04618768 398.07293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04618769 398.07293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04618770 398.07296753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04618771 398.07296753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04618772 398.07299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04618773 398.07299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04618774 398.07299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04618775 398.07299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04618776 398.07302856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04618777 398.07302856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04618778 398.07305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04618779 398.07305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04618780 398.07308960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04618781 398.07308960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04618782 398.07312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04618783 398.07315063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04618784 398.07315063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04618785 398.07315063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04618786 398.07318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04618787 398.07318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04618788 398.07321167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04618789 398.07321167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04618790 398.07324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04618791 398.07324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04618792 398.07327271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04618793 398.07327271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04618794 398.07330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04618795 398.07330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04618796 398.07330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04618797 398.07330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04618798 398.07333374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04618799 398.07333374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04618800 398.07336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04618801 398.07336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04618802 398.07339478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04618803 398.07342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04618804 398.07345581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04618805 398.07345581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04618806 398.07348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04618807 398.07348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04618808 398.07348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04618809 398.07348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04618810 398.07351685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04618811 398.07351685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04618812 398.07354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04618813 398.07354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04618814 398.07357788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04618815 398.07357788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04618816 398.07360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04618817 398.07360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04618818 398.07363892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04618819 398.07363892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04618820 398.07363892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04618821 398.07363892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04618822 398.07366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04618823 398.07369995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04618824 398.07373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04618825 398.07373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04618826 398.07376099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04618827 398.07376099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04618828 398.07379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04618829 398.07379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04618830 398.07379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04618831 398.07379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04618832 398.07382202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04618833 398.07382202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04618834 398.07385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04618835 398.07385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04618836 398.07388306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04618837 398.07388306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04618838 398.07391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04618839 398.07391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04618840 398.07394409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04618841 398.07394409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04618842 398.07394409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04618843 398.07394409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04618844 398.07397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04618845 398.07400513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04618846 398.07403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04618847 398.07403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04618848 398.07406616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04618849 398.07406616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04618850 398.07409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04618851 398.07409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04618852 398.07412720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04618853 398.07412720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04618854 398.07412720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04618855 398.07412720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04618856 398.07415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04618857 398.07415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04618858 398.07418823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04618859 398.07418823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04618860 398.07421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04618861 398.07421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04618862 398.07424927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04618863 398.07424927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04618864 398.07427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04618865 398.07427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04618866 398.07431030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04618867 398.07431030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04618868 398.07434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04618869 398.07434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04618870 398.07437134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04618871 398.07437134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04618872 398.07440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04618873 398.07440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04618874 398.07443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04618875 398.07443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04618876 398.07443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04618877 398.07443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04618878 398.07446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04618879 398.07446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04618880 398.07449341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04618881 398.07449341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04618882 398.07452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04618883 398.07452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04618884 398.07455444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04618885 398.07458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04618886 398.07458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04618887 398.07458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04618888 398.07461548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04618889 398.07461548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04618890 398.07464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04618891 398.07464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04618892 398.07467651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04618893 398.07467651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04618894 398.07470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04618895 398.07470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04618896 398.07473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04618897 398.07473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04618898 398.07473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04618899 398.07473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04618900 398.07476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04618901 398.07476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04618902 398.07479858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04618903 398.07479858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04618904 398.07482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04618905 398.07482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04618906 398.07485962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04618907 398.07489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04618908 398.07492065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04618909 398.07492065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04618910 398.07492065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04618911 398.07492065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04618912 398.07495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04618913 398.07495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04618914 398.07498169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04618915 398.07498169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04618916 398.07501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04618917 398.07501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04618918 398.07504272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04618919 398.07504272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04618920 398.07507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04618921 398.07507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04618922 398.07507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04618923 398.07507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04618924 398.07510376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04618925 398.07510376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04618926 398.07513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04618927 398.07516479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04618928 398.07519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04618929 398.07519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04618930 398.07522583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04618931 398.07522583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04618932 398.07522583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04618933 398.07522583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04618934 398.07525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04618935 398.07525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04618936 398.07528687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04618937 398.07531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04618938 398.07534790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04618939 398.07534790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04618940 398.07537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04618941 398.07537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04618942 398.07537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04618943 398.07537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04618944 398.07540894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04618945 398.07540894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04618946 398.07543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04618947 398.07543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04618948 398.07546997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04618949 398.07546997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04618950 398.07550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04618951 398.07550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04618952 398.07553101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04618953 398.07553101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04618954 398.07556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04618955 398.07556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04618956 398.07559204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04618957 398.07559204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04618958 398.07562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04618959 398.07562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04618960 398.07565308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04618961 398.07565308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04618962 398.07568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04618963 398.07568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04618964 398.07571411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04618965 398.07571411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04618966 398.07571411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04618967 398.07571411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04618968 398.07574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04618969 398.07574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04618970 398.07577515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04618971 398.07580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04618972 398.07583618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04618973 398.07583618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04618974 398.07586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04618975 398.07586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04618976 398.07586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04618977 398.07586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04618978 398.07589722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04618979 398.07589722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04618980 398.07592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04618981 398.07592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04618982 398.07595825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04618983 398.07595825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04618984 398.07598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04618985 398.07598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04618986 398.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04618987 398.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04618988 398.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04618989 398.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04618990 398.07604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04618991 398.07604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04618992 398.07611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04618993 398.07611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04618994 398.07614136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04618995 398.07614136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04618996 398.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04618997 398.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04618998 398.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04618999 398.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04619000 398.07620239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04619001 398.07620239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04619002 398.07623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04619003 398.07623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04619004 398.07626343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04619005 398.07626343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04619006 398.07629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04619007 398.07629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04619008 398.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04619009 398.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04619010 398.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04619011 398.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04619012 398.07635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04619013 398.07638550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04619014 398.07641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04619015 398.07641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04619016 398.07644653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04619017 398.07644653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04619018 398.07647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04619019 398.07647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04619020 398.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04619021 398.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04619022 398.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04619023 398.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04619024 398.07653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04619025 398.07653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04619026 398.07656860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04619027 398.07656860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04619028 398.07659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04619029 398.07659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04619030 398.07662964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04619031 398.07662964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04619032 398.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04619033 398.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04619034 398.07669067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04619035 398.07669067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04619036 398.07672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04619037 398.07672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04619038 398.07675171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04619039 398.07675171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04619040 398.07678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04619041 398.07678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04619042 398.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04619043 398.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04619044 398.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04619045 398.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04619046 398.07684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04619047 398.07684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04619048 398.07687378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04619049 398.07690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04619050 398.07693481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04619051 398.07693481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04619052 398.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04619053 398.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04619054 398.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04619055 398.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04619056 398.07699585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04619057 398.07699585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04619058 398.07702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04619059 398.07702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04619060 398.07705688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04619061 398.07705688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04619062 398.07708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04619063 398.07708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04619064 398.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04619065 398.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04619066 398.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04619067 398.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04619068 398.07714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04619069 398.07717896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04619070 398.07720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04619071 398.07720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04619072 398.07723999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04619073 398.07723999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04619074 398.07727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04619075 398.07727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04619076 398.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04619077 398.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04619078 398.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04619079 398.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04619080 398.07733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04619081 398.07733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04619082 398.07736206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04619083 398.07736206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04619084 398.07739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04619085 398.07739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04619086 398.07742310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04619087 398.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04619088 398.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04619089 398.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04619090 398.07748413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04619091 398.07748413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04619092 398.07751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04619093 398.07751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04619094 398.07754517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04619095 398.07754517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04619096 398.07757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04619097 398.07757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04619098 398.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04619099 398.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04619100 398.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04619101 398.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04619102 398.07763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04619103 398.07763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04619104 398.07766724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04619105 398.07769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04619106 398.07772827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04619107 398.07772827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04619108 398.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04619109 398.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04619110 398.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04619111 398.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04619112 398.07778931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04619113 398.07778931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04619114 398.07781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04619115 398.07781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04619116 398.07785034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04619117 398.07785034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04619118 398.07788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04619119 398.07788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04619120 398.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04619121 398.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04619122 398.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04619123 398.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04619124 398.07797241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04619125 398.07797241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04619126 398.07800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04619127 398.07800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04619128 398.07803345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04619129 398.07803345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04619130 398.07806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04619131 398.07806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04619132 398.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04619133 398.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04619134 398.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04619135 398.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04619136 398.07812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04619137 398.07812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04619138 398.07815552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04619139 398.07815552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04619140 398.07818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04619141 398.07821655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04619142 398.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04619143 398.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04619144 398.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04619145 398.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04619146 398.07827759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04619147 398.07827759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04619148 398.07830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04619149 398.07830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04619150 398.07833862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04619151 398.07833862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04619152 398.07836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04619153 398.07836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04619154 398.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04619155 398.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04619156 398.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04619157 398.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04619158 398.07843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04619159 398.07846069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04619160 398.07849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04619161 398.07849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04619162 398.07852173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04619163 398.07852173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04619164 398.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04619165 398.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04619166 398.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04619167 398.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04619168 398.07858276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04619169 398.07858276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04619170 398.07861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04619171 398.07861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04619172 398.07864380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04619173 398.07864380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04619174 398.07867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04619175 398.07867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04619176 398.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04619177 398.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04619178 398.07873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04619179 398.07873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04619180 398.07876587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04619181 398.07876587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04619182 398.07879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04619183 398.07879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04619184 398.07882690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04619185 398.07882690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04619186 398.07885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04619187 398.07885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04619188 398.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04619189 398.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04619190 398.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04619191 398.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04619192 398.07891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04619193 398.07894897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04619194 398.07897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04619195 398.07897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04619196 398.07901001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04619197 398.07901001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04619198 398.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04619199 398.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04619200 398.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04619201 398.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04619202 398.07907104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04619203 398.07907104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04619204 398.07910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04619205 398.07910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04619206 398.07913208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04619207 398.07913208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04619208 398.07916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04619209 398.07916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04619210 398.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04619211 398.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04619212 398.07922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04619213 398.07922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04619214 398.07925415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04619215 398.07925415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04619216 398.07928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04619217 398.07928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04619218 398.07931519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04619219 398.07931519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04619220 398.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04619221 398.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04619222 398.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04619223 398.07937622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04619224 398.07940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04619225 398.07940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04619226 398.07943726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04619227 398.07943726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04619228 398.07946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04619229 398.07946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04619230 398.07949829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04619231 398.07949829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04619232 398.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04619233 398.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04619234 398.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04619235 398.07955933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04619236 398.07958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04619237 398.07958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04619238 398.07962036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04619239 398.07962036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04619240 398.07965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04619241 398.07965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04619242 398.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04619243 398.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04619244 398.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04619245 398.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04619246 398.07971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04619247 398.07971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04619248 398.07974243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04619249 398.07974243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04619250 398.07977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04619251 398.07977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04619252 398.07980347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04619253 398.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04619254 398.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04619255 398.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04619256 398.07986450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04619257 398.07986450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04619258 398.07989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04619259 398.07989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04619260 398.07992554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04619261 398.07992554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04619262 398.07995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04619263 398.07995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04619264 398.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04619265 398.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04619266 398.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04619267 398.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04619268 398.08001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04619269 398.08004761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04619270 398.08007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04619271 398.08007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04619272 398.08010864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04619273 398.08010864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04619274 398.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04619275 398.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04619276 398.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04619277 398.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04619278 398.08016968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04619279 398.08016968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04619280 398.08020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04619281 398.08020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04619282 398.08023071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04619283 398.08023071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04619284 398.08026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04619285 398.08026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04619286 398.08029175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04619287 398.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04619288 398.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04619289 398.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04619290 398.08035278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04619291 398.08035278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04619292 398.08038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04619293 398.08038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04619294 398.08041382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04619295 398.08041382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04619296 398.08044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04619297 398.08044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04619298 398.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04619299 398.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04619300 398.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04619301 398.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04619302 398.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04619303 398.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04619304 398.08053589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04619305 398.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04619306 398.08059692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04619307 398.08059692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04619308 398.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04619309 398.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04619310 398.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04619311 398.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04619312 398.08065796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04619313 398.08065796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04619314 398.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04619315 398.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04619316 398.08071899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04619317 398.08071899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04619318 398.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04619319 398.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04619320 398.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04619321 398.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04619322 398.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04619323 398.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04619324 398.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04619325 398.08084106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04619326 398.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04619327 398.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04619328 398.08090210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04619329 398.08090210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04619330 398.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04619331 398.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04619332 398.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04619333 398.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04619334 398.08096313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04619335 398.08096313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04619336 398.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04619337 398.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04619338 398.08102417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04619339 398.08102417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04619340 398.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04619341 398.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04619342 398.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04619343 398.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04619344 398.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04619345 398.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04619346 398.08114624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04619347 398.08114624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04619348 398.08117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04619349 398.08117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04619350 398.08120728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04619351 398.08120728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04619352 398.08123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04619353 398.08123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04619354 398.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04619355 398.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04619356 398.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04619357 398.08129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04619358 398.08132935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04619359 398.08132935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04619360 398.08135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04619361 398.08135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04619362 398.08139038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04619363 398.08139038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04619364 398.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04619365 398.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04619366 398.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04619367 398.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04619368 398.08145142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04619369 398.08145142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04619370 398.08148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04619371 398.08148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04619372 398.08151245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04619373 398.08151245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04619374 398.08154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04619375 398.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04619376 398.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04619377 398.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04619378 398.08160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04619379 398.08160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04619380 398.08163452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04619381 398.08163452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04619382 398.08166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04619383 398.08166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04619384 398.08169556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04619385 398.08169556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04619386 398.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04619387 398.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04619388 398.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04619389 398.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04619390 398.08175659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04619391 398.08175659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04619392 398.08178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04619393 398.08178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04619394 398.08181763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04619395 398.08184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04619396 398.08187866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04619397 398.08187866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04619398 398.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04619399 398.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04619400 398.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04619401 398.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04619402 398.08193970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04619403 398.08193970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04619404 398.08197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04619405 398.08197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04619406 398.08200073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04619407 398.08200073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04619408 398.08203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04619409 398.08203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04619410 398.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04619411 398.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04619412 398.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04619413 398.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04619414 398.08209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04619415 398.08212280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04619416 398.08215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04619417 398.08215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04623755 398.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -04623756 398.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca68 -04623757 398.14208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -04623758 398.14208984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca78 -04623759 398.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -04623760 398.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca88 -04623761 398.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -04623762 398.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xca98 -04623763 398.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -04623764 398.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaa8 -04623765 398.14218140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -04623766 398.14218140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcab8 -04623767 398.14221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -04623768 398.14221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcac8 -04623769 398.14224243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -04623770 398.14224243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcad8 -04623771 398.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -04623772 398.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcae8 -04623773 398.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -04623774 398.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcaf8 -04623775 398.14230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -04623776 398.14233398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb08 -04623777 398.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -04623778 398.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb18 -04623779 398.14239502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -04623780 398.14239502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb28 -04623781 398.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -04623782 398.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb38 -04623783 398.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -04623784 398.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb48 -04623785 398.14245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -04623786 398.14245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb58 -04623787 398.14248657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -04623788 398.14248657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb68 -04623789 398.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -04623790 398.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb78 -04623791 398.14254761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -04623792 398.14254761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb88 -04623793 398.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -04623794 398.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcb98 -04623795 398.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -04623796 398.14260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcba8 -04623797 398.14263916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -04623798 398.14263916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xcbb8 -04629168 398.21707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17378 -04629169 398.21707153 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17378 -04629170 398.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17388 -04629171 398.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17388 -04629172 398.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17398 -04629173 398.21710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17398 -04629174 398.21713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a8 -04629175 398.21713257 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173a8 -04629176 398.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b8 -04629177 398.21716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173b8 -04629178 398.21719360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c8 -04629179 398.21719360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173c8 -04629180 398.21722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d8 -04629181 398.21722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173d8 -04629182 398.21725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e8 -04629183 398.21725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173e8 -04629184 398.21725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f8 -04629185 398.21725464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x173f8 -04629186 398.21728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17408 -04629187 398.21728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17408 -04629188 398.21731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17418 -04629189 398.21731567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17418 -04629190 398.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17428 -04629191 398.21734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17428 -04629192 398.21737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17438 -04629193 398.21737671 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17438 -04629194 398.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17448 -04629195 398.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17448 -04629196 398.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17458 -04629197 398.21740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17458 -04629198 398.21743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17468 -04629199 398.21743774 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17468 -04629200 398.21746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17478 -04629201 398.21746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17478 -04629202 398.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17488 -04629203 398.21749878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17488 -04629204 398.21752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17498 -04629205 398.21752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17498 -04629206 398.21755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a8 -04629207 398.21755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a8 -04629208 398.21755981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b8 -04629209 398.21759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b8 -04629210 398.21762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c8 -04629211 398.21762085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c8 -04644843 398.43151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -04644844 398.43151855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d28 -04644845 398.43154907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -04644846 398.43157959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d38 -04644847 398.43157959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -04644848 398.43157959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d48 -04644849 398.43161011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -04644850 398.43161011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d58 -04644851 398.43164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -04644852 398.43164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d68 -04644853 398.43167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -04644854 398.43167114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d78 -04644855 398.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d88 -04644856 398.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d88 -04644857 398.43173218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d98 -04644858 398.43173218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d98 -04644859 398.43173218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da8 -04644860 398.43173218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35da8 -04644861 398.43176270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db8 -04644862 398.43176270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35db8 -04644863 398.43179321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc8 -04644864 398.43179321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dc8 -04644865 398.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd8 -04644866 398.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35dd8 -04644867 398.43185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de8 -04644868 398.43185425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35de8 -04644869 398.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df8 -04644870 398.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35df8 -04644871 398.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e08 -04644872 398.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e08 -04644873 398.43191528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e18 -04644874 398.43191528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e18 -04644875 398.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e28 -04644876 398.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e28 -04644877 398.43197632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e38 -04644878 398.43197632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e38 -04644879 398.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -04644880 398.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -04644881 398.43203735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -04644882 398.43203735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -04644883 398.43203735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -04644884 398.43203735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -04644885 398.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -04644886 398.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -04649075 398.48950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -04649076 398.48950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e168 -04649077 398.48953247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e178 -04649078 398.48953247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e178 -04649079 398.48956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e188 -04649080 398.48956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e188 -04649081 398.48956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e198 -04649082 398.48956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e198 -04649083 398.48959351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a8 -04649084 398.48959351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1a8 -04649085 398.48962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b8 -04649086 398.48962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1b8 -04649087 398.48965454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c8 -04649088 398.48965454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1c8 -04649089 398.48968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d8 -04649090 398.48968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1d8 -04649091 398.48971558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e8 -04649092 398.48971558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1e8 -04649093 398.48971558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f8 -04649094 398.48971558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e1f8 -04649095 398.48974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e208 -04649096 398.48974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e208 -04649097 398.48977661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e218 -04649098 398.48977661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e218 -04649099 398.48980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e228 -04649100 398.48980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e228 -04649101 398.48983765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e238 -04649102 398.48983765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e238 -04649103 398.48986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e248 -04649104 398.48986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e248 -04649105 398.48986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e258 -04649106 398.48986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e258 -04649107 398.48989868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e268 -04649108 398.48992920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e268 -04649109 398.48992920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e278 -04649110 398.48995972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e278 -04649111 398.48999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -04649112 398.48999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e288 -04649113 398.49002075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -04649114 398.49002075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e298 -04649115 398.49002075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -04649116 398.49002075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2a8 -04649117 398.49005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -04649118 398.49005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e2b8 -04653770 398.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47408 -04653771 398.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47408 -04653772 398.55642700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47418 -04653773 398.55642700 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47418 -04653774 398.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47428 -04653775 398.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47428 -04653776 398.55648804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47438 -04653777 398.55648804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47438 -04653778 398.55654907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47448 -04653779 398.55654907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47448 -04653780 398.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47458 -04653781 398.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47458 -04653782 398.55661011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47468 -04653783 398.55661011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47468 -04653784 398.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47478 -04653785 398.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47478 -04653786 398.55667114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47488 -04653787 398.55667114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47488 -04653788 398.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47498 -04653789 398.55673218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47498 -04653790 398.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -04653791 398.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474a8 -04653792 398.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -04653793 398.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474b8 -04653794 398.55679321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -04653795 398.55679321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474c8 -04653796 398.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -04653797 398.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474d8 -04653798 398.55685425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -04653799 398.55685425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474e8 -04653800 398.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -04653801 398.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x474f8 -04653802 398.55691528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -04653803 398.55691528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47508 -04653804 398.55691528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -04653805 398.55691528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47518 -04653806 398.55697632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -04653807 398.55697632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47528 -04653808 398.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -04653809 398.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -04653810 398.55703735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -04653811 398.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -04653812 398.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -04653813 398.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -04658729 398.62637329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ee8 -04658730 398.62640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -04658731 398.62640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -04658732 398.62643433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -04658733 398.62643433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -04658734 398.62646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -04658735 398.62646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -04658736 398.62649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -04658737 398.62649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -04658738 398.62649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -04658739 398.62649536 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -04658740 398.62652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -04658741 398.62652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -04658742 398.62655640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -04658743 398.62658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -04658744 398.62661743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -04658745 398.62661743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -04658746 398.62664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -04658747 398.62664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -04658748 398.62664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -04658749 398.62664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -04658750 398.62667847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -04658751 398.62667847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -04658752 398.62670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -04658753 398.62670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -04658754 398.62673950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -04658755 398.62673950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -04658756 398.62677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -04658757 398.62677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -04658758 398.62680054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -04658759 398.62680054 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -04658760 398.62683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -04658761 398.62683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -04658762 398.62683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -04658763 398.62686157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -04658764 398.62689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -04658765 398.62689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -04658766 398.62692261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -04658767 398.62692261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -04658768 398.62695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -04658769 398.62695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -04658770 398.62698364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -04658771 398.62698364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -04658772 398.62698364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51048 -04659699 398.71911621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659700 398.71911621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659701 398.72100830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659702 398.72103882 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659703 398.72171021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659704 398.82214355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659705 398.82269287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659706 398.92309570 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659707 398.92312622 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659708 398.92346191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659709 398.92401123 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659710 399.02615356 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659711 399.02636719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659712 399.02697754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659713 399.13690186 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659714 399.13745117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659715 399.16485596 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04659716 399.16537476 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04659717 399.24005127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659718 399.24011230 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659719 399.24032593 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659720 399.24069214 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659721 399.24118042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659722 399.34265137 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659723 399.34286499 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659724 399.34332275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659725 399.44363403 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659726 399.44375610 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659727 399.44396973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659728 399.44461060 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659729 399.54556274 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659730 399.54574585 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659731 399.54635620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659732 399.55151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659733 399.55154419 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659734 399.55157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659735 399.55160522 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04659736 399.55169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659737 399.55172729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04659738 399.55175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659739 399.55178833 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04659740 399.64785767 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659741 399.64788818 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659742 399.64822388 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659743 399.64880371 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659744 399.75048828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659745 399.75051880 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659746 399.75085449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659747 399.75134277 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659748 399.85336304 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659749 399.85342407 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659750 399.85406494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659751 399.95532227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659752 399.95541382 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659753 399.95614624 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659754 400.05718994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659755 400.05743408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659756 400.05792236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659757 400.16357422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659758 400.16372681 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659759 400.16433716 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659760 400.26602173 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659761 400.26623535 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659762 400.26641846 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659763 400.26663208 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659764 400.26724243 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659765 400.36901855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659766 400.36914063 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659767 400.36944580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659768 400.36993408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659769 400.47113037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659770 400.47119141 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659771 400.47192383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659772 400.57296753 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659773 400.57354736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659774 400.67898560 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659775 400.67922974 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659776 400.67977905 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659777 400.72070313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04659778 400.74005127 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659779 400.74005127 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659780 400.78082275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659781 400.78088379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659782 400.78115845 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659783 400.78198242 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659784 400.88357544 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659785 400.88415527 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659786 400.98458862 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659787 400.98480225 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659788 400.98529053 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659789 401.08746338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659790 401.08755493 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659791 401.08816528 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659792 401.18954468 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659793 401.19015503 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659794 401.29129028 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659795 401.29135132 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659796 401.29162598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659797 401.29220581 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659798 401.39431763 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659799 401.39434814 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659800 401.39468384 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659801 401.39517212 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659802 401.49627686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659803 401.49639893 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659804 401.49710083 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659805 401.59814453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659806 401.59826660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659807 401.59854126 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659808 401.59918213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659809 401.70004272 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659810 401.70013428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659811 401.70043945 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659812 401.70095825 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659813 401.71234131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04659814 401.71282959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04659815 401.80294800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659816 401.80310059 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659817 401.80368042 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659818 401.90484619 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659819 401.90490723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659820 401.90554810 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659821 402.00692749 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659822 402.00704956 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659823 402.00765991 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659824 402.05877686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659825 402.05880737 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659826 402.05883789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659827 402.05886841 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04659828 402.05895996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659829 402.05895996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04659830 402.05902100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04659831 402.05905151 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04659832 402.10882568 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659833 402.10891724 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659834 402.10952759 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659835 402.21170044 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659836 402.21179199 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659837 402.21237183 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659838 402.21261597 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659839 402.31359863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659840 402.31369019 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659841 402.31399536 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659842 402.31451416 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659843 402.41555786 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659844 402.41564941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659845 402.41592407 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659846 402.41647339 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659847 402.51986694 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659848 402.51992798 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659849 402.52066040 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659850 402.62161255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659851 402.62170410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659852 402.62188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659853 402.62249756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659854 402.72290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659855 402.72299194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659856 402.72372437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659857 402.74087524 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04659858 402.76132202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659859 402.76132202 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04659860 402.82574463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659861 402.82592773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659862 402.82601929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659863 402.82617188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659864 402.82647705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659865 402.82693481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659866 402.92877197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659867 402.92883301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659868 402.92898560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659869 402.92965698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659870 403.03076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659871 403.03082275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659872 403.03164673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659873 403.13363647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659874 403.13375854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659875 403.13442993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659876 403.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659877 403.23568726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659878 403.23660278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659879 403.33752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659880 403.33758545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659881 403.33822632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659882 403.43853760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659883 403.43878174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659884 403.43890381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659885 403.43984985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659886 403.54034424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659887 403.54046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659888 403.54110718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659889 403.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04659890 403.64169312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04659891 403.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04659892 403.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04659893 403.64181519 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659894 403.64181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04659895 403.64181519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04659896 403.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04659897 403.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04659898 403.64187622 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659899 403.64187622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04659900 403.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04659901 403.64193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04659902 403.64193726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04659903 403.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04659904 403.64199829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04659905 403.64199829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04659906 403.64199829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04659907 403.64202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04659908 403.64202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04659909 403.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04659910 403.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04659911 403.64212036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04659912 403.64212036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04659913 403.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04659914 403.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04659915 403.64218140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04659916 403.64221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04659917 403.64221191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04659918 403.64224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04659919 403.64224243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04659920 403.64230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04659921 403.64230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04659922 403.64230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04659923 403.64230347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04659924 403.64236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04659925 403.64236450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04659926 403.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04659927 403.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04659928 403.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04659929 403.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04659930 403.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04659931 403.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04659932 403.64248657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04659933 403.64251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04659934 403.64254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04659935 403.64254761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04659936 403.64260864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04659937 403.64260864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04659938 403.64263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04659939 403.64263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04659940 403.64266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04659941 403.64266968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04659942 403.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04659943 403.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04659944 403.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04659945 403.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04659946 403.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04659947 403.64279175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04659948 403.64279175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04659949 403.64282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04659950 403.64282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04659951 403.64285278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04659952 403.64285278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04659953 403.64291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04659954 403.64291382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04659955 403.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04659956 403.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04659957 403.64297485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04659958 403.64297485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04659959 403.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04659960 403.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04659961 403.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04659962 403.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04659963 403.64309692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04659964 403.64309692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04659965 403.64312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04659966 403.64312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04659967 403.64315796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04659968 403.64318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04659969 403.64321899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04659970 403.64321899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04659971 403.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04659972 403.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04659973 403.64328003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04659974 403.64328003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04659975 403.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04659976 403.64334106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04659977 403.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04659978 403.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04659979 403.64340210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04659980 403.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04659981 403.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04659982 403.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04659983 403.64349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04659984 403.64349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04659985 403.64352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04659986 403.64352417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04659987 403.64358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04659988 403.64358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04659989 403.64358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04659990 403.64358521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04659991 403.64364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04659992 403.64364624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04659993 403.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04659994 403.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04659995 403.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04659996 403.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04659997 403.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04659998 403.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04659999 403.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04660000 403.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04660001 403.64382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04660002 403.64382935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04660003 403.64389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04660004 403.64389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04660005 403.64389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04660006 403.64389038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04660007 403.64395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04660008 403.64395142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04660009 403.64401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04660010 403.64401245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04660011 403.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04660012 403.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04660013 403.64407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04660014 403.64407349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04660015 403.64413452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04660016 403.64413452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04660017 403.64419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04660018 403.64419556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04660019 403.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04660020 403.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04660021 403.64425659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04660022 403.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04660023 403.64431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04660024 403.64431763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04660025 403.64437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04660026 403.64437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04660027 403.64437866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04660028 403.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04660029 403.64443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04660030 403.64443970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04660031 403.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04660032 403.64450073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04660033 403.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04660034 403.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04660035 403.64456177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04660036 403.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04660037 403.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04660038 403.64462280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04660039 403.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04660040 403.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04660041 403.64468384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04660042 403.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04660043 403.64474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04660044 403.64474487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04660045 403.64480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04660046 403.64480591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04660047 403.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04660048 403.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04660049 403.64486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04660050 403.64486694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04660051 403.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04660052 403.64492798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04660053 403.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04660054 403.64498901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04660055 403.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04660056 403.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04660057 403.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04660058 403.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04660059 403.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04660060 403.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04660061 403.64511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04660062 403.64511108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04660063 403.64517212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04660064 403.64517212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04660065 403.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04660066 403.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04660067 403.64523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04660068 403.64523315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04660069 403.64529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04660070 403.64529419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04660071 403.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04660072 403.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04660073 403.64535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04660074 403.64535522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04660075 403.64541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04660076 403.64541626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04660077 403.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04660078 403.64547729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04660079 403.64547729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04660080 403.64547729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04660081 403.64553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04660082 403.64553833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04660083 403.64559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04660084 403.64559937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04660085 403.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04660086 403.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04660087 403.64566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04660088 403.64566040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04660089 403.64572144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04660090 403.64572144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04660091 403.64575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04660092 403.64578247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04660093 403.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04660094 403.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04660095 403.64584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04660096 403.64584351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04660097 403.64590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04660098 403.64590454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04660099 403.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04660100 403.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04660101 403.64596558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04660102 403.64596558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04660103 403.64602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04660104 403.64602661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04660105 403.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04660106 403.64608765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04660107 403.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04660108 403.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04660109 403.64614868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04660110 403.64614868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04660111 403.64620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04660112 403.64620972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04660113 403.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04660114 403.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04660115 403.64627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04660116 403.64627075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04660117 403.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04660118 403.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04660119 403.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04660120 403.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04660121 403.64639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04660122 403.64639282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04660123 403.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04660124 403.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04660125 403.64645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04660126 403.64645386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04660127 403.64651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04660128 403.64651489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04660129 403.64654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04660130 403.64654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04660131 403.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04660132 403.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04660133 403.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04660134 403.64660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04660135 403.64666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04660136 403.64666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04660137 403.64669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04660138 403.64669800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04660139 403.64675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04660140 403.64675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04660141 403.64675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04660142 403.64675903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04660143 403.64682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04660144 403.64682007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04660145 403.64685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04660146 403.64685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04660147 403.64688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04660148 403.64688110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04660149 403.64691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04660150 403.64691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04660151 403.64694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04660152 403.64694214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04660153 403.64697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04660154 403.64697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04660155 403.64700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04660156 403.64700317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04660157 403.64703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04660158 403.64703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04660159 403.64706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04660160 403.64706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04660161 403.64706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04660162 403.64706421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04660163 403.64709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04660164 403.64709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04660165 403.64712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04660166 403.64712524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04660167 403.64715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04660168 403.64715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04660169 403.64718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04660170 403.64718628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04660171 403.64721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04660172 403.64721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04660173 403.64724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04660174 403.64724731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04660175 403.64727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04660176 403.64727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04660177 403.64730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04660178 403.64730835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04660179 403.64733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04660180 403.64733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04660181 403.64736938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04660182 403.64736938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04660183 403.64739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04660184 403.64739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04660185 403.64739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04660186 403.64739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04660187 403.64743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04660188 403.64743042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04660189 403.64746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04660190 403.64746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04660191 403.64749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04660192 403.64749146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04660193 403.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04660194 403.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04660195 403.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04660196 403.64755249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04660197 403.64758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04660198 403.64758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04660199 403.64761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04660200 403.64761353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04660201 403.64764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04660202 403.64764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04660203 403.64767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04660204 403.64767456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04660205 403.64770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04660206 403.64770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04660207 403.64770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04660208 403.64770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04660209 403.64773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04660210 403.64773560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04660211 403.64776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04660212 403.64779663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04660213 403.64782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04660214 403.64782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04660215 403.64785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04660216 403.64785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04660217 403.64785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04660218 403.64785767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04660219 403.64788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04660220 403.64788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04660221 403.64791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04660222 403.64791870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04660223 403.64794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04660224 403.64794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04660225 403.64797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04660226 403.64797974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04660227 403.64801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04660228 403.64801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04660229 403.64804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04660230 403.64804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04660231 403.64804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04660232 403.64804077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04660233 403.64807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04660234 403.64810181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04660235 403.64813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04660236 403.64813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04660237 403.64816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04660238 403.64816284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04660239 403.64819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04660240 403.64819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04660241 403.64819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04660242 403.64819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04660243 403.64822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04660244 403.64822388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04660245 403.64825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04660246 403.64825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04660247 403.64828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04660248 403.64828491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04660249 403.64831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04660250 403.64831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04660251 403.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04660252 403.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04660253 403.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04660254 403.64834595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04660255 403.64837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04660256 403.64840698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04660257 403.64843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04660258 403.64843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04660259 403.64846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04660260 403.64846802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04660261 403.64849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04660262 403.64849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04660263 403.64849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04660264 403.64849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04660265 403.64852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04660266 403.64852905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04660267 403.64855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04660268 403.64855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04660269 403.64859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04660270 403.64859009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04660271 403.64862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04660272 403.64862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04660273 403.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04660274 403.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04660275 403.64865112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04660276 403.64868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04660277 403.64871216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04660278 403.64871216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04660279 403.64874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04660280 403.64874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04660281 403.64880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04660282 403.64880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04660283 403.64883423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04660284 403.64883423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04660285 403.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04660286 403.64886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04660287 403.64889526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04660288 403.64889526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04660289 403.64895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04660290 403.64895630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04660291 403.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04660292 403.64898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04660293 403.64901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04660294 403.64901733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04660295 403.64904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04660296 403.64904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04660297 403.64910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04660298 403.64910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04660299 403.64913940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04660300 403.64913940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04660301 403.64916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04660302 403.64916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04660303 403.64920044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04660304 403.64923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04660305 403.64926147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04660306 403.64926147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04660307 403.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04660308 403.64929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04660309 403.64932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04660310 403.64932251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04660311 403.64938354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04660312 403.64938354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04660313 403.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04660314 403.64941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04660315 403.64944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04660316 403.64944458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04660317 403.64947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04660318 403.64947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04660319 403.64950562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04660320 403.64950562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04660321 403.64953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04660322 403.64956665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04660323 403.64959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04660324 403.64959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04660325 403.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04660326 403.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04660327 403.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04660328 403.64962769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04660329 403.64965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04660330 403.64965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04660331 403.64968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04660332 403.64968872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04660333 403.64971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04660334 403.64971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04660335 403.64974976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04660336 403.64974976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04660337 403.64978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04660338 403.64978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04660339 403.64978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04660340 403.64978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04660341 403.64981079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04660342 403.64984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04660343 403.64987183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04660344 403.64987183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04660345 403.64990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04660346 403.64990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04660347 403.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04660348 403.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04660349 403.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04660350 403.64993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04660351 403.64996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04660352 403.64996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04660353 403.64999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04660354 403.64999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04660355 403.65002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04660356 403.65002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04660357 403.65005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04660358 403.65005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04660359 403.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04660360 403.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04660361 403.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04660362 403.65008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04660363 403.65011597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04660364 403.65014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04660365 403.65017700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04660366 403.65017700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04660367 403.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04660368 403.65020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04660369 403.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04660370 403.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04660371 403.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04660372 403.65023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04664767 403.71276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -04664768 403.71276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -04664769 403.71279907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -04664770 403.71279907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -04664771 403.71282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -04664772 403.71282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -04664773 403.71282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -04664774 403.71282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -04664775 403.71286011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -04664776 403.71289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -04664777 403.71292114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -04664778 403.71292114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -04664779 403.71295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -04664780 403.71295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -04664781 403.71298218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -04664782 403.71298218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -04664783 403.71301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -04664784 403.71301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -04664785 403.71301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -04664786 403.71301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -04664787 403.71304321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -04664788 403.71304321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -04664789 403.71307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -04664790 403.71307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -04664791 403.71310425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -04664792 403.71310425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -04664793 403.71313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -04664794 403.71313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -04664795 403.71316528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -04664796 403.71316528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -04664797 403.71319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -04664798 403.71319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -04664799 403.71322632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -04664800 403.71322632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -04664801 403.71325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -04664802 403.71325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -04664803 403.71328735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -04664804 403.71328735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -04664805 403.71331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -04664806 403.71331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -04664807 403.71331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -04664808 403.71331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -04664809 403.71334839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -04664810 403.71334839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -04680532 403.93844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x294f8 -04680533 403.93844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -04680534 403.93844604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29508 -04680535 403.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -04680536 403.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29518 -04680537 403.93850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -04680538 403.93850708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29528 -04680539 403.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -04680540 403.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29538 -04680541 403.93856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -04680542 403.93856812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29548 -04680543 403.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -04680544 403.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29558 -04680545 403.93862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -04680546 403.93862915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29568 -04680547 403.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -04680548 403.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29578 -04680549 403.93869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -04680550 403.93869019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29588 -04680551 403.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -04680552 403.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29598 -04680553 403.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -04680554 403.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295a8 -04680555 403.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -04680556 403.93875122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295b8 -04680557 403.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -04680558 403.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295c8 -04680559 403.93881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -04680560 403.93881226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295d8 -04680561 403.93884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e8 -04680562 403.93884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295e8 -04680563 403.93887329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f8 -04680564 403.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x295f8 -04680565 403.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29608 -04680566 403.93890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29608 -04680567 403.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29618 -04680568 403.93893433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29618 -04680569 403.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29628 -04680570 403.93896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29628 -04680571 403.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29638 -04680572 403.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29638 -04680573 403.93902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29648 -04680574 403.93902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29648 -04680575 403.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29658 -04685010 404.00292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -04685011 404.00292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320d8 -04685012 404.00292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e8 -04685013 404.00292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320e8 -04685014 404.00296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f8 -04685015 404.00296021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x320f8 -04685016 404.00299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32108 -04685017 404.00299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32108 -04685018 404.00302124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32118 -04685019 404.00305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32118 -04685020 404.00308228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32128 -04685021 404.00308228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32128 -04685022 404.00311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32138 -04685023 404.00311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32138 -04685024 404.00311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32148 -04685025 404.00311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32148 -04685026 404.00314331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -04685027 404.00314331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32158 -04685028 404.00317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -04685029 404.00317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32168 -04685030 404.00320435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -04685031 404.00320435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32178 -04685032 404.00323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -04685033 404.00323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32188 -04685034 404.00326538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -04685035 404.00326538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32198 -04685036 404.00326538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -04685037 404.00329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321a8 -04685038 404.00332642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -04685039 404.00332642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321b8 -04685040 404.00335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -04685041 404.00335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321c8 -04685042 404.00338745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -04685043 404.00338745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321d8 -04685044 404.00341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -04685045 404.00341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321e8 -04685046 404.00341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -04685047 404.00341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x321f8 -04685048 404.00344849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -04685049 404.00344849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32208 -04685050 404.00347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -04685051 404.00347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32218 -04685052 404.00350952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -04685053 404.00350952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32228 -04692113 404.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fea8 -04692114 404.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -04692115 404.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3feb8 -04692116 404.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -04692117 404.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fec8 -04692118 404.11788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -04692119 404.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fed8 -04692120 404.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -04692121 404.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fee8 -04692122 404.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -04692123 404.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fef8 -04692124 404.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -04692125 404.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff08 -04692126 404.11801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -04692127 404.11801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff18 -04692128 404.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -04692129 404.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff28 -04692130 404.11807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -04692131 404.11807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff38 -04692132 404.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -04692133 404.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff48 -04692134 404.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff58 -04692135 404.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff58 -04692136 404.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -04692137 404.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -04692138 404.11816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -04692139 404.11819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -04692140 404.11822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff88 -04692141 404.11822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff88 -04692142 404.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff98 -04692143 404.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff98 -04692144 404.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa8 -04692145 404.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa8 -04692146 404.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb8 -04692147 404.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb8 -04692148 404.11831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc8 -04692149 404.11831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc8 -04692150 404.11834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd8 -04692151 404.11834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd8 -04692152 404.11837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe8 -04692153 404.11837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe8 -04692154 404.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff8 -04692155 404.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff8 -04692156 404.11843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40008 -04699233 404.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -04699234 404.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -04699235 404.22506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -04699236 404.22506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -04699237 404.22512817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -04699238 404.22512817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -04699239 404.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -04699240 404.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -04699241 404.22518921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -04699242 404.22518921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -04699243 404.22521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -04699244 404.22521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -04699245 404.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -04699246 404.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -04699247 404.22531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -04699248 404.22531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -04699249 404.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -04699250 404.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -04699251 404.22537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -04699252 404.22537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -04699253 404.22543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -04699254 404.22543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -04699255 404.22546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -04699256 404.22546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -04699257 404.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -04699258 404.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -04699259 404.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -04699260 404.22555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -04699261 404.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -04699262 404.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -04699263 404.22561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -04699264 404.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -04699265 404.22567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -04699266 404.22567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -04699267 404.22567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -04699268 404.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -04699269 404.22573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -04699270 404.22573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -04699271 404.22579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de38 -04699272 404.22579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de38 -04699273 404.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de48 -04699274 404.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de48 -04699275 404.22586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de58 -04699276 404.22586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de58 -04701807 404.45825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701808 404.45846558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701809 404.45852661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701810 404.45919800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701811 404.56036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701812 404.56042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701813 404.56137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701814 404.56613159 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04701815 404.56616211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04701816 404.56619263 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04701817 404.56622314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04701818 404.56631470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04701819 404.56631470 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04701820 404.56640625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04701821 404.56643677 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04701822 404.66235352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701823 404.66244507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701824 404.66271973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701825 404.66317749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701826 404.66372681 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701827 404.76330566 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04701828 404.76535034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701829 404.76544189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701830 404.76565552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701831 404.76593018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701832 404.76641846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701833 404.78231812 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04701834 404.78234863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04701835 404.86749268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701836 404.86752319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701837 404.86785889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701838 404.86837769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701839 404.97012329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701840 404.97021484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701841 404.97100830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701842 405.07287598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701843 405.07293701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701844 405.07388306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701845 405.17489624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701846 405.17495728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701847 405.17587280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701848 405.27984619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701849 405.27993774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701850 405.28024292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701851 405.28073120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701852 405.38101196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701853 405.38125610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701854 405.38128662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701855 405.38159180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701856 405.38177490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701857 405.38226318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701858 405.48403931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701859 405.48413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701860 405.48461914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701861 405.48535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701862 405.58657837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701863 405.58663940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701864 405.58685303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701865 405.58712769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701866 405.58770752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701867 405.68960571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701868 405.68966675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701869 405.69033813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701870 405.79147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701871 405.79153442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701872 405.79244995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701873 405.89334106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701874 405.89361572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701875 405.89370728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701876 405.89404297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701877 405.89437866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701878 405.89465332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701879 405.89538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701880 405.99734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701881 405.99737549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701882 405.99771118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701883 405.99819946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701884 406.09936523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701885 406.09945679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701886 406.10031128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701887 406.20120239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701888 406.20129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701889 406.20227051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701890 406.30313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701891 406.30319214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701892 406.30340576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701893 406.30401611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701894 406.40502930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701895 406.40509033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701896 406.40527344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701897 406.40588379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701898 406.50686646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701899 406.50692749 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701900 406.50720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701901 406.50735474 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04701902 406.50799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04701903 406.53195190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04701904 406.53195190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04701905 406.53198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04701906 406.53198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04701907 406.53198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04701908 406.53198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04701909 406.53201294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04701910 406.53201294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04701911 406.53204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04701912 406.53204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04701913 406.53207397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04701914 406.53207397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04701915 406.53210449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04701916 406.53213501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04701917 406.53213501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04701918 406.53213501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04701919 406.53216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04701920 406.53216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04701921 406.53219604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04701922 406.53219604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04701923 406.53222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04701924 406.53222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04701925 406.53225708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04701926 406.53225708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04701927 406.53228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04701928 406.53228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04701929 406.53228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04701930 406.53228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04701931 406.53231812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04701932 406.53231812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04701933 406.53234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04701934 406.53234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04701935 406.53237915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04701936 406.53240967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04701937 406.53244019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04701938 406.53244019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04701939 406.53244019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04701940 406.53244019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04701941 406.53247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04701942 406.53247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04701943 406.53250122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04701944 406.53250122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04701945 406.53253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04701946 406.53253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04701947 406.53256226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04701948 406.53256226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04701949 406.53259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04701950 406.53259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04701951 406.53259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04701952 406.53259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04701953 406.53262329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04701954 406.53262329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04701955 406.53265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04701956 406.53268433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04701957 406.53271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04701958 406.53271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04701959 406.53277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04701960 406.53277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04701961 406.53277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04701962 406.53277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04701963 406.53280640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04701964 406.53280640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04701965 406.53283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04701966 406.53283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04701967 406.53286743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04701968 406.53286743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04701969 406.53289795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04701970 406.53292847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04701971 406.53292847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04701972 406.53292847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04701973 406.53295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04701974 406.53295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04701975 406.53298950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04701976 406.53298950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04701977 406.53302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04701978 406.53302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04701979 406.53305054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04701980 406.53305054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04701981 406.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04701982 406.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04701983 406.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04701984 406.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04701985 406.53311157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04701986 406.53311157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04701987 406.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04701988 406.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04701989 406.53317261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04701990 406.53320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04701991 406.53323364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04701992 406.53323364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04701993 406.53323364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04701994 406.53323364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04701995 406.53326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04701996 406.53326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04701997 406.53329468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04701998 406.53329468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04701999 406.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04702000 406.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04702001 406.53335571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04702002 406.53335571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04702003 406.53338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04702004 406.53338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04702005 406.53341675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04702006 406.53341675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04702007 406.53341675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04702008 406.53341675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04702009 406.53344727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04702010 406.53347778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04702011 406.53350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04702012 406.53350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04702013 406.53353882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04702014 406.53353882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04702015 406.53356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04702016 406.53356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04702017 406.53356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04702018 406.53356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04702019 406.53359985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04702020 406.53359985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04702021 406.53363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04702022 406.53363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04702023 406.53366089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04702024 406.53366089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04702025 406.53372192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04702026 406.53372192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04702027 406.53375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04702028 406.53375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04702029 406.53378296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04702030 406.53381348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04702031 406.53384399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04702032 406.53384399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04702033 406.53387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04702034 406.53387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04702035 406.53387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04702036 406.53387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04702037 406.53390503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04702038 406.53390503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04702039 406.53393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04702040 406.53393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04702041 406.53396606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04702042 406.53396606 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04702043 406.53399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04702044 406.53399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04702045 406.53402710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04702046 406.53402710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04702047 406.53402710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04702048 406.53402710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04702049 406.53405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04702050 406.53405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04702051 406.53408813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04702052 406.53411865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04702053 406.53414917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04702054 406.53414917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04702055 406.53417969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04702056 406.53417969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04702057 406.53421021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04702058 406.53421021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04702059 406.53421021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04702060 406.53421021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04702061 406.53424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04702062 406.53424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04702063 406.53427124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04702064 406.53427124 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04702065 406.53430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04702066 406.53430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04702067 406.53433228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04702068 406.53433228 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04702069 406.53436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04702070 406.53436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04702071 406.53436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04702072 406.53439331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04702073 406.53442383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04702074 406.53442383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04702075 406.53445435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04702076 406.53445435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04702077 406.53448486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04702078 406.53448486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04702079 406.53451538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04702080 406.53451538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04702081 406.53451538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04702082 406.53451538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04702083 406.53454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04702084 406.53454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04702085 406.53457642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04702086 406.53457642 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04702087 406.53460693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04702088 406.53460693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04702089 406.53463745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04702090 406.53463745 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04702091 406.53466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04702092 406.53466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04702093 406.53469849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04702094 406.53469849 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04702095 406.53475952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04702096 406.53475952 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04702097 406.53479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04702098 406.53479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04702099 406.53482056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04702100 406.53482056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04702101 406.53482056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04702102 406.53482056 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04702103 406.53485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04702104 406.53485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04702105 406.53488159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04702106 406.53488159 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04702107 406.53491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04702108 406.53491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04702109 406.53494263 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04702110 406.53494263 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04702111 406.53497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04702112 406.53497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04702113 406.53500366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04702114 406.53500366 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04702115 406.53503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04702116 406.53503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04702117 406.53506470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04702118 406.53506470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04702119 406.53509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04702120 406.53509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04702121 406.53512573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04702122 406.53512573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04702123 406.53515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04702124 406.53515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04702125 406.53515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04702126 406.53515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04702127 406.53518677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04702128 406.53518677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04702129 406.53521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04702130 406.53521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04702131 406.53524780 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04702132 406.53527832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04702133 406.53530884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04702134 406.53530884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04702135 406.53530884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04702136 406.53530884 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04702137 406.53533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04702138 406.53533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04702139 406.53536987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04702140 406.53536987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04702141 406.53540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04702142 406.53540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04702143 406.53543091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04702144 406.53543091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04702145 406.53546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04702146 406.53546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04702147 406.53546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04702148 406.53546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04702149 406.53549194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04702150 406.53549194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04702151 406.53552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04702152 406.53555298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04702153 406.53558350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04702154 406.53558350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04702155 406.53561401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04702156 406.53561401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04702157 406.53561401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04702158 406.53561401 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04702159 406.53564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04702160 406.53564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04702161 406.53567505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04702162 406.53567505 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04702163 406.53570557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04702164 406.53570557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04702165 406.53573608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04702166 406.53573608 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04702167 406.53576660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04702168 406.53576660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04702169 406.53579712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04702170 406.53579712 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04702171 406.53582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04702172 406.53582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04702173 406.53585815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04702174 406.53585815 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04702175 406.53588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04702176 406.53588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04702177 406.53591919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04702178 406.53591919 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04702179 406.53594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04702180 406.53594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04702181 406.53594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04702182 406.53594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04702183 406.53598022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04702184 406.53598022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04702185 406.53601074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04702186 406.53601074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04702187 406.53604126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04702188 406.53607178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04702189 406.53610229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04702190 406.53610229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04702191 406.53610229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04702192 406.53610229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04702193 406.53613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04702194 406.53613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04702195 406.53616333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04702196 406.53616333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04702197 406.53619385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04702198 406.53619385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04702199 406.53622437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04702200 406.53622437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04702201 406.53625488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04702202 406.53625488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04702203 406.53625488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04702204 406.53625488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04702205 406.53628540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04702206 406.53628540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04702207 406.53631592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04702208 406.53634644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04702209 406.53637695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04702210 406.53637695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04702211 406.53640747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04702212 406.53640747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04702213 406.53640747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04702214 406.53640747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04702215 406.53643799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04702216 406.53643799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04702217 406.53646851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04702218 406.53646851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04702219 406.53649902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04702220 406.53649902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04702221 406.53652954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04702222 406.53652954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04702223 406.53656006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04702224 406.53656006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04702225 406.53659058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04702226 406.53659058 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04702227 406.53662109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04702228 406.53662109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04702229 406.53665161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04702230 406.53665161 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04702231 406.53668213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04702232 406.53668213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04702233 406.53674316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04702234 406.53674316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04702235 406.53674316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04702236 406.53674316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04702237 406.53677368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04702238 406.53677368 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04702239 406.53680420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04702240 406.53683472 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04702241 406.53686523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04702242 406.53686523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04702243 406.53689575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04702244 406.53689575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04702245 406.53689575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04702246 406.53689575 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04702247 406.53692627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04702248 406.53692627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04702249 406.53695679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04702250 406.53695679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04702251 406.53698730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04702252 406.53698730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04702253 406.53701782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04702254 406.53701782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04702255 406.53704834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04702256 406.53704834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04702257 406.53704834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04702258 406.53704834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04702259 406.53707886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04702260 406.53710938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04702261 406.53713989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04702262 406.53713989 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04702263 406.53717041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04702264 406.53717041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04702265 406.53720093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04702266 406.53720093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04702267 406.53720093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04702268 406.53720093 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04702269 406.53723145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04702270 406.53723145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04702271 406.53726196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04702272 406.53726196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04702273 406.53729248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04702274 406.53729248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04702275 406.53732300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04702276 406.53732300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04702277 406.53735352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04702278 406.53735352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04702279 406.53738403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04702280 406.53738403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04702281 406.53741455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04702282 406.53741455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04702283 406.53744507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04702284 406.53744507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04702285 406.53747559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04702286 406.53747559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04702287 406.53750610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04702288 406.53750610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04702289 406.53753662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04702290 406.53753662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04702291 406.53753662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04702292 406.53753662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04702293 406.53756714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04702294 406.53756714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04702295 406.53759766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04702296 406.53759766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04702297 406.53762817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04702298 406.53762817 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04706293 406.59970093 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -04706294 406.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9970 -04706295 406.59976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -04706296 406.59976196 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9980 -04706297 406.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -04706298 406.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9990 -04706299 406.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -04706300 406.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a0 -04706301 406.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -04706302 406.59982300 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b0 -04706303 406.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -04706304 406.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c0 -04706305 406.59988403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -04706306 406.59988403 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d0 -04706307 406.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -04706308 406.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e0 -04706309 406.59994507 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -04706310 406.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f0 -04706311 406.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -04706312 406.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a00 -04706313 406.60000610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -04706314 406.60000610 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a10 -04706315 406.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -04706316 406.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a20 -04706317 406.60006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -04706318 406.60006714 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a30 -04706319 406.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -04706320 406.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a40 -04706321 406.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -04706322 406.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a50 -04706323 406.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -04706324 406.60012817 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a60 -04706325 406.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -04706326 406.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a70 -04706327 406.60018921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -04706328 406.60018921 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a80 -04706329 406.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -04706330 406.60025024 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a90 -04706331 406.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -04706332 406.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa0 -04706333 406.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -04706334 406.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab0 -04706335 406.60031128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -04706336 406.60031128 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac0 -04712243 406.68414307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -04712244 406.68417358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15330 -04712245 406.68417358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -04712246 406.68417358 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15340 -04712247 406.68420410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -04712248 406.68420410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15350 -04712249 406.68423462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -04712250 406.68423462 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -04712251 406.68426514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -04712252 406.68426514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -04712253 406.68429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -04712254 406.68429565 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -04712255 406.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -04712256 406.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -04712257 406.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -04712258 406.68432617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -04712259 406.68435669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -04712260 406.68435669 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -04712261 406.68438721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -04712262 406.68441772 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -04712263 406.68444824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -04712264 406.68444824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -04712265 406.68447876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -04712266 406.68447876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -04712267 406.68447876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -04712268 406.68447876 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -04712269 406.68450928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -04712270 406.68450928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -04712271 406.68453979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -04712272 406.68453979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15410 -04712273 406.68457031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -04712274 406.68457031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15420 -04712275 406.68460083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -04712276 406.68460083 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15430 -04712277 406.68463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -04712278 406.68463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15440 -04712279 406.68463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -04712280 406.68463135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15450 -04712281 406.68466187 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -04712282 406.68469238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15460 -04712283 406.68472290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -04712284 406.68472290 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15470 -04712285 406.68475342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -04712286 406.68475342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15480 -04729860 406.93273926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -04729861 406.93273926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37920 -04729862 406.93276978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -04729863 406.93276978 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37930 -04729864 406.93280029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -04729865 406.93280029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37940 -04729866 406.93280029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -04729867 406.93280029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37950 -04729868 406.93283081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -04729869 406.93283081 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37960 -04729870 406.93286133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -04729871 406.93289185 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37970 -04729872 406.93292236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -04729873 406.93292236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37980 -04729874 406.93295288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -04729875 406.93295288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37990 -04729876 406.93295288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -04729877 406.93295288 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a0 -04729878 406.93298340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -04729879 406.93298340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b0 -04729880 406.93301392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -04729881 406.93301392 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c0 -04729882 406.93304443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -04729883 406.93304443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d0 -04729884 406.93307495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -04729885 406.93307495 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e0 -04729886 406.93310547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -04729887 406.93310547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f0 -04729888 406.93310547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -04729889 406.93310547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a00 -04729890 406.93313599 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -04729891 406.93316650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a10 -04729892 406.93319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -04729893 406.93319702 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a20 -04729894 406.93322754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -04729895 406.93322754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a30 -04729896 406.93325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -04729897 406.93325806 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a40 -04729898 406.93328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -04729899 406.93328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a50 -04729900 406.93328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -04729901 406.93328857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a60 -04729902 406.93331909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -04729903 406.93331909 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a70 -04734220 406.99435425 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -04734221 406.99438477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40160 -04734222 406.99441528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -04734223 406.99441528 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40170 -04734224 406.99444580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -04734225 406.99444580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40180 -04734226 406.99444580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -04734227 406.99444580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40190 -04734228 406.99447632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -04734229 406.99447632 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401a0 -04734230 406.99450684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -04734231 406.99450684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401b0 -04734232 406.99453735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -04734233 406.99453735 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c0 -04734234 406.99456787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -04734235 406.99456787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d0 -04734236 406.99459839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -04734237 406.99459839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e0 -04734238 406.99459839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -04734239 406.99459839 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f0 -04734240 406.99462891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -04734241 406.99465942 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40200 -04734242 406.99468994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -04734243 406.99468994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40210 -04734244 406.99472046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -04734245 406.99472046 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40220 -04734246 406.99475098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -04734247 406.99475098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40230 -04734248 406.99475098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -04734249 406.99475098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40240 -04734250 406.99478149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -04734251 406.99478149 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40250 -04734252 406.99481201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -04734253 406.99481201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40260 -04734254 406.99484253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -04734255 406.99484253 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40270 -04734256 406.99487305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -04734257 406.99487305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40280 -04734258 406.99490356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -04734259 406.99490356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40290 -04734260 406.99490356 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -04734261 406.99493408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a0 -04734262 406.99496460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -04734263 406.99496460 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b0 -04739660 407.07128906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -04739661 407.07128906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab40 -04739662 407.07131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -04739663 407.07131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab50 -04739664 407.07131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -04739665 407.07131958 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab60 -04739666 407.07135010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -04739667 407.07135010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab70 -04739668 407.07138062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -04739669 407.07138062 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab80 -04739670 407.07141113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -04739671 407.07141113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab90 -04739672 407.07144165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -04739673 407.07144165 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aba0 -04739674 407.07147217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -04739675 407.07150269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abb0 -04739676 407.07150269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -04739677 407.07150269 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abc0 -04739678 407.07153320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -04739679 407.07153320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abd0 -04739680 407.07156372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -04739681 407.07156372 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -04739682 407.07159424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -04739683 407.07159424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -04739684 407.07162476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -04739685 407.07162476 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -04739686 407.07165527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -04739687 407.07165527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -04739688 407.07165527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -04739689 407.07165527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -04739690 407.07168579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -04739691 407.07168579 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -04739692 407.07171631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -04739693 407.07171631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -04739694 407.07174683 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -04739695 407.07177734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -04739696 407.07180786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -04739697 407.07180786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -04739698 407.07180786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -04739699 407.07180786 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -04739700 407.07183838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -04739701 407.07183838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -04739702 407.07186890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -04739703 407.07186890 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -04743839 407.22048950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743840 407.22058105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743841 407.22152710 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04743842 407.32235718 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743843 407.32241821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743844 407.32281494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743845 407.32327271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04743846 407.42419434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743847 407.42425537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743848 407.42456055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743849 407.42504883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04743850 407.52609253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743851 407.52633667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743852 407.52639771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743853 407.52664185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743854 407.52722168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04743855 407.62908936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743856 407.62911987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743857 407.62930298 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -04743858 407.62994385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -04743859 407.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04743860 407.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04743861 407.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04743862 407.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04743863 407.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04743864 407.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04743865 407.73117065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04743866 407.73117065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04743867 407.73120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04743868 407.73123169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04743869 407.73126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04743870 407.73126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04743871 407.73129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04743872 407.73129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04743873 407.73132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04743874 407.73132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04743875 407.73138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04743876 407.73138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04743877 407.73141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04743878 407.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04743879 407.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04743880 407.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04743881 407.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04743882 407.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04743883 407.73153687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04743884 407.73153687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04743885 407.73159790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04743886 407.73159790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04743887 407.73159790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04743888 407.73162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04743889 407.73165894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04743890 407.73165894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04743891 407.73171997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04743892 407.73171997 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04743893 407.73175049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04743894 407.73175049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04743895 407.73181152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04743896 407.73181152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04743897 407.73187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04743898 407.73187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04743899 407.73190308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04743900 407.73190308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04743901 407.73193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04743902 407.73193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04743903 407.73196411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04743904 407.73199463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04743905 407.73202515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04743906 407.73202515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04743907 407.73205566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04743908 407.73205566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04743909 407.73208618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04743910 407.73211670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04743911 407.73214722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04743912 407.73214722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04743913 407.73220825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04743914 407.73220825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04743915 407.73223877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04743916 407.73223877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04743917 407.73226929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04743918 407.73226929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04743919 407.73229980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04743920 407.73233032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04743921 407.73236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04743922 407.73236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04743923 407.73239136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04743924 407.73239136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04743925 407.73242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04743926 407.73242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04743927 407.73248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04743928 407.73248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04743929 407.73254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04743930 407.73254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04743931 407.73254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04743932 407.73254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04743933 407.73260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04743934 407.73260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04743935 407.73263550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04743936 407.73263550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04743937 407.73269653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04743938 407.73269653 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04743939 407.73272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04743940 407.73272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04743941 407.73275757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04743942 407.73275757 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04743943 407.73281860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04743944 407.73281860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04743945 407.73284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04743946 407.73284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04757680 407.93026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c028 -04757681 407.93029785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c038 -04757682 407.93029785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c038 -04757683 407.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c048 -04757684 407.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c048 -04757685 407.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c058 -04757686 407.93035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c058 -04757687 407.93038940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c068 -04757688 407.93038940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c068 -04757689 407.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c078 -04757690 407.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c078 -04757691 407.93045044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c088 -04757692 407.93045044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c088 -04757693 407.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c098 -04757694 407.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c098 -04757695 407.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a8 -04757696 407.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0a8 -04757697 407.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b8 -04757698 407.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0b8 -04757699 407.93054199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c8 -04757700 407.93054199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0c8 -04757701 407.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d8 -04757702 407.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0d8 -04757703 407.93060303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e8 -04757704 407.93060303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0e8 -04757705 407.93063354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f8 -04757706 407.93063354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c0f8 -04757707 407.93066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c108 -04757708 407.93066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c108 -04757709 407.93066406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c118 -04757710 407.93069458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c118 -04757711 407.93072510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c128 -04757712 407.93072510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c128 -04757713 407.93075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c138 -04757714 407.93075562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c138 -04757715 407.93078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c148 -04757716 407.93078613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c148 -04757717 407.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c158 -04757718 407.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c158 -04757719 407.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c168 -04757720 407.93081665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c168 -04757721 407.93084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c178 -04757722 407.93084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c178 -04757723 407.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c188 -04762923 408.00469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26408 -04762924 408.00469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26408 -04762925 408.00473022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26418 -04762926 408.00473022 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26418 -04762927 408.00476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26428 -04762928 408.00476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26428 -04762929 408.00479126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26438 -04762930 408.00479126 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26438 -04762931 408.00482178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26448 -04762932 408.00485229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26448 -04762933 408.00485229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26458 -04762934 408.00485229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26458 -04762935 408.00488281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26468 -04762936 408.00488281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26468 -04762937 408.00491333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26478 -04762938 408.00491333 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26478 -04762939 408.00494385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26488 -04762940 408.00494385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26488 -04762941 408.00497437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26498 -04762942 408.00497437 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26498 -04762943 408.00500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a8 -04762944 408.00500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264a8 -04762945 408.00500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b8 -04762946 408.00500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264b8 -04762947 408.00503540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c8 -04762948 408.00503540 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264c8 -04762949 408.00506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d8 -04762950 408.00509644 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264d8 -04762951 408.00512695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e8 -04762952 408.00512695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264e8 -04762953 408.00515747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -04762954 408.00515747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -04762955 408.00515747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -04762956 408.00515747 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -04762957 408.00518799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -04762958 408.00518799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -04762959 408.00521851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -04762960 408.00521851 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -04762961 408.00524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -04762962 408.00524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -04762963 408.00527954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -04762964 408.00527954 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -04762965 408.00531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -04762966 408.00531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -04768335 408.08154297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -04768336 408.08154297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -04768337 408.08157349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -04768338 408.08157349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -04768339 408.08157349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -04768340 408.08157349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -04768341 408.08160400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -04768342 408.08160400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -04768343 408.08163452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -04768344 408.08163452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -04768345 408.08166504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -04768346 408.08166504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -04768347 408.08169556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -04768348 408.08169556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -04768349 408.08172607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -04768350 408.08172607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -04768351 408.08175659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -04768352 408.08175659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -04768353 408.08178711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -04768354 408.08178711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -04768355 408.08181763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -04768356 408.08181763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -04768357 408.08184814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -04768358 408.08184814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dd8 -04768359 408.08187866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -04768360 408.08187866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30de8 -04768361 408.08190918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -04768362 408.08190918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30df8 -04768363 408.08190918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -04768364 408.08190918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -04768365 408.08193970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -04768366 408.08193970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -04768367 408.08197021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -04768368 408.08197021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -04768369 408.08200073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -04768370 408.08200073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -04768371 408.08203125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -04768372 408.08206177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -04768373 408.08206177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -04768374 408.08206177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -04768375 408.08209229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -04768376 408.08209229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -04768377 408.08212280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -04768378 408.08212280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -04772827 408.14599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -04772828 408.14599609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -04772829 408.14602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -04772830 408.14602661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -04772831 408.14605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -04772832 408.14605713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -04772833 408.14608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -04772834 408.14608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -04772835 408.14608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -04772836 408.14608765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -04772837 408.14611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -04772838 408.14611816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -04772839 408.14614868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -04772840 408.14614868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399e8 -04772841 408.14617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -04772842 408.14617920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x399f8 -04772843 408.14620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a08 -04772844 408.14620972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a08 -04772845 408.14624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a18 -04772846 408.14624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a18 -04772847 408.14624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a28 -04772848 408.14624023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a28 -04772849 408.14627075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a38 -04772850 408.14630127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a38 -04772851 408.14633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a48 -04772852 408.14633179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a48 -04772853 408.14636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -04772854 408.14636230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a58 -04772855 408.14639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -04772856 408.14639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a68 -04772857 408.14639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -04772858 408.14639282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a78 -04772859 408.14642334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -04772860 408.14642334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a88 -04772861 408.14645386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -04772862 408.14645386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a98 -04772863 408.14648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -04772864 408.14648438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39aa8 -04772865 408.14651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab8 -04772866 408.14651489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ab8 -04772867 408.14654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac8 -04772868 408.14654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ac8 -04772869 408.14654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad8 -04772870 408.14654541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ad8 -04777813 408.21704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43558 -04777814 408.21704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43558 -04777815 408.21707153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43568 -04777816 408.21707153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43568 -04777817 408.21710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43578 -04777818 408.21710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43578 -04777819 408.21710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43588 -04777820 408.21713257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43588 -04777821 408.21716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43598 -04777822 408.21716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43598 -04777823 408.21719360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a8 -04777824 408.21719360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435a8 -04777825 408.21722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b8 -04777826 408.21722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435b8 -04777827 408.21725464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c8 -04777828 408.21725464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435c8 -04777829 408.21725464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d8 -04777830 408.21725464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435d8 -04777831 408.21728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e8 -04777832 408.21728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435e8 -04777833 408.21731567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f8 -04777834 408.21731567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x435f8 -04777835 408.21734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43608 -04777836 408.21734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43608 -04777837 408.21737671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43618 -04777838 408.21737671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43618 -04777839 408.21740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43628 -04777840 408.21740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43628 -04777841 408.21740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43638 -04777842 408.21740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43638 -04777843 408.21743774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43648 -04777844 408.21746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43648 -04777845 408.21746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43658 -04777846 408.21749878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43658 -04777847 408.21752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43668 -04777848 408.21752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43668 -04777849 408.21755981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43678 -04777850 408.21755981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43678 -04777851 408.21755981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43688 -04777852 408.21755981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43688 -04777853 408.21759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43698 -04777854 408.21759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43698 -04777855 408.21762085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a8 -04777856 408.21762085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x436a8 -04792780 408.43383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -04792781 408.43383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -04792782 408.43386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -04792783 408.43386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -04792784 408.43389893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -04792785 408.43392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -04792786 408.43395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -04792787 408.43395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -04792788 408.43395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -04792789 408.43395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec68 -04792790 408.43399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -04792791 408.43399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec78 -04792792 408.43402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -04792793 408.43402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec88 -04792794 408.43405151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -04792795 408.43405151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec98 -04792796 408.43408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -04792797 408.43408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca8 -04792798 408.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -04792799 408.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb8 -04792800 408.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -04792801 408.43411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecc8 -04792802 408.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -04792803 408.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecd8 -04792804 408.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -04792805 408.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xece8 -04792806 408.43420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf8 -04792807 408.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecf8 -04792808 408.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed08 -04792809 408.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed08 -04792810 408.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed18 -04792811 408.43426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed18 -04792812 408.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed28 -04792813 408.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed28 -04792814 408.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed38 -04792815 408.43432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed38 -04792816 408.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed48 -04792817 408.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed48 -04792818 408.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -04792819 408.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed58 -04792820 408.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -04792821 408.43441772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed68 -04792822 408.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -04792823 408.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xed78 -04798198 408.51315308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19578 -04798199 408.51315308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19578 -04798200 408.51318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19588 -04798201 408.51318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19588 -04798202 408.51321411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19598 -04798203 408.51321411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19598 -04798204 408.51321411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a8 -04798205 408.51321411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a8 -04798206 408.51324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b8 -04798207 408.51324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b8 -04798208 408.51327515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -04798209 408.51327515 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195c8 -04798210 408.51330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -04798211 408.51330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195d8 -04798212 408.51333618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -04798213 408.51333618 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195e8 -04798214 408.51336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -04798215 408.51336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195f8 -04798216 408.51339722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -04798217 408.51339722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19608 -04798218 408.51342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -04798219 408.51342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19618 -04798220 408.51345825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19628 -04798221 408.51345825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19628 -04798222 408.51348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19638 -04798223 408.51348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19638 -04798224 408.51351929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19648 -04798225 408.51351929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19648 -04798226 408.51354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19658 -04798227 408.51354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19658 -04798228 408.51354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19668 -04798229 408.51354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19668 -04798230 408.51358032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19678 -04798231 408.51358032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19678 -04798232 408.51361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19688 -04798233 408.51361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19688 -04798234 408.51364136 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19698 -04798235 408.51367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19698 -04798236 408.51370239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a8 -04798237 408.51370239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196a8 -04798238 408.51370239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b8 -04798239 408.51370239 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196b8 -04798240 408.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c8 -04798241 408.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x196c8 -04804544 408.60476685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc8 -04804545 408.60479736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc8 -04804546 408.60482788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd8 -04804547 408.60482788 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd8 -04804548 408.60485840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -04804549 408.60485840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -04804550 408.60488892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -04804551 408.60488892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -04804552 408.60488892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c08 -04804553 408.60488892 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c08 -04804554 408.60491943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c18 -04804555 408.60491943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c18 -04804556 408.60494995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c28 -04804557 408.60494995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c28 -04804558 408.60498047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c38 -04804559 408.60498047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c38 -04804560 408.60501099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c48 -04804561 408.60501099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c48 -04804562 408.60504150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c58 -04804563 408.60504150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c58 -04804564 408.60504150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c68 -04804565 408.60504150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c68 -04804566 408.60507202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c78 -04804567 408.60510254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c78 -04804568 408.60513306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c88 -04804569 408.60513306 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c88 -04804570 408.60516357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c98 -04804571 408.60516357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c98 -04804572 408.60519409 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca8 -04804573 408.60519409 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ca8 -04804574 408.60522461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb8 -04804575 408.60522461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cb8 -04804576 408.60522461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc8 -04804577 408.60522461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cc8 -04804578 408.60525513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd8 -04804579 408.60525513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cd8 -04804580 408.60528564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce8 -04804581 408.60528564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ce8 -04804582 408.60531616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf8 -04804583 408.60531616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25cf8 -04804584 408.60534668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d08 -04804585 408.60534668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d08 -04804586 408.60537720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d18 -04804587 408.60537720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d18 -04809966 408.68368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30538 -04809967 408.68368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30538 -04809968 408.68371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30548 -04809969 408.68371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30548 -04809970 408.68374634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30558 -04809971 408.68374634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30558 -04809972 408.68377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -04809973 408.68380737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -04809974 408.68383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -04809975 408.68383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -04809976 408.68383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -04809977 408.68383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -04809978 408.68386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -04809979 408.68386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -04809980 408.68389893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -04809981 408.68389893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -04809982 408.68392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -04809983 408.68392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -04809984 408.68395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -04809985 408.68395996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -04809986 408.68399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -04809987 408.68399048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -04809988 408.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -04809989 408.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -04809990 408.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -04809991 408.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -04809992 408.68405151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -04809993 408.68405151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -04809994 408.68408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -04809995 408.68411255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -04809996 408.68414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -04809997 408.68414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -04809998 408.68417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -04809999 408.68417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -04810000 408.68417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -04810001 408.68417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -04810002 408.68420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -04810003 408.68420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -04810004 408.68423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30668 -04810005 408.68423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30668 -04810006 408.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30678 -04810007 408.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30678 -04810008 408.68429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30688 -04810009 408.68429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30688 -04826877 408.93084717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51598 -04826878 408.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51598 -04826879 408.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a8 -04826880 408.93087769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a8 -04826881 408.93090820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b8 -04826882 408.93090820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b8 -04826883 408.93093872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c8 -04826884 408.93093872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c8 -04826885 408.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d8 -04826886 408.93096924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d8 -04826887 408.93099976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e8 -04826888 408.93099976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e8 -04826889 408.93103027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -04826890 408.93103027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -04826891 408.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -04826892 408.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -04826893 408.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -04826894 408.93106079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -04826895 408.93109131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -04826896 408.93109131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -04826897 408.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -04826898 408.93112183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -04826899 408.93115234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -04826900 408.93118286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -04826901 408.93121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -04826902 408.93121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -04826903 408.93121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -04826904 408.93121338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -04826905 408.93124390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -04826906 408.93124390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -04826907 408.93127441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -04826908 408.93127441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -04826909 408.93130493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -04826910 408.93130493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -04826911 408.93133545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -04826912 408.93133545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -04826913 408.93136597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -04826914 408.93136597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -04826915 408.93136597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -04826916 408.93136597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -04826917 408.93139648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -04826918 408.93139648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -04826919 408.93142700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -04826920 408.93142700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -04827635 409.05688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -04827636 409.26391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04827637 409.26391602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04827638 409.26394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04827639 409.26394653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04827640 409.26397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04827641 409.26397705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04827642 409.26400757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04827643 409.26400757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04827644 409.26403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04827645 409.26403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04827646 409.26403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04827647 409.26403809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04827648 409.26406860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04827649 409.26406860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04827650 409.26409912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04827651 409.26412964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04827652 409.26416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04827653 409.26416016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04827654 409.26419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04827655 409.26419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04827656 409.26419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04827657 409.26419067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04827658 409.26422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04827659 409.26422119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04827660 409.26425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04827661 409.26425171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04827662 409.26428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04827663 409.26428223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04827664 409.26431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04827665 409.26431274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04827666 409.26434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04827667 409.26434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04827668 409.26434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04827669 409.26434326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04827670 409.26437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04827671 409.26437378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04827672 409.26440430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04827673 409.26443481 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04827674 409.26446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04827675 409.26446533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04827676 409.26449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04827677 409.26449585 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04827678 409.26452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04827679 409.26452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04827680 409.26452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04827681 409.26452637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04827682 409.26455688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04827683 409.26455688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04827684 409.26458740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04827685 409.26458740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04827686 409.26461792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04827687 409.26461792 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04827688 409.26464844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04827689 409.26464844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04827690 409.26467896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04827691 409.26467896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04827692 409.26467896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04827693 409.26470947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04827694 409.26473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04827695 409.26473999 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04827696 409.26477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04827697 409.26477051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04827698 409.26480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04827699 409.26480103 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04827700 409.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04827701 409.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04827702 409.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04827703 409.26483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04827704 409.26486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04827705 409.26486206 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04827706 409.26489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04827707 409.26489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04827708 409.26492310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04827709 409.26492310 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04827710 409.26495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04827711 409.26495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04827712 409.26498413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04827713 409.26498413 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04827714 409.26501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04827715 409.26501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04827716 409.26504517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04827717 409.26504517 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04827718 409.26507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04827719 409.26507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04827720 409.26510620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04827721 409.26510620 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04827722 409.26513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04827723 409.26513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04839948 409.43417358 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19108 -04839949 409.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19108 -04839950 409.43423462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19118 -04839951 409.43423462 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19118 -04839952 409.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19128 -04839953 409.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19128 -04839954 409.43429565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19138 -04839955 409.43429565 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19138 -04839956 409.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19148 -04839957 409.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19148 -04839958 409.43435669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19158 -04839959 409.43435669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19158 -04839960 409.43435669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19168 -04839961 409.43435669 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19168 -04839962 409.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19178 -04839963 409.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19178 -04839964 409.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19188 -04839965 409.43441772 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19188 -04839966 409.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19198 -04839967 409.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19198 -04839968 409.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a8 -04839969 409.43447876 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191a8 -04839970 409.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b8 -04839971 409.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191b8 -04839972 409.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c8 -04839973 409.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191c8 -04839974 409.43453979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d8 -04839975 409.43453979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191d8 -04839976 409.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e8 -04839977 409.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191e8 -04839978 409.43460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f8 -04839979 409.43460083 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x191f8 -04839980 409.43463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19208 -04839981 409.43463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19208 -04839982 409.43466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19218 -04839983 409.43466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19218 -04839984 409.43466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19228 -04839985 409.43466187 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19228 -04839986 409.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19238 -04839987 409.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19238 -04839988 409.43472290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19248 -04839989 409.43472290 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19248 -04839990 409.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19258 -04839991 409.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19258 -04845011 409.50579834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f38 -04845012 409.50582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -04845013 409.50582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -04845014 409.50582886 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -04845015 409.50585938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -04845016 409.50588989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -04845017 409.50588989 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -04845018 409.50592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -04845019 409.50592041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -04845020 409.50595093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -04845021 409.50595093 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -04845022 409.50598145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -04845023 409.50598145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -04845024 409.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -04845025 409.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -04845026 409.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -04845027 409.50601196 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -04845028 409.50604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -04845029 409.50604248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -04845030 409.50607300 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -04845031 409.50610352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -04845032 409.50613403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -04845033 409.50613403 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -04845034 409.50616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -04845035 409.50616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -04845036 409.50616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23008 -04845037 409.50616455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23008 -04845038 409.50619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23018 -04845039 409.50619507 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23018 -04845040 409.50622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23028 -04845041 409.50622559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23028 -04845042 409.50625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23038 -04845043 409.50625610 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23038 -04845044 409.50628662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23048 -04845045 409.50628662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23048 -04845046 409.50631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23058 -04845047 409.50631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23058 -04845048 409.50631714 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23068 -04845049 409.50634766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23068 -04845050 409.50637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23078 -04845051 409.50637817 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23078 -04845052 409.50640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23088 -04845053 409.50640869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23088 -04845054 409.50643921 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23098 -04851272 409.59512329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -04851273 409.59512329 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2a8 -04851274 409.59515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -04851275 409.59515381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -04851276 409.59518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -04851277 409.59518433 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -04851278 409.59521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -04851279 409.59521484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -04851280 409.59524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -04851281 409.59524536 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -04851282 409.59527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -04851283 409.59527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -04851284 409.59527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -04851285 409.59527588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -04851286 409.59530640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -04851287 409.59530640 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -04851288 409.59533691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -04851289 409.59533691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -04851290 409.59536743 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -04851291 409.59539795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -04851292 409.59542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -04851293 409.59542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -04851294 409.59542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -04851295 409.59542847 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -04851296 409.59545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -04851297 409.59545898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -04851298 409.59548950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -04851299 409.59548950 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -04851300 409.59552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -04851301 409.59552002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -04851302 409.59555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -04851303 409.59555054 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -04851304 409.59558105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -04851305 409.59558105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -04851306 409.59561157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -04851307 409.59561157 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -04851308 409.59564209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -04851309 409.59564209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -04851310 409.59567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -04851311 409.59567261 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -04851312 409.59570313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -04851313 409.59570313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -04851314 409.59573364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -04851315 409.59573364 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -04856580 409.67004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -04856581 409.67004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -04856582 409.67007446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -04856583 409.67007446 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -04856584 409.67010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -04856585 409.67010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -04856586 409.67010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -04856587 409.67013550 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -04856588 409.67016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -04856589 409.67016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -04856590 409.67019653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -04856591 409.67019653 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -04856592 409.67022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -04856593 409.67022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -04856594 409.67025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -04856595 409.67025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -04856596 409.67025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -04856597 409.67025757 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -04856598 409.67028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -04856599 409.67028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -04856600 409.67031860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -04856601 409.67031860 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -04856602 409.67034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -04856603 409.67034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -04856604 409.67037964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -04856605 409.67037964 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -04856606 409.67041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -04856607 409.67041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -04856608 409.67044067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39968 -04856609 409.67044067 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39968 -04856610 409.67047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39978 -04856611 409.67047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39978 -04856612 409.67050171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -04856613 409.67050171 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39988 -04856614 409.67053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -04856615 409.67053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39998 -04856616 409.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -04856617 409.67056274 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399a8 -04856618 409.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -04856619 409.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399b8 -04856620 409.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -04856621 409.67059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399c8 -04856622 409.67062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -04856623 409.67062378 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x399d8 -04869530 410.82922363 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04869531 410.85177612 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869532 410.85177612 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869533 411.43374634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -04869534 411.43377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -04869535 411.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869536 412.08898926 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869537 412.08905029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869538 412.08905029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869539 412.08905029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04869540 412.08920288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869541 412.08920288 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04869542 412.08923340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869543 412.08926392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04869544 412.85235596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04869545 412.87277222 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869546 412.87280273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869547 414.59515381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869548 414.59521484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869549 414.59521484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04869550 414.59521484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04869551 414.59536743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869552 414.59536743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04869553 414.59542847 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04869554 414.59542847 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04869555 414.85662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04869556 414.85665894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04869557 414.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04869558 414.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04869559 414.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04869560 414.85668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04869561 414.85671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04869562 414.85671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04869563 414.85675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04869564 414.85675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04869565 414.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04869566 414.85678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04869567 414.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04869568 414.85681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04869569 414.85684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04869570 414.85684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04869571 414.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04869572 414.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04869573 414.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04869574 414.85687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04869575 414.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04869576 414.85690308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04869577 414.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04869578 414.85693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04869579 414.85696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04869580 414.85696411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04869581 414.85699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04869582 414.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04869583 414.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04869584 414.85702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04869585 414.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04869586 414.85705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04869587 414.85708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04869588 414.85708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04869589 414.85711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04869590 414.85711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04869591 414.85714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04869592 414.85714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04869593 414.85717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04869594 414.85717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04869595 414.85720825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04869596 414.85720825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04869597 414.85723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04869598 414.85726929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04869599 414.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04869600 414.85729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04869601 414.85733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04869602 414.85733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04869603 414.85736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04869604 414.85736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04869605 414.85739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04869606 414.85739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04869607 414.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04869608 414.85742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04869609 414.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04869610 414.85745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04869611 414.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04869612 414.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04869613 414.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04869614 414.85748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04869615 414.85751343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04869616 414.85754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04869617 414.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04869618 414.85757446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04869619 414.85760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04869620 414.85760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04869621 414.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04869622 414.85763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04869623 414.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04869624 414.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04869625 414.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04869626 414.85766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04869627 414.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04869628 414.85769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04869629 414.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04869630 414.85772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04869631 414.85775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04869632 414.85775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04869633 414.85778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04869634 414.85778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04869635 414.85781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04869636 414.85781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04869637 414.85781860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04869638 414.85784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04869639 414.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04869640 414.85787964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04869641 414.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04869642 414.85791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04869643 414.85794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04869644 414.85794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04869645 414.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04869646 414.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04869647 414.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04869648 414.85797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04869649 414.85800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04869650 414.85800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04869651 414.85803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04869652 414.85803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04869653 414.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04869654 414.85806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04869655 414.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04869656 414.85809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04869657 414.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04869658 414.85812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04869659 414.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04869660 414.85815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04869661 414.85818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04869662 414.85818481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04869663 414.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04869664 414.85821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04869665 414.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04869666 414.85824585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04869667 414.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04869668 414.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04869669 414.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04869670 414.85827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04869671 414.85830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04869672 414.85830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04869673 414.85833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04869674 414.85833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04869675 414.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04869676 414.85836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04869677 414.85839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04869678 414.85842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04869679 414.85845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04869680 414.85845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04869681 414.85845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04869682 414.85845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04869683 414.85848999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04869684 414.85852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04869685 414.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04869686 414.85855103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04869687 414.85858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04869688 414.85858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04869689 414.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04869690 414.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04869691 414.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04869692 414.85861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04869693 414.85864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04869694 414.85864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04869695 414.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04869696 414.85867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04869697 414.85870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04869698 414.85870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04869699 414.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04869700 414.85873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04869701 414.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04869702 414.85876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04869703 414.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04869704 414.85879517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04869705 414.85882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04869706 414.85882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04869707 414.85885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04869708 414.85885620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04869709 414.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04869710 414.85888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04869711 414.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04869712 414.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04869713 414.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04869714 414.85891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04869715 414.85894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04869716 414.85894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04869717 414.85897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04869718 414.85900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04869719 414.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04869720 414.85903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04869721 414.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04869722 414.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04869723 414.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04869724 414.85906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04869725 414.85910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04869726 414.85910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04869727 414.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04869728 414.85913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04869729 414.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04869730 414.85916138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04869731 414.85919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04869732 414.85919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04869733 414.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04869734 414.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04869735 414.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04869736 414.85925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04869737 414.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04869738 414.85928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04869739 414.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04869740 414.85931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04869741 414.85934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04869742 414.85934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04869743 414.85937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04869744 414.85937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04869745 414.85940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04869746 414.85940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04869747 414.85943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04869748 414.85943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04869749 414.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04869750 414.85946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04869751 414.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04869752 414.85949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04869753 414.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04869754 414.85952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04869755 414.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04869756 414.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04869757 414.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04869758 414.85955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04869759 414.85958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04869760 414.85961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04869761 414.85964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04869762 414.85964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04869763 414.85968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04869764 414.85968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04869765 414.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04869766 414.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04869767 414.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04869768 414.85971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04869769 414.85974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04869770 414.85974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04869771 414.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04869772 414.85977173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04869773 414.85980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04869774 414.85983276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04869775 414.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04869776 414.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04869777 414.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04869778 414.85986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04869779 414.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04869780 414.85989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04869781 414.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04869782 414.85992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04869783 414.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04869784 414.85995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04869785 414.85998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04869786 414.85998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04869787 414.86001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04869788 414.86001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04869789 414.86004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04869790 414.86004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04869791 414.86004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04869792 414.86007690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04869793 414.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04869794 414.86010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04869795 414.86013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04869796 414.86013794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04869797 414.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04869798 414.86016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04869799 414.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04869800 414.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04869801 414.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04869802 414.86019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04869803 414.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04869804 414.86022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04869805 414.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04869806 414.86026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04869807 414.86029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04869808 414.86029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04869809 414.86032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04869810 414.86035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04869811 414.86035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04869812 414.86035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04869813 414.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04869814 414.86038208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04869815 414.86041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04869816 414.86041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04869817 414.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04869818 414.86044312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04869819 414.86047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04869820 414.86047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04869821 414.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04869822 414.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04869823 414.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04869824 414.86050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04869825 414.86053467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04869826 414.86053467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04869827 414.86056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04869828 414.86059570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04869829 414.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04869830 414.86062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04869831 414.86065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04869832 414.86065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04869833 414.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04869834 414.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04869835 414.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04869836 414.86068726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04869837 414.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04869838 414.86071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04869839 414.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04869840 414.86074829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04869841 414.86077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04869842 414.86077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04869843 414.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04869844 414.86080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04869845 414.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04869846 414.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04869847 414.86083984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04869848 414.86087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04869849 414.86090088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04869850 414.86090088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04869851 414.86093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04869852 414.86093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04869853 414.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04869854 414.86096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04869855 414.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04869856 414.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04869857 414.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04869858 414.86099243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04869859 414.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04869860 414.86102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04869861 414.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04869862 414.86105347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04869863 414.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04869864 414.86108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04869865 414.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04869866 414.86111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04869867 414.86114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04869868 414.86114502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04869869 414.86117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04869870 414.86117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04869871 414.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04869872 414.86120605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04869873 414.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04869874 414.86123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04869875 414.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04869876 414.86126709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04869877 414.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04869878 414.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04869879 414.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04869880 414.86129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04869881 414.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04869882 414.86132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04869883 414.86135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04869884 414.86135864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04869885 414.86138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04869886 414.86141968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04869887 414.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04869888 414.86145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04869889 414.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04869890 414.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04869891 414.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04869892 414.86148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04869893 414.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04869894 414.86151123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04869895 414.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04869896 414.86154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04869897 414.86157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04869898 414.86157227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04869899 414.86160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04869900 414.86160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04869901 414.86163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04869902 414.86163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04869903 414.86163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04869904 414.86166382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04869905 414.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04869906 414.86169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04869907 414.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04869908 414.86172485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04869909 414.86175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04869910 414.86175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04869911 414.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04869912 414.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04869913 414.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04869914 414.86178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04869915 414.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04869916 414.86181641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04869917 414.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04869918 414.86184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04869919 414.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04869920 414.86187744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04869921 414.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04869922 414.86190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04869923 414.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04869924 414.86193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04869925 414.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04869926 414.86196899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04869927 414.86199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04869928 414.86199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04869929 414.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04869930 414.86203003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04869931 414.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04869932 414.86206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04869933 414.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04869934 414.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04869935 414.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04869936 414.86209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04869937 414.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04869938 414.86212158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04869939 414.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04869940 414.86215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04869941 414.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04869942 414.86218262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04869943 414.86221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04869944 414.86224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04869945 414.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04869946 414.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04869947 414.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04869948 414.86227417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04869949 414.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04869950 414.86230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04869951 414.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04869952 414.86233521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04869953 414.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04869954 414.86236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04869955 414.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04869956 414.86239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04869957 414.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04869958 414.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04869959 414.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04869960 414.86242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04869961 414.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04869962 414.86245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04869963 414.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04869964 414.86248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04869965 414.86251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04869966 414.86254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04869967 414.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04869968 414.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04869969 414.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04869970 414.86257935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04869971 414.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04869972 414.86260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04869973 414.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04869974 414.86264038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04869975 414.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04869976 414.86267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04869977 414.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04869978 414.86270142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04869979 414.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04869980 414.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04869981 414.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04869982 414.86273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04869983 414.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04869984 414.86276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04869985 414.86279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04869986 414.86282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04869987 414.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04869988 414.86285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04869989 414.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04869990 414.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04869991 414.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04869992 414.86288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04869993 414.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04869994 414.86291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04869995 414.86294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04869996 414.86294556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04869997 414.86297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04869998 414.86297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04869999 414.86300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04870000 414.86300659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04870001 414.86303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04870002 414.86303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04870003 414.86306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04870004 414.86306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04870005 414.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04870006 414.86309814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04870007 414.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04870008 414.86312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04870009 414.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04870010 414.86315918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04870011 414.86318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04870012 414.86318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04870013 414.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04870014 414.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04870015 414.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04870016 414.86322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04870017 414.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04870018 414.86325073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04870019 414.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04870020 414.86328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04870021 414.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04870022 414.86331177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04870023 414.86334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04870024 414.86334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04870025 414.86337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04870026 414.86337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04870027 414.86340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04870028 414.86340332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04870029 414.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04870030 414.86343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04870031 414.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04870032 414.86346436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04870033 414.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04870034 414.86349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04870035 414.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04870036 414.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04870037 414.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04870038 414.86352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04870039 414.86355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04870040 414.86355591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04870041 414.86358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04870042 414.86358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04870043 414.86361694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04870044 414.86364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04870045 414.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04870046 414.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04870047 414.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04870048 414.86367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04870049 414.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04870050 414.86370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04870051 414.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04870052 414.86373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04870053 414.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04870054 414.86376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04870055 414.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04870056 414.86380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04870057 414.86383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04870058 414.86383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04870059 414.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04870060 414.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04870061 414.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04870062 414.86386108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04870063 414.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04870064 414.86389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04870065 414.86392212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04870066 414.86395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04870067 414.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04870068 414.86398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04870069 414.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04870070 414.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04870071 414.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04870072 414.86401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04870073 414.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04870074 414.86404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04870075 414.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04870076 414.86407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04870077 414.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04870078 414.86410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04870079 414.86413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04870080 414.86413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04870081 414.86416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04870082 414.86416626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04870083 414.86419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04870084 414.86419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04870085 414.86422729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04870086 414.86425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04870087 414.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04870088 414.86428833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04870089 414.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04870090 414.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04870091 414.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04870092 414.86431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04870093 414.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04870094 414.86434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04870095 414.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04870096 414.86437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04870097 414.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04870098 414.86441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04870099 414.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04870100 414.86444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04870101 414.86447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04870102 414.86447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04870103 414.86450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04870104 414.86450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04870105 414.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04870106 414.86453247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04870107 414.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04870108 414.86456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04870109 414.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04870110 414.86459351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04870111 414.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04870112 414.86462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04870113 414.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04870114 414.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04870115 414.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04870116 414.86465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04870117 414.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04870118 414.86468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04870119 414.86471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04870120 414.86474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04870121 414.86477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04870122 414.86477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04870123 414.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04870124 414.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04870125 414.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04870126 414.86480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04870127 414.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04870128 414.86483765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04870129 414.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04870130 414.86486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04870131 414.86489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04870132 414.86489868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04870133 414.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04870134 414.86492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04870135 414.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04870136 414.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04870137 414.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04870138 414.86495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04870139 414.86499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04870140 414.86502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04870141 414.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04870142 414.86505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04870143 414.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04870144 414.86508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04870145 414.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04870146 414.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04870147 414.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04870148 414.86511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04870149 414.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04870150 414.86514282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04870151 414.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04870152 414.86517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04870153 414.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04870154 414.86520386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04870155 414.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04870156 414.86523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04870157 414.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04870158 414.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04870159 414.86526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04870160 414.86529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04870161 414.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04870162 414.86532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04870163 414.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04870164 414.86535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04870165 414.86538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04870166 414.86538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04870167 414.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04870168 414.86541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04870169 414.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04870170 414.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04870171 414.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04870172 414.86544800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04870173 414.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04870174 414.86547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04870175 414.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04870176 414.86550903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04870177 414.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04870178 414.86553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04870179 414.86557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04870180 414.86560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04870181 414.86560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04870182 414.86560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04870183 414.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04870184 414.86563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04870185 414.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04870186 414.86566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04870187 414.86569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04870188 414.86569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04870189 414.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04870190 414.86572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04870191 414.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04870192 414.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04870193 414.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04870194 414.86575317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04870195 414.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04870196 414.86578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04870197 414.86581421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04870198 414.86581421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04870199 414.86584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04870200 414.86587524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04870201 414.86590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04870202 414.86590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04870203 414.86590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04870204 414.86590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04870205 414.86593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04870206 414.86593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04870207 414.86596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04870208 414.86596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04870209 414.86599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04870210 414.86599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04870211 414.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04870212 414.86602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04870213 414.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04870214 414.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04870215 414.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04870216 414.86605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04870217 414.86608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04870218 414.86611938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04870219 414.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04870220 414.86614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04870221 414.86618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04870222 414.86618042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04870223 414.86621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04870224 414.86621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04870225 414.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04870226 414.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04870227 414.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04870228 414.86624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04870229 414.86627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04870230 414.86627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04870231 414.86630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04870232 414.86630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04870233 414.86633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04870234 414.86633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04870235 414.86636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04870236 414.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04870237 414.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04870238 414.86639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04870239 414.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04870240 414.86642456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04870241 414.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04870242 414.86645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04870243 414.86648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04870244 414.86648560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04870245 414.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04870246 414.86651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04870247 414.86654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04870248 414.86654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04870249 414.86654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04870250 414.86657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04870251 414.86660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04870252 414.86660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04870253 414.86663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04870254 414.86663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04870255 414.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04870256 414.86666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04870257 414.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04870258 414.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04870259 414.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04870260 414.86669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04870261 414.86672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04870262 414.86672974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04870263 414.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04870264 414.86676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04870265 414.86679077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04870266 414.86682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04870267 414.86685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04870268 414.86685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04870269 414.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04870270 414.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04870271 414.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04870272 414.86688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04870273 414.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04870274 414.86691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04870275 414.86694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04870276 414.86694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04870277 414.86697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04870278 414.86697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04870279 414.86700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04870280 414.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04870281 414.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04870282 414.86703491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04870283 414.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04870284 414.86706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04870285 414.86709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04870286 414.86709595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04870287 414.86712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04870288 414.86712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04870289 414.86715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04870290 414.86715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04870291 414.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04870292 414.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04870293 414.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04870294 414.86718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04870295 414.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04870296 414.86721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04870297 414.86724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04870298 414.86727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04870299 414.86730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04870300 414.86730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04870301 414.86734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04870302 414.86734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04870303 414.86734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04870304 414.86734009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04870305 414.86737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04870306 414.86737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04870307 414.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04870308 414.86740112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04870309 414.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04870310 414.86743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04870311 414.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04870312 414.86746216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04870313 414.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04870314 414.86749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04870315 414.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04870316 414.86752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04870317 414.86755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04870318 414.86755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04870319 414.86758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04870320 414.86758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04870321 414.86761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04870322 414.86761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04870323 414.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04870324 414.86764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04870325 414.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04870326 414.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04870327 414.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04870328 414.86767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04870329 414.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04870330 414.86770630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04870331 414.86773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04870332 414.86773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04870333 414.86776733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04870334 414.86779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04870335 414.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04870336 414.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04870337 414.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04870338 414.86782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04870339 414.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04870340 414.86785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04870341 414.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04870342 414.86788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04870343 414.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04870344 414.86791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04870345 414.86795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04870346 414.86795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04870347 414.86798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04870348 414.86798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04870349 414.86798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04870350 414.86798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04870351 414.86801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04870352 414.86801147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04870353 414.86804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04870354 414.86807251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04870355 414.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04870356 414.86810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04870357 414.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04870358 414.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04870359 414.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04870360 414.86813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04870361 414.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04870362 414.86816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04870363 414.86819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04870364 414.86819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04870365 414.86822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04870366 414.86822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04870367 414.86825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04870368 414.86825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04870369 414.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04870370 414.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04870371 414.86828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04870372 414.86831665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04870373 414.86834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04870374 414.86834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04870375 414.86837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04870376 414.86837769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04870377 414.86840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04870378 414.86840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04870379 414.86843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04870380 414.86843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04870381 414.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04870382 414.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04870383 414.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04870384 414.86846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04870385 414.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04870386 414.86849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04870387 414.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04870388 414.86853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04870389 414.86856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04870390 414.86856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04870391 414.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04870392 414.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04870393 414.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04870394 414.86862183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04870395 414.86865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04870396 414.86865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04870397 414.86868286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04870398 414.86868286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04870399 414.86871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04870400 414.86871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04870401 414.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04870402 414.86874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04870403 414.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04870404 414.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04870405 414.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04870406 414.86877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04870407 414.86880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04870408 414.86883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04870409 414.86886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04870410 414.86886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04870411 414.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04870412 414.86889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04870413 414.86892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04870414 414.86892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04870415 414.86892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04870416 414.86892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04870417 414.86895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04870418 414.86895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04870419 414.86898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04870420 414.86898804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04870421 414.86901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04870422 414.86901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04870423 414.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04870424 414.86904907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04870425 414.86907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04870426 414.86907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04870427 414.86907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04870428 414.86911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04870429 414.86914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04870430 414.86914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04870431 414.86917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04870432 414.86917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04870433 414.86920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04870434 414.86920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04870435 414.86923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04870436 414.86923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04870437 414.86926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04870438 414.86926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04870439 414.86926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04870440 414.86926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04870441 414.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04870442 414.86929321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04870443 414.86932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04870444 414.86932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04870445 414.86935425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04870446 414.86935425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04870447 414.86938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04870448 414.86941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04870449 414.86941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04870450 414.86941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04870451 414.86944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04870452 414.86944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04870453 414.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04870454 414.86947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04870455 414.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04870456 414.86950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04870457 414.86953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04870458 414.86953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04870459 414.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04870460 414.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04870461 414.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04870462 414.86956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04870463 414.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04870464 414.86959839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04870465 414.86962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04870466 414.86962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04870467 414.86965942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04870468 414.86968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04870469 414.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04870470 414.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04870471 414.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04870472 414.86972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04870473 414.86975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04870474 414.86975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04870475 414.86978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04870476 414.86978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04870477 414.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04870478 414.86981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04870479 414.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04870480 414.86984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04870481 414.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04870482 414.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04870483 414.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04870484 414.86987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04870485 414.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04870486 414.86990356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04870487 414.86993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04870488 414.86996460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04870489 414.86999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04870490 414.86999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04870491 414.87002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04870492 414.87002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04870493 414.87005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04870494 414.87005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04870495 414.87005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04870496 414.87005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04870497 414.87008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04870498 414.87008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04870499 414.87011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04870500 414.87011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04870501 414.87014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04870502 414.87014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04870503 414.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04870504 414.87017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04870505 414.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04870506 414.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04870507 414.87020874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04870508 414.87023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04870509 414.87026978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04870510 414.87026978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04870511 414.87030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04870512 414.87030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04870513 414.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04870514 414.87033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04870515 414.87036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04870516 414.87036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04870517 414.87036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04870518 414.87036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04870519 414.87039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04870520 414.87039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04870521 414.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04870522 414.87042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04870523 414.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04870524 414.87045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04870525 414.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04870526 414.87048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04870527 414.87051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04870528 414.87051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04870529 414.87054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04870530 414.87054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04870531 414.87057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04870532 414.87057495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04870533 414.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04870534 414.87060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04870535 414.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04870536 414.87063599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04870537 414.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04870538 414.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04870539 414.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04870540 414.87066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04870541 414.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04870542 414.87069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04870543 414.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04870544 414.87072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04870545 414.87075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04870546 414.87075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04870547 414.87078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04870548 414.87081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04870549 414.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04870550 414.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04870551 414.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04870552 414.87084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04870553 414.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04870554 414.87088013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04870555 414.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04870556 414.87091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04870557 414.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04870558 414.87094116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04870559 414.87097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04870560 414.87097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04870561 414.87100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04870562 414.87100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04870563 414.87100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04870564 414.87100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04870565 414.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04870566 414.87103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04870567 414.87109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04870568 414.87109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04870569 414.87112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04870570 414.87112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04870571 414.87115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04870572 414.87115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04870573 414.87118530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04870574 414.87118530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04870575 414.87121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04870576 414.87121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04870577 414.87124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04870578 414.87124634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04870579 414.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04870580 414.87127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04870581 414.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04870582 414.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04870583 414.87130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04870584 414.87133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04870585 414.87136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04870586 414.87136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04870587 414.87139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04870588 414.87139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04870589 414.87142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04870590 414.87142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04870591 414.87145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04870592 414.87145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04870593 414.87145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04870594 414.87145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04870595 414.87149048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04870596 414.87149048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04870597 414.87152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04870598 414.87152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04870599 414.87155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04870600 414.87155151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04870601 414.87158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04870602 414.87158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04870603 414.87161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04870604 414.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04870605 414.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04870606 414.87164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04870607 414.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04870608 414.87167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04870609 414.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04870610 414.87170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04870611 414.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04870612 414.87173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04870613 414.87176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04870614 414.87176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04870615 414.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04870616 414.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04870617 414.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04870618 414.87179565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04870619 414.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04870620 414.87182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04870621 414.87185669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04870622 414.87185669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04870623 414.87188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04870624 414.87191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04870625 414.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04870626 414.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04870627 414.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04870628 414.87194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04870629 414.87197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04870630 414.87197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04870631 414.87200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04870632 414.87200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04870633 414.87203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04870634 414.87203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04870635 414.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04870636 414.87207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04870637 414.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04870638 414.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04870639 414.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04870640 414.87210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04870641 414.87213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04870642 414.87213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04870643 414.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04870644 414.87216187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04870645 414.87219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04870646 414.87222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04870647 414.87225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04870648 414.87225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04870649 414.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04870650 414.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04870651 414.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04870652 414.87228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04870653 414.87231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04870654 414.87231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04870655 414.87234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04870656 414.87234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04870657 414.87237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04870658 414.87237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04870659 414.87240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04870660 414.87240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04870661 414.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04870662 414.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04870663 414.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04870664 414.87243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04870665 414.87246704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04870666 414.87249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04870667 414.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04870668 414.87252808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04870669 414.87255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04870670 414.87255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04870671 414.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04870672 414.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04870673 414.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04870674 414.87258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04870675 414.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04870676 414.87261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04870677 414.87265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04870678 414.87265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04870679 414.87268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04870680 414.87268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04870681 414.87271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04870682 414.87271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04870683 414.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04870684 414.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04870685 414.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04870686 414.87274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04870687 414.87277222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04870688 414.87280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04870689 414.87283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04870690 414.87283325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04870691 414.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04870692 414.87286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04870693 414.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04870694 414.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04870695 414.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04870696 414.87289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04870697 414.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04870698 414.87292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04870699 414.87295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04870700 414.87295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04870701 414.87298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04870702 414.87298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04870703 414.87301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04870704 414.87301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04870705 414.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04870706 414.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04870707 414.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04870708 414.87307739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04870709 414.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04870710 414.87310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04870711 414.87313843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04870712 414.87313843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04870713 414.87316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04870714 414.87316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04870715 414.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04870716 414.87319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04870717 414.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04870718 414.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04870719 414.87322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04870720 414.87326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04870721 414.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04870722 414.87329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04870723 414.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04870724 414.87332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04870725 414.87335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04870726 414.87335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04870727 414.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04870728 414.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04870729 414.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04870730 414.87338257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04870731 414.87341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04870732 414.87341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04870733 414.87344360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04870734 414.87347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04870735 414.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04870736 414.87350464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04870737 414.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04870738 414.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04870739 414.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04870740 414.87353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04870741 414.87356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04870742 414.87356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04870743 414.87359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04870744 414.87359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04870745 414.87362671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04870746 414.87362671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04870747 414.87365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04870748 414.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04870749 414.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04870750 414.87368774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04870751 414.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04870752 414.87371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04870753 414.87374878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04870754 414.87374878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04870755 414.87377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04870756 414.87377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04870757 414.87380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04870758 414.87380981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04870759 414.87384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04870760 414.87384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04870761 414.87387085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04870762 414.87387085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04870763 414.87387085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04870764 414.87390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04870765 414.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04870766 414.87393188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04870767 414.87396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04870768 414.87396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04870769 414.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04870770 414.87399292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04870771 414.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04870772 414.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04870773 414.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04870774 414.87402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04870775 414.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04870776 414.87405396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04870777 414.87408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04870778 414.87408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04870779 414.87411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04870780 414.87411499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04870781 414.87414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04870782 414.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04870783 414.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04870784 414.87417603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04870785 414.87420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04870786 414.87420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04870787 414.87423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04870788 414.87423706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04870789 414.87426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04870790 414.87426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04870791 414.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04870792 414.87429810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04870793 414.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04870794 414.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04870795 414.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04870796 414.87432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04870797 414.87435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04870798 414.87435913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04870799 414.87438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04870800 414.87438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04870801 414.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04870802 414.87442017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04870803 414.87445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04870804 414.87448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04870805 414.87448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04870806 414.87448120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04870807 414.87451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04870808 414.87451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04870809 414.87454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04870810 414.87454224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04870811 414.87454224 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04870812 414.87457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04870813 414.87457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04870814 414.87460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04870815 414.87460327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04870816 414.87463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04870817 414.87463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04870818 414.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04870819 414.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04870820 414.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04870821 414.87466431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04870822 414.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04870823 414.87469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04870824 414.87472534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04870825 414.87475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04870826 414.87478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04870827 414.87478638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04870828 414.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04870829 414.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04870830 414.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04870831 414.87481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04870832 414.87484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04870833 414.87484741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04870834 414.87487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04870835 414.87487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04870836 414.87490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04870837 414.87490845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04870838 414.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04870839 414.87493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04870840 414.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04870841 414.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04870842 414.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04870843 414.87496948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04870844 414.87500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04870845 414.87503052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04870846 414.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04870847 414.87506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04870848 414.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04870849 414.87509155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04870850 414.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04870851 414.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04870852 414.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04870853 414.87512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04870854 414.87515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04870855 414.87515259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04870856 414.87518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04870857 414.87518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04870858 414.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04870859 414.87521362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04870860 414.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04870861 414.87524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04870862 414.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04870863 414.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04870864 414.87527466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04870865 414.87530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04870866 414.87533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04870867 414.87533569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04870868 414.87536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04870869 414.87536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04870870 414.87539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04870871 414.87539673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04870872 414.87542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04870873 414.87542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04870874 414.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04870875 414.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04870876 414.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04870877 414.87545776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04870878 414.87548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04870879 414.87548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04870880 414.87551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04870881 414.87551880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04870882 414.87554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04870883 414.87554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04870884 414.87557983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04870885 414.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04870886 414.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04870887 414.87561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04870888 414.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04870889 414.87564087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04870890 414.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04870891 414.87567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04870892 414.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04870893 414.87570190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04870894 414.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04870895 414.87573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04870896 414.87576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04870897 414.87576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04870898 414.87576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04870899 414.87576294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04870900 414.87579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04870901 414.87579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04870902 414.87582397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04870903 414.87585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04870904 414.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04870905 414.87588501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04870906 414.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04870907 414.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04870908 414.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04870909 414.87591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04870910 414.87594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04870911 414.87594604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04870912 414.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04870913 414.87597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04870914 414.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04870915 414.87600708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04870916 414.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04870917 414.87603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04870918 414.87606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04870919 414.87606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04870920 414.87606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04870921 414.87606812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04870922 414.87609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04870923 414.87612915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04870924 414.87615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04870925 414.87615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04870926 414.87619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04870927 414.87619019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04870928 414.87622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04870929 414.87622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04870930 414.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04870931 414.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04870932 414.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04870933 414.87625122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04870934 414.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04870935 414.87628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04870936 414.87631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04870937 414.87631226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04870938 414.87634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04870939 414.87634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04870940 414.87637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04870941 414.87637329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04870942 414.87640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04870943 414.87640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04870944 414.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04870945 414.87643433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04870946 414.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04870947 414.87646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04870948 414.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04870949 414.87649536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04870950 414.87652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04870951 414.87652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04870952 414.87655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04870953 414.87655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04870954 414.87655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04870955 414.87655640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04870956 414.87658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04870957 414.87658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04870958 414.87661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04870959 414.87661743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04870960 414.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04870961 414.87667847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04870962 414.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04870963 414.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04870964 414.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04870965 414.87670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04870966 414.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04870967 414.87673950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04870968 414.87677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04870969 414.87677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04870970 414.87680054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04870971 414.87683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04870972 414.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04870973 414.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04870974 414.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04870975 414.87686157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04870976 414.87689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04870977 414.87689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04870978 414.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04870979 414.87692261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04870980 414.87695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04870981 414.87695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04870982 414.87698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04870983 414.87698364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04870984 414.87701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04870985 414.87701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04870986 414.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04870987 414.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04870988 414.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04870989 414.87704468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04870990 414.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04870991 414.87707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04870992 414.87710571 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04870993 414.87713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04870994 414.87716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04870995 414.87716675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04870996 414.87719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04870997 414.87719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04870998 414.87719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04870999 414.87719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04871000 414.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04871001 414.87722778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04871002 414.87725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04871003 414.87725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04871004 414.87728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04871005 414.87728882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04871006 414.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04871007 414.87731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04871008 414.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04871009 414.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04871010 414.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04871011 414.87734985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04871012 414.87738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04871013 414.87741089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04871014 414.87744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04871015 414.87744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04871016 414.87747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04871017 414.87747192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04871018 414.87750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04871019 414.87750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04871020 414.87750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04871021 414.87750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04871022 414.87753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04871023 414.87753296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04871024 414.87756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04871025 414.87756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04871026 414.87759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04871027 414.87759399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04871028 414.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04871029 414.87762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04871030 414.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04871031 414.87765503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04871032 414.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04871033 414.87768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04871034 414.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04871035 414.87771606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04871036 414.87774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04871037 414.87774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04871038 414.87777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04871039 414.87777710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04871040 414.87780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04871041 414.87780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04871042 414.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04871043 414.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04871044 414.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04871045 414.87783813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04871046 414.87786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04871047 414.87786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04871048 414.87789917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04871049 414.87789917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04871050 414.87792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04871051 414.87796021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04871052 414.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04871053 414.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04871054 414.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04871055 414.87799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04871056 414.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04871057 414.87802124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04871058 414.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04871059 414.87808228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04871060 414.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04871061 414.87811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04871062 414.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04871063 414.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04871064 414.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04871065 414.87814331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04871066 414.87817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04871067 414.87817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04871068 414.87820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04871069 414.87820435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04871070 414.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04871071 414.87823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04871072 414.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04871073 414.87826538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04871074 414.87829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04871075 414.87829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04871076 414.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04871077 414.87832642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04871078 414.87835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04871079 414.87835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04871080 414.87838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04871081 414.87838745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04871082 414.87841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04871083 414.87841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04871084 414.87844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04871085 414.87844849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04871086 414.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04871087 414.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04871088 414.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04871089 414.87847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04871090 414.87850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04871091 414.87850952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04871092 414.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04871093 414.87854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04871094 414.87857056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04871095 414.87860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04871096 414.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04871097 414.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04871098 414.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04871099 414.87863159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04871100 414.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04871101 414.87866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04871102 414.87869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04871103 414.87869263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04871104 414.87872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04871105 414.87872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04871106 414.87875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04871107 414.87875366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04871108 414.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04871109 414.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04871110 414.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04871111 414.87878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04871112 414.87881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04871113 414.87881470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04871114 414.87884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04871115 414.87884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04871116 414.87887573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04871117 414.87890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04871118 414.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04871119 414.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04871120 414.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04871121 414.87893677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04871122 414.87896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04871123 414.87896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04871124 414.87899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04871125 414.87899780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04871126 414.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04871127 414.87902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04871128 414.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04871129 414.87905884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04871130 414.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04871131 414.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04871132 414.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04871133 414.87908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04871134 414.87911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04871135 414.87911987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04871136 414.87915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04871137 414.87915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04871138 414.87918091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04871139 414.87921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04871140 414.87924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04871141 414.87924194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04871142 414.87927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04871143 414.87927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04871144 414.87927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04871145 414.87927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04871146 414.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04871147 414.87930298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04871148 414.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04871149 414.87933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04871150 414.87936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04871151 414.87936401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04871152 414.87939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04871153 414.87939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04871154 414.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04871155 414.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04871156 414.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04871157 414.87942505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04871158 414.87945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04871159 414.87948608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04871160 414.87951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04871161 414.87951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04871162 414.87954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04871163 414.87954712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04871164 414.87957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04871165 414.87957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04871166 414.87957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04871167 414.87957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04871168 414.87960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04871169 414.87960815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04871170 414.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04871171 414.87963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04871172 414.87966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04871173 414.87966919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04871174 414.87969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04871175 414.87969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04871176 414.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04871177 414.87973022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04871178 414.87976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04871179 414.87976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04871180 414.87979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04871181 414.87979126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04871182 414.87982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04871183 414.87982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04871184 414.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04871185 414.87985229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04871186 414.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04871187 414.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04871188 414.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04871189 414.87988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04871190 414.87991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04871191 414.87991333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04871192 414.87994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04871193 414.87997437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04871194 414.88000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04871195 414.88000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04871196 414.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04871197 414.88003540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04871198 414.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04871199 414.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04871200 414.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04871201 414.88006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04871202 414.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04871203 414.88009644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04871204 414.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04871205 414.88012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04871206 414.88015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04871207 414.88015747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04871208 414.88018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04871209 414.88018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04871210 414.88021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04871211 414.88021851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04871212 414.88024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04871213 414.88024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04871214 414.88027954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04871215 414.88027954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04871216 414.88031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04871217 414.88031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04871218 414.88034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04871219 414.88034058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04871220 414.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04871221 414.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04871222 414.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04871223 414.88037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04871224 414.88040161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04871225 414.88040161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04871226 414.88043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04871227 414.88046265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04871228 414.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04871229 414.88049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04871230 414.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04871231 414.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04871232 414.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04871233 414.88052368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04871234 414.88055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04871235 414.88055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04871236 414.88058472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04871237 414.88058472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04871238 414.88061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04871239 414.88061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04871240 414.88064575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04871241 414.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04871242 414.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04871243 414.88067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04871244 414.88070679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04871245 414.88070679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04871246 414.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04871247 414.88073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04871248 414.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04871249 414.88076782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04871250 414.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04871251 414.88079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04871252 414.88082886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04871253 414.88082886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04871254 414.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04871255 414.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04871256 414.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04871257 414.88085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04871258 414.88088989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04871259 414.88092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04871260 414.88095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04871261 414.88095093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04871262 414.88098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04871263 414.88098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04871264 414.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04871265 414.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04871266 414.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04871267 414.88101196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04871268 414.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04871269 414.88104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04871270 414.88107300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04874782 414.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -04874783 414.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -04874784 414.93276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -04874785 414.93276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -04874786 414.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -04874787 414.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -04874788 414.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -04874789 414.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -04874790 414.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -04874791 414.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -04874792 414.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -04874793 414.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -04874794 414.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -04874795 414.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -04874796 414.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -04874797 414.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -04874798 414.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -04874799 414.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -04874800 414.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -04874801 414.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -04874802 414.93301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -04874803 414.93301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -04874804 414.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -04874805 414.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -04874806 414.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -04874807 414.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -04874808 414.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -04874809 414.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -04874810 414.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -04874811 414.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -04874812 414.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -04874813 414.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -04874814 414.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -04874815 414.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -04874816 414.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -04874817 414.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -04874818 414.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -04874819 414.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -04874820 414.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -04874821 414.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -04874822 414.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -04874823 414.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -04874824 414.93331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -04874825 414.93331909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -04880374 415.01379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16248 -04880375 415.01379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16248 -04880376 415.01382446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16258 -04880377 415.01382446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16258 -04880378 415.01382446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16268 -04880379 415.01382446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16268 -04880380 415.01388550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16278 -04880381 415.01388550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16278 -04880382 415.01391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16288 -04880383 415.01391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16288 -04880384 415.01394653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -04880385 415.01394653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16298 -04880386 415.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a8 -04880387 415.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162a8 -04880388 415.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b8 -04880389 415.01397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162b8 -04880390 415.01400757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c8 -04880391 415.01400757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162c8 -04880392 415.01403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d8 -04880393 415.01403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162d8 -04880394 415.01406860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e8 -04880395 415.01406860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162e8 -04880396 415.01409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f8 -04880397 415.01409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x162f8 -04880398 415.01412964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16308 -04880399 415.01412964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16308 -04880400 415.01416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16318 -04880401 415.01416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16318 -04880402 415.01419067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16328 -04880403 415.01419067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16328 -04880404 415.01422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16338 -04880405 415.01422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16338 -04880406 415.01425171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16348 -04880407 415.01425171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16348 -04880408 415.01428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16358 -04880409 415.01428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16358 -04880410 415.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16368 -04880411 415.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16368 -04880412 415.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16378 -04880413 415.01431274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16378 -04880414 415.01434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16388 -04880415 415.01434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16388 -04880416 415.01437378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16398 -04880417 415.01440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16398 -04886520 415.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -04886521 415.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -04886522 415.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -04886523 415.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -04886524 415.10293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -04886525 415.10293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -04886526 415.10293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -04886527 415.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -04886528 415.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -04886529 415.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -04886530 415.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -04886531 415.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -04886532 415.10305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -04886533 415.10305786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -04886534 415.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c8 -04886535 415.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c8 -04886536 415.10311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d8 -04886537 415.10311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d8 -04886538 415.10311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e8 -04886539 415.10311890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e8 -04886540 415.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f8 -04886541 415.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222f8 -04886542 415.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22308 -04886543 415.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22308 -04886544 415.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22318 -04886545 415.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22318 -04886546 415.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22328 -04886547 415.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22328 -04886548 415.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22338 -04886549 415.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22338 -04886550 415.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22348 -04886551 415.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22348 -04886552 415.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22358 -04886553 415.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22358 -04886554 415.10336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -04886555 415.10336304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -04886556 415.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -04886557 415.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -04886558 415.10342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -04886559 415.10342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -04886560 415.10342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -04886561 415.10342407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -04886562 415.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -04886563 415.10348511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -04892236 415.18444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -04892237 415.18444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4f8 -04892238 415.18447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -04892239 415.18447876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d508 -04892240 415.18450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -04892241 415.18453979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d518 -04892242 415.18457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -04892243 415.18457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d528 -04892244 415.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -04892245 415.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d538 -04892246 415.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d548 -04892247 415.18460083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d548 -04892248 415.18463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d558 -04892249 415.18463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d558 -04892250 415.18466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d568 -04892251 415.18466187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d568 -04892252 415.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d578 -04892253 415.18469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d578 -04892254 415.18472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -04892255 415.18472290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -04892256 415.18475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -04892257 415.18475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -04892258 415.18475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -04892259 415.18475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -04892260 415.18478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -04892261 415.18478394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -04892262 415.18481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -04892263 415.18484497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -04892264 415.18487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -04892265 415.18487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -04892266 415.18490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -04892267 415.18490601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -04892268 415.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -04892269 415.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -04892270 415.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -04892271 415.18493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -04892272 415.18496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d618 -04892273 415.18496704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d618 -04892274 415.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d628 -04892275 415.18499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d628 -04892276 415.18502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -04892277 415.18502808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -04892278 415.18505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -04892279 415.18505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -04909050 415.43264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e268 -04909051 415.43264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e268 -04909052 415.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e278 -04909053 415.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e278 -04909054 415.43270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e288 -04909055 415.43270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e288 -04909056 415.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e298 -04909057 415.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e298 -04909058 415.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -04909059 415.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -04909060 415.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -04909061 415.43276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -04909062 415.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -04909063 415.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -04909064 415.43283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -04909065 415.43283081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -04909066 415.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -04909067 415.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -04909068 415.43289185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -04909069 415.43289185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -04909070 415.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -04909071 415.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -04909072 415.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -04909073 415.43295288 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -04909074 415.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -04909075 415.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -04909076 415.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -04909077 415.43301392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -04909078 415.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -04909079 415.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -04909080 415.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -04909081 415.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -04909082 415.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -04909083 415.43307495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -04909084 415.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -04909085 415.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -04909086 415.43313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -04909087 415.43313599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -04909088 415.43316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -04909089 415.43316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -04909090 415.43319702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -04909091 415.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -04909092 415.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -04909093 415.43322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3b8 -04911444 416.89776611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04911445 416.91995239 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911446 416.91998291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911447 417.10168457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911448 417.10171509 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911449 417.10174561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911450 417.10174561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04911451 417.10186768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911452 417.10186768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04911453 417.10192871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911454 417.10195923 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04911455 418.92266846 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04911456 418.94223022 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911457 418.94223022 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911458 419.60989380 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911459 419.60992432 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911460 419.60992432 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04911461 419.60995483 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04911462 419.61007690 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911463 419.61007690 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04911464 419.61013794 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04911465 419.61016846 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04911466 420.46713257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04911467 420.46713257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04911468 420.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04911469 420.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04911470 420.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04911471 420.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04911472 420.46719360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04911473 420.46719360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04911474 420.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04911475 420.46725464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04911476 420.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04911477 420.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04911478 420.46731567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04911479 420.46731567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04911480 420.46731567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04911481 420.46731567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04911482 420.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04911483 420.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04911484 420.46737671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04911485 420.46737671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04911486 420.46740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04911487 420.46740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04911488 420.46743774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04911489 420.46743774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04911490 420.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04911491 420.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04911492 420.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04911493 420.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04911494 420.46749878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04911495 420.46749878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04911496 420.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04911497 420.46755981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04911498 420.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04911499 420.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04911500 420.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04911501 420.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04911502 420.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04911503 420.46762085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04911504 420.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04911505 420.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04911506 420.46768188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04911507 420.46768188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04911508 420.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04911509 420.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04911510 420.46774292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04911511 420.46774292 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04911512 420.46777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04911513 420.46777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04911514 420.46780396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04911515 420.46780396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04911516 420.46783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04911517 420.46783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04911518 420.46786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04911519 420.46786499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04911520 420.46789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04911521 420.46789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04911522 420.46792603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04911523 420.46792603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04911524 420.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04911525 420.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04911526 420.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04911527 420.46795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04911528 420.46798706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04911529 420.46798706 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04911530 420.46801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04911531 420.46801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04911532 420.46804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04911533 420.46804810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04911534 420.46807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04911535 420.46810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04911536 420.46810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04911537 420.46810913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04911538 420.46813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04911539 420.46813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04911540 420.46817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04911541 420.46817017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04911542 420.46820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04911543 420.46820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04911544 420.46823120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04911545 420.46823120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04911546 420.46826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04911547 420.46826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04911548 420.46826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04911549 420.46826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04911550 420.46829224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04911551 420.46829224 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04911552 420.46835327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04911553 420.46835327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04911554 420.46838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04911555 420.46838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04911556 420.46841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04911557 420.46841431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04911558 420.46844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04911559 420.46844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04911560 420.46847534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04911561 420.46847534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04911562 420.46853638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04911563 420.46853638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04911564 420.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04911565 420.46856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04911566 420.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04911567 420.46859741 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04911568 420.46862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04911569 420.46862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04911570 420.46868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04911571 420.46868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04911572 420.46871948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04911573 420.46871948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04911574 420.46875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04911575 420.46875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04911576 420.46878052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04911577 420.46878052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04911578 420.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04911579 420.46884155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04911580 420.46887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04911581 420.46890259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04911582 420.46890259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04911583 420.46890259 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04911584 420.46896362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04911585 420.46896362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04911586 420.46899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04911587 420.46899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04911588 420.46905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04911589 420.46905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04911590 420.46908569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04911591 420.46908569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04911592 420.46914673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04911593 420.46914673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04911594 420.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04911595 420.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04911596 420.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04911597 420.46920776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04911598 420.46926880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04911599 420.46926880 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04911600 420.46929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04911601 420.46929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04911602 420.46932983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04911603 420.46936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04911604 420.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04911605 420.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04911606 420.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04911607 420.46939087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04911608 420.46945190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04911609 420.46945190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04911610 420.46948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04911611 420.46948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04911612 420.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04911613 420.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04911614 420.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04911615 420.46954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04911616 420.46960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04911617 420.46960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04911618 420.46963501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04911619 420.46963501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04911620 420.46966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04911621 420.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04911622 420.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04911623 420.46969604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04911624 420.46972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04911625 420.46975708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04911626 420.46978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04911627 420.46978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04911628 420.46981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04911629 420.46981812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04911630 420.46984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04911631 420.46984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04911632 420.46990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04911633 420.46990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04911634 420.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04911635 420.46994019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04911636 420.47000122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04911637 420.47000122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04911638 420.47000122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04911639 420.47000122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04911640 420.47006226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04911641 420.47006226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04911642 420.47009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04911643 420.47012329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04911644 420.47015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04911645 420.47015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04911646 420.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04911647 420.47018433 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04911648 420.47021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04911649 420.47021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04911650 420.47027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04911651 420.47027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04911652 420.47030640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04911653 420.47030640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04911654 420.47033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04911655 420.47033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04911656 420.47036743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04911657 420.47036743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04911658 420.47039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04911659 420.47039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04911660 420.47045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04911661 420.47045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04911662 420.47048950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04911663 420.47048950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04911664 420.47052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04911665 420.47052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04911666 420.47055054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04911667 420.47055054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04911668 420.47061157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04911669 420.47061157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04911670 420.47064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04911671 420.47064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04911672 420.47067261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04911673 420.47067261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04911674 420.47070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04911675 420.47070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04911676 420.47076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04911677 420.47076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04911678 420.47079468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04911679 420.47079468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04911680 420.47082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04911681 420.47082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04911682 420.47088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04911683 420.47088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04911684 420.47091675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04911685 420.47091675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04911686 420.47097778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04911687 420.47097778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04911688 420.47097778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04911689 420.47097778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04911690 420.47103882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04911691 420.47103882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04911692 420.47106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04911693 420.47109985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04911694 420.47113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04911695 420.47113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04911696 420.47113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04911697 420.47116089 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04911698 420.47119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04911699 420.47119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04911700 420.47122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04911701 420.47122192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04911702 420.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04911703 420.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04911704 420.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04911705 420.47128296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04911706 420.47134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04911707 420.47134399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04911708 420.47137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04911709 420.47137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04911710 420.47140503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04911711 420.47143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04911712 420.47143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04911713 420.47143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04911714 420.47146606 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04911715 420.47149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04911716 420.47152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04911717 420.47152710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04911718 420.47155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04911719 420.47158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04911720 420.47158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04911721 420.47158813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04911722 420.47161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04911723 420.47164917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04911724 420.47167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04911725 420.47167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04911726 420.47174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04911727 420.47174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04911728 420.47177124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04911729 420.47177124 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04911730 420.47180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04911731 420.47180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04911732 420.47183228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04911733 420.47183228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04911734 420.47189331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04911735 420.47189331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04911736 420.47192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04911737 420.47192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04911738 420.47195435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04911739 420.47195435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04911740 420.47201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04911741 420.47201538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04911742 420.47204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04911743 420.47204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04911744 420.47207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04911745 420.47207642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04911746 420.47210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04911747 420.47213745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04911748 420.47216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04911749 420.47216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04911750 420.47222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04911751 420.47222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04911752 420.47222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04911753 420.47222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04911754 420.47229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04911755 420.47229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04911756 420.47232056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04911757 420.47235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04911758 420.47238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04911759 420.47238159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04911760 420.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04911761 420.47241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04911762 420.47244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04911763 420.47244263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04911764 420.47250366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04911765 420.47250366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04911766 420.47253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04911767 420.47256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04911768 420.47256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04911769 420.47256470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04911770 420.47262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04911771 420.47262573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04911772 420.47265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04911773 420.47265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04911774 420.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04911775 420.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04911776 420.47274780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04911777 420.47274780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04911778 420.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04911779 420.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04911780 420.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04911781 420.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04911782 420.47286987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04911783 420.47286987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04911784 420.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04911785 420.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04911786 420.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04911787 420.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04911788 420.47299194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04911789 420.47299194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04911790 420.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04911791 420.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04911792 420.47305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04911793 420.47308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04911794 420.47311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04911795 420.47311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04911796 420.47317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04911797 420.47317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04911798 420.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04911799 420.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04911800 420.47323608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04911801 420.47323608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04911802 420.47329712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04911803 420.47329712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04911804 420.47332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04911805 420.47332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04911806 420.47335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04911807 420.47335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04911808 420.47338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04911809 420.47341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04911810 420.47344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04911811 420.47344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04911812 420.47351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04911813 420.47351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04911814 420.47351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04911815 420.47354126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04911816 420.47357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04911817 420.47357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04911818 420.47363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04911819 420.47363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04911820 420.47366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04911821 420.47366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04911822 420.47369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04911823 420.47369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04911824 420.47372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04911825 420.47372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04911826 420.47378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04911827 420.47378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04911828 420.47381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04911829 420.47381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04911830 420.47384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04911831 420.47384644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04911832 420.47390747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04911833 420.47390747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04911834 420.47393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04911835 420.47396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04911836 420.47399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04911837 420.47399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04911838 420.47402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04911839 420.47402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04911840 420.47406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04911841 420.47406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04911842 420.47409058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04911843 420.47409058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04911844 420.47412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04911845 420.47412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04911846 420.47415161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04911847 420.47415161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04911848 420.47415161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04911849 420.47418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04911850 420.47421265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04911851 420.47421265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04911852 420.47424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04911853 420.47424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04911854 420.47427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04911855 420.47427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04911856 420.47430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04911857 420.47430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04911858 420.47430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04911859 420.47430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04911860 420.47433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04911861 420.47433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04911862 420.47436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04911863 420.47436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04911864 420.47439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04911865 420.47439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04911866 420.47442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04911867 420.47442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04911868 420.47445679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04911869 420.47445679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04911870 420.47448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04911871 420.47448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04911872 420.47451782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04911873 420.47451782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04911874 420.47454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04911875 420.47454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04911876 420.47457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04911877 420.47457886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04911878 420.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04911879 420.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04911880 420.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04911881 420.47460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04911882 420.47463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04911883 420.47463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04911884 420.47467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04911885 420.47467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04911886 420.47470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04911887 420.47470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04911888 420.47473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04911889 420.47476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04911890 420.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04911891 420.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04911892 420.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04911893 420.47479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04911894 420.47482300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04911895 420.47482300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04911896 420.47485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04911897 420.47485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04911898 420.47488403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04911899 420.47488403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04911900 420.47491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04911901 420.47491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04911902 420.47494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04911903 420.47494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04911904 420.47494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04911905 420.47494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04911906 420.47497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04911907 420.47497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04911908 420.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04911909 420.47500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04911910 420.47503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04911911 420.47506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04911912 420.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04911913 420.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04911914 420.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04911915 420.47509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04911916 420.47512817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04911917 420.47512817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04911918 420.47515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04911919 420.47515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04911920 420.47518921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04911921 420.47518921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04911922 420.47521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04911923 420.47521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04911924 420.47525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04911925 420.47525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04911926 420.47525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04911927 420.47528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04911928 420.47531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04911929 420.47531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04911930 420.47534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04911931 420.47534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04911932 420.47537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04911933 420.47537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04911934 420.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04911935 420.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04911936 420.47540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04911937 420.47543335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04911938 420.47546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04911939 420.47546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04911940 420.47549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04911941 420.47549438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04911942 420.47552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04911943 420.47552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04911944 420.47555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04911945 420.47555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04911946 420.47558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04911947 420.47558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04911948 420.47561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04911949 420.47561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04911950 420.47564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04911951 420.47564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04911952 420.47567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04911953 420.47567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04911954 420.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04911955 420.47570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04911956 420.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04911957 420.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04911958 420.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04911959 420.47573853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04911960 420.47576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04911961 420.47576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04911962 420.47579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04911963 420.47579956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04911964 420.47583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04911965 420.47583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04911966 420.47586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04911967 420.47589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04911968 420.47589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04911969 420.47589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04911970 420.47592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04911971 420.47592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04911972 420.47595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04911973 420.47595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04911974 420.47598267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04911975 420.47598267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04911976 420.47601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04911977 420.47601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04911978 420.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04911979 420.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04911980 420.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04911981 420.47604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04911982 420.47607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04911983 420.47607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04911984 420.47610474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04911985 420.47610474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04911986 420.47616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04911987 420.47616577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04911988 420.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04911989 420.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04911990 420.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04911991 420.47619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04911992 420.47622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04911993 420.47622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04911994 420.47625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04911995 420.47625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04911996 420.47628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04911997 420.47628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04911998 420.47631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04911999 420.47631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04912000 420.47634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04912001 420.47634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04912002 420.47637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04912003 420.47637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04912004 420.47637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04912005 420.47640991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04912006 420.47644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04912007 420.47644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04912008 420.47647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04912009 420.47647095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04912010 420.47650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04912011 420.47650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04912012 420.47653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04912013 420.47653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04912014 420.47653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04912015 420.47653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04912016 420.47656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04912017 420.47656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04912018 420.47659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04912019 420.47659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04912020 420.47662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04912021 420.47662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04912022 420.47665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04912023 420.47665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04912024 420.47668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04912025 420.47668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04912026 420.47671509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04912027 420.47671509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04912028 420.47674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04912029 420.47674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04912030 420.47677612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04912031 420.47677612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04912032 420.47680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04912033 420.47680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04912034 420.47683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04912035 420.47683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04912036 420.47683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04912037 420.47683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04912038 420.47686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04912039 420.47686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04912040 420.47689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04912041 420.47689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04912042 420.47692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04912043 420.47692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04912044 420.47695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04912045 420.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04912046 420.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04912047 420.47698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04912048 420.47702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04912049 420.47702026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04912050 420.47705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04912051 420.47705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04912052 420.47708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04912053 420.47708130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04912054 420.47711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04912055 420.47711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04912056 420.47714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04912057 420.47714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04912058 420.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04912059 420.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04912060 420.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04912061 420.47717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04912062 420.47720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04912063 420.47720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04912064 420.47723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04912065 420.47726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04912066 420.47729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04912067 420.47729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04912068 420.47732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04912069 420.47732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04912070 420.47732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04912071 420.47732544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04912072 420.47735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04912073 420.47735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04912074 420.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04912075 420.47738647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04912076 420.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04912077 420.47741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04912078 420.47744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04912079 420.47744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04912080 420.47747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04912081 420.47747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04912082 420.47747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04912083 420.47750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04912084 420.47753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04912085 420.47753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04912086 420.47756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04912087 420.47756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04912088 420.47760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04912089 420.47760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04912090 420.47763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04912091 420.47763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04912092 420.47763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04912093 420.47763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04912094 420.47766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04912095 420.47766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04912096 420.47769165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04912097 420.47769165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04912098 420.47772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04912099 420.47775269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04912100 420.47778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04912101 420.47778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04912102 420.47778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04912103 420.47778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04912104 420.47781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04912105 420.47781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04912106 420.47784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04912107 420.47784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04912108 420.47787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04912109 420.47787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04912110 420.47790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04912111 420.47790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04912112 420.47793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04912113 420.47793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04912114 420.47796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04912115 420.47796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04912116 420.47799683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04912117 420.47799683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04912118 420.47802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04912119 420.47802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04912120 420.47805786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04912121 420.47805786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04912122 420.47808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04912123 420.47808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04912124 420.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04912125 420.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04912126 420.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04912127 420.47811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04912128 420.47814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04912129 420.47817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04912130 420.47821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04912131 420.47821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04912132 420.47824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04912133 420.47824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04912134 420.47827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04912135 420.47827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04912136 420.47827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04912137 420.47827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04912138 420.47830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04912139 420.47830200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04912140 420.47833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04912141 420.47833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04912142 420.47836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04912143 420.47836304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04912144 420.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04912145 420.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04912146 420.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04912147 420.47842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04912148 420.47845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04912149 420.47845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04912150 420.47848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04912151 420.47848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04912152 420.47851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04912153 420.47851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04912154 420.47854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04912155 420.47854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04912156 420.47857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04912157 420.47857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04912158 420.47860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04912159 420.47860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04912160 420.47860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04912161 420.47860718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04912162 420.47863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04912163 420.47866821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04912164 420.47869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04912165 420.47869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04912166 420.47872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04912167 420.47872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04912168 420.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04912169 420.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04912170 420.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04912171 420.47875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -04912172 420.47879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04912173 420.47879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -04912174 420.47882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04912175 420.47882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -04912176 420.47885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04912177 420.47885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -04912178 420.47888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04912179 420.47888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -04912180 420.47891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04912181 420.47891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -04912182 420.47891235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04912183 420.47894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -04912184 420.47897339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04912185 420.47897339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -04912186 420.47900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04912187 420.47900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -04912188 420.47903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04912189 420.47903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -04912190 420.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04912191 420.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -04912192 420.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04912193 420.47906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -04912194 420.47909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04912195 420.47909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -04912196 420.47912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04912197 420.47912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -04912198 420.47915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04912199 420.47915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -04912200 420.47918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04912201 420.47918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -04912202 420.47921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04912203 420.47921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -04912204 420.47924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04912205 420.47924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -04912206 420.47927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04912207 420.47927856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -04912208 420.47930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04912209 420.47930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -04912210 420.47933960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04912211 420.47933960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -04912212 420.47937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04912213 420.47937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -04912214 420.47940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04912215 420.47940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -04912216 420.47940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04912217 420.47940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -04912218 420.47943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04912219 420.47943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -04912220 420.47946167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04912221 420.47949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -04912222 420.47952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04912223 420.47952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -04912224 420.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04912225 420.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -04912226 420.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04912227 420.47955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -04912228 420.47958374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04912229 420.47958374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -04912230 420.47961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04912231 420.47961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -04912232 420.47964478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04912233 420.47964478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -04912234 420.47967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04912235 420.47967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -04912236 420.47970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04912237 420.47970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -04912238 420.47970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04912239 420.47970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -04912240 420.47973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04912241 420.47976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -04912242 420.47979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04912243 420.47979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -04912244 420.47982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04912245 420.47982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -04912246 420.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04912247 420.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -04912248 420.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04912249 420.47985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -04912250 420.47988892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04912251 420.47988892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -04912252 420.47991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04912253 420.47991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -04912254 420.47994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04912255 420.47994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -04912256 420.47998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04912257 420.48001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -04912258 420.48001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04912259 420.48001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -04912260 420.48004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04912261 420.48004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -04912262 420.48007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04912263 420.48007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -04912264 420.48010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04912265 420.48010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -04912266 420.48013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04912267 420.48013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -04912268 420.48016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04912269 420.48016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -04912270 420.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04912271 420.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -04912272 420.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04912273 420.48019409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -04912274 420.48022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04912275 420.48022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -04912276 420.48025513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04912277 420.48028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -04912278 420.48031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04912279 420.48031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -04912280 420.48034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04912281 420.48034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -04912282 420.48034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04912283 420.48034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -04912284 420.48037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04912285 420.48037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -04912286 420.48040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04912287 420.48040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -04912288 420.48043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04912289 420.48043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -04912290 420.48046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04912291 420.48046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -04912292 420.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04912293 420.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -04912294 420.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04912295 420.48049927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -04912296 420.48052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04912297 420.48056030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -04912298 420.48059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04912299 420.48059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -04912300 420.48062134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04912301 420.48062134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -04912302 420.48065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04912303 420.48065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -04912304 420.48065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04912305 420.48065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -04912306 420.48068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04912307 420.48068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -04912308 420.48071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04912309 420.48071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -04912310 420.48074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04912311 420.48074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -04912312 420.48077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04912313 420.48077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -04912314 420.48080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04912315 420.48080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -04912316 420.48080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04912317 420.48080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -04912318 420.48083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04912319 420.48086548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -04912320 420.48089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04912321 420.48089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -04912322 420.48092651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04912323 420.48092651 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -04912324 420.48095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04912325 420.48095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -04912326 420.48098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04912327 420.48098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -04912328 420.48098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04912329 420.48098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -04912330 420.48101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04912331 420.48101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -04912332 420.48104858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04912333 420.48104858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -04912334 420.48107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04912335 420.48107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -04912336 420.48110962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04912337 420.48110962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -04912338 420.48114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04912339 420.48114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -04912340 420.48117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04912341 420.48117065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -04912342 420.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04912343 420.48120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -04912344 420.48123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04912345 420.48123169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -04912346 420.48126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04912347 420.48126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -04912348 420.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04912349 420.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -04912350 420.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04912351 420.48129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -04912352 420.48132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04912353 420.48132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -04912354 420.48135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04912355 420.48135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -04912356 420.48138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04912357 420.48138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -04912358 420.48141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04912359 420.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -04912360 420.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04912361 420.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -04912362 420.48147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04912363 420.48147583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -04912364 420.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04912365 420.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -04912366 420.48153687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04912367 420.48153687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -04912368 420.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04912369 420.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -04912370 420.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04912371 420.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -04912372 420.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04912373 420.48159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -04912374 420.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04912375 420.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -04912376 420.48165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04912377 420.48165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -04912378 420.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04912379 420.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -04912380 420.48171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04912381 420.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -04912382 420.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04912383 420.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -04912384 420.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04912385 420.48178101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -04912386 420.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04912387 420.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -04912388 420.48184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04912389 420.48184204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -04912390 420.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04912391 420.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -04912392 420.48190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04912393 420.48190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -04912394 420.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04912395 420.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -04912396 420.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04912397 420.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -04912398 420.48196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04912399 420.48196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -04912400 420.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04912401 420.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -04912402 420.48202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04912403 420.48205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -04912404 420.48208618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04912405 420.48208618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -04912406 420.48208618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04912407 420.48208618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -04912408 420.48211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04912409 420.48211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -04912410 420.48214722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04912411 420.48214722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -04912412 420.48217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04912413 420.48217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -04912414 420.48220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04912415 420.48220825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -04912416 420.48223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04912417 420.48223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -04912418 420.48226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04912419 420.48226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -04912420 420.48233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04912421 420.48233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -04912422 420.48236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04912423 420.48236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -04912424 420.48239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04912425 420.48239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -04912426 420.48242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04912427 420.48242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -04912428 420.48245239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04912429 420.48245239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -04912430 420.48248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04912431 420.48248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -04912432 420.48251343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04912433 420.48251343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -04912434 420.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04912435 420.48254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -04912436 420.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04912437 420.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -04912438 420.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04912439 420.48257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -04912440 420.48260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04912441 420.48260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -04912442 420.48263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04912443 420.48266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -04912444 420.48269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04912445 420.48269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -04912446 420.48272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04912447 420.48272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -04912448 420.48272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04912449 420.48272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -04912450 420.48275757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04912451 420.48275757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -04912452 420.48278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04912453 420.48278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -04912454 420.48281860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04912455 420.48281860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -04912456 420.48284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04912457 420.48284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -04912458 420.48287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04912459 420.48287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -04912460 420.48287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04912461 420.48287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -04912462 420.48291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04912463 420.48291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -04912464 420.48294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04912465 420.48297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -04912466 420.48300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04912467 420.48300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -04912468 420.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04912469 420.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -04912470 420.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04912471 420.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -04912472 420.48306274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04912473 420.48306274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -04912474 420.48309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04912475 420.48309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -04912476 420.48312378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04912477 420.48312378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -04912478 420.48315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04912479 420.48315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -04912480 420.48318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04912481 420.48318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -04912482 420.48318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04912483 420.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -04912484 420.48324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04912485 420.48324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -04912486 420.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04912487 420.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -04912488 420.48330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04912489 420.48330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -04912490 420.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04912491 420.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -04912492 420.48336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04912493 420.48336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -04912494 420.48336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04912495 420.48336792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -04912496 420.48339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04912497 420.48339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -04912498 420.48342896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04912499 420.48342896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -04912500 420.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04912501 420.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -04912502 420.48348999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04912503 420.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -04912504 420.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04912505 420.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -04912506 420.48355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04912507 420.48355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -04912508 420.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04912509 420.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -04912510 420.48361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04912511 420.48361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -04912512 420.48364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04912513 420.48364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -04912514 420.48367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04912515 420.48367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -04912516 420.48367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04912517 420.48367310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -04912518 420.48370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04912519 420.48370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -04912520 420.48373413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04912521 420.48373413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -04912522 420.48376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04912523 420.48376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -04912524 420.48379517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04912525 420.48382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -04912526 420.48382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04912527 420.48382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -04912528 420.48385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04912529 420.48385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -04912530 420.48388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04912531 420.48388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -04912532 420.48391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04912533 420.48391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -04912534 420.48394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04912535 420.48394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -04912536 420.48397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04912537 420.48397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -04912538 420.48400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04912539 420.48400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -04912540 420.48400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04912541 420.48400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -04912542 420.48403931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04912543 420.48403931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -04912544 420.48406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04912545 420.48410034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -04912546 420.48413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04912547 420.48413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -04912548 420.48416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04912549 420.48416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -04912550 420.48416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04912551 420.48416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -04912552 420.48419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04912553 420.48419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -04912554 420.48422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04912555 420.48422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -04912556 420.48425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04912557 420.48425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -04912558 420.48428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04912559 420.48428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -04912560 420.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04912561 420.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -04912562 420.48431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04912563 420.48434448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -04912564 420.48437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04912565 420.48437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -04912566 420.48440552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04912567 420.48440552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -04912568 420.48443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04912569 420.48443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -04912570 420.48446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04912571 420.48446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -04912572 420.48446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04912573 420.48446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -04912574 420.48449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04912575 420.48449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -04912576 420.48452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04912577 420.48452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -04912578 420.48455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04912579 420.48458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -04912580 420.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04912581 420.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -04912582 420.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04912583 420.48461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -04912584 420.48464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04912585 420.48464966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -04912586 420.48468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04912587 420.48468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -04912588 420.48471069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04912589 420.48471069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -04912590 420.48474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04912591 420.48477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -04912592 420.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04912593 420.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -04912594 420.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04912595 420.48480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -04912596 420.48483276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04912597 420.48483276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -04912598 420.48486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04912599 420.48486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -04912600 420.48489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04912601 420.48489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -04912602 420.48492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04912603 420.48492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -04912604 420.48495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04912605 420.48495483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -04912606 420.48498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04912607 420.48498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -04912608 420.48501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04912609 420.48501587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -04912610 420.48504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04912611 420.48504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -04912612 420.48507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04912613 420.48507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -04912614 420.48510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04912615 420.48510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -04912616 420.48510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04912617 420.48510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -04912618 420.48513794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04912619 420.48516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -04912620 420.48519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04912621 420.48519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -04912622 420.48522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04912623 420.48522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -04912624 420.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04912625 420.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -04912626 420.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04912627 420.48526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -04912628 420.48529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04912629 420.48529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -04912630 420.48532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04912631 420.48532104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -04912632 420.48535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04912633 420.48535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -04912634 420.48538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04912635 420.48538208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -04912636 420.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04912637 420.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -04912638 420.48541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04912639 420.48544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -04912640 420.48547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04912641 420.48547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -04912642 420.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04912643 420.48550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -04912644 420.48553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04912645 420.48553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -04912646 420.48556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04912647 420.48556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -04912648 420.48559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04912649 420.48559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -04912650 420.48559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04912651 420.48559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -04912652 420.48562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04912653 420.48562622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -04912654 420.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04912655 420.48565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -04912656 420.48568726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04912657 420.48571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -04912658 420.48574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04912659 420.48574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -04912660 420.48574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04912661 420.48574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -04912662 420.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04912663 420.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -04912664 420.48580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04912665 420.48580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -04912666 420.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04912667 420.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -04912668 420.48587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04912669 420.48587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -04912670 420.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04912671 420.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -04912672 420.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04912673 420.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -04912674 420.48593140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04912675 420.48593140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -04912676 420.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04912677 420.48599243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -04912678 420.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04912679 420.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -04912680 420.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04912681 420.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -04912682 420.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04912683 420.48605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -04912684 420.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04912685 420.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -04912686 420.48611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04912687 420.48611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -04912688 420.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04912689 420.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -04912690 420.48617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04912691 420.48617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -04912692 420.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04912693 420.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -04912694 420.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04912695 420.48623657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -04912696 420.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04912697 420.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -04912698 420.48629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04912699 420.48629761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -04912700 420.48632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04912701 420.48632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -04912702 420.48635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04912703 420.48635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -04912704 420.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04912705 420.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -04912706 420.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04912707 420.48638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -04912708 420.48641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04912709 420.48641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -04912710 420.48645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04912711 420.48648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -04912712 420.48651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04912713 420.48651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -04912714 420.48654175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04912715 420.48654175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -04912716 420.48654175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04912717 420.48654175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -04912718 420.48657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04912719 420.48657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -04912720 420.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04912721 420.48660278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -04912722 420.48663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04912723 420.48663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -04912724 420.48666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04912725 420.48666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -04912726 420.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04912727 420.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -04912728 420.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04912729 420.48669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -04912730 420.48672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04912731 420.48675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -04912732 420.48678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04912733 420.48678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -04912734 420.48681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04912735 420.48681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -04912736 420.48684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04912737 420.48684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -04912738 420.48684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04912739 420.48684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -04912740 420.48687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04912741 420.48687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -04912742 420.48690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04912743 420.48690796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -04912744 420.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04912745 420.48693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -04912746 420.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04912747 420.48696899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -04912748 420.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04912749 420.48699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -04912750 420.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04912751 420.48703003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -04912752 420.48706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04912753 420.48706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -04912754 420.48709106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04912755 420.48709106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -04912756 420.48712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04912757 420.48712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -04912758 420.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04912759 420.48715210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -04912760 420.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04912761 420.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -04912762 420.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04912763 420.48718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -04912764 420.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04912765 420.48721313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -04912766 420.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04912767 420.48724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -04912768 420.48727417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04912769 420.48730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -04912770 420.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04912771 420.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -04912772 420.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04912773 420.48733521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -04912774 420.48736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04912775 420.48736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -04912776 420.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04912777 420.48739624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -04912778 420.48742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04912779 420.48742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -04912780 420.48745728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04912781 420.48745728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -04912782 420.48748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04912783 420.48748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -04912784 420.48748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04912785 420.48748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -04912786 420.48751831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04912787 420.48751831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -04912788 420.48754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04912789 420.48757935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -04912790 420.48760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04912791 420.48760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -04912792 420.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04912793 420.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -04912794 420.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04912795 420.48764038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -04912796 420.48767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04912797 420.48767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -04912798 420.48770142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04912799 420.48770142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -04912800 420.48773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04912801 420.48773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -04912802 420.48776245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04912803 420.48776245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -04912804 420.48779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04912805 420.48779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -04912806 420.48779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04912807 420.48779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -04912808 420.48782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04912809 420.48782349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -04912810 420.48785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04912811 420.48788452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -04912812 420.48791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04912813 420.48791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -04912814 420.48794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04912815 420.48794556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -04912816 420.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04912817 420.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -04912818 420.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04912819 420.48797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -04912820 420.48800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04912821 420.48800659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -04912822 420.48803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04912823 420.48803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -04912824 420.48806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04912825 420.48806763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -04912826 420.48809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04912827 420.48809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -04912828 420.48812866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04912829 420.48812866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -04912830 420.48815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04912831 420.48815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -04912832 420.48818970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04912833 420.48818970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -04912834 420.48822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04912835 420.48822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -04912836 420.48825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04912837 420.48825073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -04912838 420.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04912839 420.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -04912840 420.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04912841 420.48828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -04912842 420.48831177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04912843 420.48831177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -04912844 420.48834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04912845 420.48834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -04912846 420.48837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04912847 420.48837280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -04912848 420.48840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04912849 420.48840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -04912850 420.48843384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04912851 420.48843384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -04912852 420.48846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04912853 420.48846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -04912854 420.48849487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04912855 420.48849487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -04912856 420.48852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04912857 420.48852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -04912858 420.48855591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04912859 420.48855591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -04912860 420.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04912861 420.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -04912862 420.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04912863 420.48858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -04912864 420.48861694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04912865 420.48861694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -04912866 420.48864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04912867 420.48864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -04912868 420.48867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04912869 420.48867798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -04912870 420.48870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04912871 420.48870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -04912872 420.48873901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04912873 420.48876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -04912874 420.48876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04912875 420.48876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -04912876 420.48880005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04912877 420.48880005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -04912878 420.48883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04912879 420.48883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -04912880 420.48886108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04912881 420.48886108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -04912882 420.48889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04912883 420.48889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -04912884 420.48892212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04912885 420.48892212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -04912886 420.48892212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04912887 420.48892212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -04912888 420.48895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04912889 420.48895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -04912890 420.48898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04912891 420.48898315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -04912892 420.48901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04912893 420.48901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -04912894 420.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04912895 420.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -04912896 420.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04912897 420.48907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -04912898 420.48910522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04912899 420.48910522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -04912900 420.48913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04912901 420.48913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -04912902 420.48916626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04912903 420.48916626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -04912904 420.48919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04912905 420.48922729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -04912906 420.48922729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04912907 420.48922729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -04912908 420.48925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04912909 420.48925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -04912910 420.48928833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04912911 420.48928833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -04912912 420.48931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04912913 420.48931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -04912914 420.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04912915 420.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -04912916 420.48937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04912917 420.48937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -04912918 420.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04912919 420.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -04912920 420.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04912921 420.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -04912922 420.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04912923 420.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -04912924 420.48953247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04912925 420.48953247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -04912926 420.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04912927 420.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -04912928 420.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04912929 420.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -04912930 420.48959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04912931 420.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -04912932 420.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04912933 420.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -04912934 420.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04912935 420.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -04912936 420.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04912937 420.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -04912938 420.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04912939 420.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -04912940 420.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04912941 420.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -04912942 420.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04912943 420.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -04912944 420.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04912945 420.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -04912946 420.48983765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04912947 420.48983765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -04912948 420.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04912949 420.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -04912950 420.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04912951 420.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -04912952 420.48989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04912953 420.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -04912954 420.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04912955 420.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -04912956 420.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04912957 420.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -04912958 420.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04912959 420.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -04912960 420.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04912961 420.49002075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -04912962 420.49005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04912963 420.49005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -04912964 420.49008179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04912965 420.49008179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -04912966 420.49011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04912967 420.49014282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -04912968 420.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04912969 420.49017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -04912970 420.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04912971 420.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -04912972 420.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04912973 420.49020386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -04912974 420.49023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04912975 420.49023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -04912976 420.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04912977 420.49026489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -04912978 420.49029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04912979 420.49029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -04912980 420.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04912981 420.49032593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -04912982 420.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04912983 420.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -04912984 420.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04912985 420.49035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -04912986 420.49038696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04912987 420.49041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -04912988 420.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04912989 420.49044800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -04912990 420.49047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04912991 420.49047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -04912992 420.49050903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04912993 420.49050903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -04912994 420.49050903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04912995 420.49050903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -04912996 420.49053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04912997 420.49053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -04912998 420.49057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04912999 420.49057007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -04913000 420.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04913001 420.49060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -04913002 420.49063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04913003 420.49063110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -04913004 420.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04913005 420.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -04913006 420.49066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04913007 420.49069214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -04913008 420.49072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04913009 420.49072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -04913010 420.49075317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04913011 420.49075317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -04913012 420.49078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04913013 420.49078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -04913014 420.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04913015 420.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -04913016 420.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04913017 420.49081421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -04913018 420.49084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04913019 420.49084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -04913020 420.49087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04913021 420.49087524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -04913022 420.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04913023 420.49090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -04913024 420.49093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04913025 420.49093628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -04913026 420.49096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04913027 420.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -04913028 420.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04913029 420.49099731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -04913030 420.49102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04913031 420.49102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -04913032 420.49105835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04913033 420.49105835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -04913034 420.49108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04913035 420.49108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -04913036 420.49111938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04913037 420.49111938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -04913038 420.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04913039 420.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -04913040 420.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04913041 420.49114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -04913042 420.49118042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04913043 420.49118042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -04913044 420.49121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04913045 420.49121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -04913046 420.49124146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04913047 420.49127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -04913048 420.49130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04913049 420.49130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -04913050 420.49130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04913051 420.49130249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -04913052 420.49133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04913053 420.49133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -04913054 420.49136353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04913055 420.49136353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -04913056 420.49139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04913057 420.49139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -04913058 420.49142456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04913059 420.49142456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -04913060 420.49145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04913061 420.49145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -04913062 420.49145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04913063 420.49148560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -04913064 420.49151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04913065 420.49151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -04913066 420.49154663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04913067 420.49154663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -04913068 420.49157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04913069 420.49157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -04913070 420.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04913071 420.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -04913072 420.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04913073 420.49160767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -04913074 420.49163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04913075 420.49163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -04913076 420.49166870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04913077 420.49166870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -04913078 420.49169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04913079 420.49172974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -04913080 420.49176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04913081 420.49176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -04913082 420.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04913083 420.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -04913084 420.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04913085 420.49179077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -04913086 420.49182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04913087 420.49182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -04913088 420.49185181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04913089 420.49185181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -04913090 420.49188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04913091 420.49188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -04913092 420.49191284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04913093 420.49194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -04913094 420.49194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04913095 420.49194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -04913096 420.49197388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04913097 420.49197388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -04913098 420.49200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04913099 420.49200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -04913100 420.49203491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04913101 420.49203491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -04913102 420.49206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04913103 420.49206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -04913104 420.49209595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04913105 420.49209595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -04913106 420.49209595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04913107 420.49212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -04913108 420.49215698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04913109 420.49215698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -04913110 420.49218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04913111 420.49218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -04913112 420.49221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04913113 420.49221802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -04913114 420.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04913115 420.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -04913116 420.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04913117 420.49224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -04913118 420.49227905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04913119 420.49227905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -04913120 420.49230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04913121 420.49230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -04913122 420.49234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04913123 420.49234009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -04913124 420.49237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04913125 420.49240112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -04913126 420.49240112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04913127 420.49240112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -04913128 420.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04913129 420.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -04913130 420.49246216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04913131 420.49246216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -04913132 420.49249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04913133 420.49249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -04913134 420.49252319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04913135 420.49252319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -04913136 420.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04913137 420.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -04913138 420.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04913139 420.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -04913140 420.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04913141 420.49258423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -04913142 420.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04913143 420.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -04913144 420.49264526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04913145 420.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -04913146 420.49270630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04913147 420.49270630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -04913148 420.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04913149 420.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -04913150 420.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04913151 420.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -04913152 420.49276733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04913153 420.49276733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -04913154 420.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04913155 420.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -04913156 420.49282837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04913157 420.49282837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -04913158 420.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04913159 420.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -04913160 420.49288940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04913161 420.49288940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -04913162 420.49288940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04913163 420.49288940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -04913164 420.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04913165 420.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -04913166 420.49295044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04913167 420.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -04913168 420.49301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04913169 420.49301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -04913170 420.49304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04913171 420.49304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -04913172 420.49304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04913173 420.49304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -04913174 420.49307251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04913175 420.49307251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -04913176 420.49310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04913177 420.49310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -04913178 420.49313354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04913179 420.49313354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -04913180 420.49316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04913181 420.49316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -04913182 420.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04913183 420.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -04913184 420.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04913185 420.49319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -04913186 420.49322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04913187 420.49325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -04913188 420.49328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04913189 420.49328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -04913190 420.49331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04913191 420.49331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -04913192 420.49334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04913193 420.49334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -04913194 420.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04913195 420.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -04913196 420.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04913197 420.49337769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -04913198 420.49340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04913199 420.49340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -04913200 420.49343872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04913201 420.49343872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -04913202 420.49346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04913203 420.49346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -04913204 420.49349976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04913205 420.49353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -04913206 420.49353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04913207 420.49353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -04913208 420.49356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04913209 420.49356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -04913210 420.49359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04913211 420.49359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -04913212 420.49362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04913213 420.49362183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -04913214 420.49365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04913215 420.49365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -04913216 420.49368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04913217 420.49368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -04913218 420.49368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04913219 420.49368286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -04913220 420.49371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04913221 420.49371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -04913222 420.49374390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04913223 420.49377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -04913224 420.49380493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04913225 420.49380493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -04914798 420.51644897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -04914799 420.51644897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -04914800 420.51647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -04914801 420.51651001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -04914802 420.51654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -04914803 420.51654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -04914804 420.51657104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -04914805 420.51657104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -04914806 420.51657104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -04914807 420.51657104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -04914808 420.51660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -04914809 420.51660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -04914810 420.51663208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -04914811 420.51663208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -04914812 420.51666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -04914813 420.51666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -04914814 420.51669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -04914815 420.51669312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -04914816 420.51672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -04914817 420.51672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -04914818 420.51672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -04914819 420.51672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -04914820 420.51675415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -04914821 420.51675415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -04914822 420.51678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -04914823 420.51678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -04914824 420.51681519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -04914825 420.51684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -04914826 420.51687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -04914827 420.51687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -04914828 420.51687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -04914829 420.51687622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -04914830 420.51690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -04914831 420.51690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -04914832 420.51693726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -04914833 420.51693726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -04914834 420.51696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -04914835 420.51696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -04914836 420.51702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -04914837 420.51702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -04914838 420.51702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -04914839 420.51702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -04914840 420.51705933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -04914841 420.51705933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -04920696 420.60061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b8 -04920697 420.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130b8 -04920698 420.60067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c8 -04920699 420.60067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130c8 -04920700 420.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d8 -04920701 420.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130d8 -04920702 420.60073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e8 -04920703 420.60073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130e8 -04920704 420.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f8 -04920705 420.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x130f8 -04920706 420.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13108 -04920707 420.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13108 -04920708 420.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13118 -04920709 420.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13118 -04920710 420.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13128 -04920711 420.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13128 -04920712 420.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13138 -04920713 420.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13138 -04920714 420.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13148 -04920715 420.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13148 -04920716 420.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13158 -04920717 420.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13158 -04920718 420.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13168 -04920719 420.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13168 -04920720 420.60098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13178 -04920721 420.60098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13178 -04920722 420.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13188 -04920723 420.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13188 -04920724 420.60104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13198 -04920725 420.60104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13198 -04920726 420.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a8 -04920727 420.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131a8 -04920728 420.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b8 -04920729 420.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131b8 -04920730 420.60110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c8 -04920731 420.60110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131c8 -04920732 420.60113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d8 -04920733 420.60113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131d8 -04920734 420.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e8 -04920735 420.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131e8 -04920736 420.60122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f8 -04920737 420.60122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x131f8 -04920738 420.60122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13208 -04920739 420.60122681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13208 -04926850 420.69433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f108 -04926851 420.69433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f108 -04926852 420.69436646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -04926853 420.69439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f118 -04926854 420.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -04926855 420.69442749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f128 -04926856 420.69448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -04926857 420.69448853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f138 -04926858 420.69451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -04926859 420.69451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f148 -04926860 420.69454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -04926861 420.69454956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f158 -04926862 420.69461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -04926863 420.69461060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f168 -04926864 420.69464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -04926865 420.69464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f178 -04926866 420.69467163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -04926867 420.69470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f188 -04926868 420.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -04926869 420.69473267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f198 -04926870 420.69479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -04926871 420.69479370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a8 -04926872 420.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b8 -04926873 420.69482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b8 -04926874 420.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c8 -04926875 420.69485474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c8 -04926876 420.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d8 -04926877 420.69491577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d8 -04926878 420.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e8 -04926879 420.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e8 -04926880 420.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f8 -04926881 420.69497681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f8 -04926882 420.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f208 -04926883 420.69500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f208 -04926884 420.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f218 -04926885 420.69506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f218 -04926886 420.69509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f228 -04926887 420.69509888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f228 -04926888 420.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f238 -04926889 420.69512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f238 -04926890 420.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f248 -04926891 420.69515991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f248 -04926892 420.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f258 -04926893 420.69522095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f258 -04943546 420.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -04943547 420.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -04943548 420.93563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -04943549 420.93563843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -04943550 420.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -04943551 420.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -04943552 420.93569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -04943553 420.93569946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -04943554 420.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -04943555 420.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -04943556 420.93576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -04943557 420.93576050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -04943558 420.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -04943559 420.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -04943560 420.93582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -04943561 420.93582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -04943562 420.93582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -04943563 420.93582153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -04943564 420.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -04943565 420.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -04943566 420.93588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -04943567 420.93588257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -04943568 420.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -04943569 420.93594360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -04943570 420.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -04943571 420.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -04943572 420.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -04943573 420.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -04943574 420.93600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -04943575 420.93600464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -04943576 420.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -04943577 420.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -04943578 420.93606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -04943579 420.93606567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -04943580 420.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -04943581 420.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -04943582 420.93612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -04943583 420.93612671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -04943584 420.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -04943585 420.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -04943586 420.93618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -04943587 420.93618774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -04943588 420.93621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -04943589 420.93621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -04949895 421.02682495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -04949896 421.02682495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -04949897 421.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -04949898 421.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -04949899 421.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -04949900 421.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -04949901 421.02688599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -04949902 421.02688599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -04949903 421.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -04949904 421.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -04949905 421.02694702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -04949906 421.02694702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -04949907 421.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -04949908 421.02700806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -04949909 421.02700806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -04949910 421.02700806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -04949911 421.02703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -04949912 421.02703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -04949913 421.02706909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -04949914 421.02706909 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -04949915 421.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -04949916 421.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -04949917 421.02713013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -04949918 421.02713013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -04949919 421.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -04949920 421.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -04949921 421.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -04949922 421.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -04949923 421.02719116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -04949924 421.02719116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1f8 -04949925 421.02722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -04949926 421.02722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c208 -04949927 421.02728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -04949928 421.02728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c218 -04949929 421.02731323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -04949930 421.02731323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c228 -04949931 421.02731323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -04949932 421.02731323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c238 -04949933 421.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -04949934 421.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c248 -04949935 421.02737427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -04949936 421.02737427 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c258 -04949937 421.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -04949938 421.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c268 -04953355 422.11627197 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04953356 422.11630249 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04953357 422.11633301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04953358 422.11633301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04953359 422.11645508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04953360 422.11645508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04953361 422.11651611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04953362 422.11651611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04953363 422.96487427 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04953364 422.98458862 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04953365 422.98461914 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04953366 423.13308716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04953367 423.13308716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -04953368 423.13311768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04953369 423.13311768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -04953370 423.13311768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04953371 423.13311768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -04953372 423.13314819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04953373 423.13314819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -04953374 423.13317871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04953375 423.13317871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -04953376 423.13320923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04953377 423.13323975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -04953378 423.13327026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04953379 423.13327026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -04953380 423.13330078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04953381 423.13330078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -04953382 423.13330078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04953383 423.13330078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -04953384 423.13333130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04953385 423.13333130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -04953386 423.13336182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04953387 423.13336182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -04953388 423.13339233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04953389 423.13339233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -04953390 423.13342285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04953391 423.13342285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -04953392 423.13345337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04953393 423.13345337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -04953394 423.13345337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04953395 423.13345337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -04953396 423.13348389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04953397 423.13351440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -04953398 423.13354492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04953399 423.13354492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -04953400 423.13357544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04953401 423.13357544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -04953402 423.13360596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04953403 423.13360596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -04953404 423.13360596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04953405 423.13360596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -04953406 423.13363647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04953407 423.13363647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -04953408 423.13366699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04953409 423.13366699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -04953410 423.13369751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04953411 423.13369751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -04953412 423.13372803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04953413 423.13372803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -04953414 423.13375854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04953415 423.13375854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -04953416 423.13375854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04953417 423.13378906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -04953418 423.13381958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04953419 423.13381958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -04953420 423.13385010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04953421 423.13385010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -04953422 423.13388062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04953423 423.13388062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -04953424 423.13391113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04953425 423.13391113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -04953426 423.13394165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04953427 423.13394165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -04953428 423.13394165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04953429 423.13394165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -04953430 423.13397217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04953431 423.13397217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -04953432 423.13400269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04953433 423.13400269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -04953434 423.13403320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04953435 423.13403320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -04953436 423.13406372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04953437 423.13409424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -04953438 423.13409424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04953439 423.13409424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -04953440 423.13412476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04953441 423.13412476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -04953442 423.13415527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04953443 423.13415527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -04953444 423.13418579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04953445 423.13418579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -04953446 423.13421631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04953447 423.13421631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -04953448 423.13424683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04953449 423.13424683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -04953450 423.13424683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04953451 423.13424683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -04953452 423.13427734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04953453 423.13427734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -04953454 423.13430786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04953455 423.13430786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -04953456 423.13433838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04953457 423.13436890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -04953458 423.13439941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04953459 423.13439941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -04953460 423.13439941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04953461 423.13439941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -04953462 423.13442993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04953463 423.13442993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -04953464 423.13446045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04953465 423.13446045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -04953466 423.13449097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04953467 423.13449097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -04953468 423.13452148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04953469 423.13452148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -04953470 423.13455200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04953471 423.13455200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -04953472 423.13455200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04953473 423.13455200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -04953474 423.13458252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04953475 423.13458252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -04953476 423.13461304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04953477 423.13464355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -04953478 423.13467407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04953479 423.13467407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -04953480 423.13470459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04953481 423.13470459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -04953482 423.13473511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04953483 423.13473511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -04953484 423.13473511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04953485 423.13473511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -04953486 423.13476563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04953487 423.13476563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -04953488 423.13479614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04953489 423.13479614 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -04953490 423.13485718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04953491 423.13485718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -04953492 423.13488770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04953493 423.13488770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -04953494 423.13488770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04953495 423.13488770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -04953496 423.13491821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04953497 423.13491821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -04953498 423.13494873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04953499 423.13494873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -04953500 423.13497925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04953501 423.13497925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -04953502 423.13500977 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04953503 423.13504028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -04953504 423.13504028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04953505 423.13504028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -04953506 423.13507080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04953507 423.13507080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -04953508 423.13510132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04953509 423.13510132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -04953510 423.13513184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04953511 423.13513184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -04953512 423.13516235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04953513 423.13516235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -04953514 423.13519287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04953515 423.13519287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -04953516 423.13519287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04953517 423.13519287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -04953518 423.13522339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04953519 423.13522339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -04953520 423.13525391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04953521 423.13525391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -04953522 423.13528442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04953523 423.13531494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -04953524 423.13534546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04953525 423.13534546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -04953526 423.13534546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04953527 423.13534546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -04953528 423.13537598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04953529 423.13537598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -04953530 423.13540649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04953531 423.13540649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -04953532 423.13543701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04953533 423.13543701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -04953534 423.13546753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04953535 423.13546753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -04953536 423.13549805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04953537 423.13549805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -04953538 423.13552856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04953539 423.13552856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -04953540 423.13552856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04953541 423.13552856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -04953542 423.13555908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04953543 423.13558960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -04953544 423.13562012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04953545 423.13562012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -04953546 423.13565063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04953547 423.13565063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -04953548 423.13568115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04953549 423.13568115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -04953550 423.13568115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04953551 423.13568115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -04953552 423.13571167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04953553 423.13571167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -04953554 423.13574219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04953555 423.13574219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -04953556 423.13577271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04953557 423.13577271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -04953558 423.13580322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04953559 423.13580322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -04953560 423.13583374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04953561 423.13583374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -04953562 423.13583374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04953563 423.13586426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -04953564 423.13589478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04953565 423.13589478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -04953566 423.13592529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04953567 423.13592529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -04953568 423.13595581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04953569 423.13595581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -04953570 423.13598633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04953571 423.13598633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -04953572 423.13598633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04953573 423.13598633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -04953574 423.13601685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04953575 423.13601685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -04953576 423.13604736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04953577 423.13604736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -04953578 423.13607788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04953579 423.13607788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -04953580 423.13610840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04953581 423.13610840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -04953582 423.13613892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04953583 423.13613892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -04953584 423.13616943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04953585 423.13616943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -04953586 423.13619995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04953587 423.13619995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -04953588 423.13623047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04953589 423.13623047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -04953590 423.13626099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04953591 423.13626099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -04953592 423.13629150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04953593 423.13629150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -04953594 423.13632202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04953595 423.13632202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -04953596 423.13632202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04953597 423.13632202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -04953598 423.13635254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04953599 423.13635254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -04953600 423.13638306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04953601 423.13638306 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -04953602 423.13641357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04953603 423.13644409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -04953604 423.13647461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04953605 423.13647461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -04953606 423.13647461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04953607 423.13647461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -04953608 423.13650513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04953609 423.13650513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -04953610 423.13653564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04953611 423.13653564 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -04953612 423.13656616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04953613 423.13656616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -04953614 423.13659668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04953615 423.13659668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -04953616 423.13662720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04953617 423.13662720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -04953618 423.13662720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04953619 423.13662720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -04953620 423.13665771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04953621 423.13665771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -04953622 423.13668823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04953623 423.13671875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -04953624 423.13674927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04953625 423.13674927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -04953626 423.13677979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04953627 423.13677979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -04953628 423.13677979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04953629 423.13677979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -04953630 423.13681030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04953631 423.13681030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -04953632 423.13684082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04953633 423.13684082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -04953634 423.13687134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04953635 423.13687134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -04953636 423.13690186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04953637 423.13690186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -04953638 423.13693237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04953639 423.13693237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -04953640 423.13693237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04953641 423.13696289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -04953642 423.13699341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04953643 423.13699341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -04953644 423.13702393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04953645 423.13702393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -04953646 423.13705444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04953647 423.13705444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -04953648 423.13708496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04953649 423.13711548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -04953650 423.13711548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04953651 423.13711548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -04953652 423.13714600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04953653 423.13714600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -04953654 423.13717651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04953655 423.13717651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -04953656 423.13720703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04953657 423.13720703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -04953658 423.13723755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04953659 423.13723755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -04953660 423.13726807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04953661 423.13726807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -04953662 423.13726807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04953663 423.13726807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -04953664 423.13729858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04953665 423.13729858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -04953666 423.13732910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04953667 423.13732910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -04953668 423.13735962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04953669 423.13739014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -04953670 423.13742065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04953671 423.13742065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -04953672 423.13742065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04953673 423.13742065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -04953674 423.13745117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04953675 423.13745117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -04953676 423.13748169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04953677 423.13748169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -04953678 423.13751221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04953679 423.13751221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -04953680 423.13754272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04953681 423.13754272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -04953682 423.13757324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04953683 423.13757324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -04953684 423.13757324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04953685 423.13757324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -04953686 423.13760376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04953687 423.13760376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -04953688 423.13763428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04953689 423.13766479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -04953690 423.13769531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04953691 423.13769531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -04953692 423.13772583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04953693 423.13772583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -04953694 423.13772583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04953695 423.13772583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -04953696 423.13775635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04953697 423.13775635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -04953698 423.13778687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04953699 423.13778687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -04953700 423.13781738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04953701 423.13781738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -04953702 423.13784790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04953703 423.13784790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -04953704 423.13787842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04953705 423.13787842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -04953706 423.13790894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04953707 423.13790894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -04953708 423.13790894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04953709 423.13793945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -04953710 423.13796997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04953711 423.13796997 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -04953712 423.13800049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04953713 423.13800049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -04953714 423.13803101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04953715 423.13803101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -04953716 423.13806152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04953717 423.13806152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -04953718 423.13806152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04953719 423.13806152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -04953720 423.13809204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04953721 423.13809204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -04953722 423.13812256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04953723 423.13812256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -04953724 423.13815308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04953725 423.13815308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -04953726 423.13818359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04953727 423.13818359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -04953728 423.13821411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04953729 423.13821411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -04953730 423.13824463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04953731 423.13824463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -04953732 423.13827515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04953733 423.13827515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -04953734 423.13830566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04953735 423.13830566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -04953736 423.13833618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04953737 423.13833618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -04953738 423.13836670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04953739 423.13836670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -04953740 423.13836670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04953741 423.13836670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -04953742 423.13839722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04953743 423.13839722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -04953744 423.13842773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04953745 423.13842773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -04953746 423.13845825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04953747 423.13845825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -04953748 423.13848877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04953749 423.13851929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -04953750 423.13851929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04953751 423.13851929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -04953752 423.13854980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04953753 423.13854980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -04953754 423.13858032 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04953755 423.13858032 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -04953756 423.13861084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04953757 423.13861084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -04953758 423.13864136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04953759 423.13864136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -04953760 423.13867188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04953761 423.13867188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -04953762 423.13870239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04953763 423.13870239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -04953764 423.13870239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04953765 423.13870239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -04953766 423.13873291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04953767 423.13873291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -04953768 423.13876343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04953769 423.13879395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -04953770 423.13882446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04953771 423.13882446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -04953772 423.13885498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04953773 423.13885498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -04953774 423.13885498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04953775 423.13885498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -04953776 423.13888550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04953777 423.13888550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -04953778 423.13891602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04953779 423.13891602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -04953780 423.13894653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04953781 423.13894653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -04953782 423.13897705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04953783 423.13897705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -04953784 423.13900757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04953785 423.13900757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -04953786 423.13900757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04953787 423.13900757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -04953788 423.13903809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04953789 423.13906860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -04953790 423.13909912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04953791 423.13909912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -04953792 423.13912964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04953793 423.13912964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -04953794 423.13916016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04953795 423.13916016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -04953796 423.13916016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04953797 423.13916016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -04953798 423.13919067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04953799 423.13919067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -04953800 423.13922119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04953801 423.13922119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -04953802 423.13925171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04953803 423.13925171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -04953804 423.13928223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04953805 423.13928223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -04953806 423.13931274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04953807 423.13931274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -04953808 423.13931274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04953809 423.13934326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -04953810 423.13937378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04953811 423.13937378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -04953812 423.13940430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04953813 423.13940430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -04953814 423.13943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04953815 423.13943481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -04953816 423.13946533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04953817 423.13946533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -04953818 423.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04953819 423.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -04953820 423.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04953821 423.13949585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -04953822 423.13952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04953823 423.13952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -04953824 423.13955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04953825 423.13955688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -04953826 423.13958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04953827 423.13958740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -04953828 423.13961792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04953829 423.13964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -04953830 423.13964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04953831 423.13964844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -04953832 423.13967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04953833 423.13967896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -04953834 423.13970947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04953835 423.13970947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -04953836 423.13973999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04953837 423.13973999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -04953838 423.13977051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04953839 423.13977051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -04953840 423.13980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04953841 423.13980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -04953842 423.13980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04953843 423.13980103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -04953844 423.13983154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04953845 423.13983154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -04953846 423.13986206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04953847 423.13986206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -04953848 423.13989258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04953849 423.13992310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -04953850 423.13995361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04953851 423.13995361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -04953852 423.13995361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04953853 423.13995361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -04953854 423.13998413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04953855 423.13998413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -04953856 423.14001465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04953857 423.14001465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -04953858 423.14004517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04953859 423.14004517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -04953860 423.14007568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04953861 423.14007568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -04953862 423.14010620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04953863 423.14010620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -04953864 423.14013672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04953865 423.14013672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -04953866 423.14013672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04953867 423.14013672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -04953868 423.14016724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04953869 423.14019775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -04953870 423.14022827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04953871 423.14022827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -04953872 423.14025879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04953873 423.14025879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -04953874 423.14028931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04953875 423.14028931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -04953876 423.14028931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04953877 423.14028931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -04953878 423.14031982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04953879 423.14031982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -04953880 423.14035034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04953881 423.14035034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -04953882 423.14038086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04953883 423.14038086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -04953884 423.14041138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04953885 423.14041138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -04953886 423.14044189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04953887 423.14044189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -04953888 423.14044189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04953889 423.14047241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -04953890 423.14050293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04953891 423.14050293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -04953892 423.14053345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04953893 423.14053345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -04953894 423.14056396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04953895 423.14056396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -04953896 423.14059448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04953897 423.14059448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -04953898 423.14059448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04953899 423.14059448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -04953900 423.14062500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04953901 423.14062500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -04953902 423.14065552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04953903 423.14065552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -04953904 423.14068604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04953905 423.14068604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -04953906 423.14071655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04953907 423.14071655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -04953908 423.14074707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04953909 423.14074707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -04953910 423.14077759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04953911 423.14077759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -04953912 423.14080811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04953913 423.14080811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -04953914 423.14083862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04953915 423.14083862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -04953916 423.14086914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04953917 423.14086914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -04953918 423.14089966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04953919 423.14089966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -04953920 423.14093018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04953921 423.14093018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -04953922 423.14093018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04953923 423.14093018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -04953924 423.14096069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04953925 423.14096069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -04953926 423.14099121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04953927 423.14099121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -04953928 423.14102173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04953929 423.14105225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -04953930 423.14108276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04953931 423.14108276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -04953932 423.14108276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04953933 423.14108276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -04953934 423.14111328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04953935 423.14111328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -04953936 423.14114380 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04953937 423.14114380 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -04953938 423.14117432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -04953939 423.14117432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -04953940 423.14120483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -04953941 423.14120483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -04953942 423.14123535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -04953943 423.14123535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -04953944 423.14123535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -04953945 423.14123535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -04953946 423.14126587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -04953947 423.14126587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -04953948 423.14129639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -04953949 423.14129639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -04953950 423.14132690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -04953951 423.14135742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -04953952 423.14138794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -04953953 423.14138794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -04953954 423.14138794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -04953955 423.14138794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -04953956 423.14141846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -04953957 423.14141846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -04953958 423.14144897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -04953959 423.14144897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -04953960 423.14147949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -04953961 423.14147949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -04953962 423.14151001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -04953963 423.14151001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -04953964 423.14154053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -04953965 423.14154053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -04953966 423.14154053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -04953967 423.14154053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -04953968 423.14157104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -04953969 423.14157104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -04953970 423.14160156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -04953971 423.14163208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -04953972 423.14166260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -04953973 423.14166260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -04953974 423.14169312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -04953975 423.14169312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -04953976 423.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -04953977 423.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -04953978 423.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -04953979 423.14172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -04953980 423.14175415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -04953981 423.14175415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -04953982 423.14178467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -04953983 423.14178467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -04953984 423.14181519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -04953985 423.14181519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -04953986 423.14184570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -04953987 423.14184570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -04953988 423.14187622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -04953989 423.14187622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -04953990 423.14187622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -04953991 423.14190674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -04953992 423.14193726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -04953993 423.14193726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -04953994 423.14196777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -04953995 423.14196777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -04953996 423.14199829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -04953997 423.14199829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -04953998 423.14202881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -04953999 423.14202881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -04954000 423.14202881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -04954001 423.14202881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -04954002 423.14205933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -04954003 423.14205933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -04954004 423.14208984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -04954005 423.14208984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -04954006 423.14212036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -04954007 423.14212036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -04954008 423.14215088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -04954009 423.14215088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -04954010 423.14218140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -04954011 423.14218140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -04954012 423.14221191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -04954013 423.14221191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -04954014 423.14224243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -04954015 423.14224243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -04954016 423.14227295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -04954017 423.14227295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -04954018 423.14230347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -04954019 423.14230347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -04954020 423.14233398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -04954021 423.14233398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -04954022 423.14233398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -04954023 423.14233398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -04954024 423.14236450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -04954025 423.14236450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -04958092 423.19973755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -04958093 423.19973755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f0 -04958094 423.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -04958095 423.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa400 -04958096 423.19982910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -04958097 423.19982910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa410 -04958098 423.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -04958099 423.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa420 -04958100 423.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -04958101 423.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa430 -04958102 423.19989014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -04958103 423.19989014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa440 -04958104 423.19992065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -04958105 423.19992065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa450 -04958106 423.19995117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -04958107 423.19995117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa460 -04958108 423.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -04958109 423.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa470 -04958110 423.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -04958111 423.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa480 -04958112 423.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -04958113 423.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa490 -04958114 423.20004272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -04958115 423.20007324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a0 -04958116 423.20010376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -04958117 423.20010376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b0 -04958118 423.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -04958119 423.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c0 -04958120 423.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -04958121 423.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d0 -04958122 423.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -04958123 423.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e0 -04958124 423.20019531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -04958125 423.20019531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f0 -04958126 423.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -04958127 423.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa500 -04958128 423.20025635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -04958129 423.20025635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa510 -04958130 423.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -04958131 423.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa520 -04958132 423.20031738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -04958133 423.20031738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa530 -04958134 423.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -04958135 423.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0xa540 -04974734 423.43350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -04974735 423.43350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac00 -04974736 423.43353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -04974737 423.43353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac10 -04974738 423.43356323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -04974739 423.43356323 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac20 -04974740 423.43359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -04974741 423.43359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac30 -04974742 423.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -04974743 423.43362427 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac40 -04974744 423.43365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -04974745 423.43365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac50 -04974746 423.43368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -04974747 423.43368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac60 -04974748 423.43371582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -04974749 423.43371582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac70 -04974750 423.43371582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -04974751 423.43371582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac80 -04974752 423.43374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -04974753 423.43374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac90 -04974754 423.43377686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -04974755 423.43377686 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aca0 -04974756 423.43380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -04974757 423.43380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acb0 -04974758 423.43383789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -04974759 423.43386841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acc0 -04974760 423.43386841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -04974761 423.43386841 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acd0 -04974762 423.43389893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -04974763 423.43389893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ace0 -04974764 423.43392944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -04974765 423.43392944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2acf0 -04974766 423.43395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -04974767 423.43395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad00 -04974768 423.43399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -04974769 423.43399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad10 -04974770 423.43402100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -04974771 423.43402100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad20 -04974772 423.43402100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -04974773 423.43402100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad30 -04974774 423.43405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -04974775 423.43405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad40 -04974776 423.43408203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -04974777 423.43408203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad50 -04977088 423.46676636 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -04977089 423.46676636 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f590 -04977090 423.46679688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -04977091 423.46682739 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5a0 -04977092 423.46685791 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -04977093 423.46685791 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5b0 -04977094 423.46688843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -04977095 423.46688843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5c0 -04977096 423.46691895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -04977097 423.46691895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5d0 -04977098 423.46691895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -04977099 423.46691895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e0 -04977100 423.46694946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -04977101 423.46694946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f0 -04977102 423.46697998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -04977103 423.46697998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f600 -04977104 423.46701050 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -04977105 423.46701050 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f610 -04977106 423.46704102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -04977107 423.46704102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f620 -04977108 423.46707153 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -04977109 423.46707153 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f630 -04977110 423.46707153 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -04977111 423.46710205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f640 -04977112 423.46713257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -04977113 423.46713257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f650 -04977114 423.46716309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -04977115 423.46716309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f660 -04977116 423.46719360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -04977117 423.46719360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f670 -04977118 423.46722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -04977119 423.46722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f680 -04977120 423.46722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -04977121 423.46722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f690 -04977122 423.46725464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -04977123 423.46725464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a0 -04977124 423.46728516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -04977125 423.46728516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b0 -04977126 423.46731567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -04977127 423.46731567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c0 -04977128 423.46734619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -04977129 423.46734619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d0 -04977130 423.46737671 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -04977131 423.46740723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e0 -04977870 423.47784424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -04977871 423.47784424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e00 -04977872 423.47787476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -04977873 423.47787476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e10 -04977874 423.47787476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -04977875 423.47787476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e20 -04977876 423.47790527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -04977877 423.47790527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e30 -04977878 423.47793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -04977879 423.47793579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e40 -04977880 423.47796631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -04977881 423.47796631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e50 -04977882 423.47799683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -04977883 423.47802734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e60 -04977884 423.47802734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -04977885 423.47802734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e70 -04977886 423.47805786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -04977887 423.47805786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e80 -04977888 423.47808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -04977889 423.47808838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e90 -04977890 423.47811890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -04977891 423.47811890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea0 -04977892 423.47814941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -04977893 423.47814941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb0 -04977894 423.47817993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -04977895 423.47817993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec0 -04977896 423.47821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -04977897 423.47821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed0 -04977898 423.47821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -04977899 423.47821045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee0 -04977900 423.47824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -04977901 423.47824097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef0 -04977902 423.47827148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -04977903 423.47830200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f00 -04977904 423.47833252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -04977905 423.47833252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f10 -04977906 423.47836304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -04977907 423.47836304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f20 -04977908 423.47836304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -04977909 423.47836304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f30 -04977910 423.47839355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -04977911 423.47839355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f40 -04977912 423.47842407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -04977913 423.47842407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f50 -04978890 423.49221802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -04978891 423.49221802 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de0 -04978892 423.49224854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -04978893 423.49224854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df0 -04978894 423.49227905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -04978895 423.49227905 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e00 -04978896 423.49230957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -04978897 423.49230957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e10 -04978898 423.49234009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -04978899 423.49234009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e20 -04978900 423.49234009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -04978901 423.49237061 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e30 -04978902 423.49240112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -04978903 423.49240112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e40 -04978904 423.49243164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -04978905 423.49243164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e50 -04978906 423.49246216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -04978907 423.49246216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e60 -04978908 423.49249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -04978909 423.49249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e70 -04978910 423.49249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -04978911 423.49249268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e80 -04978912 423.49252319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -04978913 423.49252319 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e90 -04978914 423.49255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -04978915 423.49255371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea0 -04978916 423.49258423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -04978917 423.49258423 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb0 -04978918 423.49261475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -04978919 423.49261475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec0 -04978920 423.49264526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -04978921 423.49264526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed0 -04978922 423.49267578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -04978923 423.49267578 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee0 -04978924 423.49270630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -04978925 423.49270630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef0 -04978926 423.49273682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -04978927 423.49273682 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -04978928 423.49276733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -04978929 423.49276733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -04978930 423.49279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -04978931 423.49279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -04978932 423.49279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -04978933 423.49279785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -04983078 423.55130005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -04983079 423.55130005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -04983080 423.55133057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -04983081 423.55133057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -04983082 423.55136108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -04983083 423.55136108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -04983084 423.55139160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -04983085 423.55139160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -04983086 423.55142212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -04983087 423.55142212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -04983088 423.55142212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -04983089 423.55142212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -04983090 423.55145264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -04983091 423.55148315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -04983092 423.55151367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -04983093 423.55151367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -04983094 423.55154419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -04983095 423.55154419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -04983096 423.55157471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -04983097 423.55157471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b150 -04983098 423.55160522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -04983099 423.55160522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b160 -04983100 423.55160522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -04983101 423.55160522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b170 -04983102 423.55163574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -04983103 423.55163574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b180 -04983104 423.55166626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -04983105 423.55166626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b190 -04983106 423.55169678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -04983107 423.55169678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1a0 -04983108 423.55172729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -04983109 423.55172729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1b0 -04983110 423.55175781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -04983111 423.55175781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1c0 -04983112 423.55178833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -04983113 423.55178833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1d0 -04983114 423.55181885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -04983115 423.55181885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1e0 -04983116 423.55184937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -04983117 423.55184937 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b1f0 -04983118 423.55187988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -04983119 423.55187988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b200 -04983120 423.55191040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -04983121 423.55191040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b210 -04988040 423.62142944 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -04988041 423.62145996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bd0 -04988042 423.62149048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -04988043 423.62149048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44be0 -04988044 423.62149048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -04988045 423.62149048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bf0 -04988046 423.62152100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -04988047 423.62152100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c00 -04988048 423.62155151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -04988049 423.62155151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c10 -04988050 423.62158203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -04988051 423.62158203 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c20 -04988052 423.62161255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -04988053 423.62161255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c30 -04988054 423.62164307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -04988055 423.62164307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c40 -04988056 423.62164307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -04988057 423.62164307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c50 -04988058 423.62167358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -04988059 423.62167358 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c60 -04988060 423.62170410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -04988061 423.62170410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c70 -04988062 423.62173462 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -04988063 423.62176514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c80 -04988064 423.62179565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -04988065 423.62179565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c90 -04988066 423.62182617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -04988067 423.62182617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca0 -04988068 423.62182617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -04988069 423.62182617 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb0 -04988070 423.62185669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -04988071 423.62185669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc0 -04988072 423.62188721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -04988073 423.62188721 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd0 -04988074 423.62191772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -04988075 423.62191772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce0 -04988076 423.62194824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -04988077 423.62194824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf0 -04988078 423.62197876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -04988079 423.62197876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d00 -04988080 423.62197876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -04988081 423.62197876 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d10 -04988082 423.62200928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -04988083 423.62203979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d20 -04993422 423.70144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -04993423 423.70144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f400 -04993424 423.70150757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -04993425 423.70150757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f410 -04993426 423.70153809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -04993427 423.70153809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f420 -04993428 423.70156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -04993429 423.70156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f430 -04993430 423.70156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -04993431 423.70156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f440 -04993432 423.70159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -04993433 423.70159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f450 -04993434 423.70162964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -04993435 423.70162964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f460 -04993436 423.70166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -04993437 423.70166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f470 -04993438 423.70169067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -04993439 423.70169067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f480 -04993440 423.70172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -04993441 423.70172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f490 -04993442 423.70172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -04993443 423.70175171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4a0 -04993444 423.70178223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -04993445 423.70178223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4b0 -04993446 423.70181274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -04993447 423.70181274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4c0 -04993448 423.70184326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -04993449 423.70184326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4d0 -04993450 423.70187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -04993451 423.70187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4e0 -04993452 423.70187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -04993453 423.70187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f4f0 -04993454 423.70190430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -04993455 423.70190430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f500 -04993456 423.70193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -04993457 423.70193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f510 -04993458 423.70196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -04993459 423.70196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f520 -04993460 423.70199585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -04993461 423.70199585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f530 -04993462 423.70202637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -04993463 423.70202637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f540 -04993464 423.70205688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -04993465 423.70205688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f550 -04995260 424.61709595 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995261 424.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995262 424.61761475 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995263 424.61770630 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995264 424.61807251 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995265 424.61819458 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995266 424.61849976 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995267 424.61856079 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995268 424.62341309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04995269 424.62347412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04995270 424.62347412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04995271 424.62347412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -04995272 424.62362671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04995273 424.62362671 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04995274 424.62365723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -04995275 424.62368774 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -04995276 424.62457275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995277 424.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995278 424.62512207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995279 424.62521362 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -04995280 424.98666382 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -04995281 425.00671387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04995282 425.00671387 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -04995283 426.07589722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04995284 426.07589722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -04995285 426.07592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04995286 426.07592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -04995287 426.07595825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04995288 426.07595825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -04995289 426.07598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04995290 426.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -04995291 426.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04995292 426.07601929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -04995293 426.07604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04995294 426.07604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -04995295 426.07608032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04995296 426.07608032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -04995297 426.07611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04995298 426.07611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -04995299 426.07614136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04995300 426.07614136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -04995301 426.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04995302 426.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -04995303 426.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04995304 426.07617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -04995305 426.07620239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04995306 426.07620239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -04995307 426.07623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04995308 426.07623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -04995309 426.07626343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04995310 426.07629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -04995311 426.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04995312 426.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -04995313 426.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04995314 426.07632446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -04995315 426.07635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04995316 426.07635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -04995317 426.07638550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04995318 426.07638550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -04995319 426.07641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04995320 426.07641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -04995321 426.07644653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04995322 426.07644653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -04995323 426.07647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04995324 426.07647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -04995325 426.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04995326 426.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -04995327 426.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04995328 426.07650757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -04995329 426.07653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04995330 426.07656860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -04995331 426.07659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04995332 426.07659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -04995333 426.07662964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04995334 426.07662964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -04995335 426.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04995336 426.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -04995337 426.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04995338 426.07666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -04995339 426.07669067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04995340 426.07669067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -04995341 426.07672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04995342 426.07672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -04995343 426.07675171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04995344 426.07675171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -04995345 426.07678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04995346 426.07678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -04995347 426.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04995348 426.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -04995349 426.07681274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04995350 426.07684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -04995351 426.07687378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04995352 426.07687378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -04995353 426.07690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04995354 426.07690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -04995355 426.07693481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04995356 426.07693481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -04995357 426.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04995358 426.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -04995359 426.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04995360 426.07696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -04995361 426.07699585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04995362 426.07699585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -04995363 426.07702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04995364 426.07702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -04995365 426.07705688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04995366 426.07705688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -04995367 426.07708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04995368 426.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -04995369 426.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04995370 426.07711792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -04995371 426.07714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04995372 426.07714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -04995373 426.07717896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04995374 426.07717896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -04995375 426.07720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04995376 426.07720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -04995377 426.07723999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04995378 426.07723999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -04995379 426.07727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04995380 426.07727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -04995381 426.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04995382 426.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -04995383 426.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04995384 426.07730103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -04995385 426.07733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04995386 426.07733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -04995387 426.07736206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04995388 426.07739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -04995389 426.07742310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04995390 426.07742310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -04995391 426.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04995392 426.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -04995393 426.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04995394 426.07745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -04995395 426.07748413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04995396 426.07748413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -04995397 426.07751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04995398 426.07751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -04995399 426.07754517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04995400 426.07754517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -04995401 426.07757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04995402 426.07757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -04995403 426.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04995404 426.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -04995405 426.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04995406 426.07760620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -04995407 426.07766724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04995408 426.07766724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -04995409 426.07769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04995410 426.07769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -04995411 426.07772827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04995412 426.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -04995413 426.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04995414 426.07775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -04995415 426.07778931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04995416 426.07778931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -04995417 426.07781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04995418 426.07781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -04995419 426.07785034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04995420 426.07785034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -04995421 426.07788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04995422 426.07788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -04995423 426.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04995424 426.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -04995425 426.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04995426 426.07791138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -04995427 426.07794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04995428 426.07794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -04995429 426.07797241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04995430 426.07797241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -04995431 426.07800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04995432 426.07803345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -04995433 426.07806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04995434 426.07806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -04995435 426.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04995436 426.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -04995437 426.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04995438 426.07809448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -04995439 426.07812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04995440 426.07812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -04995441 426.07815552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04995442 426.07815552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -04995443 426.07818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04995444 426.07818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -04995445 426.07821655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04995446 426.07821655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -04995447 426.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04995448 426.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -04995449 426.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04995450 426.07824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -04995451 426.07827759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04995452 426.07830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -04995453 426.07833862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04995454 426.07833862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -04995455 426.07836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04995456 426.07836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -04995457 426.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04995458 426.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -04995459 426.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04995460 426.07839966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -04995461 426.07843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04995462 426.07843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -04995463 426.07846069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04995464 426.07846069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -04995465 426.07849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04995466 426.07849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -04995467 426.07852173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04995468 426.07852173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -04995469 426.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04995470 426.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -04995471 426.07855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04995472 426.07858276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -04995473 426.07861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04995474 426.07861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -04995475 426.07864380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04995476 426.07864380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -04995477 426.07867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04995478 426.07867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -04995479 426.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04995480 426.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -04995481 426.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04995482 426.07870483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -04995483 426.07873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04995484 426.07873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -04995485 426.07876587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04995486 426.07876587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -04995487 426.07879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04995488 426.07879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -04995489 426.07882690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04995490 426.07885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -04995491 426.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04995492 426.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -04995493 426.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04995494 426.07888794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -04995495 426.07891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04995496 426.07891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -04995497 426.07894897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04995498 426.07894897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -04995499 426.07897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04995500 426.07897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -04995501 426.07901001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04995502 426.07901001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -04995503 426.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04995504 426.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -04995505 426.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04995506 426.07904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -04995507 426.07907104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04995508 426.07907104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -04995509 426.07910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04995510 426.07913208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -04995511 426.07916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04995512 426.07916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -04995513 426.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04995514 426.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -04995515 426.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04995516 426.07919312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -04995517 426.07922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04995518 426.07922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -04995519 426.07925415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04995520 426.07925415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -04995521 426.07928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04995522 426.07928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -04995523 426.07931519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04995524 426.07931519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -04995525 426.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04995526 426.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -04995527 426.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04995528 426.07934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -04995529 426.07937622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04995530 426.07940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -04995531 426.07943726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04995532 426.07943726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -04995533 426.07946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04995534 426.07946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -04995535 426.07949829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04995536 426.07949829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -04995537 426.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04995538 426.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -04995539 426.07952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04995540 426.07955933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -04995541 426.07958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04995542 426.07958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -04995543 426.07962036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04995544 426.07962036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -04995545 426.07965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04995546 426.07965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -04995547 426.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04995548 426.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -04995549 426.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04995550 426.07968140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -04995551 426.07971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04995552 426.07971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -04995553 426.07974243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04995554 426.07974243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -04995555 426.07977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04995556 426.07977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -04995557 426.07980347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04995558 426.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -04995559 426.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04995560 426.07983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -04995561 426.07986450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04995562 426.07986450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -04995563 426.07989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04995564 426.07989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -04995565 426.07992554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04995566 426.07992554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -04995567 426.07995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04995568 426.07995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -04995569 426.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04995570 426.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -04995571 426.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04995572 426.07998657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -04995573 426.08001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04995574 426.08001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -04995575 426.08004761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04995576 426.08004761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -04995577 426.08007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04995578 426.08010864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -04995579 426.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04995580 426.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -04995581 426.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04995582 426.08013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -04995583 426.08016968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04995584 426.08016968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -04995585 426.08020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04995586 426.08020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -04995587 426.08023071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04995588 426.08023071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -04995589 426.08026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04995590 426.08026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -04995591 426.08029175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04995592 426.08029175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -04995593 426.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04995594 426.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -04995595 426.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04995596 426.08032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -04995597 426.08035278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04995598 426.08035278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -04995599 426.08038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04995600 426.08041382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -04995601 426.08044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04995602 426.08044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -04995603 426.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04995604 426.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -04995605 426.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04995606 426.08047485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -04995607 426.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04995608 426.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -04995609 426.08053589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04995610 426.08053589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -04995611 426.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04995612 426.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -04995613 426.08059692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04995614 426.08059692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -04995615 426.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04995616 426.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -04995617 426.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04995618 426.08065796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -04995619 426.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04995620 426.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -04995621 426.08071899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04995622 426.08071899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -04995623 426.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04995624 426.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -04995625 426.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04995626 426.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -04995627 426.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04995628 426.08078003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -04995629 426.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04995630 426.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -04995631 426.08084106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04995632 426.08084106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -04995633 426.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04995634 426.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -04995635 426.08090210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04995636 426.08090210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -04995637 426.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04995638 426.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -04995639 426.08096313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04995640 426.08096313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -04995641 426.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04995642 426.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -04995643 426.08102417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04995644 426.08102417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -04995645 426.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04995646 426.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -04995647 426.08108521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04995648 426.08108521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -04995649 426.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04995650 426.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -04995651 426.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04995652 426.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -04995653 426.08114624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04995654 426.08114624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -04995655 426.08117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04995656 426.08117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -04995657 426.08120728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04995658 426.08123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -04995659 426.08123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04995660 426.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -04995661 426.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04995662 426.08126831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -04995663 426.08129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04995664 426.08129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -04995665 426.08132935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04995666 426.08132935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -04995667 426.08135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04995668 426.08135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -04995669 426.08139038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04995670 426.08139038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -04995671 426.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04995672 426.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -04995673 426.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04995674 426.08142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -04995675 426.08145142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04995676 426.08145142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -04995677 426.08148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04995678 426.08148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -04995679 426.08151245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04995680 426.08154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -04995681 426.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04995682 426.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -04995683 426.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04995684 426.08157349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -04995685 426.08160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04995686 426.08160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -04995687 426.08163452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04995688 426.08163452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -04995689 426.08166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04995690 426.08166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -04995691 426.08169556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04995692 426.08169556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -04995693 426.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04995694 426.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -04995695 426.08172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04995696 426.08175659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -04995697 426.08178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04995698 426.08178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -04995699 426.08181763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04995700 426.08181763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -04995701 426.08184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04995702 426.08184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -04995703 426.08187866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04995704 426.08187866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -04995705 426.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04995706 426.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -04995707 426.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04995708 426.08190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -04995709 426.08193970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04995710 426.08193970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -04995711 426.08197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04995712 426.08197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -04995713 426.08200073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04995714 426.08203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -04995715 426.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04995716 426.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -04995717 426.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04995718 426.08206177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -04995719 426.08209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04995720 426.08209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -04995721 426.08212280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04995722 426.08212280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -04995723 426.08215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04995724 426.08215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -04995725 426.08218384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04995726 426.08218384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -04995727 426.08221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04995728 426.08221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -04995729 426.08224487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04995730 426.08224487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -04995731 426.08227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04995732 426.08227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -04995733 426.08230591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04995734 426.08230591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -04995735 426.08233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04995736 426.08233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -04995737 426.08236694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04995738 426.08236694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -04995739 426.08236694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04995740 426.08236694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -04995741 426.08239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04995742 426.08239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -04995743 426.08242798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04995744 426.08245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -04995745 426.08248901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04995746 426.08248901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -04995747 426.08251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04995748 426.08251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -04995749 426.08251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04995750 426.08251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -04995751 426.08255005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04995752 426.08255005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -04995753 426.08258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04995754 426.08258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -04995755 426.08261108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04995756 426.08261108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -04995757 426.08264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04995758 426.08264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -04995759 426.08267212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04995760 426.08267212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -04995761 426.08270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04995762 426.08270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -04995763 426.08273315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04995764 426.08273315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -04995765 426.08276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04995766 426.08276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -04995767 426.08279419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04995768 426.08279419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -04995769 426.08282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04995770 426.08282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -04995771 426.08285522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04995772 426.08285522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -04995773 426.08285522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04995774 426.08285522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -04995775 426.08288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04995776 426.08288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -04995777 426.08291626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04995778 426.08291626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -04995779 426.08294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04995780 426.08297729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -04995781 426.08300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04995782 426.08300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -04995783 426.08300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04995784 426.08300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -04995785 426.08303833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04995786 426.08303833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -04995787 426.08306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04995788 426.08306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -04995789 426.08309937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04995790 426.08309937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -04995791 426.08312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04995792 426.08312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -04995793 426.08316040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04995794 426.08316040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -04995795 426.08316040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04995796 426.08316040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -04995797 426.08319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04995798 426.08322144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -04995799 426.08322144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04995800 426.08325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -04995801 426.08328247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04995802 426.08328247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -04995803 426.08331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04995804 426.08331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -04995805 426.08331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04995806 426.08331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -04995807 426.08334351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04995808 426.08334351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -04995809 426.08337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04995810 426.08337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -04995811 426.08340454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04995812 426.08340454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -04995813 426.08343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04995814 426.08343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -04995815 426.08346558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04995816 426.08346558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -04995817 426.08349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04995818 426.08349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -04995819 426.08352661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04995820 426.08352661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -04995821 426.08355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04995822 426.08355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -04995823 426.08358765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04995824 426.08358765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -04995825 426.08361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04995826 426.08361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -04995827 426.08364868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04995828 426.08364868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -04995829 426.08364868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04995830 426.08364868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -04995831 426.08367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04995832 426.08367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -04995833 426.08370972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04995834 426.08370972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -04995835 426.08374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04995836 426.08374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -04995837 426.08377075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04995838 426.08380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -04995839 426.08380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04995840 426.08380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -04995841 426.08383179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04995842 426.08383179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -04995843 426.08386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04995844 426.08386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -04995845 426.08389282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04995846 426.08389282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -04995847 426.08392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04995848 426.08392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -04995849 426.08395386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04995850 426.08395386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -04995851 426.08395386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04995852 426.08395386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -04995853 426.08398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04995854 426.08398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -04995855 426.08401489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04995856 426.08401489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -04995857 426.08404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04995858 426.08404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -04995859 426.08407593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04995860 426.08410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -04995861 426.08410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04995862 426.08410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -04995863 426.08413696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04995864 426.08413696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -04995865 426.08416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04995866 426.08416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -04995867 426.08419800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04995868 426.08419800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -04995869 426.08422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04995870 426.08422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -04995871 426.08425903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04995872 426.08425903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -04995873 426.08428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04995874 426.08428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -04995875 426.08428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04995876 426.08428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -04995877 426.08432007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04995878 426.08432007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -04995879 426.08435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04995880 426.08438110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -04995881 426.08441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04995882 426.08441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -04995883 426.08444214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04995884 426.08444214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -04995885 426.08444214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04995886 426.08444214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -04995887 426.08447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04995888 426.08447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -04995889 426.08450317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04995890 426.08450317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -04995891 426.08453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04995892 426.08453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -04995893 426.08456421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04995894 426.08456421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -04995895 426.08459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04995896 426.08459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -04995897 426.08459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04995898 426.08459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -04995899 426.08462524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04995900 426.08465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -04995901 426.08468628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04995902 426.08468628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -04995903 426.08471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04995904 426.08471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -04995905 426.08474731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04995906 426.08474731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -04995907 426.08474731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04995908 426.08474731 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -04995909 426.08477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04995910 426.08477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -04995911 426.08480835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04995912 426.08480835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -04995913 426.08483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04995914 426.08483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -04995915 426.08486938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04995916 426.08486938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -04995917 426.08489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04995918 426.08493042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -04995919 426.08493042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04995920 426.08493042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -04995921 426.08496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04995922 426.08496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -04995923 426.08499146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04995924 426.08499146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -04995925 426.08502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04995926 426.08502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -04995927 426.08505249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04995928 426.08505249 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -04995929 426.08508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04995930 426.08508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -04995931 426.08508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04995932 426.08508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -04995933 426.08511353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04995934 426.08511353 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -04995935 426.08514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04995936 426.08514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -04995937 426.08517456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04995938 426.08517456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -04995939 426.08520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04995940 426.08523560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -04995941 426.08523560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04995942 426.08523560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -04995943 426.08526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04995944 426.08526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -04995945 426.08529663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04995946 426.08529663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -04995947 426.08532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04995948 426.08532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -04995949 426.08535767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04995950 426.08535767 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -04995951 426.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04995952 426.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -04995953 426.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04995954 426.08538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -04995955 426.08541870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04995956 426.08541870 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -04995957 426.08544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04995958 426.08544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -04995959 426.08547974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04995960 426.08551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -04995961 426.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04995962 426.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -04995963 426.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04995964 426.08554077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -04995965 426.08557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04995966 426.08557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -04995967 426.08560181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04995968 426.08560181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -04995969 426.08563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04995970 426.08563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -04995971 426.08566284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04995972 426.08566284 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -04995973 426.08569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04995974 426.08569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -04995975 426.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04995976 426.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -04995977 426.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04995978 426.08572388 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -04995979 426.08575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04995980 426.08575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -04995981 426.08578491 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04995982 426.08581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -04995983 426.08584595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04995984 426.08584595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -04995985 426.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04995986 426.08587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -04997075 426.10150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04997076 426.10150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -04997077 426.10153198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04997078 426.10153198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -04997079 426.10156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04997080 426.10156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -04997081 426.10159302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04997082 426.10159302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -04997083 426.10159302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04997084 426.10159302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -04997085 426.10162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04997086 426.10162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -04997087 426.10165405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04997088 426.10165405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -04997089 426.10168457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04997090 426.10171509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -04997091 426.10174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04997092 426.10174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -04997093 426.10174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04997094 426.10174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -04997095 426.10177612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04997096 426.10177612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -04997097 426.10180664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04997098 426.10180664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -04997099 426.10183716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04997100 426.10183716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -04997101 426.10186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04997102 426.10186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -04997103 426.10189819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04997104 426.10189819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -04997105 426.10192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04997106 426.10192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -04997107 426.10192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04997108 426.10192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -04997109 426.10195923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04997110 426.10198975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -04997111 426.10202026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04997112 426.10202026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -04997113 426.10205078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04997114 426.10205078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -04997115 426.10208130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04997116 426.10208130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -04997117 426.10208130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -04997118 426.10208130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05002237 426.17428589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -05002238 426.17431641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe988 -05002239 426.17431641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -05002240 426.17434692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe998 -05002241 426.17434692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -05002242 426.17434692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9a8 -05002243 426.17437744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b8 -05002244 426.17437744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9b8 -05002245 426.17440796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -05002246 426.17440796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9c8 -05002247 426.17443848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -05002248 426.17443848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9d8 -05002249 426.17446899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -05002250 426.17446899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9e8 -05002251 426.17449951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -05002252 426.17449951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f8 -05002253 426.17453003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -05002254 426.17453003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -05002255 426.17453003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -05002256 426.17453003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -05002257 426.17456055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -05002258 426.17456055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -05002259 426.17459106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -05002260 426.17459106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -05002261 426.17462158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -05002262 426.17462158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -05002263 426.17465210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -05002264 426.17465210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -05002265 426.17468262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -05002266 426.17468262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -05002267 426.17468262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -05002268 426.17468262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -05002269 426.17471313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -05002270 426.17471313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -05002271 426.17474365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -05002272 426.17474365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -05002273 426.17477417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -05002274 426.17477417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -05002275 426.17480469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -05002276 426.17480469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -05002277 426.17483521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -05002278 426.17483521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -05002279 426.17486572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -05002280 426.17486572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -05021341 426.44079590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e88 -05021342 426.44079590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e88 -05021343 426.44082642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e98 -05021344 426.44082642 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e98 -05021345 426.44088745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea8 -05021346 426.44088745 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea8 -05021347 426.44091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb8 -05021348 426.44091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb8 -05021349 426.44094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec8 -05021350 426.44094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec8 -05021351 426.44097900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed8 -05021352 426.44100952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed8 -05021353 426.44104004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee8 -05021354 426.44104004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee8 -05021355 426.44110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef8 -05021356 426.44110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef8 -05021357 426.44110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f08 -05021358 426.44110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f08 -05021359 426.44116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f18 -05021360 426.44116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f18 -05021361 426.44119263 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f28 -05021362 426.44122314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f28 -05021363 426.44125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f38 -05021364 426.44125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f38 -05021365 426.44128418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f48 -05021366 426.44128418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f48 -05021367 426.44131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f58 -05021368 426.44131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f58 -05021369 426.44137573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f68 -05021370 426.44137573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f68 -05021371 426.44140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f78 -05021372 426.44140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f78 -05021373 426.44143677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f88 -05021374 426.44143677 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f88 -05021375 426.44149780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f98 -05021376 426.44149780 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f98 -05021377 426.44152832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa8 -05021378 426.44155884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa8 -05021379 426.44158936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb8 -05021380 426.44158936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb8 -05021381 426.44161987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc8 -05021382 426.44161987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc8 -05021383 426.44165039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd8 -05021384 426.44165039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd8 -05024205 426.49600220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39808 -05024206 426.49600220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39808 -05024207 426.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39818 -05024208 426.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39818 -05024209 426.49606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39828 -05024210 426.49606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39828 -05024211 426.49606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39838 -05024212 426.49606323 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39838 -05024213 426.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39848 -05024214 426.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39848 -05024215 426.49612427 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39858 -05024216 426.49615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39858 -05024217 426.49618530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39868 -05024218 426.49618530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39868 -05024219 426.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -05024220 426.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39878 -05024221 426.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -05024222 426.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39888 -05024223 426.49624634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -05024224 426.49624634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39898 -05024225 426.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -05024226 426.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398a8 -05024227 426.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -05024228 426.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398b8 -05024229 426.49636841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -05024230 426.49636841 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398c8 -05024231 426.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -05024232 426.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398d8 -05024233 426.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -05024234 426.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398e8 -05024235 426.49642944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -05024236 426.49642944 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x398f8 -05024237 426.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -05024238 426.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39908 -05024239 426.49649048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -05024240 426.49652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39918 -05024241 426.49655151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -05024242 426.49655151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39928 -05024243 426.49655151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -05024244 426.49655151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39938 -05024245 426.49658203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -05024246 426.49658203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39948 -05024247 426.49661255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -05024248 426.49661255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39958 -05029611 426.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -05029612 426.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -05029613 426.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -05029614 426.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -05029615 426.57424927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -05029616 426.57424927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -05029617 426.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -05029618 426.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -05029619 426.57431030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -05029620 426.57431030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -05029621 426.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -05029622 426.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -05029623 426.57437134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -05029624 426.57437134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -05029625 426.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -05029626 426.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -05029627 426.57443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -05029628 426.57443237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -05029629 426.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -05029630 426.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -05029631 426.57449341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -05029632 426.57449341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -05029633 426.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -05029634 426.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -05029635 426.57455444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -05029636 426.57455444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -05029637 426.57455444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -05029638 426.57455444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -05029639 426.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -05029640 426.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -05029641 426.57461548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -05029642 426.57461548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -05029643 426.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -05029644 426.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -05029645 426.57467651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -05029646 426.57467651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -05029647 426.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -05029648 426.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -05029649 426.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -05029650 426.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -05029651 426.57473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -05029652 426.57473755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -05029653 426.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -05029654 426.57479858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -05034686 426.64398193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df88 -05034687 426.64401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df98 -05034688 426.64401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df98 -05034689 426.64404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa8 -05034690 426.64404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfa8 -05034691 426.64407349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb8 -05034692 426.64407349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfb8 -05034693 426.64410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc8 -05034694 426.64410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfc8 -05034695 426.64413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd8 -05034696 426.64413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfd8 -05034697 426.64413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe8 -05034698 426.64413452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dfe8 -05034699 426.64416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff8 -05034700 426.64416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dff8 -05034701 426.64419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e008 -05034702 426.64419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e008 -05034703 426.64422607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e018 -05034704 426.64425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e018 -05034705 426.64428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e028 -05034706 426.64428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e028 -05034707 426.64428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e038 -05034708 426.64428711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e038 -05034709 426.64431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e048 -05034710 426.64431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e048 -05034711 426.64434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e058 -05034712 426.64434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e058 -05034713 426.64437866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e068 -05034714 426.64437866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e068 -05034715 426.64440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e078 -05034716 426.64440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e078 -05034717 426.64443970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e088 -05034718 426.64443970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e088 -05034719 426.64443970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e098 -05034720 426.64443970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e098 -05034721 426.64447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a8 -05034722 426.64447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0a8 -05034723 426.64450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b8 -05034724 426.64450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0b8 -05034725 426.64453125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c8 -05034726 426.64453125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0c8 -05034727 426.64456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d8 -05034728 426.64456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0d8 -05034729 426.64459229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e0e8 -05037171 427.00909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05037172 427.03112793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037173 427.03112793 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037174 427.13104248 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037175 427.13107300 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037176 427.13107300 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037177 427.13110352 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05037178 427.13122559 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037179 427.13122559 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05037180 427.13128662 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037181 427.13131714 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05037182 427.16009521 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05037183 427.16079712 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05037184 428.59252930 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05037185 428.59304810 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05037186 429.03277588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05037187 429.05114746 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037188 429.05114746 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037189 429.63897705 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037190 429.63900757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037191 429.63900757 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037192 429.63906860 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05037193 429.63916016 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037194 429.63916016 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05037195 429.63922119 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05037196 429.63928223 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05037197 431.05239868 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05037198 431.07369995 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037199 431.07369995 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05037200 431.67901611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05037201 431.67901611 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05037202 431.67907715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05037203 431.67907715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05037204 431.67907715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05037205 431.67907715 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05037206 431.67913818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05037207 431.67913818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05037208 431.67916870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05037209 431.67916870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05037210 431.67916870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05037211 431.67916870 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05037212 431.67922974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05037213 431.67922974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05037214 431.67922974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05037215 431.67922974 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05037216 431.67929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05037217 431.67929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05037218 431.67929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05037219 431.67929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05037220 431.67932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05037221 431.67932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05037222 431.67932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05037223 431.67932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05037224 431.67938232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05037225 431.67938232 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05037226 431.67944336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05037227 431.67944336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05037228 431.67944336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05037229 431.67944336 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05037230 431.67947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05037231 431.67947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05037232 431.67947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05037233 431.67947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05037234 431.67953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05037235 431.67953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05037236 431.67953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05037237 431.67953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05037238 431.67959595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05037239 431.67959595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05037240 431.67959595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05037241 431.67959595 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05037242 431.67962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05037243 431.67962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05037244 431.67962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05037245 431.67968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05037246 431.67968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05037247 431.67968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05037248 431.67974854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05037249 431.67974854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05037250 431.67974854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05037251 431.67974854 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05037252 431.67980957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05037253 431.67980957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05037254 431.67984009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05037255 431.67984009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05037256 431.67984009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05037257 431.67984009 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05037258 431.67990112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05037259 431.67990112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05037260 431.67990112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05037261 431.67990112 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05037262 431.67996216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05037263 431.67996216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05037264 431.67999268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05037265 431.67999268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05037266 431.67999268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05037267 431.67999268 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05037268 431.68005371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05037269 431.68005371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05037270 431.68005371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05037271 431.68005371 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05037272 431.68011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05037273 431.68011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05037274 431.68011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05037275 431.68011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05037276 431.68014526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05037277 431.68014526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05037278 431.68014526 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05037279 431.68020630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05037280 431.68020630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05037281 431.68020630 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05037282 431.68026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05037283 431.68026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05037284 431.68026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05037285 431.68026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05037286 431.68029785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05037287 431.68029785 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05037288 431.68035889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05037289 431.68035889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05037290 431.68035889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05037291 431.68035889 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05037292 431.68041992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05037293 431.68041992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05037294 431.68045044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05037295 431.68045044 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05037296 431.68051147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05037297 431.68051147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05037298 431.68051147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05037299 431.68051147 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05037300 431.68057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05037301 431.68057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05037302 431.68057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05037303 431.68057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05037304 431.68060303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05037305 431.68060303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05037306 431.68060303 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05037307 431.68066406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05037308 431.68066406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05037309 431.68066406 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05037310 431.68072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05037311 431.68072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05037312 431.68072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05037313 431.68072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05037314 431.68075562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05037315 431.68075562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05037316 431.68075562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05037317 431.68075562 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05037318 431.68081665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05037319 431.68081665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05037320 431.68081665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05037321 431.68081665 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05037322 431.68087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05037323 431.68087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05037324 431.68090820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05037325 431.68090820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05037326 431.68090820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05037327 431.68090820 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05037328 431.68096924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05037329 431.68096924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05037330 431.68096924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05037331 431.68096924 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05037332 431.68103027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05037333 431.68103027 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05037334 431.68106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05037335 431.68106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05037336 431.68106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05037337 431.68106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05037338 431.68112183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05037339 431.68112183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05037340 431.68112183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05037341 431.68112183 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05037342 431.68118286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05037343 431.68118286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05037344 431.68118286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05037345 431.68118286 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05037346 431.68124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05037347 431.68124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05037348 431.68124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05037349 431.68124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05037350 431.68127441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05037351 431.68127441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05037352 431.68127441 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05037353 431.68133545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05037354 431.68133545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05037355 431.68133545 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05037356 431.68139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05037357 431.68139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05037358 431.68139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05037359 431.68139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05037360 431.68142700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05037361 431.68142700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05037362 431.68142700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05037363 431.68142700 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05037364 431.68148804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05037365 431.68148804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05037366 431.68148804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05037367 431.68148804 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05037368 431.68154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05037369 431.68154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05037370 431.68154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05037371 431.68154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05037372 431.68157959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05037373 431.68157959 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05037374 431.68164063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05037375 431.68164063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05037376 431.68164063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05037377 431.68164063 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05037378 431.68170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05037379 431.68170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05037380 431.68170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05037381 431.68170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05037382 431.68173218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05037383 431.68173218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05037384 431.68173218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05037385 431.68173218 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05037386 431.68179321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05037387 431.68179321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05037388 431.68179321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05037389 431.68179321 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05037390 431.68185425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05037391 431.68185425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05037392 431.68185425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05037393 431.68188477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05037394 431.68188477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05037395 431.68188477 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05037396 431.68194580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05037397 431.68194580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05037398 431.68194580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05037399 431.68194580 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05037400 431.68200684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05037401 431.68200684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05037402 431.68200684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05037403 431.68200684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05037404 431.68203735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05037405 431.68203735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05037406 431.68203735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05037407 431.68203735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05037408 431.68209839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05037409 431.68209839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05037410 431.68209839 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05037411 431.68215942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05037412 431.68215942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05037413 431.68215942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05037414 431.68218994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05037415 431.68218994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05037416 431.68218994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05037417 431.68218994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05037418 431.68225098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05037419 431.68225098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05037420 431.68225098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05037421 431.68225098 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05037422 431.68231201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05037423 431.68231201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05037424 431.68231201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05037425 431.68231201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05037426 431.68234253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05037427 431.68234253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05037428 431.68234253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05037429 431.68234253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05037430 431.68240356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05037431 431.68240356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05037432 431.68246460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05037433 431.68246460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05037434 431.68246460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05037435 431.68246460 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05037436 431.68249512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05037437 431.68249512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05037438 431.68249512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05037439 431.68249512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05037440 431.68255615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05037441 431.68255615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05037442 431.68255615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05037443 431.68255615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05037444 431.68261719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05037445 431.68261719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05037446 431.68261719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05037447 431.68261719 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05037448 431.68264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05037449 431.68264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05037450 431.68264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05037451 431.68270874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05037452 431.68270874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05037453 431.68270874 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05037454 431.68276978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05037455 431.68276978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05037456 431.68276978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05037457 431.68276978 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05037458 431.68283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05037459 431.68283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05037460 431.68283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05037461 431.68283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05037462 431.68286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05037463 431.68286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05037464 431.68286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05037465 431.68286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05037466 431.68292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05037467 431.68292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05037468 431.68292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05037469 431.68298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05037470 431.68298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05037471 431.68298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05037472 431.68301392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05037473 431.68301392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05037474 431.68301392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05037475 431.68301392 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05037476 431.68307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05037477 431.68307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05037478 431.68307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05037479 431.68307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05037480 431.68313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05037481 431.68313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05037482 431.68313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05037483 431.68313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05037484 431.68316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05037485 431.68316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05037486 431.68316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05037487 431.68316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05037488 431.68322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05037489 431.68322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05037490 431.68328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05037491 431.68328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05037492 431.68328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05037493 431.68328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05037494 431.68331909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05037495 431.68331909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05037496 431.68331909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05037497 431.68331909 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05037498 431.68338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05037499 431.68338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05037500 431.68338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05037501 431.68338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05037502 431.68347168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05037503 431.68347168 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05037504 431.68353271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05037505 431.68353271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05037506 431.68359375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05037507 431.68359375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05037508 431.68359375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05037509 431.68362427 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05037510 431.68368530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05037511 431.68368530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05037512 431.68368530 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05037513 431.68374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05037514 431.68374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05037515 431.68374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05037516 431.68377686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05037517 431.68377686 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05037518 431.68383789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05037519 431.68383789 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05037520 431.68389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05037521 431.68389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05037522 431.68392944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05037523 431.68392944 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05037524 431.68399048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05037525 431.68399048 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05037526 431.68405151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05037527 431.68405151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05037528 431.68405151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05037529 431.68405151 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05037530 431.68408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05037531 431.68408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05037532 431.68408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05037533 431.68408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05037534 431.68414307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05037535 431.68414307 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05037536 431.68420410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05037537 431.68420410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05037538 431.68420410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05037539 431.68420410 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05037540 431.68423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05037541 431.68423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05037542 431.68423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05037543 431.68423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05037544 431.68429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05037545 431.68429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05037546 431.68429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05037547 431.68429565 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05037548 431.68435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05037549 431.68435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05037550 431.68435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05037551 431.68435669 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05037552 431.68441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05037553 431.68441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05037554 431.68441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05037555 431.68444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05037556 431.68444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05037557 431.68444824 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05037558 431.68450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05037559 431.68450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05037560 431.68450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05037561 431.68450928 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05037562 431.68457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05037563 431.68457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05037564 431.68457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05037565 431.68457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05037566 431.68460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05037567 431.68460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05037568 431.68460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05037569 431.68460083 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05037570 431.68466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05037571 431.68466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05037572 431.68466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05037573 431.68466187 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05037574 431.68472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05037575 431.68472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05037576 431.68472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05037577 431.68475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05037578 431.68475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05037579 431.68475342 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05037580 431.68481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05037581 431.68481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05037582 431.68481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05037583 431.68481445 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05037584 431.68487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05037585 431.68487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05037586 431.68487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05037587 431.68487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05037588 431.68490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05037589 431.68490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05037590 431.68490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05037591 431.68490601 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05037592 431.68496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05037593 431.68496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05037594 431.68496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05037595 431.68496704 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05037596 431.68502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05037597 431.68502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05037598 431.68505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05037599 431.68505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05037600 431.68505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05037601 431.68505859 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05037602 431.68511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05037603 431.68511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05037604 431.68511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05037605 431.68511963 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05037606 431.68518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05037607 431.68518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05037608 431.68518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05037609 431.68518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05037610 431.68521118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05037611 431.68521118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05037612 431.68521118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05037613 431.68521118 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05037614 431.68527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05037615 431.68527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05037616 431.68527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05037617 431.68527222 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05037618 431.68533325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05037619 431.68533325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05037620 431.68536377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05037621 431.68536377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05037622 431.68536377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05037623 431.68536377 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05037624 431.68542480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05037625 431.68542480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05037626 431.68542480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05037627 431.68542480 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05037628 431.68548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05037629 431.68548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05037630 431.68548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05037631 431.68548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05037632 431.68551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05037633 431.68551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05037634 431.68551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05037635 431.68551636 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05037636 431.68557739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05037637 431.68557739 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05037638 431.68563843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05037639 431.68563843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05037640 431.68563843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05037641 431.68563843 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05037642 431.68566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05037643 431.68566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05037644 431.68566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05037645 431.68566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05037646 431.68572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05037647 431.68572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05037648 431.68572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05037649 431.68579102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05037650 431.68579102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05037651 431.68579102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05037652 431.68585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05037653 431.68585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05037654 431.68585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05037655 431.68585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05037656 431.68588257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05037657 431.68588257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05037658 431.68588257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05037659 431.68588257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05037660 431.68594360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05037661 431.68594360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05037662 431.68594360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05037663 431.68594360 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05037664 431.68600464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05037665 431.68600464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05037666 431.68603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05037667 431.68603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05037668 431.68603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05037669 431.68603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05037670 431.68609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05037671 431.68609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05037672 431.68609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05037673 431.68609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05037674 431.68615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05037675 431.68615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05037676 431.68615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05037677 431.68615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05037678 431.68618774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05037679 431.68618774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05037680 431.68624878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05037681 431.68624878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05037682 431.68624878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05037683 431.68624878 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05037684 431.68630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05037685 431.68630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05037686 431.68630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05037687 431.68630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05037688 431.68634033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05037689 431.68634033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05037690 431.68634033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05037691 431.68634033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05037692 431.68640137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05037693 431.68640137 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05037694 431.68646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05037695 431.68646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05037696 431.68646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05037697 431.68646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05037698 431.68649292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05037699 431.68649292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05037700 431.68649292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05037701 431.68649292 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05037702 431.68655396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05037703 431.68655396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05037704 431.68655396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05037705 431.68655396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05037706 431.68661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05037707 431.68661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05037708 431.68661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05037709 431.68661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05037710 431.68664551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05037711 431.68664551 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05037712 431.68670654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05037713 431.68670654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05037714 431.68670654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05037715 431.68670654 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05037716 431.68676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05037717 431.68676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05037718 431.68676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05037719 431.68676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05037720 431.68679810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05037721 431.68679810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05037722 431.68679810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05037723 431.68679810 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05037724 431.68685913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05037725 431.68685913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05037726 431.68685913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05037727 431.68685913 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05037728 431.68692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05037729 431.68692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05037730 431.68695068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05037731 431.68695068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05037732 431.68695068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05037733 431.68695068 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05037734 431.68701172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05037735 431.68701172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05037736 431.68701172 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05037737 431.68707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05037738 431.68707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05037739 431.68710327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05037740 431.68710327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05037741 431.68710327 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05037742 431.68716431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05037743 431.68716431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05037744 431.68716431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05037745 431.68716431 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05037746 431.68722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05037747 431.68722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05037748 431.68722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05037749 431.68722534 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05037750 431.68725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05037751 431.68725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05037752 431.68725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05037753 431.68725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05037754 431.68731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05037755 431.68731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05037756 431.68731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05037757 431.68731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05037758 431.68737793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05037759 431.68737793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05037760 431.68743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05037761 431.68743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05037762 431.68743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05037763 431.68743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05037764 431.68746948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05037765 431.68746948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05037766 431.68746948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05037767 431.68746948 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05037768 431.68753052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05037769 431.68753052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05037770 431.68753052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05037771 431.68753052 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05037772 431.68759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05037773 431.68759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05037774 431.68759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05037775 431.68759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05037776 431.68762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05037777 431.68762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05037778 431.68762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05037779 431.68762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05037780 431.68768311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05037781 431.68768311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05037782 431.68774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05037783 431.68774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05037784 431.68774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05037785 431.68774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05037786 431.68777466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05037787 431.68777466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05037788 431.68777466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05037789 431.68777466 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05037790 431.68783569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05037791 431.68783569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05037792 431.68783569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05037793 431.68783569 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05037794 431.68789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05037795 431.68789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05037796 431.68789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05037797 431.68789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05037798 431.68792725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05037799 431.68792725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05037800 431.68792725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05037801 431.68798828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05037802 431.68798828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05037803 431.68798828 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05037804 431.68804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05037805 431.68804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05037806 431.68804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05037807 431.68804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05037808 431.68807983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05037809 431.68807983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05037810 431.68807983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05037811 431.68807983 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05037812 431.68814087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05037813 431.68814087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05037814 431.68814087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05037815 431.68814087 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05037816 431.68820190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05037817 431.68820190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05037818 431.68820190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05037819 431.68823242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05037820 431.68823242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05037821 431.68823242 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05037822 431.68829346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05037823 431.68829346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05037824 431.68829346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05037825 431.68829346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05037826 431.68835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05037827 431.68835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05037828 431.68835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05037829 431.68835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05037830 431.68838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05037831 431.68838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05037832 431.68838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05037833 431.68838501 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05037834 431.68844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05037835 431.68844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05037836 431.68844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05037837 431.68844604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05037838 431.68850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05037839 431.68850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05037840 431.68853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05037841 431.68853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05037842 431.68853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05037843 431.68853760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05037844 431.68859863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05037845 431.68859863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05037846 431.68859863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05037847 431.68859863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05037848 431.68865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05037849 431.68865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05037850 431.68865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05037851 431.68865967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05037852 431.68869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05037853 431.68869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05037854 431.68869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05037855 431.68869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05037856 431.68875122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05037857 431.68875122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05037858 431.68875122 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05037859 431.68881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05037860 431.68881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05037861 431.68881226 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05037862 431.68884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05037863 431.68884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05037864 431.68884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05037865 431.68884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05037866 431.68890381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05037867 431.68890381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05037868 431.68890381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05037869 431.68890381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05037870 431.68896484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05037871 431.68896484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05037872 431.68896484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05037873 431.68896484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05037874 431.68902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05037875 431.68902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05037876 431.68902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05037877 431.68902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05037878 431.68905640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05037879 431.68905640 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05037880 431.68911743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05037881 431.68911743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05037882 431.68911743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05037883 431.68911743 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05037884 431.68917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05037885 431.68917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05037886 431.68917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05037887 431.68917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05037888 431.68920898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05037889 431.68920898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05037890 431.68920898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05037891 431.68920898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05037892 431.68927002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05037893 431.68927002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05037894 431.68927002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05037895 431.68927002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05037896 431.68933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05037897 431.68933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05037898 431.68933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05037899 431.68936157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05037900 431.68936157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05037901 431.68936157 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05037902 431.68942261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05037903 431.68942261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05037904 431.68942261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05037905 431.68942261 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05037906 431.68948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05037907 431.68948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05037908 431.68948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05037909 431.68948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05037910 431.68951416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05037911 431.68951416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05037912 431.68951416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05037913 431.68951416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05037914 431.68957520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05037915 431.68957520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05037916 431.68957520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05037917 431.68957520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05037918 431.68963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05037919 431.68963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05037920 431.68966675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05037921 431.68966675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05037922 431.68966675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05037923 431.68966675 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05037924 431.68972778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05037925 431.68972778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05037926 431.68972778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05037927 431.68972778 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05037928 431.68978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05037929 431.68978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05037930 431.68978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05037931 431.68978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05037932 431.68981934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05037933 431.68981934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05037934 431.68981934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05037935 431.68981934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05037936 431.68988037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05037937 431.68988037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05037938 431.68994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05037939 431.68994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05037940 431.68997192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05037941 431.68997192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05037942 431.68997192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05037943 431.68997192 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05037944 431.69003296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05037945 431.69003296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05037946 431.69003296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05037947 431.69003296 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05037948 431.69009399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05037949 431.69009399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05037950 431.69009399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05037951 431.69012451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05037952 431.69012451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05037953 431.69012451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05037954 431.69018555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05037955 431.69018555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05037956 431.69018555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05037957 431.69018555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05037958 431.69024658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05037959 431.69024658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05037960 431.69024658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05037961 431.69024658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05037962 431.69027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05037963 431.69027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05037964 431.69033813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05037965 431.69033813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05037966 431.69033813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05037967 431.69033813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05037968 431.69039917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05037969 431.69039917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05037970 431.69039917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05037971 431.69039917 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05037972 431.69042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05037973 431.69042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05037974 431.69042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05037975 431.69042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05037976 431.69049072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05037977 431.69049072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05037978 431.69055176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05037979 431.69055176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05037980 431.69061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05037981 431.69061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05037982 431.69061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05037983 431.69061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05037984 431.69070435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05037985 431.69070435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05037986 431.69070435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05037987 431.69070435 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05037988 431.69076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05037989 431.69076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05037990 431.69076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05037991 431.69076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05037992 431.69079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05037993 431.69079590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05037994 431.69085693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05037995 431.69085693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05037996 431.69085693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05037997 431.69091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05037998 431.69091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05037999 431.69091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05038000 431.69094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05038001 431.69094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05038002 431.69094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05038003 431.69094849 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05038004 431.69100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05038005 431.69100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05038006 431.69100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05038007 431.69100952 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05038008 431.69107056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05038009 431.69107056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05038010 431.69107056 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05038011 431.69110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05038012 431.69110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05038013 431.69110107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05038014 431.69116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05038015 431.69116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05038016 431.69116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05038017 431.69116211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05038018 431.69122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05038019 431.69122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05038020 431.69122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05038021 431.69122314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05038022 431.69125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05038023 431.69125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05038024 431.69125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05038025 431.69125366 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05038026 431.69131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05038027 431.69131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05038028 431.69131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05038029 431.69131470 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05038030 431.69137573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05038031 431.69137573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05038032 431.69137573 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05038033 431.69140625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05038034 431.69140625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05038035 431.69140625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05038036 431.69146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05038037 431.69146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05038038 431.69146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05038039 431.69146729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05038040 431.69152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05038041 431.69152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05038042 431.69152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05038043 431.69152832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05038044 431.69155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05038045 431.69155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05038046 431.69155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05038047 431.69155884 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05038048 431.69161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05038049 431.69161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05038050 431.69161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05038051 431.69161987 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05038052 431.69168091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05038053 431.69168091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05038054 431.69168091 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05038055 431.69171143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05038056 431.69171143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05038057 431.69171143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05038058 431.69177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05038059 431.69177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05038060 431.69177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05038061 431.69177246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05038062 431.69183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05038063 431.69183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05038064 431.69183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05038065 431.69183350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05038066 431.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05038067 431.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05038068 431.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05038069 431.69186401 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05038070 431.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05038071 431.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05038072 431.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05038073 431.69192505 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05038074 431.69198608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05038075 431.69198608 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05038076 431.69204712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05038077 431.69204712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05038078 431.69204712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05038079 431.69204712 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05038080 431.69207764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05038081 431.69207764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05038082 431.69207764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05038083 431.69207764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05038084 431.69213867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05038085 431.69213867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05038086 431.69213867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05038087 431.69213867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05038088 431.69219971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05038089 431.69219971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05038090 431.69219971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05038091 431.69219971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05038092 431.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05038093 431.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05038094 431.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05038095 431.69223022 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05038096 431.69229126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05038097 431.69229126 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05038098 431.69235229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05038099 431.69235229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05038100 431.69235229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05038101 431.69235229 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05038102 431.69238281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05038103 431.69238281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05038104 431.69238281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05038105 431.69238281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05038106 431.69244385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05038107 431.69244385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05038108 431.69244385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05038109 431.69244385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05038110 431.69250488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05038111 431.69250488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05038112 431.69253540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05038113 431.69253540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05038114 431.69253540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05038115 431.69253540 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05038116 431.69259644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05038117 431.69259644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05038118 431.69259644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05038119 431.69259644 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05038120 431.69265747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05038121 431.69265747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05038122 431.69265747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05038123 431.69265747 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05038124 431.69268799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05038125 431.69268799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05038126 431.69268799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05038127 431.69274902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05038128 431.69274902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05038129 431.69274902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05038130 431.69281006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05038131 431.69281006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05038132 431.69281006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05038133 431.69281006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05038134 431.69284058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05038135 431.69284058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05038136 431.69284058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05038137 431.69284058 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05038138 431.69290161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05038139 431.69290161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05038140 431.69290161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05038141 431.69290161 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05038142 431.69296265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05038143 431.69296265 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05038144 431.69299316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05038145 431.69299316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05038146 431.69299316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05038147 431.69299316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05038148 431.69305420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05038149 431.69305420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05038150 431.69305420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05038151 431.69305420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05038152 431.69311523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05038153 431.69311523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05038154 431.69311523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05038155 431.69311523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05038156 431.69314575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05038157 431.69314575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05038158 431.69314575 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05038159 431.69320679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05038160 431.69320679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05038161 431.69320679 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05038162 431.69326782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05038163 431.69326782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05038164 431.69326782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05038165 431.69326782 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05038166 431.69329834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05038167 431.69329834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05038168 431.69329834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05038169 431.69329834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05038170 431.69335938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05038171 431.69335938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05038172 431.69335938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05038173 431.69335938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05038174 431.69342041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05038175 431.69342041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05038176 431.69345093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05038177 431.69345093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05038178 431.69345093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05038179 431.69345093 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05038180 431.69351196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05038181 431.69351196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05038182 431.69351196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05038183 431.69351196 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05038184 431.69357300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05038185 431.69357300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05038186 431.69357300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05038187 431.69357300 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05038188 431.69363403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05038189 431.69363403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05038190 431.69363403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05038191 431.69363403 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05038192 431.69366455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05038193 431.69366455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05038194 431.69366455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05038195 431.69372559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05038196 431.69372559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05038197 431.69372559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05038198 431.69378662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05038199 431.69378662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05038200 431.69378662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05038201 431.69378662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05038202 431.69381714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05038203 431.69381714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05038204 431.69381714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05038205 431.69381714 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05038206 431.69387817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05038207 431.69387817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05038208 431.69387817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05038209 431.69387817 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05038210 431.69393921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05038211 431.69393921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05038212 431.69393921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05038213 431.69393921 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05038214 431.69396973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05038215 431.69396973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05038216 431.69403076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05038217 431.69403076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05038218 431.69403076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05038219 431.69403076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05038220 431.69409180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05038221 431.69409180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05038222 431.69409180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05038223 431.69409180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05038224 431.69412231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05038225 431.69412231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05038226 431.69412231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05038227 431.69412231 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05038228 431.69418335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05038229 431.69418335 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05038230 431.69424438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05038231 431.69424438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05038232 431.69424438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05038233 431.69424438 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05038234 431.69427490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05038235 431.69427490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05038236 431.69427490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05038237 431.69427490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05038238 431.69433594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05038239 431.69433594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05038240 431.69433594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05038241 431.69433594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05038242 431.69439697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05038243 431.69439697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05038244 431.69442749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05038245 431.69442749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05038246 431.69442749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05038247 431.69442749 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05038248 431.69448853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05038249 431.69448853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05038250 431.69448853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05038251 431.69448853 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05038252 431.69454956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05038253 431.69454956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05038254 431.69454956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05038255 431.69454956 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05038256 431.69458008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05038257 431.69458008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05038258 431.69458008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05038259 431.69458008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05038260 431.69464111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05038261 431.69464111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05038262 431.69464111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05038263 431.69470215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05038264 431.69470215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05038265 431.69470215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05038266 431.69473267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05038267 431.69473267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05038268 431.69473267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05038269 431.69473267 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05038270 431.69479370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05038271 431.69479370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05038272 431.69479370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05038273 431.69479370 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05038274 431.69485474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05038275 431.69485474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05038276 431.69485474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05038277 431.69485474 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05038278 431.69488525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05038279 431.69488525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05038280 431.69494629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05038281 431.69494629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05038282 431.69500732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05038283 431.69500732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05038284 431.69503784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05038285 431.69503784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05038286 431.69503784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05038287 431.69503784 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05038288 431.69509888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05038289 431.69509888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05038290 431.69509888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05038291 431.69509888 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05038292 431.69515991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05038293 431.69515991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05038294 431.69515991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05038295 431.69515991 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05038296 431.69522095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05038297 431.69522095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05038298 431.69522095 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05038299 431.69525146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05038300 431.69525146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05038301 431.69525146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05038302 431.69531250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05038303 431.69531250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05038304 431.69531250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05038305 431.69531250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05038306 431.69537354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05038307 431.69537354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05038308 431.69537354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05038309 431.69537354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05038310 431.69540405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05038311 431.69540405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05038312 431.69540405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05038313 431.69540405 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05038314 431.69546509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05038315 431.69546509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05038316 431.69546509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05038317 431.69546509 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05038318 431.69552612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05038319 431.69552612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05038320 431.69552612 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05038321 431.69555664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05038322 431.69555664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05038323 431.69555664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05038324 431.69561768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05038325 431.69561768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05038326 431.69561768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05038327 431.69561768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05038328 431.69567871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05038329 431.69567871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05038330 431.69567871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05038331 431.69567871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05038332 431.69570923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05038333 431.69570923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05038334 431.69570923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05038335 431.69570923 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05038336 431.69577026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05038337 431.69577026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05038338 431.69577026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05038339 431.69577026 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05038340 431.69583130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05038341 431.69583130 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05038342 431.69586182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05038343 431.69586182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05038344 431.69586182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05038345 431.69586182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05038346 431.69592285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05038347 431.69592285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05038348 431.69592285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05038349 431.69592285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05038350 431.69598389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05038351 431.69598389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05038352 431.69598389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05038353 431.69598389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05038354 431.69601440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05038355 431.69601440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05038356 431.69601440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05038357 431.69601440 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05038358 431.69607544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05038359 431.69607544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05038360 431.69607544 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05038361 431.69613647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05038362 431.69613647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05038363 431.69613647 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05038364 431.69616699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05038365 431.69616699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05038366 431.69616699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05038367 431.69616699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05038368 431.69622803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05038369 431.69622803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05038370 431.69622803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05038371 431.69622803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05038372 431.69628906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05038373 431.69628906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05038374 431.69628906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05038375 431.69628906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05038376 431.69631958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05038377 431.69631958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05038378 431.69631958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05038379 431.69631958 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05038380 431.69638062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05038381 431.69638062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05038382 431.69638062 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05038383 431.69644165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05038384 431.69644165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05038385 431.69644165 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05038386 431.69647217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05038387 431.69647217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05038388 431.69647217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05038389 431.69647217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05038390 431.69653320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05038391 431.69653320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05038392 431.69653320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05038393 431.69653320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05038394 431.69659424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05038395 431.69659424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05038396 431.69659424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05038397 431.69659424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05038398 431.69662476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05038399 431.69662476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05038400 431.69662476 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05038401 431.69668579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05038402 431.69668579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05038403 431.69668579 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05038404 431.69674683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05038405 431.69674683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05038406 431.69674683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05038407 431.69674683 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05038408 431.69680786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05038409 431.69680786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05038410 431.69680786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05038411 431.69680786 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05038412 431.69683838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05038413 431.69683838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05038414 431.69683838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05038415 431.69683838 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05038416 431.69689941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05038417 431.69689941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05038418 431.69689941 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05038419 431.69696045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05038420 431.69696045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05038421 431.69696045 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05038422 431.69699097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05038423 431.69699097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05038424 431.69699097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05038425 431.69699097 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05038426 431.69705200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05038427 431.69705200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05038428 431.69705200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05038429 431.69705200 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05038430 431.69711304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05038431 431.69711304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05038432 431.69711304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05038433 431.69711304 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05038434 431.69714355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05038435 431.69714355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05038436 431.69714355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05038437 431.69714355 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05038438 431.69720459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05038439 431.69720459 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05038440 431.69726563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05038441 431.69726563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05038442 431.69726563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05038443 431.69726563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05038444 431.69729614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05038445 431.69729614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05038446 431.69729614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05038447 431.69729614 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05038448 431.69735718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05038449 431.69735718 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05038450 431.69741821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05038451 431.69741821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05038452 431.69741821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05038453 431.69741821 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05038454 431.69744873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05038455 431.69744873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05038456 431.69750977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05038457 431.69750977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05038458 431.69750977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05038459 431.69757080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05038460 431.69757080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05038461 431.69757080 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05038462 431.69760132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05038463 431.69760132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05038464 431.69766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05038465 431.69766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05038466 431.69766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05038467 431.69766235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05038468 431.69772339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05038469 431.69772339 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05038470 431.69775391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05038471 431.69775391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05038472 431.69775391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05038473 431.69775391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05038474 431.69781494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05038475 431.69781494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05038476 431.69781494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05038477 431.69781494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05038478 431.69787598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05038479 431.69787598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05038480 431.69787598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05038481 431.69787598 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05038482 431.69790649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05038483 431.69790649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05038484 431.69790649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05038485 431.69796753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05038486 431.69796753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05038487 431.69796753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05038488 431.69802856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05038489 431.69802856 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05038490 431.69805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05038491 431.69805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05038492 431.69805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05038493 431.69805908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05038494 431.69812012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05038495 431.69812012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05038496 431.69812012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05038497 431.69812012 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05038498 431.69818115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05038499 431.69818115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05038500 431.69818115 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05038501 431.69824219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05038502 431.69824219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05038503 431.69824219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05038504 431.69827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05038505 431.69827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05038506 431.69827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05038507 431.69827271 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05038508 431.69833374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05038509 431.69833374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05038510 431.69833374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05038511 431.69833374 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05038512 431.69839478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05038513 431.69839478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05038514 431.69839478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05038515 431.69839478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05038516 431.69842529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05038517 431.69842529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05038518 431.69842529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05038519 431.69842529 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05038520 431.69848633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05038521 431.69848633 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05038522 431.69854736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05038523 431.69854736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05038524 431.69854736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05038525 431.69854736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05038526 431.69857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05038527 431.69857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05038528 431.69857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05038529 431.69857788 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05038530 431.69863892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05038531 431.69863892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05038532 431.69863892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05038533 431.69863892 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05038534 431.69869995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05038535 431.69869995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05038536 431.69869995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05038537 431.69869995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05038538 431.69873047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05038539 431.69873047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05038540 431.69873047 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05038541 431.69879150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05038542 431.69879150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05038543 431.69879150 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05038544 431.69885254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05038545 431.69885254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05038546 431.69885254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05038547 431.69885254 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05038548 431.69888306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05038549 431.69888306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05038550 431.69888306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05038551 431.69888306 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05038552 431.69894409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05038553 431.69894409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05038554 431.69894409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05038555 431.69894409 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05038556 431.69900513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05038557 431.69900513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05038558 431.69900513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05038559 431.69900513 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05038560 431.69903564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05038561 431.69903564 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05038562 431.69909668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05038563 431.69909668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05038564 431.69909668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05038565 431.69909668 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05038566 431.69915771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05038567 431.69915771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05038568 431.69915771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05038569 431.69915771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05038570 431.69918823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05038571 431.69918823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05038572 431.69918823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05038573 431.69918823 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05038574 431.69924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05038575 431.69924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05038576 431.69924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05038577 431.69924927 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05038578 431.69931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05038579 431.69931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05038580 431.69931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05038581 431.69931030 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05038582 431.69934082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05038583 431.69934082 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05038584 431.69940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05038585 431.69940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05038586 431.69940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05038587 431.69940186 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05038588 431.69946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05038589 431.69946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05038590 431.69946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05038591 431.69946289 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05038592 431.69949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05038593 431.69949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05038594 431.69949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05038595 431.69949341 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05038596 431.69955444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05038597 431.69955444 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05038598 431.69961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05038599 431.69961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05038600 431.69961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05038601 431.69961548 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05038602 431.69964600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05038603 431.69964600 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05038604 431.69970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05038605 431.69970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05038606 431.69970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05038607 431.69970703 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05038608 431.69976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05038609 431.69976807 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05038610 431.69982910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05038611 431.69982910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05038612 431.69982910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05038613 431.69982910 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05038614 431.69985962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05038615 431.69985962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05038616 431.69985962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05038617 431.69985962 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05038618 431.69992065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05038619 431.69992065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05038620 431.69992065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05038621 431.69992065 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05038622 431.69998169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05038623 431.69998169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05038624 431.69998169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05038625 431.69998169 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05038626 431.70001221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05038627 431.70001221 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05038628 431.70007324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05038629 431.70007324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05038630 431.70007324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05038631 431.70007324 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05038632 431.70013428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05038633 431.70013428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05038634 431.70013428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05038635 431.70013428 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05038636 431.70016479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05038637 431.70016479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05038638 431.70016479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05038639 431.70016479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05038640 431.70022583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05038641 431.70022583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05038642 431.70022583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05038643 431.70022583 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05038644 431.70028687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05038645 431.70028687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05038646 431.70028687 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05038647 431.70031738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05038648 431.70031738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05038649 431.70031738 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05038650 431.70037842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05038651 431.70037842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05038652 431.70037842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05038653 431.70037842 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05038654 431.70043945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05038655 431.70043945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05038656 431.70043945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05038657 431.70043945 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05038658 431.70046997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05038659 431.70046997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05038660 431.70046997 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05038661 431.70053101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05038662 431.70053101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05038663 431.70053101 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05038664 431.70059204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05038665 431.70059204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05038666 431.70059204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05038667 431.70059204 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05038668 431.70062256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05038669 431.70062256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05038670 431.70062256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05038671 431.70062256 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05038672 431.70068359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05038673 431.70068359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05038674 431.70068359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05038675 431.70068359 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05038676 431.70074463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05038677 431.70074463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05038678 431.70074463 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05038679 431.70077515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05038680 431.70077515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05038681 431.70077515 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05038682 431.70083618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05038683 431.70083618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05038684 431.70083618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05038685 431.70083618 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05038686 431.70089722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05038687 431.70089722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05038688 431.70089722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05038689 431.70089722 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05038690 431.70092773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05038691 431.70092773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05038692 431.70092773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05038693 431.70092773 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05038694 431.70098877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05038695 431.70098877 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05038696 431.70104980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05038697 431.70104980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05038698 431.70104980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05038699 431.70104980 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05038700 431.70108032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05038701 431.70108032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05038702 431.70108032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05038703 431.70108032 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05038704 431.70114136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05038705 431.70114136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05038706 431.70114136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05038707 431.70114136 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05038708 431.70120239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05038709 431.70120239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05038710 431.70120239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05038711 431.70120239 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05038712 431.70123291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05038713 431.70123291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05038714 431.70129395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05038715 431.70129395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05038716 431.70129395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05038717 431.70129395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05038718 431.70135498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05038719 431.70135498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05038720 431.70135498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05038721 431.70135498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05038722 431.70141602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05038723 431.70141602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05038724 431.70141602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05038725 431.70141602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05038726 431.70144653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05038727 431.70144653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05038728 431.70144653 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05038729 431.70150757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05038730 431.70150757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05038731 431.70150757 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05038732 431.70156860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05038733 431.70156860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05038734 431.70156860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05038735 431.70156860 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05038736 431.70159912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05038737 431.70159912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05038738 431.70159912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05038739 431.70159912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05038740 431.70166016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05038741 431.70166016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05038742 431.70166016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05038743 431.70166016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05038744 431.70172119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05038745 431.70172119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05038746 431.70172119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05038747 431.70172119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05038748 431.70175171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05038749 431.70175171 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05038750 431.70181274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05038751 431.70181274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05038752 431.70181274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05038753 431.70181274 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05038754 431.70187378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05038755 431.70187378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05038756 431.70187378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05038757 431.70187378 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05038758 431.70190430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05038759 431.70190430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05038760 431.70190430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05038761 431.70190430 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05038762 431.70196533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05038763 431.70196533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05038764 431.70196533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05038765 431.70196533 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05038766 431.70202637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05038767 431.70202637 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05038768 431.70205688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05038769 431.70205688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05038770 431.70205688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05038771 431.70205688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05038772 431.70211792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05038773 431.70211792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05038774 431.70211792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05038775 431.70211792 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05038776 431.70217896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05038777 431.70217896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05038778 431.70217896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05038779 431.70217896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05038780 431.70220947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05038781 431.70220947 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05038782 431.70227051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05038783 431.70227051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05038784 431.70227051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05038785 431.70227051 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05038786 431.70233154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05038787 431.70233154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05038788 431.70233154 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05038789 431.70236206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05038790 431.70236206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05038791 431.70236206 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05038792 431.70242310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05038793 431.70242310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05038794 431.70242310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05038795 431.70242310 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05038796 431.70248413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05038797 431.70248413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05038798 431.70248413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05038799 431.70248413 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05038800 431.70251465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05038801 431.70251465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05038802 431.70251465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05038803 431.70251465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05038804 431.70257568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05038805 431.70257568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05038806 431.70257568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05038807 431.70257568 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05038808 431.70263672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05038809 431.70263672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05038810 431.70263672 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05038811 431.70266724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05038812 431.70266724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05038813 431.70266724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05038814 431.70272827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05038815 431.70272827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05038816 431.70272827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05038817 431.70272827 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05038818 431.70278931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05038819 431.70278931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05038820 431.70278931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05038821 431.70278931 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05038822 431.70285034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05038823 431.70285034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05038824 431.70285034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05038825 431.70285034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05038826 431.70288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05038827 431.70288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05038828 431.70288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05038829 431.70288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05038830 431.70294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05038831 431.70294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05038832 431.70300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05038833 431.70300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05038834 431.70300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05038835 431.70300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05038836 431.70303345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05038837 431.70303345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05038838 431.70303345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05038839 431.70303345 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05038840 431.70309448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05038841 431.70309448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05038842 431.70309448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05038843 431.70309448 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05038844 431.70315552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05038845 431.70315552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05038846 431.70315552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05038847 431.70315552 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05038848 431.70318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05038849 431.70318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05038850 431.70318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05038851 431.70318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05038852 431.70324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05038853 431.70324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05038854 431.70330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05038855 431.70330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05038856 431.70330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05038857 431.70330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05038858 431.70333862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05038859 431.70333862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05038860 431.70333862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05038861 431.70333862 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05038862 431.70339966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05038863 431.70339966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05038864 431.70339966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05038865 431.70339966 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05038866 431.70346069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05038867 431.70346069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05038868 431.70346069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05038869 431.70346069 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05038870 431.70349121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05038871 431.70349121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05038872 431.70349121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05038873 431.70349121 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05038874 431.70355225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05038875 431.70355225 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05038876 431.70361328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05038877 431.70361328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05038878 431.70361328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05038879 431.70361328 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05038880 431.70364380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05038881 431.70364380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05038882 431.70364380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05038883 431.70364380 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05038884 431.70370483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05038885 431.70370483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05038886 431.70370483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05038887 431.70370483 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05038888 431.70376587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05038889 431.70376587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05038890 431.70376587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05038891 431.70376587 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05038892 431.70379639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05038893 431.70379639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05038894 431.70379639 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05038895 431.70385742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05038896 431.70385742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05038897 431.70385742 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05038898 431.70391846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05038899 431.70391846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05038900 431.70391846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05038901 431.70391846 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05038902 431.70394897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05038903 431.70394897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05038904 431.70394897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05038905 431.70394897 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05038906 431.70401001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05038907 431.70401001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05038908 431.70401001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05038909 431.70401001 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05038910 431.70407104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05038911 431.70407104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05038912 431.70407104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05038913 431.70407104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05038914 431.70410156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05038915 431.70410156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05038916 431.70410156 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05038917 431.70416260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05038918 431.70416260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05038919 431.70416260 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05038920 431.70422363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05038921 431.70422363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05038922 431.70422363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05038923 431.70422363 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05038924 431.70425415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05038925 431.70425415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05038926 431.70425415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05038927 431.70425415 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05038928 431.70431519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05038929 431.70431519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05038930 431.70431519 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05038931 431.70437622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05038932 431.70437622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05038933 431.70437622 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05038934 431.70443726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05038935 431.70443726 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05038936 431.70446777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05038937 431.70446777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05038938 431.70446777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05038939 431.70446777 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05038940 431.70452881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05038941 431.70452881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05038942 431.70452881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05038943 431.70458984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05038944 431.70458984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05038945 431.70458984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05038946 431.70462036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05038947 431.70462036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05038948 431.70462036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05038949 431.70462036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05038950 431.70468140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05038951 431.70468140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05038952 431.70468140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05038953 431.70468140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05038954 431.70474243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05038955 431.70474243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05038956 431.70474243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05038957 431.70474243 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05038958 431.70477295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05038959 431.70477295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05038960 431.70477295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05038961 431.70477295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05038962 431.70483398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05038963 431.70483398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05038964 431.70489502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05038965 431.70489502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05038966 431.70489502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05038967 431.70489502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05038968 431.70492554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05038969 431.70492554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05038970 431.70492554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05038971 431.70492554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05038972 431.70498657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05038973 431.70498657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05038974 431.70498657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05038975 431.70498657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05038976 431.70504761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05038977 431.70504761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05038978 431.70504761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05038979 431.70504761 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05038980 431.70507813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05038981 431.70513916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05038982 431.70513916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05038983 431.70513916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05038984 431.70520020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05038985 431.70520020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05038986 431.70520020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05038987 431.70520020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05038988 431.70523071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05038989 431.70523071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05038990 431.70523071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05038991 431.70523071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05038992 431.70529175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05038993 431.70529175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05038994 431.70529175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05038995 431.70529175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05038996 431.70535278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05038997 431.70535278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05038998 431.70535278 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05038999 431.70538330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05039000 431.70538330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05039001 431.70538330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05039002 431.70544434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05039003 431.70544434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05039004 431.70544434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05039005 431.70544434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05039006 431.70550537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05039007 431.70550537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05039008 431.70550537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05039009 431.70550537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05039010 431.70553589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05039011 431.70553589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05039012 431.70553589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05039013 431.70553589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05039014 431.70559692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05039015 431.70559692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05039016 431.70559692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05039017 431.70559692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05039018 431.70565796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05039019 431.70565796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05039020 431.70565796 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05039021 431.70568848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05039022 431.70568848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05039023 431.70568848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05039024 431.70574951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05039025 431.70574951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05039026 431.70574951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05039027 431.70574951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05039028 431.70581055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05039029 431.70581055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05039030 431.70581055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05039031 431.70581055 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05039032 431.70584106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05039033 431.70584106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05039034 431.70584106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05039035 431.70584106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05039036 431.70590210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05039037 431.70590210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05039038 431.70590210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05039039 431.70590210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05039040 431.70596313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05039041 431.70596313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05039535 431.71316528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -05039536 431.71322632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -05039537 431.71322632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -05039538 431.71322632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -05039539 431.71328735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -05039540 431.71328735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -05039541 431.71328735 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -05039542 431.71331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -05039543 431.71331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -05039544 431.71331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -05039545 431.71331787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -05039546 431.71337891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -05039547 431.71337891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -05039548 431.71337891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -05039549 431.71337891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -05039550 431.71343994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -05039551 431.71343994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -05039552 431.71343994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -05039553 431.71343994 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -05039554 431.71347046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -05039555 431.71347046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -05039556 431.71347046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -05039557 431.71347046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -05039558 431.71353149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -05039559 431.71353149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -05039560 431.71359253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -05039561 431.71359253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -05039562 431.71359253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -05039563 431.71359253 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -05039564 431.71365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -05039565 431.71365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -05039566 431.71365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -05039567 431.71365356 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -05039568 431.71368408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -05039569 431.71368408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -05039570 431.71368408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -05039571 431.71368408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -05039572 431.71374512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -05039573 431.71374512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -05039574 431.71374512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -05039575 431.71374512 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -05039576 431.71380615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -05039577 431.71380615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -05039578 431.71380615 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -05053288 431.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -05053289 431.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f8 -05053290 431.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -05053291 431.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20708 -05053292 431.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -05053293 431.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20718 -05053294 431.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -05053295 431.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20728 -05053296 431.93292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -05053297 431.93292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20738 -05053298 431.93292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20748 -05053299 431.93292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20748 -05053300 431.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20758 -05053301 431.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20758 -05053302 431.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20768 -05053303 431.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20768 -05053304 431.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20778 -05053305 431.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20778 -05053306 431.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20788 -05053307 431.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20788 -05053308 431.93307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20798 -05053309 431.93307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20798 -05053310 431.93307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a8 -05053311 431.93307495 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a8 -05053312 431.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -05053313 431.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -05053314 431.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -05053315 431.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -05053316 431.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -05053317 431.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -05053318 431.93322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -05053319 431.93322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -05053320 431.93322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -05053321 431.93322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -05053322 431.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -05053323 431.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -05053324 431.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -05053325 431.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -05053326 431.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -05053327 431.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -05053328 431.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -05053329 431.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -05053330 431.93338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -05053331 431.93338013 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -05058859 432.01495361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b508 -05058860 432.01495361 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b508 -05058861 432.01501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b518 -05058862 432.01501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b518 -05058863 432.01501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b528 -05058864 432.01501465 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b528 -05058865 432.01504517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b538 -05058866 432.01504517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b538 -05058867 432.01504517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b548 -05058868 432.01504517 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b548 -05058869 432.01510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b558 -05058870 432.01510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b558 -05058871 432.01510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b568 -05058872 432.01510620 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b568 -05058873 432.01516724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b578 -05058874 432.01516724 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b578 -05058875 432.01519775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b588 -05058876 432.01519775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b588 -05058877 432.01519775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b598 -05058878 432.01519775 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b598 -05058879 432.01525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a8 -05058880 432.01525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5a8 -05058881 432.01525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b8 -05058882 432.01525879 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5b8 -05058883 432.01531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c8 -05058884 432.01531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5c8 -05058885 432.01531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d8 -05058886 432.01531982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5d8 -05058887 432.01535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e8 -05058888 432.01535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5e8 -05058889 432.01535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f8 -05058890 432.01535034 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b5f8 -05058891 432.01541138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b608 -05058892 432.01541138 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b608 -05058893 432.01547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b618 -05058894 432.01547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b618 -05058895 432.01547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b628 -05058896 432.01547241 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b628 -05058897 432.01550293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b638 -05058898 432.01550293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b638 -05058899 432.01550293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b648 -05058900 432.01550293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b648 -05058901 432.01556396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b658 -05058902 432.01556396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b658 -05064957 432.10449219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37398 -05064958 432.10449219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37398 -05064959 432.10449219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a8 -05064960 432.10449219 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373a8 -05064961 432.10455322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b8 -05064962 432.10455322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373b8 -05064963 432.10455322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c8 -05064964 432.10455322 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373c8 -05064965 432.10461426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d8 -05064966 432.10461426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373d8 -05064967 432.10461426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e8 -05064968 432.10461426 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373e8 -05064969 432.10464478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f8 -05064970 432.10464478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x373f8 -05064971 432.10464478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37408 -05064972 432.10464478 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37408 -05064973 432.10470581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37418 -05064974 432.10470581 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37418 -05064975 432.10476685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37428 -05064976 432.10476685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37428 -05064977 432.10476685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37438 -05064978 432.10476685 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37438 -05064979 432.10479736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37448 -05064980 432.10479736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37448 -05064981 432.10479736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37458 -05064982 432.10479736 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37458 -05064983 432.10485840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37468 -05064984 432.10485840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37468 -05064985 432.10485840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37478 -05064986 432.10485840 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37478 -05064987 432.10491943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37488 -05064988 432.10491943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37488 -05064989 432.10491943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37498 -05064990 432.10491943 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37498 -05064991 432.10494995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a8 -05064992 432.10494995 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374a8 -05064993 432.10501099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b8 -05064994 432.10501099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374b8 -05064995 432.10501099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c8 -05064996 432.10501099 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374c8 -05064997 432.10507202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d8 -05064998 432.10507202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374d8 -05064999 432.10507202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e8 -05065000 432.10507202 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x374e8 -05070579 432.18658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42308 -05070580 432.18658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42308 -05070581 432.18661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42318 -05070582 432.18661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42318 -05070583 432.18661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42328 -05070584 432.18667603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42328 -05070585 432.18667603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42338 -05070586 432.18667603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42338 -05070587 432.18673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42348 -05070588 432.18673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42348 -05070589 432.18673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42358 -05070590 432.18673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42358 -05070591 432.18676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42368 -05070592 432.18676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42368 -05070593 432.18676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42378 -05070594 432.18676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42378 -05070595 432.18682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42388 -05070596 432.18682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42388 -05070597 432.18682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42398 -05070598 432.18682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42398 -05070599 432.18688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a8 -05070600 432.18688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423a8 -05070601 432.18692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b8 -05070602 432.18692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423b8 -05070603 432.18692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c8 -05070604 432.18692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423c8 -05070605 432.18698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d8 -05070606 432.18698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423d8 -05070607 432.18698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e8 -05070608 432.18698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423e8 -05070609 432.18704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f8 -05070610 432.18704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x423f8 -05070611 432.18704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42408 -05070612 432.18704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42408 -05070613 432.18707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42418 -05070614 432.18707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42418 -05070615 432.18707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42428 -05070616 432.18707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42428 -05070617 432.18713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42438 -05070618 432.18713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42438 -05070619 432.18719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42448 -05070620 432.18719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42448 -05070621 432.18719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42458 -05070622 432.18719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x42458 -05079097 433.07586670 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05079098 433.09454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079099 433.09454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079100 433.32986450 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05079101 433.33032227 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05079102 434.65670776 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079103 434.65676880 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079104 434.65676880 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079105 434.65682983 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05079106 434.65692139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079107 434.65692139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05079108 434.65698242 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079109 434.65701294 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05079110 435.09564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05079111 435.11541748 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079112 435.11541748 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079113 437.11584473 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05079114 437.13742065 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079115 437.13742065 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079116 437.16284180 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079117 437.16290283 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079118 437.16290283 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05079119 437.16290283 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05079120 437.16305542 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079121 437.16305542 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05079122 437.16311646 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05079123 437.16314697 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05079124 437.30868530 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05079125 437.30871582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05079126 437.30871582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05079127 437.30877686 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05079128 437.30877686 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05079129 437.30877686 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05079130 437.30883789 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05079131 437.30883789 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05079132 437.30886841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05079133 437.30886841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05079134 437.30892944 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05079135 437.30892944 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05079136 437.30899048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05079137 437.30899048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05079138 437.30899048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05079139 437.30899048 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05079140 437.30902100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05079141 437.30902100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05079142 437.30908203 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05079143 437.30908203 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05079144 437.30914307 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05079145 437.30914307 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05079146 437.30917358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05079147 437.30917358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05079148 437.30917358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05079149 437.30923462 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05079150 437.30923462 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05079151 437.30923462 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05079152 437.30929565 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05079153 437.30929565 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05079154 437.30932617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05079155 437.30932617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05079156 437.30938721 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05079157 437.30938721 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05079158 437.30944824 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05079159 437.30944824 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05079160 437.30944824 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05079161 437.30944824 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05079162 437.30947876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05079163 437.30947876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05079164 437.30953979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05079165 437.30953979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05079166 437.30960083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05079167 437.30960083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05079168 437.30963135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05079169 437.30963135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05079170 437.30963135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05079171 437.30969238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05079172 437.30969238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05079173 437.30969238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05079174 437.30975342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05079175 437.30975342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05079176 437.30978394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05079177 437.30978394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05079178 437.30984497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05079179 437.30984497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05079180 437.30990601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05079181 437.30990601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05079182 437.30990601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05079183 437.30990601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05079184 437.30996704 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05079185 437.30996704 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05079186 437.30999756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05079187 437.30999756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05079188 437.31005859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05079189 437.31005859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05079190 437.31011963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05079191 437.31011963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05079192 437.31011963 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05079193 437.31015015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05079194 437.31015015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05079195 437.31015015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05079196 437.31021118 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05079197 437.31021118 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05079198 437.31027222 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05079199 437.31027222 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05079200 437.31030273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05079201 437.31030273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05079202 437.31036377 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05079203 437.31036377 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05079204 437.31036377 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05079205 437.31042480 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05079206 437.31042480 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05079207 437.31042480 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05079208 437.31045532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05079209 437.31045532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05079210 437.31051636 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05079211 437.31051636 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05079212 437.31057739 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05079213 437.31057739 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05079214 437.31060791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05079215 437.31060791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05079216 437.31060791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05079217 437.31066895 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05079218 437.31066895 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05079219 437.31066895 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05079220 437.31072998 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05079221 437.31072998 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05079222 437.31076050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05079223 437.31076050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05079224 437.31082153 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05079225 437.31082153 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05079226 437.31088257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05079227 437.31088257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05079228 437.31088257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05079229 437.31088257 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05079230 437.31091309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05079231 437.31091309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05079232 437.31097412 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05079233 437.31097412 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05079234 437.31103516 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05079235 437.31103516 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05079236 437.31106567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05079237 437.31106567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05079238 437.31106567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05079239 437.31112671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05079240 437.31112671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05079241 437.31112671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05079242 437.31118774 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05079243 437.31118774 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05079244 437.31121826 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05079245 437.31121826 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05079246 437.31127930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05079247 437.31127930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05079248 437.31134033 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05079249 437.31134033 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05079250 437.31137085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05079251 437.31137085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05079252 437.31143188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05079253 437.31143188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05079254 437.31149292 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05079255 437.31149292 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05079256 437.31149292 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05079257 437.31149292 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05079258 437.31155396 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05079259 437.31155396 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05079260 437.31158447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05079261 437.31158447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05079262 437.31164551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05079263 437.31164551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05079264 437.31170654 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05079265 437.31170654 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05079266 437.31173706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05079267 437.31173706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05079268 437.31173706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05079269 437.31173706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05079270 437.31179810 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05079271 437.31179810 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05079272 437.31185913 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05079273 437.31185913 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05079274 437.31188965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05079275 437.31188965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05079276 437.31195068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05079277 437.31195068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05079278 437.31195068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05079279 437.31201172 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05079280 437.31201172 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05079281 437.31201172 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05079282 437.31204224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05079283 437.31204224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05079284 437.31210327 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05079285 437.31210327 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05079286 437.31216431 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05079287 437.31216431 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05079288 437.31219482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05079289 437.31219482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05079290 437.31219482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05079291 437.31219482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05079292 437.31225586 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05079293 437.31225586 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05079294 437.31231689 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05079295 437.31231689 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05079296 437.31234741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05079297 437.31234741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05079298 437.31240845 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05079299 437.31240845 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05079300 437.31240845 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05079301 437.31246948 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05079302 437.31246948 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05079303 437.31246948 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05079304 437.31250000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05079305 437.31250000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05079306 437.31256104 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05079307 437.31256104 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05079308 437.31262207 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05079309 437.31262207 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05079310 437.31265259 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05079311 437.31265259 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05079312 437.31265259 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05079313 437.31271362 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05079314 437.31271362 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05079315 437.31271362 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05079316 437.31277466 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05079317 437.31277466 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05079318 437.31280518 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05079319 437.31280518 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05079320 437.31286621 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05079321 437.31286621 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05079322 437.31292725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05079323 437.31292725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05079324 437.31292725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05079325 437.31292725 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05079326 437.31295776 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05079327 437.31295776 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05079328 437.31301880 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05079329 437.31301880 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05079330 437.31307983 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05079331 437.31307983 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05079332 437.31314087 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05079333 437.31314087 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05079334 437.31317139 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05079335 437.31317139 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05079336 437.31317139 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05079337 437.31317139 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05079338 437.31323242 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05079339 437.31323242 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05079340 437.31329346 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05079341 437.31329346 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05079342 437.31332397 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05079343 437.31332397 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05079344 437.31338501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05079345 437.31338501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05079346 437.31338501 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05079347 437.31344604 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05079348 437.31344604 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05079349 437.31344604 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05079350 437.31347656 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05079351 437.31347656 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05079352 437.31353760 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05079353 437.31353760 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05079354 437.31359863 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05079355 437.31359863 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05079356 437.31362915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05079357 437.31362915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05079358 437.31362915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05079359 437.31362915 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05079360 437.31369019 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05079361 437.31369019 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05079362 437.31375122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05079363 437.31375122 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05079364 437.31378174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05079365 437.31378174 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05079366 437.31384277 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05079367 437.31384277 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05079368 437.31384277 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05079369 437.31390381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05079370 437.31390381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05079371 437.31390381 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05079372 437.31393433 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05079373 437.31393433 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05079374 437.31399536 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05079375 437.31399536 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05079376 437.31405640 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05079377 437.31405640 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05079378 437.31408691 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05079379 437.31408691 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05079380 437.31408691 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05079381 437.31408691 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05079382 437.31414795 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05079383 437.31414795 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05079384 437.31420898 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05079385 437.31420898 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05079386 437.31423950 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05079387 437.31423950 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05079388 437.31430054 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05079389 437.31430054 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05079390 437.31430054 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05079391 437.31436157 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05079392 437.31436157 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05079393 437.31436157 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05079394 437.31439209 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05079395 437.31439209 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05079396 437.31445313 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05079397 437.31445313 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05079398 437.31451416 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05079399 437.31451416 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05079400 437.31457520 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05079401 437.31457520 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05079402 437.31457520 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05079403 437.31457520 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05079404 437.31460571 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05079405 437.31460571 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05079406 437.31466675 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05079407 437.31466675 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05079408 437.31472778 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05079409 437.31472778 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05079410 437.31475830 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05079411 437.31475830 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05079412 437.31481934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05079413 437.31481934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05079414 437.31481934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05079415 437.31481934 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05079416 437.31488037 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05079417 437.31488037 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05079418 437.31491089 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05079419 437.31491089 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05079420 437.31497192 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05079421 437.31497192 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05079422 437.31503296 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05079423 437.31503296 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05079424 437.31506348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05079425 437.31506348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05079426 437.31506348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05079427 437.31506348 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05079428 437.31512451 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05079429 437.31512451 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05079430 437.31518555 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05079431 437.31518555 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05079432 437.31521606 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05079433 437.31521606 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05079434 437.31527710 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05079435 437.31527710 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05079436 437.31533813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05079437 437.31533813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05079438 437.31533813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05079439 437.31533813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05079440 437.31536865 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05079441 437.31536865 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05079442 437.31542969 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05079443 437.31542969 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05079444 437.31549072 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05079445 437.31549072 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05079446 437.31552124 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05079447 437.31552124 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05079448 437.31558228 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05079449 437.31558228 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05079450 437.31558228 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05079451 437.31558228 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05079452 437.31564331 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05079453 437.31564331 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05079454 437.31567383 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05079455 437.31567383 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05079456 437.31573486 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05079457 437.31573486 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05079458 437.31579590 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05079459 437.31579590 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05079460 437.31579590 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05079461 437.31582642 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05079462 437.31582642 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05079463 437.31582642 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05079464 437.31588745 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05079465 437.31588745 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05079466 437.31594849 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05079467 437.31594849 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05079468 437.31597900 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05079469 437.31597900 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05079470 437.31604004 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05079471 437.31604004 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05079472 437.31604004 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05079473 437.31610107 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05079474 437.31610107 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05079475 437.31610107 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05079476 437.31616211 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05079477 437.31616211 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05079478 437.31619263 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05079479 437.31619263 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05079480 437.31625366 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05079481 437.31625366 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05079482 437.31631470 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05079483 437.31631470 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05079484 437.31631470 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05079485 437.31631470 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05079486 437.31634521 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05079487 437.31634521 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05079488 437.31640625 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05079489 437.31640625 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05079490 437.31646729 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05079491 437.31646729 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05079492 437.31649780 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05079493 437.31649780 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05079494 437.31655884 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05079495 437.31655884 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05079496 437.31655884 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05079497 437.31655884 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05079498 437.31661987 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05079499 437.31661987 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05079500 437.31665039 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05079501 437.31665039 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05079502 437.31671143 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05079503 437.31671143 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05079504 437.31677246 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05079505 437.31677246 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05079506 437.31677246 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05079507 437.31680298 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05079508 437.31680298 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05079509 437.31680298 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05079510 437.31686401 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05079511 437.31686401 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05079512 437.31692505 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05079513 437.31692505 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05079514 437.31695557 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05079515 437.31695557 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05079516 437.31701660 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05079517 437.31701660 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05079518 437.31701660 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05079519 437.31707764 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05079520 437.31707764 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05079521 437.31707764 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05079522 437.31710815 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05079523 437.31710815 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05079524 437.31716919 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05079525 437.31716919 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05079526 437.31723022 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05079527 437.31723022 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05079528 437.31726074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05079529 437.31726074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05079530 437.31726074 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05079531 437.31732178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05079532 437.31732178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05079533 437.31732178 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05079534 437.31738281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05079535 437.31738281 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05079536 437.31741333 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05079537 437.31741333 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05079538 437.31747437 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05079539 437.31747437 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05079540 437.31753540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05079541 437.31753540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05079542 437.31753540 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05079543 437.31756592 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05079544 437.31756592 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05079545 437.31756592 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05079546 437.31762695 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05079547 437.31762695 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05079548 437.31768799 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05079549 437.31768799 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05079550 437.31774902 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05079551 437.31774902 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05079552 437.31777954 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05079553 437.31777954 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05079554 437.31784058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05079555 437.31784058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05079556 437.31784058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05079557 437.31784058 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05079558 437.31790161 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05079559 437.31790161 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05079560 437.31793213 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05079561 437.31793213 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05079562 437.31799316 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05079563 437.31799316 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05079564 437.31805420 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05079565 437.31805420 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05079566 437.31808472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05079567 437.31808472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05079568 437.31808472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05079569 437.31808472 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05079570 437.31814575 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05079571 437.31814575 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05079572 437.31820679 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05079573 437.31820679 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05079574 437.31823730 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05079575 437.31823730 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05079576 437.31829834 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05079577 437.31829834 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05079578 437.31835938 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05079579 437.31835938 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05079580 437.31835938 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05079581 437.31838989 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05079582 437.31838989 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05079583 437.31838989 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05079584 437.31845093 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05079585 437.31845093 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05079586 437.31851196 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05079587 437.31851196 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05079588 437.31854248 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05079589 437.31854248 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05079590 437.31860352 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05079591 437.31860352 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05079592 437.31866455 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05079593 437.31866455 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05079594 437.31866455 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05079595 437.31869507 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05079596 437.31869507 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05079597 437.31869507 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05079598 437.31875610 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05079599 437.31875610 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05079600 437.31881714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05079601 437.31881714 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05079602 437.31884766 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05079603 437.31884766 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05079604 437.31890869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05079605 437.31890869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05079606 437.31890869 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05079607 437.31896973 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05079608 437.31896973 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05079609 437.31896973 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05079610 437.31900024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05079611 437.31900024 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05079612 437.31906128 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05079613 437.31906128 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05079614 437.31912231 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05079615 437.31912231 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05079616 437.31915283 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05079617 437.31915283 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05079618 437.31915283 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05079619 437.31921387 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05079620 437.31921387 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05079621 437.31921387 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05079622 437.31927490 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05079623 437.31927490 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05079624 437.31933594 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05079625 437.31933594 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05079626 437.31936646 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05079627 437.31936646 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05079628 437.31942749 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05079629 437.31942749 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05079630 437.31942749 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05079631 437.31942749 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05079632 437.31948853 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05079633 437.31948853 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05079634 437.31951904 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05079635 437.31951904 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05079636 437.31958008 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05079637 437.31958008 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05079638 437.31964111 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05079639 437.31964111 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05079640 437.31967163 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05079641 437.31967163 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05079642 437.31967163 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05079643 437.31973267 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05079644 437.31973267 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05079645 437.31973267 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05079646 437.31979370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05079647 437.31979370 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05079648 437.31982422 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05079649 437.31982422 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05079650 437.31988525 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05079651 437.31988525 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05079652 437.31994629 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05079653 437.31994629 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05079654 437.31994629 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05079655 437.31994629 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05079656 437.31997681 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05079657 437.31997681 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05079658 437.32003784 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05079659 437.32003784 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05079660 437.32009888 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05079661 437.32009888 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05079662 437.32012939 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05079663 437.32012939 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05079664 437.32019043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05079665 437.32019043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05079666 437.32019043 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05079667 437.32025146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05079668 437.32025146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05079669 437.32025146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05079670 437.32028198 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05079671 437.32028198 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05079672 437.32034302 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05079673 437.32034302 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05079674 437.32040405 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05079675 437.32040405 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05079676 437.32043457 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05079677 437.32043457 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05079678 437.32043457 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05079679 437.32049561 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05079680 437.32049561 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05079681 437.32049561 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05079682 437.32055664 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05079683 437.32055664 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05079684 437.32058716 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05079685 437.32058716 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05079686 437.32064819 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05079687 437.32064819 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05079688 437.32070923 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05079689 437.32070923 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05079690 437.32070923 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05079691 437.32077026 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05079692 437.32077026 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05079693 437.32077026 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05079694 437.32080078 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05079695 437.32080078 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05079696 437.32086182 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05079697 437.32086182 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05079698 437.32092285 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05079699 437.32092285 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05079700 437.32095337 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05079701 437.32095337 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05079702 437.32095337 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05079703 437.32095337 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05079704 437.32101440 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05079705 437.32101440 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05079706 437.32107544 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05079707 437.32107544 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05079708 437.32110596 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05079709 437.32110596 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05079710 437.32116699 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05079711 437.32116699 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05079712 437.32122803 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05079713 437.32122803 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05079714 437.32122803 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05079715 437.32122803 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05079716 437.32125854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05079717 437.32125854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05079718 437.32131958 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05079719 437.32131958 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05079720 437.32138062 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05079721 437.32138062 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05079722 437.32141113 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05079723 437.32141113 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05079724 437.32141113 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05079725 437.32141113 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05079726 437.32147217 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05079727 437.32147217 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05079728 437.32153320 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05079729 437.32153320 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05079730 437.32156372 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05079731 437.32156372 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05079732 437.32162476 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05079733 437.32162476 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05079734 437.32162476 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05079735 437.32168579 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05079736 437.32168579 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05079737 437.32168579 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05079738 437.32171631 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05079739 437.32171631 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05079740 437.32177734 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05079741 437.32177734 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05079742 437.32183838 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05079743 437.32183838 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05079744 437.32186890 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05079745 437.32186890 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05079746 437.32186890 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05079747 437.32186890 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05079748 437.32192993 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05079749 437.32192993 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05079750 437.32199097 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05079751 437.32199097 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05079752 437.32202148 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05079753 437.32202148 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05079754 437.32208252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05079755 437.32208252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05079756 437.32208252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05079757 437.32208252 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05079758 437.32214355 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05079759 437.32214355 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05079760 437.32217407 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05079761 437.32217407 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05079762 437.32223511 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05079763 437.32223511 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05079764 437.32229614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05079765 437.32229614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05079766 437.32229614 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05079767 437.32235718 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05079768 437.32235718 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05079769 437.32235718 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05079770 437.32238770 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05079771 437.32238770 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05079772 437.32244873 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05079773 437.32244873 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05079774 437.32250977 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05079775 437.32250977 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05079776 437.32250977 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05079777 437.32254028 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05079778 437.32254028 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05079779 437.32254028 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05079780 437.32260132 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05079781 437.32260132 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05079782 437.32266235 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05079783 437.32266235 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05079784 437.32269287 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05079785 437.32269287 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05079786 437.32275391 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05079787 437.32275391 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05079788 437.32275391 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05079789 437.32281494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05079790 437.32281494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05079791 437.32281494 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05079792 437.32284546 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05079793 437.32284546 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05079794 437.32290649 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05079795 437.32290649 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05079796 437.32296753 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05079797 437.32296753 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05079798 437.32299805 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05079799 437.32299805 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05079800 437.32299805 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05079801 437.32299805 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05079802 437.32305908 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05079803 437.32305908 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05079804 437.32312012 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05079805 437.32312012 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05079806 437.32315063 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05079807 437.32315063 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05079808 437.32321167 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05079809 437.32321167 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05079810 437.32327271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05079811 437.32327271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05079812 437.32327271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05079813 437.32327271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05079814 437.32330322 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05079815 437.32330322 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05079816 437.32336426 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05079817 437.32336426 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05079818 437.32342529 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05079819 437.32342529 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05079820 437.32345581 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05079821 437.32345581 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05079822 437.32345581 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05079823 437.32351685 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05079824 437.32351685 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05079825 437.32351685 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05079826 437.32357788 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05079827 437.32357788 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05079828 437.32360840 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05079829 437.32360840 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05079830 437.32366943 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05079831 437.32366943 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05079832 437.32373047 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05079833 437.32373047 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05079834 437.32373047 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05079835 437.32376099 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05079836 437.32376099 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05079837 437.32376099 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05079838 437.32382202 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05079839 437.32382202 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05079840 437.32388306 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05079841 437.32388306 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05079842 437.32394409 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05079843 437.32394409 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05079844 437.32397461 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05079845 437.32397461 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05079846 437.32397461 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05079847 437.32397461 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05079848 437.32403564 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05079849 437.32403564 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05079850 437.32409668 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05079851 437.32409668 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05079852 437.32412720 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05079853 437.32412720 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05079854 437.32418823 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05079855 437.32418823 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05079856 437.32424927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05079857 437.32424927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05079858 437.32424927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05079859 437.32424927 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05079860 437.32427979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05079861 437.32427979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05079862 437.32434082 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05079863 437.32434082 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05079864 437.32440186 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05079865 437.32440186 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05079866 437.32443237 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05079867 437.32443237 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05079868 437.32443237 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05079869 437.32449341 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05079870 437.32449341 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05079871 437.32449341 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05079872 437.32455444 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05079873 437.32455444 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05079874 437.32458496 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05079875 437.32458496 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05079876 437.32464600 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05079877 437.32464600 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05079878 437.32470703 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05079879 437.32470703 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05079880 437.32473755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05079881 437.32473755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05079882 437.32473755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05079883 437.32473755 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05079884 437.32479858 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05079885 437.32479858 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05079886 437.32485962 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05079887 437.32485962 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05079888 437.32489014 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05079889 437.32489014 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05079890 437.32495117 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05079891 437.32495117 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05079892 437.32501221 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05079893 437.32501221 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05079894 437.32501221 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05079895 437.32504272 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05079896 437.32504272 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05079897 437.32504272 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05079898 437.32510376 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05079899 437.32510376 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05079900 437.32516479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05079901 437.32516479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05079902 437.32519531 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05079903 437.32519531 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05079904 437.32525635 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05079905 437.32525635 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05079906 437.32525635 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05079907 437.32525635 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05079908 437.32531738 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05079909 437.32531738 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05079910 437.32537842 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05079911 437.32537842 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05079912 437.32540894 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05079913 437.32540894 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05079914 437.32546997 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05079915 437.32546997 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05079916 437.32546997 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05079917 437.32553101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05079918 437.32553101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05079919 437.32553101 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05079920 437.32556152 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05079921 437.32556152 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05079922 437.32562256 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05079923 437.32562256 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05079924 437.32568359 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05079925 437.32568359 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05079926 437.32571411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05079927 437.32571411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05079928 437.32571411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05079929 437.32571411 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05079930 437.32577515 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05079931 437.32577515 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05079932 437.32583618 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05079933 437.32583618 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05079934 437.32586670 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05079935 437.32586670 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05079936 437.32592773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05079937 437.32592773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05079938 437.32592773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05079939 437.32592773 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05079940 437.32598877 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05079941 437.32598877 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05079942 437.32601929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05079943 437.32601929 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05079944 437.32608032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05079945 437.32608032 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05079946 437.32614136 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05079947 437.32614136 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05079948 437.32614136 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05079949 437.32617188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05079950 437.32617188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05079951 437.32617188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05079952 437.32623291 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05079953 437.32623291 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05079954 437.32629395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05079955 437.32629395 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05079956 437.32632446 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05079957 437.32632446 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05079958 437.32638550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05079959 437.32638550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05079960 437.32638550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05079961 437.32638550 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05079962 437.32644653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05079963 437.32644653 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05079964 437.32647705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05079965 437.32647705 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05079966 437.32653809 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05079967 437.32653809 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05079968 437.32659912 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05079969 437.32659912 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05079970 437.32662964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05079971 437.32662964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05079972 437.32662964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05079973 437.32662964 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05079974 437.32669067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05079975 437.32669067 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05079976 437.32675171 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05079977 437.32675171 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05079978 437.32678223 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05079979 437.32678223 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05079980 437.32684326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05079981 437.32684326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05079982 437.32684326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05079983 437.32684326 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05079984 437.32690430 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05079985 437.32690430 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05079986 437.32696533 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05079987 437.32696533 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05079988 437.32699585 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05079989 437.32699585 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05079990 437.32705688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05079991 437.32705688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05079992 437.32711792 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05079993 437.32711792 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05079994 437.32711792 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05079995 437.32711792 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05079996 437.32714844 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05079997 437.32714844 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05079998 437.32720947 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05079999 437.32720947 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05080000 437.32727051 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05080001 437.32727051 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05080002 437.32730103 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05080003 437.32730103 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05080004 437.32730103 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05080005 437.32730103 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05080006 437.32736206 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05080007 437.32736206 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05080008 437.32742310 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05080009 437.32742310 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05080010 437.32745361 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05080011 437.32745361 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05080012 437.32751465 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05080013 437.32751465 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05080014 437.32757568 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05080015 437.32757568 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05080016 437.32757568 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05080017 437.32757568 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05080018 437.32760620 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05080019 437.32760620 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05080020 437.32766724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05080021 437.32766724 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05080022 437.32772827 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05080023 437.32772827 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05080024 437.32775879 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05080025 437.32775879 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05080026 437.32775879 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05080027 437.32781982 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05080028 437.32781982 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05080029 437.32781982 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05080030 437.32788086 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05080031 437.32788086 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05080032 437.32791138 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05080033 437.32791138 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05080034 437.32797241 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05080035 437.32797241 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05080036 437.32803345 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05080037 437.32803345 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05080038 437.32803345 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05080039 437.32803345 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05080040 437.32806396 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05080041 437.32806396 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05080042 437.32812500 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05080043 437.32812500 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05080044 437.32818604 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05080045 437.32818604 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05080046 437.32821655 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05080047 437.32821655 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05080048 437.32821655 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05080049 437.32821655 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05080050 437.32827759 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05080051 437.32827759 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05080052 437.32833862 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05080053 437.32833862 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05080054 437.32836914 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05080055 437.32836914 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05080056 437.32843018 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05080057 437.32843018 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05080058 437.32843018 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05080059 437.32843018 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05080060 437.32849121 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05080061 437.32849121 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05080062 437.32855225 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05080063 437.32855225 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05080064 437.32858276 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05080065 437.32858276 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05080066 437.32864380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05080067 437.32864380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05080068 437.32864380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05080069 437.32864380 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05080070 437.32870483 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05080071 437.32870483 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05080072 437.32873535 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05080073 437.32873535 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05080074 437.32879639 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05080075 437.32879639 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05080076 437.32885742 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05080077 437.32885742 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05080078 437.32885742 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05080079 437.32885742 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05080080 437.32888794 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05080081 437.32888794 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05080082 437.32894897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05080083 437.32894897 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05080084 437.32901001 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05080085 437.32901001 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05080086 437.32904053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05080087 437.32904053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05080088 437.32904053 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05080089 437.32910156 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05080090 437.32910156 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05080091 437.32910156 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05080092 437.32916260 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05080093 437.32916260 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05080094 437.32919312 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05080095 437.32919312 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05080096 437.32925415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05080097 437.32925415 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05080098 437.32931519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05080099 437.32931519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05080100 437.32931519 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05080101 437.32934570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05080102 437.32934570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05080103 437.32934570 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05080104 437.32940674 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05080105 437.32940674 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05080106 437.32946777 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05080107 437.32946777 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05080108 437.32949829 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05080109 437.32949829 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05080110 437.32955933 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05080111 437.32955933 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05080112 437.32955933 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05080113 437.32962036 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05080114 437.32962036 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05080115 437.32962036 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05080116 437.32965088 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05080117 437.32965088 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05080118 437.32971191 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05080119 437.32971191 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05080120 437.32977295 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05080121 437.32977295 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05080122 437.32980347 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05080123 437.32980347 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05080124 437.32980347 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05080125 437.32986450 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05080126 437.32986450 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05080127 437.32986450 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05080128 437.32992554 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05080129 437.32992554 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05080130 437.32995605 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05080131 437.32995605 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05080132 437.33001709 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05080133 437.33001709 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05080134 437.33007813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05080135 437.33007813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05080136 437.33007813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05080137 437.33007813 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05080138 437.33013916 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05080139 437.33013916 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05080140 437.33016968 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05080141 437.33016968 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05080142 437.33023071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05080143 437.33023071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05080144 437.33029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05080145 437.33029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05080146 437.33029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05080147 437.33032227 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05080148 437.33032227 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05080149 437.33032227 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05080150 437.33038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05080151 437.33038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05080152 437.33044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05080153 437.33044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05080154 437.33047485 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05080155 437.33047485 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05080156 437.33053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05080157 437.33053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05080158 437.33053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05080159 437.33053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05080160 437.33059692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05080161 437.33059692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05080162 437.33062744 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05080163 437.33062744 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05080164 437.33068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05080165 437.33068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05080166 437.33074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05080167 437.33074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05080168 437.33078003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05080169 437.33078003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05080170 437.33078003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05080171 437.33078003 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05080172 437.33084106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05080173 437.33084106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05080174 437.33090210 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05080175 437.33090210 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05080176 437.33093262 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05080177 437.33093262 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05080178 437.33099365 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05080179 437.33099365 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05080180 437.33099365 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05080181 437.33105469 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05080182 437.33105469 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05080183 437.33105469 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05080184 437.33108521 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05080185 437.33108521 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05080186 437.33114624 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05080187 437.33114624 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05080188 437.33120728 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05080189 437.33120728 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05080190 437.33123779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05080191 437.33123779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05080192 437.33123779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05080193 437.33123779 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05080194 437.33129883 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05080195 437.33129883 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05080196 437.33135986 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05080197 437.33135986 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05080198 437.33139038 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05080199 437.33139038 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05080200 437.33145142 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05080201 437.33145142 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05080202 437.33151245 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05080203 437.33151245 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05080204 437.33151245 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05080205 437.33151245 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05080206 437.33157349 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05080207 437.33157349 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05080208 437.33160400 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05080209 437.33160400 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05080210 437.33166504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05080211 437.33166504 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05080212 437.33172607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05080213 437.33172607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05080214 437.33172607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05080215 437.33172607 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05080216 437.33175659 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05080217 437.33175659 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05080218 437.33181763 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05080219 437.33181763 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05080220 437.33187866 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05080221 437.33187866 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05080222 437.33190918 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05080223 437.33190918 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05080224 437.33197021 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05080225 437.33197021 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05080226 437.33197021 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05080227 437.33197021 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05080228 437.33203125 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05080229 437.33203125 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05080230 437.33206177 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05080231 437.33206177 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05080232 437.33212280 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05080233 437.33212280 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05080234 437.33218384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05080235 437.33218384 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05080236 437.33221436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05080237 437.33221436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05080238 437.33221436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05080239 437.33221436 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05080240 437.33227539 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05080241 437.33227539 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05080242 437.33233643 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05080243 437.33233643 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05080244 437.33236694 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05080245 437.33236694 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05080246 437.33242798 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05080247 437.33242798 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05080248 437.33242798 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05080249 437.33248901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05080250 437.33248901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05080251 437.33248901 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05080252 437.33251953 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05080253 437.33251953 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05080254 437.33258057 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05080255 437.33258057 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05080256 437.33264160 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05080257 437.33264160 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05080258 437.33267212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05080259 437.33267212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05080260 437.33267212 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05080261 437.33273315 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05080262 437.33273315 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05080263 437.33273315 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05080264 437.33279419 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05080265 437.33279419 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05080266 437.33282471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05080267 437.33282471 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05080268 437.33288574 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05080269 437.33288574 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05080270 437.33294678 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05080271 437.33294678 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05080272 437.33294678 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05080273 437.33294678 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05080274 437.33297729 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05080275 437.33297729 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05080276 437.33303833 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05080277 437.33303833 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05080278 437.33309937 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05080279 437.33309937 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05080280 437.33316040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05080281 437.33316040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05080282 437.33316040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05080283 437.33316040 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05080284 437.33319092 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05080285 437.33319092 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05080286 437.33325195 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05080287 437.33325195 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05080288 437.33331299 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05080289 437.33331299 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05080290 437.33334351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05080291 437.33334351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05080292 437.33334351 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05080293 437.33340454 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05080294 437.33340454 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05080295 437.33340454 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05080296 437.33346558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05080297 437.33346558 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05080298 437.33349609 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05080299 437.33349609 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05080300 437.33355713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05080301 437.33355713 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05080302 437.33361816 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05080303 437.33361816 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05080304 437.33361816 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05080305 437.33364868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05080306 437.33364868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05080307 437.33364868 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05080308 437.33370972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05080309 437.33370972 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05080310 437.33377075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05080311 437.33377075 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05080312 437.33380127 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05080313 437.33380127 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05080314 437.33386230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05080315 437.33386230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05080316 437.33386230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05080317 437.33386230 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05080318 437.33392334 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05080319 437.33392334 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05080320 437.33395386 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05080321 437.33395386 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05080322 437.33401489 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05080323 437.33401489 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05080324 437.33407593 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05080325 437.33407593 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05080326 437.33407593 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05080327 437.33410645 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05080328 437.33410645 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05080329 437.33410645 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05080330 437.33416748 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05080331 437.33416748 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05080332 437.33422852 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05080333 437.33422852 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05080334 437.33425903 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05080335 437.33425903 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05080336 437.33432007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05080337 437.33432007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05080338 437.33432007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05080339 437.33432007 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05080340 437.33438110 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05080341 437.33438110 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05080342 437.33441162 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05080343 437.33441162 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05080344 437.33447266 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05080345 437.33447266 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05080346 437.33453369 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05080347 437.33453369 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05080348 437.33453369 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05080349 437.33456421 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05080350 437.33456421 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05080351 437.33456421 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05080352 437.33462524 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05080353 437.33462524 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05080354 437.33468628 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05080355 437.33468628 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05080356 437.33474731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05080357 437.33474731 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05080358 437.33477783 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05080359 437.33477783 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05080360 437.33477783 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05080361 437.33483887 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05080362 437.33483887 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05080363 437.33483887 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05080364 437.33489990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05080365 437.33489990 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05080366 437.33493042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05080367 437.33493042 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05080368 437.33499146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05080369 437.33499146 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05080370 437.33505249 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05080371 437.33505249 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05080372 437.33508301 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05080373 437.33508301 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05080374 437.33508301 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05080375 437.33508301 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05080376 437.33514404 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05080377 437.33514404 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05080378 437.33520508 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05080379 437.33520508 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05080380 437.33523560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05080381 437.33523560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05080382 437.33523560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05080383 437.33523560 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05080384 437.33529663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05080385 437.33529663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05080386 437.33529663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05080387 437.33529663 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05080388 437.33535767 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05080389 437.33535767 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05080390 437.33538818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05080391 437.33538818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05080392 437.33538818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05080393 437.33538818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05080394 437.33544922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05080395 437.33544922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05080396 437.33544922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05080397 437.33544922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05080398 437.33551025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05080399 437.33551025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05080400 437.33551025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05080401 437.33551025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05080402 437.33554077 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05080403 437.33554077 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05080404 437.33554077 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05080405 437.33554077 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05080406 437.33560181 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05080407 437.33560181 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05080408 437.33560181 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05080409 437.33566284 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05080410 437.33566284 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05080411 437.33566284 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05080412 437.33569336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05080413 437.33569336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05080414 437.33569336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05080415 437.33569336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05080416 437.33575439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05080417 437.33575439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05080418 437.33575439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05080419 437.33575439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05080420 437.33581543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05080421 437.33581543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05080422 437.33581543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05080423 437.33581543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05080424 437.33584595 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05080425 437.33584595 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05080426 437.33584595 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05080427 437.33584595 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05080428 437.33590698 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05080429 437.33590698 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05080430 437.33590698 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05080431 437.33596802 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05080432 437.33596802 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05080433 437.33596802 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05080434 437.33599854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05080435 437.33599854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05080436 437.33599854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05080437 437.33599854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05080438 437.33605957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05080439 437.33605957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05080440 437.33605957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05080441 437.33605957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05080442 437.33612061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05080443 437.33612061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05080444 437.33612061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05080445 437.33612061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05080446 437.33618164 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05080447 437.33618164 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05080448 437.33618164 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05080449 437.33618164 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05080450 437.33621216 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05080451 437.33621216 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05080452 437.33627319 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05080453 437.33627319 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05080454 437.33627319 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05080455 437.33627319 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05080456 437.33633423 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05080457 437.33633423 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05080458 437.33633423 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05080459 437.33633423 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05080460 437.33636475 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05080461 437.33636475 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05080462 437.33636475 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05080463 437.33636475 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05080464 437.33642578 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05080465 437.33642578 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05080466 437.33648682 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05080467 437.33648682 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05080468 437.33651733 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05080469 437.33651733 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05080470 437.33651733 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05080471 437.33651733 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05080472 437.33657837 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05080473 437.33657837 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05080474 437.33663940 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05080475 437.33663940 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05080476 437.33666992 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05080477 437.33666992 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05080478 437.33666992 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05080479 437.33666992 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05080480 437.33673096 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05080481 437.33673096 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05080482 437.33679199 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05080483 437.33679199 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05080484 437.33682251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05080485 437.33682251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05080486 437.33682251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05080487 437.33682251 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05080488 437.33688354 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05080489 437.33688354 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05080490 437.33694458 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05080491 437.33694458 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05080492 437.33697510 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05080493 437.33697510 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05080494 437.33697510 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05080495 437.33697510 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05080496 437.33703613 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05080497 437.33703613 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05080498 437.33703613 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05080499 437.33703613 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05080500 437.33709717 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05080501 437.33709717 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05080502 437.33709717 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05080503 437.33709717 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05080504 437.33712769 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05080505 437.33712769 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05080506 437.33712769 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05080507 437.33718872 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05080508 437.33718872 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05080509 437.33718872 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05080510 437.33724976 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05080511 437.33724976 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05080512 437.33724976 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05080513 437.33724976 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05080514 437.33728027 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05080515 437.33728027 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05080516 437.33728027 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05080517 437.33728027 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05080518 437.33734131 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05080519 437.33734131 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05080520 437.33734131 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05080521 437.33734131 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05080522 437.33740234 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05080523 437.33740234 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05080524 437.33740234 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05080525 437.33740234 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05080526 437.33743286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05080527 437.33743286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05080528 437.33743286 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05080529 437.33749390 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05080530 437.33749390 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05080531 437.33749390 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05080532 437.33755493 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05080533 437.33755493 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05080534 437.33755493 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05080535 437.33755493 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05080536 437.33758545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05080537 437.33758545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05080538 437.33758545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05080539 437.33758545 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05080540 437.33764648 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05080541 437.33764648 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05080542 437.33764648 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05080543 437.33764648 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05080544 437.33770752 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05080545 437.33770752 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05080546 437.33770752 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05080547 437.33776855 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05080548 437.33776855 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05080549 437.33776855 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05080550 437.33779907 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05080551 437.33779907 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05080552 437.33779907 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05080553 437.33779907 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05080554 437.33786011 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05080555 437.33786011 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05080556 437.33786011 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05080557 437.33786011 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05080558 437.33792114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05080559 437.33792114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05080560 437.33792114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05080561 437.33792114 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05080562 437.33795166 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05080563 437.33795166 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05080564 437.33795166 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05080565 437.33795166 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05080566 437.33801270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05080567 437.33801270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05080568 437.33801270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05080569 437.33807373 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05080570 437.33807373 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05080571 437.33807373 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05080572 437.33810425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05080573 437.33810425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05080574 437.33810425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05080575 437.33810425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05080576 437.33816528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05080577 437.33816528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05080578 437.33816528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05080579 437.33816528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05080580 437.33822632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05080581 437.33822632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05080582 437.33822632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05080583 437.33822632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05080584 437.33825684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05080585 437.33825684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05080586 437.33825684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05080587 437.33825684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05080588 437.33831787 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05080589 437.33831787 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05080590 437.33837891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05080591 437.33837891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05080592 437.33837891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05080593 437.33837891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05080594 437.33840942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05080595 437.33840942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05080596 437.33840942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05080597 437.33840942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05080598 437.33847046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05080599 437.33847046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05080600 437.33847046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05080601 437.33847046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05080602 437.33853149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05080603 437.33853149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05080604 437.33853149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05080605 437.33853149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05080606 437.33856201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05080607 437.33856201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05080608 437.33856201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05080609 437.33862305 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05080610 437.33862305 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05080611 437.33862305 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05080612 437.33868408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05080613 437.33868408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05080614 437.33868408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05080615 437.33868408 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05080616 437.33871460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05080617 437.33871460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05080618 437.33871460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05080619 437.33871460 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05080620 437.33877563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05080621 437.33877563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05080622 437.33877563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05080623 437.33877563 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05080624 437.33883667 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05080625 437.33883667 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05080626 437.33883667 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05080627 437.33883667 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05080628 437.33886719 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05080629 437.33886719 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05080630 437.33886719 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05080631 437.33892822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05080632 437.33892822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05080633 437.33892822 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05080634 437.33898926 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05080635 437.33898926 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05080636 437.33898926 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05080637 437.33898926 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05080638 437.33901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05080639 437.33901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05080640 437.33901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05080641 437.33901978 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05080642 437.33908081 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05080643 437.33908081 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05080644 437.33908081 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05080645 437.33908081 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05080646 437.33914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05080647 437.33914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05080648 437.33914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05080649 437.33914185 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05080650 437.33917236 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05080651 437.33917236 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05080652 437.33917236 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05080653 437.33923340 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05080654 437.33923340 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05080655 437.33923340 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05080656 437.33929443 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05080657 437.33929443 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05080658 437.33929443 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05080659 437.33929443 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05080660 437.33935547 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05080661 437.33935547 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05080662 437.33935547 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05080663 437.33935547 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05080664 437.33938599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05080665 437.33938599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05080666 437.33938599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05080667 437.33938599 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05080668 437.33944702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05080669 437.33944702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05080670 437.33944702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05080671 437.33944702 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05080672 437.33950806 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05080673 437.33950806 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05080674 437.33953857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05080675 437.33953857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05080676 437.33953857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05080677 437.33953857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05080678 437.33959961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05080679 437.33959961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05080680 437.33959961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05080681 437.33959961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05080682 437.33966064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05080683 437.33966064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05080684 437.33966064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05080685 437.33966064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05080686 437.33969116 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05080687 437.33969116 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05080688 437.33969116 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05080689 437.33969116 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05080690 437.33975220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05080691 437.33975220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05080692 437.33975220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05080693 437.33975220 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05080694 437.33981323 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05080695 437.33981323 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05080696 437.33984375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05080697 437.33984375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05080698 437.33984375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05080699 437.33984375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05080700 437.33990479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05080701 437.33990479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05080702 437.33990479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05080703 437.33990479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05080704 437.33996582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05080705 437.33996582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05080706 437.33996582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05080707 437.33996582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05080708 437.33999634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05080709 437.33999634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05080710 437.33999634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05080711 437.33999634 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05080712 437.34005737 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05080713 437.34005737 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05080714 437.34005737 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05080715 437.34011841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05080716 437.34011841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05080717 437.34011841 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05080718 437.34014893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05080719 437.34014893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05080720 437.34014893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05080721 437.34014893 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05080722 437.34020996 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05080723 437.34020996 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05080724 437.34020996 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05080725 437.34020996 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05080726 437.34027100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05080727 437.34027100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05080728 437.34027100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05080729 437.34027100 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05080730 437.34030151 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05080731 437.34030151 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05080732 437.34030151 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05080733 437.34030151 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05080734 437.34036255 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05080735 437.34036255 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05080736 437.34036255 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05080737 437.34042358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05080738 437.34042358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05080739 437.34042358 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05080740 437.34045410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05080741 437.34045410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05080742 437.34045410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05080743 437.34045410 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05080744 437.34051514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05080745 437.34051514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05080746 437.34051514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05080747 437.34051514 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05080748 437.34057617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05080749 437.34057617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05080750 437.34057617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05080751 437.34057617 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05080752 437.34060669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05080753 437.34060669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05080754 437.34060669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05080755 437.34060669 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05080756 437.34066772 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05080757 437.34066772 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05080758 437.34072876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05080759 437.34072876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05080760 437.34072876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05080761 437.34072876 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05080762 437.34075928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05080763 437.34075928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05080764 437.34075928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05080765 437.34075928 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05080766 437.34082031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05080767 437.34082031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05080768 437.34082031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05080769 437.34082031 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05080770 437.34088135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05080771 437.34088135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05080772 437.34088135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05080773 437.34088135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05080774 437.34094238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05080775 437.34094238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05080776 437.34094238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05080777 437.34094238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05080778 437.34097290 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05080779 437.34097290 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05080780 437.34103394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05080781 437.34103394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05080782 437.34103394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05080783 437.34103394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05080784 437.34109497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05080785 437.34109497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05080786 437.34109497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05080787 437.34109497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05080788 437.34112549 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05080789 437.34112549 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05080790 437.34112549 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05080791 437.34112549 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05080792 437.34118652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05080793 437.34118652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05080794 437.34118652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05080795 437.34118652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05080796 437.34124756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05080797 437.34124756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05080798 437.34124756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05080799 437.34127808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05080800 437.34127808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05080801 437.34127808 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05080802 437.34133911 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05080803 437.34133911 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05080804 437.34140015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05080805 437.34140015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05080806 437.34140015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05080807 437.34140015 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05080808 437.34143066 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05080809 437.34143066 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05080810 437.34143066 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05080811 437.34143066 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05080812 437.34149170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05080813 437.34149170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05080814 437.34149170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05080815 437.34149170 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05080816 437.34155273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05080817 437.34155273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05080818 437.34155273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05080819 437.34155273 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05080820 437.34158325 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05080821 437.34158325 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05080822 437.34158325 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05080823 437.34164429 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05080824 437.34164429 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05080825 437.34164429 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05080826 437.34170532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05080827 437.34170532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05080828 437.34170532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05080829 437.34170532 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05080830 437.34173584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05080831 437.34173584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05080832 437.34173584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05080833 437.34173584 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05080834 437.34179688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05080835 437.34179688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05080836 437.34179688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05080837 437.34179688 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05080838 437.34185791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05080839 437.34185791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05080840 437.34185791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05080841 437.34185791 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05080842 437.34188843 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05080843 437.34188843 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05080844 437.34194946 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05080845 437.34194946 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05080846 437.34194946 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05080847 437.34194946 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05080848 437.34201050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05080849 437.34201050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05080850 437.34201050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05080851 437.34201050 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05080852 437.34204102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05080853 437.34204102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05080854 437.34204102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05080855 437.34204102 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05080856 437.34210205 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05080857 437.34210205 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05080858 437.34210205 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05080859 437.34210205 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05080860 437.34216309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05080861 437.34216309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05080862 437.34216309 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05080863 437.34219360 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05080864 437.34219360 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05080865 437.34219360 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05080866 437.34225464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05080867 437.34225464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05080868 437.34225464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05080869 437.34225464 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05080870 437.34231567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05080871 437.34231567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05080872 437.34231567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05080873 437.34231567 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05080874 437.34237671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05080875 437.34237671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05080876 437.34237671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05080877 437.34237671 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05080878 437.34240723 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05080879 437.34240723 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05080880 437.34240723 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05080881 437.34240723 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05080882 437.34246826 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05080883 437.34246826 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05080884 437.34252930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05080885 437.34252930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05080886 437.34252930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05080887 437.34252930 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05080888 437.34255981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05080889 437.34255981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05080890 437.34255981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05080891 437.34255981 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05080892 437.34262085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05080893 437.34262085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05080894 437.34262085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05080895 437.34262085 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05080896 437.34268188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05080897 437.34268188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05080898 437.34271240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05080899 437.34271240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05080900 437.34271240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05080901 437.34271240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05080902 437.34277344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05080903 437.34277344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05080904 437.34277344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05080905 437.34277344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05080906 437.34283447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05080907 437.34283447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05080908 437.34283447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05080909 437.34283447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05080910 437.34286499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05080911 437.34286499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05080912 437.34286499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05080913 437.34286499 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05080914 437.34292603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05080915 437.34292603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05080916 437.34292603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05080917 437.34298706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05080918 437.34298706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05080919 437.34298706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05080920 437.34301758 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05080921 437.34301758 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05080922 437.34301758 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05080923 437.34301758 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05080924 437.34307861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05080925 437.34307861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05080926 437.34307861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05080927 437.34307861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05080928 437.34313965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05080929 437.34313965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05080930 437.34313965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05080931 437.34317017 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05080932 437.34317017 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05080933 437.34317017 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05080934 437.34323120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05080935 437.34323120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05080936 437.34323120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05080937 437.34323120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05080938 437.34329224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05080939 437.34329224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05080940 437.34329224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05080941 437.34329224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05080942 437.34332275 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05080943 437.34332275 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05080944 437.34332275 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05080945 437.34332275 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05080946 437.34338379 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05080947 437.34338379 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05080948 437.34338379 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05080949 437.34338379 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05080950 437.34344482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05080951 437.34344482 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05080952 437.34347534 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05080953 437.34347534 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05080954 437.34347534 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05080955 437.34347534 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05080956 437.34353638 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05080957 437.34353638 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05080958 437.34359741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05080959 437.34359741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05080960 437.34359741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05080961 437.34359741 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05080962 437.34362793 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05080963 437.34362793 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05080964 437.34368896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05080965 437.34368896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05080966 437.34368896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05080967 437.34368896 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05080968 437.34375000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05080969 437.34375000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05080970 437.34375000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05080971 437.34375000 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05087011 437.43176270 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106b8 -05087012 437.43179321 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c8 -05087013 437.43179321 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106c8 -05087014 437.43179321 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d8 -05087015 437.43179321 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d8 -05087016 437.43185425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e8 -05087017 437.43185425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e8 -05087018 437.43185425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f8 -05087019 437.43185425 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f8 -05087020 437.43191528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10708 -05087021 437.43191528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10708 -05087022 437.43191528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10718 -05087023 437.43191528 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10718 -05087024 437.43197632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10728 -05087025 437.43197632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10728 -05087026 437.43197632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10738 -05087027 437.43197632 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10738 -05087028 437.43200684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10748 -05087029 437.43200684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10748 -05087030 437.43200684 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10758 -05087031 437.43206787 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10758 -05087032 437.43206787 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10768 -05087033 437.43206787 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10768 -05087034 437.43212891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10778 -05087035 437.43212891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10778 -05087036 437.43212891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10788 -05087037 437.43212891 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10788 -05087038 437.43215942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10798 -05087039 437.43215942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10798 -05087040 437.43215942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a8 -05087041 437.43215942 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a8 -05087042 437.43222046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b8 -05087043 437.43222046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b8 -05087044 437.43222046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c8 -05087045 437.43222046 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c8 -05087046 437.43228149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d8 -05087047 437.43228149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d8 -05087048 437.43228149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e8 -05087049 437.43228149 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e8 -05087050 437.43231201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f8 -05087051 437.43231201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f8 -05087052 437.43231201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10808 -05087053 437.43231201 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10808 -05087054 437.43237305 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x10818 -05091622 437.49703979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d8 -05091623 437.49703979 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196d8 -05091624 437.49710083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e8 -05091625 437.49710083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196e8 -05091626 437.49710083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f8 -05091627 437.49710083 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x196f8 -05091628 437.49713135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19708 -05091629 437.49713135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19708 -05091630 437.49713135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19718 -05091631 437.49713135 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19718 -05091632 437.49719238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19728 -05091633 437.49719238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19728 -05091634 437.49719238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19738 -05091635 437.49719238 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19738 -05091636 437.49725342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19748 -05091637 437.49725342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19748 -05091638 437.49725342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19758 -05091639 437.49725342 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19758 -05091640 437.49728394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19768 -05091641 437.49728394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19768 -05091642 437.49728394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19778 -05091643 437.49728394 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19778 -05091644 437.49734497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19788 -05091645 437.49734497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19788 -05091646 437.49734497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19798 -05091647 437.49734497 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19798 -05091648 437.49740601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a8 -05091649 437.49740601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197a8 -05091650 437.49740601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b8 -05091651 437.49740601 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197b8 -05091652 437.49743652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c8 -05091653 437.49743652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197c8 -05091654 437.49743652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d8 -05091655 437.49743652 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197d8 -05091656 437.49749756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e8 -05091657 437.49749756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197e8 -05091658 437.49749756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f8 -05091659 437.49749756 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x197f8 -05091660 437.49755859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19808 -05091661 437.49755859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19808 -05091662 437.49755859 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19818 -05091663 437.49758911 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19818 -05091664 437.49758911 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19828 -05091665 437.49758911 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x19828 -05097420 437.58023071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -05097421 437.58023071 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -05097422 437.58029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -05097423 437.58029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -05097424 437.58029175 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -05097425 437.58035278 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -05097426 437.58035278 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c38 -05097427 437.58035278 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c38 -05097428 437.58038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c48 -05097429 437.58038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c48 -05097430 437.58038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c58 -05097431 437.58038330 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c58 -05097432 437.58044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c68 -05097433 437.58044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c68 -05097434 437.58044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -05097435 437.58044434 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -05097436 437.58050537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -05097437 437.58050537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -05097438 437.58050537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -05097439 437.58050537 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -05097440 437.58053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -05097441 437.58053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -05097442 437.58053589 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -05097443 437.58059692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -05097444 437.58059692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -05097445 437.58059692 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -05097446 437.58065796 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -05097447 437.58065796 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -05097448 437.58065796 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -05097449 437.58065796 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -05097450 437.58068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -05097451 437.58068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -05097452 437.58068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -05097453 437.58068848 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -05097454 437.58074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d18 -05097455 437.58074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d18 -05097456 437.58074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d28 -05097457 437.58074951 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d28 -05097458 437.58081055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d38 -05097459 437.58081055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d38 -05097460 437.58081055 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d48 -05097461 437.58084106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d48 -05097462 437.58084106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d58 -05097463 437.58084106 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d58 -05104646 437.68643188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd8 -05104647 437.68643188 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32dd8 -05104648 437.68646240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de8 -05104649 437.68646240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32de8 -05104650 437.68646240 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df8 -05104651 437.68652344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32df8 -05104652 437.68652344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e08 -05104653 437.68652344 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e08 -05104654 437.68658447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e18 -05104655 437.68658447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e18 -05104656 437.68658447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e28 -05104657 437.68658447 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e28 -05104658 437.68664551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e38 -05104659 437.68664551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e38 -05104660 437.68664551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e48 -05104661 437.68664551 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e48 -05104662 437.68667603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e58 -05104663 437.68667603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e58 -05104664 437.68667603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e68 -05104665 437.68667603 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e68 -05104666 437.68673706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e78 -05104667 437.68673706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e78 -05104668 437.68673706 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e88 -05104669 437.68679810 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e88 -05104670 437.68679810 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e98 -05104671 437.68679810 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e98 -05104672 437.68682861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea8 -05104673 437.68682861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ea8 -05104674 437.68682861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb8 -05104675 437.68682861 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32eb8 -05104676 437.68688965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec8 -05104677 437.68688965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ec8 -05104678 437.68688965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed8 -05104679 437.68688965 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ed8 -05104680 437.68695068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee8 -05104681 437.68695068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ee8 -05104682 437.68695068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef8 -05104683 437.68695068 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ef8 -05104684 437.68698120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f08 -05104685 437.68698120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f08 -05104686 437.68698120 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f18 -05104687 437.68704224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f18 -05104688 437.68704224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f28 -05104689 437.68704224 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f28 -05121010 439.05935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05121011 439.05935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05121012 439.05935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05121013 439.05935669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05121014 439.05941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05121015 439.05941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05121016 439.05941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05121017 439.05941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05121018 439.05944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05121019 439.05944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05121020 439.05944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05121021 439.05944824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05121022 439.05950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05121023 439.05950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05121024 439.05950928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05121025 439.05957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05121026 439.05957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05121027 439.05957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05121028 439.05960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05121029 439.05960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05121030 439.05960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05121031 439.05960083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05121032 439.05966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05121033 439.05966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05121034 439.05966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05121035 439.05966187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05121036 439.05972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05121037 439.05972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05121038 439.05972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05121039 439.05972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05121040 439.05975342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05121041 439.05975342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05121042 439.05975342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05121043 439.05975342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05121044 439.05981445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05121045 439.05981445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05121046 439.05981445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05121047 439.05987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05121048 439.05987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05121049 439.05987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05121050 439.05990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05121051 439.05990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05121052 439.05990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05121053 439.05990601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05121054 439.05996704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05121055 439.05996704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05121056 439.05996704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05121057 439.05996704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05121058 439.06002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05121059 439.06002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05121060 439.06005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05121061 439.06005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05121062 439.06005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05121063 439.06005859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05121064 439.06011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05121065 439.06011963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05121066 439.06018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05121067 439.06018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05121068 439.06021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05121069 439.06021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05121070 439.06021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05121071 439.06021118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05121072 439.06027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05121073 439.06027222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05121074 439.06033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05121075 439.06033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05121076 439.06033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05121077 439.06033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05121078 439.06036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05121079 439.06036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05121080 439.06036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05121081 439.06036377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05121082 439.06042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05121083 439.06042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05121084 439.06042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05121085 439.06042480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05121086 439.06048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05121087 439.06048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05121088 439.06048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05121089 439.06048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05121090 439.06051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05121091 439.06051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05121092 439.06051636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05121093 439.06057739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05121094 439.06057739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05121095 439.06057739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05121096 439.06063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05121097 439.06063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05121098 439.06063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05121099 439.06063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05121100 439.06069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05121101 439.06069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05121102 439.06069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05121103 439.06069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05121104 439.06072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05121105 439.06072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05121106 439.06072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05121107 439.06072998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05121108 439.06079102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05121109 439.06079102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05121110 439.06079102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05121111 439.06079102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05121112 439.06085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05121113 439.06085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05121114 439.06085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05121115 439.06088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05121116 439.06088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05121117 439.06088257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05121118 439.06094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05121119 439.06094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05121120 439.06094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05121121 439.06094360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05121122 439.06100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05121123 439.06100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05121124 439.06100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05121125 439.06100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05121126 439.06103516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05121127 439.06103516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05121128 439.06115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05121129 439.06115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05121130 439.06115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05121131 439.06115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05121132 439.06118774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05121133 439.06118774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05121134 439.06124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05121135 439.06124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05121136 439.06124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05121137 439.06124878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05121138 439.06130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05121139 439.06130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05121140 439.06130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05121141 439.06130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05121142 439.06134033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05121143 439.06134033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05121144 439.06134033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05121145 439.06140137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05121146 439.06140137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05121147 439.06140137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05121148 439.06146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05121149 439.06146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05121150 439.06146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05121151 439.06146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05121152 439.06149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05121153 439.06149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05121154 439.06149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05121155 439.06149292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05121156 439.06155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05121157 439.06155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05121158 439.06155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05121159 439.06155396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05121160 439.06161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05121161 439.06161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05121162 439.06161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05121163 439.06161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05121164 439.06164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05121165 439.06164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05121166 439.06164551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05121167 439.06170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05121168 439.06170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05121169 439.06170654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05121170 439.06176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05121171 439.06176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05121172 439.06176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05121173 439.06176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05121174 439.06179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05121175 439.06179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05121176 439.06179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05121177 439.06179810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05121178 439.06185913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05121179 439.06185913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05121180 439.06185913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05121181 439.06185913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05121182 439.06192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05121183 439.06192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05121184 439.06192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05121185 439.06192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05121186 439.06195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05121187 439.06195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05121188 439.06195068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05121189 439.06201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05121190 439.06201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05121191 439.06201172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05121192 439.06210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05121193 439.06210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05121194 439.06210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05121195 439.06210327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05121196 439.06216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05121197 439.06216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05121198 439.06216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05121199 439.06216431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05121200 439.06222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05121201 439.06222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05121202 439.06222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05121203 439.06228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05121204 439.06228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05121205 439.06228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05121206 439.06231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05121207 439.06231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05121208 439.06231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05121209 439.06231689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05121210 439.06237793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05121211 439.06237793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05121212 439.06237793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05121213 439.06237793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05121214 439.06243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05121215 439.06243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05121216 439.06243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05121217 439.06243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05121218 439.06246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05121219 439.06246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05121220 439.06246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05121221 439.06246948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05121222 439.06253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05121223 439.06253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05121224 439.06253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05121225 439.06253052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05121226 439.06259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05121227 439.06259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05121228 439.06262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05121229 439.06262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05121230 439.06262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05121231 439.06262207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05121232 439.06268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05121233 439.06268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05121234 439.06268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05121235 439.06268311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05121236 439.06274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05121237 439.06274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05121238 439.06274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05121239 439.06274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05121240 439.06277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05121241 439.06277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05121242 439.06277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05121243 439.06277466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05121244 439.06283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05121245 439.06283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05121246 439.06283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05121247 439.06283569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05121248 439.06289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05121249 439.06289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05121250 439.06292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05121251 439.06292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05121252 439.06292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05121253 439.06292725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05121254 439.06298828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05121255 439.06298828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05121256 439.06298828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05121257 439.06298828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05121258 439.06304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05121259 439.06304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05121260 439.06314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05121261 439.06314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05121262 439.06314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05121263 439.06314087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05121264 439.06320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05121265 439.06320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05121266 439.06320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05121267 439.06320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05121268 439.06323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05121269 439.06323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05121270 439.06323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05121271 439.06323242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05121272 439.06329346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05121273 439.06329346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05121274 439.06335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05121275 439.06335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05121276 439.06335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05121277 439.06335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05121278 439.06338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05121279 439.06338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05121280 439.06338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05121281 439.06338501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05121282 439.06344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05121283 439.06344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05121284 439.06344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05121285 439.06344604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05121286 439.06350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05121287 439.06350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05121288 439.06350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05121289 439.06350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05121290 439.06353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05121291 439.06353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05121292 439.06353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05121293 439.06353760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05121294 439.06359863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05121295 439.06359863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05121296 439.06365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05121297 439.06365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05121298 439.06365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05121299 439.06365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05121300 439.06372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05121301 439.06372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05121302 439.06372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05121303 439.06372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05121304 439.06375122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05121305 439.06375122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05121306 439.06375122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05121307 439.06375122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05121308 439.06381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05121309 439.06381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05121310 439.06381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05121311 439.06381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05121312 439.06387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05121313 439.06387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05121314 439.06387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05121315 439.06387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05121316 439.06390381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05121317 439.06390381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05121318 439.06396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05121319 439.06396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05121320 439.06396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05121321 439.06396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05121322 439.06402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05121323 439.06402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05121324 439.06405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05121325 439.06405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05121326 439.06405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05121327 439.06405640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05121328 439.06411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05121329 439.06411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05121330 439.06411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05121331 439.06411743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05121332 439.06417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05121333 439.06417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05121334 439.06420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05121335 439.06420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05121336 439.06420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05121337 439.06420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05121338 439.06427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05121339 439.06427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05121340 439.06427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05121341 439.06427002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05121342 439.06433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05121343 439.06433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05121344 439.06433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05121345 439.06433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05121346 439.06436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05121347 439.06436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05121348 439.06436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05121349 439.06436157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05121350 439.06442261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05121351 439.06442261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05121352 439.06448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05121353 439.06448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05121354 439.06448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05121355 439.06448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05121356 439.06451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05121357 439.06451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05121358 439.06451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05121359 439.06451416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05121360 439.06457520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05121361 439.06457520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05121362 439.06457520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05121363 439.06457520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05121364 439.06463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05121365 439.06463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05121366 439.06463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05121367 439.06463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05121368 439.06466675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05121369 439.06466675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05121370 439.06466675 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05121371 439.06472778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05121372 439.06472778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05121373 439.06472778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05121374 439.06478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05121375 439.06478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05121376 439.06478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05121377 439.06478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05121378 439.06481934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05121379 439.06481934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05121380 439.06481934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05121381 439.06481934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05121382 439.06488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05121383 439.06488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05121384 439.06488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05121385 439.06488037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05121386 439.06494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05121387 439.06494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05121388 439.06494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05121389 439.06494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05121390 439.06497192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05121391 439.06497192 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05121392 439.06503296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05121393 439.06503296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05121394 439.06509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05121395 439.06509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05121396 439.06512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05121397 439.06512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05121398 439.06512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05121399 439.06512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05121400 439.06518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05121401 439.06518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05121402 439.06518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05121403 439.06518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05121404 439.06524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05121405 439.06524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05121406 439.06524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05121407 439.06530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05121408 439.06530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05121409 439.06530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05121410 439.06533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05121411 439.06533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05121412 439.06533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05121413 439.06533813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05121414 439.06539917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05121415 439.06539917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05121416 439.06539917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05121417 439.06539917 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05121418 439.06546021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05121419 439.06546021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05121420 439.06546021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05121421 439.06546021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05121422 439.06549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05121423 439.06549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05121424 439.06549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05121425 439.06549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05121426 439.06555176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05121427 439.06555176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05121428 439.06555176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05121429 439.06561279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05121430 439.06561279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05121431 439.06561279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05121432 439.06564331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05121433 439.06564331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05121434 439.06564331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05121435 439.06564331 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05121436 439.06570435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05121437 439.06570435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05121438 439.06570435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05121439 439.06570435 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05121440 439.06576538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05121441 439.06576538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05121442 439.06576538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05121443 439.06576538 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05121444 439.06579590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05121445 439.06579590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05121446 439.06579590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05121447 439.06579590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05121448 439.06585693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05121449 439.06585693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05123809 439.09994507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -05123810 439.10000610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -05123811 439.10000610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -05123812 439.10006714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -05123813 439.10006714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -05123814 439.10006714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -05123815 439.10006714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -05123816 439.10009766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -05123817 439.10009766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -05123818 439.10009766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -05123819 439.10009766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -05123820 439.10015869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -05123821 439.10015869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -05123822 439.10015869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -05123823 439.10015869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -05123824 439.10021973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -05123825 439.10021973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -05123826 439.10021973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -05123827 439.10025024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -05123828 439.10025024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -05123829 439.10025024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -05123830 439.10031128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -05123831 439.10031128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -05123832 439.10031128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -05123833 439.10031128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -05123834 439.10037231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -05123835 439.10037231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -05123836 439.10037231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -05123837 439.10037231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -05123838 439.10040283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -05123839 439.10040283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -05123840 439.10040283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -05123841 439.10040283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -05123842 439.10046387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -05123843 439.10046387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -05123844 439.10046387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -05123845 439.10046387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -05123846 439.10052490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -05123847 439.10052490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -05123848 439.10052490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -05123849 439.10055542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -05123850 439.10055542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -05123851 439.10055542 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -05123852 439.10061646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -05130323 439.19369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13338 -05130324 439.19369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13338 -05130325 439.19369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13348 -05130326 439.19369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13348 -05130327 439.19375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13358 -05130328 439.19375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13358 -05130329 439.19375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13368 -05130330 439.19375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13368 -05130331 439.19381714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13378 -05130332 439.19381714 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13378 -05130333 439.19384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13388 -05130334 439.19384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13388 -05130335 439.19384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13398 -05130336 439.19384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13398 -05130337 439.19390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a8 -05130338 439.19390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133a8 -05130339 439.19390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b8 -05130340 439.19390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b8 -05130341 439.19396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c8 -05130342 439.19396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c8 -05130343 439.19396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d8 -05130344 439.19396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d8 -05130345 439.19400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e8 -05130346 439.19400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e8 -05130347 439.19400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f8 -05130348 439.19400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f8 -05130349 439.19406128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13408 -05130350 439.19406128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13408 -05130351 439.19406128 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13418 -05130352 439.19412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13418 -05130353 439.19412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13428 -05130354 439.19412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13428 -05130355 439.19415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13438 -05130356 439.19415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13438 -05130357 439.19415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13448 -05130358 439.19415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13448 -05130359 439.19421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13458 -05130360 439.19421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13458 -05130361 439.19421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -05130362 439.19421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -05130363 439.19427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -05130364 439.19427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -05130365 439.19427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -05130366 439.19427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -05146878 439.43408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33888 -05146879 439.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33898 -05146880 439.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33898 -05146881 439.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a8 -05146882 439.43414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338a8 -05146883 439.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b8 -05146884 439.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b8 -05146885 439.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c8 -05146886 439.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c8 -05146887 439.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d8 -05146888 439.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d8 -05146889 439.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e8 -05146890 439.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e8 -05146891 439.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f8 -05146892 439.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f8 -05146893 439.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33908 -05146894 439.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33908 -05146895 439.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33918 -05146896 439.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33918 -05146897 439.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33928 -05146898 439.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33928 -05146899 439.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33938 -05146900 439.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33938 -05146901 439.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33948 -05146902 439.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33948 -05146903 439.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33958 -05146904 439.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33958 -05146905 439.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33968 -05146906 439.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33968 -05146907 439.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33978 -05146908 439.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33978 -05146909 439.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33988 -05146910 439.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33988 -05146911 439.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33998 -05146912 439.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33998 -05146913 439.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -05146914 439.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -05146915 439.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -05146916 439.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -05146917 439.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -05146918 439.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -05146919 439.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -05146920 439.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -05146921 439.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e8 -05151687 439.50372314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced8 -05151688 439.50372314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced8 -05151689 439.50378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee8 -05151690 439.50378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee8 -05151691 439.50381470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef8 -05151692 439.50381470 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef8 -05151693 439.50387573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf08 -05151694 439.50387573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf08 -05151695 439.50387573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf18 -05151696 439.50387573 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf18 -05151697 439.50393677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf28 -05151698 439.50393677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf28 -05151699 439.50393677 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf38 -05151700 439.50396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf38 -05151701 439.50396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf48 -05151702 439.50396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf48 -05151703 439.50402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf58 -05151704 439.50402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf58 -05151705 439.50402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf68 -05151706 439.50402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf68 -05151707 439.50408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -05151708 439.50408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf78 -05151709 439.50408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -05151710 439.50408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf88 -05151711 439.50411987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -05151712 439.50411987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf98 -05151713 439.50411987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -05151714 439.50411987 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa8 -05151715 439.50418091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -05151716 439.50418091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfb8 -05151717 439.50418091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -05151718 439.50418091 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfc8 -05151719 439.50424194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -05151720 439.50424194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfd8 -05151721 439.50424194 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -05151722 439.50427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfe8 -05151723 439.50427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -05151724 439.50427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cff8 -05151725 439.50433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -05151726 439.50433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d008 -05151727 439.50433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -05151728 439.50433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d018 -05151729 439.50439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -05151730 439.50439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d028 -05157773 439.59384155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d08 -05157774 439.59384155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d08 -05157775 439.59384155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d18 -05157776 439.59384155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d18 -05157777 439.59387207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d28 -05157778 439.59387207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d28 -05157779 439.59393311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d38 -05157780 439.59393311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d38 -05157781 439.59393311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d48 -05157782 439.59393311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d48 -05157783 439.59399414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d58 -05157784 439.59399414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d58 -05157785 439.59399414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d68 -05157786 439.59399414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d68 -05157787 439.59402466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d78 -05157788 439.59402466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d78 -05157789 439.59402466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d88 -05157790 439.59402466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d88 -05157791 439.59408569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d98 -05157792 439.59408569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d98 -05157793 439.59408569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da8 -05157794 439.59408569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48da8 -05157795 439.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db8 -05157796 439.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48db8 -05157797 439.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc8 -05157798 439.59414673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dc8 -05157799 439.59417725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd8 -05157800 439.59417725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48dd8 -05157801 439.59423828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de8 -05157802 439.59423828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48de8 -05157803 439.59423828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df8 -05157804 439.59423828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48df8 -05157805 439.59429932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e08 -05157806 439.59429932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e08 -05157807 439.59429932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e18 -05157808 439.59429932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e18 -05157809 439.59432983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e28 -05157810 439.59432983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e28 -05157811 439.59432983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e38 -05157812 439.59432983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e38 -05157813 439.59439087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e48 -05157814 439.59439087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e48 -05157815 439.59439087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e58 -05157816 439.59439087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e58 -05162907 439.72863770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05162908 439.72863770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05162909 439.72863770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05162910 439.72863770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05162911 439.72869873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05162912 439.72869873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05162913 439.72869873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05162914 439.72869873 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05162915 439.72872925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05162916 439.72872925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05162917 439.72872925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05162918 439.72879028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05162919 439.72879028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05162920 439.72879028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05162921 439.72885132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05162922 439.72885132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05162923 439.72885132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05162924 439.72885132 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05162925 439.72888184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05162926 439.72888184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05162927 439.72888184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05162928 439.72888184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05162929 439.72894287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05162930 439.72894287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05162931 439.72894287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05162932 439.72894287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05162933 439.72900391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05162934 439.72900391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05162935 439.72900391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05162936 439.72900391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05162937 439.72903442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05162938 439.72903442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05162939 439.72909546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05162940 439.72909546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05162941 439.72909546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05162942 439.72909546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05162943 439.72915649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05162944 439.72915649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05162945 439.72915649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05162946 439.72915649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05162947 439.72921753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05162948 439.72921753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05162949 439.72921753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05162950 439.72921753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05177454 439.93524170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -05177455 439.93524170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d0 -05177456 439.93527222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -05177457 439.93527222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e0 -05177458 439.93527222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -05177459 439.93527222 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f0 -05177460 439.93533325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -05177461 439.93533325 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d700 -05177462 439.93539429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -05177463 439.93539429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d710 -05177464 439.93539429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -05177465 439.93539429 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d720 -05177466 439.93542480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -05177467 439.93542480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d730 -05177468 439.93542480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -05177469 439.93542480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d740 -05177470 439.93548584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -05177471 439.93548584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d750 -05177472 439.93548584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -05177473 439.93548584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d760 -05177474 439.93554688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -05177475 439.93554688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d770 -05177476 439.93554688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -05177477 439.93554688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d780 -05177478 439.93557739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -05177479 439.93557739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d790 -05177480 439.93557739 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -05177481 439.93563843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a0 -05177482 439.93563843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -05177483 439.93563843 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b0 -05177484 439.93569946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -05177485 439.93569946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c0 -05177486 439.93569946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -05177487 439.93569946 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d0 -05177488 439.93572998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -05177489 439.93572998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e0 -05177490 439.93572998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -05177491 439.93572998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f0 -05177492 439.93579102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -05177493 439.93579102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d800 -05177494 439.93579102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -05177495 439.93579102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d810 -05177496 439.93585205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -05177497 439.93585205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d820 -05182358 440.00982666 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -05182359 440.00982666 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27010 -05182360 440.00982666 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -05182361 440.00982666 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27020 -05182362 440.00988770 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -05182363 440.00988770 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27030 -05182364 440.00988770 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -05182365 440.00988770 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27040 -05182366 440.00991821 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -05182367 440.00991821 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27050 -05182368 440.00991821 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -05182369 440.00997925 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27060 -05182370 440.00997925 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -05182371 440.00997925 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27070 -05182372 440.01004028 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -05182373 440.01004028 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27080 -05182374 440.01004028 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -05182375 440.01004028 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27090 -05182376 440.01010132 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -05182377 440.01010132 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270a0 -05182378 440.01010132 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -05182379 440.01010132 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270b0 -05182380 440.01013184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -05182381 440.01013184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -05182382 440.01013184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -05182383 440.01013184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -05182384 440.01019287 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -05182385 440.01019287 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -05182386 440.01019287 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -05182387 440.01019287 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -05182388 440.01025391 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -05182389 440.01025391 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -05182390 440.01028442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -05182391 440.01028442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -05182392 440.01028442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -05182393 440.01028442 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -05182394 440.01034546 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -05182395 440.01034546 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -05182396 440.01034546 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -05182397 440.01034546 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -05182398 440.01040649 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -05182399 440.01040649 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -05182400 440.01040649 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -05182401 440.01040649 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -05188718 440.09951782 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -05188719 440.09951782 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -05188720 440.09957886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -05188721 440.09957886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -05188722 440.09957886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -05188723 440.09957886 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -05188724 440.09963989 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -05188725 440.09963989 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -05188726 440.09970093 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -05188727 440.09970093 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -05188728 440.09970093 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -05188729 440.09970093 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -05188730 440.09973145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -05188731 440.09973145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -05188732 440.09973145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -05188733 440.09973145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -05188734 440.09979248 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -05188735 440.09979248 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -05188736 440.09979248 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -05188737 440.09979248 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -05188738 440.09985352 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -05188739 440.09985352 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33770 -05188740 440.09985352 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -05188741 440.09985352 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33780 -05188742 440.09988403 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -05188743 440.09988403 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33790 -05188744 440.09988403 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -05188745 440.09994507 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a0 -05188746 440.09994507 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -05188747 440.09994507 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b0 -05188748 440.10000610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -05188749 440.10000610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337c0 -05188750 440.10000610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -05188751 440.10000610 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337d0 -05188752 440.10003662 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -05188753 440.10003662 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337e0 -05188754 440.10003662 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -05188755 440.10003662 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x337f0 -05188756 440.10009766 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -05188757 440.10009766 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33800 -05188758 440.10009766 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -05188759 440.10009766 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33810 -05188760 440.10015869 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -05188761 440.10015869 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x33820 -05194954 440.18811035 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -05194955 440.18811035 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9b0 -05194956 440.18817139 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -05194957 440.18817139 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9c0 -05194958 440.18817139 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -05194959 440.18817139 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9d0 -05194960 440.18820190 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -05194961 440.18820190 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9e0 -05194962 440.18820190 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -05194963 440.18820190 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f9f0 -05194964 440.18826294 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -05194965 440.18826294 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa00 -05194966 440.18826294 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -05194967 440.18826294 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -05194968 440.18832397 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -05194969 440.18832397 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -05194970 440.18832397 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -05194971 440.18832397 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -05194972 440.18835449 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -05194973 440.18835449 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -05194974 440.18841553 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -05194975 440.18841553 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -05194976 440.18841553 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -05194977 440.18841553 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -05194978 440.18847656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -05194979 440.18847656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -05194980 440.18847656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -05194981 440.18847656 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -05194982 440.18850708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -05194983 440.18850708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -05194984 440.18850708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -05194985 440.18850708 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -05194986 440.18856812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -05194987 440.18856812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -05194988 440.18856812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -05194989 440.18856812 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -05194990 440.18862915 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -05194991 440.18862915 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -05194992 440.18862915 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -05194993 440.18865967 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -05194994 440.18865967 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -05194995 440.18865967 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -05194996 440.18872070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -05194997 440.18872070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -05204802 441.16107178 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05204803 441.18124390 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05204804 441.18124390 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05204805 442.17681885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05204806 442.17687988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05204807 442.17687988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05204808 442.17691040 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05204809 442.17703247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05204810 442.17703247 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05204811 442.17706299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05204812 442.17712402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05204813 442.92327881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05204814 442.92327881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05204815 442.92327881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05204816 442.92327881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05204817 442.92330933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05204818 442.92330933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05204819 442.92330933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05204820 442.92330933 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05204821 442.92337036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05204822 442.92337036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05204823 442.92337036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05204824 442.92337036 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05204825 442.92343140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05204826 442.92343140 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05204827 442.92346191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05204828 442.92346191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05204829 442.92346191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05204830 442.92346191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05204831 442.92352295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05204832 442.92352295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05204833 442.92352295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05204834 442.92352295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05204835 442.92358398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05204836 442.92358398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05204837 442.92358398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05204838 442.92358398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05204839 442.92361450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05204840 442.92361450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05204841 442.92361450 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05204842 442.92367554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05204843 442.92367554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05204844 442.92367554 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05204845 442.92373657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05204846 442.92373657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05204847 442.92373657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05204848 442.92373657 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05204849 442.92376709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05204850 442.92376709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05204851 442.92376709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05204852 442.92376709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05204853 442.92382813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05204854 442.92382813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05204855 442.92382813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05204856 442.92382813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05204857 442.92388916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05204858 442.92388916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05204859 442.92388916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05204860 442.92388916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05204861 442.92391968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05204862 442.92391968 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05204863 442.92398071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05204864 442.92398071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05204865 442.92398071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05204866 442.92398071 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05204867 442.92404175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05204868 442.92404175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05204869 442.92404175 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05204870 442.92407227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05204871 442.92407227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05204872 442.92407227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05204873 442.92413330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05204874 442.92413330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05204875 442.92413330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05204876 442.92413330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05204877 442.92419434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05204878 442.92419434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05204879 442.92422485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05204880 442.92422485 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05204881 442.92428589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05204882 442.92428589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05204883 442.92428589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05204884 442.92428589 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05204885 442.92434692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05204886 442.92434692 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05204887 442.92437744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05204888 442.92437744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05204889 442.92437744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05204890 442.92437744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05204891 442.92443848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05204892 442.92443848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05204893 442.92443848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05204894 442.92443848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05204895 442.92449951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05204896 442.92449951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05204897 442.92449951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05204898 442.92449951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05204899 442.92453003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05204900 442.92453003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05204901 442.92453003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05204902 442.92453003 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05204903 442.92459106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05204904 442.92459106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05204905 442.92459106 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05204906 442.92465210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05204907 442.92465210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05204908 442.92465210 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05204909 442.92468262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05204910 442.92468262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05204911 442.92468262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05204912 442.92468262 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05204913 442.92474365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05204914 442.92474365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05204915 442.92474365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05204916 442.92474365 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05204917 442.92480469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05204918 442.92480469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05204919 442.92480469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05204920 442.92480469 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05204921 442.92486572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05204922 442.92486572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05204923 442.92486572 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05204924 442.92489624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05204925 442.92489624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05204926 442.92489624 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05204927 442.92495728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05204928 442.92495728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05204929 442.92495728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05204930 442.92495728 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05204931 442.92501831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05204932 442.92501831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05204933 442.92501831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05204934 442.92501831 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05204935 442.92504883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05204936 442.92504883 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05204937 442.92510986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05204938 442.92510986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05204939 442.92510986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05204940 442.92510986 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05204941 442.92517090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05204942 442.92517090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05204943 442.92517090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05204944 442.92517090 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05204945 442.92520142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05204946 442.92520142 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05204947 442.92526245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05204948 442.92526245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05204949 442.92526245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05204950 442.92526245 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05204951 442.92532349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05204952 442.92532349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05204953 442.92532349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05204954 442.92532349 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05204955 442.92535400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05204956 442.92535400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05204957 442.92535400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05204958 442.92535400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05204959 442.92541504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05204960 442.92541504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05204961 442.92541504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05204962 442.92541504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05204963 442.92547607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05204964 442.92547607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05204965 442.92550659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05204966 442.92550659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05204967 442.92550659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05204968 442.92550659 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05204969 442.92556763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05204970 442.92556763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05204971 442.92556763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05204972 442.92556763 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05204973 442.92562866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05204974 442.92562866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05204975 442.92562866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05204976 442.92562866 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05204977 442.92565918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05204978 442.92565918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05204979 442.92565918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05204980 442.92565918 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05204981 442.92572021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05204982 442.92572021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05204983 442.92572021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05204984 442.92578125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05204985 442.92578125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05204986 442.92578125 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05204987 442.92581177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05204988 442.92581177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05204989 442.92581177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05204990 442.92581177 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05204991 442.92587280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05204992 442.92587280 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05204993 442.92593384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05204994 442.92593384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05204995 442.92593384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05204996 442.92593384 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05204997 442.92596436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05204998 442.92596436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05204999 442.92596436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05205000 442.92596436 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05205001 442.92602539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05205002 442.92602539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05205003 442.92602539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05205004 442.92602539 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05205005 442.92608643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05205006 442.92608643 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05205007 442.92611694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05205008 442.92611694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05205009 442.92611694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05205010 442.92611694 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05205011 442.92617798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05205012 442.92617798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05205013 442.92617798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05205014 442.92617798 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05205015 442.92623901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05205016 442.92623901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05205017 442.92623901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05205018 442.92623901 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05205019 442.92630005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05205020 442.92630005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05205021 442.92630005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05205022 442.92630005 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05205023 442.92633057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05205024 442.92633057 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05205025 442.92639160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05205026 442.92639160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05205027 442.92639160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05205028 442.92639160 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05205029 442.92645264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05205030 442.92645264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05205031 442.92645264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05205032 442.92645264 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05205033 442.92648315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05205034 442.92648315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05205035 442.92648315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05205036 442.92648315 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05205037 442.92654419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05205038 442.92654419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05205039 442.92654419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05205040 442.92654419 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05205041 442.92660522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05205042 442.92660522 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05205043 442.92663574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05205044 442.92663574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05205045 442.92663574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05205046 442.92663574 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05205047 442.92669678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05205048 442.92669678 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05205049 442.92675781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05205050 442.92675781 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05205051 442.92678833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05205052 442.92678833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05205053 442.92678833 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05205054 442.92684937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05205055 442.92684937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05205056 442.92684937 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05205057 442.92691040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05205058 442.92691040 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05205059 442.92700195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05205060 442.92700195 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05205061 442.92706299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05205062 442.92706299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05205063 442.92706299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05205064 442.92706299 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05205065 442.92709351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05205066 442.92709351 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05205067 442.92715454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05205068 442.92715454 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05205069 442.92721558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05205070 442.92721558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05205071 442.92721558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05205072 442.92721558 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05205073 442.92724609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05205074 442.92724609 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05205075 442.92730713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05205076 442.92730713 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05205077 442.92736816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05205078 442.92736816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05205079 442.92736816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05205080 442.92736816 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05205081 442.92739868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05205082 442.92739868 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05205083 442.92745972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05205084 442.92745972 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05205085 442.92752075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05205086 442.92752075 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05205087 442.92755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05205088 442.92755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05205089 442.92755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05205090 442.92755127 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05205091 442.92761230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05205092 442.92761230 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05205093 442.92767334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05205094 442.92767334 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05205095 442.92770386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05205096 442.92770386 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05205097 442.92776489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05205098 442.92776489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05205099 442.92776489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05205100 442.92776489 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05205101 442.92782593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05205102 442.92782593 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05205103 442.92788696 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05205104 442.92788696 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05205105 442.92791748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05205106 442.92791748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05205107 442.92791748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05205108 442.92791748 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05205109 442.92797852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05205110 442.92797852 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05205111 442.92803955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05205112 442.92803955 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05205113 442.92807007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05205114 442.92807007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05205115 442.92807007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05205116 442.92807007 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05205117 442.92813110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05205118 442.92813110 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05205119 442.92819214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05205120 442.92819214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05205121 442.92819214 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05205122 442.92822266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05205123 442.92822266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05205124 442.92822266 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05205125 442.92828369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05205126 442.92828369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05205127 442.92828369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05205128 442.92828369 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05205129 442.92834473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05205130 442.92834473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05205131 442.92834473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05205132 442.92834473 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05205133 442.92837524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05205134 442.92837524 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05205135 442.92843628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05205136 442.92843628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05205137 442.92843628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05205138 442.92843628 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05205139 442.92849731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05205140 442.92849731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05205141 442.92849731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05205142 442.92849731 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05205143 442.92852783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05205144 442.92852783 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05205145 442.92858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05205146 442.92858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05205147 442.92858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05205148 442.92858887 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05205149 442.92864990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05205150 442.92864990 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05205151 442.92868042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05205152 442.92868042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05205153 442.92868042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05205154 442.92868042 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05205155 442.92874146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05205156 442.92874146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05205157 442.92880249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05205158 442.92880249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05205159 442.92880249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05205160 442.92880249 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05205161 442.92883301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05205162 442.92883301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05205163 442.92883301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05205164 442.92883301 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05205165 442.92889404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05205166 442.92889404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05205167 442.92889404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05205168 442.92889404 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05205169 442.92895508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05205170 442.92895508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05205171 442.92895508 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05205172 442.92898560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05205173 442.92898560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05205174 442.92898560 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05205175 442.92904663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05205176 442.92904663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05205177 442.92904663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05205178 442.92904663 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05205179 442.92910767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05205180 442.92910767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05205181 442.92910767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05205182 442.92910767 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05205183 442.92913818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05205184 442.92913818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05205185 442.92913818 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05205186 442.92919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05205187 442.92919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05205188 442.92919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05205189 442.92926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05205190 442.92926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05205191 442.92926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05205192 442.92926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05205193 442.92929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05205194 442.92929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05205195 442.92929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05205196 442.92929077 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05205197 442.92935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05205198 442.92935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05205199 442.92935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05205200 442.92935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05205201 442.92941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05205202 442.92941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05205203 442.92947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05205204 442.92947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05205205 442.92947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05205206 442.92947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05205207 442.92950439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05205208 442.92950439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05205209 442.92950439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05205210 442.92950439 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05205211 442.92956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05205212 442.92956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05205213 442.92956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05205214 442.92956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05205215 442.92962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05205216 442.92962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05205217 442.92965698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05205218 442.92965698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05205219 442.92965698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05205220 442.92965698 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05205221 442.92971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05205222 442.92971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05205223 442.92971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05205224 442.92971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05205225 442.92977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05205226 442.92977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05205227 442.92977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05205228 442.92977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05205229 442.92980957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05205230 442.92980957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05205231 442.92980957 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05205232 442.92987061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05205233 442.92987061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05205234 442.92987061 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05205235 442.92993164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05205236 442.92993164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05205237 442.92993164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05205238 442.92993164 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05205239 442.92996216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05205240 442.92996216 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05205241 442.93002319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05205242 442.93002319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05205243 442.93002319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05205244 442.93002319 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05205245 442.93008423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05205246 442.93008423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05205247 442.93008423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05205248 442.93008423 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05205249 442.93011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05205250 442.93011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05205251 442.93011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05205252 442.93011475 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05205253 442.93017578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05205254 442.93017578 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05205255 442.93023682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05205256 442.93023682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05205257 442.93023682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05205258 442.93023682 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05205259 442.93026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05205260 442.93026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05205261 442.93026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05205262 442.93026733 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05205263 442.93032837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05205264 442.93032837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05205265 442.93032837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05205266 442.93032837 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05205267 442.93038940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05205268 442.93038940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05205269 442.93038940 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05205270 442.93041992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05205271 442.93041992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05205272 442.93041992 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05205273 442.93048096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05205274 442.93048096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05205275 442.93048096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05205276 442.93048096 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05205277 442.93054199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05205278 442.93054199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05205279 442.93054199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05205280 442.93054199 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05205281 442.93057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05205282 442.93057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05205283 442.93057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05205284 442.93057251 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05205285 442.93063354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05205286 442.93063354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05205287 442.93063354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05205288 442.93063354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05205289 442.93069458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05205290 442.93069458 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05205291 442.93072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05205292 442.93072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05205293 442.93072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05205294 442.93072510 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05205295 442.93078613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05205296 442.93078613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05205297 442.93078613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05205298 442.93078613 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05205299 442.93084717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05205300 442.93084717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05205301 442.93084717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05205302 442.93084717 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05205303 442.93087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05205304 442.93087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05205305 442.93087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05205306 442.93087769 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05205307 442.93093872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05205308 442.93093872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05205309 442.93093872 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05205310 442.93099976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05205311 442.93099976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05205312 442.93099976 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05205313 442.93106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05205314 442.93106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05205315 442.93106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05205316 442.93106079 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05205317 442.93109131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05205318 442.93109131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05205319 442.93109131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05205320 442.93109131 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05205321 442.93115234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05205322 442.93115234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05205323 442.93115234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05205324 442.93115234 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05205325 442.93121338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05205326 442.93121338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05205327 442.93121338 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05205328 442.93124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05205329 442.93124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05205330 442.93124390 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05205331 442.93130493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05205332 442.93130493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05205333 442.93130493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05205334 442.93130493 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05205335 442.93136597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05205336 442.93136597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05205337 442.93136597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05205338 442.93136597 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05205339 442.93139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05205340 442.93139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05205341 442.93139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05205342 442.93139648 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05205343 442.93145752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05205344 442.93145752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05205345 442.93145752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05205346 442.93145752 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05205347 442.93151855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05205348 442.93151855 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05205349 442.93154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05205350 442.93154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05205351 442.93154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05205352 442.93154907 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05205353 442.93161011 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05205354 442.93167114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05205355 442.93167114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05205356 442.93167114 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05205357 442.93170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05205358 442.93170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05205359 442.93170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05205360 442.93170166 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05205361 442.93176270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05205362 442.93176270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05205363 442.93176270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05205364 442.93176270 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05205365 442.93182373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05205366 442.93182373 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05205367 442.93185425 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05205368 442.93191528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05205369 442.93191528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05205370 442.93191528 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05205371 442.93197632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05205372 442.93197632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05205373 442.93197632 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05205374 442.93200684 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05205375 442.93206787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05205376 442.93206787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05205377 442.93206787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05205378 442.93206787 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05205379 442.93212891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05205380 442.93212891 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05205381 442.93215942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05205382 442.93215942 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05205383 442.93222046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05205384 442.93222046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05205385 442.93222046 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05205386 442.93228149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05205387 442.93228149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05205388 442.93228149 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05205389 442.93231201 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05205390 442.93237305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05205391 442.93237305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05205392 442.93237305 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05205393 442.93243408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05205394 442.93243408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05205395 442.93243408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05205396 442.93243408 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05205397 442.93252563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05205398 442.93252563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05205399 442.93252563 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05205400 442.93258667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05205401 442.93258667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05205402 442.93258667 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05205403 442.93264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05205404 442.93264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05205405 442.93264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05205406 442.93264771 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05205407 442.93267822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05205408 442.93267822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05205409 442.93267822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05205410 442.93267822 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05205411 442.93273926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05205412 442.93273926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05205413 442.93273926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05205414 442.93273926 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05205415 442.93280029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05205416 442.93280029 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05205417 442.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05205418 442.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05205419 442.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05205420 442.93283081 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05205421 442.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05205422 442.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05205423 442.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05205424 442.93289185 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05205425 442.93295288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05205426 442.93295288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05205427 442.93295288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05205428 442.93295288 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05205429 442.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05205430 442.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05205431 442.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05205432 442.93298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05205433 442.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05205434 442.93304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05205435 442.93310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05205436 442.93310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05205437 442.93310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05205438 442.93310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05205439 442.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05205440 442.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05205441 442.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05205442 442.93313599 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05205443 442.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05205444 442.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05205445 442.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05205446 442.93319702 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05205447 442.93325806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05205448 442.93325806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05205449 442.93325806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05205450 442.93325806 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05205451 442.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05205452 442.93328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05205453 442.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05205454 442.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05205455 442.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05205456 442.93334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05205457 442.93341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05205458 442.93341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05205459 442.93341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05205460 442.93341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05205461 442.93344116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05205462 442.93344116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05205463 442.93344116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05205464 442.93344116 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05205465 442.93350220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05205466 442.93350220 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05205467 442.93356323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05205468 442.93356323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05205469 442.93356323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05205470 442.93356323 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05205471 442.93359375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05205472 442.93359375 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05205473 442.93365479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05205474 442.93365479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05205475 442.93365479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05205476 442.93365479 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05205477 442.93371582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05205478 442.93371582 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05205479 442.93374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05205480 442.93374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05205481 442.93374634 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05205482 442.93380737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05205483 442.93380737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05205484 442.93380737 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05205485 442.93386841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05205486 442.93386841 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05205487 442.93389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05205488 442.93389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05205489 442.93389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05205490 442.93389893 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05205491 442.93395996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05205492 442.93395996 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05205493 442.93402100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05205494 442.93402100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05205495 442.93402100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05205496 442.93402100 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05205497 442.93408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05205498 442.93408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05205499 442.93408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05205500 442.93408203 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05205501 442.93411255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05205502 442.93411255 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05205503 442.93417358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05205504 442.93417358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05205505 442.93417358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05205506 442.93417358 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05205507 442.93423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05205508 442.93423462 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05205509 442.93426514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05205510 442.93426514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05205511 442.93426514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05205512 442.93426514 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05205513 442.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05205514 442.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05205515 442.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05205516 442.93432617 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05205517 442.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05205518 442.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05205519 442.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05205520 442.93438721 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05205521 442.93441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05205522 442.93441772 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05205523 442.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05205524 442.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05205525 442.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05205526 442.93447876 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05205527 442.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05205528 442.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05205529 442.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05205530 442.93453979 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05205531 442.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05205532 442.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05205533 442.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05205534 442.93457031 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05205535 442.93463135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05205536 442.93463135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05205537 442.93463135 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05205538 442.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05205539 442.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05205540 442.93469238 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05205541 442.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05205542 442.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05205543 442.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05205544 442.93472290 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05205545 442.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05205546 442.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05205547 442.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05205548 442.93478394 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05205549 442.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05205550 442.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05205551 442.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05205552 442.93484497 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05205553 442.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05205554 442.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05205555 442.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05205556 442.93487549 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05205557 442.93493652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05205558 442.93493652 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05205559 442.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05205560 442.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05205561 442.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05205562 442.93499756 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05205563 442.93502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05205564 442.93502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05205565 442.93502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05205566 442.93502808 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05205567 442.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05205568 442.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05205569 442.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05205570 442.93508911 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05205571 442.93515015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05205572 442.93515015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05205573 442.93515015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05205574 442.93515015 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05205575 442.93518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05205576 442.93518066 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05205577 442.93524170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05205578 442.93524170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05205579 442.93524170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05205580 442.93524170 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05205581 442.93530273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05205582 442.93530273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05205583 442.93530273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05205584 442.93530273 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05205585 442.93533325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05205586 442.93533325 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05205587 442.93539429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05205588 442.93539429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05205589 442.93539429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05205590 442.93539429 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05205591 442.93545532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05205592 442.93545532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05205593 442.93545532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05205594 442.93545532 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05205595 442.93548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05205596 442.93548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05205597 442.93548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05205598 442.93548584 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05205599 442.93554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05205600 442.93554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05205601 442.93554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05205602 442.93554688 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05205603 442.93560791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05205604 442.93560791 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05205605 442.93566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05205606 442.93566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05205607 442.93566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05205608 442.93566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05205609 442.93569946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05205610 442.93569946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05205611 442.93569946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05205612 442.93569946 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05205613 442.93576050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05205614 442.93576050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05205615 442.93576050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05205616 442.93576050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05205617 442.93582153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05205618 442.93582153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05205619 442.93582153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05205620 442.93582153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05205621 442.93585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05205622 442.93585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05205623 442.93585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05205624 442.93591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05205625 442.93591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05205626 442.93591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05205627 442.93597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05205628 442.93597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05205629 442.93597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05205630 442.93597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05205631 442.93600464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05205632 442.93600464 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05205633 442.93606567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05205634 442.93606567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05205635 442.93606567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05205636 442.93606567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05205637 442.93612671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05205638 442.93612671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05205639 442.93615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05205640 442.93615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05205641 442.93615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05205642 442.93615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05205643 442.93621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05205644 442.93621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05205645 442.93627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05205646 442.93627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05205647 442.93630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05205648 442.93630981 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05205649 442.93637085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05205650 442.93637085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05205651 442.93637085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05205652 442.93637085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05205653 442.93643188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05205654 442.93643188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05205655 442.93646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05205656 442.93646240 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05205657 442.93652344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05205658 442.93652344 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05205659 442.93658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05205660 442.93658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05205661 442.93658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05205662 442.93658447 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05205663 442.93661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05205664 442.93661499 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05205665 442.93667603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05205666 442.93667603 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05205667 442.93673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05205668 442.93673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05205669 442.93673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05205670 442.93673706 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05205671 442.93676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05205672 442.93676758 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05205673 442.93682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05205674 442.93682861 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05205675 442.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05205676 442.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05205677 442.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05205678 442.93688965 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05205679 442.93692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05205680 442.93692017 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05205681 442.93698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05205682 442.93698120 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05205683 442.93704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05205684 442.93704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05205685 442.93704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05205686 442.93704224 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05205687 442.93707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05205688 442.93707275 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05205689 442.93713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05205690 442.93713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05205691 442.93713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05205692 442.93713379 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05205693 442.93719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05205694 442.93719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05205695 442.93719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05205696 442.93719482 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05205697 442.93725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05205698 442.93725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05205699 442.93725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05205700 442.93725586 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05205701 442.93728638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05205702 442.93728638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05205703 442.93728638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05205704 442.93728638 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05205705 442.93734741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05205706 442.93734741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05205707 442.93734741 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05205708 442.93740845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05205709 442.93740845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05205710 442.93740845 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05205711 442.93743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05205712 442.93743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05205713 442.93743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05205714 442.93743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05205715 442.93750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05205716 442.93750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05205717 442.93756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05205718 442.93756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05205719 442.93756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05205720 442.93756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05205721 442.93759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05205722 442.93759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05205723 442.93759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05205724 442.93759155 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05205725 442.93765259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05205726 442.93765259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05205727 442.93765259 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05205728 442.93771362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05205729 442.93771362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05205730 442.93771362 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05205731 442.93774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05205732 442.93774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05205733 442.93774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05205734 442.93774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05205735 442.93780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05205736 442.93780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05205737 442.93780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05205738 442.93780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05205739 442.93786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05205740 442.93786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05205741 442.93786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05205742 442.93786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05205743 442.93789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05205744 442.93789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05205745 442.93789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05205746 442.93789673 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05205747 442.93795776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05205748 442.93795776 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05205749 442.93801880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05205750 442.93801880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05205751 442.93801880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05205752 442.93801880 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05205753 442.93804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05205754 442.93804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05205755 442.93804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05205756 442.93804932 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05205757 442.93811035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05205758 442.93811035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05205759 442.93811035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05205760 442.93811035 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05205761 442.93817139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05205762 442.93817139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05205763 442.93817139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05205764 442.93817139 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05205765 442.93820190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05205766 442.93820190 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05205767 442.93826294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05205768 442.93826294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05205769 442.93826294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05205770 442.93826294 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05205771 442.93832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05205772 442.93832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05205773 442.93832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05205774 442.93832397 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05205775 442.93835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05205776 442.93835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05205777 442.93835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05205778 442.93835449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05205779 442.93841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05205780 442.93841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05205781 442.93841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05205782 442.93841553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05205783 442.93847656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05205784 442.93847656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05205785 442.93847656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05205786 442.93850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05205787 442.93850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05205788 442.93850708 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05205789 442.93856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05205790 442.93856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05205791 442.93856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05205792 442.93856812 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05205793 442.93862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05205794 442.93862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05205795 442.93862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05205796 442.93862915 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05205797 442.93869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05205798 442.93869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05205799 442.93869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05205800 442.93869019 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05205801 442.93872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05205802 442.93872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05205803 442.93872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05205804 442.93872070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05205805 442.93878174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05205806 442.93878174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05205807 442.93884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05205808 442.93884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05205809 442.93884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05205810 442.93884277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05205811 442.93887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05205812 442.93887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05205813 442.93887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05205814 442.93887329 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05205815 442.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05205816 442.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05205817 442.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05205818 442.93893433 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05205819 442.93899536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05205820 442.93899536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05205821 442.93899536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05205822 442.93899536 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05205823 442.93902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05205824 442.93902588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05205825 442.93908691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05205826 442.93908691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05205827 442.93908691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05205828 442.93908691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05205829 442.93914795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05205830 442.93914795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05205831 442.93914795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05205832 442.93914795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05205833 442.93917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05205834 442.93917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05205835 442.93917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05205836 442.93917847 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05205837 442.93923950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05205838 442.93923950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05205839 442.93923950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05205840 442.93923950 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05205841 442.93930054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05205842 442.93930054 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05205843 442.93933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05205844 442.93933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05205845 442.93933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05205846 442.93933105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05205847 442.93939209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05205848 442.93939209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05205849 442.93939209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05205850 442.93939209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05205851 442.93945313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05205852 442.93945313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05205853 442.93945313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05205854 442.93945313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05205855 442.93948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05205856 442.93948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05205857 442.93948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05205858 442.93948364 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05205859 442.93960571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05205860 442.93960571 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05205861 442.93963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05205862 442.93963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05205863 442.93963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05205864 442.93963623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05205865 442.93969727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05205866 442.93969727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05205867 442.93969727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05205868 442.93969727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05205869 442.93975830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05205870 442.93975830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05205871 442.93975830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05205872 442.93975830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05205873 442.93978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05205874 442.93978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05205875 442.93978882 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05205876 442.93984985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05205877 442.93984985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05205878 442.93984985 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05205879 442.93991089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05205880 442.93991089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05205881 442.93991089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05205882 442.93991089 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05205883 442.93994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05205884 442.93994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05205885 442.93994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05205886 442.93994141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05205887 442.94000244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05205888 442.94000244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05205889 442.94000244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05205890 442.94000244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05205891 442.94006348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05205892 442.94006348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05205893 442.94006348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05205894 442.94006348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05205895 442.94009399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05205896 442.94009399 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05205897 442.94015503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05205898 442.94015503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05205899 442.94015503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05205900 442.94015503 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05205901 442.94021606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05205902 442.94021606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05205903 442.94021606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05205904 442.94021606 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05205905 442.94027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05205906 442.94027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05205907 442.94027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05205908 442.94027710 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05205909 442.94030762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05205910 442.94030762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05205911 442.94030762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05205912 442.94030762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05205913 442.94036865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05205914 442.94036865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05205915 442.94036865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05205916 442.94042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05205917 442.94042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05205918 442.94042969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05205919 442.94046021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05205920 442.94046021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05205921 442.94046021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05205922 442.94046021 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05205923 442.94052124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05205924 442.94052124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05205925 442.94052124 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05205926 442.94058228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05205927 442.94058228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05205928 442.94058228 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05205929 442.94061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05205930 442.94061279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05205931 442.94067383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05205932 442.94067383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05205933 442.94067383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05205934 442.94073486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05205935 442.94073486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05205936 442.94073486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05205937 442.94076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05205938 442.94076538 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05205939 442.94082642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05205940 442.94082642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05205941 442.94082642 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05205942 442.94088745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05205943 442.94088745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05205944 442.94088745 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05205945 442.94091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05205946 442.94091797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05210583 443.00988770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -05210584 443.00988770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc498 -05210585 443.00988770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -05210586 443.00988770 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4a8 -05210587 443.00994873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -05210588 443.00994873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4b8 -05210589 443.00994873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -05210590 443.00994873 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4c8 -05210591 443.01000977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -05210592 443.01000977 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4d8 -05210593 443.01004028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -05210594 443.01004028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4e8 -05210595 443.01004028 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -05210596 443.01010132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc4f8 -05210597 443.01010132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -05210598 443.01010132 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc508 -05210599 443.01016235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -05210600 443.01016235 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc518 -05210601 443.01019287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -05210602 443.01019287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc528 -05210603 443.01019287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -05210604 443.01019287 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc538 -05210605 443.01025391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -05210606 443.01025391 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc548 -05210607 443.01031494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -05210608 443.01031494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc558 -05210609 443.01031494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -05210610 443.01031494 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc568 -05210611 443.01034546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -05210612 443.01034546 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc578 -05210613 443.01040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -05210614 443.01040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc588 -05210615 443.01040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -05210616 443.01040649 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc598 -05210617 443.01046753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -05210618 443.01046753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5a8 -05210619 443.01046753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -05210620 443.01046753 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5b8 -05210621 443.01049805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -05210622 443.01049805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5c8 -05210623 443.01049805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -05210624 443.01049805 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5d8 -05210625 443.01055908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -05210626 443.01055908 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0xc5e8 -05216042 443.09197998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f28 -05216043 443.09201050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -05216044 443.09201050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -05216045 443.09201050 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -05216046 443.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -05216047 443.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -05216048 443.09207153 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -05216049 443.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -05216050 443.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -05216051 443.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -05216052 443.09213257 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -05216053 443.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f88 -05216054 443.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f88 -05216055 443.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05216056 443.09216309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05216057 443.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05216058 443.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05216059 443.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05216060 443.09222412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05216061 443.09228516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05216062 443.09228516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05216063 443.09228516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05216064 443.09231567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05216065 443.09231567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05216066 443.09231567 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05216067 443.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05216068 443.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05216069 443.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05216070 443.09237671 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05216071 443.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05216072 443.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05216073 443.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05216074 443.09243774 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05216075 443.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -05216076 443.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -05216077 443.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -05216078 443.09246826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -05216079 443.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -05216080 443.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -05216081 443.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -05216082 443.09252930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -05216083 443.09259033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -05216084 443.09259033 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -05216085 443.09262085 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -05221857 443.17919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -05221858 443.17919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -05221859 443.17919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -05221860 443.17919922 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -05221861 443.17926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -05221862 443.17926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -05221863 443.17926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -05221864 443.17926025 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -05221865 443.17932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -05221866 443.17932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -05221867 443.17932129 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -05221868 443.17935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -05221869 443.17935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -05221870 443.17935181 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -05221871 443.17941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -05221872 443.17941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -05221873 443.17941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -05221874 443.17941284 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -05221875 443.17947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -05221876 443.17947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -05221877 443.17947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -05221878 443.17947388 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -05221879 443.17953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -05221880 443.17953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -05221881 443.17953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -05221882 443.17953491 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -05221883 443.17956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -05221884 443.17956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -05221885 443.17956543 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -05221886 443.17962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -05221887 443.17962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -05221888 443.17962646 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -05221889 443.17968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e8 -05221890 443.17968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e8 -05221891 443.17968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f8 -05221892 443.17968750 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f8 -05221893 443.17971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22608 -05221894 443.17971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22608 -05221895 443.17971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22618 -05221896 443.17971802 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22618 -05221897 443.17977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22628 -05221898 443.17977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22628 -05221899 443.17977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22638 -05221900 443.17977905 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x22638 -05239270 443.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f8 -05239271 443.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x444f8 -05239272 443.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44508 -05239273 443.43417358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44508 -05239274 443.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44518 -05239275 443.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44518 -05239276 443.43423462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44528 -05239277 443.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44528 -05239278 443.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44538 -05239279 443.43429565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44538 -05239280 443.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44548 -05239281 443.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44548 -05239282 443.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44558 -05239283 443.43435669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44558 -05239284 443.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44568 -05239285 443.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44568 -05239286 443.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44578 -05239287 443.43438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44578 -05239288 443.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44588 -05239289 443.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44588 -05239290 443.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44598 -05239291 443.43444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44598 -05239292 443.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a8 -05239293 443.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445a8 -05239294 443.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b8 -05239295 443.43450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445b8 -05239296 443.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c8 -05239297 443.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445c8 -05239298 443.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d8 -05239299 443.43453979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445d8 -05239300 443.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e8 -05239301 443.43460083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445e8 -05239302 443.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f8 -05239303 443.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x445f8 -05239304 443.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44608 -05239305 443.43466187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44608 -05239306 443.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44618 -05239307 443.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44618 -05239308 443.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44628 -05239309 443.43469238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44628 -05239310 443.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44638 -05239311 443.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44638 -05239312 443.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44648 -05239313 443.43475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44648 -05244132 443.50561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -05244133 443.50561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dce8 -05244134 443.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -05244135 443.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dcf8 -05244136 443.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -05244137 443.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd08 -05244138 443.50570679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -05244139 443.50570679 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd18 -05244140 443.50576782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -05244141 443.50576782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd28 -05244142 443.50576782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -05244143 443.50576782 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd38 -05244144 443.50582886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -05244145 443.50582886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd48 -05244146 443.50582886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -05244147 443.50582886 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd58 -05244148 443.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -05244149 443.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd68 -05244150 443.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -05244151 443.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd78 -05244152 443.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -05244153 443.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd88 -05244154 443.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -05244155 443.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd98 -05244156 443.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -05244157 443.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dda8 -05244158 443.50601196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -05244159 443.50601196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddb8 -05244160 443.50601196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -05244161 443.50601196 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddc8 -05244162 443.50607300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -05244163 443.50607300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddd8 -05244164 443.50607300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -05244165 443.50607300 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dde8 -05244166 443.50613403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -05244167 443.50613403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ddf8 -05244168 443.50613403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -05244169 443.50613403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de08 -05244170 443.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -05244171 443.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de18 -05244172 443.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -05244173 443.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de28 -05244174 443.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de38 -05244175 443.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de38 -05246702 444.68438721 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246703 444.68444824 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246704 444.68447876 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246705 444.68447876 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05246706 444.68460083 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246707 444.68460083 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05246708 444.68463135 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246709 444.68469238 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05246710 444.74389648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05246711 444.74450684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05246712 445.20535278 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05246713 445.22512817 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246714 445.22512817 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246715 447.19058228 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246716 447.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246717 447.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246718 447.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05246719 447.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246720 447.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05246721 447.19082642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05246722 447.19082642 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05246723 447.22656250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05246724 447.24560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246725 447.24560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05246726 448.54388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05246727 448.54394531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05246728 448.54394531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05246729 448.54394531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05246730 448.54400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05246731 448.54400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05246732 448.54400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05246733 448.54400635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05246734 448.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05246735 448.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05246736 448.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05246737 448.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05246738 448.54409790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05246739 448.54409790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05246740 448.54409790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05246741 448.54415894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05246742 448.54415894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05246743 448.54415894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05246744 448.54421997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05246745 448.54421997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05246746 448.54421997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05246747 448.54421997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05246748 448.54425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05246749 448.54425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05246750 448.54425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05246751 448.54425049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05246752 448.54431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05246753 448.54431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05246754 448.54431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05246755 448.54431152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05246756 448.54437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05246757 448.54437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05246758 448.54437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05246759 448.54437256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05246760 448.54440308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05246761 448.54440308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05246762 448.54440308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05246763 448.54440308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05246764 448.54446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05246765 448.54446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05246766 448.54446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05246767 448.54446411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05246768 448.54452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05246769 448.54452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05246770 448.54452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05246771 448.54452515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05246772 448.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05246773 448.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05246774 448.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05246775 448.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05246776 448.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05246777 448.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05246778 448.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05246779 448.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05246780 448.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05246781 448.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05246782 448.54470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05246783 448.54470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05246784 448.54470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05246785 448.54470825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05246786 448.54476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05246787 448.54476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05246788 448.54476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05246789 448.54476929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05246790 448.54483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05246791 448.54483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05246792 448.54483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05246793 448.54483032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05246794 448.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05246795 448.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05246796 448.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05246797 448.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05246798 448.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05246799 448.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05246800 448.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05246801 448.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05246802 448.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05246803 448.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05246804 448.54501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05246805 448.54501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05246806 448.54501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05246807 448.54501343 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05246808 448.54507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05246809 448.54507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05246810 448.54507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05246811 448.54507446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05246812 448.54513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05246813 448.54513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05246814 448.54513550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05246815 448.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05246816 448.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05246817 448.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05246818 448.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05246819 448.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05246820 448.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05246821 448.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05246822 448.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05246823 448.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05246824 448.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05246825 448.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05246826 448.54531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05246827 448.54531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05246828 448.54531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05246829 448.54531860 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05246830 448.54537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05246831 448.54537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05246832 448.54537964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05246833 448.54544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05246834 448.54544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05246835 448.54544067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05246836 448.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05246837 448.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05246838 448.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05246839 448.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05246840 448.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05246841 448.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05246842 448.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05246843 448.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05246844 448.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05246845 448.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05246846 448.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05246847 448.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05246848 448.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05246849 448.54562378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05246850 448.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05246851 448.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05246852 448.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05246853 448.54568481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05246854 448.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05246855 448.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05246856 448.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05246857 448.54574585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05246858 448.54580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05246859 448.54580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05246860 448.54580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05246861 448.54580688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05246862 448.54583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05246863 448.54583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05246864 448.54583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05246865 448.54583740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05246866 448.54589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05246867 448.54589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05246868 448.54589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05246869 448.54589844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05246870 448.54595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05246871 448.54595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05246872 448.54595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05246873 448.54595947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05246874 448.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05246875 448.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05246876 448.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05246877 448.54598999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05246878 448.54605103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05246879 448.54605103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05246880 448.54605103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05246881 448.54611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05246882 448.54611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05246883 448.54611206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05246884 448.54614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05246885 448.54614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05246886 448.54614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05246887 448.54614258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05246888 448.54620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05246889 448.54620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05246890 448.54620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05246891 448.54620361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05246892 448.54626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05246893 448.54626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05246894 448.54626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05246895 448.54626465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05246896 448.54629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05246897 448.54629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05246898 448.54629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05246899 448.54629517 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05246900 448.54635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05246901 448.54635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05246902 448.54635620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05246903 448.54641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05246904 448.54641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05246905 448.54641724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05246906 448.54644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05246907 448.54644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05246908 448.54644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05246909 448.54644775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05246910 448.54650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05246911 448.54650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05246912 448.54650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05246913 448.54650879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05246914 448.54656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05246915 448.54656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05246916 448.54656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05246917 448.54656982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05246918 448.54660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05246919 448.54660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05246920 448.54660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05246921 448.54660034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05246922 448.54666138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05246923 448.54666138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05246924 448.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05246925 448.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05246926 448.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05246927 448.54672241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05246928 448.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05246929 448.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05246930 448.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05246931 448.54675293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05246932 448.54681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05246933 448.54681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05246934 448.54681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05246935 448.54681396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05246936 448.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05246937 448.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05246938 448.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05246939 448.54687500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05246940 448.54690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05246941 448.54690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05246942 448.54690552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05246943 448.54696655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05246944 448.54696655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05246945 448.54696655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05246946 448.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05246947 448.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05246948 448.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05246949 448.54702759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05246950 448.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05246951 448.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05246952 448.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05246953 448.54705811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05246954 448.54711914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05246955 448.54711914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05246956 448.54718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05246957 448.54718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05246958 448.54718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05246959 448.54718018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05246960 448.54721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05246961 448.54721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05246962 448.54721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05246963 448.54721069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05246964 448.54727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05246965 448.54727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05246966 448.54727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05246967 448.54727173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05246968 448.54733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05246969 448.54733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05246970 448.54733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05246971 448.54733276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05246972 448.54739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05246973 448.54739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05246974 448.54739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05246975 448.54739380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05246976 448.54742432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05246977 448.54742432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05246978 448.54742432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05246979 448.54748535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05246980 448.54748535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05246981 448.54748535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05246982 448.54754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05246983 448.54754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05246984 448.54754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05246985 448.54754639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05246986 448.54757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05246987 448.54757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05246988 448.54757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05246989 448.54757690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05246990 448.54763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05246991 448.54763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05246992 448.54763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05246993 448.54763794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05246994 448.54769897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05246995 448.54769897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05246996 448.54769897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05246997 448.54772949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05246998 448.54772949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05246999 448.54772949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05247000 448.54779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05247001 448.54779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05247002 448.54779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05247003 448.54779053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05247004 448.54785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05247005 448.54785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05247006 448.54785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05247007 448.54785156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05247008 448.54788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05247009 448.54788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05247010 448.54788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05247011 448.54788208 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05247012 448.54794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05247013 448.54794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05247014 448.54794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05247015 448.54794312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05247016 448.54800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05247017 448.54800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05247018 448.54800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05247019 448.54800415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05247020 448.54803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05247021 448.54803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05247022 448.54803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05247023 448.54803467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05247024 448.54809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05247025 448.54809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05247026 448.54809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05247027 448.54809570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05247028 448.54815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05247029 448.54815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05247030 448.54815674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05247031 448.54818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05247032 448.54818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05247033 448.54818726 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05247034 448.54824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05247035 448.54824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05247036 448.54824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05247037 448.54824829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05247038 448.54830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05247039 448.54830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05247040 448.54830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05247041 448.54830933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05247042 448.54833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05247043 448.54833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05247044 448.54833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05247045 448.54833984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05247046 448.54840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05247047 448.54840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05247048 448.54840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05247049 448.54840088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05247050 448.54846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05247051 448.54846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05247052 448.54846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05247053 448.54846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05247054 448.54849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05247055 448.54849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05247056 448.54849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05247057 448.54849243 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05247058 448.54855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05247059 448.54855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05247060 448.54855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05247061 448.54855347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05247062 448.54861450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05247063 448.54861450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05247064 448.54861450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05247065 448.54864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05247066 448.54864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05247067 448.54864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05247068 448.54870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05247069 448.54870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05247070 448.54870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05247071 448.54870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05247072 448.54876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05247073 448.54876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05247074 448.54876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05247075 448.54876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05247076 448.54879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05247077 448.54879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05247078 448.54879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05247079 448.54879761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05247080 448.54885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05247081 448.54885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05247082 448.54885864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05247083 448.54891968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05247084 448.54891968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05247085 448.54891968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05247086 448.54898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05247087 448.54898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05247088 448.54898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05247089 448.54898071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05247090 448.54901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05247091 448.54901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05247092 448.54901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05247093 448.54901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05247094 448.54907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05247095 448.54907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05247096 448.54907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05247097 448.54907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05247098 448.54913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05247099 448.54913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05247100 448.54916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05247101 448.54916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05247102 448.54916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05247103 448.54916382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05247104 448.54922485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05247105 448.54922485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05247106 448.54922485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05247107 448.54928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05247108 448.54928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05247109 448.54928589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05247110 448.54931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05247111 448.54931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05247112 448.54931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05247113 448.54937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05247114 448.54937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05247115 448.54937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05247116 448.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05247117 448.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05247118 448.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05247119 448.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05247120 448.54946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05247121 448.54946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05247122 448.54946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05247123 448.54946899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05247124 448.54953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05247125 448.54953003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05247126 448.54959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05247127 448.54959106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05247128 448.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05247129 448.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05247130 448.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05247131 448.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05247132 448.54968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05247133 448.54968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05247134 448.54968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05247135 448.54968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05247136 448.54974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05247137 448.54974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05247138 448.54974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05247139 448.54974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05247140 448.54983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05247141 448.54983521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05247142 448.54989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05247143 448.54989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05247144 448.54989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05247145 448.54989624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05247146 448.54992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05247147 448.54992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05247148 448.54998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05247149 448.54998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05247150 448.54998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05247151 448.54998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05247152 448.55004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05247153 448.55004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05247154 448.55004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05247155 448.55004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05247156 448.55007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05247157 448.55007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05247158 448.55007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05247159 448.55007935 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05247160 448.55014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05247161 448.55014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05247162 448.55014038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05247163 448.55020142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05247164 448.55020142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05247165 448.55023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05247166 448.55023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05247167 448.55023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05247168 448.55029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05247169 448.55029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05247170 448.55035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05247171 448.55035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05247172 448.55035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05247173 448.55035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05247174 448.55041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05247175 448.55041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05247176 448.55041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05247177 448.55041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05247178 448.55044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05247179 448.55044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05247180 448.55044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05247181 448.55044556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05247182 448.55050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05247183 448.55050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05247184 448.55050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05247185 448.55050659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05247186 448.55056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05247187 448.55056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05247188 448.55056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05247189 448.55056763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05247190 448.55059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05247191 448.55059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05247192 448.55059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05247193 448.55059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05247194 448.55065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05247195 448.55065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05247196 448.55065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05247197 448.55065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05247198 448.55072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05247199 448.55072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05247200 448.55072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05247201 448.55075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05247202 448.55075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05247203 448.55075073 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05247204 448.55081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05247205 448.55081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05247206 448.55081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05247207 448.55081177 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05247208 448.55087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05247209 448.55087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05247210 448.55087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05247211 448.55087280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05247212 448.55090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05247213 448.55090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05247214 448.55090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05247215 448.55090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05247216 448.55096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05247217 448.55096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05247218 448.55096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05247219 448.55096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05247220 448.55102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05247221 448.55102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05247222 448.55102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05247223 448.55102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05247224 448.55105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05247225 448.55105591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05247226 448.55111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05247227 448.55111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05247228 448.55111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05247229 448.55111694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05247230 448.55117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05247231 448.55117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05247232 448.55117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05247233 448.55117798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05247234 448.55120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05247235 448.55120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05247236 448.55120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05247237 448.55120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05247238 448.55126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05247239 448.55126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05247240 448.55126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05247241 448.55126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05247242 448.55133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05247243 448.55133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05247244 448.55133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05247245 448.55133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05247246 448.55136108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05247247 448.55136108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05247248 448.55142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05247249 448.55142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05247250 448.55142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05247251 448.55142212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05247252 448.55148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05247253 448.55148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05247254 448.55148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05247255 448.55148315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05247256 448.55151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05247257 448.55151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05247258 448.55151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05247259 448.55151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05247260 448.55157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05247261 448.55157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05247262 448.55157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05247263 448.55157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05247264 448.55163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05247265 448.55163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05247266 448.55163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05247267 448.55166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05247268 448.55166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05247269 448.55166626 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05247270 448.55172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05247271 448.55172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05247272 448.55172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05247273 448.55172729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05247274 448.55178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05247275 448.55178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05247276 448.55178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05247277 448.55178833 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05247278 448.55181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05247279 448.55181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05247280 448.55181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05247281 448.55187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05247282 448.55187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05247283 448.55187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05247284 448.55194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05247285 448.55194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05247286 448.55194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05247287 448.55194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05247288 448.55200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05247289 448.55200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05247290 448.55200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05247291 448.55200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05247292 448.55203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05247293 448.55203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05247294 448.55203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05247295 448.55203247 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05247296 448.55209351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05247297 448.55209351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05247298 448.55215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05247299 448.55215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05247300 448.55215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05247301 448.55215454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05247302 448.55218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05247303 448.55218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05247304 448.55218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05247305 448.55218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05247306 448.55224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05247307 448.55224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05247308 448.55224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05247309 448.55224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05247310 448.55230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05247311 448.55230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05247312 448.55230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05247313 448.55230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05247314 448.55233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05247315 448.55233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05247316 448.55233765 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05247317 448.55239868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05247318 448.55239868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05247319 448.55239868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05247320 448.55245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05247321 448.55245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05247322 448.55245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05247323 448.55245972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05247324 448.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05247325 448.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05247326 448.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05247327 448.55249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05247328 448.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05247329 448.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05247330 448.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05247331 448.55255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05247332 448.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05247333 448.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05247334 448.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05247335 448.55261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05247336 448.55264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05247337 448.55264282 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05247338 448.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05247339 448.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05247340 448.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05247341 448.55270386 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05247342 448.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05247343 448.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05247344 448.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05247345 448.55276489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05247346 448.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05247347 448.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05247348 448.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05247349 448.55279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05247350 448.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05247351 448.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05247352 448.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05247353 448.55285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05247354 448.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05247355 448.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05247356 448.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05247357 448.55291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05247358 448.55294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05247359 448.55294800 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05247360 448.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05247361 448.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05247362 448.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05247363 448.55300903 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05247364 448.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05247365 448.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05247366 448.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05247367 448.55307007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05247368 448.55310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05247369 448.55310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05247370 448.55310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05247371 448.55310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05247372 448.55316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05247373 448.55316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05247374 448.55316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05247375 448.55316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05247376 448.55322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05247377 448.55322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05247378 448.55322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05247379 448.55322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05247380 448.55325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05247381 448.55325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05247382 448.55325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05247383 448.55325317 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05247384 448.55331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05247385 448.55331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05247386 448.55331421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05247387 448.55337524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05247388 448.55337524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05247389 448.55337524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05247390 448.55340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05247391 448.55340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05247392 448.55340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05247393 448.55340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05247394 448.55346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05247395 448.55346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05247396 448.55346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05247397 448.55346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05247398 448.55352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05247399 448.55352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05247400 448.55352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05247401 448.55352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05247402 448.55358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05247403 448.55358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05247404 448.55358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05247405 448.55358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05247406 448.55361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05247407 448.55361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05247408 448.55361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05247409 448.55361938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05247410 448.55368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05247411 448.55368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05247412 448.55368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05247413 448.55368042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05247414 448.55374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05247415 448.55374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05247416 448.55374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05247417 448.55374146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05247418 448.55377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05247419 448.55377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05247420 448.55377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05247421 448.55377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05247422 448.55383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05247423 448.55383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05247424 448.55383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05247425 448.55389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05247426 448.55389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05247427 448.55389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05247428 448.55392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05247429 448.55392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05247430 448.55392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05247431 448.55392456 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05247432 448.55398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05247433 448.55398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05247434 448.55398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05247435 448.55398560 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05247436 448.55404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05247437 448.55404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05247438 448.55404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05247439 448.55404663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05247440 448.55407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05247441 448.55407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05247442 448.55407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05247443 448.55407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05247444 448.55413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05247445 448.55413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05247446 448.55413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05247447 448.55419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05247448 448.55419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05247449 448.55419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05247450 448.55422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05247451 448.55422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05247452 448.55422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05247453 448.55422974 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05247454 448.55429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05247455 448.55429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05247456 448.55429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05247457 448.55429077 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05247458 448.55435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05247459 448.55435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05247460 448.55435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05247461 448.55435181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05247462 448.55438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05247463 448.55438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05247464 448.55438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05247465 448.55438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05247466 448.55444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05247467 448.55444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05247468 448.55444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05247469 448.55444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05247470 448.55450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05247471 448.55450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05247472 448.55450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05247473 448.55450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05247474 448.55453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05247475 448.55453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05247476 448.55453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05247477 448.55453491 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05247478 448.55459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05247479 448.55459595 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05247480 448.55465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05247481 448.55465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05247482 448.55465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05247483 448.55465698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05247484 448.55468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05247485 448.55468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05247486 448.55468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05247487 448.55468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05247488 448.55474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05247489 448.55474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05247490 448.55474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05247491 448.55474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05247492 448.55480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05247493 448.55480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05247494 448.55480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05247495 448.55480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05247496 448.55484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05247497 448.55484009 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05247498 448.55490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05247499 448.55490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05247500 448.55490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05247501 448.55490112 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05247502 448.55496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05247503 448.55496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05247504 448.55496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05247505 448.55496216 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05247506 448.55502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05247507 448.55502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05247508 448.55502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05247509 448.55502319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05247510 448.55505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05247511 448.55505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05247512 448.55505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05247513 448.55505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05247514 448.55511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05247515 448.55511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05247516 448.55511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05247517 448.55511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05247518 448.55517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05247519 448.55517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05247520 448.55517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05247521 448.55517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05247522 448.55520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05247523 448.55520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05247524 448.55520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05247525 448.55520630 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05247526 448.55526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05247527 448.55526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05247528 448.55526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05247529 448.55526733 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05247530 448.55532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05247531 448.55532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05247532 448.55532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05247533 448.55532837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05247534 448.55535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05247535 448.55535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05247536 448.55535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05247537 448.55541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05247538 448.55541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05247539 448.55541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05247540 448.55548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05247541 448.55548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05247542 448.55548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05247543 448.55548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05247544 448.55551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05247545 448.55551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05247546 448.55551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05247547 448.55551147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05247548 448.55557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05247549 448.55557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05247550 448.55557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05247551 448.55557251 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05247552 448.55563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05247553 448.55563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05247554 448.55563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05247555 448.55563354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05247556 448.55566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05247557 448.55566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05247558 448.55566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05247559 448.55566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05247560 448.55572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05247561 448.55572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05247562 448.55572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05247563 448.55578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05247564 448.55578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05247565 448.55578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05247566 448.55581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05247567 448.55581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05247568 448.55581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05247569 448.55581665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05247570 448.55587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05247571 448.55587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05247572 448.55587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05247573 448.55587769 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05247574 448.55593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05247575 448.55593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05247576 448.55593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05247577 448.55593872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05247578 448.55596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05247579 448.55596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05247580 448.55596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05247581 448.55596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05247582 448.55603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05247583 448.55603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05247584 448.55603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05247585 448.55609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05247586 448.55609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05247587 448.55609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05247588 448.55612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05247589 448.55612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05247590 448.55612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05247591 448.55612183 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05247592 448.55618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05247593 448.55618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05247594 448.55618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05247595 448.55618286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05247596 448.55624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05247597 448.55624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05247598 448.55624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05247599 448.55624390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05247600 448.55627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05247601 448.55627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05247602 448.55627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05247603 448.55627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05247604 448.55633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05247605 448.55633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05247606 448.55639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05247607 448.55639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05247608 448.55639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05247609 448.55639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05247610 448.55642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05247611 448.55642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05247612 448.55642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05247613 448.55642700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05247614 448.55648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05247615 448.55648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05247616 448.55648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05247617 448.55648804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05247618 448.55654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05247619 448.55654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05247620 448.55654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05247621 448.55654907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05247622 448.55661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05247623 448.55661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05247624 448.55661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05247625 448.55661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05247626 448.55664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05247627 448.55664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05247628 448.55664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05247629 448.55664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05247630 448.55670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05247631 448.55670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05247632 448.55670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05247633 448.55676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05247634 448.55676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05247635 448.55676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05247636 448.55679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05247637 448.55679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05247638 448.55679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05247639 448.55679321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05247640 448.55685425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05247641 448.55685425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05247642 448.55685425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05247643 448.55685425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05247644 448.55691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05247645 448.55691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05247646 448.55691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05247647 448.55691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05247648 448.55694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05247649 448.55694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05247650 448.55694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05247651 448.55694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05247652 448.55700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05247653 448.55700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05247654 448.55700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05247655 448.55700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05247656 448.55706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05247657 448.55706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05247658 448.55706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05247659 448.55706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05247660 448.55709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05247661 448.55709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05247662 448.55709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05247663 448.55709839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05247664 448.55715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05247665 448.55715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05247666 448.55715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05247667 448.55715942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05247668 448.55722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05247669 448.55722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05247670 448.55722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05247671 448.55722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05247672 448.55725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05247673 448.55725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05247674 448.55725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05247675 448.55725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05247676 448.55731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05247677 448.55731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05247678 448.55731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05247679 448.55737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05247680 448.55737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05247681 448.55737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05247682 448.55740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05247683 448.55740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05247684 448.55740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05247685 448.55740356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05247686 448.55746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05247687 448.55746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05247688 448.55746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05247689 448.55746460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05247690 448.55752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05247691 448.55752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05247692 448.55752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05247693 448.55752563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05247694 448.55755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05247695 448.55755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05247696 448.55755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05247697 448.55755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05247698 448.55761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05247699 448.55761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05247700 448.55761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05247701 448.55761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05247702 448.55767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05247703 448.55767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05247704 448.55767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05247705 448.55767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05247706 448.55770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05247707 448.55770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05247708 448.55770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05247709 448.55770874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05247710 448.55776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05247711 448.55776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05247712 448.55776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05247713 448.55776978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05247714 448.55783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05247715 448.55783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05247716 448.55783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05247717 448.55783081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05247718 448.55786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05247719 448.55786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05247720 448.55792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05247721 448.55792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05247722 448.55792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05247723 448.55792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05247724 448.55798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05247725 448.55798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05247726 448.55798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05247727 448.55798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05247728 448.55801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05247729 448.55801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05247730 448.55801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05247731 448.55801392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05247732 448.55807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05247733 448.55807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05247734 448.55807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05247735 448.55807495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05247736 448.55813599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05247737 448.55813599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05247738 448.55819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05247739 448.55819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05247740 448.55819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05247741 448.55819702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05247742 448.55822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05247743 448.55822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05247744 448.55828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05247745 448.55828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05247746 448.55828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05247747 448.55828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05247748 448.55834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05247749 448.55834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05247750 448.55834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05247751 448.55834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05247752 448.55838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05247753 448.55838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05247754 448.55838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05247755 448.55838013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05247756 448.55844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05247757 448.55844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05247758 448.55844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05247759 448.55844116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05247760 448.55850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05247761 448.55850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05247762 448.55850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05247763 448.55850220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05247764 448.55853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05247765 448.55853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05247766 448.55853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05247767 448.55859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05247768 448.55859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05247769 448.55859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05247770 448.55865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05247771 448.55865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05247772 448.55865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05247773 448.55865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05247774 448.55868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05247775 448.55868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05247776 448.55868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05247777 448.55868530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05247778 448.55874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05247779 448.55874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05247780 448.55874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05247781 448.55874634 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05247782 448.55880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05247783 448.55880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05247784 448.55880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05247785 448.55880737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05247786 448.55883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05247787 448.55883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05247788 448.55889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05247789 448.55889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05247790 448.55889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05247791 448.55889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05247792 448.55895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05247793 448.55895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05247794 448.55895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05247795 448.55895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05247796 448.55899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05247797 448.55899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05247798 448.55899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05247799 448.55899048 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05247800 448.55905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05247801 448.55905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05247802 448.55905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05247803 448.55905151 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05247804 448.55911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05247805 448.55911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05247806 448.55911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05247807 448.55911255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05247808 448.55914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05247809 448.55914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05247810 448.55920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05247811 448.55920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05247812 448.55920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05247813 448.55920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05247814 448.55926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05247815 448.55926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05247816 448.55926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05247817 448.55926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05247818 448.55929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05247819 448.55929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05247820 448.55929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05247821 448.55929565 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05247822 448.55935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05247823 448.55935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05247824 448.55935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05247825 448.55935669 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05247826 448.55941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05247827 448.55941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05247828 448.55941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05247829 448.55941772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05247830 448.55944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05247831 448.55944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05247832 448.55950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05247833 448.55950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05247834 448.55950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05247835 448.55950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05247836 448.55957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05247837 448.55957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05247838 448.55957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05247839 448.55957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05247840 448.55960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05247841 448.55960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05247842 448.55960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05247843 448.55960083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05247844 448.55966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05247845 448.55966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05247846 448.55966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05247847 448.55966187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05247848 448.55972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05247849 448.55972290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05247850 448.55978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05247851 448.55978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05247852 448.55978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05247853 448.55978394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05247854 448.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05247855 448.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05247856 448.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05247857 448.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05247858 448.55987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05247859 448.55987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05247860 448.55987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05247861 448.55987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05247862 448.55993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05247863 448.55993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05247864 448.55993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05247865 448.55993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05247866 448.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05247867 448.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05247868 448.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05247869 448.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05247870 448.56002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05247871 448.56002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05247872 448.56002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05247873 448.56002808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05247874 448.56008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05247875 448.56008911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05247876 448.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05247877 448.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05247878 448.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05247879 448.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05247880 448.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05247881 448.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05247882 448.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05247883 448.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05247884 448.56024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05247885 448.56024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05247886 448.56024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05247887 448.56024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05247888 448.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05247889 448.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05247890 448.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05247891 448.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05247892 448.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05247893 448.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05247894 448.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05247895 448.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05247896 448.56039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05247897 448.56039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05247898 448.56039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05247899 448.56039429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05247900 448.56042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05247901 448.56042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05247902 448.56042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05247903 448.56048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05247904 448.56048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05247905 448.56048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05247906 448.56054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05247907 448.56054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05247908 448.56054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05247909 448.56054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05247910 448.56057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05247911 448.56057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05247912 448.56057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05247913 448.56057739 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05247914 448.56063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05247915 448.56063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05247916 448.56063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05247917 448.56063843 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05247918 448.56069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05247919 448.56069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05247920 448.56069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05247921 448.56069946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05247922 448.56072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05247923 448.56072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05247924 448.56079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05247925 448.56079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05247926 448.56079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05247927 448.56079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05247928 448.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05247929 448.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05247930 448.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05247931 448.56085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05247932 448.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05247933 448.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05247934 448.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05247935 448.56088257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05247936 448.56094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05247937 448.56094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05247938 448.56094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05247939 448.56094360 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05247940 448.56100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05247941 448.56100464 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05247942 448.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05247943 448.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05247944 448.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05247945 448.56103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05247946 448.56109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05247947 448.56109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05247948 448.56109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05247949 448.56109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05247950 448.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05247951 448.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05247952 448.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05247953 448.56115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05247954 448.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05247955 448.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05247956 448.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05247957 448.56121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05247958 448.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05247959 448.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05247960 448.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05247961 448.56124878 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05247962 448.56130981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05247963 448.56130981 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05247964 448.56137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05247965 448.56137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05247966 448.56137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05247967 448.56137085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05247968 448.56140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05247969 448.56140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05247970 448.56140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05247971 448.56140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05247972 448.56146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05247973 448.56146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05247974 448.56146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05247975 448.56146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05247976 448.56152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05247977 448.56152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05247978 448.56152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05247979 448.56152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05247980 448.56155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05247981 448.56155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05247982 448.56155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05247983 448.56155396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05247984 448.56161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05247985 448.56161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05247986 448.56161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05247987 448.56161499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05247988 448.56167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05247989 448.56167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05247990 448.56167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05247991 448.56167603 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05247992 448.56170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05247993 448.56170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05247994 448.56170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05247995 448.56176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05247996 448.56176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05247997 448.56176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05247998 448.56182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05247999 448.56182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05248000 448.56182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05248001 448.56182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05248002 448.56185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05248003 448.56185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05248004 448.56185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05248005 448.56185913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05248006 448.56192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05248007 448.56192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05248008 448.56192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05248009 448.56192017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05248010 448.56198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05248011 448.56198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05248012 448.56198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05248013 448.56198120 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05248014 448.56201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05248015 448.56201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05248016 448.56201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05248017 448.56201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05248018 448.56207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05248019 448.56207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05248020 448.56207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05248021 448.56207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05248022 448.56213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05248023 448.56213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05248024 448.56213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05248025 448.56213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05248026 448.56216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05248027 448.56216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05248028 448.56216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05248029 448.56216431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05248030 448.56222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05248031 448.56222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05248032 448.56222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05248033 448.56222534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05248034 448.56228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05248035 448.56228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05248036 448.56228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05248037 448.56228638 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05248038 448.56231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05248039 448.56231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05248040 448.56231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05248041 448.56237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05248042 448.56237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05248043 448.56237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05248044 448.56243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05248045 448.56243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05248046 448.56243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05248047 448.56243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05248048 448.56246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05248049 448.56246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05248050 448.56246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05248051 448.56246948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05248052 448.56253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05248053 448.56253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05248054 448.56253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05248055 448.56253052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05248056 448.56259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05248057 448.56259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05248058 448.56259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05248059 448.56259155 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05248060 448.56262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05248061 448.56262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05248062 448.56262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05248063 448.56262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05248064 448.56268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05248065 448.56268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05248066 448.56268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05248067 448.56274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05248068 448.56274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05248069 448.56274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05248070 448.56280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05248071 448.56280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05248072 448.56280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05248073 448.56280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05248074 448.56283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05248075 448.56283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05248076 448.56283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05248077 448.56283569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05248078 448.56289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05248079 448.56289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05248080 448.56289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05248081 448.56289673 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05248082 448.56295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05248083 448.56295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05248084 448.56295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05248085 448.56295776 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05248086 448.56298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05248087 448.56298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05248088 448.56304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05248089 448.56304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05248090 448.56304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05248091 448.56304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05248092 448.56311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05248093 448.56311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05248094 448.56311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05248095 448.56311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05248096 448.56314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05248097 448.56314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05248098 448.56314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05248099 448.56314087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05248100 448.56320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05248101 448.56320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05248102 448.56320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05248103 448.56320190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05248104 448.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05248105 448.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05248106 448.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05248107 448.56326294 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05248108 448.56329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05248109 448.56329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05248110 448.56329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05248111 448.56329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05248112 448.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05248113 448.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05248114 448.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05248115 448.56335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05248116 448.56341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05248117 448.56341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05248118 448.56341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05248119 448.56341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05248120 448.56344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05248121 448.56344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05248122 448.56344604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05248123 448.56350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05248124 448.56350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05248125 448.56350708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05248126 448.56356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05248127 448.56356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05248128 448.56356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05248129 448.56356812 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05248130 448.56359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05248131 448.56359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05248132 448.56359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05248133 448.56359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05248134 448.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05248135 448.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05248136 448.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05248137 448.56365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05248138 448.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05248139 448.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05248140 448.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05248141 448.56375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05248142 448.56375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05248143 448.56375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05248144 448.56381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05248145 448.56381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05248146 448.56381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05248147 448.56381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05248148 448.56387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05248149 448.56387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05248150 448.56387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05248151 448.56387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05248152 448.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05248153 448.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05248154 448.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05248155 448.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05248156 448.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05248157 448.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05248158 448.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05248159 448.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05248160 448.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05248161 448.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05248162 448.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05248163 448.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05248164 448.56405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05248165 448.56405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05248166 448.56405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05248167 448.56411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05248168 448.56411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05248169 448.56411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05248170 448.56417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05248171 448.56417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05248172 448.56417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05248173 448.56417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05248174 448.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05248175 448.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05248176 448.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05248177 448.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05248178 448.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05248179 448.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05248180 448.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05248181 448.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05248182 448.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05248183 448.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05248184 448.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05248185 448.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05248186 448.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05248187 448.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05248188 448.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05248189 448.56439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05248190 448.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05248191 448.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05248192 448.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05248193 448.56442261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05248194 448.56448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05248195 448.56448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05248196 448.56448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05248197 448.56448364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05248198 448.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05248199 448.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05248200 448.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05248201 448.56454468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05248202 448.56457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05248203 448.56457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05248204 448.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05248205 448.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05248206 448.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05248207 448.56463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05248208 448.56469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05248209 448.56469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05248210 448.56469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05248211 448.56469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05248212 448.56472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05248213 448.56472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05248214 448.56472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05248215 448.56472778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05248216 448.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05248217 448.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05248218 448.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05248219 448.56478882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05248220 448.56484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05248221 448.56484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05248222 448.56484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05248223 448.56484985 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05248224 448.56488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05248225 448.56488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05248226 448.56494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05248227 448.56494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05248228 448.56494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05248229 448.56494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05248230 448.56500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05248231 448.56500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05248232 448.56500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05248233 448.56500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05248234 448.56503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05248235 448.56503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05248236 448.56503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05248237 448.56503296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05248238 448.56509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05248239 448.56509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05248240 448.56509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05248241 448.56509399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05248242 448.56515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05248243 448.56515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05248244 448.56515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05248245 448.56515503 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05248246 448.56518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05248247 448.56518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05248248 448.56524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05248249 448.56524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05248250 448.56524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05248251 448.56524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05248252 448.56530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05248253 448.56530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05248254 448.56530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05248255 448.56530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05248256 448.56533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05248257 448.56533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05248258 448.56533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05248259 448.56533813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05248260 448.56539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05248261 448.56539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05248262 448.56539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05248263 448.56539917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05248264 448.56546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05248265 448.56546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05248266 448.56546021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05248267 448.56549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05248268 448.56549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05248269 448.56549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05248270 448.56555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05248271 448.56555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05248272 448.56555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05248273 448.56555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05248274 448.56561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05248275 448.56561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05248276 448.56561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05248277 448.56561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05248278 448.56564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05248279 448.56564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05248280 448.56564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05248281 448.56564331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05248282 448.56570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05248283 448.56570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05248284 448.56570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05248285 448.56570435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05248286 448.56576538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05248287 448.56576538 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05248288 448.56582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05248289 448.56582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05248290 448.56582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05248291 448.56582642 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05248292 448.56585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05248293 448.56585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05248294 448.56585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05248295 448.56585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05248296 448.56591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05248297 448.56591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05248298 448.56591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05248299 448.56591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05248300 448.56597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05248301 448.56597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05248302 448.56597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05248303 448.56597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05248304 448.56600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05248305 448.56600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05248306 448.56600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05248307 448.56600952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05248308 448.56607056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05248309 448.56607056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05248310 448.56613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05248311 448.56613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05248312 448.56613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05248313 448.56613159 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05248314 448.56616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05248315 448.56616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05248316 448.56616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05248317 448.56616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05248318 448.56622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05248319 448.56622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05248320 448.56622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05248321 448.56622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05248322 448.56628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05248323 448.56628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05248324 448.56628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05248325 448.56628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05248326 448.56631470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05248327 448.56631470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05248328 448.56637573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05248329 448.56637573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05248330 448.56637573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05248331 448.56637573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05248332 448.56643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05248333 448.56643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05248334 448.56643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05248335 448.56643677 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05248336 448.56646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05248337 448.56646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05248338 448.56646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05248339 448.56646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05248340 448.56652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05248341 448.56652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05248342 448.56652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05248343 448.56652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05248344 448.56658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05248345 448.56658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05248346 448.56658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05248347 448.56661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05248348 448.56661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05248349 448.56661987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05248350 448.56668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05248351 448.56668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05248352 448.56668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05248353 448.56668091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05248354 448.56674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05248355 448.56674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05248356 448.56674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05248357 448.56674194 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05248358 448.56677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05248359 448.56677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05248360 448.56677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05248361 448.56677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05248362 448.56683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05248363 448.56683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05248364 448.56689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05248365 448.56689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05248366 448.56689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05248367 448.56689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05248368 448.56692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05248369 448.56692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05248370 448.56692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05248371 448.56692505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05248372 448.56698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05248373 448.56698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05248374 448.56698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05248375 448.56698608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05248376 448.56704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05248377 448.56704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05248378 448.56704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05248379 448.56704712 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05248380 448.56707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05248381 448.56707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05248382 448.56713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05248383 448.56713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05248384 448.56713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05248385 448.56713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05248386 448.56719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05248387 448.56719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05248388 448.56719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05248389 448.56719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05248390 448.56723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05248391 448.56723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05248392 448.56723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05248393 448.56723022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05248394 448.56729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05248395 448.56729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05248396 448.56729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05248397 448.56729126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05248398 448.56735229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05248399 448.56735229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05248400 448.56735229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05248401 448.56735229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05248402 448.56741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05248403 448.56741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05248404 448.56741333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05248405 448.56744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05248406 448.56744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05248407 448.56744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05248408 448.56750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05248409 448.56750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05248410 448.56750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05248411 448.56750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05248412 448.56756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05248413 448.56756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05248414 448.56756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05248415 448.56756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05248416 448.56759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05248417 448.56759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05248418 448.56759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05248419 448.56759644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05248420 448.56765747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05248421 448.56765747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05248422 448.56765747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05248423 448.56771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05248424 448.56771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05248425 448.56771851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05248426 448.56774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05248427 448.56774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05248428 448.56774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05248429 448.56774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05248430 448.56781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05248431 448.56781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05248432 448.56781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05248433 448.56781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05248434 448.56787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05248435 448.56787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05248436 448.56787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05248437 448.56787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05248438 448.56790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05248439 448.56790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05248440 448.56790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05248441 448.56790161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05248442 448.56796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05248443 448.56796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05248444 448.56796265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05248445 448.56802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05248446 448.56802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05248447 448.56802368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05248448 448.56805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05248449 448.56805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05248450 448.56805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05248451 448.56805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05248452 448.56811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05248453 448.56811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05248454 448.56811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05248455 448.56811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05248456 448.56817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05248457 448.56817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05248458 448.56817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05248459 448.56817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05248460 448.56820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05248461 448.56820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05248462 448.56820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05248463 448.56820679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05248464 448.56826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05248465 448.56826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05248466 448.56826782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05248467 448.56832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05248468 448.56832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05248469 448.56832886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05248470 448.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05248471 448.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05248472 448.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05248473 448.56835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05248474 448.56842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05248475 448.56842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05248476 448.56842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05248477 448.56842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05248478 448.56848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05248479 448.56848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05248480 448.56848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05248481 448.56848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05248482 448.56851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05248483 448.56851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05248484 448.56851196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05248485 448.56857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05248486 448.56857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05248487 448.56857300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05248488 448.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05248489 448.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05248490 448.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05248491 448.56863403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05248492 448.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05248493 448.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05248494 448.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05248495 448.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05248496 448.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05248497 448.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05248498 448.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05248499 448.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05248500 448.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05248501 448.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05248502 448.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05248503 448.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05248504 448.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05248505 448.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05248506 448.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05248507 448.56881714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05248508 448.56887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05248509 448.56887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05248510 448.56887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05248511 448.56887817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05248512 448.56893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05248513 448.56893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05248514 448.56893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05248515 448.56893921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05248516 448.56900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05248517 448.56900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05248518 448.56900024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05248519 448.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05248520 448.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05248521 448.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05248522 448.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05248523 448.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05248524 448.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05248525 448.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05248526 448.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05248527 448.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05248528 448.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05248529 448.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05248530 448.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05248531 448.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05248532 448.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05248533 448.56918335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05248534 448.56924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05248535 448.56924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05248536 448.56924438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05248537 448.56930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05248538 448.56930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05248539 448.56930542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05248540 448.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05248541 448.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05248542 448.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05248543 448.56933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05248544 448.56939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05248545 448.56939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05248546 448.56939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05248547 448.56939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05248548 448.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05248549 448.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05248550 448.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05248551 448.56945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05248552 448.56948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05248553 448.56948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05248554 448.56948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05248555 448.56948853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05248556 448.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05248557 448.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05248558 448.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05248559 448.56954956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05248560 448.56961060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05248561 448.56961060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05248562 448.56961060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05248563 448.56961060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05248564 448.56964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05248565 448.56964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05248566 448.56964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05248567 448.56970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05248568 448.56970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05248569 448.56970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05248570 448.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05248571 448.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05248572 448.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05248573 448.56976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05248574 448.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05248575 448.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05248576 448.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05248577 448.56979370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05248578 448.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05248579 448.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05248580 448.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05248581 448.56985474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05248582 448.56991577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05248583 448.56991577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05248584 448.56991577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05248585 448.56991577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05248586 448.56994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05248587 448.56994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05248588 448.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05248589 448.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05248590 448.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05248591 448.57000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05252260 448.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -05252261 448.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -05252262 448.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -05252263 448.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -05252264 448.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -05252265 448.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -05252266 448.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -05252267 448.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -05252268 448.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -05252269 448.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -05252270 448.62191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -05252271 448.62191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -05252272 448.62191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -05252273 448.62191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -05252274 448.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -05252275 448.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -05252276 448.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -05252277 448.62197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -05252278 448.62203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -05252279 448.62203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -05252280 448.62203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -05252281 448.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -05252282 448.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -05252283 448.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -05252284 448.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -05252285 448.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -05252286 448.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -05252287 448.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -05252288 448.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -05252289 448.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -05252290 448.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -05252291 448.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -05252292 448.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -05252293 448.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -05252294 448.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -05252295 448.62222290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -05252296 448.62228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -05252297 448.62228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -05252298 448.62228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -05252299 448.62228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -05252300 448.62234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -05252301 448.62234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -05252302 448.62234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -05252303 448.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -05257968 448.70159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05257969 448.70159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05257970 448.70159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05257971 448.70159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05257972 448.70162964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05257973 448.70162964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05257974 448.70162964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05257975 448.70169067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05257976 448.70169067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05257977 448.70169067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05257978 448.70175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05257979 448.70175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05257980 448.70175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05257981 448.70175171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05257982 448.70181274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05257983 448.70181274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05257984 448.70181274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05257985 448.70181274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05257986 448.70184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05257987 448.70184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05257988 448.70184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -05257989 448.70184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -05257990 448.70190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -05257991 448.70190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -05257992 448.70190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -05257993 448.70190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -05257994 448.70196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -05257995 448.70196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -05257996 448.70196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -05257997 448.70196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -05257998 448.70199585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -05257999 448.70199585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -05258000 448.70199585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -05258001 448.70199585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -05258002 448.70205688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -05258003 448.70205688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -05258004 448.70205688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -05258005 448.70211792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -05258006 448.70211792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -05258007 448.70211792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -05258008 448.70214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -05258009 448.70214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -05258010 448.70214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -05258011 448.70214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -05263758 448.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -05263759 448.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -05263760 448.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -05263761 448.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -05263762 448.78207397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -05263763 448.78207397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -05263764 448.78207397 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -05263765 448.78213501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -05263766 448.78213501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c8 -05263767 448.78213501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224c8 -05263768 448.78219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d8 -05263769 448.78219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224d8 -05263770 448.78219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -05263771 448.78219604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224e8 -05263772 448.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -05263773 448.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -05263774 448.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -05263775 448.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -05263776 448.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -05263777 448.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -05263778 448.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -05263779 448.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -05263780 448.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -05263781 448.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -05263782 448.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -05263783 448.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -05263784 448.78237915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -05263785 448.78237915 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -05263786 448.78244019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -05263787 448.78244019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -05263788 448.78244019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -05263789 448.78244019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -05263790 448.78250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -05263791 448.78250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -05263792 448.78250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -05263793 448.78250122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -05263794 448.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -05263795 448.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -05263796 448.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -05263797 448.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -05263798 448.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -05263799 448.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -05263800 448.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -05263801 448.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -05274986 448.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38368 -05274987 448.93899536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38368 -05274988 448.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38378 -05274989 448.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38378 -05274990 448.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38388 -05274991 448.93905640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38388 -05274992 448.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38398 -05274993 448.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38398 -05274994 448.93911743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a8 -05274995 448.93914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383a8 -05274996 448.93914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b8 -05274997 448.93914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383b8 -05274998 448.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c8 -05274999 448.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383c8 -05275000 448.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d8 -05275001 448.93920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383d8 -05275002 448.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e8 -05275003 448.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383e8 -05275004 448.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f8 -05275005 448.93927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x383f8 -05275006 448.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38408 -05275007 448.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38408 -05275008 448.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38418 -05275009 448.93930054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38418 -05275010 448.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38428 -05275011 448.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38428 -05275012 448.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38438 -05275013 448.93936157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38438 -05275014 448.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38448 -05275015 448.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38448 -05275016 448.93942261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38458 -05275017 448.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38458 -05275018 448.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38468 -05275019 448.93948364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38468 -05275020 448.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38478 -05275021 448.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38478 -05275022 448.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38488 -05275023 448.93951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38488 -05275024 448.93957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38498 -05275025 448.93957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38498 -05275026 448.93957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a8 -05275027 448.93957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x384a8 -05275028 448.93963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b8 -05275029 448.93963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x384b8 -05279206 448.99746704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40748 -05279207 448.99746704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40748 -05279208 448.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40758 -05279209 448.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40758 -05279210 448.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40768 -05279211 448.99752808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40768 -05279212 448.99758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40778 -05279213 448.99758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40778 -05279214 448.99758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40788 -05279215 448.99758911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40788 -05279216 448.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40798 -05279217 448.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40798 -05279218 448.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a8 -05279219 448.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407a8 -05279220 448.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b8 -05279221 448.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407b8 -05279222 448.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c8 -05279223 448.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407c8 -05279224 448.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d8 -05279225 448.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407d8 -05279226 448.99777222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e8 -05279227 448.99777222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407e8 -05279228 448.99777222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f8 -05279229 448.99777222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x407f8 -05279230 448.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40808 -05279231 448.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40808 -05279232 448.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40818 -05279233 448.99783325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40818 -05279234 448.99789429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40828 -05279235 448.99789429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40828 -05279236 448.99789429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40838 -05279237 448.99789429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40838 -05279238 448.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40848 -05279239 448.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40848 -05279240 448.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40858 -05279241 448.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40858 -05279242 448.99798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -05279243 448.99798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40868 -05279244 448.99798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -05279245 448.99804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40878 -05279246 448.99804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -05279247 448.99804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40888 -05279248 448.99810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -05279249 448.99810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40898 -05283422 449.05661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -05283423 449.05661011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -05283424 449.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -05283425 449.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -05283426 449.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -05283427 449.05667114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -05283428 449.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -05283429 449.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -05283430 449.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -05283431 449.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -05283432 449.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -05283433 449.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -05283434 449.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -05283435 449.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -05283436 449.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -05283437 449.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -05283438 449.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -05283439 449.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -05283440 449.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -05283441 449.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -05283442 449.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -05283443 449.05691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -05283444 449.05691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -05283445 449.05691528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -05283446 449.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -05283447 449.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -05283448 449.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -05283449 449.05697632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -05283450 449.05703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -05283451 449.05703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -05283452 449.05703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -05283453 449.05703735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -05283454 449.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -05283455 449.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -05283456 449.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -05283457 449.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -05283458 449.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -05283459 449.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -05283460 449.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -05283461 449.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -05283462 449.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -05283463 449.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -05283464 449.05722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -05283465 449.05722046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -05287154 449.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa8 -05287155 449.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa8 -05287156 449.10894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb8 -05287157 449.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb8 -05287158 449.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc8 -05287159 449.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc8 -05287160 449.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd8 -05287161 449.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd8 -05287162 449.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe8 -05287163 449.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe8 -05287164 449.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff8 -05287165 449.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff8 -05287166 449.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50008 -05287167 449.10910034 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50008 -05287168 449.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50018 -05287169 449.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50018 -05287170 449.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50028 -05287171 449.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50028 -05287172 449.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50038 -05287173 449.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50038 -05287174 449.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50048 -05287175 449.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50048 -05287176 449.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50058 -05287177 449.10925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50058 -05287178 449.10931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50068 -05287179 449.10931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50068 -05287180 449.10931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50078 -05287181 449.10931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50078 -05287182 449.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50088 -05287183 449.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50088 -05287184 449.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50098 -05287185 449.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50098 -05287186 449.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a8 -05287187 449.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a8 -05287188 449.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b8 -05287189 449.10940552 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b8 -05287190 449.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c8 -05287191 449.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c8 -05287192 449.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d8 -05287193 449.10946655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d8 -05287194 449.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e8 -05287195 449.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500e8 -05287196 449.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f8 -05287197 449.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x500f8 -05288612 449.24804688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05288613 449.27099609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288614 449.27099609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288615 449.69790649 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288616 449.69793701 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288617 449.69793701 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288618 449.69793701 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05288619 449.69808960 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288620 449.69808960 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05288621 449.69815063 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288622 449.69815063 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05288623 451.27178955 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05288624 451.29138184 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288625 451.29138184 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288626 452.20504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288627 452.20504761 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288628 452.20510864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288629 452.20510864 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05288630 452.20532227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288631 452.20532227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05288632 452.20535278 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05288633 452.20541382 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05288634 453.29223633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05288635 453.31072998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288636 453.31076050 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05288637 454.12973022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05288638 454.12976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05288639 454.12976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05288640 454.12976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05288641 454.12982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05288642 454.12982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05288643 454.12982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05288644 454.12982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05288645 454.12988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05288646 454.12988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05288647 454.12988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05288648 454.12988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05288649 454.12991333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05288650 454.12991333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05288651 454.12991333 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05288652 454.12997437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05288653 454.12997437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05288654 454.12997437 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05288655 454.13003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05288656 454.13003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05288657 454.13003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05288658 454.13003540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05288659 454.13006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05288660 454.13006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05288661 454.13006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05288662 454.13006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05288663 454.13012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05288664 454.13012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05288665 454.13012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05288666 454.13012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05288667 454.13018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05288668 454.13018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05288669 454.13018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05288670 454.13018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05288671 454.13021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05288672 454.13021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05288673 454.13021851 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05288674 454.13027954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05288675 454.13027954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05288676 454.13027954 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05288677 454.13034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05288678 454.13034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05288679 454.13034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05288680 454.13034058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05288681 454.13037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05288682 454.13037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05288683 454.13037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05288684 454.13037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05288685 454.13043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05288686 454.13043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05288687 454.13043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05288688 454.13043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05288689 454.13049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05288690 454.13049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05288691 454.13052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05288692 454.13052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05288693 454.13052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05288694 454.13052368 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05288695 454.13058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05288696 454.13058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05288697 454.13058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05288698 454.13058472 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05288699 454.13064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05288700 454.13064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05288701 454.13064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05288702 454.13064575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05288703 454.13067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05288704 454.13067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05288705 454.13073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05288706 454.13073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05288707 454.13073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05288708 454.13073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05288709 454.13079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05288710 454.13079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05288711 454.13079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05288712 454.13079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05288713 454.13082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05288714 454.13082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05288715 454.13082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05288716 454.13082886 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05288717 454.13088989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05288718 454.13088989 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05288719 454.13095093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05288720 454.13095093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05288721 454.13095093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05288722 454.13095093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05288723 454.13098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05288724 454.13098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05288725 454.13098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05288726 454.13098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05288727 454.13104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05288728 454.13104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05288729 454.13104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05288730 454.13104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05288731 454.13110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05288732 454.13110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05288733 454.13110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05288734 454.13113403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05288735 454.13113403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05288736 454.13113403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05288737 454.13119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05288738 454.13119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05288739 454.13119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05288740 454.13119507 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05288741 454.13125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05288742 454.13125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05288743 454.13125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05288744 454.13125610 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05288745 454.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05288746 454.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05288747 454.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05288748 454.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05288749 454.13134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05288750 454.13134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05288751 454.13134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05288752 454.13140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05288753 454.13140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05288754 454.13140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05288755 454.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05288756 454.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05288757 454.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05288758 454.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05288759 454.13150024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05288760 454.13150024 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05288761 454.13156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05288762 454.13156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05288763 454.13156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05288764 454.13156128 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05288765 454.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05288766 454.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05288767 454.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05288768 454.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05288769 454.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05288770 454.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05288771 454.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05288772 454.13165283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05288773 454.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05288774 454.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05288775 454.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05288776 454.13171387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05288777 454.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05288778 454.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05288779 454.13180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05288780 454.13180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05288781 454.13180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05288782 454.13180542 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05288783 454.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05288784 454.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05288785 454.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05288786 454.13186646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05288787 454.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05288788 454.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05288789 454.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05288790 454.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05288791 454.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05288792 454.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05288793 454.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05288794 454.13195801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05288795 454.13201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05288796 454.13201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05288797 454.13201904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05288798 454.13208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05288799 454.13208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05288800 454.13208008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05288801 454.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05288802 454.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05288803 454.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05288804 454.13211060 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05288805 454.13217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05288806 454.13217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05288807 454.13217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05288808 454.13217163 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05288809 454.13223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05288810 454.13223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05288811 454.13223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05288812 454.13223267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05288813 454.13226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05288814 454.13226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05288815 454.13226318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05288816 454.13232422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05288817 454.13232422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05288818 454.13232422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05288819 454.13238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05288820 454.13238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05288821 454.13238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05288822 454.13238525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05288823 454.13241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05288824 454.13241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05288825 454.13241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05288826 454.13241577 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05288827 454.13247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05288828 454.13247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05288829 454.13247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05288830 454.13247681 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05288831 454.13253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05288832 454.13253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05288833 454.13253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05288834 454.13253784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05288835 454.13256836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05288836 454.13256836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05288837 454.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05288838 454.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05288839 454.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05288840 454.13262939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05288841 454.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05288842 454.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05288843 454.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05288844 454.13269043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05288845 454.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05288846 454.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05288847 454.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05288848 454.13272095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05288849 454.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05288850 454.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05288851 454.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05288852 454.13278198 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05288853 454.13284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05288854 454.13284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05288855 454.13284302 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05288856 454.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05288857 454.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05288858 454.13290405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05288859 454.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05288860 454.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05288861 454.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05288862 454.13293457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05288863 454.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05288864 454.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05288865 454.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05288866 454.13299561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05288867 454.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05288868 454.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05288869 454.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05288870 454.13305664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05288871 454.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05288872 454.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05288873 454.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05288874 454.13308716 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05288875 454.13314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05288876 454.13314819 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05288877 454.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05288878 454.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05288879 454.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05288880 454.13320923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05288881 454.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05288882 454.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05288883 454.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05288884 454.13323975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05288885 454.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05288886 454.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05288887 454.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05288888 454.13330078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05288889 454.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05288890 454.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05288891 454.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05288892 454.13336182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05288893 454.13339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05288894 454.13339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05288895 454.13339233 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05288896 454.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05288897 454.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05288898 454.13345337 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05288899 454.13351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05288900 454.13351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05288901 454.13351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05288902 454.13351440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05288903 454.13354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05288904 454.13354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05288905 454.13354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05288906 454.13354492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05288907 454.13360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05288908 454.13360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05288909 454.13360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05288910 454.13360596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05288911 454.13366699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05288912 454.13366699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05288913 454.13366699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05288914 454.13369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05288915 454.13369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05288916 454.13369751 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05288917 454.13375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05288918 454.13375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05288919 454.13375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05288920 454.13375854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05288921 454.13381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05288922 454.13381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05288923 454.13381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05288924 454.13381958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05288925 454.13385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05288926 454.13385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05288927 454.13385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05288928 454.13385010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05288929 454.13391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05288930 454.13391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05288931 454.13391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05288932 454.13391113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05288933 454.13397217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05288934 454.13397217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05288935 454.13400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05288936 454.13400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05288937 454.13400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05288938 454.13400269 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05288939 454.13406372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05288940 454.13406372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05288941 454.13406372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05288942 454.13406372 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05288943 454.13412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05288944 454.13412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05288945 454.13412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05288946 454.13412476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05288947 454.13415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05288948 454.13415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05288949 454.13415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05288950 454.13415527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05288951 454.13421631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05288952 454.13421631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05288953 454.13427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05288954 454.13427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05288955 454.13427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05288956 454.13427734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05288957 454.13433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05288958 454.13433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05288959 454.13433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05288960 454.13433838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05288961 454.13436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05288962 454.13436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05288963 454.13436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05288964 454.13436890 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05288965 454.13442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05288966 454.13442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05288967 454.13442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05288968 454.13442993 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05288969 454.13449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05288970 454.13449097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05288971 454.13452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05288972 454.13452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05288973 454.13452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05288974 454.13452148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05288975 454.13458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05288976 454.13458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05288977 454.13458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05288978 454.13458252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05288979 454.13464355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05288980 454.13464355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05288981 454.13464355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05288982 454.13464355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05288983 454.13467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05288984 454.13467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05288985 454.13467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05288986 454.13467407 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05288987 454.13473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05288988 454.13473511 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05288989 454.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05288990 454.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05288991 454.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05288992 454.13479614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05288993 454.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05288994 454.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05288995 454.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05288996 454.13482666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05288997 454.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05288998 454.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05288999 454.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05289000 454.13488770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05289001 454.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05289002 454.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05289003 454.13494873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05289004 454.13497925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05289005 454.13497925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05289006 454.13497925 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05289007 454.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05289008 454.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05289009 454.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05289010 454.13504028 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05289011 454.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05289012 454.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05289013 454.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05289014 454.13510132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05289015 454.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05289016 454.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05289017 454.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05289018 454.13513184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05289019 454.13519287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05289020 454.13519287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05289021 454.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05289022 454.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05289023 454.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05289024 454.13525391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05289025 454.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05289026 454.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05289027 454.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05289028 454.13528442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05289029 454.13534546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05289030 454.13534546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05289031 454.13534546 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05289032 454.13540649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05289033 454.13540649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05289034 454.13540649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05289035 454.13543701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05289036 454.13543701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05289037 454.13543701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05289038 454.13543701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05289039 454.13549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05289040 454.13549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05289041 454.13549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05289042 454.13549805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05289043 454.13555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05289044 454.13555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05289045 454.13555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05289046 454.13555908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05289047 454.13558960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05289048 454.13558960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05289049 454.13558960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05289050 454.13565063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05289051 454.13565063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05289052 454.13565063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05289053 454.13571167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05289054 454.13571167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05289055 454.13571167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05289056 454.13571167 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05289057 454.13574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05289058 454.13574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05289059 454.13574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05289060 454.13574219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05289061 454.13580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05289062 454.13580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05289063 454.13580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05289064 454.13580322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05289065 454.13586426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05289066 454.13586426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05289067 454.13586426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05289068 454.13592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05289069 454.13592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05289070 454.13592529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05289071 454.13595581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05289072 454.13595581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05289073 454.13595581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05289074 454.13595581 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05289075 454.13601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05289076 454.13601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05289077 454.13601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05289078 454.13601685 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05289079 454.13607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05289080 454.13607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05289081 454.13607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05289082 454.13607788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05289083 454.13610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05289084 454.13610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05289085 454.13610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05289086 454.13610840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05289087 454.13616943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05289088 454.13616943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05289089 454.13623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05289090 454.13623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05289091 454.13623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05289092 454.13623047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05289093 454.13626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05289094 454.13626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05289095 454.13626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05289096 454.13626099 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05289097 454.13632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05289098 454.13632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05289099 454.13632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05289100 454.13632202 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05289101 454.13638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05289102 454.13638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05289103 454.13638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05289104 454.13638306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05289105 454.13641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05289106 454.13641357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05289107 454.13647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05289108 454.13647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05289109 454.13647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05289110 454.13647461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05289111 454.13653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05289112 454.13653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05289113 454.13653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05289114 454.13653564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05289115 454.13656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05289116 454.13656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05289117 454.13656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05289118 454.13656616 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05289119 454.13662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05289120 454.13662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05289121 454.13662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05289122 454.13662720 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05289123 454.13668823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05289124 454.13668823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05289125 454.13671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05289126 454.13671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05289127 454.13671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05289128 454.13671875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05289129 454.13677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05289130 454.13677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05289131 454.13677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05289132 454.13677979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05289133 454.13684082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05289134 454.13684082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05289135 454.13684082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05289136 454.13684082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05289137 454.13687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05289138 454.13687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05289139 454.13687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05289140 454.13687134 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05289141 454.13693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05289142 454.13693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05289143 454.13693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05289144 454.13693237 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05289145 454.13699341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05289146 454.13699341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05289147 454.13702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05289148 454.13702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05289149 454.13702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05289150 454.13702393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05289151 454.13708496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05289152 454.13708496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05289153 454.13708496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05289154 454.13708496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05289155 454.13714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05289156 454.13714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05289157 454.13714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05289158 454.13714600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05289159 454.13717651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05289160 454.13717651 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05289161 454.13723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05289162 454.13723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05289163 454.13723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05289164 454.13723755 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05289165 454.13729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05289166 454.13729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05289167 454.13729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05289168 454.13729858 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05289169 454.13732910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05289170 454.13732910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05289171 454.13732910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05289172 454.13732910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05289173 454.13739014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05289174 454.13739014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05289175 454.13745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05289176 454.13745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05289177 454.13745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05289178 454.13745117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05289179 454.13751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05289180 454.13751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05289181 454.13751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05289182 454.13751221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05289183 454.13754272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05289184 454.13754272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05289185 454.13754272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05289186 454.13754272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05289187 454.13760376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05289188 454.13760376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05289189 454.13766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05289190 454.13766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05289191 454.13766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05289192 454.13766479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05289193 454.13769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05289194 454.13769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05289195 454.13769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05289196 454.13769531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05289197 454.13775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05289198 454.13775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05289199 454.13775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05289200 454.13775635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05289201 454.13781738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05289202 454.13781738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05289203 454.13784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05289204 454.13784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05289205 454.13784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05289206 454.13784790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05289207 454.13790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05289208 454.13790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05289209 454.13790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05289210 454.13790894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05289211 454.13796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05289212 454.13796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05289213 454.13796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05289214 454.13796997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05289215 454.13800049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05289216 454.13800049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05289217 454.13806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05289218 454.13806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05289219 454.13806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05289220 454.13806152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05289221 454.13812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05289222 454.13812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05289223 454.13812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05289224 454.13812256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05289225 454.13815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05289226 454.13815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05289227 454.13815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05289228 454.13815308 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05289229 454.13821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05289230 454.13821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05289231 454.13821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05289232 454.13821411 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05289233 454.13827515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05289234 454.13827515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05289235 454.13827515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05289236 454.13830566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05289237 454.13830566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05289238 454.13830566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05289239 454.13836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05289240 454.13836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05289241 454.13836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05289242 454.13836670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05289243 454.13842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05289244 454.13842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05289245 454.13842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05289246 454.13842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05289247 454.13845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05289248 454.13845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05289249 454.13845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05289250 454.13845825 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05289251 454.13851929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05289252 454.13851929 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05289253 454.13858032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05289254 454.13858032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05289255 454.13858032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05289256 454.13858032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05289257 454.13861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05289258 454.13861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05289259 454.13861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05289260 454.13861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05289261 454.13867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05289262 454.13867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05289263 454.13867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05289264 454.13867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05289265 454.13873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05289266 454.13873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05289267 454.13873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05289268 454.13873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05289269 454.13876343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05289270 454.13876343 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05289271 454.13882446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05289272 454.13882446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05289273 454.13882446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05289274 454.13882446 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05289275 454.13888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05289276 454.13888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05289277 454.13888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05289278 454.13888550 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05289279 454.13891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05289280 454.13891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05289281 454.13891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05289282 454.13891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05289283 454.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05289284 454.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05289285 454.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05289286 454.13897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05289287 454.13903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05289288 454.13903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05289289 454.13903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05289290 454.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05289291 454.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05289292 454.13909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05289293 454.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05289294 454.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05289295 454.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05289296 454.13912964 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05289297 454.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05289298 454.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05289299 454.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05289300 454.13919067 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05289301 454.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05289302 454.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05289303 454.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05289304 454.13925171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05289305 454.13928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05289306 454.13928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05289307 454.13928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05289308 454.13928223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05289309 454.13934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05289310 454.13934326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05289311 454.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05289312 454.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05289313 454.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05289314 454.13940430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05289315 454.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05289316 454.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05289317 454.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05289318 454.13943481 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05289319 454.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05289320 454.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05289321 454.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05289322 454.13949585 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05289323 454.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05289324 454.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05289325 454.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05289326 454.13955688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05289327 454.13958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05289328 454.13958740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05289329 454.13964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05289330 454.13964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05289331 454.13964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05289332 454.13964844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05289333 454.13970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05289334 454.13970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05289335 454.13970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05289336 454.13970947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05289337 454.13973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05289338 454.13973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05289339 454.13973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05289340 454.13973999 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05289341 454.13980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05289342 454.13980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05289343 454.13980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05289344 454.13980103 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05289345 454.13986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05289346 454.13986206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05289347 454.13989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05289348 454.13989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05289349 454.13989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05289350 454.13989258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05289351 454.13995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05289352 454.13995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05289353 454.13995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05289354 454.13995361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05289355 454.14001465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05289356 454.14001465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05289357 454.14001465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05289358 454.14001465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05289359 454.14004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05289360 454.14004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05289361 454.14004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05289362 454.14004517 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05289363 454.14010620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05289364 454.14010620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05289365 454.14010620 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05289366 454.14016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05289367 454.14016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05289368 454.14016724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05289369 454.14019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05289370 454.14019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05289371 454.14019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05289372 454.14019775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05289373 454.14025879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05289374 454.14025879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05289375 454.14025879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05289376 454.14025879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05289377 454.14031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05289378 454.14031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05289379 454.14031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05289380 454.14031982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05289381 454.14035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05289382 454.14035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05289383 454.14035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05289384 454.14035034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05289385 454.14041138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05289386 454.14041138 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05289387 454.14047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05289388 454.14047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05289389 454.14047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05289390 454.14047241 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05289391 454.14053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05289392 454.14053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05289393 454.14053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05289394 454.14053345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05289395 454.14056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05289396 454.14056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05289397 454.14056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05289398 454.14056396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05289399 454.14062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05289400 454.14062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05289401 454.14062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05289402 454.14062500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05289403 454.14068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05289404 454.14068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05289405 454.14068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05289406 454.14068604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05289407 454.14071655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05289408 454.14071655 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05289409 454.14077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05289410 454.14077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05289411 454.14077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05289412 454.14077759 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05289413 454.14083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05289414 454.14083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05289415 454.14083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05289416 454.14083862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05289417 454.14086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05289418 454.14086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05289419 454.14086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05289420 454.14086914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05289421 454.14093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05289422 454.14093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05289423 454.14093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05289424 454.14093018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05289425 454.14099121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05289426 454.14099121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05289427 454.14099121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05289428 454.14102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05289429 454.14102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05289430 454.14102173 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05289431 454.14108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05289432 454.14108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05289433 454.14108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05289434 454.14108276 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05289435 454.14114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05289436 454.14114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05289437 454.14114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05289438 454.14114380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05289439 454.14117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05289440 454.14117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05289441 454.14117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05289442 454.14117432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05289443 454.14123535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05289444 454.14123535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05289445 454.14123535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05289446 454.14123535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05289447 454.14129639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05289448 454.14129639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05289449 454.14129639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05289450 454.14132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05289451 454.14132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05289452 454.14132690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05289453 454.14138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05289454 454.14138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05289455 454.14138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05289456 454.14138794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05289457 454.14144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05289458 454.14144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05289459 454.14144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05289460 454.14144897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05289461 454.14147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05289462 454.14147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05289463 454.14147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05289464 454.14147949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05289465 454.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05289466 454.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05289467 454.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05289468 454.14154053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05289469 454.14160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05289470 454.14160156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05289471 454.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05289472 454.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05289473 454.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05289474 454.14163208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05289475 454.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05289476 454.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05289477 454.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05289478 454.14169312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05289479 454.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05289480 454.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05289481 454.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05289482 454.14175415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05289483 454.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05289484 454.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05289485 454.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05289486 454.14178467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05289487 454.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05289488 454.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05289489 454.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05289490 454.14184570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05289491 454.14190674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05289492 454.14190674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05289493 454.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05289494 454.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05289495 454.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05289496 454.14193726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05289497 454.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05289498 454.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05289499 454.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05289500 454.14199829 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05289501 454.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05289502 454.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05289503 454.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05289504 454.14205933 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05289505 454.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05289506 454.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05289507 454.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05289508 454.14212036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05289509 454.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05289510 454.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05289511 454.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05289512 454.14215088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05289513 454.14221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05289514 454.14221191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05289515 454.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05289516 454.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05289517 454.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05289518 454.14227295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05289519 454.14230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05289520 454.14230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05289521 454.14230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05289522 454.14230347 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05289523 454.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05289524 454.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05289525 454.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05289526 454.14236450 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05289527 454.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05289528 454.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05289529 454.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05289530 454.14242554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05289531 454.14245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05289532 454.14245605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05289533 454.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05289534 454.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05289535 454.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05289536 454.14251709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05289537 454.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05289538 454.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05289539 454.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05289540 454.14257813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05289541 454.14260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05289542 454.14260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05289543 454.14260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05289544 454.14260864 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05289545 454.14266968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05289546 454.14266968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05289547 454.14266968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05289548 454.14266968 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05289549 454.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05289550 454.14273071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05289551 454.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05289552 454.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05289553 454.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05289554 454.14276123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05289555 454.14282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05289556 454.14282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05289557 454.14282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05289558 454.14282227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05289559 454.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05289560 454.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05289561 454.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05289562 454.14288330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05289563 454.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05289564 454.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05289565 454.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05289566 454.14291382 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05289567 454.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05289568 454.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05289569 454.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05289570 454.14297485 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05289571 454.14303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05289572 454.14303589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05289573 454.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05289574 454.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05289575 454.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05289576 454.14306641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05289577 454.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05289578 454.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05289579 454.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05289580 454.14312744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05289581 454.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05289582 454.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05289583 454.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05289584 454.14318848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05289585 454.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05289586 454.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05289587 454.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05289588 454.14321899 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05289589 454.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05289590 454.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05289591 454.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05289592 454.14328003 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05289593 454.14334106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05289594 454.14334106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05289595 454.14337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05289596 454.14337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05289597 454.14337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05289598 454.14337158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05289599 454.14343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05289600 454.14343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05289601 454.14343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05289602 454.14343262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05289603 454.14349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05289604 454.14349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05289605 454.14349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05289606 454.14349365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05289607 454.14352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05289608 454.14352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05289609 454.14352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05289610 454.14352417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05289611 454.14358521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05289612 454.14358521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05289613 454.14358521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05289614 454.14364624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05289615 454.14364624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05289616 454.14364624 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05289617 454.14370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05289618 454.14370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05289619 454.14370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05289620 454.14370728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05289621 454.14373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05289622 454.14373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05289623 454.14373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05289624 454.14373779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05289625 454.14379883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05289626 454.14379883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05289627 454.14379883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05289628 454.14379883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05289629 454.14385986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05289630 454.14385986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05289631 454.14385986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05289632 454.14389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05289633 454.14389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05289634 454.14389038 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05289635 454.14395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05289636 454.14395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05289637 454.14395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05289638 454.14395142 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05289639 454.14401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05289640 454.14401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05289641 454.14401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05289642 454.14401245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05289643 454.14404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05289644 454.14404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05289645 454.14404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05289646 454.14404297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05289647 454.14410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05289648 454.14410400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05289649 454.14416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05289650 454.14416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05289651 454.14416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05289652 454.14416504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05289653 454.14419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05289654 454.14419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05289655 454.14419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05289656 454.14419556 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05289657 454.14425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05289658 454.14425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05289659 454.14425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05289660 454.14425659 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05289661 454.14431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05289662 454.14431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05289663 454.14431763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05289664 454.14434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05289665 454.14434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05289666 454.14434814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05289667 454.14440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05289668 454.14440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05289669 454.14440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05289670 454.14440918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05289671 454.14447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05289672 454.14447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05289673 454.14447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05289674 454.14447021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05289675 454.14450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05289676 454.14450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05289677 454.14450073 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05289678 454.14456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05289679 454.14456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05289680 454.14456177 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05289681 454.14462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05289682 454.14462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05289683 454.14462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05289684 454.14462280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05289685 454.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05289686 454.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05289687 454.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05289688 454.14465332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05289689 454.14471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05289690 454.14471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05289691 454.14471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05289692 454.14471436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05289693 454.14477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05289694 454.14477539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05289695 454.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05289696 454.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05289697 454.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05289698 454.14480591 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05289699 454.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05289700 454.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05289701 454.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05289702 454.14486694 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05289703 454.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05289704 454.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05289705 454.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05289706 454.14492798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05289707 454.14495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05289708 454.14495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05289709 454.14495850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05289710 454.14501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05289711 454.14501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05289712 454.14501953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05289713 454.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05289714 454.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05289715 454.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05289716 454.14508057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05289717 454.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05289718 454.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05289719 454.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05289720 454.14514160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05289721 454.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05289722 454.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05289723 454.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05289724 454.14517212 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05289725 454.14523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05289726 454.14523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05289727 454.14523315 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05289728 454.14529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05289729 454.14529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05289730 454.14529419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05289731 454.14532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05289732 454.14532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05289733 454.14532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05289734 454.14532471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05289735 454.14538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05289736 454.14538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05289737 454.14538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05289738 454.14538574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05289739 454.14544678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05289740 454.14544678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05289741 454.14547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05289742 454.14547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05289743 454.14547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05289744 454.14547729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05289745 454.14553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05289746 454.14553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05289747 454.14553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05289748 454.14553833 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05289749 454.14559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05289750 454.14559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05289751 454.14559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05289752 454.14559937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05289753 454.14562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05289754 454.14562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05289755 454.14562988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05289756 454.14569092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05289757 454.14569092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05289758 454.14569092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05289759 454.14575195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05289760 454.14575195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05289761 454.14575195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05289762 454.14575195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05289763 454.14578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05289764 454.14578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05289765 454.14578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05289766 454.14578247 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05289767 454.14584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05289768 454.14584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05289769 454.14584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05289770 454.14584351 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05289771 454.14590454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05289772 454.14590454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05289773 454.14590454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05289774 454.14593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05289775 454.14593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05289776 454.14593506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05289777 454.14599609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05289778 454.14599609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05289779 454.14599609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05289780 454.14599609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05289781 454.14605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05289782 454.14605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05289783 454.14605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05289784 454.14605713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05289785 454.14608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05289786 454.14608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05289787 454.14608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05289788 454.14608765 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05289789 454.14614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05289790 454.14614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05289791 454.14614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05289792 454.14614868 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05289793 454.14620972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05289794 454.14620972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05289795 454.14624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05289796 454.14624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05289797 454.14624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05289798 454.14624023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05289799 454.14630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05289800 454.14630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05289801 454.14630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05289802 454.14630127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05289803 454.14636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05289804 454.14636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05289805 454.14636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05289806 454.14636230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05289807 454.14639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05289808 454.14639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05289809 454.14639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05289810 454.14639282 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05289811 454.14645386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05289812 454.14645386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05289813 454.14645386 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05289814 454.14651489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05289815 454.14651489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05289816 454.14651489 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05289817 454.14654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05289818 454.14654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05289819 454.14654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05289820 454.14654541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05289821 454.14660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05289822 454.14660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05289823 454.14660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05289824 454.14660645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05289825 454.14666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05289826 454.14666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05289827 454.14666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05289828 454.14666748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05289829 454.14672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05289830 454.14672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05289831 454.14672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05289832 454.14672852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05289833 454.14675903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05289834 454.14675903 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05289835 454.14682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05289836 454.14682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05289837 454.14682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05289838 454.14682007 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05289839 454.14688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05289840 454.14688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05289841 454.14688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05289842 454.14688110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05289843 454.14691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05289844 454.14691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05289845 454.14691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05289846 454.14691162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05289847 454.14697266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05289848 454.14697266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05289849 454.14697266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05289850 454.14697266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05289851 454.14703369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05289852 454.14703369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05289853 454.14703369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05289854 454.14706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05289855 454.14706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05289856 454.14706421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05289857 454.14712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05289858 454.14712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05289859 454.14712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05289860 454.14712524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05289861 454.14718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05289862 454.14718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05289863 454.14718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05289864 454.14718628 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05289865 454.14721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05289866 454.14721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05289867 454.14721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05289868 454.14721680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05289869 454.14727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05289870 454.14727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05289871 454.14727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05289872 454.14727783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05289873 454.14733887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05289874 454.14733887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05289875 454.14736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05289876 454.14736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05289877 454.14736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05289878 454.14736938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05289879 454.14743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05289880 454.14743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05289881 454.14743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05289882 454.14743042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05289883 454.14749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05289884 454.14749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05289885 454.14749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05289886 454.14749146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05289887 454.14752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05289888 454.14752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05289889 454.14752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05289890 454.14752197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05289891 454.14758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05289892 454.14758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05289893 454.14758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05289894 454.14764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05289895 454.14764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05289896 454.14764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05289897 454.14767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05289898 454.14767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05289899 454.14767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05289900 454.14767456 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05289901 454.14773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05289902 454.14773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05289903 454.14773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05289904 454.14773560 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05289905 454.14779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05289906 454.14779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05289907 454.14779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05289908 454.14779663 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05289909 454.14782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05289910 454.14782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05289911 454.14782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05289912 454.14782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05289913 454.14788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05289914 454.14788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05289915 454.14788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05289916 454.14794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05289917 454.14794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05289918 454.14794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05289919 454.14797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05289920 454.14797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05289921 454.14797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05289922 454.14797974 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05289923 454.14804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05289924 454.14804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05289925 454.14804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05289926 454.14804077 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05289927 454.14810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05289928 454.14810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05289929 454.14810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05289930 454.14810181 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05289931 454.14813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05289932 454.14813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05289933 454.14813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05289934 454.14813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05289935 454.14819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05289936 454.14819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05289937 454.14825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05289938 454.14825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05289939 454.14825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05289940 454.14825439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05289941 454.14831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05289942 454.14831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05289943 454.14831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05289944 454.14831543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05289945 454.14834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05289946 454.14834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05289947 454.14834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05289948 454.14834595 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05289949 454.14840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05289950 454.14840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05289951 454.14840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05289952 454.14840698 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05289953 454.14846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05289954 454.14846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05289955 454.14846802 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05289956 454.14849854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05289957 454.14849854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05289958 454.14849854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05289959 454.14855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05289960 454.14855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05289961 454.14855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05289962 454.14855957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05289963 454.14862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05289964 454.14862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05289965 454.14862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05289966 454.14862061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05289967 454.14865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05289968 454.14865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05289969 454.14865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05289970 454.14865112 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05289971 454.14871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05289972 454.14871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05289973 454.14871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05289974 454.14871216 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05289975 454.14877319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05289976 454.14877319 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05289977 454.14880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05289978 454.14880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05289979 454.14880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05289980 454.14880371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05289981 454.14886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05289982 454.14886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05289983 454.14886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05289984 454.14886475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05289985 454.14892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05289986 454.14892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05289987 454.14892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05289988 454.14892578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05289989 454.14895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05289990 454.14895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05289991 454.14895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05289992 454.14895630 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05289993 454.14901733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05289994 454.14901733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05289995 454.14901733 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05289996 454.14907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05289997 454.14907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05289998 454.14907837 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05289999 454.14910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05290000 454.14910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05290001 454.14910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05290002 454.14910889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05290003 454.14916992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05290004 454.14916992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05290005 454.14923096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05290006 454.14923096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05290007 454.14923096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05290008 454.14923096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05290009 454.14926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05290010 454.14926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05290011 454.14926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05290012 454.14926147 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05290013 454.14932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05290014 454.14932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05290015 454.14932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05290016 454.14932251 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05290017 454.14938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05290018 454.14938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05290019 454.14938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05290020 454.14938354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05290021 454.14941406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05290022 454.14941406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05290023 454.14941406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05290024 454.14947510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05290025 454.14947510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05290026 454.14947510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05290027 454.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05290028 454.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05290029 454.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05290030 454.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05290031 454.14956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05290032 454.14956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05290033 454.14956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05290034 454.14956665 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05290035 454.14962769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05290036 454.14962769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05290037 454.14962769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05290038 454.14962769 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05290039 454.14968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05290040 454.14968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05290041 454.14968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05290042 454.14968872 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05290043 454.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05290044 454.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05290045 454.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05290046 454.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05290047 454.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05290048 454.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05290049 454.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05290050 454.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05290051 454.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05290052 454.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05290053 454.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05290054 454.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05290055 454.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05290056 454.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05290057 454.14993286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05290058 454.14993286 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05290059 454.14999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05290060 454.14999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05290061 454.14999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05290062 454.14999390 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05290063 454.15005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05290064 454.15005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05290065 454.15005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05290066 454.15005493 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05290067 454.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05290068 454.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05290069 454.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05290070 454.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05290071 454.15014648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05290072 454.15014648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05290073 454.15020752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05290074 454.15020752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05290075 454.15020752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05290076 454.15020752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05290077 454.15023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05290078 454.15023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05290079 454.15023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05290080 454.15023804 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05290081 454.15029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05290082 454.15029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05290083 454.15029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05290084 454.15029907 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05290085 454.15036011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05290086 454.15036011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05290087 454.15036011 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05290088 454.15039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05290089 454.15039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05290090 454.15039063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05290091 454.15045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05290092 454.15045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05290093 454.15045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05290094 454.15045166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05290095 454.15051270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05290096 454.15051270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05290097 454.15051270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05290098 454.15051270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05290099 454.15054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05290100 454.15054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05290101 454.15054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05290102 454.15054321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05290103 454.15060425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05290104 454.15060425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05290105 454.15060425 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05290106 454.15066528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05290107 454.15066528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05290108 454.15066528 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05290109 454.15069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05290110 454.15069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05290111 454.15069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05290112 454.15069580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05290113 454.15075684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05290114 454.15075684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05290115 454.15075684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05290116 454.15075684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05290117 454.15081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05290118 454.15081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05290119 454.15081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05290120 454.15081787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05290121 454.15084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05290122 454.15084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05290123 454.15084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05290124 454.15084839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05290125 454.15090942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05290126 454.15090942 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05290127 454.15097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05290128 454.15097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05290129 454.15097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05290130 454.15097046 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05290131 454.15100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05290132 454.15100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05290133 454.15100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05290134 454.15100098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05290135 454.15106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05290136 454.15106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05290137 454.15106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05290138 454.15106201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05290139 454.15112305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05290140 454.15112305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05290141 454.15115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05290142 454.15115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05290143 454.15115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05290144 454.15115356 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05290145 454.15121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05290146 454.15121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05290147 454.15121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05290148 454.15121460 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05290149 454.15127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05290150 454.15127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05290151 454.15127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05290152 454.15127563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05290153 454.15133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05290154 454.15133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05290155 454.15133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05290156 454.15133667 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05290157 454.15136719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05290158 454.15136719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05290159 454.15142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05290160 454.15142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05290161 454.15142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05290162 454.15142822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05290163 454.15148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05290164 454.15148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05290165 454.15148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05290166 454.15148926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05290167 454.15151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05290168 454.15151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05290169 454.15151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05290170 454.15151978 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05290171 454.15158081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05290172 454.15158081 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05290173 454.15164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05290174 454.15164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05290175 454.15164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05290176 454.15164185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05290177 454.15167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05290178 454.15167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05290179 454.15167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05290180 454.15167236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05290181 454.15173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05290182 454.15173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05290183 454.15173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05290184 454.15173340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05290185 454.15179443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05290186 454.15179443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05290187 454.15182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05290188 454.15182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05290189 454.15182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05290190 454.15182495 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05290191 454.15188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05290192 454.15188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05290193 454.15188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05290194 454.15188599 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05290195 454.15194702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05290196 454.15194702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05290197 454.15194702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05290198 454.15194702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05290199 454.15197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05290200 454.15197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05290201 454.15197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05290202 454.15197754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05290203 454.15203857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05290204 454.15203857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05290205 454.15209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05290206 454.15209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05290207 454.15209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05290208 454.15209961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05290209 454.15213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05290210 454.15213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05290211 454.15213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05290212 454.15213013 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05290213 454.15219116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05290214 454.15219116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05290215 454.15219116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05290216 454.15219116 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05290217 454.15225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05290218 454.15225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05290219 454.15225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05290220 454.15225220 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05290221 454.15228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05290222 454.15228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05290223 454.15228271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05290224 454.15234375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05290225 454.15234375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05290226 454.15234375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05290227 454.15240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05290228 454.15240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05290229 454.15240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05290230 454.15240479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05290231 454.15243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05290232 454.15243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05290233 454.15243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05290234 454.15243530 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05290235 454.15249634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05290236 454.15249634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05290237 454.15249634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05290238 454.15249634 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05290239 454.15255737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05290240 454.15255737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05290241 454.15255737 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05290242 454.15258789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05290243 454.15258789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05290244 454.15258789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05290245 454.15264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05290246 454.15264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05290247 454.15264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05290248 454.15264893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05290249 454.15270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05290250 454.15270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05290251 454.15270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05290252 454.15270996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05290253 454.15274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05290254 454.15274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05290255 454.15274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05290256 454.15274048 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05290257 454.15280151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05290258 454.15280151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05290259 454.15280151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05290260 454.15280151 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05290261 454.15286255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05290262 454.15286255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05290263 454.15292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05290264 454.15292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05290265 454.15292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05290266 454.15292358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05290267 454.15295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05290268 454.15295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05290269 454.15295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05290270 454.15295410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05290271 454.15301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05290272 454.15301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05290273 454.15301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05290274 454.15301514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05290275 454.15307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05290276 454.15307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05290277 454.15307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05290278 454.15307617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05290279 454.15310669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05290280 454.15310669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05290281 454.15316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05290282 454.15316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05290283 454.15316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05290284 454.15316772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05290285 454.15322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05290286 454.15322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05290287 454.15322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05290288 454.15322876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05290289 454.15325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05290290 454.15325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05290291 454.15325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05290292 454.15325928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05290293 454.15332031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05290294 454.15332031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05290295 454.15332031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05290296 454.15332031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05290297 454.15338135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05290298 454.15338135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05290299 454.15338135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05290300 454.15341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05290301 454.15341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05290302 454.15341187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05290303 454.15347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05290304 454.15347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05290305 454.15347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05290306 454.15347290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05290307 454.15353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05290308 454.15353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05290309 454.15353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05290310 454.15353394 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05290311 454.15356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05290312 454.15356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05290313 454.15356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05290314 454.15356445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05290315 454.15362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05290316 454.15362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05290317 454.15362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05290318 454.15362549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05290319 454.15368652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05290320 454.15368652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05290321 454.15368652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05290322 454.15371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05290323 454.15371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05290324 454.15371704 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05290325 454.15377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05290326 454.15377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05290327 454.15377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05290328 454.15377808 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05290329 454.15383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05290330 454.15383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05290331 454.15383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05290332 454.15383911 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05290333 454.15386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05290334 454.15386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05290335 454.15386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05290336 454.15386963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05290337 454.15393066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05290338 454.15393066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05290339 454.15393066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05290340 454.15399170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05290341 454.15399170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05290342 454.15399170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05290343 454.15402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05290344 454.15402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05290345 454.15402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05290346 454.15402222 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05290347 454.15408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05290348 454.15408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05290349 454.15408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05290350 454.15408325 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05290351 454.15414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05290352 454.15414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05290353 454.15414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05290354 454.15414429 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05290355 454.15417480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05290356 454.15417480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05290357 454.15417480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05290358 454.15417480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05290359 454.15423584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05290360 454.15423584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05290361 454.15423584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05290362 454.15429688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05290363 454.15429688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05290364 454.15429688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05290365 454.15432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05290366 454.15432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05290367 454.15432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05290368 454.15432739 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05290369 454.15438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05290370 454.15438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05290371 454.15438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05290372 454.15438843 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05290373 454.15444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05290374 454.15444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05290375 454.15444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05290376 454.15444946 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05290377 454.15451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05290378 454.15451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05290379 454.15451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05290380 454.15451050 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05290381 454.15454102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05290382 454.15454102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05290383 454.15454102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05290384 454.15460205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05290385 454.15460205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05290386 454.15460205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05290387 454.15466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05290388 454.15466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05290389 454.15466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05290390 454.15466309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05290391 454.15469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05290392 454.15469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05290393 454.15469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05290394 454.15469360 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05290395 454.15475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05290396 454.15475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05290397 454.15475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05290398 454.15475464 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05290399 454.15481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05290400 454.15481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05290401 454.15481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05290402 454.15481567 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05290403 454.15484619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05290404 454.15484619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05290405 454.15490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05290406 454.15490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05290407 454.15490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05290408 454.15490723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05290409 454.15496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05290410 454.15496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05290411 454.15496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05290412 454.15496826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05290413 454.15499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05290414 454.15499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05290415 454.15499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05290416 454.15499878 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05290417 454.15505981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05290418 454.15505981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05290419 454.15505981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05290420 454.15505981 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05290421 454.15512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05290422 454.15512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05290423 454.15512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05290424 454.15512085 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05290425 454.15515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05290426 454.15515137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05290427 454.15521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05290428 454.15521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05290429 454.15521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05290430 454.15521240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05290431 454.15527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05290432 454.15527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05290433 454.15527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05290434 454.15527344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05290435 454.15530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05290436 454.15530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05290437 454.15530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05290438 454.15530396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05290439 454.15536499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05290440 454.15536499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05290441 454.15536499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05290442 454.15536499 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05290443 454.15542603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05290444 454.15542603 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05290445 454.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05290446 454.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05290447 454.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05290448 454.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05290449 454.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05290450 454.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05290451 454.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05290452 454.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05290453 454.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05290454 454.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05290455 454.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05290456 454.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05290457 454.15560913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05290458 454.15560913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05290459 454.15560913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05290460 454.15560913 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05290461 454.15567017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05290462 454.15567017 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05290463 454.15573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05290464 454.15573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05290465 454.15573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05290466 454.15573120 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05290467 454.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05290468 454.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05290469 454.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05290470 454.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05290471 454.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05290472 454.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05290473 454.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05290474 454.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05290475 454.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05290476 454.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05290477 454.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05290478 454.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05290479 454.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05290480 454.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05290481 454.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05290482 454.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05290483 454.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05290484 454.15597534 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05290485 454.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05290486 454.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05290487 454.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05290488 454.15603638 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05290489 454.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05290490 454.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05290491 454.15609741 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05290492 454.15612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05290493 454.15612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05290494 454.15612793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05290495 454.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05290496 454.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05290497 454.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05290498 454.15618896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05290499 454.15625000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05290500 454.15625000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05290501 454.15628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05290502 454.15628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05290503 454.15628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -05290504 454.15628052 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -05290505 454.15634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -05290506 454.15634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -05290507 454.15634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -05290508 454.15634155 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -05290509 454.15640259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -05290510 454.15640259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -05290511 454.15640259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -05290512 454.15640259 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -05290513 454.15643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -05290514 454.15643311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -05290515 454.15649414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -05290516 454.15649414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -05290517 454.15649414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -05290518 454.15649414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -05290519 454.15655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -05290520 454.15655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -05290521 454.15655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -05290522 454.15655518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -05290523 454.15658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -05290524 454.15658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -05290525 454.15658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -05290526 454.15658569 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -05290527 454.15664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -05290528 454.15664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -05290529 454.15664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -05290530 454.15664673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -05290531 454.15670776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -05290532 454.15670776 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -05290533 454.15673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -05290534 454.15673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -05290535 454.15673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -05290536 454.15673828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -05290537 454.15679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -05290538 454.15679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -05290539 454.15679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -05290540 454.15679932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -05290541 454.15686035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -05290542 454.15686035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -05290543 454.15686035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -05290544 454.15686035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -05290545 454.15689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -05290546 454.15689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -05290547 454.15689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -05290548 454.15689087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -05290549 454.15695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -05290550 454.15695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -05290551 454.15695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -05290552 454.15695190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -05290553 454.15701294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -05290554 454.15701294 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -05290555 454.15704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -05290556 454.15704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -05290557 454.15704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -05290558 454.15704346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -05290559 454.15710449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -05290560 454.15710449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -05290561 454.15710449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -05290562 454.15710449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -05290563 454.15716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -05290564 454.15716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -05290565 454.15716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -05290566 454.15716553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -05290567 454.15719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -05290568 454.15719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -05290569 454.15719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -05290570 454.15719604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -05290571 454.15725708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -05290572 454.15725708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -05290573 454.15725708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -05290574 454.15731812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -05290575 454.15731812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -05290576 454.15731812 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -05290577 454.15734863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -05290578 454.15734863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -05290579 454.15734863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -05290580 454.15734863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -05290581 454.15740967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -05290582 454.15740967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -05290583 454.15740967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -05290584 454.15740967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -05290585 454.15747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -05290586 454.15747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -05290587 454.15747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -05290588 454.15747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -05290589 454.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -05290590 454.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -05290591 454.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -05290592 454.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -05290593 454.15756226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -05290594 454.15756226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -05290595 454.15762329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -05290596 454.15762329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -05290597 454.15762329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -05290598 454.15762329 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -05290599 454.15768433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -05290600 454.15768433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -05290601 454.15768433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -05290602 454.15768433 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -05290603 454.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -05290604 454.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -05290605 454.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -05290606 454.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -05290607 454.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -05290608 454.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -05290609 454.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -05290610 454.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -05290611 454.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -05290612 454.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -05290613 454.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -05290614 454.15786743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -05290615 454.15786743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -05290616 454.15786743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -05290617 454.15792847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -05290618 454.15792847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -05290619 454.15792847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -05290620 454.15792847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -05290621 454.15798950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -05290622 454.15798950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -05290623 454.15798950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -05290624 454.15798950 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -05290625 454.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -05290626 454.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -05290627 454.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -05290628 454.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -05290629 454.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -05290630 454.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -05290631 454.15814209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -05290632 454.15814209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -05290633 454.15814209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -05290634 454.15814209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -05290635 454.15817261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -05290636 454.15817261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -05290637 454.15817261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -05290638 454.15817261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -05290639 454.15823364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -05290640 454.15823364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -05290641 454.15823364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -05290642 454.15823364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -05290643 454.15829468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -05290644 454.15829468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -05290645 454.15832520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -05290646 454.15832520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -05290647 454.15832520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -05290648 454.15832520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -05290649 454.15838623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -05290650 454.15838623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -05290651 454.15838623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -05290652 454.15838623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -05290653 454.15844727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -05290654 454.15844727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -05290655 454.15844727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -05290656 454.15844727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -05290657 454.15847778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -05290658 454.15847778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -05290659 454.15847778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -05290660 454.15853882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -05291211 454.16647339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -05291212 454.16647339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -05291213 454.16653442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -05291214 454.16653442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -05291215 454.16653442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -05291216 454.16653442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -05291217 454.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -05291218 454.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -05291219 454.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -05291220 454.16656494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -05291221 454.16662598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -05291222 454.16662598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -05291223 454.16668701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -05291224 454.16668701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -05291225 454.16668701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -05291226 454.16668701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -05291227 454.16674805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -05291228 454.16674805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -05291229 454.16674805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -05291230 454.16674805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -05291231 454.16677856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -05291232 454.16677856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -05291233 454.16677856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -05291234 454.16677856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -05291235 454.16683960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -05291236 454.16683960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -05291237 454.16683960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -05291238 454.16683960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -05291239 454.16690063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -05291240 454.16690063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -05291241 454.16693115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -05291242 454.16693115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -05291243 454.16693115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -05291244 454.16693115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -05291245 454.16699219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -05291246 454.16699219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -05291247 454.16699219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -05291248 454.16699219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -05291249 454.16705322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -05291250 454.16705322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -05291251 454.16705322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -05291252 454.16705322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -05291253 454.16708374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -05291254 454.16708374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -05310169 454.43789673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -05310170 454.43789673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -05310171 454.43789673 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -05310172 454.43792725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -05310173 454.43792725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -05310174 454.43792725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -05310175 454.43798828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -05310176 454.43798828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -05310177 454.43798828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -05310178 454.43798828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b168 -05310179 454.43804932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -05310180 454.43804932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b178 -05310181 454.43804932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -05310182 454.43804932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b188 -05310183 454.43807983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -05310184 454.43807983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b198 -05310185 454.43807983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -05310186 454.43807983 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1a8 -05310187 454.43814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -05310188 454.43814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1b8 -05310189 454.43814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -05310190 454.43814087 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1c8 -05310191 454.43820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -05310192 454.43820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1d8 -05310193 454.43820190 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -05310194 454.43823242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1e8 -05310195 454.43823242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f8 -05310196 454.43823242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b1f8 -05310197 454.43829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b208 -05310198 454.43829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b208 -05310199 454.43829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b218 -05310200 454.43829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b218 -05310201 454.43835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b228 -05310202 454.43835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b228 -05310203 454.43835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b238 -05310204 454.43835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b238 -05310205 454.43838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b248 -05310206 454.43838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b248 -05310207 454.43838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b258 -05310208 454.43838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b258 -05310209 454.43844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b268 -05310210 454.43844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b268 -05310211 454.43844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b278 -05310212 454.43844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b278 -05316155 454.52191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c38 -05316156 454.52191162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c38 -05316157 454.52197266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c48 -05316158 454.52197266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c48 -05316159 454.52197266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c58 -05316160 454.52197266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c58 -05316161 454.52200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c68 -05316162 454.52200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c68 -05316163 454.52200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c78 -05316164 454.52200317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c78 -05316165 454.52206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c88 -05316166 454.52206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c88 -05316167 454.52206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c98 -05316168 454.52206421 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c98 -05316169 454.52212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca8 -05316170 454.52212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ca8 -05316171 454.52212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb8 -05316172 454.52212524 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cb8 -05316173 454.52215576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc8 -05316174 454.52215576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cc8 -05316175 454.52221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd8 -05316176 454.52221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cd8 -05316177 454.52221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce8 -05316178 454.52221680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ce8 -05316179 454.52227783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf8 -05316180 454.52227783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36cf8 -05316181 454.52227783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d08 -05316182 454.52227783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d08 -05316183 454.52230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d18 -05316184 454.52230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d18 -05316185 454.52230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d28 -05316186 454.52230835 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d28 -05316187 454.52236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d38 -05316188 454.52236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d38 -05316189 454.52236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d48 -05316190 454.52236938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d48 -05316191 454.52243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d58 -05316192 454.52243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d58 -05316193 454.52243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d68 -05316194 454.52243042 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d68 -05316195 454.52246094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d78 -05316196 454.52246094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d78 -05316197 454.52252197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d88 -05316198 454.52252197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d88 -05322421 454.61001587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff8 -05322422 454.61001587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ff8 -05322423 454.61007690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43008 -05322424 454.61007690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43008 -05322425 454.61007690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43018 -05322426 454.61007690 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43018 -05322427 454.61013794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43028 -05322428 454.61013794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43028 -05322429 454.61013794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43038 -05322430 454.61013794 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43038 -05322431 454.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43048 -05322432 454.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43048 -05322433 454.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43058 -05322434 454.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43058 -05322435 454.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43068 -05322436 454.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43068 -05322437 454.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43078 -05322438 454.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43078 -05322439 454.61029053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43088 -05322440 454.61029053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43088 -05322441 454.61032104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43098 -05322442 454.61032104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43098 -05322443 454.61032104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a8 -05322444 454.61032104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430a8 -05322445 454.61038208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b8 -05322446 454.61038208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430b8 -05322447 454.61038208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c8 -05322448 454.61038208 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430c8 -05322449 454.61044312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d8 -05322450 454.61044312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430d8 -05322451 454.61044312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e8 -05322452 454.61044312 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430e8 -05322453 454.61047363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f8 -05322454 454.61047363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x430f8 -05322455 454.61047363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43108 -05322456 454.61047363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43108 -05322457 454.61053467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43118 -05322458 454.61053467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43118 -05322459 454.61053467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43128 -05322460 454.61059570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43128 -05322461 454.61059570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43138 -05322462 454.61059570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43138 -05322463 454.61062622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -05322464 454.61062622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43148 -05327729 454.68411255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d8 -05327730 454.68411255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d8 -05327731 454.68411255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e8 -05327732 454.68411255 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e8 -05327733 454.68417358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f8 -05327734 454.68417358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f8 -05327735 454.68417358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d608 -05327736 454.68417358 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d608 -05327737 454.68420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d618 -05327738 454.68420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d618 -05327739 454.68420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d628 -05327740 454.68420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d628 -05327741 454.68426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d638 -05327742 454.68426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d638 -05327743 454.68432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d648 -05327744 454.68432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d648 -05327745 454.68432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d658 -05327746 454.68432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d658 -05327747 454.68435669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d668 -05327748 454.68435669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d668 -05327749 454.68435669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d678 -05327750 454.68435669 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d678 -05327751 454.68441772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d688 -05327752 454.68441772 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d688 -05327753 454.68447876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d698 -05327754 454.68447876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d698 -05327755 454.68447876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a8 -05327756 454.68447876 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a8 -05327757 454.68450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b8 -05327758 454.68450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b8 -05327759 454.68450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c8 -05327760 454.68450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c8 -05327761 454.68457031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d8 -05327762 454.68457031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d8 -05327763 454.68457031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e8 -05327764 454.68457031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e8 -05327765 454.68463135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f8 -05327766 454.68463135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f8 -05327767 454.68463135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d708 -05327768 454.68466187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d708 -05327769 454.68466187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d718 -05327770 454.68466187 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d718 -05327771 454.68472290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d728 -05327772 454.68472290 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d728 -05330533 455.31289673 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05330534 455.33300781 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05330535 455.33300781 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05330536 456.13244629 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -05330537 456.13363647 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -05330538 456.33541870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05330539 456.33541870 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05330540 456.33544922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05330541 456.33544922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05330542 456.33551025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05330543 456.33551025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05330544 456.33551025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05330545 456.33551025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05330546 456.33557129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05330547 456.33557129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05330548 456.33557129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05330549 456.33557129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05330550 456.33560181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05330551 456.33560181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05330552 456.33560181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05330553 456.33560181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05330554 456.33566284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05330555 456.33566284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05330556 456.33566284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05330557 456.33566284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05330558 456.33572388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05330559 456.33572388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05330560 456.33572388 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05330561 456.33575439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05330562 456.33575439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05330563 456.33575439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05330564 456.33581543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05330565 456.33581543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05330566 456.33581543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05330567 456.33581543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05330568 456.33587646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05330569 456.33587646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05330570 456.33587646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05330571 456.33587646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05330572 456.33593750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05330573 456.33593750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05330574 456.33593750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05330575 456.33593750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05330576 456.33596802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05330577 456.33596802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05330578 456.33596802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05330579 456.33596802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05330580 456.33602905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05330581 456.33602905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05330582 456.33602905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05330583 456.33602905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05330584 456.33609009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05330585 456.33609009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05330586 456.33609009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05330587 456.33609009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05330588 456.33612061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05330589 456.33618164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05330590 456.33618164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05330591 456.33618164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05330592 456.33624268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05330593 456.33624268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05330594 456.33624268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05330595 456.33624268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05330596 456.33627319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05330597 456.33627319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05330598 456.33627319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05330599 456.33633423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05330600 456.33633423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05330601 456.33633423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05330602 456.33639526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05330603 456.33639526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05330604 456.33639526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05330605 456.33639526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05330606 456.33642578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05330607 456.33642578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05330608 456.33642578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05330609 456.33642578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05330610 456.33648682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05330611 456.33648682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05330612 456.33648682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05330613 456.33648682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05330614 456.33654785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05330615 456.33654785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05330616 456.33654785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05330617 456.33654785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05330618 456.33657837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05330619 456.33657837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05330620 456.33657837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05330621 456.33657837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05330622 456.33663940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05330623 456.33663940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05330624 456.33663940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05330625 456.33663940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05330626 456.33670044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05330627 456.33670044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05330628 456.33670044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05330629 456.33670044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05330630 456.33673096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05330631 456.33673096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05330632 456.33673096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05330633 456.33679199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05330634 456.33679199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05330635 456.33679199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05330636 456.33685303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05330637 456.33685303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05330638 456.33685303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05330639 456.33685303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05330640 456.33688354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05330641 456.33688354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05330642 456.33688354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05330643 456.33688354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05330644 456.33694458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05330645 456.33694458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05330646 456.33694458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05330647 456.33694458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05330648 456.33700562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05330649 456.33700562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05330650 456.33700562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05330651 456.33700562 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05330652 456.33703613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05330653 456.33703613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05330654 456.33703613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05330655 456.33703613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05330656 456.33709717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05330657 456.33709717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05330658 456.33715820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05330659 456.33715820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05330660 456.33718872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05330661 456.33718872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05330662 456.33724976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05330663 456.33724976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05330664 456.33724976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05330665 456.33724976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05330666 456.33731079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05330667 456.33731079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05330668 456.33731079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05330669 456.33731079 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05330670 456.33737183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05330671 456.33737183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05330672 456.33737183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05330673 456.33737183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05330674 456.33740234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05330675 456.33740234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05330676 456.33740234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05330677 456.33740234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05330678 456.33746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05330679 456.33746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05330680 456.33746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05330681 456.33746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05330682 456.33752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05330683 456.33752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05330684 456.33752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05330685 456.33752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05330686 456.33755493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05330687 456.33755493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05330688 456.33755493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05330689 456.33755493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05330690 456.33761597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05330691 456.33761597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05330692 456.33761597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05330693 456.33761597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05330694 456.33767700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05330695 456.33767700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05330696 456.33767700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05330697 456.33770752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05330698 456.33770752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05330699 456.33770752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05330700 456.33776855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05330701 456.33776855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05330702 456.33776855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05330703 456.33776855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05330704 456.33782959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05330705 456.33782959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05330706 456.33782959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05330707 456.33782959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05330708 456.33786011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05330709 456.33786011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05330710 456.33786011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05330711 456.33786011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05330712 456.33792114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05330713 456.33792114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05330714 456.33792114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05330715 456.33792114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05330716 456.33798218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05330717 456.33798218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05330718 456.33798218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05330719 456.33798218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05330720 456.33801270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05330721 456.33801270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05330722 456.33801270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05330723 456.33807373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05330724 456.33807373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05330725 456.33807373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05330726 456.33813477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05330727 456.33813477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05330728 456.33816528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05330729 456.33816528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05330730 456.33816528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05330731 456.33816528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05330732 456.33822632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05330733 456.33822632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05330734 456.33822632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05330735 456.33822632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05330736 456.33828735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05330737 456.33828735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05330738 456.33828735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05330739 456.33828735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05330740 456.33831787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05330741 456.33831787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05330742 456.33837891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05330743 456.33837891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05330744 456.33837891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05330745 456.33837891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05330746 456.33843994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05330747 456.33843994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05330748 456.33843994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05330749 456.33843994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05330750 456.33847046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05330751 456.33847046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05330752 456.33847046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05330753 456.33847046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05330754 456.33853149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05330755 456.33853149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05330756 456.33853149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05330757 456.33853149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05330758 456.33859253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05330759 456.33859253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05330760 456.33859253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05330761 456.33862305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05330762 456.33862305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05330763 456.33862305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05330764 456.33868408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05330765 456.33868408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05330766 456.33868408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05330767 456.33868408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05330768 456.33874512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05330769 456.33874512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05330770 456.33874512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05330771 456.33874512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05330772 456.33877563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05330773 456.33877563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05330774 456.33877563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05330775 456.33877563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05330776 456.33883667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05330777 456.33883667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05330778 456.33883667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05330779 456.33889771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05330780 456.33889771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05330781 456.33889771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05330782 456.33895874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05330783 456.33895874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05330784 456.33895874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05330785 456.33895874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05330786 456.33898926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05330787 456.33898926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05330788 456.33898926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05330789 456.33898926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05330790 456.33905029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05330791 456.33905029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05330792 456.33905029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05330793 456.33905029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05330794 456.33911133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05330795 456.33911133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05330796 456.33914185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05330797 456.33914185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05330798 456.33920288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05330799 456.33920288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05330800 456.33920288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05330801 456.33920288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05330802 456.33926392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05330803 456.33926392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05330804 456.33926392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05330805 456.33926392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05330806 456.33929443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05330807 456.33929443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05330808 456.33929443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05330809 456.33935547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05330810 456.33935547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05330811 456.33935547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05330812 456.33941650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05330813 456.33941650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05330814 456.33941650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05330815 456.33941650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05330816 456.33944702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05330817 456.33944702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05330818 456.33944702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05330819 456.33944702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05330820 456.33950806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05330821 456.33950806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05330822 456.33950806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05330823 456.33950806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05330824 456.33956909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05330825 456.33956909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05330826 456.33956909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05330827 456.33956909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05330828 456.33959961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05330829 456.33959961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05330830 456.33959961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05330831 456.33959961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05330832 456.33966064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05330833 456.33966064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05330834 456.33966064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05330835 456.33966064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05330836 456.33972168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05330837 456.33972168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05330838 456.33972168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05330839 456.33975220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05330840 456.33975220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05330841 456.33975220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05330842 456.33981323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05330843 456.33981323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05330844 456.33981323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05330845 456.33981323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05330846 456.33987427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05330847 456.33987427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05330848 456.33987427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05330849 456.33987427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05330850 456.33990479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05330851 456.33990479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05330852 456.33990479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05330853 456.33990479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05330854 456.33996582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05330855 456.33996582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05330856 456.33996582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05330857 456.33996582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05330858 456.34002686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05330859 456.34002686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05330860 456.34002686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05330861 456.34002686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05330862 456.34005737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05330863 456.34005737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05330864 456.34005737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05330865 456.34005737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05330866 456.34011841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05330867 456.34011841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05330868 456.34017944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05330869 456.34017944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05330870 456.34017944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05330871 456.34017944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05330872 456.34020996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05330873 456.34020996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05330874 456.34027100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05330875 456.34027100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05330876 456.34027100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05330877 456.34027100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05330878 456.34033203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05330879 456.34033203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05330880 456.34033203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05330881 456.34033203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05330882 456.34036255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05330883 456.34036255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05330884 456.34036255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05330885 456.34036255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05330886 456.34042358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05330887 456.34042358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05330888 456.34042358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05330889 456.34042358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05338028 456.44354248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -05338029 456.44354248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa50 -05338030 456.44360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -05338031 456.44360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa60 -05338032 456.44360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -05338033 456.44360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa70 -05338034 456.44363403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -05338035 456.44363403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa80 -05338036 456.44363403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -05338037 456.44363403 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa90 -05338038 456.44369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -05338039 456.44369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa0 -05338040 456.44369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -05338041 456.44369507 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab0 -05338042 456.44375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -05338043 456.44375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac0 -05338044 456.44375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -05338045 456.44375610 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad0 -05338046 456.44378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -05338047 456.44378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae0 -05338048 456.44378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -05338049 456.44384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf0 -05338050 456.44384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -05338051 456.44384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb00 -05338052 456.44390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -05338053 456.44390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb10 -05338054 456.44390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -05338055 456.44390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb20 -05338056 456.44396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -05338057 456.44396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb30 -05338058 456.44396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -05338059 456.44396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb40 -05338060 456.44400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -05338061 456.44400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb50 -05338062 456.44400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -05338063 456.44400024 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb60 -05338064 456.44412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -05338065 456.44412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb70 -05338066 456.44412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -05338067 456.44412231 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb80 -05338068 456.44415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -05338069 456.44415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb90 -05338070 456.44415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -05338071 456.44415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba0 -05343820 456.52670288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -05343821 456.52670288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af50 -05343822 456.52673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -05343823 456.52673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af60 -05343824 456.52679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -05343825 456.52679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af70 -05343826 456.52679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -05343827 456.52679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af80 -05343828 456.52685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -05343829 456.52685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af90 -05343830 456.52685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -05343831 456.52685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa0 -05343832 456.52688599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -05343833 456.52688599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb0 -05343834 456.52688599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -05343835 456.52688599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc0 -05343836 456.52694702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -05343837 456.52694702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd0 -05343838 456.52694702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -05343839 456.52694702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe0 -05343840 456.52700806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -05343841 456.52700806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff0 -05343842 456.52703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -05343843 456.52703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b000 -05343844 456.52703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -05343845 456.52703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b010 -05343846 456.52709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -05343847 456.52709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b020 -05343848 456.52709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -05343849 456.52709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b030 -05343850 456.52716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -05343851 456.52716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b040 -05343852 456.52716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -05343853 456.52716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b050 -05343854 456.52719116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -05343855 456.52719116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b060 -05343856 456.52719116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -05343857 456.52725220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b070 -05343858 456.52725220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -05343859 456.52725220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b080 -05343860 456.52731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -05343861 456.52731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b090 -05343862 456.52731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -05343863 456.52731323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a0 -05350010 456.61880493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -05350011 456.61880493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270c0 -05350012 456.61880493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -05350013 456.61880493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270d0 -05350014 456.61886597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -05350015 456.61886597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270e0 -05350016 456.61886597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -05350017 456.61886597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x270f0 -05350018 456.61889648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -05350019 456.61889648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27100 -05350020 456.61889648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -05350021 456.61889648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27110 -05350022 456.61895752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -05350023 456.61895752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27120 -05350024 456.61901855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -05350025 456.61901855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27130 -05350026 456.61904907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -05350027 456.61904907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -05350028 456.61904907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -05350029 456.61904907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -05350030 456.61911011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -05350031 456.61911011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -05350032 456.61911011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -05350033 456.61911011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -05350034 456.61917114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -05350035 456.61917114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -05350036 456.61917114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -05350037 456.61917114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -05350038 456.61920166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -05350039 456.61920166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -05350040 456.61920166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -05350041 456.61920166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -05350042 456.61926270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -05350043 456.61926270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -05350044 456.61932373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -05350045 456.61932373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -05350046 456.61932373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -05350047 456.61932373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -05350048 456.61935425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -05350049 456.61935425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x271f0 -05350050 456.61935425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -05350051 456.61935425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27200 -05350052 456.61941528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -05350053 456.61941528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27210 -05355334 456.69668579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -05355335 456.69668579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31720 -05355336 456.69668579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -05355337 456.69668579 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31730 -05355338 456.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -05355339 456.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31740 -05355340 456.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -05355341 456.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31750 -05355342 456.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -05355343 456.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31760 -05355344 456.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -05355345 456.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31770 -05355346 456.69683838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -05355347 456.69683838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31780 -05355348 456.69683838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -05355349 456.69686890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31790 -05355350 456.69686890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -05355351 456.69686890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a0 -05355352 456.69692993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -05355353 456.69692993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b0 -05355354 456.69692993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -05355355 456.69692993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c0 -05355356 456.69699097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -05355357 456.69699097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d0 -05355358 456.69699097 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -05355359 456.69705200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e0 -05355360 456.69705200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -05355361 456.69705200 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x317f0 -05355362 456.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -05355363 456.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31800 -05355364 456.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -05355365 456.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31810 -05355366 456.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -05355367 456.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31820 -05355368 456.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -05355369 456.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31830 -05355370 456.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -05355371 456.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31840 -05355372 456.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -05355373 456.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31850 -05355374 456.69723511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -05355375 456.69723511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31860 -05355376 456.69723511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -05355377 456.69723511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31870 -05371628 456.93231201 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -05371629 456.93231201 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51450 -05371630 456.93234253 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -05371631 456.93234253 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51460 -05371632 456.93234253 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -05371633 456.93234253 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51470 -05371634 456.93240356 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -05371635 456.93240356 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51480 -05371636 456.93246460 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -05371637 456.93246460 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51490 -05371638 456.93246460 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -05371639 456.93246460 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -05371640 456.93249512 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -05371641 456.93249512 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -05371642 456.93249512 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -05371643 456.93249512 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -05371644 456.93255615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -05371645 456.93255615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -05371646 456.93255615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -05371647 456.93255615 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -05371648 456.93261719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -05371649 456.93261719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -05371650 456.93261719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -05371651 456.93261719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -05371652 456.93264771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -05371653 456.93264771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -05371654 456.93264771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -05371655 456.93270874 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -05371656 456.93270874 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -05371657 456.93270874 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -05371658 456.93276978 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -05371659 456.93276978 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -05371660 456.93276978 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -05371661 456.93276978 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -05371662 456.93280029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -05371663 456.93280029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -05371664 456.93280029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -05371665 456.93280029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -05371666 456.93286133 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -05371667 456.93286133 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -05371668 456.93286133 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -05371669 456.93286133 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -05371670 456.93292236 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -05371671 456.93292236 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -05372432 457.22061157 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372433 457.22067261 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372434 457.22067261 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372435 457.22070313 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05372436 457.22082520 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372437 457.22082520 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05372438 457.22085571 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372439 457.22091675 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05372440 457.33462524 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05372441 457.35284424 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372442 457.35284424 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372443 459.35421753 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05372444 459.37213135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372445 459.37213135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372446 459.72302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05372447 459.72302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05372448 459.72305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05372449 459.72305298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05372450 459.72311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05372451 459.72311401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05372452 459.72317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05372453 459.72317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05372454 459.72317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05372455 459.72317505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05372456 459.72320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05372457 459.72320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05372458 459.72326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05372459 459.72326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05372460 459.72326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05372461 459.72332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05372462 459.72332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05372463 459.72332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05372464 459.72335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05372465 459.72335815 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05372466 459.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05372467 459.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05372468 459.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05372469 459.72341919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05372470 459.72348022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05372471 459.72348022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05372472 459.72351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05372473 459.72351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05372474 459.72357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05372475 459.72357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05372476 459.72363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05372477 459.72363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05372478 459.72363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05372479 459.72366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05372480 459.72366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05372481 459.72366333 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05372482 459.72372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05372483 459.72372437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05372484 459.72378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05372485 459.72378540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05372486 459.72381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05372487 459.72381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05372488 459.72387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05372489 459.72387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05372490 459.72387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05372491 459.72387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05372492 459.72393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05372493 459.72393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05372494 459.72396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05372495 459.72396851 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05372496 459.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05372497 459.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05372498 459.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05372499 459.72402954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05372500 459.72409058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05372501 459.72409058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05372502 459.72412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05372503 459.72412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05372504 459.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05372505 459.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05372506 459.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05372507 459.72418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05372508 459.72424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05372509 459.72424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05372510 459.72427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05372511 459.72427368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05372512 459.72433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05372513 459.72433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05372514 459.72433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05372515 459.72433472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05372516 459.72439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05372517 459.72439575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05372518 459.72445679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05372519 459.72445679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05372520 459.72448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05372521 459.72448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05372522 459.72454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05372523 459.72454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05372524 459.72454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05372525 459.72454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05372526 459.72460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05372527 459.72460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05372528 459.72463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05372529 459.72463989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05372530 459.72470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05372531 459.72470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05372532 459.72470093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05372533 459.72476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05372534 459.72476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05372535 459.72476196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05372536 459.72479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05372537 459.72479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05372538 459.72485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05372539 459.72485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05372540 459.72491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05372541 459.72491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05372542 459.72491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05372543 459.72491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05372544 459.72494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05372545 459.72494507 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05372546 459.72500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05372547 459.72500610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05372548 459.72506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05372549 459.72506714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05372550 459.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05372551 459.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05372552 459.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05372553 459.72509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05372554 459.72515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05372555 459.72515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05372556 459.72521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05372557 459.72521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05372558 459.72525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05372559 459.72525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05372560 459.72525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05372561 459.72525024 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05372562 459.72531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05372563 459.72531128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05372564 459.72537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05372565 459.72537231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05372566 459.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05372567 459.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05372568 459.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05372569 459.72540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05372570 459.72552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05372571 459.72552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05372572 459.72552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05372573 459.72555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05372574 459.72555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05372575 459.72555542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05372576 459.72561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05372577 459.72561646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05372578 459.72567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05372579 459.72567749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05372580 459.72570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05372581 459.72570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05372582 459.72570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05372583 459.72576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05372584 459.72576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05372585 459.72576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05372586 459.72583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05372587 459.72583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05372588 459.72586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05372589 459.72586060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05372590 459.72592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05372591 459.72592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05372592 459.72592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05372593 459.72592163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05372594 459.72598267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05372595 459.72598267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05372596 459.72604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05372597 459.72604370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05372598 459.72607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05372599 459.72607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05372600 459.72607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05372601 459.72613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05372602 459.72613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05372603 459.72613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05372604 459.72619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05372605 459.72619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05372606 459.72622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05372607 459.72622681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05372608 459.72628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05372609 459.72628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05372610 459.72628784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05372611 459.72634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05372612 459.72634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05372613 459.72634888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05372614 459.72637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05372615 459.72637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05372616 459.72644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05372617 459.72644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05372618 459.72644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05372619 459.72644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05372620 459.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05372621 459.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05372622 459.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05372623 459.72650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05372624 459.72653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05372625 459.72653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05372626 459.72653198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05372627 459.72659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05372628 459.72659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05372629 459.72659302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05372630 459.72665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05372631 459.72665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05372632 459.72665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05372633 459.72665405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05372634 459.72668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05372635 459.72668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05372636 459.72668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05372637 459.72668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05372638 459.72674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05372639 459.72674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05372640 459.72674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05372641 459.72674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05372642 459.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05372643 459.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05372644 459.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05372645 459.72680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05372646 459.72683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05372647 459.72683716 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05372648 459.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05372649 459.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05372650 459.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05372651 459.72689819 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372652 459.72689819 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05372653 459.72695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05372654 459.72695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05372655 459.72695923 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372656 459.72695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05372657 459.72695923 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05372658 459.72695923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05372659 459.72698975 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05372660 459.72698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05372661 459.72698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05372662 459.72698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05372663 459.72698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05372664 459.72705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05372665 459.72705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05372666 459.72705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05372667 459.72711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05372668 459.72711182 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372669 459.72711182 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05372670 459.72711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05372671 459.72711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05372672 459.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05372673 459.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05372674 459.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05372675 459.72714233 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05372676 459.72714233 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05372677 459.72720337 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05372678 459.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05372679 459.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05372680 459.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05372681 459.72720337 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05372682 459.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05372683 459.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05372684 459.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05372685 459.72726440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05372686 459.72729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05372687 459.72729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05372688 459.72729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05372689 459.72729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05372690 459.72735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05372691 459.72735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05372692 459.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05372693 459.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05372694 459.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05372695 459.72741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05372696 459.72744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05372697 459.72744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05372698 459.72744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05372699 459.72744751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05372700 459.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05372701 459.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05372702 459.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05372703 459.72750854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05372704 459.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05372705 459.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05372706 459.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05372707 459.72756958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05372708 459.72763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05372709 459.72763062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05372710 459.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05372711 459.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05372712 459.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05372713 459.72766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05372714 459.72772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05372715 459.72772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05372716 459.72772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05372717 459.72772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05372718 459.72778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05372719 459.72778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05372720 459.72778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05372721 459.72778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05372722 459.72781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05372723 459.72781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05372724 459.72781372 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05372725 459.72787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05372726 459.72787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05372727 459.72787476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05372728 459.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05372729 459.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05372730 459.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05372731 459.72793579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05372732 459.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05372733 459.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05372734 459.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05372735 459.72796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05372736 459.72802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05372737 459.72802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05372738 459.72802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05372739 459.72802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05372740 459.72808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05372741 459.72808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05372742 459.72811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05372743 459.72811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05372744 459.72811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05372745 459.72811890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05372746 459.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05372747 459.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05372748 459.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05372749 459.72817993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05372750 459.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05372751 459.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05372752 459.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05372753 459.72824097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05372754 459.72827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05372755 459.72827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05372756 459.72833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05372757 459.72833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05372758 459.72833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05372759 459.72833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05372760 459.72839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05372761 459.72839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05372762 459.72839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05372763 459.72839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05372764 459.72842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05372765 459.72842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05372766 459.72842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05372767 459.72842407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05372768 459.72848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05372769 459.72848511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05372770 459.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05372771 459.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05372772 459.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05372773 459.72854614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05372774 459.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05372775 459.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05372776 459.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05372777 459.72857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05372778 459.72863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05372779 459.72863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05372780 459.72863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05372781 459.72863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05372782 459.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05372783 459.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05372784 459.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05372785 459.72869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05372786 459.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05372787 459.72872925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05372788 459.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05372789 459.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05372790 459.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05372791 459.72879028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05372792 459.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05372793 459.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05372794 459.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05372795 459.72885132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05372796 459.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05372797 459.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05372798 459.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05372799 459.72888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05372800 459.72894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05372801 459.72894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05372802 459.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05372803 459.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05372804 459.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05372805 459.72900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05372806 459.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05372807 459.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05372808 459.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05372809 459.72903442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05372810 459.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05372811 459.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05372812 459.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05372813 459.72909546 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05372814 459.72915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05372815 459.72915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05372816 459.72915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05372817 459.72915649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05372818 459.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05372819 459.72921753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05372820 459.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05372821 459.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05372822 459.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05372823 459.72924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05372824 459.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05372825 459.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05372826 459.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05372827 459.72930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05372828 459.72937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05372829 459.72937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05372830 459.72937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05372831 459.72937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05372832 459.72940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05372833 459.72940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05372834 459.72940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05372835 459.72940063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05372836 459.72946167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05372837 459.72946167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05372838 459.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05372839 459.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05372840 459.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05372841 459.72952271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05372842 459.72955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05372843 459.72955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05372844 459.72955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05372845 459.72955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05372846 459.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05372847 459.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05372848 459.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05372849 459.72961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05372850 459.72967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05372851 459.72967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05372852 459.72967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05372853 459.72967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05372854 459.72970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05372855 459.72970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05372856 459.72970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05372857 459.72976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05372858 459.72976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05372859 459.72976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05372860 459.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05372861 459.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05372862 459.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05372863 459.72982788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05372864 459.72985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05372865 459.72985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05372866 459.72985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05372867 459.72985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05372868 459.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05372869 459.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05372870 459.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05372871 459.72991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05372872 459.72998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05372873 459.72998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05372874 459.73001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05372875 459.73001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05372876 459.73001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05372877 459.73001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05372878 459.73007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05372879 459.73007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05372880 459.73007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05372881 459.73007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05372882 459.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05372883 459.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05372884 459.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05372885 459.73013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05372886 459.73016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05372887 459.73016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05372888 459.73016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05372889 459.73016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05372890 459.73022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05372891 459.73022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05372892 459.73028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05372893 459.73028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05372894 459.73028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05372895 459.73028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05372896 459.73031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05372897 459.73031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05372898 459.73031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05372899 459.73031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05372900 459.73037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05372901 459.73037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05372902 459.73037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05372903 459.73037720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05372904 459.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05372905 459.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05372906 459.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05372907 459.73043823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05372908 459.73046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05372909 459.73046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05372910 459.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05372911 459.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05372912 459.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05372913 459.73052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05372914 459.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05372915 459.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05372916 459.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05372917 459.73059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05372918 459.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05372919 459.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05372920 459.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05372921 459.73065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05372922 459.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05372923 459.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05372924 459.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05372925 459.73068237 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05372926 459.73074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05372927 459.73074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05372928 459.73074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05372929 459.73074341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05372930 459.73080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05372931 459.73080444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05372932 459.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05372933 459.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05372934 459.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05372935 459.73083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05372936 459.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05372937 459.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05372938 459.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05372939 459.73089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05372940 459.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05372941 459.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05372942 459.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05372943 459.73095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05372944 459.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05372945 459.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05372946 459.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05372947 459.73098755 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05372948 459.73104858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05372949 459.73104858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05372950 459.73104858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05372951 459.73110962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05372952 459.73110962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05372953 459.73110962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05372954 459.73114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05372955 459.73114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05372956 459.73114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05372957 459.73114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05372958 459.73120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05372959 459.73120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05372960 459.73120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05372961 459.73120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05372962 459.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05372963 459.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05372964 459.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05372965 459.73126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05372966 459.73129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05372967 459.73129272 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05372968 459.73135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05372969 459.73135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05372970 459.73135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05372971 459.73135376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05372972 459.73141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05372973 459.73141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05372974 459.73141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05372975 459.73141479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05372976 459.73144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05372977 459.73144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05372978 459.73144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05372979 459.73144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05372980 459.73150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05372981 459.73150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05372982 459.73150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05372983 459.73156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05372984 459.73156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05372985 459.73156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05372986 459.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05372987 459.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05372988 459.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05372989 459.73159790 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05372990 459.73165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05372991 459.73165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05372992 459.73165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05372993 459.73165894 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05372994 459.73171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05372995 459.73171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05372996 459.73171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05372997 459.73171997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05372998 459.73175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05372999 459.73175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05373000 459.73181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05373001 459.73181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05373002 459.73181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05373003 459.73181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05373004 459.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05373005 459.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05373006 459.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05373007 459.73187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05373008 459.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05373009 459.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05373010 459.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05373011 459.73190308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05373012 459.73196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05373013 459.73196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05373014 459.73196411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05373015 459.73202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05373016 459.73202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05373017 459.73202515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05373018 459.73205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05373019 459.73205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05373020 459.73205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05373021 459.73205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05373022 459.73211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05373023 459.73211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05373024 459.73211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05373025 459.73211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05373026 459.73217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05373027 459.73217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05373028 459.73217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05373029 459.73217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05373030 459.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05373031 459.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05373032 459.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05373033 459.73223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05373034 459.73226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05373035 459.73226929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05373036 459.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05373037 459.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05373038 459.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05373039 459.73233032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05373040 459.73239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05373041 459.73239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05373042 459.73239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05373043 459.73239136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05373044 459.73242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05373045 459.73242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05373046 459.73242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05373047 459.73242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05373048 459.73248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05373049 459.73248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05373050 459.73254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05373051 459.73254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05373052 459.73254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05373053 459.73257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05373054 459.73257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05373055 459.73257446 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05373056 459.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05373057 459.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05373058 459.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05373059 459.73263550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05373060 459.73269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05373061 459.73269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05373062 459.73269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05373063 459.73269653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05373064 459.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05373065 459.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05373066 459.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05373067 459.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05373068 459.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05373069 459.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05373070 459.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05373071 459.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05373072 459.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05373073 459.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05373074 459.73287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05373075 459.73287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05373076 459.73287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05373077 459.73287964 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05373078 459.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05373079 459.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05373080 459.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05373081 459.73294067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05373082 459.73300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05373083 459.73300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05373084 459.73300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05373085 459.73300171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05373086 459.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05373087 459.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05373088 459.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05373089 459.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05373090 459.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05373091 459.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05373092 459.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05373093 459.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05373094 459.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05373095 459.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05373096 459.73318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05373097 459.73318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05373098 459.73318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05373099 459.73318481 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05373100 459.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05373101 459.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05373102 459.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05373103 459.73324585 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05373104 459.73330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05373105 459.73330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05373106 459.73330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05373107 459.73330688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05373108 459.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05373109 459.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05373110 459.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05373111 459.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05373112 459.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05373113 459.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05373114 459.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05373115 459.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05373116 459.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05373117 459.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05373118 459.73348999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05373119 459.73348999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05373120 459.73348999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05373121 459.73348999 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05373122 459.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05373123 459.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05373124 459.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05373125 459.73355103 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05373126 459.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05373127 459.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05373128 459.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05373129 459.73361206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05373130 459.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05373131 459.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05373132 459.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05373133 459.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05373134 459.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05373135 459.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05373136 459.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05373137 459.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05373138 459.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05373139 459.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05373140 459.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05373141 459.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05373142 459.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05373143 459.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05373144 459.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05373145 459.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05373146 459.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05373147 459.73385620 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05373148 459.73391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05373149 459.73391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05373150 459.73391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05373151 459.73391724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05373152 459.73397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05373153 459.73397827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05373154 459.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05373155 459.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05373156 459.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05373157 459.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05373158 459.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05373159 459.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05373160 459.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05373161 459.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05373162 459.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05373163 459.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05373164 459.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05373165 459.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05373166 459.73416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05373167 459.73416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05373168 459.73416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05373169 459.73416138 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05373170 459.73422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05373171 459.73422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05373172 459.73422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05373173 459.73422241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05373174 459.73428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05373175 459.73428345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05373176 459.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05373177 459.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05373178 459.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05373179 459.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05373180 459.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05373181 459.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05373182 459.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05373183 459.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05373184 459.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05373185 459.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05373186 459.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05373187 459.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05373188 459.73446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05373189 459.73446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05373190 459.73446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05373191 459.73446655 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05373192 459.73452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05373193 459.73452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05373194 459.73452759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05373195 459.73458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05373196 459.73458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05373197 459.73458862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05373198 459.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05373199 459.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05373200 459.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05373201 459.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05373202 459.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05373203 459.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05373204 459.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05373205 459.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05373206 459.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05373207 459.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05373208 459.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05373209 459.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05373210 459.73477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05373211 459.73477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05373212 459.73477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05373213 459.73477173 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05373214 459.73483276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05373215 459.73483276 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05373216 459.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05373217 459.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05373218 459.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05373219 459.73489380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05373220 459.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05373221 459.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05373222 459.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05373223 459.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05373224 459.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05373225 459.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05373226 459.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05373227 459.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05373228 459.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05373229 459.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05373230 459.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05373231 459.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05373232 459.73507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05373233 459.73507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05373234 459.73507690 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05373235 459.73513794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05373236 459.73513794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05373237 459.73513794 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05373238 459.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05373239 459.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05373240 459.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05373241 459.73519897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05373242 459.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05373243 459.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05373244 459.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05373245 459.73526001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05373246 459.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05373247 459.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05373248 459.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05373249 459.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05373250 459.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05373251 459.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05373252 459.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05373253 459.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05373254 459.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05373255 459.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05373256 459.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05373257 459.73544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05373258 459.73544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05373259 459.73544312 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05373260 459.73550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05373261 459.73550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05373262 459.73550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05373263 459.73550415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05373264 459.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05373265 459.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05373266 459.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05373267 459.73556519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05373268 459.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05373269 459.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05373270 459.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05373271 459.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05373272 459.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05373273 459.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05373274 459.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05373275 459.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05373276 459.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05373277 459.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05373278 459.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05373279 459.73574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05373280 459.73574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05373281 459.73574829 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05373282 459.73580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05373283 459.73580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05373284 459.73580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05373285 459.73580933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05373286 459.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05373287 459.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05373288 459.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05373289 459.73587036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05373290 459.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05373291 459.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05373292 459.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05373293 459.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05373294 459.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05373295 459.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05373296 459.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05373297 459.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05373298 459.73602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05373299 459.73602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05373300 459.73605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05373301 459.73605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05373302 459.73605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05373303 459.73605347 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05373304 459.73611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05373305 459.73611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05373306 459.73611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05373307 459.73611450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05373308 459.73617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05373309 459.73617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05373310 459.73617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05373311 459.73617554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05373312 459.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05373313 459.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05373314 459.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05373315 459.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05373316 459.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05373317 459.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05373318 459.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05373319 459.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05373320 459.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05373321 459.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05373322 459.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05373323 459.73635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05373324 459.73635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05373325 459.73635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05373326 459.73641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05373327 459.73641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05373328 459.73641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05373329 459.73641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05373330 459.73648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05373331 459.73648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05373332 459.73648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05373333 459.73648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05373334 459.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05373335 459.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05373336 459.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05373337 459.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05373338 459.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05373339 459.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05373340 459.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05373341 459.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05373342 459.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05373343 459.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05373344 459.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05373345 459.73666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05373346 459.73666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05373347 459.73666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05373348 459.73672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05373349 459.73672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05373350 459.73672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05373351 459.73672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05373352 459.73678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05373353 459.73678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05373354 459.73678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05373355 459.73678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05373356 459.73684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05373357 459.73684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05373358 459.73684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05373359 459.73684692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05373360 459.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05373361 459.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05373362 459.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05373363 459.73687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05373364 459.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05373365 459.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05373366 459.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05373367 459.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05373368 459.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05373369 459.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05387079 459.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d948 -05387080 459.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d958 -05387081 459.93307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d958 -05387082 459.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d968 -05387083 459.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d968 -05387084 459.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d978 -05387085 459.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d978 -05387086 459.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d988 -05387087 459.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d988 -05387088 459.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d998 -05387089 459.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d998 -05387090 459.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -05387091 459.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -05387092 459.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -05387093 459.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -05387094 459.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -05387095 459.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -05387096 459.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d8 -05387097 459.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d8 -05387098 459.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e8 -05387099 459.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e8 -05387100 459.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f8 -05387101 459.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f8 -05387102 459.93338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da08 -05387103 459.93338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da08 -05387104 459.93344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da18 -05387105 459.93344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da18 -05387106 459.93344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da28 -05387107 459.93344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da28 -05387108 459.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da38 -05387109 459.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da38 -05387110 459.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da48 -05387111 459.93350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da48 -05387112 459.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da58 -05387113 459.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da58 -05387114 459.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da68 -05387115 459.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da68 -05387116 459.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da78 -05387117 459.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da78 -05387118 459.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da88 -05387119 459.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da88 -05387120 459.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da98 -05387121 459.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da98 -05387122 459.93368530 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa8 -05392648 460.01104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28758 -05392649 460.01104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28758 -05392650 460.01104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28768 -05392651 460.01104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28768 -05392652 460.01110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28778 -05392653 460.01110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28778 -05392654 460.01110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28788 -05392655 460.01116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28788 -05392656 460.01116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28798 -05392657 460.01116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28798 -05392658 460.01119995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -05392659 460.01119995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -05392660 460.01119995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -05392661 460.01119995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -05392662 460.01126099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -05392663 460.01126099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -05392664 460.01126099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -05392665 460.01126099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -05392666 460.01132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -05392667 460.01132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -05392668 460.01132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -05392669 460.01132202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -05392670 460.01135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -05392671 460.01135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -05392672 460.01135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -05392673 460.01135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -05392674 460.01141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -05392675 460.01141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -05392676 460.01141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -05392677 460.01147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -05392678 460.01147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -05392679 460.01147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -05392680 460.01150513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -05392681 460.01150513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -05392682 460.01150513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -05392683 460.01150513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -05392684 460.01156616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -05392685 460.01156616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -05392686 460.01156616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -05392687 460.01156616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -05392688 460.01162720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -05392689 460.01162720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -05392690 460.01162720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -05392691 460.01162720 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -05398940 460.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf8 -05398941 460.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34bf8 -05398942 460.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c08 -05398943 460.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c08 -05398944 460.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c18 -05398945 460.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c18 -05398946 460.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c28 -05398947 460.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c28 -05398948 460.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c38 -05398949 460.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c38 -05398950 460.09927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c48 -05398951 460.09927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c48 -05398952 460.09927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -05398953 460.09927368 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c58 -05398954 460.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -05398955 460.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c68 -05398956 460.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c78 -05398957 460.09933472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c78 -05398958 460.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c88 -05398959 460.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c88 -05398960 460.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -05398961 460.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c98 -05398962 460.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -05398963 460.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ca8 -05398964 460.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -05398965 460.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cb8 -05398966 460.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -05398967 460.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cc8 -05398968 460.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd8 -05398969 460.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cd8 -05398970 460.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce8 -05398971 460.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ce8 -05398972 460.09957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf8 -05398973 460.09957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34cf8 -05398974 460.09957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d08 -05398975 460.09957886 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d08 -05398976 460.09963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d18 -05398977 460.09963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d18 -05398978 460.09963989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d28 -05398979 460.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d28 -05398980 460.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d38 -05398981 460.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d38 -05398982 460.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d48 -05398983 460.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d48 -05404314 460.17398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e8 -05404315 460.17398071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e8 -05404316 460.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f8 -05404317 460.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f8 -05404318 460.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f408 -05404319 460.17404175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f408 -05404320 460.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f418 -05404321 460.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f418 -05404322 460.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f428 -05404323 460.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f428 -05404324 460.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -05404325 460.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -05404326 460.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -05404327 460.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -05404328 460.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -05404329 460.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -05404330 460.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -05404331 460.17422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f468 -05404332 460.17422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -05404333 460.17422485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f478 -05404334 460.17428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -05404335 460.17428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f488 -05404336 460.17428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -05404337 460.17428589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f498 -05404338 460.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -05404339 460.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a8 -05404340 460.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -05404341 460.17434692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b8 -05404342 460.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -05404343 460.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c8 -05404344 460.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -05404345 460.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d8 -05404346 460.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -05404347 460.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e8 -05404348 460.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -05404349 460.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f8 -05404350 460.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -05404351 460.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f508 -05404352 460.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -05404353 460.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f518 -05404354 460.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -05404355 460.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f528 -05404356 460.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -05404357 460.17453003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f538 -05414340 461.09951782 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05414341 461.10018921 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05414342 461.37380981 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05414343 461.39285278 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414344 461.39285278 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414345 462.23422241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414346 462.23425293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414347 462.23425293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414348 462.23425293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05414349 462.23440552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414350 462.23440552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05414351 462.23446655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414352 462.23452759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05414353 463.39447021 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05414354 463.41336060 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414355 463.41336060 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414356 464.74066162 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414357 464.74072266 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414358 464.74075317 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05414359 464.74075317 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05414360 464.74087524 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414361 464.74087524 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05414362 464.74096680 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05414363 464.74096680 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05414364 465.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05414365 465.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05414366 465.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05414367 465.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05414368 465.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05414369 465.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05414370 465.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05414371 465.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05414372 465.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05414373 465.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05414374 465.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05414375 465.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05414376 465.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05414377 465.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05414378 465.31936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05414379 465.31936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05414380 465.31936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05414381 465.31936646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05414382 465.31942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05414383 465.31942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05414384 465.31942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05414385 465.31942749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05414386 465.31948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05414387 465.31948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05414388 465.31948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05414389 465.31948853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05414390 465.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05414391 465.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05414392 465.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05414393 465.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05414394 465.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05414395 465.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05414396 465.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05414397 465.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05414398 465.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05414399 465.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05414400 465.31967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05414401 465.31967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05414402 465.31967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05414403 465.31967163 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05414404 465.31973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05414405 465.31973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05414406 465.31973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05414407 465.31973267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05414408 465.31979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05414409 465.31979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05414410 465.31979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05414411 465.31979370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05414412 465.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05414413 465.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05414414 465.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05414415 465.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05414416 465.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05414417 465.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05414418 465.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05414419 465.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05414420 465.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05414421 465.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05414422 465.31997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05414423 465.31997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05414424 465.31997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05414425 465.31997681 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05414426 465.32003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05414427 465.32003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05414428 465.32003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05414429 465.32003784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05414430 465.32009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05414431 465.32009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05414432 465.32009888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05414433 465.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05414434 465.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05414435 465.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05414436 465.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05414437 465.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05414438 465.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05414439 465.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05414440 465.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05414441 465.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05414442 465.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05414443 465.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05414444 465.32028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05414445 465.32028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05414446 465.32028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05414447 465.32028198 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05414448 465.32034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05414449 465.32034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05414450 465.32034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05414451 465.32034302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05414452 465.32040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05414453 465.32040405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05414454 465.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05414455 465.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05414456 465.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05414457 465.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05414458 465.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05414459 465.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05414460 465.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05414461 465.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05414462 465.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05414463 465.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05414464 465.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05414465 465.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05414466 465.32058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05414467 465.32058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05414468 465.32058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05414469 465.32058716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05414470 465.32064819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05414471 465.32064819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05414472 465.32070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05414473 465.32070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05414474 465.32070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05414475 465.32070923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05414476 465.32077026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05414477 465.32077026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05414478 465.32077026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05414479 465.32077026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05414480 465.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05414481 465.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05414482 465.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05414483 465.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05414484 465.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05414485 465.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05414486 465.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05414487 465.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05414488 465.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05414489 465.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05414490 465.32095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05414491 465.32095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05414492 465.32095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05414493 465.32095337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05414494 465.32101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05414495 465.32101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05414496 465.32101440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05414497 465.32107544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05414498 465.32107544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05414499 465.32107544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05414500 465.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05414501 465.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05414502 465.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05414503 465.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05414504 465.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05414505 465.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05414506 465.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05414507 465.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05414508 465.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05414509 465.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05414510 465.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05414511 465.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05414512 465.32125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05414513 465.32125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05414514 465.32125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05414515 465.32125854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05414516 465.32131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05414517 465.32131958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05414518 465.32138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05414519 465.32138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05414520 465.32138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05414521 465.32138062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05414522 465.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05414523 465.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05414524 465.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05414525 465.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05414526 465.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05414527 465.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05414528 465.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05414529 465.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05414530 465.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05414531 465.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05414532 465.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05414533 465.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05414534 465.32156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05414535 465.32156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05414536 465.32156372 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05414537 465.32162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05414538 465.32162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05414539 465.32162476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05414540 465.32168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05414541 465.32168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05414542 465.32168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05414543 465.32168579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05414544 465.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05414545 465.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05414546 465.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05414547 465.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05414548 465.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05414549 465.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05414550 465.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05414551 465.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05414552 465.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05414553 465.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05414554 465.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05414555 465.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05414556 465.32186890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05414557 465.32186890 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05414558 465.32192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05414559 465.32192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05414560 465.32192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05414561 465.32192993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05414562 465.32199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05414563 465.32199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05414564 465.32199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05414565 465.32199097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05414566 465.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05414567 465.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05414568 465.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05414569 465.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05414570 465.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05414571 465.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05414572 465.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05414573 465.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05414574 465.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05414575 465.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05414576 465.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05414577 465.32217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05414578 465.32217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05414579 465.32217407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05414580 465.32223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05414581 465.32223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05414582 465.32223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05414583 465.32223511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05414584 465.32229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05414585 465.32229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05414586 465.32229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05414587 465.32229614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05414588 465.32235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05414589 465.32235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05414590 465.32235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05414591 465.32235718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05414592 465.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05414593 465.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05414594 465.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05414595 465.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05414596 465.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05414597 465.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05414598 465.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05414599 465.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05414600 465.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05414601 465.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05414602 465.32254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05414603 465.32254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05414604 465.32254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05414605 465.32254028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05414606 465.32260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05414607 465.32260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05414608 465.32260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05414609 465.32260132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05414610 465.32266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05414611 465.32266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05414612 465.32266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05414613 465.32266235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05414614 465.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05414615 465.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05414616 465.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05414617 465.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05414618 465.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05414619 465.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05414620 465.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05414621 465.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05414622 465.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05414623 465.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05414624 465.32284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05414625 465.32284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05414626 465.32284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05414627 465.32284546 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05414628 465.32290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05414629 465.32290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05414630 465.32290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05414631 465.32290649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05414632 465.32296753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05414633 465.32296753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05414634 465.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05414635 465.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05414636 465.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05414637 465.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05414638 465.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05414639 465.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05414640 465.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05414641 465.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05414642 465.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05414643 465.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05414644 465.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05414645 465.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05414646 465.32315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05414647 465.32315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05414648 465.32315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05414649 465.32315063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05414650 465.32321167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05414651 465.32321167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05414652 465.32327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05414653 465.32327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05414654 465.32327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05414655 465.32327271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05414656 465.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05414657 465.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05414658 465.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05414659 465.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05414660 465.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05414661 465.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05414662 465.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05414663 465.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05414664 465.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05414665 465.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05414666 465.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05414667 465.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05414668 465.32345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05414669 465.32345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05414670 465.32345581 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05414671 465.32351685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05414672 465.32351685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05414673 465.32351685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05414674 465.32357788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05414675 465.32357788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05414676 465.32357788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05414677 465.32357788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05414678 465.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05414679 465.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05414680 465.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05414681 465.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05414682 465.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05414683 465.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05414684 465.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05414685 465.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05414686 465.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05414687 465.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05414688 465.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05414689 465.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05414690 465.32376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05414691 465.32376099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05414692 465.32382202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05414693 465.32382202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05414694 465.32382202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05414695 465.32382202 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05414696 465.32388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05414697 465.32388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05414698 465.32388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05414699 465.32388306 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05414700 465.32394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05414701 465.32394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05414702 465.32394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05414703 465.32394409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05414704 465.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05414705 465.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05414706 465.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05414707 465.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05414708 465.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05414709 465.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05414710 465.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05414711 465.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05414712 465.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05414713 465.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05414714 465.32412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05414715 465.32412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05414716 465.32412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05414717 465.32412720 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05414718 465.32418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05414719 465.32418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05414720 465.32418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05414721 465.32418823 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05414722 465.32424927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05414723 465.32424927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05414724 465.32424927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05414725 465.32424927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05414726 465.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05414727 465.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05414728 465.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05414729 465.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05414730 465.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05414731 465.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05414732 465.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05414733 465.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05414734 465.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05414735 465.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05414736 465.32443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05414737 465.32443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05414738 465.32443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05414739 465.32443237 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05414740 465.32449341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05414741 465.32449341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05414742 465.32449341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05414743 465.32449341 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05414744 465.32455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05414745 465.32455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05414746 465.32455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05414747 465.32455444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05414748 465.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05414749 465.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05414750 465.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05414751 465.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05414752 465.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05414753 465.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05414754 465.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05414755 465.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05414756 465.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05414757 465.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05414758 465.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05414759 465.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05414760 465.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05414761 465.32473755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05414762 465.32479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05414763 465.32479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05414764 465.32479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05414765 465.32479858 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05414766 465.32485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05414767 465.32485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05414768 465.32485962 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05414769 465.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05414770 465.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05414771 465.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05414772 465.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05414773 465.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05414774 465.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05414775 465.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05414776 465.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05414777 465.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05414778 465.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05414779 465.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05414780 465.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05414781 465.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05414782 465.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05414783 465.32504272 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05414784 465.32510376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05414785 465.32510376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05414786 465.32510376 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05414787 465.32516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05414788 465.32516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05414789 465.32516479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05414790 465.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05414791 465.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05414792 465.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05414793 465.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05414794 465.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05414795 465.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05414796 465.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05414797 465.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05414798 465.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05414799 465.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05414800 465.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05414801 465.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05414802 465.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05414803 465.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05414804 465.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05414805 465.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05414806 465.32540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05414807 465.32540894 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05414808 465.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05414809 465.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05414810 465.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05414811 465.32546997 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05414812 465.32553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05414813 465.32553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05414814 465.32553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05414815 465.32553101 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05414816 465.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05414817 465.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05414818 465.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05414819 465.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05414820 465.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05414821 465.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05414822 465.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05414823 465.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05414824 465.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05414825 465.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05414826 465.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05414827 465.32571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05414828 465.32571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05414829 465.32571411 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05414830 465.32577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05414831 465.32577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05414832 465.32577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05414833 465.32577515 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05414834 465.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05414835 465.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05414836 465.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05414837 465.32583618 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05414838 465.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05414839 465.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05414840 465.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05414841 465.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05414842 465.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05414843 465.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05414844 465.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05414845 465.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05414846 465.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05414847 465.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05414848 465.32601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05414849 465.32601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05414850 465.32601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05414851 465.32601929 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05414852 465.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05414853 465.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05414854 465.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05414855 465.32608032 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05414856 465.32614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05414857 465.32614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05414858 465.32614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05414859 465.32614136 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05414860 465.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05414861 465.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05414862 465.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05414863 465.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05414864 465.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05414865 465.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05414866 465.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05414867 465.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05414868 465.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05414869 465.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05414870 465.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05414871 465.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05414872 465.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05414873 465.32632446 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05414874 465.32638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05414875 465.32638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05414876 465.32638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05414877 465.32638550 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05414878 465.32644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05414879 465.32644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05414880 465.32644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05414881 465.32644653 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05414882 465.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05414883 465.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05414884 465.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05414885 465.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05414886 465.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05414887 465.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05414888 465.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05414889 465.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05414890 465.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05414891 465.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05414892 465.32662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05414893 465.32662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05414894 465.32662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05414895 465.32662964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05414896 465.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05414897 465.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05414898 465.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05414899 465.32669067 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05414900 465.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05414901 465.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05414902 465.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05414903 465.32675171 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05414904 465.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05414905 465.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05414906 465.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05414907 465.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05414908 465.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05414909 465.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05414910 465.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05414911 465.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05414912 465.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05414913 465.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05414914 465.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05414915 465.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05414916 465.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05414917 465.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05414918 465.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05414919 465.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05414920 465.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05414921 465.32699585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05414922 465.32705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05414923 465.32705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05414924 465.32705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05414925 465.32705688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05414926 465.32711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05414927 465.32711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05414928 465.32711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05414929 465.32711792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05414930 465.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05414931 465.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05414932 465.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05414933 465.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05414934 465.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05414935 465.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05414936 465.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05414937 465.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05414938 465.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05414939 465.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05414940 465.32730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05414941 465.32730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05414942 465.32730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05414943 465.32730103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05414944 465.32736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05414945 465.32736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05414946 465.32736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05414947 465.32736206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05414948 465.32742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05414949 465.32742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05414950 465.32742310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05414951 465.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05414952 465.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05414953 465.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05414954 465.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05414955 465.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05414956 465.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05414957 465.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05414958 465.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05414959 465.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05414960 465.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05414961 465.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05414962 465.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05414963 465.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05414964 465.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05414965 465.32760620 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05414966 465.32766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05414967 465.32766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05414968 465.32766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05414969 465.32766724 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05414970 465.32772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05414971 465.32772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05414972 465.32772827 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05414973 465.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05414974 465.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05414975 465.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05414976 465.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05414977 465.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05414978 465.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05414979 465.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05414980 465.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05414981 465.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05414982 465.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05414983 465.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05414984 465.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05414985 465.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05414986 465.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05414987 465.32791138 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05414988 465.32797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05414989 465.32797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05414990 465.32797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05414991 465.32797241 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05414992 465.32803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05414993 465.32803345 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05414994 465.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05414995 465.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05414996 465.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05414997 465.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05414998 465.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05414999 465.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05415000 465.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05415001 465.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05415002 465.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05415003 465.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05415004 465.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05415005 465.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05415006 465.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05415007 465.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05415008 465.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05415009 465.32821655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05415010 465.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05415011 465.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05415012 465.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05415013 465.32827759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05415014 465.32833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05415015 465.32833862 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05415016 465.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05415017 465.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05415018 465.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05415019 465.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05415020 465.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05415021 465.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05415022 465.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05415023 465.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05415024 465.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05415025 465.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05415026 465.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05415027 465.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05415028 465.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05415029 465.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05415030 465.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05415031 465.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05415032 465.32858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05415033 465.32858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05415034 465.32858276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05415035 465.32864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05415036 465.32864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05415037 465.32864380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05415038 465.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05415039 465.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05415040 465.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05415041 465.32870483 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05415042 465.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05415043 465.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05415044 465.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05415045 465.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05415046 465.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05415047 465.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05415048 465.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05415049 465.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05415050 465.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05415051 465.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05415052 465.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05415053 465.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05415054 465.32888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05415055 465.32888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05415056 465.32888794 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05415057 465.32894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05415058 465.32894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05415059 465.32894897 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05415060 465.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05415061 465.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05415062 465.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05415063 465.32901001 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05415064 465.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05415065 465.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05415066 465.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05415067 465.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05415068 465.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05415069 465.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05415070 465.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05415071 465.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05415072 465.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05415073 465.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05415074 465.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05415075 465.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05415076 465.32919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05415077 465.32919312 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05415078 465.32925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05415079 465.32925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05415080 465.32925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05415081 465.32925415 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05415082 465.32931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05415083 465.32931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05415084 465.32931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05415085 465.32931519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05415086 465.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05415087 465.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05415088 465.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05415089 465.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05415090 465.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05415091 465.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05415092 465.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05415093 465.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05415094 465.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05415095 465.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05415096 465.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05415097 465.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05415098 465.32949829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05415099 465.32949829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05415100 465.32955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05415101 465.32955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05415102 465.32955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05415103 465.32955933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05415104 465.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05415105 465.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05415106 465.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05415107 465.32962036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05415108 465.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05415109 465.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05415110 465.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05415111 465.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05415112 465.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05415113 465.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05415114 465.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05415115 465.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05415116 465.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05415117 465.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05415118 465.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05415119 465.32980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05415120 465.32980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05415121 465.32980347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05415122 465.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05415123 465.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05415124 465.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05415125 465.32986450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05415126 465.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05415127 465.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05415128 465.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05415129 465.32992554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05415130 465.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05415131 465.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05415132 465.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05415133 465.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05415134 465.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05415135 465.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05415136 465.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05415137 465.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05415138 465.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05415139 465.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05415140 465.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05415141 465.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05415142 465.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05415143 465.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05415144 465.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05415145 465.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05415146 465.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05415147 465.33016968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05415148 465.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05415149 465.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05415150 465.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05415151 465.33023071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05415152 465.33029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05415153 465.33029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05415154 465.33029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05415155 465.33029175 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05415156 465.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05415157 465.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05415158 465.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05415159 465.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05415160 465.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05415161 465.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05415162 465.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05415163 465.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05415164 465.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05415165 465.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05415166 465.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05415167 465.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05415168 465.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05415169 465.33047485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05415170 465.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05415171 465.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05415172 465.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05415173 465.33053589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05415174 465.33059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05415175 465.33059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05415176 465.33059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05415177 465.33059692 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05415178 465.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05415179 465.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05415180 465.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05415181 465.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05415182 465.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05415183 465.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05415184 465.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05415185 465.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05415186 465.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05415187 465.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05415188 465.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05415189 465.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05415190 465.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05415191 465.33078003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05415192 465.33084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05415193 465.33084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05415194 465.33084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05415195 465.33084106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05415196 465.33090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05415197 465.33090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05415198 465.33090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05415199 465.33090210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05415200 465.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05415201 465.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05415202 465.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05415203 465.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05415204 465.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05415205 465.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05415206 465.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05415207 465.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05415208 465.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05415209 465.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05415210 465.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05415211 465.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05415212 465.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05415213 465.33108521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05415214 465.33114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05415215 465.33114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05415216 465.33114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05415217 465.33114624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05415218 465.33120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05415219 465.33120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05415220 465.33120728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05415221 465.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05415222 465.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05415223 465.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05415224 465.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05415225 465.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05415226 465.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05415227 465.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05415228 465.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05415229 465.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05415230 465.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05415231 465.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05415232 465.33139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05415233 465.33139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05415234 465.33139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05415235 465.33139038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05415236 465.33145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05415237 465.33145142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05415238 465.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05415239 465.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05415240 465.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05415241 465.33151245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05415242 465.33157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05415243 465.33157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05415244 465.33157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05415245 465.33157349 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05415246 465.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05415247 465.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05415248 465.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05415249 465.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05415250 465.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05415251 465.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05415252 465.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05415253 465.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05415254 465.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05415255 465.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05415256 465.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05415257 465.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05415258 465.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05415259 465.33175659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05415260 465.33181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05415261 465.33181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05415262 465.33181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05415263 465.33181763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05415264 465.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05415265 465.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05415266 465.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05415267 465.33187866 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05415268 465.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05415269 465.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05415270 465.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05415271 465.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05415272 465.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05415273 465.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05415274 465.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05415275 465.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05415276 465.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05415277 465.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05415278 465.33206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05415279 465.33206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05415280 465.33206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05415281 465.33206177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05415282 465.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05415283 465.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05415284 465.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05415285 465.33212280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05415286 465.33218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05415287 465.33218384 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05415288 465.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05415289 465.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05415290 465.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05415291 465.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05415292 465.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05415293 465.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05415294 465.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05415295 465.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05415296 465.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05415297 465.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05415298 465.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05415299 465.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05415300 465.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05415301 465.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05415302 465.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05415303 465.33236694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05415304 465.33242798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05415305 465.33242798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05415306 465.33242798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05415307 465.33242798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05415308 465.33248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05415309 465.33248901 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05415310 465.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05415311 465.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05415312 465.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05415313 465.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05415314 465.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05415315 465.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05415316 465.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05415317 465.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05415318 465.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05415319 465.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05415320 465.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05415321 465.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05415322 465.33267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05415323 465.33267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05415324 465.33267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05415325 465.33267212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05415326 465.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05415327 465.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05415328 465.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05415329 465.33273315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05415330 465.33279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05415331 465.33279419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05415332 465.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05415333 465.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05415334 465.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05415335 465.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05415336 465.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05415337 465.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05415338 465.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05415339 465.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05415340 465.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05415341 465.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05415342 465.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05415343 465.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05415344 465.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05415345 465.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05415346 465.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05415347 465.33297729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05415348 465.33303833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05415349 465.33303833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05415350 465.33303833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05415351 465.33309937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05415352 465.33309937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05415353 465.33309937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05415354 465.33316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05415355 465.33316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05415356 465.33316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05415357 465.33316040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05415358 465.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05415359 465.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05415360 465.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05415361 465.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05415362 465.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05415363 465.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05415364 465.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05415365 465.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05415366 465.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05415367 465.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05415368 465.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05415369 465.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05415370 465.33334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05415371 465.33334351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05415372 465.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05415373 465.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05415374 465.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05415375 465.33340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05415376 465.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05415377 465.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05415378 465.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05415379 465.33346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05415380 465.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05415381 465.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05415382 465.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05415383 465.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05415384 465.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05415385 465.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05415386 465.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05415387 465.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05415388 465.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05415389 465.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05415390 465.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05415391 465.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05415392 465.33364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05415393 465.33364868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05415394 465.33370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05415395 465.33370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05415396 465.33370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05415397 465.33370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05415398 465.33377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05415399 465.33377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05415400 465.33377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05415401 465.33377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05415402 465.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05415403 465.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05415404 465.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05415405 465.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05415406 465.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05415407 465.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05415408 465.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05415409 465.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05415410 465.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05415411 465.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05415412 465.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05415413 465.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05415414 465.33395386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05415415 465.33395386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05415416 465.33401489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05415417 465.33401489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05415418 465.33401489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05415419 465.33401489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05415420 465.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05415421 465.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05415422 465.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05415423 465.33407593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05415424 465.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05415425 465.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05415426 465.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05415427 465.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05415428 465.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05415429 465.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05415430 465.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05415431 465.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05415432 465.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05415433 465.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05415434 465.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05415435 465.33425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05415436 465.33425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05415437 465.33425903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05415438 465.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05415439 465.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05415440 465.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05415441 465.33432007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05415442 465.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05415443 465.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05415444 465.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05415445 465.33438110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05415446 465.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05415447 465.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05415448 465.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05415449 465.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05415450 465.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05415451 465.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05415452 465.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05415453 465.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05415454 465.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05415455 465.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05415456 465.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05415457 465.33456421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05415458 465.33456421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05415459 465.33456421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05415460 465.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05415461 465.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05415462 465.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05415463 465.33462524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05415464 465.33468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05415465 465.33468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05415466 465.33468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05415467 465.33468628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05415468 465.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05415469 465.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05415470 465.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05415471 465.33474731 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05415472 465.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05415473 465.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05415474 465.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05415475 465.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05415476 465.33483887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05415477 465.33483887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05415478 465.33483887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05415479 465.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05415480 465.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05415481 465.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05415482 465.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05415483 465.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05415484 465.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05415485 465.33493042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05415486 465.33499146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05415487 465.33499146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05415488 465.33499146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05415489 465.33499146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05415490 465.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05415491 465.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05415492 465.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05415493 465.33505249 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05415494 465.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05415495 465.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05415496 465.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05415497 465.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05415498 465.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05415499 465.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05415500 465.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05415501 465.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05415502 465.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05415503 465.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05415504 465.33523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05415505 465.33523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05415506 465.33523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05415507 465.33523560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05415508 465.33529663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05415509 465.33529663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05415510 465.33529663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05415511 465.33529663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05415512 465.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05415513 465.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05415514 465.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05415515 465.33535767 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05415516 465.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05415517 465.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05415518 465.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05415519 465.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05415520 465.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05415521 465.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05415522 465.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05415523 465.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05415524 465.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05415525 465.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05415526 465.33554077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05415527 465.33554077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05415528 465.33554077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05415529 465.33554077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05415530 465.33560181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05415531 465.33560181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05415532 465.33560181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05415533 465.33560181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05415534 465.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05415535 465.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05415536 465.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05415537 465.33566284 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05415538 465.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05415539 465.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05415540 465.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05415541 465.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05415542 465.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05415543 465.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05415544 465.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05415545 465.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05415546 465.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05415547 465.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05415548 465.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05415549 465.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05415550 465.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05415551 465.33584595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05415552 465.33590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05415553 465.33590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05415554 465.33590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05415555 465.33590698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05415556 465.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05415557 465.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05415558 465.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05415559 465.33596802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05415560 465.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05415561 465.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05415562 465.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05415563 465.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05415564 465.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05415565 465.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05415566 465.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05415567 465.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05415568 465.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05415569 465.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05415570 465.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05415571 465.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05415572 465.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05415573 465.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05415574 465.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05415575 465.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05415576 465.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05415577 465.33621216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05415578 465.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05415579 465.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05415580 465.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05415581 465.33627319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05415582 465.33633423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05415583 465.33633423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05415584 465.33633423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05415585 465.33633423 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05415586 465.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05415587 465.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05415588 465.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05415589 465.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05415590 465.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05415591 465.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05415592 465.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05415593 465.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05415594 465.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05415595 465.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05415596 465.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05415597 465.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05415598 465.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05415599 465.33651733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05415600 465.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05415601 465.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05415602 465.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05415603 465.33657837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05415604 465.33663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05415605 465.33663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05415606 465.33663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05415607 465.33663940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05415608 465.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05415609 465.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05415610 465.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05415611 465.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05415612 465.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05415613 465.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05415614 465.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05415615 465.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05415616 465.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05415617 465.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05415618 465.33682251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05415619 465.33682251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05415620 465.33682251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05415621 465.33682251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05415622 465.33688354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05415623 465.33688354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05415624 465.33688354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05415625 465.33688354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05415626 465.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05415627 465.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05415628 465.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05415629 465.33694458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05415630 465.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05415631 465.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05415632 465.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05415633 465.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05415634 465.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05415635 465.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05415636 465.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05415637 465.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05415638 465.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05415639 465.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05415640 465.33712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05415641 465.33712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05415642 465.33712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05415643 465.33712769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05415644 465.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05415645 465.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05415646 465.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05415647 465.33718872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05415648 465.33724976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05415649 465.33724976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05415650 465.33724976 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05415651 465.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05415652 465.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05415653 465.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05415654 465.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05415655 465.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05415656 465.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05415657 465.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05415658 465.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05415659 465.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05415660 465.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05415661 465.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05415662 465.33743286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05415663 465.33743286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05415664 465.33743286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05415665 465.33743286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05415666 465.33749390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05415667 465.33749390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05415668 465.33749390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05415669 465.33749390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05415670 465.33755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05415671 465.33755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05415672 465.33755493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05415673 465.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05415674 465.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05415675 465.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05415676 465.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05415677 465.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05415678 465.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05415679 465.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05415680 465.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05415681 465.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05415682 465.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05415683 465.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05415684 465.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05415685 465.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05415686 465.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05415687 465.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05415688 465.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05415689 465.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05415690 465.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05415691 465.33779907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05415692 465.33786011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05415693 465.33786011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05415694 465.33792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05415695 465.33792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05415696 465.33792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05415697 465.33792114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05415698 465.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05415699 465.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05415700 465.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05415701 465.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05415702 465.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05415703 465.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05415704 465.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05415705 465.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05415706 465.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05415707 465.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05415708 465.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05415709 465.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05415710 465.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05415711 465.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05415712 465.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05415713 465.33810425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05415714 465.33816528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05415715 465.33816528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05415716 465.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05415717 465.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05415718 465.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05415719 465.33822632 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05415720 465.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05415721 465.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05415722 465.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05415723 465.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05415724 465.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05415725 465.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05415726 465.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05415727 465.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05415728 465.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05415729 465.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05415730 465.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05415731 465.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05415732 465.33840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05415733 465.33840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05415734 465.33840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05415735 465.33840942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05415736 465.33847046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05415737 465.33847046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05415738 465.33853149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05415739 465.33853149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05415740 465.33853149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05415741 465.33853149 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05415742 465.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05415743 465.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05415744 465.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05415745 465.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05415746 465.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05415747 465.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05415748 465.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05415749 465.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05415750 465.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05415751 465.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05415752 465.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05415753 465.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05415754 465.33871460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05415755 465.33871460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05415756 465.33871460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05415757 465.33871460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05415758 465.33877563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05415759 465.33877563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05415760 465.33883667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05415761 465.33883667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05415762 465.33883667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05415763 465.33883667 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05415764 465.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05415765 465.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05415766 465.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05415767 465.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05415768 465.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05415769 465.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05415770 465.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05415771 465.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05415772 465.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05415773 465.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05415774 465.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05415775 465.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05415776 465.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05415777 465.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05415778 465.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05415779 465.33901978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05415780 465.33908081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05415781 465.33908081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05415782 465.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05415783 465.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05415784 465.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05415785 465.33914185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05415786 465.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05415787 465.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05415788 465.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05415789 465.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05415790 465.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05415791 465.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05415792 465.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05415793 465.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05415794 465.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05415795 465.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05415796 465.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05415797 465.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05415798 465.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05415799 465.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05415800 465.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05415801 465.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05415802 465.33938599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05415803 465.33938599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05415804 465.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05415805 465.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05415806 465.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05415807 465.33944702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05415808 465.33950806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05415809 465.33950806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05415810 465.33950806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05415811 465.33950806 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05415812 465.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05415813 465.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05415814 465.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05415815 465.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05415816 465.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05415817 465.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05415818 465.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05415819 465.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05415820 465.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05415821 465.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05415822 465.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05415823 465.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05415824 465.33969116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05415825 465.33969116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05415826 465.33975220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05415827 465.33975220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05415828 465.33975220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05415829 465.33975220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05415830 465.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05415831 465.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05415832 465.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05415833 465.33981323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05415834 465.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05415835 465.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05415836 465.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05415837 465.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05415838 465.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05415839 465.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05415840 465.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05415841 465.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05415842 465.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05415843 465.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05415844 465.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05415845 465.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05415846 465.33999634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05415847 465.33999634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05415848 465.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05415849 465.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05415850 465.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05415851 465.34005737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05415852 465.34011841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05415853 465.34011841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05415854 465.34011841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05415855 465.34011841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05415856 465.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05415857 465.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05415858 465.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05415859 465.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05415860 465.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05415861 465.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05415862 465.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05415863 465.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05415864 465.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05415865 465.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05415866 465.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05415867 465.34030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05415868 465.34030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05415869 465.34030151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05415870 465.34036255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05415871 465.34036255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05415872 465.34036255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05415873 465.34036255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05415874 465.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05415875 465.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05415876 465.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05415877 465.34042358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05415878 465.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05415879 465.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05415880 465.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05415881 465.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05415882 465.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05415883 465.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05415884 465.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05415885 465.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05415886 465.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05415887 465.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05415888 465.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05415889 465.34060669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05415890 465.34060669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05415891 465.34060669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05415892 465.34066772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05415893 465.34066772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05415894 465.34066772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05415895 465.34066772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05415896 465.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05415897 465.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05415898 465.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05415899 465.34072876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05415900 465.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05415901 465.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05415902 465.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05415903 465.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05422452 465.43472290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ce8 -05422453 465.43478394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf8 -05422454 465.43478394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10cf8 -05422455 465.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d08 -05422456 465.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d08 -05422457 465.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d18 -05422458 465.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d18 -05422459 465.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d28 -05422460 465.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d28 -05422461 465.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d38 -05422462 465.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d38 -05422463 465.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d48 -05422464 465.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d48 -05422465 465.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d58 -05422466 465.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d58 -05422467 465.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d68 -05422468 465.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d68 -05422469 465.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d78 -05422470 465.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d78 -05422471 465.43502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d88 -05422472 465.43502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d88 -05422473 465.43502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d98 -05422474 465.43502808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d98 -05422475 465.43508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da8 -05422476 465.43508911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10da8 -05422477 465.43515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db8 -05422478 465.43515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10db8 -05422479 465.43515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc8 -05422480 465.43515015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dc8 -05422481 465.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd8 -05422482 465.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10dd8 -05422483 465.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de8 -05422484 465.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10de8 -05422485 465.43524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df8 -05422486 465.43524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10df8 -05422487 465.43524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e08 -05422488 465.43524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e08 -05422489 465.43530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e18 -05422490 465.43530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e18 -05422491 465.43530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e28 -05422492 465.43530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e28 -05422493 465.43533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e38 -05422494 465.43533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e38 -05422495 465.43533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e48 -05426939 465.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19928 -05426940 465.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19928 -05426941 465.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19938 -05426942 465.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19938 -05426943 465.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19948 -05426944 465.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19948 -05426945 465.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19958 -05426946 465.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19958 -05426947 465.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19968 -05426948 465.49758911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19968 -05426949 465.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19978 -05426950 465.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19978 -05426951 465.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19988 -05426952 465.49765015 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19988 -05426953 465.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19998 -05426954 465.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19998 -05426955 465.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a8 -05426956 465.49771118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199a8 -05426957 465.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b8 -05426958 465.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199b8 -05426959 465.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c8 -05426960 465.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199c8 -05426961 465.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d8 -05426962 465.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199d8 -05426963 465.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e8 -05426964 465.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199e8 -05426965 465.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f8 -05426966 465.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x199f8 -05426967 465.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a08 -05426968 465.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a08 -05426969 465.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a18 -05426970 465.49789429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a18 -05426971 465.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a28 -05426972 465.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a28 -05426973 465.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a38 -05426974 465.49795532 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a38 -05426975 465.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a48 -05426976 465.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a48 -05426977 465.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a58 -05426978 465.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a58 -05426979 465.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a68 -05426980 465.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a68 -05426981 465.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a78 -05426982 465.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a78 -05428645 465.52124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce78 -05428646 465.52124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce78 -05428647 465.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce88 -05428648 465.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce88 -05428649 465.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce98 -05428650 465.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce98 -05428651 465.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea8 -05428652 465.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cea8 -05428653 465.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb8 -05428654 465.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ceb8 -05428655 465.52139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec8 -05428656 465.52139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cec8 -05428657 465.52139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced8 -05428658 465.52139282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ced8 -05428659 465.52145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee8 -05428660 465.52145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cee8 -05428661 465.52145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef8 -05428662 465.52145386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cef8 -05428663 465.52151489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf08 -05428664 465.52151489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf08 -05428665 465.52157593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf18 -05428666 465.52157593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf18 -05428667 465.52157593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf28 -05428668 465.52157593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf28 -05428669 465.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf38 -05428670 465.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf38 -05428671 465.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf48 -05428672 465.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf48 -05428673 465.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf58 -05428674 465.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf58 -05428675 465.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf68 -05428676 465.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf68 -05428677 465.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf78 -05428678 465.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf78 -05428679 465.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf88 -05428680 465.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf88 -05428681 465.52175903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf98 -05428682 465.52175903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf98 -05428683 465.52175903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa8 -05428684 465.52182007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfa8 -05428685 465.52182007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb8 -05428686 465.52182007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfb8 -05428687 465.52188110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc8 -05428688 465.52188110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cfc8 -05429099 465.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca8 -05429100 465.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dca8 -05429101 465.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb8 -05429102 465.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcb8 -05429103 465.52780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc8 -05429104 465.52780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcc8 -05429105 465.52780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd8 -05429106 465.52780151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcd8 -05429107 465.52786255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce8 -05429108 465.52786255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dce8 -05429109 465.52786255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf8 -05429110 465.52786255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dcf8 -05429111 465.52792358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd08 -05429112 465.52792358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd08 -05429113 465.52792358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd18 -05429114 465.52792358 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd18 -05429115 465.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd28 -05429116 465.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd28 -05429117 465.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd38 -05429118 465.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd38 -05429119 465.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd48 -05429120 465.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd48 -05429121 465.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd58 -05429122 465.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd58 -05429123 465.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd68 -05429124 465.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd68 -05429125 465.52810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -05429126 465.52810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -05429127 465.52810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd88 -05429128 465.52810669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd88 -05429129 465.52816772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd98 -05429130 465.52816772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd98 -05429131 465.52816772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda8 -05429132 465.52816772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda8 -05429133 465.52822876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb8 -05429134 465.52822876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb8 -05429135 465.52822876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc8 -05429136 465.52822876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc8 -05429137 465.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd8 -05429138 465.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd8 -05429139 465.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde8 -05429140 465.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde8 -05429141 465.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf8 -05429142 465.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf8 -05430343 465.54531860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -05430344 465.54531860 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20388 -05430345 465.54537964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20398 -05430346 465.54537964 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20398 -05430347 465.54541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -05430348 465.54541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a8 -05430349 465.54541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -05430350 465.54541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b8 -05430351 465.54547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -05430352 465.54547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c8 -05430353 465.54547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -05430354 465.54547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d8 -05430355 465.54553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -05430356 465.54553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e8 -05430357 465.54553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -05430358 465.54553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f8 -05430359 465.54556274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -05430360 465.54556274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20408 -05430361 465.54556274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -05430362 465.54556274 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20418 -05430363 465.54562378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -05430364 465.54562378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20428 -05430365 465.54562378 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -05430366 465.54568481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20438 -05430367 465.54568481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -05430368 465.54568481 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20448 -05430369 465.54571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -05430370 465.54571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20458 -05430371 465.54571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -05430372 465.54571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20468 -05430373 465.54577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -05430374 465.54577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20478 -05430375 465.54577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -05430376 465.54577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20488 -05430377 465.54583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -05430378 465.54583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20498 -05430379 465.54583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -05430380 465.54583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204a8 -05430381 465.54586792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -05430382 465.54586792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204b8 -05430383 465.54586792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -05430384 465.54592896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204c8 -05430385 465.54592896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -05430386 465.54592896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x204d8 -05431737 465.56497192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f18 -05431738 465.56503296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f18 -05431739 465.56503296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f28 -05431740 465.56503296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f28 -05431741 465.56509399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f38 -05431742 465.56509399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f38 -05431743 465.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -05431744 465.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -05431745 465.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -05431746 465.56512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -05431747 465.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -05431748 465.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -05431749 465.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -05431750 465.56518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -05431751 465.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -05431752 465.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -05431753 465.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -05431754 465.56524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -05431755 465.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -05431756 465.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -05431757 465.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -05431758 465.56527710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -05431759 465.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -05431760 465.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -05431761 465.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -05431762 465.56533813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -05431763 465.56539917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -05431764 465.56539917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -05431765 465.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -05431766 465.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -05431767 465.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23008 -05431768 465.56542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23008 -05431769 465.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23018 -05431770 465.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23018 -05431771 465.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23028 -05431772 465.56549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23028 -05431773 465.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23038 -05431774 465.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23038 -05431775 465.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23048 -05431776 465.56555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23048 -05431777 465.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23058 -05431778 465.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23058 -05431779 465.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23068 -05431780 465.56558228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23068 -05433029 465.58325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -05433030 465.58325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25778 -05433031 465.58325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -05433032 465.58325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25788 -05433033 465.58331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -05433034 465.58331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25798 -05433035 465.58331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a8 -05433036 465.58337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257a8 -05433037 465.58337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -05433038 465.58337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257b8 -05433039 465.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -05433040 465.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257c8 -05433041 465.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -05433042 465.58340454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257d8 -05433043 465.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -05433044 465.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257e8 -05433045 465.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -05433046 465.58346558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x257f8 -05433047 465.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -05433048 465.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25808 -05433049 465.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -05433050 465.58352661 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25818 -05433051 465.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -05433052 465.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25828 -05433053 465.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -05433054 465.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25838 -05433055 465.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -05433056 465.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25848 -05433057 465.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -05433058 465.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25858 -05433059 465.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -05433060 465.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25868 -05433061 465.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -05433062 465.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25878 -05433063 465.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -05433064 465.58370972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25888 -05433065 465.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -05433066 465.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25898 -05433067 465.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -05433068 465.58377075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258a8 -05433069 465.58383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -05433070 465.58383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258b8 -05433071 465.58383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -05433072 465.58383179 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c8 -05443151 465.72534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c8 -05443152 465.72534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393c8 -05443153 465.72534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d8 -05443154 465.72534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393d8 -05443155 465.72540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e8 -05443156 465.72540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393e8 -05443157 465.72540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f8 -05443158 465.72540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x393f8 -05443159 465.72543335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39408 -05443160 465.72543335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39408 -05443161 465.72543335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39418 -05443162 465.72549438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39418 -05443163 465.72549438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39428 -05443164 465.72549438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39428 -05443165 465.72555542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39438 -05443166 465.72555542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39438 -05443167 465.72555542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39448 -05443168 465.72555542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39448 -05443169 465.72558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39458 -05443170 465.72558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39458 -05443171 465.72558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39468 -05443172 465.72558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39468 -05443173 465.72564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39478 -05443174 465.72564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39478 -05443175 465.72564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39488 -05443176 465.72564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39488 -05443177 465.72570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -05443178 465.72570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -05443179 465.72573853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -05443180 465.72573853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -05443181 465.72573853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -05443182 465.72573853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -05443183 465.72579956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -05443184 465.72579956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -05443185 465.72579956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -05443186 465.72579956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -05443187 465.72586060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -05443188 465.72586060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -05443189 465.72586060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -05443190 465.72586060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -05443191 465.72589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -05443192 465.72589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -05443193 465.72589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -05443194 465.72589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -05456253 467.24703979 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456254 467.24710083 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456255 467.24716187 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456256 467.24716187 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05456257 467.24725342 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456258 467.24725342 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05456259 467.24731445 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456260 467.24734497 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05456261 467.43481445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05456262 467.45538330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456263 467.45544434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456264 468.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -05456265 468.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -05456266 468.77224731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456267 469.45639038 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05456268 469.47763062 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456269 469.47763062 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456270 469.75314331 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456271 469.75323486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456272 469.75329590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05456273 469.75329590 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05456274 469.75338745 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456275 469.75338745 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05456276 469.75344849 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05456277 469.75350952 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05456278 469.78924561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05456279 469.78924561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05456280 469.78924561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05456281 469.78924561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05456282 469.78927612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05456283 469.78927612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05456284 469.78927612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05456285 469.78927612 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05456286 469.78933716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05456287 469.78933716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05456288 469.78933716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05456289 469.78933716 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05456290 469.78939819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05456291 469.78939819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05456292 469.78939819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05456293 469.78942871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05456294 469.78942871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05456295 469.78942871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05456296 469.78948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05456297 469.78948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05456298 469.78948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05456299 469.78948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05456300 469.78955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05456301 469.78955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05456302 469.78955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05456303 469.78955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05456304 469.78958130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05456305 469.78958130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05456306 469.78958130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05456307 469.78958130 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05456308 469.78964233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05456309 469.78964233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05456310 469.78964233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05456311 469.78964233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05456312 469.78970337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05456313 469.78970337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05456314 469.78970337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05456315 469.78973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05456316 469.78973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05456317 469.78973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05456318 469.78979492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05456319 469.78979492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05456320 469.78979492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05456321 469.78979492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05456322 469.78985596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05456323 469.78985596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05456324 469.78985596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05456325 469.78985596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05456326 469.78988647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05456327 469.78988647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05456328 469.78988647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05456329 469.78988647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05456330 469.78994751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05456331 469.78994751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05456332 469.78994751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05456333 469.78994751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05456334 469.79000854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05456335 469.79000854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05456336 469.79006958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05456337 469.79006958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05456338 469.79006958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05456339 469.79006958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05456340 469.79010010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05456341 469.79010010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05456342 469.79010010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05456343 469.79010010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05456344 469.79016113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05456345 469.79016113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05456346 469.79016113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05456347 469.79016113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05456348 469.79022217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05456349 469.79022217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05456350 469.79022217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05456351 469.79022217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05456352 469.79025269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05456353 469.79025269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05456354 469.79025269 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05456355 469.79031372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05456356 469.79031372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05456357 469.79031372 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05456358 469.79037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05456359 469.79037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05456360 469.79037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05456361 469.79037476 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05456362 469.79040527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05456363 469.79040527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05456364 469.79040527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05456365 469.79040527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05456366 469.79046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05456367 469.79046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05456368 469.79046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05456369 469.79046631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05456370 469.79052734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05456371 469.79052734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05456372 469.79052734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05456373 469.79052734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05456374 469.79055786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05456375 469.79055786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05456376 469.79055786 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05456377 469.79061890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05456378 469.79061890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05456379 469.79061890 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05456380 469.79067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05456381 469.79067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05456382 469.79067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05456383 469.79067993 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05456384 469.79071045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05456385 469.79071045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05456386 469.79071045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05456387 469.79071045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05456388 469.79077148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05456389 469.79077148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05456390 469.79077148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05456391 469.79077148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05456392 469.79083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05456393 469.79083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05456394 469.79083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05456395 469.79083252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05456396 469.79086304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05456397 469.79086304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05456398 469.79086304 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05456399 469.79092407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05456400 469.79092407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05456401 469.79092407 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05456402 469.79098511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05456403 469.79098511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05456404 469.79098511 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05456405 469.79101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05456406 469.79101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05456407 469.79101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05456408 469.79107666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05456409 469.79107666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05456410 469.79113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05456411 469.79113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05456412 469.79113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05456413 469.79113770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05456414 469.79116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05456415 469.79116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05456416 469.79116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05456417 469.79116821 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05456418 469.79122925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05456419 469.79122925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05456420 469.79122925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05456421 469.79122925 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05456422 469.79129028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05456423 469.79129028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05456424 469.79129028 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05456425 469.79132080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05456426 469.79132080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05456427 469.79132080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05456428 469.79138184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05456429 469.79138184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05456430 469.79138184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05456431 469.79138184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05456432 469.79144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05456433 469.79144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05456434 469.79144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05456435 469.79144287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05456436 469.79147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05456437 469.79147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05456438 469.79147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05456439 469.79147339 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05456440 469.79153442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05456441 469.79153442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05456442 469.79153442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05456443 469.79153442 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05456444 469.79159546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05456445 469.79159546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05456446 469.79159546 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05456447 469.79165649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05456448 469.79165649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05456449 469.79165649 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05456450 469.79168701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05456451 469.79168701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05456452 469.79168701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05456453 469.79168701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05456454 469.79174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05456455 469.79174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05456456 469.79174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05456457 469.79174805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05456458 469.79180908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05456459 469.79180908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05456460 469.79180908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05456461 469.79180908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05456462 469.79183960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05456463 469.79183960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05456464 469.79183960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05456465 469.79183960 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05456466 469.79190063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05456467 469.79190063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05456468 469.79190063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05456469 469.79196167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05456470 469.79196167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05456471 469.79196167 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05456472 469.79199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05456473 469.79199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05456474 469.79199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05456475 469.79199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05456476 469.79205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05456477 469.79205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05456478 469.79211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05456479 469.79211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05456480 469.79211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05456481 469.79211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05456482 469.79214478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05456483 469.79214478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05456484 469.79214478 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05456485 469.79220581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05456486 469.79220581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05456487 469.79220581 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05456488 469.79226685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05456489 469.79226685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05456490 469.79226685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05456491 469.79226685 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05456492 469.79229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05456493 469.79229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05456494 469.79229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05456495 469.79229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05456496 469.79235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05456497 469.79235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05456498 469.79235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05456499 469.79235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05456500 469.79241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05456501 469.79241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05456502 469.79241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05456503 469.79241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05456504 469.79244995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05456505 469.79244995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05456506 469.79244995 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05456507 469.79251099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05456508 469.79251099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05456509 469.79251099 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05456510 469.79257202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05456511 469.79257202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05456512 469.79257202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05456513 469.79257202 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05456514 469.79260254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05456515 469.79260254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05456516 469.79260254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05456517 469.79260254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05456518 469.79266357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05456519 469.79266357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05456520 469.79266357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05456521 469.79266357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05456522 469.79272461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05456523 469.79272461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05456524 469.79272461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05456525 469.79272461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05456526 469.79275513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05456527 469.79275513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05456528 469.79275513 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05456529 469.79281616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05456530 469.79281616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05456531 469.79281616 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05456532 469.79287720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05456533 469.79287720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05456534 469.79287720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05456535 469.79287720 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05456536 469.79290771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05456537 469.79290771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05456538 469.79290771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05456539 469.79290771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05456540 469.79296875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05456541 469.79296875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05456542 469.79296875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05456543 469.79296875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05456544 469.79302979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05456545 469.79302979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05456546 469.79306030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05456547 469.79306030 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05456548 469.79312134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05456549 469.79312134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05456550 469.79312134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05456551 469.79312134 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05456552 469.79318237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05456553 469.79318237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05456554 469.79318237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05456555 469.79318237 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05456556 469.79324341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05456557 469.79324341 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05456558 469.79327393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05456559 469.79327393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05456560 469.79327393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05456561 469.79327393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05456562 469.79333496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05456563 469.79333496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05456564 469.79333496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05456565 469.79333496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05456566 469.79339600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05456567 469.79339600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05456568 469.79339600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05456569 469.79339600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05456570 469.79342651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05456571 469.79342651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05456572 469.79342651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05456573 469.79342651 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05456574 469.79348755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05456575 469.79348755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05456576 469.79348755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05456577 469.79348755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05456578 469.79354858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05456579 469.79354858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05456580 469.79354858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05456581 469.79357910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05456582 469.79357910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05456583 469.79357910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05456584 469.79364014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05456585 469.79364014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05456586 469.79364014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05456587 469.79364014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05456588 469.79370117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05456589 469.79370117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05456590 469.79370117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05456591 469.79370117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05456592 469.79373169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05456593 469.79373169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05456594 469.79373169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05456595 469.79373169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05456596 469.79379272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05456597 469.79379272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05456598 469.79379272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05456599 469.79379272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05456600 469.79385376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05456601 469.79385376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05456602 469.79385376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05456603 469.79388428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05456604 469.79388428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05456605 469.79388428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05456606 469.79394531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05456607 469.79394531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05456608 469.79394531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05456609 469.79394531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05456610 469.79400635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05456611 469.79400635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05456612 469.79400635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05456613 469.79400635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05456614 469.79409790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05456615 469.79409790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05456616 469.79409790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05456617 469.79409790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05456618 469.79415894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05456619 469.79415894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05456620 469.79415894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05456621 469.79415894 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05456622 469.79418945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05456623 469.79418945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05456624 469.79418945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05456625 469.79418945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05456626 469.79425049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05456627 469.79425049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05456628 469.79425049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05456629 469.79431152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05456630 469.79431152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05456631 469.79431152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05456632 469.79434204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05456633 469.79434204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05456634 469.79434204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05456635 469.79434204 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05456636 469.79440308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05456637 469.79440308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05456638 469.79440308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05456639 469.79440308 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05456640 469.79446411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05456641 469.79446411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05456642 469.79446411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05456643 469.79446411 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05456644 469.79449463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05456645 469.79449463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05456646 469.79449463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05456647 469.79449463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05456648 469.79455566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05456649 469.79455566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05456650 469.79455566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05456651 469.79461670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05456652 469.79461670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05456653 469.79461670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05456654 469.79464722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05456655 469.79464722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05456656 469.79464722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05456657 469.79464722 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05456658 469.79470825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05456659 469.79470825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05456660 469.79470825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05456661 469.79470825 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05456662 469.79476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05456663 469.79476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05456664 469.79476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05456665 469.79476929 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05456666 469.79483032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05456667 469.79483032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05456668 469.79483032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05456669 469.79483032 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05456670 469.79486084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05456671 469.79486084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05456672 469.79486084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05456673 469.79492188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05456674 469.79492188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05456675 469.79492188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05456676 469.79498291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05456677 469.79498291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05456678 469.79498291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05456679 469.79498291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05456680 469.79501343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05456681 469.79501343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05456682 469.79501343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05456683 469.79501343 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05456684 469.79507446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05456685 469.79507446 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05456686 469.79513550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05456687 469.79513550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05456688 469.79513550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05456689 469.79513550 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05456690 469.79516602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05456691 469.79516602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05456692 469.79516602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05456693 469.79516602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05456694 469.79522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05456695 469.79522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05456696 469.79522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05456697 469.79522705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05456698 469.79528809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05456699 469.79528809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05456700 469.79528809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05456701 469.79528809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05456702 469.79531860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05456703 469.79531860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05456704 469.79531860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05456705 469.79531860 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05456706 469.79537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05456707 469.79537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05456708 469.79537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05456709 469.79537964 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05456710 469.79544067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05456711 469.79544067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05456712 469.79544067 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05456713 469.79547119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05456714 469.79547119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05456715 469.79547119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05456716 469.79553223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05456717 469.79553223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05456718 469.79553223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05456719 469.79553223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05456720 469.79559326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05456721 469.79559326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05456722 469.79559326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05456723 469.79559326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05456724 469.79562378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05456725 469.79562378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05456726 469.79562378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05456727 469.79562378 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05456728 469.79568481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05456729 469.79568481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05456730 469.79568481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05456731 469.79568481 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05456732 469.79574585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05456733 469.79574585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05456734 469.79574585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05456735 469.79574585 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05456736 469.79577637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05456737 469.79577637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05456738 469.79577637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05456739 469.79577637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05456740 469.79583740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05456741 469.79583740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05456742 469.79583740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05456743 469.79583740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05456744 469.79589844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05456745 469.79589844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05456746 469.79589844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05456747 469.79589844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05456748 469.79592896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05456749 469.79592896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05456750 469.79592896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05456751 469.79592896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05456752 469.79598999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05456753 469.79598999 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05456754 469.79605103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05456755 469.79605103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05456756 469.79605103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05456757 469.79605103 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05456758 469.79608154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05456759 469.79608154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05456760 469.79608154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05456761 469.79608154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05456762 469.79614258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05456763 469.79614258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05456764 469.79614258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05456765 469.79614258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05456766 469.79620361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05456767 469.79620361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05456768 469.79620361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05456769 469.79620361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05456770 469.79626465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05456771 469.79626465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05456772 469.79626465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05456773 469.79626465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05456774 469.79629517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05456775 469.79629517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05456776 469.79629517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05456777 469.79629517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05456778 469.79635620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05456779 469.79635620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05456780 469.79635620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05456781 469.79635620 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05456782 469.79641724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05456783 469.79641724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05456784 469.79641724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05456785 469.79641724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05456786 469.79644775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05456787 469.79644775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05456788 469.79644775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05456789 469.79644775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05456790 469.79650879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05456791 469.79650879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05456792 469.79650879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05456793 469.79650879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05456794 469.79656982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05456795 469.79656982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05456796 469.79656982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05456797 469.79660034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05456798 469.79660034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05456799 469.79660034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05456800 469.79666138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05456801 469.79666138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05456802 469.79666138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05456803 469.79666138 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05456804 469.79672241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05456805 469.79672241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05456806 469.79672241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05456807 469.79672241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05456808 469.79675293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05456809 469.79675293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05456810 469.79675293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05456811 469.79675293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05456812 469.79681396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05456813 469.79681396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05456814 469.79681396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05456815 469.79681396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05456816 469.79687500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05456817 469.79687500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05456818 469.79687500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05456819 469.79687500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05456820 469.79690552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05456821 469.79690552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05456822 469.79690552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05456823 469.79690552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05456824 469.79696655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05456825 469.79696655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05456826 469.79696655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05456827 469.79696655 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05456828 469.79702759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05456829 469.79702759 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05456830 469.79705811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05456831 469.79705811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05456832 469.79705811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05456833 469.79705811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05456834 469.79711914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05456835 469.79711914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05456836 469.79711914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05456837 469.79711914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05456838 469.79718018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05456839 469.79718018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05456840 469.79718018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05456841 469.79721069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05456842 469.79721069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05456843 469.79721069 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05456844 469.79727173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05456845 469.79727173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05456846 469.79727173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05456847 469.79727173 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05456848 469.79733276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05456849 469.79733276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05456850 469.79733276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05456851 469.79733276 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05456852 469.79736328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05456853 469.79736328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05456854 469.79736328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05456855 469.79736328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05456856 469.79742432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05456857 469.79742432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05456858 469.79742432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05456859 469.79742432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05456860 469.79748535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05456861 469.79748535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05456862 469.79748535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05456863 469.79751587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05456864 469.79751587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05456865 469.79751587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05456866 469.79757690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05456867 469.79757690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05456868 469.79757690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05456869 469.79757690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05456870 469.79763794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05456871 469.79763794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05456872 469.79763794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05456873 469.79763794 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05456874 469.79766846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05456875 469.79766846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05456876 469.79766846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05456877 469.79766846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05456878 469.79772949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05456879 469.79772949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05456880 469.79772949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05456881 469.79772949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05456882 469.79779053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05456883 469.79779053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05456884 469.79779053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05456885 469.79779053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05456886 469.79785156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05456887 469.79785156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05456888 469.79785156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05456889 469.79785156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05456890 469.79788208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05456891 469.79788208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05456892 469.79788208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05456893 469.79788208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05456894 469.79794312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05456895 469.79794312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05456896 469.79794312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05456897 469.79794312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05456898 469.79800415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05456899 469.79800415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05456900 469.79800415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05456901 469.79800415 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05456902 469.79803467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05456903 469.79803467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05456904 469.79803467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05456905 469.79809570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05456906 469.79809570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05456907 469.79809570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05456908 469.79815674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05456909 469.79815674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05456910 469.79815674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05456911 469.79815674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05456912 469.79818726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05456913 469.79818726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05456914 469.79818726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05456915 469.79818726 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05456916 469.79824829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05456917 469.79824829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05456918 469.79824829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05456919 469.79824829 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05456920 469.79830933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05456921 469.79830933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05456922 469.79830933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05456923 469.79830933 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05456924 469.79833984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05456925 469.79833984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05456926 469.79833984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05456927 469.79833984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05456928 469.79840088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05456929 469.79840088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05456930 469.79840088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05456931 469.79840088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05456932 469.79846191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05456933 469.79846191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05456934 469.79846191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05456935 469.79846191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05456936 469.79849243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05456937 469.79849243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05456938 469.79849243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05456939 469.79849243 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05456940 469.79855347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05456941 469.79855347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05456942 469.79855347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05456943 469.79855347 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05456944 469.79861450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05456945 469.79861450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05456946 469.79861450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05456947 469.79861450 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05456948 469.79864502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05456949 469.79864502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05456950 469.79864502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05456951 469.79870605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05456952 469.79870605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05456953 469.79870605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05456954 469.79876709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05456955 469.79876709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05456956 469.79876709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05456957 469.79876709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05456958 469.79879761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05456959 469.79879761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05456960 469.79879761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05456961 469.79879761 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05456962 469.79885864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05456963 469.79885864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05456964 469.79885864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05456965 469.79885864 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05456966 469.79891968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05456967 469.79891968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05456968 469.79891968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05456969 469.79891968 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05456970 469.79895020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05456971 469.79895020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05456972 469.79895020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05456973 469.79895020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05456974 469.79901123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05456975 469.79901123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05456976 469.79901123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05456977 469.79907227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05456978 469.79907227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05456979 469.79907227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05456980 469.79910278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05456981 469.79910278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05456982 469.79910278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05456983 469.79916382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05456984 469.79916382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05456985 469.79916382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05456986 469.79922485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05456987 469.79922485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05456988 469.79922485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05456989 469.79922485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05456990 469.79925537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05456991 469.79925537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05456992 469.79925537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05456993 469.79925537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05456994 469.79931641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05456995 469.79931641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05456996 469.79931641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05456997 469.79931641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05456998 469.79937744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05456999 469.79937744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05457000 469.79937744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05457001 469.79937744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05457002 469.79943848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05457003 469.79943848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05457004 469.79943848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05457005 469.79943848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05457006 469.79946899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05457007 469.79946899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05457008 469.79946899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05457009 469.79946899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05457010 469.79953003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05457011 469.79953003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05457012 469.79953003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05457013 469.79953003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05457014 469.79959106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05457015 469.79959106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05457016 469.79959106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05457017 469.79959106 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05457018 469.79962158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05457019 469.79962158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05457020 469.79962158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05457021 469.79962158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05457022 469.79968262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05457023 469.79968262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05457024 469.79968262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05457025 469.79974365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05457026 469.79974365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05457027 469.79974365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05457028 469.79977417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05457029 469.79977417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05457030 469.79977417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05457031 469.79977417 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05457032 469.79983521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05457033 469.79983521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05457034 469.79983521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05457035 469.79983521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05457036 469.79989624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05457037 469.79989624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05457038 469.79989624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05457039 469.79989624 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05457040 469.79992676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05457041 469.79992676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05457042 469.79992676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05457043 469.79992676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05457044 469.79998779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05457045 469.79998779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05457046 469.79998779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05457047 469.79998779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05457048 469.80004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05457049 469.80004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05457050 469.80007935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05457051 469.80007935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05457052 469.80007935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05457053 469.80007935 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05457054 469.80014038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05457055 469.80014038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05457056 469.80014038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05457057 469.80014038 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05457058 469.80020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05457059 469.80020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05457060 469.80023193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05457061 469.80023193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05457062 469.80023193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05457063 469.80023193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05457064 469.80029297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05457065 469.80029297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05457066 469.80029297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05457067 469.80029297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05457068 469.80035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05457069 469.80035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05457070 469.80035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05457071 469.80035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05457072 469.80038452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05457073 469.80038452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05457074 469.80038452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05457075 469.80038452 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05457076 469.80044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05457077 469.80044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05457078 469.80044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05457079 469.80044556 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05457080 469.80050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05457081 469.80050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05457082 469.80050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05457083 469.80050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05457084 469.80053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05457085 469.80053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05457086 469.80053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05457087 469.80053711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05457088 469.80059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05457089 469.80059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05457090 469.80059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05457091 469.80059814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05457092 469.80065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05457093 469.80065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05457094 469.80065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05457095 469.80065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05457096 469.80068970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05457097 469.80068970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05457098 469.80068970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05457099 469.80068970 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05457100 469.80075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05457101 469.80075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05457102 469.80075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05457103 469.80075073 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05457104 469.80081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05457105 469.80081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05457106 469.80081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05457107 469.80087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05457108 469.80087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05457109 469.80087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05457110 469.80090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05457111 469.80090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05457112 469.80090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05457113 469.80090332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05457114 469.80096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05457115 469.80096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05457116 469.80096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05457117 469.80096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05457118 469.80102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05457119 469.80102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05457120 469.80102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05457121 469.80102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05457122 469.80105591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05457123 469.80105591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05457124 469.80105591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05457125 469.80111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05457126 469.80111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05457127 469.80111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05457128 469.80117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05457129 469.80117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05457130 469.80117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05457131 469.80117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05457132 469.80120850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05457133 469.80120850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05457134 469.80120850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05457135 469.80120850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05457136 469.80126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05457137 469.80126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05457138 469.80126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05457139 469.80126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05457140 469.80133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05457141 469.80133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05457142 469.80133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05457143 469.80133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05457144 469.80136108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05457145 469.80136108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05457146 469.80136108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05457147 469.80136108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05457148 469.80142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05457149 469.80142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05457150 469.80142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05457151 469.80142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05457152 469.80148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05457153 469.80148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05457154 469.80148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05457155 469.80148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05457156 469.80151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05457157 469.80151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05457158 469.80151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05457159 469.80151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05457160 469.80157471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05457161 469.80157471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05457162 469.80157471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05457163 469.80157471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05457164 469.80163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05457165 469.80163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05457166 469.80163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05457167 469.80163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05457168 469.80166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05457169 469.80166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05457170 469.80166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05457171 469.80166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05457172 469.80172729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05457173 469.80172729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05457174 469.80172729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05457175 469.80178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05457176 469.80178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05457177 469.80178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05457178 469.80181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05457179 469.80181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05457180 469.80181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05457181 469.80181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05457182 469.80187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05457183 469.80187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05457184 469.80187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05457185 469.80187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05457186 469.80194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05457187 469.80194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05457188 469.80194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05457189 469.80194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05457190 469.80197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05457191 469.80197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05457192 469.80197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05457193 469.80197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05457194 469.80203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05457195 469.80203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05457196 469.80209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05457197 469.80209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05457198 469.80212402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05457199 469.80212402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05457200 469.80218506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05457201 469.80218506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05457202 469.80218506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05457203 469.80218506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05457204 469.80224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05457205 469.80224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05457206 469.80224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05457207 469.80224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05457208 469.80227661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05457209 469.80227661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05457210 469.80227661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05457211 469.80227661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05457212 469.80233765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05457213 469.80233765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05457214 469.80233765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05457215 469.80233765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05457216 469.80239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05457217 469.80239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05457218 469.80239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05457219 469.80239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05457220 469.80245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05457221 469.80245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05457222 469.80245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05457223 469.80245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05457224 469.80249023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05457225 469.80249023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05457226 469.80249023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05457227 469.80249023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05457228 469.80255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05457229 469.80255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05457230 469.80255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05457231 469.80255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05457232 469.80261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05457233 469.80261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05457234 469.80261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05457235 469.80261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05457236 469.80264282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05457237 469.80264282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05457238 469.80264282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05457239 469.80270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05457240 469.80270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05457241 469.80270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05457242 469.80276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05457243 469.80276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05457244 469.80276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05457245 469.80276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05457246 469.80279541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05457247 469.80279541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05457248 469.80279541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05457249 469.80279541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05457250 469.80285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05457251 469.80285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05457252 469.80285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05457253 469.80285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05457254 469.80291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05457255 469.80291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05457256 469.80291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05457257 469.80291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05457258 469.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05457259 469.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05457260 469.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05457261 469.80294800 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05457262 469.80300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05457263 469.80300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05457264 469.80307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05457265 469.80307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05457266 469.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05457267 469.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05457268 469.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05457269 469.80316162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05457270 469.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05457271 469.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05457272 469.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05457273 469.80322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05457274 469.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05457275 469.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05457276 469.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05457277 469.80325317 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05457278 469.80331421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05457279 469.80331421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05457280 469.80331421 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05457281 469.80337524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05457282 469.80337524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05457283 469.80337524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05457284 469.80340576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05457285 469.80340576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05457286 469.80340576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05457287 469.80340576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05457288 469.80346680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05457289 469.80346680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05457290 469.80346680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05457291 469.80346680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05457292 469.80352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05457293 469.80352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05457294 469.80352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05457295 469.80352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05457296 469.80355835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05457297 469.80355835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05457298 469.80355835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05457299 469.80355835 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05457300 469.80361938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05457301 469.80361938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05457302 469.80368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05457303 469.80368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05457304 469.80368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05457305 469.80368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05457306 469.80371094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05457307 469.80371094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05457308 469.80371094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05457309 469.80371094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05457310 469.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05457311 469.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05457312 469.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05457313 469.80377197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05457314 469.80383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05457315 469.80383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05457316 469.80383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05457317 469.80383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05457318 469.80386353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05457319 469.80386353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05457320 469.80386353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05457321 469.80386353 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05457322 469.80392456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05457323 469.80392456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05457324 469.80392456 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05457325 469.80398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05457326 469.80398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05457327 469.80398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05457328 469.80404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05457329 469.80404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05457330 469.80404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05457331 469.80404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05457332 469.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05457333 469.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05457334 469.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05457335 469.80407715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05457336 469.80413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05457337 469.80413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05457338 469.80413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05457339 469.80413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05457340 469.80419922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05457341 469.80419922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05457342 469.80419922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05457343 469.80422974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05457344 469.80422974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05457345 469.80422974 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05457346 469.80429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05457347 469.80429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05457348 469.80429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05457349 469.80429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05457350 469.80435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05457351 469.80435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05457352 469.80435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05457353 469.80435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05457354 469.80438232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05457355 469.80438232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05457356 469.80438232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05457357 469.80438232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05457358 469.80444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05457359 469.80444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05457360 469.80444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05457361 469.80444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05457362 469.80450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05457363 469.80450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05457364 469.80450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05457365 469.80453491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05457366 469.80453491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05457367 469.80453491 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05457368 469.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05457369 469.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05457370 469.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05457371 469.80459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05457372 469.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05457373 469.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05457374 469.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05457375 469.80465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05457376 469.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05457377 469.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05457378 469.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05457379 469.80468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05457380 469.80474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05457381 469.80474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05457382 469.80474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05457383 469.80474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05457384 469.80480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05457385 469.80480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05457386 469.80480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05457387 469.80484009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05457388 469.80484009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05457389 469.80484009 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05457390 469.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05457391 469.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05457392 469.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05457393 469.80490112 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05457394 469.80496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05457395 469.80496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05457396 469.80496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05457397 469.80496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05457398 469.80499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05457399 469.80499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05457400 469.80499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05457401 469.80505371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05457402 469.80511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05457403 469.80511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05457404 469.80514526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05457405 469.80514526 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05457406 469.80520630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05457407 469.80520630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05457408 469.80520630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05457409 469.80520630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05457410 469.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05457411 469.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05457412 469.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05457413 469.80526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05457414 469.80529785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05457415 469.80529785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05457416 469.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05457417 469.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05457418 469.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05457419 469.80535889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05457420 469.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05457421 469.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05457422 469.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05457423 469.80541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05457424 469.80545044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05457425 469.80545044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05457426 469.80545044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05457427 469.80545044 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05457428 469.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05457429 469.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05457430 469.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05457431 469.80551147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05457432 469.80557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05457433 469.80557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05457434 469.80557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05457435 469.80563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05457436 469.80563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05457437 469.80563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05457438 469.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05457439 469.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05457440 469.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05457441 469.80566406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05457442 469.80572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05457443 469.80572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05457444 469.80572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05457445 469.80572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05457446 469.80578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05457447 469.80578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05457448 469.80578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05457449 469.80578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05457450 469.80581665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05457451 469.80581665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05457452 469.80581665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05457453 469.80581665 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05457454 469.80587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05457455 469.80587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05457456 469.80587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05457457 469.80587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05457458 469.80593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05457459 469.80593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05457460 469.80593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05457461 469.80593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05457462 469.80596924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05457463 469.80596924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05457464 469.80596924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05457465 469.80596924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05457466 469.80609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05457467 469.80609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05457468 469.80609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05457469 469.80609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05457470 469.80612183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05457471 469.80612183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05457472 469.80612183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05457473 469.80612183 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05457474 469.80618286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05457475 469.80618286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05457476 469.80618286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05457477 469.80618286 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05457478 469.80624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05457479 469.80624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05457480 469.80624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05457481 469.80624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05457482 469.80627441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05457483 469.80627441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05457484 469.80627441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05457485 469.80633545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05457486 469.80633545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05457487 469.80633545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05457488 469.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05457489 469.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05457490 469.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05457491 469.80639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05457492 469.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05457493 469.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05457494 469.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05457495 469.80642700 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05457496 469.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05457497 469.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05457498 469.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05457499 469.80648804 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05457500 469.80654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05457501 469.80654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05457502 469.80654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05457503 469.80654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05457504 469.80657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05457505 469.80657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05457506 469.80657959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05457507 469.80664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05457508 469.80664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05457509 469.80664063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05457510 469.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05457511 469.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05457512 469.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05457513 469.80670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05457514 469.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05457515 469.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05457516 469.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05457517 469.80673218 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05457518 469.80679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05457519 469.80679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05457520 469.80679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05457521 469.80679321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05457522 469.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05457523 469.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05457524 469.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05457525 469.80685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05457526 469.80688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05457527 469.80688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05457528 469.80688477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05457529 469.80694580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05457530 469.80694580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05457531 469.80694580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05457532 469.80700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05457533 469.80700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05457534 469.80700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05457535 469.80700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05457536 469.80706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05457537 469.80706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05457538 469.80706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05457539 469.80706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05457540 469.80709839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05457541 469.80709839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05457542 469.80709839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05457543 469.80709839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05457544 469.80715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05457545 469.80715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05457546 469.80715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05457547 469.80722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05457548 469.80722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05457549 469.80722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05457550 469.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05457551 469.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05457552 469.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05457553 469.80725098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05457554 469.80731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05457555 469.80731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05457556 469.80731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05457557 469.80731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05457558 469.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05457559 469.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05457560 469.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05457561 469.80737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05457562 469.80740356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05457563 469.80740356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05457564 469.80740356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05457565 469.80740356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05457566 469.80746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05457567 469.80746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05457568 469.80746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05457569 469.80752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05457570 469.80752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05457571 469.80752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05457572 469.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05457573 469.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05457574 469.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05457575 469.80755615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05457576 469.80761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05457577 469.80761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05457578 469.80761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05457579 469.80761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05457580 469.80767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05457581 469.80767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05457582 469.80767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05457583 469.80767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05457584 469.80770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05457585 469.80770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05457586 469.80770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05457587 469.80770874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05457588 469.80776978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05457589 469.80776978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05457590 469.80776978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05457591 469.80783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05457592 469.80783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05457593 469.80783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05457594 469.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05457595 469.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05457596 469.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05457597 469.80786133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05457598 469.80792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05457599 469.80792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05457600 469.80792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05457601 469.80792236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05457602 469.80798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05457603 469.80798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05457604 469.80798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05457605 469.80798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05457606 469.80801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05457607 469.80801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05457608 469.80801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05457609 469.80801392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05457610 469.80807495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05457611 469.80807495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05457612 469.80813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05457613 469.80813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05457614 469.80813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05457615 469.80813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05457616 469.80816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05457617 469.80816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05457618 469.80816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05457619 469.80816650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05457620 469.80822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05457621 469.80822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05457622 469.80822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05457623 469.80822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05457624 469.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05457625 469.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05457626 469.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05457627 469.80828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05457628 469.80831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05457629 469.80831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05457630 469.80831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05457631 469.80831909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05457632 469.80838013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05457633 469.80838013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05457634 469.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05457635 469.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05457636 469.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05457637 469.80844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05457638 469.80847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05457639 469.80847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05457640 469.80847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05457641 469.80847168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05457642 469.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05457643 469.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05457644 469.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05457645 469.80853271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05457646 469.80859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05457647 469.80859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05457648 469.80859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05457649 469.80859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05457650 469.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05457651 469.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05457652 469.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05457653 469.80865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05457654 469.80868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05457655 469.80868530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05457656 469.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05457657 469.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05457658 469.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05457659 469.80874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05457660 469.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05457661 469.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05457662 469.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05457663 469.80880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05457664 469.80883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05457665 469.80883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05457666 469.80883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05457667 469.80883789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05457668 469.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05457669 469.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05457670 469.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05457671 469.80889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05457672 469.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05457673 469.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05457674 469.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05457675 469.80895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05457676 469.80899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05457677 469.80899048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05466347 469.93341064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ae8 -05466348 469.93341064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -05466349 469.93341064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14af8 -05466350 469.93347168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -05466351 469.93347168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b08 -05466352 469.93347168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -05466353 469.93347168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b18 -05466354 469.93350220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -05466355 469.93350220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b28 -05466356 469.93350220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -05466357 469.93356323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -05466358 469.93356323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -05466359 469.93356323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -05466360 469.93362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -05466361 469.93362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -05466362 469.93362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -05466363 469.93362427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -05466364 469.93368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -05466365 469.93368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -05466366 469.93368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -05466367 469.93368530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -05466368 469.93371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -05466369 469.93371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -05466370 469.93371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -05466371 469.93371582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -05466372 469.93377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -05466373 469.93377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -05466374 469.93377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -05466375 469.93377686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -05466376 469.93383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -05466377 469.93383789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -05466378 469.93386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -05466379 469.93386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -05466380 469.93386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -05466381 469.93386841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -05466382 469.93392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -05466383 469.93392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -05466384 469.93392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -05466385 469.93392944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -05466386 469.93402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -05466387 469.93402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -05466388 469.93402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -05466389 469.93402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -05466390 469.93408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -05470216 469.98959351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -05470217 469.98959351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3d8 -05470218 469.98962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -05470219 469.98962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3e8 -05470220 469.98962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -05470221 469.98962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c3f8 -05470222 469.98968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -05470223 469.98968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c408 -05470224 469.98968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -05470225 469.98968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c418 -05470226 469.98974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -05470227 469.98974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c428 -05470228 469.98974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -05470229 469.98974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c438 -05470230 469.98977661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -05470231 469.98977661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c448 -05470232 469.98977661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -05470233 469.98977661 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c458 -05470234 469.98983765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -05470235 469.98983765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c468 -05470236 469.98983765 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -05470237 469.98989868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c478 -05470238 469.98989868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -05470239 469.98989868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c488 -05470240 469.98992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c498 -05470241 469.98992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c498 -05470242 469.98992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a8 -05470243 469.98992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4a8 -05470244 469.98999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b8 -05470245 469.98999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4b8 -05470246 469.99005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c8 -05470247 469.99005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4c8 -05470248 469.99005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -05470249 469.99005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4d8 -05470250 469.99008179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -05470251 469.99008179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4e8 -05470252 469.99008179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -05470253 469.99008179 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c4f8 -05470254 469.99014282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -05470255 469.99014282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c508 -05470256 469.99014282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -05470257 469.99014282 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c518 -05470258 469.99020386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c528 -05470259 469.99020386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c528 -05476492 470.08035278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -05476493 470.08035278 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -05476494 470.08041382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -05476495 470.08041382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -05476496 470.08041382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -05476497 470.08041382 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -05476498 470.08047485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -05476499 470.08047485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -05476500 470.08047485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -05476501 470.08047485 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -05476502 470.08050537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -05476503 470.08050537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -05476504 470.08056641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -05476505 470.08056641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -05476506 470.08056641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -05476507 470.08056641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -05476508 470.08062744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -05476509 470.08062744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -05476510 470.08062744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -05476511 470.08062744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -05476512 470.08065796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -05476513 470.08065796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -05476514 470.08065796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -05476515 470.08065796 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -05476516 470.08071899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b8 -05476517 470.08071899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b8 -05476518 470.08071899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c8 -05476519 470.08071899 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c8 -05476520 470.08078003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d8 -05476521 470.08078003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d8 -05476522 470.08078003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e8 -05476523 470.08078003 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e8 -05476524 470.08081055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f8 -05476525 470.08081055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f8 -05476526 470.08087158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28908 -05476527 470.08087158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28908 -05476528 470.08087158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28918 -05476529 470.08087158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28918 -05476530 470.08093262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28928 -05476531 470.08093262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28928 -05476532 470.08093262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28938 -05476533 470.08093262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28938 -05476534 470.08096313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28948 -05476535 470.08096313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28948 -05482850 470.17230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea8 -05482851 470.17230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea8 -05482852 470.17230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb8 -05482853 470.17230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb8 -05482854 470.17236328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec8 -05482855 470.17236328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec8 -05482856 470.17242432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed8 -05482857 470.17242432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed8 -05482858 470.17242432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee8 -05482859 470.17242432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee8 -05482860 470.17245483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef8 -05482861 470.17245483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef8 -05482862 470.17245483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f08 -05482863 470.17245483 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f08 -05482864 470.17251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f18 -05482865 470.17251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f18 -05482866 470.17251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f28 -05482867 470.17251587 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f28 -05482868 470.17257690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f38 -05482869 470.17257690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f38 -05482870 470.17257690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f48 -05482871 470.17257690 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f48 -05482872 470.17260742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f58 -05482873 470.17260742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f58 -05482874 470.17260742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f68 -05482875 470.17266846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f68 -05482876 470.17266846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f78 -05482877 470.17266846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f78 -05482878 470.17272949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f88 -05482879 470.17272949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f88 -05482880 470.17272949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f98 -05482881 470.17272949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f98 -05482882 470.17276001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa8 -05482883 470.17276001 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa8 -05482884 470.17282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb8 -05482885 470.17282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb8 -05482886 470.17282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc8 -05482887 470.17282104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc8 -05482888 470.17288208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd8 -05482889 470.17288208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd8 -05482890 470.17288208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe8 -05482891 470.17288208 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe8 -05482892 470.17294312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff8 -05482893 470.17294312 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff8 -05498164 470.50814819 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -05498165 470.90945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05498166 470.90945435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05498167 470.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05498168 470.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05498169 470.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05498170 470.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05498171 470.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05498172 470.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05498173 470.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05498174 470.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05498175 470.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05498176 470.90963745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05498177 470.90963745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05498178 470.90963745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05498179 470.90969849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05498180 470.90969849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05498181 470.90969849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05498182 470.90969849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05498183 470.90975952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05498184 470.90975952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05498185 470.90975952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05498186 470.90975952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05498187 470.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05498188 470.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05498189 470.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05498190 470.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05498191 470.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05498192 470.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05498193 470.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05498194 470.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05498195 470.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05498196 470.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05498197 470.90994263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05498198 470.90994263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05498199 470.90994263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05498200 470.90994263 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05498201 470.91000366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05498202 470.91000366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05498203 470.91000366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05498204 470.91000366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05498205 470.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05498206 470.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05498207 470.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05498208 470.91006470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05498209 470.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05498210 470.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05498211 470.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05498212 470.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05498213 470.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05498214 470.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05498215 470.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05498216 470.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05498217 470.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05498218 470.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05498219 470.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05498220 470.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05498221 470.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05498222 470.91024780 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05498223 470.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05498224 470.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05498225 470.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05498226 470.91030884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05498227 470.91036987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05498228 470.91036987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05498229 470.91036987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05498230 470.91036987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05498231 470.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05498232 470.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05498233 470.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05498234 470.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05498235 470.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05498236 470.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05498237 470.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05498238 470.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05498239 470.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05498240 470.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05498241 470.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05498242 470.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05498243 470.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05498244 470.91055298 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05498245 470.91061401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05498246 470.91061401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05498247 470.91061401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05498248 470.91061401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05498249 470.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05498250 470.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05498251 470.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05498252 470.91067505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05498253 470.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05498254 470.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05498255 470.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05498256 470.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05498257 470.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05498258 470.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05498259 470.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05498260 470.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05498261 470.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05498262 470.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05498263 470.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05498264 470.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05498265 470.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05498266 470.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05498267 470.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05498268 470.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05498269 470.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05498270 470.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05498271 470.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05498272 470.91091919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05498273 470.91098022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05498274 470.91098022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05498275 470.91098022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05498276 470.91098022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05498277 470.91104126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05498278 470.91104126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05498279 470.91104126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05498280 470.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05498281 470.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05498282 470.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05498283 470.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05498284 470.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05498285 470.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05498286 470.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05498287 470.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05498288 470.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05498289 470.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05498290 470.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05498291 470.91122437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05498292 470.91122437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05498293 470.91122437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05498294 470.91128540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05498295 470.91128540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05498296 470.91128540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05498297 470.91134644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05498298 470.91134644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05498299 470.91134644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05498300 470.91134644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05498301 470.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05498302 470.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05498303 470.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05498304 470.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05498305 470.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05498306 470.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05498307 470.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05498308 470.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05498309 470.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05498310 470.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05498311 470.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05498312 470.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05498313 470.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05498314 470.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05498315 470.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05498316 470.91152954 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05498317 470.91159058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05498318 470.91159058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05498319 470.91159058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05498320 470.91159058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05498321 470.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05498322 470.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05498323 470.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05498324 470.91165161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05498325 470.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05498326 470.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05498327 470.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05498328 470.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05498329 470.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05498330 470.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05498331 470.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05498332 470.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05498333 470.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05498334 470.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05498335 470.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05498336 470.91183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05498337 470.91183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05498338 470.91183472 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05498339 470.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05498340 470.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05498341 470.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05498342 470.91189575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05498343 470.91195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05498344 470.91195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05498345 470.91195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05498346 470.91195679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05498347 470.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05498348 470.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05498349 470.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05498350 470.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05498351 470.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05498352 470.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05498353 470.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05498354 470.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05498355 470.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05498356 470.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05498357 470.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05498358 470.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05498359 470.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05498360 470.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05498361 470.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05498362 470.91213989 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05498363 470.91220093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05498364 470.91220093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05498365 470.91220093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05498366 470.91220093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05498367 470.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05498368 470.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05498369 470.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05498370 470.91226196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05498371 470.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05498372 470.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05498373 470.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05498374 470.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05498375 470.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05498376 470.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05498377 470.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05498378 470.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05498379 470.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05498380 470.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05498381 470.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05498382 470.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05498383 470.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05498384 470.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05498385 470.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05498386 470.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05498387 470.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05498388 470.91250610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05498389 470.91256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05498390 470.91256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05498391 470.91256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05498392 470.91256714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05498393 470.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05498394 470.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05498395 470.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05498396 470.91262817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05498397 470.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05498398 470.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05498399 470.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05498400 470.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05498401 470.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05498402 470.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05498403 470.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05498404 470.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05498405 470.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05498406 470.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05498407 470.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05498408 470.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05498409 470.91281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05498410 470.91281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05498411 470.91281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05498412 470.91281128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05498413 470.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05498414 470.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05498415 470.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05498416 470.91287231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05498417 470.91293335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05498418 470.91293335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05498419 470.91293335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05498420 470.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05498421 470.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05498422 470.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05498423 470.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05498424 470.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05498425 470.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05498426 470.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05498427 470.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05498428 470.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05498429 470.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05498430 470.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05498431 470.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05498432 470.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05498433 470.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05498434 470.91311646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05498435 470.91317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05498436 470.91317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05498437 470.91317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05498438 470.91317749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05498439 470.91323853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05498440 470.91323853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05498441 470.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05498442 470.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05498443 470.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05498444 470.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05498445 470.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05498446 470.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05498447 470.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05498448 470.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05498449 470.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05498450 470.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05498451 470.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05498452 470.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05498453 470.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05498454 470.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05498455 470.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05498456 470.91342163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05498457 470.91348267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05498458 470.91348267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05498459 470.91348267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05498460 470.91348267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05498461 470.91354370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05498462 470.91354370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05498463 470.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05498464 470.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05498465 470.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05498466 470.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05498467 470.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05498468 470.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05498469 470.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05498470 470.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05498471 470.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05498472 470.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05498473 470.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05498474 470.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05498475 470.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05498476 470.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05498477 470.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05498478 470.91372681 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05498479 470.91378784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05498480 470.91378784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05498481 470.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05498482 470.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05498483 470.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05498484 470.91384888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05498485 470.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05498486 470.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05498487 470.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05498488 470.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05498489 470.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05498490 470.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05498491 470.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05498492 470.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05498493 470.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05498494 470.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05498495 470.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05498496 470.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05498497 470.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05498498 470.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05498499 470.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05498500 470.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05498501 470.91409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05498502 470.91409302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05498503 470.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05498504 470.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05498505 470.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05498506 470.91415405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05498507 470.91421509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05498508 470.91421509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05498509 470.91421509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05498510 470.91421509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05498511 470.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05498512 470.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05498513 470.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05498514 470.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05498515 470.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05498516 470.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05499840 470.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05499841 470.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05499842 470.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05499843 470.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05499844 470.93283081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05499845 470.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05499846 470.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05499847 470.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05499848 470.93289185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05499849 470.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05499850 470.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05499851 470.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05499852 470.93295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05499853 470.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05499854 470.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05499855 470.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05499856 470.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05499857 470.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05499858 470.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05499859 470.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05499860 470.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05499861 470.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05499862 470.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05499863 470.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05499864 470.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05499865 470.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05499866 470.93313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05499867 470.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05499868 470.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05499869 470.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05499870 470.93319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05499871 470.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05499872 470.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05499873 470.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05499874 470.93325806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05499875 470.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05499876 470.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05499877 470.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05499878 470.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05499879 470.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05499880 470.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05499881 470.93334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05499882 470.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05499883 470.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05504207 470.99301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -05504208 470.99301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd18 -05504209 470.99301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -05504210 470.99301147 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd28 -05504211 470.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -05504212 470.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd38 -05504213 470.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -05504214 470.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd48 -05504215 470.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -05504216 470.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd58 -05504217 470.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -05504218 470.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd68 -05504219 470.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -05504220 470.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd78 -05504221 470.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -05504222 470.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd88 -05504223 470.99319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -05504224 470.99319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcd98 -05504225 470.99319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -05504226 470.99319458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcda8 -05504227 470.99325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -05504228 470.99325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdb8 -05504229 470.99325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -05504230 470.99325562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdc8 -05504231 470.99331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -05504232 470.99331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdd8 -05504233 470.99331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -05504234 470.99331665 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcde8 -05504235 470.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -05504236 470.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xcdf8 -05504237 470.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -05504238 470.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce08 -05504239 470.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -05504240 470.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce18 -05504241 470.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -05504242 470.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce28 -05504243 470.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -05504244 470.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce38 -05504245 470.99349976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -05504246 470.99349976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce48 -05504247 470.99349976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -05504248 470.99349976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce58 -05504249 470.99356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -05504250 470.99356079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xce68 -05509383 471.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -05509384 471.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ed8 -05509385 471.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee8 -05509386 471.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ee8 -05509387 471.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef8 -05509388 471.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ef8 -05509389 471.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f08 -05509390 471.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f08 -05509391 471.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f18 -05509392 471.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f18 -05509393 471.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f28 -05509394 471.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f28 -05509395 471.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -05509396 471.06375122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f38 -05509397 471.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -05509398 471.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f48 -05509399 471.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -05509400 471.06381226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f58 -05509401 471.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -05509402 471.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f68 -05509403 471.06387329 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -05509404 471.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f78 -05509405 471.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f88 -05509406 471.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f88 -05509407 471.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05509408 471.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f98 -05509409 471.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05509410 471.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fa8 -05509411 471.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05509412 471.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -05509413 471.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05509414 471.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -05509415 471.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05509416 471.06405640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -05509417 471.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05509418 471.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -05509419 471.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05509420 471.06411743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -05509421 471.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05509422 471.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -05509423 471.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05509424 471.06417847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -05509425 471.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05509426 471.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -05514387 471.13436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b38 -05514388 471.13436890 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b38 -05514389 471.13439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -05514390 471.13439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -05514391 471.13446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -05514392 471.13446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -05514393 471.13452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -05514394 471.13452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -05514395 471.13452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -05514396 471.13452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -05514397 471.13455200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -05514398 471.13455200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -05514399 471.13461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -05514400 471.13461304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -05514401 471.13467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -05514402 471.13467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -05514403 471.13467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -05514404 471.13467407 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -05514405 471.13473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -05514406 471.13473511 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -05514407 471.13476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -05514408 471.13476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -05514409 471.13482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -05514410 471.13482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -05514411 471.13482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -05514412 471.13488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -05514413 471.13488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -05514414 471.13488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -05514415 471.13491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -05514416 471.13491821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -05514417 471.13497925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -05514418 471.13497925 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -05514419 471.13504028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -05514420 471.13504028 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -05514421 471.13507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -05514422 471.13507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -05514423 471.13507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -05514424 471.13507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -05514425 471.13513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c68 -05514426 471.13513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c68 -05514427 471.13519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c78 -05514428 471.13519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c78 -05514429 471.13522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c88 -05514430 471.13522339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c88 -05518587 471.20056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e78 -05518588 471.20056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e78 -05518589 471.20056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e88 -05518590 471.20056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e88 -05518591 471.20062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e98 -05518592 471.20062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e98 -05518593 471.20062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea8 -05518594 471.20062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea8 -05518595 471.20065308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb8 -05518596 471.20065308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb8 -05518597 471.20065308 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec8 -05518598 471.20071411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec8 -05518599 471.20071411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed8 -05518600 471.20071411 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed8 -05518601 471.20077515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee8 -05518602 471.20077515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee8 -05518603 471.20077515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef8 -05518604 471.20077515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef8 -05518605 471.20080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f08 -05518606 471.20080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f08 -05518607 471.20080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f18 -05518608 471.20080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f18 -05518609 471.20086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f28 -05518610 471.20086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f28 -05518611 471.20086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f38 -05518612 471.20086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f38 -05518613 471.20092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f48 -05518614 471.20092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f48 -05518615 471.20092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f58 -05518616 471.20092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f58 -05518617 471.20095825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f68 -05518618 471.20095825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f68 -05518619 471.20095825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f78 -05518620 471.20095825 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f78 -05518621 471.20101929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f88 -05518622 471.20101929 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f88 -05518623 471.20108032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f98 -05518624 471.20108032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f98 -05518625 471.20108032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa8 -05518626 471.20108032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fa8 -05518627 471.20114136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb8 -05518628 471.20114136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fb8 -05518629 471.20114136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc8 -05518630 471.20114136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28fc8 -05535381 471.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b48 -05535382 471.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b48 -05535383 471.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b58 -05535384 471.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b58 -05535385 471.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b68 -05535386 471.43258667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b68 -05535387 471.43264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -05535388 471.43264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b78 -05535389 471.43264771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -05535390 471.43270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b88 -05535391 471.43270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -05535392 471.43270874 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b98 -05535393 471.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -05535394 471.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ba8 -05535395 471.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -05535396 471.43276978 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bb8 -05535397 471.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -05535398 471.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bc8 -05535399 471.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -05535400 471.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bd8 -05535401 471.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -05535402 471.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49be8 -05535403 471.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -05535404 471.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49bf8 -05535405 471.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -05535406 471.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c08 -05535407 471.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -05535408 471.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c18 -05535409 471.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c28 -05535410 471.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c28 -05535411 471.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c38 -05535412 471.43295288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c38 -05535413 471.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c48 -05535414 471.43301392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c48 -05535415 471.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c58 -05535416 471.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c58 -05535417 471.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -05535418 471.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c68 -05535419 471.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -05535420 471.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c78 -05535421 471.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -05535422 471.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c88 -05535423 471.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -05535424 471.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c98 -05540052 471.49951172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05540053 471.49951172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05540054 472.26080322 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05540055 472.26080322 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05540056 472.26086426 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05540057 472.26086426 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05540058 472.26095581 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05540059 472.26095581 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05540060 472.26107788 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05540061 472.26116943 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05540062 472.94549561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05540063 472.94549561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05540064 472.94549561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05540065 472.94549561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05540066 472.94555664 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05540067 472.94555664 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05540068 472.94555664 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05540069 472.94555664 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05540070 472.94561768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05540071 472.94561768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05540072 472.94561768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05540073 472.94567871 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05540074 472.94567871 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05540075 472.94567871 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05540076 472.94570923 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05540077 472.94570923 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05540078 472.94577026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05540079 472.94577026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05540080 472.94577026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05540081 472.94577026 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05540082 472.94583130 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05540083 472.94583130 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05540084 472.94583130 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05540085 472.94583130 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05540086 472.94586182 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05540087 472.94586182 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05540088 472.94586182 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05540089 472.94586182 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05540090 472.94592285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05540091 472.94592285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05540092 472.94592285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05540093 472.94592285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05540094 472.94598389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05540095 472.94598389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05540096 472.94598389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05540097 472.94598389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05540098 472.94601440 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05540099 472.94601440 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05540100 472.94607544 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05540101 472.94607544 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05540102 472.94607544 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05540103 472.94607544 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05540104 472.94613647 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05540105 472.94613647 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05540106 472.94613647 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05540107 472.94613647 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05540108 472.94616699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05540109 472.94616699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05540110 472.94616699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05540111 472.94616699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05540112 472.94622803 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05540113 472.94622803 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05540114 472.94622803 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05540115 472.94622803 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05540116 472.94628906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05540117 472.94628906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05540118 472.94631958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05540119 472.94631958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05540120 472.94631958 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05540121 472.94638062 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05540122 472.94644165 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05540123 472.94644165 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05540124 472.94647217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05540125 472.94647217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05540126 472.94647217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05540127 472.94647217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05540128 472.94653320 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05540129 472.94653320 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05540130 472.94653320 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05540131 472.94653320 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05540132 472.94659424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05540133 472.94659424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05540134 472.94659424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05540135 472.94659424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05540136 472.94662476 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05540137 472.94662476 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05540138 472.94662476 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05540139 472.94662476 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05540140 472.94668579 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05540141 472.94668579 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05540142 472.94668579 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05540143 472.94668579 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05540144 472.94674683 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05540145 472.94674683 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05540146 472.94674683 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05540147 472.94677734 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05540148 472.94677734 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05540149 472.94677734 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05540150 472.94683838 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05540151 472.94683838 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05540152 472.94683838 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05540153 472.94683838 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05540154 472.94689941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05540155 472.94689941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05540156 472.94689941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05540157 472.94689941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05540158 472.94692993 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05540159 472.94692993 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05540160 472.94692993 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05540161 472.94692993 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05540162 472.94699097 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05540163 472.94699097 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05540164 472.94699097 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05540165 472.94699097 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05540166 472.94705200 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05540167 472.94705200 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05540168 472.94708252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05540169 472.94708252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05540170 472.94708252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05540171 472.94708252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05540172 472.94714355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05540173 472.94714355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05540174 472.94714355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05540175 472.94714355 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05540176 472.94720459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05540177 472.94720459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05540178 472.94720459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05540179 472.94720459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05540180 472.94726563 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05540181 472.94726563 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05540182 472.94729614 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05540183 472.94729614 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05540184 472.94735718 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05540185 472.94735718 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05540186 472.94735718 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05540187 472.94741821 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05540188 472.94741821 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05540189 472.94741821 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05540190 472.94744873 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05540191 472.94744873 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05540192 472.94744873 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05540193 472.94744873 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05540194 472.94750977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05540195 472.94750977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05540196 472.94750977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05540197 472.94750977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05540198 472.94757080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05540199 472.94757080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05540200 472.94757080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05540201 472.94760132 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05540202 472.94760132 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05540203 472.94760132 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05540204 472.94766235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05540205 472.94766235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05540206 472.94766235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05540207 472.94766235 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05540208 472.94772339 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05540209 472.94772339 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05540210 472.94772339 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05540211 472.94772339 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05540212 472.94775391 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05540213 472.94775391 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05540214 472.94775391 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05540215 472.94775391 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05540216 472.94781494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05540217 472.94781494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05540218 472.94781494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05540219 472.94781494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05540220 472.94787598 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05540221 472.94787598 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05540222 472.94790649 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05540223 472.94790649 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05540224 472.94790649 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05540225 472.94790649 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05540226 472.94796753 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05540227 472.94796753 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05540228 472.94796753 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05540229 472.94796753 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05540230 472.94802856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05540231 472.94802856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05540232 472.94802856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05540233 472.94802856 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05540234 472.94805908 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05540235 472.94805908 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05540236 472.94812012 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05540237 472.94812012 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05540238 472.94812012 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05540239 472.94812012 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05540240 472.94818115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05540241 472.94818115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05540242 472.94818115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05540243 472.94818115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05540244 472.94821167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05540245 472.94821167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05540246 472.94821167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05540247 472.94821167 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05540248 472.94827271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05540249 472.94827271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05540250 472.94827271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05540251 472.94833374 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05540252 472.94833374 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05540253 472.94833374 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05540254 472.94836426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05540255 472.94836426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05540256 472.94836426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05540257 472.94836426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05540258 472.94842529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05540259 472.94842529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05540260 472.94842529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05540261 472.94842529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05540262 472.94848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05540263 472.94848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05540264 472.94848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05540265 472.94848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05540266 472.94851685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05540267 472.94851685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05540268 472.94851685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05540269 472.94851685 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05540270 472.94857788 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05540271 472.94857788 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05540272 472.94863892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05540273 472.94863892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05540274 472.94863892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05540275 472.94863892 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05540276 472.94869995 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05540277 472.94869995 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05540278 472.94869995 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05540279 472.94869995 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05540280 472.94873047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05540281 472.94873047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05540282 472.94873047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05540283 472.94879150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05540284 472.94879150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05540285 472.94879150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05540286 472.94885254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05540287 472.94885254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05540288 472.94885254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05540289 472.94885254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05540290 472.94888306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05540291 472.94888306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05540292 472.94888306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05540293 472.94888306 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05540294 472.94894409 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05540295 472.94894409 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05540296 472.94894409 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05540297 472.94894409 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05540298 472.94903564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05540299 472.94909668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05540300 472.94909668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05540301 472.94909668 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05540302 472.94915771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05540303 472.94915771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05540304 472.94915771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05540305 472.94915771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05540306 472.94918823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05540307 472.94918823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05540308 472.94918823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05540309 472.94918823 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05540310 472.94924927 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05540311 472.94924927 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05540312 472.94924927 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05540313 472.94924927 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05540314 472.94931030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05540315 472.94931030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05540316 472.94931030 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05540317 472.94934082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05540318 472.94934082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05540319 472.94934082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05540320 472.94940186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05540321 472.94940186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05540322 472.94940186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05540323 472.94940186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05540324 472.94946289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05540325 472.94946289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05540326 472.94946289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05540327 472.94946289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05540328 472.94949341 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05540329 472.94949341 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05540330 472.94949341 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05540331 472.94949341 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05540332 472.94955444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05540333 472.94955444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05540334 472.94955444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05540335 472.94955444 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05540336 472.94961548 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05540337 472.94961548 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05540338 472.94961548 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05540339 472.94964600 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05540340 472.94964600 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05540341 472.94964600 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05540342 472.94970703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05540343 472.94970703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05540344 472.94970703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05540345 472.94970703 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05540346 472.94976807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05540347 472.94976807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05540348 472.94976807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05540349 472.94976807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05540350 472.94979858 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05540351 472.94979858 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05540352 472.94979858 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05540353 472.94979858 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05540354 472.94985962 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05540355 472.94985962 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05540356 472.94985962 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05540357 472.94985962 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05540358 472.94992065 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05540359 472.94992065 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05540360 472.94995117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05540361 472.94995117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05540362 472.94995117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05540363 472.94995117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05540364 472.95001221 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05540365 472.95001221 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05540366 472.95007324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05540367 472.95007324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05540368 472.95007324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05540369 472.95007324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05540370 472.95010376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05540371 472.95010376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05540372 472.95010376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05540373 472.95010376 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05540374 472.95016479 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05540375 472.95016479 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05540376 472.95016479 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05540377 472.95016479 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05540378 472.95022583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05540379 472.95022583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05540380 472.95022583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05540381 472.95022583 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05540382 472.95028687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05540383 472.95028687 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05540384 472.95031738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05540385 472.95031738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05540386 472.95031738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05540387 472.95031738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05540388 472.95037842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05540389 472.95037842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05540390 472.95037842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05540391 472.95037842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05540392 472.95043945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05540393 472.95043945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05540394 472.95043945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05540395 472.95043945 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05540396 472.95046997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05540397 472.95046997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05540398 472.95046997 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05540399 472.95053101 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05540400 472.95053101 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05540401 472.95053101 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05540402 472.95059204 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05540403 472.95059204 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05540404 472.95059204 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05540405 472.95059204 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05540406 472.95062256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05540407 472.95062256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05540408 472.95062256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05540409 472.95062256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05540410 472.95068359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05540411 472.95068359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05540412 472.95068359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05540413 472.95068359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05540414 472.95074463 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05540415 472.95074463 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05540416 472.95077515 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05540417 472.95077515 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05540418 472.95083618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05540419 472.95083618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05540420 472.95083618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05540421 472.95083618 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05540422 472.95089722 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05540423 472.95089722 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05540424 472.95089722 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05540425 472.95089722 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05540426 472.95092773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05540427 472.95092773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05540428 472.95092773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05540429 472.95098877 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05540430 472.95098877 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05540431 472.95098877 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05540432 472.95104980 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05540433 472.95104980 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05540434 472.95104980 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05540435 472.95104980 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05540436 472.95108032 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05540437 472.95108032 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05540438 472.95108032 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05540439 472.95108032 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05540440 472.95114136 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05540441 472.95114136 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05540442 472.95114136 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05540443 472.95114136 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05540444 472.95120239 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05540445 472.95120239 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05540446 472.95120239 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05540447 472.95120239 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05540448 472.95123291 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05540449 472.95123291 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05540450 472.95123291 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05540451 472.95123291 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05540452 472.95129395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05540453 472.95129395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05540454 472.95135498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05540455 472.95135498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05540456 472.95135498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05540457 472.95135498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05540458 472.95138550 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05540459 472.95138550 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05540460 472.95138550 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05540461 472.95138550 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05540462 472.95144653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05540463 472.95144653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05540464 472.95144653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05540465 472.95144653 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05540466 472.95150757 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05540467 472.95150757 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05540468 472.95159912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05540469 472.95159912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05540470 472.95159912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05540471 472.95159912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05540472 472.95166016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05540473 472.95166016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05540474 472.95166016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05540475 472.95166016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05540476 472.95169067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05540477 472.95169067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05540478 472.95169067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05540479 472.95169067 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05540480 472.95175171 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05540481 472.95175171 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05540482 472.95175171 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05540483 472.95181274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05540484 472.95181274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05540485 472.95181274 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05540486 472.95187378 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05540487 472.95187378 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05540488 472.95187378 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05540489 472.95187378 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05540490 472.95190430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05540491 472.95190430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05540492 472.95190430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05540493 472.95190430 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05540494 472.95196533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05540495 472.95196533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05540496 472.95196533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05540497 472.95196533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05540498 472.95202637 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05540499 472.95202637 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05540500 472.95202637 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05540501 472.95202637 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05545286 473.02108765 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -05545287 473.02108765 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb380 -05545288 473.02111816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -05545289 473.02111816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb390 -05545290 473.02111816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -05545291 473.02111816 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a0 -05545292 473.02117920 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -05545293 473.02117920 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b0 -05545294 473.02117920 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -05545295 473.02117920 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c0 -05545296 473.02124023 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -05545297 473.02124023 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d0 -05545298 473.02130127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -05545299 473.02130127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e0 -05545300 473.02130127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -05545301 473.02130127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f0 -05545302 473.02133179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -05545303 473.02133179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb400 -05545304 473.02133179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -05545305 473.02133179 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb410 -05545306 473.02139282 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -05545307 473.02139282 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb420 -05545308 473.02139282 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -05545309 473.02139282 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb430 -05545310 473.02145386 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -05545311 473.02145386 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb440 -05545312 473.02145386 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -05545313 473.02145386 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb450 -05545314 473.02148438 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -05545315 473.02148438 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb460 -05545316 473.02154541 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -05545317 473.02154541 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb470 -05545318 473.02160645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -05545319 473.02160645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb480 -05545320 473.02160645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -05545321 473.02160645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb490 -05545322 473.02163696 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -05545323 473.02163696 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a0 -05545324 473.02163696 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -05545325 473.02163696 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b0 -05545326 473.02169800 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -05545327 473.02169800 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c0 -05545328 473.02169800 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -05545329 473.02169800 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d0 -05551666 473.11355591 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -05551667 473.11355591 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ae0 -05551668 473.11355591 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -05551669 473.11358643 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17af0 -05551670 473.11358643 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -05551671 473.11358643 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b00 -05551672 473.11364746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -05551673 473.11364746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b10 -05551674 473.11364746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -05551675 473.11364746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b20 -05551676 473.11370850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -05551677 473.11370850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b30 -05551678 473.11370850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -05551679 473.11370850 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b40 -05551680 473.11373901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -05551681 473.11373901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b50 -05551682 473.11373901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -05551683 473.11373901 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b60 -05551684 473.11380005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -05551685 473.11380005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b70 -05551686 473.11380005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -05551687 473.11380005 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b80 -05551688 473.11386108 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -05551689 473.11386108 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b90 -05551690 473.11392212 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -05551691 473.11392212 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ba0 -05551692 473.11392212 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -05551693 473.11392212 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bb0 -05551694 473.11395264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -05551695 473.11395264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bc0 -05551696 473.11395264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -05551697 473.11395264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bd0 -05551698 473.11401367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -05551699 473.11401367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17be0 -05551700 473.11401367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -05551701 473.11401367 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17bf0 -05551702 473.11407471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -05551703 473.11407471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c00 -05551704 473.11407471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -05551705 473.11407471 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c10 -05551706 473.11410522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -05551707 473.11410522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c20 -05551708 473.11410522 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -05551709 473.11416626 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c30 -05558766 473.21557617 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -05558767 473.21557617 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258c0 -05558768 473.21563721 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -05558769 473.21563721 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258d0 -05558770 473.21563721 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -05558771 473.21563721 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258e0 -05558772 473.21569824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -05558773 473.21569824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x258f0 -05558774 473.21569824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -05558775 473.21572876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25900 -05558776 473.21572876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -05558777 473.21572876 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25910 -05558778 473.21578979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -05558779 473.21578979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25920 -05558780 473.21578979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -05558781 473.21578979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25930 -05558782 473.21585083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -05558783 473.21585083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25940 -05558784 473.21585083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -05558785 473.21585083 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25950 -05558786 473.21591187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -05558787 473.21591187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25960 -05558788 473.21591187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -05558789 473.21591187 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -05558790 473.21594238 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -05558791 473.21594238 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -05558792 473.21594238 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -05558793 473.21594238 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -05558794 473.21600342 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -05558795 473.21600342 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -05558796 473.21606445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -05558797 473.21606445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -05558798 473.21606445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -05558799 473.21606445 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -05558800 473.21609497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -05558801 473.21609497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -05558802 473.21609497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -05558803 473.21609497 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -05558804 473.21615601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -05558805 473.21615601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -05558806 473.21615601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -05558807 473.21615601 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -05558808 473.21621704 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -05558809 473.21621704 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -05574606 473.44213867 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -05574607 473.44213867 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c0 -05574608 473.44219971 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -05574609 473.44219971 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d0 -05574610 473.44219971 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -05574611 473.44219971 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e0 -05574612 473.44226074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -05574613 473.44226074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f0 -05574614 473.44229126 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -05574615 473.44229126 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44800 -05574616 473.44229126 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -05574617 473.44229126 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44810 -05574618 473.44235229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -05574619 473.44235229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44820 -05574620 473.44235229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -05574621 473.44235229 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44830 -05574622 473.44241333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -05574623 473.44241333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44840 -05574624 473.44241333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -05574625 473.44241333 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44850 -05574626 473.44244385 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -05574627 473.44244385 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44860 -05574628 473.44244385 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -05574629 473.44244385 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44870 -05574630 473.44250488 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -05574631 473.44250488 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44880 -05574632 473.44256592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -05574633 473.44256592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44890 -05574634 473.44256592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -05574635 473.44256592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a0 -05574636 473.44259644 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -05574637 473.44259644 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b0 -05574638 473.44259644 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -05574639 473.44259644 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448c0 -05574640 473.44265747 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -05574641 473.44265747 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448d0 -05574642 473.44265747 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -05574643 473.44265747 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448e0 -05574644 473.44271851 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -05574645 473.44271851 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x448f0 -05574646 473.44271851 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -05574647 473.44277954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44900 -05574648 473.44277954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -05574649 473.44277954 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x44910 -05579785 473.51766968 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -05579786 473.51766968 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e990 -05579787 473.51773071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -05579788 473.51773071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9a0 -05579789 473.51773071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -05579790 473.51773071 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9b0 -05579791 473.51776123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -05579792 473.51776123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9c0 -05579793 473.51776123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -05579794 473.51776123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9d0 -05579795 473.51782227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -05579796 473.51782227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9e0 -05579797 473.51782227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -05579798 473.51782227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e9f0 -05579799 473.51788330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -05579800 473.51788330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea00 -05579801 473.51788330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -05579802 473.51788330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea10 -05579803 473.51791382 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -05579804 473.51791382 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea20 -05579805 473.51797485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -05579806 473.51797485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea30 -05579807 473.51797485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -05579808 473.51797485 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea40 -05579809 473.51803589 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -05579810 473.51803589 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea50 -05579811 473.51803589 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -05579812 473.51803589 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea60 -05579813 473.51806641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -05579814 473.51806641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea70 -05579815 473.51806641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -05579816 473.51806641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea80 -05579817 473.51812744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -05579818 473.51812744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea90 -05579819 473.51812744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -05579820 473.51812744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eaa0 -05579821 473.51818848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -05579822 473.51818848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eab0 -05579823 473.51818848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -05579824 473.51821899 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eac0 -05579825 473.51821899 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -05579826 473.51821899 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ead0 -05579827 473.51828003 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -05579828 473.51828003 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eae0 -05581959 474.76818848 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05581960 474.76821899 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05581961 474.76821899 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05581962 474.76821899 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05581963 474.76837158 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05581964 474.76837158 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05581965 474.76843262 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05581966 474.76843262 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05581967 475.52346802 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05581968 475.54324341 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05581969 475.54330444 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05581970 476.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05581971 476.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05581972 476.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05581973 476.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05581974 476.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05581975 476.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05581976 476.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05581977 476.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05581978 476.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05581979 476.49801636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05581980 476.49807739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05581981 476.49807739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05581982 476.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05581983 476.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05581984 476.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05581985 476.49813843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05581986 476.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05581987 476.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05581988 476.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05581989 476.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05581990 476.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05581991 476.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05581992 476.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05581993 476.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05581994 476.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05581995 476.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05581996 476.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05581997 476.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05581998 476.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05581999 476.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05582000 476.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05582001 476.49832153 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05582002 476.49838257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05582003 476.49838257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05582004 476.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05582005 476.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05582006 476.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05582007 476.49844360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05582008 476.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05582009 476.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05582010 476.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05582011 476.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05582012 476.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05582013 476.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05582014 476.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05582015 476.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05582016 476.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05582017 476.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05582018 476.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05582019 476.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05582020 476.49862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05582021 476.49862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05582022 476.49862671 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05582023 476.49868774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05582024 476.49868774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05582025 476.49868774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05582026 476.49874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05582027 476.49874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05582028 476.49874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05582029 476.49874878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05582030 476.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05582031 476.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05582032 476.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05582033 476.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05582034 476.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05582035 476.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05582036 476.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05582037 476.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05582038 476.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05582039 476.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05582040 476.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05582041 476.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05582042 476.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05582043 476.49893188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05582044 476.49899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05582045 476.49899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05582046 476.49899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05582047 476.49899292 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05582048 476.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05582049 476.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05582050 476.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05582051 476.49905396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05582052 476.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05582053 476.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05582054 476.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05582055 476.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05582056 476.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05582057 476.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05582058 476.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05582059 476.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05582060 476.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05582061 476.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05582062 476.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05582063 476.49923706 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05582064 476.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05582065 476.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05582066 476.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05582067 476.49929810 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05582068 476.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05582069 476.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05582070 476.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05582071 476.49935913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05582072 476.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05582073 476.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05582074 476.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05582075 476.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05582076 476.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05582077 476.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05582078 476.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05582079 476.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05582080 476.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05582081 476.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05582082 476.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05582083 476.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05582084 476.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05582085 476.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05582086 476.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05582087 476.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05582088 476.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05582089 476.49960327 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05582090 476.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05582091 476.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05582092 476.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05582093 476.49966431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05582094 476.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05582095 476.49972534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05582096 476.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05582097 476.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05582098 476.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05582099 476.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05582100 476.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05582101 476.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05582102 476.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05582103 476.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05582104 476.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05582105 476.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05582106 476.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05582107 476.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05582108 476.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05582109 476.49990845 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05582110 476.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05582111 476.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05582112 476.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05582113 476.49996948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05582114 476.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05582115 476.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05582116 476.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05582117 476.50003052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05582118 476.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05582119 476.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05582120 476.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05582121 476.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05582122 476.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05582123 476.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05582124 476.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05582125 476.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05582126 476.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05582127 476.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05582128 476.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05582129 476.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05582130 476.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05582131 476.50021362 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05582132 476.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05582133 476.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05582134 476.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05582135 476.50027466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05582136 476.50033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05582137 476.50033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05582138 476.50033569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05582139 476.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05582140 476.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05582141 476.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05582142 476.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05582143 476.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05582144 476.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05582145 476.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05582146 476.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05582147 476.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05582148 476.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05582149 476.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05582150 476.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05582151 476.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05582152 476.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05582153 476.50051880 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05582154 476.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05582155 476.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05582156 476.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05582157 476.50057983 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05582158 476.50064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05582159 476.50064087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05582160 476.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05582161 476.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05582162 476.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05582163 476.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05582164 476.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05582165 476.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05582166 476.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05582167 476.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05582168 476.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05582169 476.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05582170 476.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05582171 476.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05582172 476.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05582173 476.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05582174 476.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05582175 476.50082397 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05582176 476.50088501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05582177 476.50088501 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05582178 476.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05582179 476.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05582180 476.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05582181 476.50094604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05582182 476.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05582183 476.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05582184 476.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05582185 476.50100708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05582186 476.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05582187 476.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05582188 476.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05582189 476.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05582190 476.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05582191 476.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05582192 476.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05582193 476.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05582194 476.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05582195 476.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05582196 476.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05582197 476.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05582198 476.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05582199 476.50119019 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05582200 476.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05582201 476.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05582202 476.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05582203 476.50125122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05582204 476.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05582205 476.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05582206 476.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05582207 476.50131226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05582208 476.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05582209 476.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05582210 476.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05582211 476.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05582212 476.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05582213 476.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05582214 476.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05582215 476.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05582216 476.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05582217 476.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05582218 476.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05582219 476.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05582220 476.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05582221 476.50149536 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05582222 476.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05582223 476.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05582224 476.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05582225 476.50155640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05582226 476.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05582227 476.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05582228 476.50161743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05582229 476.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05582230 476.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05582231 476.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05582232 476.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05582233 476.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05582234 476.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05582235 476.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05582236 476.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05582237 476.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05582238 476.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05582239 476.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05582240 476.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05582241 476.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05582242 476.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05582243 476.50180054 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05582244 476.50186157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05582245 476.50186157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05582246 476.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05582247 476.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05582248 476.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05582249 476.50192261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05582250 476.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05582251 476.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05582252 476.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05582253 476.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05582254 476.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05582255 476.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05582256 476.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05582257 476.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05582258 476.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05582259 476.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05582260 476.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05582261 476.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05582262 476.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05582263 476.50210571 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05582264 476.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05582265 476.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05582266 476.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05582267 476.50216675 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05582268 476.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05582269 476.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05582270 476.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05582271 476.50222778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05582272 476.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05582273 476.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05582274 476.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05582275 476.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05582276 476.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05582277 476.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05582278 476.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05582279 476.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05582280 476.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05582281 476.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05582282 476.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05582283 476.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05582284 476.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05582285 476.50241089 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05582286 476.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05582287 476.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05582288 476.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05582289 476.50247192 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05582290 476.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05582291 476.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05582292 476.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05582293 476.50253296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05582294 476.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05582295 476.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05582296 476.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05582297 476.50259399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05582298 476.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05582299 476.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05582300 476.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05582301 476.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05582302 476.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05582303 476.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05582304 476.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05582305 476.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05582306 476.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05582307 476.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05582308 476.50277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05582309 476.50277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05582310 476.50277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05582311 476.50277710 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05582312 476.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05582313 476.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05582314 476.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05582315 476.50283813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05582316 476.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05582317 476.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05582318 476.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05582319 476.50289917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05582320 476.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05582321 476.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05582322 476.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05582323 476.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05582324 476.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05582325 476.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05582326 476.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05582327 476.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05582328 476.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05582329 476.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05582330 476.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05582331 476.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05582332 476.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05582333 476.50308228 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05582334 476.50314331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05582335 476.50314331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05582336 476.50314331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05582337 476.50314331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05582338 476.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05582339 476.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05582340 476.50320435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05582341 476.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05582342 476.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05582343 476.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05582344 476.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05582345 476.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05582346 476.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05582347 476.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05582348 476.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05582349 476.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05582350 476.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05582351 476.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05582352 476.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05582353 476.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05582354 476.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05582355 476.50338745 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05582356 476.50344849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05582357 476.50344849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05582358 476.50344849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05582359 476.50344849 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05582360 476.50350952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05582361 476.50350952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05582362 476.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05582363 476.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05582364 476.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05582365 476.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05582366 476.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05582367 476.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05582368 476.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05582369 476.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05582370 476.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05582371 476.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05582372 476.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05582373 476.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05582374 476.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05582375 476.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05582376 476.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05582377 476.50369263 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05582378 476.50375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05582379 476.50375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05582380 476.50375366 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05582381 476.50381470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05582382 476.50381470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05582383 476.50381470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05582384 476.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05582385 476.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05582386 476.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05582387 476.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05582388 476.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05582389 476.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05582390 476.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05582391 476.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05582392 476.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05582393 476.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05582394 476.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05582395 476.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05582396 476.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05582397 476.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05582398 476.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05582399 476.50399780 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05582400 476.50405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05582401 476.50405884 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05582402 476.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05582403 476.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05582404 476.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05582405 476.50411987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05582406 476.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05582407 476.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05582408 476.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05582409 476.50418091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05582410 476.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05582411 476.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05582412 476.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05582413 476.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05582414 476.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05582415 476.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05582416 476.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05582417 476.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05582418 476.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05582419 476.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05582420 476.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05582421 476.50436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05582422 476.50436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05582423 476.50436401 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05582424 476.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05582425 476.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05582426 476.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05582427 476.50442505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05582428 476.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05582429 476.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05582430 476.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05582431 476.50448608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05582432 476.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05582433 476.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05582434 476.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05582435 476.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05582436 476.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05582437 476.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05582438 476.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05582439 476.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05582440 476.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05582441 476.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05582442 476.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05582443 476.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05582444 476.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05582445 476.50466919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05582446 476.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05582447 476.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05582448 476.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05582449 476.50473022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05582450 476.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05582451 476.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05582452 476.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05582453 476.50479126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05582454 476.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05582455 476.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05582456 476.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05582457 476.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05582458 476.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05582459 476.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05582460 476.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05582461 476.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05582462 476.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05582463 476.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05582464 476.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05582465 476.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05582466 476.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05582467 476.50497437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05582468 476.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05582469 476.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05582470 476.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05582471 476.50503540 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05582472 476.50509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05582473 476.50509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05582474 476.50509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05582475 476.50509644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05582476 476.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05582477 476.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05582478 476.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05582479 476.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05582480 476.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05582481 476.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05582482 476.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05582483 476.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05582484 476.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05582485 476.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05582486 476.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05582487 476.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05582488 476.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05582489 476.50527954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05582490 476.50534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05582491 476.50534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05582492 476.50534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05582493 476.50534058 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05582494 476.50540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05582495 476.50540161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05582496 476.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05582497 476.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05582498 476.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05582499 476.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05582500 476.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05582501 476.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05582502 476.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05582503 476.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05582504 476.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05582505 476.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05582506 476.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05582507 476.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05582508 476.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05582509 476.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05582510 476.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05582511 476.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05582512 476.50564575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05582513 476.50564575 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05582514 476.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05582515 476.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05582516 476.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05582517 476.50570679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05582518 476.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05582519 476.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05582520 476.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05582521 476.50576782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05582522 476.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05582523 476.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05582524 476.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05582525 476.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05582526 476.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05582527 476.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05582528 476.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05582529 476.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05582530 476.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05582531 476.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05582532 476.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05582533 476.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05582534 476.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05582535 476.50595093 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05582536 476.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05582537 476.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05582538 476.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05582539 476.50601196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05582540 476.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05582541 476.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05582542 476.50607300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05582543 476.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05582544 476.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05582545 476.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05582546 476.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05582547 476.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05582548 476.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05582549 476.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05582550 476.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05582551 476.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05582552 476.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05582553 476.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05582554 476.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05582555 476.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05582556 476.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05582557 476.50625610 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05582558 476.50631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05582559 476.50631714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05582560 476.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05582561 476.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05582562 476.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05582563 476.50637817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05582564 476.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05582565 476.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05582566 476.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05582567 476.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05582568 476.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05582569 476.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05582570 476.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05582571 476.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05582572 476.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05582573 476.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05582574 476.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05582575 476.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05582576 476.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05582577 476.50656128 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05582578 476.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05582579 476.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05582580 476.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05582581 476.50662231 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05582582 476.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05582583 476.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05582584 476.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05582585 476.50668335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05582586 476.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05582587 476.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05582588 476.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05582589 476.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05582590 476.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05582591 476.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05582592 476.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05582593 476.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05582594 476.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05582595 476.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05582596 476.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05582597 476.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05582598 476.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05582599 476.50686646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05582600 476.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05582601 476.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05582602 476.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05582603 476.50692749 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05582604 476.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05582605 476.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05582606 476.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05582607 476.50698853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05582608 476.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05582609 476.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05582610 476.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05582611 476.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05582612 476.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05582613 476.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05582614 476.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05582615 476.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05582616 476.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05582617 476.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05582618 476.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05582619 476.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05582620 476.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05582621 476.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05582622 476.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05582623 476.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05582624 476.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05582625 476.50723267 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05582626 476.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05582627 476.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05582628 476.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05582629 476.50729370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05582630 476.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05582631 476.50735474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05582632 476.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05582633 476.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05582634 476.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05582635 476.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05582636 476.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05582637 476.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05582638 476.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05582639 476.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05582640 476.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05582641 476.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05582642 476.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05582643 476.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05582644 476.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05582645 476.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05582646 476.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05582647 476.50753784 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05582648 476.50759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05582649 476.50759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05582650 476.50759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05582651 476.50759888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05582652 476.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05582653 476.50765991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05582654 476.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05582655 476.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05582656 476.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05582657 476.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05582658 476.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05582659 476.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05582660 476.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05582661 476.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05582662 476.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05582663 476.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05582664 476.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05582665 476.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05582666 476.50784302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05582667 476.50784302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05582668 476.50784302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05582669 476.50784302 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05582670 476.50790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05582671 476.50790405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05582672 476.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05582673 476.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05582674 476.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05582675 476.50796509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05582676 476.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05582677 476.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05582678 476.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05582679 476.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05582680 476.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05582681 476.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05582682 476.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05582683 476.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05582684 476.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05582685 476.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05582686 476.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05582687 476.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05582688 476.50814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05582689 476.50814819 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05582690 476.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05582691 476.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05582692 476.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05582693 476.50820923 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05582694 476.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05582695 476.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05582696 476.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05582697 476.50827026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05582698 476.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05582699 476.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05582700 476.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05582701 476.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05582702 476.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05582703 476.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05582704 476.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05582705 476.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05582706 476.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05582707 476.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05582708 476.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05582709 476.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05582710 476.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05582711 476.50845337 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05582712 476.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05582713 476.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05582714 476.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05582715 476.50851440 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05582716 476.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05582717 476.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05582718 476.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05582719 476.50857544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05582720 476.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05582721 476.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05582722 476.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05582723 476.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05582724 476.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05582725 476.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05582726 476.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05582727 476.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05582728 476.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05582729 476.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05582730 476.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05582731 476.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05582732 476.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05582733 476.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05582734 476.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05582735 476.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05582736 476.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05582737 476.50881958 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05582738 476.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05582739 476.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05582740 476.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05582741 476.50888062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05582742 476.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05582743 476.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05582744 476.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05582745 476.50894165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05582746 476.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05582747 476.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05582748 476.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05582749 476.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05582750 476.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05582751 476.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05582752 476.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05582753 476.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05582754 476.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05582755 476.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05582756 476.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05582757 476.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05582758 476.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05582759 476.50912476 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05582760 476.50918579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05582761 476.50918579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05582762 476.50918579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05582763 476.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05582764 476.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05582765 476.50924683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05582766 476.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05582767 476.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05582768 476.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05582769 476.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05582770 476.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05582771 476.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05582772 476.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05582773 476.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05582774 476.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05582775 476.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05582776 476.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05582777 476.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05582778 476.50942993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05582779 476.50942993 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05582780 476.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05582781 476.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05582782 476.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05582783 476.50949097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05582784 476.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05582785 476.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05582786 476.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05582787 476.50955200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05582788 476.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05582789 476.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05582790 476.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05582791 476.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05582792 476.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05582793 476.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05582794 476.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05582795 476.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05582796 476.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05582797 476.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05582798 476.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05582799 476.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05582800 476.50973511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05582801 476.50973511 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05582802 476.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05582803 476.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05582804 476.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05582805 476.50979614 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05582806 476.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05582807 476.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05582808 476.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05582809 476.50985718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05582810 476.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05582811 476.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05582812 476.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05582813 476.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05582814 476.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05582815 476.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05582816 476.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05582817 476.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05582818 476.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05582819 476.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05582820 476.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05582821 476.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05582822 476.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05582823 476.51004028 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05582824 476.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05582825 476.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05582826 476.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05582827 476.51010132 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05582828 476.51016235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05582829 476.51016235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05582830 476.51016235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05582831 476.51016235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05582832 476.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05582833 476.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05582834 476.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05582835 476.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05582836 476.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05582837 476.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05582838 476.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05582839 476.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05582840 476.51031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05582841 476.51031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05582842 476.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05582843 476.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05582844 476.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05582845 476.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05582846 476.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05582847 476.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05582848 476.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05582849 476.51040649 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05582850 476.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05582851 476.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05582852 476.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05582853 476.51046753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05582854 476.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05582855 476.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05582856 476.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05582857 476.51052856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05582858 476.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05582859 476.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05582860 476.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05582861 476.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05582862 476.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05582863 476.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05582864 476.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05582865 476.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05582866 476.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05582867 476.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05582868 476.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05582869 476.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05582870 476.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05582871 476.51071167 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05582872 476.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05582873 476.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05582874 476.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05582875 476.51077271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05582876 476.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05582877 476.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05582878 476.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05582879 476.51083374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05582880 476.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05582881 476.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05582882 476.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05582883 476.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05582884 476.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05582885 476.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05582886 476.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05582887 476.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05582888 476.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05582889 476.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05582890 476.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05582891 476.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05582892 476.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05582893 476.51101685 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05583558 476.52059937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05583559 476.52059937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05583560 476.52059937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05583561 476.52059937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05583562 476.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05583563 476.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05583564 476.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05583565 476.52066040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05583566 476.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05583567 476.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05583568 476.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05583569 476.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05583570 476.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05583571 476.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05583572 476.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05583573 476.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05583574 476.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05583575 476.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05583576 476.52084351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05583577 476.52084351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05583578 476.52084351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05583579 476.52084351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05583580 476.52090454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05583581 476.52090454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05583582 476.52090454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05583583 476.52090454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05583584 476.52096558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05583585 476.52096558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05583586 476.52096558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05583587 476.52096558 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05583588 476.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05583589 476.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05583590 476.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05583591 476.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05583592 476.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05583593 476.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05583594 476.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05583595 476.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05583596 476.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05583597 476.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05583598 476.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05583599 476.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05583600 476.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05583601 476.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05585395 476.54681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -05585396 476.54681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -05585397 476.54681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -05585398 476.54687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -05585399 476.54687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -05585400 476.54687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -05585401 476.54690552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -05585402 476.54690552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -05585403 476.54690552 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -05585404 476.54696655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -05585405 476.54696655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -05585406 476.54696655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -05585407 476.54696655 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -05585408 476.54702759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -05585409 476.54702759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -05585410 476.54702759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -05585411 476.54702759 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -05585412 476.54705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -05585413 476.54705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -05585414 476.54705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -05585415 476.54705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -05585416 476.54711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -05585417 476.54711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -05585418 476.54711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -05585419 476.54718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -05585420 476.54718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -05585421 476.54718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -05585422 476.54721069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -05585423 476.54721069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -05585424 476.54721069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -05585425 476.54721069 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -05585426 476.54727173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -05585427 476.54727173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -05585428 476.54727173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -05585429 476.54727173 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -05585430 476.54733276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -05585431 476.54733276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -05585432 476.54733276 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -05585433 476.54739380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -05585434 476.54739380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -05585435 476.54739380 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -05585436 476.54742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -05585437 476.54742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -05585438 476.54742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -05590114 476.61389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec8 -05590115 476.61389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ec8 -05590116 476.61389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed8 -05590117 476.61389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ed8 -05590118 476.61395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee8 -05590119 476.61395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ee8 -05590120 476.61395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef8 -05590121 476.61398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ef8 -05590122 476.61398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f08 -05590123 476.61398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f08 -05590124 476.61404419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f18 -05590125 476.61404419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f18 -05590126 476.61404419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f28 -05590127 476.61404419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f28 -05590128 476.61410522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f38 -05590129 476.61410522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f38 -05590130 476.61410522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f48 -05590131 476.61410522 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f48 -05590132 476.61413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f58 -05590133 476.61413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f58 -05590134 476.61413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f68 -05590135 476.61413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f68 -05590136 476.61419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f78 -05590137 476.61419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f78 -05590138 476.61419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f88 -05590139 476.61419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f88 -05590140 476.61425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f98 -05590141 476.61425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f98 -05590142 476.61425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa8 -05590143 476.61428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fa8 -05590144 476.61428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb8 -05590145 476.61428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fb8 -05590146 476.61434937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc8 -05590147 476.61434937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fc8 -05590148 476.61434937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd8 -05590149 476.61434937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fd8 -05590150 476.61441040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe8 -05590151 476.61441040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe8 -05590152 476.61441040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff8 -05590153 476.61441040 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff8 -05590154 476.61444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11008 -05590155 476.61444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11008 -05590156 476.61444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11018 -05590157 476.61444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11018 -05597198 476.71466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -05597199 476.71466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec28 -05597200 476.71469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -05597201 476.71469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec38 -05597202 476.71469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -05597203 476.71469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec48 -05597204 476.71475220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -05597205 476.71475220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec58 -05597206 476.71481323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -05597207 476.71481323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec68 -05597208 476.71481323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -05597209 476.71481323 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec78 -05597210 476.71484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -05597211 476.71484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec88 -05597212 476.71484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -05597213 476.71484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -05597214 476.71490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -05597215 476.71490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -05597216 476.71490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -05597217 476.71490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -05597218 476.71496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -05597219 476.71496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -05597220 476.71496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -05597221 476.71496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -05597222 476.71499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -05597223 476.71499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -05597224 476.71505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -05597225 476.71505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -05597226 476.71505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -05597227 476.71505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -05597228 476.71511841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -05597229 476.71511841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -05597230 476.71511841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -05597231 476.71511841 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -05597232 476.71514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed38 -05597233 476.71514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed38 -05597234 476.71514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -05597235 476.71514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -05597236 476.71520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -05597237 476.71520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -05597238 476.71520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -05597239 476.71520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -05597240 476.71527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -05597241 476.71527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -05612522 476.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -05612523 476.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -05612524 476.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -05612525 476.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -05612526 476.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -05612527 476.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -05612528 476.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -05612529 476.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -05612530 476.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -05612531 476.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -05612532 476.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -05612533 476.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -05612534 476.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -05612535 476.93234253 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -05612536 476.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -05612537 476.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -05612538 476.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -05612539 476.93240356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -05612540 476.93246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -05612541 476.93246460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -05612542 476.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba8 -05612543 476.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba8 -05612544 476.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb8 -05612545 476.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbb8 -05612546 476.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc8 -05612547 476.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbc8 -05612548 476.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd8 -05612549 476.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbd8 -05612550 476.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe8 -05612551 476.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbe8 -05612552 476.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf8 -05612553 476.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cbf8 -05612554 476.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc08 -05612555 476.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc08 -05612556 476.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc18 -05612557 476.93264771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc18 -05612558 476.93270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc28 -05612559 476.93270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc28 -05612560 476.93270874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -05612561 476.93276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc38 -05612562 476.93276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -05612563 476.93276978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc48 -05612564 476.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -05612565 476.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc58 -05618128 477.01181030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a38 -05618129 477.01187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a38 -05618130 477.01187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a48 -05618131 477.01187134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a48 -05618132 477.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a58 -05618133 477.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a58 -05618134 477.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a68 -05618135 477.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a68 -05618136 477.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a78 -05618137 477.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a78 -05618138 477.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a88 -05618139 477.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a88 -05618140 477.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a98 -05618141 477.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a98 -05618142 477.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa8 -05618143 477.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47aa8 -05618144 477.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab8 -05618145 477.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ab8 -05618146 477.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac8 -05618147 477.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ac8 -05618148 477.01211548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad8 -05618149 477.01211548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ad8 -05618150 477.01217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae8 -05618151 477.01217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ae8 -05618152 477.01217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af8 -05618153 477.01217651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47af8 -05618154 477.01223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b08 -05618155 477.01223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b08 -05618156 477.01223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b18 -05618157 477.01223755 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b18 -05618158 477.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b28 -05618159 477.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b28 -05618160 477.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b38 -05618161 477.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b38 -05618162 477.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b48 -05618163 477.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b48 -05618164 477.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b58 -05618165 477.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b58 -05618166 477.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b68 -05618167 477.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b68 -05618168 477.01242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b78 -05618169 477.01242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b78 -05618170 477.01242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b88 -05618171 477.01242065 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b88 -05623856 477.27468872 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623857 477.27471924 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623858 477.27471924 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623859 477.27471924 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05623860 477.27487183 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623861 477.27487183 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05623862 477.27493286 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623863 477.27493286 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05623864 477.36868286 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05623865 477.36920166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05623866 477.54537964 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05623867 477.56573486 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623868 477.56573486 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623869 479.56649780 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05623870 479.58670044 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623871 479.58670044 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623872 479.78244019 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623873 479.78250122 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623874 479.78250122 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623875 479.78256226 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05623876 479.78265381 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623877 479.78265381 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05623878 479.78271484 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05623879 479.78274536 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05623880 481.58914185 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05623881 481.61013794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623882 481.61013794 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05623883 482.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05623884 482.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05623885 482.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05623886 482.09286499 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05623887 482.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05623888 482.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05623889 482.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05623890 482.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05623891 482.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05623892 482.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05623893 482.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05623894 482.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05623895 482.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05623896 482.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05623897 482.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05623898 482.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05623899 482.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05623900 482.09304810 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05623901 482.09310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05623902 482.09310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05623903 482.09310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05623904 482.09310913 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05623905 482.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05623906 482.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05623907 482.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05623908 482.09317017 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05623909 482.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05623910 482.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05623911 482.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05623912 482.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05623913 482.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05623914 482.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05623915 482.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05623916 482.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05623917 482.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05623918 482.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05623919 482.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05623920 482.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05623921 482.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05623922 482.09335327 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05623923 482.09341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05623924 482.09341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05623925 482.09341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05623926 482.09341431 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05623927 482.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05623928 482.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05623929 482.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05623930 482.09347534 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05623931 482.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05623932 482.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05623933 482.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05623934 482.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05623935 482.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05623936 482.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05623937 482.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05623938 482.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05623939 482.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05623940 482.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05623941 482.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05623942 482.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05623943 482.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05623944 482.09365845 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05623945 482.09371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05623946 482.09371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05623947 482.09371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05623948 482.09371948 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05623949 482.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05623950 482.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05623951 482.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05623952 482.09378052 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05623953 482.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05623954 482.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05623955 482.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05623956 482.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05623957 482.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05623958 482.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05623959 482.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05623960 482.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05623961 482.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05623962 482.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05623963 482.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05623964 482.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05623965 482.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05623966 482.09396362 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05623967 482.09402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05623968 482.09402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05623969 482.09402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05623970 482.09402466 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05623971 482.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05623972 482.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05623973 482.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05623974 482.09408569 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05623975 482.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05623976 482.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05623977 482.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05623978 482.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05623979 482.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05623980 482.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05623981 482.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05623982 482.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05623983 482.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05623984 482.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05623985 482.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05623986 482.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05623987 482.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05623988 482.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05623989 482.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05623990 482.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05623991 482.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05623992 482.09432983 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05623993 482.09439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05623994 482.09439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05623995 482.09439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05623996 482.09439087 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05623997 482.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05623998 482.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05623999 482.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05624000 482.09445190 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05624001 482.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05624002 482.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05624003 482.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05624004 482.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05624005 482.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05624006 482.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05624007 482.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05624008 482.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05624009 482.09463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05624010 482.09463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05624011 482.09463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05624012 482.09463501 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05624013 482.09469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05624014 482.09469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05624015 482.09469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05624016 482.09469604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05624017 482.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05624018 482.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05624019 482.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05624020 482.09475708 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05624021 482.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05624022 482.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05624023 482.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05624024 482.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05624025 482.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05624026 482.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05624027 482.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05624028 482.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05624029 482.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05624030 482.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05624031 482.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05624032 482.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05624033 482.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05624034 482.09494019 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05624035 482.09500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05624036 482.09500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05624037 482.09500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05624038 482.09500122 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05624039 482.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05624040 482.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05624041 482.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05624042 482.09506226 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05624043 482.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05624044 482.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05624045 482.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05624046 482.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05624047 482.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05624048 482.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05624049 482.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05624050 482.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05624051 482.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05624052 482.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05624053 482.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05624054 482.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05624055 482.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05624056 482.09524536 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05624057 482.09530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05624058 482.09530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05624059 482.09530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05624060 482.09530640 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05624061 482.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05624062 482.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05624063 482.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05624064 482.09536743 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05624065 482.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05624066 482.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05624067 482.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05624068 482.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05624069 482.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05624070 482.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05624071 482.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05624072 482.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05624073 482.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05624074 482.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05624075 482.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05624076 482.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05624077 482.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05624078 482.09555054 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05624079 482.09561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05624080 482.09561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05624081 482.09561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05624082 482.09561157 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05624083 482.09567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05624084 482.09567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05624085 482.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05624086 482.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05624087 482.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05624088 482.09573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05624089 482.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05624090 482.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05624091 482.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05624092 482.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05624093 482.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05624094 482.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05624095 482.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05624096 482.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05624097 482.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05624098 482.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05624099 482.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05624100 482.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05624101 482.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05624102 482.09591675 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05624103 482.09597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05624104 482.09597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05624105 482.09597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05624106 482.09597778 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05624107 482.09603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05624108 482.09603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05624109 482.09603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05624110 482.09603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05624111 482.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05624112 482.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05624113 482.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05624114 482.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05624115 482.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05624116 482.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05624117 482.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05624118 482.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05624119 482.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05624120 482.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05624121 482.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05624122 482.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05624123 482.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05624124 482.09622192 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05624125 482.09628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05624126 482.09628296 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05624127 482.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05624128 482.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05624129 482.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05624130 482.09634399 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05624131 482.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05624132 482.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05624133 482.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05624134 482.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05624135 482.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05624136 482.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05624137 482.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05624138 482.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05624139 482.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05624140 482.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05624141 482.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05624142 482.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05624143 482.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05624144 482.09652710 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05624145 482.09658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05624146 482.09658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05624147 482.09658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05624148 482.09658813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05624149 482.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05624150 482.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05624151 482.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05624152 482.09664917 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05624153 482.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05624154 482.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05624155 482.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05624156 482.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05624157 482.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05624158 482.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05624159 482.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05624160 482.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05624161 482.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05624162 482.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05624163 482.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05624164 482.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05624165 482.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05624166 482.09683228 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05624167 482.09689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05624168 482.09689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05624169 482.09689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05624170 482.09689331 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05624171 482.09695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05624172 482.09695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05624173 482.09695435 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05624174 482.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05624175 482.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05624176 482.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05624177 482.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05624178 482.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05624179 482.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05624180 482.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05624181 482.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05624182 482.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05624183 482.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05624184 482.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05624185 482.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05624186 482.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05624187 482.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05624188 482.09713745 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05624189 482.09719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05624190 482.09719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05624191 482.09719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05624192 482.09719849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05624193 482.09725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05624194 482.09725952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05624195 482.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05624196 482.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05624197 482.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05624198 482.09732056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05624199 482.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05624200 482.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05624201 482.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05624202 482.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05624203 482.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05624204 482.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05624205 482.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05624206 482.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05624207 482.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05624208 482.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05624209 482.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05624210 482.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05624211 482.09750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05624212 482.09750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05624213 482.09750366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05624214 482.09756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05624215 482.09756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05624216 482.09756470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05624217 482.09762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05624218 482.09762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05624219 482.09762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05624220 482.09762573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05624221 482.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05624222 482.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05624223 482.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05624224 482.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05624225 482.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05624226 482.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05624227 482.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05624228 482.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05624229 482.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05624230 482.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05624231 482.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05624232 482.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05624233 482.09780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05624234 482.09780884 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05624235 482.09786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05624236 482.09786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05624237 482.09786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05624238 482.09786987 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05624239 482.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05624240 482.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05624241 482.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05624242 482.09793091 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05624243 482.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05624244 482.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05624245 482.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05624246 482.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05624247 482.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05624248 482.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05624249 482.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05624250 482.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05624251 482.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05624252 482.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05624253 482.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05624254 482.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05624255 482.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05624256 482.09811401 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05624257 482.09817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05624258 482.09817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05624259 482.09817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05624260 482.09817505 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05624261 482.09823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05624262 482.09823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05624263 482.09823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05624264 482.09823608 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05624265 482.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05624266 482.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05624267 482.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05624268 482.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05624269 482.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05624270 482.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05624271 482.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05624272 482.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05624273 482.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05624274 482.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05624275 482.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05624276 482.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05624277 482.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05624278 482.09841919 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05624279 482.09848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05624280 482.09848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05624281 482.09848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05624282 482.09848022 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05624283 482.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05624284 482.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05624285 482.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05624286 482.09854126 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05624287 482.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05624288 482.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05624289 482.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05624290 482.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05624291 482.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05624292 482.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05624293 482.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05624294 482.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05624295 482.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05624296 482.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05624297 482.09872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05624298 482.09872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05624299 482.09872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05624300 482.09872437 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05624301 482.09878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05624302 482.09878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05624303 482.09878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05624304 482.09878540 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05624305 482.09884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05624306 482.09884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05624307 482.09884644 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05624308 482.09890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05624309 482.09890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05624310 482.09890747 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05624311 482.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05624312 482.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05624313 482.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05624314 482.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05624315 482.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05624316 482.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05624317 482.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05624318 482.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05624319 482.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05624320 482.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05624321 482.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05624322 482.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05624323 482.09909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05624324 482.09909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05624325 482.09909058 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05624326 482.09915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05624327 482.09915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05624328 482.09915161 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05624329 482.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05624330 482.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05624331 482.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05624332 482.09921265 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05624333 482.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05624334 482.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05624335 482.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05624336 482.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05624337 482.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05624338 482.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05624339 482.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05624340 482.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05624341 482.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05624342 482.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05624343 482.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05624344 482.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05624345 482.09939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05624346 482.09939575 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05624347 482.09945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05624348 482.09945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05624349 482.09945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05624350 482.09945679 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05624351 482.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05624352 482.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05624353 482.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05624354 482.09951782 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05624355 482.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05624356 482.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05624357 482.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05624358 482.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05624359 482.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05624360 482.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05624361 482.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05624362 482.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05624363 482.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05624364 482.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05624365 482.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05624366 482.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05624367 482.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05624368 482.09970093 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05624369 482.09976196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05624370 482.09976196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05624371 482.09976196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05624372 482.09976196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05624373 482.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05624374 482.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05624375 482.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05624376 482.09982300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05624377 482.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05624378 482.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05624379 482.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05624380 482.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05624381 482.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05624382 482.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05624383 482.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05624384 482.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05624385 482.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05624386 482.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05624387 482.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05624388 482.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05624389 482.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05624390 482.10000610 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05624391 482.10006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05624392 482.10006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05624393 482.10006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05624394 482.10006714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05624395 482.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05624396 482.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05624397 482.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05624398 482.10012817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05624399 482.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05624400 482.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05624401 482.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05624402 482.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05624403 482.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05624404 482.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05624405 482.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05624406 482.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05624407 482.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05624408 482.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05624409 482.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05624410 482.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05624411 482.10031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05624412 482.10031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05624413 482.10031128 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05624414 482.10037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05624415 482.10037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05624416 482.10037231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05624417 482.10043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05624418 482.10043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05624419 482.10043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05624420 482.10043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05624421 482.10049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05624422 482.10049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05624423 482.10049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05624424 482.10049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05624425 482.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05624426 482.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05624427 482.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05624428 482.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05624429 482.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05624430 482.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05624431 482.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05624432 482.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05624433 482.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05624434 482.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05624435 482.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05624436 482.10067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05624437 482.10067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05624438 482.10067749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05624439 482.10073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05624440 482.10073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05624441 482.10073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05624442 482.10073853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05624443 482.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05624444 482.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05624445 482.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05624446 482.10079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05624447 482.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05624448 482.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05624449 482.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05624450 482.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05624451 482.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05624452 482.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05624453 482.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05624454 482.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05624455 482.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05624456 482.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05624457 482.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05624458 482.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05624459 482.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05624460 482.10098267 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05624461 482.10104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05624462 482.10104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05624463 482.10104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05624464 482.10104370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05624465 482.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05624466 482.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05624467 482.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05624468 482.10110474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05624469 482.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05624470 482.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05624471 482.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05624472 482.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05624473 482.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05624474 482.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05624475 482.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05624476 482.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05624477 482.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05624478 482.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05624479 482.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05624480 482.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05624481 482.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05624482 482.10128784 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05624483 482.10134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05624484 482.10134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05624485 482.10134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05624486 482.10134888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05624487 482.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05624488 482.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05624489 482.10140991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05624490 482.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05624491 482.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05624492 482.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05624493 482.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05624494 482.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05624495 482.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05624496 482.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05624497 482.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05624498 482.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05624499 482.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05624500 482.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05624501 482.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05624502 482.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05624503 482.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05624504 482.10159302 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05624505 482.10165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05624506 482.10165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05624507 482.10165405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05624508 482.10171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05624509 482.10171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05624510 482.10171509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05624511 482.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05624512 482.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05624513 482.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05624514 482.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05624515 482.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05624516 482.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05624517 482.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05624518 482.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05624519 482.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05624520 482.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05624521 482.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05624522 482.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05624523 482.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05624524 482.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05624525 482.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05624526 482.10195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05624527 482.10195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05624528 482.10195923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05624529 482.10202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05624530 482.10202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05624531 482.10202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05624532 482.10202026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05624533 482.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05624534 482.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05624535 482.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05624536 482.10208130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05624537 482.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05624538 482.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05624539 482.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05624540 482.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05624541 482.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05624542 482.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05624543 482.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05624544 482.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05624545 482.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05624546 482.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05624547 482.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05624548 482.10226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05624549 482.10226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05624550 482.10226440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05624551 482.10232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05624552 482.10232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05624553 482.10232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05624554 482.10232544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05624555 482.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05624556 482.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05624557 482.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05624558 482.10238647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05624559 482.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05624560 482.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05624561 482.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05624562 482.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05624563 482.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05624564 482.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05624565 482.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05624566 482.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05624567 482.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05624568 482.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05624569 482.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05624570 482.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05624571 482.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05624572 482.10256958 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05624573 482.10263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05624574 482.10263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05624575 482.10263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05624576 482.10263062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05624577 482.10269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05624578 482.10269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05624579 482.10269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05624580 482.10269165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05624581 482.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05624582 482.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05624583 482.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05624584 482.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05624585 482.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05624586 482.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05624587 482.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05624588 482.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05624589 482.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05624590 482.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05624591 482.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05624592 482.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05624593 482.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05624594 482.10287476 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05624595 482.10293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05624596 482.10293579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05624597 482.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05624598 482.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05624599 482.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05624600 482.10299683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05624601 482.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05624602 482.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05624603 482.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05624604 482.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05624605 482.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05624606 482.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05624607 482.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05624608 482.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05624609 482.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05624610 482.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05624611 482.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05624612 482.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05624613 482.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05624614 482.10317993 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05624615 482.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05624616 482.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05624617 482.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05624618 482.10324097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05624619 482.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05624620 482.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05624621 482.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05624622 482.10330200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05624623 482.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05624624 482.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05624625 482.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05624626 482.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05624627 482.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05624628 482.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05624629 482.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05624630 482.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05624631 482.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05624632 482.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05624633 482.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05624634 482.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05624635 482.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05624636 482.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05624637 482.10354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05624638 482.10354614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05624639 482.10360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05624640 482.10360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05624641 482.10360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05624642 482.10360718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05624643 482.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05624644 482.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05624645 482.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05624646 482.10366821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05624647 482.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05624648 482.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05624649 482.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05624650 482.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05624651 482.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05624652 482.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05624653 482.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05624654 482.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05624655 482.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05624656 482.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05624657 482.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05624658 482.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05624659 482.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05624660 482.10385132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05624661 482.10391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05624662 482.10391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05624663 482.10391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05624664 482.10391235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05624665 482.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05624666 482.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05624667 482.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05624668 482.10397339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05624669 482.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05624670 482.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05624671 482.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05624672 482.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05624673 482.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05624674 482.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05624675 482.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05624676 482.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05624677 482.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05624678 482.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05624679 482.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05624680 482.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05624681 482.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05624682 482.10415649 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05624683 482.10421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05624684 482.10421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05624685 482.10421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05624686 482.10421753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05624687 482.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05624688 482.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05624689 482.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05624690 482.10427856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05624691 482.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05624692 482.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05624693 482.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05624694 482.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05624695 482.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05624696 482.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05624697 482.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05624698 482.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05624699 482.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05624700 482.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05624701 482.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05624702 482.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05624703 482.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05624704 482.10446167 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05624705 482.10452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05624706 482.10452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05624707 482.10452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05624708 482.10452271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05624709 482.10458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05624710 482.10458374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05624711 482.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05624712 482.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05624713 482.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05624714 482.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05624715 482.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05624716 482.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05624717 482.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05624718 482.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05624719 482.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05624720 482.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05624721 482.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05624722 482.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05624723 482.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05624724 482.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05624725 482.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05624726 482.10476685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05624727 482.10482788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05624728 482.10482788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05624729 482.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05624730 482.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05624731 482.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05624732 482.10488892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05624733 482.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05624734 482.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05624735 482.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05624736 482.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05624737 482.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05624738 482.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05624739 482.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05624740 482.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05624741 482.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05624742 482.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05624743 482.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05624744 482.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05624745 482.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05624746 482.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05624747 482.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05624748 482.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05624749 482.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05624750 482.10513306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05624751 482.10519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05624752 482.10519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05624753 482.10519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05624754 482.10519409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05624755 482.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05624756 482.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05624757 482.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05624758 482.10525513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05624759 482.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05624760 482.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05624761 482.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05624762 482.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05624763 482.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05624764 482.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05624765 482.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05624766 482.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05624767 482.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05624768 482.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05624769 482.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05624770 482.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05624771 482.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05624772 482.10543823 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05624773 482.10549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05624774 482.10549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05624775 482.10549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05624776 482.10549927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05624777 482.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05624778 482.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05624779 482.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05624780 482.10556030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05624781 482.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05624782 482.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05624783 482.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05624784 482.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05624785 482.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05624786 482.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05624787 482.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05624788 482.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05624789 482.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05624790 482.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05624791 482.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05624792 482.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05624793 482.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05624794 482.10574341 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05624795 482.10580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05624796 482.10580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05624797 482.10580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05624798 482.10580444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05624799 482.10586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05624800 482.10586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05624801 482.10586548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05624802 482.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05624803 482.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05624804 482.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05624805 482.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05624806 482.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05624807 482.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05624808 482.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05624809 482.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05624810 482.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05624811 482.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05624812 482.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05624813 482.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05624814 482.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05624815 482.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05624816 482.10604858 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05624817 482.10610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05624818 482.10610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05624819 482.10610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05624820 482.10610962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05624821 482.10617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05624822 482.10617065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05624823 482.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05624824 482.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05624825 482.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05624826 482.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05624827 482.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05624828 482.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05624829 482.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05624830 482.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05624831 482.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05624832 482.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05624833 482.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05624834 482.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05624835 482.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05624836 482.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05624837 482.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05624838 482.10635376 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05624839 482.10641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05624840 482.10641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05624841 482.10641479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05624842 482.10647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05624843 482.10647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05624844 482.10647583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05624845 482.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05624846 482.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05624847 482.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05624848 482.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05624849 482.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05624850 482.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05624851 482.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05624852 482.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05624853 482.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05624854 482.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05624855 482.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05624856 482.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05624857 482.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05624858 482.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05624859 482.10671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05624860 482.10671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05624861 482.10671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05624862 482.10671997 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05624863 482.10678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05624864 482.10678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05624865 482.10678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05624866 482.10678101 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05624867 482.10684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05624868 482.10684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05624869 482.10684204 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05624870 482.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05624871 482.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05624872 482.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05624873 482.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05624874 482.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05624875 482.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05624876 482.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05624877 482.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05624878 482.10702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05624879 482.10702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05624880 482.10702515 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05624881 482.10708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05624882 482.10708618 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05624883 482.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05624884 482.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05624885 482.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05624886 482.10714722 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05624887 482.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05624888 482.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05624889 482.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05624890 482.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05624891 482.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05624892 482.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05624893 482.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05624894 482.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05624895 482.10733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05624896 482.10733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05624897 482.10733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05624898 482.10733032 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05624899 482.10739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05624900 482.10739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05624901 482.10739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05624902 482.10739136 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05624903 482.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05624904 482.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05624905 482.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05624906 482.10745239 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05624907 482.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05624908 482.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05624909 482.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05624910 482.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05624911 482.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05624912 482.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05624913 482.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05624914 482.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05624915 482.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05624916 482.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05624917 482.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05624918 482.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05624919 482.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05624920 482.10763550 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05624921 482.10769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05624922 482.10769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05624923 482.10769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05624924 482.10769653 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05624925 482.10775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05624926 482.10775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05624927 482.10775757 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05624928 482.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05624929 482.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05624930 482.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05624931 482.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05624932 482.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05624933 482.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05624934 482.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05624935 482.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05624936 482.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05624937 482.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05624938 482.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05624939 482.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05624940 482.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05624941 482.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05624942 482.10794067 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05624943 482.10800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05624944 482.10800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05624945 482.10800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05624946 482.10800171 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05624947 482.10806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05624948 482.10806274 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05624949 482.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05624950 482.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05624951 482.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05624952 482.10812378 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05624953 482.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05624954 482.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05624955 482.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05624956 482.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05624957 482.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05624958 482.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05624959 482.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05624960 482.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05624961 482.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05624962 482.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05624963 482.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05624964 482.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05624965 482.10830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05624966 482.10830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05624967 482.10830688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05624968 482.10836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05624969 482.10836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05624970 482.10836792 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05624971 482.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05624972 482.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05624973 482.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05624974 482.10842896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05624975 482.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05624976 482.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05624977 482.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05624978 482.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05624979 482.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05624980 482.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05624981 482.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05624982 482.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05624983 482.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05624984 482.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05624985 482.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05624986 482.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05624987 482.10861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05624988 482.10861206 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05624989 482.10867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05624990 482.10867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05624991 482.10867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05624992 482.10867310 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05624993 482.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05624994 482.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05624995 482.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05624996 482.10873413 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05624997 482.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05624998 482.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05624999 482.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05625000 482.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05625001 482.10882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05625002 482.10882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05625003 482.10882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05625004 482.10882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05625005 482.10888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05625006 482.10888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05625007 482.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05625008 482.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05625009 482.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05625010 482.10891724 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05625011 482.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05625012 482.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05625013 482.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05625014 482.10897827 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05625015 482.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05625016 482.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05625017 482.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05625018 482.10903931 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05625019 482.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05625020 482.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05625021 482.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05625022 482.10906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05625023 482.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05625024 482.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05625025 482.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05625026 482.10913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05625027 482.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05625028 482.10919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05625029 482.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05625030 482.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05625031 482.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05625032 482.10922241 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05625033 482.10928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05625034 482.10928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05625035 482.10928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05625036 482.10928345 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05625037 482.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05625038 482.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05625039 482.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05625040 482.10934448 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05625041 482.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05625042 482.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05625043 482.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05625044 482.10937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05625045 482.10943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05625046 482.10943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05625047 482.10943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05625048 482.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05625049 482.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05625050 482.10949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05625051 482.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05625052 482.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05625053 482.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05625054 482.10952759 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05625055 482.10958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05625056 482.10958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05625057 482.10958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05625058 482.10958862 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05625059 482.10964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05625060 482.10964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05625061 482.10964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05625062 482.10964966 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05625063 482.10971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05625064 482.10971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05625065 482.10971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05625066 482.10971069 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05625067 482.10974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05625068 482.10974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05625069 482.10980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05625070 482.10980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05625071 482.10980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05625072 482.10980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05625073 482.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05625074 482.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05625075 482.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05625076 482.10986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05625077 482.10989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05625078 482.10989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05625079 482.10989380 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05625080 482.10995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05625081 482.10995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05625082 482.10995483 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05625083 482.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05625084 482.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05625085 482.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05625086 482.11001587 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05625087 482.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05625088 482.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05625089 482.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05625090 482.11004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05625091 482.11010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05625092 482.11010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05625093 482.11010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05625094 482.11010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05625095 482.11016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05625096 482.11016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05625097 482.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05625098 482.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05625099 482.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05625100 482.11019897 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05625101 482.11026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05625102 482.11026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05625103 482.11026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05625104 482.11026001 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05625105 482.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05625106 482.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05625107 482.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05625108 482.11032104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05625109 482.11035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05625110 482.11035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05625111 482.11035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05625112 482.11041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05625113 482.11041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05625114 482.11041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05625115 482.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05625116 482.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05625117 482.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05625118 482.11047363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05625119 482.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05625120 482.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05625121 482.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05625122 482.11050415 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05625123 482.11056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05625124 482.11056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05625125 482.11056519 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05625126 482.11062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05625127 482.11062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05625128 482.11062622 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05625129 482.11065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05625130 482.11065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05625131 482.11065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05625132 482.11065674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05625133 482.11071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05625134 482.11071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05625135 482.11071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05625136 482.11071777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05625137 482.11077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05625138 482.11077881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05625139 482.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05625140 482.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05625141 482.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05625142 482.11080933 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05625143 482.11087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05625144 482.11087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05625145 482.11087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05625146 482.11087036 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05625147 482.11093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05625148 482.11093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05625149 482.11093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05625150 482.11093140 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05625151 482.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05625152 482.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05625153 482.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05625154 482.11096191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05625155 482.11102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05625156 482.11102295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05625157 482.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05625158 482.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05625159 482.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05625160 482.11108398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05625161 482.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05625162 482.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05625163 482.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05625164 482.11111450 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05625165 482.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05625166 482.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05625167 482.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05625168 482.11117554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05625169 482.11123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05625170 482.11123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05625171 482.11123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05625172 482.11123657 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05625173 482.11129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05625174 482.11129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05625175 482.11129761 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05625176 482.11132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05625177 482.11132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05625178 482.11132813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05625179 482.11138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05625180 482.11138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05625181 482.11138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05625182 482.11138916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05625183 482.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05625184 482.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05625185 482.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05625186 482.11145020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05625187 482.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05625188 482.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05625189 482.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05625190 482.11148071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05625191 482.11154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05625192 482.11154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05625193 482.11154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05625194 482.11154175 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05625195 482.11160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05625196 482.11160278 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05625197 482.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05625198 482.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05625199 482.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05625200 482.11163330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05625201 482.11169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05625202 482.11169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05625203 482.11169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05625204 482.11169434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05625205 482.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05625206 482.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05625207 482.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05625208 482.11175537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05625209 482.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05625210 482.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05625211 482.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05625212 482.11178589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05625213 482.11184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05625214 482.11184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05625215 482.11184692 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05625216 482.11190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05625217 482.11190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05625218 482.11190796 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05625219 482.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05625220 482.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05625221 482.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05625222 482.11193848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05625223 482.11199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05625224 482.11199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05625225 482.11199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05625226 482.11199951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05625227 482.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05625228 482.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05625229 482.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05625230 482.11206055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05625231 482.11209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05625232 482.11209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05625233 482.11209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05625234 482.11209106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05625235 482.11215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05625236 482.11215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05625237 482.11215210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05625238 482.11221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05625239 482.11221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05625240 482.11221313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05625241 482.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05625242 482.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05625243 482.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05625244 482.11224365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05625245 482.11230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05625246 482.11230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05625247 482.11230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05625248 482.11230469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05625249 482.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05625250 482.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05625251 482.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05625252 482.11236572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05625253 482.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05625254 482.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05625255 482.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05625256 482.11239624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05625257 482.11245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05625258 482.11245728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05625259 482.11251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05625260 482.11251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05625261 482.11251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05625262 482.11251831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05625263 482.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05625264 482.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05625265 482.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05625266 482.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05625267 482.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05625268 482.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05625269 482.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05625270 482.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05625271 482.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05625272 482.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05625273 482.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05625274 482.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05625275 482.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05625276 482.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05625277 482.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05625278 482.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05625279 482.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05625280 482.11276245 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05625281 482.11282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05625282 482.11282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05625283 482.11282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05625284 482.11282349 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05625285 482.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05625286 482.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05625287 482.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05625288 482.11288452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05625289 482.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05625290 482.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05625291 482.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05625292 482.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05625293 482.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05625294 482.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05625295 482.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05625296 482.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05625297 482.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05625298 482.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05625299 482.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05625300 482.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05625301 482.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05625302 482.11306763 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05625303 482.11312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05625304 482.11312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05625305 482.11312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05625306 482.11312866 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05625307 482.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05625308 482.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05625309 482.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05625310 482.11318970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05625311 482.11322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05625312 482.11322021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05625313 482.11328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05625314 482.11328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05625315 482.11328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05625316 482.11328125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05625317 482.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05625318 482.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05625319 482.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05625320 482.11334229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05625321 482.11337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05625322 482.11337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05625323 482.11337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05625324 482.11337280 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05625325 482.11343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05625326 482.11343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05625327 482.11343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05625328 482.11343384 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05625329 482.11349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05625330 482.11349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05625331 482.11349487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05625332 482.11352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05625333 482.11352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05625334 482.11352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05625335 482.11358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05625336 482.11358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05625337 482.11358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05625338 482.11358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05625339 482.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05625340 482.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05625341 482.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05625342 482.11364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05625343 482.11367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05625344 482.11367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05625345 482.11367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05625346 482.11367798 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05625347 482.11373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05625348 482.11373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05625349 482.11373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05625350 482.11373901 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05625351 482.11380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05625352 482.11380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05625353 482.11380005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05625354 482.11383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05625355 482.11383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05625356 482.11383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05625357 482.11389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05625358 482.11389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05625359 482.11389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05625360 482.11389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05625361 482.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05625362 482.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05625363 482.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05625364 482.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05625365 482.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05625366 482.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05625367 482.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05625368 482.11398315 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05625369 482.11404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05625370 482.11404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05625371 482.11404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05625372 482.11404419 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05625373 482.11410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05625374 482.11410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05625375 482.11410522 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05625376 482.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05625377 482.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05625378 482.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05625379 482.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05625380 482.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05625381 482.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05625382 482.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05625383 482.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05625384 482.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05625385 482.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05625386 482.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05625387 482.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05625388 482.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05625389 482.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05625390 482.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05625391 482.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05625392 482.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05625393 482.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05625394 482.11434937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05625395 482.11441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05625396 482.11441040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05625397 482.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05625398 482.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05625399 482.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05625400 482.11447144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05625401 482.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05625402 482.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05625403 482.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05625404 482.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05625405 482.11456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05625406 482.11456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05625407 482.11456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05625408 482.11456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05625409 482.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05625410 482.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05625411 482.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05625412 482.11462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05625413 482.11465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05625414 482.11465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05625415 482.11465454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05625416 482.11471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05625417 482.11471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05625418 482.11471558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05625419 482.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05625420 482.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05625421 482.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05625422 482.11477661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05625423 482.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05625424 482.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05625425 482.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05625426 482.11480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05625427 482.11486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05625428 482.11486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05625429 482.11486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05625430 482.11486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05625431 482.11492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05625432 482.11492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05625433 482.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05625434 482.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05625435 482.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05625436 482.11495972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05625437 482.11502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05625438 482.11502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05625439 482.11502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05625440 482.11502075 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05625441 482.11508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05625442 482.11508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05625443 482.11508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05625444 482.11508179 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05625445 482.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05625446 482.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05625447 482.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05625448 482.11511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05625449 482.11517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05625450 482.11517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05625451 482.11517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05625452 482.11523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05625453 482.11523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05625454 482.11523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05625455 482.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05625456 482.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05625457 482.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05625458 482.11526489 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05625459 482.11532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05625460 482.11532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05625461 482.11532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05625462 482.11532593 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05625463 482.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05625464 482.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05625465 482.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05625466 482.11538696 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05625467 482.11541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05625468 482.11541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05625469 482.11541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05625470 482.11547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05625471 482.11547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05625472 482.11547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05625473 482.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05625474 482.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05625475 482.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05625476 482.11553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05625477 482.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05625478 482.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05625479 482.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05625480 482.11557007 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05625481 482.11563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05625482 482.11563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05625483 482.11563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05625484 482.11563110 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05625485 482.11569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05625486 482.11569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05625487 482.11569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05625488 482.11569214 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05625489 482.11572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05625490 482.11572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05625491 482.11578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05625492 482.11578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05625493 482.11578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05625494 482.11578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05625495 482.11584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05625496 482.11584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05625497 482.11584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05625498 482.11584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05625499 482.11590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05625500 482.11590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05625501 482.11590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05625502 482.11590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05625503 482.11593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05625504 482.11593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05625505 482.11593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05625506 482.11593628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05625507 482.11599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05625508 482.11599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05625509 482.11599731 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05625510 482.11605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05625511 482.11605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05625512 482.11605835 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05625513 482.11608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05625514 482.11608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05625515 482.11608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05625516 482.11608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05625517 482.11614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05625518 482.11614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05625519 482.11614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05625520 482.11614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05625521 482.11621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05625522 482.11621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05625523 482.11621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05625524 482.11621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05625525 482.11624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05625526 482.11624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05625527 482.11624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05625528 482.11624146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05625529 482.11630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05625530 482.11630249 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05625531 482.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05625532 482.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05625533 482.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05625534 482.11636353 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05625535 482.11639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05625536 482.11639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05625537 482.11639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05625538 482.11639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05625539 482.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05625540 482.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05625541 482.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05625542 482.11645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05625543 482.11651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05625544 482.11651611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05625545 482.11654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05625546 482.11654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05625547 482.11654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05625548 482.11654663 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05625549 482.11660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05625550 482.11660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05625551 482.11660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05625552 482.11660767 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05625553 482.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05625554 482.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05625555 482.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05625556 482.11666870 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05625557 482.11669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05625558 482.11669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05625559 482.11669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05625560 482.11676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05625561 482.11676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05625562 482.11676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05625563 482.11682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05625564 482.11682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05625565 482.11682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05625566 482.11682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05625567 482.11685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05625568 482.11685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05625569 482.11685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05625570 482.11685181 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05625571 482.11691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05625572 482.11691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05625573 482.11691284 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05625574 482.11697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05625575 482.11697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05625576 482.11697388 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05625577 482.11700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05625578 482.11700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05625579 482.11700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05625580 482.11700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05625581 482.11706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05625582 482.11706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05625583 482.11706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05625584 482.11706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05625585 482.11712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05625586 482.11712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05625587 482.11715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05625588 482.11715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05625589 482.11715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05625590 482.11715698 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05625591 482.11721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05625592 482.11721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05625593 482.11721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05625594 482.11721802 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05625595 482.11727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05625596 482.11727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05625597 482.11727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05625598 482.11727905 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05625599 482.11730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05625600 482.11730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05625601 482.11730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05625602 482.11737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05625603 482.11737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05625604 482.11737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05625605 482.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05625606 482.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05625607 482.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05625608 482.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05625609 482.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05625610 482.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05625611 482.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05625612 482.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05625613 482.11752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05625614 482.11752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05625615 482.11752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05625616 482.11752319 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05625617 482.11758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05625618 482.11758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05625619 482.11758423 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05625620 482.11764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05625621 482.11764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05625622 482.11764526 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05625623 482.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05625624 482.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05625625 482.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05625626 482.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05625627 482.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05625628 482.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05625629 482.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05625630 482.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05625631 482.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05625632 482.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05625633 482.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05625634 482.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05625635 482.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05625636 482.11782837 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05625637 482.11788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05625638 482.11788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05625639 482.11788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05625640 482.11788940 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05625641 482.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05625642 482.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05625643 482.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05625644 482.11795044 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05625645 482.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05625646 482.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05625647 482.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05625648 482.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05625649 482.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05625650 482.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05625651 482.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05625652 482.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05625653 482.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05625654 482.11810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05625655 482.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05625656 482.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05625657 482.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05625658 482.11813354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05625659 482.11819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05625660 482.11819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05625661 482.11819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05625662 482.11819458 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05625663 482.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05625664 482.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05625665 482.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05625666 482.11825562 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05625667 482.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05625668 482.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05625669 482.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05625670 482.11828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05625671 482.11834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05625672 482.11834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05625673 482.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05625674 482.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05625675 482.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05625676 482.11840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05625677 482.11843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05625678 482.11843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05625679 482.11843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05625680 482.11843872 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05625681 482.11849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05625682 482.11849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05625683 482.11849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05625684 482.11849976 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05625685 482.11856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05625686 482.11856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05625687 482.11856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05625688 482.11856079 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05625689 482.11859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05625690 482.11859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05625691 482.11859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05625692 482.11865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05625693 482.11865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05625694 482.11865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05625695 482.11871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05625696 482.11871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05625697 482.11871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05625698 482.11871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05625699 482.11874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05625700 482.11874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05625701 482.11874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05625702 482.11874390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05625703 482.11880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05625704 482.11880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05625705 482.11880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05625706 482.11880493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05625707 482.11886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05625708 482.11886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05625709 482.11886597 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05625710 482.11892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05625711 482.11892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05625712 482.11892700 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05625713 482.11895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05625714 482.11895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05625715 482.11895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05625716 482.11895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05625717 482.11901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05625718 482.11901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05625719 482.11901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05625720 482.11901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -05625721 482.11907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05625722 482.11907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -05625723 482.11907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05625724 482.11907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -05625725 482.11911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05625726 482.11911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -05625727 482.11911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05625728 482.11911011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -05625729 482.11917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05625730 482.11917114 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -05625731 482.11923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05625732 482.11923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -05625733 482.11923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05625734 482.11923218 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -05625735 482.11926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05625736 482.11926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -05625737 482.11926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05625738 482.11926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -05625739 482.11932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05625740 482.11932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -05625741 482.11932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05625742 482.11932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -05625743 482.11938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05625744 482.11938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -05625745 482.11938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05625746 482.11938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -05625747 482.11941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05625748 482.11941528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -05625749 482.11947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -05625750 482.11947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -05625751 482.11947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -05625752 482.11947632 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -05625753 482.11953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -05625754 482.11953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -05625755 482.11953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -05625756 482.11953735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -05625757 482.11956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -05625758 482.11956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -05625759 482.11956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -05625760 482.11956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -05625761 482.11962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -05625762 482.11962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -05625763 482.11962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -05625764 482.11962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -05625765 482.11968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -05625766 482.11968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -05625767 482.11968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -05625768 482.11972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -05625769 482.11972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -05625770 482.11972046 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -05625771 482.11978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -05625772 482.11978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -05625773 482.11978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -05625774 482.11978149 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -05625775 482.11984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -05625776 482.11984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -05625777 482.11984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -05625778 482.11984253 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -05625779 482.11987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -05625780 482.11987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -05625781 482.11987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -05625782 482.11987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -05625783 482.11993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -05625784 482.11993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -05625785 482.11993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -05625786 482.11999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -05625787 482.11999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -05625788 482.11999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -05625789 482.12002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -05625790 482.12002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -05625791 482.12002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -05625792 482.12002563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -05625793 482.12008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -05625794 482.12008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -05625795 482.12008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -05625796 482.12008667 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -05625797 482.12014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -05625798 482.12014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -05625799 482.12014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -05625800 482.12014771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -05625801 482.12017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -05625802 482.12017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -05625803 482.12017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -05625804 482.12017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -05625805 482.12023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -05625806 482.12023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -05625807 482.12023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -05625808 482.12030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -05625809 482.12030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -05625810 482.12030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -05625811 482.12033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -05625812 482.12033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -05625813 482.12033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -05625814 482.12033081 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -05625815 482.12039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -05625816 482.12039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -05625817 482.12039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -05625818 482.12039185 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -05625819 482.12045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -05625820 482.12045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -05625821 482.12045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -05625822 482.12045288 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -05625823 482.12051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -05625824 482.12051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -05625825 482.12051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -05625826 482.12051392 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -05625827 482.12054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -05625828 482.12054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -05625829 482.12060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -05625830 482.12060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -05625831 482.12060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -05625832 482.12060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -05625833 482.12066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -05625834 482.12066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -05625835 482.12066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -05625836 482.12066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -05625837 482.12069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -05625838 482.12069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -05625839 482.12069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -05625840 482.12069702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -05625841 482.12075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -05625842 482.12075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -05625843 482.12075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -05625844 482.12075806 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -05625845 482.12081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -05625846 482.12081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -05625847 482.12081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -05625848 482.12081909 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -05625849 482.12084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -05625850 482.12084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -05625851 482.12091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -05625852 482.12091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -05625853 482.12091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -05625854 482.12091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -05625855 482.12097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -05625856 482.12097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -05625857 482.12097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -05625858 482.12097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -05625859 482.12100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -05625860 482.12100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -05625861 482.12100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -05625862 482.12100220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -05625863 482.12106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -05625864 482.12106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -05625865 482.12106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -05625866 482.12106323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -05625867 482.12112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -05625868 482.12112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -05625869 482.12112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -05625870 482.12112427 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -05625871 482.12115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -05625872 482.12115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -05625873 482.12121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -05625874 482.12121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -05625875 482.12121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -05625876 482.12121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -05625877 482.12127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -05625878 482.12127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -05625879 482.12127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -05625880 482.12127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -05625881 482.12130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -05625882 482.12130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -05625883 482.12130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -05625884 482.12130737 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -05625885 482.12136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -05625886 482.12136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -05625887 482.12136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -05625888 482.12136841 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -05625889 482.12142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -05625890 482.12142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -05625891 482.12142944 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -05625892 482.12145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -05625893 482.12145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -05625894 482.12145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -05625895 482.12152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -05625896 482.12152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -05625897 482.12152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -05625898 482.12152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -05625899 482.12158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -05625900 482.12158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -05625901 482.12158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -05625902 482.12158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -05625903 482.12161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -05625904 482.12161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -05625905 482.12161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -05625906 482.12161255 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -05625907 482.12167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -05625908 482.12167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -05625909 482.12167358 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -05625910 482.12173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -05625911 482.12173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -05625912 482.12173462 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -05625913 482.12176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -05625914 482.12176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -05625915 482.12176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -05625916 482.12176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -05625917 482.12182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -05625918 482.12182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -05625919 482.12182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -05625920 482.12182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -05625921 482.12188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -05625922 482.12188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -05625923 482.12188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -05625924 482.12188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -05625925 482.12191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -05625926 482.12191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -05625927 482.12191772 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -05625928 482.12197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -05625929 482.12197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -05625930 482.12197876 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -05625931 482.12203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -05625932 482.12203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -05625933 482.12203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -05625934 482.12203979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -05625935 482.12210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -05625936 482.12210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -05625937 482.12210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -05625938 482.12210083 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -05625939 482.12213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -05625940 482.12213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -05625941 482.12213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -05625942 482.12213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -05625943 482.12219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -05625944 482.12219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -05625945 482.12219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -05625946 482.12225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -05625947 482.12225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -05625948 482.12225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -05625949 482.12228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -05625950 482.12228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -05625951 482.12228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -05625952 482.12228394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -05625953 482.12234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -05625954 482.12234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -05625955 482.12234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -05625956 482.12234497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -05625957 482.12240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -05625958 482.12240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -05625959 482.12240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -05625960 482.12240601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -05625961 482.12243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -05625962 482.12243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -05625963 482.12243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -05625964 482.12249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -05625965 482.12249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -05625966 482.12249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -05625967 482.12255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -05625968 482.12255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -05625969 482.12255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -05625970 482.12255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -05625971 482.12258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -05625972 482.12258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -05625973 482.12258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -05625974 482.12258911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -05625975 482.12265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -05625976 482.12265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -05625977 482.12265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -05625978 482.12265015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -05625979 482.12271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -05625980 482.12271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -05625981 482.12271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -05625982 482.12271118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -05625983 482.12274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -05625984 482.12274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -05625985 482.12280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -05625986 482.12280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -05625987 482.12280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -05625988 482.12280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -05625989 482.12286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -05625990 482.12286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -05625991 482.12286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -05625992 482.12286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -05625993 482.12289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -05625994 482.12289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -05625995 482.12289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -05625996 482.12289429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -05625997 482.12295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -05625998 482.12295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -05625999 482.12295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -05626000 482.12295532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -05626001 482.12301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -05626002 482.12301636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -05626003 482.12304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -05626004 482.12304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -05626005 482.12304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -05626006 482.12304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -05626007 482.12310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -05626008 482.12310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -05626009 482.12316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -05626010 482.12316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -05626011 482.12316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -05626012 482.12316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -05626013 482.12319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -05626014 482.12319946 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -05626015 482.12326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -05626016 482.12326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -05626017 482.12326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -05626018 482.12326050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -05626019 482.12332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -05626020 482.12332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -05626021 482.12332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -05626022 482.12332153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -05626023 482.12335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -05626024 482.12335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -05626025 482.12335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -05626026 482.12335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -05626027 482.12341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -05626028 482.12341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -05626029 482.12341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -05626030 482.12341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -05626031 482.12347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -05626032 482.12347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -05626033 482.12353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -05626034 482.12353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -05626035 482.12353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -05626036 482.12353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -05626037 482.12356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -05626038 482.12356567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -05627901 482.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -05627902 482.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -05627903 482.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -05627904 482.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -05627905 482.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -05627906 482.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -05627907 482.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -05627908 482.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -05627909 482.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -05627910 482.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -05627911 482.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -05627912 482.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -05627913 482.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -05627914 482.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -05627915 482.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -05627916 482.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -05627917 482.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -05627918 482.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -05627919 482.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -05627920 482.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -05627921 482.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -05627922 482.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -05627923 482.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -05627924 482.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -05627925 482.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -05627926 482.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -05627927 482.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -05627928 482.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -05627929 482.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -05627930 482.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -05627931 482.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -05627932 482.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -05627933 482.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -05627934 482.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -05627935 482.15054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -05627936 482.15054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -05627937 482.15054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -05627938 482.15054321 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -05627939 482.15060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -05627940 482.15060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -05627941 482.15060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -05627942 482.15060425 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -05627943 482.15066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -05627944 482.15066528 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -05633961 482.23635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -05633962 482.23635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b38 -05633963 482.23635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -05633964 482.23635864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b48 -05633965 482.23641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -05633966 482.23641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b58 -05633967 482.23641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -05633968 482.23641968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b68 -05633969 482.23648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -05633970 482.23648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b78 -05633971 482.23648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -05633972 482.23648071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b88 -05633973 482.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -05633974 482.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b98 -05633975 482.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -05633976 482.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ba8 -05633977 482.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -05633978 482.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bb8 -05633979 482.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -05633980 482.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bc8 -05633981 482.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -05633982 482.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bd8 -05633983 482.23666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -05633984 482.23666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14be8 -05633985 482.23666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -05633986 482.23666382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14bf8 -05633987 482.23672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -05633988 482.23672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c08 -05633989 482.23672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -05633990 482.23672485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c18 -05633991 482.23678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -05633992 482.23678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c28 -05633993 482.23678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -05633994 482.23678589 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c38 -05633995 482.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -05633996 482.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c48 -05633997 482.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -05633998 482.23687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c58 -05633999 482.23687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -05634000 482.23687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c68 -05634001 482.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -05634002 482.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c78 -05634003 482.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -05634004 482.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c88 -05648317 482.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b98 -05648318 482.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b98 -05648319 482.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba8 -05648320 482.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba8 -05648321 482.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb8 -05648322 482.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb8 -05648323 482.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc8 -05648324 482.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc8 -05648325 482.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd8 -05648326 482.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd8 -05648327 482.44094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be8 -05648328 482.44094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be8 -05648329 482.44094849 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf8 -05648330 482.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf8 -05648331 482.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c08 -05648332 482.44100952 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c08 -05648333 482.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c18 -05648334 482.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c18 -05648335 482.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c28 -05648336 482.44107056 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c28 -05648337 482.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c38 -05648338 482.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c38 -05648339 482.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c48 -05648340 482.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c48 -05648341 482.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c58 -05648342 482.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c58 -05648343 482.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c68 -05648344 482.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c68 -05648345 482.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c78 -05648346 482.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c78 -05648347 482.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -05648348 482.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -05648349 482.44125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -05648350 482.44125366 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -05648351 482.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -05648352 482.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -05648353 482.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -05648354 482.44131470 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -05648355 482.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -05648356 482.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -05648357 482.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -05648358 482.44137573 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -05648359 482.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -05648360 482.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -05653857 482.51889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -05653858 482.51889038 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -05653859 482.51895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -05653860 482.51895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -05653861 482.51895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -05653862 482.51895142 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -05653863 482.51898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -05653864 482.51898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -05653865 482.51898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -05653866 482.51898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -05653867 482.51904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -05653868 482.51904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -05653869 482.51904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -05653870 482.51904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -05653871 482.51910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -05653872 482.51910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -05653873 482.51910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -05653874 482.51910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -05653875 482.51913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -05653876 482.51913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -05653877 482.51913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -05653878 482.51913452 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -05653879 482.51919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -05653880 482.51919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -05653881 482.51919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -05653882 482.51919556 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -05653883 482.51925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -05653884 482.51925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -05653885 482.51925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -05653886 482.51925659 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -05653887 482.51928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -05653888 482.51928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -05653889 482.51928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -05653890 482.51928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -05653891 482.51934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -05653892 482.51934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -05653893 482.51934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -05653894 482.51940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -05653895 482.51940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -05653896 482.51940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -05653897 482.51943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -05653898 482.51943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -05653899 482.51943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -05653900 482.51943970 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba08 -05659333 482.59542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d8 -05659334 482.59542847 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463d8 -05659335 482.59548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e8 -05659336 482.59548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463e8 -05659337 482.59548950 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f8 -05659338 482.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x463f8 -05659339 482.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46408 -05659340 482.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46408 -05659341 482.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46418 -05659342 482.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46418 -05659343 482.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46428 -05659344 482.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46428 -05659345 482.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46438 -05659346 482.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46438 -05659347 482.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46448 -05659348 482.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46448 -05659349 482.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46458 -05659350 482.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46458 -05659351 482.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -05659352 482.59567261 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46468 -05659353 482.59573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -05659354 482.59573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46478 -05659355 482.59573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -05659356 482.59573364 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46488 -05659357 482.59579468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -05659358 482.59579468 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46498 -05659359 482.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -05659360 482.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464a8 -05659361 482.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -05659362 482.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464b8 -05659363 482.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -05659364 482.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464c8 -05659365 482.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -05659366 482.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464d8 -05659367 482.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -05659368 482.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464e8 -05659369 482.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -05659370 482.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x464f8 -05659371 482.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -05659372 482.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46508 -05659373 482.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -05659374 482.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46518 -05659375 482.59603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -05659376 482.59603882 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46528 -05665147 482.67816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -05665148 482.67816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -05665149 482.67822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -05665150 482.67822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -05665151 482.67822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -05665152 482.67822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -05665153 482.67828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -05665154 482.67828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -05665155 482.67828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -05665156 482.67828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -05665157 482.67831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -05665158 482.67831421 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -05665159 482.67837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -05665160 482.67837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -05665161 482.67837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -05665162 482.67837524 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -05665163 482.67843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -05665164 482.67843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -05665165 482.67843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -05665166 482.67843628 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -05665167 482.67846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -05665168 482.67846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -05665169 482.67846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -05665170 482.67846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -05665171 482.67852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -05665172 482.67852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -05665173 482.67852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -05665174 482.67852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -05665175 482.67858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -05665176 482.67858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -05665177 482.67861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -05665178 482.67861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -05665179 482.67861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -05665180 482.67861938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -05665181 482.67868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -05665182 482.67868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -05665183 482.67868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -05665184 482.67868042 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -05665185 482.67874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -05665186 482.67874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -05665187 482.67874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -05665188 482.67874146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -05665189 482.67877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -05665190 482.67877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -05665777 483.61199951 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05665778 483.63171387 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665779 483.63171387 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665780 484.79617310 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665781 484.79620361 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665782 484.79620361 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665783 484.79626465 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05665784 484.79635620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665785 484.79635620 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05665786 484.79641724 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665787 484.79647827 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05665788 485.06372070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05665789 485.06439209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -05665790 485.63357544 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05665791 485.65515137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665792 485.65515137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665793 486.14242554 [vmhook-eac [core number = 10]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -05665794 486.14364624 [vmhook-eac [core number = 10]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -05665795 487.30270386 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665796 487.30276489 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665797 487.30276489 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665798 487.30276489 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05665799 487.30291748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665800 487.30291748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05665801 487.30294800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05665802 487.30294800 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05665803 487.65634155 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05665804 487.67471313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665805 487.67471313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05665806 487.68829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05665807 487.68829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05665808 487.68829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05665809 487.68829346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05665810 487.68835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05665811 487.68835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05665812 487.68835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05665813 487.68835449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05665814 487.68838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05665815 487.68838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05665816 487.68838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05665817 487.68838501 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05665818 487.68844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05665819 487.68844604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05665820 487.68850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05665821 487.68850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05665822 487.68850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05665823 487.68850708 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05665824 487.68853760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05665825 487.68853760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05665826 487.68853760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05665827 487.68853760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05665828 487.68859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05665829 487.68859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05665830 487.68859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05665831 487.68859863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05665832 487.68865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05665833 487.68865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05665834 487.68865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05665835 487.68865967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05665836 487.68869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05665837 487.68869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05665838 487.68869019 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05665839 487.68875122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05665840 487.68875122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05665841 487.68875122 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05665842 487.68881226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05665843 487.68881226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05665844 487.68881226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05665845 487.68881226 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05665846 487.68884277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05665847 487.68884277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05665848 487.68884277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05665849 487.68884277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05665850 487.68890381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05665851 487.68890381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05665852 487.68890381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05665853 487.68890381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05665854 487.68896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05665855 487.68896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05665856 487.68896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05665857 487.68896484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05665858 487.68902588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05665859 487.68902588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05665860 487.68902588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05665861 487.68905640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05665862 487.68905640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05665863 487.68905640 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05665864 487.68911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05665865 487.68911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05665866 487.68911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05665867 487.68911743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05665868 487.68917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05665869 487.68917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05665870 487.68917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05665871 487.68917847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05665872 487.68920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05665873 487.68920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05665874 487.68920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05665875 487.68920898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05665876 487.68927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05665877 487.68927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05665878 487.68927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05665879 487.68927002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05665880 487.68933105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05665881 487.68933105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05665882 487.68936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05665883 487.68936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05665884 487.68936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05665885 487.68936157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05665886 487.68942261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05665887 487.68942261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05665888 487.68942261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05665889 487.68942261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05665890 487.68948364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05665891 487.68948364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05665892 487.68948364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05665893 487.68948364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05665894 487.68951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05665895 487.68951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05665896 487.68951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05665897 487.68951416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05665898 487.68957520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05665899 487.68957520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05665900 487.68957520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05665901 487.68963623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05665902 487.68963623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05665903 487.68963623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05665904 487.68966675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05665905 487.68966675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05665906 487.68966675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05665907 487.68966675 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05665908 487.68972778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05665909 487.68972778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05665910 487.68972778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05665911 487.68972778 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05665912 487.68978882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05665913 487.68978882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05665914 487.68978882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05665915 487.68978882 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05665916 487.68981934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05665917 487.68981934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05665918 487.68981934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05665919 487.68981934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05665920 487.68988037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05665921 487.68988037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05665922 487.68988037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05665923 487.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05665924 487.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05665925 487.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05665926 487.68997192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05665927 487.68997192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05665928 487.68997192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05665929 487.68997192 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05665930 487.69003296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05665931 487.69003296 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05665932 487.69009399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05665933 487.69009399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05665934 487.69009399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05665935 487.69009399 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05665936 487.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05665937 487.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05665938 487.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05665939 487.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05665940 487.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05665941 487.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05665942 487.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05665943 487.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05665944 487.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05665945 487.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05665946 487.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05665947 487.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05665948 487.69027710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05665949 487.69027710 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05665950 487.69033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05665951 487.69033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05665952 487.69033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05665953 487.69033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05665954 487.69039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05665955 487.69039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05665956 487.69039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05665957 487.69039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05665958 487.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05665959 487.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05665960 487.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05665961 487.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05665962 487.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05665963 487.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05665964 487.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05665965 487.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05665966 487.69055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05665967 487.69055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05665968 487.69061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05665969 487.69061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05665970 487.69061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05665971 487.69061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05665972 487.69064331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05665973 487.69064331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05665974 487.69064331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05665975 487.69064331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05665976 487.69070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05665977 487.69070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05665978 487.69070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05665979 487.69070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05665980 487.69076538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05665981 487.69076538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05665982 487.69076538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05665983 487.69076538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05665984 487.69079590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05665985 487.69079590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05665986 487.69079590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05665987 487.69085693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05665988 487.69085693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05665989 487.69085693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05665990 487.69091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05665991 487.69091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05665992 487.69091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05665993 487.69091797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05665994 487.69094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05665995 487.69094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05665996 487.69094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05665997 487.69094849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05665998 487.69100952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05665999 487.69100952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05666000 487.69100952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05666001 487.69100952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05666002 487.69107056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05666003 487.69107056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05666004 487.69107056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05666005 487.69107056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05666006 487.69110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05666007 487.69110107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05666008 487.69116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05666009 487.69116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05666010 487.69116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05666011 487.69116211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05666012 487.69122314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05666013 487.69122314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05666014 487.69122314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05666015 487.69122314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05666016 487.69125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05666017 487.69125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05666018 487.69125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05666019 487.69125366 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05666020 487.69131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05666021 487.69131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05666022 487.69131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05666023 487.69131470 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05666024 487.69137573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05666025 487.69137573 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05666026 487.69140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05666027 487.69140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05666028 487.69140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05666029 487.69140625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05666030 487.69146729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05666031 487.69146729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05666032 487.69146729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05666033 487.69146729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05666034 487.69152832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05666035 487.69152832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05666036 487.69152832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05666037 487.69152832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05666038 487.69155884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05666039 487.69155884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05666040 487.69155884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05666041 487.69155884 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05666042 487.69161987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05666043 487.69161987 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05666044 487.69168091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05666045 487.69168091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05666046 487.69168091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05666047 487.69168091 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05666048 487.69171143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05666049 487.69171143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05666050 487.69171143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05666051 487.69171143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05666052 487.69177246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05666053 487.69177246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05666054 487.69177246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05666055 487.69177246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05666056 487.69183350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05666057 487.69183350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05666058 487.69183350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05666059 487.69183350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05666060 487.69186401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05666061 487.69186401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05666062 487.69186401 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05666063 487.69192505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05666064 487.69192505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05666065 487.69192505 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05666066 487.69198608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05666067 487.69198608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05666068 487.69198608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05666069 487.69198608 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05666070 487.69204712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05666071 487.69204712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05666072 487.69204712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05666073 487.69204712 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05666074 487.69207764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05666075 487.69207764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05666076 487.69207764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05666077 487.69207764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05666078 487.69213867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05666079 487.69213867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05666080 487.69213867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05666081 487.69219971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05666082 487.69219971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05666083 487.69219971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05666084 487.69223022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05666085 487.69223022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05666086 487.69223022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05666087 487.69223022 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05666088 487.69229126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05666089 487.69229126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05666090 487.69229126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05666091 487.69229126 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05666092 487.69235229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05666093 487.69235229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05666094 487.69238281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05666095 487.69238281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05666096 487.69238281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05666097 487.69238281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05666098 487.69244385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05666099 487.69244385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05666100 487.69244385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05666101 487.69244385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05666102 487.69250488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05666103 487.69250488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05666104 487.69250488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05666105 487.69250488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05666106 487.69253540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05666107 487.69253540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05666108 487.69253540 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05666109 487.69259644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05666110 487.69259644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05666111 487.69259644 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05666112 487.69265747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05666113 487.69265747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05666114 487.69265747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05666115 487.69265747 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05666116 487.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05666117 487.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05666118 487.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05666119 487.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05666120 487.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05666121 487.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05666122 487.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05666123 487.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05666124 487.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05666125 487.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05666126 487.69284058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05666127 487.69284058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05666128 487.69284058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05666129 487.69284058 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05666130 487.69290161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05666131 487.69290161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05666132 487.69290161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05666133 487.69290161 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05666134 487.69296265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05666135 487.69296265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05666136 487.69296265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05666137 487.69296265 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05666138 487.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05666139 487.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05666140 487.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05666141 487.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05666142 487.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05666143 487.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05666144 487.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05666145 487.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05666146 487.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05666147 487.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05666148 487.69314575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05666149 487.69314575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05666150 487.69314575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05666151 487.69314575 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05666152 487.69320679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05666153 487.69320679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05666154 487.69320679 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05666155 487.69326782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05666156 487.69326782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05666157 487.69326782 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05666158 487.69329834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05666159 487.69329834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05666160 487.69329834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05666161 487.69329834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05666162 487.69335938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05666163 487.69335938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05666164 487.69335938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05666165 487.69335938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05666166 487.69342041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05666167 487.69342041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05666168 487.69345093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05666169 487.69345093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05666170 487.69345093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05666171 487.69345093 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05666172 487.69351196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05666173 487.69351196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05666174 487.69351196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05666175 487.69351196 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05666176 487.69357300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05666177 487.69357300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05666178 487.69357300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05666179 487.69357300 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05666180 487.69363403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05666181 487.69363403 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05666182 487.69366455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05666183 487.69366455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05666184 487.69366455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05666185 487.69366455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05666186 487.69372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05666187 487.69372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05666188 487.69372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05666189 487.69372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05666190 487.69378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05666191 487.69378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05666192 487.69378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05666193 487.69381714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05666194 487.69381714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05666195 487.69381714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05666196 487.69387817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05666197 487.69387817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05666198 487.69387817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05666199 487.69387817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05666200 487.69393921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05666201 487.69393921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05666202 487.69393921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05666203 487.69393921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05666204 487.69396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05666205 487.69396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05666206 487.69396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05666207 487.69396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05666208 487.69403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05666209 487.69403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05666210 487.69409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05666211 487.69409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05666212 487.69409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05666213 487.69409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05666214 487.69412231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05666215 487.69412231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05666216 487.69412231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05666217 487.69412231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05666218 487.69418335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05666219 487.69418335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05666220 487.69418335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05666221 487.69418335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05666222 487.69424438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05666223 487.69424438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05666224 487.69424438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05666225 487.69427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05666226 487.69427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05666227 487.69427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05666228 487.69433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05666229 487.69433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05666230 487.69433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05666231 487.69433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05666232 487.69439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05666233 487.69439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05666234 487.69439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05666235 487.69439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05666236 487.69442749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05666237 487.69442749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05666238 487.69442749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05666239 487.69442749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05666240 487.69448853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05666241 487.69448853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05666242 487.69448853 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05666243 487.69454956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05666244 487.69454956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05666245 487.69454956 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05666246 487.69458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05666247 487.69458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05666248 487.69458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05666249 487.69458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05666250 487.69464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05666251 487.69464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05666252 487.69464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05666253 487.69464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05666254 487.69470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05666255 487.69470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05666256 487.69470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05666257 487.69473267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05666258 487.69473267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05666259 487.69473267 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05666260 487.69479370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05666261 487.69479370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05666262 487.69479370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05666263 487.69479370 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05666264 487.69485474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05666265 487.69485474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05666266 487.69485474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05666267 487.69485474 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05666268 487.69488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05666269 487.69488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05666270 487.69488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05666271 487.69488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05666272 487.69494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05666273 487.69494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05666274 487.69500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05666275 487.69500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05666276 487.69500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05666277 487.69500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05666278 487.69503784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05666279 487.69503784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05666280 487.69503784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05666281 487.69503784 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05666282 487.69509888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05666283 487.69509888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05666284 487.69509888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05666285 487.69509888 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05666286 487.69515991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05666287 487.69515991 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05666288 487.69522095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05666289 487.69522095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05666290 487.69522095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05666291 487.69522095 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05666292 487.69525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05666293 487.69525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05666294 487.69525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05666295 487.69525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05666296 487.69531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05666297 487.69531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05666298 487.69531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05666299 487.69531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05666300 487.69537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05666301 487.69537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05666302 487.69537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05666303 487.69537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05666304 487.69540405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05666305 487.69540405 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05666306 487.69546509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05666307 487.69546509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05666308 487.69546509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05666309 487.69546509 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05666310 487.69552612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05666311 487.69552612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05666312 487.69552612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05666313 487.69552612 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05666314 487.69555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05666315 487.69555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05666316 487.69555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05666317 487.69555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05666318 487.69561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05666319 487.69561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05666320 487.69561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05666321 487.69561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05666322 487.69567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05666323 487.69567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05666324 487.69570923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05666325 487.69570923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05666326 487.69570923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05666327 487.69570923 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05666328 487.69577026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05666329 487.69577026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05666330 487.69577026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05666331 487.69577026 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05666332 487.69583130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05666333 487.69583130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05666334 487.69583130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05666335 487.69583130 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05666336 487.69586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05666337 487.69586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05666338 487.69586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05666339 487.69586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05666340 487.69592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05666341 487.69592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05666342 487.69598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05666343 487.69598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05666344 487.69598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05666345 487.69598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05666346 487.69601440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05666347 487.69601440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05666348 487.69601440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05666349 487.69601440 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05666350 487.69607544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05666351 487.69607544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05666352 487.69607544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05666353 487.69607544 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05666354 487.69613647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05666355 487.69613647 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05666356 487.69616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05666357 487.69616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05666358 487.69616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05666359 487.69616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05666360 487.69622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05666361 487.69622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05666362 487.69622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05666363 487.69622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05666364 487.69628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05666365 487.69628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05666366 487.69628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05666367 487.69628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05666368 487.69631958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05666369 487.69631958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05666370 487.69631958 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05666371 487.69638062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05666372 487.69638062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05666373 487.69638062 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05666374 487.69644165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05666375 487.69644165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05666376 487.69644165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05666377 487.69644165 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05666378 487.69647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05666379 487.69647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05666380 487.69647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05666381 487.69647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05666382 487.69653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05666383 487.69653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05666384 487.69653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05666385 487.69653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05666386 487.69659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05666387 487.69659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05666388 487.69659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05666389 487.69659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05666390 487.69662476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05666391 487.69662476 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05666392 487.69668579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05666393 487.69668579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05666394 487.69668579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05666395 487.69668579 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05666396 487.69674683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05666397 487.69674683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05666398 487.69674683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05666399 487.69674683 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05666400 487.69680786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05666401 487.69680786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05666402 487.69680786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05666403 487.69680786 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05666404 487.69683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05666405 487.69683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05666406 487.69683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05666407 487.69683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05666408 487.69689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05666409 487.69689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05666410 487.69689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05666411 487.69696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05666412 487.69696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05666413 487.69696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05666414 487.69699097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05666415 487.69699097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05666416 487.69699097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05666417 487.69699097 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05666418 487.69705200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05666419 487.69705200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05666420 487.69705200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05666421 487.69705200 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05666422 487.69711304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05666423 487.69711304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05666424 487.69711304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05666425 487.69711304 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05666426 487.69714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05666427 487.69714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05666428 487.69714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05666429 487.69720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05666430 487.69720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05666431 487.69720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05666432 487.69726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05666433 487.69726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05666434 487.69726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05666435 487.69726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05666436 487.69729614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05666437 487.69729614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05666438 487.69729614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05666439 487.69729614 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05666440 487.69735718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05666441 487.69735718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05666442 487.69735718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05666443 487.69735718 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05666444 487.69741821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05666445 487.69741821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05666446 487.69741821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05666447 487.69741821 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05666448 487.69744873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05666449 487.69744873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05666450 487.69750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05666451 487.69750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05666452 487.69750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05666453 487.69750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05666454 487.69757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05666455 487.69757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05666456 487.69757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05666457 487.69757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05666458 487.69760132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05666459 487.69760132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05666460 487.69760132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05666461 487.69760132 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05666462 487.69766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05666463 487.69766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05666464 487.69766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05666465 487.69766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05666466 487.69772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05666467 487.69772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05666468 487.69775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05666469 487.69775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05666470 487.69775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05666471 487.69775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05666472 487.69781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05666473 487.69781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05666474 487.69781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05666475 487.69781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05666476 487.69787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05666477 487.69787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05666478 487.69787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05666479 487.69787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05666480 487.69790649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05666481 487.69790649 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05666482 487.69796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05666483 487.69796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05666484 487.69796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05666485 487.69796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05666486 487.69802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05666487 487.69802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05666488 487.69802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05666489 487.69802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05666490 487.69805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05666491 487.69805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05666492 487.69812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05666493 487.69812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05666494 487.69812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05666495 487.69812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05666496 487.69818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05666497 487.69818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05666498 487.69818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05666499 487.69818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05666500 487.69824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05666501 487.69824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05666502 487.69824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05666503 487.69824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05666504 487.69827271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05666505 487.69827271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05666506 487.69827271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05666507 487.69827271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05666508 487.69833374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05666509 487.69833374 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05666510 487.69839478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05666511 487.69839478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05666512 487.69839478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05666513 487.69839478 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05666514 487.69842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05666515 487.69842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05666516 487.69848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05666517 487.69848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05666518 487.69848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05666519 487.69848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05666520 487.69854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05666521 487.69854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05666522 487.69854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05666523 487.69854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05666524 487.69857788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05666525 487.69857788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05666526 487.69857788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05666527 487.69857788 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05666528 487.69863892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05666529 487.69863892 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05666530 487.69869995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05666531 487.69869995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05666532 487.69869995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05666533 487.69869995 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05666534 487.69873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05666535 487.69873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05666536 487.69873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05666537 487.69879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05666538 487.69879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05666539 487.69879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05666540 487.69885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05666541 487.69885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05666542 487.69885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05666543 487.69885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05666544 487.69888306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05666545 487.69888306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05666546 487.69888306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05666547 487.69888306 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05666548 487.69894409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05666549 487.69894409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05666550 487.69894409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05666551 487.69894409 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05666552 487.69900513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05666553 487.69900513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05666554 487.69900513 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05666555 487.69903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05666556 487.69903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05666557 487.69903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05666558 487.69909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05666559 487.69909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05666560 487.69909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05666561 487.69909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05666562 487.69915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05666563 487.69915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05666564 487.69915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05666565 487.69915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05666566 487.69918823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05666567 487.69918823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05666568 487.69918823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05666569 487.69918823 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05666570 487.69924927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05666571 487.69924927 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05666572 487.69931030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05666573 487.69931030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05666574 487.69931030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05666575 487.69931030 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05666576 487.69934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05666577 487.69934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05666578 487.69934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05666579 487.69934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05666580 487.69940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05666581 487.69940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05666582 487.69940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05666583 487.69940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05666584 487.69946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05666585 487.69946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05666586 487.69946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05666587 487.69946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05666588 487.69949341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05666589 487.69949341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05666590 487.69949341 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05666591 487.69955444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05666592 487.69955444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05666593 487.69955444 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05666594 487.69961548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05666595 487.69961548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05666596 487.69961548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05666597 487.69961548 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05666598 487.69964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05666599 487.69964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05666600 487.69964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05666601 487.69964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05666602 487.69970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05666603 487.69970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05666604 487.69970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05666605 487.69970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05666606 487.69976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05666607 487.69976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05666608 487.69976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05666609 487.69976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05666610 487.69982910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05666611 487.69982910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05666612 487.69985962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05666613 487.69985962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05666614 487.69985962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05666615 487.69985962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05666616 487.69992065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05666617 487.69992065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05666618 487.69992065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05666619 487.69992065 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05666620 487.69998169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05666621 487.69998169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05666622 487.69998169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05666623 487.69998169 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05666624 487.70001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05666625 487.70001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05666626 487.70001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05666627 487.70001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05666628 487.70007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05666629 487.70007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05666630 487.70013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05666631 487.70013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05666632 487.70013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05666633 487.70013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05666634 487.70016479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05666635 487.70016479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05666636 487.70016479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05666637 487.70016479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05666638 487.70022583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05666639 487.70022583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05666640 487.70022583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05666641 487.70022583 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05666642 487.70028687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05666643 487.70028687 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05666644 487.70031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05666645 487.70031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05666646 487.70031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05666647 487.70031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05666648 487.70037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05666649 487.70037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05666650 487.70037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05666651 487.70037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05666652 487.70043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05666653 487.70043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05666654 487.70043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05666655 487.70043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05666656 487.70046997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05666657 487.70046997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05666658 487.70046997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05666659 487.70053101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05666660 487.70053101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05666661 487.70053101 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05666662 487.70059204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05666663 487.70059204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05666664 487.70059204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05666665 487.70059204 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05666666 487.70062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05666667 487.70062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05666668 487.70062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05666669 487.70062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05666670 487.70068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05666671 487.70068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05666672 487.70068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05666673 487.70068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05666674 487.70074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05666675 487.70074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05666676 487.70077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05666677 487.70077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05666678 487.70077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05666679 487.70077515 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05666680 487.70083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05666681 487.70083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05666682 487.70083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05666683 487.70083618 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05666684 487.70089722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05666685 487.70089722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05666686 487.70089722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05666687 487.70089722 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05666688 487.70092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05666689 487.70092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05666690 487.70098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05666691 487.70098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05666692 487.70098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05666693 487.70098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05666694 487.70104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05666695 487.70104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05666696 487.70104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05666697 487.70104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05666698 487.70108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05666699 487.70108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05666700 487.70108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05666701 487.70108032 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05666702 487.70114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05666703 487.70114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05666704 487.70114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05666705 487.70114136 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05666706 487.70120239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05666707 487.70120239 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05666708 487.70123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05666709 487.70123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05666710 487.70123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05666711 487.70123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05666712 487.70129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05666713 487.70129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05666714 487.70129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05666715 487.70129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05666716 487.70135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05666717 487.70135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05666718 487.70135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05666719 487.70135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05666720 487.70141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05666721 487.70141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05666722 487.70141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05666723 487.70141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05666724 487.70144653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05666725 487.70144653 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05666726 487.70150757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05666727 487.70150757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05666728 487.70150757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05666729 487.70150757 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05666730 487.70156860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05666731 487.70156860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05666732 487.70156860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05666733 487.70156860 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05666734 487.70159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05666735 487.70159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05666736 487.70159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05666737 487.70159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05666738 487.70166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05666739 487.70166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05666740 487.70166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05666741 487.70166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05666742 487.70172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05666743 487.70172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05666744 487.70172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05666745 487.70175171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05666746 487.70175171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05666747 487.70175171 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05666748 487.70181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05666749 487.70181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05666750 487.70181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05666751 487.70181274 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05666752 487.70187378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05666753 487.70187378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05666754 487.70187378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05666755 487.70187378 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05666756 487.70190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05666757 487.70190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05666758 487.70190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05666759 487.70190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05666760 487.70196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05666761 487.70196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05666762 487.70196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05666763 487.70196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05666764 487.70202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05666765 487.70202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05666766 487.70202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05666767 487.70205688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05666768 487.70205688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05666769 487.70205688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05666770 487.70211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05666771 487.70211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05666772 487.70211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05666773 487.70211792 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05666774 487.70217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05666775 487.70217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05666776 487.70217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05666777 487.70217896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05666778 487.70220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05666779 487.70220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05666780 487.70220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05666781 487.70220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05666782 487.70227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05666783 487.70227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05666784 487.70227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05666785 487.70233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05666786 487.70233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05666787 487.70233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05666788 487.70236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05666789 487.70236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05666790 487.70236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05666791 487.70236206 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05666792 487.70242310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05666793 487.70242310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05666794 487.70242310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05666795 487.70242310 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05666796 487.70248413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05666797 487.70248413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05666798 487.70248413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05666799 487.70248413 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05666800 487.70251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05666801 487.70251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05666802 487.70251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05666803 487.70257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05666804 487.70257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05666805 487.70257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05666806 487.70263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05666807 487.70263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05666808 487.70263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05666809 487.70263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05666810 487.70266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05666811 487.70266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05666812 487.70266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05666813 487.70266724 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05666814 487.70272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05666815 487.70272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05666816 487.70272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05666817 487.70272827 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05666818 487.70278931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05666819 487.70278931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05666820 487.70278931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05666821 487.70278931 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05666822 487.70285034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05666823 487.70285034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05666824 487.70285034 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05666825 487.70288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05666826 487.70288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05666827 487.70288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05666828 487.70294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05666829 487.70294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05666830 487.70294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05666831 487.70294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05666832 487.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05666833 487.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05666834 487.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05666835 487.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05666836 487.70303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05666837 487.70303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05666838 487.70303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05666839 487.70303345 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05666840 487.70309448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05666841 487.70309448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05666842 487.70309448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05666843 487.70309448 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05666844 487.70315552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05666845 487.70315552 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05666846 487.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05666847 487.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05666848 487.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05666849 487.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05666850 487.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05666851 487.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05666852 487.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05666853 487.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05666854 487.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05666855 487.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05666856 487.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05666857 487.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05666858 487.70333862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05666859 487.70333862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05666860 487.70333862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05666861 487.70333862 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05666862 487.70339966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05666863 487.70339966 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05666864 487.70346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05666865 487.70346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05666866 487.70346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05666867 487.70346069 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05666868 487.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05666869 487.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05666870 487.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05666871 487.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05666872 487.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05666873 487.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05666874 487.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05666875 487.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05666876 487.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05666877 487.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05666878 487.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05666879 487.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05666880 487.70364380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05666881 487.70364380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05666882 487.70364380 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05666883 487.70370483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05666884 487.70370483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05666885 487.70370483 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05666886 487.70376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05666887 487.70376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05666888 487.70376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05666889 487.70376587 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05666890 487.70379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05666891 487.70379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05666892 487.70379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05666893 487.70379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05666894 487.70385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05666895 487.70385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05666896 487.70385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05666897 487.70385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05666898 487.70391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05666899 487.70391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05666900 487.70391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05666901 487.70391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05666902 487.70394897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05666903 487.70394897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05666904 487.70394897 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05666905 487.70401001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05666906 487.70401001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05666907 487.70401001 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05666908 487.70407104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05666909 487.70407104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05666910 487.70407104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05666911 487.70407104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05666912 487.70410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05666913 487.70410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05666914 487.70410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05666915 487.70410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05666916 487.70416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05666917 487.70416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05666918 487.70416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05666919 487.70416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05666920 487.70422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05666921 487.70422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05666922 487.70422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05666923 487.70425415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05666924 487.70425415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05666925 487.70425415 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05666926 487.70431519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05666927 487.70431519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05666928 487.70431519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05666929 487.70431519 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05666930 487.70437622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05666931 487.70437622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05666932 487.70437622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05666933 487.70437622 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05666934 487.70443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05666935 487.70443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05666936 487.70443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05666937 487.70443726 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05666938 487.70446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05666939 487.70446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05666940 487.70446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05666941 487.70446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05666942 487.70452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05666943 487.70452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05666944 487.70452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05666945 487.70458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05666946 487.70458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05666947 487.70458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05666948 487.70462036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05666949 487.70462036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05666950 487.70462036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05666951 487.70462036 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05666952 487.70468140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05666953 487.70468140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05666954 487.70468140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05666955 487.70468140 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05666956 487.70474243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05666957 487.70474243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05666958 487.70474243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05666959 487.70474243 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05666960 487.70477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05666961 487.70477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05666962 487.70477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05666963 487.70477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05666964 487.70483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05666965 487.70483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05666966 487.70489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05666967 487.70489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05666968 487.70489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05666969 487.70489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05666970 487.70492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05666971 487.70492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05666972 487.70492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05666973 487.70492554 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05666974 487.70498657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05666975 487.70498657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05666976 487.70498657 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05666977 487.70504761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05666978 487.70504761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05666979 487.70504761 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05666980 487.70507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05666981 487.70507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05666982 487.70507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05666983 487.70507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05666984 487.70513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05666985 487.70513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05666986 487.70513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05666987 487.70513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05666988 487.70520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05666989 487.70520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05666990 487.70520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05666991 487.70520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05666992 487.70523071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05666993 487.70523071 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05666994 487.70529175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05666995 487.70529175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05666996 487.70529175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05666997 487.70529175 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05666998 487.70535278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05666999 487.70535278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05667000 487.70535278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05667001 487.70535278 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05667002 487.70538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05667003 487.70538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05667004 487.70538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05667005 487.70538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05667006 487.70544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05667007 487.70544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05667008 487.70544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05667009 487.70544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05667010 487.70550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05667011 487.70550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05667012 487.70550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05667013 487.70553589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05667014 487.70553589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05667015 487.70553589 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05667016 487.70559692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05667017 487.70559692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05667018 487.70559692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05667019 487.70559692 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05667020 487.70565796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05667021 487.70565796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05667022 487.70565796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05667023 487.70565796 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05667024 487.70568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05667025 487.70568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05667026 487.70568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05667027 487.70568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05667028 487.70574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05667029 487.70574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05667030 487.70574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05667031 487.70574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05667032 487.70581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05667033 487.70581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05667034 487.70581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05667035 487.70584106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05667036 487.70584106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05667037 487.70584106 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05667038 487.70590210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05667039 487.70590210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05667040 487.70590210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05667041 487.70590210 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05667042 487.70596313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05667043 487.70596313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05667044 487.70596313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05667045 487.70596313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05667046 487.70602417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05667047 487.70602417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05667048 487.70602417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05667049 487.70602417 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05667050 487.70605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05667051 487.70605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05667052 487.70605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05667053 487.70611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05667054 487.70611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05667055 487.70611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05667056 487.70617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05667057 487.70617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05667058 487.70617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05667059 487.70617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05667060 487.70620728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05667061 487.70620728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05667062 487.70620728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05667063 487.70620728 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05667064 487.70626831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05667065 487.70626831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05667066 487.70626831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05667067 487.70626831 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05667068 487.70632935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05667069 487.70632935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05667070 487.70632935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05667071 487.70632935 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05667072 487.70635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05667073 487.70635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05667074 487.70642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05667075 487.70642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05667076 487.70642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05667077 487.70642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05667078 487.70648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05667079 487.70648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05667080 487.70648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05667081 487.70648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05667082 487.70651245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05667083 487.70651245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05667084 487.70651245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05667085 487.70651245 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05667086 487.70657349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05667087 487.70657349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05667088 487.70657349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05667089 487.70657349 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05667090 487.70663452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05667091 487.70663452 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05667092 487.70666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05667093 487.70666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05667094 487.70666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05667095 487.70666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05667096 487.70672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05667097 487.70672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05667098 487.70672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05667099 487.70672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05667100 487.70678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05667101 487.70678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05667102 487.70678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05667103 487.70678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05667104 487.70681763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05667105 487.70681763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05667106 487.70681763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05667107 487.70681763 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05667108 487.70687866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05667109 487.70687866 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05667110 487.70693970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05667111 487.70693970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05667112 487.70693970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05667113 487.70693970 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05667114 487.70697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05667115 487.70697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05667116 487.70697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05667117 487.70697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05667118 487.70703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05667119 487.70703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05667120 487.70703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05667121 487.70703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05667122 487.70709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05667123 487.70709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05667124 487.70712280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05667125 487.70712280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05667126 487.70712280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05667127 487.70712280 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05667128 487.70718384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05667129 487.70718384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05667130 487.70718384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05667131 487.70718384 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05667132 487.70724487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05667133 487.70724487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05667134 487.70724487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05667135 487.70724487 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05667136 487.70727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05667137 487.70727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05667138 487.70733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05667139 487.70733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05667140 487.70733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05667141 487.70733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05667142 487.70739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05667143 487.70739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05667144 487.70739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05667145 487.70739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05667146 487.70742798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05667147 487.70742798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05667148 487.70742798 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05667149 487.70748901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05667150 487.70748901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05667151 487.70748901 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05667152 487.70755005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05667153 487.70755005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05667154 487.70755005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05667155 487.70755005 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05667156 487.70761108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05667157 487.70761108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05667158 487.70761108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05667159 487.70761108 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05667160 487.70764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05667161 487.70764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05667162 487.70764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05667163 487.70764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05667164 487.70770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05667165 487.70770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05667166 487.70776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05667167 487.70776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05667168 487.70776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05667169 487.70776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05667170 487.70779419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05667171 487.70779419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05667172 487.70779419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05667173 487.70779419 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05667174 487.70785522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05667175 487.70785522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05667176 487.70785522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05667177 487.70785522 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05667178 487.70791626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05667179 487.70791626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05667180 487.70791626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05667181 487.70791626 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05667182 487.70794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05667183 487.70794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05667184 487.70800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05667185 487.70800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05667186 487.70800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05667187 487.70800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05667188 487.70806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05667189 487.70806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05667190 487.70806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05667191 487.70806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05667192 487.70809937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05667193 487.70809937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05667194 487.70809937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05667195 487.70809937 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05667196 487.70816040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05667197 487.70816040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05667198 487.70816040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05667199 487.70816040 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05667200 487.70822144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05667201 487.70822144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05667202 487.70822144 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05667203 487.70825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05667204 487.70825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05667205 487.70825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05667206 487.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05667207 487.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05667208 487.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05667209 487.70831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05667210 487.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05667211 487.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05667212 487.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05667213 487.70837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05667214 487.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05667215 487.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05667216 487.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05667217 487.70840454 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05667218 487.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05667219 487.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05667220 487.70846558 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05667221 487.70852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05667222 487.70852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05667223 487.70852661 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05667224 487.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05667225 487.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05667226 487.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05667227 487.70855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05667228 487.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05667229 487.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05667230 487.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05667231 487.70861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05667232 487.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05667233 487.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05667234 487.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05667235 487.70867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05667236 487.70870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05667237 487.70870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05667238 487.70870972 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05667239 487.70877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05667240 487.70877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05667241 487.70877075 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05667242 487.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05667243 487.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05667244 487.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05667245 487.70883179 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05667246 487.70886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05667247 487.70886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05667248 487.70886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05667249 487.70886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05667250 487.70892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05667251 487.70892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05667252 487.70892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05667253 487.70892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05667254 487.70898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05667255 487.70898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05667256 487.70898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05667257 487.70898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05667258 487.70904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05667259 487.70904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05667260 487.70904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05667261 487.70907593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05667262 487.70907593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05667263 487.70907593 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05667264 487.70913696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05667265 487.70913696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05667266 487.70913696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05667267 487.70913696 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05667268 487.70919800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05667269 487.70919800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05667270 487.70919800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05667271 487.70919800 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05667272 487.70922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05667273 487.70922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05667274 487.70922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05667275 487.70922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05667276 487.70928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05667277 487.70928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05667278 487.70928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05667279 487.70935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05667280 487.70935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05667281 487.70935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05667282 487.70938110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05667283 487.70938110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05667284 487.70938110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05667285 487.70938110 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05667286 487.70944214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05667287 487.70944214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05667288 487.70944214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05667289 487.70944214 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05667290 487.70950317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05667291 487.70950317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05667292 487.70950317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05667293 487.70950317 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05667294 487.70953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05667295 487.70953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05667296 487.70953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05667297 487.70959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05667298 487.70959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05667299 487.70959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05667300 487.70965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05667301 487.70965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05667598 487.71389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05667599 487.71389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05667600 487.71389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05667601 487.71389771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05667602 487.71395874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05667603 487.71395874 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05667604 487.71398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05667605 487.71398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05667606 487.71398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05667607 487.71398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05667608 487.71405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05667609 487.71405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05667610 487.71405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05667611 487.71405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -05667612 487.71411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05667613 487.71411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -05667614 487.71411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05667615 487.71411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -05667616 487.71414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05667617 487.71414185 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -05667618 487.71420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05667619 487.71420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -05667620 487.71420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05667621 487.71420288 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -05667622 487.71426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05667623 487.71426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -05667624 487.71426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05667625 487.71426392 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -05667626 487.71429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05667627 487.71429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -05667628 487.71429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05667629 487.71429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -05667630 487.71435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05667631 487.71435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -05667632 487.71435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05667633 487.71441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -05667634 487.71441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05667635 487.71441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -05667636 487.71444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05667637 487.71444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -05667638 487.71444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05667639 487.71444702 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -05667640 487.71450806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05667641 487.71450806 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -05668798 487.73110962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -05668799 487.73110962 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -05668800 487.73114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -05668801 487.73114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -05668802 487.73114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -05668803 487.73114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -05668804 487.73120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -05668805 487.73120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -05668806 487.73120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -05668807 487.73120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -05668808 487.73126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -05668809 487.73126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -05668810 487.73129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -05668811 487.73129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -05668812 487.73129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -05668813 487.73129272 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -05668814 487.73135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -05668815 487.73135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -05668816 487.73135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -05668817 487.73135376 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -05668818 487.73141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -05668819 487.73141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -05668820 487.73141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -05668821 487.73141479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -05668822 487.73144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -05668823 487.73144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -05668824 487.73144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -05668825 487.73144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -05668826 487.73150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -05668827 487.73150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -05668828 487.73150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -05668829 487.73150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -05668830 487.73156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -05668831 487.73156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -05668832 487.73156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -05668833 487.73159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -05668834 487.73159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -05668835 487.73159790 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -05668836 487.73165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -05668837 487.73165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -05668838 487.73165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -05668839 487.73165894 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -05668840 487.73171997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -05668841 487.73171997 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -05683539 487.94015503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a68 -05683540 487.94015503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a78 -05683541 487.94015503 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a78 -05683542 487.94018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a88 -05683543 487.94018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a88 -05683544 487.94018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a98 -05683545 487.94018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a98 -05683546 487.94024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa8 -05683547 487.94024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23aa8 -05683548 487.94024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -05683549 487.94024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -05683550 487.94030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -05683551 487.94030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -05683552 487.94030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -05683553 487.94030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -05683554 487.94033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -05683555 487.94033813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -05683556 487.94039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -05683557 487.94039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -05683558 487.94039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -05683559 487.94039917 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -05683560 487.94046021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -05683561 487.94046021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -05683562 487.94046021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b28 -05683563 487.94046021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b28 -05683564 487.94049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b38 -05683565 487.94049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b38 -05683566 487.94049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b48 -05683567 487.94049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b48 -05683568 487.94055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b58 -05683569 487.94055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b58 -05683570 487.94055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b68 -05683571 487.94055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b68 -05683572 487.94061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -05683573 487.94061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -05683574 487.94061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -05683575 487.94061279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -05683576 487.94067383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -05683577 487.94067383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -05683578 487.94070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -05683579 487.94070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -05683580 487.94070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -05683581 487.94070435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -05683582 487.94076538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc8 -05684065 487.94763184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad8 -05684066 487.94766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -05684067 487.94766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -05684068 487.94766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -05684069 487.94766235 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -05684070 487.94772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -05684071 487.94772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -05684072 487.94772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -05684073 487.94772339 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -05684074 487.94778442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -05684075 487.94778442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -05684076 487.94778442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -05684077 487.94778442 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -05684078 487.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -05684079 487.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -05684080 487.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -05684081 487.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -05684082 487.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -05684083 487.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -05684084 487.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -05684085 487.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -05684086 487.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -05684087 487.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -05684088 487.94796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -05684089 487.94796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -05684090 487.94796753 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -05684091 487.94802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -05684092 487.94802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -05684093 487.94802856 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -05684094 487.94808960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -05684095 487.94808960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -05684096 487.94808960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -05684097 487.94808960 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -05684098 487.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -05684099 487.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -05684100 487.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -05684101 487.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -05684102 487.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -05684103 487.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -05684104 487.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -05684105 487.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -05684106 487.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -05684107 487.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -05684108 487.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c38 -05685138 487.96292114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c68 -05685139 487.96292114 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c68 -05685140 487.96298218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c78 -05685141 487.96298218 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c78 -05685142 487.96304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c88 -05685143 487.96304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c88 -05685144 487.96304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c98 -05685145 487.96304321 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c98 -05685146 487.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca8 -05685147 487.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ca8 -05685148 487.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb8 -05685149 487.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cb8 -05685150 487.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc8 -05685151 487.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cc8 -05685152 487.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd8 -05685153 487.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cd8 -05685154 487.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce8 -05685155 487.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ce8 -05685156 487.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf8 -05685157 487.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26cf8 -05685158 487.96322632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d08 -05685159 487.96322632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d08 -05685160 487.96322632 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d18 -05685161 487.96328735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d18 -05685162 487.96328735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d28 -05685163 487.96328735 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d28 -05685164 487.96334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d38 -05685165 487.96334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d38 -05685166 487.96334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d48 -05685167 487.96334839 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d48 -05685168 487.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d58 -05685169 487.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d58 -05685170 487.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d68 -05685171 487.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d68 -05685172 487.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d78 -05685173 487.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d78 -05685174 487.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d88 -05685175 487.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d88 -05685176 487.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d98 -05685177 487.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d98 -05685178 487.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da8 -05685179 487.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26da8 -05685180 487.96353149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db8 -05685181 487.96353149 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26db8 -05690034 488.03286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -05690035 488.03286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30568 -05690036 488.03286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -05690037 488.03286743 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30578 -05690038 488.03292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -05690039 488.03292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30588 -05690040 488.03292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -05690041 488.03292847 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30598 -05690042 488.03295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -05690043 488.03295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305a8 -05690044 488.03295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -05690045 488.03295898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305b8 -05690046 488.03302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -05690047 488.03302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305c8 -05690048 488.03302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -05690049 488.03302002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305d8 -05690050 488.03308105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -05690051 488.03308105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305e8 -05690052 488.03311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -05690053 488.03311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x305f8 -05690054 488.03311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -05690055 488.03311157 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30608 -05690056 488.03317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -05690057 488.03317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30618 -05690058 488.03317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -05690059 488.03317261 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30628 -05690060 488.03323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -05690061 488.03323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30638 -05690062 488.03323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -05690063 488.03323364 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30648 -05690064 488.03329468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -05690065 488.03329468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30658 -05690066 488.03329468 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30668 -05690067 488.03332520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30668 -05690068 488.03332520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30678 -05690069 488.03332520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30678 -05690070 488.03338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30688 -05690071 488.03338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30688 -05690072 488.03338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30698 -05690073 488.03338623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30698 -05690074 488.03344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a8 -05690075 488.03344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x306a8 -05690076 488.03344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b8 -05690077 488.03344727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x306b8 -05696938 488.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd28 -05696939 488.13131714 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd28 -05696940 488.13137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd38 -05696941 488.13137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd38 -05696942 488.13137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd48 -05696943 488.13137817 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd48 -05696944 488.13143921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd58 -05696945 488.13143921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd58 -05696946 488.13143921 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd68 -05696947 488.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd68 -05696948 488.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd78 -05696949 488.13146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd78 -05696950 488.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd88 -05696951 488.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd88 -05696952 488.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd98 -05696953 488.13153076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd98 -05696954 488.13159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda8 -05696955 488.13159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dda8 -05696956 488.13159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb8 -05696957 488.13159180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddb8 -05696958 488.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc8 -05696959 488.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddc8 -05696960 488.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd8 -05696961 488.13162231 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddd8 -05696962 488.13168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde8 -05696963 488.13168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dde8 -05696964 488.13168335 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf8 -05696965 488.13174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ddf8 -05696966 488.13174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de08 -05696967 488.13174438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de08 -05696968 488.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de18 -05696969 488.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de18 -05696970 488.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de28 -05696971 488.13177490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de28 -05696972 488.13183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de38 -05696973 488.13183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de38 -05696974 488.13183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de48 -05696975 488.13183594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de48 -05696976 488.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de58 -05696977 488.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de58 -05696978 488.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de68 -05696979 488.13189697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de68 -05696980 488.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -05696981 488.13192749 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de78 -05703285 488.22186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a378 -05703286 488.22186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a388 -05703287 488.22186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a388 -05703288 488.22189331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a398 -05703289 488.22189331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a398 -05703290 488.22189331 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a8 -05703291 488.22195435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3a8 -05703292 488.22195435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b8 -05703293 488.22195435 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3b8 -05703294 488.22201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c8 -05703295 488.22201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3c8 -05703296 488.22201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d8 -05703297 488.22201538 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3d8 -05703298 488.22204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e8 -05703299 488.22204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3e8 -05703300 488.22204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f8 -05703301 488.22204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a3f8 -05703302 488.22210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a408 -05703303 488.22210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a408 -05703304 488.22210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a418 -05703305 488.22210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a418 -05703306 488.22216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a428 -05703307 488.22216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a428 -05703308 488.22216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a438 -05703309 488.22216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a438 -05703310 488.22219849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a448 -05703311 488.22219849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a448 -05703312 488.22219849 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a458 -05703313 488.22225952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a458 -05703314 488.22225952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a468 -05703315 488.22225952 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a468 -05703316 488.22232056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a478 -05703317 488.22232056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a478 -05703318 488.22232056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a488 -05703319 488.22232056 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a488 -05703320 488.22235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a498 -05703321 488.22235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a498 -05703322 488.22235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a8 -05703323 488.22235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4a8 -05703324 488.22241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b8 -05703325 488.22241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4b8 -05703326 488.22241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c8 -05703327 488.22241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4c8 -05703328 488.22247314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a4d8 -05707692 489.67578125 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05707693 489.69604492 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05707694 489.69604492 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05707695 489.80972290 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05707696 489.80975342 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05707697 489.80981445 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05707698 489.80981445 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05707699 489.80996704 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05707700 489.80996704 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05707701 489.81002808 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05707702 489.81005859 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05707703 491.54995728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05707704 491.54995728 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05707705 491.55001831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05707706 491.55001831 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05707707 491.55004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05707708 491.55004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05707709 491.55004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05707710 491.55004883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05707711 491.55010986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05707712 491.55010986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05707713 491.55010986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05707714 491.55010986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05707715 491.55017090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05707716 491.55017090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05707717 491.55020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05707718 491.55020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05707719 491.55020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05707720 491.55020142 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05707721 491.55026245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05707722 491.55026245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05707723 491.55026245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05707724 491.55026245 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05707725 491.55032349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05707726 491.55032349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05707727 491.55032349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05707728 491.55032349 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05707729 491.55035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05707730 491.55035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05707731 491.55035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05707732 491.55035400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05707733 491.55041504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05707734 491.55041504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05707735 491.55041504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05707736 491.55047607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05707737 491.55047607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05707738 491.55047607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05707739 491.55050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05707740 491.55050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05707741 491.55050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05707742 491.55050659 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05707743 491.55056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05707744 491.55056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05707745 491.55056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05707746 491.55056763 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05707747 491.55062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05707748 491.55062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05707749 491.55062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05707750 491.55062866 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05707751 491.55065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05707752 491.55065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05707753 491.55065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05707754 491.55065918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05707755 491.55072021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05707756 491.55072021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05707757 491.55078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05707758 491.55078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05707759 491.55078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05707760 491.55078125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05707761 491.55081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05707762 491.55081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05707763 491.55081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05707764 491.55081177 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05707765 491.55087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05707766 491.55087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05707767 491.55087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05707768 491.55087280 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05707769 491.55093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05707770 491.55093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05707771 491.55093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05707772 491.55093384 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05707773 491.55096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05707774 491.55096436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05707775 491.55102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05707776 491.55102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05707777 491.55102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05707778 491.55102539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05707779 491.55108643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05707780 491.55108643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05707781 491.55111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05707782 491.55111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05707783 491.55111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05707784 491.55111694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05707785 491.55117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05707786 491.55117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05707787 491.55117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05707788 491.55117798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05707789 491.55123901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05707790 491.55123901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05707791 491.55123901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05707792 491.55123901 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05707793 491.55126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05707794 491.55126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05707795 491.55126953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05707796 491.55133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05707797 491.55133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05707798 491.55133057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05707799 491.55139160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05707800 491.55139160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05707801 491.55139160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05707802 491.55139160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05707803 491.55142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05707804 491.55142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05707805 491.55142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05707806 491.55142212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05707807 491.55148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05707808 491.55148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05707809 491.55148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05707810 491.55148315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05707811 491.55154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05707812 491.55154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05707813 491.55154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05707814 491.55154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05707815 491.55160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05707816 491.55160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05707817 491.55163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05707818 491.55163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05707819 491.55163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05707820 491.55163574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05707821 491.55169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05707822 491.55169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05707823 491.55169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05707824 491.55169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05707825 491.55175781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05707826 491.55175781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05707827 491.55178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05707828 491.55178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05707829 491.55178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05707830 491.55178833 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05707831 491.55184937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05707832 491.55184937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05707833 491.55184937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05707834 491.55184937 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05707835 491.55191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05707836 491.55191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05707837 491.55191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05707838 491.55191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05707839 491.55194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05707840 491.55194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05707841 491.55194092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05707842 491.55200195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05707843 491.55200195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05707844 491.55200195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05707845 491.55206299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05707846 491.55206299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05707847 491.55206299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05707848 491.55206299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05707849 491.55209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05707850 491.55209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05707851 491.55209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05707852 491.55209351 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05707853 491.55215454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05707854 491.55215454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05707855 491.55215454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05707856 491.55215454 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05707857 491.55221558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05707858 491.55221558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05707859 491.55221558 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05707860 491.55224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05707861 491.55224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05707862 491.55224609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05707863 491.55230713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05707864 491.55230713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05707865 491.55230713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05707866 491.55230713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05707867 491.55236816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05707868 491.55236816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05707869 491.55236816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05707870 491.55236816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05707871 491.55239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05707872 491.55239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05707873 491.55239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05707874 491.55239868 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05707875 491.55245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05707876 491.55245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05707877 491.55245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05707878 491.55245972 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05707879 491.55252075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05707880 491.55252075 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05707881 491.55255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05707882 491.55255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05707883 491.55255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05707884 491.55255127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05707885 491.55261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05707886 491.55261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05707887 491.55261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05707888 491.55261230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05707889 491.55267334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05707890 491.55267334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05707891 491.55267334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05707892 491.55267334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05707893 491.55270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05707894 491.55270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05707895 491.55270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05707896 491.55270386 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05707897 491.55276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05707898 491.55276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05707899 491.55276489 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05707900 491.55282593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05707901 491.55282593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05707902 491.55282593 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05707903 491.55285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05707904 491.55285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05707905 491.55285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05707906 491.55285645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05707907 491.55291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05707908 491.55291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05707909 491.55291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05707910 491.55291748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05707911 491.55297852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05707912 491.55297852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05707913 491.55297852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05707914 491.55297852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05707915 491.55300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05707916 491.55300903 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05707917 491.55307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05707918 491.55307007 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05707919 491.55313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05707920 491.55313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05707921 491.55313110 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05707922 491.55319214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05707923 491.55319214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05707924 491.55319214 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05707925 491.55322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05707926 491.55322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05707927 491.55322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05707928 491.55322266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05707929 491.55328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05707930 491.55328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05707931 491.55328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05707932 491.55328369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05707933 491.55334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05707934 491.55334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05707935 491.55334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05707936 491.55334473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05707937 491.55337524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05707938 491.55337524 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05707939 491.55343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05707940 491.55343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05707941 491.55343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05707942 491.55343628 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05707943 491.55349731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05707944 491.55349731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05707945 491.55349731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05707946 491.55349731 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05707947 491.55352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05707948 491.55352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05707949 491.55352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05707950 491.55352783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05707951 491.55358887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05707952 491.55358887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05707953 491.55358887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05707954 491.55358887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05707955 491.55364990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05707956 491.55364990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05707957 491.55364990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05707958 491.55368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05707959 491.55368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05707960 491.55368042 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05707961 491.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05707962 491.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05707963 491.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05707964 491.55374146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05707965 491.55380249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05707966 491.55380249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05707967 491.55380249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05707968 491.55380249 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05707969 491.55383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05707970 491.55383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05707971 491.55383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05707972 491.55383301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05707973 491.55389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05707974 491.55389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05707975 491.55389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05707976 491.55389404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05707977 491.55395508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05707978 491.55395508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05707979 491.55398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05707980 491.55398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05707981 491.55398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05707982 491.55398560 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05707983 491.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05707984 491.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05707985 491.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05707986 491.55404663 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05707987 491.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05707988 491.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05707989 491.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05707990 491.55410767 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05707991 491.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05707992 491.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05707993 491.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05707994 491.55413818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05707995 491.55419922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05707996 491.55419922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05707997 491.55426025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05707998 491.55426025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05707999 491.55426025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05708000 491.55426025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05708001 491.55429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05708002 491.55429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05708003 491.55429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05708004 491.55429077 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05708005 491.55435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05708006 491.55435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05708007 491.55435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05708008 491.55435181 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05708009 491.55441284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05708010 491.55441284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05708011 491.55441284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05708012 491.55441284 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05708013 491.55444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05708014 491.55444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05708015 491.55444336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05708016 491.55450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05708017 491.55450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05708018 491.55450439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05708019 491.55456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05708020 491.55456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05708021 491.55456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05708022 491.55456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05708023 491.55459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05708024 491.55459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05708025 491.55459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05708026 491.55459595 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05708027 491.55465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05708028 491.55465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05708029 491.55465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05708030 491.55465698 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05708031 491.55471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05708032 491.55471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05708033 491.55471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05708034 491.55471802 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05708035 491.55477905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05708036 491.55477905 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05708037 491.55480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05708038 491.55480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05708039 491.55480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05708040 491.55480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05708041 491.55487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05708042 491.55487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05708043 491.55487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05708044 491.55487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05708045 491.55493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05708046 491.55493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05708047 491.55493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05708048 491.55493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05708049 491.55496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05708050 491.55496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05708051 491.55496216 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05708052 491.55502319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05708053 491.55502319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05708054 491.55508423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05708055 491.55508423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05708056 491.55508423 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05708057 491.55511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05708058 491.55511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05708059 491.55511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05708060 491.55511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05708061 491.55517578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05708062 491.55517578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05708063 491.55517578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05708064 491.55523682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05708065 491.55523682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05708066 491.55523682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05708067 491.55526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05708068 491.55526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05708069 491.55526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05708070 491.55526733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05708071 491.55532837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05708072 491.55532837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05708073 491.55532837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05708074 491.55532837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05708075 491.55538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05708076 491.55538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05708077 491.55538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05708078 491.55538940 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05708079 491.55541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05708080 491.55541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05708081 491.55541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05708082 491.55541992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05708083 491.55548096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05708084 491.55548096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05708085 491.55554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05708086 491.55554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05708087 491.55554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05708088 491.55554199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05708089 491.55557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05708090 491.55557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05708091 491.55557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05708092 491.55557251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05708093 491.55563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05708094 491.55563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05708095 491.55563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05708096 491.55563354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05708097 491.55569458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05708098 491.55569458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05708099 491.55569458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05708100 491.55569458 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05708101 491.55572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05708102 491.55572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05708103 491.55572510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05708104 491.55578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05708105 491.55578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05708106 491.55578613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05708107 491.55584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05708108 491.55584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05708109 491.55584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05708110 491.55584717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05708111 491.55587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05708112 491.55587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05708113 491.55587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05708114 491.55587769 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05708115 491.55593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05708116 491.55593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05708117 491.55593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05708118 491.55593872 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05708119 491.55599976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05708120 491.55599976 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05708121 491.55603027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05708122 491.55603027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05708123 491.55609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05708124 491.55609131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05708125 491.55615234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05708126 491.55615234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05708127 491.55615234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05708128 491.55615234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05708129 491.55621338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05708130 491.55621338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05708131 491.55624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05708132 491.55624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05708133 491.55624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05708134 491.55624390 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05708135 491.55630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05708136 491.55630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05708137 491.55630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05708138 491.55630493 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05708139 491.55636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05708140 491.55636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05708141 491.55636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05708142 491.55636597 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05708143 491.55639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -05708144 491.55639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -05708145 491.55639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -05708146 491.55639648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -05708147 491.55645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -05708148 491.55645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -05708149 491.55645752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -05708150 491.55651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -05708151 491.55651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -05708152 491.55651855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -05708153 491.55654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -05708154 491.55654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -05708155 491.55654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -05708156 491.55654907 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -05708157 491.55661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -05708158 491.55661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -05708159 491.55661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -05708160 491.55661011 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -05708161 491.55667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -05708162 491.55667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -05708163 491.55667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -05708164 491.55667114 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -05708165 491.55670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -05708166 491.55670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -05708167 491.55670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -05708168 491.55670166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -05708169 491.55676270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -05708170 491.55676270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -05708171 491.55682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -05708172 491.55682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -05708173 491.55682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -05708174 491.55682373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -05708175 491.55685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -05708176 491.55685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -05708177 491.55685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -05708178 491.55685425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -05708179 491.55691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -05708180 491.55691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -05708181 491.55691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -05708182 491.55691528 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -05708183 491.55697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -05708184 491.55697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -05708185 491.55697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -05708186 491.55697632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -05708187 491.55700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -05708188 491.55700684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -05708189 491.55706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -05708190 491.55706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -05708191 491.55706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -05708192 491.55706787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -05708193 491.55712891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -05708194 491.55712891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -05708195 491.55715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -05708196 491.55715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -05708197 491.55715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -05708198 491.55715942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -05708199 491.55722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -05708200 491.55722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -05708201 491.55722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -05708202 491.55722046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -05708203 491.55728149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -05708204 491.55728149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -05708205 491.55728149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -05708206 491.55728149 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -05708207 491.55731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -05708208 491.55731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -05708209 491.55731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -05708210 491.55731201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -05708211 491.55737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -05708212 491.55737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -05708213 491.55737305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -05708214 491.55743408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -05708215 491.55743408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -05708216 491.55743408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -05708217 491.55746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -05708218 491.55746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -05708219 491.55746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -05708220 491.55746460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -05708221 491.55752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -05708222 491.55752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -05708223 491.55752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -05708224 491.55752563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -05708225 491.55758667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -05708226 491.55758667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -05708227 491.55758667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -05708228 491.55758667 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -05708229 491.55761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -05708230 491.55761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -05708231 491.55761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -05708232 491.55761719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -05708233 491.55767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -05708234 491.55767822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -05708235 491.55773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -05708236 491.55773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -05708237 491.55773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -05708238 491.55773926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -05708239 491.55780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -05708240 491.55780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -05708241 491.55780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -05708242 491.55780029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -05708243 491.55783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -05708244 491.55783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -05708245 491.55783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -05708246 491.55783081 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -05708247 491.55789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -05708248 491.55789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -05708249 491.55789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -05708250 491.55789185 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -05708251 491.55795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -05708252 491.55795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -05708253 491.55795288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -05708254 491.55798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -05708255 491.55798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -05708256 491.55798340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -05708257 491.55804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -05708258 491.55804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -05708259 491.55804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -05708260 491.55804443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -05708261 491.55810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -05708262 491.55810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -05708263 491.55810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -05708264 491.55810547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -05708265 491.55813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -05708266 491.55813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -05708267 491.55813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -05708268 491.55813599 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -05708269 491.55819702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -05708270 491.55819702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -05708271 491.55819702 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -05708272 491.55825806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -05708273 491.55825806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -05708274 491.55825806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -05708275 491.55828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -05708276 491.55828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -05708277 491.55828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -05708278 491.55828857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -05708279 491.55834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -05708280 491.55834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -05708281 491.55834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -05708282 491.55834961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -05708283 491.55841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -05708284 491.55841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -05708285 491.55841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -05708286 491.55841064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -05708287 491.55844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -05708288 491.55844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -05708289 491.55844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -05708290 491.55844116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -05708291 491.55850220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -05708292 491.55850220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -05708293 491.55856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -05708294 491.55856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -05708295 491.55856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -05708296 491.55856323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -05708297 491.55859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -05708298 491.55859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -05708299 491.55859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -05708300 491.55859375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -05708301 491.55865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -05708302 491.55865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -05708303 491.55865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -05708304 491.55865479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -05708305 491.55871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -05708306 491.55871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -05708307 491.55871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -05708308 491.55871582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -05708309 491.55874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -05708310 491.55874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -05708311 491.55874634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -05708312 491.55880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -05708313 491.55880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -05708314 491.55880737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -05708315 491.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -05708316 491.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -05708317 491.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -05708318 491.55886841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -05708319 491.55889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -05708320 491.55889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -05708321 491.55889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -05708322 491.55889893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -05708323 491.55895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -05708324 491.55895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -05708325 491.55895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -05708326 491.55895996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -05708327 491.55902100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -05708328 491.55902100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -05708329 491.55905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -05708330 491.55905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -05708331 491.55905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -05708332 491.55905151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -05708333 491.55911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -05708334 491.55911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -05708335 491.55911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -05708336 491.55911255 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -05708337 491.55917358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -05708338 491.55917358 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -05708339 491.55920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -05708340 491.55920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -05708341 491.55920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -05708342 491.55920410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -05708343 491.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -05708344 491.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -05708345 491.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -05708346 491.55926514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -05708347 491.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -05708348 491.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -05708349 491.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -05708350 491.55932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -05708351 491.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -05708352 491.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -05708353 491.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -05708354 491.55938721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -05708355 491.55941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -05708356 491.55941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -05708357 491.55941772 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -05708358 491.55947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -05708359 491.55947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -05708360 491.55947876 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -05708361 491.55953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -05708362 491.55953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -05708363 491.55953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -05708364 491.55953979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -05708365 491.55957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -05708366 491.55957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -05708367 491.55957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -05708368 491.55957031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -05708369 491.55963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -05708370 491.55963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -05708371 491.55963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -05708372 491.55963135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -05708373 491.55969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -05708374 491.55969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -05708375 491.55969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -05708376 491.55969238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -05708377 491.55972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -05708378 491.55972290 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -05708379 491.55978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -05708380 491.55978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -05708381 491.55978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -05708382 491.55978394 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -05708383 491.55984497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -05708384 491.55984497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -05708385 491.55984497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -05708386 491.55984497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -05708387 491.55987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -05708388 491.55987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -05708389 491.55987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -05708390 491.55987549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -05708391 491.55993652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -05708392 491.55993652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -05708393 491.55993652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -05708394 491.55993652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -05708395 491.55999756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -05708396 491.55999756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -05708397 491.56002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -05708398 491.56002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -05708399 491.56002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -05708400 491.56002808 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -05708401 491.56008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -05708402 491.56008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -05708403 491.56008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -05708404 491.56008911 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -05708405 491.56015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -05708406 491.56015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -05708407 491.56015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -05708408 491.56015015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -05708409 491.56018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -05708410 491.56018066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -05708411 491.56024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -05708412 491.56024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -05708413 491.56024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -05708414 491.56024170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -05708415 491.56030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -05708416 491.56030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -05708417 491.56030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -05708418 491.56030273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -05708419 491.56033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -05708420 491.56033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -05708421 491.56033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -05708422 491.56033325 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -05708423 491.56039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -05708424 491.56039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -05708425 491.56039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -05708426 491.56039429 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -05708427 491.56045532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -05708428 491.56045532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -05708429 491.56045532 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -05708430 491.56048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -05708431 491.56048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -05708432 491.56048584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -05708433 491.56054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -05708434 491.56054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -05708435 491.56054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -05708436 491.56054688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -05708437 491.56060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -05708438 491.56060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -05708439 491.56060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -05708440 491.56060791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -05708441 491.56063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -05708442 491.56063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -05708443 491.56063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -05708444 491.56063843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -05708445 491.56069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -05708446 491.56069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -05708447 491.56069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -05708448 491.56069946 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -05708449 491.56076050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -05708450 491.56076050 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -05708451 491.56082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -05708452 491.56082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -05708453 491.56082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -05708454 491.56082153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -05708455 491.56085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -05708456 491.56085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -05708457 491.56085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -05708458 491.56085205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -05708459 491.56091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -05708460 491.56091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -05708461 491.56091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -05708462 491.56091309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -05708463 491.56097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -05708464 491.56097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -05708465 491.56097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -05708466 491.56097412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -05708467 491.56100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -05708468 491.56100464 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -05708469 491.56106567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -05708470 491.56106567 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -05708471 491.56112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -05708472 491.56112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -05708473 491.56112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -05708474 491.56112671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -05708475 491.56115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -05708476 491.56115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -05708477 491.56115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -05708478 491.56115723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -05708479 491.56121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -05708480 491.56121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -05708481 491.56121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -05708482 491.56121826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -05708483 491.56127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -05708484 491.56127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -05708485 491.56127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -05708486 491.56127930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -05708487 491.56130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -05708488 491.56130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -05708489 491.56130981 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -05708490 491.56137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -05708491 491.56137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -05708492 491.56137085 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -05708493 491.56143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -05708494 491.56143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -05708495 491.56143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -05708496 491.56143188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -05708497 491.56146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -05708498 491.56146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -05708499 491.56146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -05708500 491.56146240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -05708501 491.56152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -05708502 491.56152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -05708503 491.56152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -05708504 491.56152344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -05708505 491.56158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -05708506 491.56158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -05708507 491.56158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -05708508 491.56158447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -05708509 491.56161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -05708510 491.56161499 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -05708511 491.56167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -05708512 491.56167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -05708513 491.56167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -05708514 491.56167603 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -05708515 491.56173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -05708516 491.56173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -05708517 491.56173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -05708518 491.56173706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -05708519 491.56176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -05708520 491.56176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -05708521 491.56176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -05708522 491.56176758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -05708523 491.56182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -05708524 491.56182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -05708525 491.56182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -05708526 491.56182861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -05708527 491.56188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -05708528 491.56188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -05708529 491.56188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -05708530 491.56188965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -05708531 491.56192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -05708532 491.56192017 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -05708533 491.56198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -05708534 491.56198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -05708535 491.56198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -05708536 491.56198120 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -05708537 491.56204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -05708538 491.56204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -05708539 491.56204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -05708540 491.56204224 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -05708541 491.56207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -05708542 491.56207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -05708543 491.56207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -05708544 491.56207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -05708545 491.56213379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -05708546 491.56213379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -05708547 491.56213379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -05708548 491.56219482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -05708549 491.56219482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -05708550 491.56219482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -05708551 491.56222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -05708552 491.56222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -05708553 491.56222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -05708554 491.56222534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -05708555 491.56228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -05708556 491.56228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -05708557 491.56228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -05708558 491.56228638 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -05708559 491.56234741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -05708560 491.56234741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -05708561 491.56234741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -05708562 491.56234741 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -05708563 491.56240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -05708564 491.56240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -05708565 491.56240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -05708566 491.56240845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -05708567 491.56243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -05708568 491.56243896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -05708569 491.56250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -05708570 491.56250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -05708571 491.56250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -05708572 491.56250000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -05708573 491.56256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -05708574 491.56256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -05708575 491.56256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -05708576 491.56256104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -05708577 491.56259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -05708578 491.56259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -05708579 491.56259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -05708580 491.56259155 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -05708581 491.56265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -05708582 491.56265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -05708583 491.56265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -05708584 491.56265259 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -05708585 491.56271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -05708586 491.56271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -05708587 491.56271362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -05708588 491.56274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -05708589 491.56274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -05708590 491.56274414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -05708591 491.56280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -05708592 491.56280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -05708593 491.56280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -05708594 491.56280518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -05708595 491.56286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -05708596 491.56286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -05708597 491.56286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -05708598 491.56286621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -05708599 491.56289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -05708600 491.56289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -05708601 491.56289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -05708602 491.56289673 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -05708603 491.56295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -05708604 491.56295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -05708605 491.56295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -05708606 491.56295776 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -05708607 491.56301880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -05708608 491.56301880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -05708609 491.56304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -05708610 491.56304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -05708611 491.56304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -05708612 491.56304932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -05708613 491.56311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -05708614 491.56311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -05708615 491.56311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -05708616 491.56311035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -05708617 491.56317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -05708618 491.56317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -05708619 491.56317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -05708620 491.56317139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -05708621 491.56320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -05708622 491.56320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -05708623 491.56320190 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -05708624 491.56326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -05708625 491.56326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -05708626 491.56326294 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -05708627 491.56332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -05708628 491.56332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -05708629 491.56332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -05708630 491.56332397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -05708631 491.56335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -05708632 491.56335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -05708633 491.56335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -05708634 491.56335449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -05708635 491.56341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -05708636 491.56341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -05708637 491.56341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -05708638 491.56341553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -05708639 491.56347656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -05708640 491.56347656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -05708641 491.56347656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -05708642 491.56350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -05708643 491.56350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -05708644 491.56350708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -05708645 491.56356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -05708646 491.56356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -05708647 491.56356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -05708648 491.56356812 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -05708649 491.56362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -05708650 491.56362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -05708651 491.56362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -05708652 491.56362915 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -05708653 491.56365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -05708654 491.56365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -05708655 491.56365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -05708656 491.56365967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -05708657 491.56372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -05708658 491.56372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -05708659 491.56372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -05708660 491.56372070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -05708661 491.56378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -05708662 491.56378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -05708663 491.56378174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -05708664 491.56381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -05708665 491.56381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -05708666 491.56381226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -05708667 491.56387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -05708668 491.56387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -05708669 491.56387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -05708670 491.56387329 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -05708671 491.56393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -05708672 491.56393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -05708673 491.56393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -05708674 491.56393433 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -05708675 491.56399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -05708676 491.56399536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -05708677 491.56402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -05708678 491.56402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -05708679 491.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -05708680 491.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -05708681 491.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -05708682 491.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -05708683 491.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -05708684 491.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -05708685 491.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -05708686 491.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -05708687 491.56417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -05708688 491.56417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -05708689 491.56417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -05708690 491.56417847 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -05708691 491.56423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -05708692 491.56423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -05708693 491.56423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -05708694 491.56423950 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -05708695 491.56430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -05708696 491.56430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -05708697 491.56430054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -05708698 491.56433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -05708699 491.56433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -05708700 491.56433105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -05708701 491.56439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -05708702 491.56439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -05708703 491.56439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -05708704 491.56439209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -05708705 491.56445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -05708706 491.56445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -05708707 491.56445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -05708708 491.56445313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -05708709 491.56448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -05708710 491.56448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -05708711 491.56448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -05708712 491.56448364 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -05708713 491.56454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -05708714 491.56454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -05708715 491.56454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -05708716 491.56454468 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -05708717 491.56460571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -05708718 491.56460571 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -05708719 491.56463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -05708720 491.56463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -05708721 491.56463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -05708722 491.56463623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -05708723 491.56469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -05708724 491.56469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -05708725 491.56469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -05708726 491.56469727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -05708727 491.56475830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -05708728 491.56475830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -05708729 491.56475830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -05708730 491.56475830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -05708731 491.56478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -05708732 491.56478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -05708733 491.56478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -05708734 491.56478882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -05708735 491.56484985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -05708736 491.56484985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -05708737 491.56484985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -05708738 491.56491089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -05708739 491.56491089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -05708740 491.56491089 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -05708741 491.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -05708742 491.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -05708743 491.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -05708744 491.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -05708745 491.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -05708746 491.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -05708747 491.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -05708748 491.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -05708749 491.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -05708750 491.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -05708751 491.56509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -05708752 491.56509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -05708753 491.56509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -05708754 491.56509399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -05708755 491.56515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -05708756 491.56515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -05708757 491.56515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -05708758 491.56515503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -05709897 491.58230591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -05709898 491.58230591 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -05709899 491.58236694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -05709900 491.58236694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -05709901 491.58236694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -05709902 491.58236694 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -05709903 491.58242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -05709904 491.58242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -05709905 491.58242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -05709906 491.58242798 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -05709907 491.58245850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -05709908 491.58245850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -05709909 491.58245850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -05709910 491.58251953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -05709911 491.58251953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -05709912 491.58251953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -05709913 491.58258057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -05709914 491.58258057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -05709915 491.58258057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -05709916 491.58258057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -05709917 491.58261108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -05709918 491.58261108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -05709919 491.58261108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -05709920 491.58261108 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -05709921 491.58267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -05709922 491.58267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -05709923 491.58267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -05709924 491.58267212 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -05709925 491.58273315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -05709926 491.58273315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -05709927 491.58273315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -05709928 491.58273315 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -05709929 491.58276367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -05709930 491.58276367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -05709931 491.58276367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -05709932 491.58282471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -05709933 491.58282471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -05709934 491.58282471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -05709935 491.58288574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -05709936 491.58288574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -05709937 491.58288574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -05709938 491.58288574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -05709939 491.58291626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -05709940 491.58291626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -05714715 491.65216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -05714716 491.65219116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb60 -05714717 491.65219116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -05714718 491.65219116 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb70 -05714719 491.65225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -05714720 491.65225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb80 -05714721 491.65225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -05714722 491.65225220 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb90 -05714723 491.65231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -05714724 491.65231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeba0 -05714725 491.65231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -05714726 491.65231323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb0 -05714727 491.65234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -05714728 491.65234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc0 -05714729 491.65234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -05714730 491.65234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd0 -05714731 491.65240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -05714732 491.65240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe0 -05714733 491.65240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -05714734 491.65240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf0 -05714735 491.65246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -05714736 491.65246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec00 -05714737 491.65249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -05714738 491.65249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec10 -05714739 491.65249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -05714740 491.65249634 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec20 -05714741 491.65255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -05714742 491.65255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec30 -05714743 491.65255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -05714744 491.65255737 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec40 -05714745 491.65261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -05714746 491.65261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec50 -05714747 491.65261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -05714748 491.65261841 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec60 -05714749 491.65264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -05714750 491.65264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec70 -05714751 491.65264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -05714752 491.65264893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec80 -05714753 491.65270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -05714754 491.65270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xec90 -05714755 491.65270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -05714756 491.65270996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xeca0 -05714757 491.65277100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -05714758 491.65277100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xecb0 -05720126 491.73098755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -05720127 491.73098755 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -05720128 491.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -05720129 491.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -05720130 491.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -05720131 491.73104858 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -05720132 491.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -05720133 491.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19490 -05720134 491.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -05720135 491.73110962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194a0 -05720136 491.73114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -05720137 491.73114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194b0 -05720138 491.73114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -05720139 491.73114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194c0 -05720140 491.73120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -05720141 491.73120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194d0 -05720142 491.73120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -05720143 491.73120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194e0 -05720144 491.73126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -05720145 491.73126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x194f0 -05720146 491.73126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -05720147 491.73129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19500 -05720148 491.73129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -05720149 491.73129272 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19510 -05720150 491.73135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -05720151 491.73135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19520 -05720152 491.73135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -05720153 491.73135376 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19530 -05720154 491.73141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -05720155 491.73141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19540 -05720156 491.73141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -05720157 491.73141479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19550 -05720158 491.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -05720159 491.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19560 -05720160 491.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -05720161 491.73144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19570 -05720162 491.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -05720163 491.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19580 -05720164 491.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -05720165 491.73150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19590 -05720166 491.73156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -05720167 491.73156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195a0 -05720168 491.73156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -05720169 491.73159790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x195b0 -05733741 491.93002319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33dd0 -05733742 491.93002319 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -05733743 491.93005371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33de0 -05733744 491.93005371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -05733745 491.93005371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33df0 -05733746 491.93011475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -05733747 491.93011475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e00 -05733748 491.93011475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -05733749 491.93011475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e10 -05733750 491.93017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -05733751 491.93017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e20 -05733752 491.93017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -05733753 491.93017578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e30 -05733754 491.93020630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -05733755 491.93020630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e40 -05733756 491.93020630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -05733757 491.93020630 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e50 -05733758 491.93026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -05733759 491.93026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e60 -05733760 491.93026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -05733761 491.93026733 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e70 -05733762 491.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -05733763 491.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e80 -05733764 491.93032837 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -05733765 491.93035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e90 -05733766 491.93035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -05733767 491.93035889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ea0 -05733768 491.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -05733769 491.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33eb0 -05733770 491.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -05733771 491.93041992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ec0 -05733772 491.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -05733773 491.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ed0 -05733774 491.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -05733775 491.93048096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -05733776 491.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -05733777 491.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -05733778 491.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -05733779 491.93051147 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -05733780 491.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -05733781 491.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -05733782 491.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -05733783 491.93057251 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -05733784 491.93063354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -05737392 491.98382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -05737393 491.98382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff0 -05737394 491.98388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -05737395 491.98388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b000 -05737396 491.98388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -05737397 491.98388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b010 -05737398 491.98391724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -05737399 491.98391724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b020 -05737400 491.98391724 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -05737401 491.98397827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b030 -05737402 491.98397827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -05737403 491.98397827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b040 -05737404 491.98403931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -05737405 491.98403931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b050 -05737406 491.98403931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -05737407 491.98403931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b060 -05737408 491.98406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -05737409 491.98406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b070 -05737410 491.98406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -05737411 491.98406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b080 -05737412 491.98413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -05737413 491.98413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b090 -05737414 491.98413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -05737415 491.98413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0a0 -05737416 491.98419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -05737417 491.98419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0b0 -05737418 491.98419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -05737419 491.98419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0c0 -05737420 491.98422241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -05737421 491.98422241 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0d0 -05737422 491.98428345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -05737423 491.98428345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0e0 -05737424 491.98428345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -05737425 491.98428345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b0f0 -05737426 491.98434448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -05737427 491.98434448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b100 -05737428 491.98434448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -05737429 491.98434448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b110 -05737430 491.98437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -05737431 491.98437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b120 -05737432 491.98437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -05737433 491.98437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b130 -05737434 491.98443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -05737435 491.98443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b140 -05742001 492.05139160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff0 -05742002 492.05145264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -05742003 492.05145264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44000 -05742004 492.05145264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -05742005 492.05145264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44010 -05742006 492.05151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -05742007 492.05151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44020 -05742008 492.05151367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -05742009 492.05154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44030 -05742010 492.05154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -05742011 492.05154419 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44040 -05742012 492.05160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -05742013 492.05160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44050 -05742014 492.05160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -05742015 492.05160522 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44060 -05742016 492.05166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -05742017 492.05166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44070 -05742018 492.05166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -05742019 492.05166626 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44080 -05742020 492.05169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -05742021 492.05169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44090 -05742022 492.05169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -05742023 492.05169678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440a0 -05742024 492.05175781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -05742025 492.05175781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440b0 -05742026 492.05181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -05742027 492.05181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c0 -05742028 492.05181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -05742029 492.05181885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d0 -05742030 492.05187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -05742031 492.05187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e0 -05742032 492.05187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -05742033 492.05187988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f0 -05742034 492.05191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -05742035 492.05191040 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44100 -05742036 492.05197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -05742037 492.05197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44110 -05742038 492.05197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -05742039 492.05197144 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44120 -05742040 492.05203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -05742041 492.05203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44130 -05742042 492.05203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -05742043 492.05203247 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44140 -05742044 492.05206299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44150 -05746634 492.11938477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -05746635 492.11938477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0c0 -05746636 492.11944580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -05746637 492.11944580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0d0 -05746638 492.11944580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -05746639 492.11944580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0e0 -05746640 492.11950684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -05746641 492.11950684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0f0 -05746642 492.11950684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -05746643 492.11950684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d100 -05746644 492.11953735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -05746645 492.11953735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d110 -05746646 492.11953735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -05746647 492.11953735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d120 -05746648 492.11959839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -05746649 492.11959839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d130 -05746650 492.11959839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -05746651 492.11959839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d140 -05746652 492.11965942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -05746653 492.11965942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d150 -05746654 492.11965942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -05746655 492.11972046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d160 -05746656 492.11972046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -05746657 492.11972046 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d170 -05746658 492.11975098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -05746659 492.11975098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d180 -05746660 492.11975098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -05746661 492.11975098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d190 -05746662 492.11987305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -05746663 492.11987305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1a0 -05746664 492.11987305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -05746665 492.11987305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1b0 -05746666 492.11990356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -05746667 492.11990356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1c0 -05746668 492.11990356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -05746669 492.11990356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1d0 -05746670 492.11996460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -05746671 492.11996460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1e0 -05746672 492.11996460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -05746673 492.11996460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d1f0 -05746674 492.12002563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -05746675 492.12002563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d200 -05746676 492.12002563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -05746677 492.12002563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d210 -05749600 492.31585693 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05749601 492.31585693 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05749602 492.31591797 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05749603 492.31591797 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05749604 492.31600952 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05749605 492.31600952 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05749606 492.31610107 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05749607 492.31610107 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05749608 493.28710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05749609 493.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05749610 493.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05749611 493.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05749612 493.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05749613 493.28726196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05749614 493.28726196 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05749615 493.28732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05749616 493.28732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05749617 493.28732300 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05749618 493.28738403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05749619 493.28738403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05749620 493.28738403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05749621 493.28738403 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05749622 493.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05749623 493.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05749624 493.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05749625 493.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05749626 493.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05749627 493.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05749628 493.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05749629 493.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05749630 493.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05749631 493.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05749632 493.28756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05749633 493.28756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05749634 493.28756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05749635 493.28756714 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05749636 493.28762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05749637 493.28762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05749638 493.28762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05749639 493.28762817 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05749640 493.28768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05749641 493.28768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05749642 493.28768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05749643 493.28768921 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05749644 493.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05749645 493.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05749646 493.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05749647 493.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05749648 493.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05749649 493.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05749650 493.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05749651 493.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05749652 493.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05749653 493.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05749654 493.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05749655 493.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05749656 493.28787231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05749657 493.28787231 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05749658 493.28793335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05749659 493.28793335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05749660 493.28793335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05749661 493.28793335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05749662 493.28799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05749663 493.28799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05749664 493.28799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05749665 493.28799438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05749666 493.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05749667 493.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05749668 493.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05749669 493.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05749670 493.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05749671 493.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05749672 493.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05749673 493.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05749674 493.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05749675 493.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05749676 493.28817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05749677 493.28817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05749678 493.28817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05749679 493.28817749 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05749680 493.28823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05749681 493.28823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05749682 493.28823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05749683 493.28823853 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05749684 493.28829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05749685 493.28829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05749686 493.28829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05749687 493.28829956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05749688 493.28836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05749689 493.28836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05749690 493.28836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05749691 493.28836060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05749692 493.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05749693 493.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05749694 493.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05749695 493.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05749696 493.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05749697 493.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05749698 493.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05749699 493.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05749700 493.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05749701 493.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05749702 493.28854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05749703 493.28854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05749704 493.28854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05749705 493.28854370 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05749706 493.28860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05749707 493.28860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05749708 493.28860474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05749709 493.28866577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05749710 493.28866577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05749711 493.28866577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05749712 493.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05749713 493.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05749714 493.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05749715 493.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05749716 493.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05749717 493.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05749718 493.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05749719 493.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05749720 493.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05749721 493.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05749722 493.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05749723 493.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05749724 493.28884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05749725 493.28884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05749726 493.28884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05749727 493.28884888 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05749728 493.28890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05749729 493.28890991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05749730 493.28897095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05749731 493.28897095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05749732 493.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05749733 493.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05749734 493.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05749735 493.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05749736 493.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05749737 493.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05749738 493.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05749739 493.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05749740 493.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05749741 493.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05749742 493.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05749743 493.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05749744 493.28915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05749745 493.28915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05749746 493.28915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05749747 493.28915405 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05749748 493.28921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05749749 493.28921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05749750 493.28921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05749751 493.28921509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05749752 493.28927612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05749753 493.28927612 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05749754 493.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05749755 493.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05749756 493.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05749757 493.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05749758 493.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05749759 493.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05749760 493.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05749761 493.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05749762 493.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05749763 493.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05749764 493.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05749765 493.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05749766 493.28945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05749767 493.28945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05749768 493.28945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05749769 493.28945923 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05749770 493.28952026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05749771 493.28952026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05749772 493.28952026 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05749773 493.28958130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05749774 493.28958130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05749775 493.28958130 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05749776 493.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05749777 493.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05749778 493.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05749779 493.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05749780 493.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05749781 493.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05749782 493.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05749783 493.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05749784 493.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05749785 493.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05749786 493.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05749787 493.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05749788 493.28976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05749789 493.28976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05749790 493.28976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05749791 493.28976440 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05749792 493.28982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05749793 493.28982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05749794 493.28982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05749795 493.28982544 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05749796 493.28988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05749797 493.28988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05749798 493.28988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05749799 493.28988647 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05749800 493.28994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05749801 493.28994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05749802 493.28994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05749803 493.28994751 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05749804 493.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05749805 493.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05749806 493.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05749807 493.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05749808 493.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05749809 493.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05749810 493.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05749811 493.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05749812 493.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05749813 493.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05749814 493.29013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05749815 493.29013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05749816 493.29013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05749817 493.29013062 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05749818 493.29019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05749819 493.29019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05749820 493.29019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05749821 493.29019165 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05749822 493.29025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05749823 493.29025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05749824 493.29025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05749825 493.29025269 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05749826 493.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05749827 493.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05749828 493.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05749829 493.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05749830 493.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05749831 493.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05749832 493.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05749833 493.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05749834 493.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05749835 493.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05749836 493.29043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05749837 493.29043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05749838 493.29043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05749839 493.29043579 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05749840 493.29049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05749841 493.29049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05749842 493.29049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05749843 493.29049683 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05749844 493.29055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05749845 493.29055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05749846 493.29055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05749847 493.29055786 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05749848 493.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05749849 493.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05749850 493.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05749851 493.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05749852 493.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05749853 493.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05749854 493.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05749855 493.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05749856 493.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05749857 493.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05749858 493.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05749859 493.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05749860 493.29074097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05749861 493.29074097 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05749862 493.29080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05749863 493.29080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05749864 493.29080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05749865 493.29080200 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05749866 493.29086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05749867 493.29086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05749868 493.29086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05749869 493.29086304 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05749870 493.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05749871 493.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05749872 493.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05749873 493.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05749874 493.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05749875 493.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05749876 493.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05749877 493.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05749878 493.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05749879 493.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05749880 493.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05749881 493.29104614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05749882 493.29104614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05749883 493.29104614 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05749884 493.29110718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05749885 493.29110718 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05749886 493.29116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05749887 493.29116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05749888 493.29116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05749889 493.29116821 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05749890 493.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05749891 493.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05749892 493.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05749893 493.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05749894 493.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05749895 493.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05749896 493.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05749897 493.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05749898 493.29132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05749899 493.29132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05749900 493.29132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05749901 493.29132080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05749902 493.29135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05749903 493.29135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05749904 493.29135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05749905 493.29135132 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05749906 493.29141235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05749907 493.29141235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05749908 493.29141235 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05749909 493.29147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05749910 493.29147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05749911 493.29147339 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05749912 493.29153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05749913 493.29153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05749914 493.29153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05749915 493.29153442 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05749916 493.29156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05749917 493.29156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05749918 493.29156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05749919 493.29156494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05749920 493.29162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05749921 493.29162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05749922 493.29162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05749923 493.29162598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05749924 493.29168701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05749925 493.29168701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05749926 493.29168701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05749927 493.29171753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05749928 493.29171753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05749929 493.29171753 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05749930 493.29177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05749931 493.29177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05749932 493.29177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05749933 493.29177856 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05749934 493.29183960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05749935 493.29183960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05749936 493.29183960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05749937 493.29183960 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05749938 493.29187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05749939 493.29187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05749940 493.29187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05749941 493.29187012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05749942 493.29193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05749943 493.29193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05749944 493.29193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05749945 493.29193115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05749946 493.29199219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05749947 493.29199219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05749948 493.29199219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05749949 493.29202271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05749950 493.29202271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05749951 493.29202271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05749952 493.29208374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05749953 493.29208374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05749954 493.29208374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05749955 493.29208374 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05749956 493.29214478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05749957 493.29214478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05749958 493.29214478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05749959 493.29214478 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05749960 493.29217529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05749961 493.29217529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05749962 493.29217529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05749963 493.29217529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05749964 493.29223633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05749965 493.29223633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05749966 493.29223633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05749967 493.29223633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05749968 493.29229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05749969 493.29229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05749970 493.29229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05749971 493.29229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05749972 493.29232788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05749973 493.29232788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05749974 493.29232788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05749975 493.29232788 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05749976 493.29238892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05749977 493.29238892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05749978 493.29238892 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05749979 493.29244995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05749980 493.29244995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05749981 493.29244995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05749982 493.29248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05749983 493.29248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05749984 493.29248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05749985 493.29248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05749986 493.29254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05749987 493.29254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05749988 493.29254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05749989 493.29254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05749990 493.29260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05749991 493.29260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05749992 493.29260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05749993 493.29260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05749994 493.29263306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05749995 493.29263306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05749996 493.29263306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05749997 493.29263306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05749998 493.29269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05749999 493.29269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05750000 493.29269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05750001 493.29269409 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05750002 493.29275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05750003 493.29275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05750004 493.29275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05750005 493.29275513 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05750006 493.29278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05750007 493.29278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05750008 493.29278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05750009 493.29278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05750010 493.29284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05750011 493.29284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05750012 493.29284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05750013 493.29284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05750014 493.29290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05750015 493.29290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05750016 493.29290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05750017 493.29290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05750018 493.29296875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05750019 493.29296875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05750020 493.29296875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05750021 493.29299927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05750022 493.29299927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05750023 493.29299927 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05750024 493.29306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05750025 493.29306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05750026 493.29306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05750027 493.29306030 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05750028 493.29312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05750029 493.29312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05750030 493.29312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05750031 493.29312134 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05750032 493.29315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05750033 493.29315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05750034 493.29315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05750035 493.29315186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05750036 493.29321289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05750037 493.29321289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05750038 493.29321289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05750039 493.29327393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05750040 493.29327393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05750041 493.29327393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05750042 493.29330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05750043 493.29330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05750044 493.29330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05750045 493.29330444 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05750046 493.29336548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05750047 493.29336548 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05760342 493.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb8 -05760343 493.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb8 -05760344 493.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc8 -05760345 493.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc8 -05760346 493.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd8 -05760347 493.43307495 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd8 -05760348 493.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe8 -05760349 493.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe8 -05760350 493.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff8 -05760351 493.43313599 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff8 -05760352 493.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16008 -05760353 493.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16008 -05760354 493.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16018 -05760355 493.43319702 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16018 -05760356 493.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16028 -05760357 493.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16028 -05760358 493.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16038 -05760359 493.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16038 -05760360 493.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16048 -05760361 493.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16048 -05760362 493.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16058 -05760363 493.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16058 -05760364 493.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16068 -05760365 493.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16068 -05760366 493.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16078 -05760367 493.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16078 -05760368 493.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16088 -05760369 493.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16088 -05760370 493.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16098 -05760371 493.43338013 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16098 -05760372 493.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a8 -05760373 493.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160a8 -05760374 493.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b8 -05760375 493.43344116 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160b8 -05760376 493.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c8 -05760377 493.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160c8 -05760378 493.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d8 -05760379 493.43350220 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160d8 -05760380 493.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e8 -05760381 493.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160e8 -05760382 493.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f8 -05760383 493.43356323 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x160f8 -05760384 493.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16108 -05760385 493.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16108 -05764396 493.48931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de68 -05764397 493.48931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de68 -05764398 493.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de78 -05764399 493.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de78 -05764400 493.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de88 -05764401 493.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de88 -05764402 493.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de98 -05764403 493.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de98 -05764404 493.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea8 -05764405 493.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea8 -05764406 493.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb8 -05764407 493.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb8 -05764408 493.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec8 -05764409 493.48947144 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec8 -05764410 493.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded8 -05764411 493.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded8 -05764412 493.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee8 -05764413 493.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee8 -05764414 493.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def8 -05764415 493.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def8 -05764416 493.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df08 -05764417 493.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df08 -05764418 493.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df18 -05764419 493.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df18 -05764420 493.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df28 -05764421 493.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df28 -05764422 493.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df38 -05764423 493.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df38 -05764424 493.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df48 -05764425 493.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df48 -05764426 493.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df58 -05764427 493.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df58 -05764428 493.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df68 -05764429 493.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df68 -05764430 493.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df78 -05764431 493.48977661 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df78 -05764432 493.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df88 -05764433 493.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df88 -05764434 493.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df98 -05764435 493.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df98 -05764436 493.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa8 -05764437 493.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa8 -05764438 493.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb8 -05764439 493.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb8 -05769516 493.55975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -05769517 493.55975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -05769518 493.55975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -05769519 493.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -05769520 493.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e88 -05769521 493.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e88 -05769522 493.55981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e98 -05769523 493.55984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e98 -05769524 493.55984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea8 -05769525 493.55984497 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ea8 -05769526 493.55990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb8 -05769527 493.55990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27eb8 -05769528 493.55990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec8 -05769529 493.55990601 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ec8 -05769530 493.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed8 -05769531 493.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ed8 -05769532 493.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee8 -05769533 493.55996704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ee8 -05769534 493.55999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef8 -05769535 493.55999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ef8 -05769536 493.55999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f08 -05769537 493.55999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f08 -05769538 493.56005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f18 -05769539 493.56005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f18 -05769540 493.56005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f28 -05769541 493.56005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f28 -05769542 493.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f38 -05769543 493.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f38 -05769544 493.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f48 -05769545 493.56011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f48 -05769546 493.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f58 -05769547 493.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f58 -05769548 493.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f68 -05769549 493.56018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f68 -05769550 493.56021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f78 -05769551 493.56021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f78 -05769552 493.56021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f88 -05769553 493.56021118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f88 -05769554 493.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f98 -05769555 493.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f98 -05769556 493.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa8 -05769557 493.56027222 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa8 -05769558 493.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb8 -05769559 493.56033325 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb8 -05774819 493.63235474 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32418 -05774820 493.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -05774821 493.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32428 -05774822 493.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -05774823 493.63241577 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32438 -05774824 493.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -05774825 493.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32448 -05774826 493.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -05774827 493.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32458 -05774828 493.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -05774829 493.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32468 -05774830 493.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -05774831 493.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32478 -05774832 493.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -05774833 493.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32488 -05774834 493.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -05774835 493.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32498 -05774836 493.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -05774837 493.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324a8 -05774838 493.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -05774839 493.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324b8 -05774840 493.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -05774841 493.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324c8 -05774842 493.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -05774843 493.63265991 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324d8 -05774844 493.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -05774845 493.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324e8 -05774846 493.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -05774847 493.63272095 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x324f8 -05774848 493.63278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -05774849 493.63278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32508 -05774850 493.63278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -05774851 493.63278198 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32518 -05774852 493.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -05774853 493.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32528 -05774854 493.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32538 -05774855 493.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32538 -05774856 493.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32548 -05774857 493.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32548 -05774858 493.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32558 -05774859 493.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32558 -05774860 493.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32568 -05774861 493.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32568 -05774862 493.63296509 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32578 -05780138 493.70571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca58 -05780139 493.70571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca58 -05780140 493.70571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca68 -05780141 493.70571899 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca68 -05780142 493.70578003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca78 -05780143 493.70578003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca78 -05780144 493.70578003 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca88 -05780145 493.70584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca88 -05780146 493.70584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca98 -05780147 493.70584106 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca98 -05780148 493.70587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa8 -05780149 493.70587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa8 -05780150 493.70587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab8 -05780151 493.70587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab8 -05780152 493.70593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac8 -05780153 493.70593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac8 -05780154 493.70593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad8 -05780155 493.70593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad8 -05780156 493.70599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae8 -05780157 493.70599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae8 -05780158 493.70599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf8 -05780159 493.70599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf8 -05780160 493.70602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -05780161 493.70602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -05780162 493.70602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -05780163 493.70602417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -05780164 493.70608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -05780165 493.70608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -05780166 493.70608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -05780167 493.70608521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -05780168 493.70614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -05780169 493.70614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -05780170 493.70614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -05780171 493.70614624 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -05780172 493.70617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -05780173 493.70617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -05780174 493.70617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -05780175 493.70617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -05780176 493.70623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -05780177 493.70623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -05780178 493.70623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -05780179 493.70623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -05780180 493.70629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba8 -05780181 493.70629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cba8 -05791497 494.82351685 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791498 494.82357788 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791499 494.82357788 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791500 494.82357788 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05791501 494.82373047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791502 494.82373047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05791503 494.82379150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791504 494.82379150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05791505 495.73791504 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05791506 495.75726318 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791507 495.75726318 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791508 497.33078003 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791509 497.33084106 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791510 497.33090210 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791511 497.33090210 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05791512 497.33099365 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791513 497.33099365 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05791514 497.33105469 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05791515 497.33108521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05791516 497.75875854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05791517 497.77957153 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791518 497.77957153 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05791519 498.86141968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05791520 498.86141968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05791521 498.86148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05791522 498.86148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05791523 498.86148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05791524 498.86148071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05791525 498.86151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05791526 498.86151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05791527 498.86151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05791528 498.86151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05791529 498.86157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05791530 498.86157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05791531 498.86157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05791532 498.86157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05791533 498.86163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05791534 498.86163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05791535 498.86163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05791536 498.86163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05791537 498.86166382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05791538 498.86166382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05791539 498.86166382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05791540 498.86172485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05791541 498.86172485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05791542 498.86172485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05791543 498.86178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05791544 498.86178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05791545 498.86178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05791546 498.86178589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05791547 498.86181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05791548 498.86181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05791549 498.86181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05791550 498.86181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05791551 498.86187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05791552 498.86187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05791553 498.86187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05791554 498.86187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05791555 498.86193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05791556 498.86193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05791557 498.86193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05791558 498.86193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05791559 498.86196899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05791560 498.86196899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05791561 498.86196899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05791562 498.86203003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05791563 498.86203003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05791564 498.86203003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05791565 498.86209106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05791566 498.86209106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05791567 498.86209106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05791568 498.86209106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05791569 498.86212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05791570 498.86212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05791571 498.86212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05791572 498.86212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05791573 498.86218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05791574 498.86218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05791575 498.86218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05791576 498.86218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05791577 498.86224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05791578 498.86224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05791579 498.86224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05791580 498.86227417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05791581 498.86227417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05791582 498.86227417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05791583 498.86233521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05791584 498.86233521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05791585 498.86233521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05791586 498.86233521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05791587 498.86239624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05791588 498.86239624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05791589 498.86239624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05791590 498.86239624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05791591 498.86242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05791592 498.86242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05791593 498.86242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05791594 498.86242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05791595 498.86248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05791596 498.86248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05791597 498.86248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05791598 498.86248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05791599 498.86254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05791600 498.86254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05791601 498.86257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05791602 498.86257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05791603 498.86257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05791604 498.86257935 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05791605 498.86264038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05791606 498.86264038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05791607 498.86264038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05791608 498.86264038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05791609 498.86270142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05791610 498.86270142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05791611 498.86270142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05791612 498.86270142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05791613 498.86273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05791614 498.86273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05791615 498.86273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05791616 498.86273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05791617 498.86279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05791618 498.86279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05791619 498.86285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05791620 498.86285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05791621 498.86285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05791622 498.86285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05791623 498.86288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05791624 498.86288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05791625 498.86288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05791626 498.86288452 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05791627 498.86294556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05791628 498.86294556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05791629 498.86294556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05791630 498.86294556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05791631 498.86300659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05791632 498.86300659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05791633 498.86300659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05791634 498.86300659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05791635 498.86306763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05791636 498.86306763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05791637 498.86309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05791638 498.86309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05791639 498.86309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05791640 498.86309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05791641 498.86315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05791642 498.86315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05791643 498.86322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05791644 498.86322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05791645 498.86322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05791646 498.86322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05791647 498.86325073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05791648 498.86325073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05791649 498.86325073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05791650 498.86325073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05791651 498.86331177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05791652 498.86331177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05791653 498.86331177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05791654 498.86331177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05791655 498.86337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05791656 498.86337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05791657 498.86337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05791658 498.86337280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05791659 498.86340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05791660 498.86340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05791661 498.86346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05791662 498.86346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05791663 498.86346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05791664 498.86346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05791665 498.86352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05791666 498.86352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05791667 498.86352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05791668 498.86352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05791669 498.86355591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05791670 498.86355591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05791671 498.86355591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05791672 498.86355591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05791673 498.86361694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05791674 498.86361694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05791675 498.86361694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05791676 498.86361694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05791677 498.86367798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05791678 498.86367798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05791679 498.86370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05791680 498.86370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05791681 498.86370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05791682 498.86370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05791683 498.86376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05791684 498.86376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05791685 498.86376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05791686 498.86376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05791687 498.86383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05791688 498.86383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05791689 498.86383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05791690 498.86383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05791691 498.86386108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05791692 498.86386108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05791693 498.86386108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05791694 498.86386108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05791695 498.86392212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05791696 498.86392212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05791697 498.86398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05791698 498.86398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05791699 498.86398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05791700 498.86398315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05791701 498.86401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05791702 498.86401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05791703 498.86401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05791704 498.86401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05791705 498.86407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05791706 498.86407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05791707 498.86407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05791708 498.86407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05791709 498.86413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05791710 498.86413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05791711 498.86413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05791712 498.86413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05791713 498.86416626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05791714 498.86416626 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05791715 498.86422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05791716 498.86422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05791717 498.86422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05791718 498.86422729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05791719 498.86428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05791720 498.86428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05791721 498.86428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05791722 498.86428833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05791723 498.86431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05791724 498.86431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05791725 498.86431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05791726 498.86431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05791727 498.86437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05791728 498.86437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05791729 498.86437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05791730 498.86437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05791731 498.86444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05791732 498.86444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05791733 498.86447144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05791734 498.86447144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05791735 498.86447144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05791736 498.86447144 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05791737 498.86453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05791738 498.86453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05791739 498.86453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05791740 498.86453247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05791741 498.86459351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05791742 498.86459351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05791743 498.86459351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05791744 498.86459351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05791745 498.86465454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05791746 498.86465454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05791747 498.86465454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05791748 498.86468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05791749 498.86468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05791750 498.86468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05791751 498.86474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05791752 498.86474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05791753 498.86474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05791754 498.86474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05791755 498.86480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05791756 498.86480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05791757 498.86483765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05791758 498.86483765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05791759 498.86483765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05791760 498.86483765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05791761 498.86489868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05791762 498.86489868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05791763 498.86489868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05791764 498.86489868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05791765 498.86495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05791766 498.86495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05791767 498.86495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05791768 498.86495972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05791769 498.86499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05791770 498.86499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05791771 498.86505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05791772 498.86505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05791773 498.86505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05791774 498.86505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05791775 498.86511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05791776 498.86511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05791777 498.86511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05791778 498.86511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05791779 498.86514282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05791780 498.86514282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05791781 498.86514282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05791782 498.86514282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05791783 498.86520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05791784 498.86520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05791785 498.86520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05791786 498.86520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05791787 498.86526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05791788 498.86526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05791789 498.86529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05791790 498.86529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05791791 498.86529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05791792 498.86529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05791793 498.86535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05791794 498.86535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05791795 498.86541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05791796 498.86541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05791797 498.86541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05791798 498.86541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05791799 498.86544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05791800 498.86544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05791801 498.86544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05791802 498.86544800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05791803 498.86550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05791804 498.86550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05791805 498.86550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05791806 498.86550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05791807 498.86557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05791808 498.86557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05791809 498.86557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05791810 498.86557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05791811 498.86560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05791812 498.86560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05791813 498.86560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05791814 498.86566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05791815 498.86566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05791816 498.86566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05791817 498.86572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05791818 498.86572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05791819 498.86572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05791820 498.86572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05791821 498.86575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05791822 498.86575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05791823 498.86575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05791824 498.86575317 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05791825 498.86581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05791826 498.86581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05791827 498.86581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05791828 498.86581421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05791829 498.86587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05791830 498.86587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05791831 498.86587524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05791832 498.86590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05791833 498.86590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05791834 498.86590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05791835 498.86596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05791836 498.86596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05791837 498.86596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05791838 498.86596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05791839 498.86602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05791840 498.86602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05791841 498.86602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05791842 498.86602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05791843 498.86605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05791844 498.86605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05791845 498.86605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05791846 498.86605835 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05791847 498.86611938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05791848 498.86611938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05791849 498.86618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05791850 498.86618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05791851 498.86618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05791852 498.86618042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05791853 498.86624146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05791854 498.86624146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05791855 498.86627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05791856 498.86627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05791857 498.86627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05791858 498.86627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05791859 498.86633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05791860 498.86633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05791861 498.86642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05791862 498.86642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05791863 498.86642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05791864 498.86642456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05791865 498.86648560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05791866 498.86648560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05791867 498.86654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05791868 498.86654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05791869 498.86654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05791870 498.86654663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05791871 498.86657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05791872 498.86657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05791873 498.86657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05791874 498.86657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05791875 498.86663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05791876 498.86663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05791877 498.86669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05791878 498.86669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05791879 498.86669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05791880 498.86669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05791881 498.86672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05791882 498.86672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05791883 498.86672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05791884 498.86672974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05791885 498.86679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05791886 498.86679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05791887 498.86679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05791888 498.86679077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05791889 498.86685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05791890 498.86685181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05791891 498.86688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05791892 498.86688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05791893 498.86688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05791894 498.86688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05791895 498.86694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05791896 498.86694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05791897 498.86694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05791898 498.86694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05791899 498.86700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05791900 498.86700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05791901 498.86700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05791902 498.86700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05791903 498.86703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05791904 498.86703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05791905 498.86703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05791906 498.86703491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05791907 498.86709595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05791908 498.86709595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05791909 498.86715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05791910 498.86715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05791911 498.86715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05791912 498.86715698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05791913 498.86718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05791914 498.86718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05791915 498.86718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05791916 498.86718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05791917 498.86724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05791918 498.86724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05791919 498.86730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05791920 498.86730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05791921 498.86730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05791922 498.86730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05791923 498.86734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05791924 498.86734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05791925 498.86734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05791926 498.86734009 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05791927 498.86740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05791928 498.86740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05791929 498.86740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05791930 498.86740112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05791931 498.86746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05791932 498.86746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05791933 498.86746216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05791934 498.86749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05791935 498.86749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05791936 498.86749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05791937 498.86755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05791938 498.86755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05791939 498.86755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05791940 498.86755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05791941 498.86761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05791942 498.86761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05791943 498.86761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05791944 498.86761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05791945 498.86767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05791946 498.86767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05791947 498.86767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05791948 498.86770630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05791949 498.86770630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05791950 498.86770630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05791951 498.86776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05791952 498.86776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05791953 498.86776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05791954 498.86776733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05791955 498.86782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05791956 498.86782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05791957 498.86782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05791958 498.86782837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05791959 498.86785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05791960 498.86785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05791961 498.86785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05791962 498.86785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05791963 498.86791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05791964 498.86791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05791965 498.86798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05791966 498.86798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05791967 498.86798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05791968 498.86798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05791969 498.86801147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05791970 498.86801147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05791971 498.86801147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05791972 498.86801147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05791973 498.86807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05791974 498.86807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05791975 498.86807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05791976 498.86807251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05791977 498.86813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05791978 498.86813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05791979 498.86813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05791980 498.86813354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05791981 498.86816406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05791982 498.86816406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05791983 498.86822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05791984 498.86822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05791985 498.86822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05791986 498.86822510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05791987 498.86828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05791988 498.86828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05791989 498.86828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05791990 498.86828613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05791991 498.86831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05791992 498.86831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05791993 498.86831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05791994 498.86831665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05791995 498.86837769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05791996 498.86837769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05791997 498.86843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05791998 498.86843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05791999 498.86843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05792000 498.86843872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05792001 498.86846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05792002 498.86846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05792003 498.86846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05792004 498.86846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05792005 498.86853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05792006 498.86853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05792007 498.86853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05792008 498.86853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05792009 498.86859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05792010 498.86859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05792011 498.86859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05792012 498.86862183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05792013 498.86862183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05792014 498.86862183 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05792015 498.86868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05792016 498.86868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05792017 498.86868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05792018 498.86868286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05792019 498.86874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05792020 498.86874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05792021 498.86874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05792022 498.86874390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05792023 498.86877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05792024 498.86877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05792025 498.86877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05792026 498.86877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05792027 498.86883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05792028 498.86883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05792029 498.86889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05792030 498.86889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05792031 498.86889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05792032 498.86889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05792033 498.86892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05792034 498.86892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05792035 498.86892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05792036 498.86892700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05792037 498.86898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05792038 498.86898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05792039 498.86898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05792040 498.86898804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05792041 498.86904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05792042 498.86904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05792043 498.86904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05792044 498.86904907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05792045 498.86907959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05792046 498.86907959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05792047 498.86914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05792048 498.86914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05792049 498.86914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05792050 498.86914063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05792051 498.86920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05792052 498.86920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05792053 498.86920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05792054 498.86920166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05792055 498.86926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05792056 498.86926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05792057 498.86926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05792058 498.86926270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05792059 498.86929321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05792060 498.86929321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05792061 498.86935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05792062 498.86935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05792063 498.86935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05792064 498.86935425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05792065 498.86941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05792066 498.86941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05792067 498.86941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05792068 498.86941528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05792069 498.86944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05792070 498.86944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05792071 498.86944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05792072 498.86944580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05792073 498.86950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05792074 498.86950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05792075 498.86950684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05792076 498.86956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05792077 498.86956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05792078 498.86956787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05792079 498.86959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05792080 498.86959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05792081 498.86959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05792082 498.86959839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05792083 498.86965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05792084 498.86965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05792085 498.86965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05792086 498.86965942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05792087 498.86972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05792088 498.86972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05792089 498.86972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05792090 498.86972046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05792091 498.86975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05792092 498.86975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05792093 498.86975098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05792094 498.86981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05792095 498.86981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05792096 498.86981201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05792097 498.86987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05792098 498.86987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05792099 498.86987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05792100 498.86987305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05792101 498.86990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05792102 498.86990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05792103 498.86990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05792104 498.86990356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05792105 498.86996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05792106 498.86996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05792107 498.86996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05792108 498.86996460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05792109 498.87002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05792110 498.87002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05792111 498.87002563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05792112 498.87005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05792113 498.87005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05792114 498.87005615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05792115 498.87011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05792116 498.87011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05792117 498.87011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05792118 498.87011719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05792119 498.87017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05792120 498.87017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05792121 498.87017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05792122 498.87017822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05792123 498.87020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05792124 498.87020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05792125 498.87020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05792126 498.87020874 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05792127 498.87026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05792128 498.87026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05792129 498.87026978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05792130 498.87033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05792131 498.87033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05792132 498.87033081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05792133 498.87036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05792134 498.87036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05792135 498.87036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05792136 498.87036133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05792137 498.87042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05792138 498.87042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05792139 498.87042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05792140 498.87042236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05792141 498.87048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05792142 498.87048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05792143 498.87048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05792144 498.87048340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05792145 498.87051392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05792146 498.87051392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05792147 498.87051392 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05792148 498.87057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05792149 498.87057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05792150 498.87057495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05792151 498.87063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05792152 498.87063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05792153 498.87063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05792154 498.87063599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05792155 498.87066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05792156 498.87066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05792157 498.87066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05792158 498.87066650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05792159 498.87072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05792160 498.87072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05792161 498.87072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05792162 498.87072754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05792163 498.87078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05792164 498.87078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05792165 498.87078857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05792166 498.87084961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05792167 498.87084961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05792168 498.87084961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05792169 498.87088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05792170 498.87088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05792171 498.87088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05792172 498.87088013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05792173 498.87094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05792174 498.87094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05792175 498.87094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05792176 498.87094116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05792177 498.87100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05792178 498.87100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05792179 498.87100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05792180 498.87100220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05792181 498.87103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05792182 498.87103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05792183 498.87103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05792184 498.87109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05792185 498.87109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05792186 498.87109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05792187 498.87115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05792188 498.87115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05792189 498.87115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05792190 498.87115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05792191 498.87118530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05792192 498.87118530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05792193 498.87118530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05792194 498.87118530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05792195 498.87124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05792196 498.87124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05792197 498.87124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05792198 498.87124634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05792199 498.87130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05792200 498.87130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05792201 498.87130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05792202 498.87130737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05792203 498.87133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05792204 498.87133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05792205 498.87139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05792206 498.87139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05792207 498.87139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05792208 498.87139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05792209 498.87145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05792210 498.87145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05792211 498.87145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05792212 498.87145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05792213 498.87149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05792214 498.87149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05792215 498.87149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05792216 498.87149048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05792217 498.87155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05792218 498.87155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05792219 498.87155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05792220 498.87155151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05792221 498.87161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05792222 498.87161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05792223 498.87161255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05792224 498.87164307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05792225 498.87164307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05792226 498.87164307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05792227 498.87170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05792228 498.87170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05792229 498.87170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05792230 498.87170410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05792231 498.87176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05792232 498.87176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05792233 498.87176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05792234 498.87176514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05792235 498.87179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05792236 498.87179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05792237 498.87179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05792238 498.87179565 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05792239 498.87185669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05792240 498.87185669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05792241 498.87191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05792242 498.87191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05792243 498.87191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05792244 498.87191772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05792245 498.87194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05792246 498.87194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05792247 498.87194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05792248 498.87194824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05792249 498.87200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05792250 498.87200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05792251 498.87200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05792252 498.87200928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05792253 498.87207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05792254 498.87207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05792255 498.87207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05792256 498.87207031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05792257 498.87210083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05792258 498.87210083 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05792259 498.87216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05792260 498.87216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05792261 498.87216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05792262 498.87216187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05792263 498.87222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05792264 498.87222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05792265 498.87222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05792266 498.87222290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05792267 498.87228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05792268 498.87228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05792269 498.87228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05792270 498.87228394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05792271 498.87231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05792272 498.87231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05792273 498.87231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05792274 498.87231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05792275 498.87237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05792276 498.87237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05792277 498.87237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05792278 498.87243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05792279 498.87243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05792280 498.87243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05792281 498.87246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05792282 498.87246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05792283 498.87246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05792284 498.87246704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05792285 498.87252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05792286 498.87252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05792287 498.87252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05792288 498.87252808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05792289 498.87258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05792290 498.87258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05792291 498.87258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05792292 498.87258911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05792293 498.87261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05792294 498.87261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05792295 498.87261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05792296 498.87261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05792297 498.87268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05792298 498.87268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05792299 498.87274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05792300 498.87274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05792301 498.87274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05792302 498.87274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05792303 498.87277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05792304 498.87277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05792305 498.87277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05792306 498.87277222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05792307 498.87283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05792308 498.87283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05792309 498.87283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05792310 498.87283325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05792311 498.87289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05792312 498.87289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05792313 498.87289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05792314 498.87289429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05792315 498.87292480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05792316 498.87292480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05792317 498.87298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05792318 498.87298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05792319 498.87298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05792320 498.87298584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05792321 498.87304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05792322 498.87304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05792323 498.87304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05792324 498.87304688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05792325 498.87307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05792326 498.87307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05792327 498.87307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05792328 498.87307739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05792329 498.87313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05792330 498.87313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05792331 498.87313843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05792332 498.87319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05792333 498.87319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05792334 498.87319946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05792335 498.87322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05792336 498.87322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05792337 498.87322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05792338 498.87322998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05792339 498.87329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05792340 498.87329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05792341 498.87329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05792342 498.87329102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05792343 498.87335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05792344 498.87335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05792345 498.87335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05792346 498.87335205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05792347 498.87338257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05792348 498.87338257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05792349 498.87338257 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05792350 498.87344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05792351 498.87344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05792352 498.87344360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05792353 498.87350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05792354 498.87350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05792355 498.87350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05792356 498.87350464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05792357 498.87353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05792358 498.87353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05792359 498.87353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05792360 498.87353516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05792361 498.87359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05792362 498.87359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05792363 498.87359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05792364 498.87359619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05792365 498.87365723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05792366 498.87365723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05792367 498.87368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05792368 498.87368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05792369 498.87368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05792370 498.87368774 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05792371 498.87374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05792372 498.87374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05792373 498.87374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05792374 498.87374878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05792375 498.87380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05792376 498.87380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05792377 498.87380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05792378 498.87380981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05792379 498.87387085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05792380 498.87387085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05792381 498.87387085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05792382 498.87390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05792383 498.87390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05792384 498.87390137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05792385 498.87396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05792386 498.87396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05792387 498.87396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05792388 498.87396240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05792389 498.87402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05792390 498.87402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05792391 498.87402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05792392 498.87402344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05792393 498.87405396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05792394 498.87405396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05792395 498.87405396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05792396 498.87411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05792397 498.87411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05792398 498.87411499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05792399 498.87417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05792400 498.87417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05792401 498.87417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05792402 498.87417603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05792403 498.87420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05792404 498.87420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05792405 498.87420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05792406 498.87420654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05792407 498.87426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05792408 498.87426758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05792409 498.87432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05792410 498.87432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05792411 498.87432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05792412 498.87432861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05792413 498.87435913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05792414 498.87435913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05792415 498.87435913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05792416 498.87435913 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05792417 498.87442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05792418 498.87442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05792419 498.87442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05792420 498.87442017 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05792421 498.87448120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05792422 498.87448120 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05792423 498.87451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05792424 498.87451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05792425 498.87451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05792426 498.87451172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05792427 498.87457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05792428 498.87457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05792429 498.87457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05792430 498.87457275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05792431 498.87463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05792432 498.87463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05792433 498.87463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05792434 498.87463379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05792435 498.87466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05792436 498.87466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05792437 498.87466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05792438 498.87466431 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05792439 498.87472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05792440 498.87472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05792441 498.87472534 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05792442 498.87478638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05792443 498.87478638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05792444 498.87478638 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05792445 498.87481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05792446 498.87481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05792447 498.87481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05792448 498.87481689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05792449 498.87487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05792450 498.87487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05792451 498.87487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05792452 498.87487793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05792453 498.87493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05792454 498.87493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05792455 498.87493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05792456 498.87493896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05792457 498.87496948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05792458 498.87496948 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05792459 498.87503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05792460 498.87503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05792461 498.87503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05792462 498.87503052 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05792463 498.87509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05792464 498.87509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05792465 498.87509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05792466 498.87509155 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05792467 498.87512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05792468 498.87512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05792469 498.87512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05792470 498.87512207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05792471 498.87518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05792472 498.87518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05792473 498.87518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05792474 498.87518311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05792475 498.87524414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05792476 498.87524414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05792477 498.87524414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05792478 498.87527466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05792479 498.87527466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05792480 498.87527466 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05792481 498.87533569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05792482 498.87533569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05792483 498.87533569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05792484 498.87533569 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05792485 498.87539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05792486 498.87539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05792487 498.87539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05792488 498.87539673 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05792489 498.87545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05792490 498.87545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05792491 498.87545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05792492 498.87545776 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05792493 498.87548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05792494 498.87548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05792495 498.87548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05792496 498.87548828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05792497 498.87554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05792498 498.87554932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05792499 498.87561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05792500 498.87561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05792501 498.87561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05792502 498.87561035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05792503 498.87564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05792504 498.87564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05792505 498.87564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05792506 498.87564087 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05792507 498.87570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05792508 498.87570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05792509 498.87570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05792510 498.87570190 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05792511 498.87576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05792512 498.87576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05792513 498.87576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05792514 498.87576294 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05792515 498.87579346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05792516 498.87579346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05792517 498.87585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05792518 498.87585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05792519 498.87585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05792520 498.87585449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05792521 498.87591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05792522 498.87591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05792523 498.87591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05792524 498.87591553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05792525 498.87594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05792526 498.87594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05792527 498.87594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05792528 498.87594604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05792529 498.87600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05792530 498.87600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05792531 498.87600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05792532 498.87600708 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -05792533 498.87606812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05792534 498.87606812 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -05792535 498.87609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05792536 498.87609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -05792537 498.87609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05792538 498.87609863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -05792539 498.87615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05792540 498.87615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -05792541 498.87615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05792542 498.87615967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -05792543 498.87622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05792544 498.87622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -05792545 498.87622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05792546 498.87622070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -05792547 498.87625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05792548 498.87625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -05792549 498.87625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05792550 498.87625122 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -05792551 498.87631226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05792552 498.87631226 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -05792553 498.87637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05792554 498.87637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -05792555 498.87637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05792556 498.87637329 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -05792557 498.87640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05792558 498.87640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -05792559 498.87640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05792560 498.87640381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -05792561 498.87646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05792562 498.87646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -05792563 498.87646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05792564 498.87646484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -05792565 498.87652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05792566 498.87652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -05792567 498.87652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05792568 498.87652588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -05792569 498.87655640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05792570 498.87655640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -05792571 498.87655640 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05792572 498.87661743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -05792573 498.87661743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05792574 498.87661743 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -05792575 498.87667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05792576 498.87667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -05792577 498.87667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05792578 498.87667847 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -05792579 498.87670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05792580 498.87670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -05792581 498.87670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05792582 498.87670898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -05792583 498.87677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05792584 498.87677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -05792585 498.87677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05792586 498.87677002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -05792587 498.87683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05792588 498.87683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -05792589 498.87683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05792590 498.87683105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -05792591 498.87686157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05792592 498.87686157 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -05792593 498.87692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05792594 498.87692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -05792595 498.87692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05792596 498.87692261 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -05792597 498.87698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05792598 498.87698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -05792599 498.87698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05792600 498.87698364 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -05792601 498.87704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05792602 498.87704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -05792603 498.87704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05792604 498.87704468 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -05792605 498.87707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05792606 498.87707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -05792607 498.87707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05792608 498.87707520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -05792609 498.87713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05792610 498.87713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -05792611 498.87713623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05792612 498.87719727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -05792613 498.87719727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05792614 498.87719727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -05792615 498.87722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05792616 498.87722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -05792617 498.87722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05792618 498.87722778 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -05792619 498.87728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05792620 498.87728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -05792621 498.87728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05792622 498.87728882 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -05792623 498.87734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05792624 498.87734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -05792625 498.87734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05792626 498.87734985 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -05792627 498.87738037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05792628 498.87738037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -05792629 498.87738037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05792630 498.87744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -05792631 498.87744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05792632 498.87744141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -05792633 498.87750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05792634 498.87750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -05792635 498.87750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05792636 498.87750244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -05792637 498.87753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05792638 498.87753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -05792639 498.87753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05792640 498.87753296 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -05792641 498.87759399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05792642 498.87759399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -05792643 498.87759399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05792644 498.87759399 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -05792645 498.87765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05792646 498.87765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -05792647 498.87765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05792648 498.87765503 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -05792649 498.87768555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05792650 498.87768555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -05792651 498.87774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05792652 498.87774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -05792653 498.87774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05792654 498.87774658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -05792655 498.87780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05792656 498.87780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -05792657 498.87780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05792658 498.87780762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -05792659 498.87783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05792660 498.87783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -05792661 498.87783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05792662 498.87783813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -05792663 498.87789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05792664 498.87789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -05792665 498.87789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05792666 498.87789917 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -05792667 498.87796021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05792668 498.87796021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -05792669 498.87799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05792670 498.87799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -05792671 498.87799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05792672 498.87799072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -05792673 498.87805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05792674 498.87805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -05792675 498.87805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05792676 498.87805176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -05792677 498.87811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05792678 498.87811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -05792679 498.87811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05792680 498.87811279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -05792681 498.87814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05792682 498.87814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -05792683 498.87814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05792684 498.87814331 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -05792685 498.87820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05792686 498.87820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -05792687 498.87820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05792688 498.87820435 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -05792689 498.87826538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05792690 498.87826538 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -05792691 498.87829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05792692 498.87829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -05792693 498.87829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05792694 498.87829590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -05792695 498.87835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05792696 498.87835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -05792697 498.87835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05792698 498.87835693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -05792699 498.87841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05792700 498.87841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -05792701 498.87841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05792702 498.87841797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -05792703 498.87847900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05792704 498.87847900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -05792705 498.87847900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05792706 498.87847900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -05792707 498.87850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05792708 498.87850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -05792709 498.87850952 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05792710 498.87857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -05792711 498.87857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05792712 498.87857056 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -05792713 498.87863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05792714 498.87863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -05792715 498.87863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05792716 498.87863159 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -05792717 498.87866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05792718 498.87866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -05792719 498.87866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05792720 498.87866211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -05792721 498.87872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05792722 498.87872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -05792723 498.87872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05792724 498.87872314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -05792725 498.87878418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05792726 498.87878418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -05792727 498.87878418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05792728 498.87881470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -05792729 498.87881470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05792730 498.87881470 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -05792731 498.87887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05792732 498.87887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -05792733 498.87887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05792734 498.87887573 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -05792735 498.87893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05792736 498.87893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -05792737 498.87893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05792738 498.87893677 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -05792739 498.87896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05792740 498.87896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -05792741 498.87896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05792742 498.87896729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -05792743 498.87902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05792744 498.87902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -05792745 498.87902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05792746 498.87902832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -05792747 498.87908936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05792748 498.87908936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -05792749 498.87911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05792750 498.87911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -05792751 498.87911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05792752 498.87911987 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -05792753 498.87918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05792754 498.87918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -05792755 498.87918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05792756 498.87918091 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -05792757 498.87924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05792758 498.87924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -05792759 498.87924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05792760 498.87924194 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -05792761 498.87927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05792762 498.87927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -05792763 498.87927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05792764 498.87927246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -05792765 498.87933350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05792766 498.87933350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -05792767 498.87939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05792768 498.87939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -05792769 498.87939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05792770 498.87939453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -05792771 498.87942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05792772 498.87942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -05792773 498.87942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05792774 498.87942505 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -05792775 498.87948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05792776 498.87948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -05792777 498.87948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05792778 498.87948608 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -05792779 498.87954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05792780 498.87954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -05792781 498.87954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05792782 498.87954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -05792783 498.87957764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05792784 498.87957764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -05792785 498.87957764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05792786 498.87963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -05792787 498.87963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05792788 498.87963867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -05792789 498.87969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05792790 498.87969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -05792791 498.87969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05792792 498.87969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -05792793 498.87973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05792794 498.87973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -05792795 498.87973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05792796 498.87973022 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -05792797 498.87979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05792798 498.87979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -05792799 498.87979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05792800 498.87979126 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -05792801 498.87985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05792802 498.87985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -05792803 498.87985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05792804 498.87988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -05792805 498.87988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05792806 498.87988281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -05792807 498.87994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05792808 498.87994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -05792809 498.87994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05792810 498.87994385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -05792811 498.88000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05792812 498.88000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -05792813 498.88000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05792814 498.88000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -05792815 498.88006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05792816 498.88006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -05792817 498.88006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05792818 498.88006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -05792819 498.88009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05792820 498.88009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -05792821 498.88009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05792822 498.88009644 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -05792823 498.88015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05792824 498.88015747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -05792825 498.88021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05792826 498.88021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -05792827 498.88021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05792828 498.88021851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -05792829 498.88024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05792830 498.88024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -05792831 498.88024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05792832 498.88024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -05792833 498.88031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05792834 498.88031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -05792835 498.88031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05792836 498.88031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -05792837 498.88037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05792838 498.88037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -05792839 498.88037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05792840 498.88037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -05792841 498.88040161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05792842 498.88040161 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -05792843 498.88046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05792844 498.88046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -05792845 498.88046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05792846 498.88046265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -05792847 498.88052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05792848 498.88052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -05792849 498.88052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05792850 498.88052368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -05792851 498.88055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05792852 498.88055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -05792853 498.88055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05792854 498.88061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -05792855 498.88061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05792856 498.88061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -05792857 498.88067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05792858 498.88067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -05792859 498.88067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05792860 498.88067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -05792861 498.88070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05792862 498.88070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -05792863 498.88070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05792864 498.88070679 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -05792865 498.88076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05792866 498.88076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -05792867 498.88076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05792868 498.88076782 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -05792869 498.88082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05792870 498.88082886 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -05792871 498.88085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05792872 498.88085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -05792873 498.88085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05792874 498.88085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -05792875 498.88092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05792876 498.88092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -05792877 498.88092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05792878 498.88092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -05792879 498.88098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05792880 498.88098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -05792881 498.88098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05792882 498.88098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -05792883 498.88101196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05792884 498.88101196 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -05792885 498.88107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05792886 498.88107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -05792887 498.88107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05792888 498.88107300 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -05792889 498.88113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05792890 498.88113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -05792891 498.88113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05792892 498.88113403 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -05792893 498.88116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05792894 498.88116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -05792895 498.88116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05792896 498.88116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -05792897 498.88122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05792898 498.88122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -05792899 498.88122559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05792900 498.88128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -05792901 498.88128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05792902 498.88128662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -05792903 498.88131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05792904 498.88131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -05792905 498.88131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05792906 498.88131714 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -05792907 498.88137817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05792908 498.88137817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -05792909 498.88137817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05792910 498.88137817 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -05792911 498.88143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05792912 498.88143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -05792913 498.88143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05792914 498.88143921 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -05792915 498.88146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05792916 498.88146973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -05792917 498.88153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05792918 498.88153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -05792919 498.88153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05792920 498.88153076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -05792921 498.88159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05792922 498.88159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -05792923 498.88159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05792924 498.88159180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -05792925 498.88165283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05792926 498.88165283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -05792927 498.88165283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05792928 498.88165283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -05792929 498.88168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05792930 498.88168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -05792931 498.88168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05792932 498.88168335 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -05792933 498.88174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05792934 498.88174438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -05792935 498.88180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05792936 498.88180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -05792937 498.88180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05792938 498.88180542 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -05792939 498.88183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05792940 498.88183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -05792941 498.88183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05792942 498.88183594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -05792943 498.88189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05792944 498.88189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -05792945 498.88189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05792946 498.88189697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -05792947 498.88195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05792948 498.88195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -05792949 498.88195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05792950 498.88195801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -05792951 498.88198853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05792952 498.88198853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -05792953 498.88198853 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05792954 498.88204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -05792955 498.88204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05792956 498.88204956 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -05792957 498.88211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05792958 498.88211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -05792959 498.88211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05792960 498.88211060 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -05792961 498.88214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05792962 498.88214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -05792963 498.88214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05792964 498.88214111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -05792965 498.88220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05792966 498.88220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -05792967 498.88220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05792968 498.88220215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -05792969 498.88226318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05792970 498.88226318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -05792971 498.88226318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05792972 498.88226318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -05792973 498.88229370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05792974 498.88229370 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -05792975 498.88235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05792976 498.88235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -05792977 498.88235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05792978 498.88235474 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -05792979 498.88241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05792980 498.88241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -05792981 498.88241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05792982 498.88241577 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -05792983 498.88244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05792984 498.88244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -05792985 498.88244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05792986 498.88244629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -05792987 498.88250732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05792988 498.88250732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -05792989 498.88250732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05792990 498.88250732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -05792991 498.88256836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05792992 498.88256836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -05792993 498.88259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05792994 498.88259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -05792995 498.88259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05792996 498.88259888 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -05792997 498.88265991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05792998 498.88265991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -05792999 498.88265991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05793000 498.88265991 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -05793001 498.88272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05793002 498.88272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -05793003 498.88272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05793004 498.88272095 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -05793005 498.88275146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05793006 498.88275146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -05793007 498.88275146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05793008 498.88275146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -05793009 498.88281250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05793010 498.88281250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -05793011 498.88287354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05793012 498.88287354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -05793013 498.88287354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05793014 498.88287354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -05793015 498.88290405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05793016 498.88290405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -05793017 498.88290405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05793018 498.88290405 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -05793019 498.88296509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05793020 498.88296509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -05793021 498.88296509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05793022 498.88296509 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -05793023 498.88302612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05793024 498.88302612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -05793025 498.88302612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05793026 498.88302612 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -05793027 498.88308716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05793028 498.88308716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -05793029 498.88308716 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05793030 498.88311768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -05793031 498.88311768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05793032 498.88311768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -05793033 498.88317871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05793034 498.88317871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -05793035 498.88317871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05793036 498.88317871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -05793037 498.88323975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05793038 498.88323975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -05793039 498.88323975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05793040 498.88323975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -05793041 498.88327026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05793042 498.88327026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -05793043 498.88327026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05793044 498.88327026 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -05793045 498.88333130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05793046 498.88333130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -05793047 498.88333130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05793048 498.88333130 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -05793049 498.88339233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05793050 498.88339233 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -05793051 498.88342285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05793052 498.88342285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -05793053 498.88342285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05793054 498.88342285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -05793055 498.88348389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05793056 498.88348389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -05793057 498.88348389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05793058 498.88348389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -05793059 498.88354492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05793060 498.88354492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -05793061 498.88354492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05793062 498.88354492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -05793063 498.88357544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05793064 498.88357544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -05793065 498.88357544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05793066 498.88357544 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -05793067 498.88363647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05793068 498.88363647 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -05793069 498.88369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05793070 498.88369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -05793071 498.88369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05793072 498.88369751 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -05793073 498.88372803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05793074 498.88372803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -05793075 498.88372803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05793076 498.88372803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -05793077 498.88378906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05793078 498.88378906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -05793079 498.88378906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05793080 498.88378906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -05793081 498.88385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05793082 498.88385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -05793083 498.88385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05793084 498.88385010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -05793085 498.88388062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05793086 498.88388062 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -05793087 498.88394165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05793088 498.88394165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -05793089 498.88394165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05793090 498.88394165 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -05793091 498.88400269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05793092 498.88400269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -05793093 498.88400269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05793094 498.88400269 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -05793095 498.88403320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05793096 498.88403320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -05793097 498.88403320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05793098 498.88403320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -05793099 498.88409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05793100 498.88409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -05793101 498.88409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05793102 498.88409424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -05793103 498.88415527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05793104 498.88415527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -05793105 498.88418579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05793106 498.88418579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -05793107 498.88418579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05793108 498.88418579 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -05793109 498.88424683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05793110 498.88424683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -05793111 498.88424683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05793112 498.88424683 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -05793113 498.88430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05793114 498.88430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -05793115 498.88430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05793116 498.88430786 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -05793117 498.88433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05793118 498.88433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -05793119 498.88433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05793120 498.88433838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -05793121 498.88439941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05793122 498.88439941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -05793123 498.88439941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05793124 498.88446045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -05793125 498.88446045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05793126 498.88446045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -05793127 498.88449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05793128 498.88449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -05793129 498.88449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05793130 498.88449097 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -05793131 498.88455200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05793132 498.88455200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -05793133 498.88455200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05793134 498.88455200 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -05793135 498.88461304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05793136 498.88461304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -05793137 498.88461304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05793138 498.88461304 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -05793139 498.88467407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05793140 498.88467407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -05793141 498.88467407 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05793142 498.88470459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -05793143 498.88470459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05793144 498.88470459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -05793145 498.88476563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05793146 498.88476563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -05793147 498.88476563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05793148 498.88476563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -05793149 498.88482666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05793150 498.88482666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -05793151 498.88482666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05793152 498.88482666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -05793153 498.88485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05793154 498.88485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -05793155 498.88485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05793156 498.88485718 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -05793157 498.88491821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05793158 498.88491821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -05793159 498.88491821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05793160 498.88491821 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -05793161 498.88497925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05793162 498.88497925 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -05793163 498.88500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05793164 498.88500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -05793165 498.88500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05793166 498.88500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -05793167 498.88507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05793168 498.88507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -05793169 498.88507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05793170 498.88507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -05793171 498.88513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05793172 498.88513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -05793173 498.88513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05793174 498.88513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -05793175 498.88516235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05793176 498.88516235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -05793177 498.88516235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05793178 498.88516235 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -05793179 498.88522339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05793180 498.88522339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -05793181 498.88522339 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05793182 498.88528442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -05793183 498.88528442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05793184 498.88528442 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -05793185 498.88531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05793186 498.88531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -05793187 498.88531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05793188 498.88531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -05793189 498.88537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05793190 498.88537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -05793191 498.88537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05793192 498.88537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -05793193 498.88543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05793194 498.88543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -05793195 498.88543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05793196 498.88543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -05793197 498.88546753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05793198 498.88546753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -05793199 498.88546753 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05793200 498.88552856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -05793201 498.88552856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05793202 498.88552856 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -05793203 498.88558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05793204 498.88558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -05793205 498.88558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05793206 498.88558960 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -05793207 498.88562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05793208 498.88562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -05793209 498.88562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05793210 498.88562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -05793211 498.88568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05793212 498.88568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -05793213 498.88568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05793214 498.88568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -05793215 498.88574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05793216 498.88574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -05793217 498.88574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05793218 498.88574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -05793219 498.88577271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05793220 498.88577271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -05793221 498.88583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05793222 498.88583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -05793223 498.88583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05793224 498.88583374 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -05793225 498.88589478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05793226 498.88589478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -05793227 498.88589478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05793228 498.88589478 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -05793229 498.88592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05793230 498.88592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -05793231 498.88592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05793232 498.88592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -05793233 498.88598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05793234 498.88598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -05793235 498.88598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05793236 498.88598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -05793237 498.88604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05793238 498.88604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -05793239 498.88604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05793240 498.88607788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -05793241 498.88607788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05793242 498.88607788 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -05793243 498.88613892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05793244 498.88613892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -05793245 498.88613892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05793246 498.88613892 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -05793247 498.88619995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05793248 498.88619995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -05793249 498.88619995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05793250 498.88619995 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -05793251 498.88626099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05793252 498.88626099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -05793253 498.88626099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05793254 498.88626099 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -05793255 498.88629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05793256 498.88629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -05793257 498.88629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05793258 498.88635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -05793259 498.88635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05793260 498.88635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -05793261 498.88641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05793262 498.88641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -05793263 498.88641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05793264 498.88641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -05793265 498.88644409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05793266 498.88644409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -05793267 498.88644409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05793268 498.88644409 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -05793269 498.88650513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05793270 498.88650513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -05793271 498.88650513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05793272 498.88650513 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -05793273 498.88656616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05793274 498.88656616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -05793275 498.88656616 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05793276 498.88659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -05793277 498.88659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05793278 498.88659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -05793279 498.88665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05793280 498.88665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -05793281 498.88665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05793282 498.88665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -05793283 498.88671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05793284 498.88671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -05793285 498.88671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05793286 498.88671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -05793287 498.88674927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05793288 498.88674927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -05793289 498.88674927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05793290 498.88674927 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -05793291 498.88681030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05793292 498.88681030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -05793293 498.88681030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05793294 498.88681030 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -05793295 498.88687134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05793296 498.88687134 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -05793297 498.88690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05793298 498.88690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -05793299 498.88690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05793300 498.88690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -05793301 498.88696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05793302 498.88696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -05793303 498.88696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05793304 498.88696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -05793305 498.88702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05793306 498.88702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -05793307 498.88702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05793308 498.88702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -05793309 498.88705444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05793310 498.88705444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -05793311 498.88705444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05793312 498.88705444 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -05793313 498.88711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05793314 498.88711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -05793315 498.88711548 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05793316 498.88717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -05793317 498.88717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05793318 498.88717651 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -05793319 498.88720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05793320 498.88720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -05793321 498.88720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05793322 498.88720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -05797220 498.94256592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc268 -05797221 498.94256592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -05797222 498.94256592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -05797223 498.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -05797224 498.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -05797225 498.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -05797226 498.94262695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -05797227 498.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -05797228 498.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -05797229 498.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -05797230 498.94265747 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -05797231 498.94271851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -05797232 498.94271851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -05797233 498.94271851 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -05797234 498.94277954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -05797235 498.94277954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -05797236 498.94277954 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -05797237 498.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -05797238 498.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -05797239 498.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -05797240 498.94281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -05797241 498.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -05797242 498.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -05797243 498.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -05797244 498.94287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -05797245 498.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -05797246 498.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -05797247 498.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -05797248 498.94293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -05797249 498.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -05797250 498.94296265 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -05797251 498.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -05797252 498.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -05797253 498.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -05797254 498.94302368 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -05797255 498.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -05797256 498.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -05797257 498.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -05797258 498.94308472 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -05797259 498.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -05797260 498.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -05797261 498.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -05797262 498.94311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -05797263 498.94317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -05802529 499.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16858 -05802530 499.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16858 -05802531 499.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16868 -05802532 499.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16868 -05802533 499.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16878 -05802534 499.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16878 -05802535 499.01828003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16888 -05802536 499.01828003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16888 -05802537 499.01828003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16898 -05802538 499.01828003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16898 -05802539 499.01834106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a8 -05802540 499.01834106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a8 -05802541 499.01834106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b8 -05802542 499.01834106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b8 -05802543 499.01840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c8 -05802544 499.01840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c8 -05802545 499.01840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d8 -05802546 499.01840210 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d8 -05802547 499.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e8 -05802548 499.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e8 -05802549 499.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f8 -05802550 499.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f8 -05802551 499.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16908 -05802552 499.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16908 -05802553 499.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16918 -05802554 499.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16918 -05802555 499.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16928 -05802556 499.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16928 -05802557 499.01858521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16938 -05802558 499.01858521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16938 -05802559 499.01858521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16948 -05802560 499.01858521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16948 -05802561 499.01864624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16958 -05802562 499.01864624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16958 -05802563 499.01864624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16968 -05802564 499.01864624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16968 -05802565 499.01870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16978 -05802566 499.01870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16978 -05802567 499.01870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16988 -05802568 499.01870728 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16988 -05802569 499.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16998 -05802570 499.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16998 -05802571 499.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a8 -05802572 499.01879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a8 -05809346 499.11502075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d58 -05809347 499.11502075 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d68 -05809348 499.11505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d68 -05809349 499.11505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d78 -05809350 499.11505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d78 -05809351 499.11511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d88 -05809352 499.11511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d88 -05809353 499.11511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d98 -05809354 499.11511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d98 -05809355 499.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da8 -05809356 499.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23da8 -05809357 499.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db8 -05809358 499.11517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23db8 -05809359 499.11520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc8 -05809360 499.11520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dc8 -05809361 499.11520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd8 -05809362 499.11520386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23dd8 -05809363 499.11526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de8 -05809364 499.11526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23de8 -05809365 499.11526489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df8 -05809366 499.11532593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df8 -05809367 499.11532593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e08 -05809368 499.11532593 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e08 -05809369 499.11535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e18 -05809370 499.11535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e18 -05809371 499.11535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e28 -05809372 499.11535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e28 -05809373 499.11541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e38 -05809374 499.11541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e38 -05809375 499.11541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e48 -05809376 499.11541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e48 -05809377 499.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e58 -05809378 499.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e58 -05809379 499.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e68 -05809380 499.11547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e68 -05809381 499.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e78 -05809382 499.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e78 -05809383 499.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e88 -05809384 499.11550903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e88 -05809385 499.11557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e98 -05809386 499.11557007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e98 -05809387 499.11563110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea8 -05809388 499.11563110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea8 -05809389 499.11563110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb8 -05815639 499.20431519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30208 -05815640 499.20431519 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30208 -05815641 499.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30218 -05815642 499.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30218 -05815643 499.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30228 -05815644 499.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30228 -05815645 499.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30238 -05815646 499.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30238 -05815647 499.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30248 -05815648 499.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30248 -05815649 499.20446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30258 -05815650 499.20446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30258 -05815651 499.20449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30268 -05815652 499.20449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30268 -05815653 499.20449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30278 -05815654 499.20449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30278 -05815655 499.20455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30288 -05815656 499.20455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30288 -05815657 499.20455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30298 -05815658 499.20455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30298 -05815659 499.20462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a8 -05815660 499.20462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302a8 -05815661 499.20462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b8 -05815662 499.20462036 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b8 -05815663 499.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c8 -05815664 499.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c8 -05815665 499.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d8 -05815666 499.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d8 -05815667 499.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e8 -05815668 499.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e8 -05815669 499.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f8 -05815670 499.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f8 -05815671 499.20477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30308 -05815672 499.20477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30308 -05815673 499.20480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30318 -05815674 499.20480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30318 -05815675 499.20480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30328 -05815676 499.20480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30328 -05815677 499.20486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30338 -05815678 499.20486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30338 -05815679 499.20486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30348 -05815680 499.20486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30348 -05815681 499.20492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30358 -05815682 499.20492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30358 -05831893 499.43121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -05831894 499.43121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -05831895 499.43127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -05831896 499.43127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -05831897 499.43127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -05831898 499.43127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -05831899 499.43133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -05831900 499.43133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -05831901 499.43133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -05831902 499.43133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -05831903 499.43136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -05831904 499.43136597 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -05831905 499.43142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -05831906 499.43142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -05831907 499.43142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -05831908 499.43142700 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -05831909 499.43148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe78 -05831910 499.43148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe78 -05831911 499.43148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe88 -05831912 499.43148804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe88 -05831913 499.43151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe98 -05831914 499.43151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe98 -05831915 499.43151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea8 -05831916 499.43151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fea8 -05831917 499.43157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb8 -05831918 499.43157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4feb8 -05831919 499.43157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec8 -05831920 499.43157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fec8 -05831921 499.43164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed8 -05831922 499.43164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fed8 -05831923 499.43164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee8 -05831924 499.43167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fee8 -05831925 499.43167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef8 -05831926 499.43167114 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fef8 -05831927 499.43173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff08 -05831928 499.43173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff08 -05831929 499.43173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff18 -05831930 499.43173218 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff18 -05831931 499.43179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff28 -05831932 499.43179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff28 -05831933 499.43179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff38 -05831934 499.43179321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff38 -05831935 499.43182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff48 -05831936 499.43182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff48 -05833405 499.78067017 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05833406 499.80184937 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05833407 499.80184937 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05833408 499.83871460 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05833409 499.83871460 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05833410 499.83877563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05833411 499.83877563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05833412 499.83886719 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05833413 499.83892822 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05833414 499.83898926 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05833415 499.83898926 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05833416 500.28955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -05833417 500.28955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -05833418 500.29101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05833419 500.49447632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05833420 500.49447632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05833421 500.49447632 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05833422 500.49453735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05833423 500.49459839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05833424 500.49459839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05833425 500.49459839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05833426 500.49459839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05833427 500.49462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05833428 500.49462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05833429 500.49462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05833430 500.49468994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05833431 500.49468994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05833432 500.49468994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05833433 500.49475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05833434 500.49475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05833435 500.49475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05833436 500.49475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05833437 500.49481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05833438 500.49481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05833439 500.49481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05833440 500.49481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05833441 500.49484253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05833442 500.49484253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05833443 500.49484253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05833444 500.49484253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05833445 500.49490356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05833446 500.49490356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05833447 500.49490356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05833448 500.49490356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05833449 500.49496460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05833450 500.49496460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05833451 500.49496460 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05833452 500.49499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05833453 500.49499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05833454 500.49499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05833455 500.49505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05833456 500.49505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05833457 500.49505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05833458 500.49505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05833459 500.49511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05833460 500.49511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05833461 500.49511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05833462 500.49511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05833463 500.49514771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05833464 500.49514771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05833465 500.49514771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05833466 500.49514771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05833467 500.49520874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05833468 500.49520874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05833469 500.49520874 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05833470 500.49526978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05833471 500.49526978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05833472 500.49526978 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05833473 500.49530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05833474 500.49530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05833475 500.49530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05833476 500.49530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05833477 500.49536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05833478 500.49536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05833479 500.49536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05833480 500.49536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05833481 500.49542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05833482 500.49542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05833483 500.49542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05833484 500.49542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05833485 500.49545288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05833486 500.49545288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05833487 500.49545288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05833488 500.49545288 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05833489 500.49551392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05833490 500.49551392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05833491 500.49551392 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05833492 500.49557495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05833493 500.49557495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05833494 500.49557495 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05833495 500.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05833496 500.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05833497 500.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05833498 500.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05833499 500.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05833500 500.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05833501 500.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05833502 500.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05833503 500.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05833504 500.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05833505 500.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05833506 500.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05833507 500.49575806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05833508 500.49575806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05833509 500.49575806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05833510 500.49575806 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05833511 500.49581909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05833512 500.49581909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05833513 500.49581909 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05833514 500.49588013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05833515 500.49588013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05833516 500.49588013 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05833517 500.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05833518 500.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05833519 500.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05833520 500.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05833521 500.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05833522 500.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05833523 500.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05833524 500.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05833525 500.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05833526 500.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05833527 500.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05833528 500.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05833529 500.49606323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05833530 500.49606323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05833531 500.49606323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05833532 500.49606323 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05833533 500.49612427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05833534 500.49612427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05833535 500.49612427 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05833536 500.49618530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05833537 500.49618530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05833538 500.49618530 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05833539 500.49621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05833540 500.49621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05833541 500.49627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05833542 500.49627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05833543 500.49627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05833544 500.49633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05833545 500.49633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05833546 500.49633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05833547 500.49639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05833548 500.49639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05833549 500.49639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05833550 500.49639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05833551 500.49642944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05833552 500.49642944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05833553 500.49642944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05833554 500.49642944 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05833555 500.49649048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05833556 500.49649048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05833557 500.49649048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05833558 500.49649048 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05833559 500.49655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05833560 500.49655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05833561 500.49655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05833562 500.49655151 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05833563 500.49658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05833564 500.49658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05833565 500.49664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05833566 500.49664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05833567 500.49664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05833568 500.49664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05833569 500.49670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05833570 500.49670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05833571 500.49670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05833572 500.49670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05833573 500.49673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05833574 500.49673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05833575 500.49673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05833576 500.49673462 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05833577 500.49679565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05833578 500.49679565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05833579 500.49679565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05833580 500.49679565 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05833581 500.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05833582 500.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05833583 500.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05833584 500.49685669 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05833585 500.49688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05833586 500.49688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05833587 500.49688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05833588 500.49694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05833589 500.49694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05833590 500.49694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05833591 500.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05833592 500.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05833593 500.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05833594 500.49700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05833595 500.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05833596 500.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05833597 500.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05833598 500.49703979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05833599 500.49710083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05833600 500.49710083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05833601 500.49710083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05833602 500.49710083 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05833603 500.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05833604 500.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05833605 500.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05833606 500.49716187 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05833607 500.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05833608 500.49719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05833609 500.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05833610 500.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05833611 500.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05833612 500.49725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05833613 500.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05833614 500.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05833615 500.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05833616 500.49731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05833617 500.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05833618 500.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05833619 500.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05833620 500.49734497 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05833621 500.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05833622 500.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05833623 500.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05833624 500.49740601 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05833625 500.49746704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05833626 500.49746704 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05833627 500.49749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05833628 500.49749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05833629 500.49749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05833630 500.49749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05833631 500.49755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05833632 500.49755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05833633 500.49755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05833634 500.49755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05833635 500.49761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05833636 500.49761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05833637 500.49761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05833638 500.49761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05833639 500.49765015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05833640 500.49765015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05833641 500.49765015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05833642 500.49765015 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05833643 500.49771118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05833644 500.49771118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05833645 500.49771118 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05833646 500.49777222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05833647 500.49777222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05833648 500.49777222 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05833649 500.49780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05833650 500.49780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05833651 500.49780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05833652 500.49780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05833653 500.49786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05833654 500.49786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05833655 500.49786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05833656 500.49786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05833657 500.49792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05833658 500.49792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05833659 500.49792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05833660 500.49792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05833661 500.49798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05833662 500.49798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05833663 500.49798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05833664 500.49798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05833665 500.49801636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05833666 500.49801636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05833667 500.49801636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05833668 500.49801636 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05833669 500.49807739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05833670 500.49807739 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05833671 500.49813843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05833672 500.49813843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05833673 500.49813843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05833674 500.49813843 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05833675 500.49816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05833676 500.49816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05833677 500.49816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05833678 500.49816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05833679 500.49822998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05833680 500.49822998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05833681 500.49829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05833682 500.49829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05833683 500.49829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05833684 500.49829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05833685 500.49832153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05833686 500.49832153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05833687 500.49832153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05833688 500.49832153 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05833689 500.49838257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05833690 500.49838257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05833691 500.49838257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05833692 500.49838257 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05833693 500.49844360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05833694 500.49844360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05833695 500.49844360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05833696 500.49844360 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05833697 500.49847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05833698 500.49847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05833699 500.49847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05833700 500.49853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05833701 500.49853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05833702 500.49853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05833703 500.49859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05833704 500.49859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05833705 500.49859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05833706 500.49859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05833707 500.49862671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05833708 500.49862671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05833709 500.49862671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05833710 500.49862671 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05833711 500.49868774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05833712 500.49868774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05833713 500.49868774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05833714 500.49868774 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05833715 500.49874878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05833716 500.49874878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05833717 500.49874878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05833718 500.49874878 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05833719 500.49877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05833720 500.49877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05833721 500.49877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05833722 500.49877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05833723 500.49884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05833724 500.49884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05833725 500.49890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05833726 500.49890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05833727 500.49890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05833728 500.49890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05833729 500.49893188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05833730 500.49893188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05833731 500.49893188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05833732 500.49893188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05833733 500.49899292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05833734 500.49899292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05833735 500.49899292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05833736 500.49899292 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05833737 500.49905396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05833738 500.49905396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05833739 500.49905396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05833740 500.49905396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05833741 500.49908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05833742 500.49908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05833743 500.49908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05833744 500.49908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05833745 500.49914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05833746 500.49914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05833747 500.49920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05833748 500.49920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05833749 500.49920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05833750 500.49920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05833751 500.49923706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05833752 500.49923706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05833753 500.49923706 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05833754 500.49929810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05833755 500.49929810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05833756 500.49929810 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05833757 500.49935913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05833758 500.49935913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05833759 500.49935913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05833760 500.49935913 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05833761 500.49938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05833762 500.49938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05833763 500.49938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05833764 500.49938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05833765 500.49945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05833766 500.49945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05833767 500.49945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05833768 500.49945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05833769 500.49951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05833770 500.49951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05833771 500.49951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05833772 500.49951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05833773 500.49957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05833774 500.49957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05833775 500.49957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05833776 500.49960327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05833777 500.49960327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05833778 500.49960327 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05833779 500.49966431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05833780 500.49966431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05833781 500.49966431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05833782 500.49966431 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05833783 500.49972534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05833784 500.49972534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05833785 500.49972534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05833786 500.49972534 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05833787 500.49975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05833788 500.49975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05833789 500.49975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05833790 500.49975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05833791 500.49981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05833792 500.49981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05833793 500.49981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05833794 500.49981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05833795 500.49987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05833796 500.49987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05833797 500.49987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05833798 500.49990845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05833799 500.49990845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05833800 500.49990845 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05833801 500.49996948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05833802 500.49996948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05833803 500.49996948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05833804 500.49996948 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05833805 500.50003052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05833806 500.50003052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05833807 500.50003052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05833808 500.50003052 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05833809 500.50006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05833810 500.50006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05833811 500.50006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05833812 500.50006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05833813 500.50012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05833814 500.50012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05833815 500.50012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05833816 500.50012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05833817 500.50018311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05833818 500.50018311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05833819 500.50021362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05833820 500.50021362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05833821 500.50021362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05833822 500.50021362 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05833823 500.50027466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05833824 500.50027466 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05833825 500.50033569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05833826 500.50033569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05833827 500.50033569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05833828 500.50033569 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05833829 500.50036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05833830 500.50036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05833831 500.50036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05833832 500.50036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05833833 500.50042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05833834 500.50042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05833835 500.50042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05833836 500.50042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05833837 500.50048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05833838 500.50048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05833839 500.50051880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05833840 500.50051880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05833841 500.50051880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05833842 500.50051880 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05833843 500.50057983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05833844 500.50057983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05833845 500.50057983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05833846 500.50057983 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05833847 500.50064087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05833848 500.50064087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05833849 500.50064087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05833850 500.50064087 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05833851 500.50067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05833852 500.50067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05833853 500.50067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05833854 500.50067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05833855 500.50073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05833856 500.50073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05833857 500.50073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05833858 500.50073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05833859 500.50079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05833860 500.50079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05833861 500.50082397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05833862 500.50082397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05833863 500.50082397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05833864 500.50082397 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05833865 500.50088501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05833866 500.50088501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05833867 500.50088501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05833868 500.50088501 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05833869 500.50094604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05833870 500.50094604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05833871 500.50094604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05833872 500.50094604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05833873 500.50100708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05833874 500.50100708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05833875 500.50100708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05833876 500.50100708 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05833877 500.50103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05833878 500.50103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05833879 500.50103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05833880 500.50103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05833881 500.50109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05833882 500.50109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05833883 500.50115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05833884 500.50115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05833885 500.50115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05833886 500.50115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05833887 500.50119019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05833888 500.50119019 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05833889 500.50125122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05833890 500.50125122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05833891 500.50125122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05833892 500.50125122 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05833893 500.50131226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05833894 500.50131226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05833895 500.50131226 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05833896 500.50134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05833897 500.50134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05833898 500.50134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05833899 500.50140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05833900 500.50140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05833901 500.50140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05833902 500.50140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05833903 500.50146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05833904 500.50146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05833905 500.50146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05833906 500.50146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05833907 500.50149536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05833908 500.50149536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05833909 500.50149536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05833910 500.50149536 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05833911 500.50155640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05833912 500.50155640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05833913 500.50155640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05833914 500.50155640 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05833915 500.50161743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05833916 500.50161743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05833917 500.50161743 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05833918 500.50164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05833919 500.50164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05833920 500.50164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05833921 500.50170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05833922 500.50170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05833923 500.50170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05833924 500.50170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05833925 500.50177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05833926 500.50177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05833927 500.50177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05833928 500.50177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05833929 500.50180054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05833930 500.50180054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05833931 500.50180054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05833932 500.50180054 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05833933 500.50186157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05833934 500.50186157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05833935 500.50186157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05833936 500.50186157 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05833937 500.50192261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05833938 500.50192261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05833939 500.50192261 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05833940 500.50195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05833941 500.50195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05833942 500.50195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05833943 500.50201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05833944 500.50201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05833945 500.50201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05833946 500.50201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05834379 500.50830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05834380 500.50830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05834381 500.50836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05834382 500.50836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05834383 500.50836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05834384 500.50836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05834385 500.50842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05834386 500.50842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05834387 500.50842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05834388 500.50842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05834389 500.50845337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05834390 500.50845337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05834391 500.50845337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05834392 500.50845337 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05834393 500.50851440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05834394 500.50851440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05834395 500.50851440 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05834396 500.50857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05834397 500.50857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05834398 500.50857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05834399 500.50860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05834400 500.50860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05834401 500.50860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05834402 500.50860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05834403 500.50866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05834404 500.50866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05834405 500.50866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05834406 500.50866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05834407 500.50872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05834408 500.50872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05834409 500.50872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05834410 500.50872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05834411 500.50878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05834412 500.50878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05834413 500.50878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05834414 500.50878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05834415 500.50881958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05834416 500.50881958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05834417 500.50881958 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05834418 500.50888062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05834419 500.50888062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05834420 500.50888062 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05834421 500.50894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05834422 500.50894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05838879 500.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -05838880 500.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -05838881 500.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -05838882 500.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -05838883 500.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -05838884 500.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -05838885 500.57485962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -05838886 500.57485962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -05838887 500.57485962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -05838888 500.57485962 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -05838889 500.57492065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -05838890 500.57492065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -05838891 500.57492065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -05838892 500.57492065 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -05838893 500.57498169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -05838894 500.57498169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -05838895 500.57498169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -05838896 500.57498169 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -05838897 500.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -05838898 500.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -05838899 500.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -05838900 500.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -05838901 500.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -05838902 500.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -05838903 500.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -05838904 500.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -05838905 500.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -05838906 500.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -05838907 500.57519531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -05838908 500.57519531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -05838909 500.57519531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -05838910 500.57519531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -05838911 500.57522583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -05838912 500.57522583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -05838913 500.57522583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -05838914 500.57522583 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -05838915 500.57528687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -05838916 500.57528687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -05838917 500.57528687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -05838918 500.57528687 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -05838919 500.57534790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -05838920 500.57534790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -05838921 500.57534790 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -05838922 500.57537842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -05845415 500.67108154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18728 -05845416 500.67108154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18728 -05845417 500.67114258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18738 -05845418 500.67114258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18738 -05845419 500.67114258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -05845420 500.67117310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -05845421 500.67117310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -05845422 500.67117310 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -05845423 500.67123413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -05845424 500.67123413 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -05845425 500.67129517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -05845426 500.67129517 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -05845427 500.67132568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -05845428 500.67132568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -05845429 500.67132568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -05845430 500.67132568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -05845431 500.67138672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -05845432 500.67138672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -05845433 500.67144775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -05845434 500.67144775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -05845435 500.67147827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -05845436 500.67147827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -05845437 500.67147827 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -05845438 500.67153931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -05845439 500.67153931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -05845440 500.67153931 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -05845441 500.67160034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -05845442 500.67160034 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -05845443 500.67163086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -05845444 500.67163086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -05845445 500.67169189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -05845446 500.67169189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -05845447 500.67169189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -05845448 500.67169189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -05845449 500.67175293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -05845450 500.67175293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -05845451 500.67178345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -05845452 500.67178345 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -05845453 500.67184448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -05845454 500.67184448 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -05845455 500.67190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -05845456 500.67190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -05845457 500.67190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -05845458 500.67190552 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -05863383 500.93179321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a8 -05863384 500.93179321 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a8 -05863385 500.93185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -05863386 500.93185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -05863387 500.93185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -05863388 500.93185425 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -05863389 500.93188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -05863390 500.93188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -05863391 500.93188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -05863392 500.93188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -05863393 500.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -05863394 500.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -05863395 500.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -05863396 500.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -05863397 500.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -05863398 500.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -05863399 500.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -05863400 500.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -05863401 500.93203735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -05863402 500.93203735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -05863403 500.93203735 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -05863404 500.93209839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -05863405 500.93209839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -05863406 500.93209839 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -05863407 500.93215942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -05863408 500.93215942 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -05863409 500.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -05863410 500.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -05863411 500.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -05863412 500.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -05863413 500.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -05863414 500.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -05863415 500.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -05863416 500.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -05863417 500.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -05863418 500.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9b8 -05863419 500.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -05863420 500.93234253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9c8 -05863421 500.93234253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -05863422 500.93234253 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9d8 -05863423 500.93240356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -05863424 500.93240356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9e8 -05863425 500.93240356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -05863426 500.93240356 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9f8 -05868693 501.00839233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e98 -05868694 501.00839233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e98 -05868695 501.00839233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea8 -05868696 501.00839233 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea8 -05868697 501.00842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb8 -05868698 501.00842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45eb8 -05868699 501.00842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec8 -05868700 501.00842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ec8 -05868701 501.00848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed8 -05868702 501.00848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ed8 -05868703 501.00848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee8 -05868704 501.00848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ee8 -05868705 501.00854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef8 -05868706 501.00854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ef8 -05868707 501.00854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f08 -05868708 501.00857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f08 -05868709 501.00857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f18 -05868710 501.00857544 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f18 -05868711 501.00863647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f28 -05868712 501.00863647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f28 -05868713 501.00863647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f38 -05868714 501.00863647 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f38 -05868715 501.00869751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f48 -05868716 501.00869751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f48 -05868717 501.00869751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f58 -05868718 501.00869751 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f58 -05868719 501.00872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f68 -05868720 501.00872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f68 -05868721 501.00872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f78 -05868722 501.00872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f78 -05868723 501.00878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f88 -05868724 501.00878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f88 -05868725 501.00878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f98 -05868726 501.00878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f98 -05868727 501.00885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa8 -05868728 501.00885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fa8 -05868729 501.00885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb8 -05868730 501.00891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fb8 -05868731 501.00891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc8 -05868732 501.00891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fc8 -05868733 501.00894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd8 -05868734 501.00894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fd8 -05868735 501.00894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe8 -05868736 501.00894165 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45fe8 -05874749 501.09588623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd8 -05874750 501.09588623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bd8 -05874751 501.09594727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be8 -05874752 501.09594727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51be8 -05874753 501.09594727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf8 -05874754 501.09594727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51bf8 -05874755 501.09597778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c08 -05874756 501.09597778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c08 -05874757 501.09597778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c18 -05874758 501.09597778 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c18 -05874759 501.09603882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c28 -05874760 501.09603882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c28 -05874761 501.09603882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c38 -05874762 501.09603882 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c38 -05874763 501.09609985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c48 -05874764 501.09609985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c48 -05874765 501.09609985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c58 -05874766 501.09609985 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c58 -05874767 501.09619141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c68 -05874768 501.09619141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c68 -05874769 501.09619141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c78 -05874770 501.09619141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c78 -05874771 501.09625244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c88 -05874772 501.09625244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c88 -05874773 501.09625244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c98 -05874774 501.09625244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c98 -05874775 501.09628296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca8 -05874776 501.09628296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ca8 -05874777 501.09628296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb8 -05874778 501.09628296 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cb8 -05874779 501.09634399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc8 -05874780 501.09634399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cc8 -05874781 501.09634399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd8 -05874782 501.09634399 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cd8 -05874783 501.09640503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -05874784 501.09640503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -05874785 501.09640503 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -05874786 501.09643555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -05874787 501.09643555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -05874788 501.09643555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -05874789 501.09649658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -05874790 501.09649658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -05874791 501.09649658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -05874792 501.09649658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -05875305 501.21789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -05875306 501.80352783 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05875307 501.82379150 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05875308 501.82379150 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05875309 502.34515381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05875310 502.34521484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05875311 502.34527588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05875312 502.34527588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05875313 502.34536743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05875314 502.34536743 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05875315 502.34545898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05875316 502.34545898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05875317 503.82550049 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05875318 503.84527588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05875319 503.84527588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05875320 504.45428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05875321 504.45428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05875322 504.45428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05875323 504.45428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05875324 504.45434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05875325 504.45434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05875326 504.45434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05875327 504.45434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05875328 504.45440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05875329 504.45440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05875330 504.45440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05875331 504.45440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05875332 504.45443726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05875333 504.45443726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05875334 504.45443726 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05875335 504.45449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05875336 504.45449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05875337 504.45449829 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05875338 504.45455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05875339 504.45455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05875340 504.45455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05875341 504.45455933 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05875342 504.45458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05875343 504.45458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05875344 504.45458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05875345 504.45458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05875346 504.45465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05875347 504.45465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05875348 504.45465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05875349 504.45465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05875350 504.45471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05875351 504.45471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05875352 504.45471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05875353 504.45471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05875354 504.45477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05875355 504.45477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05875356 504.45477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05875357 504.45477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05875358 504.45480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05875359 504.45480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05875360 504.45480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05875361 504.45480347 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05875362 504.45486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05875363 504.45486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05875364 504.45486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05875365 504.45486450 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05875366 504.45492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05875367 504.45492554 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05875368 504.45495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05875369 504.45495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05875370 504.45495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05875371 504.45495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05875372 504.45501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05875373 504.45501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05875374 504.45501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05875375 504.45501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05875376 504.45507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05875377 504.45507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05875378 504.45507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05875379 504.45507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05875380 504.45510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05875381 504.45510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05875382 504.45510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05875383 504.45510864 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05875384 504.45516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05875385 504.45516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05875386 504.45516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05875387 504.45516968 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05875388 504.45523071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05875389 504.45523071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05875390 504.45523071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05875391 504.45523071 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05875392 504.45526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05875393 504.45526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05875394 504.45532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05875395 504.45532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05875396 504.45532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05875397 504.45532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05875398 504.45538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05875399 504.45538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05875400 504.45538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05875401 504.45538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05875402 504.45541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05875403 504.45541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05875404 504.45541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05875405 504.45541382 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05875406 504.45547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05875407 504.45547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05875408 504.45547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05875409 504.45547485 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -05875410 504.45553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05875411 504.45553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -05875412 504.45553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05875413 504.45553589 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -05875414 504.45556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05875415 504.45556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -05875416 504.45556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05875417 504.45562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -05875418 504.45562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05875419 504.45562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -05875420 504.45568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05875421 504.45568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -05875422 504.45568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05875423 504.45568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -05875424 504.45571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05875425 504.45571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -05875426 504.45571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05875427 504.45571899 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -05875428 504.45578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05875429 504.45578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -05875430 504.45578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05875431 504.45578003 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -05875432 504.45584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05875433 504.45584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -05875434 504.45584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05875435 504.45584106 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -05875436 504.45587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05875437 504.45587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -05875438 504.45587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05875439 504.45587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -05875440 504.45593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05875441 504.45593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -05875442 504.45593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05875443 504.45593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -05875444 504.45599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05875445 504.45599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -05875446 504.45602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05875447 504.45602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -05875448 504.45602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05875449 504.45602417 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -05875450 504.45608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05875451 504.45608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -05875452 504.45608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05875453 504.45608521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -05875454 504.45614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05875455 504.45614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -05875456 504.45614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05875457 504.45614624 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -05875458 504.45617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05875459 504.45617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -05875460 504.45623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05875461 504.45623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -05875462 504.45623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05875463 504.45623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -05875464 504.45629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05875465 504.45629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -05875466 504.45629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05875467 504.45629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -05875468 504.45635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05875469 504.45635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -05875470 504.45635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05875471 504.45635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -05875472 504.45639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05875473 504.45639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -05875474 504.45639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05875475 504.45639038 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -05875476 504.45645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05875477 504.45645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -05875478 504.45645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05875479 504.45645142 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -05875480 504.45651245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05875481 504.45651245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -05875482 504.45651245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05875483 504.45651245 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -05875484 504.45654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05875485 504.45654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -05875486 504.45654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05875487 504.45654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -05875488 504.45660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05875489 504.45660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -05875490 504.45660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05875491 504.45660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -05875492 504.45666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05875493 504.45666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -05875494 504.45666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05875495 504.45669556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -05875496 504.45669556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05875497 504.45669556 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -05875498 504.45675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05875499 504.45675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -05875500 504.45675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05875501 504.45675659 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -05875502 504.45681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05875503 504.45681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -05875504 504.45681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05875505 504.45681763 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -05875506 504.45684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05875507 504.45684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -05875508 504.45684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05875509 504.45684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -05875510 504.45690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05875511 504.45690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -05875512 504.45690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05875513 504.45690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -05875514 504.45697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05875515 504.45697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -05875516 504.45697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05875517 504.45697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -05875518 504.45700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05875519 504.45700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -05875520 504.45700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05875521 504.45700073 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -05875522 504.45706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05875523 504.45706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -05875524 504.45706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05875525 504.45706177 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -05875526 504.45712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05875527 504.45712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -05875528 504.45712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05875529 504.45712280 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -05875530 504.45715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05875531 504.45715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -05875532 504.45715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05875533 504.45721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -05875534 504.45721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05875535 504.45721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -05875536 504.45727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05875537 504.45727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -05875538 504.45727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05875539 504.45727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -05875540 504.45730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05875541 504.45730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -05875542 504.45730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05875543 504.45730591 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -05875544 504.45736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05875545 504.45736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -05875546 504.45736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05875547 504.45736694 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -05875548 504.45742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05875549 504.45742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -05875550 504.45742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05875551 504.45742798 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -05875552 504.45745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05875553 504.45745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -05875554 504.45745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05875555 504.45745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -05875556 504.45751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05875557 504.45751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -05875558 504.45751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05875559 504.45751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -05875560 504.45758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05875561 504.45758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -05875562 504.45758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05875563 504.45758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -05875564 504.45761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05875565 504.45761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -05875566 504.45761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05875567 504.45761108 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -05875568 504.45767212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05875569 504.45767212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -05875570 504.45767212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05875571 504.45767212 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -05875572 504.45773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05875573 504.45773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -05875574 504.45773315 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05875575 504.45779419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -05875576 504.45779419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05875577 504.45779419 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -05875578 504.45782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05875579 504.45782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -05875580 504.45782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05875581 504.45782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -05875582 504.45788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05875583 504.45788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -05875584 504.45788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05875585 504.45788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -05875586 504.45794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05875587 504.45794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -05875588 504.45794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05875589 504.45794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -05875590 504.45797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05875591 504.45797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -05875592 504.45797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05875593 504.45797729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -05875594 504.45803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05875595 504.45803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -05875596 504.45803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05875597 504.45803833 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -05875598 504.45809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05875599 504.45809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -05875600 504.45809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05875601 504.45809937 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -05875602 504.45812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05875603 504.45812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -05875604 504.45812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05875605 504.45812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -05875606 504.45819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05875607 504.45819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -05875608 504.45819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05875609 504.45819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -05875610 504.45825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05875611 504.45825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -05875612 504.45825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05875613 504.45825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -05875614 504.45828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05875615 504.45828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -05875616 504.45828247 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05875617 504.45834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -05875618 504.45834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05875619 504.45834351 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -05875620 504.45840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05875621 504.45840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -05875622 504.45840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05875623 504.45840454 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -05875624 504.45843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05875625 504.45843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -05875626 504.45843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05875627 504.45843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -05875628 504.45849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05875629 504.45849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -05875630 504.45849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05875631 504.45849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -05875632 504.45855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05875633 504.45855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -05875634 504.45855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05875635 504.45855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -05875636 504.45858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05875637 504.45858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -05875638 504.45858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05875639 504.45858765 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -05875640 504.45864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05875641 504.45864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -05875642 504.45864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05875643 504.45864868 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -05875644 504.45870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05875645 504.45870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -05875646 504.45870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05875647 504.45870972 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -05875648 504.45874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05875649 504.45874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -05875650 504.45874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05875651 504.45874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -05875652 504.45880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05875653 504.45880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -05875654 504.45880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05875655 504.45880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -05875656 504.45886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05875657 504.45886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -05875658 504.45886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05875659 504.45889282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -05875660 504.45889282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05875661 504.45889282 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -05875662 504.45895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05875663 504.45895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -05875664 504.45895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05875665 504.45895386 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -05875666 504.45901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05875667 504.45901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -05875668 504.45901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05875669 504.45901489 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -05875670 504.45904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05875671 504.45904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -05875672 504.45904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05875673 504.45904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -05875674 504.45910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05875675 504.45910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -05875676 504.45910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05875677 504.45910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -05875678 504.45916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05875679 504.45916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -05875680 504.45916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05875681 504.45916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -05875682 504.45919800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05875683 504.45919800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -05875684 504.45919800 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05875685 504.45925903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -05875686 504.45925903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05875687 504.45925903 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -05875688 504.45932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05875689 504.45932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -05875690 504.45932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05875691 504.45932007 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -05875692 504.45938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05875693 504.45938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -05875694 504.45938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05875695 504.45938110 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -05875696 504.45941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05875697 504.45941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -05875698 504.45941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05875699 504.45941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -05875700 504.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05875701 504.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -05875702 504.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05875703 504.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -05875704 504.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05875705 504.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -05875706 504.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05875707 504.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -05875708 504.45956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05875709 504.45956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -05875710 504.45956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05875711 504.45956421 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -05875712 504.45962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05875713 504.45962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -05875714 504.45962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05875715 504.45962524 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -05875716 504.45968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05875717 504.45968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -05875718 504.45968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05875719 504.45968628 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -05875720 504.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05875721 504.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -05875722 504.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05875723 504.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -05875724 504.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05875725 504.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -05875726 504.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05875727 504.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -05875728 504.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05875729 504.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -05875730 504.45986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05875731 504.45986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -05875732 504.45986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05875733 504.45986938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -05875734 504.45993042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05875735 504.45993042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -05875736 504.45993042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05875737 504.45993042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -05875738 504.45999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05875739 504.45999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -05875740 504.45999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05875741 504.45999146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -05875742 504.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05875743 504.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -05875744 504.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05875745 504.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -05875746 504.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05875747 504.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -05875748 504.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05875749 504.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -05875750 504.46014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05875751 504.46014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -05875752 504.46014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05875753 504.46014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -05875754 504.46017456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05875755 504.46017456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -05875756 504.46023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05875757 504.46023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -05875758 504.46023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05875759 504.46023560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -05875760 504.46029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05875761 504.46029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -05875762 504.46029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05875763 504.46029663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -05875764 504.46032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05875765 504.46032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -05875766 504.46032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05875767 504.46032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -05875768 504.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05875769 504.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -05875770 504.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05875771 504.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -05875772 504.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05875773 504.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -05875774 504.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05875775 504.46047974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -05875776 504.46047974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05875777 504.46047974 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -05875778 504.46054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05875779 504.46054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -05875780 504.46054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05875781 504.46054077 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -05875782 504.46060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05875783 504.46060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -05875784 504.46060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05875785 504.46060181 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -05875786 504.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05875787 504.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -05875788 504.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05875789 504.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -05875790 504.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05875791 504.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -05875792 504.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05875793 504.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -05875794 504.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05875795 504.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -05875796 504.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05875797 504.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -05875798 504.46078491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05875799 504.46078491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -05875800 504.46078491 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05875801 504.46084595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -05875802 504.46084595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05875803 504.46084595 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -05875804 504.46090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05875805 504.46090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -05875806 504.46090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05875807 504.46090698 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -05875808 504.46096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05875809 504.46096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -05875810 504.46096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05875811 504.46096802 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -05875812 504.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05875813 504.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -05875814 504.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05875815 504.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -05875816 504.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05875817 504.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -05875818 504.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05875819 504.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -05875820 504.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05875821 504.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -05875822 504.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05875823 504.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -05875824 504.46115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05875825 504.46115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -05875826 504.46115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05875827 504.46115112 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -05875828 504.46121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05875829 504.46121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -05875830 504.46121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05875831 504.46121216 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -05875832 504.46127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05875833 504.46127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -05875834 504.46127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05875835 504.46127319 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -05875836 504.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05875837 504.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -05875838 504.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05875839 504.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -05875840 504.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05875841 504.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -05875842 504.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05875843 504.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -05875844 504.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05875845 504.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -05875846 504.46145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05875847 504.46145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -05875848 504.46145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05875849 504.46145630 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -05875850 504.46151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05875851 504.46151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -05875852 504.46151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05875853 504.46151733 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -05875854 504.46157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05875855 504.46157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -05875856 504.46157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05875857 504.46157837 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -05875858 504.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05875859 504.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -05875860 504.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05875861 504.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -05875862 504.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05875863 504.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -05875864 504.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05875865 504.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -05875866 504.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05875867 504.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -05875868 504.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05875869 504.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -05875870 504.46176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05875871 504.46176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -05875872 504.46176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05875873 504.46176147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -05875874 504.46182251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05875875 504.46182251 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -05875876 504.46188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05875877 504.46188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -05875878 504.46188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05875879 504.46188354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -05875880 504.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05875881 504.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -05875882 504.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05875883 504.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -05875884 504.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05875885 504.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -05875886 504.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05875887 504.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -05875888 504.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05875889 504.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -05875890 504.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05875891 504.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -05875892 504.46206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05875893 504.46206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -05875894 504.46206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05875895 504.46206665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -05875896 504.46212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05875897 504.46212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -05875898 504.46212769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05875899 504.46218872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -05875900 504.46218872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05875901 504.46218872 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -05875902 504.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05875903 504.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -05875904 504.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05875905 504.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -05875906 504.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05875907 504.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -05875908 504.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05875909 504.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -05875910 504.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05875911 504.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -05875912 504.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05875913 504.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -05875914 504.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05875915 504.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -05875916 504.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05875917 504.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -05875918 504.46243286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05875919 504.46243286 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -05875920 504.46249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05875921 504.46249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -05875922 504.46249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05875923 504.46249390 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -05875924 504.46255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05875925 504.46255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -05875926 504.46255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05875927 504.46255493 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -05875928 504.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05875929 504.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -05875930 504.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05875931 504.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -05875932 504.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05875933 504.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -05875934 504.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05875935 504.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -05875936 504.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05875937 504.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -05875938 504.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05875939 504.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -05875940 504.46273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05875941 504.46273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -05875942 504.46273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05875943 504.46273804 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -05875944 504.46279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05875945 504.46279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -05875946 504.46279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05875947 504.46279907 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -05875948 504.46286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05875949 504.46286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -05875950 504.46286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05875951 504.46286011 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -05875952 504.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05875953 504.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -05875954 504.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05875955 504.46295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -05875956 504.46295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05875957 504.46295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -05875958 504.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05875959 504.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -05875960 504.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05875961 504.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -05875962 504.46304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05875963 504.46304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -05875964 504.46304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05875965 504.46304321 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -05875966 504.46310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05875967 504.46310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -05875968 504.46310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05875969 504.46310425 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -05875970 504.46316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05875971 504.46316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -05875972 504.46316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05875973 504.46316528 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -05875974 504.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05875975 504.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -05875976 504.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05875977 504.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -05875978 504.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05875979 504.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -05875980 504.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05875981 504.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -05875982 504.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05875983 504.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -05875984 504.46334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05875985 504.46334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -05875986 504.46334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05875987 504.46334839 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -05875988 504.46340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05875989 504.46340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -05875990 504.46340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05875991 504.46340942 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -05875992 504.46347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05875993 504.46347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -05875994 504.46347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05875995 504.46347046 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -05875996 504.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05875997 504.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -05875998 504.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05875999 504.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -05876000 504.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05876001 504.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -05876002 504.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05876003 504.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -05876004 504.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05876005 504.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -05876006 504.46365356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05876007 504.46365356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -05876008 504.46365356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05876009 504.46365356 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -05876010 504.46371460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05876011 504.46371460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -05876012 504.46371460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05876013 504.46371460 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -05876014 504.46377563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05876015 504.46377563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -05876016 504.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05876017 504.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -05876018 504.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05876019 504.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -05876020 504.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05876021 504.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -05876022 504.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05876023 504.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -05876024 504.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05876025 504.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -05876026 504.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05876027 504.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -05876028 504.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05876029 504.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -05876030 504.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05876031 504.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -05876032 504.46401978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05876033 504.46401978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -05876034 504.46401978 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05876035 504.46408081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -05876036 504.46408081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05876037 504.46408081 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -05876038 504.46414185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05876039 504.46414185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -05876040 504.46414185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05876041 504.46414185 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -05876042 504.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05876043 504.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -05876044 504.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05876045 504.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -05876046 504.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05876047 504.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -05876048 504.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05876049 504.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -05876050 504.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05876051 504.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -05876052 504.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05876053 504.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -05876054 504.46432495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05876055 504.46432495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -05876056 504.46432495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05876057 504.46432495 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -05876058 504.46438599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05876059 504.46438599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -05876060 504.46438599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05876061 504.46438599 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -05876062 504.46444702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05876063 504.46444702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -05876064 504.46444702 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05876065 504.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -05876066 504.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05876067 504.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -05876068 504.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05876069 504.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -05876070 504.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05876071 504.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -05876072 504.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05876073 504.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -05876074 504.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05876075 504.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -05876076 504.46463013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05876077 504.46463013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -05876078 504.46463013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05876079 504.46463013 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -05876080 504.46469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05876081 504.46469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -05876082 504.46469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05876083 504.46469116 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -05876084 504.46475220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05876085 504.46475220 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -05876086 504.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05876087 504.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -05876088 504.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05876089 504.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -05876090 504.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05876091 504.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -05876092 504.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05876093 504.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -05876094 504.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05876095 504.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -05876096 504.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05876097 504.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -05876098 504.46493530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05876099 504.46493530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -05876100 504.46493530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05876101 504.46493530 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -05876102 504.46499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05876103 504.46499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -05876104 504.46499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05876105 504.46499634 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -05876106 504.46505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05876107 504.46505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -05876108 504.46505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05876109 504.46505737 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -05876110 504.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05876111 504.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -05876112 504.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05876113 504.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -05876114 504.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05876115 504.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -05876116 504.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05876117 504.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -05876118 504.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05876119 504.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -05876120 504.46524048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05876121 504.46524048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -05876122 504.46524048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05876123 504.46524048 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -05876124 504.46530151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05876125 504.46530151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -05876126 504.46530151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05876127 504.46530151 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -05876128 504.46536255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05876129 504.46536255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -05876130 504.46536255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05876131 504.46536255 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -05876132 504.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05876133 504.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -05876134 504.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05876135 504.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -05876136 504.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05876137 504.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -05876138 504.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05876139 504.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -05876140 504.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05876141 504.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -05876142 504.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05876143 504.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -05876144 504.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05876145 504.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -05876146 504.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05876147 504.46560669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -05876148 504.46560669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05876149 504.46560669 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -05876150 504.46566772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05876151 504.46566772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -05876152 504.46566772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05876153 504.46566772 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -05876154 504.46572876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05876155 504.46572876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -05876156 504.46572876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05876157 504.46572876 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -05876158 504.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05876159 504.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -05876160 504.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05876161 504.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -05876162 504.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05876163 504.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -05876164 504.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05876165 504.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -05876166 504.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05876167 504.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -05876168 504.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05876169 504.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -05876170 504.46591187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05876171 504.46591187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -05876172 504.46591187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05876173 504.46591187 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -05876174 504.46597290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05876175 504.46597290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -05876176 504.46597290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05876177 504.46597290 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -05876178 504.46603394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05876179 504.46603394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -05876180 504.46603394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05876181 504.46603394 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -05876182 504.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05876183 504.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -05876184 504.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05876185 504.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -05876186 504.46612549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05876187 504.46612549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -05876188 504.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05876189 504.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -05876190 504.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05876191 504.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -05876192 504.46621704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05876193 504.46621704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -05876194 504.46621704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05876195 504.46621704 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -05876196 504.46627808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05876197 504.46627808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -05876198 504.46627808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05876199 504.46627808 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -05876200 504.46633911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05876201 504.46633911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -05876202 504.46633911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05876203 504.46633911 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -05876204 504.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05876205 504.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -05876206 504.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05876207 504.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -05876208 504.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05876209 504.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -05876210 504.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05876211 504.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -05876212 504.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05876213 504.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -05876214 504.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05876215 504.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -05876216 504.46652222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05876217 504.46652222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -05876218 504.46652222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05876219 504.46652222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -05876220 504.46658325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05876221 504.46658325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -05876222 504.46658325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05876223 504.46664429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -05876224 504.46664429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05876225 504.46664429 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -05876226 504.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05876227 504.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -05876228 504.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05876229 504.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -05876230 504.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05876231 504.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -05876232 504.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05876233 504.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -05876234 504.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05876235 504.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -05876236 504.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05876237 504.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -05876238 504.46682739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05876239 504.46682739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -05876240 504.46682739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05876241 504.46682739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -05876242 504.46688843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05876243 504.46688843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -05876244 504.46688843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05876245 504.46688843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -05876246 504.46694946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05876247 504.46694946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -05876248 504.46694946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05876249 504.46694946 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -05876250 504.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05876251 504.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -05876252 504.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05876253 504.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -05876254 504.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05876255 504.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -05876256 504.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05876257 504.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -05876258 504.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05876259 504.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -05876260 504.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05876261 504.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -05876262 504.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05876263 504.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -05876264 504.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05876265 504.46719360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -05876266 504.46719360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05876267 504.46719360 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -05876268 504.46725464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05876269 504.46725464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -05876270 504.46725464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05876271 504.46725464 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -05876272 504.46731567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05876273 504.46731567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -05876274 504.46731567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05876275 504.46731567 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -05876276 504.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05876277 504.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -05876278 504.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05876279 504.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -05876280 504.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05876281 504.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -05876282 504.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05876283 504.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -05876284 504.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05876285 504.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -05876286 504.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05876287 504.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -05876288 504.46749878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05876289 504.46749878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -05876290 504.46749878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05876291 504.46749878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -05876292 504.46755981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05876293 504.46755981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -05876294 504.46755981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05876295 504.46755981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -05876296 504.46762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05876297 504.46762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -05876298 504.46762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05876299 504.46762085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -05876300 504.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05876301 504.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -05876302 504.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05876303 504.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -05876304 504.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05876305 504.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -05876306 504.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05876307 504.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -05876308 504.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05876309 504.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -05876310 504.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05876311 504.46780396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -05876312 504.46780396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05876313 504.46780396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -05876314 504.46786499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05876315 504.46786499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -05876316 504.46786499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05876317 504.46786499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -05876318 504.46792603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05876319 504.46792603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -05876320 504.46792603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05876321 504.46792603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -05876322 504.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05876323 504.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -05876324 504.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05876325 504.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -05876326 504.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05876327 504.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -05876328 504.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05876329 504.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -05876330 504.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05876331 504.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -05878138 504.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -05878139 504.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -05878140 504.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -05878141 504.49288940 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -05878142 504.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -05878143 504.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -05878144 504.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -05878145 504.49295044 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -05878146 504.49301147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -05878147 504.49301147 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -05878148 504.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -05878149 504.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -05878150 504.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -05878151 504.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -05878152 504.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -05878153 504.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -05878154 504.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -05878155 504.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -05878156 504.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -05878157 504.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -05878158 504.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -05878159 504.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -05878160 504.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -05878161 504.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -05878162 504.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -05878163 504.49319458 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -05878164 504.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -05878165 504.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -05878166 504.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -05878167 504.49325562 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -05878168 504.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -05878169 504.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -05878170 504.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -05878171 504.49331665 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -05878172 504.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -05878173 504.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -05878174 504.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -05878175 504.49337769 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -05878176 504.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -05878177 504.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -05878178 504.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -05878179 504.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -05878180 504.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -05878181 504.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -05883130 504.56115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -05883131 504.56115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10458 -05883132 504.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10468 -05883133 504.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10468 -05883134 504.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10478 -05883135 504.56121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10478 -05883136 504.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10488 -05883137 504.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10488 -05883138 504.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10498 -05883139 504.56124878 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10498 -05883140 504.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a8 -05883141 504.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104a8 -05883142 504.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b8 -05883143 504.56130981 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104b8 -05883144 504.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c8 -05883145 504.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104c8 -05883146 504.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d8 -05883147 504.56137085 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104d8 -05883148 504.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e8 -05883149 504.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104e8 -05883150 504.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f8 -05883151 504.56140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x104f8 -05883152 504.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10508 -05883153 504.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10508 -05883154 504.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10518 -05883155 504.56146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10518 -05883156 504.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10528 -05883157 504.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10528 -05883158 504.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10538 -05883159 504.56152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10538 -05883160 504.56155396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10548 -05883161 504.56155396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10548 -05883162 504.56155396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10558 -05883163 504.56161499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10558 -05883164 504.56161499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10568 -05883165 504.56161499 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10568 -05883166 504.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10578 -05883167 504.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10578 -05883168 504.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10588 -05883169 504.56167603 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10588 -05883170 504.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10598 -05883171 504.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10598 -05883172 504.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a8 -05883173 504.56170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a8 -05888086 504.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f38 -05888087 504.62951660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f38 -05888088 504.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f48 -05888089 504.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f48 -05888090 504.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f58 -05888091 504.62954712 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f58 -05888092 504.62960815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f68 -05888093 504.62960815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f68 -05888094 504.62960815 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f78 -05888095 504.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f78 -05888096 504.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f88 -05888097 504.62966919 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f88 -05888098 504.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f98 -05888099 504.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f98 -05888100 504.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa8 -05888101 504.62969971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fa8 -05888102 504.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb8 -05888103 504.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fb8 -05888104 504.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc8 -05888105 504.62976074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fc8 -05888106 504.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd8 -05888107 504.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fd8 -05888108 504.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe8 -05888109 504.62982178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19fe8 -05888110 504.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff8 -05888111 504.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19ff8 -05888112 504.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a008 -05888113 504.62985229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a008 -05888114 504.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a018 -05888115 504.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a018 -05888116 504.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a028 -05888117 504.62991333 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a028 -05888118 504.62997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a038 -05888119 504.62997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a038 -05888120 504.62997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a048 -05888121 504.62997437 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a048 -05888122 504.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a058 -05888123 504.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a058 -05888124 504.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a068 -05888125 504.63000488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a068 -05888126 504.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a078 -05888127 504.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a078 -05888128 504.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a088 -05888129 504.63006592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a088 -05893298 504.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24218 -05893299 504.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24218 -05893300 504.70199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24228 -05893301 504.70199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24228 -05893302 504.70199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24238 -05893303 504.70199585 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24238 -05893304 504.70205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24248 -05893305 504.70205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24248 -05893306 504.70205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24258 -05893307 504.70205688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24258 -05893308 504.70211792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24268 -05893309 504.70211792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24268 -05893310 504.70211792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24278 -05893311 504.70211792 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24278 -05893312 504.70214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24288 -05893313 504.70214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24288 -05893314 504.70214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24298 -05893315 504.70214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24298 -05893316 504.70220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a8 -05893317 504.70220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242a8 -05893318 504.70220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b8 -05893319 504.70220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242b8 -05893320 504.70227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c8 -05893321 504.70227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c8 -05893322 504.70227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d8 -05893323 504.70227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d8 -05893324 504.70230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e8 -05893325 504.70230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e8 -05893326 504.70230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f8 -05893327 504.70230103 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f8 -05893328 504.70236206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24308 -05893329 504.70236206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24308 -05893330 504.70236206 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24318 -05893331 504.70242310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24318 -05893332 504.70242310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -05893333 504.70242310 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -05893334 504.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -05893335 504.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -05893336 504.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -05893337 504.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -05893338 504.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -05893339 504.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -05893340 504.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -05893341 504.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -05910384 504.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c8 -05910385 504.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457c8 -05910386 504.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d8 -05910387 504.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457d8 -05910388 504.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e8 -05910389 504.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457e8 -05910390 504.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f8 -05910391 504.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x457f8 -05910392 504.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45808 -05910393 504.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45808 -05910394 504.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45818 -05910395 504.93521118 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45818 -05910396 504.93527222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45828 -05910397 504.93527222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45828 -05910398 504.93527222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45838 -05910399 504.93527222 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45838 -05910400 504.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45848 -05910401 504.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45848 -05910402 504.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45858 -05910403 504.93533325 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45858 -05910404 504.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -05910405 504.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -05910406 504.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45878 -05910407 504.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45878 -05910408 504.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45888 -05910409 504.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45888 -05910410 504.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45898 -05910411 504.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45898 -05910412 504.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a8 -05910413 504.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a8 -05910414 504.93548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b8 -05910415 504.93551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b8 -05910416 504.93551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c8 -05910417 504.93551636 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c8 -05910418 504.93557739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d8 -05910419 504.93557739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d8 -05910420 504.93557739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e8 -05910421 504.93557739 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e8 -05910422 504.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f8 -05910423 504.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f8 -05910424 504.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -05910425 504.93563843 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -05910426 504.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -05910427 504.93566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -05914496 504.99111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -05914497 504.99111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -05914498 504.99111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -05914499 504.99111938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -05914500 504.99118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -05914501 504.99118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -05914502 504.99118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -05914503 504.99118042 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -05914504 504.99124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -05914505 504.99124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -05914506 504.99124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d898 -05914507 504.99124146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d898 -05914508 504.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a8 -05914509 504.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a8 -05914510 504.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b8 -05914511 504.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b8 -05914512 504.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c8 -05914513 504.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c8 -05914514 504.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d8 -05914515 504.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d8 -05914516 504.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -05914517 504.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -05914518 504.99142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -05914519 504.99142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -05914520 504.99142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -05914521 504.99142456 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -05914522 504.99148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -05914523 504.99148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -05914524 504.99148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -05914525 504.99148560 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -05914526 504.99154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -05914527 504.99154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -05914528 504.99154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -05914529 504.99154663 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -05914530 504.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -05914531 504.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -05914532 504.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -05914533 504.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -05914534 504.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -05914535 504.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -05914536 504.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -05914537 504.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -05914538 504.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -05914539 504.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -05917214 505.84613037 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05917215 505.86587524 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05917216 505.86587524 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05917217 507.36041260 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05917218 507.36047363 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05917219 507.36050415 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05917220 507.36050415 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -05917221 507.36062622 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05917222 507.36062622 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05917223 507.36071777 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -05917224 507.36071777 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -05917225 507.86709595 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -05917226 507.88919067 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05917227 507.88919067 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -05917228 509.16397095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05917229 509.16397095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -05917230 509.16403198 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05917231 509.16403198 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -05917232 509.16409302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05917233 509.16409302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -05917234 509.16409302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05917235 509.16409302 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -05917236 509.16412354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05917237 509.16412354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -05917238 509.16412354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05917239 509.16412354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -05917240 509.16418457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05917241 509.16418457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -05917242 509.16418457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05917243 509.16418457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -05917244 509.16424561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05917245 509.16424561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -05917246 509.16424561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05917247 509.16424561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -05917248 509.16427612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05917249 509.16427612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -05917250 509.16427612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05917251 509.16427612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -05917252 509.16433716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05917253 509.16433716 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -05917254 509.16439819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05917255 509.16439819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -05917256 509.16439819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05917257 509.16439819 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -05917258 509.16442871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05917259 509.16442871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -05917260 509.16442871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05917261 509.16442871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -05917262 509.16448975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05917263 509.16448975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -05917264 509.16448975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05917265 509.16448975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -05917266 509.16455078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05917267 509.16455078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -05917268 509.16455078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05917269 509.16455078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -05917270 509.16458130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05917271 509.16458130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -05917272 509.16458130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05917273 509.16464233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -05917274 509.16464233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05917275 509.16464233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -05917276 509.16470337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05917277 509.16470337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -05917278 509.16470337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05917279 509.16470337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -05917280 509.16473389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05917281 509.16473389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -05917282 509.16473389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05917283 509.16473389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -05917284 509.16479492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05917285 509.16479492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -05917286 509.16479492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05917287 509.16479492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -05917288 509.16485596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05917289 509.16485596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -05917290 509.16485596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05917291 509.16491699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -05917292 509.16491699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05917293 509.16491699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -05917294 509.16494751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05917295 509.16494751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -05917296 509.16494751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05917297 509.16494751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -05917298 509.16500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05917299 509.16500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -05917300 509.16500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05917301 509.16500854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -05917302 509.16506958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05917303 509.16506958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -05917304 509.16506958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05917305 509.16506958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -05917306 509.16510010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05917307 509.16510010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -05917308 509.16510010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05917309 509.16510010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -05917310 509.16516113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05917311 509.16516113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -05917312 509.16516113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05917313 509.16522217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -05917314 509.16522217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05917315 509.16522217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -05917316 509.16525269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05917317 509.16525269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -05917318 509.16525269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05917319 509.16525269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -05917320 509.16531372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05917321 509.16531372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -05917322 509.16531372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05917323 509.16531372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -05917324 509.16537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05917325 509.16537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -05917326 509.16537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05917327 509.16537476 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -05917328 509.16540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05917329 509.16540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -05917330 509.16540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05917331 509.16540527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -05917332 509.16546631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05917333 509.16546631 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -05917334 509.16552734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05917335 509.16552734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -05917336 509.16552734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05917337 509.16552734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -05917338 509.16555786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05917339 509.16555786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -05917340 509.16555786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05917341 509.16555786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -05917342 509.16561890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05917343 509.16561890 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -05917344 509.16567993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05917345 509.16567993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -05917346 509.16567993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05917347 509.16567993 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -05917348 509.16571045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05917349 509.16571045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -05917350 509.16571045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05917351 509.16571045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -05917352 509.16577148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05917353 509.16577148 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -05917354 509.16583252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05917355 509.16583252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -05917356 509.16583252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05917357 509.16583252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -05917358 509.16586304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05917359 509.16586304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -05917360 509.16586304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05917361 509.16586304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -05917362 509.16592407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05917363 509.16592407 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -05917364 509.16598511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05917365 509.16598511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -05917366 509.16598511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05917367 509.16598511 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -05917368 509.16601563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05917369 509.16601563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -05917370 509.16601563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05917371 509.16601563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -05917372 509.16607666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05917373 509.16607666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -05917374 509.16607666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05917375 509.16607666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -05917376 509.16613770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05917377 509.16613770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -05917378 509.16613770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05917379 509.16613770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -05917380 509.16616821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05917381 509.16616821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -05917382 509.16616821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05917383 509.16622925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -05917384 509.16622925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05917385 509.16622925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -05917386 509.16629028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05917387 509.16629028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -05917388 509.16629028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05917389 509.16629028 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -05917390 509.16632080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05917391 509.16632080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -05917392 509.16632080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05917393 509.16632080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -05917394 509.16638184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05917395 509.16638184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -05917396 509.16638184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05917397 509.16638184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -05917398 509.16644287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05917399 509.16644287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -05917400 509.16644287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05917401 509.16644287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -05917402 509.16650391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05917403 509.16650391 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -05917404 509.16653442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05917405 509.16653442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -05917406 509.16653442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05917407 509.16653442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -05917408 509.16659546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05917409 509.16659546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -05917410 509.16659546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05917411 509.16659546 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -05917412 509.16665649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05917413 509.16665649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -05917414 509.16665649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05917415 509.16665649 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -05917416 509.16668701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05917417 509.16668701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -05917418 509.16668701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05917419 509.16668701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -05917420 509.16674805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05917421 509.16674805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -05917422 509.16674805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05917423 509.16680908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -05917424 509.16680908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05917425 509.16680908 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -05917426 509.16683960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05917427 509.16683960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -05917428 509.16683960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05917429 509.16683960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -05917430 509.16690063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05917431 509.16690063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -05917432 509.16690063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05917433 509.16690063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -05917434 509.16696167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05917435 509.16696167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -05917436 509.16696167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05917437 509.16696167 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -05917438 509.16699219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05917439 509.16699219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -05917440 509.16699219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05917441 509.16699219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -05917442 509.16705322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05917443 509.16705322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -05917444 509.16711426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05917445 509.16711426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -05917446 509.16711426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05917447 509.16711426 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -05917448 509.16714478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05917449 509.16714478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -05917450 509.16714478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05917451 509.16714478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -05917452 509.16720581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05917453 509.16720581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -05917454 509.16720581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05917455 509.16720581 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -05917456 509.16726685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05917457 509.16726685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -05917458 509.16726685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05917459 509.16726685 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -05917460 509.16729736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05917461 509.16729736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -05917462 509.16729736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05917463 509.16735840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -05917464 509.16735840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05917465 509.16735840 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -05917466 509.16741943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05917467 509.16741943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -05917468 509.16741943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05917469 509.16741943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -05917470 509.16744995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05917471 509.16744995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -05917472 509.16744995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05917473 509.16744995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -05917474 509.16751099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05917475 509.16751099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -05917476 509.16751099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05917477 509.16751099 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -05917478 509.16757202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05917479 509.16757202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -05917480 509.16757202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05917481 509.16757202 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -05917482 509.16760254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05917483 509.16760254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -05917484 509.16760254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05917485 509.16766357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -05917486 509.16766357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05917487 509.16766357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -05917488 509.16772461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05917489 509.16772461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -05917490 509.16772461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05917491 509.16772461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -05917492 509.16775513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05917493 509.16775513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -05917494 509.16775513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05917495 509.16775513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -05917496 509.16781616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05917497 509.16781616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -05917498 509.16781616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05917499 509.16781616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -05917500 509.16787720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05917501 509.16787720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -05917502 509.16787720 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05917503 509.16793823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -05917504 509.16793823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05917505 509.16793823 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -05917506 509.16796875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05917507 509.16796875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -05917508 509.16796875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05917509 509.16796875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -05917510 509.16802979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05917511 509.16802979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -05917512 509.16802979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05917513 509.16802979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -05917514 509.16809082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05917515 509.16809082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -05917516 509.16809082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05917517 509.16809082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -05917518 509.16812134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05917519 509.16812134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -05917520 509.16812134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05917521 509.16812134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -05917522 509.16818237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05917523 509.16818237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -05917524 509.16818237 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05917525 509.16824341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -05917526 509.16824341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05917527 509.16824341 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -05917528 509.16827393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05917529 509.16827393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -05917530 509.16827393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05917531 509.16827393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -05917532 509.16833496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05917533 509.16833496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -05917534 509.16833496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05917535 509.16833496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -05917536 509.16839600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05917537 509.16839600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -05917538 509.16839600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05917539 509.16839600 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -05917540 509.16842651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05917541 509.16842651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -05917542 509.16842651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05917543 509.16842651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -05917544 509.16848755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05917545 509.16848755 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -05917546 509.16854858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05917547 509.16854858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -05917548 509.16854858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05917549 509.16854858 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -05917550 509.16857910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05917551 509.16857910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -05917552 509.16857910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05917553 509.16857910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -05917554 509.16864014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05917555 509.16864014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -05917556 509.16864014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05917557 509.16864014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -05917558 509.16870117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05917559 509.16870117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -05917560 509.16870117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05917561 509.16870117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -05917562 509.16873169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05917563 509.16873169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -05917564 509.16873169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05917565 509.16879272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -05917566 509.16879272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05917567 509.16879272 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -05917568 509.16885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05917569 509.16885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -05917570 509.16885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05917571 509.16885376 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -05917572 509.16888428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05917573 509.16888428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -05917574 509.16888428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05917575 509.16888428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -05917576 509.16894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05917577 509.16894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -05917578 509.16894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05917579 509.16894531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -05917580 509.16900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05917581 509.16900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -05917582 509.16900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05917583 509.16900635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -05917584 509.16903687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05917585 509.16903687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -05917586 509.16909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05917587 509.16909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -05917588 509.16909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05917589 509.16909790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -05917590 509.16915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05917591 509.16915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -05917592 509.16915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05917593 509.16915894 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -05917594 509.16918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05917595 509.16918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -05917596 509.16918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05917597 509.16918945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -05917598 509.16925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05917599 509.16925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -05917600 509.16925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05917601 509.16925049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -05917602 509.16931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05917603 509.16931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -05917604 509.16931152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05917605 509.16934204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -05917606 509.16934204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05917607 509.16934204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -05917608 509.16940308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05917609 509.16940308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -05917610 509.16940308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05917611 509.16940308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -05917612 509.16946411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05917613 509.16946411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -05917614 509.16946411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05917615 509.16946411 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -05917616 509.16952515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05917617 509.16952515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -05917618 509.16952515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05917619 509.16952515 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -05917620 509.16955566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05917621 509.16955566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -05917622 509.16955566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05917623 509.16955566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -05917624 509.16961670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05917625 509.16961670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -05917626 509.16967773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05917627 509.16967773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -05917628 509.16967773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05917629 509.16967773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -05917630 509.16970825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05917631 509.16970825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -05917632 509.16970825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05917633 509.16970825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -05917634 509.16976929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05917635 509.16976929 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -05917636 509.16986084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05917637 509.16986084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -05917638 509.16986084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05917639 509.16986084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -05917640 509.16992188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05917641 509.16992188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -05917642 509.16992188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05917643 509.16992188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -05917644 509.16998291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05917645 509.16998291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -05917646 509.17001343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05917647 509.17001343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -05917648 509.17001343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05917649 509.17001343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -05917650 509.17007446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05917651 509.17007446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -05917652 509.17007446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05917653 509.17007446 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -05917654 509.17013550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05917655 509.17013550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -05917656 509.17013550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05917657 509.17013550 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -05917658 509.17016602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05917659 509.17016602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -05917660 509.17016602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05917661 509.17016602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -05917662 509.17022705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05917663 509.17022705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -05917664 509.17022705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05917665 509.17028809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -05917666 509.17028809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05917667 509.17028809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -05917668 509.17031860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -05917669 509.17031860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -05917670 509.17031860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -05917671 509.17031860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -05917672 509.17037964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -05917673 509.17037964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -05917674 509.17037964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -05917675 509.17037964 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -05917676 509.17044067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -05917677 509.17044067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -05917678 509.17044067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -05917679 509.17044067 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -05917680 509.17047119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -05917681 509.17047119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -05917682 509.17047119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -05917683 509.17047119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -05917684 509.17053223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -05917685 509.17053223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -05917686 509.17059326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -05917687 509.17059326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -05917688 509.17059326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -05917689 509.17059326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -05917690 509.17062378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -05917691 509.17062378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -05917692 509.17062378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -05917693 509.17062378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -05917694 509.17068481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -05917695 509.17068481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -05917696 509.17068481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -05917697 509.17068481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -05917698 509.17074585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -05917699 509.17074585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -05917700 509.17074585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -05917701 509.17074585 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -05917702 509.17077637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -05917703 509.17077637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -05917704 509.17077637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -05917705 509.17083740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -05917706 509.17083740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -05917707 509.17083740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -05917708 509.17089844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -05917709 509.17089844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -05917710 509.17089844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -05917711 509.17089844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -05917712 509.17092896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -05917713 509.17092896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -05917714 509.17092896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -05917715 509.17092896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -05917716 509.17098999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -05917717 509.17098999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -05917718 509.17098999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -05917719 509.17098999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -05917720 509.17105103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -05917721 509.17105103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -05917722 509.17105103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -05917723 509.17105103 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -05917724 509.17111206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -05917725 509.17111206 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -05917726 509.17114258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -05917727 509.17114258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -05917728 509.17114258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -05917729 509.17114258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -05917730 509.17120361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -05917731 509.17120361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -05917732 509.17120361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -05917733 509.17120361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -05917734 509.17126465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -05917735 509.17126465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -05917736 509.17126465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -05917737 509.17126465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -05917738 509.17129517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -05917739 509.17129517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -05917740 509.17129517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -05917741 509.17129517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -05917742 509.17135620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -05917743 509.17135620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -05917744 509.17135620 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -05917745 509.17141724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -05917746 509.17141724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -05917747 509.17141724 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -05917748 509.17144775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -05917749 509.17144775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -05917750 509.17144775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -05917751 509.17144775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -05917752 509.17150879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -05917753 509.17150879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -05917754 509.17150879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -05917755 509.17150879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -05917756 509.17156982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -05917757 509.17156982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -05917758 509.17156982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -05917759 509.17156982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -05917760 509.17160034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -05917761 509.17160034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -05917762 509.17160034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -05917763 509.17160034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -05917764 509.17166138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -05917765 509.17166138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -05917766 509.17166138 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -05917767 509.17172241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -05917768 509.17172241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -05917769 509.17172241 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -05917770 509.17175293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -05917771 509.17175293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -05917772 509.17175293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -05917773 509.17175293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -05917774 509.17181396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -05917775 509.17181396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -05917776 509.17181396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -05917777 509.17181396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -05917778 509.17187500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -05917779 509.17187500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -05917780 509.17190552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -05917781 509.17190552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -05917782 509.17190552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -05917783 509.17190552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -05917784 509.17196655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -05917785 509.17196655 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -05917786 509.17202759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -05917787 509.17202759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -05917788 509.17202759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -05917789 509.17202759 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -05917790 509.17205811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -05917791 509.17205811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -05917792 509.17211914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -05917793 509.17211914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -05917794 509.17211914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -05917795 509.17211914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -05917796 509.17218018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -05917797 509.17218018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -05917798 509.17218018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -05917799 509.17218018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -05917800 509.17221069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -05917801 509.17221069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -05917802 509.17227173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -05917803 509.17227173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -05917804 509.17227173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -05917805 509.17227173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -05917806 509.17233276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -05917807 509.17233276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -05917808 509.17233276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -05917809 509.17233276 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -05917810 509.17236328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -05917811 509.17236328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -05917812 509.17236328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -05917813 509.17236328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -05917814 509.17242432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -05917815 509.17242432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -05917816 509.17242432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -05917817 509.17242432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -05917818 509.17248535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -05917819 509.17248535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -05917820 509.17248535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -05917821 509.17254639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -05917822 509.17254639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -05917823 509.17254639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -05917824 509.17257690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -05917825 509.17257690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -05917826 509.17257690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -05917827 509.17257690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -05917828 509.17263794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -05917829 509.17263794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -05917830 509.17263794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -05917831 509.17263794 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -05917832 509.17269897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -05917833 509.17269897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -05917834 509.17269897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -05917835 509.17269897 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -05917836 509.17272949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -05917837 509.17272949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -05917838 509.17272949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -05917839 509.17272949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -05917840 509.17279053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -05917841 509.17279053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -05917842 509.17285156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -05917843 509.17285156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -05917844 509.17285156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -05917845 509.17285156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -05917846 509.17288208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -05917847 509.17288208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -05917848 509.17288208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -05917849 509.17288208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -05917850 509.17294312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -05917851 509.17294312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -05917852 509.17294312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -05917853 509.17294312 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -05917854 509.17300415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -05917855 509.17300415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -05917856 509.17300415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -05917857 509.17300415 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -05917858 509.17303467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -05917859 509.17303467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -05917860 509.17309570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -05917861 509.17309570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -05917862 509.17309570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -05917863 509.17309570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -05917864 509.17315674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -05917865 509.17315674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -05917866 509.17315674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -05917867 509.17315674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -05917868 509.17318726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -05917869 509.17318726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -05917870 509.17318726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -05917871 509.17318726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -05917872 509.17324829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -05917873 509.17324829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -05917874 509.17324829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -05917875 509.17324829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -05917876 509.17330933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -05917877 509.17330933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -05917878 509.17330933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -05917879 509.17330933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -05917880 509.17333984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -05917881 509.17333984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -05917882 509.17340088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -05917883 509.17340088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -05917884 509.17340088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -05917885 509.17340088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -05917886 509.17346191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -05917887 509.17346191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -05917888 509.17346191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -05917889 509.17346191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -05917890 509.17349243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -05917891 509.17349243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -05917892 509.17349243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -05917893 509.17349243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -05917894 509.17355347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -05917895 509.17355347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -05917896 509.17355347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -05917897 509.17355347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -05917898 509.17361450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -05917899 509.17361450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -05917900 509.17361450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -05917901 509.17364502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -05917902 509.17364502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -05917903 509.17364502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -05917904 509.17370605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -05917905 509.17370605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -05917906 509.17370605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -05917907 509.17370605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -05917908 509.17376709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -05917909 509.17376709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -05917910 509.17376709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -05917911 509.17376709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -05917912 509.17379761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -05917913 509.17379761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -05917914 509.17379761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -05917915 509.17379761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -05917916 509.17385864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -05917917 509.17385864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -05917918 509.17385864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -05917919 509.17385864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -05917920 509.17391968 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -05917921 509.17391968 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -05917922 509.17395020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -05917923 509.17395020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -05917924 509.17395020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -05917925 509.17395020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -05917926 509.17401123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -05917927 509.17401123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -05917928 509.17401123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -05917929 509.17401123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -05917930 509.17407227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -05917931 509.17407227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -05917932 509.17407227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -05917933 509.17407227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -05917934 509.17413330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -05917935 509.17413330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -05917936 509.17413330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -05917937 509.17413330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -05917938 509.17416382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -05917939 509.17416382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -05917940 509.17416382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -05917941 509.17422485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -05917942 509.17422485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -05917943 509.17422485 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -05917944 509.17428589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -05917945 509.17428589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -05917946 509.17428589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -05917947 509.17428589 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -05917948 509.17431641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -05917949 509.17431641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -05917950 509.17431641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -05917951 509.17431641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -05917952 509.17437744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -05917953 509.17437744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -05917954 509.17437744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -05917955 509.17437744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -05917956 509.17443848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -05917957 509.17443848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -05917958 509.17443848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -05917959 509.17443848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -05917960 509.17446899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -05917961 509.17446899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -05917962 509.17453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -05917963 509.17453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -05917964 509.17453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -05917965 509.17453003 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -05917966 509.17459106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -05917967 509.17459106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -05917968 509.17459106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -05917969 509.17459106 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -05917970 509.17462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -05917971 509.17462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -05917972 509.17462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -05917973 509.17462158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -05917974 509.17468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -05917975 509.17468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -05917976 509.17468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -05917977 509.17468262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -05917978 509.17474365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -05917979 509.17474365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -05917980 509.17474365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -05917981 509.17477417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -05917982 509.17477417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -05917983 509.17477417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -05917984 509.17483521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -05917985 509.17483521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -05917986 509.17483521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -05917987 509.17483521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -05917988 509.17489624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -05917989 509.17489624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -05917990 509.17489624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -05917991 509.17489624 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -05917992 509.17492676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -05917993 509.17492676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -05917994 509.17492676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -05917995 509.17492676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -05917996 509.17498779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -05917997 509.17498779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -05917998 509.17498779 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -05917999 509.17504883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -05918000 509.17504883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -05918001 509.17504883 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -05918002 509.17507935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -05918003 509.17507935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -05918004 509.17507935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -05918005 509.17507935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -05918006 509.17514038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -05918007 509.17514038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -05918008 509.17514038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -05918009 509.17514038 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -05918010 509.17520142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -05918011 509.17520142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -05918012 509.17520142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -05918013 509.17520142 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -05918014 509.17523193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -05918015 509.17523193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -05918016 509.17523193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -05918017 509.17523193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -05918018 509.17529297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -05918019 509.17529297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -05918020 509.17535400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -05918021 509.17535400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -05918022 509.17535400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -05918023 509.17535400 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -05918024 509.17538452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -05918025 509.17538452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -05918026 509.17538452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -05918027 509.17538452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -05918028 509.17544556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -05918029 509.17544556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -05918030 509.17544556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -05918031 509.17544556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -05918032 509.17550659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -05918033 509.17550659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -05918034 509.17550659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -05918035 509.17550659 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -05918036 509.17553711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -05918037 509.17553711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -05918038 509.17553711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -05918039 509.17559814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -05918040 509.17559814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -05918041 509.17559814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -05918042 509.17565918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -05918043 509.17565918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -05918044 509.17565918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -05918045 509.17565918 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -05918046 509.17572021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -05918047 509.17572021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -05918048 509.17572021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -05918049 509.17572021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -05918050 509.17575073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -05918051 509.17575073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -05918052 509.17575073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -05918053 509.17575073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -05918054 509.17581177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -05918055 509.17581177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -05918056 509.17581177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -05918057 509.17581177 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -05918058 509.17587280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -05918059 509.17587280 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -05918060 509.17590332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -05918061 509.17590332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -05918062 509.17590332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -05918063 509.17590332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -05918064 509.17596436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -05918065 509.17596436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -05918066 509.17596436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -05918067 509.17596436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -05918068 509.17602539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -05918069 509.17602539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -05918070 509.17602539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -05918071 509.17602539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -05918072 509.17605591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -05918073 509.17605591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -05918074 509.17605591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -05918075 509.17605591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -05918076 509.17611694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -05918077 509.17611694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -05918078 509.17611694 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -05918079 509.17617798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -05918080 509.17617798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -05918081 509.17617798 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -05918082 509.17620850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -05918083 509.17620850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -05918084 509.17620850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -05918085 509.17620850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -05918086 509.17626953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -05918087 509.17626953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -05918088 509.17626953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -05918089 509.17626953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -05918090 509.17633057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -05918091 509.17633057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -05918092 509.17633057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -05918093 509.17633057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -05918094 509.17636108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -05918095 509.17636108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -05918096 509.17636108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -05918097 509.17642212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -05918098 509.17642212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -05918099 509.17642212 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -05918100 509.17648315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -05918101 509.17648315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -05918102 509.17648315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -05918103 509.17648315 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -05918104 509.17651367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -05918105 509.17651367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -05918106 509.17651367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -05918107 509.17651367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -05918108 509.17657471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -05918109 509.17657471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -05918110 509.17657471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -05918111 509.17657471 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -05918112 509.17663574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -05918113 509.17663574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -05918114 509.17663574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -05918115 509.17663574 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -05918116 509.17666626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -05918117 509.17666626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -05918118 509.17672729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -05918119 509.17672729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -05918120 509.17672729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -05918121 509.17672729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -05918122 509.17678833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -05918123 509.17678833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -05918124 509.17678833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -05918125 509.17678833 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -05918126 509.17681885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -05918127 509.17681885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -05918128 509.17681885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -05918129 509.17681885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -05918130 509.17687988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -05918131 509.17687988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -05918132 509.17687988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -05918133 509.17687988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -05918134 509.17694092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -05918135 509.17694092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -05918136 509.17694092 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -05918137 509.17697144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -05918138 509.17697144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -05918139 509.17697144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -05918140 509.17703247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -05918141 509.17703247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -05918142 509.17703247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -05918143 509.17703247 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -05918144 509.17709351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -05918145 509.17709351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -05918146 509.17709351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -05918147 509.17709351 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -05918148 509.17712402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -05918149 509.17712402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -05918150 509.17712402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -05918151 509.17712402 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -05918152 509.17718506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -05918153 509.17718506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -05918154 509.17718506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -05918155 509.17718506 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -05918156 509.17724609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -05918157 509.17724609 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -05918158 509.17730713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -05918159 509.17730713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -05918160 509.17730713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -05918161 509.17730713 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -05918162 509.17733765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -05918163 509.17733765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -05918164 509.17733765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -05918165 509.17733765 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -05918166 509.17739868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -05918167 509.17739868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -05918168 509.17739868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -05918169 509.17739868 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -05918170 509.17745972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -05918171 509.17745972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -05918172 509.17745972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -05918173 509.17745972 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -05918174 509.17749023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -05918175 509.17749023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -05918176 509.17749023 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -05918177 509.17755127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -05918178 509.17755127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -05918179 509.17755127 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -05918180 509.17761230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -05918181 509.17761230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -05918182 509.17761230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -05918183 509.17761230 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -05918184 509.17764282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -05918185 509.17764282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -05918186 509.17764282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -05918187 509.17764282 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -05918188 509.17770386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -05918189 509.17770386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -05918190 509.17770386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -05918191 509.17770386 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -05918192 509.17776489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -05918193 509.17776489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -05918194 509.17776489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -05918195 509.17776489 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -05918196 509.17779541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -05918197 509.17779541 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -05918198 509.17785645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -05918199 509.17785645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -05918200 509.17785645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -05918201 509.17785645 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -05918202 509.17791748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -05918203 509.17791748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -05918204 509.17791748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -05918205 509.17791748 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -05918206 509.17794800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -05918207 509.17794800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -05918208 509.17794800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -05918209 509.17794800 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -05918210 509.17800903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -05918211 509.17800903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -05918212 509.17800903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -05918213 509.17800903 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -05918214 509.17807007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -05918215 509.17807007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -05918216 509.17807007 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -05918217 509.17810059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -05918218 509.17810059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -05918219 509.17810059 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -05918220 509.17816162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -05918221 509.17816162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -05918222 509.17816162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -05918223 509.17816162 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -05918224 509.17822266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -05918225 509.17822266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -05918226 509.17822266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -05918227 509.17822266 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -05918228 509.17825317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -05918229 509.17825317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -05918230 509.17825317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -05918231 509.17825317 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -05918232 509.17831421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -05918233 509.17831421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -05918234 509.17831421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -05918235 509.17831421 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -05918236 509.17837524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -05918237 509.17837524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -05918238 509.17837524 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -05918239 509.17840576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -05918240 509.17840576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -05918241 509.17840576 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -05918242 509.17846680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -05918243 509.17846680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -05918244 509.17846680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -05918245 509.17846680 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -05918246 509.17852783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -05918247 509.17852783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -05918248 509.17852783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -05918249 509.17852783 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -05918250 509.17855835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -05918251 509.17855835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -05918252 509.17855835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -05918253 509.17855835 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -05918254 509.17861938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -05918255 509.17861938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -05918256 509.17861938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -05918257 509.17861938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -05918258 509.17868042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -05918259 509.17868042 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -05918260 509.17874146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -05918261 509.17874146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -05918262 509.17874146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -05918263 509.17874146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -05918264 509.17877197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -05918265 509.17877197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -05918266 509.17877197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -05918267 509.17877197 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -05918268 509.17883301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -05918269 509.17883301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -05918270 509.17883301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -05918271 509.17883301 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -05918272 509.17889404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -05918273 509.17889404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -05918274 509.17889404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -05918275 509.17889404 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -05918276 509.17892456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -05918277 509.17892456 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -05918278 509.17898560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -05918279 509.17898560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -05918280 509.17898560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -05918281 509.17898560 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -05918282 509.17904663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -05918283 509.17904663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -05918284 509.17904663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -05918285 509.17904663 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -05918286 509.17907715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -05918287 509.17907715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -05918288 509.17907715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -05918289 509.17907715 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -05918290 509.17913818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -05918291 509.17913818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -05918292 509.17913818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -05918293 509.17913818 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -05918294 509.17919922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -05918295 509.17919922 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -05918296 509.17922974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -05918297 509.17922974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -05918298 509.17922974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -05918299 509.17922974 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -05918300 509.17929077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -05918301 509.17929077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -05918302 509.17929077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -05918303 509.17929077 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -05918304 509.17935181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -05918305 509.17935181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -05918306 509.17935181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -05918307 509.17935181 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -05918308 509.17938232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -05918309 509.17938232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -05918310 509.17938232 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -05918311 509.17944336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -05918312 509.17944336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -05918313 509.17944336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -05918314 509.17950439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -05918315 509.17950439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -05918316 509.17950439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -05918317 509.17950439 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -05918318 509.17953491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -05918319 509.17953491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -05918320 509.17953491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -05918321 509.17953491 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -05918322 509.17959595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -05918323 509.17959595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -05918324 509.17959595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -05918325 509.17959595 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -05918326 509.17965698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -05918327 509.17965698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -05918328 509.17965698 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -05918329 509.17968750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -05918330 509.17968750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -05918331 509.17968750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -05918332 509.17974854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -05918333 509.17974854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -05918334 509.17974854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -05918335 509.17974854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -05918336 509.17980957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -05918337 509.17980957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -05918338 509.17980957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -05918339 509.17980957 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -05918340 509.17984009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -05918341 509.17984009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -05918342 509.17984009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -05918343 509.17984009 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -05918344 509.17990112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -05918345 509.17990112 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -05918346 509.17996216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -05918347 509.17996216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -05918348 509.17996216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -05918349 509.17996216 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -05918350 509.17999268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -05918351 509.17999268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -05918352 509.17999268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -05918353 509.17999268 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -05918354 509.18005371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -05918355 509.18005371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -05918356 509.18005371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -05918357 509.18005371 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -05918358 509.18011475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -05918359 509.18011475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -05918360 509.18011475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -05918361 509.18011475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -05918362 509.18014526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -05918363 509.18014526 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -05918364 509.18020630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -05918365 509.18020630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -05918366 509.18020630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -05918367 509.18020630 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -05918368 509.18026733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -05918369 509.18026733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -05918370 509.18026733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -05918371 509.18026733 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -05918372 509.18032837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -05918373 509.18032837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -05918374 509.18032837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -05918375 509.18032837 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -05918376 509.18035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -05918377 509.18035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -05918378 509.18035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -05918379 509.18035889 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -05918380 509.18041992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -05918381 509.18041992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -05918382 509.18048096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -05918383 509.18048096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -05918384 509.18048096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -05918385 509.18048096 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -05918386 509.18051147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -05918387 509.18051147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -05918388 509.18051147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -05918389 509.18051147 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -05918390 509.18057251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -05918391 509.18057251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -05918392 509.18057251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -05918393 509.18057251 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -05918394 509.18063354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -05918395 509.18063354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -05918396 509.18063354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -05918397 509.18063354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -05918398 509.18066406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -05918399 509.18066406 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -05918400 509.18072510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -05918401 509.18072510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -05918402 509.18072510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -05918403 509.18072510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -05918404 509.18078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -05918405 509.18078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -05918406 509.18078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -05918407 509.18078613 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -05918408 509.18081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -05918409 509.18081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -05918410 509.18081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -05918411 509.18081665 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -05918412 509.18087769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -05918413 509.18087769 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -05918414 509.18093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -05918415 509.18093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -05918416 509.18093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -05918417 509.18093872 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -05918418 509.18096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -05918419 509.18096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -05918420 509.18096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -05918421 509.18096924 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -05918422 509.18103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -05918423 509.18103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -05918424 509.18103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -05918425 509.18103027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -05918426 509.18109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -05918427 509.18109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -05918428 509.18109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -05918429 509.18109131 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -05918430 509.18112183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -05918431 509.18112183 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -05918432 509.18118286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -05918433 509.18118286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -05918434 509.18118286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -05918435 509.18118286 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -05918436 509.18124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -05918437 509.18124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -05918438 509.18124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -05918439 509.18124390 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -05918440 509.18127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -05918441 509.18127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -05918442 509.18127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -05918443 509.18127441 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -05918444 509.18133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -05918445 509.18133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -05918446 509.18133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -05918447 509.18133545 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -05918448 509.18139648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -05918449 509.18139648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -05918450 509.18142700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -05918451 509.18142700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -05918452 509.18142700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -05918453 509.18142700 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -05918454 509.18148804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -05918455 509.18148804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -05918456 509.18148804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -05918457 509.18148804 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -05918458 509.18154907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -05918459 509.18154907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -05918460 509.18154907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -05918461 509.18154907 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -05918462 509.18157959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -05918463 509.18157959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -05918464 509.18157959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -05918465 509.18157959 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -05918466 509.18164063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -05918467 509.18164063 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -05918468 509.18170166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -05918469 509.18170166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -05918470 509.18170166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -05918471 509.18170166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -05918472 509.18173218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -05918473 509.18173218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -05918474 509.18173218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -05918475 509.18173218 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -05918476 509.18179321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -05918477 509.18179321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -05918478 509.18179321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -05918479 509.18179321 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -05918480 509.18185425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -05918481 509.18185425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -05918482 509.18185425 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -05918483 509.18191528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -05918484 509.18191528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -05918485 509.18191528 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -05918486 509.18194580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -05918487 509.18194580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -05918488 509.18194580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -05918489 509.18194580 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -05918490 509.18200684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -05918491 509.18200684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -05918492 509.18200684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -05918493 509.18206787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -05918494 509.18206787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -05918495 509.18206787 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -05918496 509.18209839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -05918497 509.18209839 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -05918498 509.18215942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -05918499 509.18215942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -05918500 509.18215942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -05918501 509.18215942 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -05918502 509.18222046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -05918503 509.18222046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -05918504 509.18222046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -05918505 509.18222046 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -05918506 509.18225098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -05918507 509.18225098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -05918508 509.18225098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -05918509 509.18225098 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -05918510 509.18231201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -05918511 509.18231201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -05918512 509.18237305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -05918513 509.18237305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -05918514 509.18237305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -05918515 509.18237305 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -05918516 509.18240356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -05918517 509.18240356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -05918518 509.18240356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -05918519 509.18240356 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -05918520 509.18246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -05918521 509.18246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -05918522 509.18246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -05918523 509.18246460 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -05918524 509.18252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -05918525 509.18252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -05918526 509.18252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -05918527 509.18252563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -05918528 509.18255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -05918529 509.18255615 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -05918530 509.18261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -05918531 509.18261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -05918532 509.18261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -05918533 509.18261719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -05918534 509.18267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -05918535 509.18267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -05918536 509.18267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -05918537 509.18267822 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -05918538 509.18270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -05918539 509.18270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -05918540 509.18270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -05918541 509.18270874 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -05918542 509.18276978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -05918543 509.18276978 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -05918544 509.18286133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -05918545 509.18286133 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -05918546 509.18292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -05918547 509.18292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -05918548 509.18292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -05918549 509.18292236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -05918550 509.18298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -05918551 509.18298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -05918552 509.18298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -05918553 509.18298340 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -05918554 509.18301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -05918555 509.18301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -05918556 509.18301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -05918557 509.18301392 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -05918558 509.18307495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -05918559 509.18307495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -05918560 509.18307495 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -05918561 509.18313599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -05918562 509.18313599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -05918563 509.18313599 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -05918564 509.18316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -05918565 509.18316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -05918566 509.18316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -05918567 509.18316650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -05918568 509.18322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -05918569 509.18322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -05918570 509.18322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -05918571 509.18322754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -05918572 509.18328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -05918573 509.18328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -05918574 509.18328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -05918575 509.18328857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -05918576 509.18334961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -05918577 509.18334961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -05918578 509.18334961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -05918579 509.18338013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -05918580 509.18338013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -05918581 509.18338013 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -05918582 509.18344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -05918583 509.18344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -05918584 509.18344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -05918585 509.18344116 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -05918586 509.18350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -05918587 509.18350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -05918588 509.18350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -05918589 509.18350220 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -05918590 509.18353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -05918591 509.18353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -05918592 509.18353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -05918593 509.18353271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -05918594 509.18359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -05918595 509.18359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -05918596 509.18359375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -05918597 509.18365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -05918598 509.18365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -05918599 509.18365479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -05918600 509.18368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -05918601 509.18368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -05918602 509.18368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -05918603 509.18368530 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -05918604 509.18374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -05918605 509.18374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -05918606 509.18374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -05918607 509.18374634 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -05918608 509.18380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -05918609 509.18380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -05918610 509.18380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -05918611 509.18380737 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -05918612 509.18383789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -05918613 509.18383789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -05918614 509.18383789 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -05918615 509.18389893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -05918616 509.18389893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -05918617 509.18389893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -05918618 509.18395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -05918619 509.18395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -05918620 509.18395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -05918621 509.18395996 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -05918622 509.18399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -05918623 509.18399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -05918624 509.18399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -05918625 509.18399048 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -05918626 509.18405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -05918627 509.18405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -05918628 509.18405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -05918629 509.18405151 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -05918630 509.18411255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -05918631 509.18411255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -05918632 509.18411255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -05918633 509.18411255 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -05918634 509.18414307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -05918635 509.18414307 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -05918636 509.18420410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -05918637 509.18420410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -05918638 509.18420410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -05918639 509.18420410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -05918640 509.18426514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -05918641 509.18426514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -05918642 509.18426514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -05918643 509.18426514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -05918644 509.18429565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -05918645 509.18429565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -05918646 509.18429565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -05918647 509.18429565 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -05918648 509.18435669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -05918649 509.18435669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -05918650 509.18435669 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -05918651 509.18441772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -05918652 509.18441772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -05918653 509.18441772 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -05918654 509.18444824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -05918655 509.18444824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -05918656 509.18444824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -05918657 509.18444824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -05918658 509.18450928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -05918659 509.18450928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -05918660 509.18450928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -05918661 509.18450928 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -05918662 509.18457031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -05918663 509.18457031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -05918664 509.18457031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -05918665 509.18457031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -05918666 509.18460083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -05918667 509.18460083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -05918668 509.18460083 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -05918669 509.18466187 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -05918670 509.18466187 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -05918671 509.18466187 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -05918672 509.18472290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -05918673 509.18472290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -05918674 509.18472290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -05918675 509.18472290 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -05918676 509.18475342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -05918677 509.18475342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -05918678 509.18475342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -05918679 509.18475342 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -05918680 509.18481445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -05918681 509.18481445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -05918682 509.18481445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -05918683 509.18481445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -05918684 509.18487549 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -05918685 509.18487549 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -05918686 509.18493652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -05918687 509.18493652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -05918688 509.18493652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -05918689 509.18493652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -05918690 509.18496704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -05918691 509.18496704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -05918692 509.18496704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -05918693 509.18496704 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -05918694 509.18502808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -05918695 509.18502808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -05918696 509.18502808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -05918697 509.18502808 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -05918698 509.18508911 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -05918699 509.18508911 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -05918700 509.18508911 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -05918701 509.18511963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -05918702 509.18511963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -05918703 509.18511963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -05918704 509.18518066 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -05918705 509.18518066 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -05918706 509.18518066 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -05918707 509.18518066 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -05918708 509.18524170 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -05918709 509.18524170 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -05918710 509.18524170 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -05918711 509.18524170 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -05918712 509.18527222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -05918713 509.18527222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -05918714 509.18527222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -05918715 509.18527222 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -05918716 509.18533325 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -05918717 509.18533325 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -05918718 509.18533325 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -05918719 509.18539429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -05918720 509.18539429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -05918721 509.18539429 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -05918722 509.18542480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -05918723 509.18542480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -05918724 509.18542480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -05918725 509.18542480 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -05918726 509.18548584 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -05918727 509.18548584 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -05918728 509.18548584 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -05918729 509.18548584 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -05918730 509.18554688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -05918731 509.18554688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -05918732 509.18554688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -05918733 509.18554688 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -05918734 509.18557739 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -05918735 509.18557739 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -05918736 509.18557739 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -05918737 509.18563843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -05918738 509.18563843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -05918739 509.18563843 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -05918740 509.18569946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -05918741 509.18569946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -05918742 509.18569946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -05918743 509.18569946 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -05918744 509.18572998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -05918745 509.18572998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -05918746 509.18572998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -05918747 509.18572998 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -05918748 509.18579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -05918749 509.18579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -05918750 509.18579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -05918751 509.18579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -05918752 509.18585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -05918753 509.18585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -05918754 509.18585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -05918755 509.18588257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -05918756 509.18588257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -05918757 509.18588257 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -05918758 509.18594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -05918759 509.18594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -05918760 509.18594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -05918761 509.18594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -05918762 509.18600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -05918763 509.18600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -05918764 509.18600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -05918765 509.18600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -05918766 509.18603516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -05918767 509.18603516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -05918768 509.18603516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -05918769 509.18603516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -05918770 509.18609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -05918771 509.18609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -05918772 509.18615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -05918773 509.18615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -05918774 509.18615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -05918775 509.18615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -05918776 509.18618774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -05918777 509.18618774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -05918778 509.18618774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -05918779 509.18618774 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -05918780 509.18624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -05918781 509.18624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -05918782 509.18624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -05918783 509.18624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -05918784 509.18630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -05918785 509.18630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -05918786 509.18630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -05918787 509.18630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -05918788 509.18634033 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -05918789 509.18634033 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -05918790 509.18640137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -05918791 509.18640137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -05918792 509.18640137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -05918793 509.18640137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -05918794 509.18646240 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -05918795 509.18646240 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -05918796 509.18646240 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -05918797 509.18646240 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -05918798 509.18652344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -05918799 509.18652344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -05918800 509.18652344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -05918801 509.18652344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -05918802 509.18655396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -05918803 509.18655396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -05918804 509.18655396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -05918805 509.18661499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -05918806 509.18661499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -05918807 509.18661499 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -05918808 509.18667603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -05918809 509.18667603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -05918810 509.18667603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -05918811 509.18667603 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -05918812 509.18670654 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -05918813 509.18670654 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -05918814 509.18670654 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -05918815 509.18670654 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -05918816 509.18676758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -05918817 509.18676758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -05918818 509.18676758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -05918819 509.18676758 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -05918820 509.18682861 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -05918821 509.18682861 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -05918822 509.18685913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -05918823 509.18685913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -05918824 509.18685913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -05918825 509.18685913 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -05918826 509.18692017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -05918827 509.18692017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -05918828 509.18692017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -05918829 509.18692017 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -05918830 509.18698120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -05918831 509.18698120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -05918832 509.18698120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -05918833 509.18698120 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -05918834 509.18701172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -05918835 509.18701172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -05918836 509.18701172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -05918837 509.18707275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -05918838 509.18707275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -05918839 509.18707275 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -05918840 509.18713379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -05918841 509.18713379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -05918842 509.18713379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -05918843 509.18713379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -05918844 509.18716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -05918845 509.18716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -05918846 509.18716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -05918847 509.18716431 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -05918848 509.18722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -05918849 509.18722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -05918850 509.18722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -05918851 509.18722534 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -05918852 509.18728638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -05918853 509.18728638 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -05918854 509.18731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -05918855 509.18731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -05918856 509.18731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -05918857 509.18731689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -05918858 509.18737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -05918859 509.18737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -05918860 509.18737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -05918861 509.18737793 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -05918862 509.18743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -05918863 509.18743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -05918864 509.18743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -05918865 509.18743896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -05918866 509.18746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -05918867 509.18746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -05918868 509.18746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -05918869 509.18746948 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -05918870 509.18753052 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -05918871 509.18753052 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -05918872 509.18759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -05918873 509.18759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -05918874 509.18759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -05918875 509.18759155 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -05918876 509.18762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -05918877 509.18762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -05918878 509.18762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -05918879 509.18762207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -05918880 509.18768311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -05918881 509.18768311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -05918882 509.18768311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -05918883 509.18768311 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -05918884 509.18774414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -05918885 509.18774414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -05918886 509.18774414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -05918887 509.18774414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -05918888 509.18777466 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -05918889 509.18777466 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -05918890 509.18783569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -05918891 509.18783569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -05918892 509.18783569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -05918893 509.18783569 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -05918894 509.18789673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -05918895 509.18789673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -05918896 509.18789673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -05918897 509.18789673 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -05918898 509.18792725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -05918899 509.18792725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -05918900 509.18792725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -05918901 509.18792725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -05918902 509.18798828 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -05918903 509.18798828 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -05918904 509.18798828 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -05918905 509.18804932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -05918906 509.18804932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -05918907 509.18804932 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -05918908 509.18811035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -05918909 509.18811035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -05918910 509.18811035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -05918911 509.18811035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -05918912 509.18814087 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -05918913 509.18814087 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -05918914 509.18814087 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -05918915 509.18814087 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -05918916 509.18820190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -05918917 509.18820190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -05918918 509.18820190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -05918919 509.18820190 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -05918920 509.18826294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -05918921 509.18826294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -05918922 509.18826294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -05918923 509.18826294 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -05918924 509.18829346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -05918925 509.18829346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -05918926 509.18835449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -05918927 509.18835449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -05918928 509.18835449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -05918929 509.18835449 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -05918930 509.18841553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -05918931 509.18841553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -05918932 509.18841553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -05918933 509.18841553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -05918934 509.18844604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -05918935 509.18844604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -05918936 509.18844604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -05918937 509.18844604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -05918938 509.18850708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -05918939 509.18850708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -05918940 509.18850708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -05918941 509.18850708 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -05918942 509.18856812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -05918943 509.18856812 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -05918944 509.18859863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -05918945 509.18859863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -05918946 509.18859863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -05918947 509.18859863 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -05918948 509.18865967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -05918949 509.18865967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -05918950 509.18865967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -05918951 509.18865967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -05918952 509.18872070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -05918953 509.18872070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -05918954 509.18872070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -05918955 509.18872070 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -05918956 509.18875122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -05918957 509.18875122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -05918958 509.18875122 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -05918959 509.18881226 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -05918960 509.18881226 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -05918961 509.18881226 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -05918962 509.18887329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -05918963 509.18887329 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -05918964 509.18890381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -05918965 509.18890381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -05918966 509.18890381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -05918967 509.18890381 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -05918968 509.18896484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -05918969 509.18896484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -05918970 509.18896484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -05918971 509.18896484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -05918972 509.18902588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -05918973 509.18902588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -05918974 509.18902588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -05918975 509.18902588 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -05918976 509.18905640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -05918977 509.18905640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -05918978 509.18905640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -05918979 509.18905640 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -05918980 509.18911743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -05918981 509.18911743 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -05918982 509.18917847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -05918983 509.18917847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -05918984 509.18917847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -05918985 509.18917847 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -05918986 509.18920898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -05918987 509.18920898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -05918988 509.18920898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -05918989 509.18920898 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -05918990 509.18927002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -05918991 509.18927002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -05918992 509.18927002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -05918993 509.18927002 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -05918994 509.18933105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -05918995 509.18933105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -05918996 509.18933105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -05918997 509.18933105 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -05918998 509.18936157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -05918999 509.18936157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -05919000 509.18936157 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -05919001 509.18942261 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -05919002 509.18942261 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -05919003 509.18942261 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -05919004 509.18948364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -05919005 509.18948364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -05919006 509.18948364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -05919007 509.18948364 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -05919008 509.18954468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -05919009 509.18954468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -05919010 509.18954468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -05919011 509.18954468 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -05919012 509.18957520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -05919013 509.18957520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -05919014 509.18957520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -05919015 509.18957520 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -05919016 509.18963623 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -05919017 509.18963623 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -05919018 509.18963623 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -05919019 509.18963623 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -05919020 509.18969727 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -05919021 509.18969727 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -05919022 509.18972778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -05919023 509.18972778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -05919024 509.18972778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -05919025 509.18972778 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -05919026 509.18978882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -05919027 509.18978882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -05919028 509.18978882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -05919029 509.18978882 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -05919030 509.18984985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -05919031 509.18984985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -05919032 509.18984985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -05919033 509.18984985 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -05919034 509.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -05919035 509.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -05919036 509.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -05919037 509.18988037 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -05919038 509.18994141 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -05919039 509.18994141 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -05919040 509.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -05919041 509.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -05919042 509.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -05919043 509.19000244 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -05919044 509.19003296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -05919045 509.19003296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -05919046 509.19003296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -05919047 509.19003296 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -05919048 509.19009399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -05919049 509.19009399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -05919050 509.19009399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -05919051 509.19009399 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -05919052 509.19015503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -05919053 509.19015503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -05919054 509.19015503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -05919055 509.19015503 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -05919056 509.19018555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -05919057 509.19018555 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -05919058 509.19024658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -05919059 509.19024658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -05919060 509.19024658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -05919061 509.19024658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -05919062 509.19030762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -05919063 509.19030762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -05919064 509.19030762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -05919065 509.19030762 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -05919066 509.19033813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -05919067 509.19033813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -05919068 509.19033813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -05919069 509.19033813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -05919070 509.19039917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -05919071 509.19039917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -05919072 509.19039917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -05919073 509.19039917 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -05919074 509.19046021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -05919075 509.19046021 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -05919076 509.19049072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -05919077 509.19049072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -05919078 509.19049072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -05919079 509.19049072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -05919080 509.19055176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -05919081 509.19055176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -05919082 509.19055176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -05919083 509.19055176 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -05919084 509.19061279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -05919085 509.19061279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -05919086 509.19061279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -05919087 509.19061279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -05919088 509.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -05919089 509.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -05919090 509.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -05919091 509.19064331 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -05919092 509.19070435 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -05919093 509.19070435 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -05919094 509.19076538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -05919095 509.19076538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -05919096 509.19076538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -05919097 509.19076538 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -05919098 509.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -05919099 509.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -05919100 509.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -05919101 509.19079590 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -05919102 509.19085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -05919103 509.19085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -05919104 509.19085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -05919105 509.19085693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -05919106 509.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -05919107 509.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -05919108 509.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -05919109 509.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -05919110 509.19094849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -05919111 509.19094849 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -05919112 509.19100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -05919113 509.19100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -05919114 509.19100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -05919115 509.19100952 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -05919116 509.19107056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -05919117 509.19107056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -05919118 509.19107056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -05919119 509.19107056 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -05919120 509.19113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -05919121 509.19113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -05919122 509.19113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -05919123 509.19113159 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -05919124 509.19116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -05919125 509.19116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -05919126 509.19116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -05919127 509.19116211 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -05919128 509.19122314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -05919129 509.19122314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -05919130 509.19122314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -05919131 509.19128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -05919132 509.19128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -05919133 509.19128418 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -05919134 509.19131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -05919135 509.19131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -05919136 509.19131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -05919137 509.19131470 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -05919138 509.19137573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -05919139 509.19137573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -05919140 509.19137573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -05919141 509.19137573 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -05919142 509.19143677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -05919143 509.19143677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -05919144 509.19143677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -05919145 509.19143677 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -05919146 509.19146729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -05919147 509.19146729 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -05919148 509.19152832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -05919149 509.19152832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -05919150 509.19152832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -05919151 509.19152832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -05919152 509.19158936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -05919153 509.19158936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -05919154 509.19158936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -05919155 509.19158936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -05919156 509.19161987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -05919157 509.19161987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -05919158 509.19161987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -05919159 509.19161987 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -05919160 509.19168091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -05919161 509.19168091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -05919162 509.19168091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -05919163 509.19168091 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -05919164 509.19174194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -05919165 509.19174194 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -05919166 509.19177246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -05919167 509.19177246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -05919168 509.19177246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -05919169 509.19177246 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -05919170 509.19183350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -05919171 509.19183350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -05919172 509.19183350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -05919173 509.19183350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -05919174 509.19189453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -05919175 509.19189453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -05919176 509.19189453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -05919177 509.19189453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -05919178 509.19192505 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -05919179 509.19192505 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -05919180 509.19198608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -05919181 509.19198608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -05919182 509.19198608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -05919183 509.19198608 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -05919184 509.19204712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -05919185 509.19204712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -05919186 509.19204712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -05919187 509.19204712 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -05919188 509.19207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -05919189 509.19207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -05919190 509.19207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -05919191 509.19207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -05919192 509.19213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -05919193 509.19213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -05919194 509.19213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -05919195 509.19219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -05919196 509.19219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -05919197 509.19219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -05919198 509.19223022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -05919199 509.19223022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -05919200 509.19223022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -05919201 509.19223022 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -05919202 509.19229126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -05919203 509.19229126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -05919204 509.19229126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -05919205 509.19229126 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -05919206 509.19235229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -05919207 509.19235229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -05919208 509.19235229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -05919209 509.19235229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -05919210 509.19238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -05919211 509.19238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -05919212 509.19238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -05919213 509.19244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -05919214 509.19244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -05919215 509.19244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -05919216 509.19250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -05919217 509.19250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -05919218 509.19250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -05919219 509.19250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -05919220 509.19253540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -05919221 509.19253540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -05919222 509.19253540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -05919223 509.19253540 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -05919224 509.19259644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -05919225 509.19259644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -05919226 509.19259644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -05919227 509.19259644 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -05919228 509.19265747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -05919229 509.19265747 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -05919230 509.19271851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -05919231 509.19271851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -05919232 509.19271851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -05919233 509.19271851 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -05919234 509.19274902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -05919235 509.19274902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -05919236 509.19274902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -05919237 509.19274902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -05919238 509.19281006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -05919239 509.19281006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -05919240 509.19281006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -05919241 509.19281006 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -05919242 509.19287109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -05919243 509.19287109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -05919244 509.19287109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -05919245 509.19290161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -05919246 509.19290161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -05919247 509.19290161 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -05919248 509.19296265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -05919249 509.19296265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -05919250 509.19296265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -05919251 509.19296265 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -05919252 509.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -05919253 509.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -05919254 509.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -05919255 509.19302368 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -05919256 509.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -05919257 509.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -05919258 509.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -05919259 509.19305420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -05919260 509.19311523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -05919261 509.19311523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -05919262 509.19311523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -05919263 509.19317627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -05919264 509.19317627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -05919265 509.19317627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -05919266 509.19320679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -05919267 509.19320679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -05919268 509.19320679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -05919269 509.19320679 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -05919270 509.19326782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -05919271 509.19326782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -05919272 509.19326782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -05919273 509.19326782 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -05919274 509.19332886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -05919275 509.19332886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -05919276 509.19332886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -05919277 509.19332886 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -05919278 509.19335938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -05919279 509.19335938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -05919280 509.19335938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -05919281 509.19342041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -05919282 509.19342041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -05919283 509.19342041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -05919284 509.19348145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -05919285 509.19348145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -05919286 509.19348145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -05919287 509.19348145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -05919288 509.19351196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -05919289 509.19351196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -05919290 509.19351196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -05919291 509.19351196 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -05919292 509.19357300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -05919293 509.19357300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -05919294 509.19357300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -05919295 509.19357300 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -05919296 509.19363403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -05919297 509.19363403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -05919298 509.19363403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -05919299 509.19363403 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -05919300 509.19366455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -05919301 509.19366455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -05919302 509.19372559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -05919303 509.19372559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -05919304 509.19372559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -05919305 509.19372559 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -05919306 509.19378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -05919307 509.19378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -05919308 509.19378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -05919309 509.19378662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -05919310 509.19381714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -05919311 509.19381714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -05919312 509.19381714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -05919313 509.19381714 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -05919314 509.19387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -05919315 509.19387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -05919316 509.19387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -05919317 509.19387817 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -05919318 509.19393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -05919319 509.19393921 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -05919320 509.19396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -05919321 509.19396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -05919322 509.19396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -05919323 509.19396973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -05919324 509.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -05919325 509.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -05919326 509.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -05919327 509.19403076 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -05919328 509.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -05919329 509.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -05919330 509.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -05919331 509.19409180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -05919332 509.19415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -05919333 509.19415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -05919334 509.19415283 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -05919335 509.19418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -05919336 509.19418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -05919337 509.19418335 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -05919338 509.19424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -05919339 509.19424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -05919340 509.19424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -05919341 509.19424438 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -05919342 509.19430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -05919343 509.19430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -05919344 509.19430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -05919345 509.19430542 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -05919346 509.19433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -05919347 509.19433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -05919348 509.19433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -05919349 509.19433594 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -05919350 509.19439697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -05919351 509.19439697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -05919352 509.19445801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -05919353 509.19445801 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -05919354 509.19448853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -05919355 509.19448853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -05919356 509.19448853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -05919357 509.19448853 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -05919358 509.19454956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -05919359 509.19454956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -05919360 509.19454956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -05919361 509.19454956 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -05919362 509.19461060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -05919363 509.19461060 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -05919364 509.19464111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -05919365 509.19464111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -05919366 509.19464111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -05919367 509.19464111 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -05919368 509.19470215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -05919369 509.19470215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -05919370 509.19470215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -05919371 509.19470215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -05919372 509.19476318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -05919373 509.19476318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -05919374 509.19476318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -05919375 509.19476318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -05919376 509.19479370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -05919377 509.19479370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -05919378 509.19479370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -05919379 509.19479370 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -05919380 509.19485474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -05919381 509.19485474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -05919382 509.19485474 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -05919383 509.19491577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -05919384 509.19491577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -05919385 509.19491577 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -05919386 509.19494629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -05919387 509.19494629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -05919388 509.19494629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -05919389 509.19494629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -05919390 509.19500732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -05919391 509.19500732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -05919392 509.19500732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -05919393 509.19500732 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -05919394 509.19506836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -05919395 509.19506836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -05919396 509.19506836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -05919397 509.19506836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -05919398 509.19509888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -05919399 509.19509888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -05919400 509.19509888 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -05919401 509.19515991 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -05919402 509.19515991 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -05919403 509.19515991 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -05919404 509.19522095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -05919405 509.19522095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -05919406 509.19522095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -05919407 509.19522095 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -05919408 509.19525146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -05919409 509.19525146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -05919410 509.19525146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -05919411 509.19525146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -05919412 509.19531250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -05919413 509.19531250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -05919414 509.19531250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -05919415 509.19531250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -05919416 509.19537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -05919417 509.19537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -05919418 509.19537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -05919419 509.19537354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -05919420 509.19540405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -05919421 509.19540405 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -05919422 509.19546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -05919423 509.19546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -05919424 509.19546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -05919425 509.19546509 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -05919426 509.19552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -05919427 509.19552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -05919428 509.19552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -05919429 509.19552612 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -05919430 509.19555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -05919431 509.19555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -05919432 509.19555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -05919433 509.19555664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -05919434 509.19561768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -05919435 509.19561768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -05919436 509.19561768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -05919437 509.19561768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -05919438 509.19567871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -05919439 509.19567871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -05919440 509.19567871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -05919441 509.19573975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -05919442 509.19573975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -05919443 509.19573975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -05919444 509.19577026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -05919445 509.19577026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -05919446 509.19577026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -05919447 509.19577026 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -05919448 509.19583130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -05919449 509.19583130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -05919450 509.19583130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -05919451 509.19583130 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -05919452 509.19589233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -05919453 509.19589233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -05919454 509.19589233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -05919455 509.19589233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -05919456 509.19592285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -05919457 509.19592285 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -05919458 509.19598389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -05919459 509.19598389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -05919460 509.19598389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -05919461 509.19598389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -05919462 509.19604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -05919463 509.19604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -05919464 509.19604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -05919465 509.19604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -05919466 509.19607544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -05919467 509.19607544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -05919468 509.19607544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -05919469 509.19607544 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -05919470 509.19613647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -05919471 509.19613647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -05919472 509.19613647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -05919473 509.19613647 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -05919474 509.19619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -05919475 509.19619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -05919476 509.19619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -05919477 509.19622803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -05919478 509.19622803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -05919479 509.19622803 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -05919480 509.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -05919481 509.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -05919482 509.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -05919483 509.19628906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -05919484 509.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -05919485 509.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -05919486 509.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -05919487 509.19635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -05919488 509.19638062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -05919489 509.19638062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -05919490 509.19638062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -05919491 509.19638062 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -05919492 509.19644165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -05919493 509.19644165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -05919494 509.19644165 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -05919495 509.19650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -05919496 509.19650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -05919497 509.19650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -05919498 509.19653320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -05919499 509.19653320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -05919500 509.19653320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -05919501 509.19653320 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -05919502 509.19659424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -05919503 509.19659424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -05919504 509.19659424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -05919505 509.19659424 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -05919506 509.19665527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -05919507 509.19665527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -05919508 509.19665527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -05919509 509.19665527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -05919510 509.19668579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -05919511 509.19668579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -05919512 509.19668579 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -05919513 509.19674683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -05919514 509.19674683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -05919515 509.19674683 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -05919516 509.19680786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -05919517 509.19680786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -05919518 509.19680786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -05919519 509.19680786 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -05919520 509.19683838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -05919521 509.19683838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -05919522 509.19683838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -05919523 509.19683838 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -05919524 509.19689941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -05919525 509.19689941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -05919526 509.19689941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -05919527 509.19689941 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -05919528 509.19696045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -05919529 509.19696045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -05919530 509.19696045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -05919531 509.19699097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -05919532 509.19699097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -05919533 509.19699097 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -05919534 509.19705200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -05919535 509.19705200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -05919536 509.19705200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -05919537 509.19705200 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -05919538 509.19711304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -05919539 509.19711304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -05919540 509.19711304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -05919541 509.19711304 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -05919542 509.19714355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -05919543 509.19714355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -05919544 509.19714355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -05919545 509.19714355 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -05919546 509.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -05919547 509.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -05919548 509.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -05919549 509.19720459 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -05919550 509.19726563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -05919551 509.19726563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -05919552 509.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -05919553 509.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -05919554 509.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -05919555 509.19732666 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -05919556 509.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -05919557 509.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -05919558 509.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -05919559 509.19735718 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -05919560 509.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -05919561 509.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -05919562 509.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -05919563 509.19741821 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -05919564 509.19747925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -05919565 509.19747925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -05919566 509.19747925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -05919567 509.19747925 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -05919568 509.19750977 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -05919569 509.19750977 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -05919570 509.19757080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -05919571 509.19757080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -05919572 509.19757080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -05919573 509.19757080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -05919574 509.19763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -05919575 509.19763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -05919576 509.19763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -05919577 509.19763184 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -05919578 509.19766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -05919579 509.19766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -05919580 509.19766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -05919581 509.19766235 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -05919582 509.19772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -05919583 509.19772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -05919584 509.19772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -05919585 509.19772339 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -05919586 509.19778442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -05919587 509.19778442 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -05919588 509.19781494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -05919589 509.19781494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -05919590 509.19781494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -05919591 509.19781494 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -05919592 509.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -05919593 509.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -05919594 509.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -05919595 509.19787598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -05919596 509.19793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -05919597 509.19793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -05919598 509.19793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -05919599 509.19793701 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -05919600 509.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -05919601 509.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -05919602 509.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -05919603 509.19796753 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -05919604 509.19802856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -05919605 509.19802856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -05919606 509.19802856 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -05919607 509.19808960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -05919608 509.19808960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -05919609 509.19808960 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -05919610 509.19812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -05919611 509.19812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -05919612 509.19812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -05919613 509.19812012 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -05919614 509.19818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -05919615 509.19818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -05919616 509.19818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -05919617 509.19818115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -05919618 509.19824219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -05919619 509.19824219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -05919620 509.19824219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -05919621 509.19824219 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -05919622 509.19827271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -05919623 509.19827271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -05919624 509.19827271 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -05919625 509.19833374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -05919626 509.19833374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -05919627 509.19833374 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -05919628 509.19839478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -05919629 509.19839478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -05919630 509.19839478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -05919631 509.19839478 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -05919632 509.19842529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -05919633 509.19842529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -05919634 509.19842529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -05919635 509.19842529 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -05919636 509.19848633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -05919637 509.19848633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -05919638 509.19848633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -05919639 509.19848633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -05919640 509.19854736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -05919641 509.19854736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -05919642 509.19854736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -05919643 509.19854736 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -05919644 509.19857788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -05919645 509.19857788 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -05919646 509.19863892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -05919647 509.19863892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -05919648 509.19863892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -05919649 509.19863892 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -05919650 509.19869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -05919651 509.19869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -05919652 509.19869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -05919653 509.19869995 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -05919654 509.19873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -05919655 509.19873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -05919656 509.19873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -05919657 509.19873047 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -05919658 509.19879150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -05919659 509.19879150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -05919660 509.19879150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -05919661 509.19879150 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -05919662 509.19885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -05919663 509.19885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -05919664 509.19885254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -05919665 509.19891357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -05919666 509.19891357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -05919667 509.19891357 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -05919668 509.19894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -05919669 509.19894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -05919670 509.19894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -05919671 509.19894409 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -05919672 509.19900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -05919673 509.19900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -05919674 509.19900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -05919675 509.19900513 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -05919676 509.19906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -05919677 509.19906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -05919678 509.19906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -05919679 509.19906616 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -05919680 509.19909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -05919681 509.19909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -05919682 509.19909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -05919683 509.19909668 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -05919684 509.19915771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -05919685 509.19915771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -05919686 509.19921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -05919687 509.19921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -05919688 509.19921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -05919689 509.19921875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -05919690 509.19924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -05919691 509.19924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -05919692 509.19924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -05919693 509.19924927 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -05919694 509.19931030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -05919695 509.19931030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -05919696 509.19931030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -05919697 509.19931030 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -05919698 509.19937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -05919699 509.19937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -05919700 509.19937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -05919701 509.19937134 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -05919702 509.19940186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -05919703 509.19940186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -05919704 509.19946289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -05919705 509.19946289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -05919706 509.19946289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -05919707 509.19946289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -05919708 509.19952393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -05919709 509.19952393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -05919710 509.19952393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -05919711 509.19952393 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -05919712 509.19955444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -05919713 509.19955444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -05919714 509.19955444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -05919715 509.19955444 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -05919716 509.19961548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -05919717 509.19961548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -05919718 509.19961548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -05919719 509.19961548 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -05919720 509.19967651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -05919721 509.19967651 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -05919722 509.19970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -05919723 509.19970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -05919724 509.19970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -05919725 509.19970703 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -05919726 509.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -05919727 509.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -05919728 509.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -05919729 509.19976807 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -05919730 509.19982910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -05919731 509.19982910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -05919732 509.19982910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -05919733 509.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -05919734 509.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -05919735 509.19985962 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -05919736 509.19992065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -05919737 509.19992065 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -05919738 509.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -05919739 509.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -05919740 509.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -05919741 509.19998169 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -05919742 509.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -05919743 509.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -05919744 509.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -05919745 509.20001221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -05919746 509.20007324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -05919747 509.20007324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -05919748 509.20007324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -05919749 509.20007324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -05919750 509.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -05919751 509.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -05919752 509.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -05919753 509.20013428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -05919754 509.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -05919755 509.20016479 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -05919756 509.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -05919757 509.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -05919758 509.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -05919759 509.20022583 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -05919760 509.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -05919761 509.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -05919762 509.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -05919763 509.20028687 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -05919764 509.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -05919765 509.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -05919766 509.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -05919767 509.20034790 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -05919768 509.20037842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -05919769 509.20037842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -05919770 509.20037842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -05919771 509.20037842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -05919772 509.20043945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -05919773 509.20043945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -05919774 509.20043945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -05919775 509.20050049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -05919776 509.20050049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -05919777 509.20050049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -05919778 509.20053101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -05919779 509.20053101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -05919780 509.20053101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -05919781 509.20053101 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -05919782 509.20059204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -05919783 509.20059204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -05919784 509.20059204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -05919785 509.20059204 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -05919786 509.20065308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -05919787 509.20065308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -05919788 509.20065308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -05919789 509.20065308 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -05919790 509.20068359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -05919791 509.20068359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -05919792 509.20068359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -05919793 509.20074463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -05919794 509.20074463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -05919795 509.20074463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -05919796 509.20080566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -05919797 509.20080566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -05919798 509.20080566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -05919799 509.20080566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -05919800 509.20083618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -05919801 509.20083618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -05919802 509.20083618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -05919803 509.20083618 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -05919804 509.20089722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -05919805 509.20089722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -05919806 509.20089722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -05919807 509.20089722 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -05919808 509.20095825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -05919809 509.20095825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -05919810 509.20095825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -05919811 509.20095825 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -05919812 509.20098877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -05919813 509.20098877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -05919814 509.20104980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -05919815 509.20104980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -05919816 509.20104980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -05919817 509.20104980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -05919818 509.20111084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -05919819 509.20111084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -05919820 509.20111084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -05919821 509.20111084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -05919822 509.20114136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -05919823 509.20114136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -05919824 509.20114136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -05919825 509.20114136 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -05919826 509.20120239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -05919827 509.20120239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -05919828 509.20120239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -05919829 509.20120239 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -05919830 509.20126343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -05919831 509.20126343 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -05919832 509.20129395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -05919833 509.20129395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -05919834 509.20129395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -05919835 509.20129395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -05919836 509.20135498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -05919837 509.20135498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -05919838 509.20135498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -05919839 509.20135498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -05919840 509.20141602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -05919841 509.20141602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -05919842 509.20141602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -05919843 509.20141602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -05919844 509.20144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -05919845 509.20144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -05919846 509.20144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -05919847 509.20144653 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -05919848 509.20150757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -05919849 509.20150757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -05919850 509.20150757 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -05919851 509.20156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -05919852 509.20156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -05919853 509.20156860 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -05919854 509.20159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -05919855 509.20159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -05919856 509.20159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -05919857 509.20159912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -05919858 509.20166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -05919859 509.20166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -05919860 509.20166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -05919861 509.20166016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -05919862 509.20172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -05919863 509.20172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -05919864 509.20172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -05919865 509.20172119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -05919866 509.20175171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -05919867 509.20175171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -05919868 509.20175171 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -05919869 509.20181274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -05919870 509.20181274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -05919871 509.20181274 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -05919872 509.20187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -05919873 509.20187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -05919874 509.20187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -05919875 509.20187378 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -05919876 509.20193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -05919877 509.20193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -05919878 509.20193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -05919879 509.20193481 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -05919880 509.20196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -05919881 509.20196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -05919882 509.20196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -05919883 509.20196533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -05919884 509.20202637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -05919885 509.20202637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -05919886 509.20202637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -05919887 509.20208740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -05919888 509.20208740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -05919889 509.20208740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -05919890 509.20211792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -05919891 509.20211792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -05919892 509.20211792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -05919893 509.20211792 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -05919894 509.20217896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -05919895 509.20217896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -05919896 509.20217896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -05919897 509.20217896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -05919898 509.20223999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -05919899 509.20223999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -05919900 509.20223999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -05919901 509.20223999 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -05919902 509.20227051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -05919903 509.20227051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -05919904 509.20227051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -05919905 509.20227051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -05919906 509.20233154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -05919907 509.20233154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -05919908 509.20239258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -05919909 509.20239258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -05919910 509.20239258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -05919911 509.20239258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -05919912 509.20242310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -05919913 509.20242310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -05919914 509.20242310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -05919915 509.20242310 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -05919916 509.20248413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -05919917 509.20248413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -05919918 509.20248413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -05919919 509.20248413 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -05919920 509.20254517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -05919921 509.20254517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -05919922 509.20254517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -05919923 509.20254517 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -05919924 509.20257568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -05919925 509.20257568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -05919926 509.20263672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -05919927 509.20263672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -05919928 509.20263672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -05919929 509.20263672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -05919930 509.20269775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -05919931 509.20269775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -05919932 509.20269775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -05919933 509.20269775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -05919934 509.20272827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -05919935 509.20272827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -05919936 509.20272827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -05919937 509.20272827 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -05919938 509.20278931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -05919939 509.20278931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -05919940 509.20278931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -05919941 509.20278931 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -05919942 509.20285034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -05919943 509.20285034 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -05919944 509.20288086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -05919945 509.20288086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -05919946 509.20288086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -05919947 509.20288086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -05919948 509.20294189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -05919949 509.20294189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -05919950 509.20294189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -05919951 509.20294189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -05919952 509.20300293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -05919953 509.20300293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -05919954 509.20300293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -05919955 509.20300293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -05919956 509.20303345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -05919957 509.20303345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -05919958 509.20303345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -05919959 509.20303345 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -05919960 509.20309448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -05919961 509.20309448 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -05919962 509.20315552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -05919963 509.20315552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -05919964 509.20315552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -05919965 509.20315552 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -05919966 509.20318604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -05919967 509.20318604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -05919968 509.20318604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -05919969 509.20318604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -05919970 509.20324707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -05919971 509.20324707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -05919972 509.20324707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -05919973 509.20324707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -05919974 509.20330811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -05919975 509.20330811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -05919976 509.20330811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -05919977 509.20330811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -05919978 509.20333862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -05919979 509.20333862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -05919980 509.20333862 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -05919981 509.20339966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -05919982 509.20339966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -05919983 509.20339966 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -05919984 509.20346069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -05919985 509.20346069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -05919986 509.20346069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -05919987 509.20346069 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -05919988 509.20352173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -05919989 509.20352173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -05919990 509.20352173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -05919991 509.20352173 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -05919992 509.20355225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -05919993 509.20355225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -05919994 509.20355225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -05919995 509.20355225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -05919996 509.20361328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -05919997 509.20361328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -05919998 509.20361328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -05919999 509.20367432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -05920000 509.20367432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -05920001 509.20367432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -05920002 509.20370483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -05920003 509.20370483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -05920004 509.20370483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -05920005 509.20370483 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -05920006 509.20376587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -05920007 509.20376587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -05920008 509.20376587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -05920009 509.20376587 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -05920010 509.20382690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -05920011 509.20382690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -05920012 509.20382690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -05920013 509.20382690 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -05920014 509.20385742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -05920015 509.20385742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -05920016 509.20385742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -05920017 509.20391846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -05920018 509.20391846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -05920019 509.20391846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -05920020 509.20397949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -05920021 509.20397949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -05920022 509.20397949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -05920023 509.20397949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -05920024 509.20401001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -05920025 509.20401001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -05920026 509.20401001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -05920027 509.20401001 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -05920028 509.20407104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -05920029 509.20407104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -05920030 509.20407104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -05920031 509.20407104 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -05920032 509.20413208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -05920033 509.20413208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -05920034 509.20413208 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -05920035 509.20416260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -05920036 509.20416260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -05920037 509.20416260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -05920038 509.20422363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -05920039 509.20422363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -05920040 509.20422363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -05920041 509.20422363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -05920042 509.20428467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -05920043 509.20428467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -05920044 509.20428467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -05920045 509.20428467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -05920046 509.20431519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -05920047 509.20431519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -05920048 509.20431519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -05920049 509.20431519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -05920050 509.20437622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -05920051 509.20437622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -05920052 509.20437622 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -05920053 509.20443726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -05920054 509.20443726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -05920055 509.20443726 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -05920056 509.20446777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -05920057 509.20446777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -05920058 509.20446777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -05920059 509.20446777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -05920060 509.20452881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -05920061 509.20452881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -05920062 509.20452881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -05920063 509.20452881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -05920064 509.20458984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -05920065 509.20458984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -05920066 509.20458984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -05920067 509.20458984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -05920068 509.20462036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -05920069 509.20462036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -05920070 509.20462036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -05920071 509.20468140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -05920072 509.20468140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -05920073 509.20468140 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -05920074 509.20474243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -05920075 509.20474243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -05920076 509.20474243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -05920077 509.20474243 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -05920078 509.20477295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -05920079 509.20477295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -05920080 509.20477295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -05920081 509.20477295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -05920082 509.20483398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -05920083 509.20483398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -05920084 509.20483398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -05920085 509.20483398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -05920086 509.20489502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -05920087 509.20489502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -05920088 509.20489502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -05920089 509.20495605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -05920090 509.20495605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -05920091 509.20495605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -05920092 509.20498657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -05920093 509.20498657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -05920094 509.20498657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -05920095 509.20498657 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -05920096 509.20504761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -05920097 509.20504761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -05920098 509.20504761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -05920099 509.20504761 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -05920100 509.20510864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -05920101 509.20510864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -05920102 509.20510864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -05920103 509.20510864 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -05920104 509.20513916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -05920105 509.20513916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -05920106 509.20513916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -05920107 509.20520020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -05920108 509.20520020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -05920109 509.20520020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -05920110 509.20526123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -05920111 509.20526123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -05920112 509.20526123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -05920113 509.20526123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -05920114 509.20529175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -05920115 509.20529175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -05920116 509.20529175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -05920117 509.20529175 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -05920118 509.20535278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -05920119 509.20535278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -05920120 509.20535278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -05920121 509.20535278 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -05920122 509.20541382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -05920123 509.20541382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -05920124 509.20541382 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -05920125 509.20544434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -05920126 509.20544434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -05920127 509.20544434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -05920128 509.20550537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -05920129 509.20550537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -05920130 509.20550537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -05920131 509.20550537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -05920132 509.20556641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -05920133 509.20556641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -05920134 509.20556641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -05920135 509.20556641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -05920136 509.20559692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -05920137 509.20559692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -05920138 509.20559692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -05920139 509.20559692 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -05920140 509.20565796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -05920141 509.20565796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -05920142 509.20565796 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -05920143 509.20571899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -05920144 509.20571899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -05920145 509.20571899 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -05920146 509.20574951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -05920147 509.20574951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -05920148 509.20574951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -05920149 509.20574951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -05920150 509.20581055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -05920151 509.20581055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -05920152 509.20581055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -05920153 509.20581055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -05920154 509.20587158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -05920155 509.20587158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -05920156 509.20587158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -05920157 509.20587158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -05920158 509.20590210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -05920159 509.20590210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -05920160 509.20590210 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -05920161 509.20596313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -05920162 509.20596313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -05920163 509.20596313 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -05920164 509.20602417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -05920165 509.20602417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -05920166 509.20602417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -05920167 509.20602417 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -05920168 509.20605469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -05920169 509.20605469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -05920170 509.20605469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -05920171 509.20605469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -05920172 509.20611572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -05920173 509.20611572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -05920174 509.20611572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -05920175 509.20611572 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -05920176 509.20617676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -05920177 509.20617676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -05920178 509.20617676 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -05920179 509.20620728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -05920180 509.20620728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -05920181 509.20620728 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -05920182 509.20626831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -05920183 509.20626831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -05920184 509.20626831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -05920185 509.20626831 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -05920186 509.20632935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -05920187 509.20632935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -05920188 509.20632935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -05920189 509.20632935 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -05920190 509.20635986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -05920191 509.20635986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -05920192 509.20635986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -05920193 509.20635986 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -05920194 509.20642090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -05920195 509.20642090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -05920196 509.20642090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -05920197 509.20642090 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -05920198 509.20648193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -05920199 509.20648193 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -05920200 509.20654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -05920201 509.20654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -05920202 509.20654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -05920203 509.20654297 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -05920204 509.20657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -05920205 509.20657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -05920206 509.20657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -05920207 509.20657349 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -05920208 509.20663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -05920209 509.20663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -05920210 509.20663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -05920211 509.20663452 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -05920212 509.20669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -05920213 509.20669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -05920214 509.20669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -05920215 509.20669556 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -05920216 509.20672607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -05920217 509.20672607 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -05920218 509.20678711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -05920219 509.20678711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -05920220 509.20678711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -05920221 509.20678711 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -05920222 509.20684814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -05920223 509.20684814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -05920224 509.20684814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -05920225 509.20684814 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -05920226 509.20687866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -05920227 509.20687866 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -05920228 509.20693970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -05920229 509.20693970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -05920230 509.20693970 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -05920231 509.20700073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -05920232 509.20700073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -05920233 509.20700073 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -05920234 509.20703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -05920235 509.20703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -05920236 509.20703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -05920237 509.20703125 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -05920238 509.20709229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -05920239 509.20709229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -05920240 509.20709229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -05920241 509.20709229 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -05920242 509.20715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -05920243 509.20715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -05920244 509.20715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -05920245 509.20715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -05920246 509.20718384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -05920247 509.20718384 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -05920248 509.20724487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -05920249 509.20724487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -05920250 509.20724487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -05920251 509.20724487 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -05920252 509.20730591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -05920253 509.20730591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -05920254 509.20730591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -05920255 509.20730591 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -05920256 509.20733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -05920257 509.20733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -05920258 509.20733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -05920259 509.20733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -05920260 509.20739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -05920261 509.20739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -05920262 509.20739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -05920263 509.20739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -05920264 509.20745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -05920265 509.20745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -05920266 509.20745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -05920267 509.20745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -05920268 509.20748901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -05920269 509.20748901 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -05920270 509.20755005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -05920271 509.20755005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -05920272 509.20755005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -05920273 509.20755005 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -05920274 509.20761108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -05920275 509.20761108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -05920276 509.20761108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -05920277 509.20761108 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -05920278 509.20764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -05920279 509.20764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -05920280 509.20770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -05920281 509.20770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -05920282 509.20770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -05920283 509.20770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -05920284 509.20776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -05920285 509.20776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -05920286 509.20776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -05920287 509.20776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -05920288 509.20779419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -05920289 509.20779419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -05920290 509.20779419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -05920291 509.20779419 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -05920292 509.20785522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -05920293 509.20785522 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -05920294 509.20791626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -05920295 509.20791626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -05920296 509.20791626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -05920297 509.20791626 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -05920298 509.20794678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -05920299 509.20794678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -05920300 509.20794678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -05920301 509.20794678 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -05920302 509.20800781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -05920303 509.20800781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -05920304 509.20800781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -05920305 509.20800781 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -05920306 509.20806885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -05920307 509.20806885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -05920308 509.20806885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -05920309 509.20806885 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -05920310 509.20812988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -05920311 509.20812988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -05920312 509.20812988 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -05920313 509.20816040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -05920314 509.20816040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -05920315 509.20816040 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -05920316 509.20822144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -05920317 509.20822144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -05920318 509.20822144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -05920319 509.20822144 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -05936482 509.43579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -05936483 509.43579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x269f0 -05936484 509.43579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -05936485 509.43579102 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a00 -05936486 509.43585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -05936487 509.43585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a10 -05936488 509.43585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -05936489 509.43585205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a20 -05936490 509.43591309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -05936491 509.43591309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a30 -05936492 509.43591309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -05936493 509.43591309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a40 -05936494 509.43594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -05936495 509.43594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a50 -05936496 509.43594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -05936497 509.43594360 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a60 -05936498 509.43600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -05936499 509.43600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a70 -05936500 509.43600464 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -05936501 509.43606567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a80 -05936502 509.43606567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -05936503 509.43606567 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a90 -05936504 509.43609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -05936505 509.43609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26aa0 -05936506 509.43609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -05936507 509.43609619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ab0 -05936508 509.43615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -05936509 509.43615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ac0 -05936510 509.43615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -05936511 509.43615723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ad0 -05936512 509.43621826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -05936513 509.43621826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26ae0 -05936514 509.43621826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -05936515 509.43621826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26af0 -05936516 509.43624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -05936517 509.43624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b00 -05936518 509.43624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -05936519 509.43624878 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b10 -05936520 509.43630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -05936521 509.43630981 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b20 -05936522 509.43637085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -05936523 509.43637085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b30 -05936524 509.43637085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -05936525 509.43637085 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b40 -05942208 509.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -05942209 509.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31ce0 -05942210 509.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -05942211 509.51681519 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31cf0 -05942212 509.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -05942213 509.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d00 -05942214 509.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -05942215 509.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d10 -05942216 509.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -05942217 509.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d20 -05942218 509.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -05942219 509.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d30 -05942220 509.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -05942221 509.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d40 -05942222 509.51699829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -05942223 509.51699829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d50 -05942224 509.51699829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -05942225 509.51699829 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d60 -05942226 509.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -05942227 509.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d70 -05942228 509.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -05942229 509.51705933 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d80 -05942230 509.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -05942231 509.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d90 -05942232 509.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -05942233 509.51712036 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31da0 -05942234 509.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -05942235 509.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31db0 -05942236 509.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -05942237 509.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dc0 -05942238 509.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -05942239 509.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31dd0 -05942240 509.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -05942241 509.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31de0 -05942242 509.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -05942243 509.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31df0 -05942244 509.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -05942245 509.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e00 -05942246 509.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -05942247 509.51730347 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e10 -05942248 509.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -05942249 509.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e20 -05942250 509.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -05942251 509.51736450 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e30 -05948256 509.60195923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -05948257 509.60195923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9e0 -05948258 509.60195923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -05948259 509.60195923 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9f0 -05948260 509.60198975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -05948261 509.60198975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da00 -05948262 509.60198975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -05948263 509.60198975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da10 -05948264 509.60205078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -05948265 509.60205078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da20 -05948266 509.60205078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -05948267 509.60205078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da30 -05948268 509.60211182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -05948269 509.60211182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da40 -05948270 509.60211182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -05948271 509.60211182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da50 -05948272 509.60214233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -05948273 509.60214233 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da60 -05948274 509.60220337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -05948275 509.60220337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da70 -05948276 509.60220337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -05948277 509.60220337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da80 -05948278 509.60226440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -05948279 509.60226440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da90 -05948280 509.60226440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -05948281 509.60226440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daa0 -05948282 509.60229492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -05948283 509.60229492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dab0 -05948284 509.60229492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -05948285 509.60229492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dac0 -05948286 509.60235596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -05948287 509.60235596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dad0 -05948288 509.60235596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -05948289 509.60235596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dae0 -05948290 509.60241699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -05948291 509.60241699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3daf0 -05948292 509.60241699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -05948293 509.60244751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db00 -05948294 509.60244751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -05948295 509.60244751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db10 -05948296 509.60250854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -05948297 509.60250854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db20 -05948298 509.60250854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -05948299 509.60250854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db30 -05954904 509.69595337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -05954905 509.69595337 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a0 -05954906 509.69601440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -05954907 509.69601440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9b0 -05954908 509.69601440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -05954909 509.69601440 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9c0 -05954910 509.69604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -05954911 509.69604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d0 -05954912 509.69604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -05954913 509.69604492 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e0 -05954914 509.69610596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -05954915 509.69610596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f0 -05954916 509.69610596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -05954917 509.69610596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa00 -05954918 509.69616699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -05954919 509.69616699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa10 -05954920 509.69619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -05954921 509.69619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa20 -05954922 509.69619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -05954923 509.69619751 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa30 -05954924 509.69625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -05954925 509.69625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa40 -05954926 509.69625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -05954927 509.69625854 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa50 -05954928 509.69631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -05954929 509.69631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa60 -05954930 509.69631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -05954931 509.69631958 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa70 -05954932 509.69635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -05954933 509.69635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa80 -05954934 509.69635010 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -05954935 509.69641113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa90 -05954936 509.69641113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -05954937 509.69641113 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa0 -05954938 509.69647217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -05954939 509.69647217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab0 -05954940 509.69647217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -05954941 509.69647217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac0 -05954942 509.69650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -05954943 509.69650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad0 -05954944 509.69650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -05954945 509.69650269 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae0 -05954946 509.69656372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -05954947 509.69656372 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf0 -05959133 510.02890015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05959134 510.02896118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -05959135 510.02896118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05959136 510.02896118 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -05959137 510.02899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05959138 510.02899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -05959139 510.02905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05959140 510.02905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -05959141 510.02905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05959142 510.02911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -05959143 510.02911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05959144 510.02911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -05959145 510.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05959146 510.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -05959147 510.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05959148 510.02914429 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -05959149 510.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05959150 510.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -05959151 510.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05959152 510.02920532 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -05959153 510.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05959154 510.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -05959155 510.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05959156 510.02926636 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -05959157 510.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05959158 510.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -05959159 510.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05959160 510.02929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -05959161 510.02935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05959162 510.02935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -05959163 510.02935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05959164 510.02941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -05959165 510.02941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05959166 510.02941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -05959167 510.02947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05959168 510.02947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -05959169 510.02947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05959170 510.02947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -05959171 510.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05959172 510.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -05959173 510.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05959174 510.02951050 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -05959175 510.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05959176 510.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -05959177 510.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05959178 510.02957153 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -05959179 510.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05959180 510.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -05959181 510.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05959182 510.02963257 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -05959183 510.02966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05959184 510.02966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -05959185 510.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05959186 510.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -05959187 510.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05959188 510.02972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -05959189 510.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05959190 510.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -05959191 510.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05959192 510.02978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -05959193 510.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05959194 510.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -05959195 510.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05959196 510.02981567 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -05959197 510.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05959198 510.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -05959199 510.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05959200 510.02987671 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -05959201 510.02993774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05959202 510.02993774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -05959203 510.02993774 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05959204 510.02996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -05959205 510.02996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05959206 510.02996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -05959207 510.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05959208 510.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -05959209 510.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05959210 510.03002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -05959211 510.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05959212 510.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -05959213 510.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05959214 510.03009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -05959215 510.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05959216 510.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -05959217 510.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05959218 510.03012085 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -05959219 510.03018188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05959220 510.03018188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -05962915 510.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -05962916 510.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -05962917 510.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -05962918 510.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -05962919 510.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -05962920 510.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -05962921 510.08224487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -05962922 510.08224487 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -05962923 510.08230591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -05962924 510.08230591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -05962925 510.08230591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -05962926 510.08230591 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -05962927 510.08236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -05962928 510.08236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -05962929 510.08236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -05962930 510.08236694 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -05962931 510.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -05962932 510.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -05962933 510.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -05962934 510.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -05962935 510.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -05962936 510.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -05962937 510.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -05962938 510.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -05962939 510.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -05962940 510.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -05962941 510.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -05962942 510.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -05962943 510.08255005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -05962944 510.08255005 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -05962945 510.08261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -05962946 510.08261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -05962947 510.08261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -05962948 510.08261108 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -05962949 510.08267212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -05962950 510.08267212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -05962951 510.08267212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -05962952 510.08267212 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -05962953 510.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -05962954 510.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -05962955 510.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -05962956 510.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -05962957 510.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -05962958 510.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -05967705 510.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -05967706 510.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c28 -05967707 510.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -05967708 510.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c38 -05967709 510.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -05967710 510.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c48 -05967711 510.14993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -05967712 510.14993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c58 -05967713 510.14993286 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c68 -05967714 510.14999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c68 -05967715 510.14999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c78 -05967716 510.14999390 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c78 -05967717 510.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c88 -05967718 510.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c88 -05967719 510.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c98 -05967720 510.15005493 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c98 -05967721 510.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca8 -05967722 510.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ca8 -05967723 510.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb8 -05967724 510.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cb8 -05967725 510.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc8 -05967726 510.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cc8 -05967727 510.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd8 -05967728 510.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cd8 -05967729 510.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce8 -05967730 510.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce8 -05967731 510.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf8 -05967732 510.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf8 -05967733 510.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d08 -05967734 510.15023804 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d08 -05967735 510.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -05967736 510.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d18 -05967737 510.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -05967738 510.15029907 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d28 -05967739 510.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -05967740 510.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d38 -05967741 510.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d48 -05967742 510.15036011 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d48 -05967743 510.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d58 -05967744 510.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d58 -05967745 510.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d68 -05967746 510.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d68 -05967747 510.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -05967748 510.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -05973231 510.22970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -05973232 510.22970581 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -05973233 510.22976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -05973234 510.22976685 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -05973235 510.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -05973236 510.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -05973237 510.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -05973238 510.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -05973239 510.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -05973240 510.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -05973241 510.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -05973242 510.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -05973243 510.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -05973244 510.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -05973245 510.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -05973246 510.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -05973247 510.22994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -05973248 510.22994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -05973249 510.22994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -05973250 510.22994995 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -05973251 510.23001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -05973252 510.23001099 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -05973253 510.23007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -05973254 510.23007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -05973255 510.23007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -05973256 510.23007202 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -05973257 510.23013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -05973258 510.23013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -05973259 510.23013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -05973260 510.23013306 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -05973261 510.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -05973262 510.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -05973263 510.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -05973264 510.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -05973265 510.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -05973266 510.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e8 -05973267 510.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -05973268 510.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f8 -05973269 510.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -05973270 510.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca08 -05973271 510.23031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -05973272 510.23031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca18 -05973273 510.23031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -05973274 510.23031616 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca28 -05987561 510.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a8 -05987562 510.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388a8 -05987563 510.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b8 -05987564 510.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388b8 -05987565 510.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c8 -05987566 510.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388c8 -05987567 510.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d8 -05987568 510.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d8 -05987569 510.43203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e8 -05987570 510.43203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e8 -05987571 510.43203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f8 -05987572 510.43203735 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f8 -05987573 510.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38908 -05987574 510.43209839 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38908 -05987575 510.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38918 -05987576 510.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38918 -05987577 510.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38928 -05987578 510.43215942 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38928 -05987579 510.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38938 -05987580 510.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38938 -05987581 510.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38948 -05987582 510.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38948 -05987583 510.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38958 -05987584 510.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38958 -05987585 510.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38968 -05987586 510.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38968 -05987587 510.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38978 -05987588 510.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38978 -05987589 510.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38988 -05987590 510.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38988 -05987591 510.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38998 -05987592 510.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38998 -05987593 510.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a8 -05987594 510.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a8 -05987595 510.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b8 -05987596 510.43240356 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b8 -05987597 510.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c8 -05987598 510.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c8 -05987599 510.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d8 -05987600 510.43246460 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d8 -05987601 510.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e8 -05987602 510.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e8 -05987603 510.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f8 -05987604 510.43252563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f8 -05991735 510.48934937 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -05991736 510.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -05991737 510.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -05991738 510.48941040 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -05991739 510.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -05991740 510.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -05991741 510.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -05991742 510.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -05991743 510.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -05991744 510.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -05991745 510.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -05991746 510.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -05991747 510.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -05991748 510.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -05991749 510.48959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -05991750 510.48959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -05991751 510.48959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -05991752 510.48959351 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -05991753 510.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -05991754 510.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -05991755 510.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -05991756 510.48965454 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -05991757 510.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -05991758 510.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -05991759 510.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -05991760 510.48971558 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -05991761 510.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -05991762 510.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -05991763 510.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -05991764 510.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -05991765 510.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -05991766 510.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -05991767 510.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -05991768 510.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -05991769 510.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -05991770 510.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -05991771 510.48989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -05991772 510.48989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -05991773 510.48989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -05991774 510.48989868 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -05991775 510.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -05991776 510.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -05991777 510.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -05991778 510.48995972 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -05995658 510.54357910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485a8 -05995659 510.54357910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -05995660 510.54357910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485b8 -05995661 510.54360962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -05995662 510.54360962 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485c8 -05995663 510.54367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -05995664 510.54367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485d8 -05995665 510.54367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -05995666 510.54367065 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485e8 -05995667 510.54373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f8 -05995668 510.54373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x485f8 -05995669 510.54373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48608 -05995670 510.54373169 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48608 -05995671 510.54376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48618 -05995672 510.54376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48618 -05995673 510.54376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48628 -05995674 510.54376221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48628 -05995675 510.54382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48638 -05995676 510.54382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48638 -05995677 510.54382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48648 -05995678 510.54382324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48648 -05995679 510.54388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48658 -05995680 510.54388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48658 -05995681 510.54388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48668 -05995682 510.54388428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48668 -05995683 510.54391479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48678 -05995684 510.54391479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48678 -05995685 510.54397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48688 -05995686 510.54397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48688 -05995687 510.54397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48698 -05995688 510.54397583 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48698 -05995689 510.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a8 -05995690 510.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a8 -05995691 510.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b8 -05995692 510.54403687 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b8 -05995693 510.54406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c8 -05995694 510.54406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c8 -05995695 510.54406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -05995696 510.54406738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -05995697 510.54412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -05995698 510.54412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -05995699 510.54412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -05995700 510.54412842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -05995701 510.54418945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48708 -05996079 510.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d8 -05996080 510.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492d8 -05996081 510.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -05996082 510.54943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492e8 -05996083 510.54949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -05996084 510.54949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x492f8 -05996085 510.54949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -05996086 510.54949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49308 -05996087 510.54956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -05996088 510.54956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49318 -05996089 510.54956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -05996090 510.54956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49328 -05996091 510.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -05996092 510.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49338 -05996093 510.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -05996094 510.54962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49348 -05996095 510.54965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -05996096 510.54965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49358 -05996097 510.54965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49368 -05996098 510.54965210 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49368 -05996099 510.54971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49378 -05996100 510.54971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49378 -05996101 510.54971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49388 -05996102 510.54971313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49388 -05996103 510.54977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49398 -05996104 510.54977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49398 -05996105 510.54977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a8 -05996106 510.54977417 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493a8 -05996107 510.54980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b8 -05996108 510.54980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493b8 -05996109 510.54980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c8 -05996110 510.54980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493c8 -05996111 510.54986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d8 -05996112 510.54986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493d8 -05996113 510.54986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e8 -05996114 510.54986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493e8 -05996115 510.54992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f8 -05996116 510.54992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x493f8 -05996117 510.54992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49408 -05996118 510.54995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49408 -05996119 510.54995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49418 -05996120 510.54995728 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49418 -05996121 510.55001831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49428 -05996122 510.55001831 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49428 -05998321 510.57992554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -05998322 510.57992554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -05998323 510.57992554 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -05998324 510.57995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -05998325 510.57995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -05998326 510.57995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -05998327 510.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -05998328 510.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -05998329 510.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -05998330 510.58001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -05998331 510.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -05998332 510.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -05998333 510.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -05998334 510.58007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -05998335 510.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -05998336 510.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -05998337 510.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -05998338 510.58010864 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -05998339 510.58016968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -05998340 510.58016968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -05998341 510.58016968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -05998342 510.58016968 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -05998343 510.58023071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -05998344 510.58023071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -05998345 510.58023071 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -05998346 510.58026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9a8 -05998347 510.58026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -05998348 510.58026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9b8 -05998349 510.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -05998350 510.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9c8 -05998351 510.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -05998352 510.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9d8 -05998353 510.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -05998354 510.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9e8 -05998355 510.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -05998356 510.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d9f8 -05998357 510.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -05998358 510.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da08 -05998359 510.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -05998360 510.58041382 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da18 -05998361 510.58047485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -05998362 510.58047485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da28 -05998363 510.58047485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -05998364 510.58047485 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da38 -05999119 510.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -05999120 510.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -05999121 510.59091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -05999122 510.59091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -05999123 510.59091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -05999124 510.59091187 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -05999125 510.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -05999126 510.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -05999127 510.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f218 -05999128 510.59097290 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f218 -05999129 510.59103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -05999130 510.59103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -05999131 510.59103394 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -05999132 510.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -05999133 510.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -05999134 510.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -05999135 510.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -05999136 510.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -05999137 510.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -05999138 510.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -05999139 510.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -05999140 510.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -05999141 510.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -05999142 510.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -05999143 510.59121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -05999144 510.59121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -05999145 510.59121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -05999146 510.59121704 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -05999147 510.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -05999148 510.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -05999149 510.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -05999150 510.59127808 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -05999151 510.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -05999152 510.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -05999153 510.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -05999154 510.59133911 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e8 -05999155 510.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -05999156 510.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f8 -05999157 510.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -05999158 510.59140015 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f308 -05999159 510.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -05999160 510.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f318 -05999161 510.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -05999162 510.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f328 -05999815 510.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50798 -05999816 510.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50798 -05999817 510.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a8 -05999818 510.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a8 -05999819 510.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b8 -05999820 510.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b8 -05999821 510.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c8 -05999822 510.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c8 -05999823 510.60043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d8 -05999824 510.60043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d8 -05999825 510.60043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e8 -05999826 510.60043335 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e8 -05999827 510.60049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f8 -05999828 510.60049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f8 -05999829 510.60049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50808 -05999830 510.60049438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50808 -05999831 510.60055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50818 -05999832 510.60055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50818 -05999833 510.60055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50828 -05999834 510.60055542 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50828 -05999835 510.60061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50838 -05999836 510.60061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50838 -05999837 510.60061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50848 -05999838 510.60061646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50848 -05999839 510.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50858 -05999840 510.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50858 -05999841 510.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50868 -05999842 510.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50868 -05999843 510.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50878 -05999844 510.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50878 -05999845 510.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50888 -05999846 510.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50888 -05999847 510.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50898 -05999848 510.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50898 -05999849 510.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a8 -05999850 510.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508a8 -05999851 510.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b8 -05999852 510.60079956 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508b8 -05999853 510.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c8 -05999854 510.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508c8 -05999855 510.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d8 -05999856 510.60086060 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508d8 -05999857 510.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e8 -05999858 510.60092163 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x508e8 -06001019 511.91326904 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06001020 511.93881226 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001021 511.93881226 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001022 512.37298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001023 512.37304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001024 512.37310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001025 512.37310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06001026 512.37316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001027 512.37316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06001028 512.37329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001029 512.37329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06001030 513.94085693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06001031 513.96295166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001032 513.96301270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001033 514.69836426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06001034 514.69891357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06001035 514.88043213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001036 514.88043213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001037 514.88043213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06001038 514.88043213 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06001039 514.88061523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001040 514.88061523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06001041 514.88067627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06001042 514.88067627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06001043 515.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06001044 515.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06001045 515.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06001046 515.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06001047 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06001048 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06001049 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06001050 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06001051 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06001052 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06001053 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06001054 515.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06001055 515.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06001056 515.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06001057 515.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06001058 515.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06001059 515.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06001060 515.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06001061 515.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06001062 515.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06001063 515.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06001064 515.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06001065 515.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06001066 515.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06001067 515.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06001068 515.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06001069 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06001070 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06001071 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06001072 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06001073 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06001074 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06001075 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06001076 515.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06001077 515.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06001078 515.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06001079 515.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06001080 515.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06001081 515.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06001082 515.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06001083 515.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06001084 515.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06001085 515.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06001086 515.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06001087 515.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06001088 515.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06001089 515.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06001090 515.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06001091 515.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06001092 515.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06001093 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06001094 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06001095 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06001096 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06001097 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06001098 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06001099 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06001100 515.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06001101 515.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06001102 515.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06001103 515.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06001104 515.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06001105 515.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06001106 515.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06001107 515.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06001108 515.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06001109 515.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06001110 515.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06001111 515.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06001112 515.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06001113 515.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06001114 515.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06001115 515.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06001116 515.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06001117 515.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06001118 515.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06001119 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06001120 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06001121 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06001122 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06001123 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06001124 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06001125 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06001126 515.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06001127 515.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06001128 515.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06001129 515.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06001130 515.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06001131 515.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06001132 515.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06001133 515.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06001134 515.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06001135 515.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06001136 515.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06001137 515.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06001138 515.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06001139 515.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06001140 515.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06001141 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06001142 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06001143 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06001144 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06001145 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06001146 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06001147 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06001148 515.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06001149 515.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06001150 515.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06001151 515.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06001152 515.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06001153 515.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06001154 515.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06001155 515.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06001156 515.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06001157 515.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06001158 515.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06001159 515.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06001160 515.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06001161 515.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06001162 515.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06001163 515.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06001164 515.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06001165 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06001166 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06001167 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06001168 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06001169 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06001170 515.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06001171 515.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06001172 515.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06001173 515.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06001174 515.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06001175 515.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06001176 515.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06001177 515.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06001178 515.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06001179 515.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06001180 515.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06001181 515.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06001182 515.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06001183 515.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06001184 515.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06001185 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06001186 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06001187 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06001188 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06001189 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06001190 515.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06001191 515.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06001192 515.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06001193 515.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06001194 515.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06001195 515.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06001196 515.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06001197 515.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06001198 515.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06001199 515.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06001200 515.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06001201 515.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06001202 515.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06001203 515.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06001204 515.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06001205 515.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06001206 515.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06001207 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06001208 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06001209 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06001210 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06001211 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06001212 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06001213 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06001214 515.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06001215 515.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06001216 515.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06001217 515.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06001218 515.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06001219 515.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06001220 515.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06001221 515.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06001222 515.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06001223 515.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06001224 515.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06001225 515.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06001226 515.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06001227 515.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06001228 515.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06001229 515.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06001230 515.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06001231 515.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06001232 515.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06001233 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06001234 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06001235 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06001236 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06001237 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06001238 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06001239 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06001240 515.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06001241 515.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06001242 515.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06001243 515.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06001244 515.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06001245 515.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06001246 515.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06001247 515.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06001248 515.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06001249 515.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06001250 515.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06001251 515.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06001252 515.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06001253 515.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06001254 515.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06001255 515.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06001256 515.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06001257 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06001258 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06001259 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06001260 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06001261 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06001262 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06001263 515.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06001264 515.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06001265 515.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06001266 515.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06001267 515.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06001268 515.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06001269 515.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06001270 515.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06001271 515.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06001272 515.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06001273 515.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06001274 515.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06001275 515.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06001276 515.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06001277 515.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06001278 515.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06001279 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06001280 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06001281 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06001282 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06001283 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06001284 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06001285 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06001286 515.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06001287 515.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06001288 515.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06001289 515.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06001290 515.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06001291 515.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06001292 515.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06001293 515.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06001294 515.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06001295 515.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06001296 515.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06001297 515.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06001298 515.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06001299 515.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06001300 515.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06001301 515.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06001302 515.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06001303 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06001304 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06001305 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06001306 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06001307 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06001308 515.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06001309 515.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06001310 515.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06001311 515.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06001312 515.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06001313 515.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06001314 515.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06001315 515.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06001316 515.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06001317 515.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06001318 515.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06001319 515.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06001320 515.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06001321 515.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06001322 515.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06001323 515.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06001324 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06001325 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06001326 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06001327 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06001328 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06001329 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06001330 515.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06001331 515.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06001332 515.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06001333 515.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06001334 515.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06001335 515.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06001336 515.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06001337 515.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06001338 515.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06001339 515.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06001340 515.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06001341 515.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06001342 515.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06001343 515.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06001344 515.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06001345 515.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06001346 515.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06001347 515.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06001348 515.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06001349 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06001350 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06001351 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06001352 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06001353 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06001354 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06001355 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06001356 515.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06001357 515.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06001358 515.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06001359 515.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06001360 515.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06001361 515.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06001362 515.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06001363 515.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06001364 515.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06001365 515.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06001366 515.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06001367 515.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06001368 515.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06001369 515.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06001370 515.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06001371 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06001372 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06001373 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06001374 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06001375 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06001376 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06001377 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06001378 515.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06001379 515.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06001380 515.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06001381 515.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06001382 515.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06001383 515.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06001384 515.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06001385 515.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06001386 515.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06001387 515.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06001388 515.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06001389 515.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06001390 515.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06001391 515.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06001392 515.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06001393 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06001394 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06001395 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06001396 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06001397 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06001398 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06001399 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06001400 515.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06001401 515.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06001402 515.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06001403 515.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06001404 515.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06001405 515.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06001406 515.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06001407 515.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06001408 515.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06001409 515.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06001410 515.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06001411 515.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06001412 515.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06001413 515.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06001414 515.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06001415 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06001416 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06001417 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06001418 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06001419 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06001420 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06001421 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06001422 515.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06001423 515.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06001424 515.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06001425 515.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06001426 515.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06001427 515.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06001428 515.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06001429 515.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06001430 515.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06001431 515.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06001432 515.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06001433 515.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06001434 515.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06001435 515.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06001436 515.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06001437 515.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06001438 515.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06001439 515.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06001440 515.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06001441 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06001442 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06001443 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06001444 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06001445 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06001446 515.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06001447 515.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06001448 515.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06001449 515.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06001450 515.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06001451 515.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06001452 515.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06001453 515.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06001454 515.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06001455 515.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06001456 515.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06001457 515.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06001458 515.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06001459 515.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06001460 515.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06001461 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06001462 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06001463 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06001464 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06001465 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06001466 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06001467 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06001468 515.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06001469 515.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06001470 515.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06001471 515.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06001472 515.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06001473 515.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06001474 515.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06001475 515.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06001476 515.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06001477 515.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06001478 515.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06001479 515.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06001480 515.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06001481 515.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06001482 515.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06001483 515.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06001484 515.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06001485 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06001486 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06001487 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06001488 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06001489 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06001490 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06001491 515.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06001492 515.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06001493 515.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06001494 515.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06001495 515.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06001496 515.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06001497 515.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06001498 515.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06001499 515.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06001500 515.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06001501 515.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06001502 515.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06001503 515.62420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06001504 515.62420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06001505 515.62420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06001506 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06001507 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06001508 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06001509 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06001510 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06001511 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06001512 515.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06001513 515.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06001514 515.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06001515 515.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06001516 515.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06001517 515.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06001518 515.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06001519 515.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06001520 515.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06001521 515.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06001522 515.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06001523 515.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06001524 515.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06001525 515.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06001526 515.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06001527 515.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06001528 515.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06001529 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06001530 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06001531 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06001532 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06001533 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06001534 515.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06001535 515.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06001536 515.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06001537 515.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06001538 515.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06001539 515.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06001540 515.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06001541 515.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06001542 515.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06001543 515.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06001544 515.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06001545 515.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06001546 515.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06001547 515.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06001548 515.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06001549 515.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06001550 515.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06001551 515.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06001552 515.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06001553 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06001554 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06001555 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06001556 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06001557 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06001558 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06001559 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06001560 515.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06001561 515.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06001562 515.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06001563 515.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06001564 515.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06001565 515.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06001566 515.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06001567 515.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06001568 515.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06001569 515.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06001570 515.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06001571 515.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06001572 515.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06001573 515.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06001574 515.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06001575 515.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06001576 515.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06001577 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06001578 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06001579 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06001580 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06001581 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06001582 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06001583 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06001584 515.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06001585 515.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06001586 515.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06001587 515.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06001588 515.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06001589 515.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06001590 515.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06001591 515.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06001592 515.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06001593 515.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06001594 515.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06001595 515.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06001596 515.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06001597 515.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06001598 515.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06001599 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06001600 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06001601 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06001602 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06001603 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06001604 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06001605 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06001606 515.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06001607 515.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06001608 515.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06001609 515.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06001610 515.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06001611 515.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06001612 515.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06001613 515.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06001614 515.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06001615 515.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06001616 515.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06001617 515.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06001618 515.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06001619 515.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06001620 515.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06001621 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06001622 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06001623 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06001624 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06001625 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06001626 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06001627 515.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06001628 515.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06001629 515.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06001630 515.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06001631 515.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06001632 515.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06001633 515.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06001634 515.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06001635 515.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06001636 515.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06001637 515.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06001638 515.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06001639 515.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06001640 515.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06001641 515.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06001642 515.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06001643 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06001644 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06001645 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06001646 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06001647 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06001648 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06001649 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06001650 515.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06001651 515.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06001652 515.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06001653 515.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06001654 515.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06001655 515.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06001656 515.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06001657 515.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06001658 515.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06001659 515.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06001660 515.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06001661 515.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06001662 515.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06001663 515.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06001664 515.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06001665 515.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06001666 515.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06001667 515.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06001668 515.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06001669 515.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06001670 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06001671 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06001672 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06001673 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06001674 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06001675 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06001676 515.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06001677 515.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06001678 515.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06001679 515.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06001680 515.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06001681 515.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06001682 515.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06001683 515.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06001684 515.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06001685 515.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06001686 515.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06001687 515.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06001688 515.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06001689 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06001690 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06001691 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06001692 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06001693 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06001694 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06001695 515.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06001696 515.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06001697 515.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06001698 515.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06001699 515.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06001700 515.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06001701 515.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06001702 515.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06001703 515.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06001704 515.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06001705 515.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06001706 515.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06001707 515.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06001708 515.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06001709 515.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06001710 515.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06001711 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06001712 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06001713 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06001714 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06001715 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06001716 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06001717 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06001718 515.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06001719 515.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06001720 515.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06001721 515.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06001722 515.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06001723 515.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06001724 515.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06001725 515.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06001726 515.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06001727 515.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06001728 515.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06001729 515.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06001730 515.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06001731 515.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06001732 515.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06001733 515.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06001734 515.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06001735 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06001736 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06001737 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06001738 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06001739 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06001740 515.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06001741 515.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06001742 515.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06001743 515.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06001744 515.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06001745 515.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06001746 515.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06001747 515.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06001748 515.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06001749 515.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06001750 515.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06001751 515.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06001752 515.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06001753 515.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06001754 515.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06001755 515.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06001756 515.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06001757 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06001758 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06001759 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06001760 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06001761 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06001762 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06001763 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06001764 515.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06001765 515.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06001766 515.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06001767 515.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06001768 515.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06001769 515.62786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06001770 515.62786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06001771 515.62786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06001772 515.62786865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06001773 515.62792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06001774 515.62792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06001775 515.62792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06001776 515.62792969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06001777 515.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06001778 515.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06001779 515.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06001780 515.62799072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06001781 515.62805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06001782 515.62805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06001783 515.62805176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06001784 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06001785 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06001786 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06001787 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06001788 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06001789 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06001790 515.62811279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06001791 515.62817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06001792 515.62817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06001793 515.62817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06001794 515.62817383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06001795 515.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06001796 515.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06001797 515.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06001798 515.62823486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06001799 515.62829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06001800 515.62829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06001801 515.62829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06001802 515.62829590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06001803 515.62835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06001804 515.62835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06001805 515.62835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06001806 515.62835693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06001807 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06001808 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06001809 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06001810 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06001811 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06001812 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06001813 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06001814 515.62841797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06001815 515.62847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06001816 515.62847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06001817 515.62847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06001818 515.62847900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06001819 515.62854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06001820 515.62854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06001821 515.62854004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06001822 515.62860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06001823 515.62860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06001824 515.62860107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06001825 515.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06001826 515.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06001827 515.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06001828 515.62866211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06001829 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06001830 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06001831 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06001832 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06001833 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06001834 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06001835 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06001836 515.62872314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06001837 515.62878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06001838 515.62878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06001839 515.62878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06001840 515.62878418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06001841 515.62884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06001842 515.62884521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06001843 515.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06001844 515.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06001845 515.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06001846 515.62890625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06001847 515.62896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06001848 515.62896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06001849 515.62896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06001850 515.62896729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06001851 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06001852 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06001853 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06001854 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06001855 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06001856 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06001857 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06001858 515.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06001859 515.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06001860 515.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06001861 515.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06001862 515.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06001863 515.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06001864 515.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06001865 515.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06001866 515.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06001867 515.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06001868 515.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06001869 515.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06001870 515.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06001871 515.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06001872 515.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06001873 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06001874 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06001875 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06001876 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06001877 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06001878 515.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06001879 515.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06001880 515.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06001881 515.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06001882 515.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06001883 515.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06001884 515.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06001885 515.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06001886 515.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06001887 515.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06001888 515.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06001889 515.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06001890 515.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06001891 515.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06001892 515.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06001893 515.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06001894 515.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06001895 515.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06001896 515.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06001897 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06001898 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06001899 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06001900 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06001901 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06001902 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06001903 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06001904 515.62969971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06001905 515.62976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06001906 515.62976074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06001907 515.62982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06001908 515.62982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06001909 515.62982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06001910 515.62982178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06001911 515.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06001912 515.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06001913 515.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06001914 515.62988281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06001915 515.62994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06001916 515.62994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06001917 515.62994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06001918 515.62994385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06001919 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06001920 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06001921 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06001922 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06001923 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06001924 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06001925 515.63000488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06001926 515.63006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06001927 515.63006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06001928 515.63006592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06001929 515.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06001930 515.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06001931 515.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06001932 515.63012695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06001933 515.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06001934 515.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06001935 515.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06001936 515.63018799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06001937 515.63024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06001938 515.63024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06001939 515.63024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06001940 515.63024902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06001941 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06001942 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06001943 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06001944 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06001945 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06001946 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06001947 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06001948 515.63031006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06001949 515.63037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06001950 515.63037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06001951 515.63037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06001952 515.63037109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06001953 515.63043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06001954 515.63043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06001955 515.63043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06001956 515.63043213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06001957 515.63049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06001958 515.63049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06001959 515.63049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06001960 515.63049316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06001961 515.63055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06001962 515.63055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06001963 515.63055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06001964 515.63055420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06001965 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06001966 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06001967 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06001968 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06001969 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06001970 515.63061523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06001971 515.63067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06001972 515.63067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06001973 515.63067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06001974 515.63067627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06001975 515.63073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06001976 515.63073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06001977 515.63073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06001978 515.63073730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06001979 515.63079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06001980 515.63079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06001981 515.63079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06001982 515.63079834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06001983 515.63085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06001984 515.63085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06001985 515.63085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06001986 515.63085938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06001987 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06001988 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06001989 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06001990 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06001991 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06001992 515.63092041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06001993 515.63098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06001994 515.63098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06001995 515.63098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06001996 515.63098145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06001997 515.63104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06001998 515.63104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06001999 515.63104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06002000 515.63104248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06002001 515.63110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06002002 515.63110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06002003 515.63110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06002004 515.63110352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06002005 515.63116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06002006 515.63116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06002007 515.63116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06002008 515.63116455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06002009 515.63122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06002010 515.63122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06002011 515.63122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06002012 515.63122559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06002013 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06002014 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06002015 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06002016 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06002017 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06002018 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06002019 515.63128662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06002020 515.63134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06002021 515.63134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06002022 515.63134766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06002023 515.63140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06002024 515.63140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06002025 515.63140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06002026 515.63140869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06002027 515.63146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06002028 515.63146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06002029 515.63146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06002030 515.63146973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06002031 515.63153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06002032 515.63153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06002033 515.63153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06002034 515.63153076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06002035 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06002036 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06002037 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06002038 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06002039 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06002040 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06002041 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06002042 515.63159180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06002043 515.63165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06002044 515.63165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06002045 515.63165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06002046 515.63165283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06002047 515.63171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06002048 515.63171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06002049 515.63171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06002050 515.63171387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06002051 515.63177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06002052 515.63177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06002053 515.63177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06002054 515.63177490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06002055 515.63183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06002056 515.63183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06002057 515.63183594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06002058 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06002059 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06002060 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06002061 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06002062 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06002063 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06002064 515.63189697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06002065 515.63195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06002066 515.63195801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06002067 515.63201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06002068 515.63201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06002069 515.63201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06002070 515.63201904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06002071 515.63208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06002072 515.63208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06002073 515.63208008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06002074 515.63214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06002075 515.63214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06002076 515.63214111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06002077 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06002078 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06002079 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06002080 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06002081 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06002082 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06002083 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06002084 515.63220215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06002085 515.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06002086 515.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06002087 515.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06002088 515.63226318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06002089 515.63232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06002090 515.63232422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06002091 515.63238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06002092 515.63238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06002093 515.63238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06002094 515.63238525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06002095 515.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06002096 515.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06002097 515.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06002098 515.63244629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06002099 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06002100 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06002101 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06002102 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06002103 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06002104 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06002105 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06002106 515.63250732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06002107 515.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06002108 515.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06002109 515.63256836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06002110 515.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06002111 515.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06002112 515.63262939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06002113 515.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06002114 515.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06002115 515.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06002116 515.63269043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06002117 515.63275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06002118 515.63275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06002119 515.63275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06002120 515.63275146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06002121 515.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06002122 515.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06002123 515.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06002124 515.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06002125 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06002126 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06002127 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06002128 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06002129 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06002130 515.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06002131 515.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06002132 515.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06002133 515.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06002134 515.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06002135 515.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06002136 515.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06002137 515.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06002138 515.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06002139 515.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06002140 515.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06002141 515.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06002142 515.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06002143 515.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06002144 515.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06002145 515.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06002146 515.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06002147 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06002148 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06002149 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06002150 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06002151 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06002152 515.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06002153 515.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06002154 515.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06002155 515.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06002156 515.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06002157 515.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06002158 515.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06002159 515.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06002160 515.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06002161 515.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06002162 515.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06002163 515.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06002164 515.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06002165 515.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06002166 515.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06002167 515.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06002168 515.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06002169 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06002170 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06002171 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06002172 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06002173 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06002174 515.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06002175 515.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06002176 515.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06002177 515.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06002178 515.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06002179 515.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06002180 515.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06002181 515.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06002182 515.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06002183 515.63366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06002184 515.63366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06002185 515.63366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06002186 515.63366699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06002187 515.63372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06002188 515.63372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06002189 515.63372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06002190 515.63372803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06002191 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06002192 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06002193 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06002194 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06002195 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06002196 515.63378906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06002197 515.63385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06002198 515.63385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06002199 515.63385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06002200 515.63385010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06002201 515.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06002202 515.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06002203 515.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06002204 515.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06002205 515.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06002206 515.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06002207 515.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06002208 515.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06002209 515.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06002210 515.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06002211 515.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06002212 515.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06002213 515.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06002214 515.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06002215 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06002216 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06002217 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06002218 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06002219 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06002220 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06002221 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06002222 515.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06002223 515.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06002224 515.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06002225 515.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06002226 515.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06002227 515.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06002228 515.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06002229 515.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06002230 515.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06002231 515.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06002232 515.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06002233 515.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06002234 515.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06002235 515.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06002236 515.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06002237 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06002238 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06002239 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06002240 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06002241 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06002242 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06002243 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06002244 515.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06002245 515.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06002246 515.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06002247 515.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06002248 515.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06002249 515.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06002250 515.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06002251 515.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06002252 515.63458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06002253 515.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06002254 515.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06002255 515.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06002256 515.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06002257 515.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06002258 515.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06002259 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06002260 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06002261 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06002262 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06002263 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06002264 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06002265 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06002266 515.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06002267 515.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06002268 515.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06002269 515.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06002270 515.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06002271 515.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06002272 515.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06002273 515.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06002274 515.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06002275 515.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06002276 515.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06002277 515.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06002278 515.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06002279 515.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06002280 515.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06002281 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06002282 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06002283 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06002284 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06002285 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06002286 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06002287 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06002288 515.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06002289 515.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06002290 515.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06002291 515.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06002292 515.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06002293 515.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06002294 515.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06002295 515.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06002296 515.63525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06002297 515.63525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06002298 515.63525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06002299 515.63531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06002300 515.63531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06002301 515.63531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06002302 515.63531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06002303 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06002304 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06002305 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06002306 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06002307 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06002308 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06002309 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06002310 515.63537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06002311 515.63543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06002312 515.63543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06002313 515.63543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06002314 515.63543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06002315 515.63549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06002316 515.63549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06002317 515.63555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06002318 515.63555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06002319 515.63555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06002320 515.63555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06002321 515.63562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06002322 515.63562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06002323 515.63562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06002324 515.63562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06002325 515.63568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06002326 515.63568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06002327 515.63568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06002328 515.63568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06002329 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06002330 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06002331 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06002332 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06002333 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06002334 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06002335 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06002336 515.63574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06002337 515.63580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06002338 515.63580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06002339 515.63586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06002340 515.63586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06002341 515.63586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06002342 515.63586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06002343 515.63592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06002344 515.63592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06002345 515.63592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06002346 515.63592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06002347 515.63598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06002348 515.63598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06002349 515.63598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06002350 515.63598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06002351 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06002352 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06002353 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06002354 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06002355 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06002356 515.63604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06002357 515.63610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06002358 515.63610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06002359 515.63610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06002360 515.63610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06002361 515.63616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06002362 515.63616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06002363 515.63616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06002364 515.63616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06002365 515.63623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06002366 515.63623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06002367 515.63623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06002368 515.63623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06002369 515.63629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06002370 515.63629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06002371 515.63629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06002372 515.63629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06002373 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06002374 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06002375 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06002376 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06002377 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06002378 515.63635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06002379 515.63641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06002380 515.63641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06002381 515.63641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06002382 515.63641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06002383 515.63647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06002384 515.63647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06002385 515.63647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06002386 515.63647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06002387 515.63653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06002388 515.63653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06002389 515.63653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06002390 515.63653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06002391 515.63659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06002392 515.63659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06002393 515.63659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06002394 515.63659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06002395 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06002396 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06002397 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06002398 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06002399 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06002400 515.63665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06002401 515.63671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06002402 515.63671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06002403 515.63671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06002404 515.63671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06002405 515.63677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06002406 515.63677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06002407 515.63677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06002408 515.63677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06002409 515.63684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06002410 515.63684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06002411 515.63684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06002412 515.63684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06002413 515.63690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06002414 515.63690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06002415 515.63690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06002416 515.63690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06002417 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06002418 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06002419 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06002420 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06002421 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06002422 515.63696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06002423 515.63702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06002424 515.63702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06002425 515.63702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06002426 515.63702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06002427 515.63708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06002428 515.63708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06002429 515.63708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06002430 515.63708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06002431 515.63714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06002432 515.63714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06002433 515.63714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06002434 515.63714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06002435 515.63720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06002436 515.63720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06002437 515.63720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06002438 515.63720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06002439 515.63726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06002440 515.63726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06002441 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06002442 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06002443 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06002444 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06002445 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06002446 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06002447 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06002448 515.63732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06002449 515.63739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06002450 515.63739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06002451 515.63739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06002452 515.63739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06002453 515.63745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06002454 515.63745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06002455 515.63745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06002456 515.63745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06002457 515.63751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06002458 515.63751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06002459 515.63751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06002460 515.63751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06002461 515.63757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06002462 515.63757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06002463 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06002464 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06002465 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06002466 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06002467 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06002468 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06002469 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06002470 515.63763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06002471 515.63769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06002472 515.63769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06002473 515.63769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06002474 515.63769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06002475 515.63775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06002476 515.63775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06002477 515.63775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06002478 515.63775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06002479 515.63781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06002480 515.63781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06002481 515.63781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06002482 515.63787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06002483 515.63787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06002484 515.63787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06002485 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06002486 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06002487 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06002488 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06002489 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06002490 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06002491 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06002492 515.63793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06002493 515.63800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06002494 515.63800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06002495 515.63800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06002496 515.63800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06002497 515.63806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06002498 515.63806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06002499 515.63806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06002500 515.63806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06002501 515.63812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06002502 515.63812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06002503 515.63812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06002504 515.63818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06002505 515.63818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06002506 515.63818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06002507 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06002508 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06002509 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06002510 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06002511 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06002512 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06002513 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06002514 515.63824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06002515 515.63830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06002516 515.63830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06002517 515.63830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06002518 515.63830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06002519 515.63836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06002520 515.63836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06002521 515.63836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06002522 515.63836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06002523 515.63842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06002524 515.63842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06002525 515.63842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06002526 515.63848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06002527 515.63848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06002528 515.63848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06002529 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06002530 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06002531 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06002532 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06002533 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06002534 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06002535 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06002536 515.63854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06002537 515.63861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06002538 515.63861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06002539 515.63861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06002540 515.63861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06002541 515.63867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06002542 515.63867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06002543 515.63867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06002544 515.63873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06002545 515.63873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06002546 515.63873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06002547 515.63879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06002548 515.63879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06002549 515.63879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06002550 515.63879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06002551 515.63885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06002552 515.63885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06002553 515.63885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06002554 515.63885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06002555 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06002556 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06002557 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06002558 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06002559 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06002560 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06002561 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06002562 515.63891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06002563 515.63897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06002564 515.63897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06002565 515.63897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06002566 515.63903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06002567 515.63903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06002568 515.63903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06002569 515.63909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06002570 515.63909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06002571 515.63909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06002572 515.63909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06002573 515.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06002574 515.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06002575 515.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06002576 515.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06002577 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06002578 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06002579 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06002580 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06002581 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06002582 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06002583 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06002584 515.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06002585 515.63928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06002586 515.63928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06002587 515.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06002588 515.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06002589 515.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06002590 515.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06002591 515.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06002592 515.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06002593 515.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06002594 515.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06002595 515.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06002596 515.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06002597 515.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06002598 515.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06002599 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06002600 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06002601 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06002602 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06002603 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06002604 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06002605 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06002606 515.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06002607 515.63958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06002608 515.63958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06002609 515.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06002610 515.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06002611 515.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06002612 515.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06002613 515.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06002614 515.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06002615 515.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06002616 515.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06002617 515.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06002618 515.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06002619 515.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06002620 515.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06002621 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06002622 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06002623 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06002624 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06002625 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06002626 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06002627 515.63983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06002628 515.63989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06002629 515.63989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06002630 515.63989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06002631 515.63995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06002632 515.63995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06002633 515.63995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06002634 515.63995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06002635 515.64001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06002636 515.64001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06002637 515.64001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06002638 515.64001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06002639 515.64007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06002640 515.64007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06002641 515.64007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06002642 515.64007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06002643 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06002644 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06002645 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06002646 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06002647 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06002648 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06002649 515.64013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06002650 515.64019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06002651 515.64019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06002652 515.64019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06002653 515.64025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06002654 515.64025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06002655 515.64025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06002656 515.64025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06002657 515.64031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06002658 515.64031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06002659 515.64031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06002660 515.64031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06002661 515.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06002662 515.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06002663 515.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06002664 515.64038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06002665 515.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06002666 515.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06002667 515.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06002668 515.64044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06002669 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06002670 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06002671 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06002672 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06002673 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06002674 515.64050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06002675 515.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06002676 515.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06002677 515.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06002678 515.64056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06002679 515.64062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06002680 515.64062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06002681 515.64062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06002682 515.64062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06002683 515.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06002684 515.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06002685 515.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06002686 515.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06002687 515.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06002688 515.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06002689 515.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06002690 515.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06002691 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06002692 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06002693 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06002694 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06002695 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06002696 515.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06002697 515.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06002698 515.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06002699 515.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06002700 515.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06002701 515.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06002702 515.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06002703 515.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06002704 515.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06002705 515.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06002706 515.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06002707 515.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06002708 515.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06002709 515.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06002710 515.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06002711 515.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06002712 515.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06002713 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06002714 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06002715 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06002716 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06002717 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06002718 515.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06002719 515.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06002720 515.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06002721 515.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06002722 515.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06002723 515.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06002724 515.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06002725 515.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06002726 515.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06002727 515.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06002728 515.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06002729 515.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06002730 515.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06002731 515.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06002732 515.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06002733 515.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06002734 515.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06002735 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06002736 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06002737 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06002738 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06002739 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06002740 515.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06002741 515.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06002742 515.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06002743 515.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06002744 515.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06002745 515.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06002746 515.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06002747 515.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06002748 515.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06002749 515.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06002750 515.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06002751 515.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06002752 515.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06002753 515.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06002754 515.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06002755 515.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06002756 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06002757 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06002758 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06002759 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06002760 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06002761 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06002762 515.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06002763 515.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06002764 515.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06002765 515.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06002766 515.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06002767 515.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06002768 515.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06002769 515.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06002770 515.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06002771 515.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06002772 515.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06002773 515.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06002774 515.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06002775 515.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06002776 515.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06002777 515.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06002778 515.64202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06002779 515.64202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06002780 515.64202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06002781 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06002782 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06002783 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06002784 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06002785 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06002786 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06002787 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06002788 515.64208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06002789 515.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06002790 515.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06002791 515.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06002792 515.64215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06002793 515.64221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06002794 515.64221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06002795 515.64221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06002796 515.64221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06002797 515.64227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06002798 515.64227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06002799 515.64227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06002800 515.64233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06002801 515.64233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06002802 515.64233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06002803 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06002804 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06002805 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06002806 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06002807 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06002808 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06002809 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06002810 515.64239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06002811 515.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06002812 515.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06002813 515.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06002814 515.64245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06002815 515.64251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06002816 515.64251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06002817 515.64251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06002818 515.64251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06002819 515.64257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06002820 515.64257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06002821 515.64257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06002822 515.64263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06002823 515.64263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06002824 515.64263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06002825 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06002826 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06002827 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06002828 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06002829 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06002830 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06002831 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06002832 515.64270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06002833 515.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06002834 515.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06002835 515.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06002836 515.64276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06002837 515.64282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06002838 515.64282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06002839 515.64282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06002840 515.64288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06002841 515.64288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06002842 515.64288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06002843 515.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06002844 515.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06002845 515.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06002846 515.64294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06002847 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06002848 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06002849 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06002850 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06002851 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06002852 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06002853 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06002854 515.64300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06002855 515.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06002856 515.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06002857 515.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06002858 515.64306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06002859 515.64312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06002860 515.64312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06002861 515.64312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06002862 515.64318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06002863 515.64318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06002864 515.64318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06002865 515.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06002866 515.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06002867 515.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06002868 515.64324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06002869 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06002870 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06002871 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06002872 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06002873 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06002874 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06002875 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06002876 515.64331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06002877 515.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06002878 515.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06002879 515.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06002880 515.64337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06002881 515.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06002882 515.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06002883 515.64343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06002884 515.64349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06002885 515.64349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06002886 515.64349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06002887 515.64355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06002888 515.64355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06002889 515.64355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06002890 515.64355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06002891 515.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06002892 515.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06002893 515.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06002894 515.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06002895 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06002896 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06002897 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06002898 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06002899 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06002900 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06002901 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06002902 515.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06002903 515.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06002904 515.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06002905 515.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06002906 515.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06002907 515.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06002908 515.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06002909 515.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06002910 515.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06002911 515.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06002912 515.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06002913 515.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06002914 515.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06002915 515.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06002916 515.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06002917 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06002918 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06002919 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06002920 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06002921 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06002922 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06002923 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06002924 515.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06002925 515.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06002926 515.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06002927 515.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06002928 515.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06002929 515.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06002930 515.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06002931 515.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06002932 515.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06002933 515.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06002934 515.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06002935 515.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06002936 515.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06002937 515.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06002938 515.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06002939 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06002940 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06002941 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06002942 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06002943 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06002944 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06002945 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06002946 515.64428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06002947 515.64434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06002948 515.64434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06002949 515.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06002950 515.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06002951 515.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06002952 515.64440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06002953 515.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06002954 515.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06002955 515.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06002956 515.64447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06002957 515.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06002958 515.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06002959 515.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06002960 515.64453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06002961 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06002962 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06002963 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06002964 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06002965 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06002966 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06002967 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06002968 515.64459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06002969 515.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06002970 515.64465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06002971 515.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06002972 515.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06002973 515.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06002974 515.64471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06002975 515.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06002976 515.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06002977 515.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06002978 515.64477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06002979 515.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06002980 515.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06002981 515.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06002982 515.64483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06002983 515.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06002984 515.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06002985 515.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06002986 515.64489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06002987 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06002988 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06002989 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06002990 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06002991 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06002992 515.64495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06002993 515.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06002994 515.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06002995 515.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06002996 515.64501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06002997 515.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06002998 515.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06002999 515.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06003000 515.64508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06003001 515.64514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06003002 515.64514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06003003 515.64514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06003004 515.64514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06003005 515.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06003006 515.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06003007 515.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06003008 515.64520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06003009 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06003010 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06003011 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06003012 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06003013 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06003014 515.64526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06003015 515.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06003016 515.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06003017 515.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06003018 515.64532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06003019 515.64538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06003020 515.64538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06003021 515.64538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06003022 515.64538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06003023 515.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06003024 515.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06003025 515.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06003026 515.64544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06003027 515.64550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06003028 515.64550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06003029 515.64550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06003030 515.64550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06003031 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06003032 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06003033 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06003034 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06003035 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06003036 515.64556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06003037 515.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06003038 515.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06003039 515.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06003040 515.64562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06003041 515.64569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06003042 515.64569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06003043 515.64569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06003044 515.64569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06003045 515.64575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06003046 515.64575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06003047 515.64575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06003048 515.64575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06003049 515.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06003050 515.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06003051 515.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06003052 515.64581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06003053 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06003054 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06003055 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06003056 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06003057 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06003058 515.64587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06003059 515.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06003060 515.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06003061 515.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06003062 515.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06003063 515.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06003064 515.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06003065 515.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06003066 515.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06003067 515.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06003068 515.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06003069 515.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06003070 515.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06003071 515.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06003072 515.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06003073 515.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06003074 515.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06003075 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06003076 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06003077 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06003078 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06003079 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06003080 515.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06003081 515.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06003082 515.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06003083 515.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06003084 515.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06003085 515.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06003086 515.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06003087 515.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06003088 515.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06003089 515.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06003090 515.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06003091 515.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06003092 515.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06003093 515.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06003094 515.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06006126 515.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -06006127 515.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -06006128 515.68902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -06006129 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -06006130 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -06006131 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -06006132 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -06006133 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -06006134 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -06006135 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -06006136 515.68908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -06006137 515.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -06006138 515.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -06006139 515.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -06006140 515.68914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -06006141 515.68920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -06006142 515.68920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -06006143 515.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -06006144 515.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -06006145 515.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -06006146 515.68927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -06006147 515.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -06006148 515.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -06006149 515.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -06006150 515.68933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -06006151 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -06006152 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -06006153 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -06006154 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -06006155 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -06006156 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -06006157 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -06006158 515.68939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -06006159 515.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -06006160 515.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -06006161 515.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -06006162 515.68945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -06006163 515.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -06006164 515.68951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -06006165 515.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -06006166 515.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -06006167 515.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -06006168 515.68957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -06006169 515.68963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -06023791 515.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -06023792 515.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -06023793 515.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -06023794 515.93273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -06023795 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -06023796 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -06023797 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -06023798 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -06023799 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -06023800 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -06023801 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -06023802 515.93280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -06023803 515.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -06023804 515.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -06023805 515.93286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d798 -06023806 515.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d798 -06023807 515.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a8 -06023808 515.93292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a8 -06023809 515.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b8 -06023810 515.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7b8 -06023811 515.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c8 -06023812 515.93298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7c8 -06023813 515.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d8 -06023814 515.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7d8 -06023815 515.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e8 -06023816 515.93304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7e8 -06023817 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f8 -06023818 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7f8 -06023819 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d808 -06023820 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d808 -06023821 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d818 -06023822 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d818 -06023823 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d828 -06023824 515.93310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d828 -06023825 515.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d838 -06023826 515.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d838 -06023827 515.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d848 -06023828 515.93316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d848 -06023829 515.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d858 -06023830 515.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d858 -06023831 515.93322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d868 -06023832 515.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d868 -06023833 515.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d878 -06023834 515.93328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d878 -06027800 515.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -06027801 515.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35458 -06027802 515.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -06027803 515.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35468 -06027804 515.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -06027805 515.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35478 -06027806 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35488 -06027807 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35488 -06027808 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35498 -06027809 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35498 -06027810 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a8 -06027811 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354a8 -06027812 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b8 -06027813 515.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354b8 -06027814 515.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c8 -06027815 515.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354c8 -06027816 515.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d8 -06027817 515.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354d8 -06027818 515.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e8 -06027819 515.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354e8 -06027820 515.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f8 -06027821 515.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x354f8 -06027822 515.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35508 -06027823 515.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35508 -06027824 515.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35518 -06027825 515.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35518 -06027826 515.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35528 -06027827 515.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35528 -06027828 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35538 -06027829 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35538 -06027830 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35548 -06027831 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35548 -06027832 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35558 -06027833 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35558 -06027834 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35568 -06027835 515.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35568 -06027836 515.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35578 -06027837 515.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35578 -06027838 515.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35588 -06027839 515.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35588 -06027840 515.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35598 -06027841 515.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35598 -06027842 515.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a8 -06027843 515.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x355a8 -06032694 516.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed48 -06032695 516.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed48 -06032696 516.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed58 -06032697 516.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed58 -06032698 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed68 -06032699 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed68 -06032700 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed78 -06032701 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed78 -06032702 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed88 -06032703 516.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed88 -06032704 516.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed98 -06032705 516.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed98 -06032706 516.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda8 -06032707 516.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda8 -06032708 516.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb8 -06032709 516.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb8 -06032710 516.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc8 -06032711 516.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc8 -06032712 516.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd8 -06032713 516.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd8 -06032714 516.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede8 -06032715 516.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede8 -06032716 516.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf8 -06032717 516.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf8 -06032718 516.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee08 -06032719 516.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee08 -06032720 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -06032721 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -06032722 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -06032723 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -06032724 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee38 -06032725 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee38 -06032726 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee48 -06032727 516.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee48 -06032728 516.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee58 -06032729 516.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee58 -06032730 516.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee68 -06032731 516.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee68 -06032732 516.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee78 -06032733 516.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee78 -06032734 516.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee88 -06032735 516.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee88 -06032736 516.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee98 -06032737 516.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee98 -06037736 516.12451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06037737 516.12451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06037738 516.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06037739 516.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06037740 516.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06037741 516.12457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06037742 516.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06037743 516.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06037744 516.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06037745 516.12463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06037746 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06037747 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06037748 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06037749 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06037750 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06037751 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06037752 516.12469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06037753 516.12475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06037754 516.12475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06037755 516.12475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06037756 516.12481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06037757 516.12481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06037758 516.12481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06037759 516.12481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06037760 516.12487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06037761 516.12487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06037762 516.12487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06037763 516.12487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06037764 516.12493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06037765 516.12493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06037766 516.12493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06037767 516.12493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06037768 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06037769 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06037770 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06037771 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06037772 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06037773 516.12500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06037774 516.12506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -06037775 516.12506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -06037776 516.12506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -06037777 516.12506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -06037778 516.12512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -06037779 516.12512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -06042779 516.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52858 -06042780 516.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -06042781 516.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -06042782 516.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -06042783 516.19335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -06042784 516.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -06042785 516.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -06042786 516.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -06042787 516.19342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -06042788 516.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -06042789 516.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -06042790 516.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b8 -06042791 516.19348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b8 -06042792 516.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -06042793 516.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -06042794 516.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -06042795 516.19354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -06042796 516.19360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -06042797 516.19360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -06042798 516.19360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -06042799 516.19360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -06042800 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -06042801 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -06042802 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -06042803 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -06042804 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -06042805 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -06042806 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52938 -06042807 516.19366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52938 -06042808 516.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52948 -06042809 516.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52948 -06042810 516.19372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52958 -06042811 516.19378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52958 -06042812 516.19378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52968 -06042813 516.19378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52968 -06042814 516.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52978 -06042815 516.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52978 -06042816 516.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52988 -06042817 516.19384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52988 -06042818 516.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52998 -06042819 516.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52998 -06042820 516.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a8 -06042821 516.19390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x529a8 -06042822 516.19396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x529b8 -06042936 517.38665771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06042937 517.38671875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06042938 517.38671875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06042939 517.38671875 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06042940 517.38684082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06042941 517.38684082 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06042942 517.38690186 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06042943 517.38696289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06042944 517.49261475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06042945 517.51007080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042946 517.54913330 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06042947 517.54925537 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06042948 517.55462646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -06042949 517.56011963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06042950 517.56018066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06042951 517.56018066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06042952 517.56060791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042953 517.60504150 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042954 517.64721680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042955 517.70056152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042956 517.74768066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042957 517.79064941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042958 517.82983398 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042959 517.89300537 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042960 517.96093750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042961 517.98718262 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06042962 518.01135254 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06042963 518.01135254 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06042964 518.03637695 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042965 518.07916260 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042966 518.12420654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042967 518.17138672 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042968 518.22943115 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042969 518.27868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042970 518.31707764 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042971 518.35729980 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042972 518.44714355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042973 518.48931885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06042974 518.48937988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06042975 518.48956299 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06042976 518.49328613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -06042977 518.49707031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06042978 518.49755859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042979 518.54760742 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042980 518.61096191 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042981 518.70593262 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042982 518.76104736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042983 518.80017090 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042984 518.85522461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042985 518.91131592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042986 518.97833252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042987 519.03131104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042988 519.07055664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042989 519.11505127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042990 519.15704346 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042991 519.19848633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042992 519.24273682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042993 519.28497314 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042994 519.32397461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042995 519.36358643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042996 519.40386963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042997 519.44299316 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042998 519.53277588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06042999 519.59381104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043000 519.63726807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043001 519.68170166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043002 519.72363281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043003 519.77166748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043004 519.81170654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043005 519.85223389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043006 519.89392090 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06043007 519.89398193 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06043008 519.89398193 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06043009 519.89404297 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06043010 519.89410400 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06043011 519.89410400 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06043012 519.89416504 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06043013 519.89422607 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06043014 519.90777588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043015 519.95849609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043016 520.01031494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043017 520.01287842 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06043018 520.03472900 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06043019 520.03472900 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06043020 520.06335449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043021 520.10375977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043022 520.17675781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043023 520.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043024 520.31207275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043025 520.35339355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043026 520.39318848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043027 520.43243408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043028 520.47595215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043029 520.51550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043030 520.55822754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043031 520.59979248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043032 520.65893555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043033 520.69842529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043034 520.74798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043035 520.81683350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043036 520.88250732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043037 520.93914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043038 521.00469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043039 521.04779053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043040 521.08746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06043041 521.08758545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53098 -06043042 521.09417725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -06043043 521.10131836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06043044 521.10131836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06043045 521.10137939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06043046 521.10223389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043047 521.14434814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043048 521.18768311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06043049 521.19714355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06043050 521.19714355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06043051 521.19720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06043052 521.19720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06043053 521.19720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06043054 521.19720459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06043055 521.19726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06043056 521.19726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06043057 521.19726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06043058 521.19726563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06043059 521.19732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06043060 521.19732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06043061 521.19732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06043062 521.19732666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06043063 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06043064 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06043065 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06043066 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06043067 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06043068 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06043069 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06043070 521.19738770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06043071 521.19744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06043072 521.19744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06043073 521.19744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06043074 521.19744873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06043075 521.19750977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06043076 521.19750977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06043077 521.19750977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06043078 521.19757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06043079 521.19757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06043080 521.19757080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06043081 521.19763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06043082 521.19763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06043083 521.19763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06043084 521.19763184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06043085 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06043086 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06043087 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06043088 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06043089 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06043090 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06043091 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06043092 521.19769287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06043093 521.19775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06043094 521.19775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06043095 521.19775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06043096 521.19775391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06043097 521.19781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06043098 521.19781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06043099 521.19781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06043100 521.19781494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06043101 521.19787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06043102 521.19787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06043103 521.19787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06043104 521.19787598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06043105 521.19793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06043106 521.19793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06043107 521.19793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06043108 521.19793701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06043109 521.19799805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06043110 521.19799805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06043111 521.19799805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06043112 521.19799805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06043113 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06043114 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06043115 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06043116 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06043117 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06043118 521.19805908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06043119 521.19812012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06043120 521.19812012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06043121 521.19818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06043122 521.19818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06043123 521.19818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06043124 521.19818115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06043125 521.19824219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06043126 521.19824219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06043127 521.19824219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06043128 521.19830322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06043129 521.19830322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06043130 521.19830322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06043131 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06043132 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06043133 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06043134 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06043135 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06043136 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06043137 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06043138 521.19836426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06043139 521.19842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06043140 521.19842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06043141 521.19842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06043142 521.19842529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06043143 521.19848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06043144 521.19848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06043145 521.19848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06043146 521.19848633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06043147 521.19854736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06043148 521.19854736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06043149 521.19860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06043150 521.19860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06043151 521.19860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06043152 521.19860840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06043153 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06043154 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06043155 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06043156 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06043157 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06043158 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06043159 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06043160 521.19866943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06043161 521.19873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06043162 521.19873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06043163 521.19873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06043164 521.19873047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06043165 521.19879150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06043166 521.19879150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06043167 521.19879150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06043168 521.19879150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06043169 521.19885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06043170 521.19885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06043171 521.19885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06043172 521.19885254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06043173 521.19891357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06043174 521.19891357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06043175 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06043176 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06043177 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06043178 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06043179 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06043180 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06043181 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06043182 521.19897461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06043183 521.19903564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06043184 521.19903564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06043185 521.19909668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06043186 521.19909668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06043187 521.19909668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06043188 521.19909668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06043189 521.19915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06043190 521.19915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06043191 521.19915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06043192 521.19915771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06043193 521.19921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06043194 521.19921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06043195 521.19921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06043196 521.19921875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06043197 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06043198 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06043199 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06043200 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06043201 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06043202 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06043203 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06043204 521.19927979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06043205 521.19934082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06043206 521.19934082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06043207 521.19934082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06043208 521.19934082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06043209 521.19940186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06043210 521.19940186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06043211 521.19940186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06043212 521.19946289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06043213 521.19946289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06043214 521.19946289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06043215 521.19952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06043216 521.19952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06043217 521.19952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06043218 521.19952393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06043219 521.19958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06043220 521.19958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06043221 521.19958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06043222 521.19958496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06043223 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06043224 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06043225 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06043226 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06043227 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06043228 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06043229 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06043230 521.19964600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06043231 521.19970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06043232 521.19970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06043233 521.19970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06043234 521.19970703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06043235 521.19976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06043236 521.19976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06043237 521.19976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06043238 521.19976807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06043239 521.19982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06043240 521.19982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06043241 521.19982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06043242 521.19982910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06043243 521.19989014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06043244 521.19989014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06043245 521.19989014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06043246 521.19989014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06043247 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06043248 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06043249 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06043250 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06043251 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06043252 521.19995117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06043253 521.20001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06043254 521.20001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06043255 521.20001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06043256 521.20001221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06043257 521.20007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06043258 521.20007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06043259 521.20007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06043260 521.20007324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06043261 521.20013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06043262 521.20013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06043263 521.20013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06043264 521.20013428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06043265 521.20019531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06043266 521.20019531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06043267 521.20019531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06043268 521.20019531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06043269 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06043270 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06043271 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06043272 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06043273 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06043274 521.20025635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06043275 521.20031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06043276 521.20031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06043277 521.20031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06043278 521.20031738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06043279 521.20037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06043280 521.20037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06043281 521.20037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06043282 521.20037842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06043283 521.20043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06043284 521.20043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06043285 521.20043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06043286 521.20043945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06043287 521.20050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06043288 521.20050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06043289 521.20050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06043290 521.20050049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06043291 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06043292 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06043293 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06043294 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06043295 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06043296 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06043297 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06043298 521.20056152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06043299 521.20062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06043300 521.20062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06043301 521.20062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06043302 521.20062256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06043303 521.20068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06043304 521.20068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06043305 521.20068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06043306 521.20068359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06043307 521.20074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06043308 521.20074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06043309 521.20074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06043310 521.20074463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06043311 521.20080566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06043312 521.20080566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06043313 521.20080566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06043314 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06043315 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06043316 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06043317 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06043318 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06043319 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06043320 521.20086670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06043321 521.20092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06043322 521.20092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06043323 521.20092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06043324 521.20092773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06043325 521.20098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06043326 521.20098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06043327 521.20098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06043328 521.20098877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06043329 521.20104980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06043330 521.20104980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06043331 521.20104980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06043332 521.20104980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06043333 521.20111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06043334 521.20111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06043335 521.20111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06043336 521.20111084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06043337 521.20117188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06043338 521.20117188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06043339 521.20117188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06043340 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06043341 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06043342 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06043343 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06043344 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06043345 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06043346 521.20123291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06043347 521.20129395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06043348 521.20129395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06043349 521.20129395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06043350 521.20129395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06043351 521.20135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06043352 521.20135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06043353 521.20135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06043354 521.20135498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06043355 521.20141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06043356 521.20141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06043357 521.20141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06043358 521.20141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06043359 521.20147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06043360 521.20147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06043361 521.20147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06043362 521.20147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06043363 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06043364 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06043365 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06043366 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06043367 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06043368 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06043369 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06043370 521.20153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06043371 521.20159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06043372 521.20159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06043373 521.20159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06043374 521.20159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06043375 521.20166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06043376 521.20166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06043377 521.20166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06043378 521.20166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06043379 521.20172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06043380 521.20172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06043381 521.20172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06043382 521.20178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06043383 521.20178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06043384 521.20178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06043385 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06043386 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06043387 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06043388 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06043389 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06043390 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06043391 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06043392 521.20184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06043393 521.20190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06043394 521.20190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06043395 521.20190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06043396 521.20190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06043397 521.20196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06043398 521.20196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06043399 521.20196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06043400 521.20196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06043401 521.20202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06043402 521.20202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06043403 521.20202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06043404 521.20202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06043405 521.20208740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06043406 521.20208740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06043407 521.20208740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06043408 521.20208740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06043409 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06043410 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06043411 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06043412 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06043413 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06043414 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06043415 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06043416 521.20214844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06043417 521.20220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06043418 521.20220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06043419 521.20220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06043420 521.20220947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06043421 521.20227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06043422 521.20227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06043423 521.20227051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06043424 521.20233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06043425 521.20233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06043426 521.20233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06043427 521.20239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06043428 521.20239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06043429 521.20239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06043430 521.20239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06043431 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06043432 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06043433 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06043434 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06043435 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06043436 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06043437 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06043438 521.20245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06043439 521.20251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06043440 521.20251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06043441 521.20251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06043442 521.20251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06043443 521.20257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06043444 521.20257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06043445 521.20257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06043446 521.20257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06043447 521.20263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06043448 521.20263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06043449 521.20263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06043450 521.20263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06043451 521.20269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06043452 521.20269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06043453 521.20269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06043454 521.20269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06043455 521.20275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06043456 521.20275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06043457 521.20275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06043458 521.20275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06043459 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06043460 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06043461 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06043462 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06043463 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06043464 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06043465 521.20281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06043466 521.20288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06043467 521.20288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06043468 521.20288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06043469 521.20294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06043470 521.20294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06043471 521.20294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06043472 521.20294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06043473 521.20300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06043474 521.20300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06043475 521.20300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06043476 521.20300293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06043477 521.20306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06043478 521.20306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06043479 521.20306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06043480 521.20306396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06043481 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06043482 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06043483 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06043484 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06043485 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06043486 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06043487 521.20312500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06043488 521.20318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06043489 521.20318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06043490 521.20318604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06043491 521.20324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06043492 521.20324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06043493 521.20324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06043494 521.20324707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06043495 521.20330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06043496 521.20330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06043497 521.20330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06043498 521.20330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06043499 521.20336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06043500 521.20336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06043501 521.20336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06043502 521.20336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06043503 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06043504 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06043505 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06043506 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06043507 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06043508 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06043509 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06043510 521.20343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06043511 521.20349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06043512 521.20349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06043513 521.20355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06043514 521.20355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06043515 521.20355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06043516 521.20355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06043517 521.20361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06043518 521.20361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06043519 521.20361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06043520 521.20361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06043521 521.20367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06043522 521.20367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06043523 521.20367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06043524 521.20367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06043525 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06043526 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06043527 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06043528 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06043529 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06043530 521.20373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06043531 521.20379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06043532 521.20379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06043533 521.20379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06043534 521.20379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06043535 521.20385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06043536 521.20385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06043537 521.20385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06043538 521.20385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06043539 521.20391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06043540 521.20391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06043541 521.20391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06043542 521.20391846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06043543 521.20397949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06043544 521.20397949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06043545 521.20397949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06043546 521.20397949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06043547 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06043548 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06043549 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06043550 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06043551 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06043552 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06043553 521.20404053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06043554 521.20410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06043555 521.20410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06043556 521.20410156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06043557 521.20416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06043558 521.20416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06043559 521.20416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06043560 521.20416260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06043561 521.20422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06043562 521.20422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06043563 521.20422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06043564 521.20422363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06043565 521.20428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06043566 521.20428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06043567 521.20428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06043568 521.20428467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06043569 521.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06043570 521.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06043571 521.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06043572 521.20434570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06043573 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06043574 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06043575 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06043576 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06043577 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06043578 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06043579 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06043580 521.20440674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06043581 521.20446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06043582 521.20446777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06043583 521.20452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06043584 521.20452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06043585 521.20452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06043586 521.20452881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06043587 521.20458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06043588 521.20458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06043589 521.20458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06043590 521.20458984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06043591 521.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06043592 521.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06043593 521.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06043594 521.20465088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06043595 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06043596 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06043597 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06043598 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06043599 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06043600 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06043601 521.20471191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06043602 521.20477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06043603 521.20477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06043604 521.20477295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06043605 521.20483398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06043606 521.20483398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06043607 521.20483398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06043608 521.20483398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06043609 521.20489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06043610 521.20489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06043611 521.20489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06043612 521.20489502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06043613 521.20495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06043614 521.20495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06043615 521.20495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06043616 521.20495605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06043617 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06043618 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06043619 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06043620 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06043621 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06043622 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06043623 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06043624 521.20501709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06043625 521.20507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06043626 521.20507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06043627 521.20507813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06043628 521.20513916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06043629 521.20513916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06043630 521.20513916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06043631 521.20520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06043632 521.20520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06043633 521.20520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06043634 521.20520020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06043635 521.20526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06043636 521.20526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06043637 521.20526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06043638 521.20526123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06043639 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06043640 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06043641 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06043642 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06043643 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06043644 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06043645 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06043646 521.20532227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06043647 521.20538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06043648 521.20538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06043649 521.20538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06043650 521.20538330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06043651 521.20544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06043652 521.20544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06043653 521.20544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06043654 521.20544434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06043655 521.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06043656 521.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06043657 521.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06043658 521.20550537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06043659 521.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06043660 521.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06043661 521.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06043662 521.20556641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06043663 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06043664 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06043665 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06043666 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06043667 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06043668 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06043669 521.20562744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06043670 521.20568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06043671 521.20568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06043672 521.20568848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06043673 521.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06043674 521.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06043675 521.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06043676 521.20574951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06043677 521.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06043678 521.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06043679 521.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06043680 521.20581055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06043681 521.20587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06043682 521.20587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06043683 521.20587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06043684 521.20587158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06043685 521.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06043686 521.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06043687 521.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06043688 521.20593262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06043689 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06043690 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06043691 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06043692 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06043693 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06043694 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06043695 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06043696 521.20599365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06043697 521.20605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06043698 521.20605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06043699 521.20605469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06043700 521.20611572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06043701 521.20611572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06043702 521.20611572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06043703 521.20617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06043704 521.20617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06043705 521.20617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06043706 521.20617676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06043707 521.20623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06043708 521.20623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06043709 521.20623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06043710 521.20623779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06043711 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06043712 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06043713 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06043714 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06043715 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06043716 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06043717 521.20629883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06043718 521.20635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06043719 521.20635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06043720 521.20635986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06043721 521.20642090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06043722 521.20642090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06043723 521.20642090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06043724 521.20648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06043725 521.20648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06043726 521.20648193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06043727 521.20654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06043728 521.20654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06043729 521.20654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06043730 521.20654297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06043731 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06043732 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06043733 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06043734 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06043735 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06043736 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06043737 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06043738 521.20660400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06043739 521.20666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06043740 521.20666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06043741 521.20666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06043742 521.20666504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06043743 521.20672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06043744 521.20672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06043745 521.20672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06043746 521.20672607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06043747 521.20678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06043748 521.20678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06043749 521.20678711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06043750 521.20684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06043751 521.20684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06043752 521.20684814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06043753 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06043754 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06043755 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06043756 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06043757 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06043758 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06043759 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06043760 521.20690918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06043761 521.20697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06043762 521.20697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06043763 521.20697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06043764 521.20697021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06043765 521.20703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06043766 521.20703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06043767 521.20703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06043768 521.20703125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06043769 521.20709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06043770 521.20709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06043771 521.20709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06043772 521.20709229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06043773 521.20715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06043774 521.20715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06043775 521.20715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06043776 521.20715332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06043777 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06043778 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06043779 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06043780 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06043781 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06043782 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06043783 521.20721436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06043784 521.20727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06043785 521.20727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06043786 521.20727539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06043787 521.20733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06043788 521.20733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06043789 521.20733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06043790 521.20733643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06043791 521.20739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06043792 521.20739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06043793 521.20739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06043794 521.20739746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06043795 521.20745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06043796 521.20745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06043797 521.20745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06043798 521.20745850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06043799 521.20751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06043800 521.20751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06043801 521.20751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06043802 521.20751953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06043803 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06043804 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06043805 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06043806 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06043807 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06043808 521.20758057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06043809 521.20764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06043810 521.20764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06043811 521.20764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06043812 521.20764160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06043813 521.20770264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06043814 521.20770264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06043815 521.20770264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06043816 521.20770264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06043817 521.20776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06043818 521.20776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06043819 521.20776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06043820 521.20776367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06043821 521.20782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06043822 521.20782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06043823 521.20782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06043824 521.20782471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06043825 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06043826 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06043827 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06043828 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06043829 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06043830 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06043831 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06043832 521.20788574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06043833 521.20794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06043834 521.20794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06043835 521.20794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06043836 521.20794678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06043837 521.20800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06043838 521.20800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06043839 521.20800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06043840 521.20800781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06043841 521.20806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06043842 521.20806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06043843 521.20806885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06043844 521.20812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06043845 521.20812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06043846 521.20812988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06043847 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06043848 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06043849 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06043850 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06043851 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06043852 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06043853 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06043854 521.20819092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06043855 521.20825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06043856 521.20825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06043857 521.20825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06043858 521.20825195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06043859 521.20831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06043860 521.20831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06043861 521.20831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06043862 521.20831299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06043863 521.20837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06043864 521.20837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06043865 521.20837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06043866 521.20837402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06043867 521.20843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06043868 521.20843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06043869 521.20843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06043870 521.20843506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06043871 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06043872 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06043873 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06043874 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06043875 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06043876 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06043877 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06043878 521.20849609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06043879 521.20855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06043880 521.20855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06043881 521.20855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06043882 521.20855713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06043883 521.20861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06043884 521.20861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06043885 521.20861816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06043886 521.20867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06043887 521.20867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06043888 521.20867920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06043889 521.20874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06043890 521.20874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06043891 521.20874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06043892 521.20874023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06043893 521.20880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06043894 521.20880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06043895 521.20880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06043896 521.20880127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06043897 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06043898 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06043899 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06043900 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06043901 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06043902 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06043903 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06043904 521.20886230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06043905 521.20892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06043906 521.20892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06043907 521.20892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06043908 521.20892334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06043909 521.20898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06043910 521.20898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06043911 521.20898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06043912 521.20898438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06043913 521.20904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06043914 521.20904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06043915 521.20904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06043916 521.20904541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06043917 521.20910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06043918 521.20910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06043919 521.20910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06043920 521.20910645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06043921 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06043922 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06043923 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06043924 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06043925 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06043926 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06043927 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06043928 521.20916748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06043929 521.20922852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06043930 521.20922852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06043931 521.20922852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06043932 521.20928955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06043933 521.20928955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06043934 521.20928955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06043935 521.20935059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06043936 521.20935059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06043937 521.20935059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06043938 521.20935059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06043939 521.20941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06043940 521.20941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06043941 521.20941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06043942 521.20941162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06043943 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06043944 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06043945 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06043946 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06043947 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06043948 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06043949 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06043950 521.20947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06043951 521.20953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06043952 521.20953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06043953 521.20953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06043954 521.20953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06043955 521.20959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06043956 521.20959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06043957 521.20959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06043958 521.20959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06043959 521.20965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06043960 521.20965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06043961 521.20965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06043962 521.20965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06043963 521.20971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06043964 521.20971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06043965 521.20971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06043966 521.20971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06043967 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06043968 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06043969 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06043970 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06043971 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06043972 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06043973 521.20977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06043974 521.20983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06043975 521.20983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06043976 521.20983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06043977 521.20989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06043978 521.20989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06043979 521.20989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06043980 521.20989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06043981 521.20996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06043982 521.20996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06043983 521.20996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06043984 521.20996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06043985 521.21002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06043986 521.21002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06043987 521.21002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06043988 521.21002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06043989 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06043990 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06043991 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06043992 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06043993 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06043994 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06043995 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06043996 521.21008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06043997 521.21014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06043998 521.21014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06043999 521.21014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06044000 521.21014404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06044001 521.21020508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06044002 521.21020508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06044003 521.21020508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06044004 521.21020508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06044005 521.21026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06044006 521.21026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06044007 521.21026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06044008 521.21026611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06044009 521.21032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06044010 521.21032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06044011 521.21032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06044012 521.21032715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06044013 521.21038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06044014 521.21038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06044015 521.21038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06044016 521.21038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06044017 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06044018 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06044019 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06044020 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06044021 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06044022 521.21044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06044023 521.21051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06044024 521.21051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06044025 521.21051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06044026 521.21051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06044027 521.21057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06044028 521.21057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06044029 521.21057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06044030 521.21057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06044031 521.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06044032 521.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06044033 521.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06044034 521.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06044035 521.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06044036 521.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06044037 521.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06044038 521.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06044039 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06044040 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06044041 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06044042 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06044043 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06044044 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06044045 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06044046 521.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06044047 521.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06044048 521.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06044049 521.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06044050 521.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06044051 521.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06044052 521.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06044053 521.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06044054 521.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06044055 521.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06044056 521.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06044057 521.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06044058 521.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06044059 521.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06044060 521.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06044061 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06044062 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06044063 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06044064 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06044065 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06044066 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06044067 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06044068 521.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06044069 521.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06044070 521.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06044071 521.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06044072 521.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06044073 521.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06044074 521.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06044075 521.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06044076 521.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06044077 521.21124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06044078 521.21124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06044079 521.21124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06044080 521.21130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06044081 521.21130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06044082 521.21130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06044083 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06044084 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06044085 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06044086 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06044087 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06044088 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06044089 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06044090 521.21136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06044091 521.21142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06044092 521.21142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06044093 521.21142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06044094 521.21148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06044095 521.21148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06044096 521.21148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06044097 521.21154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06044098 521.21154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06044099 521.21154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06044100 521.21154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06044101 521.21160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06044102 521.21160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06044103 521.21160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06045195 521.22668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06045196 521.22668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06045197 521.22668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06045198 521.22668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06045199 521.22674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06045200 521.22674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06045201 521.22674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06045202 521.22674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06045203 521.22680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06045204 521.22680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06045205 521.22680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06045206 521.22680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06045207 521.22686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06045208 521.22686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06045209 521.22686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06045210 521.22686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06045211 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06045212 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06045213 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06045214 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06045215 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06045216 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06045217 521.22692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06045218 521.22698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06045219 521.22698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06045220 521.22698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06045221 521.22705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06045222 521.22705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06045223 521.22705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06045224 521.22705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06045225 521.22711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06045226 521.22711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06045227 521.22711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06045228 521.22711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06045229 521.22717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06045230 521.22717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06045231 521.22717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06045232 521.22717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06045233 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06045234 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06045235 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06045236 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06045237 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06045238 521.22723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06060604 521.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -06060605 521.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -06060606 521.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -06060607 521.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -06060608 521.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -06060609 521.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -06060610 521.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -06060611 521.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -06060612 521.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -06060613 521.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -06060614 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -06060615 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -06060616 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -06060617 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -06060618 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -06060619 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -06060620 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23548 -06060621 521.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23548 -06060622 521.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23558 -06060623 521.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23558 -06060624 521.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23568 -06060625 521.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23568 -06060626 521.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23578 -06060627 521.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23578 -06060628 521.43743896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23588 -06060629 521.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23588 -06060630 521.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23598 -06060631 521.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23598 -06060632 521.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a8 -06060633 521.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a8 -06060634 521.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b8 -06060635 521.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b8 -06060636 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c8 -06060637 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c8 -06060638 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d8 -06060639 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d8 -06060640 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e8 -06060641 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e8 -06060642 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f8 -06060643 521.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f8 -06060644 521.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23608 -06060645 521.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23608 -06060646 521.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23618 -06060647 521.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23618 -06063800 521.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -06063801 521.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -06063802 521.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -06063803 521.48144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -06063804 521.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -06063805 521.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -06063806 521.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -06063807 521.48150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -06063808 521.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -06063809 521.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -06063810 521.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -06063811 521.48156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -06063812 521.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -06063813 521.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -06063814 521.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -06063815 521.48162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -06063816 521.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -06063817 521.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -06063818 521.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -06063819 521.48168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -06063820 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -06063821 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -06063822 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -06063823 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -06063824 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -06063825 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -06063826 521.48175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -06063827 521.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -06063828 521.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -06063829 521.48181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -06063830 521.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -06063831 521.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -06063832 521.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -06063833 521.48187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -06063834 521.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -06063835 521.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -06063836 521.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -06063837 521.48193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -06063838 521.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -06063839 521.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -06063840 521.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -06063841 521.48199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -06063842 521.48205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -06063843 521.48205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -06066955 521.52539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb38 -06066956 521.52539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb38 -06066957 521.52539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb48 -06066958 521.52539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb48 -06066959 521.52545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb58 -06066960 521.52545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb58 -06066961 521.52545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb68 -06066962 521.52545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb68 -06066963 521.52551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb78 -06066964 521.52551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb78 -06066965 521.52551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb88 -06066966 521.52551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb88 -06066967 521.52557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb98 -06066968 521.52557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb98 -06066969 521.52557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba8 -06066970 521.52557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fba8 -06066971 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb8 -06066972 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbb8 -06066973 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc8 -06066974 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbc8 -06066975 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd8 -06066976 521.52563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbd8 -06066977 521.52569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe8 -06066978 521.52569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbe8 -06066979 521.52569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf8 -06066980 521.52569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fbf8 -06066981 521.52575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc08 -06066982 521.52575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc08 -06066983 521.52575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc18 -06066984 521.52575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc18 -06066985 521.52581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc28 -06066986 521.52581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc28 -06066987 521.52581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc38 -06066988 521.52581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc38 -06066989 521.52587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc48 -06066990 521.52587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc48 -06066991 521.52587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc58 -06066992 521.52587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc58 -06066993 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc68 -06066994 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc68 -06066995 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc78 -06066996 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc78 -06066997 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc88 -06066998 521.52593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc88 -06069751 521.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35298 -06069752 521.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35298 -06069753 521.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a8 -06069754 521.56372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352a8 -06069755 521.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b8 -06069756 521.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352b8 -06069757 521.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c8 -06069758 521.56378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352c8 -06069759 521.56384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d8 -06069760 521.56384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352d8 -06069761 521.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e8 -06069762 521.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352e8 -06069763 521.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f8 -06069764 521.56390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x352f8 -06069765 521.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35308 -06069766 521.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35308 -06069767 521.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35318 -06069768 521.56396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35318 -06069769 521.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -06069770 521.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35328 -06069771 521.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -06069772 521.56402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35338 -06069773 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -06069774 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35348 -06069775 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -06069776 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35358 -06069777 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -06069778 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35368 -06069779 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -06069780 521.56408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35378 -06069781 521.56414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -06069782 521.56414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35388 -06069783 521.56414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -06069784 521.56414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35398 -06069785 521.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -06069786 521.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353a8 -06069787 521.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -06069788 521.56420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353b8 -06069789 521.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -06069790 521.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353c8 -06069791 521.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -06069792 521.56427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353d8 -06069793 521.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -06069794 521.56433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x353e8 -06072703 521.60467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -06072704 521.60467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -06072705 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee8 -06072706 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee8 -06072707 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef8 -06072708 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef8 -06072709 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af08 -06072710 521.60473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af08 -06072711 521.60479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af18 -06072712 521.60479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af18 -06072713 521.60479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af28 -06072714 521.60479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af28 -06072715 521.60485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af38 -06072716 521.60485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af38 -06072717 521.60485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -06072718 521.60485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -06072719 521.60491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -06072720 521.60491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -06072721 521.60491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -06072722 521.60491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -06072723 521.60498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -06072724 521.60498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -06072725 521.60498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -06072726 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -06072727 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -06072728 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -06072729 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -06072730 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -06072731 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -06072732 521.60504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -06072733 521.60510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -06072734 521.60510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -06072735 521.60510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -06072736 521.60510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -06072737 521.60516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -06072738 521.60516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -06072739 521.60516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -06072740 521.60516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -06072741 521.60522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -06072742 521.60522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b008 -06072743 521.60522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -06072744 521.60522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b018 -06072745 521.60528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -06072746 521.60528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b028 -06075704 521.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -06075705 521.64593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -06075706 521.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -06075707 521.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -06075708 521.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -06075709 521.64599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -06075710 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -06075711 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -06075712 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -06075713 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -06075714 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -06075715 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -06075716 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf8 -06075717 521.64605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cf8 -06075718 521.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d08 -06075719 521.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d08 -06075720 521.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d18 -06075721 521.64611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d18 -06075722 521.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d28 -06075723 521.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d28 -06075724 521.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d38 -06075725 521.64617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d38 -06075726 521.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d48 -06075727 521.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d48 -06075728 521.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d58 -06075729 521.64624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d58 -06075730 521.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d68 -06075731 521.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d68 -06075732 521.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d78 -06075733 521.64630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d78 -06075734 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d88 -06075735 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d88 -06075736 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d98 -06075737 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d98 -06075738 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da8 -06075739 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40da8 -06075740 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db8 -06075741 521.64636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40db8 -06075742 521.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc8 -06075743 521.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dc8 -06075744 521.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd8 -06075745 521.64642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40dd8 -06075746 521.64648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de8 -06075747 521.64648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40de8 -06079738 521.70233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06079739 521.70233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06079740 521.70233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06079741 521.70233154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06079742 521.70239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06079743 521.70239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06079744 521.70239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06079745 521.70239258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06079746 521.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06079747 521.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06079748 521.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06079749 521.70245361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06079750 521.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06079751 521.70251465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06079752 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06079753 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06079754 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06079755 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06079756 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06079757 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06079758 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06079759 521.70257568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06079760 521.70263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06079761 521.70263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06079762 521.70263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06079763 521.70263672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06079764 521.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06079765 521.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06079766 521.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06079767 521.70269775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06079768 521.70275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06079769 521.70275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06079770 521.70275879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06079771 521.70281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06079772 521.70281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06079773 521.70281982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06079774 521.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06079775 521.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06079776 521.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06079777 521.70288086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06079778 521.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06079779 521.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06079780 521.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06079781 521.70294189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06084945 521.94049072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084946 521.98535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084947 522.02734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084948 522.03686523 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06084949 522.05908203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084950 522.05914307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084951 522.07263184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084952 522.11352539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084953 522.15411377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084954 522.19348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084955 522.23419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084956 522.27856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084957 522.31774902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084958 522.35699463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084959 522.40179443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084960 522.40185547 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084961 522.40191650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084962 522.40191650 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06084963 522.40197754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084964 522.40197754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06084965 522.40203857 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084966 522.40209961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06084967 522.42230225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084968 522.46203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084969 522.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084970 522.54791260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084971 522.58911133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084972 522.62939453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53298 -06084973 524.06127930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06084974 524.08306885 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084975 524.08306885 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084976 524.90887451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084977 524.90887451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084978 524.90887451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06084979 524.90887451 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06084980 524.90905762 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084981 524.90905762 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06084982 524.90911865 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06084983 524.90911865 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06084984 525.75610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06084985 525.75610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06084986 525.75610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06084987 525.75616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06084988 525.75616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06084989 525.75616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06084990 525.75622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06084991 525.75622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06084992 525.75622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06084993 525.75622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06084994 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06084995 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06084996 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06084997 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06084998 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06084999 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06085000 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06085001 525.75628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06085002 525.75634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06085003 525.75634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06085004 525.75634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06085005 525.75640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06085006 525.75640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06085007 525.75640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06085008 525.75646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06085009 525.75646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06085010 525.75646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06085011 525.75646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06085012 525.75653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06085013 525.75653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06085014 525.75653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06085015 525.75653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06085016 525.75659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06085017 525.75659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06085018 525.75659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06085019 525.75659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06085020 525.75659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06085021 525.75665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06085022 525.75665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06085023 525.75665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06085024 525.75671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06085025 525.75671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06085026 525.75671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06085027 525.75671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06085028 525.75677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06085029 525.75677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06085030 525.75677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06085031 525.75677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06085032 525.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06085033 525.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06085034 525.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06085035 525.75683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06085036 525.75689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06085037 525.75689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06085038 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06085039 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06085040 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06085041 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06085042 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06085043 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06085044 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06085045 525.75695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06085046 525.75701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06085047 525.75701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06085048 525.75701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06085049 525.75701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06085050 525.75708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06085051 525.75708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06085052 525.75708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06085053 525.75708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06085054 525.75714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06085055 525.75714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06085056 525.75714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06085057 525.75714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06085058 525.75720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06085059 525.75720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06085060 525.75720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06085061 525.75720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06085062 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06085063 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06085064 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06085065 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06085066 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06085067 525.75726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06085068 525.75732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -06085069 525.75732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -06085070 525.75732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -06085071 525.75732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -06085072 525.75738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -06085073 525.75738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -06085074 525.75738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -06085075 525.75738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -06085076 525.75744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -06085077 525.75744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -06085078 525.75744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -06085079 525.75744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -06085080 525.75750732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -06085081 525.75750732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -06085082 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -06085083 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -06085084 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -06085085 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -06085086 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -06085087 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -06085088 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -06085089 525.75756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -06085090 525.75762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -06085091 525.75762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -06085092 525.75762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -06085093 525.75762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -06085094 525.75769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -06085095 525.75769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -06085096 525.75769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -06085097 525.75775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -06085098 525.75775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -06085099 525.75775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -06085100 525.75781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -06085101 525.75781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -06085102 525.75781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -06085103 525.75781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -06085104 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -06085105 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -06085106 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -06085107 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -06085108 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -06085109 525.75787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -06085110 525.75793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -06085111 525.75793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -06085112 525.75793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -06085113 525.75793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -06085114 525.75799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -06085115 525.75799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -06085116 525.75799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -06085117 525.75799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -06085118 525.75805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -06085119 525.75805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -06085120 525.75805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -06085121 525.75805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -06085122 525.75811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -06085123 525.75811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -06085124 525.75811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -06085125 525.75811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -06085126 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -06085127 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -06085128 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -06085129 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -06085130 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -06085131 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -06085132 525.75817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -06085133 525.75823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -06085134 525.75823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -06085135 525.75823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -06085136 525.75830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -06085137 525.75830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -06085138 525.75830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -06085139 525.75830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -06085140 525.75836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -06085141 525.75836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -06085142 525.75836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -06085143 525.75836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -06085144 525.75842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -06085145 525.75842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -06085146 525.75842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -06085147 525.75842285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -06085148 525.75848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -06085149 525.75848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -06085150 525.75848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -06085151 525.75848389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -06085152 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -06085153 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -06085154 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -06085155 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -06085156 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -06085157 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -06085158 525.75854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -06085159 525.75860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -06085160 525.75866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -06085161 525.75866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -06085162 525.75866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -06085163 525.75866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -06085164 525.75872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -06085165 525.75872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -06085166 525.75872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -06085167 525.75878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -06085168 525.75878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -06085169 525.75878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -06085170 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -06085171 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -06085172 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -06085173 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -06085174 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -06085175 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -06085176 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -06085177 525.75885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -06085178 525.75891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -06085179 525.75891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -06085180 525.75891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -06085181 525.75891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -06085182 525.75897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -06085183 525.75897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -06085184 525.75897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -06085185 525.75897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -06085186 525.75903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -06085187 525.75903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -06085188 525.75903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -06085189 525.75903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -06085190 525.75909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -06085191 525.75909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -06085192 525.75909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -06085193 525.75909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -06085194 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -06085195 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -06085196 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -06085197 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -06085198 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -06085199 525.75915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -06085200 525.75921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -06085201 525.75921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -06085202 525.75921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -06085203 525.75921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -06085204 525.75927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -06085205 525.75927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -06085206 525.75927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -06085207 525.75927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -06085208 525.75933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -06085209 525.75933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -06085210 525.75933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -06085211 525.75933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -06085212 525.75939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -06085213 525.75939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -06085214 525.75939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -06085215 525.75939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -06085216 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -06085217 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -06085218 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -06085219 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -06085220 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -06085221 525.75946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -06085222 525.75952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -06085223 525.75952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -06085224 525.75952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -06085225 525.75952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -06085226 525.75958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -06085227 525.75958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -06085228 525.75964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -06085229 525.75964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -06085230 525.75964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -06085231 525.75964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -06085232 525.75970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -06085233 525.75970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -06085234 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -06085235 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -06085236 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -06085237 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -06085238 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -06085239 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -06085240 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -06085241 525.75976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -06085242 525.75982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -06085243 525.75982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -06085244 525.75988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -06085245 525.75988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -06085246 525.75988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -06085247 525.75988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -06085248 525.75994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -06085249 525.75994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -06085250 525.75994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -06085251 525.75994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -06085252 525.76000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -06085253 525.76000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -06085254 525.76000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -06085255 525.76000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -06085256 525.76007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -06085257 525.76007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -06085258 525.76007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -06085259 525.76007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -06085260 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -06085261 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -06085262 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -06085263 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -06085264 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -06085265 525.76013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -06085266 525.76019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -06085267 525.76019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -06085268 525.76019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -06085269 525.76019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -06085270 525.76025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -06085271 525.76025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -06085272 525.76025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -06085273 525.76025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -06085274 525.76031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -06085275 525.76031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -06085276 525.76031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -06085277 525.76031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -06085278 525.76037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -06085279 525.76037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -06085280 525.76037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -06085281 525.76037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -06085282 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -06085283 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -06085284 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -06085285 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -06085286 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -06085287 525.76043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -06085288 525.76049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -06085289 525.76049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -06085290 525.76049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -06085291 525.76049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -06085292 525.76055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -06085293 525.76055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -06085294 525.76055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -06085295 525.76055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -06085296 525.76062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -06085297 525.76062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -06085298 525.76068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -06085299 525.76068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -06085300 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -06085301 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -06085302 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -06085303 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -06085304 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -06085305 525.76074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -06085306 525.76080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -06085307 525.76080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -06085308 525.76080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -06085309 525.76080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -06085310 525.76086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -06085311 525.76086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -06085312 525.76086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -06085313 525.76086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -06085314 525.76092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -06085315 525.76092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -06085316 525.76092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -06085317 525.76092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -06085318 525.76098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -06085319 525.76098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -06085320 525.76098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -06085321 525.76098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -06085322 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -06085323 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -06085324 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -06085325 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -06085326 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -06085327 525.76104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -06085328 525.76110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -06085329 525.76110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -06085330 525.76110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -06085331 525.76110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -06085332 525.76116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -06085333 525.76116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -06085334 525.76116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -06085335 525.76116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -06085336 525.76123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -06085337 525.76123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -06085338 525.76123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -06085339 525.76123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -06085340 525.76129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -06085341 525.76129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -06085342 525.76129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -06085343 525.76129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -06085344 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -06085345 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -06085346 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -06085347 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -06085348 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -06085349 525.76135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -06085350 525.76141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -06085351 525.76141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -06085352 525.76141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -06085353 525.76141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -06085354 525.76147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -06085355 525.76147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -06085356 525.76147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -06085357 525.76147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -06085358 525.76153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -06085359 525.76153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -06085360 525.76153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -06085361 525.76153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -06085362 525.76159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -06085363 525.76159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -06085364 525.76165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -06085365 525.76165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -06085366 525.76165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -06085367 525.76165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -06085368 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -06085369 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -06085370 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -06085371 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -06085372 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -06085373 525.76171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -06085374 525.76177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -06085375 525.76177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -06085376 525.76177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -06085377 525.76177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -06085378 525.76184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -06085379 525.76184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -06085380 525.76184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -06085381 525.76184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -06085382 525.76190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -06085383 525.76190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -06085384 525.76190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -06085385 525.76190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -06085386 525.76196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -06085387 525.76196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -06085388 525.76196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -06085389 525.76196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -06085390 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -06085391 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -06085392 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -06085393 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -06085394 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -06085395 525.76202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -06085396 525.76208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -06085397 525.76208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -06085398 525.76208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -06085399 525.76208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -06085400 525.76214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -06085401 525.76214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -06085402 525.76214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -06085403 525.76214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -06085404 525.76220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -06085405 525.76220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -06085406 525.76220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -06085407 525.76220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -06085408 525.76226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -06085409 525.76226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -06085410 525.76226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -06085411 525.76226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -06085412 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -06085413 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -06085414 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -06085415 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -06085416 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -06085417 525.76232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -06085418 525.76239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -06085419 525.76239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -06085420 525.76239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -06085421 525.76239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -06085422 525.76245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -06085423 525.76245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -06085424 525.76245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -06085425 525.76245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -06085426 525.76251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -06085427 525.76251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -06085428 525.76251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -06085429 525.76251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -06085430 525.76257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -06085431 525.76257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -06085432 525.76257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -06085433 525.76263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -06085434 525.76263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -06085435 525.76263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -06085436 525.76263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -06085437 525.76263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -06085438 525.76269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -06085439 525.76269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -06085440 525.76275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -06085441 525.76275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -06085442 525.76275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -06085443 525.76275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -06085444 525.76281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -06085445 525.76281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -06085446 525.76281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -06085447 525.76281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -06085448 525.76287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -06085449 525.76287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -06085450 525.76287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -06085451 525.76287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -06085452 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -06085453 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -06085454 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -06085455 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -06085456 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -06085457 525.76293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -06085458 525.76300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -06085459 525.76300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -06085460 525.76300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -06085461 525.76300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -06085462 525.76306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -06085463 525.76306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -06085464 525.76306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -06085465 525.76306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -06085466 525.76312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -06085467 525.76312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -06085468 525.76312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -06085469 525.76312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -06085470 525.76318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -06085471 525.76318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -06085472 525.76318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -06085473 525.76318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -06085474 525.76324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -06085475 525.76324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -06085476 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -06085477 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -06085478 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -06085479 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -06085480 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -06085481 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -06085482 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -06085483 525.76330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -06085484 525.76336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -06085485 525.76336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -06085486 525.76336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -06085487 525.76336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -06085488 525.76342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -06085489 525.76342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -06085490 525.76342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -06085491 525.76342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -06085492 525.76348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -06085493 525.76348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -06085494 525.76348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -06085495 525.76354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -06085496 525.76354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -06085497 525.76354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -06085498 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -06085499 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -06085500 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -06085501 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -06085502 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -06085503 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -06085504 525.76361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -06085505 525.76367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -06085506 525.76367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -06085507 525.76367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -06085508 525.76373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -06085509 525.76373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -06085510 525.76373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -06085511 525.76373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -06085512 525.76379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -06085513 525.76379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -06085514 525.76379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -06085515 525.76379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -06085516 525.76385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -06085517 525.76385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -06085518 525.76385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -06085519 525.76385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -06085520 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -06085521 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -06085522 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -06085523 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -06085524 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -06085525 525.76391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -06085526 525.76397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -06085527 525.76397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -06085528 525.76397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -06085529 525.76397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -06085530 525.76403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -06085531 525.76403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -06085532 525.76403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -06085533 525.76403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -06085534 525.76409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -06085535 525.76409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -06085536 525.76409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -06085537 525.76409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -06085538 525.76416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -06085539 525.76416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -06085540 525.76416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -06085541 525.76416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -06085542 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -06085543 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -06085544 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -06085545 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -06085546 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -06085547 525.76422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -06085548 525.76428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -06085549 525.76428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -06085550 525.76428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -06085551 525.76428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -06085552 525.76434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -06085553 525.76434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -06085554 525.76434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -06085555 525.76434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -06085556 525.76440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -06085557 525.76440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -06085558 525.76440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -06085559 525.76440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -06085560 525.76446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -06085561 525.76446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -06085562 525.76446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -06085563 525.76446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -06085564 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -06085565 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -06085566 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -06085567 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -06085568 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -06085569 525.76452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -06085570 525.76458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -06085571 525.76458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -06085572 525.76464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -06085573 525.76464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -06085574 525.76464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -06085575 525.76464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -06085576 525.76470947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -06085577 525.76470947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -06085578 525.76477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -06085579 525.76477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -06085580 525.76477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -06085581 525.76477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -06085582 525.76483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -06085583 525.76483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -06085584 525.76483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -06085585 525.76483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -06085586 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -06085587 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -06085588 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -06085589 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -06085590 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -06085591 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -06085592 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -06085593 525.76489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -06085594 525.76495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -06085595 525.76495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -06085596 525.76495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -06085597 525.76501465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -06085598 525.76501465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -06085599 525.76501465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -06085600 525.76507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -06085601 525.76507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -06085602 525.76507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -06085603 525.76507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -06085604 525.76513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -06085605 525.76513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -06085606 525.76513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -06085607 525.76513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -06085608 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -06085609 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -06085610 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -06085611 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -06085612 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -06085613 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -06085614 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -06085615 525.76519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -06085616 525.76525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -06085617 525.76525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -06085618 525.76531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -06085619 525.76531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -06085620 525.76531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -06085621 525.76531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -06085622 525.76538086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -06085623 525.76538086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -06085624 525.76538086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -06085625 525.76538086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -06085626 525.76544189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -06085627 525.76544189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -06085628 525.76544189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -06085629 525.76544189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -06085630 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -06085631 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -06085632 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -06085633 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -06085634 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -06085635 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -06085636 525.76550293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -06085637 525.76556396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -06085638 525.76556396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -06085639 525.76556396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -06085640 525.76562500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -06085641 525.76562500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -06085642 525.76568604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -06085643 525.76568604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -06085644 525.76568604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -06085645 525.76568604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -06085646 525.76574707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -06085647 525.76574707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -06085648 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -06085649 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -06085650 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -06085651 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -06085652 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -06085653 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -06085654 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -06085655 525.76580811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -06085656 525.76586914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -06085657 525.76586914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -06085658 525.76586914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -06085659 525.76586914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -06085660 525.76593018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -06085661 525.76593018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -06085662 525.76593018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -06085663 525.76593018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -06085664 525.76599121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -06085665 525.76599121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -06085666 525.76599121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -06085667 525.76599121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -06085668 525.76605225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -06085669 525.76605225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -06085670 525.76611328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -06085671 525.76611328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -06085672 525.76611328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -06085673 525.76611328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -06085674 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -06085675 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -06085676 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -06085677 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -06085678 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -06085679 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -06085680 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -06085681 525.76617432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -06085682 525.76623535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -06085683 525.76623535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -06085684 525.76623535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -06085685 525.76623535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -06085686 525.76629639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -06085687 525.76629639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -06085688 525.76629639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -06085689 525.76635742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -06085690 525.76635742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -06085691 525.76635742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -06085692 525.76641846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -06085693 525.76641846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -06085694 525.76641846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -06085695 525.76641846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -06085696 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -06085697 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -06085698 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -06085699 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -06085700 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -06085701 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -06085702 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -06085703 525.76647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -06085704 525.76654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -06085705 525.76654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -06085706 525.76654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -06085707 525.76654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -06085708 525.76660156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -06085709 525.76660156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -06085710 525.76666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -06085711 525.76666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -06085712 525.76666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -06085713 525.76666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -06085714 525.76672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -06085715 525.76672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -06085716 525.76672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -06085717 525.76672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -06085718 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -06085719 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -06085720 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -06085721 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -06085722 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -06085723 525.76678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -06085724 525.76684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -06085725 525.76684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -06085726 525.76684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -06085727 525.76684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -06085728 525.76690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -06085729 525.76690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -06085730 525.76690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -06085731 525.76690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -06085732 525.76696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -06085733 525.76696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -06085734 525.76696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -06085735 525.76696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -06085736 525.76702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -06085737 525.76702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -06085738 525.76702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -06085739 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -06085740 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -06085741 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -06085742 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -06085743 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -06085744 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -06085745 525.76708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -06085746 525.76715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -06085747 525.76715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -06085748 525.76715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -06085749 525.76715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -06085750 525.76721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -06085751 525.76721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -06085752 525.76721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -06085753 525.76721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -06085754 525.76727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -06085755 525.76727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -06085756 525.76727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -06085757 525.76727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -06085758 525.76733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -06085759 525.76733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -06085760 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -06085761 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -06085762 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -06085763 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -06085764 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -06085765 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -06085766 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -06085767 525.76739502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -06085768 525.76745605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -06085769 525.76745605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -06085770 525.76745605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -06085771 525.76745605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -06085772 525.76751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -06085773 525.76751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -06085774 525.76751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -06085775 525.76751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -06085776 525.76757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -06085777 525.76757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -06085778 525.76763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -06085779 525.76763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -06085780 525.76770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -06085781 525.76770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -06085782 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -06085783 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -06085784 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -06085785 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -06085786 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -06085787 525.76776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -06085788 525.76782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -06085789 525.76782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -06085790 525.76782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -06085791 525.76782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -06085792 525.76788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -06085793 525.76788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -06085794 525.76788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -06085795 525.76788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -06085796 525.76794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -06085797 525.76794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -06085798 525.76794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -06085799 525.76794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -06085800 525.76800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -06085801 525.76800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -06085802 525.76800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -06085803 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -06085804 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -06085805 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -06085806 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -06085807 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -06085808 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -06085809 525.76806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -06085810 525.76812744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -06085811 525.76812744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -06085812 525.76812744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -06085813 525.76812744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -06085814 525.76818848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -06085815 525.76818848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -06085816 525.76818848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -06085817 525.76818848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -06085818 525.76824951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -06085819 525.76824951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -06085820 525.76824951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -06085821 525.76824951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -06085822 525.76831055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -06085823 525.76831055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -06085824 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -06085825 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -06085826 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -06085827 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -06085828 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -06085829 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -06085830 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -06085831 525.76837158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -06085832 525.76843262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -06085833 525.76843262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -06085834 525.76843262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -06085835 525.76843262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -06085836 525.76849365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -06085837 525.76849365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -06085838 525.76849365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -06085839 525.76849365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -06085840 525.76855469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -06085841 525.76855469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -06085842 525.76855469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -06085843 525.76861572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -06085844 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -06085845 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -06085846 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -06085847 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -06085848 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -06085849 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -06085850 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -06085851 525.76867676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -06085852 525.76873779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -06085853 525.76873779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -06085854 525.76873779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -06085855 525.76873779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -06085856 525.76879883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -06085857 525.76879883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -06085858 525.76885986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -06085859 525.76885986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -06085860 525.76885986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -06085861 525.76885986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -06085862 525.76892090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -06085863 525.76892090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -06085864 525.76892090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -06085865 525.76892090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -06085866 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -06085867 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -06085868 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -06085869 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -06085870 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -06085871 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -06085872 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -06085873 525.76898193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -06085874 525.76904297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -06085875 525.76904297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -06085876 525.76910400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -06085877 525.76910400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -06085878 525.76910400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -06085879 525.76910400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -06085880 525.76916504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -06085881 525.76916504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -06085882 525.76916504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -06085883 525.76916504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -06085884 525.76922607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -06085885 525.76922607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -06085886 525.76922607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -06085887 525.76922607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -06085888 525.76928711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -06085889 525.76928711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -06085890 525.76928711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -06085891 525.76928711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -06085892 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -06085893 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -06085894 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -06085895 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -06085896 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -06085897 525.76934814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -06085898 525.76940918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -06085899 525.76940918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -06085900 525.76940918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -06085901 525.76940918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -06085902 525.76947021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -06085903 525.76947021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -06085904 525.76947021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -06085905 525.76947021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -06085906 525.76953125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -06085907 525.76953125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -06085908 525.76953125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -06085909 525.76953125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -06085910 525.76959229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -06085911 525.76959229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -06085912 525.76959229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -06085913 525.76965332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -06085914 525.76965332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -06085915 525.76965332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -06085916 525.76965332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -06085917 525.76965332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -06085918 525.76971436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -06085919 525.76971436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -06085920 525.76971436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -06085921 525.76971436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -06085922 525.76977539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -06085923 525.76977539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -06085924 525.76983643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -06085925 525.76983643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -06085926 525.76983643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -06085927 525.76983643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -06085928 525.76989746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -06085929 525.76989746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -06085930 525.76989746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -06085931 525.76989746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -06085932 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -06085933 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -06085934 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -06085935 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -06085936 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -06085937 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -06085938 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -06085939 525.76995850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -06085940 525.77001953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -06085941 525.77001953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -06085942 525.77001953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -06085943 525.77008057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -06085944 525.77008057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -06085945 525.77008057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -06085946 525.77014160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -06085947 525.77014160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -06085948 525.77014160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -06085949 525.77014160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -06085950 525.77020264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -06085951 525.77020264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -06085952 525.77020264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -06085953 525.77020264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -06085954 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -06085955 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -06085956 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -06085957 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -06085958 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -06085959 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -06085960 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -06085961 525.77026367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -06085962 525.77032471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -06085963 525.77032471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -06085964 525.77038574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -06085965 525.77038574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -06085966 525.77038574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -06085967 525.77038574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -06085968 525.77044678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -06085969 525.77044678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -06085970 525.77044678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -06085971 525.77044678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -06085972 525.77050781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -06085973 525.77050781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -06085974 525.77050781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -06085975 525.77050781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -06085976 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -06085977 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -06085978 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -06085979 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -06085980 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -06085981 525.77056885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -06085982 525.77062988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -06085983 525.77062988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -06085984 525.77062988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -06085985 525.77062988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -06085986 525.77069092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -06085987 525.77069092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -06085988 525.77069092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -06085989 525.77069092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -06085990 525.77075195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -06085991 525.77075195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -06085992 525.77075195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -06085993 525.77081299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -06085994 525.77081299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -06085995 525.77081299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -06085996 525.77087402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -06085997 525.77087402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -06085998 525.77087402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -06085999 525.77087402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -06086000 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -06086001 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -06086002 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -06086003 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -06086004 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -06086005 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -06086006 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -06086007 525.77093506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -06086008 525.77099609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -06086009 525.77099609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -06086010 525.77099609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -06086011 525.77099609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -06086012 525.77105713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -06086013 525.77105713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -06086014 525.77111816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -06086015 525.77111816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -06086016 525.77111816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -06086017 525.77111816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -06086018 525.77117920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -06086019 525.77117920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -06086020 525.77117920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -06086021 525.77117920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -06086022 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -06086023 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -06086024 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -06086025 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -06086026 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -06086027 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -06086028 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -06086029 525.77124023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -06086030 525.77130127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -06086031 525.77130127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -06086032 525.77130127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -06086033 525.77136230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -06086034 525.77136230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -06086035 525.77136230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -06086036 525.77142334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -06086037 525.77142334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -06086038 525.77142334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -06086039 525.77142334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -06086040 525.77148438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -06086041 525.77148438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -06086042 525.77148438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -06086043 525.77148438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -06086044 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -06086045 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -06086046 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -06086047 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -06086048 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -06086049 525.77154541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -06086050 525.77160645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -06086051 525.77160645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -06086052 525.77172852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -06086053 525.77172852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -06086054 525.77178955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -06086055 525.77178955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -06086056 525.77178955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -06086057 525.77178955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -06086058 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -06086059 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -06086060 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -06086061 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -06086062 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -06086063 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -06086064 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -06086065 525.77185059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -06086066 525.77191162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -06086067 525.77191162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -06086068 525.77191162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -06086069 525.77191162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -06086070 525.77203369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -06086071 525.77203369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -06086072 525.77209473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -06086073 525.77209473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -06086074 525.77209473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -06086075 525.77209473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -06086076 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -06086077 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -06086078 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -06086079 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -06086080 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -06086081 525.77215576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -06086082 525.77221680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -06086083 525.77221680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -06086084 525.77221680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -06086085 525.77221680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -06086086 525.77227783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -06086087 525.77227783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -06086088 525.77227783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -06086089 525.77227783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -06086090 525.77233887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -06086091 525.77233887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -06086092 525.77233887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -06086093 525.77233887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -06086094 525.77239990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -06086095 525.77239990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -06086096 525.77239990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -06086097 525.77239990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -06086098 525.77246094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -06086099 525.77246094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -06086100 525.77246094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -06086101 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -06086102 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -06086103 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -06086104 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -06086105 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -06086106 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -06086107 525.77252197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -06086108 525.77258301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -06086109 525.77258301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -06086110 525.77264404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -06086111 525.77264404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -06086112 525.77264404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -06086113 525.77264404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -06086114 525.77270508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -06086115 525.77270508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -06086116 525.77270508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -06086117 525.77270508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -06086118 525.77276611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -06086119 525.77276611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -06086120 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -06086121 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -06086122 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -06086123 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -06086124 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -06086125 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -06086126 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -06086127 525.77282715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -06086128 525.77288818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -06086129 525.77288818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -06086130 525.77288818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -06086131 525.77288818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -06086132 525.77294922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -06086133 525.77294922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -06086134 525.77294922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -06086135 525.77294922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -06086136 525.77301025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -06086137 525.77301025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -06086138 525.77301025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -06086139 525.77307129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -06086140 525.77307129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -06086141 525.77307129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -06086142 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -06086143 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -06086144 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -06086145 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -06086146 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -06086147 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -06086148 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -06086149 525.77313232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -06086150 525.77319336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -06086151 525.77319336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -06086152 525.77319336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -06086153 525.77319336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -06086154 525.77325439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -06086155 525.77325439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -06086156 525.77325439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -06086157 525.77325439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -06086158 525.77331543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -06086159 525.77331543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -06086160 525.77337646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -06086161 525.77337646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -06086162 525.77337646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -06086163 525.77337646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -06086164 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -06086165 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -06086166 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -06086167 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -06086168 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -06086169 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -06086170 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -06086171 525.77343750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -06086172 525.77349854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -06086173 525.77349854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -06086174 525.77349854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -06086175 525.77349854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -06086176 525.77355957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -06086177 525.77355957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -06086178 525.77362061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -06086179 525.77362061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -06086180 525.77362061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -06086181 525.77362061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -06086182 525.77368164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -06086183 525.77368164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -06086184 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -06086185 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -06086186 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -06086187 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -06086188 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -06086189 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -06086190 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -06086191 525.77374268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -06086192 525.77380371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -06086193 525.77380371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -06086194 525.77380371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -06086195 525.77386475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -06086196 525.77386475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -06086197 525.77386475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -06086198 525.77392578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -06086199 525.77392578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -06086200 525.77392578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -06086201 525.77392578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -06086202 525.77398682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -06086203 525.77398682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -06086204 525.77398682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -06086205 525.77398682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -06086206 525.77404785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -06086207 525.77404785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -06086208 525.77404785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -06086209 525.77404785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -06086210 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -06086211 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -06086212 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -06086213 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -06086214 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -06086215 525.77410889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -06086216 525.77416992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -06086217 525.77416992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -06086218 525.77416992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -06086219 525.77416992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -06086220 525.77423096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -06086221 525.77423096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -06086222 525.77423096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -06086223 525.77423096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -06086224 525.77429199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -06086225 525.77429199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -06086226 525.77429199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -06086227 525.77429199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -06086228 525.77435303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -06086229 525.77435303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -06086230 525.77435303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -06086231 525.77435303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -06086232 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -06086233 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -06086234 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -06086235 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -06086236 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -06086237 525.77441406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -06086238 525.77447510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -06086239 525.77447510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -06086240 525.77447510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -06086241 525.77447510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -06086242 525.77453613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -06086243 525.77453613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -06086244 525.77453613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -06086245 525.77453613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -06086246 525.77459717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -06086247 525.77459717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -06086248 525.77465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -06086249 525.77465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -06086250 525.77465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -06086251 525.77465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -06086252 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -06086253 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -06086254 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -06086255 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -06086256 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -06086257 525.77471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -06086258 525.77478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -06086259 525.77478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -06086260 525.77478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -06086261 525.77478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -06086262 525.77484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -06086263 525.77484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -06086264 525.77484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -06086265 525.77484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -06086266 525.77490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -06086267 525.77490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -06086268 525.77490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -06086269 525.77490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -06086270 525.77496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -06086271 525.77496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -06086272 525.77496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -06086273 525.77496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -06086274 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -06086275 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -06086276 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -06086277 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -06086278 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -06086279 525.77502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -06086280 525.77508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -06086281 525.77508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -06086282 525.77508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -06086283 525.77508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -06086284 525.77514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -06086285 525.77514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -06086286 525.77514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -06086287 525.77514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -06086288 525.77520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -06086289 525.77520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -06086290 525.77520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -06086291 525.77520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -06086292 525.77526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -06086293 525.77526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -06086294 525.77526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -06086295 525.77526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -06086296 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -06086297 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -06086298 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -06086299 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -06086300 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -06086301 525.77532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -06086302 525.77539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -06086303 525.77539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -06086304 525.77539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -06086305 525.77539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -06086306 525.77545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -06086307 525.77545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -06086308 525.77545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -06086309 525.77545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -06086310 525.77551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -06086311 525.77551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -06086312 525.77551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -06086313 525.77551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -06086314 525.77557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -06086315 525.77557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -06086316 525.77563477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -06086317 525.77563477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -06086318 525.77563477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -06086319 525.77563477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -06086320 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -06086321 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -06086322 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -06086323 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -06086324 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -06086325 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -06086326 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -06086327 525.77569580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -06086328 525.77575684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -06086329 525.77575684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -06086330 525.77581787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -06086331 525.77581787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -06086332 525.77581787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -06086333 525.77581787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -06086334 525.77587891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -06086335 525.77587891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -06086336 525.77587891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -06086337 525.77587891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -06086338 525.77593994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -06086339 525.77593994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -06086340 525.77593994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -06086341 525.77593994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -06086342 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -06086343 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -06086344 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -06086345 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -06086346 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -06086347 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -06086348 525.77600098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -06086349 525.77606201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -06086350 525.77606201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -06086351 525.77606201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -06086352 525.77612305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -06086353 525.77612305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -06086354 525.77612305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -06086355 525.77612305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -06086356 525.77618408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -06086357 525.77618408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -06086358 525.77618408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -06086359 525.77618408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -06086360 525.77624512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -06086361 525.77624512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -06086362 525.77624512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -06086363 525.77624512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -06086364 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -06086365 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -06086366 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -06086367 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -06086368 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -06086369 525.77630615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -06086370 525.77636719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -06086371 525.77636719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -06086372 525.77636719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -06086373 525.77636719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -06086374 525.77642822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -06086375 525.77642822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -06086376 525.77642822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -06086377 525.77642822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -06086378 525.77648926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -06086379 525.77648926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -06086380 525.77648926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -06086381 525.77648926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -06086382 525.77655029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -06086383 525.77655029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -06086384 525.77655029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -06086385 525.77655029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -06086386 525.77661133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -06086387 525.77661133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -06086388 525.77661133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -06086389 525.77661133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -06086390 525.77667236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -06086391 525.77667236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -06086392 525.77667236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -06086393 525.77667236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -06086394 525.77673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -06086395 525.77673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -06086396 525.77673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -06086397 525.77673340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -06086398 525.77679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -06086399 525.77679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -06086400 525.77679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -06086401 525.77679443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -06086402 525.77685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -06086403 525.77685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -06086404 525.77685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -06086405 525.77685547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -06086406 525.77691650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -06086407 525.77691650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -06086408 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -06086409 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -06086410 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -06086411 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -06086412 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -06086413 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -06086414 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -06086415 525.77697754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -06086416 525.77703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -06086417 525.77703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -06086418 525.77703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -06086419 525.77703857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -06086420 525.77709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -06086421 525.77709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -06086422 525.77709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -06086423 525.77709961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -06086424 525.77716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -06086425 525.77716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -06086426 525.77716064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -06086427 525.77722168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -06086428 525.77722168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -06086429 525.77722168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -06086430 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -06086431 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -06086432 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -06086433 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -06086434 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -06086435 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -06086436 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -06086437 525.77728271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -06086438 525.77734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -06086439 525.77734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -06086440 525.77734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -06086441 525.77734375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -06086442 525.77740479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -06086443 525.77740479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -06086444 525.77740479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -06086445 525.77740479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -06086446 525.77746582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -06086447 525.77746582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -06086448 525.77752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -06086449 525.77752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -06086450 525.77752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -06086451 525.77752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -06086452 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -06086453 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -06086454 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -06086455 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -06086456 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -06086457 525.77758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -06086458 525.77764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -06086459 525.77764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -06086460 525.77764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -06086461 525.77764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -06086462 525.77770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -06086463 525.77770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -06086464 525.77770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -06086465 525.77770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -06086466 525.77777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -06086467 525.77777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -06086468 525.77777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -06086469 525.77777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -06086470 525.77783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -06086471 525.77783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -06086472 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -06086473 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -06086474 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -06086475 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -06086476 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -06086477 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -06086478 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -06086479 525.77789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -06086480 525.77795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -06086481 525.77795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -06086482 525.77795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -06086483 525.77795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -06086484 525.77801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -06086485 525.77801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -06086486 525.77801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -06086487 525.77801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -06086488 525.77807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -06086489 525.77807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -06086490 525.77807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -06086491 525.77813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -06086492 525.77813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -06086493 525.77813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -06086494 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -06086495 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -06086496 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -06086497 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -06086498 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -06086499 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -06086500 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -06086501 525.77819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -06086502 525.77825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -06086503 525.77825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -06086504 525.77825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -06086505 525.77825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -06086506 525.77832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -06086507 525.77832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -06086508 525.77832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -06086509 525.77832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -06086510 525.77838135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -06086511 525.77838135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -06086512 525.77844238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -06086513 525.77844238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -06086514 525.77844238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -06086515 525.77844238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -06086516 525.77850342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -06086517 525.77850342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -06086518 525.77850342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -06086519 525.77850342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -06086520 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -06086521 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -06086522 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -06086523 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -06086524 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -06086525 525.77856445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -06086526 525.77862549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -06086527 525.77862549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -06086528 525.77862549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -06086529 525.77862549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -06086530 525.77868652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -06086531 525.77868652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -06086532 525.77868652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -06086533 525.77868652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -06086534 525.77874756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -06086535 525.77874756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -06086536 525.77874756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -06086537 525.77874756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -06086538 525.77880859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -06086539 525.77880859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -06086540 525.77880859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -06086541 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -06086542 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -06086543 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -06086544 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -06086545 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -06086546 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -06086547 525.77886963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -06086548 525.77893066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -06086549 525.77893066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -06086550 525.77893066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -06086551 525.77893066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -06086552 525.77899170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -06086553 525.77899170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -06086554 525.77899170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -06086555 525.77899170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -06086556 525.77905273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -06086557 525.77905273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -06086558 525.77905273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -06086559 525.77905273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -06086560 525.77911377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -06086561 525.77911377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -06086562 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -06086563 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -06086564 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -06086565 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -06086566 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -06086567 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -06086568 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -06086569 525.77917480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -06086570 525.77923584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -06086571 525.77923584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -06086572 525.77923584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -06086573 525.77923584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -06086574 525.77929688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -06086575 525.77929688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -06086576 525.77929688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -06086577 525.77929688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -06086578 525.77935791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -06086579 525.77935791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -06086580 525.77935791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -06086581 525.77941895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -06086582 525.77941895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -06086583 525.77941895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -06086584 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -06086585 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -06086586 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -06086587 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -06086588 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -06086589 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -06086590 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -06086591 525.77947998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -06086592 525.77954102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -06086593 525.77954102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -06086594 525.77954102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -06086595 525.77954102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -06086596 525.77960205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -06086597 525.77960205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -06086598 525.77966309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -06086599 525.77966309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -06086600 525.77978516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -06086601 525.77978516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -06086602 525.77978516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -06086603 525.77978516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -06086604 525.77984619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -06086605 525.77984619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -06086606 525.77984619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -06086607 525.77984619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -06086608 525.77990723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -06086609 525.77990723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -06086610 525.77990723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -06086611 525.77990723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -06086612 525.77996826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -06086613 525.77996826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -06086614 525.77996826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -06086615 525.77996826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -06086616 525.78002930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -06086617 525.78002930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -06086618 525.78002930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -06086619 525.78002930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -06086620 525.78009033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -06086621 525.78009033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -06086622 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -06086623 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -06086624 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -06086625 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -06086626 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -06086627 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -06086628 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -06086629 525.78015137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -06086630 525.78021240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -06086631 525.78021240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -06086632 525.78021240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -06086633 525.78021240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -06086634 525.78027344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -06086635 525.78027344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -06086636 525.78027344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -06086637 525.78033447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -06086638 525.78033447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -06086639 525.78033447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -06086640 525.78039551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -06086641 525.78039551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -06086642 525.78039551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -06086643 525.78039551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -06086644 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -06086645 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -06086646 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -06086647 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -06086648 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -06086649 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -06086650 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -06086651 525.78045654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -06086652 525.78051758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -06086653 525.78051758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -06086654 525.78051758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -06086655 525.78051758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -06086656 525.78057861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -06086657 525.78057861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -06086658 525.78063965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -06086659 525.78063965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -06086660 525.78063965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -06086661 525.78063965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -06086662 525.78070068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -06086663 525.78070068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -06086664 525.78070068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -06086665 525.78070068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -06086666 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -06086667 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -06086668 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -06086669 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -06086670 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -06086671 525.78076172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -06086672 525.78082275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -06086673 525.78082275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -06086674 525.78082275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -06086675 525.78082275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -06086676 525.78088379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -06086677 525.78088379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -06086678 525.78088379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -06086679 525.78088379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -06086680 525.78094482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -06086681 525.78094482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -06086682 525.78094482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -06086683 525.78094482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -06086684 525.78100586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -06086685 525.78100586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -06086686 525.78100586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -06086687 525.78100586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -06086688 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -06086689 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -06086690 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -06086691 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -06086692 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -06086693 525.78106689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -06086694 525.78112793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -06086695 525.78112793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -06086696 525.78112793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -06086697 525.78112793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -06086698 525.78118896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -06086699 525.78118896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -06086700 525.78118896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -06086701 525.78118896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -06086702 525.78125000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -06086703 525.78125000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -06086704 525.78125000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -06086705 525.78125000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -06086706 525.78131104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -06086707 525.78131104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -06086708 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -06086709 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -06086710 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -06086711 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -06086712 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -06086713 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -06086714 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -06086715 525.78137207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -06086716 525.78143311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -06086717 525.78143311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -06086718 525.78143311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -06086719 525.78143311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -06086720 525.78149414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -06086721 525.78149414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -06086722 525.78149414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -06086723 525.78149414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -06086724 525.78155518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -06086725 525.78155518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -06086726 525.78155518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -06086727 525.78161621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -06086728 525.78161621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -06086729 525.78161621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -06086730 525.78167725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -06086731 525.78167725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -06086732 525.78167725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -06086733 525.78167725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -06086734 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -06086735 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -06086736 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -06086737 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -06086738 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -06086739 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -06086740 525.78173828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -06086741 525.78179932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -06086742 525.78179932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -06086743 525.78179932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -06086744 525.78186035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -06086745 525.78186035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -06086746 525.78186035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -06086747 525.78186035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -06086748 525.78192139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -06086749 525.78192139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -06086750 525.78192139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -06086751 525.78192139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -06086752 525.78198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -06086753 525.78198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -06086754 525.78198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -06086755 525.78198242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -06086756 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -06086757 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -06086758 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -06086759 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -06086760 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -06086761 525.78204346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -06086762 525.78210449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -06086763 525.78210449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -06086764 525.78210449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -06086765 525.78210449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -06086766 525.78216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -06086767 525.78216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -06086768 525.78216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -06086769 525.78216553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -06086770 525.78222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -06086771 525.78222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -06086772 525.78222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -06086773 525.78222656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -06086774 525.78228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -06086775 525.78228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -06086776 525.78228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -06086777 525.78228760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -06086778 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -06086779 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -06086780 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -06086781 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -06086782 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -06086783 525.78234863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -06086784 525.78240967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -06086785 525.78240967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -06086786 525.78240967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -06086787 525.78240967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -06086788 525.78247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -06086789 525.78247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -06086790 525.78247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -06086791 525.78247070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -06086792 525.78253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -06086793 525.78253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -06086794 525.78253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -06086795 525.78253174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -06086796 525.78259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -06086797 525.78259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -06086798 525.78259277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -06086799 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -06086800 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -06086801 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -06086802 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -06086803 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -06086804 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -06086805 525.78265381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -06086806 525.78271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -06086807 525.78271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -06086808 525.78271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -06086809 525.78271484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -06086810 525.78277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -06086811 525.78277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -06086812 525.78277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -06086813 525.78277588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -06086814 525.78283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -06086815 525.78283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -06086816 525.78283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -06086817 525.78283691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -06086818 525.78289795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -06086819 525.78289795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -06086820 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -06086821 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -06086822 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -06086823 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -06086824 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -06086825 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -06086826 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -06086827 525.78295898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -06086828 525.78302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -06086829 525.78302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -06086830 525.78302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -06086831 525.78302002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -06086832 525.78308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -06086833 525.78308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -06086834 525.78308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -06086835 525.78308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -06086836 525.78314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -06086837 525.78314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -06086838 525.78314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -06086839 525.78320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -06086840 525.78320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -06086841 525.78320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -06086842 525.78326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -06086843 525.78326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -06086844 525.78326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -06086845 525.78326416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -06086846 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -06086847 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -06086848 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -06086849 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -06086850 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -06086851 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -06086852 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -06086853 525.78332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -06086854 525.78338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -06086855 525.78338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -06086856 525.78338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -06086857 525.78338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -06086858 525.78344727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -06086859 525.78344727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -06086860 525.78350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -06086861 525.78350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -06086862 525.78350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -06086863 525.78350830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -06086864 525.78356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -06086865 525.78356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -06086866 525.78356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -06086867 525.78356934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -06086868 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -06086869 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -06086870 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -06086871 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -06086872 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -06086873 525.78363037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -06086874 525.78369141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -06086875 525.78369141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -06086876 525.78369141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -06086877 525.78369141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -06086878 525.78375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -06086879 525.78375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -06086880 525.78375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -06086881 525.78375244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -06086882 525.78381348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -06086883 525.78381348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -06086884 525.78381348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -06086885 525.78381348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -06086886 525.78387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -06086887 525.78387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -06086888 525.78387451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -06086889 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -06086890 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -06086891 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -06086892 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -06086893 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -06086894 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -06086895 525.78393555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -06086896 525.78399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -06086897 525.78399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -06086898 525.78399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -06086899 525.78399658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -06086900 525.78405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -06086901 525.78405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -06086902 525.78405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -06086903 525.78405762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -06086904 525.78411865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -06086905 525.78411865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -06086906 525.78411865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -06086907 525.78411865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -06086908 525.78417969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -06086909 525.78417969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -06086910 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -06086911 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -06086912 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -06086913 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -06086914 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -06086915 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -06086916 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -06086917 525.78424072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -06086918 525.78430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -06086919 525.78430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -06086920 525.78430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -06086921 525.78430176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -06086922 525.78436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -06086923 525.78436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -06086924 525.78436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -06086925 525.78436279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -06086926 525.78442383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -06086927 525.78442383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -06086928 525.78442383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -06086929 525.78448486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -06086930 525.78448486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -06086931 525.78448486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -06086932 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -06086933 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -06086934 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -06086935 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -06086936 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -06086937 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -06086938 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -06086939 525.78454590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -06086940 525.78460693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -06086941 525.78460693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -06086942 525.78466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -06086943 525.78466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -06086944 525.78466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -06086945 525.78466797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -06086946 525.78472900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -06086947 525.78472900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -06086948 525.78472900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -06086949 525.78472900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -06086950 525.78479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -06086951 525.78479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -06086952 525.78479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -06086953 525.78479004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -06086954 525.78485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -06086955 525.78485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -06086956 525.78485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -06086957 525.78485107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -06086958 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -06086959 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -06086960 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -06086961 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -06086962 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -06086963 525.78491211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -06086964 525.78497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -06086965 525.78497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -06086966 525.78497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -06086967 525.78497314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -06086968 525.78503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -06086969 525.78503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -06086970 525.78503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -06086971 525.78503418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -06086972 525.78509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -06086973 525.78509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -06086974 525.78509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -06086975 525.78509521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -06086976 525.78515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -06086977 525.78515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -06086978 525.78515625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -06086979 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -06086980 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -06086981 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -06086982 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -06086983 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -06086984 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -06086985 525.78521729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -06086986 525.78527832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -06086987 525.78527832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -06086988 525.78527832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -06086989 525.78527832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -06086990 525.78533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -06086991 525.78533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -06086992 525.78533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -06086993 525.78533936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -06086994 525.78540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -06086995 525.78540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -06086996 525.78540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -06086997 525.78540039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -06086998 525.78546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -06086999 525.78546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -06087000 525.78546143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -06087001 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -06087002 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -06087003 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -06087004 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -06087005 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -06087006 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -06087007 525.78552246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -06087008 525.78558350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -06087009 525.78558350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -06087010 525.78564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -06087011 525.78564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -06087012 525.78564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -06087013 525.78564453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -06087014 525.78570557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -06087015 525.78570557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -06087016 525.78570557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -06087017 525.78576660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -06087018 525.78576660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -06087019 525.78576660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -06087020 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -06087021 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -06087022 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -06087023 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -06087024 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -06087025 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -06087026 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -06087027 525.78582764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -06087028 525.78588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -06087029 525.78588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -06087030 525.78588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -06087031 525.78588867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -06087032 525.78594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -06087033 525.78594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -06087034 525.78594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -06087035 525.78594971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -06087036 525.78601074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -06087037 525.78601074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -06087038 525.78607178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -06087039 525.78607178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -06087040 525.78607178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -06087041 525.78607178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -06087042 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -06087043 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -06087044 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -06087045 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -06087046 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -06087047 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -06087048 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -06087049 525.78613281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -06087050 525.78619385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -06087051 525.78619385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -06097366 525.93481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -06097367 525.93481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -06097368 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -06097369 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -06097370 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -06097371 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -06097372 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -06097373 525.93487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -06097374 525.93493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -06097375 525.93493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -06097376 525.93493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -06097377 525.93493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -06097378 525.93499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -06097379 525.93499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -06097380 525.93499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -06097381 525.93499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -06097382 525.93505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -06097383 525.93505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -06097384 525.93505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -06097385 525.93505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -06097386 525.93511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -06097387 525.93511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -06097388 525.93511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -06097389 525.93511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -06097390 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -06097391 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -06097392 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -06097393 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -06097394 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -06097395 525.93518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19410 -06097396 525.93524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -06097397 525.93524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19420 -06097398 525.93524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -06097399 525.93524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19430 -06097400 525.93530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -06097401 525.93530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19440 -06097402 525.93530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -06097403 525.93530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19450 -06097404 525.93536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -06097405 525.93536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19460 -06097406 525.93536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -06097407 525.93536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19470 -06097408 525.93542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -06097409 525.93542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19480 -06100569 525.98083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f740 -06100570 525.98083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -06100571 525.98083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f750 -06100572 525.98089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -06100573 525.98089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f760 -06100574 525.98089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -06100575 525.98089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f770 -06100576 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -06100577 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f780 -06100578 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -06100579 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f790 -06100580 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -06100581 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -06100582 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -06100583 525.98095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -06100584 525.98101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -06100585 525.98101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -06100586 525.98101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -06100587 525.98107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -06100588 525.98107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -06100589 525.98107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -06100590 525.98114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -06100591 525.98114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -06100592 525.98114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -06100593 525.98114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -06100594 525.98120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -06100595 525.98120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -06100596 525.98120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -06100597 525.98120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -06100598 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -06100599 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -06100600 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -06100601 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -06100602 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -06100603 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -06100604 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -06100605 525.98126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -06100606 525.98132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -06100607 525.98132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -06100608 525.98138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -06100609 525.98138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -06100610 525.98138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -06100611 525.98138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -06100612 525.98144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -06103750 526.02770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -06103751 526.02770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -06103752 526.02770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -06103753 526.02777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -06103754 526.02777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -06103755 526.02777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -06103756 526.02783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -06103757 526.02783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae0 -06103758 526.02783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -06103759 526.02783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af0 -06103760 526.02789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -06103761 526.02789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b00 -06103762 526.02789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -06103763 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b10 -06103764 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -06103765 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b20 -06103766 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -06103767 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b30 -06103768 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -06103769 526.02795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b40 -06103770 526.02801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -06103771 526.02801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b50 -06103772 526.02801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -06103773 526.02801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b60 -06103774 526.02807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -06103775 526.02807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b70 -06103776 526.02807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -06103777 526.02807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b80 -06103778 526.02813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -06103779 526.02813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b90 -06103780 526.02813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -06103781 526.02813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba0 -06103782 526.02819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -06103783 526.02819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb0 -06103784 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -06103785 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc0 -06103786 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -06103787 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd0 -06103788 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -06103789 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be0 -06103790 526.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -06103791 526.02832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf0 -06103792 526.02832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -06103793 526.02832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c00 -06106412 526.06793213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -06106413 526.06793213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ade0 -06106414 526.06793213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -06106415 526.06793213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2adf0 -06106416 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -06106417 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae00 -06106418 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -06106419 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae10 -06106420 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -06106421 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae20 -06106422 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -06106423 526.06799316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae30 -06106424 526.06805420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -06106425 526.06805420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae40 -06106426 526.06811523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -06106427 526.06811523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae50 -06106428 526.06811523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -06106429 526.06811523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae60 -06106430 526.06817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -06106431 526.06817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae70 -06106432 526.06817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -06106433 526.06817627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae80 -06106434 526.06823730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -06106435 526.06823730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae90 -06106436 526.06823730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -06106437 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aea0 -06106438 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -06106439 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aeb0 -06106440 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -06106441 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aec0 -06106442 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -06106443 526.06829834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aed0 -06106444 526.06835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -06106445 526.06835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aee0 -06106446 526.06835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -06106447 526.06835938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aef0 -06106448 526.06842041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -06106449 526.06842041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af00 -06106450 526.06848145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -06106451 526.06848145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af10 -06106452 526.06848145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -06106453 526.06848145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -06106454 526.06854248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -06106455 526.06854248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -06109177 526.11218262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -06109178 526.11224365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30430 -06109179 526.11224365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -06109180 526.11224365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30440 -06109181 526.11230469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -06109182 526.11230469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30450 -06109183 526.11230469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -06109184 526.11230469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30460 -06109185 526.11236572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -06109186 526.11236572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30470 -06109187 526.11236572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -06109188 526.11236572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30480 -06109189 526.11242676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -06109190 526.11242676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30490 -06109191 526.11242676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -06109192 526.11248779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304a0 -06109193 526.11248779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -06109194 526.11248779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304b0 -06109195 526.11248779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -06109196 526.11248779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304c0 -06109197 526.11254883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -06109198 526.11254883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304d0 -06109199 526.11254883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -06109200 526.11254883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304e0 -06109201 526.11260986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -06109202 526.11260986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x304f0 -06109203 526.11260986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -06109204 526.11260986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30500 -06109205 526.11267090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -06109206 526.11267090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30510 -06109207 526.11267090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -06109208 526.11267090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30520 -06109209 526.11273193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -06109210 526.11273193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30530 -06109211 526.11273193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -06109212 526.11273193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30540 -06109213 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -06109214 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30550 -06109215 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -06109216 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30560 -06109217 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -06109218 526.11279297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30570 -06109219 526.11285400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -06109220 526.11285400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30580 -06111919 526.15185547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -06111920 526.15185547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e0 -06111921 526.15191650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -06111922 526.15191650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f0 -06111923 526.15191650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -06111924 526.15191650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a00 -06111925 526.15197754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -06111926 526.15197754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a10 -06111927 526.15203857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -06111928 526.15203857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a20 -06111929 526.15203857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -06111930 526.15203857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a30 -06111931 526.15209961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -06111932 526.15209961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a40 -06111933 526.15209961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -06111934 526.15209961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a50 -06111935 526.15216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -06111936 526.15216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a60 -06111937 526.15216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -06111938 526.15216064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a70 -06111939 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -06111940 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a80 -06111941 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -06111942 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a90 -06111943 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -06111944 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa0 -06111945 526.15222168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -06111946 526.15228271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab0 -06111947 526.15228271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -06111948 526.15228271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac0 -06111949 526.15234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -06111950 526.15234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad0 -06111951 526.15234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -06111952 526.15234375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae0 -06111953 526.15240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -06111954 526.15240479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af0 -06111955 526.15246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -06111956 526.15246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b00 -06111957 526.15246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -06111958 526.15246582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b10 -06111959 526.15252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -06111960 526.15252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b20 -06111961 526.15252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -06111962 526.15252686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b30 -06114515 526.18988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -06114516 526.18988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab00 -06114517 526.18988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -06114518 526.18988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab10 -06114519 526.18994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -06114520 526.18994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab20 -06114521 526.18994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -06114522 526.18994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab30 -06114523 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -06114524 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab40 -06114525 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -06114526 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab50 -06114527 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -06114528 526.19000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab60 -06114529 526.19006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -06114530 526.19006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab70 -06114531 526.19006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -06114532 526.19006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab80 -06114533 526.19012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -06114534 526.19012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab90 -06114535 526.19012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -06114536 526.19012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aba0 -06114537 526.19018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -06114538 526.19018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abb0 -06114539 526.19018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -06114540 526.19018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abc0 -06114541 526.19024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -06114542 526.19024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abd0 -06114543 526.19024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -06114544 526.19024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abe0 -06114545 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -06114546 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3abf0 -06114547 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -06114548 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac00 -06114549 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -06114550 526.19030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac10 -06114551 526.19036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -06114552 526.19036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac20 -06114553 526.19042969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -06114554 526.19042969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac30 -06114555 526.19061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -06114556 526.19061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac40 -06114557 526.19061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -06114558 526.19061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac50 -06117045 526.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -06117046 526.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa10 -06117047 526.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -06117048 526.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa20 -06117049 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -06117050 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa30 -06117051 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -06117052 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa40 -06117053 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -06117054 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa50 -06117055 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -06117056 526.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa60 -06117057 526.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -06117058 526.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa70 -06117059 526.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -06117060 526.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa80 -06117061 526.22729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -06117062 526.22729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa90 -06117063 526.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -06117064 526.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa0 -06117065 526.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -06117066 526.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab0 -06117067 526.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -06117068 526.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac0 -06117069 526.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -06117070 526.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad0 -06117071 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -06117072 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae0 -06117073 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -06117074 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf0 -06117075 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -06117076 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb00 -06117077 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -06117078 526.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb10 -06117079 526.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -06117080 526.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb20 -06117081 526.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -06117082 526.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb30 -06117083 526.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -06117084 526.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb40 -06117085 526.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -06117086 526.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb50 -06117087 526.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -06117088 526.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb60 -06126881 526.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06126882 526.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06126883 526.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06126884 526.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06126885 526.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06126886 526.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06126887 526.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06126888 526.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06126889 526.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06126890 526.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06126891 526.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06126892 526.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06126893 526.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06126894 526.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06126895 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06126896 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06126897 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06126898 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06126899 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06126900 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06126901 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06126902 526.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06126903 526.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06126904 526.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06126905 526.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06126906 526.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06126907 526.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06126908 526.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06126909 526.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06126910 526.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06126911 526.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06126912 526.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06126913 526.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06126914 526.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06126915 526.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06126916 526.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06126917 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06126918 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06126919 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06126920 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06126921 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06126922 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06126923 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06126924 526.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06126925 526.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06126926 526.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06126927 526.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06126928 526.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06126929 526.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06126930 526.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06126931 526.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06126932 526.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06126933 526.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06126934 526.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06126935 526.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06126936 526.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06126937 526.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06126938 526.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06126939 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06126940 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06126941 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06126942 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06126943 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06126944 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06126945 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06126946 526.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06126947 526.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06126948 526.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06126949 526.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06126950 526.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06126951 526.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06126952 526.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06126953 526.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06126954 526.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06126955 526.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06126956 526.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06126957 526.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06126958 526.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06126959 526.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06126960 526.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06126961 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06126962 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06126963 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06126964 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06126965 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06126966 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06126967 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06126968 526.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06126969 526.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06126970 526.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06126971 526.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06126972 526.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06126973 526.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06126974 526.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06126975 526.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06126976 526.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06126977 526.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06126978 526.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06126979 526.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06126980 526.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06126981 526.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06126982 526.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06126983 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06126984 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06126985 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06126986 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06126987 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06126988 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06126989 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06126990 526.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06126991 526.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06126992 526.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06126993 526.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06126994 526.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06126995 526.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06126996 526.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06126997 526.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06126998 526.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06126999 526.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06127000 526.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06127001 526.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06127002 526.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06127003 526.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06127004 526.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06127005 526.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06127006 526.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06127007 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06127008 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06127009 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06127010 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06127011 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06127012 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06127013 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06127014 526.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06127015 526.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06127016 526.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06127017 526.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06127018 526.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06127019 526.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06127020 526.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06127021 526.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06127022 526.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06127023 526.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06127024 526.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06127025 526.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06127026 526.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06127027 526.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06127028 526.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06127029 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06127030 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06127031 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06127032 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06127033 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06127034 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06127035 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06127036 526.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06127037 526.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06127038 526.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06127039 526.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06127040 526.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06127041 526.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06127042 526.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06127043 526.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06127044 526.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06127045 526.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06127046 526.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06127047 526.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06127048 526.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06127049 526.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06127050 526.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06127051 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06127052 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06127053 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06127054 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06127055 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06127056 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06127057 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06127058 526.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06127059 526.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06127060 526.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06127061 526.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06127062 526.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06127063 526.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06127064 526.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06127065 526.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06127066 526.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06127067 526.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06127068 526.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06127069 526.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06127070 526.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06127071 526.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06127072 526.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06127073 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06127074 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06127075 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06127076 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06127077 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06127078 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06127079 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06127080 526.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06127081 526.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06127082 526.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06127083 526.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06127084 526.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06127085 526.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06127086 526.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06127087 526.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06127088 526.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06127089 526.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06127090 526.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06127091 526.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06127092 526.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06127093 526.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06127094 526.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06127095 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06127096 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06127097 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06127098 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06127099 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06127100 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06127101 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06127102 526.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06127103 526.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06127104 526.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06127105 526.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06127106 526.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06127107 526.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06127108 526.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06127109 526.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06127110 526.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06127111 526.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06127112 526.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06127113 526.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06127114 526.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06127115 526.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06127116 526.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06127117 526.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06127118 526.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06127119 526.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06127120 526.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06127121 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06127122 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06127123 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06127124 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06127125 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06127126 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06127127 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06127128 526.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06127129 526.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06127130 526.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06127131 526.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06127132 526.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06127133 526.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06127134 526.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06127135 526.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06127136 526.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06127137 526.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06127138 526.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06127139 526.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06127140 526.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06127141 526.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06127142 526.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06127143 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06127144 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06127145 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06127146 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06127147 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06127148 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06127149 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06127150 526.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06127151 526.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06127152 526.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06127153 526.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06127154 526.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06127155 526.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06127156 526.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06127157 526.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06127158 526.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06127159 526.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06127160 526.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06127161 526.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06127162 526.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06127163 526.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06127164 526.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06127165 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06127166 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06127167 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06127168 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06127169 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06127170 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06127171 526.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06127172 526.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06127173 526.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06127174 526.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06127175 526.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06127176 526.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06127177 526.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06127178 526.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06127179 526.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06127180 526.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06127181 526.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06127182 526.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06127183 526.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06127184 526.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06127185 526.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06127186 526.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06127187 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06127188 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06127189 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06127190 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06127191 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06127192 526.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06127193 526.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06127194 526.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06127195 526.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06127196 526.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06127197 526.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06127198 526.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06127199 526.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06127200 526.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06127201 526.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06127202 526.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06127203 526.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06127204 526.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06127205 526.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06127206 526.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06127207 526.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06127208 526.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06127209 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06127210 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06127211 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06127212 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06127213 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06127214 526.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06127215 526.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06127216 526.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06127217 526.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06127218 526.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06127219 526.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06127220 526.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06127221 526.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06127222 526.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06127223 526.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06127224 526.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06127225 526.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06127226 526.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06127227 526.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06127228 526.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06127229 526.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06127230 526.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06127231 526.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06127232 526.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06138277 526.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17468 -06138278 526.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17468 -06138279 526.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17478 -06138280 526.93481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17478 -06138281 526.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17488 -06138282 526.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17488 -06138283 526.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17498 -06138284 526.93487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17498 -06138285 526.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a8 -06138286 526.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174a8 -06138287 526.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b8 -06138288 526.93493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174b8 -06138289 526.93499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c8 -06138290 526.93499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174c8 -06138291 526.93499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d8 -06138292 526.93499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174d8 -06138293 526.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e8 -06138294 526.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174e8 -06138295 526.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f8 -06138296 526.93505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x174f8 -06138297 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17508 -06138298 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17508 -06138299 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17518 -06138300 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17518 -06138301 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17528 -06138302 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17528 -06138303 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17538 -06138304 526.93511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17538 -06138305 526.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17548 -06138306 526.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17548 -06138307 526.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17558 -06138308 526.93518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17558 -06138309 526.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -06138310 526.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17568 -06138311 526.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -06138312 526.93524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17578 -06138313 526.93530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -06138314 526.93530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17588 -06138315 526.93530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -06138316 526.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17598 -06138317 526.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -06138318 526.93536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x175a8 -06138319 526.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -06138320 526.93542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x175b8 -06141773 526.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06141774 526.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06141775 526.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b8 -06141776 526.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b8 -06141777 526.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c8 -06141778 526.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c8 -06141779 526.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d8 -06141780 526.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d8 -06141781 526.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e8 -06141782 526.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e8 -06141783 526.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -06141784 526.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -06141785 526.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -06141786 526.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -06141787 526.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -06141788 526.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -06141789 526.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -06141790 526.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -06141791 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -06141792 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -06141793 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -06141794 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -06141795 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -06141796 526.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -06141797 526.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -06141798 526.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -06141799 526.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -06141800 526.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -06141801 526.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -06141802 526.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -06141803 526.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -06141804 526.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -06141805 526.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -06141806 526.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -06141807 526.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -06141808 526.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -06141809 526.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -06141810 526.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -06141811 526.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -06141812 526.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -06141813 526.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -06141814 526.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -06141815 526.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -06141816 526.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -06144809 527.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24088 -06144810 527.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24088 -06144811 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24098 -06144812 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24098 -06144813 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a8 -06144814 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240a8 -06144815 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b8 -06144816 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240b8 -06144817 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c8 -06144818 527.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240c8 -06144819 527.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d8 -06144820 527.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240d8 -06144821 527.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e8 -06144822 527.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240e8 -06144823 527.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f8 -06144824 527.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x240f8 -06144825 527.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24108 -06144826 527.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24108 -06144827 527.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -06144828 527.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24118 -06144829 527.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -06144830 527.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24128 -06144831 527.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -06144832 527.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24138 -06144833 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -06144834 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24148 -06144835 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -06144836 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24158 -06144837 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24168 -06144838 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24168 -06144839 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24178 -06144840 527.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24178 -06144841 527.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24188 -06144842 527.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24188 -06144843 527.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24198 -06144844 527.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24198 -06144845 527.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a8 -06144846 527.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241a8 -06144847 527.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b8 -06144848 527.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241b8 -06144849 527.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c8 -06144850 527.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241c8 -06144851 527.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d8 -06144852 527.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x241d8 -06144881 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c8 -06144882 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242c8 -06144883 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d8 -06144884 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242d8 -06144885 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e8 -06144886 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242e8 -06144887 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f8 -06144888 527.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x242f8 -06144889 527.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24308 -06144890 527.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24308 -06144891 527.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24318 -06144892 527.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24318 -06144893 527.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -06144894 527.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24328 -06144895 527.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -06144896 527.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24338 -06144897 527.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -06144898 527.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24348 -06144899 527.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -06144900 527.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24358 -06144901 527.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -06144902 527.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24368 -06144903 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24378 -06144904 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24378 -06144905 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24388 -06144906 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24388 -06144907 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24398 -06144908 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24398 -06144909 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a8 -06144910 527.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243a8 -06144911 527.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b8 -06144912 527.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243b8 -06144913 527.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c8 -06144914 527.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243c8 -06144915 527.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d8 -06144916 527.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243d8 -06144917 527.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e8 -06144918 527.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243e8 -06144919 527.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f8 -06144920 527.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x243f8 -06144921 527.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24408 -06144922 527.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24408 -06144923 527.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24418 -06144924 527.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24418 -06145005 527.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -06145006 527.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246a8 -06145007 527.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -06145008 527.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246b8 -06145009 527.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -06145010 527.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246c8 -06145011 527.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -06145012 527.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246d8 -06145013 527.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -06145014 527.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246e8 -06145015 527.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -06145016 527.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x246f8 -06145017 527.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -06145018 527.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24708 -06145019 527.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -06145020 527.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24718 -06145021 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -06145022 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24728 -06145023 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -06145024 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24738 -06145025 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -06145026 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24748 -06145027 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -06145028 527.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24758 -06145029 527.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -06145030 527.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24768 -06145031 527.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -06145032 527.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24778 -06145033 527.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -06145034 527.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24788 -06145035 527.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -06145036 527.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24798 -06145037 527.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -06145038 527.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247a8 -06145039 527.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b8 -06145040 527.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247b8 -06145041 527.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c8 -06145042 527.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247c8 -06145043 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d8 -06145044 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247d8 -06145045 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e8 -06145046 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247e8 -06145047 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f8 -06145048 527.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x247f8 -06145135 527.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab8 -06145136 527.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ab8 -06145137 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac8 -06145138 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ac8 -06145139 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad8 -06145140 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ad8 -06145141 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -06145142 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ae8 -06145143 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -06145144 527.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24af8 -06145145 527.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -06145146 527.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b08 -06145147 527.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -06145148 527.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b18 -06145149 527.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -06145150 527.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b28 -06145151 527.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -06145152 527.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b38 -06145153 527.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -06145154 527.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b48 -06145155 527.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -06145156 527.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b58 -06145157 527.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -06145158 527.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b68 -06145159 527.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -06145160 527.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b78 -06145161 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -06145162 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b88 -06145163 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -06145164 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b98 -06145165 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -06145166 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ba8 -06145167 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -06145168 527.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -06145169 527.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -06145170 527.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -06145171 527.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -06145172 527.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -06145173 527.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -06145174 527.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -06145175 527.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -06145176 527.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -06145177 527.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -06145178 527.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -06145645 527.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa8 -06145646 527.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa8 -06145647 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab8 -06145648 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab8 -06145649 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac8 -06145650 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac8 -06145651 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad8 -06145652 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad8 -06145653 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae8 -06145654 527.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ae8 -06145655 527.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af8 -06145656 527.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25af8 -06145657 527.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b08 -06145658 527.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b08 -06145659 527.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b18 -06145660 527.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b18 -06145661 527.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b28 -06145662 527.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b28 -06145663 527.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b38 -06145664 527.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b38 -06145665 527.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b48 -06145666 527.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b48 -06145667 527.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b58 -06145668 527.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b58 -06145669 527.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b68 -06145670 527.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b68 -06145671 527.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b78 -06145672 527.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b78 -06145673 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b88 -06145674 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b88 -06145675 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b98 -06145676 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b98 -06145677 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba8 -06145678 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ba8 -06145679 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb8 -06145680 527.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bb8 -06145681 527.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc8 -06145682 527.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bc8 -06145683 527.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd8 -06145684 527.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bd8 -06145685 527.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -06145686 527.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25be8 -06145687 527.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -06145688 527.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25bf8 -06145831 527.03887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26078 -06145832 527.03887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26078 -06145833 527.03894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26088 -06145834 527.03894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26088 -06145835 527.03894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26098 -06145836 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26098 -06145837 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a8 -06145838 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260a8 -06145839 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b8 -06145840 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260b8 -06145841 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c8 -06145842 527.03900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260c8 -06145843 527.03906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d8 -06145844 527.03906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260d8 -06145845 527.03906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e8 -06145846 527.03906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260e8 -06145847 527.03912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f8 -06145848 527.03912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x260f8 -06145849 527.03912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26108 -06145850 527.03912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26108 -06145851 527.03918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26118 -06145852 527.03918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26118 -06145853 527.03918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26128 -06145854 527.03918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26128 -06145855 527.03924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26138 -06145856 527.03924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26138 -06145857 527.03924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26148 -06145858 527.03924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26148 -06145859 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26158 -06145860 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26158 -06145861 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26168 -06145862 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26168 -06145863 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26178 -06145864 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26178 -06145865 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26188 -06145866 527.03930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26188 -06145867 527.03936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26198 -06145868 527.03936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26198 -06145869 527.03936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a8 -06145870 527.03936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261a8 -06145871 527.03942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b8 -06145872 527.03942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261b8 -06145873 527.03948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c8 -06145874 527.03948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x261c8 -06146673 527.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac8 -06146674 527.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ac8 -06146675 527.05059814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad8 -06146676 527.05059814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ad8 -06146677 527.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae8 -06146678 527.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ae8 -06146679 527.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af8 -06146680 527.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27af8 -06146681 527.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b08 -06146682 527.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b08 -06146683 527.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b18 -06146684 527.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b18 -06146685 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b28 -06146686 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b28 -06146687 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b38 -06146688 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b38 -06146689 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b48 -06146690 527.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b48 -06146691 527.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b58 -06146692 527.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b58 -06146693 527.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b68 -06146694 527.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b68 -06146695 527.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b78 -06146696 527.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b78 -06146697 527.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b88 -06146698 527.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b88 -06146699 527.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b98 -06146700 527.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b98 -06146701 527.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba8 -06146702 527.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ba8 -06146703 527.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb8 -06146704 527.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bb8 -06146705 527.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc8 -06146706 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bc8 -06146707 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd8 -06146708 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bd8 -06146709 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be8 -06146710 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27be8 -06146711 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf8 -06146712 527.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27bf8 -06146713 527.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c08 -06146714 527.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c08 -06146715 527.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c18 -06146716 527.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c18 -06150225 527.10003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c8 -06150226 527.10003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9c8 -06150227 527.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d8 -06150228 527.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9d8 -06150229 527.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e8 -06150230 527.10009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9e8 -06150231 527.10015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f8 -06150232 527.10015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e9f8 -06150233 527.10015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea08 -06150234 527.10015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea08 -06150235 527.10021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea18 -06150236 527.10021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea18 -06150237 527.10021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea28 -06150238 527.10021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea28 -06150239 527.10028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea38 -06150240 527.10028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea38 -06150241 527.10028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea48 -06150242 527.10028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea48 -06150243 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea58 -06150244 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea58 -06150245 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea68 -06150246 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea68 -06150247 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea78 -06150248 527.10034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea78 -06150249 527.10040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea88 -06150250 527.10040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea88 -06150251 527.10040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea98 -06150252 527.10040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea98 -06150253 527.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa8 -06150254 527.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaa8 -06150255 527.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab8 -06150256 527.10046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eab8 -06150257 527.10052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac8 -06150258 527.10052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eac8 -06150259 527.10052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -06150260 527.10052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ead8 -06150261 527.10058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -06150262 527.10058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eae8 -06150263 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -06150264 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eaf8 -06150265 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -06150266 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb08 -06150267 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -06150268 527.10064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb18 -06153452 527.14514160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e98 -06153453 527.14520264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea8 -06153454 527.14520264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ea8 -06153455 527.14520264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb8 -06153456 527.14520264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34eb8 -06153457 527.14526367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec8 -06153458 527.14526367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ec8 -06153459 527.14526367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed8 -06153460 527.14526367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ed8 -06153461 527.14532471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee8 -06153462 527.14532471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ee8 -06153463 527.14532471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef8 -06153464 527.14532471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ef8 -06153465 527.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f08 -06153466 527.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f08 -06153467 527.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f18 -06153468 527.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f18 -06153469 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f28 -06153470 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f28 -06153471 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f38 -06153472 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f38 -06153473 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f48 -06153474 527.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f48 -06153475 527.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f58 -06153476 527.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f58 -06153477 527.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f68 -06153478 527.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f68 -06153479 527.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f78 -06153480 527.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f78 -06153481 527.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f88 -06153482 527.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f88 -06153483 527.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f98 -06153484 527.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f98 -06153485 527.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa8 -06153486 527.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fa8 -06153487 527.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb8 -06153488 527.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fb8 -06153489 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc8 -06153490 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fc8 -06153491 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd8 -06153492 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fd8 -06153493 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe8 -06153494 527.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34fe8 -06153495 527.14581299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34ff8 -06156835 527.19268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b858 -06156836 527.19268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b858 -06156837 527.19268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b868 -06156838 527.19268799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b868 -06156839 527.19274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b878 -06156840 527.19274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b878 -06156841 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b888 -06156842 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b888 -06156843 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b898 -06156844 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b898 -06156845 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a8 -06156846 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8a8 -06156847 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -06156848 527.19281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8b8 -06156849 527.19287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -06156850 527.19287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8c8 -06156851 527.19287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -06156852 527.19287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8d8 -06156853 527.19293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -06156854 527.19293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8e8 -06156855 527.19293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -06156856 527.19293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b8f8 -06156857 527.19299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -06156858 527.19299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b908 -06156859 527.19299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -06156860 527.19305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b918 -06156861 527.19305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -06156862 527.19305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b928 -06156863 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -06156864 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b938 -06156865 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -06156866 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b948 -06156867 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -06156868 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b958 -06156869 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -06156870 527.19311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b968 -06156871 527.19317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -06156872 527.19317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b978 -06156873 527.19317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -06156874 527.19317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b988 -06156875 527.19323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -06156876 527.19323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b998 -06156877 527.19323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -06156878 527.19323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b9a8 -06159905 527.23510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41848 -06159906 527.23510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41848 -06159907 527.23516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41858 -06159908 527.23516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41858 -06159909 527.23516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41868 -06159910 527.23516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41868 -06159911 527.23522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41878 -06159912 527.23522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41878 -06159913 527.23522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41888 -06159914 527.23522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41888 -06159915 527.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41898 -06159916 527.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41898 -06159917 527.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a8 -06159918 527.23529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418a8 -06159919 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b8 -06159920 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418b8 -06159921 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c8 -06159922 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418c8 -06159923 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d8 -06159924 527.23535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418d8 -06159925 527.23541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e8 -06159926 527.23541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418e8 -06159927 527.23541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f8 -06159928 527.23541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x418f8 -06159929 527.23547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41908 -06159930 527.23547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41908 -06159931 527.23547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41918 -06159932 527.23553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41918 -06159933 527.23553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41928 -06159934 527.23553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41928 -06159935 527.23559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41938 -06159936 527.23559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41938 -06159937 527.23559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41948 -06159938 527.23559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41948 -06159939 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41958 -06159940 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41958 -06159941 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41968 -06159942 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41968 -06159943 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41978 -06159944 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41978 -06159945 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41988 -06159946 527.23565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41988 -06159947 527.23571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41998 -06159948 527.23571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41998 -06168775 527.75549316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -06168776 527.75549316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06168777 527.77117920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168778 527.89739990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53368 -06168779 527.89739990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06168780 527.91278076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168781 528.10723877 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06168782 528.12872314 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168783 528.12878418 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168784 529.92211914 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06168785 529.92211914 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06168786 529.92218018 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168787 529.92218018 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06168788 529.92230225 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06168789 529.92230225 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06168790 529.92236328 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06168791 529.92236328 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06168792 530.12994385 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06168793 530.15093994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168794 530.15093994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06168795 531.22637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06168796 531.22637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06168797 531.22637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06168798 531.22637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06168799 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06168800 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06168801 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06168802 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06168803 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06168804 531.22644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06168805 531.22650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06168806 531.22650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06168807 531.22650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06168808 531.22650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06168809 531.22656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06168810 531.22656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06168811 531.22656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06168812 531.22656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06168813 531.22662354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06168814 531.22662354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06168815 531.22662354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06168816 531.22662354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06168817 531.22668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06168818 531.22668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06168819 531.22668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06168820 531.22668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06168821 531.22674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06168822 531.22674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06168823 531.22674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06168824 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06168825 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06168826 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06168827 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06168828 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06168829 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06168830 531.22680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06168831 531.22686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06168832 531.22686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06168833 531.22686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06168834 531.22686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06168835 531.22692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06168836 531.22692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06168837 531.22692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06168838 531.22692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06168839 531.22698975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06168840 531.22698975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06168841 531.22698975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06168842 531.22698975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06168843 531.22705078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06168844 531.22705078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06168845 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06168846 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06168847 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06168848 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06168849 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06168850 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06168851 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06168852 531.22711182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06168853 531.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06168854 531.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06168855 531.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06168856 531.22717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06168857 531.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06168858 531.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06168859 531.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06168860 531.22723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06168861 531.22729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06168862 531.22729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06168863 531.22729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06168864 531.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06168865 531.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06168866 531.22735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06168867 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06168868 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06168869 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06168870 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06168871 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06168872 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06168873 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06168874 531.22741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06168875 531.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06168876 531.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06168877 531.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06168878 531.22747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06168879 531.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06168880 531.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06168881 531.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06168882 531.22753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06168883 531.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06168884 531.22760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06168885 531.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06168886 531.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06168887 531.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06168888 531.22766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06168889 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06168890 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06168891 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06168892 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06168893 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06168894 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06168895 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06168896 531.22772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06168897 531.22778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06168898 531.22778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06168899 531.22778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06168900 531.22778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06168901 531.22784424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06168902 531.22784424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06168903 531.22784424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06168904 531.22784424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06168905 531.22790527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06168906 531.22790527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06168907 531.22796631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06168908 531.22796631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06168909 531.22796631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06168910 531.22796631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06168911 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06168912 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06168913 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06168914 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06168915 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06168916 531.22802734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06168917 531.22808838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06168918 531.22808838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06168919 531.22814941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06168920 531.22814941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06168921 531.22814941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06168922 531.22814941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06168923 531.22821045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06168924 531.22821045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06168925 531.22821045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06168926 531.22821045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06168927 531.22827148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06168928 531.22827148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06168929 531.22827148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06168930 531.22827148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06168931 531.22833252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06168932 531.22833252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06168933 531.22833252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06168934 531.22833252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06168935 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06168936 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06168937 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06168938 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06168939 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06168940 531.22839355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06168941 531.22845459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06168942 531.22845459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06168943 531.22845459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06168944 531.22845459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06168945 531.22851563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06168946 531.22851563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06168947 531.22851563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06168948 531.22851563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06168949 531.22857666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06168950 531.22857666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06168951 531.22857666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06168952 531.22857666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06168953 531.22863770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06168954 531.22863770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06168955 531.22863770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06168956 531.22863770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06168957 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06168958 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06168959 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06168960 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06168961 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06168962 531.22869873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06168963 531.22875977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06168964 531.22875977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06168965 531.22875977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06168966 531.22875977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06168967 531.22882080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06168968 531.22882080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06168969 531.22882080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06168970 531.22882080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06168971 531.22888184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06168972 531.22888184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06168973 531.22888184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06168974 531.22888184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06168975 531.22894287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06168976 531.22894287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06168977 531.22894287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06168978 531.22894287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06168979 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06168980 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06168981 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06168982 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06168983 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06168984 531.22900391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06168985 531.22906494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06168986 531.22906494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06168987 531.22912598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06168988 531.22912598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06168989 531.22912598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06168990 531.22912598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06168991 531.22918701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06168992 531.22918701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06168993 531.22924805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06168994 531.22924805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06168995 531.22924805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06168996 531.22924805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06168997 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06168998 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06168999 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06169000 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06169001 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06169002 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06169003 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06169004 531.22930908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06169005 531.22937012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06169006 531.22937012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06169007 531.22937012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06169008 531.22937012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06169009 531.22943115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06169010 531.22943115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06169011 531.22943115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06169012 531.22943115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06169013 531.22949219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06169014 531.22949219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06169015 531.22955322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06169016 531.22955322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06169017 531.22955322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06169018 531.22955322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06169019 531.22961426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06169020 531.22961426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06169021 531.22961426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06169022 531.22961426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06169023 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06169024 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06169025 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06169026 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06169027 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06169028 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06169029 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06169030 531.22967529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06169031 531.22973633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06169032 531.22973633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06169033 531.22973633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06169034 531.22973633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06169035 531.22979736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06169036 531.22979736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06169037 531.22985840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06169038 531.22985840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06169039 531.22985840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06169040 531.22985840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06169041 531.22991943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06169042 531.22991943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06169043 531.22991943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06169044 531.22991943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06169045 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06169046 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06169047 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06169048 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06169049 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06169050 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06169051 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06169052 531.22998047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06169053 531.23004150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06169054 531.23004150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06169055 531.23010254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06169056 531.23010254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06169057 531.23016357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06169058 531.23016357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06169059 531.23016357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06169060 531.23016357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06169061 531.23022461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06169062 531.23022461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06169063 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06169064 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06169065 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06169066 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06169067 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06169068 531.23028564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06169069 531.23034668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06169070 531.23034668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06169071 531.23034668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06169072 531.23034668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06169073 531.23040771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06169074 531.23040771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06169075 531.23040771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06169076 531.23040771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06169077 531.23046875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06169078 531.23046875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06169079 531.23046875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06169080 531.23046875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06169081 531.23052979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06169082 531.23052979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06169083 531.23052979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06169084 531.23052979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06169085 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06169086 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06169087 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06169088 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06169089 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06169090 531.23059082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06169091 531.23065186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06169092 531.23065186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06169093 531.23065186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06169094 531.23065186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06169095 531.23071289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06169096 531.23071289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06169097 531.23071289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06169098 531.23071289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06169099 531.23077393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06169100 531.23077393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06169101 531.23077393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06169102 531.23077393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06169103 531.23083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06169104 531.23083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06169105 531.23083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06169106 531.23083496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06169107 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06169108 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06169109 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06169110 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06169111 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06169112 531.23089600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06169113 531.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06169114 531.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06169115 531.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06169116 531.23095703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06169117 531.23101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06169118 531.23101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06169119 531.23101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06169120 531.23101807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06169121 531.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06169122 531.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06169123 531.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06169124 531.23107910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06169125 531.23114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06169126 531.23114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06169127 531.23114014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06169128 531.23120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06169129 531.23120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06169130 531.23120117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06169131 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06169132 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06169133 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06169134 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06169135 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06169136 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06169137 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06169138 531.23126221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06169139 531.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06169140 531.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06169141 531.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06169142 531.23132324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06169143 531.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06169144 531.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06169145 531.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06169146 531.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06169147 531.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06169148 531.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06169149 531.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06169150 531.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06169151 531.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06169152 531.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06169153 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06169154 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06169155 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06169156 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06169157 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06169158 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06169159 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06169160 531.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06169161 531.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06169162 531.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06169163 531.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06169164 531.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06169165 531.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06169166 531.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06169167 531.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06169168 531.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06169169 531.23175049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06169170 531.23175049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06169171 531.23175049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06169172 531.23181152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06169173 531.23181152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06169174 531.23181152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06169175 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06169176 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06169177 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06169178 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06169179 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06169180 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06169181 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06169182 531.23187256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06169183 531.23193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06169184 531.23193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06169185 531.23193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06169186 531.23193359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06169187 531.23199463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06169188 531.23199463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06169189 531.23199463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06169190 531.23199463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06169191 531.23205566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06169192 531.23205566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06169193 531.23211670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06169194 531.23211670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06169195 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06169196 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06169197 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06169198 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06169199 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06169200 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06169201 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06169202 531.23217773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06169203 531.23223877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06169204 531.23223877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06169205 531.23229980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06169206 531.23229980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06169207 531.23229980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06169208 531.23229980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06169209 531.23236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06169210 531.23236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06169211 531.23236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06169212 531.23236084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06169213 531.23242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06169214 531.23242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06169215 531.23242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06169216 531.23242188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06169217 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06169218 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06169219 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06169220 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06169221 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06169222 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06169223 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06169224 531.23248291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06169225 531.23254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06169226 531.23254395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06169227 531.23260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06169228 531.23260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06169229 531.23260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06169230 531.23260498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06169231 531.23266602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06169232 531.23266602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06169233 531.23266602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06169234 531.23266602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06169235 531.23272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06169236 531.23272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06169237 531.23272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06169238 531.23272705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06169239 531.23278809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06169240 531.23278809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06169241 531.23278809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06169242 531.23278809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06169243 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06169244 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06169245 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06169246 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06169247 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06169248 531.23284912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06169249 531.23291016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06169250 531.23291016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06169251 531.23291016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06169252 531.23291016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06169253 531.23297119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06169254 531.23297119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06169255 531.23297119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06169256 531.23297119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06169257 531.23303223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06169258 531.23303223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06169259 531.23303223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06169260 531.23309326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06169261 531.23309326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06169262 531.23309326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06169263 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06169264 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06169265 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06169266 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06169267 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06169268 531.23315430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06169269 531.23321533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06169270 531.23321533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06169271 531.23321533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06169272 531.23321533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06169273 531.23327637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06169274 531.23327637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06169275 531.23327637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06169276 531.23327637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06169277 531.23333740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06169278 531.23333740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06169279 531.23333740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06169280 531.23333740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06169281 531.23339844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06169282 531.23339844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06169283 531.23339844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06169284 531.23339844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06169285 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06169286 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06169287 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06169288 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06169289 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06169290 531.23345947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06169291 531.23352051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06169292 531.23352051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06169293 531.23352051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06169294 531.23352051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06169295 531.23358154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06169296 531.23358154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06169297 531.23358154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06169298 531.23358154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06169299 531.23364258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06169300 531.23364258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06169301 531.23364258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06169302 531.23364258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06169303 531.23370361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06169304 531.23370361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06169305 531.23370361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06169306 531.23370361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06169307 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06169308 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06169309 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06169310 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06169311 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06169312 531.23376465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06169313 531.23382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06169314 531.23382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06169315 531.23382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06169316 531.23382568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06169317 531.23388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06169318 531.23388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06169319 531.23388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06169320 531.23388672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06169321 531.23394775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06169322 531.23394775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06169323 531.23394775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06169324 531.23394775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06169325 531.23400879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06169326 531.23400879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06169327 531.23400879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06169328 531.23400879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06169329 531.23406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06169330 531.23406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06169331 531.23406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06169332 531.23406982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06169333 531.23413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06169334 531.23413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06169335 531.23413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06169336 531.23413086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06169337 531.23419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06169338 531.23419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06169339 531.23419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06169340 531.23419189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06169341 531.23425293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06169342 531.23425293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06169343 531.23425293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06169344 531.23425293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06169345 531.23431396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06169346 531.23431396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06169347 531.23431396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06169348 531.23431396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06169349 531.23437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06169350 531.23437500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06169351 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06169352 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06169353 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06169354 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06169355 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06169356 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06169357 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06169358 531.23443604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06169359 531.23449707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06169360 531.23449707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06169361 531.23449707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06169362 531.23449707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06169363 531.23455811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06169364 531.23455811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06169365 531.23455811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06169366 531.23455811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06169367 531.23461914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06169368 531.23461914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06169369 531.23461914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06169370 531.23461914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06169371 531.23468018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06169372 531.23468018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06169373 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06169374 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06169375 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06169376 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06169377 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06169378 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06169379 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06169380 531.23474121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06169381 531.23480225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06169382 531.23480225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06169383 531.23480225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06169384 531.23480225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06169385 531.23486328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06169386 531.23486328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06169387 531.23486328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06169388 531.23486328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06169389 531.23492432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06169390 531.23492432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06169391 531.23492432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06169392 531.23492432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06169393 531.23498535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06169394 531.23498535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06169395 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06169396 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06169397 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06169398 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06169399 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06169400 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06169401 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06169402 531.23504639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06169403 531.23510742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06169404 531.23510742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06169405 531.23510742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06169406 531.23510742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06169407 531.23516846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06169408 531.23516846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06169409 531.23522949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06169410 531.23522949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06169411 531.23522949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06169412 531.23522949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06169413 531.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06169414 531.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06169415 531.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06169416 531.23529053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06169417 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06169418 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06169419 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06169420 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06169421 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06169422 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06169423 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06169424 531.23535156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06169425 531.23541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06169426 531.23541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06169427 531.23541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06169428 531.23541260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06169429 531.23547363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06169430 531.23547363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06169431 531.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06169432 531.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06169433 531.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06169434 531.23553467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06169435 531.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06169436 531.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06169437 531.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06169438 531.23559570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06169439 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06169440 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06169441 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06169442 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06169443 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06169444 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06169445 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06169446 531.23565674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06169447 531.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06169448 531.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06169449 531.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06169450 531.23571777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06169451 531.23577881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06169452 531.23577881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06169453 531.23577881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06169454 531.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06169455 531.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06169456 531.23583984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06169457 531.23590088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06169458 531.23590088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06169459 531.23590088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06169460 531.23590088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06169461 531.23596191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06169462 531.23596191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06169463 531.23596191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06169464 531.23596191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06169465 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06169466 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06169467 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06169468 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06169469 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06169470 531.23602295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06169471 531.23608398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06169472 531.23608398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06169473 531.23608398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06169474 531.23608398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06169475 531.23614502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06169476 531.23614502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06169477 531.23614502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06169478 531.23620605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06169479 531.23620605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06169480 531.23620605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06169481 531.23626709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06169482 531.23626709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06169483 531.23626709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06169484 531.23626709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06169485 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06169486 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06169487 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06169488 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06169489 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06169490 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06169491 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06169492 531.23632813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06169493 531.23638916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06169494 531.23638916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06169495 531.23638916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06169496 531.23638916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06169497 531.23645020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06169498 531.23645020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06169499 531.23651123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06169500 531.23651123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06169501 531.23651123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06169502 531.23651123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06169503 531.23657227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06169504 531.23657227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06169505 531.23657227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06169506 531.23657227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06169507 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06169508 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06169509 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06169510 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06169511 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06169512 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06169513 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06169514 531.23663330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06169515 531.23669434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06169516 531.23669434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06169517 531.23669434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06169518 531.23675537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06169519 531.23675537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06169520 531.23675537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06169521 531.23681641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06169522 531.23681641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06169523 531.23681641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06169524 531.23681641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06169525 531.23687744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06169526 531.23687744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06169527 531.23687744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06169528 531.23687744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06169529 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06169530 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06169531 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06169532 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06169533 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06169534 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06169535 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06169536 531.23693848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06169537 531.23699951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06169538 531.23699951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06169539 531.23699951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06169540 531.23706055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06169541 531.23706055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06169542 531.23706055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06169543 531.23712158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06169544 531.23712158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06169545 531.23712158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06169546 531.23712158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06169547 531.23718262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06169548 531.23718262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06169549 531.23718262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06169550 531.23718262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06169551 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06169552 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06169553 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06169554 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06169555 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06169556 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06169557 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06169558 531.23724365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06169559 531.23730469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06169560 531.23730469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06169561 531.23730469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06169562 531.23736572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06169563 531.23736572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06169564 531.23736572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06169565 531.23742676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06169566 531.23742676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06169567 531.23742676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06169568 531.23742676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06169569 531.23748779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06169570 531.23748779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06169571 531.23748779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06169572 531.23748779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06169573 531.23754883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06169574 531.23754883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06169575 531.23754883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06169576 531.23754883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06169577 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06169578 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06169579 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06169580 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06169581 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06169582 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06169583 531.23760986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06169584 531.23767090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06169585 531.23767090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06169586 531.23767090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06169587 531.23773193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06169588 531.23773193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06169589 531.23773193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06169590 531.23773193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06169591 531.23779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06169592 531.23779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06169593 531.23779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06169594 531.23779297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06169595 531.23785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06169596 531.23785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06169597 531.23785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06169598 531.23785400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06169599 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06169600 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06169601 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06169602 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06169603 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06169604 531.23791504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06169605 531.23797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06169606 531.23797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06169607 531.23797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06169608 531.23797607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06169609 531.23803711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06169610 531.23803711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06169611 531.23803711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06169612 531.23809814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06169613 531.23809814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06169614 531.23809814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06169615 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06169616 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06169617 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06169618 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06169619 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06169620 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06169621 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06169622 531.23822021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06169623 531.23828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06169624 531.23828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06169625 531.23828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06169626 531.23828125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06169627 531.23834229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06169628 531.23834229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06169629 531.23840332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06169630 531.23840332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06169631 531.23840332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06169632 531.23840332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06169633 531.23846436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06169634 531.23846436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06169635 531.23846436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06169636 531.23846436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06169637 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06169638 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06169639 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06169640 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06169641 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06169642 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06169643 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06169644 531.23852539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06169645 531.23858643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06169646 531.23858643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06169647 531.23858643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06169648 531.23858643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06169649 531.23864746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06169650 531.23864746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06169651 531.23870850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06169652 531.23870850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06169653 531.23870850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06169654 531.23870850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06169655 531.23876953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06169656 531.23876953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06169657 531.23876953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06169658 531.23876953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06169659 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06169660 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06169661 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06169662 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06169663 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06169664 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06169665 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06169666 531.23883057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06169667 531.23889160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06169668 531.23889160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06169669 531.23889160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06169670 531.23889160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06169671 531.23895264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06169672 531.23895264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06169673 531.23901367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06169674 531.23901367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06169675 531.23901367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06169676 531.23901367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06169677 531.23907471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06169678 531.23907471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06169679 531.23925781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06169680 531.23925781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06169681 531.23925781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06169682 531.23931885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06169683 531.23931885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06169684 531.23931885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06169685 531.23937988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06169686 531.23937988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06169687 531.23937988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06169688 531.23937988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06169689 531.23944092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06169690 531.23944092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06169691 531.23944092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06169692 531.23944092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06169693 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06169694 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06169695 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06169696 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06169697 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06169698 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06169699 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06169700 531.23950195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06169701 531.23956299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06169702 531.23956299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06169703 531.23956299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06169704 531.23962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06169705 531.23962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06169706 531.23962402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06169707 531.23968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06169708 531.23968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06169709 531.23968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06169710 531.23968506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06169711 531.23974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06169712 531.23974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06169713 531.23974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06169714 531.23974609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06169715 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06169716 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06169717 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06169718 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06169719 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06169720 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06169721 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06169722 531.23980713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06169723 531.23986816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06169724 531.23986816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06169725 531.23986816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06169726 531.23992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06169727 531.23992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06169728 531.23992920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06169729 531.23999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06169730 531.23999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06169731 531.23999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06169732 531.23999023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06169733 531.24005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06169734 531.24005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06169735 531.24005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06169736 531.24005127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06169737 531.24011230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06169738 531.24011230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06169739 531.24011230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06169740 531.24011230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06169741 531.24017334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06169742 531.24017334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06169743 531.24017334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06169744 531.24023438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06169745 531.24023438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06169746 531.24023438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06169747 531.24029541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06169748 531.24029541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06169749 531.24029541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06169750 531.24029541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06169751 531.24035645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06169752 531.24035645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06169753 531.24035645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06169754 531.24035645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06169755 531.24041748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06169756 531.24041748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06169757 531.24041748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06169758 531.24041748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06169759 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06169760 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06169761 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06169762 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06169763 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06169764 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06169765 531.24047852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06169766 531.24053955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06169767 531.24053955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06169768 531.24053955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06169769 531.24060059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06169770 531.24060059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06169771 531.24060059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06169772 531.24060059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06169773 531.24066162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06169774 531.24066162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06169775 531.24066162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06169776 531.24066162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06169777 531.24072266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06169778 531.24072266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06169779 531.24072266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06169780 531.24072266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06169781 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06169782 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06169783 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06169784 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06169785 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06169786 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06169787 531.24078369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06169788 531.24084473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06169789 531.24084473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06169790 531.24084473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06169791 531.24090576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06169792 531.24090576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06169793 531.24090576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06169794 531.24090576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06169795 531.24096680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06169796 531.24096680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06169797 531.24096680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06169798 531.24096680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06169799 531.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06169800 531.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06169801 531.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06169802 531.24102783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06169803 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06169804 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06169805 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06169806 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06169807 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06169808 531.24108887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06169809 531.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06169810 531.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06169811 531.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06169812 531.24114990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06169813 531.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06169814 531.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06169815 531.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06169816 531.24121094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06169817 531.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06169818 531.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06169819 531.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06169820 531.24127197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06169821 531.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06169822 531.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06169823 531.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06169824 531.24133301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06169825 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06169826 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06169827 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06169828 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06169829 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06169830 531.24139404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06169831 531.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06169832 531.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06169833 531.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06169834 531.24145508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06169835 531.24151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06169836 531.24151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06169837 531.24151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06169838 531.24151611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06169839 531.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06169840 531.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06169841 531.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06169842 531.24157715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06169843 531.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06169844 531.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06169845 531.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06169846 531.24163818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06169847 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06169848 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06169849 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06169850 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06169851 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06169852 531.24169922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06169853 531.24176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06169854 531.24176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06169855 531.24176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06169856 531.24176025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06169857 531.24182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06169858 531.24182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06169859 531.24182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06169860 531.24182129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06169861 531.24188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06169862 531.24188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06169863 531.24188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06169864 531.24188232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06169865 531.24194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06169866 531.24194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06169867 531.24194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06169868 531.24194336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06169869 531.24200439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06169870 531.24200439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06169871 531.24200439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06169872 531.24200439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06169873 531.24206543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06169874 531.24206543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06169875 531.24206543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06169876 531.24206543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06169877 531.24212646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06169878 531.24212646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06169879 531.24224854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06169880 531.24224854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06169881 531.24224854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06169882 531.24224854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06169883 531.24230957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06169884 531.24230957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06169885 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06169886 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06169887 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06169888 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06169889 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06169890 531.24237061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06169891 531.24243164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06169892 531.24243164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06169893 531.24249268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06169894 531.24249268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06169895 531.24249268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06169896 531.24255371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06169897 531.24255371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06169898 531.24255371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06169899 531.24261475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06169900 531.24261475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06169901 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06169902 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06169903 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06169904 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06169905 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06169906 531.24267578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06169907 531.24273682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06169908 531.24273682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06169909 531.24279785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06169910 531.24279785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06169911 531.24279785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06169912 531.24279785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06169913 531.24285889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06169914 531.24285889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06169915 531.24291992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06169916 531.24291992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06169917 531.24291992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06169918 531.24291992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06169919 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06169920 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06169921 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06169922 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06169923 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06169924 531.24298096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06169925 531.24304199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06169926 531.24304199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06169927 531.24310303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06169928 531.24310303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06169929 531.24310303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06169930 531.24310303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06169931 531.24316406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06169932 531.24316406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06169933 531.24322510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06169934 531.24322510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06169935 531.24322510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06169936 531.24322510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06169937 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06169938 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06169939 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06169940 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06169941 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06169942 531.24328613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06169943 531.24334717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06169944 531.24334717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06169945 531.24340820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06169946 531.24340820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06169947 531.24340820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06169948 531.24340820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06169949 531.24346924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06169950 531.24346924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06169951 531.24353027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06169952 531.24353027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06169953 531.24353027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06169954 531.24353027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06169955 531.24359131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06169956 531.24359131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06169957 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06169958 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06169959 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06169960 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06169961 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06169962 531.24365234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06169963 531.24371338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06169964 531.24371338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06169965 531.24371338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06169966 531.24371338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06169967 531.24377441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06169968 531.24377441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06169969 531.24383545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06169970 531.24383545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06169971 531.24383545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06169972 531.24389648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06169973 531.24389648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06169974 531.24389648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06169975 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06169976 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06169977 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06169978 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06169979 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06169980 531.24395752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06169981 531.24401855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06169982 531.24401855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06169983 531.24407959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06169984 531.24407959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06169985 531.24407959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06169986 531.24407959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06169987 531.24414063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06169988 531.24414063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06169989 531.24420166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06169990 531.24420166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06169991 531.24420166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06169992 531.24420166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06169993 531.24426270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06169994 531.24426270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06169995 531.24426270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06169996 531.24426270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06169997 531.24426270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06169998 531.24432373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06169999 531.24432373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06170000 531.24432373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06170001 531.24438477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06170002 531.24438477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06170003 531.24438477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06170004 531.24444580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06170005 531.24444580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06170006 531.24444580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06170007 531.24450684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06170008 531.24450684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06170009 531.24450684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06170010 531.24456787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06170011 531.24456787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06170012 531.24456787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06170013 531.24456787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06170014 531.24456787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06170015 531.24462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06170016 531.24462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06170017 531.24462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06170018 531.24462891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06170019 531.24468994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06170020 531.24468994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06170021 531.24475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06170022 531.24475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06170023 531.24475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06170024 531.24475098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06170025 531.24481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06170026 531.24481201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06170027 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06170028 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06170029 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06170030 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06170031 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06170032 531.24487305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06170033 531.24493408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06170034 531.24493408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06170035 531.24499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06170036 531.24499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06170037 531.24499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06170038 531.24499512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06170039 531.24505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06170040 531.24505615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06170041 531.24511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06170042 531.24511719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06170043 531.24517822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06170044 531.24517822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06170045 531.24517822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06170046 531.24517822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06170047 531.24523926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06170048 531.24523926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06170049 531.24523926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06170050 531.24523926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06170051 531.24530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06170052 531.24530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06170053 531.24530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06170054 531.24530029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06170055 531.24536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06170056 531.24536133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06170057 531.24542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06170058 531.24542236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06170059 531.24548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06170060 531.24548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06170061 531.24548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06170062 531.24548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06170063 531.24554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06170064 531.24554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06170065 531.24554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06170066 531.24554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06170067 531.24560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06170068 531.24560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06170069 531.24560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06170070 531.24560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06170071 531.24566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06170072 531.24566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06170073 531.24572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06170074 531.24572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06170075 531.24578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06170076 531.24578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06170077 531.24578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06170078 531.24584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06170079 531.24584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06170080 531.24584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06170081 531.24584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06170082 531.24584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06170083 531.24591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06170084 531.24591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06170085 531.24591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06170086 531.24597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06170087 531.24597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06170088 531.24597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06170089 531.24603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06170090 531.24603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06170091 531.24609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06170092 531.24609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06170093 531.24609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06170094 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06170095 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06170096 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06170097 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06170098 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06170099 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06170100 531.24615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06170101 531.24621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06170102 531.24621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06170103 531.24621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06170104 531.24621582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06170105 531.24627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06170106 531.24627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06170107 531.24627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06170108 531.24627686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06170109 531.24633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06170110 531.24633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06170111 531.24633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06170112 531.24633789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06170113 531.24639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06170114 531.24639893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06170115 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06170116 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06170117 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06170118 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06170119 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06170120 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06170121 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06170122 531.24645996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06170123 531.24652100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06170124 531.24652100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06170125 531.24652100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06170126 531.24652100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06170127 531.24658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06170128 531.24658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06170129 531.24658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06170130 531.24658203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06170131 531.24664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06170132 531.24664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06170133 531.24664307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06170134 531.24670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06170135 531.24670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06170136 531.24670410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06170137 531.24676514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06170138 531.24676514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06170139 531.24676514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06170140 531.24676514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06170141 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06170142 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06170143 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06170144 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06170145 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06170146 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06170147 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06170148 531.24682617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06170149 531.24688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06170150 531.24688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06170151 531.24688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06170152 531.24688721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06170153 531.24694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06170154 531.24694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06170155 531.24694824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06170156 531.24700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06170157 531.24700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06170158 531.24700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06170159 531.24707031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06170160 531.24707031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06170161 531.24707031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06170162 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06170163 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06170164 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06170165 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06170166 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06170167 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06170168 531.24713135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06170169 531.24719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06170170 531.24719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06170171 531.24719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06170172 531.24719238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06170173 531.24725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06170174 531.24725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06170175 531.24725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06170176 531.24725342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06170177 531.24731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06170178 531.24731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06170179 531.24731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06170180 531.24731445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06170181 531.24737549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06170182 531.24737549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06170183 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06170184 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06170185 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06170186 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06170187 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06170188 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06170189 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06170190 531.24743652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06170191 531.24749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06170192 531.24749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06170193 531.24749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06170194 531.24749756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06170195 531.24755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06170196 531.24755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06170197 531.24755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06170198 531.24755859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06170199 531.24761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06170200 531.24761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06170201 531.24761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06170202 531.24761963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06170203 531.24768066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06170204 531.24768066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06170205 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06170206 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06170207 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06170208 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06170209 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06170210 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06170211 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06170212 531.24774170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06170213 531.24780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06170214 531.24780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06170215 531.24780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06170216 531.24780273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06170217 531.24786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06170218 531.24786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06170219 531.24786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06170220 531.24786377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06170221 531.24792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06170222 531.24792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06170223 531.24792480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06170224 531.24798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06170225 531.24798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06170226 531.24798584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06170227 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06170228 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06170229 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06170230 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06170231 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06170232 531.24804688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06170233 531.24810791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06170234 531.24810791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06170235 531.24810791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06170236 531.24810791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06170237 531.24816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06170238 531.24816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06170239 531.24816895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06170240 531.24822998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06170241 531.24822998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06170242 531.24822998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06170243 531.24829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06170244 531.24829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06170245 531.24829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06170246 531.24829102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06170247 531.24835205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06170248 531.24835205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06170249 531.24835205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06170250 531.24835205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06170251 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06170252 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06170253 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06170254 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06170255 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06170256 531.24841309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06170257 531.24847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06170258 531.24847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06170259 531.24847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06170260 531.24847412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06170261 531.24853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06170262 531.24853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06170263 531.24853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06170264 531.24853516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06170265 531.24859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06170266 531.24859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06170267 531.24859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06170268 531.24859619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06170269 531.24865723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06170270 531.24865723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06170271 531.24865723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06170272 531.24865723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06170273 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06170274 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06170275 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06170276 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06170277 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06170278 531.24871826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06170279 531.24877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06170280 531.24877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06170281 531.24877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06170282 531.24877930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06170283 531.24884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06170284 531.24884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06170285 531.24884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06170286 531.24884033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06170287 531.24890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06170288 531.24890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06170289 531.24890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06170290 531.24890137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06170291 531.24896240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06170292 531.24896240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06170293 531.24896240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06170294 531.24896240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06170295 531.24902344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06170296 531.24902344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06170297 531.24902344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06170298 531.24902344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06170299 531.24908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06170300 531.24908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06170301 531.24908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06170302 531.24908447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06170303 531.24914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06170304 531.24914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06170305 531.24914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06170306 531.24914551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06170307 531.24920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06170308 531.24920654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06170309 531.24926758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06170310 531.24926758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06170311 531.24926758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06170312 531.24926758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06170313 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06170314 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06170315 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06170316 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06170317 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06170318 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06170319 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06170320 531.24932861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06170321 531.24938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06170322 531.24938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06170323 531.24938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06170324 531.24938965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06170325 531.24945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06170326 531.24945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06170327 531.24945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06170328 531.24945068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06170329 531.24951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06170330 531.24951172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06170331 531.24957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06170332 531.24957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06170333 531.24957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06170334 531.24957275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06170335 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06170336 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06170337 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06170338 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06170339 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06170340 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06170341 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06170342 531.24963379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06170343 531.24969482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06170344 531.24969482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06170345 531.24969482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06170346 531.24969482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06170347 531.24975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06170348 531.24975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06170349 531.24975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06170350 531.24975586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06170351 531.24981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06170352 531.24981689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06170353 531.24987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06170354 531.24987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06170355 531.24987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06170356 531.24987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06170357 531.24993896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06170358 531.24993896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06170359 531.24993896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06170360 531.24993896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06170361 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06170362 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06170363 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06170364 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06170365 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06170366 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06170367 531.25000000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06170368 531.25006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06170369 531.25006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06170370 531.25006104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06170371 531.25012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06170372 531.25012207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06170373 531.25018311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06170374 531.25018311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06170375 531.25024414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06170376 531.25024414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06170377 531.25030518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06170378 531.25030518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06170379 531.25030518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06170380 531.25030518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06170381 531.25036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06170382 531.25036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06170383 531.25036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06170384 531.25036621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06170385 531.25042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06170386 531.25042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06170387 531.25042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06170388 531.25042725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06170389 531.25048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06170390 531.25048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06170391 531.25048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06170392 531.25048828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06170393 531.25054932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06170394 531.25054932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06170395 531.25054932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06170396 531.25054932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06170397 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06170398 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06170399 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06170400 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06170401 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06170402 531.25061035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06170403 531.25067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06170404 531.25067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06170405 531.25067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06170406 531.25067139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06170407 531.25073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06170408 531.25073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06170409 531.25073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06170410 531.25073242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06170411 531.25079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06170412 531.25079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06170413 531.25079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06170414 531.25079346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06170415 531.25085449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06170416 531.25085449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06170417 531.25085449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06170418 531.25085449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06170419 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06170420 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06170421 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06170422 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06170423 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06170424 531.25091553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06170425 531.25097656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06170426 531.25097656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06170427 531.25097656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06170428 531.25097656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06170429 531.25103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06170430 531.25103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06170431 531.25103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06170432 531.25103760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06170433 531.25109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06170434 531.25109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06170435 531.25109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06170436 531.25109863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06170437 531.25115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06170438 531.25115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06170439 531.25115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06170440 531.25115967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06170441 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06170442 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06170443 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06170444 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06170445 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06170446 531.25122070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06170447 531.25128174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06170448 531.25128174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06170449 531.25128174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06170450 531.25128174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06170451 531.25134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06170452 531.25134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06170453 531.25134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06170454 531.25134277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06170455 531.25140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06170456 531.25140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06170457 531.25140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06170458 531.25140381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06170459 531.25146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06170460 531.25146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06170461 531.25146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06170462 531.25146484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06170463 531.25152588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06170464 531.25152588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06170465 531.25152588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06170466 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06170467 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06170468 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06170469 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06170470 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06170471 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06170472 531.25158691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06170473 531.25164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06170474 531.25164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06170475 531.25164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06170476 531.25164795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06170477 531.25170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06170478 531.25170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06170479 531.25170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06170480 531.25170898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06170481 531.25177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06170482 531.25177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06170483 531.25177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06170484 531.25177002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06170485 531.25183105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06170486 531.25183105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06170487 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06170488 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06170489 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06170490 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06170491 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06170492 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06170493 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06170494 531.25189209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06170495 531.25195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06170496 531.25195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06170497 531.25195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06170498 531.25195313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06170499 531.25201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06170500 531.25201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06170501 531.25201416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06170502 531.25207520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06170503 531.25207520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06170504 531.25207520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06170505 531.25213623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06170506 531.25213623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06170507 531.25213623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06170508 531.25213623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06170509 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06170510 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06170511 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06170512 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06170513 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06170514 531.25219727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06170515 531.25225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06170516 531.25225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06170517 531.25225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06170518 531.25225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06170519 531.25231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06170520 531.25231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06170521 531.25231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06170522 531.25231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06170523 531.25238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06170524 531.25238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06170525 531.25238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06170526 531.25238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06170527 531.25244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06170528 531.25244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06170529 531.25244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06170530 531.25244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06170531 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06170532 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06170533 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06170534 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06170535 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06170536 531.25250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06170537 531.25256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06170538 531.25256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06170539 531.25256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06170540 531.25256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06170541 531.25262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06170542 531.25262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06170543 531.25262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06170544 531.25262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06170545 531.25268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06170546 531.25268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06170547 531.25268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06170548 531.25268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06170549 531.25274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06170550 531.25274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06170551 531.25274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06170552 531.25274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06170553 531.25280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06170554 531.25280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06170555 531.25280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06170556 531.25280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06170557 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06170558 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06170559 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06170560 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06170561 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06170562 531.25286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06170563 531.25292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06170564 531.25292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06170565 531.25292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06170566 531.25292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06170567 531.25299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06170568 531.25299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06170569 531.25299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06170570 531.25299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06170571 531.25305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06170572 531.25305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06170573 531.25305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06170574 531.25305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06170575 531.25311279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06170576 531.25311279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06170577 531.25311279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06170578 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06170579 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06170580 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06170581 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06170582 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06170583 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06170584 531.25317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06170585 531.25323486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06170586 531.25323486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06170587 531.25323486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06170588 531.25323486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06170589 531.25329590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06170590 531.25329590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06170591 531.25329590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06170592 531.25329590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06170593 531.25335693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06170594 531.25335693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06170595 531.25335693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06170596 531.25335693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06170597 531.25341797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06170598 531.25341797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06170599 531.25341797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06170600 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06170601 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06170602 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06170603 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06170604 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06170605 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06170606 531.25347900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06170607 531.25354004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06170608 531.25354004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06170609 531.25354004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06170610 531.25354004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06170611 531.25360107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06170612 531.25360107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06170613 531.25360107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06170614 531.25360107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06170615 531.25366211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06170616 531.25366211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06170617 531.25366211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06170618 531.25366211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06170619 531.25372314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06170620 531.25372314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06170621 531.25372314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06170622 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06170623 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06170624 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06170625 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06170626 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06170627 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06170628 531.25378418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06170629 531.25384521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06170630 531.25384521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06170631 531.25384521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06170632 531.25384521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06170633 531.25390625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06170634 531.25390625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06170635 531.25390625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06170636 531.25390625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06170637 531.25396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06170638 531.25396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06170639 531.25396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06170640 531.25396729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06170641 531.25402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06170642 531.25402832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06170643 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06170644 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06170645 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06170646 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06170647 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06170648 531.25408936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06170649 531.25415039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06170650 531.25415039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06170651 531.25415039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06170652 531.25415039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06170653 531.25421143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06170654 531.25421143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06170655 531.25421143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06170656 531.25421143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06170657 531.25427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06170658 531.25427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06170659 531.25427246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06170660 531.25433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06170661 531.25433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06170662 531.25433350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06170663 531.25439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06170664 531.25439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06170665 531.25439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06170666 531.25439453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06170667 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06170668 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06170669 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06170670 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06170671 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06170672 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06170673 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06170674 531.25445557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06170675 531.25451660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06170676 531.25451660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06170677 531.25451660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06170678 531.25451660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06170679 531.25457764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06170680 531.25457764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06170681 531.25457764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06170682 531.25463867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06170683 531.25463867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06170684 531.25463867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06170685 531.25469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06170686 531.25469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06170687 531.25469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06170688 531.25469971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06170689 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06170690 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06170691 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06170692 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06170693 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06170694 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06170695 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06170696 531.25476074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06170697 531.25482178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06170698 531.25482178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06170699 531.25482178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06170700 531.25482178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06170701 531.25488281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06170702 531.25488281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06170703 531.25488281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06170704 531.25494385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06170705 531.25494385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06170706 531.25494385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06170707 531.25500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06170708 531.25500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06170709 531.25500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06170710 531.25500488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06170711 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06170712 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06170713 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06170714 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06170715 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06170716 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06170717 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06170718 531.25506592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06170719 531.25512695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06170720 531.25512695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06170721 531.25512695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06170722 531.25518799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06170723 531.25518799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06170724 531.25518799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06170725 531.25524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06170726 531.25524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06170727 531.25524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06170728 531.25524902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06170729 531.25531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06170730 531.25531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06170731 531.25531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06170732 531.25531006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06170733 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06170734 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06170735 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06170736 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06170737 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06170738 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06170739 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06170740 531.25537109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06170741 531.25543213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06170742 531.25543213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06170743 531.25543213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06170744 531.25549316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06170745 531.25549316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06170746 531.25549316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06170747 531.25555420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06170748 531.25555420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06170749 531.25555420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06170750 531.25555420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06170751 531.25561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06170752 531.25561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06170753 531.25561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06170754 531.25561523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06170755 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06170756 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06170757 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06170758 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06170759 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06170760 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06170761 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06170762 531.25567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06170763 531.25573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06170764 531.25573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06170765 531.25573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06170766 531.25579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06170767 531.25579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06170768 531.25579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06170769 531.25585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06170770 531.25585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06170771 531.25585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06170772 531.25585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06170773 531.25592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06170774 531.25592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06170775 531.25592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06170776 531.25592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06170777 531.25598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06170778 531.25598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06170779 531.25598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06170780 531.25598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06170781 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06170782 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06170783 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06170784 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06170785 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06170786 531.25604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06170787 531.25610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06170788 531.25610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06170789 531.25616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06170790 531.25616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06170791 531.25616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06170792 531.25616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06170793 531.25622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06170794 531.25622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06170795 531.25622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06170796 531.25622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06170797 531.25628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06170798 531.25628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06170799 531.25628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06170800 531.25628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06170801 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06170802 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06170803 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06170804 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06170805 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06170806 531.25634766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06170807 531.25640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06170808 531.25640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06170809 531.25640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06170810 531.25640869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06170811 531.25646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06170812 531.25646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06170813 531.25646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06170814 531.25646973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06170815 531.25653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06170816 531.25653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06170817 531.25653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06170818 531.25653076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06170819 531.25659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06170820 531.25659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06170821 531.25659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06170822 531.25659180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06170823 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06170824 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06170825 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06170826 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06170827 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06170828 531.25665283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06170829 531.25671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06170830 531.25671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06170831 531.25671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06170832 531.25671387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06170833 531.25677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06170834 531.25677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06170835 531.25677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06170836 531.25677490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06170837 531.25683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06170838 531.25683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06170839 531.25683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06170840 531.25683594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06170841 531.25689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06170842 531.25689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06170843 531.25689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06170844 531.25689697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06170845 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06170846 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06170847 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06170848 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06170849 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06170850 531.25695801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06170851 531.25701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06170852 531.25701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06170853 531.25701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06170854 531.25701904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06170855 531.25708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06170856 531.25708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06170857 531.25708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06170858 531.25708008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06170859 531.25714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06170860 531.25714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06170861 531.25714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06170862 531.25714111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06170863 531.25720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06170864 531.25720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06170865 531.25720215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06170866 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06170867 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06170868 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06170869 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06170870 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06170871 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06170872 531.25726318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06170873 531.25732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06170874 531.25732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06170875 531.25732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06170876 531.25732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06170877 531.25738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06170878 531.25738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06170879 531.25738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06170880 531.25738525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06170881 531.25744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06170882 531.25744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06170883 531.25744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06170884 531.25744629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06170885 531.25750732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06170886 531.25750732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06170887 531.25750732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06170888 531.25756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06170889 531.25756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06170890 531.25756836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06170891 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06170892 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06170893 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06170894 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06170895 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06170896 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06170897 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06170898 531.25762939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06170899 531.25769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06170900 531.25769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06170901 531.25769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06170902 531.25769043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06170903 531.25775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06170904 531.25775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06170905 531.25775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06170906 531.25775146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06170907 531.25781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06170908 531.25781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06170909 531.25781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06170910 531.25781250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06170911 531.25787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06170912 531.25787354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06170913 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06170914 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06170915 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06170916 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06170917 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06170918 531.25793457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06170919 531.25799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06170920 531.25799561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06170921 531.25805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06170922 531.25805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06170923 531.25805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06170924 531.25805664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06170925 531.25811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06170926 531.25811768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06170927 531.25817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06170928 531.25817871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06170929 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06170930 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06170931 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06170932 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06170933 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06170934 531.25823975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06170935 531.25830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06170936 531.25830078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06170937 531.25836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06170938 531.25836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06170939 531.25836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06170940 531.25836182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06170941 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06170942 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06170943 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06170944 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06170945 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06170946 531.25854492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06170947 531.25860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06170948 531.25860596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06170949 531.25866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06170950 531.25866699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06170951 531.25872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06170952 531.25872803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06170953 531.25878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06170954 531.25878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06170955 531.25878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06170956 531.25878906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06170957 531.25885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06170958 531.25885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06170959 531.25885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06170960 531.25885010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06170961 531.25891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06170962 531.25891113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06170963 531.25897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06170964 531.25897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06170965 531.25897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06170966 531.25903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06170967 531.25909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06170968 531.25909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06170969 531.25915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06170970 531.25915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06170971 531.25915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06170972 531.25915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06170973 531.25921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06170974 531.25921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06170975 531.25921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06170976 531.25921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06170977 531.25927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06170978 531.25927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06170979 531.25933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06170980 531.25933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06170981 531.25933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06170982 531.25933838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06170983 531.25939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06170984 531.25939941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06170985 531.25946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06170986 531.25946045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06170987 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06170988 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06170989 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06170990 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06170991 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06170992 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06170993 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06170994 531.25952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06170995 531.25958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06170996 531.25958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06170997 531.25964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06170998 531.25964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06170999 531.25964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06171000 531.25964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06171001 531.25970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06171002 531.25970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06171003 531.25970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06171004 531.25970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06171005 531.25976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06171006 531.25976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06171007 531.25976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06171008 531.25976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06171009 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06171010 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06171011 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06171012 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06171013 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06171014 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06171015 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06171016 531.25982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06171017 531.25988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06171018 531.25988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06171019 531.25994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06171020 531.25994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06171021 531.25994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06171022 531.25994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06171023 531.26000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06171024 531.26000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06171025 531.26000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06171026 531.26000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06171027 531.26007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06171028 531.26007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06171029 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06171030 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06171031 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06171032 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06171033 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06171034 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06171035 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06171036 531.26013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06171037 531.26019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06171038 531.26019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06171039 531.26019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06171040 531.26019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06171041 531.26025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06171042 531.26025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06171043 531.26031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06171044 531.26031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06171045 531.26031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06171046 531.26031494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06171047 531.26037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06171048 531.26037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06171049 531.26037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06171050 531.26037598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06171051 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06171052 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06171053 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06171054 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06171055 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06171056 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06171057 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06171058 531.26043701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06171059 531.26049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06171060 531.26049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06171061 531.26049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06171062 531.26049805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06171063 531.26055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06171064 531.26055908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06171065 531.26062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06171066 531.26062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06171067 531.26062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06171068 531.26062012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06171069 531.26068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06171070 531.26068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06171071 531.26068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06171072 531.26068115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06171073 531.26074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06171074 531.26074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06171075 531.26074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06171076 531.26074219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06171077 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06171078 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06171079 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06171080 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06171081 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06171082 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06171083 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06171084 531.26080322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06171085 531.26086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06171086 531.26086426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06171087 531.26092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06171088 531.26092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06171089 531.26092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06171090 531.26092529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06171091 531.26098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06171092 531.26098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06171093 531.26098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06171094 531.26098633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06171095 531.26104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06171096 531.26104736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06171097 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06171098 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06171099 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06171100 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06171101 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06171102 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06171103 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06171104 531.26110840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06171105 531.26116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06171106 531.26116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06171107 531.26116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06171108 531.26116943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06171109 531.26123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06171110 531.26123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06171111 531.26123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06171112 531.26123047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06171113 531.26129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06171114 531.26129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06171115 531.26129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06171116 531.26129150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06171117 531.26135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06171118 531.26135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06171119 531.26135254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06171120 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06171121 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06171122 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06171123 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06171124 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06171125 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06171126 531.26141357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06171127 531.26147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06171128 531.26147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06171129 531.26147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06171130 531.26147461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06171131 531.26153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06171132 531.26153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06171133 531.26153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06171134 531.26153564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06171135 531.26159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06171136 531.26159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06171137 531.26159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06171138 531.26159668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06171139 531.26165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06171140 531.26165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06171141 531.26165771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06171142 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06171143 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06171144 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06171145 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06171146 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06171147 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06171148 531.26171875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06171149 531.26177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06171150 531.26177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06171151 531.26177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06171152 531.26177979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06171153 531.26184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06171154 531.26184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06171155 531.26184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06171156 531.26184082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06171157 531.26190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06171158 531.26190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06171159 531.26190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06171160 531.26190186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06171161 531.26196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06171162 531.26196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06171163 531.26196289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06171164 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06171165 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06171166 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06171167 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06171168 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06171169 531.26202393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06171170 531.26208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06171171 531.26208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06171172 531.26208496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06171173 531.26214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06171174 531.26214600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06171175 531.26220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06171176 531.26220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06171177 531.26220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06171178 531.26220703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06171179 531.26226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06171180 531.26226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06171181 531.26226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06171182 531.26226807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06171183 531.26232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06171184 531.26232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06171185 531.26232910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06171186 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06171187 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06171188 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06171189 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06171190 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06171191 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06171192 531.26239014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06171193 531.26245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06171194 531.26245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06171195 531.26245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06171196 531.26245117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06171197 531.26251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06171198 531.26251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06171199 531.26251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06171200 531.26251221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06171201 531.26257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06171202 531.26257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06171203 531.26257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06171204 531.26257324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06171205 531.26263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06171206 531.26263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06171207 531.26263428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06171208 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06171209 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06171210 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06171211 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06171212 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06171213 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06171214 531.26269531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06171215 531.26275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06171216 531.26275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06171217 531.26275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06171218 531.26275635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06171219 531.26281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06171220 531.26281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06171221 531.26281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06171222 531.26281738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06171223 531.26287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06171224 531.26287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06171225 531.26287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06171226 531.26287842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06171227 531.26293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06171228 531.26293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06171229 531.26293945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06171230 531.26300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06171231 531.26300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06171232 531.26300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06171233 531.26300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06171234 531.26300049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06171235 531.26306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06171236 531.26306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06171237 531.26306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06171238 531.26306152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06171239 531.26312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06171240 531.26312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06171241 531.26312256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06171242 531.26318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06171243 531.26318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06171244 531.26318359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06171245 531.26324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06171246 531.26324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06171247 531.26324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06171248 531.26324463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06171249 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06171250 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06171251 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06171252 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06171253 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06171254 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06171255 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06171256 531.26330566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06171257 531.26336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06171258 531.26336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06171259 531.26336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06171260 531.26336670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06171261 531.26342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06171262 531.26342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06171263 531.26342773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06171264 531.26348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06171265 531.26348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06171266 531.26348877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06171267 531.26354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06171268 531.26354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06171269 531.26354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06171270 531.26354980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06171271 531.26361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06171272 531.26361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06171273 531.26361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06171274 531.26361084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06171275 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06171276 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06171277 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06171278 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06171279 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06171280 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06171281 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06171282 531.26367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06171283 531.26373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06171284 531.26373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06171285 531.26373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06171286 531.26373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06171287 531.26379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06171288 531.26379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06171289 531.26385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06171290 531.26385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06171291 531.26385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06171292 531.26385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06171293 531.26391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06171294 531.26391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06171295 531.26391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06171296 531.26391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06171297 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06171298 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06171299 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06171300 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06171301 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06171302 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06171303 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06171304 531.26397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06171305 531.26403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06171306 531.26403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06171307 531.26409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06171308 531.26409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06171309 531.26416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06171310 531.26416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06171311 531.26416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06171312 531.26416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06171313 531.26422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06171314 531.26422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06171315 531.26422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06171316 531.26422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06171317 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06171318 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06171319 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06171320 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06171321 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06171322 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06171323 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06171324 531.26428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06171325 531.26434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06171326 531.26434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06171327 531.26434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06171328 531.26434326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06171329 531.26440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06171330 531.26440430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06171331 531.26446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06171332 531.26446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06171333 531.26446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06171334 531.26446533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06171335 531.26452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06171336 531.26452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06171337 531.26452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06171338 531.26452637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06171339 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06171340 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06171341 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06171342 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06171343 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06171344 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06171345 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06171346 531.26458740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06171347 531.26464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06171348 531.26464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06171349 531.26464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06171350 531.26464844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06171351 531.26470947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06171352 531.26470947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06171353 531.26477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06171354 531.26477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06171355 531.26477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06171356 531.26477051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06171357 531.26483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06171358 531.26483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06171359 531.26483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06171360 531.26483154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06171361 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06171362 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06171363 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06171364 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06171365 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06171366 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06171367 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06171368 531.26489258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06171369 531.26495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06171370 531.26495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06171371 531.26495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06171372 531.26495361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06171373 531.26501465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06171374 531.26501465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06171375 531.26507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06171376 531.26507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06171377 531.26507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06171378 531.26507568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06171379 531.26513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06171380 531.26513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06171381 531.26513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06171382 531.26513672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06171383 531.26519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06171384 531.26519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06171385 531.26519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06171386 531.26519775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06171387 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06171388 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06171389 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06171390 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06171391 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06171392 531.26525879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06171393 531.26531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06171394 531.26531982 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06183645 531.44219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e058 -06183646 531.44219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e058 -06183647 531.44226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e068 -06183648 531.44226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e068 -06183649 531.44226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e078 -06183650 531.44226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e078 -06183651 531.44232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e088 -06183652 531.44232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e088 -06183653 531.44232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e098 -06183654 531.44232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e098 -06183655 531.44238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a8 -06183656 531.44238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0a8 -06183657 531.44238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b8 -06183658 531.44238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0b8 -06183659 531.44244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c8 -06183660 531.44244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0c8 -06183661 531.44244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d8 -06183662 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0d8 -06183663 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e8 -06183664 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0e8 -06183665 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f8 -06183666 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e0f8 -06183667 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e108 -06183668 531.44250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e108 -06183669 531.44256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e118 -06183670 531.44256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e118 -06183671 531.44256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e128 -06183672 531.44256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e128 -06183673 531.44262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e138 -06183674 531.44262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e138 -06183675 531.44262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e148 -06183676 531.44262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e148 -06183677 531.44268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e158 -06183678 531.44268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e158 -06183679 531.44274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e168 -06183680 531.44274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e168 -06183681 531.44274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e178 -06183682 531.44274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e178 -06183683 531.44281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e188 -06183684 531.44281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e188 -06183685 531.44281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e198 -06183686 531.44281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e198 -06183687 531.44287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06183688 531.44287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06186071 531.47717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c28 -06186072 531.47717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c28 -06186073 531.47717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c38 -06186074 531.47717285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c38 -06186075 531.47723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c48 -06186076 531.47723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c48 -06186077 531.47723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c58 -06186078 531.47723389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c58 -06186079 531.47729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c68 -06186080 531.47729492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c68 -06186081 531.47735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c78 -06186082 531.47735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c78 -06186083 531.47735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c88 -06186084 531.47735596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c88 -06186085 531.47741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c98 -06186086 531.47741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c98 -06186087 531.47741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca8 -06186088 531.47741699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca8 -06186089 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb8 -06186090 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb8 -06186091 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc8 -06186092 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc8 -06186093 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd8 -06186094 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd8 -06186095 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce8 -06186096 531.47747803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce8 -06186097 531.47753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf8 -06186098 531.47753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf8 -06186099 531.47753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d08 -06186100 531.47753906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d08 -06186101 531.47760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d18 -06186102 531.47760010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d18 -06186103 531.47766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d28 -06186104 531.47766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d28 -06186105 531.47766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d38 -06186106 531.47766113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d38 -06186107 531.47772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d48 -06186108 531.47772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d48 -06186109 531.47772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d58 -06186110 531.47772217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d58 -06186111 531.47778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d68 -06186112 531.47778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d68 -06186113 531.47778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d78 -06186114 531.47778320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d78 -06188313 531.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -06188314 531.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -06188315 531.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -06188316 531.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -06188317 531.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -06188318 531.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -06188319 531.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -06188320 531.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -06188321 531.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -06188322 531.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -06188323 531.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -06188324 531.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -06188325 531.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -06188326 531.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -06188327 531.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -06188328 531.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -06188329 531.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -06188330 531.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -06188331 531.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -06188332 531.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -06188333 531.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -06188334 531.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -06188335 531.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -06188336 531.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -06188337 531.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -06188338 531.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -06188339 531.51000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -06188340 531.51000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -06188341 531.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -06188342 531.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -06188343 531.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -06188344 531.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -06188345 531.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -06188346 531.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -06188347 531.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -06188348 531.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -06188349 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -06188350 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -06188351 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -06188352 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -06188353 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -06188354 531.51019287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -06188355 531.51025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -06188356 531.51025391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27388 -06190545 531.54187012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f8 -06190546 531.54193115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b7f8 -06190547 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b808 -06190548 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b808 -06190549 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b818 -06190550 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b818 -06190551 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b828 -06190552 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b828 -06190553 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b838 -06190554 531.54199219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b838 -06190555 531.54205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b848 -06190556 531.54205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b848 -06190557 531.54205322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b858 -06190558 531.54211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b858 -06190559 531.54211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b868 -06190560 531.54211426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b868 -06190561 531.54217529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b878 -06190562 531.54217529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b878 -06190563 531.54217529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b888 -06190564 531.54217529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b888 -06190565 531.54223633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b898 -06190566 531.54223633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b898 -06190567 531.54223633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a8 -06190568 531.54223633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a8 -06190569 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b8 -06190570 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b8 -06190571 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c8 -06190572 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c8 -06190573 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d8 -06190574 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d8 -06190575 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e8 -06190576 531.54229736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e8 -06190577 531.54235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f8 -06190578 531.54235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8f8 -06190579 531.54235840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b908 -06190580 531.54241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b908 -06190581 531.54241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b918 -06190582 531.54241943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b918 -06190583 531.54248047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b928 -06190584 531.54248047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b928 -06190585 531.54248047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b938 -06190586 531.54248047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b938 -06190587 531.54254150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b948 -06190588 531.54254150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b948 -06192817 531.57531738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef8 -06192818 531.57531738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fef8 -06192819 531.57537842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff08 -06192820 531.57537842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff08 -06192821 531.57537842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -06192822 531.57537842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff18 -06192823 531.57543945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -06192824 531.57543945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff28 -06192825 531.57543945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -06192826 531.57543945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff38 -06192827 531.57550049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -06192828 531.57550049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff48 -06192829 531.57550049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -06192830 531.57556152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff58 -06192831 531.57556152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -06192832 531.57556152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff68 -06192833 531.57562256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -06192834 531.57562256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff78 -06192835 531.57562256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -06192836 531.57562256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff88 -06192837 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -06192838 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff98 -06192839 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -06192840 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffa8 -06192841 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -06192842 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffb8 -06192843 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -06192844 531.57568359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffc8 -06192845 531.57574463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -06192846 531.57574463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffd8 -06192847 531.57574463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -06192848 531.57574463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ffe8 -06192849 531.57580566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff8 -06192850 531.57580566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fff8 -06192851 531.57586670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -06192852 531.57586670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30008 -06192853 531.57592773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -06192854 531.57592773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30018 -06192855 531.57592773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -06192856 531.57592773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30028 -06192857 531.57598877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -06192858 531.57598877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30038 -06192859 531.57598877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -06192860 531.57598877 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30048 -06195139 531.60937500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -06195140 531.60937500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -06195141 531.60937500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -06195142 531.60937500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -06195143 531.60943604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -06195144 531.60943604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -06195145 531.60943604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -06195146 531.60943604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -06195147 531.60949707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -06195148 531.60949707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -06195149 531.60949707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -06195150 531.60949707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -06195151 531.60955811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -06195152 531.60955811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -06195153 531.60961914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -06195154 531.60961914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -06195155 531.60961914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -06195156 531.60961914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -06195157 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -06195158 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -06195159 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -06195160 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -06195161 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -06195162 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -06195163 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -06195164 531.60968018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -06195165 531.60974121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -06195166 531.60974121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -06195167 531.60974121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -06195168 531.60974121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -06195169 531.60980225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -06195170 531.60980225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -06195171 531.60986328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -06195172 531.60986328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -06195173 531.60992432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -06195174 531.60992432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -06195175 531.60992432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -06195176 531.60992432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -06195177 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -06195178 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -06195179 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -06195180 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -06195181 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -06195182 531.60998535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -06197405 531.64251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -06197406 531.64251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e58 -06197407 531.64251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -06197408 531.64251709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e68 -06197409 531.64257813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -06197410 531.64257813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e78 -06197411 531.64257813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -06197412 531.64257813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e88 -06197413 531.64263916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -06197414 531.64263916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e98 -06197415 531.64263916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -06197416 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ea8 -06197417 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -06197418 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38eb8 -06197419 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -06197420 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ec8 -06197421 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -06197422 531.64270020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ed8 -06197423 531.64276123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -06197424 531.64276123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ee8 -06197425 531.64282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -06197426 531.64282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ef8 -06197427 531.64282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f08 -06197428 531.64282227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f08 -06197429 531.64288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f18 -06197430 531.64288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f18 -06197431 531.64288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f28 -06197432 531.64288330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f28 -06197433 531.64294434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f38 -06197434 531.64294434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f38 -06197435 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f48 -06197436 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f48 -06197437 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f58 -06197438 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f58 -06197439 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f68 -06197440 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f68 -06197441 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f78 -06197442 531.64300537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f78 -06197443 531.64306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -06197444 531.64306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f88 -06197445 531.64306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -06197446 531.64306641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f98 -06197447 531.64312744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -06197448 531.64312744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38fa8 -06200279 531.68475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -06200280 531.68475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -06200281 531.68481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -06200282 531.68481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -06200283 531.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -06200284 531.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -06200285 531.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -06200286 531.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -06200287 531.68493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -06200288 531.68493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -06200289 531.68493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -06200290 531.68493652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -06200291 531.68499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -06200292 531.68499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -06200293 531.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -06200294 531.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -06200295 531.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a8 -06200296 531.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a8 -06200297 531.68511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b8 -06200298 531.68511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b8 -06200299 531.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c8 -06200300 531.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c8 -06200301 531.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d8 -06200302 531.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d8 -06200303 531.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e8 -06200304 531.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e8 -06200305 531.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f8 -06200306 531.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f8 -06200307 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e908 -06200308 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e908 -06200309 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e918 -06200310 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e918 -06200311 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e928 -06200312 531.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e928 -06200313 531.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e938 -06200314 531.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e938 -06200315 531.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e948 -06200316 531.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e948 -06200317 531.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e958 -06200318 531.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e958 -06200319 531.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e968 -06200320 531.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e968 -06200321 531.68548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e978 -06200322 531.68548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e978 -06202905 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a38 -06202906 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a38 -06202907 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a48 -06202908 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a48 -06202909 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a58 -06202910 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a58 -06202911 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a68 -06202912 531.72277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a68 -06202913 531.72283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a78 -06202914 531.72283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a78 -06202915 531.72283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a88 -06202916 531.72283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a88 -06202917 531.72290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a98 -06202918 531.72290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a98 -06202919 531.72290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa8 -06202920 531.72290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43aa8 -06202921 531.72296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab8 -06202922 531.72296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ab8 -06202923 531.72296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac8 -06202924 531.72302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ac8 -06202925 531.72302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad8 -06202926 531.72302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ad8 -06202927 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae8 -06202928 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ae8 -06202929 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af8 -06202930 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43af8 -06202931 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b08 -06202932 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b08 -06202933 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b18 -06202934 531.72308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b18 -06202935 531.72314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b28 -06202936 531.72314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b28 -06202937 531.72314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b38 -06202938 531.72314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b38 -06202939 531.72320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b48 -06202940 531.72320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b48 -06202941 531.72320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b58 -06202942 531.72320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b58 -06202943 531.72326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b68 -06202944 531.72326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b68 -06202945 531.72326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b78 -06202946 531.72332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b78 -06202947 531.72332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b88 -06202948 531.72332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b88 -06210681 531.94897461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06210682 532.15258789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06210683 532.17340088 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06210684 532.17340088 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06210685 532.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06210686 532.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06210687 532.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06210688 532.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06210689 532.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06210690 532.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06210691 532.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06210692 532.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06210693 532.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06210694 532.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06210695 532.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06210696 532.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06210697 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06210698 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06210699 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06210700 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06210701 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06210702 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06210703 532.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06210704 532.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06210705 532.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06210706 532.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06210707 532.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06210708 532.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06210709 532.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06210710 532.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06210711 532.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06210712 532.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06210713 532.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06210714 532.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06210715 532.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06210716 532.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06210717 532.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06210718 532.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06210719 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06210720 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06210721 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06210722 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06210723 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06210724 532.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06210725 532.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06210726 532.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06210727 532.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06210728 532.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06210729 532.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06210730 532.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06210731 532.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06210732 532.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06210733 532.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06210734 532.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06210735 532.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06210736 532.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06210737 532.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06210738 532.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06210739 532.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06210740 532.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06210741 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06210742 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06210743 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06210744 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06210745 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06210746 532.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06210747 532.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06210748 532.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06210749 532.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06210750 532.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06210751 532.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06210752 532.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06210753 532.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06210754 532.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06210755 532.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06210756 532.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06210757 532.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06210758 532.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06210759 532.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06210760 532.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06210761 532.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06210762 532.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06210763 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06210764 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06210765 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06210766 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06210767 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06210768 532.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06210769 532.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06210770 532.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06210771 532.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06210772 532.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06210773 532.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06210774 532.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06210775 532.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06210776 532.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06210777 532.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06210778 532.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06210779 532.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06210780 532.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06210781 532.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06210782 532.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06210783 532.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06210784 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06210785 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06210786 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06210787 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06210788 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06210789 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06210790 532.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06210791 532.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06210792 532.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06210793 532.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06210794 532.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06210795 532.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06210796 532.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06210797 532.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06210798 532.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06210799 532.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06210800 532.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06210801 532.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06210802 532.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06210803 532.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06210804 532.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06210805 532.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06210806 532.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06210807 532.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06210808 532.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06210809 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06210810 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06210811 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06210812 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06210813 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06210814 532.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06210815 532.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06210816 532.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06210817 532.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06210818 532.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06210819 532.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06210820 532.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06210821 532.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06210822 532.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06210823 532.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06210824 532.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06210825 532.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06210826 532.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06210827 532.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06210828 532.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06210829 532.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06210830 532.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06210831 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06210832 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06210833 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06210834 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06210835 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06210836 532.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06210837 532.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06210838 532.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06210839 532.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06210840 532.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06210841 532.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06210842 532.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06210843 532.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06210844 532.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06210845 532.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06210846 532.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06210847 532.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06210848 532.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06210849 532.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06210850 532.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06210851 532.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06210852 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06210853 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06210854 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06210855 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06210856 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06210857 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06210858 532.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06210859 532.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06210860 532.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06210861 532.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06210862 532.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06210863 532.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06210864 532.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06210865 532.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06210866 532.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06210867 532.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06210868 532.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06210869 532.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06210870 532.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06210871 532.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06210872 532.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06210873 532.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06210874 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06210875 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06210876 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06210877 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06210878 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06210879 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06210880 532.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06210881 532.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06210882 532.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06210883 532.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06210884 532.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06210885 532.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06210886 532.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06210887 532.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06210888 532.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06210889 532.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06210890 532.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06210891 532.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06210892 532.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06210893 532.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06210894 532.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06210895 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06210896 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06210897 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06210898 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06210899 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06210900 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06210901 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06210902 532.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06210903 532.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06210904 532.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06210905 532.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06210906 532.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06210907 532.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06210908 532.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06210909 532.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06210910 532.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06210911 532.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06210912 532.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06210913 532.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06210914 532.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06210915 532.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06210916 532.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06210917 532.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06210918 532.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06210919 532.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06210920 532.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06210921 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06210922 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06210923 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06210924 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06210925 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06210926 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06210927 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06210928 532.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06210929 532.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06210930 532.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06210931 532.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06210932 532.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06210933 532.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06210934 532.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06210935 532.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06210936 532.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06210937 532.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06210938 532.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06210939 532.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06210940 532.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06210941 532.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06210942 532.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06210943 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06210944 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06210945 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06210946 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06210947 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06210948 532.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06216265 532.43463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -06216266 532.43463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -06216267 532.43463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -06216268 532.43463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -06216269 532.43469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -06216270 532.43469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -06216271 532.43469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -06216272 532.43469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -06216273 532.43475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -06216274 532.43475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -06216275 532.43475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -06216276 532.43475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -06216277 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -06216278 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -06216279 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -06216280 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -06216281 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -06216282 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -06216283 532.43481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -06216284 532.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -06216285 532.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -06216286 532.43487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -06216287 532.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -06216288 532.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -06216289 532.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -06216290 532.43493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -06216291 532.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -06216292 532.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -06216293 532.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -06216294 532.43499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -06216295 532.43505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -06216296 532.43505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -06216297 532.43505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -06216298 532.43505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -06216299 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -06216300 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -06216301 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -06216302 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -06216303 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -06216304 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -06216305 532.43511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -06216306 532.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -06216307 532.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -06216308 532.43518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -06219193 532.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e8 -06219194 532.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e8 -06219195 532.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -06219196 532.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -06219197 532.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -06219198 532.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -06219199 532.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -06219200 532.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -06219201 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -06219202 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -06219203 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -06219204 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -06219205 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -06219206 532.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -06219207 532.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -06219208 532.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -06219209 532.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a68 -06219210 532.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a68 -06219211 532.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a78 -06219212 532.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a78 -06219213 532.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a88 -06219214 532.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a88 -06219215 532.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a98 -06219216 532.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a98 -06219217 532.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa8 -06219218 532.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa8 -06219219 532.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab8 -06219220 532.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab8 -06219221 532.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac8 -06219222 532.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac8 -06219223 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad8 -06219224 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad8 -06219225 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae8 -06219226 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae8 -06219227 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af8 -06219228 532.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af8 -06219229 532.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b08 -06219230 532.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b08 -06219231 532.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -06219232 532.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -06219233 532.47625732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -06219234 532.47625732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -06219235 532.47625732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -06219236 532.47631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -06221975 532.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06221976 532.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06221977 532.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06221978 532.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06221979 532.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06221980 532.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06221981 532.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06221982 532.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06221983 532.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17118 -06221984 532.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17118 -06221985 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17128 -06221986 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17128 -06221987 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17138 -06221988 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17138 -06221989 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17148 -06221990 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17148 -06221991 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17158 -06221992 532.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17158 -06221993 532.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17168 -06221994 532.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17168 -06221995 532.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17178 -06221996 532.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17178 -06221997 532.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17188 -06221998 532.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17188 -06221999 532.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17198 -06222000 532.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17198 -06222001 532.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a8 -06222002 532.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171a8 -06222003 532.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b8 -06222004 532.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171b8 -06222005 532.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c8 -06222006 532.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171c8 -06222007 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d8 -06222008 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171d8 -06222009 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e8 -06222010 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171e8 -06222011 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f8 -06222012 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x171f8 -06222013 532.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17208 -06222014 532.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17208 -06222015 532.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17218 -06222016 532.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17218 -06222017 532.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17228 -06222018 532.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17228 -06224893 532.55566406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -06224894 532.55566406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc08 -06224895 532.55566406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -06224896 532.55566406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc18 -06224897 532.55572510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -06224898 532.55572510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc28 -06224899 532.55578613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -06224900 532.55578613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc38 -06224901 532.55578613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -06224902 532.55578613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc48 -06224903 532.55584717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -06224904 532.55584717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc58 -06224905 532.55584717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -06224906 532.55584717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc68 -06224907 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -06224908 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc78 -06224909 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -06224910 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc88 -06224911 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -06224912 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc98 -06224913 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -06224914 532.55590820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cca8 -06224915 532.55596924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -06224916 532.55596924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccb8 -06224917 532.55596924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -06224918 532.55596924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -06224919 532.55603027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -06224920 532.55603027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -06224921 532.55609131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -06224922 532.55609131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -06224923 532.55609131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -06224924 532.55609131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -06224925 532.55615234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -06224926 532.55615234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -06224927 532.55615234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -06224928 532.55615234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -06224929 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -06224930 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -06224931 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -06224932 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -06224933 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -06224934 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -06224935 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -06224936 532.55621338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -06227231 532.58843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -06227232 532.58843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -06227233 532.58850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -06227234 532.58850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -06227235 532.58850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -06227236 532.58850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -06227237 532.58856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -06227238 532.58856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -06227239 532.58856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -06227240 532.58856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -06227241 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -06227242 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -06227243 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -06227244 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -06227245 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -06227246 532.58862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -06227247 532.58868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -06227248 532.58868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -06227249 532.58868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -06227250 532.58868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -06227251 532.58874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -06227252 532.58874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -06227253 532.58874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -06227254 532.58874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -06227255 532.58880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -06227256 532.58880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -06227257 532.58880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -06227258 532.58880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -06227259 532.58886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -06227260 532.58886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -06227261 532.58886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -06227262 532.58886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -06227263 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -06227264 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -06227265 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -06227266 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -06227267 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -06227268 532.58892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -06227269 532.58898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -06227270 532.58898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -06227271 532.58898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -06227272 532.58898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -06227273 532.58905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -06227274 532.58905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -06230209 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27228 -06230210 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27228 -06230211 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -06230212 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27238 -06230213 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -06230214 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27248 -06230215 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -06230216 532.63024902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27258 -06230217 532.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -06230218 532.63031006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27268 -06230219 532.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -06230220 532.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27278 -06230221 532.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -06230222 532.63037109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27288 -06230223 532.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -06230224 532.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27298 -06230225 532.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -06230226 532.63043213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272a8 -06230227 532.63049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -06230228 532.63049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272b8 -06230229 532.63049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -06230230 532.63049316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272c8 -06230231 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -06230232 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272d8 -06230233 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -06230234 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272e8 -06230235 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -06230236 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x272f8 -06230237 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -06230238 532.63055420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27308 -06230239 532.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -06230240 532.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27318 -06230241 532.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -06230242 532.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27328 -06230243 532.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -06230244 532.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27338 -06230245 532.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -06230246 532.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27348 -06230247 532.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -06230248 532.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27358 -06230249 532.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -06230250 532.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27368 -06230251 532.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -06230252 532.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27378 -06233095 532.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -06233096 532.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -06233097 532.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -06233098 532.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -06233099 532.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -06233100 532.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -06233101 532.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -06233102 532.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -06233103 532.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -06233104 532.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -06233105 532.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -06233106 532.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -06233107 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -06233108 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -06233109 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -06233110 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -06233111 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -06233112 532.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -06233113 532.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -06233114 532.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -06233115 532.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -06233116 532.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -06233117 532.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -06233118 532.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -06233119 532.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -06233120 532.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -06233121 532.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -06233122 532.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -06233123 532.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -06233124 532.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -06233125 532.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -06233126 532.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -06233127 532.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -06233128 532.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -06233129 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -06233130 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -06233131 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -06233132 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -06233133 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -06233134 532.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd88 -06233135 532.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -06233136 532.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd98 -06233137 532.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -06233138 532.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cda8 -06235991 532.71142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d8 -06235992 532.71142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326d8 -06235993 532.71142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e8 -06235994 532.71148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326e8 -06235995 532.71148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -06235996 532.71148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x326f8 -06235997 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32708 -06235998 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32708 -06235999 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32718 -06236000 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32718 -06236001 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32728 -06236002 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32728 -06236003 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32738 -06236004 532.71154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32738 -06236005 532.71160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32748 -06236006 532.71160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32748 -06236007 532.71160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32758 -06236008 532.71160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32758 -06236009 532.71166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32768 -06236010 532.71166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32768 -06236011 532.71166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32778 -06236012 532.71166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32778 -06236013 532.71173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32788 -06236014 532.71173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32788 -06236015 532.71173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32798 -06236016 532.71179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32798 -06236017 532.71179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a8 -06236018 532.71179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327a8 -06236019 532.71185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b8 -06236020 532.71185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327b8 -06236021 532.71185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c8 -06236022 532.71185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327c8 -06236023 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d8 -06236024 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327d8 -06236025 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e8 -06236026 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327e8 -06236027 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f8 -06236028 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x327f8 -06236029 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32808 -06236030 532.71191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32808 -06236031 532.71197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32818 -06236032 532.71197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32818 -06236033 532.71197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32828 -06236034 532.71197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32828 -06251611 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -06251612 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ef8 -06251613 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -06251614 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f08 -06251615 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -06251616 532.93017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f18 -06251617 532.93023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -06251618 532.93023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f28 -06251619 532.93023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -06251620 532.93023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f38 -06251621 532.93029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -06251622 532.93029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f48 -06251623 532.93029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -06251624 532.93029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f58 -06251625 532.93035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -06251626 532.93035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f68 -06251627 532.93035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -06251628 532.93035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -06251629 532.93041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -06251630 532.93041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -06251631 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -06251632 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -06251633 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -06251634 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -06251635 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -06251636 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -06251637 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -06251638 532.93048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -06251639 532.93054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -06251640 532.93054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -06251641 532.93054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -06251642 532.93054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -06251643 532.93060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -06251644 532.93060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -06251645 532.93060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -06251646 532.93060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -06251647 532.93066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -06251648 532.93066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -06251649 532.93066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -06251650 532.93066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51028 -06251651 532.93072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -06251652 532.93072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51038 -06251653 532.93078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51048 -06251654 532.93078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51048 -06252579 534.17401123 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06252580 534.19415283 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252581 534.19415283 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252582 534.60021973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06252583 534.60070801 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06252584 534.93548584 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252585 534.93554688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252586 534.93554688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252587 534.93554688 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06252588 534.93572998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252589 534.93572998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06252590 534.93572998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252591 534.93572998 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06252592 536.19622803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06252593 536.21514893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252594 536.21514893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252595 537.44329834 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252596 537.44335938 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252597 537.44342041 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06252598 537.44342041 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06252599 537.44360352 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252600 537.44360352 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06252601 537.44366455 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06252602 537.44366455 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06252603 537.94598389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06252604 537.94604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06252605 537.94604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06252606 537.94604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06252607 537.94610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06252608 537.94610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06252609 537.94610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06252610 537.94610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06252611 537.94616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06252612 537.94616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06252613 537.94616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06252614 537.94616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06252615 537.94622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06252616 537.94622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06252617 537.94622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06252618 537.94622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06252619 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06252620 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06252621 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06252622 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06252623 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06252624 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06252625 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06252626 537.94628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06252627 537.94635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06252628 537.94635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06252629 537.94635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06252630 537.94635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06252631 537.94641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06252632 537.94641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06252633 537.94641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06252634 537.94647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06252635 537.94647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06252636 537.94647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06252637 537.94653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06252638 537.94653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06252639 537.94653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06252640 537.94653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06252641 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06252642 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06252643 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06252644 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06252645 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06252646 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06252647 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06252648 537.94659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06252649 537.94665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06252650 537.94665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06252651 537.94665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06252652 537.94665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06252653 537.94671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06252654 537.94671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06252655 537.94671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06252656 537.94671631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06252657 537.94677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06252658 537.94677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06252659 537.94677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06252660 537.94677734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06252661 537.94683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06252662 537.94683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06252663 537.94683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06252664 537.94683838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06252665 537.94689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06252666 537.94689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06252667 537.94689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06252668 537.94689941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06252669 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06252670 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06252671 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06252672 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06252673 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06252674 537.94696045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06252675 537.94702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06252676 537.94702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06252677 537.94702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06252678 537.94702148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06252679 537.94708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06252680 537.94708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06252681 537.94708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06252682 537.94708252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06252683 537.94714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06252684 537.94714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06252685 537.94714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06252686 537.94714355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06252687 537.94720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06252688 537.94720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06252689 537.94720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06252690 537.94720459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06252691 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06252692 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06252693 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06252694 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06252695 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06252696 537.94726563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06252697 537.94732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06252698 537.94732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06252699 537.94732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06252700 537.94732666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06252701 537.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06252702 537.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06252703 537.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06252704 537.94738770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06252705 537.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06252706 537.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06252707 537.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06252708 537.94744873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06252709 537.94750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06252710 537.94750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06252711 537.94750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06252712 537.94750977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06252713 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06252714 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06252715 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06252716 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06252717 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06252718 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06252719 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06252720 537.94757080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06252721 537.94763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06252722 537.94763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06252723 537.94763184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06252724 537.94769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06252725 537.94769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06252726 537.94769287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06252727 537.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06252728 537.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06252729 537.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06252730 537.94775391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06252731 537.94781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06252732 537.94781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06252733 537.94781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06252734 537.94781494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06252735 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06252736 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06252737 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06252738 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06252739 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06252740 537.94787598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06252741 537.94793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06252742 537.94793701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06252743 537.94799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06252744 537.94799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06252745 537.94799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06252746 537.94799805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06252747 537.94805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06252748 537.94805908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06252749 537.94812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06252750 537.94812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06252751 537.94812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06252752 537.94812012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06252753 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06252754 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06252755 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06252756 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06252757 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06252758 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06252759 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06252760 537.94818115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06252761 537.94824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06252762 537.94824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06252763 537.94824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06252764 537.94824219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06252765 537.94830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06252766 537.94830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06252767 537.94830322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06252768 537.94836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06252769 537.94836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06252770 537.94836426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06252771 537.94842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06252772 537.94842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06252773 537.94842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06252774 537.94842529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06252775 537.94848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06252776 537.94848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06252777 537.94848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06252778 537.94848633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06252779 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06252780 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06252781 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06252782 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06252783 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06252784 537.94854736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06252785 537.94860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06252786 537.94860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06252787 537.94860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06252788 537.94860840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06252789 537.94866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06252790 537.94866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06252791 537.94866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06252792 537.94866943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06252793 537.94873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06252794 537.94873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06252795 537.94873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06252796 537.94873047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06252797 537.94879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06252798 537.94879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06252799 537.94879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06252800 537.94879150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06252801 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06252802 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06252803 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06252804 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06252805 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06252806 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06252807 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06252808 537.94885254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06252809 537.94891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06252810 537.94891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06252811 537.94891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06252812 537.94891357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06252813 537.94897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06252814 537.94897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06252815 537.94897461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06252816 537.94903564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06252817 537.94903564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06252818 537.94903564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06252819 537.94909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06252820 537.94909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06252821 537.94909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06252822 537.94909668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06252823 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06252824 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06252825 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06252826 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06252827 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06252828 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06252829 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06252830 537.94915771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06252831 537.94921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06252832 537.94921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06252833 537.94921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06252834 537.94921875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06252835 537.94927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06252836 537.94927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06252837 537.94927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06252838 537.94927979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06252839 537.94934082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06252840 537.94934082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06252841 537.94940186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06252842 537.94940186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06252843 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06252844 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06252845 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06252846 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06252847 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06252848 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06252849 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06252850 537.94946289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06252851 537.94952393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06252852 537.94952393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06252853 537.94952393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06252854 537.94952393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06252855 537.94958496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06252856 537.94958496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06252857 537.94964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06252858 537.94964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06252859 537.94964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06252860 537.94964600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06252861 537.94970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06252862 537.94970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06252863 537.94970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06252864 537.94970703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06252865 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06252866 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06252867 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06252868 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06252869 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06252870 537.94976807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06252871 537.94982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06252872 537.94982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06252873 537.94982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06252874 537.94982910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06252875 537.94989014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06252876 537.94989014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06252877 537.94989014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06252878 537.94995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06252879 537.94995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06252880 537.94995117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06252881 537.95001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06252882 537.95001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06252883 537.95001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06252884 537.95001221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06252885 537.95007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06252886 537.95007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06252887 537.95007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06252888 537.95007324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06252889 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06252890 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06252891 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06252892 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06252893 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06252894 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06252895 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06252896 537.95013428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06252897 537.95019531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06252898 537.95019531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06252899 537.95019531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06252900 537.95019531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06252901 537.95025635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06252902 537.95025635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06252903 537.95025635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06252904 537.95025635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06252905 537.95031738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06252906 537.95031738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06252907 537.95031738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06252908 537.95031738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06252909 537.95037842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06252910 537.95037842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06252911 537.95037842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06252912 537.95037842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06252913 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06252914 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06252915 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06252916 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06252917 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06252918 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06252919 537.95043945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06252920 537.95050049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06252921 537.95050049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06252922 537.95050049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06252923 537.95056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06252924 537.95056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06252925 537.95056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06252926 537.95056152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06252927 537.95062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06252928 537.95062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06252929 537.95062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06252930 537.95062256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06252931 537.95068359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06252932 537.95068359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06252933 537.95068359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06252934 537.95068359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06252935 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06252936 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06252937 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06252938 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06252939 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06252940 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06252941 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06252942 537.95074463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06252943 537.95080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06252944 537.95080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06252945 537.95080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06252946 537.95080566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06252947 537.95086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06252948 537.95086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06252949 537.95086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06252950 537.95086670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06252951 537.95092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06252952 537.95092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06252953 537.95092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06252954 537.95092773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06252955 537.95098877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06252956 537.95098877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06252957 537.95098877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06252958 537.95098877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06252959 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06252960 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06252961 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06252962 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06252963 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06252964 537.95104980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06252965 537.95111084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06252966 537.95111084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06252967 537.95111084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06252968 537.95111084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06252969 537.95117188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06252970 537.95117188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06252971 537.95117188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06252972 537.95117188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06252973 537.95123291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06252974 537.95123291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06252975 537.95123291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06252976 537.95123291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06252977 537.95129395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06252978 537.95129395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06252979 537.95129395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06252980 537.95129395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06252981 537.95135498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06252982 537.95135498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06252983 537.95135498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06252984 537.95135498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06252985 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06252986 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06252987 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06252988 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06252989 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06252990 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06252991 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06252992 537.95141602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06252993 537.95147705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06252994 537.95147705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06252995 537.95147705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06252996 537.95147705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06252997 537.95153809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06252998 537.95153809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06252999 537.95153809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06253000 537.95153809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06253001 537.95159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06253002 537.95159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06253003 537.95159912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06253004 537.95166016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06253005 537.95166016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06253006 537.95166016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06253007 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06253008 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06253009 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06253010 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06253011 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06253012 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06253013 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06253014 537.95172119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06253015 537.95178223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06253016 537.95178223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06253017 537.95178223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06253018 537.95178223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06253019 537.95184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06253020 537.95184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06253021 537.95184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06253022 537.95184326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06253023 537.95190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06253024 537.95190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06253025 537.95190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06253026 537.95190430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06253027 537.95196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06253028 537.95196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06253029 537.95196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06253030 537.95196533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06253031 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06253032 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06253033 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06253034 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06253035 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06253036 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06253037 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06253038 537.95202637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06253039 537.95208740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06253040 537.95208740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06253041 537.95214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06253042 537.95214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06253043 537.95214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06253044 537.95214844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06253045 537.95220947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06253046 537.95220947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06253047 537.95220947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06253048 537.95220947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06253049 537.95227051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06253050 537.95227051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06253051 537.95227051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06253052 537.95227051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06253053 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06253054 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06253055 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06253056 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06253057 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06253058 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06253059 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06253060 537.95233154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06253061 537.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06253062 537.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06253063 537.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06253064 537.95239258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06253065 537.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06253066 537.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06253067 537.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06253068 537.95245361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06253069 537.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06253070 537.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06253071 537.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06253072 537.95251465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06253073 537.95257568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06253074 537.95257568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06253075 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06253076 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06253077 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06253078 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06253079 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06253080 537.95263672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06253081 537.95269775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06253082 537.95269775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06253083 537.95269775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06253084 537.95269775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06253085 537.95275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06253086 537.95275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06253087 537.95275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06253088 537.95275879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06253089 537.95281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06253090 537.95281982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06253091 537.95288086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06253092 537.95288086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06253093 537.95288086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06253094 537.95288086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06253095 537.95294189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06253096 537.95294189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06253097 537.95294189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06253098 537.95294189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06253099 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06253100 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06253101 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06253102 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06253103 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06253104 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06253105 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06253106 537.95300293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06253107 537.95306396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06253108 537.95306396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06253109 537.95306396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06253110 537.95306396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06253111 537.95312500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06253112 537.95312500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06253113 537.95312500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06253114 537.95312500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06253115 537.95318604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06253116 537.95318604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06253117 537.95318604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06253118 537.95318604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06253119 537.95324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06253120 537.95324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06253121 537.95324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06253122 537.95324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06253123 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06253124 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06253125 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06253126 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06253127 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06253128 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06253129 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06253130 537.95330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06253131 537.95336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06253132 537.95336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06253133 537.95336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06253134 537.95343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06253135 537.95343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06253136 537.95343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06253137 537.95349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06253138 537.95349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06253139 537.95349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06253140 537.95349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06253141 537.95355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06253142 537.95355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06253143 537.95355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06253144 537.95355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06253145 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06253146 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06253147 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06253148 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06253149 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06253150 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06253151 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06253152 537.95361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06253153 537.95367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06253154 537.95367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06253155 537.95373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06253156 537.95373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06253157 537.95373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06253158 537.95373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06253159 537.95379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06253160 537.95379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06253161 537.95379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06253162 537.95379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06253163 537.95385742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06253164 537.95385742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06253165 537.95385742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06253166 537.95385742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06253167 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06253168 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06253169 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06253170 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06253171 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06253172 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06253173 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06253174 537.95391846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06253175 537.95397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06253176 537.95397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06253177 537.95397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06253178 537.95397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06253179 537.95404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06253180 537.95404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06253181 537.95404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06253182 537.95404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06253183 537.95410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06253184 537.95410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06253185 537.95410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06253186 537.95410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06253187 537.95416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06253188 537.95416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06253189 537.95416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06253190 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06253191 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06253192 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06253193 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06253194 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06253195 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06253196 537.95422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06253197 537.95428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06253198 537.95428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06253199 537.95428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06253200 537.95428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06253201 537.95434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06253202 537.95434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06253203 537.95434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06253204 537.95434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06253205 537.95440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06253206 537.95440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06253207 537.95440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06253208 537.95440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06253209 537.95446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06253210 537.95446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06253211 537.95446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06253212 537.95446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06253213 537.95452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06253214 537.95452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06253215 537.95452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06253216 537.95452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06253217 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06253218 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06253219 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06253220 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06253221 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06253222 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06253223 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06253224 537.95458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06253225 537.95465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06253226 537.95465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06253227 537.95465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06253228 537.95465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06253229 537.95471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06253230 537.95471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06253231 537.95471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06253232 537.95471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06253233 537.95477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06253234 537.95477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06253235 537.95477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06253236 537.95483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06253237 537.95483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06253238 537.95483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06253239 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06253240 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06253241 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06253242 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06253243 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06253244 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06253245 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06253246 537.95489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06253247 537.95495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06253248 537.95495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06253249 537.95495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06253250 537.95495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06253251 537.95501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06253252 537.95501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06253253 537.95501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06253254 537.95501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06253255 537.95507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06253256 537.95507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06253257 537.95513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06253258 537.95513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06253259 537.95513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06253260 537.95513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06253261 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06253262 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06253263 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06253264 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06253265 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06253266 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06253267 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06253268 537.95520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06253269 537.95526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06253270 537.95526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06253271 537.95526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06253272 537.95526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06253273 537.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06253274 537.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06253275 537.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06253276 537.95532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06253277 537.95538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06253278 537.95538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06253279 537.95538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06253280 537.95544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06253281 537.95544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06253282 537.95544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06253283 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06253284 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06253285 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06253286 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06253287 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06253288 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06253289 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06253290 537.95550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06253291 537.95556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06253292 537.95556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06253293 537.95556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06253294 537.95556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06253295 537.95562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06253296 537.95562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06253297 537.95562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06253298 537.95562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06253299 537.95568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06253300 537.95568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06253301 537.95568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06253302 537.95568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06253303 537.95574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06253304 537.95574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06253305 537.95574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06253306 537.95574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06253307 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06253308 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06253309 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06253310 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06253311 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06253312 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06253313 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06253314 537.95581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06253315 537.95587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06253316 537.95587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06253317 537.95593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06253318 537.95593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06253319 537.95593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06253320 537.95593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06253321 537.95599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06253322 537.95599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06253323 537.95605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06253324 537.95605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06253325 537.95605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06253326 537.95605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06253327 537.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06253328 537.95611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06253329 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06253330 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06253331 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06253332 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06253333 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06253334 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06253335 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06253336 537.95617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06253337 537.95623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06253338 537.95623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06253339 537.95623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06253340 537.95629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06253341 537.95629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06253342 537.95629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06253343 537.95635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06253344 537.95635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06253345 537.95635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06253346 537.95635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06253347 537.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06253348 537.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06253349 537.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06253350 537.95642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06253351 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06253352 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06253353 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06253354 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06253355 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06253356 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06253357 537.95648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06253358 537.95654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06253359 537.95654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06253360 537.95654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06253361 537.95660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06253362 537.95660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06253363 537.95660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06253364 537.95660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06253365 537.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06253366 537.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06253367 537.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06253368 537.95666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06253369 537.95672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06253370 537.95672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06253371 537.95672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06253372 537.95672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06253373 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06253374 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06253375 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06253376 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06253377 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06253378 537.95678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06253379 537.95684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06253380 537.95684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06253381 537.95684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06253382 537.95684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06253383 537.95690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06253384 537.95690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06253385 537.95690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06253386 537.95690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06253387 537.95697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06253388 537.95697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06253389 537.95697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06253390 537.95697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06253391 537.95703125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06253392 537.95703125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06253393 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06253394 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06253395 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06253396 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06253397 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06253398 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06253399 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06253400 537.95709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06253401 537.95715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06253402 537.95715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06253403 537.95715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06253404 537.95715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06253405 537.95721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06253406 537.95721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06253407 537.95721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06253408 537.95721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06253409 537.95727539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06253410 537.95727539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06253411 537.95727539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06253412 537.95733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06253413 537.95733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06253414 537.95733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06253415 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06253416 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06253417 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06253418 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06253419 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06253420 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06253421 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06253422 537.95739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06253423 537.95745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06253424 537.95745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06253425 537.95745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06253426 537.95745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06253427 537.95751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06253428 537.95751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06253429 537.95751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06253430 537.95751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06253431 537.95758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06253432 537.95758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06253433 537.95764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06253434 537.95764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06253435 537.95764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06253436 537.95764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06253437 537.95770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06253438 537.95770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06253439 537.95770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06253440 537.95770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06253441 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06253442 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06253443 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06253444 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06253445 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06253446 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06253447 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06253448 537.95776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06253449 537.95782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06253450 537.95782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06253451 537.95782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06253452 537.95788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06253453 537.95788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06253454 537.95788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06253455 537.95794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06253456 537.95794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06253457 537.95794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06253458 537.95794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06253459 537.95800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06253460 537.95800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06253461 537.95800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06253462 537.95800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06253463 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06253464 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06253465 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06253466 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06253467 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06253468 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06253469 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06253470 537.95806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06253471 537.95812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06253472 537.95812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06253473 537.95819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06253474 537.95819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06253475 537.95819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06253476 537.95819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06253477 537.95825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06253478 537.95825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06253479 537.95825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06253480 537.95825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06253481 537.95831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06253482 537.95831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06253483 537.95831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06253484 537.95831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06253485 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06253486 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06253487 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06253488 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06253489 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06253490 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06253491 537.95837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06253492 537.95843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06253493 537.95843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06253494 537.95843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06253495 537.95849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06253496 537.95849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06253497 537.95849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06253498 537.95849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06253499 537.95855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06253500 537.95855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06253501 537.95855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06253502 537.95855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06253503 537.95861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06253504 537.95861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06253505 537.95861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06253506 537.95861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06253507 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06253508 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06253509 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06253510 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06253511 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06253512 537.95867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06253513 537.95874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06253514 537.95874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06253515 537.95874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06253516 537.95874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06253517 537.95880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06253518 537.95880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06253519 537.95880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06253520 537.95880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06253521 537.95886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06253522 537.95886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06253523 537.95886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06253524 537.95886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06253525 537.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06253526 537.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06253527 537.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06253528 537.95892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06253529 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06253530 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06253531 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06253532 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06253533 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06253534 537.95898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06253535 537.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06253536 537.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06253537 537.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06253538 537.95904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06253539 537.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06253540 537.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06253541 537.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06253542 537.95910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06253543 537.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06253544 537.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06253545 537.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06253546 537.95916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06253547 537.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06253548 537.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06253549 537.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06253550 537.95922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06253551 537.95928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06253552 537.95928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06253553 537.95928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06253554 537.95928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06253555 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06253556 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06253557 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06253558 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06253559 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06253560 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06253561 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06253562 537.95935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06253563 537.95941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06253564 537.95941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06253565 537.95941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06253566 537.95947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06253567 537.95947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06253568 537.95947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06253569 537.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06253570 537.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06253571 537.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06253572 537.95953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06253573 537.95959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06253574 537.95959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06253575 537.95959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06253576 537.95959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06253577 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06253578 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06253579 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06253580 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06253581 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06253582 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06253583 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06253584 537.95965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06253585 537.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06253586 537.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06253587 537.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06253588 537.95971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06253589 537.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06253590 537.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06253591 537.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06253592 537.95977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06253593 537.95983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06253594 537.95983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06253595 537.95983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06253596 537.95983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06253597 537.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06253598 537.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06253599 537.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06253600 537.95989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06253601 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06253602 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06253603 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06253604 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06253605 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06253606 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06253607 537.95996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06253608 537.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06253609 537.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06253610 537.96002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06253611 537.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06253612 537.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06253613 537.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06253614 537.96008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06253615 537.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06253616 537.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06253617 537.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06253618 537.96014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06253619 537.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06253620 537.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06253621 537.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06253622 537.96020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06253623 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06253624 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06253625 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06253626 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06253627 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06253628 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06253629 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06253630 537.96026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06253631 537.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06253632 537.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06253633 537.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06253634 537.96032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06253635 537.96038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06253636 537.96038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06253637 537.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06253638 537.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06253639 537.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06253640 537.96044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06253641 537.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06253642 537.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06253643 537.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06253644 537.96051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06253645 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06253646 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06253647 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06253648 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06253649 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06253650 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06253651 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06253652 537.96057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06253653 537.96063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06253654 537.96063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06253655 537.96063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06253656 537.96063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06253657 537.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06253658 537.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06253659 537.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06253660 537.96069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06253661 537.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06253662 537.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06253663 537.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06253664 537.96075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06253665 537.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06253666 537.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06253667 537.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06253668 537.96081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06253669 537.96087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06253670 537.96087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06253671 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06253672 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06253673 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06253674 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06253675 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06253676 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06253677 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06253678 537.96093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06253679 537.96099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06253680 537.96099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06253681 537.96099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06253682 537.96099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06253683 537.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06253684 537.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06253685 537.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06253686 537.96105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06253687 537.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06253688 537.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06253689 537.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06253690 537.96112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06253691 537.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06253692 537.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06253693 537.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06253694 537.96118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06253695 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06253696 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06253697 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06253698 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06253699 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06253700 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06253701 537.96124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06253702 537.96130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06253703 537.96130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06253704 537.96130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06253705 537.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06253706 537.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06253707 537.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06253708 537.96136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06253709 537.96142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06253710 537.96142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06253711 537.96142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06253712 537.96142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06253713 537.96148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06253714 537.96148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06253715 537.96148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06253716 537.96148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06253717 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06253718 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06253719 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06253720 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06253721 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06253722 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06253723 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06253724 537.96154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06253725 537.96160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06253726 537.96160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06253727 537.96160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06253728 537.96160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06253729 537.96166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06253730 537.96166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06253731 537.96166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06253732 537.96166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06253733 537.96173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06253734 537.96173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06253735 537.96173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06253736 537.96173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06253737 537.96179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06253738 537.96179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06253739 537.96179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06253740 537.96179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06253741 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06253742 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06253743 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06253744 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06253745 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06253746 537.96185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06253747 537.96191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06253748 537.96191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06253749 537.96191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06253750 537.96191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06253751 537.96197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06253752 537.96197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06253753 537.96197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06253754 537.96197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06253755 537.96203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06253756 537.96203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06253757 537.96203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06253758 537.96203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06253759 537.96209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06253760 537.96209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06253761 537.96209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06253762 537.96209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06253763 537.96215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06253764 537.96215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06253765 537.96215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06253766 537.96215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06253767 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06253768 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06253769 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06253770 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06253771 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06253772 537.96221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06253773 537.96228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06253774 537.96228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06253775 537.96228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06253776 537.96228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06253777 537.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06253778 537.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06253779 537.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06253780 537.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06253781 537.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06253782 537.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06253783 537.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06253784 537.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06253785 537.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06253786 537.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06253787 537.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06253788 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06253789 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06253790 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06253791 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06253792 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06253793 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06253794 537.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06253795 537.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06253796 537.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06253797 537.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06253798 537.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06253799 537.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06253800 537.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06253801 537.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06253802 537.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06253803 537.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06253804 537.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06253805 537.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06253806 537.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06253807 537.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06253808 537.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06253809 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06253810 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06253811 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06253812 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06253813 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06253814 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06253815 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06253816 537.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06253817 537.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06253818 537.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06253819 537.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06253820 537.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06253821 537.96295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06253822 537.96295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06253823 537.96295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06253824 537.96301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06253825 537.96301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06253826 537.96301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06253827 537.96307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06253828 537.96307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06253829 537.96307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06253830 537.96307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06253831 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06253832 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06253833 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06253834 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06253835 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06253836 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06253837 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06253838 537.96313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06253839 537.96319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06253840 537.96319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06253841 537.96319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06253842 537.96319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06253843 537.96325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06253844 537.96325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06253845 537.96325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06253846 537.96331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06253847 537.96331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06253848 537.96331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06253849 537.96331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06253850 537.96337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06253851 537.96337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06253852 537.96337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06253853 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06253854 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06253855 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06253856 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06253857 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06253858 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06253859 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06253860 537.96343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06253861 537.96350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06253862 537.96350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06253863 537.96350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06253864 537.96350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06253865 537.96356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06253866 537.96356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06253867 537.96356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06253868 537.96356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06253869 537.96362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06253870 537.96362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06253871 537.96368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06253872 537.96368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06253873 537.96368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06253874 537.96368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06253875 537.96374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06253876 537.96374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06253877 537.96374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06253878 537.96374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06253879 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06253880 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06253881 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06253882 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06253883 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06253884 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06253885 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06253886 537.96380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06253887 537.96386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06253888 537.96386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06253889 537.96392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06253890 537.96392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06253891 537.96392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06253892 537.96392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06253893 537.96398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06253894 537.96398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06253895 537.96398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06253896 537.96398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06253897 537.96405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06253898 537.96405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06253899 537.96405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06253900 537.96405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06253901 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06253902 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06253903 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06253904 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06253905 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06253906 537.96411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06253907 537.96417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06253908 537.96417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06253909 537.96417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06253910 537.96417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06253911 537.96423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06253912 537.96423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06253913 537.96423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06253914 537.96423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06253915 537.96429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06253916 537.96429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06253917 537.96429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06253918 537.96429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06253919 537.96435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06253920 537.96435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06253921 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06253922 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06253923 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06253924 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06253925 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06253926 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06253927 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06253928 537.96441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06253929 537.96447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06253930 537.96447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06253931 537.96447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06253932 537.96447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06253933 537.96453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06253934 537.96453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06253935 537.96459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06253936 537.96459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06253937 537.96459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06253938 537.96459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06253939 537.96466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06253940 537.96466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06253941 537.96466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06253942 537.96466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06253943 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06253944 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06253945 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06253946 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06253947 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06253948 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06253949 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06253950 537.96472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06253951 537.96478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06253952 537.96478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06253953 537.96484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06253954 537.96484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06253955 537.96484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06253956 537.96484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06253957 537.96490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06253958 537.96490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06253959 537.96490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06253960 537.96490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06253961 537.96496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06253962 537.96496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06253963 537.96496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06253964 537.96496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06253965 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06253966 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06253967 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06253968 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06253969 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06253970 537.96502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06253971 537.96508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06253972 537.96508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06253973 537.96508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06253974 537.96508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06253975 537.96514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06253976 537.96514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06253977 537.96514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06253978 537.96514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06253979 537.96520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06253980 537.96520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06253981 537.96520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06253982 537.96520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06253983 537.96527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06253984 537.96527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06253985 537.96527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06253986 537.96527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06253987 537.96533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06253988 537.96533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06253989 537.96533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06253990 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06253991 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06253992 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06253993 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06253994 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06253995 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06253996 537.96539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06253997 537.96545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06253998 537.96545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06253999 537.96545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06254000 537.96545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06254001 537.96551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06254002 537.96551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06254003 537.96551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06254004 537.96551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06254005 537.96557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06254006 537.96557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06254007 537.96557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06254008 537.96557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06254009 537.96563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06254010 537.96563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06254011 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06254012 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06254013 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06254014 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06254015 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06254016 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06254017 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06254018 537.96569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06254019 537.96575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06254020 537.96575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06254021 537.96575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06254022 537.96575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06254023 537.96582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06254024 537.96582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06254025 537.96582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06254026 537.96582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06254027 537.96588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06254028 537.96588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06254029 537.96588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06254030 537.96594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06254031 537.96594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06254032 537.96594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06254033 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06254034 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06254035 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06254036 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06254037 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06254038 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06254039 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06254040 537.96600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06254041 537.96606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06254042 537.96606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06254043 537.96606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06254044 537.96606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06254045 537.96612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06254046 537.96612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06254047 537.96612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06254048 537.96612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06254049 537.96618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06254050 537.96618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06254051 537.96618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06254052 537.96618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06254053 537.96624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06254054 537.96624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06254055 537.96624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06254056 537.96624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06254057 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06254058 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06254059 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06254060 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06254061 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06254062 537.96630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06254063 537.96636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06254064 537.96636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06254065 537.96636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06254066 537.96636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06254067 537.96643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06254068 537.96643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06254069 537.96643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06254070 537.96643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06254071 537.96649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06254072 537.96649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06254073 537.96649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06254074 537.96655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06254075 537.96655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06254076 537.96655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06254077 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06254078 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06254079 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06254080 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06254081 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06254082 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06254083 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06254084 537.96661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06254085 537.96667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06254086 537.96667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06254087 537.96667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06254088 537.96667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06254089 537.96673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06254090 537.96673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06254091 537.96673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06254092 537.96673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06254093 537.96679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06254094 537.96679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06254095 537.96685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06254096 537.96685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06254097 537.96685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06254098 537.96685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06254099 537.96691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06254100 537.96691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06254101 537.96691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06254102 537.96691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06254103 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06254104 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06254105 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06254106 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06254107 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06254108 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06254109 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06254110 537.96697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06254111 537.96704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06254112 537.96704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06254113 537.96704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06254114 537.96704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06254115 537.96710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06254116 537.96710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06254117 537.96710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06254118 537.96710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06254119 537.96716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06254120 537.96716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06254121 537.96716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06254122 537.96716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06254123 537.96722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06254124 537.96722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06254125 537.96722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06254126 537.96722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06254127 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06254128 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06254129 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06254130 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06254131 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06254132 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06254133 537.96728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06254134 537.96734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06254135 537.96734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06254136 537.96734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06254137 537.96740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06254138 537.96740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06254139 537.96740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06254140 537.96740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06254141 537.96746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06254142 537.96746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06254143 537.96746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06254144 537.96746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06254145 537.96752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06254146 537.96752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06254147 537.96752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06254148 537.96752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06254149 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06254150 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06254151 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06254152 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06254153 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06254154 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06254155 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06254156 537.96759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06254157 537.96765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06254158 537.96765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06254159 537.96765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06254160 537.96765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06254161 537.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06254162 537.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06254163 537.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06254164 537.96771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06254165 537.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06254166 537.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06254167 537.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06254168 537.96777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06254169 537.96783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06254170 537.96783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06254171 537.96783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06254172 537.96783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06254173 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06254174 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06254175 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06254176 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06254177 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06254178 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06254179 537.96789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06254180 537.96795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06254181 537.96795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06254182 537.96795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06254183 537.96801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06254184 537.96801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06254185 537.96801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06254186 537.96801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06254187 537.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06254188 537.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06254189 537.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06254190 537.96807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06254191 537.96813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06254192 537.96813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06254193 537.96813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06254194 537.96813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06254195 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06254196 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06254197 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06254198 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06254199 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06254200 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06254201 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06254202 537.96820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06254203 537.96826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06254204 537.96826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06254205 537.96826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06254206 537.96826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06254207 537.96832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06254208 537.96832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06254209 537.96832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06254210 537.96832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06254211 537.96838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06254212 537.96838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06254213 537.96838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06254214 537.96838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06254215 537.96844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06254216 537.96844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06254217 537.96844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06254218 537.96844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06254219 537.96850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06254220 537.96850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06254221 537.96850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06254222 537.96850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06254223 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06254224 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06254225 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06254226 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06254227 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06254228 537.96856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06254229 537.96862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06254230 537.96862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06254231 537.96862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06254232 537.96862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06254233 537.96868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06254234 537.96868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06254235 537.96868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06254236 537.96868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06254237 537.96875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06254238 537.96875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06254239 537.96875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06254240 537.96875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06254241 537.96881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06254242 537.96881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06254243 537.96881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06254244 537.96881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06254245 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06254246 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06254247 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06254248 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06254249 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06254250 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06254251 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06254252 537.96887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06254253 537.96893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06254254 537.96893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06254255 537.96893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06254256 537.96893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06254257 537.96899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06254258 537.96899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06254259 537.96899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06254260 537.96905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06254261 537.96905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06254262 537.96905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06254263 537.96911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06254264 537.96911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06254265 537.96911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06254266 537.96911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06254267 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06254268 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06254269 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06254270 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06254271 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06254272 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06254273 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06254274 537.96917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06254275 537.96923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06254276 537.96923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06254277 537.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06254278 537.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06254279 537.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06254280 537.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06254281 537.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06254282 537.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06254283 537.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06254284 537.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06254285 537.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06254286 537.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06254287 537.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06254288 537.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06254289 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06254290 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06254291 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06254292 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06254293 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06254294 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06254295 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06254296 537.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06254297 537.96954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06254298 537.96954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06254299 537.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06254300 537.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06254301 537.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06254302 537.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06254303 537.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06254304 537.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06254305 537.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06254306 537.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06254307 537.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06254308 537.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06254309 537.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06254310 537.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06254311 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06254312 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06254313 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06254314 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06254315 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06254316 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06254317 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06254318 537.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06254319 537.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06254320 537.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06254321 537.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06254322 537.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06254323 537.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06254324 537.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06254325 537.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06254326 537.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06254327 537.96997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06254328 537.96997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06254329 537.96997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06254330 537.97003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06254331 537.97003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06254332 537.97003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06254333 537.97009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06254334 537.97009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06254335 537.97009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06254336 537.97009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06254337 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06254338 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06254339 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06254340 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06254341 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06254342 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06254343 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06254344 537.97015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06254345 537.97021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06254346 537.97021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06254347 537.97021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06254348 537.97021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06254349 537.97027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06254350 537.97027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06254351 537.97033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06254352 537.97033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06254353 537.97033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06254354 537.97033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06254355 537.97039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06254356 537.97039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06254357 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06254358 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06254359 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06254360 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06254361 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06254362 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06254363 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06254364 537.97045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06254365 537.97052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06254366 537.97052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06254367 537.97052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06254368 537.97058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06254369 537.97058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06254370 537.97058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06254371 537.97064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06254372 537.97064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06254373 537.97064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06254374 537.97064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06254375 537.97070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06254376 537.97070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06254377 537.97070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06254378 537.97070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06254379 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06254380 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06254381 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06254382 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06254383 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06254384 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06254385 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06254386 537.97076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06254387 537.97082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06254388 537.97082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06254389 537.97082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06254390 537.97082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06254391 537.97088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06254392 537.97088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06254393 537.97088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06254394 537.97088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06254395 537.97094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06254396 537.97094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06254397 537.97094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06254398 537.97100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06254399 537.97100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06254400 537.97100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06254401 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06254402 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06254403 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06254404 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06254405 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06254406 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06254407 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06254408 537.97106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06254409 537.97113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06254410 537.97113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06254411 537.97113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06254412 537.97113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06254413 537.97119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06254414 537.97119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06254415 537.97125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06254416 537.97125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06254417 537.97131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06254418 537.97131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06254419 537.97131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06254420 537.97131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06254421 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06254422 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06254423 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06254424 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06254425 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06254426 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06254427 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06254428 537.97137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06254429 537.97143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06254430 537.97143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06254431 537.97143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06254432 537.97149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06254433 537.97149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06254434 537.97149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06254435 537.97155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06254436 537.97155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06254437 537.97155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06254438 537.97155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06254439 537.97161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06254440 537.97161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06254441 537.97161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06254442 537.97161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06254443 537.97167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06254444 537.97167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06254445 537.97167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06254446 537.97167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06254447 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06254448 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06254449 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06254450 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06254451 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06254452 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06254453 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06254454 537.97174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06254455 537.97180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06254456 537.97180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06254457 537.97180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06254458 537.97180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06254459 537.97186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06254460 537.97186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06254461 537.97186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06254462 537.97186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06254463 537.97192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06254464 537.97192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06254465 537.97192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06254466 537.97192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06254467 537.97198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06254468 537.97198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06254469 537.97198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06254470 537.97198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06254471 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06254472 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06254473 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06254474 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06254475 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06254476 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06254477 537.97204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06254478 537.97210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06254479 537.97210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06254480 537.97210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06254481 537.97216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06254482 537.97216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06254483 537.97216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06254484 537.97216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06254485 537.97222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06254486 537.97222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06254487 537.97222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06254488 537.97222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06254489 537.97229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06254490 537.97229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06254491 537.97229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06254492 537.97229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06254493 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06254494 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06254495 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06254496 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06254497 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06254498 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06254499 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06254500 537.97235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06254501 537.97241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06254502 537.97241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06254503 537.97241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06254504 537.97241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06254505 537.97247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06254506 537.97247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06254507 537.97247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06254508 537.97247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06254509 537.97253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06254510 537.97253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06254511 537.97253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06254512 537.97253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06254513 537.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06254514 537.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06254515 537.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06254516 537.97259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06254517 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06254518 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06254519 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06254520 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06254521 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06254522 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06254523 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06254524 537.97265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06254525 537.97271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06254526 537.97271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06254527 537.97271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06254528 537.97277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06254529 537.97277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06254530 537.97277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06254531 537.97283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06254532 537.97283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06254533 537.97283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06254534 537.97283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06254535 537.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06254536 537.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06254537 537.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06254538 537.97290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06254539 537.97296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06254540 537.97296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06254541 537.97296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06254542 537.97296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06254543 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06254544 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06254545 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06254546 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06254547 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06254548 537.97302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06254549 537.97308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06254550 537.97308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06254551 537.97308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06254552 537.97308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06254553 537.97314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06254554 537.97314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06254555 537.97314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06254556 537.97314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06254557 537.97320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06254558 537.97320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06254559 537.97320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06254560 537.97320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06254561 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06254562 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06254563 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06254564 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06254565 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06254566 537.97332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06254567 537.97338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06254568 537.97338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06254569 537.97338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06254570 537.97338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06254571 537.97344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06254572 537.97344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06254573 537.97344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06254574 537.97344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06254575 537.97351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06254576 537.97351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06254577 537.97351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06254578 537.97351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06254579 537.97357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06254580 537.97357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06254581 537.97357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06254582 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06254583 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06254584 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06254585 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06254586 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06254587 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06254588 537.97363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06254589 537.97369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06254590 537.97369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06254591 537.97369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06254592 537.97369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06254593 537.97375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06254594 537.97375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06254595 537.97375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06254596 537.97375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06254597 537.97381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06254598 537.97381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06254599 537.97381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06254600 537.97381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06254601 537.97387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06254602 537.97387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06254603 537.97387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06254604 537.97387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06254605 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06254606 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06254607 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06254608 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06254609 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06254610 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06254611 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06254612 537.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06254613 537.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06254614 537.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06254615 537.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06254616 537.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06254617 537.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06254618 537.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06254619 537.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06254620 537.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06254621 537.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06254622 537.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06254623 537.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06254624 537.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06254625 537.97418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06254626 537.97418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06254627 537.97418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06254628 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06254629 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06254630 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06254631 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06254632 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06254633 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06254634 537.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06254635 537.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06254636 537.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06254637 537.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06254638 537.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06254639 537.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06254640 537.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06254641 537.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06254642 537.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06254643 537.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06254644 537.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06254645 537.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06254646 537.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06254647 537.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06254648 537.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06254649 537.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06254650 537.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06254651 537.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06254652 537.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06254653 537.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06254654 537.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06254655 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06254656 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06254657 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06254658 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06254659 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06254660 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06254661 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06254662 537.97460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06254663 537.97467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06254664 537.97467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06254665 537.97467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06254666 537.97467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06254667 537.97473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06254668 537.97473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06254669 537.97473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06254670 537.97473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06254671 537.97479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06254672 537.97479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06254673 537.97479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06254674 537.97485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06254675 537.97485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06254676 537.97485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06254677 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06254678 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06254679 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06254680 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06254681 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06254682 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06254683 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06254684 537.97491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06254685 537.97497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06254686 537.97497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06254687 537.97497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06254688 537.97497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06254689 537.97503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06254690 537.97503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06254691 537.97503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06254692 537.97503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06254693 537.97509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06254694 537.97509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06254695 537.97515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06254696 537.97515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06254697 537.97515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06254698 537.97515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06254699 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06254700 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06254701 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06254702 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06254703 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06254704 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06254705 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06254706 537.97521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06254707 537.97528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06254708 537.97528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06254709 537.97528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06254710 537.97528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06254711 537.97534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06254712 537.97534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06254713 537.97534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06254714 537.97534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06254715 537.97540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06254716 537.97540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06254717 537.97540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06254718 537.97540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06254719 537.97546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06254720 537.97546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06254721 537.97546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06254722 537.97546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06254723 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06254724 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06254725 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06254726 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06254727 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06254728 537.97552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06254729 537.97558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06254730 537.97558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06254731 537.97564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06254732 537.97564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06254733 537.97564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06254734 537.97564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06254735 537.97570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06254736 537.97570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06254737 537.97570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06254738 537.97570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06254739 537.97576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06254740 537.97576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06254741 537.97576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06254742 537.97576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06254743 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06254744 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06254745 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06254746 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06254747 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06254748 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06254749 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06254750 537.97583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06254751 537.97589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06254752 537.97589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06254753 537.97589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06254754 537.97595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06254755 537.97595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06254756 537.97595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06254757 537.97601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06254758 537.97601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06254759 537.97601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06254760 537.97601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06254761 537.97607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06254762 537.97607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06254763 537.97607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06254764 537.97607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06254765 537.97613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06254766 537.97613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06254767 537.97613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06254768 537.97613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06254769 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06254770 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06254771 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06254772 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06254773 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06254774 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06254775 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06254776 537.97619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06254777 537.97625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06254778 537.97625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06254779 537.97625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06254780 537.97625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06254781 537.97631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06254782 537.97631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06254783 537.97631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06254784 537.97637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06254785 537.97637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06254786 537.97637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06254787 537.97644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06254788 537.97644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06254789 537.97644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06254790 537.97644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06254791 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06254792 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06254793 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06254794 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06254795 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06254796 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06254797 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06254798 537.97650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06254799 537.97656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06254800 537.97656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06254801 537.97656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06254802 537.97656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06254803 537.97662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06254804 537.97662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06254805 537.97662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06254806 537.97662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06254807 537.97668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06254808 537.97668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06254809 537.97668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06254810 537.97668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06254811 537.97674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06254812 537.97674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06254813 537.97674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06254814 537.97674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06254815 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06254816 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06254817 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06254818 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06254819 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06254820 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06254821 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06254822 537.97680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06254823 537.97686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06254824 537.97686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06254825 537.97686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06254826 537.97686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06254827 537.97692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06254828 537.97692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06254829 537.97692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06254830 537.97698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06254831 537.97698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06254832 537.97698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06254833 537.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06254834 537.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06254835 537.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06254836 537.97705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06254837 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06254838 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06254839 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06254840 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06254841 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06254842 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06254843 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06254844 537.97711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06254845 537.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06254846 537.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06254847 537.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06254848 537.97717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06254849 537.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06254850 537.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06254851 537.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06254852 537.97723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06254853 537.97729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06254854 537.97729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06254855 537.97729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06254856 537.97729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06254857 537.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06254858 537.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06254859 537.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06254860 537.97735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06254861 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06254862 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06254863 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06254864 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06254865 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06254866 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06254867 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06254868 537.97741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06254869 537.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06254870 537.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06254871 537.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06254872 537.97747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06254873 537.97753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06254874 537.97753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06254875 537.97753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06254876 537.97760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06254877 537.97760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06254878 537.97760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06254879 537.97766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06254880 537.97766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06254881 537.97766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06254882 537.97766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06254883 537.97772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06254884 537.97772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06254885 537.97772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06254886 537.97772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06254887 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06254888 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06254889 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06254890 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06254891 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06254892 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06254893 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06254894 537.97778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06254895 537.97784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06254896 537.97784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06254897 537.97784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06254898 537.97784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06254899 537.97790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06254900 537.97790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06254901 537.97790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06254902 537.97790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06254903 537.97796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06254904 537.97796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06254905 537.97796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06254906 537.97796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06254907 537.97802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06254908 537.97802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06254909 537.97802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06254910 537.97802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06254911 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06254912 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06254913 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06254914 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06254915 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06254916 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06254917 537.97808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06254918 537.97814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06254919 537.97814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06254920 537.97814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06254921 537.97821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06254922 537.97821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06254923 537.97821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06254924 537.97821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06254925 537.97827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06254926 537.97827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06254927 537.97827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06254928 537.97827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06254929 537.97833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06254930 537.97833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06254931 537.97833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06254932 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06254933 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06254934 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06254935 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06254936 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06254937 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06254938 537.97839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06254939 537.97845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06254940 537.97845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06254941 537.97845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06254942 537.97845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06254943 537.97851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06254944 537.97851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06254945 537.97851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06254946 537.97851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06254947 537.97857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06254948 537.97857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06254949 537.97857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06254950 537.97857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06254951 537.97863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06254952 537.97863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06254953 537.97863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06254954 537.97863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06254955 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06254956 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06254957 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06254958 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06254959 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06254960 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06254961 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06254962 537.97869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06254963 537.97875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06254964 537.97875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06254965 537.97875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06254966 537.97875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06254967 537.97882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06254968 537.97882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06254969 537.97882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06254970 537.97882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06254971 537.97888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06254972 537.97888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06254973 537.97888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06254974 537.97888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06254975 537.97894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06254976 537.97894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06254977 537.97894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06254978 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06254979 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06254980 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06254981 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06254982 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06254983 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06254984 537.97900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06254985 537.97906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06254986 537.97906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06254987 537.97906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06254988 537.97906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06254989 537.97912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06254990 537.97912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06254991 537.97912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06254992 537.97912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06254993 537.97918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06254994 537.97918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06254995 537.97918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06254996 537.97918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06254997 537.97924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06254998 537.97924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06254999 537.97924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06255000 537.97930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06255001 537.97930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06255002 537.97930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06255003 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06255004 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06255005 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06255006 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06255007 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06255008 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06255009 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06255010 537.97937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06255011 537.97943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06255012 537.97943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06255013 537.97943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06255014 537.97943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06255015 537.97949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06255016 537.97949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06255017 537.97949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06255018 537.97949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06255019 537.97955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06255020 537.97955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06255021 537.97955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06255022 537.97955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06255023 537.97961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06255024 537.97961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06255025 537.97961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06255026 537.97961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06255027 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06255028 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06255029 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06255030 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06255031 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06255032 537.97967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06255033 537.97973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06255034 537.97973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06255035 537.97973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06255036 537.97973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06255037 537.97979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06255038 537.97979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06255039 537.97979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06255040 537.97979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06255041 537.97985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06255042 537.97985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06255043 537.97985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06255044 537.97985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06255045 537.97991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06255046 537.97991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06255047 537.97991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06255048 537.97991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06255049 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06255050 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06255051 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06255052 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06255053 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06255054 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06255055 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06255056 537.97998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06255057 537.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06255058 537.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06255059 537.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06255060 537.98004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06255061 537.98010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06255062 537.98010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06255063 537.98010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06255064 537.98016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06255065 537.98016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06255066 537.98016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06255067 537.98022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06255068 537.98022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06255069 537.98022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06255070 537.98022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06255071 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06255072 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06255073 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06255074 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06255075 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06255076 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06255077 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06255078 537.98028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06255079 537.98034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06255080 537.98034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06255081 537.98034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06255082 537.98034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06255083 537.98040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06255084 537.98040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06255085 537.98040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06255086 537.98040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06255087 537.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06255088 537.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06255089 537.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06255090 537.98046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06255091 537.98052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06255092 537.98052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06255093 537.98052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06255094 537.98052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06255095 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06255096 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06255097 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06255098 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06255099 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06255100 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06255101 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06255102 537.98059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06255103 537.98065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06255104 537.98065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06255105 537.98065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06255106 537.98071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06255107 537.98071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06255108 537.98071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06255109 537.98077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06255110 537.98077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06255111 537.98077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06255112 537.98077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06255113 537.98083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06255114 537.98083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06255115 537.98083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06255116 537.98083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06255117 537.98089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06255118 537.98089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06255119 537.98089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06255120 537.98089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06255121 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06255122 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06255123 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06255124 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06255125 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06255126 537.98095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06255127 537.98101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06255128 537.98101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06255129 537.98101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06255130 537.98101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06255131 537.98107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06255132 537.98107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06255133 537.98107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06255134 537.98107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06255135 537.98114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06255136 537.98114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06255137 537.98114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06255138 537.98114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06255139 537.98120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06255140 537.98120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06255141 537.98120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06255142 537.98120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06255143 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06255144 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06255145 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06255146 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06255147 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06255148 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06255149 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06255150 537.98126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06255151 537.98132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06255152 537.98132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06255153 537.98132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06255154 537.98132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06255155 537.98138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06255156 537.98138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06255157 537.98138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06255158 537.98144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06255159 537.98144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06255160 537.98144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06255161 537.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06255162 537.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06255163 537.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06255164 537.98150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06255165 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06255166 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06255167 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06255168 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06255169 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06255170 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06255171 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06255172 537.98156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06255173 537.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06255174 537.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06255175 537.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06255176 537.98162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06255177 537.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06255178 537.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06255179 537.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06255180 537.98168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06255181 537.98175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06255182 537.98175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06255183 537.98175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06255184 537.98175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06255185 537.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06255186 537.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06255187 537.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06255188 537.98181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06255189 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06255190 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06255191 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06255192 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06255193 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06255194 537.98187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06255195 537.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06255196 537.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06255197 537.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06255198 537.98193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06255199 537.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06255200 537.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06255201 537.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06255202 537.98199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06255203 537.98205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06255204 537.98205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06255205 537.98205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06255206 537.98205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06255207 537.98211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06255208 537.98211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06255209 537.98211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06255210 537.98211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06255211 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06255212 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06255213 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06255214 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06255215 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06255216 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06255217 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06255218 537.98217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06255219 537.98223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06255220 537.98223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06255221 537.98223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06255222 537.98229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06255223 537.98229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06255224 537.98229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06255225 537.98236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06255226 537.98236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06255227 537.98236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06255228 537.98236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06255229 537.98242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06255230 537.98242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06255231 537.98242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06255232 537.98242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06255233 537.98248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06255234 537.98248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06255235 537.98248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06255236 537.98248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06255237 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06255238 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06255239 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06255240 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06255241 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06255242 537.98254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06255243 537.98260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06255244 537.98260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06255245 537.98260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06255246 537.98260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06255247 537.98266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06255248 537.98266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06255249 537.98266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06255250 537.98266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06255251 537.98272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06255252 537.98272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06255253 537.98272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06255254 537.98272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06255255 537.98278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06255256 537.98278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06255257 537.98278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06255258 537.98278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06255259 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06255260 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06255261 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06255262 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06255263 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06255264 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06255265 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06255266 537.98284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06255267 537.98291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06255268 537.98291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06255269 537.98291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06255270 537.98297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06255271 537.98297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06255272 537.98297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06255273 537.98303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06255274 537.98303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06255275 537.98303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06255276 537.98303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06255277 537.98309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06255278 537.98309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06255279 537.98309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06255280 537.98309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06255281 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06255282 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06255283 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06255284 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06255285 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06255286 537.98315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06255287 537.98321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06255288 537.98321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06255289 537.98321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06255290 537.98321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06255291 537.98327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06255292 537.98327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06255293 537.98327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06255294 537.98327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06255295 537.98333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06255296 537.98333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06255297 537.98333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06255298 537.98333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06255299 537.98339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06255300 537.98339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06255301 537.98339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06255302 537.98339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06255303 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06255304 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06255305 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06255306 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06255307 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06255308 537.98345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06255309 537.98352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06255310 537.98352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06255311 537.98352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06255312 537.98352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06255313 537.98358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06255314 537.98358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06255315 537.98358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06255316 537.98358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06255317 537.98364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06255318 537.98364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06255319 537.98364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06255320 537.98364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06255321 537.98370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06255322 537.98370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06255323 537.98370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06255324 537.98370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06255325 537.98376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06255326 537.98376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06255327 537.98376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06255328 537.98376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06255329 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06255330 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06255331 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06255332 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06255333 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06255334 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06255335 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06255336 537.98382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06255337 537.98388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06255338 537.98388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06255339 537.98388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06255340 537.98394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06255341 537.98394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06255342 537.98394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06255343 537.98400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06255344 537.98400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06255345 537.98400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06255346 537.98400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06255347 537.98406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06255348 537.98406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06255349 537.98406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06255350 537.98406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06255351 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06255352 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06255353 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06255354 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06255355 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06255356 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06255357 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06255358 537.98413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06255359 537.98419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06255360 537.98419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06255361 537.98419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06255362 537.98419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06255363 537.98425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06255364 537.98425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06255365 537.98425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06255366 537.98425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06255367 537.98431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06255368 537.98431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06255369 537.98431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06255370 537.98431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06255371 537.98437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06255372 537.98437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06255373 537.98437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06255374 537.98437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06255375 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06255376 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06255377 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06255378 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06255379 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06255380 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06255381 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06255382 537.98443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06255383 537.98449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06255384 537.98449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06255385 537.98449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06255386 537.98455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06255387 537.98455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06255388 537.98455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06255389 537.98461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06255390 537.98461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06255391 537.98461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06255392 537.98461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06255393 537.98468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06255394 537.98468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06255395 537.98468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06255396 537.98468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06255397 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06255398 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06255399 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06255400 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06255401 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06255402 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06255403 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06255404 537.98474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06255405 537.98480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06255406 537.98480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06255407 537.98480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06255408 537.98480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06255409 537.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06255410 537.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06255411 537.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06255412 537.98486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06255413 537.98492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06255414 537.98492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06255415 537.98492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06255416 537.98498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06255417 537.98498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06255418 537.98498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06255419 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06255420 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06255421 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06255422 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06255423 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06255424 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06255425 537.98504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06255426 537.98510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06255427 537.98510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06255428 537.98510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06255429 537.98516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06255430 537.98516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06255431 537.98516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06255432 537.98516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06255433 537.98522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06255434 537.98522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06255435 537.98522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06255436 537.98522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06255437 537.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06255438 537.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06255439 537.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06255440 537.98529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06255441 537.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06255442 537.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06255443 537.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06255444 537.98535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06255445 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06255446 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06255447 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06255448 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06255449 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06255450 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06255451 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06255452 537.98541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06255453 537.98547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06255454 537.98547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06255455 537.98547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06255456 537.98547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06255457 537.98553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06255458 537.98553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06255459 537.98553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06255460 537.98553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06255461 537.98559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06255462 537.98559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06255463 537.98559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06255464 537.98559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06255465 537.98565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06255466 537.98565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06255467 537.98565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06255468 537.98565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06255469 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06255470 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06255471 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06255472 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06255473 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06255474 537.98571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06255475 537.98577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06255476 537.98577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06255477 537.98577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06255478 537.98577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06255479 537.98583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06255480 537.98583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06255481 537.98583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06255482 537.98583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06255483 537.98590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06255484 537.98590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06255485 537.98590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06255486 537.98590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06255487 537.98596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06255488 537.98596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06255489 537.98596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06255490 537.98596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06255491 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06255492 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06255493 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06255494 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06255495 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06255496 537.98602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06255497 537.98608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06255498 537.98608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06255499 537.98608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06255500 537.98608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06255501 537.98614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06255502 537.98614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06255503 537.98614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06255504 537.98614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06255505 537.98620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06255506 537.98620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06255507 537.98620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06255508 537.98620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06255509 537.98626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06255510 537.98626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06255511 537.98626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06255512 537.98626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06255513 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06255514 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06255515 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06255516 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06255517 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06255518 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06255519 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06255520 537.98632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06255521 537.98638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06255522 537.98638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06255523 537.98638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06255524 537.98645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06255525 537.98645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06255526 537.98645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06255527 537.98651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06255528 537.98651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06255529 537.98651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06255530 537.98651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06255531 537.98657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06255532 537.98657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06255533 537.98657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06255534 537.98657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06255535 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06255536 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06255537 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06255538 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06255539 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06255540 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06255541 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06255542 537.98663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06255543 537.98669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06255544 537.98669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06255545 537.98669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06255546 537.98669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06255547 537.98675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06255548 537.98675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06255549 537.98675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06255550 537.98675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06255551 537.98681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06255552 537.98681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06255553 537.98681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06255554 537.98681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06255555 537.98687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06255556 537.98687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06255557 537.98687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06255558 537.98693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06255559 537.98693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06255560 537.98693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06255561 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06255562 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06255563 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06255564 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06255565 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06255566 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06255567 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06255568 537.98699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06255569 537.98706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06255570 537.98706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06255571 537.98706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06255572 537.98706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06255573 537.98712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06255574 537.98712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06255575 537.98712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06255576 537.98712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06255577 537.98718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06255578 537.98718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06255579 537.98718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06255580 537.98718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06255581 537.98724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06255582 537.98724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06255583 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06255584 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06255585 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06255586 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06255587 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06255588 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06255589 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06255590 537.98730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06255591 537.98736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06255592 537.98736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06255593 537.98736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06255594 537.98736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06255595 537.98742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06255596 537.98742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06255597 537.98742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06255598 537.98742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06255599 537.98748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06255600 537.98748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06255601 537.98748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06255602 537.98748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06255603 537.98754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06255604 537.98754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06255605 537.98754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06255606 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06255607 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06255608 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06255609 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06255610 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06255611 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06255612 537.98760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06255613 537.98767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06255614 537.98767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06255615 537.98767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06255616 537.98767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06255617 537.98773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06255618 537.98773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06255619 537.98773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06255620 537.98773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06255621 537.98779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06255622 537.98779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06255623 537.98779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06255624 537.98779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06255625 537.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06255626 537.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06255627 537.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06255628 537.98785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06255629 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06255630 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06255631 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06255632 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06255633 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06255634 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06255635 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06255636 537.98791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06255637 537.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06255638 537.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06255639 537.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06255640 537.98797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06255641 537.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06255642 537.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06255643 537.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06255644 537.98803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06255645 537.98809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06255646 537.98809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06255647 537.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06255648 537.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06255649 537.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06255650 537.98815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06255651 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06255652 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06255653 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06255654 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06255655 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06255656 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06255657 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06255658 537.98822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06255659 537.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06255660 537.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06255661 537.98828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06255662 537.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06255663 537.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06255664 537.98834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06255665 537.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06255666 537.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06255667 537.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06255668 537.98840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06255669 537.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06255670 537.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06255671 537.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06255672 537.98846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06255673 537.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06255674 537.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06255675 537.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06255676 537.98852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06255677 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06255678 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06255679 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06255680 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06255681 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06255682 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06255683 537.98858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06255684 537.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06255685 537.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06255686 537.98864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06255687 537.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06255688 537.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06255689 537.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06255690 537.98870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06255691 537.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06255692 537.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06255693 537.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06255694 537.98876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06255695 537.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06255696 537.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06255697 537.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06255698 537.98883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06255699 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06255700 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06255701 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06255702 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06255703 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06255704 537.98889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06255705 537.98895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06255706 537.98895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06255707 537.98901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06255708 537.98901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06255709 537.98901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06255710 537.98901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06255711 537.98907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06255712 537.98907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06255713 537.98907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06255714 537.98907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06255715 537.98913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06255716 537.98913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06255717 537.98913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06255718 537.98913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06255719 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06255720 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06255721 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06255722 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06255723 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06255724 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06255725 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06255726 537.98919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06255727 537.98925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06255728 537.98925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06255729 537.98925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06255730 537.98931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06255731 537.98931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06255732 537.98931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06255733 537.98937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06255734 537.98937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06255735 537.98937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06255736 537.98937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06255737 537.98944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06255738 537.98944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06255739 537.98944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06255740 537.98944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06255741 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06255742 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06255743 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06255744 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06255745 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06255746 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06255747 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06255748 537.98950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06255749 537.98956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06255750 537.98956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06255751 537.98956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06255752 537.98956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06255753 537.98962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06255754 537.98962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06255755 537.98962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06255756 537.98962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06255757 537.98968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06255758 537.98968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06255759 537.98968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06255760 537.98968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06255761 537.98974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06255762 537.98974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06255763 537.98974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06255764 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06255765 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06255766 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06255767 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06255768 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06255769 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06255770 537.98980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06255771 537.98986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06255772 537.98986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06255773 537.98992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06255774 537.98992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06255775 537.98992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06255776 537.98992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06255777 537.98999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06255778 537.98999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06255779 537.98999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06255780 537.98999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06255781 537.99005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06255782 537.99005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06255783 537.99005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06255784 537.99011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06255785 537.99011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06255786 537.99011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06255787 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06255788 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06255789 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06255790 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06255791 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06255792 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06255793 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06255794 537.99017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06255795 537.99023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06255796 537.99023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06255797 537.99023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06255798 537.99023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06255799 537.99029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06255800 537.99029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06255801 537.99029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06255802 537.99029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06255803 537.99035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06255804 537.99035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06255805 537.99035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06255806 537.99041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06255807 537.99041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06255808 537.99041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06255809 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06255810 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06255811 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06255812 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06255813 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06255814 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06255815 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06255816 537.99047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06255817 537.99053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06255818 537.99053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06255819 537.99053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06255820 537.99053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06255821 537.99060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06255822 537.99060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06255823 537.99060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06255824 537.99060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06255825 537.99066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06255826 537.99066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06255827 537.99066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06255828 537.99066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06255829 537.99072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06255830 537.99072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06255831 537.99072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06255832 537.99072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06255833 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06255834 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06255835 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06255836 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06255837 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06255838 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06255839 537.99078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06255840 537.99084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06255841 537.99084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06255842 537.99084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06255843 537.99090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06255844 537.99090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06255845 537.99090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06255846 537.99090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06255847 537.99096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06255848 537.99096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06255849 537.99096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06255850 537.99096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06255851 537.99102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06255852 537.99102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06255853 537.99102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06255854 537.99102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06255855 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06255856 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06255857 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06255858 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06255859 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06255860 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06255861 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06255862 537.99108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06255863 537.99114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06255864 537.99114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06255865 537.99114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06255866 537.99114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06255867 537.99121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06255868 537.99121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06255869 537.99121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06255870 537.99121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06255871 537.99127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06255872 537.99127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06255873 537.99127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06255874 537.99127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06255875 537.99133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06255876 537.99133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06255877 537.99133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06255878 537.99133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06255879 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06255880 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06255881 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06255882 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06255883 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06255884 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06255885 537.99139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06255886 537.99145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06255887 537.99145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06255888 537.99145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06255889 537.99151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06255890 537.99151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06255891 537.99151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06255892 537.99151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06255893 537.99157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06255894 537.99157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06255895 537.99157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06255896 537.99157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06255897 537.99163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06255898 537.99163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06255899 537.99163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06255900 537.99163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06255901 537.99169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06255902 537.99169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06255903 537.99169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06255904 537.99169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06255905 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06255906 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06255907 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06255908 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06255909 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06255910 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06255911 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06255912 537.99176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06255913 537.99182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06255914 537.99182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06255915 537.99182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06255916 537.99182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06255917 537.99188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06255918 537.99188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06255919 537.99188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06255920 537.99188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06255921 537.99194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06255922 537.99194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06255923 537.99194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06255924 537.99194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06255925 537.99200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06255926 537.99200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06255927 537.99200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06255928 537.99200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06255929 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06255930 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06255931 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06255932 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06255933 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06255934 537.99206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06255935 537.99212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06255936 537.99212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06255937 537.99212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06255938 537.99212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06255939 537.99218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06255940 537.99218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06255941 537.99218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06255942 537.99218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06255943 537.99224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06255944 537.99224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06255945 537.99224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06255946 537.99224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06255947 537.99230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06255948 537.99230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06255949 537.99230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06255950 537.99230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06255951 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06255952 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06255953 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06255954 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06255955 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06255956 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06255957 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06255958 537.99237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06255959 537.99243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06255960 537.99243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06255961 537.99243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06255962 537.99243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06255963 537.99249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06255964 537.99249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06255965 537.99249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06255966 537.99249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06255967 537.99255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06255968 537.99255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06255969 537.99255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06255970 537.99255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06255971 537.99261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06255972 537.99261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06255973 537.99261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06255974 537.99261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06255975 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06255976 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06255977 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06255978 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06255979 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06255980 537.99267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06255981 537.99273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06255982 537.99273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06255983 537.99273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06255984 537.99273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06255985 537.99279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06255986 537.99279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06255987 537.99279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06255988 537.99279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06255989 537.99285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06255990 537.99285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06255991 537.99285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06255992 537.99285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06255993 537.99291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06255994 537.99291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06255995 537.99291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06255996 537.99291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06255997 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06255998 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06255999 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06256000 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06256001 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06256002 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06256003 537.99298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06256004 537.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06256005 537.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06256006 537.99304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06256007 537.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06256008 537.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06256009 537.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06256010 537.99310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06256011 537.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06256012 537.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06256013 537.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06256014 537.99316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06256015 537.99322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06256016 537.99322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06256017 537.99322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06256018 537.99322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06256019 537.99328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06256020 537.99328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06256021 537.99328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06256022 537.99328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06256023 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06256024 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06256025 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06256026 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06256027 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06256028 537.99334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06256029 537.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06256030 537.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06256031 537.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06256032 537.99340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06256033 537.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06256034 537.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06256035 537.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06256036 537.99346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06256037 537.99353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06256038 537.99353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06256039 537.99353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06256040 537.99353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06256041 537.99359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06256042 537.99359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06256043 537.99359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06256044 537.99359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06256045 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06256046 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06256047 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06256048 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06256049 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06256050 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06256051 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06256052 537.99365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06256053 537.99371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06256054 537.99371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06256055 537.99371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06256056 537.99377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06256057 537.99377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06256058 537.99377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06256059 537.99383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06256060 537.99383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06256061 537.99383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06256062 537.99383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06256063 537.99389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06256064 537.99389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06256065 537.99389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06256066 537.99389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06256067 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06256068 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06256069 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06256070 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06256071 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06256072 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06256073 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06256074 537.99395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06256075 537.99401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06256076 537.99401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06256077 537.99401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06256078 537.99401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06256079 537.99407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06256080 537.99407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06256081 537.99414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06256082 537.99414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06256083 537.99414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06256084 537.99414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06256085 537.99420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06256086 537.99420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06256087 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06256088 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06256089 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06256090 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06256091 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06256092 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06256093 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06256094 537.99426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06256095 537.99432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06256096 537.99432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06256097 537.99432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06256098 537.99432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06256099 537.99438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06256100 537.99438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06256101 537.99438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06256102 537.99438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06256103 537.99444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06256104 537.99444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06256105 537.99444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06256106 537.99450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06256107 537.99450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06256108 537.99450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06256109 537.99456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06256110 537.99456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06256111 537.99456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06256112 537.99456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06256113 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06256114 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06256115 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06256116 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06256117 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06256118 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06256119 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06256120 537.99462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06256121 537.99468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06256122 537.99468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06256123 537.99468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06256124 537.99468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06256125 537.99475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06256126 537.99475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06256127 537.99475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06256128 537.99475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06256129 537.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06256130 537.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06256131 537.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06256132 537.99481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06256133 537.99487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06256134 537.99487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06256135 537.99487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06256136 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06256137 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06256138 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06256139 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06256140 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06256141 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06256142 537.99493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06256143 537.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06256144 537.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06256145 537.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06256146 537.99499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06256147 537.99505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06256148 537.99505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06256149 537.99505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06256150 537.99505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06256151 537.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06256152 537.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06256153 537.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06256154 537.99511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06256155 537.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06256156 537.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06256157 537.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06256158 537.99517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06256159 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06256160 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06256161 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06256162 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06256163 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06256164 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06256165 537.99523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06256166 537.99530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06256167 537.99530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06256168 537.99530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06256169 537.99536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06256170 537.99536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06256171 537.99536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06256172 537.99536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06256173 537.99542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06256174 537.99542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06256175 537.99542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06256176 537.99542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06256177 537.99548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06256178 537.99548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06256179 537.99548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06256180 537.99548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06256181 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06256182 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06256183 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06256184 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06256185 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06256186 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06256187 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06256188 537.99554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06256189 537.99560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06256190 537.99560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06256191 537.99560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06256192 537.99560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06256193 537.99566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06256194 537.99566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06256195 537.99566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06256196 537.99566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06256197 537.99572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06256198 537.99572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06256199 537.99572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06256200 537.99572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06256201 537.99578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06256202 537.99578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06256203 537.99578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06256204 537.99578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06256205 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06256206 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06256207 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06256208 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06256209 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06256210 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06256211 537.99584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06256212 537.99591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06256213 537.99591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06256214 537.99591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06256215 537.99597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06256216 537.99597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06256217 537.99597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06256218 537.99597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06256219 537.99603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06256220 537.99603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06256221 537.99603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06256222 537.99603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06256223 537.99609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06256224 537.99609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06256225 537.99609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06256226 537.99609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06256227 537.99615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06256228 537.99615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06256229 537.99615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06256230 537.99615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06256231 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06256232 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06256233 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06256234 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06256235 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06256236 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06256237 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06256238 537.99621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06256239 537.99627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06256240 537.99627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06256241 537.99627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06256242 537.99627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06256243 537.99633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06256244 537.99633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06256245 537.99633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06256246 537.99633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06256247 537.99639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06256248 537.99639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06256249 537.99639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06256250 537.99639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06256251 537.99645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06256252 537.99645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06256253 537.99645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06256254 537.99645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06256255 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06256256 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06256257 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06256258 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06256259 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06256260 537.99652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06256261 537.99658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06256262 537.99658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06256263 537.99658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06256264 537.99658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06256265 537.99664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06256266 537.99664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06256267 537.99664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06256268 537.99664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06256269 537.99670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06256270 537.99670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06256271 537.99670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06256272 537.99670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06256273 537.99676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06256274 537.99676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06256275 537.99676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06256276 537.99676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06256277 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06256278 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06256279 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06256280 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06256281 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06256282 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06256283 537.99682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06256284 537.99688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06256285 537.99688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06256286 537.99688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06256287 537.99694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06256288 537.99694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06256289 537.99694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06256290 537.99694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06256291 537.99700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06256292 537.99700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06256293 537.99700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06256294 537.99700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06256295 537.99707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06256296 537.99707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06256297 537.99707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06256298 537.99707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06256299 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06256300 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06256301 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06256302 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06256303 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06256304 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06256305 537.99713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06256306 537.99719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06256307 537.99719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06256308 537.99719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06256309 537.99725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06256310 537.99725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06256311 537.99725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06256312 537.99725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06256313 537.99731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06256314 537.99731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06256315 537.99731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06256316 537.99731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06256317 537.99737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06256318 537.99737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06256319 537.99737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06256320 537.99737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06256321 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06256322 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06256323 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06256324 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06256325 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06256326 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06256327 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06256328 537.99743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06256329 537.99749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06256330 537.99749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06256331 537.99749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06256332 537.99749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06256333 537.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06256334 537.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06256335 537.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06256336 537.99755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06256337 537.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06256338 537.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06256339 537.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06256340 537.99761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06256341 537.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06256342 537.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06256343 537.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06256344 537.99768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06256345 537.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06256346 537.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06256347 537.99774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06256348 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06256349 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06256350 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06256351 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06256352 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06256353 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06256354 537.99780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06256355 537.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06256356 537.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06256357 537.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06256358 537.99786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06256359 537.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06256360 537.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06256361 537.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06256362 537.99792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06256363 537.99798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06256364 537.99798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06256965 538.00653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06256966 538.00653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06256967 538.00659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06256968 538.00659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06256969 538.00659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06256970 538.00659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06256971 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06256972 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06256973 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06256974 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06256975 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06256976 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06256977 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06256978 538.00665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06256979 538.00671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -06256980 538.00671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -06256981 538.00677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -06256982 538.00677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -06256983 538.00677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -06256984 538.00677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -06256985 538.00683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -06256986 538.00683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -06256987 538.00683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -06256988 538.00683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -06256989 538.00689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -06256990 538.00689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -06256991 538.00689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -06256992 538.00689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -06256993 538.00695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -06256994 538.00695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -06256995 538.00695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -06256996 538.00695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -06256997 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -06256998 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -06256999 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -06257000 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -06257001 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -06257002 538.00701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -06257003 538.00708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -06257004 538.00708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -06257005 538.00708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -06257006 538.00708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -06257007 538.00714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -06257008 538.00714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -06259571 538.04229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -06259572 538.04229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea08 -06259573 538.04229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -06259574 538.04229736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea18 -06259575 538.04235840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -06259576 538.04235840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea28 -06259577 538.04235840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -06259578 538.04235840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea38 -06259579 538.04241943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -06259580 538.04241943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea48 -06259581 538.04241943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -06259582 538.04241943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea58 -06259583 538.04248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -06259584 538.04248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea68 -06259585 538.04248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -06259586 538.04248047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea78 -06259587 538.04254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -06259588 538.04254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea88 -06259589 538.04254150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -06259590 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xea98 -06259591 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -06259592 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa8 -06259593 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -06259594 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab8 -06259595 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -06259596 538.04260254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac8 -06259597 538.04266357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -06259598 538.04266357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xead8 -06259599 538.04266357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -06259600 538.04266357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae8 -06259601 538.04272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -06259602 538.04272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf8 -06259603 538.04272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -06259604 538.04272461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb08 -06259605 538.04278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -06259606 538.04278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb18 -06259607 538.04278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -06259608 538.04278564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb28 -06259609 538.04284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -06259610 538.04284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb38 -06259611 538.04284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -06259612 538.04284668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb48 -06259613 538.04290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -06259614 538.04290771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb58 -06262125 538.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -06262126 538.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139d8 -06262127 538.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -06262128 538.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139e8 -06262129 538.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -06262130 538.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x139f8 -06262131 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -06262132 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a08 -06262133 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -06262134 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a18 -06262135 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -06262136 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a28 -06262137 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -06262138 538.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a38 -06262139 538.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -06262140 538.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a48 -06262141 538.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -06262142 538.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a58 -06262143 538.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -06262144 538.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a68 -06262145 538.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -06262146 538.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a78 -06262147 538.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -06262148 538.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a88 -06262149 538.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -06262150 538.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a98 -06262151 538.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -06262152 538.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13aa8 -06262153 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -06262154 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ab8 -06262155 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -06262156 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ac8 -06262157 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -06262158 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ad8 -06262159 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -06262160 538.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ae8 -06262161 538.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -06262162 538.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13af8 -06262163 538.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -06262164 538.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b08 -06262165 538.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -06262166 538.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b18 -06262167 538.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -06262168 538.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b28 -06264679 538.11389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -06264680 538.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -06264681 538.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -06264682 538.11395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -06264683 538.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -06264684 538.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -06264685 538.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -06264686 538.11401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -06264687 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e8 -06264688 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e8 -06264689 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f8 -06264690 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f8 -06264691 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a08 -06264692 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a08 -06264693 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a18 -06264694 538.11407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a18 -06264695 538.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a28 -06264696 538.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a28 -06264697 538.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a38 -06264698 538.11413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a38 -06264699 538.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a48 -06264700 538.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a48 -06264701 538.11419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a58 -06264702 538.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a58 -06264703 538.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a68 -06264704 538.11425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a68 -06264705 538.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a78 -06264706 538.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a78 -06264707 538.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -06264708 538.11431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -06264709 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -06264710 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -06264711 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -06264712 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -06264713 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -06264714 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -06264715 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -06264716 538.11437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -06264717 538.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad8 -06264718 538.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad8 -06264719 538.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae8 -06264720 538.11444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae8 -06264721 538.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af8 -06264722 538.11450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af8 -06267361 538.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -06267362 538.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd78 -06267363 538.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd88 -06267364 538.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd88 -06267365 538.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd98 -06267366 538.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd98 -06267367 538.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda8 -06267368 538.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dda8 -06267369 538.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb8 -06267370 538.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddb8 -06267371 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc8 -06267372 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddc8 -06267373 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd8 -06267374 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddd8 -06267375 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde8 -06267376 538.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dde8 -06267377 538.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf8 -06267378 538.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ddf8 -06267379 538.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de08 -06267380 538.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de08 -06267381 538.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de18 -06267382 538.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de18 -06267383 538.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de28 -06267384 538.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de28 -06267385 538.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de38 -06267386 538.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de38 -06267387 538.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de48 -06267388 538.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de48 -06267389 538.15246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de58 -06267390 538.15246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de58 -06267391 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de68 -06267392 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de68 -06267393 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de78 -06267394 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de78 -06267395 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de88 -06267396 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de88 -06267397 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de98 -06267398 538.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de98 -06267399 538.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea8 -06267400 538.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea8 -06267401 538.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb8 -06267402 538.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb8 -06267403 538.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec8 -06267404 538.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec8 -06271003 538.20397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f48 -06271004 538.20397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f48 -06271005 538.20397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f58 -06271006 538.20397949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f58 -06271007 538.20404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f68 -06271008 538.20404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f68 -06271009 538.20404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f78 -06271010 538.20404053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f78 -06271011 538.20410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f88 -06271012 538.20410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f88 -06271013 538.20410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f98 -06271014 538.20410156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f98 -06271015 538.20416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa8 -06271016 538.20416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa8 -06271017 538.20416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb8 -06271018 538.20416260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb8 -06271019 538.20422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc8 -06271020 538.20422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc8 -06271021 538.20422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd8 -06271022 538.20422363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd8 -06271023 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe8 -06271024 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fe8 -06271025 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff8 -06271026 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ff8 -06271027 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25008 -06271028 538.20428467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25008 -06271029 538.20434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25018 -06271030 538.20434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25018 -06271031 538.20434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25028 -06271032 538.20434570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25028 -06271033 538.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25038 -06271034 538.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25038 -06271035 538.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25048 -06271036 538.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25048 -06271037 538.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25058 -06271038 538.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25058 -06271039 538.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25068 -06271040 538.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25068 -06271041 538.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25078 -06271042 538.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25078 -06271043 538.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25088 -06271044 538.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25088 -06271045 538.20458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -06271046 538.20458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25098 -06287236 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -06287237 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -06287238 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -06287239 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -06287240 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -06287241 538.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -06287242 538.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -06287243 538.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -06287244 538.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -06287245 538.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -06287246 538.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -06287247 538.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -06287248 538.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -06287249 538.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -06287250 538.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -06287251 538.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -06287252 538.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -06287253 538.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -06287254 538.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -06287255 538.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -06287256 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -06287257 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -06287258 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -06287259 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -06287260 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -06287261 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -06287262 538.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -06287263 538.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -06287264 538.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -06287265 538.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -06287266 538.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -06287267 538.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -06287268 538.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -06287269 538.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -06287270 538.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -06287271 538.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b88 -06287272 538.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -06287273 538.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b98 -06287274 538.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -06287275 538.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ba8 -06287276 538.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -06287277 538.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bb8 -06287278 538.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -06287279 538.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44bc8 -06290814 538.48937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba48 -06290815 538.48937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba48 -06290816 538.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -06290817 538.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -06290818 538.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba68 -06290819 538.48944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba68 -06290820 538.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba78 -06290821 538.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba78 -06290822 538.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba88 -06290823 538.48950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba88 -06290824 538.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba98 -06290825 538.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba98 -06290826 538.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa8 -06290827 538.48956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa8 -06290828 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab8 -06290829 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab8 -06290830 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac8 -06290831 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac8 -06290832 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -06290833 538.48962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -06290834 538.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -06290835 538.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -06290836 538.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -06290837 538.48968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -06290838 538.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -06290839 538.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -06290840 538.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -06290841 538.48974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -06290842 538.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -06290843 538.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -06290844 538.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -06290845 538.48980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -06290846 538.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -06290847 538.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -06290848 538.48986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -06290849 538.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -06290850 538.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -06290851 538.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -06290852 538.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -06290853 538.48992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -06290854 538.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb88 -06290855 538.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb88 -06290856 538.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb98 -06290857 538.48999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb98 -06293756 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -06293757 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -06293758 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -06293759 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -06293760 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -06293761 538.53540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -06293762 538.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -06293763 538.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -06293764 538.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -06293765 538.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -06293766 538.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -06293767 538.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -06293768 538.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -06293769 538.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -06293770 538.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -06293771 538.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -06293772 538.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -06293773 538.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -06293774 538.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -06293775 538.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -06293776 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -06293777 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -06293778 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -06293779 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -06293780 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f8 -06293781 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f8 -06293782 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51708 -06293783 538.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51708 -06293784 538.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51718 -06293785 538.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51718 -06293786 538.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51728 -06293787 538.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51728 -06293788 538.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51738 -06293789 538.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51738 -06293790 538.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51748 -06293791 538.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51748 -06293792 538.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51758 -06293793 538.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51758 -06293794 538.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51768 -06293795 538.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51768 -06293796 538.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51778 -06293797 538.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51778 -06293798 538.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51788 -06293799 538.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51788 -06294492 539.95062256 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294493 539.95068359 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294494 539.95074463 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294495 539.95074463 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06294496 539.95086670 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294497 539.95086670 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06294498 539.95092773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294499 539.95092773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06294500 540.23846436 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06294501 540.26000977 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294502 540.26000977 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294503 541.10925293 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06294504 541.10980225 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06294505 542.26208496 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06294506 542.28094482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294507 542.28094482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294508 542.45788574 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294509 542.45794678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294510 542.45794678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06294511 542.45794678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06294512 542.45812988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294513 542.45812988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06294514 542.45819092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06294515 542.45819092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06294516 543.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06294517 543.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06294518 543.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06294519 543.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06294520 543.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06294521 543.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06294522 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06294523 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06294524 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06294525 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06294526 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06294527 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06294528 543.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06294529 543.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06294530 543.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06294531 543.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06294532 543.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06294533 543.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06294534 543.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06294535 543.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06294536 543.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06294537 543.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06294538 543.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06294539 543.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06294540 543.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06294541 543.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06294542 543.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06294543 543.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06294544 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06294545 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06294546 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06294547 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06294548 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06294549 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06294550 543.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06294551 543.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06294552 543.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06294553 543.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06294554 543.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06294555 543.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06294556 543.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06294557 543.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06294558 543.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06294559 543.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06294560 543.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06294561 543.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06294562 543.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06294563 543.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06294564 543.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06294565 543.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06294566 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06294567 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06294568 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06294569 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06294570 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06294571 543.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06294572 543.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06294573 543.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06294574 543.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06294575 543.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06294576 543.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06294577 543.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06294578 543.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06294579 543.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06294580 543.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06294581 543.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06294582 543.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06294583 543.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06294584 543.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06294585 543.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06294586 543.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06294587 543.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06294588 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06294589 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06294590 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06294591 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06294592 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06294593 543.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06294594 543.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06294595 543.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06294596 543.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06294597 543.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06294598 543.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06294599 543.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06294600 543.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06294601 543.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06294602 543.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06294603 543.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06294604 543.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06294605 543.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06294606 543.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06294607 543.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06294608 543.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06294609 543.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06294610 543.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06294611 543.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06294612 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06294613 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06294614 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06294615 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06294616 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06294617 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06294618 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06294619 543.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06294620 543.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06294621 543.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06294622 543.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06294623 543.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06294624 543.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06294625 543.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06294626 543.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06294627 543.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06294628 543.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06294629 543.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06294630 543.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06294631 543.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06294632 543.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06294633 543.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06294634 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06294635 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06294636 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06294637 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06294638 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06294639 543.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06294640 543.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06294641 543.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06294642 543.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06294643 543.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06294644 543.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06294645 543.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06294646 543.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06294647 543.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06294648 543.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06294649 543.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06294650 543.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06294651 543.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06294652 543.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06294653 543.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06294654 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06294655 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06294656 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06294657 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06294658 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06294659 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06294660 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06294661 543.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06294662 543.54840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06294663 543.54840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06294664 543.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06294665 543.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06294666 543.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06294667 543.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06294668 543.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06294669 543.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06294670 543.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06294671 543.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06294672 543.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06294673 543.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06294674 543.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06294675 543.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06294676 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06294677 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06294678 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06294679 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06294680 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06294681 543.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06294682 543.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06294683 543.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06294684 543.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06294685 543.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06294686 543.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06294687 543.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06294688 543.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06294689 543.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06294690 543.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06294691 543.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06294692 543.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06294693 543.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06294694 543.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06294695 543.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06294696 543.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06294697 543.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06294698 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06294699 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06294700 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06294701 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06294702 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06294703 543.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06294704 543.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06294705 543.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06294706 543.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06294707 543.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06294708 543.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06294709 543.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06294710 543.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06294711 543.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06294712 543.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06294713 543.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06294714 543.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06294715 543.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06294716 543.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06294717 543.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06294718 543.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06294719 543.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06294720 543.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06294721 543.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06294722 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06294723 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06294724 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06294725 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06294726 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06294727 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06294728 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06294729 543.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06294730 543.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06294731 543.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06294732 543.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06294733 543.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06294734 543.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06294735 543.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06294736 543.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06294737 543.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06294738 543.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06294739 543.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06294740 543.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06294741 543.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06294742 543.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06294743 543.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06294744 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06294745 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06294746 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06294747 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06294748 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06294749 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06294750 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06294751 543.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06294752 543.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06294753 543.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06294754 543.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06294755 543.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06294756 543.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06294757 543.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06294758 543.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06294759 543.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06294760 543.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06294761 543.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06294762 543.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06294763 543.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06294764 543.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06294765 543.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06294766 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06294767 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06294768 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06294769 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06294770 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06294771 543.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06294772 543.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06294773 543.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06294774 543.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06294775 543.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06294776 543.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06294777 543.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06294778 543.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06294779 543.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06294780 543.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06294781 543.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06294782 543.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06294783 543.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06294784 543.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06294785 543.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06294786 543.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06294787 543.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06294788 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06294789 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06294790 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06294791 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06294792 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06294793 543.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06294794 543.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06294795 543.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06294796 543.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06294797 543.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06294798 543.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06294799 543.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06294800 543.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06294801 543.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06294802 543.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06294803 543.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06294804 543.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06294805 543.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06294806 543.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06294807 543.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06294808 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06294809 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06294810 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06294811 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06294812 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06294813 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06294814 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06294815 543.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06294816 543.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06294817 543.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06294818 543.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06294819 543.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06294820 543.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06294821 543.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06294822 543.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06294823 543.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06294824 543.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06294825 543.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06294826 543.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06294827 543.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06294828 543.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06294829 543.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06294830 543.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06294831 543.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06294832 543.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06294833 543.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06294834 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06294835 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06294836 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06294837 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06294838 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06294839 543.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06294840 543.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06294841 543.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06294842 543.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06294843 543.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06294844 543.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06294845 543.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06294846 543.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06294847 543.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06294848 543.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06294849 543.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06294850 543.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06294851 543.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06294852 543.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06294853 543.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06294854 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06294855 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06294856 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06294857 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06294858 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06294859 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06294860 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06294861 543.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06294862 543.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06294863 543.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06294864 543.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06294865 543.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06294866 543.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06294867 543.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06294868 543.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06294869 543.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06294870 543.55139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06294871 543.55139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06294872 543.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06294873 543.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06294874 543.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06294875 543.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06294876 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06294877 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06294878 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06294879 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06294880 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06294881 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06294882 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06294883 543.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06294884 543.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06294885 543.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06294886 543.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06294887 543.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06294888 543.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06294889 543.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06294890 543.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06294891 543.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06294892 543.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06294893 543.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06294894 543.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06294895 543.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06294896 543.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06294897 543.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06294898 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06294899 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06294900 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06294901 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06294902 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06294903 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06294904 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06294905 543.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06294906 543.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06294907 543.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06294908 543.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06294909 543.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06294910 543.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06294911 543.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06294912 543.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06294913 543.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06294914 543.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06294915 543.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06294916 543.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06294917 543.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06294918 543.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06294919 543.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06294920 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06294921 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06294922 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06294923 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06294924 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06294925 543.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06294926 543.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06294927 543.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06294928 543.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06294929 543.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06294930 543.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06294931 543.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06294932 543.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06294933 543.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06294934 543.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06294935 543.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06294936 543.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06294937 543.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06294938 543.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06294939 543.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06294940 543.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06294941 543.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06294942 543.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06294943 543.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06294944 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06294945 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06294946 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06294947 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06294948 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06294949 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06294950 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06294951 543.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06294952 543.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06294953 543.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06294954 543.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06294955 543.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06294956 543.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06294957 543.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06294958 543.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06294959 543.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06294960 543.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06294961 543.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06294962 543.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06294963 543.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06294964 543.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06294965 543.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06294966 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06294967 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06294968 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06294969 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06294970 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06294971 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06294972 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06294973 543.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06294974 543.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06294975 543.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06294976 543.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06294977 543.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06294978 543.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06294979 543.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06294980 543.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06294981 543.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06294982 543.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06294983 543.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06294984 543.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06294985 543.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06294986 543.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06294987 543.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06294988 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06294989 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06294990 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06294991 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06294992 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06294993 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06294994 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06294995 543.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06294996 543.55316162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06294997 543.55316162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06294998 543.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06294999 543.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06295000 543.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06295001 543.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06295002 543.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06295003 543.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06295004 543.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06295005 543.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06295006 543.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06295007 543.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06295008 543.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06295009 543.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06295010 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06295011 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06295012 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06295013 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06295014 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06295015 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06295016 543.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06295017 543.55346680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06295018 543.55346680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06295019 543.55346680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06295020 543.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06295021 543.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06295022 543.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06295023 543.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06295024 543.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06295025 543.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06295026 543.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06295027 543.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06295028 543.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06295029 543.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06295030 543.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06295031 543.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06295032 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06295033 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06295034 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06295035 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06295036 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06295037 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06295038 543.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06295039 543.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06295040 543.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06295041 543.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06295042 543.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06295043 543.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06295044 543.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06295045 543.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06295046 543.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06295047 543.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06295048 543.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06295049 543.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06295050 543.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06295051 543.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06295052 543.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06295053 543.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06295054 543.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06295055 543.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06295056 543.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06295057 543.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06295058 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06295059 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06295060 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06295061 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06295062 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06295063 543.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06295064 543.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06295065 543.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06295066 543.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06295067 543.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06295068 543.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06295069 543.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06295070 543.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06295071 543.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06295072 543.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06295073 543.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06295074 543.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06295075 543.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06295076 543.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06295077 543.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06295078 543.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06295079 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06295080 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06295081 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06295082 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06295083 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06295084 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06295085 543.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06295086 543.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06295087 543.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06295088 543.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06295089 543.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06295090 543.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06295091 543.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06295092 543.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06295093 543.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06295094 543.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06295095 543.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06295096 543.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06295097 543.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06295098 543.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06295099 543.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06295100 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06295101 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06295102 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06295103 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06295104 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06295105 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06295106 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06295107 543.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06295108 543.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06295109 543.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06295110 543.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06295111 543.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06295112 543.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06295113 543.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06295114 543.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06295115 543.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06295116 543.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06295117 543.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06295118 543.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06295119 543.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06295120 543.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06295121 543.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06295122 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06295123 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06295124 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06295125 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06295126 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06295127 543.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06295128 543.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06295129 543.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06295130 543.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06295131 543.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06295132 543.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06295133 543.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06295134 543.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06295135 543.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06295136 543.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06295137 543.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06295138 543.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06295139 543.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06295140 543.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06295141 543.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06295142 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06295143 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06295144 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06295145 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06295146 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06295147 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06295148 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06295149 543.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06295150 543.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06295151 543.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06295152 543.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06295153 543.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06295154 543.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06295155 543.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06295156 543.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06295157 543.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06295158 543.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06295159 543.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06295160 543.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06295161 543.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06295162 543.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06295163 543.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06295164 543.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06295165 543.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06295166 543.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06295167 543.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06295168 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06295169 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06295170 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06295171 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06295172 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06295173 543.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06295174 543.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06295175 543.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06295176 543.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06295177 543.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06295178 543.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06295179 543.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06295180 543.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06295181 543.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06295182 543.55584717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06295183 543.55584717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06295184 543.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06295185 543.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06295186 543.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06295187 543.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06295188 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06295189 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06295190 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06295191 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06295192 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06295193 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06295194 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06295195 543.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06295196 543.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06295197 543.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06295198 543.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06295199 543.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06295200 543.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06295201 543.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06295202 543.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06295203 543.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06295204 543.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06295205 543.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06295206 543.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06295207 543.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06295208 543.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06295209 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06295210 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06295211 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06295212 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06295213 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06295214 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06295215 543.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06295216 543.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06295217 543.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06295218 543.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06295219 543.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06295220 543.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06295221 543.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06295222 543.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06295223 543.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06295224 543.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06295225 543.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06295226 543.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06295227 543.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06295228 543.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06295229 543.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06295230 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06295231 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06295232 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06295233 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06295234 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06295235 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06295236 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06295237 543.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06295238 543.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06295239 543.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06295240 543.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06295241 543.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06295242 543.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06295243 543.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06295244 543.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06295245 543.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06295246 543.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06295247 543.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06295248 543.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06295249 543.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06295250 543.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06295251 543.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06295252 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06295253 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06295254 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06295255 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06295256 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06295257 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06295258 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06295259 543.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06295260 543.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06295261 543.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06295262 543.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06295263 543.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06295264 543.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06295265 543.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06295266 543.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06295267 543.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06295268 543.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06295269 543.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06295270 543.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06295271 543.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06295272 543.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06295273 543.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06295274 543.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06295275 543.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06295276 543.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06295277 543.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06295278 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06295279 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06295280 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06295281 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06295282 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06295283 543.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06295284 543.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06295285 543.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06295286 543.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06295287 543.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06295288 543.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06295289 543.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06295290 543.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06295291 543.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06295292 543.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06295293 543.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06295294 543.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06295295 543.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06295296 543.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06295297 543.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06295298 543.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06295299 543.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06295300 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06295301 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06295302 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06295303 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06295304 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06295305 543.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06295306 543.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06295307 543.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06295308 543.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06295309 543.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06295310 543.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06295311 543.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06295312 543.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06295313 543.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06295314 543.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06295315 543.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06295316 543.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06295317 543.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06295318 543.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06295319 543.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06295320 543.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06295321 543.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06295322 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06295323 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06295324 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06295325 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06295326 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06295327 543.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06295328 543.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06295329 543.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06295330 543.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06295331 543.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06295332 543.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06295333 543.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06295334 543.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06295335 543.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06295336 543.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06295337 543.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06295338 543.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06295339 543.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06295340 543.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06295341 543.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06295342 543.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06295343 543.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06295344 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06295345 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06295346 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06295347 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06295348 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06295349 543.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06295350 543.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06295351 543.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06295352 543.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06295353 543.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06295354 543.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06295355 543.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06295356 543.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06295357 543.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06295358 543.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06295359 543.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06295360 543.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06295361 543.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06295362 543.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06295363 543.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06295364 543.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06295365 543.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06295366 543.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06295367 543.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06295368 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06295369 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06295370 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06295371 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06295372 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06295373 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06295374 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06295375 543.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06295376 543.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06295377 543.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06295378 543.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06295379 543.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06295380 543.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06295381 543.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06295382 543.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06295383 543.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06295384 543.55871582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06295385 543.55871582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06295386 543.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06295387 543.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06295388 543.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06295389 543.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06295390 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06295391 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06295392 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06295393 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06295394 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06295395 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06295396 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06295397 543.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06295398 543.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06295399 543.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06295400 543.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06295401 543.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06295402 543.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06295403 543.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06295404 543.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06295405 543.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06295406 543.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06295407 543.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06295408 543.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06295409 543.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06295410 543.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06295411 543.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06295412 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06295413 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06295414 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06295415 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06295416 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06295417 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06295418 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06295419 543.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06295420 543.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06295421 543.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06295422 543.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06295423 543.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06295424 543.55926514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06295425 543.55926514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06295426 543.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06295427 543.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06295428 543.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06295429 543.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06295430 543.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06295431 543.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06295432 543.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06295433 543.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06295434 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06295435 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06295436 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06295437 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06295438 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06295439 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06295440 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06295441 543.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06295442 543.55950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06295443 543.55950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06295444 543.55950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06295445 543.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06295446 543.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06295447 543.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06295448 543.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06295449 543.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06295450 543.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06295451 543.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06295452 543.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06295453 543.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06295454 543.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06295455 543.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06295456 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06295457 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06295458 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06295459 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06295460 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06295461 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06295462 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06295463 543.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06295464 543.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06295465 543.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06295466 543.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06295467 543.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06295468 543.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06295469 543.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06295470 543.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06295471 543.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06295472 543.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06295473 543.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06295474 543.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06295475 543.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06295476 543.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06295477 543.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06295478 543.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06295479 543.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06295480 543.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06295481 543.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06295482 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06295483 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06295484 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06295485 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06295486 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06295487 543.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06295488 543.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06295489 543.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06295490 543.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06295491 543.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06295492 543.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06295493 543.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06295494 543.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06295495 543.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06295496 543.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06295497 543.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06295498 543.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06295499 543.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06295500 543.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06295501 543.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06295502 543.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06295503 543.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06295504 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06295505 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06295506 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06295507 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06295508 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06295509 543.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06295510 543.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06295511 543.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06295512 543.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06295513 543.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06295514 543.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06295515 543.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06295516 543.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06295517 543.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06295518 543.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06295519 543.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06295520 543.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06295521 543.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06295522 543.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06295523 543.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06295524 543.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06295525 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06295526 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06295527 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06295528 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06295529 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06295530 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06295531 543.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06295532 543.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06295533 543.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06295534 543.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06295535 543.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06295536 543.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06295537 543.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06295538 543.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06295539 543.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06295540 543.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06295541 543.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06295542 543.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06295543 543.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06295544 543.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06295545 543.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06295546 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06295547 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06295548 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06295549 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06295550 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06295551 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06295552 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06295553 543.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06295554 543.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06295555 543.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06295556 543.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06295557 543.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06295558 543.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06295559 543.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06295560 543.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06295561 543.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06295562 543.56121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06295563 543.56121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06295564 543.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06295565 543.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06295566 543.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06295567 543.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06295568 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06295569 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06295570 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06295571 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06295572 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06295573 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06295574 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06295575 543.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06295576 543.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06295577 543.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06295578 543.56146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06295579 543.56146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06295580 543.56146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06295581 543.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06295582 543.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06295583 543.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06295584 543.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06295585 543.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06295586 543.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06295587 543.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06295588 543.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06295589 543.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06295590 543.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06295591 543.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06295592 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06295593 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06295594 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06295595 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06295596 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06295597 543.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06295598 543.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06295599 543.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06295600 543.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06295601 543.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06295602 543.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06295603 543.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06295604 543.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06295605 543.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06295606 543.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06295607 543.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06295608 543.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06295609 543.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06295610 543.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06295611 543.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06295612 543.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06295613 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06295614 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06295615 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06295616 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06295617 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06295618 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06295619 543.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06295620 543.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06295621 543.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06295622 543.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06295623 543.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06295624 543.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06295625 543.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06295626 543.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06295627 543.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06295628 543.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06295629 543.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06295630 543.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06295631 543.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06295632 543.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06295633 543.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06295634 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06295635 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06295636 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06295637 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06295638 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06295639 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06295640 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06295641 543.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06295642 543.56237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06295643 543.56237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06295644 543.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06295645 543.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06295646 543.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06295647 543.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06295648 543.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06295649 543.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06295650 543.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06295651 543.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06295652 543.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06295653 543.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06295654 543.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06295655 543.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06295656 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06295657 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06295658 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06295659 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06295660 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06295661 543.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06295662 543.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06295663 543.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06295664 543.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06295665 543.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06295666 543.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06295667 543.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06295668 543.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06295669 543.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06295670 543.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06295671 543.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06295672 543.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06295673 543.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06295674 543.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06295675 543.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06295676 543.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06295677 543.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06295678 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06295679 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06295680 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06295681 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06295682 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06295683 543.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06295684 543.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06295685 543.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06295686 543.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06295687 543.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06295688 543.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06295689 543.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06295690 543.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06295691 543.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06295692 543.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06295693 543.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06295694 543.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06295695 543.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06295696 543.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06295697 543.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06295698 543.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06295699 543.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06295700 543.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06295701 543.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06295702 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06295703 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06295704 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06295705 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06295706 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06295707 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06295708 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06295709 543.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06295710 543.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06295711 543.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06295712 543.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06295713 543.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06295714 543.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06295715 543.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06295716 543.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06295717 543.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06295718 543.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06295719 543.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06295720 543.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06295721 543.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06295722 543.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06295723 543.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06295724 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06295725 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06295726 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06295727 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06295728 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06295729 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06295730 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06295731 543.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06295732 543.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06295733 543.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06295734 543.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06295735 543.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06295736 543.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06295737 543.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06295738 543.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06295739 543.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06295740 543.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06295741 543.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06295742 543.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06295743 543.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06295744 543.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06295745 543.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06295746 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06295747 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06295748 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06295749 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06295750 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06295751 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06295752 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06295753 543.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06295754 543.56396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06295755 543.56396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06295756 543.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06295757 543.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06295758 543.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06295759 543.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06295760 543.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06295761 543.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06295762 543.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06295763 543.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06295764 543.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06295765 543.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06295766 543.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06295767 543.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06295768 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06295769 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06295770 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06295771 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06295772 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06295773 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06295774 543.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06295775 543.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06295776 543.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06295777 543.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06295778 543.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06295779 543.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06295780 543.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06295781 543.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06295782 543.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06295783 543.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06295784 543.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06295785 543.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06295786 543.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06295787 543.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06295788 543.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06295789 543.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06295790 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06295791 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06295792 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06295793 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06295794 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06295795 543.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06295796 543.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06295797 543.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06295798 543.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06295799 543.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06295800 543.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06295801 543.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06295802 543.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06295803 543.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06295804 543.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06295805 543.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06295806 543.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06295807 543.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06295808 543.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06295809 543.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06295810 543.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06295811 543.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06295812 543.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06295813 543.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06295814 543.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06295815 543.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06295816 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06295817 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06295818 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06295819 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06295820 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06295821 543.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06295822 543.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06295823 543.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06295824 543.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06295825 543.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06295826 543.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06295827 543.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06295828 543.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06295829 543.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06295830 543.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06295831 543.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06295832 543.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06295833 543.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06295834 543.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06295835 543.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06295836 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06295837 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06295838 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06295839 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06295840 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06295841 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06295842 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06295843 543.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06295844 543.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06295845 543.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06295846 543.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06295847 543.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06295848 543.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06295849 543.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06295850 543.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06295851 543.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06295852 543.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06295853 543.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06295854 543.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06295855 543.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06295856 543.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06295857 543.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06295858 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06295859 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06295860 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06295861 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06295862 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06295863 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06295864 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06295865 543.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06295866 543.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06295867 543.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06295868 543.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06295869 543.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06295870 543.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06295871 543.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06295872 543.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06295873 543.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06295874 543.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06295875 543.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06295876 543.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06295877 543.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06295878 543.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06295879 543.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06295880 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06295881 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06295882 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06295883 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06295884 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06295885 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06295886 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06295887 543.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06295888 543.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06295889 543.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06295890 543.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06295891 543.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06295892 543.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06295893 543.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06295894 543.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06295895 543.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06295896 543.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06295897 543.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06295898 543.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06295899 543.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06295900 543.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06295901 543.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06295902 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06295903 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06295904 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06295905 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06295906 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06295907 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06295908 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06295909 543.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06295910 543.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06295911 543.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06295912 543.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06295913 543.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06295914 543.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06295915 543.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06295916 543.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06295917 543.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06295918 543.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06295919 543.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06295920 543.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06295921 543.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06295922 543.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06295923 543.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06295924 543.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06295925 543.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06295926 543.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06295927 543.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06295928 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06295929 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06295930 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06295931 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06295932 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06295933 543.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06295934 543.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06295935 543.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06295936 543.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06295937 543.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06295938 543.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06295939 543.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06295940 543.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06295941 543.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06295942 543.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06295943 543.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06295944 543.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06295945 543.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06295946 543.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06295947 543.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06295948 543.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06295949 543.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06295950 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06295951 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06295952 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06295953 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06295954 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06295955 543.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06295956 543.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06295957 543.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06295958 543.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06295959 543.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06295960 543.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06295961 543.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06295962 543.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06295963 543.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06295964 543.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06295965 543.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06295966 543.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06295967 543.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06295968 543.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06295969 543.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06295970 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06295971 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06295972 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06295973 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06295974 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06295975 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06295976 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06295977 543.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06295978 543.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06295979 543.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06295980 543.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06295981 543.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06295982 543.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06295983 543.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06295984 543.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06295985 543.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06295986 543.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06295987 543.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06295988 543.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06295989 543.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06295990 543.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06295991 543.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06295992 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06295993 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06295994 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06295995 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06295996 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06295997 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06295998 543.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06295999 543.56744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06296000 543.56744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06296001 543.56744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06296002 543.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06296003 543.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06296004 543.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06296005 543.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06296006 543.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06296007 543.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06296008 543.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06296009 543.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06296010 543.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06296011 543.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06296012 543.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06296013 543.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06296014 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06296015 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06296016 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06296017 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06296018 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06296019 543.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06296020 543.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06296021 543.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06296022 543.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06296023 543.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06296024 543.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06296025 543.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06296026 543.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06296027 543.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06296028 543.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06296029 543.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06296030 543.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06296031 543.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06296032 543.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06296033 543.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06296034 543.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06296035 543.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06296036 543.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06296037 543.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06296038 543.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06296039 543.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06296040 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06296041 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06296042 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06296043 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06296044 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06296045 543.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06296046 543.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06296047 543.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06296048 543.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06296049 543.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06296050 543.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06296051 543.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06296052 543.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06296053 543.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06296054 543.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06296055 543.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06296056 543.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06296057 543.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06296058 543.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06296059 543.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06296060 543.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06296061 543.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06296062 543.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06296063 543.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06296064 543.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06296065 543.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06296066 543.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06296067 543.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06296068 543.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06296069 543.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06296070 543.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06296071 543.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06296072 543.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06296073 543.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06296074 543.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06296075 543.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06296076 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06296077 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06296078 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06296079 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06296080 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06296081 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06296082 543.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06296083 543.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06296084 543.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06296085 543.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06296086 543.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06296087 543.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06296088 543.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06296089 543.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06296090 543.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06296091 543.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06296092 543.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06296093 543.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06296094 543.56890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06296095 543.56890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06296096 543.56890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06296097 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06296098 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06296099 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06296100 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06296101 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06296102 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06296103 543.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06296104 543.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06296105 543.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06296106 543.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06296107 543.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06296108 543.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06296109 543.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06296110 543.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06296111 543.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06296112 543.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06296113 543.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06296114 543.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06296115 543.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06296116 543.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06296117 543.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06296118 543.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06296119 543.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06296120 543.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06296121 543.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06296122 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06296123 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06296124 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06296125 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06296126 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06296127 543.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06296128 543.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06296129 543.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06296130 543.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06296131 543.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06296132 543.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06296133 543.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06296134 543.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06296135 543.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06296136 543.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06296137 543.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06296138 543.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06296139 543.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06296140 543.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06296141 543.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06296142 543.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06296143 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06296144 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06296145 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06296146 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06296147 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06296148 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06296149 543.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06296150 543.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06296151 543.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06296152 543.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06296153 543.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06296154 543.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06296155 543.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06296156 543.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06296157 543.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06296158 543.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06296159 543.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06296160 543.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06296161 543.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06296162 543.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06296163 543.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06296164 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06296165 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06296166 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06296167 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06296168 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06296169 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06296170 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06296171 543.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06296172 543.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06296173 543.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06296174 543.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06296175 543.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06296176 543.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06296177 543.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06296178 543.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06296179 543.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06296180 543.57012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06296181 543.57012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06296182 543.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06296183 543.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06296184 543.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06296185 543.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06296186 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06296187 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06296188 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06296189 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06296190 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06296191 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06296192 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06296193 543.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06296194 543.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06296195 543.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06296196 543.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06296197 543.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06296198 543.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06296199 543.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06296200 543.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06296201 543.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06296202 543.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06296203 543.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06296204 543.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06296205 543.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06296206 543.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06296207 543.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06296208 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06296209 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06296210 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06296211 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06296212 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06296213 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06296214 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06296215 543.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06296216 543.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06296217 543.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06296218 543.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06296219 543.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06296220 543.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06296221 543.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06296222 543.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06296223 543.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06296224 543.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06296225 543.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06296226 543.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06296227 543.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06296228 543.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06296229 543.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06296230 543.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06296231 543.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06296232 543.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06296233 543.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06296234 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06296235 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06296236 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06296237 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06296238 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06296239 543.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06296240 543.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06296241 543.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06296242 543.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06296243 543.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06296244 543.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06296245 543.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06296246 543.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06296247 543.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06296248 543.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06296249 543.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06296250 543.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06296251 543.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06296252 543.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06296253 543.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06296254 543.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06296255 543.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06296256 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06296257 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06296258 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06296259 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06296260 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06296261 543.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06296262 543.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06296263 543.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06296264 543.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06296265 543.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06296266 543.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06296267 543.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06296268 543.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06296269 543.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06296270 543.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06296271 543.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06296272 543.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06296273 543.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06296274 543.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06296275 543.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06296276 543.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06296277 543.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06296278 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06296279 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06296280 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06296281 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06296282 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06296283 543.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06296284 543.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06296285 543.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06296286 543.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06296287 543.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06296288 543.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06296289 543.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06296290 543.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06296291 543.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06296292 543.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06296293 543.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06296294 543.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06296295 543.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06296296 543.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06296297 543.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06296298 543.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06296299 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06296300 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06296301 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06296302 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06296303 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06296304 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06296305 543.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06296306 543.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06296307 543.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06296308 543.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06296309 543.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06296310 543.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06296311 543.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06296312 543.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06296313 543.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06296314 543.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06296315 543.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06296316 543.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06296317 543.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06296318 543.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06296319 543.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06296320 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06296321 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06296322 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06296323 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06296324 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06296325 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06296326 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06296327 543.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06296328 543.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06296329 543.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06296330 543.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06296331 543.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06296332 543.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06296333 543.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06296334 543.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06296335 543.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06296336 543.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06296337 543.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06296338 543.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06296339 543.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06296340 543.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06296341 543.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06296342 543.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06296343 543.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06296344 543.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06296345 543.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06296346 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06296347 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06296348 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06296349 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06296350 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06296351 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06296352 543.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06296353 543.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06296354 543.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06296355 543.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06296356 543.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06296357 543.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06296358 543.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06296359 543.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06296360 543.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06296361 543.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06296362 543.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06296363 543.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06296364 543.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06296365 543.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06296366 543.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06296367 543.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06296368 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06296369 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06296370 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06296371 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06296372 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06296373 543.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06296374 543.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06296375 543.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06296376 543.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06296377 543.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06296378 543.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06296379 543.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06296380 543.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06296381 543.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06296382 543.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06296383 543.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06296384 543.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06296385 543.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06296386 543.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06296387 543.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06296388 543.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06296389 543.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06296390 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06296391 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06296392 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06296393 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06296394 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06296395 543.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06296396 543.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06296397 543.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06296398 543.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06296399 543.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06296400 543.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06296401 543.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06296402 543.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06296403 543.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06296404 543.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06296405 543.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06296406 543.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06296407 543.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06296408 543.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06296409 543.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06296410 543.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06296411 543.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06296412 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06296413 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06296414 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06296415 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06296416 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06296417 543.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06296418 543.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06296419 543.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06296420 543.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06296421 543.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06296422 543.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06296423 543.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06296424 543.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06296425 543.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06296426 543.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06296427 543.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06296428 543.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06296429 543.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06296430 543.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06296431 543.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06296432 543.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06296433 543.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06296434 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06296435 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06296436 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06296437 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06296438 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06296439 543.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06296440 543.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06296441 543.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06296442 543.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06296443 543.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06296444 543.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06296445 543.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06296446 543.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06296447 543.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06296448 543.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06296449 543.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06296450 543.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06296451 543.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06296452 543.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06296453 543.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06296454 543.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06296455 543.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06296456 543.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06296457 543.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06296458 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06296459 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06296460 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06296461 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06296462 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06296463 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06296464 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06296465 543.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06296466 543.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06296467 543.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06296468 543.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06296469 543.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06296470 543.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06296471 543.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06296472 543.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06296473 543.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06296474 543.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06296475 543.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06296476 543.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06296477 543.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06296478 543.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06296479 543.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06296480 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06296481 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06296482 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06296483 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06296484 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06296485 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06296486 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06296487 543.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06296488 543.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06296489 543.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06296490 543.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06296491 543.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06296492 543.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06296493 543.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06296494 543.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06296495 543.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06296496 543.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06296497 543.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06296498 543.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06296499 543.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06296500 543.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06296501 543.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06296502 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06296503 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06296504 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06296505 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06296506 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06296507 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06296508 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06296509 543.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06296510 543.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06296511 543.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06296512 543.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06296513 543.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06296514 543.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06296515 543.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06296516 543.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06296517 543.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06296518 543.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06296519 543.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06296520 543.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06296521 543.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06296522 543.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06296523 543.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06296524 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06296525 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06296526 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06296527 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06296528 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06296529 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06296530 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06296531 543.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06296532 543.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06296533 543.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06296534 543.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06296535 543.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06296536 543.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06296537 543.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06296538 543.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06296539 543.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06296540 543.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06296541 543.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06296542 543.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06296543 543.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06296544 543.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06296545 543.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06296546 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06296547 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06296548 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06296549 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06296550 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06296551 543.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06296552 543.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06296553 543.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06296554 543.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06296555 543.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06296556 543.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06296557 543.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06296558 543.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06296559 543.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06296560 543.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06296561 543.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06296562 543.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06296563 543.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06296564 543.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06296565 543.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06296566 543.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06296567 543.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06296568 543.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06296569 543.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06296570 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06296571 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06296572 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06296573 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06296574 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06296575 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06296576 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06296577 543.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06296578 543.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06296579 543.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06296580 543.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06296581 543.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06296582 543.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06296583 543.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06296584 543.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06296585 543.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06296586 543.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06296587 543.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06296588 543.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06296589 543.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06296590 543.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06296591 543.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06296592 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06296593 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06296594 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06296595 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06296596 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06296597 543.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06296598 543.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06296599 543.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06296600 543.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06296601 543.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06296602 543.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06296603 543.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06296604 543.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06296605 543.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06296606 543.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06296607 543.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06296608 543.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06296609 543.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06296610 543.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06296611 543.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06296612 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06296613 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06296614 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06296615 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06296616 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06296617 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06296618 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06296619 543.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06296620 543.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06296621 543.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06296622 543.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06296623 543.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06296624 543.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06296625 543.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06296626 543.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06296627 543.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06296628 543.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06296629 543.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06296630 543.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06296631 543.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06296632 543.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06296633 543.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06296634 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06296635 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06296636 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06296637 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06296638 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06296639 543.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06296640 543.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06296641 543.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06296642 543.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06296643 543.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06296644 543.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06296645 543.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06296646 543.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06296647 543.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06296648 543.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06296649 543.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06296650 543.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06296651 543.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06296652 543.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06296653 543.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06296654 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06296655 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06296656 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06296657 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06296658 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06296659 543.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06296660 543.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06296661 543.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06296662 543.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06296663 543.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06296664 543.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06296665 543.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06296666 543.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06296667 543.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06296668 543.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06296669 543.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06296670 543.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06296671 543.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06296672 543.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06296673 543.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06296674 543.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06296675 543.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06296676 543.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06296677 543.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06296678 543.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06296679 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06296680 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06296681 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06296682 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06296683 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06296684 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06296685 543.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06296686 543.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06296687 543.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06296688 543.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06296689 543.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06296690 543.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06296691 543.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06296692 543.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06296693 543.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06296694 543.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06296695 543.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06296696 543.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06296697 543.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06296698 543.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06296699 543.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06296700 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06296701 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06296702 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06296703 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06296704 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06296705 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06296706 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06296707 543.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06296708 543.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06296709 543.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06296710 543.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06296711 543.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06296712 543.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06296713 543.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06296714 543.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06296715 543.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06296716 543.57775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06296717 543.57775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06296718 543.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06296719 543.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06296720 543.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06296721 543.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06296722 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06296723 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06296724 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06296725 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06296726 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06296727 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06296728 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06296729 543.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06296730 543.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06296731 543.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06296732 543.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06296733 543.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06296734 543.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06296735 543.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06296736 543.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06296737 543.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06296738 543.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06296739 543.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06296740 543.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06296741 543.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06296742 543.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06296743 543.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06296744 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06296745 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06296746 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06296747 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06296748 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06296749 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06296750 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06296751 543.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06296752 543.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06296753 543.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06296754 543.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06296755 543.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06296756 543.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06296757 543.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06296758 543.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06296759 543.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06296760 543.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06296761 543.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06296762 543.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06296763 543.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06296764 543.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06296765 543.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06296766 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06296767 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06296768 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06296769 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06296770 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06296771 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06296772 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06296773 543.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06296774 543.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06296775 543.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06296776 543.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06296777 543.57861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06296778 543.57861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06296779 543.57861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06296780 543.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06296781 543.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06296782 543.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06296783 543.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06296784 543.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06296785 543.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06296786 543.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06296787 543.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06296788 543.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06296789 543.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06296790 543.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06296791 543.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06296792 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06296793 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06296794 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06296795 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06296796 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06296797 543.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06296798 543.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06296799 543.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06296800 543.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06296801 543.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06296802 543.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06296803 543.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06296804 543.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06296805 543.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06296806 543.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06296807 543.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06296808 543.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06296809 543.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06296810 543.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06296811 543.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06296812 543.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06296813 543.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06296814 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06296815 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06296816 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06296817 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06296818 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06296819 543.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06296820 543.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06296821 543.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06296822 543.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06296823 543.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06296824 543.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06296825 543.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06296826 543.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06296827 543.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06296828 543.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06296829 543.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06296830 543.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06296831 543.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06296832 543.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06296833 543.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06296834 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06296835 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06296836 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06296837 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06296838 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06296839 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06296840 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06296841 543.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06296842 543.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06296843 543.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06296844 543.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06296845 543.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06296846 543.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06296847 543.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06296848 543.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06296849 543.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06296850 543.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06296851 543.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06296852 543.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06296853 543.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06296854 543.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06296855 543.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06296856 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06296857 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06296858 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06296859 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06296860 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06296861 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06296862 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06296863 543.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06296864 543.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06296865 543.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06296866 543.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06296867 543.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06296868 543.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06296869 543.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06296870 543.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06296871 543.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06296872 543.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06296873 543.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06296874 543.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06296875 543.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06296876 543.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06296877 543.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06296878 543.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06296879 543.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06296880 543.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06296881 543.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06296882 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06296883 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06296884 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06296885 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06296886 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06296887 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06296888 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06296889 543.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06296890 543.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06296891 543.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06296892 543.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06296893 543.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06296894 543.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06296895 543.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06296896 543.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06296897 543.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06296898 543.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06296899 543.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06296900 543.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06296901 543.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06296902 543.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06296903 543.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06296904 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06296905 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06296906 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06296907 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06296908 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06296909 543.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06296910 543.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06296911 543.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06296912 543.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06296913 543.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06296914 543.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06296915 543.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06296916 543.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06296917 543.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06296918 543.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06296919 543.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06296920 543.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06296921 543.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06296922 543.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06296923 543.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06296924 543.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06296925 543.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06296926 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06296927 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06296928 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06296929 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06296930 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06296931 543.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06296932 543.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06296933 543.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06296934 543.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06296935 543.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06296936 543.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06296937 543.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06296938 543.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06296939 543.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06296940 543.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06296941 543.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06296942 543.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06296943 543.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06296944 543.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06296945 543.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06296946 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06296947 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06296948 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06296949 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06296950 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06296951 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06296952 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06296953 543.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06296954 543.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06296955 543.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06296956 543.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06296957 543.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06296958 543.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06296959 543.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06296960 543.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06296961 543.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06296962 543.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06296963 543.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06296964 543.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06296965 543.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06296966 543.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06296967 543.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06296968 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06296969 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06296970 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06296971 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06296972 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06296973 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06296974 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06296975 543.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06296976 543.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06296977 543.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06296978 543.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06296979 543.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06296980 543.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06296981 543.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06296982 543.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06296983 543.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06296984 543.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06296985 543.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06296986 543.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06296987 543.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06296988 543.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06296989 543.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06296990 543.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06296991 543.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06296992 543.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06296993 543.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06296994 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06296995 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06296996 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06296997 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06296998 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06296999 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06297000 543.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06297001 543.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06297002 543.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06297003 543.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06297004 543.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06297005 543.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06297006 543.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06297007 543.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06297008 543.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06297009 543.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06297010 543.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06297011 543.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06297012 543.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06297013 543.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06297014 543.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06297015 543.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06297016 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06297017 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06297018 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06297019 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06297020 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06297021 543.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06297022 543.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06297023 543.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06297024 543.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06297025 543.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06297026 543.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06297027 543.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06297028 543.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06297029 543.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06297030 543.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06297031 543.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06297032 543.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06297033 543.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06297034 543.58227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06297035 543.58227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06297036 543.58227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06297037 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06297038 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06297039 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06297040 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06297041 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06297042 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06297043 543.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06297044 543.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06297045 543.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06297046 543.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06297047 543.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06297048 543.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06297049 543.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06297050 543.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06297051 543.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06297052 543.58251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06297053 543.58251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06297054 543.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06297055 543.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06297056 543.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06297057 543.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06297058 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06297059 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06297060 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06297061 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06297062 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06297063 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06297064 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06297065 543.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06297066 543.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06297067 543.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06297068 543.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06297069 543.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06297070 543.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06297071 543.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06297072 543.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06297073 543.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06297074 543.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06297075 543.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06297076 543.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06297077 543.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06297078 543.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06297079 543.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06297080 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06297081 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06297082 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06297083 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06297084 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06297085 543.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06297086 543.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06297087 543.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06297088 543.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06297089 543.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06297090 543.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06297091 543.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06297092 543.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06297093 543.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06297094 543.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06297095 543.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06297096 543.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06297097 543.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06297098 543.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06297099 543.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06297100 543.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06297101 543.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06297102 543.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06297103 543.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06297104 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06297105 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06297106 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06297107 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06297108 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06297109 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06297110 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06297111 543.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06297112 543.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06297113 543.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06297114 543.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06297115 543.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06297116 543.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06297117 543.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06297118 543.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06297119 543.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06297120 543.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06297121 543.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06297122 543.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06297123 543.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06297124 543.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06297125 543.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06297126 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06297127 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06297128 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06297129 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06297130 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06297131 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06297132 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06297133 543.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06297134 543.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06297135 543.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06297136 543.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06297137 543.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06297138 543.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06297139 543.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06297140 543.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06297141 543.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06297142 543.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06297143 543.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06297144 543.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06297145 543.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06297146 543.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06297147 543.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06297148 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06297149 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06297150 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06297151 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06297152 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06297153 543.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06297154 543.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06297155 543.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06297156 543.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06297157 543.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06297158 543.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06297159 543.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06297160 543.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06297161 543.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06297162 543.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06297163 543.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06297164 543.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06297165 543.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06297166 543.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06297167 543.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06297168 543.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06297169 543.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06297170 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06297171 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06297172 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06297173 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06297174 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06297175 543.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06297176 543.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06297177 543.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06297178 543.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06297179 543.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06297180 543.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06297181 543.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06297182 543.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06297183 543.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06297184 543.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06297185 543.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06297186 543.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06297187 543.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06297188 543.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06297189 543.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06297190 543.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06297191 543.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06297192 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06297193 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06297194 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06297195 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06297196 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06297197 543.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06297198 543.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06297199 543.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06297200 543.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06297201 543.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06297202 543.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06297203 543.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06297204 543.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06297205 543.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06297206 543.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06297207 543.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06297208 543.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06297209 543.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06297210 543.58477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06297211 543.58477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06297212 543.58477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06297213 543.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06297214 543.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06297215 543.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06297216 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06297217 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06297218 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06297219 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06297220 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06297221 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06297222 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06297223 543.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06297224 543.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06297225 543.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06297226 543.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06297227 543.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06297228 543.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06297229 543.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06297230 543.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06297231 543.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06297232 543.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06297233 543.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06297234 543.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06297235 543.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06297236 543.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06297237 543.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06297238 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06297239 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06297240 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06297241 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06297242 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06297243 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06297244 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06297245 543.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06297246 543.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06297247 543.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06297248 543.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06297249 543.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06297250 543.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06297251 543.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06297252 543.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06297253 543.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06297254 543.58538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06297255 543.58538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06297256 543.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06297257 543.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06297258 543.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06297259 543.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06297260 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06297261 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06297262 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06297263 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06297264 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06297265 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06297266 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06297267 543.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06297268 543.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06297269 543.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06297270 543.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06297271 543.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06297272 543.58563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06297273 543.58563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06297274 543.58563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06297275 543.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06297276 543.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06297277 543.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06297278 543.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06297279 543.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06297280 543.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06297281 543.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06297282 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06297283 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06297284 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06297285 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06297286 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06297287 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06297288 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06297289 543.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06297290 543.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06297291 543.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06297292 543.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06297293 543.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06297294 543.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06297295 543.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06297296 543.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06297297 543.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06297298 543.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06297299 543.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06297300 543.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06297301 543.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06297302 543.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06297303 543.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06297304 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06297305 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06297306 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06297307 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06297308 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06297309 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06297310 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06297311 543.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06297312 543.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06297313 543.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06297314 543.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06297315 543.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06297316 543.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06297317 543.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06297318 543.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06297319 543.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06297320 543.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06297321 543.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06297322 543.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06297323 543.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06297324 543.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06297325 543.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06297326 543.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06297327 543.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06297328 543.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06297329 543.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06297330 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06297331 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06297332 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06297333 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06297334 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06297335 543.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06297336 543.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06297337 543.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06297338 543.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06297339 543.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06297340 543.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06297341 543.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06297342 543.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06297343 543.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06297344 543.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06297345 543.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06297346 543.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06297347 543.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06297348 543.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06297349 543.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06297350 543.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06297351 543.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06297352 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06297353 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06297354 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06297355 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06297356 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06297357 543.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06297358 543.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06297359 543.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06297360 543.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06297361 543.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06297362 543.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06297363 543.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06297364 543.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06297365 543.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06297366 543.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06297367 543.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06297368 543.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06297369 543.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06297370 543.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06297371 543.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06297372 543.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06297373 543.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06297374 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06297375 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06297376 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06297377 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06297378 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06297379 543.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06297380 543.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06297381 543.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06297382 543.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06297383 543.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06297384 543.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06297385 543.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06297386 543.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06297387 543.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06297388 543.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06297389 543.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06297390 543.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06297391 543.58734131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06297392 543.58734131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06297393 543.58734131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06297394 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06297395 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06297396 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06297397 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06297398 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06297399 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06297400 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06297401 543.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06297402 543.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06297403 543.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06297404 543.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06297405 543.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06297406 543.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06297407 543.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06297408 543.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06297409 543.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06297410 543.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06297411 543.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06297412 543.58764648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06297413 543.58764648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06297414 543.58764648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06297415 543.58764648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06297416 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06297417 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06297418 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06297419 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06297420 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06297421 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06297422 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06297423 543.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06297424 543.58776855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06297425 543.58776855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06297426 543.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06297427 543.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06297428 543.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06297429 543.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06297430 543.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06297431 543.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06297432 543.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06297433 543.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06297434 543.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06297435 543.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06297436 543.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06297437 543.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06297438 543.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06297439 543.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06297440 543.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06297441 543.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06297442 543.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06297443 543.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06297444 543.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06297445 543.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06297446 543.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06297447 543.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06297448 543.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06297449 543.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06297450 543.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06297451 543.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06297452 543.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06297453 543.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06297454 543.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06297455 543.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06297456 543.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06297457 543.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06297458 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06297459 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06297460 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06297461 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06297462 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06297463 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06297464 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06297465 543.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06297466 543.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06297467 543.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06297468 543.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06297469 543.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06297470 543.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06297471 543.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06297472 543.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06297473 543.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06297474 543.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06297475 543.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06297476 543.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06297477 543.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06297478 543.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06297479 543.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06297480 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06297481 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06297482 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06297483 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06297484 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06297485 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06297486 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06297487 543.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06297488 543.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06297489 543.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06297490 543.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06297491 543.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06297492 543.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06297493 543.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06297494 543.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06297495 543.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06297496 543.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06297497 543.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06297498 543.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06297499 543.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06297500 543.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06297501 543.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06297502 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06297503 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06297504 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06297505 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06297506 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06297507 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06297508 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06297509 543.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06297510 543.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06297511 543.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06297512 543.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06297513 543.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06297514 543.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06297515 543.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06297516 543.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06297517 543.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06297518 543.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06297519 543.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06297520 543.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06297521 543.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06297522 543.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06297523 543.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06297524 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06297525 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06297526 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06297527 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06297528 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06297529 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06297530 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06297531 543.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06297532 543.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06297533 543.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06297534 543.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06297535 543.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06297536 543.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06297537 543.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06297538 543.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06297539 543.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06297540 543.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06297541 543.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06297542 543.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06297543 543.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06297544 543.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06297545 543.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06297546 543.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06297547 543.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06297548 543.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06297549 543.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06297550 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06297551 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06297552 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06297553 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06297554 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06297555 543.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06297556 543.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06297557 543.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06297558 543.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06297559 543.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06297560 543.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06297561 543.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06297562 543.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06297563 543.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06297564 543.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06297565 543.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06297566 543.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06297567 543.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06297568 543.58990479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06297569 543.58990479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06297570 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06297571 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06297572 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06297573 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06297574 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06297575 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06297576 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06297577 543.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06297578 543.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06297579 543.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06297580 543.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06297581 543.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06297582 543.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06297583 543.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06297584 543.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06297585 543.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06297586 543.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06297587 543.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06297588 543.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06297589 543.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06297590 543.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06297591 543.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06297592 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06297593 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06297594 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06297595 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06297596 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06297597 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06297598 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06297599 543.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06297600 543.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06297601 543.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06297602 543.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06297603 543.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06297604 543.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06297605 543.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06297606 543.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06297607 543.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06297608 543.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06297609 543.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06297610 543.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06297611 543.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06297612 543.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06297613 543.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06297614 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06297615 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06297616 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06297617 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06297618 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06297619 543.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06297620 543.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06297621 543.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06297622 543.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06297623 543.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06297624 543.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06297625 543.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06297626 543.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06297627 543.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06297628 543.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06297629 543.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06297630 543.59082031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06297631 543.59082031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06297632 543.59082031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06297633 543.59082031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06297634 543.59088135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06297635 543.59088135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06297636 543.59088135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06297637 543.59094238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06297638 543.59094238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06297639 543.59094238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06297640 543.59094238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06297641 543.59094238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06297642 543.59100342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06297643 543.59100342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06297644 543.59106445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06297645 543.59106445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06297646 543.59106445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06297647 543.59106445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06297648 543.59112549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06297649 543.59112549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06297650 543.59118652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06297651 543.59118652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06297652 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06297653 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06297654 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06297655 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06297656 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06297657 543.59124756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06297658 543.59130859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06297659 543.59130859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06297660 543.59136963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06297661 543.59136963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06297662 543.59143066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06297663 543.59143066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06297664 543.59149170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06297665 543.59149170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06297666 543.59149170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06297667 543.59149170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06297668 543.59155273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06297669 543.59155273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06297670 543.59155273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06297671 543.59155273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06297672 543.59161377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06297673 543.59161377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06297674 543.59167480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06297675 543.59167480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06297676 543.59167480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06297677 543.59167480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06297678 543.59173584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06297679 543.59173584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06297680 543.59173584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06297681 543.59173584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06297682 543.59179688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06297683 543.59179688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06297684 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06297685 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06297686 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06297687 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06297688 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06297689 543.59185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06297690 543.59191895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06297691 543.59191895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06297692 543.59197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06297693 543.59197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06297694 543.59204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06297695 543.59204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06297696 543.59204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06297697 543.59204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06297698 543.59210205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06297699 543.59210205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06297700 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06297701 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06297702 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06297703 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06297704 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06297705 543.59216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06297706 543.59222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06297707 543.59222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06297708 543.59228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06297709 543.59228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06297710 543.59234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06297711 543.59234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06297712 543.59234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06297713 543.59240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06297714 543.59240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06297715 543.59240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06297716 543.59246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06297717 543.59246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06297718 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06297719 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06297720 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06297721 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06297722 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06297723 543.59252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06297724 543.59259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06297725 543.59259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06297726 543.59265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06297727 543.59265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06297728 543.59271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06297729 543.59271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06297730 543.59271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06297731 543.59271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06297732 543.59277344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06297733 543.59277344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06297734 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06297735 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06297736 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06297737 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06297738 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06297739 543.59283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06297740 543.59289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06297741 543.59289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06297742 543.59295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06297743 543.59295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06297744 543.59301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06297745 543.59301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06297746 543.59301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06297747 543.59307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06297748 543.59307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06297749 543.59307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06297750 543.59313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06297751 543.59313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06297752 543.59313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06297753 543.59313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06297754 543.59320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06297755 543.59320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06297756 543.59320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06297757 543.59320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06297758 543.59326172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06297759 543.59326172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06297760 543.59332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06297761 543.59332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06297762 543.59338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06297763 543.59338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06297764 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06297765 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06297766 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06297767 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06297768 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06297769 543.59344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06297770 543.59350586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06297771 543.59350586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06297772 543.59356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06297773 543.59356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06297774 543.59356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06297775 543.59362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06297776 543.59362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06297777 543.59362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06297778 543.59368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06297779 543.59368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06297780 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06297781 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06297782 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06297783 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06297784 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06297785 543.59375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06297786 543.59381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06297787 543.59381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06297788 543.59387207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06297789 543.59387207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06297790 543.59393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06297791 543.59393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06297792 543.59393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06297793 543.59399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06297794 543.59399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06297795 543.59399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06297796 543.59405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06297797 543.59405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06297798 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06297799 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06297800 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06297801 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06297802 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06297803 543.59411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06297804 543.59417725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06297805 543.59417725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06297806 543.59423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06297807 543.59423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06297808 543.59429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06297809 543.59429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06297810 543.59429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06297811 543.59436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06297812 543.59436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06297813 543.59436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06297814 543.59442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06297815 543.59442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06297816 543.59442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06297817 543.59442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06297818 543.59448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06297819 543.59448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06297820 543.59448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06297821 543.59448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06297822 543.59454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06297823 543.59454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06297824 543.59460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06297825 543.59460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06297826 543.59466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06297827 543.59466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06297828 543.59466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06297829 543.59466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06297830 543.59472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06297831 543.59472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06297832 543.59472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06297833 543.59472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06297834 543.59478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06297835 543.59478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06297836 543.59478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06297837 543.59484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06297838 543.59484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06297839 543.59484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06297840 543.59490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06297841 543.59490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06297842 543.59497070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06297843 543.59497070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06297844 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06297845 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06297846 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06297847 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06297848 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06297849 543.59503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06297850 543.59509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06297851 543.59509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06297852 543.59515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06297853 543.59515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06297854 543.59521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06297855 543.59521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06297856 543.59521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06297857 543.59521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06297858 543.59527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06297859 543.59527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06297860 543.59533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06297861 543.59533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06297862 543.59533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06297863 543.59533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06297864 543.59539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06297865 543.59539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06297866 543.59539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06297867 543.59539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06297868 543.59545898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06297869 543.59545898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06297870 543.59552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06297871 543.59552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06297872 543.59558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06297873 543.59558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06297874 543.59558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06297875 543.59564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06297876 543.59564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06297877 543.59564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06297878 543.59570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06297879 543.59570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06297880 543.59570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06297881 543.59570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06297882 543.59576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06297883 543.59576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06297884 543.59576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06297885 543.59576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06297886 543.59582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06297887 543.59582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06297888 543.59588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06297889 543.59588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06297890 543.59594727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06297891 543.59594727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06297892 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06297893 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06297894 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06297895 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06297896 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06297897 543.59600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06297898 543.59606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06297899 543.59606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06297900 543.59613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06297901 543.59613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06297902 543.59613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06297903 543.59619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06297904 543.59619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06297905 543.59619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06297906 543.59625244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06297907 543.59625244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06297908 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06297909 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06297910 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06297911 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06297912 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06297913 543.59631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06297914 543.59637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06297915 543.59637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06297916 543.59643555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06297917 543.59643555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06297918 543.59649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06297919 543.59649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06297920 543.59649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06297921 543.59649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06297922 543.59655762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06297923 543.59655762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06297924 543.59661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06297925 543.59661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06297926 543.59661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06297927 543.59661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06297928 543.59667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06297929 543.59667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06297930 543.59667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06297931 543.59667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06297932 543.59674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06297933 543.59674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06297934 543.59680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06297935 543.59680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06297936 543.59686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06297937 543.59686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06297938 543.59686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06297939 543.59686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06297940 543.59692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06297941 543.59692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06297942 543.59692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06297943 543.59692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06297944 543.59698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06297945 543.59698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06297946 543.59698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06297947 543.59704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06297948 543.59704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06297949 543.59704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06297950 543.59710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06297951 543.59710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06297952 543.59716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06297953 543.59716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06297954 543.59722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06297955 543.59722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06297956 543.59722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06297957 543.59729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06297958 543.59729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06297959 543.59729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06297960 543.59729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06297961 543.59729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06297962 543.59735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06297963 543.59735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06297964 543.59741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06297965 543.59741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06297966 543.59741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06297967 543.59741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06297968 543.59747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06297969 543.59747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06297970 543.59753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06297971 543.59753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06297972 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06297973 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06297974 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06297975 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06297976 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06297977 543.59759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06297978 543.59765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06297979 543.59765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06297980 543.59771729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06297981 543.59771729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06297982 543.59777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06297983 543.59777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06297984 543.59777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06297985 543.59777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06297986 543.59783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06297987 543.59783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06297988 543.59790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06297989 543.59790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06297990 543.59790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06297991 543.59790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06297992 543.59790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06297993 543.59796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06297994 543.59796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06297995 543.59796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06297996 543.59802246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06297997 543.59802246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06297998 543.59808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06297999 543.59808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06298000 543.59814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06298001 543.59814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06298002 543.59814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06298003 543.59814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06298004 543.59820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06298005 543.59820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06298006 543.59820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06298007 543.59820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06298008 543.59826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06298009 543.59826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06298010 543.59826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06298011 543.59826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06298012 543.59832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06298013 543.59832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06298014 543.59838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06298015 543.59838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06298016 543.59844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06298017 543.59844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06298018 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06298019 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06298020 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06298021 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06298022 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06298023 543.59851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06298024 543.59857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06298025 543.59857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06298026 543.59863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06298027 543.59863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06298028 543.59863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06298029 543.59863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06298030 543.59869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06298031 543.59869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06298032 543.59875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06298033 543.59875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06298034 543.59881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06298035 543.59881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06298036 543.59881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06298037 543.59881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06298038 543.59887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06298039 543.59887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06298040 543.59887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06298041 543.59887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06298042 543.59893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06298043 543.59893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06298044 543.59893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06298045 543.59899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06298046 543.59899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06298047 543.59899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06298048 543.59906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06298049 543.59906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06298050 543.59912109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06298051 543.59912109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06298052 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06298053 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06298054 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06298055 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06298056 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06298057 543.59918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06298058 543.59924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06298059 543.59924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06298060 543.59930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06298061 543.59930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06298062 543.59936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06298063 543.59936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06298064 543.59936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06298065 543.59936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06298066 543.59942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06298067 543.59942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06298068 543.59948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06298069 543.59948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06298070 543.59948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06298071 543.59948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06298072 543.59948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06298073 543.59954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06298074 543.59954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06298075 543.59954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06298076 543.59960938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06298077 543.59960938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06298078 543.59967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06298079 543.59967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06298080 543.59973145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06298081 543.59973145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06298848 543.61492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -06298849 543.61492920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -06298850 543.61499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -06298851 543.61499023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -06298852 543.61505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -06298853 543.61505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -06298854 543.61505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -06298855 543.61505127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -06298856 543.61511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -06298857 543.61511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -06298858 543.61511230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -06298859 543.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -06298860 543.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -06298861 543.61517334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -06298862 543.61523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -06298863 543.61523438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -06298864 543.61529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -06298865 543.61529541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -06298866 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -06298867 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -06298868 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -06298869 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -06298870 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -06298871 543.61535645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -06298872 543.61541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -06298873 543.61541748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -06298874 543.61547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -06298875 543.61547852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -06298876 543.61553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -06298877 543.61553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -06298878 543.61553955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06298879 543.61560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06298880 543.61560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06298881 543.61560059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06298882 543.61566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06298883 543.61566162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06298884 543.61572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06298885 543.61572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06298886 543.61572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06298887 543.61572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06298888 543.61572266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06298889 543.61578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06298890 543.61578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06298891 543.61578369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06300954 543.64654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -06300955 543.64654541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd978 -06300956 543.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -06300957 543.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd988 -06300958 543.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -06300959 543.64660645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd998 -06300960 543.64666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -06300961 543.64666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9a8 -06300962 543.64666748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -06300963 543.64672852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9b8 -06300964 543.64672852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -06300965 543.64672852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9c8 -06300966 543.64678955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -06300967 543.64678955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -06300968 543.64678955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -06300969 543.64678955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -06300970 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -06300971 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -06300972 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -06300973 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -06300974 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -06300975 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -06300976 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -06300977 543.64685059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -06300978 543.64691162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -06300979 543.64691162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -06300980 543.64691162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -06300981 543.64697266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -06300982 543.64697266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -06300983 543.64697266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -06300984 543.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -06300985 543.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -06300986 543.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -06300987 543.64703369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -06300988 543.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -06300989 543.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -06300990 543.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -06300991 543.64709473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -06300992 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -06300993 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -06300994 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -06300995 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -06300996 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -06300997 543.64715576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -06303188 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -06303189 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -06303190 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -06303191 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -06303192 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -06303193 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -06303194 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -06303195 543.67828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -06303196 543.67834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -06303197 543.67834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -06303198 543.67834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -06303199 543.67834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -06303200 543.67840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -06303201 543.67840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -06303202 543.67840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb8 -06303203 543.67840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fb8 -06303204 543.67846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc8 -06303205 543.67846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fc8 -06303206 543.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd8 -06303207 543.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fd8 -06303208 543.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe8 -06303209 543.67852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fe8 -06303210 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff8 -06303211 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ff8 -06303212 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12008 -06303213 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12008 -06303214 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12018 -06303215 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12018 -06303216 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12028 -06303217 543.67858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12028 -06303218 543.67864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12038 -06303219 543.67864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12038 -06303220 543.67864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12048 -06303221 543.67864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12048 -06303222 543.67871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12058 -06303223 543.67871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12058 -06303224 543.67871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12068 -06303225 543.67871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12068 -06303226 543.67877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12078 -06303227 543.67877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12078 -06303228 543.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12088 -06303229 543.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12088 -06303230 543.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12098 -06303231 543.67883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12098 -06305766 543.71435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -06305767 543.71435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -06305768 543.71435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -06305769 543.71435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -06305770 543.71441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -06305771 543.71441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -06305772 543.71441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -06305773 543.71447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -06305774 543.71447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -06305775 543.71447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -06305776 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -06305777 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -06305778 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -06305779 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -06305780 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -06305781 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -06305782 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -06305783 543.71453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -06305784 543.71459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -06305785 543.71459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -06305786 543.71459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -06305787 543.71459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -06305788 543.71466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -06305789 543.71466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -06305790 543.71466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -06305791 543.71466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -06305792 543.71472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -06305793 543.71472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -06305794 543.71472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -06305795 543.71478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -06305796 543.71478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -06305797 543.71478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -06305798 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06305799 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06305800 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06305801 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06305802 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06305803 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06305804 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06305805 543.71484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06305806 543.71490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17118 -06305807 543.71490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17118 -06305808 543.71490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17128 -06305809 543.71490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17128 -06321895 543.93511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367d8 -06321896 543.93518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -06321897 543.93518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367e8 -06321898 543.93518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -06321899 543.93518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x367f8 -06321900 543.93524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -06321901 543.93524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36808 -06321902 543.93524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -06321903 543.93524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36818 -06321904 543.93530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -06321905 543.93530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36828 -06321906 543.93530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -06321907 543.93530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36838 -06321908 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -06321909 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36848 -06321910 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -06321911 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36858 -06321912 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -06321913 543.93536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36868 -06321914 543.93542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -06321915 543.93542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36878 -06321916 543.93542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -06321917 543.93542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36888 -06321918 543.93548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -06321919 543.93548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36898 -06321920 543.93548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a8 -06321921 543.93548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368a8 -06321922 543.93554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b8 -06321923 543.93554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368b8 -06321924 543.93554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c8 -06321925 543.93554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368c8 -06321926 543.93560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d8 -06321927 543.93560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368d8 -06321928 543.93560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e8 -06321929 543.93560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368e8 -06321930 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f8 -06321931 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x368f8 -06321932 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36908 -06321933 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36908 -06321934 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36918 -06321935 543.93566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36918 -06321936 543.93572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36928 -06321937 543.93572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36928 -06321938 543.93572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36938 -06324300 543.96801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -06324301 543.96801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -06324302 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -06324303 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -06324304 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -06324305 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -06324306 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -06324307 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -06324308 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -06324309 543.96807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -06324310 543.96813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -06324311 543.96813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -06324312 543.96813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -06324313 543.96813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -06324314 543.96820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -06324315 543.96820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -06324316 543.96820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -06324317 543.96820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -06324318 543.96826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -06324319 543.96826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -06324320 543.96826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a8 -06324321 543.96826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a8 -06324322 543.96832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b8 -06324323 543.96832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b8 -06324324 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c8 -06324325 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c8 -06324326 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -06324327 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -06324328 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -06324329 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -06324330 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -06324331 543.96838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -06324332 543.96844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b408 -06324333 543.96844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b408 -06324334 543.96844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b418 -06324335 543.96844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b418 -06324336 543.96850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b428 -06324337 543.96850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b428 -06324338 543.96850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b438 -06324339 543.96850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b438 -06324340 543.96856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b448 -06324341 543.96856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b448 -06324342 543.96856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b458 -06324343 543.96856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b458 -06326668 544.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd08 -06326669 544.00079346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd08 -06326670 544.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd18 -06326671 544.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd18 -06326672 544.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd28 -06326673 544.00085449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd28 -06326674 544.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd38 -06326675 544.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd38 -06326676 544.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd48 -06326677 544.00091553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd48 -06326678 544.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd58 -06326679 544.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd58 -06326680 544.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd68 -06326681 544.00097656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd68 -06326682 544.00103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd78 -06326683 544.00103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd78 -06326684 544.00103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd88 -06326685 544.00103760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd88 -06326686 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd98 -06326687 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd98 -06326688 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda8 -06326689 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fda8 -06326690 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb8 -06326691 544.00109863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdb8 -06326692 544.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc8 -06326693 544.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdc8 -06326694 544.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd8 -06326695 544.00115967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdd8 -06326696 544.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde8 -06326697 544.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fde8 -06326698 544.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf8 -06326699 544.00122070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fdf8 -06326700 544.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe08 -06326701 544.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe08 -06326702 544.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe18 -06326703 544.00128174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe18 -06326704 544.00134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -06326705 544.00134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe28 -06326706 544.00134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -06326707 544.00134277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe38 -06326708 544.00140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -06326709 544.00140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe48 -06326710 544.00140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -06326711 544.00140381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe58 -06329214 544.03601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -06329215 544.03601074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -06329216 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -06329217 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -06329218 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -06329219 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -06329220 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -06329221 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -06329222 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -06329223 544.03607178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -06329224 544.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -06329225 544.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -06329226 544.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -06329227 544.03613281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -06329228 544.03619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -06329229 544.03619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -06329230 544.03619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -06329231 544.03619385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -06329232 544.03625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -06329233 544.03625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -06329234 544.03625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -06329235 544.03625488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -06329236 544.03631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -06329237 544.03631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -06329238 544.03631592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d58 -06329239 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d58 -06329240 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d68 -06329241 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d68 -06329242 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d78 -06329243 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d78 -06329244 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d88 -06329245 544.03637695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d88 -06329246 544.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d98 -06329247 544.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d98 -06329248 544.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da8 -06329249 544.03643799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da8 -06329250 544.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db8 -06329251 544.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db8 -06329252 544.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc8 -06329253 544.03649902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc8 -06329254 544.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd8 -06329255 544.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dd8 -06329256 544.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de8 -06329257 544.03656006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44de8 -06331662 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49918 -06331663 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49918 -06331664 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -06331665 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49928 -06331666 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -06331667 544.06939697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49938 -06331668 544.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -06331669 544.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49948 -06331670 544.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -06331671 544.06945801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49958 -06331672 544.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -06331673 544.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49968 -06331674 544.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -06331675 544.06951904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49978 -06331676 544.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -06331677 544.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49988 -06331678 544.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49998 -06331679 544.06958008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49998 -06331680 544.06964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a8 -06331681 544.06964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499a8 -06331682 544.06964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b8 -06331683 544.06964111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499b8 -06331684 544.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c8 -06331685 544.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499c8 -06331686 544.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d8 -06331687 544.06970215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499d8 -06331688 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e8 -06331689 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499e8 -06331690 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f8 -06331691 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x499f8 -06331692 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a08 -06331693 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a08 -06331694 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a18 -06331695 544.06976318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a18 -06331696 544.06982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a28 -06331697 544.06982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a28 -06331698 544.06982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a38 -06331699 544.06982422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a38 -06331700 544.06988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a48 -06331701 544.06988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a48 -06331702 544.06988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a58 -06331703 544.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a58 -06331704 544.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a68 -06331705 544.06994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a68 -06334006 544.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e258 -06334007 544.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e258 -06334008 544.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e268 -06334009 544.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e268 -06334010 544.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e278 -06334011 544.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e278 -06334012 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e288 -06334013 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e288 -06334014 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e298 -06334015 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e298 -06334016 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -06334017 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2a8 -06334018 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -06334019 544.10150146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2b8 -06334020 544.10156250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -06334021 544.10156250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2c8 -06334022 544.10156250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -06334023 544.10156250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2d8 -06334024 544.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -06334025 544.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2e8 -06334026 544.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -06334027 544.10162354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e2f8 -06334028 544.10168457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -06334029 544.10168457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e308 -06334030 544.10168457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -06334031 544.10168457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e318 -06334032 544.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -06334033 544.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e328 -06334034 544.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -06334035 544.10174561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e338 -06334036 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -06334037 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e348 -06334038 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -06334039 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e358 -06334040 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -06334041 544.10180664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e368 -06334042 544.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -06334043 544.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e378 -06334044 544.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -06334045 544.10186768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e388 -06334046 544.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -06334047 544.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e398 -06334048 544.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -06334049 544.10192871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e3a8 -06336342 544.13391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -06336343 544.13391113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b58 -06336344 544.13397217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -06336345 544.13397217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b68 -06336346 544.13397217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -06336347 544.13397217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b78 -06336348 544.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -06336349 544.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b88 -06336350 544.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -06336351 544.13403320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b98 -06336352 544.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -06336353 544.13409424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ba8 -06336354 544.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -06336355 544.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bb8 -06336356 544.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -06336357 544.13415527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bc8 -06336358 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -06336359 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bd8 -06336360 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -06336361 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52be8 -06336362 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -06336363 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52bf8 -06336364 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -06336365 544.13421631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c08 -06336366 544.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -06336367 544.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c18 -06336368 544.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c28 -06336369 544.13427734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c28 -06336370 544.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c38 -06336371 544.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c38 -06336372 544.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c48 -06336373 544.13433838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c48 -06336374 544.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c58 -06336375 544.13439941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c58 -06336376 544.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c68 -06336377 544.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c68 -06336378 544.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c78 -06336379 544.13446045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c78 -06336380 544.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c88 -06336381 544.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c88 -06336382 544.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c98 -06336383 544.13452148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c98 -06336384 544.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca8 -06336385 544.13458252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52ca8 -06336402 544.28179932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06336403 544.30340576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06336404 544.30340576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06336405 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06336406 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06336407 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06336408 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06336409 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06336410 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06336411 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06336412 544.37188721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06336413 544.37194824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06336414 544.37194824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06336415 544.37194824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06336416 544.37194824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06336417 544.37200928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06336418 544.37200928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06336419 544.37200928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06336420 544.37207031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06336421 544.37207031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06336422 544.37207031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06336423 544.37213135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06336424 544.37213135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06336425 544.37213135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06336426 544.37213135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06336427 544.37219238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06336428 544.37219238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06336429 544.37219238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06336430 544.37219238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06336431 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06336432 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06336433 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06336434 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06336435 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06336436 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06336437 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06336438 544.37225342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06336439 544.37231445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06336440 544.37231445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06336441 544.37237549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06336442 544.37237549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06336443 544.37237549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06336444 544.37237549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06336445 544.37243652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06336446 544.37243652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06336447 544.37243652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06336448 544.37243652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06336449 544.37249756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06336450 544.37249756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06336451 544.37249756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06336452 544.37249756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06336453 544.37255859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06336454 544.37255859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06336455 544.37255859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06336456 544.37255859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06336457 544.37261963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06336458 544.37261963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06336459 544.37261963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06336460 544.37261963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06336461 544.37268066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06336462 544.37268066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06336463 544.37268066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06336464 544.37268066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06336465 544.37274170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06336466 544.37274170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06336467 544.37274170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06336468 544.37274170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06336469 544.37280273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06336470 544.37280273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06336471 544.37280273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06336472 544.37280273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06336473 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06336474 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06336475 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06336476 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06336477 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06336478 544.37286377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06336479 544.37292480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06336480 544.37292480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06336481 544.37292480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06336482 544.37292480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06336483 544.37298584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06336484 544.37298584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06336485 544.37298584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06336486 544.37298584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06336487 544.37304688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06336488 544.37304688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06336489 544.37304688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -06341485 544.44464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -06341486 544.44464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf00 -06341487 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -06341488 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf10 -06341489 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -06341490 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf20 -06341491 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -06341492 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf30 -06341493 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -06341494 544.44470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf40 -06341495 544.44476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -06341496 544.44476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf50 -06341497 544.44482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -06341498 544.44482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf60 -06341499 544.44482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -06341500 544.44482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf70 -06341501 544.44488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -06341502 544.44488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf80 -06341503 544.44488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -06341504 544.44488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf90 -06341505 544.44494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -06341506 544.44494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa0 -06341507 544.44494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -06341508 544.44494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb0 -06341509 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -06341510 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc0 -06341511 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -06341512 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd0 -06341513 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -06341514 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe0 -06341515 544.44500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -06341516 544.44506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff0 -06341517 544.44506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -06341518 544.44506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb000 -06341519 544.44512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -06341520 544.44512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb010 -06341521 544.44512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -06341522 544.44512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb020 -06341523 544.44519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -06341524 544.44519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb030 -06341525 544.44519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -06341526 544.44519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb040 -06341527 544.44525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -06341528 544.44525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb050 -06345045 544.49548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -06345046 544.49548340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e40 -06345047 544.49554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -06345048 544.49554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e50 -06345049 544.49554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -06345050 544.49554443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e60 -06345051 544.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -06345052 544.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e70 -06345053 544.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -06345054 544.49560547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e80 -06345055 544.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -06345056 544.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e90 -06345057 544.49566650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -06345058 544.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea0 -06345059 544.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -06345060 544.49572754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb0 -06345061 544.49578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -06345062 544.49578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec0 -06345063 544.49578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -06345064 544.49578857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed0 -06345065 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -06345066 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee0 -06345067 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -06345068 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef0 -06345069 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -06345070 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f00 -06345071 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -06345072 544.49584961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f10 -06345073 544.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -06345074 544.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f20 -06345075 544.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -06345076 544.49591064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f30 -06345077 544.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -06345078 544.49597168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f40 -06345079 544.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -06345080 544.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f50 -06345081 544.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -06345082 544.49603271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f60 -06345083 544.49609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -06345084 544.49609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f70 -06345085 544.49609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -06345086 544.49609375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f80 -06345087 544.49615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -06345088 544.49615479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f90 -06345748 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13430 -06345749 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -06345750 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13440 -06345751 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -06345752 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13450 -06345753 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -06345754 544.50567627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13460 -06345755 544.50573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -06345756 544.50573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13470 -06345757 544.50573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -06345758 544.50573730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13480 -06345759 544.50579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -06345760 544.50579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13490 -06345761 544.50579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -06345762 544.50579834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a0 -06345763 544.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -06345764 544.50585938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b0 -06345765 544.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -06345766 544.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c0 -06345767 544.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -06345768 544.50592041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d0 -06345769 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -06345770 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e0 -06345771 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -06345772 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f0 -06345773 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -06345774 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13500 -06345775 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -06345776 544.50598145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13510 -06345777 544.50604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -06345778 544.50604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13520 -06345779 544.50604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -06345780 544.50604248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13530 -06345781 544.50610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -06345782 544.50610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13540 -06345783 544.50610352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -06345784 544.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13550 -06345785 544.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -06345786 544.50616455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13560 -06345787 544.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -06345788 544.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13570 -06345789 544.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -06345790 544.50622559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13580 -06345791 544.50628662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13590 -06346016 544.50952148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c90 -06346017 544.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -06346018 544.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca0 -06346019 544.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -06346020 544.50958252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb0 -06346021 544.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -06346022 544.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc0 -06346023 544.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -06346024 544.50964355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd0 -06346025 544.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -06346026 544.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce0 -06346027 544.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -06346028 544.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf0 -06346029 544.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -06346030 544.50976563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d00 -06346031 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -06346032 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d10 -06346033 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -06346034 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d20 -06346035 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -06346036 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d30 -06346037 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -06346038 544.50982666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d40 -06346039 544.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -06346040 544.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d50 -06346041 544.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -06346042 544.50988770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d60 -06346043 544.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -06346044 544.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d70 -06346045 544.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -06346046 544.50994873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d80 -06346047 544.51000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -06346048 544.51000977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d90 -06346049 544.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -06346050 544.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13da0 -06346051 544.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -06346052 544.51007080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13db0 -06346053 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -06346054 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dc0 -06346055 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -06346056 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13dd0 -06346057 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -06346058 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13de0 -06346059 544.51013184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13df0 -06346299 544.51367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -06346300 544.51367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14570 -06346301 544.51367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -06346302 544.51367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14580 -06346303 544.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -06346304 544.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14590 -06346305 544.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -06346306 544.51373291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a0 -06346307 544.51379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -06346308 544.51379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b0 -06346309 544.51379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -06346310 544.51379395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c0 -06346311 544.51385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -06346312 544.51385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d0 -06346313 544.51385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -06346314 544.51385498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e0 -06346315 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -06346316 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f0 -06346317 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -06346318 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14600 -06346319 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -06346320 544.51391602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14610 -06346321 544.51397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -06346322 544.51397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14620 -06346323 544.51397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -06346324 544.51397705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14630 -06346325 544.51403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -06346326 544.51403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14640 -06346327 544.51403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -06346328 544.51403809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14650 -06346329 544.51409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -06346330 544.51409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14660 -06346331 544.51409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -06346332 544.51409912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14670 -06346333 544.51416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -06346334 544.51416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14680 -06346335 544.51416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -06346336 544.51416016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14690 -06346337 544.51422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -06346338 544.51422119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146a0 -06346339 544.51428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -06346340 544.51428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146b0 -06346341 544.51428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -06346342 544.51428223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x146c0 -06346565 544.51751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -06346566 544.51751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dc0 -06346567 544.51751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -06346568 544.51751709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14dd0 -06346569 544.51757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -06346570 544.51757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14de0 -06346571 544.51757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -06346572 544.51757813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14df0 -06346573 544.51763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -06346574 544.51763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e00 -06346575 544.51763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -06346576 544.51763916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e10 -06346577 544.51770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -06346578 544.51770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e20 -06346579 544.51770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -06346580 544.51770020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e30 -06346581 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -06346582 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e40 -06346583 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -06346584 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e50 -06346585 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -06346586 544.51776123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e60 -06346587 544.51782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -06346588 544.51782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e70 -06346589 544.51782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -06346590 544.51782227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e80 -06346591 544.51788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -06346592 544.51788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e90 -06346593 544.51788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -06346594 544.51788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ea0 -06346595 544.51794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -06346596 544.51794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14eb0 -06346597 544.51794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -06346598 544.51794434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ec0 -06346599 544.51800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -06346600 544.51800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ed0 -06346601 544.51800537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -06346602 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ee0 -06346603 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -06346604 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14ef0 -06346605 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -06346606 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f00 -06346607 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -06346608 544.51806641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f10 -06350516 544.57458496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c930 -06350517 544.57458496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -06350518 544.57458496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c940 -06350519 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -06350520 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c950 -06350521 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -06350522 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c960 -06350523 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -06350524 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c970 -06350525 544.57464600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -06350526 544.57470703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c980 -06350527 544.57470703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -06350528 544.57470703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c990 -06350529 544.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -06350530 544.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a0 -06350531 544.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -06350532 544.57476807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b0 -06350533 544.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -06350534 544.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c0 -06350535 544.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -06350536 544.57482910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d0 -06350537 544.57489014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -06350538 544.57489014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9e0 -06350539 544.57489014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -06350540 544.57489014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9f0 -06350541 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -06350542 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca00 -06350543 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -06350544 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca10 -06350545 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -06350546 544.57495117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca20 -06350547 544.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -06350548 544.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca30 -06350549 544.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -06350550 544.57501221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca40 -06350551 544.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -06350552 544.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca50 -06350553 544.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -06350554 544.57507324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca60 -06350555 544.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -06350556 544.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca70 -06350557 544.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -06350558 544.57513428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca80 -06350559 544.57519531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca90 -06353965 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -06353966 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23500 -06353967 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -06353968 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23510 -06353969 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -06353970 544.62390137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23520 -06353971 544.62396240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -06353972 544.62396240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23530 -06353973 544.62396240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -06353974 544.62396240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23540 -06353975 544.62402344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -06353976 544.62402344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23550 -06353977 544.62402344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -06353978 544.62402344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23560 -06353979 544.62408447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -06353980 544.62408447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23570 -06353981 544.62408447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -06353982 544.62408447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23580 -06353983 544.62414551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -06353984 544.62414551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23590 -06353985 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -06353986 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235a0 -06353987 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -06353988 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235b0 -06353989 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -06353990 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235c0 -06353991 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -06353992 544.62420654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235d0 -06353993 544.62426758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -06353994 544.62426758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235e0 -06353995 544.62426758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -06353996 544.62426758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x235f0 -06353997 544.62432861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -06353998 544.62432861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23600 -06353999 544.62432861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -06354000 544.62432861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23610 -06354001 544.62438965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -06354002 544.62438965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23620 -06354003 544.62445068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -06354004 544.62445068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -06354005 544.62445068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -06354006 544.62445068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -06354007 544.62451172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -06354008 544.62451172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -06357155 544.66992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -06357156 544.66992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b0 -06357157 544.66992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -06357158 544.66992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c0 -06357159 544.66998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -06357160 544.66998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d0 -06357161 544.66998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -06357162 544.66998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e0 -06357163 544.67004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -06357164 544.67004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f0 -06357165 544.67004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -06357166 544.67004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29900 -06357167 544.67010498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -06357168 544.67010498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29910 -06357169 544.67010498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -06357170 544.67016602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29920 -06357171 544.67016602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -06357172 544.67016602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29930 -06357173 544.67022705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -06357174 544.67022705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29940 -06357175 544.67022705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -06357176 544.67022705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29950 -06357177 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -06357178 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29960 -06357179 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -06357180 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29970 -06357181 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -06357182 544.67028809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29980 -06357183 544.67034912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -06357184 544.67034912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29990 -06357185 544.67034912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -06357186 544.67034912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a0 -06357187 544.67053223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -06357188 544.67053223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b0 -06357189 544.67053223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -06357190 544.67053223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c0 -06357191 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -06357192 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d0 -06357193 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -06357194 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e0 -06357195 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -06357196 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f0 -06357197 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -06357198 544.67059326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a00 -06360061 544.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -06360062 544.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f380 -06360063 544.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -06360064 544.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f390 -06360065 544.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -06360066 544.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a0 -06360067 544.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -06360068 544.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b0 -06360069 544.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -06360070 544.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c0 -06360071 544.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -06360072 544.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d0 -06360073 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -06360074 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e0 -06360075 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -06360076 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f0 -06360077 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -06360078 544.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f400 -06360079 544.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -06360080 544.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f410 -06360081 544.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -06360082 544.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f420 -06360083 544.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -06360084 544.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f430 -06360085 544.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -06360086 544.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f440 -06360087 544.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -06360088 544.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f450 -06360089 544.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -06360090 544.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f460 -06360091 544.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -06360092 544.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f470 -06360093 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -06360094 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f480 -06360095 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -06360096 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f490 -06360097 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -06360098 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4a0 -06360099 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -06360100 544.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4b0 -06360101 544.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -06360102 544.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4c0 -06360103 544.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -06360104 544.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f4d0 -06375490 544.93560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5a0 -06375491 544.93560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -06375492 544.93560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5b0 -06375493 544.93560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -06375494 544.93560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5c0 -06375495 544.93566895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -06375496 544.93566895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5d0 -06375497 544.93566895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -06375498 544.93572998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5e0 -06375499 544.93572998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -06375500 544.93572998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d5f0 -06375501 544.93579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -06375502 544.93579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d600 -06375503 544.93579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -06375504 544.93579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d610 -06375505 544.93585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -06375506 544.93585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d620 -06375507 544.93585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -06375508 544.93585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d630 -06375509 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -06375510 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d640 -06375511 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -06375512 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d650 -06375513 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -06375514 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d660 -06375515 544.93591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -06375516 544.93597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d670 -06375517 544.93597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -06375518 544.93597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d680 -06375519 544.93603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -06375520 544.93603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d690 -06375521 544.93603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -06375522 544.93603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6a0 -06375523 544.93609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -06375524 544.93609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6b0 -06375525 544.93609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -06375526 544.93609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6c0 -06375527 544.93615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -06375528 544.93615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6d0 -06375529 544.93621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -06375530 544.93621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6e0 -06375531 544.93621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -06375532 544.93621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f0 -06375533 544.93621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d700 -06378307 546.16247559 [vmhook-eac [core number = 4]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -06378308 546.16363525 [vmhook-eac [core number = 4]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -06378309 546.30535889 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06378310 546.32440186 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06378311 546.32440186 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06378312 547.47253418 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06378313 547.47271729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06378314 547.47271729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06378315 547.47271729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06378316 547.47283936 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06378317 547.47283936 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06378318 547.47290039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06378319 547.47290039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06378320 548.32611084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06378321 548.34362793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06378322 548.34362793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06378323 549.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06378324 549.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06378325 549.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06378326 549.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06378327 549.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06378328 549.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06378329 549.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06378330 549.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06378331 549.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06378332 549.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06378333 549.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06378334 549.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06378335 549.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06378336 549.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06378337 549.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06378338 549.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06378339 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06378340 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06378341 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06378342 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06378343 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06378344 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06378345 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06378346 549.13671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06378347 549.13677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06378348 549.13677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06378349 549.13677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06378350 549.13684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06378351 549.13684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06378352 549.13684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06378353 549.13690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06378354 549.13690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06378355 549.13690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06378356 549.13690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06378357 549.13696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06378358 549.13696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06378359 549.13696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06378360 549.13696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06378361 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06378362 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06378363 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06378364 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06378365 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06378366 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06378367 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06378368 549.13702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06378369 549.13708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06378370 549.13708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06378371 549.13708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06378372 549.13714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06378373 549.13714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06378374 549.13714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06378375 549.13720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06378376 549.13720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06378377 549.13720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06378378 549.13720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06378379 549.13726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06378380 549.13726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06378381 549.13726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06378382 549.13726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06378383 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06378384 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06378385 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06378386 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06378387 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06378388 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06378389 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06378390 549.13732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06378391 549.13739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06378392 549.13739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06378393 549.13739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06378394 549.13739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06378395 549.13745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06378396 549.13745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06378397 549.13745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06378398 549.13745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06378399 549.13751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06378400 549.13751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06378401 549.13751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06378402 549.13751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06378403 549.13757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06378404 549.13757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06378405 549.13757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06378406 549.13757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06378407 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06378408 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06378409 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06378410 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06378411 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06378412 549.13763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06378413 549.13769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06378414 549.13769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06378415 549.13769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06378416 549.13769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06378417 549.13775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06378418 549.13775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06378419 549.13775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06378420 549.13775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06378421 549.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06378422 549.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06378423 549.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06378424 549.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06378425 549.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06378426 549.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06378427 549.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06378428 549.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06378429 549.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06378430 549.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06378431 549.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06378432 549.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06378433 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06378434 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06378435 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06378436 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06378437 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06378438 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06378439 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06378440 549.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06378441 549.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06378442 549.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06378443 549.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06378444 549.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06378445 549.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06378446 549.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06378447 549.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06378448 549.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06378449 549.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06378450 549.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06378451 549.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06378452 549.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06378453 549.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06378454 549.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06378455 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06378456 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06378457 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06378458 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06378459 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06378460 549.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06378461 549.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06378462 549.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06378463 549.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06378464 549.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06378465 549.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06378466 549.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06378467 549.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06378468 549.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06378469 549.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06378470 549.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06378471 549.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06378472 549.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06378473 549.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06378474 549.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06378475 549.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06378476 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06378477 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06378478 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06378479 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06378480 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06378481 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06378482 549.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06378483 549.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06378484 549.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06378485 549.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06378486 549.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06378487 549.13873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06378488 549.13873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06378489 549.13873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06378490 549.13873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06378491 549.13879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06378492 549.13879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06378493 549.13879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06378494 549.13879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06378495 549.13885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06378496 549.13885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06378497 549.13885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06378498 549.13885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06378499 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06378500 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06378501 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06378502 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06378503 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06378504 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06378505 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06378506 549.13891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06378507 549.13897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06378508 549.13897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06378509 549.13897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06378510 549.13897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06378511 549.13903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06378512 549.13903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06378513 549.13903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06378514 549.13909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06378515 549.13909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06378516 549.13909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06378517 549.13916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06378518 549.13916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06378519 549.13916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06378520 549.13916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06378521 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06378522 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06378523 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06378524 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06378525 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06378526 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06378527 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06378528 549.13922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06378529 549.13928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06378530 549.13928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06378531 549.13928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06378532 549.13928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06378533 549.13934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06378534 549.13934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06378535 549.13934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06378536 549.13934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06378537 549.13940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06378538 549.13940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06378539 549.13940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06378540 549.13940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06378541 549.13946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06378542 549.13946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06378543 549.13946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06378544 549.13946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06378545 549.13952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06378546 549.13952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06378547 549.13952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06378548 549.13952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06378549 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06378550 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06378551 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06378552 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06378553 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06378554 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06378555 549.13958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06378556 549.13964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06378557 549.13964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06378558 549.13964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06378559 549.13970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06378560 549.13970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06378561 549.13970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06378562 549.13970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06378563 549.13977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06378564 549.13977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06378565 549.13977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06378566 549.13977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06378567 549.13983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06378568 549.13983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06378569 549.13983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06378570 549.13983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06378571 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06378572 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06378573 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06378574 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06378575 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06378576 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06378577 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06378578 549.13989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06378579 549.13995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06378580 549.13995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06378581 549.13995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06378582 549.13995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06378583 549.14001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06378584 549.14001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06378585 549.14001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06378586 549.14001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06378587 549.14007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06378588 549.14007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06378589 549.14007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06378590 549.14007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06378591 549.14013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06378592 549.14013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06378593 549.14013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06378594 549.14013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06378595 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06378596 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06378597 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06378598 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06378599 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06378600 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06378601 549.14019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06378602 549.14025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06378603 549.14025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06378604 549.14025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06378605 549.14031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06378606 549.14031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06378607 549.14031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06378608 549.14031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06378609 549.14038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06378610 549.14038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06378611 549.14038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06378612 549.14038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06378613 549.14044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06378614 549.14044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06378615 549.14044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06378616 549.14044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06378617 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06378618 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06378619 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06378620 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06378621 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06378622 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06378623 549.14050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06378624 549.14056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06378625 549.14056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06378626 549.14056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06378627 549.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06378628 549.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06378629 549.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06378630 549.14062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06378631 549.14068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06378632 549.14068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06378633 549.14068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06378634 549.14068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06378635 549.14074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06378636 549.14074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06378637 549.14074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06378638 549.14074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06378639 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06378640 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06378641 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06378642 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06378643 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06378644 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06378645 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06378646 549.14080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06378647 549.14086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06378648 549.14086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06378649 549.14086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06378650 549.14086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06378651 549.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06378652 549.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06378653 549.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06378654 549.14093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06378655 549.14099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06378656 549.14099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06378657 549.14099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06378658 549.14099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06378659 549.14105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06378660 549.14105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06378661 549.14105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06378662 549.14105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06378663 549.14111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06378664 549.14111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06378665 549.14111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06378666 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06378667 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06378668 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06378669 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06378670 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06378671 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06378672 549.14117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06378673 549.14123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06378674 549.14123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06378675 549.14123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06378676 549.14123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06378677 549.14129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06378678 549.14129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06378679 549.14129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06378680 549.14129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06378681 549.14135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06378682 549.14135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06378683 549.14135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06378684 549.14135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06378685 549.14141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06378686 549.14141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06378687 549.14141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06378688 549.14141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06378689 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06378690 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06378691 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06378692 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06378693 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06378694 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06378695 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06378696 549.14147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06378697 549.14154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06378698 549.14154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06378699 549.14154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06378700 549.14154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06378701 549.14160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06378702 549.14160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06378703 549.14160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06378704 549.14160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06378705 549.14166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06378706 549.14166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06378707 549.14166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06378708 549.14172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06378709 549.14172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06378710 549.14172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06378711 549.14172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06378712 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06378713 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06378714 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06378715 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06378716 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06378717 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06378718 549.14178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06378719 549.14184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06378720 549.14184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06378721 549.14184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06378722 549.14184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06378723 549.14190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06378724 549.14190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06378725 549.14190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06378726 549.14190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06378727 549.14196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06378728 549.14196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06378729 549.14196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06378730 549.14196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06378731 549.14202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06378732 549.14202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06378733 549.14202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06378734 549.14202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06378735 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06378736 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06378737 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06378738 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06378739 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06378740 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06378741 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06378742 549.14208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06378743 549.14215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06378744 549.14215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06378745 549.14215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06378746 549.14215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06378747 549.14221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06378748 549.14221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06378749 549.14221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06378750 549.14221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06378751 549.14227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06378752 549.14227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06378753 549.14227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06378754 549.14233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06378755 549.14233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06378756 549.14233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06378757 549.14239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06378758 549.14239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06378759 549.14239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06378760 549.14239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06378761 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06378762 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06378763 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06378764 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06378765 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06378766 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06378767 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06378768 549.14245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06378769 549.14251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06378770 549.14251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06378771 549.14251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06378772 549.14251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06378773 549.14257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06378774 549.14257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06378775 549.14257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06378776 549.14257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06378777 549.14263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06378778 549.14263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06378779 549.14263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06378780 549.14263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06378781 549.14270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06378782 549.14270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06378783 549.14270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06378784 549.14270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06378785 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06378786 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06378787 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06378788 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06378789 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06378790 549.14276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06378791 549.14282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06378792 549.14282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06378793 549.14282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06378794 549.14282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06378795 549.14288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06378796 549.14288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06378797 549.14288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06378798 549.14288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06378799 549.14294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06378800 549.14294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06378801 549.14294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06378802 549.14294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06378803 549.14300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06378804 549.14300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06378805 549.14300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06378806 549.14300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06378807 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06378808 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06378809 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06378810 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06378811 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06378812 549.14306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06378813 549.14312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06378814 549.14312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06378815 549.14312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06378816 549.14312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06378817 549.14318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06378818 549.14318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06378819 549.14318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06378820 549.14318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06378821 549.14324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06378822 549.14324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06378823 549.14324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06378824 549.14324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06378825 549.14331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06378826 549.14331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06378827 549.14331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06378828 549.14331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06378829 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06378830 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06378831 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06378832 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06378833 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06378834 549.14337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06378835 549.14343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06378836 549.14343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06378837 549.14343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06378838 549.14343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06378839 549.14349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06378840 549.14349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06378841 549.14349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06378842 549.14349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06378843 549.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06378844 549.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06378845 549.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06378846 549.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06378847 549.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06378848 549.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06378849 549.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06378850 549.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06378851 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06378852 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06378853 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06378854 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06378855 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06378856 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06378857 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06378858 549.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06378859 549.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06378860 549.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06378861 549.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06378862 549.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06378863 549.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06378864 549.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06378865 549.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06378866 549.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06378867 549.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06378868 549.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06378869 549.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06378870 549.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06378871 549.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06378872 549.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06378873 549.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06378874 549.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06378875 549.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06378876 549.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06378877 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06378878 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06378879 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06378880 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06378881 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06378882 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06378883 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06378884 549.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06378885 549.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06378886 549.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06378887 549.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06378888 549.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06378889 549.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06378890 549.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06378891 549.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06378892 549.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06378893 549.14422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06378894 549.14422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06378895 549.14422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06378896 549.14422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06378897 549.14428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06378898 549.14428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06378899 549.14428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06378900 549.14428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06378901 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06378902 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06378903 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06378904 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06378905 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06378906 549.14434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06378907 549.14440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06378908 549.14440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06378909 549.14440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06378910 549.14447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06378911 549.14447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06378912 549.14447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06378913 549.14453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06378914 549.14453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06378915 549.14453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06378916 549.14453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06378917 549.14459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06378918 549.14459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06378919 549.14459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06378920 549.14459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06378921 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06378922 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06378923 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06378924 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06378925 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06378926 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06378927 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06378928 549.14465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06378929 549.14471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06378930 549.14471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06378931 549.14471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06378932 549.14471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06378933 549.14477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06378934 549.14477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06378935 549.14477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06378936 549.14477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06378937 549.14483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06378938 549.14483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06378939 549.14483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06378940 549.14483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06378941 549.14489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06378942 549.14489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06378943 549.14489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06378944 549.14489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06378945 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06378946 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06378947 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06378948 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06378949 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06378950 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06378951 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06378952 549.14495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06378953 549.14501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06378954 549.14501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06378955 549.14501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06378956 549.14508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06378957 549.14508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06378958 549.14508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06378959 549.14514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06378960 549.14514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06378961 549.14514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06378962 549.14514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06378963 549.14520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06378964 549.14520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06378965 549.14520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06378966 549.14520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06378967 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06378968 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06378969 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06378970 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06378971 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06378972 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06378973 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06378974 549.14526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06378975 549.14532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06378976 549.14532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06378977 549.14532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06378978 549.14532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06378979 549.14538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06378980 549.14538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06378981 549.14538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06378982 549.14538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06378983 549.14544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06378984 549.14544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06378985 549.14544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06378986 549.14550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06378987 549.14550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06378988 549.14550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06378989 549.14556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06378990 549.14556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06378991 549.14556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06378992 549.14556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06378993 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06378994 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06378995 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06378996 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06378997 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06378998 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06378999 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06379000 549.14562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06379001 549.14569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06379002 549.14569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06379003 549.14569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06379004 549.14569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06379005 549.14575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06379006 549.14575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06379007 549.14575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06379008 549.14581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06379009 549.14581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06379010 549.14581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06379011 549.14587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06379012 549.14587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06379013 549.14587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06379014 549.14587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06379015 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06379016 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06379017 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06379018 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06379019 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06379020 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06379021 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06379022 549.14593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06379023 549.14599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06379024 549.14599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06379025 549.14599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06379026 549.14605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06379027 549.14605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06379028 549.14605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06379029 549.14611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06379030 549.14611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06379031 549.14611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06379032 549.14611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06379033 549.14617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06379034 549.14617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06379035 549.14617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06379036 549.14617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06379037 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06379038 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06379039 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06379040 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06379041 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06379042 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06379043 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06379044 549.14624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06379045 549.14630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06379046 549.14630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06379047 549.14636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06379048 549.14636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06379049 549.14636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06379050 549.14636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06379051 549.14642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06379052 549.14642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06379053 549.14642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06379054 549.14642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06379055 549.14648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06379056 549.14648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06379057 549.14648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06379058 549.14648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06379059 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06379060 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06379061 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06379062 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06379063 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06379064 549.14654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06379065 549.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06379066 549.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06379067 549.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06379068 549.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06379069 549.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06379070 549.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06379071 549.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06379072 549.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06379073 549.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06379074 549.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06379075 549.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06379076 549.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06379077 549.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06379078 549.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06379079 549.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06379080 549.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06379081 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06379082 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06379083 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06379084 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06379085 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06379086 549.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06379087 549.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06379088 549.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06379089 549.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06379090 549.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06379091 549.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06379092 549.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06379093 549.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06379094 549.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06379095 549.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06379096 549.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06379097 549.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06379098 549.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06379099 549.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06379100 549.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06379101 549.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06379102 549.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06379103 549.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06379104 549.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06379105 549.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06379106 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06379107 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06379108 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06379109 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06379110 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06379111 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06379112 549.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06379113 549.14727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06379114 549.14727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06379115 549.14727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06379116 549.14727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06379117 549.14733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06379118 549.14733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06379119 549.14733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06379120 549.14733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06379121 549.14739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06379122 549.14739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06379123 549.14739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06379124 549.14739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06379125 549.14746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06379126 549.14746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06379127 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06379128 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06379129 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06379130 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06379131 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06379132 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06379133 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06379134 549.14752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06379135 549.14758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06379136 549.14758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06379137 549.14758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06379138 549.14758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06379139 549.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06379140 549.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06379141 549.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06379142 549.14764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06379143 549.14770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06379144 549.14770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06379145 549.14770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06379146 549.14776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06379147 549.14776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06379148 549.14776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06379149 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06379150 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06379151 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06379152 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06379153 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06379154 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06379155 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06379156 549.14782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06379157 549.14788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06379158 549.14788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06379159 549.14788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06379160 549.14788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06379161 549.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06379162 549.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06379163 549.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06379164 549.14794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06379165 549.14801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06379166 549.14801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06379167 549.14801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06379168 549.14807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06379169 549.14807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06379170 549.14807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06379171 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06379172 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06379173 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06379174 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06379175 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06379176 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06379177 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06379178 549.14813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06379179 549.14819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06379180 549.14819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06379181 549.14819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06379182 549.14819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06379183 549.14825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06379184 549.14825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06379185 549.14825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06379186 549.14831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06379187 549.14831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06379188 549.14831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06379189 549.14837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06379190 549.14837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06379191 549.14837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06379192 549.14837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06379193 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06379194 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06379195 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06379196 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06379197 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06379198 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06379199 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06379200 549.14843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06379201 549.14849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06379202 549.14849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06379203 549.14849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06379204 549.14849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06379205 549.14855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06379206 549.14855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06379207 549.14862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06379208 549.14862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06379209 549.14862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06379210 549.14862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06379211 549.14868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06379212 549.14868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06379213 549.14868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06379214 549.14868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06379215 549.14874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06379216 549.14874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06379217 549.14874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06379218 549.14874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06379219 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06379220 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06379221 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06379222 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06379223 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06379224 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06379225 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06379226 549.14880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06379227 549.14886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06379228 549.14886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06379229 549.14892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06379230 549.14892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06379231 549.14892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06379232 549.14892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06379233 549.14898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06379234 549.14898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06379235 549.14898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06379236 549.14898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06379237 549.14904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06379238 549.14904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06379239 549.14904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06379240 549.14904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06379241 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06379242 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06379243 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06379244 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06379245 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06379246 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06379247 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06379248 549.14910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06379249 549.14916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06379250 549.14916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06379251 549.14923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06379252 549.14923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06379253 549.14923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06379254 549.14923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06379255 549.14929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06379256 549.14929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06379257 549.14929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06379258 549.14929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06379259 549.14935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06379260 549.14935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06379261 549.14935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06379262 549.14935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06379263 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06379264 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06379265 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06379266 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06379267 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06379268 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06379269 549.14941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06379270 549.14947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06379271 549.14947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06379272 549.14947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06379273 549.14953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06379274 549.14953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06379275 549.14953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06379276 549.14953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06379277 549.14959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06379278 549.14959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06379279 549.14959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06379280 549.14959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06379281 549.14965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06379282 549.14965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06379283 549.14965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06379284 549.14965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06379285 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06379286 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06379287 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06379288 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06379289 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06379290 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06379291 549.14971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06379292 549.14978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06379293 549.14978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06379294 549.14978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06379295 549.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06379296 549.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06379297 549.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06379298 549.14984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06379299 549.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06379300 549.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06379301 549.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06379302 549.14990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06379303 549.14996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06379304 549.14996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06379305 549.14996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06379306 549.14996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06379307 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06379308 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06379309 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06379310 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06379311 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06379312 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06379313 549.15002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06379314 549.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06379315 549.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06379316 549.15008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06379317 549.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06379318 549.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06379319 549.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06379320 549.15014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06379321 549.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06379322 549.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06379323 549.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06379324 549.15020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06379325 549.15026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06379326 549.15026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06379327 549.15026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06379328 549.15026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06379329 549.15032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06379330 549.15032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06379331 549.15032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06379332 549.15032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06379333 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06379334 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06379335 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06379336 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06379337 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06379338 549.15039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06379339 549.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06379340 549.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06379341 549.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06379342 549.15045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06379343 549.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06379344 549.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06379345 549.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06379346 549.15051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06379347 549.15057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06379348 549.15057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06379349 549.15057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06379350 549.15057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06379351 549.15063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06379352 549.15063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06379353 549.15063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06379354 549.15063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06379355 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06379356 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06379357 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06379358 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06379359 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06379360 549.15069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06379361 549.15075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06379362 549.15075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06379363 549.15075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06379364 549.15075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06379365 549.15081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06379366 549.15081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06379367 549.15081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06379368 549.15081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06379369 549.15087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06379370 549.15087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06379371 549.15087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06379372 549.15087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06379373 549.15093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06379374 549.15093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06379375 549.15093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06379376 549.15093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06379377 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06379378 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06379379 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06379380 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06379381 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06379382 549.15100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06379383 549.15106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06379384 549.15106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06379385 549.15106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06379386 549.15106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06379387 549.15112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06379388 549.15112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06379389 549.15112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06379390 549.15112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06379391 549.15118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06379392 549.15118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06379393 549.15118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06379394 549.15118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06379395 549.15124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06379396 549.15124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06379397 549.15124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06379398 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06379399 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06379400 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06379401 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06379402 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06379403 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06379404 549.15130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06379405 549.15136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06379406 549.15136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06379407 549.15136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06379408 549.15136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06379409 549.15142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06379410 549.15142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06379411 549.15142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06379412 549.15142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06379413 549.15148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06379414 549.15148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06379415 549.15148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06379416 549.15148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06379417 549.15155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06379418 549.15155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06379419 549.15155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06379420 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06379421 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06379422 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06379423 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06379424 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06379425 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06379426 549.15161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06379427 549.15167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06379428 549.15167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06379429 549.15167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06379430 549.15167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06379431 549.15173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06379432 549.15173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06379433 549.15173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06379434 549.15173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06379435 549.15179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06379436 549.15179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06379437 549.15179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06379438 549.15179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06379439 549.15185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06379440 549.15185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06379441 549.15185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06379442 549.15191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06379443 549.15191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06379444 549.15191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06379445 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06379446 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06379447 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06379448 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06379449 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06379450 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06379451 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06379452 549.15197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06379453 549.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06379454 549.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06379455 549.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06379456 549.15203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06379457 549.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06379458 549.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06379459 549.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06379460 549.15209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06379461 549.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06379462 549.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06379463 549.15216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06379464 549.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06379465 549.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06379466 549.15222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06379467 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06379468 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06379469 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06379470 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06379471 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06379472 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06379473 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06379474 549.15228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06379475 549.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06379476 549.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06379477 549.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06379478 549.15234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06379479 549.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06379480 549.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06379481 549.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06379482 549.15240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06379483 549.15246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06379484 549.15246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06379485 549.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06379486 549.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06379487 549.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06379488 549.15252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06379489 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06379490 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06379491 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06379492 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06379493 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06379494 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06379495 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06379496 549.15258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06379497 549.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06379498 549.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06379499 549.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06379500 549.15264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06379501 549.15270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06379502 549.15270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06379503 549.15270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06379504 549.15270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06379505 549.15277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06379506 549.15277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06379507 549.15283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06379508 549.15283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06379509 549.15283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06379510 549.15283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06379511 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06379512 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06379513 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06379514 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06379515 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06379516 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06379517 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06379518 549.15289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06379519 549.15295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06379520 549.15295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06379521 549.15295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06379522 549.15295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06379523 549.15301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06379524 549.15301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06379525 549.15301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06379526 549.15307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06379527 549.15307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06379528 549.15307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06379529 549.15313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06379530 549.15313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06379531 549.15313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06379532 549.15313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06379533 549.15319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06379534 549.15319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06379535 549.15319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06379536 549.15319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06379537 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06379538 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06379539 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06379540 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06379541 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06379542 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06379543 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06379544 549.15325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06379545 549.15332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06379546 549.15332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06379547 549.15332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06379548 549.15338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06379549 549.15338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06379550 549.15338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06379551 549.15344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06379552 549.15344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06379553 549.15344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06379554 549.15344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06379555 549.15350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06379556 549.15350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06379557 549.15350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06379558 549.15350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06379559 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06379560 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06379561 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06379562 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06379563 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06379564 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06379565 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06379566 549.15356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06379567 549.15362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06379568 549.15362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06379569 549.15362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06379570 549.15368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06379571 549.15368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06379572 549.15368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06379573 549.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06379574 549.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06379575 549.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06379576 549.15374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06379577 549.15380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06379578 549.15380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06379579 549.15380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06379580 549.15380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06379581 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06379582 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06379583 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06379584 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06379585 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06379586 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06379587 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06379588 549.15386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06379589 549.15393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06379590 549.15393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06379591 549.15393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06379592 549.15399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06379593 549.15399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06379594 549.15399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06379595 549.15405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06379596 549.15405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06379597 549.15405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06379598 549.15405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06379599 549.15411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06379600 549.15411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06379601 549.15411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06379602 549.15411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06379603 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06379604 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06379605 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06379606 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06379607 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06379608 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06379609 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06379610 549.15417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06379611 549.15423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06379612 549.15423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06379613 549.15423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06379614 549.15429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06379615 549.15429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06379616 549.15429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06379617 549.15435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06379618 549.15435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06379619 549.15435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06379620 549.15435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06379621 549.15441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06379622 549.15441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06379623 549.15441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06379624 549.15441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06379625 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06379626 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06379627 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06379628 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06379629 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06379630 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06379631 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06379632 549.15447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06379633 549.15454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06379634 549.15454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06379635 549.15454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06379636 549.15460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06379637 549.15460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06379638 549.15460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06379639 549.15466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06379640 549.15466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06379641 549.15466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06379642 549.15466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06379643 549.15472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06379644 549.15472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06379645 549.15472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06379646 549.15472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06379647 549.15478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06379648 549.15478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06379649 549.15478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06379650 549.15478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06379651 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06379652 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06379653 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06379654 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06379655 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06379656 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06379657 549.15484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06379658 549.15490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06379659 549.15490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06379660 549.15490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06379661 549.15496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06379662 549.15496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06379663 549.15496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06379664 549.15496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06379665 549.15502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06379666 549.15502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06379667 549.15502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06379668 549.15502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06379669 549.15509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06379670 549.15509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06379671 549.15509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06379672 549.15509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06379673 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06379674 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06379675 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06379676 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06379677 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06379678 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06379679 549.15515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06379680 549.15521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06379681 549.15521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06379682 549.15521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06379683 549.15527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06379684 549.15527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06379685 549.15527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06379686 549.15527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06379687 549.15533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06379688 549.15533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06379689 549.15533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06379690 549.15533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06379691 549.15539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06379692 549.15539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06379693 549.15539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06379694 549.15539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06379695 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06379696 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06379697 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06379698 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06379699 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06379700 549.15545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06379701 549.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06379702 549.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06379703 549.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06379704 549.15551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06379705 549.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06379706 549.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06379707 549.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06379708 549.15557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06379709 549.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06379710 549.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06379711 549.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06379712 549.15563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06379713 549.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06379714 549.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06379715 549.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06379716 549.15570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06379717 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06379718 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06379719 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06379720 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06379721 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06379722 549.15576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06379723 549.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06379724 549.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06379725 549.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06379726 549.15582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06379727 549.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06379728 549.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06379729 549.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06379730 549.15588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06379731 549.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06379732 549.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06379733 549.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06379734 549.15594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06379735 549.15600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06379736 549.15600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06379737 549.15600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06379738 549.15600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06379739 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06379740 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06379741 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06379742 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06379743 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06379744 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06379745 549.15606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06379746 549.15612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06379747 549.15612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06379748 549.15612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06379749 549.15618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06379750 549.15618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06379751 549.15618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06379752 549.15618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06379753 549.15625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06379754 549.15625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06379755 549.15625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06379756 549.15625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06379757 549.15631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06379758 549.15631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06379759 549.15631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06379760 549.15631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06379761 549.15637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06379762 549.15637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06379763 549.15637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06379764 549.15637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06379765 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06379766 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06379767 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06379768 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06379769 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06379770 549.15643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06379771 549.15649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06379772 549.15649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06379773 549.15649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06379774 549.15649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06379775 549.15655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06379776 549.15655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06379777 549.15655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06379778 549.15655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06379779 549.15661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06379780 549.15661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06379781 549.15661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06379782 549.15661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06379783 549.15667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06379784 549.15667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06379785 549.15667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06379786 549.15667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06379787 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06379788 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06379789 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06379790 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06379791 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06379792 549.15673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06379793 549.15679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06379794 549.15679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06379795 549.15679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06379796 549.15679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06379797 549.15686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06379798 549.15686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06379799 549.15686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06379800 549.15686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06379801 549.15692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06379802 549.15692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06379803 549.15692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06379804 549.15692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06379805 549.15698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06379806 549.15698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06379807 549.15698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06379808 549.15698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06379809 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06379810 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06379811 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06379812 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06379813 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06379814 549.15704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06379815 549.15710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06379816 549.15710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06379817 549.15710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06379818 549.15710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06379819 549.15716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06379820 549.15716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06379821 549.15716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06379822 549.15716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06379823 549.15722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06379824 549.15722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06379825 549.15722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06379826 549.15722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06379827 549.15728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06379828 549.15728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06379829 549.15728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06379830 549.15728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06379831 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06379832 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06379833 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06379834 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06379835 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06379836 549.15734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06379837 549.15740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06379838 549.15740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06379839 549.15740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06379840 549.15740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06379841 549.15747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06379842 549.15747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06379843 549.15747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06379844 549.15747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06379845 549.15753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06379846 549.15753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06379847 549.15753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06379848 549.15753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06379849 549.15759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06379850 549.15759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06379851 549.15759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06379852 549.15759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06379853 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06379854 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06379855 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06379856 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06379857 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06379858 549.15765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06379859 549.15771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06379860 549.15771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06379861 549.15771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06379862 549.15771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06379863 549.15777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06379864 549.15777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06379865 549.15777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06379866 549.15777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06379867 549.15783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06379868 549.15783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06379869 549.15783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06379870 549.15783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06379871 549.15789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06379872 549.15789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06379873 549.15789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06379874 549.15789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06379875 549.15795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06379876 549.15795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06379877 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06379878 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06379879 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06379880 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06379881 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06379882 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06379883 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06379884 549.15802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06379885 549.15808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06379886 549.15808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06379887 549.15808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06379888 549.15808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06379889 549.15814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06379890 549.15814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06379891 549.15814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06379892 549.15814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06379893 549.15820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06379894 549.15820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06379895 549.15820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06379896 549.15820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06379897 549.15826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06379898 549.15826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06379899 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06379900 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06379901 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06379902 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06379903 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06379904 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06379905 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06379906 549.15832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06379907 549.15838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06379908 549.15838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06379909 549.15838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06379910 549.15838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06379911 549.15844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06379912 549.15844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06379913 549.15844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06379914 549.15844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06379915 549.15850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06379916 549.15850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06379917 549.15850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06379918 549.15850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06379919 549.15856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06379920 549.15856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06379921 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06379922 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06379923 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06379924 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06379925 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06379926 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06379927 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06379928 549.15863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06379929 549.15869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06379930 549.15869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06379931 549.15869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06379932 549.15869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06379933 549.15875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06379934 549.15875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06379935 549.15875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06379936 549.15875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06379937 549.15881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06379938 549.15881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06379939 549.15881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06379940 549.15881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06379941 549.15887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06379942 549.15887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06379943 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06379944 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06379945 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06379946 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06379947 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06379948 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06379949 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06379950 549.15893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06379951 549.15899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06379952 549.15899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06379953 549.15899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06379954 549.15899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06379955 549.15905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06379956 549.15905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06379957 549.15905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06379958 549.15905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06379959 549.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06379960 549.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06379961 549.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06379962 549.15911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06379963 549.15917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06379964 549.15917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06379965 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06379966 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06379967 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06379968 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06379969 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06379970 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06379971 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06379972 549.15924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06379973 549.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06379974 549.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06379975 549.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06379976 549.15930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06379977 549.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06379978 549.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06379979 549.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06379980 549.15936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06379981 549.15942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06379982 549.15942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06379983 549.15942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06379984 549.15948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06379985 549.15948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06379986 549.15948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06379987 549.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06379988 549.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06379989 549.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06379990 549.15954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06379991 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06379992 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06379993 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06379994 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06379995 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06379996 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06379997 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06379998 549.15960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06379999 549.15966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06380000 549.15966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06380001 549.15966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06380002 549.15966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06380003 549.15972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06380004 549.15972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06380005 549.15979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06380006 549.15979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06380007 549.15979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06380008 549.15979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06380009 549.15985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06380010 549.15985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06380011 549.15991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06380012 549.15991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06380013 549.15991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06380014 549.15991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06380015 549.15997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06380016 549.15997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06380017 549.15997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06380018 549.15997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06380019 549.16003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06380020 549.16003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06380021 549.16003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06380022 549.16003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06380023 549.16009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06380024 549.16009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06380025 549.16009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06380026 549.16015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06380027 549.16015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06380028 549.16015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06380029 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06380030 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06380031 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06380032 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06380033 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06380034 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06380035 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06380036 549.16021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06380037 549.16027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06380038 549.16027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06380039 549.16027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06380040 549.16027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06380041 549.16033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06380042 549.16033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06380043 549.16033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06380044 549.16033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06380045 549.16040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06380046 549.16040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06380047 549.16046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06380048 549.16046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06380049 549.16046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06380050 549.16046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06380051 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06380052 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06380053 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06380054 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06380055 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06380056 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06380057 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06380058 549.16052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06380059 549.16058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06380060 549.16058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06380061 549.16058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06380062 549.16058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06380063 549.16064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06380064 549.16064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06380065 549.16064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06380066 549.16064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06380067 549.16070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06380068 549.16070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06380069 549.16076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06380070 549.16076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06380071 549.16076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06380072 549.16076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06380073 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06380074 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06380075 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06380076 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06380077 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06380078 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06380079 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06380080 549.16082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06380081 549.16088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06380082 549.16088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06380083 549.16088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06380084 549.16088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06380085 549.16094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06380086 549.16094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06380087 549.16094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06380088 549.16094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06380089 549.16101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06380090 549.16101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06380091 549.16107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06380092 549.16107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06380093 549.16107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06380094 549.16107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06380095 549.16113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06380096 549.16113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06380097 549.16113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06380098 549.16113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06380099 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06380100 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06380101 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06380102 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06380103 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06380104 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06380105 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06380106 549.16119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06380107 549.16125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06380108 549.16125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06380109 549.16125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06380110 549.16131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06380111 549.16131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06380112 549.16131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06380113 549.16137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06380114 549.16137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06380115 549.16137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06380116 549.16137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06380117 549.16143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06380118 549.16143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06380119 549.16143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06380120 549.16143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06380121 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06380122 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06380123 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06380124 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06380125 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06380126 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06380127 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06380128 549.16149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06380129 549.16156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06380130 549.16156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06380131 549.16156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06380132 549.16162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06380133 549.16162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06380134 549.16162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06380135 549.16168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06380136 549.16168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06380137 549.16168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06380138 549.16168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06380139 549.16174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06380140 549.16174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06380141 549.16174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06380142 549.16174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06380143 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06380144 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06380145 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06380146 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06380147 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06380148 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06380149 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06380150 549.16180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06380151 549.16186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06380152 549.16186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06380153 549.16186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06380154 549.16192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06380155 549.16192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06380156 549.16192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06380157 549.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06380158 549.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06380159 549.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06380160 549.16198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06380161 549.16204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06380162 549.16204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06380163 549.16204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06380164 549.16204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06380165 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06380166 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06380167 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06380168 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06380169 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06380170 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06380171 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06380172 549.16210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06380173 549.16217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06380174 549.16217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06380175 549.16217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06380176 549.16223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06380177 549.16223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06380178 549.16223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06380179 549.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06380180 549.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06380181 549.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06380182 549.16229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06380183 549.16235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06380184 549.16235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06380185 549.16235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06380186 549.16235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06380187 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06380188 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06380189 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06380190 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06380191 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06380192 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06380193 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06380194 549.16241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06380195 549.16247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06380196 549.16247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06380197 549.16253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06380198 549.16253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06380199 549.16253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06380200 549.16253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06380201 549.16259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06380202 549.16259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06380203 549.16259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06380204 549.16259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06380205 549.16265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06380206 549.16265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06380207 549.16265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06380208 549.16265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06380209 549.16271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06380210 549.16271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06380211 549.16271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06380212 549.16271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06380213 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06380214 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06380215 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06380216 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06380217 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06380218 549.16278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06380219 549.16284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06380220 549.16284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06380221 549.16284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06380222 549.16284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06380223 549.16290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06380224 549.16290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06380225 549.16290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06380226 549.16290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06380227 549.16296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06380228 549.16296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06380229 549.16296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06380230 549.16296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06380231 549.16302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06380232 549.16302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06380233 549.16302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06380234 549.16302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06380235 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06380236 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06380237 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06380238 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06380239 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06380240 549.16308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06380241 549.16314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06380242 549.16314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06380243 549.16314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06380244 549.16314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06380245 549.16320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06380246 549.16320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06380247 549.16320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06380248 549.16320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06380249 549.16326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06380250 549.16326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06380251 549.16326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06380252 549.16326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06380253 549.16333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06380254 549.16333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06380255 549.16333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06380256 549.16333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06380257 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06380258 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06380259 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06380260 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06380261 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06380262 549.16339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06380263 549.16345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06380264 549.16345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06380265 549.16345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06380266 549.16345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06380267 549.16351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06380268 549.16351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06380269 549.16351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06380270 549.16351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06380271 549.16357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06380272 549.16357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06380273 549.16357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06380274 549.16357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06380275 549.16363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06380276 549.16363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06380277 549.16363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06380278 549.16363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06380279 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06380280 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06380281 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06380282 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06380283 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06380284 549.16369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06380285 549.16375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06380286 549.16375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06380287 549.16375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06380288 549.16375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06380289 549.16381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06380290 549.16381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06380291 549.16381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06380292 549.16381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06380293 549.16387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06380294 549.16387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06380295 549.16387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06380296 549.16387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06380297 549.16394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06380298 549.16394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06380299 549.16394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06380300 549.16394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06380301 549.16400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06380302 549.16400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06380303 549.16400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06380304 549.16400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06380305 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06380306 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06380307 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06380308 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06380309 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06380310 549.16406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06380311 549.16412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06380312 549.16412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06380313 549.16412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06380314 549.16412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06380315 549.16418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06380316 549.16418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06380317 549.16418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06380318 549.16418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06380319 549.16424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06380320 549.16424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06380321 549.16424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06380322 549.16424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06380323 549.16430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06380324 549.16430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06380325 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06380326 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06380327 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06380328 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06380329 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06380330 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06380331 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06380332 549.16436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06380333 549.16442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06380334 549.16442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06380335 549.16442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06380336 549.16442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06380337 549.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06380338 549.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06380339 549.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06380340 549.16448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06380341 549.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06380342 549.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06380343 549.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06380344 549.16455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06380345 549.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06380346 549.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06380347 549.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06380348 549.16461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06380349 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06380350 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06380351 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06380352 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06380353 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06380354 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06380355 549.16467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06380356 549.16473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06380357 549.16473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06380358 549.16473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06380359 549.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06380360 549.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06380361 549.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06380362 549.16479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06380363 549.16485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06380364 549.16485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06380365 549.16485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06380366 549.16485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06380367 549.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06380368 549.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06380369 549.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06380370 549.16491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06380371 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06380372 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06380373 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06380374 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06380375 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06380376 549.16497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06380377 549.16503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06380378 549.16503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06380379 549.16503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06380380 549.16503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06380381 549.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06380382 549.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06380383 549.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06380384 549.16510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06380385 549.16516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06380386 549.16516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06380387 549.16516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06380388 549.16516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06380389 549.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06380390 549.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06380391 549.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06380392 549.16522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06380393 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06380394 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06380395 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06380396 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06380397 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06380398 549.16528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06380399 549.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06380400 549.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06380401 549.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06380402 549.16534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06380403 549.16540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06380404 549.16540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06380405 549.16540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06380406 549.16540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06380407 549.16546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06380408 549.16546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06380409 549.16546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06380410 549.16546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06380411 549.16552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06380412 549.16552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06380413 549.16552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06380414 549.16552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06380415 549.16558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06380416 549.16558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06380417 549.16558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06380418 549.16558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06380419 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06380420 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06380421 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06380422 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06380423 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06380424 549.16564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06380425 549.16571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06380426 549.16571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06380427 549.16571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06380428 549.16571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06380429 549.16577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06380430 549.16577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06380431 549.16577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06380432 549.16577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06380433 549.16583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06380434 549.16583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06380435 549.16583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06380436 549.16583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06380437 549.16589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06380438 549.16589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06380439 549.16589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06380440 549.16589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06380441 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06380442 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06380443 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06380444 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06380445 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06380446 549.16595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06380447 549.16601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06380448 549.16601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06380449 549.16607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06380450 549.16607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06380451 549.16607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06380452 549.16607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06380453 549.16613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06380454 549.16613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06380455 549.16613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06380456 549.16613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06380457 549.16619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06380458 549.16619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06380459 549.16619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06380460 549.16619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06380461 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06380462 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06380463 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06380464 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06380465 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06380466 549.16625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06380467 549.16632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06380468 549.16632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06380469 549.16632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06380470 549.16632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06380471 549.16638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06380472 549.16638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06380473 549.16638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06380474 549.16638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06380475 549.16644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06380476 549.16644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06380477 549.16644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06380478 549.16644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06380479 549.16650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06380480 549.16650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06380481 549.16650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06380482 549.16650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06380483 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06380484 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06380485 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06380486 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06380487 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06380488 549.16656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06380489 549.16662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06380490 549.16662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06380491 549.16662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06380492 549.16662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06380493 549.16668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06380494 549.16668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06380495 549.16668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06380496 549.16668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06380497 549.16674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06380498 549.16674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06380499 549.16674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06380500 549.16674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06380501 549.16680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06380502 549.16680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06380503 549.16680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06380504 549.16680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06380505 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06380506 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06380507 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06380508 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06380509 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06380510 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06380511 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06380512 549.16687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06380513 549.16693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06380514 549.16693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06380515 549.16699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06380516 549.16699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06380517 549.16699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06380518 549.16699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06380519 549.16705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06380520 549.16705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06380521 549.16705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06380522 549.16705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06380523 549.16711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06380524 549.16711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06380525 549.16711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06380526 549.16711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06380527 549.16717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06380528 549.16717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06380529 549.16717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06380530 549.16717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06380531 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06380532 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06380533 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06380534 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06380535 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06380536 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06380537 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06380538 549.16723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06380539 549.16729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06380540 549.16729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06380541 549.16729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06380542 549.16729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06380543 549.16735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06380544 549.16735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06380545 549.16735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06380546 549.16735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06380547 549.16741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06380548 549.16741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06380549 549.16748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06380550 549.16748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06380551 549.16748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06380552 549.16748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06380553 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06380554 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06380555 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06380556 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06380557 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06380558 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06380559 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06380560 549.16754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06380561 549.16760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06380562 549.16760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06380563 549.16760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06380564 549.16760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06380565 549.16766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06380566 549.16766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06380567 549.16766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06380568 549.16766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06380569 549.16772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06380570 549.16772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06380571 549.16772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06380572 549.16778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06380573 549.16778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06380574 549.16778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06380575 549.16778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06380576 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06380577 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06380578 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06380579 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06380580 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06380581 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06380582 549.16784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06380583 549.16790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06380584 549.16790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06380585 549.16790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06380586 549.16790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06380587 549.16796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06380588 549.16796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06380589 549.16796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06380590 549.16796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06380591 549.16802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06380592 549.16802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06380593 549.16802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06380594 549.16802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06380595 549.16809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06380596 549.16809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06380597 549.16809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06380598 549.16809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06380599 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06380600 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06380601 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06380602 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06380603 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06380604 549.16815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06380605 549.16821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06380606 549.16821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06380607 549.16821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06380608 549.16821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06380609 549.16827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06380610 549.16827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06380611 549.16827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06380612 549.16827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06380613 549.16833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06380614 549.16833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06380615 549.16833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06380616 549.16833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06380617 549.16839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06380618 549.16839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06380619 549.16839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06380620 549.16839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06380621 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06380622 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06380623 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06380624 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06380625 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06380626 549.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06380627 549.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06380628 549.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06380629 549.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06380630 549.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06380631 549.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06380632 549.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06380633 549.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06380634 549.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06380635 549.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06380636 549.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06380637 549.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06380638 549.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06380639 549.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06380640 549.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06380641 549.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06380642 549.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06380643 549.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06380644 549.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06380645 549.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06380646 549.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06380647 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06380648 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06380649 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06380650 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06380651 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06380652 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06380653 549.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06380654 549.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06380655 549.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06380656 549.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06380657 549.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06380658 549.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06380659 549.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06380660 549.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06380661 549.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06380662 549.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06380663 549.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06380664 549.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06380665 549.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06380666 549.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06380667 549.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06380668 549.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06380669 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06380670 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06380671 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06380672 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06380673 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06380674 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06380675 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06380676 549.16912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06380677 549.16918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06380678 549.16918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06380679 549.16918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06380680 549.16918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06380681 549.16925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06380682 549.16925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06380683 549.16925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06380684 549.16931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06380685 549.16931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06380686 549.16931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06380687 549.16937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06380688 549.16937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06380689 549.16937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06380690 549.16937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06380691 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06380692 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06380693 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06380694 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06380695 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06380696 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06380697 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06380698 549.16943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06380699 549.16949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06380700 549.16949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06380701 549.16949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06380702 549.16949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06380703 549.16955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06380704 549.16955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06380705 549.16955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06380706 549.16961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06380707 549.16961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06380708 549.16961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06380709 549.16967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06380710 549.16967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06380711 549.16967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06380712 549.16967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06380713 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06380714 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06380715 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06380716 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06380717 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06380718 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06380719 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06380720 549.16973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06380721 549.16979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06380722 549.16979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06380723 549.16979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06380724 549.16979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06380725 549.16986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06380726 549.16986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06380727 549.16986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06380728 549.16986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06380729 549.16992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06380730 549.16992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06380731 549.16992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06380732 549.16992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06380733 549.16998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06380734 549.16998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06380735 549.16998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06380736 549.16998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06380737 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06380738 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06380739 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06380740 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06380741 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06380742 549.17004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06380743 549.17010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06380744 549.17010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06380745 549.17010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06380746 549.17010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06380747 549.17016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06380748 549.17016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06380749 549.17016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06380750 549.17016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06380751 549.17022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06380752 549.17022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06380753 549.17022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06380754 549.17022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06380755 549.17028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06380756 549.17028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06380757 549.17028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06380758 549.17028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06380759 549.17034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06380760 549.17034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06380761 549.17034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06380762 549.17034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06380763 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06380764 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06380765 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06380766 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06380767 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06380768 549.17041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06380769 549.17047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06380770 549.17047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06380771 549.17047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06380772 549.17047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06380773 549.17053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06380774 549.17053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06380775 549.17053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06380776 549.17053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06380777 549.17059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06380778 549.17059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06380779 549.17059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06380780 549.17059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06380781 549.17065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06380782 549.17065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06380783 549.17065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06380784 549.17065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06380785 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06380786 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06380787 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06380788 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06380789 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06380790 549.17071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06380791 549.17077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06380792 549.17077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06380793 549.17077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06380794 549.17077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06380795 549.17083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06380796 549.17083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06380797 549.17083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06380798 549.17083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06380799 549.17089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06380800 549.17089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06380801 549.17089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06380802 549.17089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06380803 549.17095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06380804 549.17095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06380805 549.17095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06380806 549.17095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06380807 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06380808 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06380809 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06380810 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06380811 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06380812 549.17102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06380813 549.17108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06380814 549.17108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06380815 549.17108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06380816 549.17108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06380817 549.17114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06380818 549.17114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06380819 549.17114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06380820 549.17114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06380821 549.17120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06380822 549.17120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06380823 549.17120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06380824 549.17120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06380825 549.17126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06380826 549.17126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06380827 549.17126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06380828 549.17126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06380829 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06380830 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06380831 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06380832 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06380833 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06380834 549.17132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06380835 549.17138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06380836 549.17138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06380837 549.17138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06380838 549.17138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06380839 549.17144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06380840 549.17144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06380841 549.17144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06380842 549.17144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06380843 549.17150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06380844 549.17150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06380845 549.17150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06380846 549.17150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06380847 549.17156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06380848 549.17156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06380849 549.17156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06380850 549.17156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06380851 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06380852 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06380853 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06380854 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06380855 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06380856 549.17163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06380857 549.17169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06380858 549.17169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06380859 549.17169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06380860 549.17169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06380861 549.17175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06380862 549.17175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06380863 549.17175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06380864 549.17175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06380865 549.17181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06380866 549.17181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06380867 549.17181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06380868 549.17181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06380869 549.17187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06380870 549.17187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06380871 549.17187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06380872 549.17187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06380873 549.17193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06380874 549.17193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06380875 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06380876 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06380877 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06380878 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06380879 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06380880 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06380881 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06380882 549.17199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06380883 549.17205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06380884 549.17205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06380885 549.17205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06380886 549.17205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06380887 549.17211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06380888 549.17211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06380889 549.17211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06380890 549.17211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06380891 549.17218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06380892 549.17218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06380893 549.17218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06380894 549.17224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06380895 549.17224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06380896 549.17224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06380897 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06380898 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06380899 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06380900 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06380901 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06380902 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06380903 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06380904 549.17230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06380905 549.17236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06380906 549.17236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06380907 549.17236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06380908 549.17236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06380909 549.17242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06380910 549.17242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06380911 549.17242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06380912 549.17242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06380913 549.17248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06380914 549.17248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06380915 549.17248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06380916 549.17254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06380917 549.17254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06380918 549.17254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06380919 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06380920 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06380921 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06380922 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06380923 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06380924 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06380925 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06380926 549.17260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06380927 549.17266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06380928 549.17266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06380929 549.17266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06380930 549.17266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06380931 549.17272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06380932 549.17272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06380933 549.17272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06380934 549.17272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06380935 549.17279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06380936 549.17279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06380937 549.17279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06380938 549.17285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06380939 549.17285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06380940 549.17285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06380941 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06380942 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06380943 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06380944 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06380945 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06380946 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06380947 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06380948 549.17291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06380949 549.17297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06380950 549.17297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06380951 549.17297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06380952 549.17297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06380953 549.17303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06380954 549.17303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06380955 549.17303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06380956 549.17303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06380957 549.17309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06380958 549.17309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06380959 549.17309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06380960 549.17315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06380961 549.17315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06380962 549.17315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06380963 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06380964 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06380965 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06380966 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06380967 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06380968 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06380969 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06380970 549.17321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06380971 549.17327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06380972 549.17327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06380973 549.17327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06380974 549.17327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06380975 549.17333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06380976 549.17333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06380977 549.17333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06380978 549.17333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06380979 549.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06380980 549.17340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06380981 549.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06380982 549.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06380983 549.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06380984 549.17346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06380985 549.17352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06380986 549.17352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06380987 549.17352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06380988 549.17352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06380989 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06380990 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06380991 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06380992 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06380993 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06380994 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06380995 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06380996 549.17358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06380997 549.17364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06380998 549.17364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06380999 549.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06381000 549.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06381001 549.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06381002 549.17370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06381003 549.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06381004 549.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06381005 549.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06381006 549.17376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06381007 549.17382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06381008 549.17382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06381009 549.17382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06381010 549.17382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06381011 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06381012 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06381013 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06381014 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06381015 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06381016 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06381017 549.17388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06381018 549.17395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06381019 549.17395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06381020 549.17395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06381021 549.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06381022 549.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06381023 549.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06381024 549.17401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06381025 549.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06381026 549.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06381027 549.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06381028 549.17407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06381029 549.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06381030 549.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06381031 549.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06381032 549.17413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06381033 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06381034 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06381035 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06381036 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06381037 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06381038 549.17419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06381039 549.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06381040 549.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06381041 549.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06381042 549.17425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06381043 549.17431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06381044 549.17431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06381045 549.17431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06381046 549.17431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06381047 549.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06381048 549.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06381049 549.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06381050 549.17437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06381051 549.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06381052 549.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06381053 549.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06381054 549.17443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06381055 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06381056 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06381057 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06381058 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06381059 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06381060 549.17449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06381061 549.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06381062 549.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06381063 549.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06381064 549.17456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06381065 549.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06381066 549.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06381067 549.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06381068 549.17462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06381069 549.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06381070 549.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06381071 549.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06381072 549.17468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06381073 549.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06381074 549.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06381075 549.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06381076 549.17474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06381077 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06381078 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06381079 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06381080 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06381081 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06381082 549.17480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06381083 549.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06381084 549.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06381085 549.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06381086 549.17486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06381087 549.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06381088 549.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06381089 549.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06381090 549.17492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06381091 549.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06381092 549.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06381093 549.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06381094 549.17498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06381095 549.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06381096 549.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06381097 549.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06381098 549.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06381099 549.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06381100 549.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06381101 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06381102 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06381103 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06381104 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06381105 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06381106 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06381107 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06381108 549.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06381109 549.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06381110 549.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06381111 549.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06381112 549.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06381113 549.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06381114 549.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06381115 549.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06381116 549.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06381117 549.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06381118 549.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06381119 549.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06381120 549.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06381121 549.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06381122 549.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06381123 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06381124 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06381125 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06381126 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06381127 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06381128 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06381129 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06381130 549.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06381131 549.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06381132 549.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06381133 549.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06381134 549.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06381135 549.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06381136 549.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06381137 549.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06381138 549.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06381139 549.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06381140 549.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06381141 549.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06381142 549.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06381143 549.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06381144 549.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06381145 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06381146 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06381147 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06381148 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06381149 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06381150 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06381151 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06381152 549.17578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06381153 549.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06381154 549.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06381155 549.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06381156 549.17584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06381157 549.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06381158 549.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06381159 549.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06381160 549.17590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06381161 549.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06381162 549.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06381163 549.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06381164 549.17596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06381165 549.17602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06381166 549.17602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06381167 549.17602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06381168 549.17602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06381169 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06381170 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06381171 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06381172 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06381173 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06381174 549.17608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06381175 549.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06381176 549.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06381177 549.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06381178 549.17614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06381179 549.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06381180 549.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06381181 549.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06381182 549.17620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06381183 549.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06381184 549.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06381185 549.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06381186 549.17626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06381187 549.17633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06381188 549.17633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06381189 549.17633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06381190 549.17633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06381191 549.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06381192 549.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06381193 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06381194 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06381195 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06381196 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06381197 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06381198 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06381199 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06381200 549.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06381201 549.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06381202 549.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06381203 549.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06381204 549.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06381205 549.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06381206 549.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06381207 549.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06381208 549.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06381209 549.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06381210 549.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06381211 549.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06381212 549.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06381213 549.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06381214 549.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06381215 549.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06381216 549.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06381217 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06381218 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06381219 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06381220 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06381221 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06381222 549.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06381223 549.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06381224 549.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06381225 549.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06381226 549.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06381227 549.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06381228 549.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06381229 549.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06381230 549.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06381231 549.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06381232 549.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06381233 549.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06381234 549.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06381235 549.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06381236 549.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06381237 549.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06381238 549.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06381239 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06381240 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06381241 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06381242 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06381243 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06381244 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06381245 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06381246 549.17706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06381247 549.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06381248 549.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06381249 549.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06381250 549.17712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06381251 549.17718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06381252 549.17718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06381253 549.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06381254 549.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06381255 549.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06381256 549.17724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06381257 549.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06381258 549.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06381259 549.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06381260 549.17730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06381261 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06381262 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06381263 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06381264 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06381265 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06381266 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06381267 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06381268 549.17736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06381269 549.17742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06381270 549.17742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06381271 549.17742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06381272 549.17749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06381273 549.17749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06381274 549.17749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06381275 549.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06381276 549.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06381277 549.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06381278 549.17755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06381279 549.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06381280 549.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06381281 549.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06381282 549.17761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06381283 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06381284 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06381285 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06381286 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06381287 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06381288 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06381289 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06381290 549.17767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06381291 549.17773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06381292 549.17773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06381293 549.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06381294 549.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06381295 549.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06381296 549.17779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06381297 549.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06381298 549.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06381299 549.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06381300 549.17785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06381301 549.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06381302 549.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06381303 549.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06381304 549.17791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06381305 549.17797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06381306 549.17797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06381307 549.17797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06381308 549.17797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06381309 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06381310 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06381311 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06381312 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06381313 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06381314 549.17803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06381315 549.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06381316 549.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06381317 549.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06381318 549.17810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06381319 549.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06381320 549.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06381321 549.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06381322 549.17816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06381323 549.17822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06381324 549.17822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06381325 549.17822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06381326 549.17822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06381327 549.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06381328 549.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06381329 549.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06381330 549.17828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06381331 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06381332 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06381333 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06381334 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06381335 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06381336 549.17834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06381337 549.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06381338 549.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06381339 549.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06381340 549.17840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06381341 549.17846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06381342 549.17846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06381343 549.17846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06381344 549.17846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06381345 549.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06381346 549.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06381347 549.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06381348 549.17852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06381349 549.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06381350 549.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06381351 549.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06381352 549.17858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06381353 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06381354 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06381355 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06381356 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06381357 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06381358 549.17864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06381359 549.17871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06381360 549.17871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06381361 549.17871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06381362 549.17871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06381363 549.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06381364 549.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06381365 549.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06381366 549.17877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06381367 549.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06381368 549.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06381369 549.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06381370 549.17883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06381371 549.17889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06381372 549.17889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06381373 549.17889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06381374 549.17889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06381375 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06381376 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06381377 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06381378 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06381379 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06381380 549.17895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06381381 549.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06381382 549.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06381383 549.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06381384 549.17901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06381385 549.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06381386 549.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06381387 549.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06381388 549.17907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06381389 549.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06381390 549.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06381391 549.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06381392 549.17913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06381393 549.17919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06381394 549.17919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06381395 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06381396 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06381397 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06381398 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06381399 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06381400 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06381401 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06381402 549.17926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06381403 549.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06381404 549.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06381405 549.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06381406 549.17932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06381407 549.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06381408 549.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06381409 549.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06381410 549.17938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06381411 549.17944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06381412 549.17944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06381413 549.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06381414 549.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06381415 549.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06381416 549.17950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06381417 549.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06381418 549.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06381419 549.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06381420 549.17956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06381421 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06381422 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06381423 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06381424 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06381425 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06381426 549.17962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06381427 549.17968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06381428 549.17968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06381429 549.17968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06381430 549.17968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06381431 549.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06381432 549.17974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06381433 549.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06381434 549.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06381435 549.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06381436 549.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06381437 549.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06381438 549.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06381439 549.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06381440 549.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06381441 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06381442 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06381443 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06381444 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06381445 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06381446 549.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06381447 549.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06381448 549.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06381449 549.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06381450 549.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06381451 549.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06381452 549.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06381453 549.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06381454 549.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06381455 549.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06381456 549.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06381457 549.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06381458 549.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06381459 549.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06381460 549.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06381461 549.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06381462 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06381463 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06381464 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06381465 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06381466 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06381467 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06381468 549.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06381469 549.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06381470 549.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06381471 549.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06381472 549.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06381473 549.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06381474 549.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06381475 549.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06381476 549.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06381477 549.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06381478 549.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06381479 549.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06381480 549.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06381481 549.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06381482 549.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06381483 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06381484 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06381485 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06381486 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06381487 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06381488 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06381489 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06381490 549.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06381491 549.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06381492 549.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06381493 549.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06381494 549.18066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06381495 549.18066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06381496 549.18066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06381497 549.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06381498 549.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06381499 549.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06381500 549.18072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06381501 549.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06381502 549.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06381503 549.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06381504 549.18078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06381505 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06381506 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06381507 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06381508 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06381509 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06381510 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06381511 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06381512 549.18084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06381513 549.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06381514 549.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06381515 549.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06381516 549.18090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06381517 549.18096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06381518 549.18096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06381519 549.18096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06381520 549.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06381521 549.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06381522 549.18103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06381523 549.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06381524 549.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06381525 549.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06381526 549.18109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06381527 549.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06381528 549.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06381529 549.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06381530 549.18115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06381531 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06381532 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06381533 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06381534 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06381535 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06381536 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06381537 549.18121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06381538 549.18127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06381539 549.18127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06381540 549.18127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06381541 549.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06381542 549.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06381543 549.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06381544 549.18133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06381545 549.18139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06381546 549.18139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06381547 549.18139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06381548 549.18139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06381549 549.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06381550 549.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06381551 549.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06381552 549.18145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06381553 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06381554 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06381555 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06381556 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06381557 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06381558 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06381559 549.18151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06381560 549.18157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06381561 549.18157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06381562 549.18157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06381563 549.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06381564 549.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06381565 549.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06381566 549.18164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06381567 549.18170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06381568 549.18170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06381569 549.18170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06381570 549.18170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06381571 549.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06381572 549.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06381573 549.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06381574 549.18176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06381575 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06381576 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06381577 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06381578 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06381579 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06381580 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06381581 549.18182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06381582 549.18188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06381583 549.18188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06381584 549.18188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06381585 549.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06381586 549.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06381587 549.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06381588 549.18194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06381589 549.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06381590 549.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06381591 549.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06381592 549.18200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06381593 549.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06381594 549.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06381595 549.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06381596 549.18206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06381597 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06381598 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06381599 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06381600 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06381601 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06381602 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06381603 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06381604 549.18212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06381605 549.18218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06381606 549.18218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06381607 549.18218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06381608 549.18225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06381609 549.18225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06381610 549.18225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06381611 549.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06381612 549.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06381613 549.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06381614 549.18231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06381615 549.18237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06381616 549.18237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06381617 549.18237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06381618 549.18237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06381619 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06381620 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06381621 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06381622 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06381623 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06381624 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06381625 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06381626 549.18243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06381627 549.18249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06381628 549.18249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06381629 549.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06381630 549.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06381631 549.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06381632 549.18255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06381633 549.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06381634 549.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06381635 549.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06381636 549.18261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06381637 549.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06381638 549.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06381639 549.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06381640 549.18267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06381641 549.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06381642 549.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06381643 549.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06381644 549.18273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06381645 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06381646 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06381647 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06381648 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06381649 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06381650 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06381651 549.18280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06381652 549.18286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06381653 549.18286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06381654 549.18286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06381655 549.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06381656 549.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06381657 549.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06381658 549.18292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06381659 549.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06381660 549.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06381661 549.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06381662 549.18298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06381663 549.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06381664 549.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06381665 549.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06381666 549.18304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06381667 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06381668 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06381669 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06381670 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06381671 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06381672 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06381673 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06381674 549.18310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06381675 549.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06381676 549.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06381677 549.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06381678 549.18316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06381679 549.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06381680 549.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06381681 549.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06381682 549.18322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06382593 549.19604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -06382594 549.19604492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -06382595 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -06382596 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -06382597 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -06382598 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -06382599 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -06382600 549.19610596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -06382601 549.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -06382602 549.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -06382603 549.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -06382604 549.19616699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -06382605 549.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -06382606 549.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -06382607 549.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -06382608 549.19622803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -06382609 549.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -06382610 549.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -06382611 549.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -06382612 549.19628906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -06382613 549.19635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -06382614 549.19635010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -06382615 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -06382616 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -06382617 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -06382618 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -06382619 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -06382620 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -06382621 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -06382622 549.19641113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -06382623 549.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -06382624 549.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -06382625 549.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -06382626 549.19647217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -06382627 549.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -06382628 549.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -06382629 549.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -06382630 549.19653320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -06382631 549.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -06382632 549.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -06382633 549.19659424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -06382634 549.19665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -06382635 549.19665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -06382636 549.19665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -06384953 549.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -06384954 549.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf78 -06384955 549.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -06384956 549.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf88 -06384957 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -06384958 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdf98 -06384959 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -06384960 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfa8 -06384961 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -06384962 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfb8 -06384963 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -06384964 549.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfc8 -06384965 549.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -06384966 549.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfd8 -06384967 549.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -06384968 549.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdfe8 -06384969 549.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -06384970 549.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdff8 -06384971 549.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -06384972 549.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe008 -06384973 549.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -06384974 549.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe018 -06384975 549.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -06384976 549.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe028 -06384977 549.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -06384978 549.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe038 -06384979 549.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -06384980 549.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe048 -06384981 549.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -06384982 549.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe058 -06384983 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -06384984 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe068 -06384985 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -06384986 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe078 -06384987 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -06384988 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe088 -06384989 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -06384990 549.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe098 -06384991 549.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -06384992 549.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0a8 -06384993 549.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -06384994 549.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0b8 -06384995 549.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -06384996 549.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe0c8 -06399421 549.43640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -06399422 549.43640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a378 -06399423 549.43646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -06399424 549.43646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a388 -06399425 549.43646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -06399426 549.43646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a398 -06399427 549.43652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -06399428 549.43652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3a8 -06399429 549.43652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -06399430 549.43652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3b8 -06399431 549.43658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -06399432 549.43658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3c8 -06399433 549.43658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -06399434 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3d8 -06399435 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -06399436 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3e8 -06399437 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -06399438 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a3f8 -06399439 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -06399440 549.43664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a408 -06399441 549.43670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -06399442 549.43670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a418 -06399443 549.43670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -06399444 549.43670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a428 -06399445 549.43676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -06399446 549.43676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a438 -06399447 549.43676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -06399448 549.43682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a448 -06399449 549.43682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -06399450 549.43682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a458 -06399451 549.43688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -06399452 549.43688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a468 -06399453 549.43688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -06399454 549.43688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a478 -06399455 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -06399456 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a488 -06399457 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -06399458 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a498 -06399459 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -06399460 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4a8 -06399461 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -06399462 549.43695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4b8 -06399463 549.43701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -06399464 549.43701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a4c8 -06402955 549.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e8 -06402956 549.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e8 -06402957 549.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f8 -06402958 549.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f8 -06402959 549.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -06402960 549.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31208 -06402961 549.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -06402962 549.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31218 -06402963 549.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -06402964 549.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31228 -06402965 549.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -06402966 549.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31238 -06402967 549.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -06402968 549.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31248 -06402969 549.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -06402970 549.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -06402971 549.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -06402972 549.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -06402973 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -06402974 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -06402975 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -06402976 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -06402977 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -06402978 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -06402979 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -06402980 549.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -06402981 549.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -06402982 549.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -06402983 549.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -06402984 549.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -06402985 549.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -06402986 549.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -06402987 549.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -06402988 549.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -06402989 549.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -06402990 549.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -06402991 549.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -06402992 549.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -06402993 549.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -06402994 549.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -06402995 549.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -06402996 549.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -06402997 549.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -06402998 549.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -06406275 549.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a8 -06406276 549.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379a8 -06406277 549.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b8 -06406278 549.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379b8 -06406279 549.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c8 -06406280 549.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379c8 -06406281 549.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d8 -06406282 549.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379d8 -06406283 549.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e8 -06406284 549.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379e8 -06406285 549.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f8 -06406286 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x379f8 -06406287 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a08 -06406288 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a08 -06406289 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a18 -06406290 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a18 -06406291 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a28 -06406292 549.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a28 -06406293 549.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a38 -06406294 549.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a38 -06406295 549.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a48 -06406296 549.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a48 -06406297 549.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a58 -06406298 549.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a58 -06406299 549.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a68 -06406300 549.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a68 -06406301 549.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a78 -06406302 549.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a78 -06406303 549.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a88 -06406304 549.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a88 -06406305 549.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a98 -06406306 549.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a98 -06406307 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa8 -06406308 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa8 -06406309 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab8 -06406310 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab8 -06406311 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac8 -06406312 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac8 -06406313 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad8 -06406314 549.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad8 -06406315 549.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae8 -06406316 549.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae8 -06406317 549.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af8 -06406318 549.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af8 -06409915 549.58538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb68 -06409916 549.58538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb68 -06409917 549.58538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb78 -06409918 549.58538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb78 -06409919 549.58544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb88 -06409920 549.58544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb88 -06409921 549.58544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb98 -06409922 549.58544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb98 -06409923 549.58551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba8 -06409924 549.58551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eba8 -06409925 549.58551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb8 -06409926 549.58551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebb8 -06409927 549.58557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc8 -06409928 549.58557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebc8 -06409929 549.58557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd8 -06409930 549.58557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebd8 -06409931 549.58563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe8 -06409932 549.58563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebe8 -06409933 549.58563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf8 -06409934 549.58563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ebf8 -06409935 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec08 -06409936 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec08 -06409937 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -06409938 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec18 -06409939 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -06409940 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec28 -06409941 549.58569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -06409942 549.58575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec38 -06409943 549.58575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -06409944 549.58575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec48 -06409945 549.58581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -06409946 549.58581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec58 -06409947 549.58581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -06409948 549.58581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec68 -06409949 549.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -06409950 549.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec78 -06409951 549.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -06409952 549.58587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec88 -06409953 549.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -06409954 549.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec98 -06409955 549.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -06409956 549.58593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eca8 -06409957 549.58599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -06409958 549.58599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecb8 -06413089 549.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e98 -06413090 549.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e98 -06413091 549.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -06413092 549.63061523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea8 -06413093 549.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -06413094 549.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb8 -06413095 549.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -06413096 549.63067627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec8 -06413097 549.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -06413098 549.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed8 -06413099 549.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -06413100 549.63073730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee8 -06413101 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -06413102 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef8 -06413103 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -06413104 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f08 -06413105 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -06413106 549.63079834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f18 -06413107 549.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -06413108 549.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f28 -06413109 549.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -06413110 549.63085938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f38 -06413111 549.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -06413112 549.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f48 -06413113 549.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -06413114 549.63092041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f58 -06413115 549.63098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -06413116 549.63098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f68 -06413117 549.63098145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -06413118 549.63104248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f78 -06413119 549.63104248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -06413120 549.63104248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f88 -06413121 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f98 -06413122 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f98 -06413123 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa8 -06413124 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa8 -06413125 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb8 -06413126 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb8 -06413127 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc8 -06413128 549.63110352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fc8 -06413129 549.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd8 -06413130 549.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fd8 -06413131 549.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe8 -06413132 549.63116455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fe8 -06416009 549.67218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d8 -06416010 549.67218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9d8 -06416011 549.67218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e8 -06416012 549.67218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9e8 -06416013 549.67224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f8 -06416014 549.67224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9f8 -06416015 549.67224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa08 -06416016 549.67224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa08 -06416017 549.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa18 -06416018 549.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa18 -06416019 549.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa28 -06416020 549.67230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa28 -06416021 549.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa38 -06416022 549.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa38 -06416023 549.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa48 -06416024 549.67236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa48 -06416025 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -06416026 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa58 -06416027 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -06416028 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa68 -06416029 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -06416030 549.67242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa78 -06416031 549.67248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -06416032 549.67248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa88 -06416033 549.67248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -06416034 549.67248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa98 -06416035 549.67254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -06416036 549.67254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaa8 -06416037 549.67254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -06416038 549.67254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aab8 -06416039 549.67260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -06416040 549.67260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aac8 -06416041 549.67260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -06416042 549.67266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aad8 -06416043 549.67266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -06416044 549.67266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aae8 -06416045 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -06416046 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aaf8 -06416047 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -06416048 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab08 -06416049 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -06416050 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab18 -06416051 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -06416052 549.67272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab28 -06419469 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -06419470 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f8 -06419471 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -06419472 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51608 -06419473 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -06419474 549.72137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51618 -06419475 549.72143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -06419476 549.72143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51628 -06419477 549.72143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -06419478 549.72143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51638 -06419479 549.72149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -06419480 549.72149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51648 -06419481 549.72149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -06419482 549.72155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51658 -06419483 549.72155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -06419484 549.72155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51668 -06419485 549.72161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -06419486 549.72161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51678 -06419487 549.72161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -06419488 549.72161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51688 -06419489 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -06419490 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51698 -06419491 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -06419492 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516a8 -06419493 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -06419494 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516b8 -06419495 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -06419496 549.72167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516c8 -06419497 549.72174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -06419498 549.72174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516d8 -06419499 549.72180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -06419500 549.72180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516e8 -06419501 549.72180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f8 -06419502 549.72180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x516f8 -06419503 549.72186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51708 -06419504 549.72186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51708 -06419505 549.72186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51718 -06419506 549.72186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51718 -06419507 549.72192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51728 -06419508 549.72192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51728 -06419509 549.72192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51738 -06419510 549.72192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51738 -06419511 549.72198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51748 -06419512 549.72198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51748 -06420213 549.98083496 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420214 549.98089600 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420215 549.98095703 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420216 549.98095703 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06420217 549.98101807 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420218 549.98101807 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06420219 549.98107910 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420220 549.98114014 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06420221 550.34564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06420222 550.36450195 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420223 550.36456299 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420224 552.36523438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06420225 552.38500977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420226 552.38500977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420227 552.48712158 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420228 552.48718262 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420229 552.48718262 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420230 552.48724365 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06420231 552.48736572 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420232 552.48736572 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06420233 552.48742676 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06420234 552.48748779 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06420235 554.38690186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06420236 554.40606689 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420237 554.40606689 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06420238 554.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06420239 554.73272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06420240 554.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06420241 554.73278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06420242 554.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06420243 554.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06420244 554.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06420245 554.73284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06420246 554.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06420247 554.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06420248 554.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06420249 554.73291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06420250 554.73297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06420251 554.73297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06420252 554.73297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06420253 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06420254 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06420255 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06420256 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06420257 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06420258 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06420259 554.73303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06420260 554.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06420261 554.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06420262 554.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06420263 554.73309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06420264 554.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06420265 554.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06420266 554.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06420267 554.73315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06420268 554.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06420269 554.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06420270 554.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06420271 554.73321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06420272 554.73327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06420273 554.73327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06420274 554.73327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06420275 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06420276 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06420277 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06420278 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06420279 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06420280 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06420281 554.73333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06420282 554.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06420283 554.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06420284 554.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06420285 554.73339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06420286 554.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06420287 554.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06420288 554.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06420289 554.73345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06420290 554.73352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06420291 554.73352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06420292 554.73352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06420293 554.73352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06420294 554.73358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06420295 554.73358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06420296 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06420297 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06420298 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06420299 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06420300 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06420301 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06420302 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06420303 554.73364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06420304 554.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06420305 554.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06420306 554.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06420307 554.73370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06420308 554.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06420309 554.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06420310 554.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06420311 554.73376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06420312 554.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06420313 554.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06420314 554.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06420315 554.73382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06420316 554.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06420317 554.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06420318 554.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06420319 554.73388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06420320 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06420321 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06420322 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06420323 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06420324 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06420325 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06420326 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06420327 554.73394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06420328 554.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06420329 554.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06420330 554.73400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06420331 554.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06420332 554.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06420333 554.73406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06420334 554.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06420335 554.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06420336 554.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06420337 554.73413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06420338 554.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06420339 554.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06420340 554.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06420341 554.73419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06420342 554.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06420343 554.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06420344 554.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06420345 554.73425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06420346 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06420347 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06420348 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06420349 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06420350 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06420351 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06420352 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06420353 554.73431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06420354 554.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06420355 554.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06420356 554.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06420357 554.73437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06420358 554.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06420359 554.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06420360 554.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06420361 554.73443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06420362 554.73449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06420363 554.73449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06420364 554.73455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06420365 554.73455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06420366 554.73455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06420367 554.73455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06420368 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06420369 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06420370 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06420371 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06420372 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06420373 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06420374 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06420375 554.73461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06420376 554.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06420377 554.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06420378 554.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06420379 554.73468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06420380 554.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06420381 554.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06420382 554.73474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06420383 554.73480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06420384 554.73480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06420385 554.73480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06420386 554.73486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06420387 554.73486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06420388 554.73486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06420389 554.73486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06420390 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06420391 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06420392 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06420393 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06420394 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06420395 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06420396 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06420397 554.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06420398 554.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06420399 554.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06420400 554.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06420401 554.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06420402 554.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06420403 554.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06420404 554.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06420405 554.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06420406 554.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06420407 554.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06420408 554.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06420409 554.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06420410 554.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06420411 554.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06420412 554.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06420413 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06420414 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06420415 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06420416 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06420417 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06420418 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06420419 554.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06420420 554.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06420421 554.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06420422 554.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06420423 554.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06420424 554.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06420425 554.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06420426 554.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06420427 554.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06420428 554.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06420429 554.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06420430 554.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06420431 554.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06420432 554.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06420433 554.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06420434 554.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06420435 554.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06420436 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06420437 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06420438 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06420439 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06420440 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06420441 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06420442 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06420443 554.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06420444 554.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06420445 554.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06420446 554.73559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06420447 554.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06420448 554.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06420449 554.73565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06420450 554.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06420451 554.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06420452 554.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06420453 554.73571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06420454 554.73577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06420455 554.73577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06420456 554.73577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06420457 554.73577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06420458 554.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06420459 554.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06420460 554.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06420461 554.73583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06420462 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06420463 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06420464 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06420465 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06420466 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06420467 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06420468 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06420469 554.73590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06420470 554.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06420471 554.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06420472 554.73596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06420473 554.73602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06420474 554.73602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06420475 554.73602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06420476 554.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06420477 554.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06420478 554.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06420479 554.73608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06420480 554.73614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06420481 554.73614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06420482 554.73614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06420483 554.73614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06420484 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06420485 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06420486 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06420487 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06420488 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06420489 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06420490 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06420491 554.73620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06420492 554.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06420493 554.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06420494 554.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06420495 554.73626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06420496 554.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06420497 554.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06420498 554.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06420499 554.73632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06420500 554.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06420501 554.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06420502 554.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06420503 554.73638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06420504 554.73645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06420505 554.73645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06420506 554.73645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06420507 554.73645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06420508 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06420509 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06420510 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06420511 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06420512 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06420513 554.73651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06420514 554.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06420515 554.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06420516 554.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06420517 554.73657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06420518 554.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06420519 554.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06420520 554.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06420521 554.73663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06420522 554.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06420523 554.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06420524 554.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06420525 554.73669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06420526 554.73675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06420527 554.73675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06420528 554.73675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06420529 554.73675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06420530 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06420531 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06420532 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06420533 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06420534 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06420535 554.73681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06420536 554.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06420537 554.73693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06420538 554.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06420539 554.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06420540 554.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06420541 554.73699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06420542 554.73706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06420543 554.73706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06420544 554.73706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06420545 554.73706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06420546 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06420547 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06420548 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06420549 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06420550 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06420551 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06420552 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06420553 554.73712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06420554 554.73718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06420555 554.73718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06420556 554.73718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06420557 554.73718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06420558 554.73724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06420559 554.73724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06420560 554.73724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06420561 554.73724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06420562 554.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06420563 554.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06420564 554.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06420565 554.73730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06420566 554.73736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06420567 554.73736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06420568 554.73736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06420569 554.73742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06420570 554.73742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06420571 554.73742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06420572 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06420573 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06420574 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06420575 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06420576 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06420577 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06420578 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06420579 554.73748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06420580 554.73754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06420581 554.73754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06420582 554.73754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06420583 554.73754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06420584 554.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06420585 554.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06420586 554.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06420587 554.73760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06420588 554.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06420589 554.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06420590 554.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06420591 554.73767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06420592 554.73773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06420593 554.73773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06420594 554.73773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06420595 554.73773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06420596 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06420597 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06420598 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06420599 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06420600 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06420601 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06420602 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06420603 554.73779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06420604 554.73785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06420605 554.73785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06420606 554.73785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06420607 554.73785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06420608 554.73791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06420609 554.73791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06420610 554.73791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06420611 554.73797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06420612 554.73797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06420613 554.73797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06420614 554.73803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06420615 554.73803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06420616 554.73803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06420617 554.73803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06420618 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06420619 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06420620 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06420621 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06420622 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06420623 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06420624 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06420625 554.73809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06420626 554.73815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06420627 554.73815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06420628 554.73815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06420629 554.73815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06420630 554.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06420631 554.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06420632 554.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06420633 554.73822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06420634 554.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06420635 554.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06420636 554.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06420637 554.73828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06420638 554.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06420639 554.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06420640 554.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06420641 554.73834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06420642 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06420643 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06420644 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06420645 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06420646 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06420647 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06420648 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06420649 554.73840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06420650 554.73846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06420651 554.73846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06420652 554.73846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06420653 554.73852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06420654 554.73852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06420655 554.73852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06420656 554.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06420657 554.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06420658 554.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06420659 554.73858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06420660 554.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06420661 554.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06420662 554.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06420663 554.73864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06420664 554.73870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06420665 554.73870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06420666 554.73870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06420667 554.73870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06420668 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06420669 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06420670 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06420671 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06420672 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06420673 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06420674 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06420675 554.73876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06420676 554.73883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06420677 554.73883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06420678 554.73883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06420679 554.73889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06420680 554.73889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06420681 554.73889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06420682 554.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06420683 554.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06420684 554.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06420685 554.73895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06420686 554.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06420687 554.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06420688 554.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06420689 554.73901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06420690 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06420691 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06420692 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06420693 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06420694 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06420695 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06420696 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06420697 554.73907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06420698 554.73913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06420699 554.73913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06420700 554.73913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06420701 554.73913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06420702 554.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06420703 554.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06420704 554.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06420705 554.73919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06420706 554.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06420707 554.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06420708 554.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06420709 554.73925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06420710 554.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06420711 554.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06420712 554.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06420713 554.73931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06420714 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06420715 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06420716 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06420717 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06420718 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06420719 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06420720 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06420721 554.73937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06420722 554.73944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06420723 554.73944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06420724 554.73944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06420725 554.73950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06420726 554.73950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06420727 554.73950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06420728 554.73956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06420729 554.73956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06420730 554.73956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06420731 554.73956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06420732 554.73962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06420733 554.73962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06420734 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06420735 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06420736 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06420737 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06420738 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06420739 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06420740 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06420741 554.73968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06420742 554.73974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06420743 554.73974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06420744 554.73974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06420745 554.73974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06420746 554.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06420747 554.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06420748 554.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06420749 554.73980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06420750 554.73986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06420751 554.73986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06420752 554.73986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06420753 554.73986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06420754 554.73992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06420755 554.73992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06420756 554.73992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06420757 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06420758 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06420759 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06420760 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06420761 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06420762 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06420763 554.73999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06420764 554.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06420765 554.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06420766 554.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06420767 554.74005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06420768 554.74011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06420769 554.74011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06420770 554.74011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06420771 554.74017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06420772 554.74017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06420773 554.74017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06420774 554.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06420775 554.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06420776 554.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06420777 554.74023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06420778 554.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06420779 554.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06420780 554.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06420781 554.74029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06420782 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06420783 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06420784 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06420785 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06420786 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06420787 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06420788 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06420789 554.74035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06420790 554.74041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06420791 554.74041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06420792 554.74041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06420793 554.74041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06420794 554.74047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06420795 554.74047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06420796 554.74047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06420797 554.74047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06420798 554.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06420799 554.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06420800 554.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06420801 554.74053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06420802 554.74060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06420803 554.74060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06420804 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06420805 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06420806 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06420807 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06420808 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06420809 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06420810 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06420811 554.74066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06420812 554.74072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06420813 554.74072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06420814 554.74072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06420815 554.74072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06420816 554.74078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06420817 554.74078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06420818 554.74078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06420819 554.74078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06420820 554.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06420821 554.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06420822 554.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06420823 554.74084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06420824 554.74090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06420825 554.74090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06420826 554.74090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06420827 554.74090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06420828 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06420829 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06420830 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06420831 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06420832 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06420833 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06420834 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06420835 554.74096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06420836 554.74102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06420837 554.74102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06420838 554.74102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06420839 554.74102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06420840 554.74108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06420841 554.74108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06420842 554.74114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06420843 554.74114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06420844 554.74114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06420845 554.74114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06420846 554.74121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06420847 554.74121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06420848 554.74121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06420849 554.74121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06420850 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06420851 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06420852 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06420853 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06420854 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06420855 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06420856 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06420857 554.74127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06420858 554.74133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06420859 554.74133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06420860 554.74133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06420861 554.74133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06420862 554.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06420863 554.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06420864 554.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06420865 554.74139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06420866 554.74145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06420867 554.74145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06420868 554.74145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06420869 554.74145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06420870 554.74151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06420871 554.74151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06420872 554.74151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06420873 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06420874 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06420875 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06420876 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06420877 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06420878 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06420879 554.74157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06420880 554.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06420881 554.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06420882 554.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06420883 554.74163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06420884 554.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06420885 554.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06420886 554.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06420887 554.74169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06420888 554.74176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06420889 554.74176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06420890 554.74176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06420891 554.74176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06420892 554.74182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06420893 554.74182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06420894 554.74182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06420895 554.74182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06420896 554.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06420897 554.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06420898 554.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06420899 554.74188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06420900 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06420901 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06420902 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06420903 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06420904 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06420905 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06420906 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06420907 554.74194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06420908 554.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06420909 554.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06420910 554.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06420911 554.74200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06420912 554.74206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06420913 554.74206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06420914 554.74206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06420915 554.74212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06420916 554.74212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06420917 554.74212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06420918 554.74218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06420919 554.74218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06420920 554.74218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06420921 554.74218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06420922 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06420923 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06420924 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06420925 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06420926 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06420927 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06420928 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06420929 554.74224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06420930 554.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06420931 554.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06420932 554.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06420933 554.74230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06420934 554.74237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06420935 554.74237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06420936 554.74237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06420937 554.74237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06420938 554.74243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06420939 554.74243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06420940 554.74243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06420941 554.74243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06420942 554.74249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06420943 554.74249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06420944 554.74249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06420945 554.74249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06420946 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06420947 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06420948 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06420949 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06420950 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06420951 554.74255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06420952 554.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06420953 554.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06420954 554.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06420955 554.74261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06420956 554.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06420957 554.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06420958 554.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06420959 554.74267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06420960 554.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06420961 554.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06420962 554.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06420963 554.74273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06420964 554.74279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06420965 554.74279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06420966 554.74279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06420967 554.74279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06420968 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06420969 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06420970 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06420971 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06420972 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06420973 554.74285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06420974 554.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06420975 554.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06420976 554.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06420977 554.74291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06420978 554.74298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06420979 554.74298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06420980 554.74298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06420981 554.74298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06420982 554.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06420983 554.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06420984 554.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06420985 554.74304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06420986 554.74310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06420987 554.74310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06420988 554.74310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06420989 554.74310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06420990 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06420991 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06420992 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06420993 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06420994 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06420995 554.74316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06420996 554.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06420997 554.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06420998 554.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06420999 554.74322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06421000 554.74328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06421001 554.74328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06421002 554.74328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06421003 554.74328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06421004 554.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06421005 554.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06421006 554.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06421007 554.74334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06421008 554.74340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06421009 554.74340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06421010 554.74340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06421011 554.74340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06421012 554.74346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06421013 554.74346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06421014 554.74346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06421015 554.74346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06421016 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06421017 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06421018 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06421019 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06421020 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06421021 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06421022 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06421023 554.74353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06421024 554.74359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06421025 554.74359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06421026 554.74359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06421027 554.74359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06421028 554.74365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06421029 554.74365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06421030 554.74365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06421031 554.74371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06421032 554.74371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06421033 554.74371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06421034 554.74377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06421035 554.74377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06421036 554.74377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06421037 554.74377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06421038 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06421039 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06421040 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06421041 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06421042 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06421043 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06421044 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06421045 554.74383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06421046 554.74389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06421047 554.74389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06421048 554.74389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06421049 554.74389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06421050 554.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06421051 554.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06421052 554.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06421053 554.74395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06421054 554.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06421055 554.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06421056 554.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06421057 554.74401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06421058 554.74407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06421059 554.74407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06421060 554.74407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06421061 554.74407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06421062 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06421063 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06421064 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06421065 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06421066 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06421067 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06421068 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06421069 554.74414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06421070 554.74420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06421071 554.74420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06421072 554.74420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06421073 554.74420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06421074 554.74426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06421075 554.74426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06421076 554.74426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06421077 554.74432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06421078 554.74432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06421079 554.74432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06421080 554.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06421081 554.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06421082 554.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06421083 554.74438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06421084 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06421085 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06421086 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06421087 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06421088 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06421089 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06421090 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06421091 554.74444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06421092 554.74450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06421093 554.74450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06421094 554.74450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06421095 554.74450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06421096 554.74456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06421097 554.74456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06421098 554.74456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06421099 554.74456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06421100 554.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06421101 554.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06421102 554.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06421103 554.74462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06421104 554.74468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06421105 554.74468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06421106 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06421107 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06421108 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06421109 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06421110 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06421111 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06421112 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06421113 554.74475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06421114 554.74481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06421115 554.74481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06421116 554.74481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06421117 554.74481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06421118 554.74487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06421119 554.74487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06421120 554.74487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06421121 554.74487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06421122 554.74493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06421123 554.74493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06421124 554.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06421125 554.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06421126 554.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06421127 554.74499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06421128 554.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06421129 554.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06421130 554.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06421131 554.74505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06421132 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06421133 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06421134 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06421135 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06421136 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06421137 554.74511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06421138 554.74517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06421139 554.74517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06421140 554.74517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06421141 554.74517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06421142 554.74523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06421143 554.74523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06421144 554.74523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06421145 554.74530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06421146 554.74530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06421147 554.74530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06421148 554.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06421149 554.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06421150 554.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06421151 554.74536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06421152 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06421153 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06421154 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06421155 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06421156 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06421157 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06421158 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06421159 554.74542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06421160 554.74548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06421161 554.74548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06421162 554.74548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06421163 554.74548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06421164 554.74554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06421165 554.74554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06421166 554.74554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06421167 554.74554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06421168 554.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06421169 554.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06421170 554.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06421171 554.74560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06421172 554.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06421173 554.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06421174 554.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06421175 554.74566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06421176 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06421177 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06421178 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06421179 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06421180 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06421181 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06421182 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06421183 554.74572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06421184 554.74578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06421185 554.74578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06421186 554.74578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06421187 554.74578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06421188 554.74584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06421189 554.74584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06421190 554.74584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06421191 554.74591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06421192 554.74591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06421193 554.74591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06421194 554.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06421195 554.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06421196 554.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06421197 554.74597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06421198 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06421199 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06421200 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06421201 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06421202 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06421203 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06421204 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06421205 554.74603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06421206 554.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06421207 554.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06421208 554.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06421209 554.74609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06421210 554.74615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06421211 554.74615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06421212 554.74615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06421213 554.74615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06421214 554.74621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06421215 554.74621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06421216 554.74621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06421217 554.74621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06421218 554.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06421219 554.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06421220 554.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06421221 554.74627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06421222 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06421223 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06421224 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06421225 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06421226 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06421227 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06421228 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06421229 554.74633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06421230 554.74639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06421231 554.74639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06421232 554.74639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06421233 554.74645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06421234 554.74645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06421235 554.74645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06421236 554.74652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06421237 554.74652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06421238 554.74652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06421239 554.74652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06421240 554.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06421241 554.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06421242 554.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06421243 554.74658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06421244 554.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06421245 554.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06421246 554.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06421247 554.74664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06421248 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06421249 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06421250 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06421251 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06421252 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06421253 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06421254 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06421255 554.74670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06421256 554.74676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06421257 554.74676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06421258 554.74676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06421259 554.74676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06421260 554.74682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06421261 554.74682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06421262 554.74682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06421263 554.74682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06421264 554.74688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06421265 554.74688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06421266 554.74694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06421267 554.74694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06421268 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06421269 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06421270 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06421271 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06421272 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06421273 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06421274 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06421275 554.74700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06421276 554.74707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06421277 554.74707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06421278 554.74707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06421279 554.74707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06421280 554.74713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06421281 554.74713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06421282 554.74713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06421283 554.74713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06421284 554.74719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06421285 554.74719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06421286 554.74719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06421287 554.74719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06421288 554.74725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06421289 554.74725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06421290 554.74725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06421291 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06421292 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06421293 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06421294 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06421295 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06421296 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06421297 554.74731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06421298 554.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06421299 554.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06421300 554.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06421301 554.74737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06421302 554.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06421303 554.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06421304 554.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06421305 554.74743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06421306 554.74749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06421307 554.74749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06421308 554.74749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06421309 554.74749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06421310 554.74755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06421311 554.74755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06421312 554.74755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06421313 554.74755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06421314 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06421315 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06421316 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06421317 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06421318 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06421319 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06421320 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06421321 554.74761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06421322 554.74768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06421323 554.74768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06421324 554.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06421325 554.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06421326 554.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06421327 554.74774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06421328 554.74780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06421329 554.74780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06421330 554.74780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06421331 554.74780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06421332 554.74786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06421333 554.74786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06421334 554.74786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06421335 554.74786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06421336 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06421337 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06421338 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06421339 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06421340 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06421341 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06421342 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06421343 554.74792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06421344 554.74798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06421345 554.74798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06421346 554.74798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06421347 554.74804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06421348 554.74804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06421349 554.74804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06421350 554.74810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06421351 554.74810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06421352 554.74810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06421353 554.74810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06421354 554.74816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06421355 554.74816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06421356 554.74816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06421357 554.74816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06421358 554.74822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06421359 554.74822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06421360 554.74822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06421361 554.74822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06421362 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06421363 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06421364 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06421365 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06421366 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06421367 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06421368 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06421369 554.74829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06421370 554.74835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06421371 554.74835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06421372 554.74835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06421373 554.74841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06421374 554.74841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06421375 554.74841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06421376 554.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06421377 554.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06421378 554.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06421379 554.74847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06421380 554.74853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06421381 554.74853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06421382 554.74853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06421383 554.74853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06421384 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06421385 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06421386 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06421387 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06421388 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06421389 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06421390 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06421391 554.74859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06421392 554.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06421393 554.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06421394 554.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06421395 554.74865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06421396 554.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06421397 554.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06421398 554.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06421399 554.74871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06421400 554.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06421401 554.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06421402 554.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06421403 554.74877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06421404 554.74884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06421405 554.74884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06421406 554.74884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06421407 554.74884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06421408 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06421409 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06421410 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06421411 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06421412 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06421413 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06421414 554.74890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06421415 554.74896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06421416 554.74896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06421417 554.74896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06421418 554.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06421419 554.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06421420 554.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06421421 554.74902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06421422 554.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06421423 554.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06421424 554.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06421425 554.74908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06421426 554.74914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06421427 554.74914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06421428 554.74914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06421429 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06421430 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06421431 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06421432 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06421433 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06421434 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06421435 554.74920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06421436 554.74926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06421437 554.74926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06421438 554.74926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06421439 554.74926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06421440 554.74932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06421441 554.74932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06421442 554.74932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06421443 554.74932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06421444 554.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06421445 554.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06421446 554.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06421447 554.74938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06421448 554.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06421449 554.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06421450 554.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06421451 554.74945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06421452 554.74951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06421453 554.74951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06421454 554.74951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06421455 554.74951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06421456 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06421457 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06421458 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06421459 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06421460 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06421461 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06421462 554.74957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06421463 554.74963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06421464 554.74963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06421465 554.74963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06421466 554.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06421467 554.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06421468 554.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06421469 554.74969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06421470 554.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06421471 554.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06421472 554.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06421473 554.74975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06421474 554.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06421475 554.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06421476 554.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06421477 554.74981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06421478 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06421479 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06421480 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06421481 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06421482 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06421483 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06421484 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06421485 554.74987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06421486 554.74993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06421487 554.74993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06421488 554.74993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06421489 554.74993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06421490 554.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06421491 554.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06421492 554.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06421493 554.75000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06421494 554.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06421495 554.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06421496 554.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06421497 554.75006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06421498 554.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06421499 554.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06421500 554.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06421501 554.75012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06421502 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06421503 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06421504 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06421505 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06421506 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06421507 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06421508 554.75018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06421509 554.75024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06421510 554.75024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06421511 554.75024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06421512 554.75030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06421513 554.75030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06421514 554.75030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06421515 554.75030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06421516 554.75036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06421517 554.75036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06421518 554.75036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06421519 554.75036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06421520 554.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06421521 554.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06421522 554.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06421523 554.75042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06421524 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06421525 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06421526 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06421527 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06421528 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06421529 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06421530 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06421531 554.75048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06421532 554.75054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06421533 554.75054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06421534 554.75054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06421535 554.75054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06421536 554.75061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06421537 554.75061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06421538 554.75061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06421539 554.75061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06421540 554.75067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06421541 554.75067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06421542 554.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06421543 554.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06421544 554.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06421545 554.75073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06421546 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06421547 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06421548 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06421549 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06421550 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06421551 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06421552 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06421553 554.75079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06421554 554.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06421555 554.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06421556 554.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06421557 554.75085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06421558 554.75091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06421559 554.75091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06421560 554.75091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06421561 554.75091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06421562 554.75097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06421563 554.75097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06421564 554.75097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06421565 554.75103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06421566 554.75103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06421567 554.75103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06421568 554.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06421569 554.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06421570 554.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06421571 554.75109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06421572 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06421573 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06421574 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06421575 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06421576 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06421577 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06421578 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06421579 554.75115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06421580 554.75122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06421581 554.75122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06421582 554.75122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06421583 554.75122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06421584 554.75128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06421585 554.75128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06421586 554.75128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06421587 554.75128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06421588 554.75134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06421589 554.75134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06421590 554.75134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06421591 554.75134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06421592 554.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06421593 554.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06421594 554.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06421595 554.75140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06421596 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06421597 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06421598 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06421599 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06421600 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06421601 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06421602 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06421603 554.75146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06421604 554.75152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06421605 554.75152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06421606 554.75158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06421607 554.75158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06421608 554.75158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06421609 554.75158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06421610 554.75164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06421611 554.75164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06421612 554.75164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06421613 554.75164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06421614 554.75170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06421615 554.75170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06421616 554.75170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06421617 554.75170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06421618 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06421619 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06421620 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06421621 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06421622 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06421623 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06421624 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06421625 554.75177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06421626 554.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06421627 554.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06421628 554.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06421629 554.75183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06421630 554.75189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06421631 554.75189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06421632 554.75189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06421633 554.75195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06421634 554.75195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06421635 554.75195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06421636 554.75201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06421637 554.75201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06421638 554.75201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06421639 554.75201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06421640 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06421641 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06421642 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06421643 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06421644 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06421645 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06421646 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06421647 554.75207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06421648 554.75213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06421649 554.75213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06421650 554.75213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06421651 554.75213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06421652 554.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06421653 554.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06421654 554.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06421655 554.75219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06421656 554.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06421657 554.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06421658 554.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06421659 554.75225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06421660 554.75231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06421661 554.75231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06421662 554.75231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06421663 554.75231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06421664 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06421665 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06421666 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06421667 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06421668 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06421669 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06421670 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06421671 554.75238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06421672 554.75244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06421673 554.75244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06421674 554.75244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06421675 554.75244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06421676 554.75250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06421677 554.75250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06421678 554.75250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06421679 554.75256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06421680 554.75256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06421681 554.75256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06421682 554.75262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06421683 554.75262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06421684 554.75262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06421685 554.75262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06421686 554.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06421687 554.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06421688 554.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06421689 554.75268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06421690 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06421691 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06421692 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06421693 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06421694 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06421695 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06421696 554.75274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06421697 554.75280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06421698 554.75280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06421699 554.75280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06421700 554.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06421701 554.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06421702 554.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06421703 554.75286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06421704 554.75292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06421705 554.75292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06421706 554.75292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06421707 554.75292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06421708 554.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06421709 554.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06421710 554.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06421711 554.75299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06421712 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06421713 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06421714 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06421715 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06421716 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06421717 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06421718 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06421719 554.75305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06421720 554.75311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06421721 554.75311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06421722 554.75311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06421723 554.75317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06421724 554.75317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06421725 554.75317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06421726 554.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06421727 554.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06421728 554.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06421729 554.75323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06421730 554.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06421731 554.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06421732 554.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06421733 554.75329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06421734 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06421735 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06421736 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06421737 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06421738 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06421739 554.75335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06421740 554.75341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06421741 554.75341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06421742 554.75341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06421743 554.75341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06421744 554.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06421745 554.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06421746 554.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06421747 554.75347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06421748 554.75354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06421749 554.75354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06421750 554.75354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06421751 554.75354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06421752 554.75360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06421753 554.75360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06421754 554.75360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06421755 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06421756 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06421757 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06421758 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06421759 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06421760 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06421761 554.75366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06421762 554.75372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06421763 554.75372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06421764 554.75372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06421765 554.75372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06421766 554.75378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06421767 554.75378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06421768 554.75378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06421769 554.75378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06421770 554.75384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06421771 554.75384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06421772 554.75384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06421773 554.75384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06421774 554.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06421775 554.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06421776 554.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06421777 554.75390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06421778 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06421779 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06421780 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06421781 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06421782 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06421783 554.75396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06421784 554.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06421785 554.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06421786 554.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06421787 554.75402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06421788 554.75408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06421789 554.75408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06421790 554.75408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06421791 554.75408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06421792 554.75415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06421793 554.75415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06421794 554.75415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06421795 554.75415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06421796 554.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06421797 554.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06421798 554.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06421799 554.75421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06421800 554.75427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06421801 554.75427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06421802 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06421803 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06421804 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06421805 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06421806 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06421807 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06421808 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06421809 554.75433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06421810 554.75439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06421811 554.75439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06421812 554.75439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06421813 554.75439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06421814 554.75445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06421815 554.75445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06421816 554.75445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06421817 554.75445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06421818 554.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06421819 554.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06421820 554.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06421821 554.75451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06421822 554.75457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06421823 554.75457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06421824 554.75457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06421825 554.75457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06421826 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06421827 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06421828 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06421829 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06421830 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06421831 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06421832 554.75463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06421833 554.75469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06421834 554.75469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06421835 554.75469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06421836 554.75476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06421837 554.75476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06421838 554.75476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06421839 554.75476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06421840 554.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06421841 554.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06421842 554.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06421843 554.75482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06421844 554.75488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06421845 554.75488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06421846 554.75488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06421847 554.75488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06421848 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06421849 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06421850 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06421851 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06421852 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06421853 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06421854 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06421855 554.75494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06421856 554.75500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06421857 554.75500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06421858 554.75500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06421859 554.75500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06421860 554.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06421861 554.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06421862 554.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06421863 554.75506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06421864 554.75512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06421865 554.75512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06421866 554.75512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06421867 554.75512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06421868 554.75518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06421869 554.75518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06421870 554.75518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06421871 554.75518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06421872 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06421873 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06421874 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06421875 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06421876 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06421877 554.75524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06421878 554.75531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06421879 554.75531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06421880 554.75531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06421881 554.75531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06421882 554.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06421883 554.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06421884 554.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06421885 554.75537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06421886 554.75543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06421887 554.75543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06421888 554.75543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06421889 554.75543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06421890 554.75549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06421891 554.75549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06421892 554.75549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06421893 554.75549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06421894 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06421895 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06421896 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06421897 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06421898 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06421899 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06421900 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06421901 554.75555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06421902 554.75561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06421903 554.75561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06421904 554.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06421905 554.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06421906 554.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06421907 554.75567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06421908 554.75573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06421909 554.75573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06421910 554.75573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06421911 554.75573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06421912 554.75579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06421913 554.75579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06421914 554.75579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06421915 554.75579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06421916 554.75585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06421917 554.75585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06421918 554.75585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06421919 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06421920 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06421921 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06421922 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06421923 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06421924 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06421925 554.75592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06421926 554.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06421927 554.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06421928 554.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06421929 554.75598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06421930 554.75604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06421931 554.75604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06421932 554.75604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06421933 554.75604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06421934 554.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06421935 554.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06421936 554.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06421937 554.75610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06421938 554.75616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06421939 554.75616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06421940 554.75616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06421941 554.75616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06421942 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06421943 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06421944 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06421945 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06421946 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06421947 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06421948 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06421949 554.75622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06421950 554.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06421951 554.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06421952 554.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06421953 554.75628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06421954 554.75634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06421955 554.75634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06421956 554.75634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06421957 554.75634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06421958 554.75640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06421959 554.75640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06421960 554.75640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06421961 554.75646973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06421962 554.75646973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06421963 554.75646973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06421964 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06421965 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06421966 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06421967 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06421968 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06421969 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06421970 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06421971 554.75653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06421972 554.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06421973 554.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06421974 554.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06421975 554.75659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06421976 554.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06421977 554.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06421978 554.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06421979 554.75665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06421980 554.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06421981 554.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06421982 554.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06421983 554.75671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06421984 554.75677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06421985 554.75677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06421986 554.75677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06421987 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06421988 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06421989 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06421990 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06421991 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06421992 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06421993 554.75683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06421994 554.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06421995 554.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06421996 554.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06421997 554.75689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06421998 554.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06421999 554.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06422000 554.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06422001 554.75695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06422002 554.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06422003 554.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06422004 554.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06422005 554.75701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06422006 554.75708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06422007 554.75708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06422008 554.75708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06422009 554.75708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06422010 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06422011 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06422012 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06422013 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06422014 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06422015 554.75714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06422016 554.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06422017 554.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06422018 554.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06422019 554.75720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06422020 554.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06422021 554.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06422022 554.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06422023 554.75726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06422024 554.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06422025 554.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06422026 554.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06422027 554.75732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06422028 554.75738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06422029 554.75738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06422030 554.75738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06422031 554.75738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06422032 554.75744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06422033 554.75744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06422034 554.75744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06422035 554.75744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06422036 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06422037 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06422038 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06422039 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06422040 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06422041 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06422042 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06422043 554.75750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06422044 554.75756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06422045 554.75756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06422046 554.75756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06422047 554.75756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06422048 554.75762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06422049 554.75762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06422050 554.75762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06422051 554.75769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06422052 554.75769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06422053 554.75769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06422054 554.75775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06422055 554.75775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06422056 554.75775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06422057 554.75775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06422058 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06422059 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06422060 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06422061 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06422062 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06422063 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06422064 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06422065 554.75781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06422066 554.75787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06422067 554.75787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06422068 554.75787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06422069 554.75787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06422070 554.75793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06422071 554.75793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06422072 554.75793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06422073 554.75793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06422074 554.75799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06422075 554.75799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06422076 554.75799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06422077 554.75799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06422078 554.75805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06422079 554.75805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06422080 554.75805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06422081 554.75805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06422082 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06422083 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06422084 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06422085 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06422086 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06422087 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06422088 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06422089 554.75811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06422090 554.75817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06422091 554.75817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06422092 554.75817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06422093 554.75817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06422094 554.75823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06422095 554.75823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06422096 554.75823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06422097 554.75830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06422098 554.75830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06422099 554.75830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06422100 554.75836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06422101 554.75836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06422102 554.75836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06422103 554.75836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06422104 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06422105 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06422106 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06422107 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06422108 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06422109 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06422110 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06422111 554.75842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06422112 554.75848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06422113 554.75848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06422114 554.75848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06422115 554.75848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06422116 554.75854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06422117 554.75854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06422118 554.75854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06422119 554.75854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06422120 554.75860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06422121 554.75860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06422122 554.75860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06422123 554.75860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06422124 554.75866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06422125 554.75866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06422126 554.75866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06422127 554.75866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06422128 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06422129 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06422130 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06422131 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06422132 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06422133 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06422134 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06422135 554.75872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06422136 554.75878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06422137 554.75878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06422138 554.75878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06422139 554.75885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06422140 554.75885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06422141 554.75885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06422142 554.75891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06422143 554.75891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06422144 554.75891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06422145 554.75891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06422146 554.75897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06422147 554.75897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06422148 554.75897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06422149 554.75897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06422150 554.75903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06422151 554.75903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06422152 554.75903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06422153 554.75903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06422154 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06422155 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06422156 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06422157 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06422158 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06422159 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06422160 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06422161 554.75909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06422162 554.75915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06422163 554.75915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06422164 554.75915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06422165 554.75915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06422166 554.75921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06422167 554.75921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06422168 554.75921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06422169 554.75921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06422170 554.75927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06422171 554.75927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06422172 554.75927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06422173 554.75927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06422174 554.75933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06422175 554.75933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06422176 554.75933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06422177 554.75933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06422178 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06422179 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06422180 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06422181 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06422182 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06422183 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06422184 554.75939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06422185 554.75946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06422186 554.75946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06422187 554.75946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06422188 554.75952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06422189 554.75952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06422190 554.75952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06422191 554.75952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06422192 554.75958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06422193 554.75958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06422194 554.75958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06422195 554.75958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06422196 554.75964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06422197 554.75964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06422198 554.75964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06422199 554.75964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06422200 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06422201 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06422202 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06422203 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06422204 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06422205 554.75970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06422206 554.75976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06422207 554.75976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06422208 554.75976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06422209 554.75976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06422210 554.75982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06422211 554.75982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06422212 554.75982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06422213 554.75982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06422214 554.75988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06422215 554.75988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06422216 554.75988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06422217 554.75988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06422218 554.75994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06422219 554.75994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06422220 554.75994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06422221 554.75994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06422222 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06422223 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06422224 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06422225 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06422226 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06422227 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06422228 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06422229 554.76000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06422230 554.76007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06422231 554.76007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06422232 554.76007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06422233 554.76007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06422234 554.76013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06422235 554.76013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06422236 554.76013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06422237 554.76019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06422238 554.76019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06422239 554.76019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06422240 554.76025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06422241 554.76025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06422242 554.76025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06422243 554.76025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06422244 554.76031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06422245 554.76031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06422246 554.76031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06422247 554.76031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06422248 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06422249 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06422250 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06422251 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06422252 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06422253 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06422254 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06422255 554.76037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06422256 554.76043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06422257 554.76043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06422258 554.76043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06422259 554.76043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06422260 554.76049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06422261 554.76049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06422262 554.76049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06422263 554.76049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06422264 554.76055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06422265 554.76055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06422266 554.76055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06422267 554.76055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06422268 554.76062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06422269 554.76062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06422270 554.76062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06422271 554.76062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06422272 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06422273 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06422274 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06422275 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06422276 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06422277 554.76068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06422278 554.76074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06422279 554.76074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06422280 554.76074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06422281 554.76074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06422282 554.76080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06422283 554.76080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06422284 554.76080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06422285 554.76080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06422286 554.76086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06422287 554.76086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06422288 554.76086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06422289 554.76086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06422290 554.76092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06422291 554.76092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06422292 554.76092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06422293 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06422294 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06422295 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06422296 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06422297 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06422298 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06422299 554.76098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06422300 554.76104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06422301 554.76104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06422302 554.76104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06422303 554.76104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06422304 554.76110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06422305 554.76110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06422306 554.76110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06422307 554.76110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06422308 554.76116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06422309 554.76116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06422310 554.76116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06422311 554.76116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06422312 554.76123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06422313 554.76123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06422314 554.76123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06422315 554.76123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06422316 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06422317 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06422318 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06422319 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06422320 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06422321 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06422322 554.76129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06422323 554.76135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06422324 554.76135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06422325 554.76135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06422326 554.76141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06422327 554.76141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06422328 554.76141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06422329 554.76141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06422330 554.76147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06422331 554.76147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06422332 554.76147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06422333 554.76147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06422334 554.76153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06422335 554.76153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06422336 554.76153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06422337 554.76153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06422338 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06422339 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06422340 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06422341 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06422342 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06422343 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06422344 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06422345 554.76159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06422346 554.76165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06422347 554.76165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06422348 554.76165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06422349 554.76165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06422350 554.76171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06422351 554.76171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06422352 554.76171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06422353 554.76171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06422354 554.76177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06422355 554.76177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06422356 554.76177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06422357 554.76177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06422358 554.76184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06422359 554.76184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06422360 554.76190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06422361 554.76190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06422362 554.76190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06422363 554.76190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06422364 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06422365 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06422366 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06422367 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06422368 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06422369 554.76196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06422370 554.76202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06422371 554.76202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06422372 554.76202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06422373 554.76202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06422374 554.76208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06422375 554.76208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06422376 554.76208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06422377 554.76208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06422378 554.76214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06422379 554.76214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06422380 554.76214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06422381 554.76214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06422382 554.76220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06422383 554.76220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06422384 554.76220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06422385 554.76220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06422386 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06422387 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06422388 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06422389 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06422390 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06422391 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06422392 554.76226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06422393 554.76232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06422394 554.76232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06422395 554.76232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06422396 554.76232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06422397 554.76239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06422398 554.76239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06422399 554.76239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06422400 554.76245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06422401 554.76245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06422402 554.76245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06422403 554.76245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06422404 554.76251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06422405 554.76251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06422406 554.76251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06422407 554.76251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06422408 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06422409 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06422410 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06422411 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06422412 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06422413 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06422414 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06422415 554.76257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06422416 554.76263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06422417 554.76263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06422418 554.76263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06422419 554.76269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06422420 554.76269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06422421 554.76269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06422422 554.76275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06422423 554.76275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06422424 554.76275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06422425 554.76275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06422426 554.76281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06422427 554.76281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06422428 554.76281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06422429 554.76281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06422430 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06422431 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06422432 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06422433 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06422434 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06422435 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06422436 554.76287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06422437 554.76293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06422438 554.76293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06422439 554.76293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06422440 554.76300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06422441 554.76300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06422442 554.76300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06422443 554.76300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06422444 554.76306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06422445 554.76306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06422446 554.76306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06422447 554.76306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06422448 554.76312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06422449 554.76312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06422450 554.76312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06422451 554.76312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06422452 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06422453 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06422454 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06422455 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06422456 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06422457 554.76318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06422458 554.76324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06422459 554.76324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06422460 554.76324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06422461 554.76324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06422462 554.76330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06422463 554.76330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06422464 554.76330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06422465 554.76330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06422466 554.76336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06422467 554.76336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06422468 554.76336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06422469 554.76336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06422470 554.76342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06422471 554.76342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06422472 554.76342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06422473 554.76342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06422474 554.76348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06422475 554.76348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06422476 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06422477 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06422478 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06422479 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06422480 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06422481 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06422482 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06422483 554.76354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06422484 554.76361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06422485 554.76361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06422486 554.76361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06422487 554.76361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06422488 554.76367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06422489 554.76367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06422490 554.76367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06422491 554.76367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06422492 554.76373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06422493 554.76373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06422494 554.76373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06422495 554.76373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06422496 554.76379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06422497 554.76379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06422498 554.76379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06422499 554.76379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06422500 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06422501 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06422502 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06422503 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06422504 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06422505 554.76385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06422506 554.76391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06422507 554.76391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06422508 554.76391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06422509 554.76391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06422510 554.76397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06422511 554.76397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06422512 554.76397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06422513 554.76397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06422514 554.76403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06422515 554.76403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06422516 554.76403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06422517 554.76403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06422518 554.76409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06422519 554.76409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06422520 554.76409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06422521 554.76409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06422522 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06422523 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06422524 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06422525 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06422526 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06422527 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06422528 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06422529 554.76416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06422530 554.76422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06422531 554.76422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06422532 554.76428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06422533 554.76428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06422534 554.76428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06422535 554.76428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06422536 554.76434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06422537 554.76434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06422538 554.76440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06422539 554.76440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06422540 554.76440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06422541 554.76440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06422542 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06422543 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06422544 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06422545 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06422546 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06422547 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06422548 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06422549 554.76446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06422550 554.76452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06422551 554.76452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06422552 554.76452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06422553 554.76452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06422554 554.76458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06422555 554.76458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06422556 554.76458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06422557 554.76458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06422558 554.76464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06422559 554.76464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06422560 554.76464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06422561 554.76464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06422562 554.76470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06422563 554.76470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06422564 554.76470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06422565 554.76470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06422566 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06422567 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06422568 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06422569 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06422570 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06422571 554.76477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06422572 554.76483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06422573 554.76483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06422574 554.76483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06422575 554.76483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06422576 554.76489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06422577 554.76489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06422578 554.76489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06422579 554.76489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06422580 554.76495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06422581 554.76495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06422582 554.76495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06422583 554.76495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06422584 554.76501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06422585 554.76501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06422586 554.76507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06422587 554.76507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06422588 554.76507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06422589 554.76507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06422590 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06422591 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06422592 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06422593 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06422594 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06422595 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06422596 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06422597 554.76513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06422598 554.76519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06422599 554.76519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06422600 554.76519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06422601 554.76519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06422602 554.76525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06422603 554.76525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06422604 554.76525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06422605 554.76525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06422606 554.76531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06422607 554.76531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06422608 554.76531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06422609 554.76531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06422610 554.76538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06422611 554.76538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06422612 554.76538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06422613 554.76538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06422614 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06422615 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06422616 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06422617 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06422618 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06422619 554.76544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06422620 554.76550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06422621 554.76550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06422622 554.76550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06422623 554.76550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06422624 554.76556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06422625 554.76556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06422626 554.76556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06422627 554.76556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06422628 554.76562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06422629 554.76562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06422630 554.76562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06422631 554.76562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06422632 554.76568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06422633 554.76568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06422634 554.76568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06422635 554.76568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06422636 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06422637 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06422638 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06422639 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06422640 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06422641 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06422642 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06422643 554.76574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06422644 554.76580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06422645 554.76580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06422646 554.76580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06422647 554.76580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06422648 554.76586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06422649 554.76586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06422650 554.76586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06422651 554.76586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06422652 554.76593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06422653 554.76593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06422654 554.76593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06422655 554.76593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06422656 554.76599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06422657 554.76599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06422658 554.76599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06422659 554.76599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06422660 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06422661 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06422662 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06422663 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06422664 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06422665 554.76605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06422666 554.76611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06422667 554.76611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06422668 554.76611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06422669 554.76611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06422670 554.76617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06422671 554.76617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06422672 554.76617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06422673 554.76617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06422674 554.76623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06422675 554.76623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06422676 554.76623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06422677 554.76623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06422678 554.76629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06422679 554.76629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06422680 554.76629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06422681 554.76629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06422682 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06422683 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06422684 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06422685 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06422686 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06422687 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06422688 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06422689 554.76635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06422690 554.76641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06422691 554.76641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06422692 554.76641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06422693 554.76641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06422694 554.76647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06422695 554.76647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06422696 554.76647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06422697 554.76647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06422698 554.76654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06422699 554.76654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06422700 554.76654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06422701 554.76654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06422702 554.76660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06422703 554.76660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06422704 554.76666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06422705 554.76666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06422706 554.76666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06422707 554.76666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06422708 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06422709 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06422710 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06422711 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06422712 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06422713 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06422714 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06422715 554.76672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06422716 554.76678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06422717 554.76678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06422718 554.76678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06422719 554.76678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06422720 554.76684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06422721 554.76684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06422722 554.76690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06422723 554.76690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06422724 554.76690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06422725 554.76690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06422726 554.76696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06422727 554.76696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06422728 554.76696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06422729 554.76696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06422730 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06422731 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06422732 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06422733 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06422734 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06422735 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06422736 554.76702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06422737 554.76708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06422738 554.76708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06422739 554.76708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06422740 554.76715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06422741 554.76715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06422742 554.76715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06422743 554.76715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06422744 554.76721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06422745 554.76721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06422746 554.76721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06422747 554.76721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06422748 554.76727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06422749 554.76727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06422750 554.76727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06422751 554.76727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06422752 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06422753 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06422754 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06422755 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06422756 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06422757 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06422758 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06422759 554.76733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06422760 554.76739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06422761 554.76739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06422762 554.76739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06422763 554.76739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06422764 554.76745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06422765 554.76745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06422766 554.76745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06422767 554.76745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06422768 554.76751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06422769 554.76751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06422770 554.76751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06422771 554.76757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06422772 554.76757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06422773 554.76757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06422774 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06422775 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06422776 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06422777 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06422778 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06422779 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06422780 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06422781 554.76763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06422782 554.76770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06422783 554.76770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06422784 554.76770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06422785 554.76770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06422786 554.76776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06422787 554.76776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06422788 554.76776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06422789 554.76776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06422790 554.76782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06422791 554.76782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06422792 554.76788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06422793 554.76788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06422794 554.76788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06422795 554.76788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06422796 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06422797 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06422798 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06422799 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06422800 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06422801 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06422802 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06422803 554.76794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06422804 554.76800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06422805 554.76800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06422806 554.76800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06422807 554.76800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06422808 554.76806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06422809 554.76806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06422810 554.76806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06422811 554.76806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06422812 554.76812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06422813 554.76812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06422814 554.76812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06422815 554.76812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06422816 554.76818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06422817 554.76818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06422818 554.76824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06422819 554.76824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06422820 554.76824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06422821 554.76824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06422822 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06422823 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06422824 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06422825 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06422826 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06422827 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06422828 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06422829 554.76831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06422830 554.76837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06422831 554.76837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06422832 554.76837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06422833 554.76837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06422834 554.76843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06422835 554.76843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06422836 554.76843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06422837 554.76843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06422838 554.76849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06422839 554.76849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06422840 554.76849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06422841 554.76849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06422842 554.76855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06422843 554.76855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06422844 554.76855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06422845 554.76855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06422846 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06422847 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06422848 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06422849 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06422850 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06422851 554.76861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06422852 554.76867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06422853 554.76867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06422854 554.76867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06422855 554.76867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06422856 554.76873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06422857 554.76873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06422858 554.76873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06422859 554.76873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06422860 554.76879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06422861 554.76879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06422862 554.76879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06422863 554.76879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06422864 554.76885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06422865 554.76885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06422866 554.76885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06422867 554.76885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06422868 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06422869 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06422870 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06422871 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06422872 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06422873 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06422874 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06422875 554.76892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06422876 554.76898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06422877 554.76898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06422878 554.76898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06422879 554.76898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06422880 554.76904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06422881 554.76904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06422882 554.76904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06422883 554.76904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06422884 554.76910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06422885 554.76910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06422886 554.76910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06422887 554.76910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06422888 554.76916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06422889 554.76916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06422890 554.76916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06422891 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06422892 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06422893 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06422894 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06422895 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06422896 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06422897 554.76922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06422898 554.76928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06422899 554.76928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06422900 554.76928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06422901 554.76928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06422902 554.76934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06422903 554.76934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06422904 554.76934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06422905 554.76934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06422906 554.76940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06422907 554.76940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06422908 554.76940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06422909 554.76940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06422910 554.76947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06422911 554.76947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06422912 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06422913 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06422914 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06422915 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06422916 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06422917 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06422918 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06422919 554.76953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06422920 554.76959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06422921 554.76959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06422922 554.76959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06422923 554.76959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06422924 554.76965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06422925 554.76965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06422926 554.76965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06422927 554.76965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06422928 554.76971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06422929 554.76971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06422930 554.76971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06422931 554.76971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06422932 554.76977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06422933 554.76977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06422934 554.76983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06422935 554.76983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06422936 554.76983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06422937 554.76983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06422938 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06422939 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06422940 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06422941 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06422942 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06422943 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06422944 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06422945 554.76989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06422946 554.76995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06422947 554.76995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06422948 554.77001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06422949 554.77001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06422950 554.77001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06422951 554.77001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06422952 554.77008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06422953 554.77008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06422954 554.77008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06422955 554.77008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06422956 554.77014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06422957 554.77014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06422958 554.77014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06422959 554.77014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06422960 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06422961 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06422962 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06422963 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06422964 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06422965 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06422966 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06422967 554.77020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06422968 554.77026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06422969 554.77026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06422970 554.77026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06422971 554.77026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06422972 554.77032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06422973 554.77032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06422974 554.77032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06422975 554.77032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06422976 554.77038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06422977 554.77038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06422978 554.77038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06422979 554.77038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06422980 554.77044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06422981 554.77044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06422982 554.77044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06422983 554.77044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06422984 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06422985 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06422986 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06422987 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06422988 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06422989 554.77050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06422990 554.77056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06422991 554.77056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06422992 554.77056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06422993 554.77056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06422994 554.77062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06422995 554.77062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06422996 554.77062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06422997 554.77062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06422998 554.77069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06422999 554.77069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06423000 554.77069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06423001 554.77069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06423002 554.77075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06423003 554.77075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06423004 554.77075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06423005 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06423006 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06423007 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06423008 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06423009 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06423010 554.77081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06423011 554.77087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06423012 554.77087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06423013 554.77087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06423014 554.77093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06423015 554.77093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06423016 554.77093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06423017 554.77093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06423018 554.77099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06423019 554.77099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06423020 554.77099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06423021 554.77099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06423022 554.77105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06423023 554.77105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06423024 554.77105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06423025 554.77105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06423026 554.77111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06423027 554.77111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06423028 554.77111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06423029 554.77111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06423030 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06423031 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06423032 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06423033 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06423034 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06423035 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06423036 554.77117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06423037 554.77124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06423038 554.77124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06423039 554.77124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06423040 554.77130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06423041 554.77130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06423042 554.77130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06423043 554.77130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06423044 554.77136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06423045 554.77136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06423046 554.77136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06423047 554.77136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06423048 554.77142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06423049 554.77142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06423050 554.77142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06423051 554.77142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06423052 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06423053 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06423054 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06423055 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06423056 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06423057 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06423058 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06423059 554.77148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06423060 554.77154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06423061 554.77154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06423062 554.77154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06423063 554.77154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06423064 554.77160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06423065 554.77160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06423066 554.77160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06423067 554.77160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06423068 554.77166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06423069 554.77166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06423070 554.77166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06423071 554.77172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06423072 554.77172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06423073 554.77172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06423074 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06423075 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06423076 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06423077 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06423078 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06423079 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06423080 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06423081 554.77178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06423082 554.77185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06423083 554.77185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06423084 554.77185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06423085 554.77185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06423086 554.77191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06423087 554.77191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06423088 554.77191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06423089 554.77191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06423090 554.77197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06423091 554.77197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06423092 554.77197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06423093 554.77197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06423094 554.77203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06423095 554.77203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06423096 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06423097 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06423098 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06423099 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06423100 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06423101 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06423102 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06423103 554.77209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06423104 554.77215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06423105 554.77215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06423106 554.77215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06423107 554.77215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06423108 554.77221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06423109 554.77221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06423110 554.77221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06423111 554.77221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06423112 554.77227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06423113 554.77227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06423114 554.77227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06423115 554.77227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06423116 554.77233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06423117 554.77233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06423118 554.77233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06423119 554.77233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06423120 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06423121 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06423122 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06423123 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06423124 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06423125 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06423126 554.77239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06423127 554.77246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06423128 554.77246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06423129 554.77246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06423130 554.77252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06423131 554.77252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06423132 554.77252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06423133 554.77252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06423134 554.77258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06423135 554.77258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06423136 554.77258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06423137 554.77258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06423138 554.77264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06423139 554.77264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06423140 554.77264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06423141 554.77264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06423142 554.77270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06423143 554.77270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06423144 554.77270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06423145 554.77270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06423146 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06423147 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06423148 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06423149 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06423150 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06423151 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06423152 554.77276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06423153 554.77282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06423154 554.77282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06423155 554.77282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06423156 554.77288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06423157 554.77288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06423158 554.77288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06423159 554.77288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06423160 554.77294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06423161 554.77294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06423162 554.77294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06423163 554.77294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06423164 554.77301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06423165 554.77301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06423166 554.77301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06423167 554.77301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06423168 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06423169 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06423170 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06423171 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06423172 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06423173 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06423174 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06423175 554.77307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06423176 554.77313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06423177 554.77313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06423178 554.77313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06423179 554.77313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06423180 554.77319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06423181 554.77319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06423182 554.77319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06423183 554.77319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06423184 554.77325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06423185 554.77325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06423186 554.77325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06423187 554.77325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06423188 554.77331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06423189 554.77331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06423190 554.77331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06423191 554.77331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06423192 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06423193 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06423194 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06423195 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06423196 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06423197 554.77337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06423198 554.77343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06423199 554.77343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06423200 554.77343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06423201 554.77343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06423202 554.77349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06423203 554.77349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06423204 554.77349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06423205 554.77349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06423206 554.77355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06423207 554.77355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06423208 554.77355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06423209 554.77355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06423210 554.77362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06423211 554.77362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06423212 554.77362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06423213 554.77362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06423214 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06423215 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06423216 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06423217 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06423218 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06423219 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06423220 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06423221 554.77368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06423222 554.77374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06423223 554.77374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06423224 554.77374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06423225 554.77374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06423226 554.77380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06423227 554.77380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06423228 554.77380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06423229 554.77380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06423230 554.77386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06423231 554.77386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06423232 554.77386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06423233 554.77386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06423234 554.77392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06423235 554.77392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06423236 554.77392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06423237 554.77392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06423238 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06423239 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06423240 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06423241 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06423242 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06423243 554.77398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06423244 554.77404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06423245 554.77404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06423246 554.77404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06423247 554.77404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06423248 554.77410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06423249 554.77410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06423250 554.77410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06423251 554.77410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06423252 554.77416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06423253 554.77416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06423254 554.77416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06423255 554.77416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06423256 554.77423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06423257 554.77423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06423258 554.77423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06423259 554.77423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06423260 554.77429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06423261 554.77429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06423262 554.77429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06423263 554.77429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06423264 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06423265 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06423266 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06423267 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06423268 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06423269 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06423270 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06423271 554.77435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06423272 554.77441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06423273 554.77441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06423274 554.77441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06423275 554.77441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06423276 554.77447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06423277 554.77447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06423278 554.77447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06423279 554.77447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06423280 554.77453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06423281 554.77453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06423282 554.77453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06423283 554.77453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06423284 554.77459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06423285 554.77459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06423286 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06423287 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06423288 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06423289 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06423290 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06423291 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06423292 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06423293 554.77465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06423294 554.77471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06423295 554.77471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06423296 554.77471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06423297 554.77471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06423298 554.77478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06423299 554.77478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06423300 554.77478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06423301 554.77478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06423302 554.77484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06423303 554.77484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06423304 554.77484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06423305 554.77484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06423306 554.77490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06423307 554.77490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06423308 554.77490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06423309 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06423310 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06423311 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06423312 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06423313 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06423314 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06423315 554.77496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06423316 554.77502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06423317 554.77502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06423318 554.77502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06423319 554.77502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06423320 554.77508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06423321 554.77508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06423322 554.77508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06423323 554.77508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06423324 554.77514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06423325 554.77514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06423326 554.77514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06423327 554.77514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06423328 554.77520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06423329 554.77520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06423330 554.77520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06423331 554.77520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06423332 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06423333 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06423334 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06423335 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06423336 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06423337 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06423338 554.77526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06423339 554.77532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06423340 554.77532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06423341 554.77532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06423342 554.77539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06423343 554.77539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06423344 554.77539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06423345 554.77539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06423346 554.77545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06423347 554.77545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06423348 554.77545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06423349 554.77545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06423350 554.77551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06423351 554.77551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06423352 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06423353 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06423354 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06423355 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06423356 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06423357 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06423358 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06423359 554.77557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06423360 554.77563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06423361 554.77563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06423362 554.77563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06423363 554.77563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06423364 554.77569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06423365 554.77569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06423366 554.77569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06423367 554.77569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06423368 554.77575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06423369 554.77575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06423370 554.77575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06423371 554.77575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06423372 554.77581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06423373 554.77581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06423374 554.77581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06423375 554.77581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06423376 554.77587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06423377 554.77587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06423378 554.77587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06423379 554.77587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06423380 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06423381 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06423382 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06423383 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06423384 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06423385 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06423386 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06423387 554.77593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06423388 554.77600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06423389 554.77600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06423390 554.77600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06423391 554.77600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06423392 554.77606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06423393 554.77606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06423394 554.77606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06423395 554.77612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06423396 554.77612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06423397 554.77612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06423398 554.77618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06423399 554.77618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06423400 554.77618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06423401 554.77618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06423402 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06423403 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06423404 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06423405 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06423406 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06423407 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06423408 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06423409 554.77624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06423410 554.77630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06423411 554.77630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06423412 554.77630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06423413 554.77630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06423414 554.77636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06423415 554.77636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06423416 554.77636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06423417 554.77636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06423418 554.77642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06423419 554.77642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06423420 554.77642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06423421 554.77642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06423422 554.77648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06423423 554.77648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06423424 554.77648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06423425 554.77648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06423426 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06423427 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06423428 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06423429 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06423430 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06423431 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06423432 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06423433 554.77655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06423434 554.77661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06423435 554.77661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06423436 554.77661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06423437 554.77667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06423438 554.77667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06423439 554.77667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06423440 554.77667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06423441 554.77673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06423442 554.77673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06423443 554.77673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06423444 554.77679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06423445 554.77679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06423446 554.77679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06423447 554.77679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06423448 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06423449 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06423450 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06423451 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06423452 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06423453 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06423454 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06423455 554.77685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06423456 554.77691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06423457 554.77691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06423458 554.77691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06423459 554.77691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06423460 554.77697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06423461 554.77697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06423462 554.77697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06423463 554.77697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06423464 554.77703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06423465 554.77703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06423466 554.77703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06423467 554.77703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06423468 554.77709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06423469 554.77709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06423470 554.77709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06423471 554.77709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06423472 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06423473 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06423474 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06423475 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06423476 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06423477 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06423478 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06423479 554.77716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06423480 554.77722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06423481 554.77722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06423482 554.77722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06423483 554.77728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06423484 554.77728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06423485 554.77728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06423486 554.77734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06423487 554.77734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06423488 554.77734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06423489 554.77734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06423490 554.77740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06423491 554.77740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06423492 554.77740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06423493 554.77740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06423494 554.77746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06423495 554.77746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06423496 554.77746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06423497 554.77746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06423498 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06423499 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06423500 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06423501 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06423502 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06423503 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06423504 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06423505 554.77752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06423506 554.77758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06423507 554.77758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06423508 554.77758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06423509 554.77758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06423510 554.77764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06423511 554.77764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06423512 554.77764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06423513 554.77764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06423514 554.77770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06423515 554.77770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06423516 554.77770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06423517 554.77770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06423518 554.77777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06423519 554.77777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06423520 554.77777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06423521 554.77777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06423522 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06423523 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06423524 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06423525 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06423526 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06423527 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06423528 554.77783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06423529 554.77789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06423530 554.77789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06423531 554.77789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06423532 554.77795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06423533 554.77795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06423534 554.77795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06423535 554.77795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06423536 554.77801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06423537 554.77801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06423538 554.77801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06423539 554.77801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06423540 554.77807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06423541 554.77807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06423542 554.77807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06423543 554.77807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06423544 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06423545 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06423546 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06423547 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06423548 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06423549 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06423550 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06423551 554.77813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06423552 554.77819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06423553 554.77819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06423554 554.77819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06423555 554.77819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06423556 554.77825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06423557 554.77825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06423558 554.77825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06423559 554.77825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06423560 554.77832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06423561 554.77832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06423562 554.77832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06423563 554.77832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06423564 554.77838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06423565 554.77838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06423566 554.77838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06423567 554.77838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06423568 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06423569 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06423570 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06423571 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06423572 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06423573 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06423574 554.77844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06423575 554.77850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06423576 554.77850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06423577 554.77850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06423578 554.77856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06423579 554.77856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06423580 554.77856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06423581 554.77856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06423582 554.77862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06423583 554.77862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06423584 554.77862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06423585 554.77862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06423586 554.77868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06423587 554.77868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06423588 554.77868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06423589 554.77868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06423590 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06423591 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06423592 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06423593 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06423594 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06423595 554.77874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06423596 554.77880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06423597 554.77880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06423598 554.77880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06423599 554.77880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06423600 554.77886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06423601 554.77886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06423602 554.77886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06423603 554.77886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06423604 554.77893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06423605 554.77893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06423606 554.77893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06423607 554.77893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06423608 554.77899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06423609 554.77899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06423610 554.77899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06423611 554.77899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06423612 554.77905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06423613 554.77905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06423614 554.77905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06423615 554.77905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06423616 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06423617 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06423618 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06423619 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06423620 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06423621 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06423622 554.77911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06423623 554.77917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06423624 554.77917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06423625 554.77917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06423626 554.77923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06423627 554.77923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06423628 554.77923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06423629 554.77923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06423630 554.77929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06423631 554.77929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06423632 554.77929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06423633 554.77929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06423634 554.77935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06423635 554.77935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06423636 554.77935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06423637 554.77935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06423638 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06423639 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06423640 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06423641 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06423642 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06423643 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06423644 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06423645 554.77941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06423646 554.77947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06423647 554.77947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06423648 554.77947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06423649 554.77947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06423650 554.77954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06423651 554.77954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06423652 554.77954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06423653 554.77960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06423654 554.77960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06423655 554.77960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06423656 554.77966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06423657 554.77966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06423658 554.77966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06423659 554.77966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06423660 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06423661 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06423662 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06423663 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06423664 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06423665 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06423666 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06423667 554.77972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06423668 554.77978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06423669 554.77978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06423670 554.77978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06423671 554.77978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06423672 554.77984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06423673 554.77984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06423674 554.77984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06423675 554.77984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06423676 554.77990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06423677 554.77990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06423678 554.77990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06423679 554.77990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06423680 554.77996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06423681 554.77996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06423682 554.77996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06423683 554.77996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06423684 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06423685 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06423686 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06423687 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06423688 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06423689 554.78002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06423690 554.78009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06423691 554.78009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06423692 554.78009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06423693 554.78009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06423694 554.78015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06423695 554.78015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06423696 554.78015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06423697 554.78015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06423698 554.78021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06423699 554.78021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06423700 554.78021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06423701 554.78021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06423702 554.78027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06423703 554.78027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06423704 554.78027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06423705 554.78027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06423706 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06423707 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06423708 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06423709 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06423710 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06423711 554.78033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06423712 554.78039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06423713 554.78039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06423714 554.78039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06423715 554.78039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06423716 554.78045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06423717 554.78045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06423718 554.78045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06423719 554.78045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06423720 554.78051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06423721 554.78051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06423722 554.78051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06423723 554.78051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06423724 554.78057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06423725 554.78057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06423726 554.78057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06423727 554.78057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06423728 554.78063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06423729 554.78063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06423730 554.78063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06423731 554.78063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06423732 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06423733 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06423734 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06423735 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06423736 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06423737 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06423738 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06423739 554.78070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06423740 554.78076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06423741 554.78076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06423742 554.78076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06423743 554.78076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06423744 554.78082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06423745 554.78082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06423746 554.78082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06423747 554.78082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06423748 554.78088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06423749 554.78088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06423750 554.78088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06423751 554.78094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06423752 554.78094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06423753 554.78094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06423754 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06423755 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06423756 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06423757 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06423758 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06423759 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06423760 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06423761 554.78100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06423762 554.78106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06423763 554.78106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06423764 554.78106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06423765 554.78106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06423766 554.78112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06423767 554.78112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06423768 554.78112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06423769 554.78112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06423770 554.78118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06423771 554.78118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06423772 554.78118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06423773 554.78118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06423774 554.78125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06423775 554.78125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06423776 554.78125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06423777 554.78125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06423778 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06423779 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06423780 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06423781 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06423782 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06423783 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06423784 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06423785 554.78131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06423786 554.78137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06423787 554.78137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06423788 554.78137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06423789 554.78137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06423790 554.78143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06423791 554.78143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06423792 554.78143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06423793 554.78143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06423794 554.78149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06423795 554.78149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06423796 554.78149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06423797 554.78155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06423798 554.78155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06423799 554.78155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06423800 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06423801 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06423802 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06423803 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06423804 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06423805 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06423806 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06423807 554.78161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06423808 554.78167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06423809 554.78167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06423810 554.78167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06423811 554.78167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06423812 554.78173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06423813 554.78173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06423814 554.78173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06423815 554.78173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06423816 554.78179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06423817 554.78179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06423818 554.78179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06423819 554.78186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06423820 554.78186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06423821 554.78186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06423822 554.78192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06423823 554.78192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06423824 554.78192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06423825 554.78192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06423826 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06423827 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06423828 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06423829 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06423830 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06423831 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06423832 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06423833 554.78198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06423834 554.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06423835 554.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06423836 554.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06423837 554.78204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06423838 554.78210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06423839 554.78210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06423840 554.78210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06423841 554.78210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06423842 554.78216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06423843 554.78216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06423844 554.78216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06423845 554.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06423846 554.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06423847 554.78222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06423848 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06423849 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06423850 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06423851 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06423852 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06423853 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06423854 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06423855 554.78228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06423856 554.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06423857 554.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06423858 554.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06423859 554.78234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06423860 554.78240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06423861 554.78240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06423862 554.78240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06423863 554.78240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06423864 554.78247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06423865 554.78247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06423866 554.78247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06423867 554.78247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06423868 554.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06423869 554.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06423870 554.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06423871 554.78253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06423872 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06423873 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06423874 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06423875 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06423876 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06423877 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06423878 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06423879 554.78259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06423880 554.78265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06423881 554.78265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06423882 554.78265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06423883 554.78265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06423884 554.78271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06423885 554.78271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06423886 554.78277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06423887 554.78277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06423888 554.78277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06423889 554.78277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06423890 554.78283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06423891 554.78283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06423892 554.78283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06423893 554.78283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06423894 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06423895 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06423896 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06423897 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06423898 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06423899 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06423900 554.78289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06423901 554.78295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06423902 554.78295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06423903 554.78295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06423904 554.78302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06423905 554.78302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06423906 554.78302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06423907 554.78302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06423908 554.78308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06423909 554.78308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06423910 554.78308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06423911 554.78308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06423912 554.78314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06423913 554.78314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06423914 554.78314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06423915 554.78314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06423916 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06423917 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06423918 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06423919 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06423920 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06423921 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06423922 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06423923 554.78320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06423924 554.78326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06423925 554.78326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06423926 554.78326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06423927 554.78326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06423928 554.78332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06423929 554.78332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06423930 554.78332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06423931 554.78332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06423932 554.78338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06423933 554.78338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06423934 554.78338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06423935 554.78338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06423936 554.78344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06423937 554.78344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06423938 554.78344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06423939 554.78344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06423940 554.78350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06423941 554.78350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06423942 554.78350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06423943 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06423944 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06423945 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06423946 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06423947 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06423948 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06423949 554.78356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06423950 554.78363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06423951 554.78363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06423952 554.78363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06423953 554.78363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06423954 554.78369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06423955 554.78369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06423956 554.78369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06423957 554.78369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06423958 554.78375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06423959 554.78375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06423960 554.78375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06423961 554.78375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06423962 554.78381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06423963 554.78381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06423964 554.78381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06423965 554.78381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06423966 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06423967 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06423968 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06423969 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06423970 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06423971 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06423972 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06423973 554.78387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06423974 554.78393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06423975 554.78393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06423976 554.78393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06423977 554.78393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06423978 554.78399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06423979 554.78399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06423980 554.78399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06423981 554.78399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06423982 554.78405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06423983 554.78405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06423984 554.78405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06423985 554.78405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06423986 554.78411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06423987 554.78411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06423988 554.78411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06423989 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06423990 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06423991 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06423992 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06423993 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06423994 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06423995 554.78417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06423996 554.78424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06423997 554.78424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06423998 554.78424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06423999 554.78424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06424000 554.78430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06424001 554.78430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06424002 554.78430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06424003 554.78430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06424004 554.78436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06424005 554.78436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06424006 554.78436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06424007 554.78436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06424008 554.78442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06424009 554.78442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06424010 554.78442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06424011 554.78442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06424012 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06424013 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06424014 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06424015 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06424016 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06424017 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06424018 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06424019 554.78448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06424020 554.78454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06424021 554.78454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06424022 554.78454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06424023 554.78454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06424024 554.78460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06424025 554.78460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06424026 554.78460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06424027 554.78460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06424028 554.78466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06424029 554.78466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06424030 554.78466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06424031 554.78472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06424032 554.78472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06424033 554.78472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06424034 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06424035 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06424036 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06424037 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06424038 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06424039 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06424040 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06424041 554.78479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06424042 554.78485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06424043 554.78485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06424044 554.78485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06424045 554.78485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06424046 554.78491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06424047 554.78491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06424048 554.78491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06424049 554.78491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06424050 554.78497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06424051 554.78497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06424052 554.78497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06424053 554.78497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06424054 554.78503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06424055 554.78503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06424056 554.78503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06424057 554.78503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06424058 554.78509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06424059 554.78509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06424060 554.78509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06424061 554.78509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06424062 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06424063 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06424064 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06424065 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06424066 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06424067 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06424068 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06424069 554.78515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06424070 554.78521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06424071 554.78521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06424072 554.78521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06424073 554.78521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06424074 554.78527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06424075 554.78527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06424076 554.78527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06424077 554.78533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06424078 554.78533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06424079 554.78533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06424080 554.78540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06424081 554.78540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06424082 554.78540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06424083 554.78540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06424084 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06424085 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06424086 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06424087 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06424088 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06424089 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06424090 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06424091 554.78546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06424092 554.78552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06424093 554.78552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06424094 554.78552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06424095 554.78552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06424096 554.78558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06424097 554.78558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06424098 554.78558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06424099 554.78558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06424100 554.78564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06424101 554.78564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06424102 554.78564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06424103 554.78564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06424104 554.78570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06424105 554.78570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06424106 554.78570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06424107 554.78570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06424108 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06424109 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06424110 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06424111 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06424112 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06424113 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06424114 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06424115 554.78576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06424116 554.78582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06424117 554.78582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06424118 554.78582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06424119 554.78582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06424120 554.78588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06424121 554.78588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06424122 554.78588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06424123 554.78594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06424124 554.78594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06424125 554.78594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06424126 554.78601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06424127 554.78601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06424128 554.78601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06424129 554.78601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06424130 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06424131 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06424132 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06424133 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06424134 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06424135 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06424136 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06424137 554.78607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06424138 554.78613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06424139 554.78613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06424140 554.78613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06424141 554.78613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06424142 554.78619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06424143 554.78619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06424144 554.78619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06424145 554.78619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06424146 554.78625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06424147 554.78625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06424148 554.78625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06424149 554.78625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06424150 554.78631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06424151 554.78631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06424152 554.78631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06424153 554.78631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06424154 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06424155 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06424156 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06424157 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06424158 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06424159 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06424160 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06424161 554.78637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06424162 554.78643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06424163 554.78643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06424164 554.78643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06424165 554.78649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06424166 554.78649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06424167 554.78649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06424168 554.78656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06424169 554.78656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06424170 554.78656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06424171 554.78656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06424172 554.78662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06424173 554.78662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06424174 554.78662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06424175 554.78662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06424176 554.78668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06424177 554.78668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06424178 554.78668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06424179 554.78668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06424180 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06424181 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06424182 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06424183 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06424184 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06424185 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06424186 554.78674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06424187 554.78680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06424188 554.78680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06424189 554.78680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06424190 554.78686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06424191 554.78686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06424192 554.78686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06424193 554.78686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06424194 554.78692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06424195 554.78692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06424196 554.78692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06424197 554.78692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06424198 554.78698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06424199 554.78698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06424200 554.78698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06424201 554.78698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06424202 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06424203 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06424204 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06424205 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06424206 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06424207 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06424208 554.78704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06424209 554.78710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06424210 554.78710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06424211 554.78710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06424212 554.78717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06424213 554.78717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06424214 554.78717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06424215 554.78717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06424216 554.78723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06424217 554.78723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06424218 554.78723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06424219 554.78723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06424220 554.78729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06424221 554.78729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06424222 554.78729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06424223 554.78729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06424224 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06424225 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06424226 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06424227 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06424228 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06424229 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06424230 554.78735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06424231 554.78741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06424232 554.78741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06424233 554.78741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06424234 554.78747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06424235 554.78747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06424236 554.78747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06424237 554.78747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06424238 554.78753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06424239 554.78753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06424240 554.78753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06424241 554.78753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06424242 554.78759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06424243 554.78759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06424244 554.78759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06424245 554.78759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06424246 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06424247 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06424248 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06424249 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06424250 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06424251 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06424252 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06424253 554.78765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06424254 554.78771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06424255 554.78771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06424256 554.78771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06424257 554.78771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06424258 554.78778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06424259 554.78778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06424260 554.78778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06424261 554.78778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06424262 554.78784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06424263 554.78784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06424264 554.78784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06424265 554.78790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06424266 554.78790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06424267 554.78790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06424268 554.78790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06424269 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06424270 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06424271 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06424272 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06424273 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06424274 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06424275 554.78796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06424276 554.78802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06424277 554.78802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06424278 554.78802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06424279 554.78802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06424280 554.78808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06424281 554.78808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06424282 554.78808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06424283 554.78808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06424284 554.78814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06424285 554.78814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06424286 554.78814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06424287 554.78814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06424288 554.78820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06424289 554.78820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06424290 554.78820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06424291 554.78820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06424292 554.78826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06424293 554.78826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06424294 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06424295 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06424296 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06424297 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06424298 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06424299 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06424300 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06424301 554.78833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06424302 554.78839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06424303 554.78839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06424304 554.78839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06424305 554.78839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06424306 554.78845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06424307 554.78845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06424308 554.78845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06424309 554.78845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06424310 554.78851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06424311 554.78851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06424312 554.78851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06424313 554.78851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06424314 554.78857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06424315 554.78857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06424316 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06424317 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06424318 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06424319 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06424320 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06424321 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06424322 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06424323 554.78863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06424324 554.78869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06424325 554.78869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06424326 554.78875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06424327 554.78875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06424328 554.78875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06424329 554.78875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06424330 554.78881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06424331 554.78881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06424332 554.78881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06424333 554.78881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06424334 554.78887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06424335 554.78887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06424336 554.78887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06424337 554.78887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06424338 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06424339 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06424340 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06424341 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06424342 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06424343 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06424344 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06424345 554.78894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06424346 554.78900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06424347 554.78900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06424348 554.78900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06424349 554.78906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06424350 554.78906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06424351 554.78906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06424352 554.78912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06424353 554.78912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06424354 554.78912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06424355 554.78912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06424356 554.78918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06424357 554.78918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06424358 554.78918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06424359 554.78918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06424360 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06424361 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06424362 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06424363 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06424364 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06424365 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06424366 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06424367 554.78924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06424368 554.78930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06424369 554.78930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06424370 554.78930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06424371 554.78930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06424372 554.78936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06424373 554.78936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06424374 554.78942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06424375 554.78942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06424376 554.78942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06424377 554.78942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06424378 554.78948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06424379 554.78948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06424380 554.78948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06424381 554.78948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06424382 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06424383 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06424384 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06424385 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06424386 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06424387 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06424388 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06424389 554.78955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06424390 554.78961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06424391 554.78961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06424392 554.78961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06424393 554.78961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06424394 554.78967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06424395 554.78967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06424396 554.78967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06424397 554.78967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06424398 554.78973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06424399 554.78973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06424400 554.78973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06424401 554.78979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06424402 554.78979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06424403 554.78979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06424404 554.78985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06424405 554.78985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06424406 554.78985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06424407 554.78985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06424408 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06424409 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06424410 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06424411 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06424412 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06424413 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06424414 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06424415 554.78991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06424416 554.78997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06424417 554.78997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06424418 554.78997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06424419 554.78997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06424420 554.79003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06424421 554.79003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06424422 554.79003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06424423 554.79003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06424424 554.79010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06424425 554.79010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06424426 554.79010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06424427 554.79010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06424428 554.79016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06424429 554.79016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06424430 554.79016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06424431 554.79016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06424432 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06424433 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06424434 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06424435 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06424436 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06424437 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06424438 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06424439 554.79022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06424440 554.79028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06424441 554.79028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06424442 554.79028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06424443 554.79028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06424444 554.79034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06424445 554.79034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06424446 554.79034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06424447 554.79034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06424448 554.79040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06424449 554.79040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06424450 554.79040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06424451 554.79046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06435130 554.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06435131 554.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1a8 -06435132 554.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b8 -06435133 554.93560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1b8 -06435134 554.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c8 -06435135 554.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1c8 -06435136 554.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d8 -06435137 554.93566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d8 -06435138 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e8 -06435139 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e8 -06435140 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -06435141 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f8 -06435142 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -06435143 554.93572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e208 -06435144 554.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -06435145 554.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e218 -06435146 554.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -06435147 554.93579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e228 -06435148 554.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -06435149 554.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e238 -06435150 554.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -06435151 554.93585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -06435152 554.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -06435153 554.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -06435154 554.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -06435155 554.93591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -06435156 554.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -06435157 554.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -06435158 554.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -06435159 554.93597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -06435160 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -06435161 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -06435162 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -06435163 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -06435164 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -06435165 554.93603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -06435166 554.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -06435167 554.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -06435168 554.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -06435169 554.93609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -06435170 554.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -06435171 554.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -06435172 554.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -06435173 554.93615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -06437594 554.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea8 -06437595 554.96929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ea8 -06437596 554.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb8 -06437597 554.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22eb8 -06437598 554.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec8 -06437599 554.96936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ec8 -06437600 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed8 -06437601 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ed8 -06437602 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee8 -06437603 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ee8 -06437604 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef8 -06437605 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ef8 -06437606 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f08 -06437607 554.96942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f08 -06437608 554.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f18 -06437609 554.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f18 -06437610 554.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f28 -06437611 554.96948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f28 -06437612 554.96954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f38 -06437613 554.96954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f38 -06437614 554.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -06437615 554.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f48 -06437616 554.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -06437617 554.96960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f58 -06437618 554.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -06437619 554.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f68 -06437620 554.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -06437621 554.96966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f78 -06437622 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -06437623 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f88 -06437624 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -06437625 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f98 -06437626 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -06437627 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fa8 -06437628 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -06437629 554.96972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fb8 -06437630 554.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -06437631 554.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fc8 -06437632 554.96978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -06437633 554.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fd8 -06437634 554.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -06437635 554.96984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22fe8 -06437636 554.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -06437637 554.96990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ff8 -06440194 555.00506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa8 -06440195 555.00506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fa8 -06440196 555.00506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb8 -06440197 555.00506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fb8 -06440198 555.00512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc8 -06440199 555.00512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fc8 -06440200 555.00512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd8 -06440201 555.00512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fd8 -06440202 555.00518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe8 -06440203 555.00518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27fe8 -06440204 555.00518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff8 -06440205 555.00518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ff8 -06440206 555.00524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28008 -06440207 555.00524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28008 -06440208 555.00524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28018 -06440209 555.00524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28018 -06440210 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28028 -06440211 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28028 -06440212 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28038 -06440213 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28038 -06440214 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28048 -06440215 555.00531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28048 -06440216 555.00537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28058 -06440217 555.00537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28058 -06440218 555.00537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28068 -06440219 555.00537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28068 -06440220 555.00543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28078 -06440221 555.00543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28078 -06440222 555.00543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28088 -06440223 555.00543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28088 -06440224 555.00549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28098 -06440225 555.00549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28098 -06440226 555.00549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a8 -06440227 555.00555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280a8 -06440228 555.00555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b8 -06440229 555.00555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280b8 -06440230 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -06440231 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280c8 -06440232 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -06440233 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280d8 -06440234 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -06440235 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280e8 -06440236 555.00561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -06440237 555.00567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -06442522 555.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -06442523 555.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c868 -06442524 555.03717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -06442525 555.03723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c878 -06442526 555.03723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -06442527 555.03723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c888 -06442528 555.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -06442529 555.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c898 -06442530 555.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -06442531 555.03729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8a8 -06442532 555.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -06442533 555.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8b8 -06442534 555.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -06442535 555.03735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8c8 -06442536 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -06442537 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8d8 -06442538 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -06442539 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8e8 -06442540 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -06442541 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c8f8 -06442542 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -06442543 555.03741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c908 -06442544 555.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -06442545 555.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c918 -06442546 555.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -06442547 555.03747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c928 -06442548 555.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -06442549 555.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c938 -06442550 555.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -06442551 555.03753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c948 -06442552 555.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c958 -06442553 555.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c958 -06442554 555.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c968 -06442555 555.03759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c968 -06442556 555.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c978 -06442557 555.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c978 -06442558 555.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c988 -06442559 555.03765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c988 -06442560 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c998 -06442561 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c998 -06442562 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -06442563 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9a8 -06442564 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -06442565 555.03771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c9b8 -06444978 555.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31528 -06444979 555.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31528 -06444980 555.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31538 -06444981 555.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31538 -06444982 555.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31548 -06444983 555.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31548 -06444984 555.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31558 -06444985 555.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31558 -06444986 555.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31568 -06444987 555.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31568 -06444988 555.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31578 -06444989 555.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31578 -06444990 555.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31588 -06444991 555.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31588 -06444992 555.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31598 -06444993 555.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31598 -06444994 555.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a8 -06444995 555.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315a8 -06444996 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b8 -06444997 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315b8 -06444998 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c8 -06444999 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315c8 -06445000 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d8 -06445001 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315d8 -06445002 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e8 -06445003 555.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315e8 -06445004 555.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f8 -06445005 555.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x315f8 -06445006 555.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31608 -06445007 555.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31608 -06445008 555.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31618 -06445009 555.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31618 -06445010 555.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31628 -06445011 555.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31628 -06445012 555.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31638 -06445013 555.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31638 -06445014 555.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31648 -06445015 555.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31648 -06445016 555.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31658 -06445017 555.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31658 -06445018 555.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31668 -06445019 555.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31668 -06445020 555.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31678 -06445021 555.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31678 -06447314 555.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e28 -06447315 555.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e28 -06447316 555.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e38 -06447317 555.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e38 -06447318 555.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -06447319 555.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e48 -06447320 555.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -06447321 555.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e58 -06447322 555.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -06447323 555.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e68 -06447324 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -06447325 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e78 -06447326 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -06447327 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e88 -06447328 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -06447329 555.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e98 -06447330 555.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -06447331 555.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ea8 -06447332 555.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -06447333 555.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35eb8 -06447334 555.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -06447335 555.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ec8 -06447336 555.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -06447337 555.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ed8 -06447338 555.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -06447339 555.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee8 -06447340 555.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef8 -06447341 555.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef8 -06447342 555.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -06447343 555.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f08 -06447344 555.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -06447345 555.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f18 -06447346 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -06447347 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f28 -06447348 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -06447349 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f38 -06447350 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -06447351 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f48 -06447352 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -06447353 555.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f58 -06447354 555.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -06447355 555.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f68 -06447356 555.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f78 -06447357 555.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f78 -06449730 555.13610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a8 -06449731 555.13610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a8 -06449732 555.13610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -06449733 555.13616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b8 -06449734 555.13616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -06449735 555.13616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c8 -06449736 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -06449737 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d8 -06449738 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -06449739 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e8 -06449740 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -06449741 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f8 -06449742 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -06449743 555.13623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa08 -06449744 555.13629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -06449745 555.13629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa18 -06449746 555.13629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -06449747 555.13629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa28 -06449748 555.13635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -06449749 555.13635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa38 -06449750 555.13635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -06449751 555.13635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa48 -06449752 555.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -06449753 555.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa58 -06449754 555.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -06449755 555.13641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa68 -06449756 555.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -06449757 555.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa78 -06449758 555.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -06449759 555.13647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa88 -06449760 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -06449761 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa98 -06449762 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -06449763 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaa8 -06449764 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -06449765 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aab8 -06449766 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -06449767 555.13653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aac8 -06449768 555.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -06449769 555.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aad8 -06449770 555.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae8 -06449771 555.13659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aae8 -06449772 555.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf8 -06449773 555.13665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aaf8 -06452078 555.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f308 -06452079 555.16845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f308 -06452080 555.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f318 -06452081 555.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f318 -06452082 555.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f328 -06452083 555.16851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f328 -06452084 555.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f338 -06452085 555.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f338 -06452086 555.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f348 -06452087 555.16857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f348 -06452088 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f358 -06452089 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f358 -06452090 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f368 -06452091 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f368 -06452092 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f378 -06452093 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f378 -06452094 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f388 -06452095 555.16864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f388 -06452096 555.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f398 -06452097 555.16870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f398 -06452098 555.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a8 -06452099 555.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3a8 -06452100 555.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b8 -06452101 555.16876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3b8 -06452102 555.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c8 -06452103 555.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3c8 -06452104 555.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d8 -06452105 555.16882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d8 -06452106 555.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e8 -06452107 555.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e8 -06452108 555.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f8 -06452109 555.16888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f8 -06452110 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f408 -06452111 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f408 -06452112 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f418 -06452113 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f418 -06452114 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f428 -06452115 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f428 -06452116 555.16894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -06452117 555.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f438 -06452118 555.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -06452119 555.16900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f448 -06452120 555.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -06452121 555.16906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f458 -06454584 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -06454585 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -06454586 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -06454587 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -06454588 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -06454589 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44178 -06454590 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -06454591 555.20324707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44188 -06454592 555.20330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -06454593 555.20330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44198 -06454594 555.20330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -06454595 555.20330811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441a8 -06454596 555.20336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -06454597 555.20336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -06454598 555.20336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -06454599 555.20336914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -06454600 555.20343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -06454601 555.20343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -06454602 555.20343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -06454603 555.20343018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -06454604 555.20349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -06454605 555.20349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -06454606 555.20349121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -06454607 555.20355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -06454608 555.20355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -06454609 555.20355225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -06454610 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -06454611 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -06454612 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -06454613 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -06454614 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -06454615 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -06454616 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -06454617 555.20361328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -06454618 555.20367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -06454619 555.20367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -06454620 555.20367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -06454621 555.20367432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -06454622 555.20373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -06454623 555.20373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -06454624 555.20373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -06454625 555.20373535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -06454626 555.20379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -06454627 555.20379639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -06456950 555.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06456951 555.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06456952 555.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06456953 555.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06456954 555.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06456955 555.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06456956 555.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06456957 555.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06456958 555.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06456959 555.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06456960 555.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06456961 555.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06456962 555.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06456963 555.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -06456964 555.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06456965 555.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -06456966 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06456967 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -06456968 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06456969 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -06456970 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06456971 555.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -06456972 555.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06456973 555.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -06456974 555.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -06456975 555.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -06456976 555.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -06456977 555.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -06456978 555.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -06456979 555.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -06456980 555.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -06456981 555.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -06456982 555.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -06456983 555.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -06456984 555.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -06456985 555.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -06456986 555.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c68 -06456987 555.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c68 -06456988 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c78 -06456989 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c78 -06456990 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c88 -06456991 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c88 -06456992 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c98 -06456993 555.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c98 -06462132 556.40850830 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06462133 556.42681885 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462134 556.42687988 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462135 557.49975586 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462136 557.49975586 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462137 557.49981689 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462138 557.49981689 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06462139 557.49987793 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462140 557.49993896 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06462141 557.50000000 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462142 557.50000000 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06462143 558.42810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06462144 558.44805908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462145 558.44805908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462146 560.00799561 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462147 560.00805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462148 560.00805664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06462149 560.00811768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06462150 560.00817871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462151 560.00817871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06462152 560.00823975 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06462153 560.00830078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06462154 560.30999756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06462155 560.30999756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06462156 560.31005859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06462157 560.31005859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06462158 560.31005859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06462159 560.31005859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06462160 560.31011963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06462161 560.31011963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06462162 560.31011963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06462163 560.31018066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06462164 560.31018066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06462165 560.31018066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06462166 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06462167 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06462168 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06462169 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06462170 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06462171 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06462172 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06462173 560.31024170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06462174 560.31030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06462175 560.31030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06462176 560.31030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06462177 560.31030273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06462178 560.31036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06462179 560.31036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06462180 560.31036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06462181 560.31036377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06462182 560.31042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06462183 560.31042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06462184 560.31042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06462185 560.31042480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06462186 560.31048584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06462187 560.31048584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06462188 560.31048584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06462189 560.31048584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06462190 560.31054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06462191 560.31054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06462192 560.31054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06462193 560.31054688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06462194 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06462195 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06462196 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06462197 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06462198 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06462199 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06462200 560.31060791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06462201 560.31066895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06462202 560.31066895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06462203 560.31066895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06462204 560.31072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06462205 560.31072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06462206 560.31072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06462207 560.31072998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06462208 560.31079102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06462209 560.31079102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06462210 560.31079102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06462211 560.31079102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06462212 560.31085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06462213 560.31085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06462214 560.31085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06462215 560.31085205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06462216 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06462217 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06462218 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06462219 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06462220 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06462221 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06462222 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06462223 560.31091309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06462224 560.31097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06462225 560.31097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06462226 560.31097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06462227 560.31097412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06462228 560.31103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06462229 560.31103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06462230 560.31103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06462231 560.31103516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06462232 560.31109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06462233 560.31109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06462234 560.31109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06462235 560.31109619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06462236 560.31115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06462237 560.31115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06462238 560.31115723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06462239 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06462240 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06462241 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06462242 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06462243 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06462244 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06462245 560.31121826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06462246 560.31127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06462247 560.31127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06462248 560.31127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06462249 560.31127930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06462250 560.31134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06462251 560.31134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06462252 560.31134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06462253 560.31134033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06462254 560.31140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06462255 560.31140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06462256 560.31140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06462257 560.31140137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06462258 560.31146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06462259 560.31146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06462260 560.31146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06462261 560.31146240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06462262 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06462263 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06462264 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06462265 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06462266 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06462267 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06462268 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06462269 560.31152344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06462270 560.31158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06462271 560.31158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06462272 560.31158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06462273 560.31158447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06462274 560.31164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06462275 560.31164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06462276 560.31164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06462277 560.31164551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06462278 560.31170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06462279 560.31170654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06462280 560.31176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06462281 560.31176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06462282 560.31176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06462283 560.31176758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06462284 560.31182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06462285 560.31182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06462286 560.31182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06462287 560.31182861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06462288 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06462289 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06462290 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06462291 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06462292 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06462293 560.31188965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06462294 560.31195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06462295 560.31195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06462296 560.31195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06462297 560.31195068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06462298 560.31201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06462299 560.31201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06462300 560.31201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06462301 560.31201172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06462302 560.31207275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06462303 560.31207275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06462304 560.31207275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06462305 560.31207275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06462306 560.31213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06462307 560.31213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06462308 560.31213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06462309 560.31213379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06462310 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06462311 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06462312 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06462313 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06462314 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06462315 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06462316 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06462317 560.31219482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06462318 560.31225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06462319 560.31225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06462320 560.31225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06462321 560.31225586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06462322 560.31231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06462323 560.31231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06462324 560.31231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06462325 560.31231689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06462326 560.31237793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06462327 560.31237793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06462328 560.31237793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06462329 560.31237793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06462330 560.31243896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06462331 560.31243896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06462332 560.31243896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06462333 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06462334 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06462335 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06462336 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06462337 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06462338 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06462339 560.31250000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06462340 560.31256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06462341 560.31256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06462342 560.31256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06462343 560.31256104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06462344 560.31262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06462345 560.31262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06462346 560.31262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06462347 560.31262207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06462348 560.31268311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06462349 560.31268311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06462350 560.31268311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06462351 560.31268311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06462352 560.31274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06462353 560.31274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06462354 560.31274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06462355 560.31274414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06462356 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06462357 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06462358 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06462359 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06462360 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06462361 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06462362 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06462363 560.31280518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06462364 560.31286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06462365 560.31286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06462366 560.31286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06462367 560.31286621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06462368 560.31292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06462369 560.31292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06462370 560.31292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06462371 560.31292725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06462372 560.31298828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06462373 560.31298828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06462374 560.31298828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06462375 560.31304932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06462376 560.31304932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06462377 560.31304932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06462378 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06462379 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06462380 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06462381 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06462382 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06462383 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06462384 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06462385 560.31311035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06462386 560.31317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06462387 560.31317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06462388 560.31317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06462389 560.31317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06462390 560.31323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06462391 560.31323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06462392 560.31323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06462393 560.31323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06462394 560.31329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06462395 560.31329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06462396 560.31329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06462397 560.31329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06462398 560.31335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06462399 560.31335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06462400 560.31335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06462401 560.31335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06462402 560.31341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06462403 560.31341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06462404 560.31341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06462405 560.31341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06462406 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06462407 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06462408 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06462409 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06462410 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06462411 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06462412 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06462413 560.31347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06462414 560.31353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06462415 560.31353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06462416 560.31353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06462417 560.31359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06462418 560.31359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06462419 560.31359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06462420 560.31365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06462421 560.31365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06462422 560.31365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06462423 560.31365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06462424 560.31372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06462425 560.31372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06462426 560.31372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06462427 560.31372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06462428 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06462429 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06462430 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06462431 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06462432 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06462433 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06462434 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06462435 560.31378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06462436 560.31384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06462437 560.31384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06462438 560.31384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06462439 560.31384277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06462440 560.31390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06462441 560.31390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06462442 560.31390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06462443 560.31390381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06462444 560.31396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06462445 560.31396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06462446 560.31396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06462447 560.31396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06462448 560.31402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06462449 560.31402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06462450 560.31402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06462451 560.31402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06462452 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06462453 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06462454 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06462455 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06462456 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06462457 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06462458 560.31408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06462459 560.31414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06462460 560.31414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06462461 560.31414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06462462 560.31420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06462463 560.31420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06462464 560.31420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06462465 560.31420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06462466 560.31427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06462467 560.31427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06462468 560.31427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06462469 560.31427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06462470 560.31433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06462471 560.31433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06462472 560.31433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06462473 560.31433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06462474 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06462475 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06462476 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06462477 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06462478 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06462479 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06462480 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06462481 560.31439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06462482 560.31445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06462483 560.31445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06462484 560.31445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06462485 560.31445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06462486 560.31451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06462487 560.31451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06462488 560.31451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06462489 560.31451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06462490 560.31457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06462491 560.31457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06462492 560.31457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06462493 560.31457520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06462494 560.31463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06462495 560.31463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06462496 560.31463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06462497 560.31463623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06462498 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06462499 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06462500 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06462501 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06462502 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06462503 560.31469727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06462504 560.31475830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06462505 560.31475830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06462506 560.31475830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06462507 560.31475830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06462508 560.31481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06462509 560.31481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06462510 560.31481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06462511 560.31481934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06462512 560.31488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06462513 560.31488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06462514 560.31488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06462515 560.31488037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06462516 560.31494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06462517 560.31494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06462518 560.31494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06462519 560.31494141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06462520 560.31500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06462521 560.31500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06462522 560.31500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06462523 560.31500244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06462524 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06462525 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06462526 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06462527 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06462528 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06462529 560.31506348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06462530 560.31512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06462531 560.31512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06462532 560.31512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06462533 560.31512451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06462534 560.31518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06462535 560.31518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06462536 560.31518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06462537 560.31518555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06462538 560.31524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06462539 560.31524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06462540 560.31524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06462541 560.31524658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06462542 560.31530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06462543 560.31530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06462544 560.31530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06462545 560.31530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06462546 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06462547 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06462548 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06462549 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06462550 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06462551 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06462552 560.31536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06462553 560.31542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06462554 560.31542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06462555 560.31542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06462556 560.31549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06462557 560.31549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06462558 560.31549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06462559 560.31549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06462560 560.31555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06462561 560.31555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06462562 560.31555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06462563 560.31555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06462564 560.31561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06462565 560.31561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06462566 560.31561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06462567 560.31561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06462568 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06462569 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06462570 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06462571 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06462572 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06462573 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06462574 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06462575 560.31567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06462576 560.31573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06462577 560.31573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06462578 560.31573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06462579 560.31573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06462580 560.31579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06462581 560.31579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06462582 560.31579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06462583 560.31585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06462584 560.31585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06462585 560.31585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06462586 560.31591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06462587 560.31591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06462588 560.31591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06462589 560.31591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06462590 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06462591 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06462592 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06462593 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06462594 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06462595 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06462596 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06462597 560.31597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06462598 560.31604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06462599 560.31604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06462600 560.31604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06462601 560.31604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06462602 560.31610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06462603 560.31610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06462604 560.31610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06462605 560.31610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06462606 560.31616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06462607 560.31616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06462608 560.31616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06462609 560.31616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06462610 560.31622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06462611 560.31622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06462612 560.31622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06462613 560.31622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06462614 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06462615 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06462616 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06462617 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06462618 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06462619 560.31628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06462620 560.31634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06462621 560.31634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06462622 560.31634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06462623 560.31634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06462624 560.31640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06462625 560.31640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06462626 560.31640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06462627 560.31640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06462628 560.31646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06462629 560.31646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06462630 560.31652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06462631 560.31652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06462632 560.31652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06462633 560.31652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06462634 560.31658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06462635 560.31658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06462636 560.31658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06462637 560.31658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06462638 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06462639 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06462640 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06462641 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06462642 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06462643 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06462644 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06462645 560.31665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06462646 560.31671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06462647 560.31671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06462648 560.31671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06462649 560.31671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06462650 560.31677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06462651 560.31677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06462652 560.31677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06462653 560.31677246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06462654 560.31683350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06462655 560.31683350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06462656 560.31683350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06462657 560.31683350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06462658 560.31689453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06462659 560.31689453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06462660 560.31689453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06462661 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06462662 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06462663 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06462664 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06462665 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06462666 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06462667 560.31695557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06462668 560.31701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06462669 560.31701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06462670 560.31701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06462671 560.31701660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06462672 560.31707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06462673 560.31707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06462674 560.31707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06462675 560.31707764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06462676 560.31713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06462677 560.31713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06462678 560.31713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06462679 560.31713867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06462680 560.31719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06462681 560.31719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06462682 560.31719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06462683 560.31719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06462684 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06462685 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06462686 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06462687 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06462688 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06462689 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06462690 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06462691 560.31726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06462692 560.31732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06462693 560.31732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06462694 560.31732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06462695 560.31732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06462696 560.31738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06462697 560.31738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06462698 560.31738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06462699 560.31738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06462700 560.31744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06462701 560.31744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06462702 560.31744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06462703 560.31744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06462704 560.31750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06462705 560.31750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06462706 560.31750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06462707 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06462708 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06462709 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06462710 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06462711 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06462712 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06462713 560.31756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06462714 560.31762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06462715 560.31762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06462716 560.31762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06462717 560.31762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06462718 560.31768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06462719 560.31768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06462720 560.31768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06462721 560.31768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06462722 560.31774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06462723 560.31774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06462724 560.31774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06462725 560.31774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06462726 560.31781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06462727 560.31781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06462728 560.31781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06462729 560.31781006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06462730 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06462731 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06462732 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06462733 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06462734 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06462735 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06462736 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06462737 560.31787109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06462738 560.31793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06462739 560.31793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06462740 560.31793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06462741 560.31793213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06462742 560.31799316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06462743 560.31799316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06462744 560.31799316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06462745 560.31799316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06462746 560.31805420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06462747 560.31805420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06462748 560.31805420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06462749 560.31811523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06462750 560.31811523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06462751 560.31811523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06462752 560.31817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06462753 560.31817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06462754 560.31817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06462755 560.31817627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06462756 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06462757 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06462758 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06462759 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06462760 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06462761 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06462762 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06462763 560.31823730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06462764 560.31829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06462765 560.31829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06462766 560.31829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06462767 560.31829834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06462768 560.31835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06462769 560.31835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06462770 560.31835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06462771 560.31835938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06462772 560.31842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06462773 560.31842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06462774 560.31842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06462775 560.31842041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06462776 560.31848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06462777 560.31848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06462778 560.31848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06462779 560.31848145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06462780 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06462781 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06462782 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06462783 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06462784 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06462785 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06462786 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06462787 560.31854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06462788 560.31860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06462789 560.31860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06462790 560.31860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06462791 560.31860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06462792 560.31866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06462793 560.31866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06462794 560.31866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06462795 560.31872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06462796 560.31872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06462797 560.31872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06462798 560.31878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06462799 560.31878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06462800 560.31878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06462801 560.31878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06462802 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06462803 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06462804 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06462805 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06462806 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06462807 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06462808 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06462809 560.31884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06462810 560.31890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06462811 560.31890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06462812 560.31890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06462813 560.31890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06462814 560.31896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06462815 560.31896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06462816 560.31896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06462817 560.31896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06462818 560.31903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06462819 560.31903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06462820 560.31903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06462821 560.31909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06462822 560.31909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06462823 560.31909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06462824 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06462825 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06462826 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06462827 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06462828 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06462829 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06462830 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06462831 560.31915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06462832 560.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06462833 560.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06462834 560.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06462835 560.31921387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06462836 560.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06462837 560.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06462838 560.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06462839 560.31927490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06462840 560.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06462841 560.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06462842 560.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06462843 560.31933594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06462844 560.31939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06462845 560.31939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06462846 560.31939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06462847 560.31939697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06462848 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06462849 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06462850 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06462851 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06462852 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06462853 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06462854 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06462855 560.31945801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06462856 560.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06462857 560.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06462858 560.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06462859 560.31951904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06462860 560.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06462861 560.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06462862 560.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06462863 560.31958008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06462864 560.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06462865 560.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06462866 560.31964111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06462867 560.31970215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06462868 560.31970215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06462869 560.31970215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06462870 560.31976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06462871 560.31976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06462872 560.31976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06462873 560.31976318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06462874 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06462875 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06462876 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06462877 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06462878 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06462879 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06462880 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06462881 560.31982422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06462882 560.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06462883 560.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06462884 560.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06462885 560.31988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06462886 560.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06462887 560.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06462888 560.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06462889 560.31994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06462890 560.32000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06462891 560.32000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06462892 560.32000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06462893 560.32000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06462894 560.32006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06462895 560.32006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06462896 560.32006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06462897 560.32006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06462898 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06462899 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06462900 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06462901 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06462902 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06462903 560.32012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06462904 560.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06462905 560.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06462906 560.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06462907 560.32019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06462908 560.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06462909 560.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06462910 560.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06462911 560.32025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06462912 560.32031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06462913 560.32031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06462914 560.32031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06462915 560.32031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06462916 560.32037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06462917 560.32037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06462918 560.32037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06462919 560.32037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06462920 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06462921 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06462922 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06462923 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06462924 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06462925 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06462926 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06462927 560.32043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06462928 560.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06462929 560.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06462930 560.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06462931 560.32049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06462932 560.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06462933 560.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06462934 560.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06462935 560.32055664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06462936 560.32061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06462937 560.32061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06462938 560.32061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06462939 560.32061768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06462940 560.32067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06462941 560.32067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06462942 560.32067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06462943 560.32067871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06462944 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06462945 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06462946 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06462947 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06462948 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06462949 560.32073975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06462950 560.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06462951 560.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06462952 560.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06462953 560.32080078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06462954 560.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06462955 560.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06462956 560.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06462957 560.32086182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06462958 560.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06462959 560.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06462960 560.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06462961 560.32092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06462962 560.32098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06462963 560.32098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06462964 560.32098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06462965 560.32098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06462966 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06462967 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06462968 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06462969 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06462970 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06462971 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06462972 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06462973 560.32104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06462974 560.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06462975 560.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06462976 560.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06462977 560.32110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06462978 560.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06462979 560.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06462980 560.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06462981 560.32116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06462982 560.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06462983 560.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06462984 560.32122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06462985 560.32128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06462986 560.32128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06462987 560.32128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06462988 560.32135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06462989 560.32135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06462990 560.32135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06462991 560.32135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06462992 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06462993 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06462994 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06462995 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06462996 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06462997 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06462998 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06462999 560.32141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06463000 560.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06463001 560.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06463002 560.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06463003 560.32147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06463004 560.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06463005 560.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06463006 560.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06463007 560.32153320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06463008 560.32159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06463009 560.32159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06463010 560.32159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06463011 560.32159424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06463012 560.32165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06463013 560.32165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06463014 560.32165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06463015 560.32165527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06463016 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06463017 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06463018 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06463019 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06463020 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06463021 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06463022 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06463023 560.32171631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06463024 560.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06463025 560.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06463026 560.32177734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06463027 560.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06463028 560.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06463029 560.32183838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06463030 560.32189941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06463031 560.32189941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06463032 560.32189941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06463033 560.32189941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06463034 560.32196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06463035 560.32196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06463036 560.32196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06463037 560.32196045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06463038 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06463039 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06463040 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06463041 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06463042 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06463043 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06463044 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06463045 560.32202148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06463046 560.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06463047 560.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06463048 560.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06463049 560.32208252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06463050 560.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06463051 560.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06463052 560.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06463053 560.32214355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06463054 560.32220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06463055 560.32220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06463056 560.32220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06463057 560.32220459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06463058 560.32226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06463059 560.32226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06463060 560.32226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06463061 560.32226563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06463062 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06463063 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06463064 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06463065 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06463066 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06463067 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06463068 560.32232666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06463069 560.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06463070 560.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06463071 560.32238770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06463072 560.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06463073 560.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06463074 560.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06463075 560.32244873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06463076 560.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06463077 560.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06463078 560.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06463079 560.32250977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06463080 560.32257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06463081 560.32257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06463082 560.32257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06463083 560.32257080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06463084 560.32263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06463085 560.32263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06463086 560.32263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06463087 560.32263184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06463088 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06463089 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06463090 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06463091 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06463092 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06463093 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06463094 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06463095 560.32269287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06463096 560.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06463097 560.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06463098 560.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06463099 560.32275391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06463100 560.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06463101 560.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06463102 560.32281494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06463103 560.32287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06463104 560.32287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06463105 560.32287598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06463106 560.32293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06463107 560.32293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06463108 560.32293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06463109 560.32293701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06463110 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06463111 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06463112 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06463113 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06463114 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06463115 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06463116 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06463117 560.32299805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06463118 560.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06463119 560.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06463120 560.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06463121 560.32305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06463122 560.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06463123 560.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06463124 560.32312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06463125 560.32318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06463126 560.32318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06463127 560.32318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06463128 560.32324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06463129 560.32324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06463130 560.32324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06463131 560.32324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06463132 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06463133 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06463134 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06463135 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06463136 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06463137 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06463138 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06463139 560.32330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06463140 560.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06463141 560.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06463142 560.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06463143 560.32336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06463144 560.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06463145 560.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06463146 560.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06463147 560.32342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06463148 560.32348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06463149 560.32348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06463150 560.32348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06463151 560.32354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06463152 560.32354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06463153 560.32354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06463154 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06463155 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06463156 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06463157 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06463158 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06463159 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06463160 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06463161 560.32360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06463162 560.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06463163 560.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06463164 560.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06463165 560.32366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06463166 560.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06463167 560.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06463168 560.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06463169 560.32373047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06463170 560.32379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06463171 560.32379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06463172 560.32379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06463173 560.32379150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06463174 560.32385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06463175 560.32385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06463176 560.32385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06463177 560.32385254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06463178 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06463179 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06463180 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06463181 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06463182 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06463183 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06463184 560.32391357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06463185 560.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06463186 560.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06463187 560.32397461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06463188 560.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06463189 560.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06463190 560.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06463191 560.32403564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06463192 560.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06463193 560.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06463194 560.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06463195 560.32409668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06463196 560.32415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06463197 560.32415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06463198 560.32415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06463199 560.32415771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06463200 560.32421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06463201 560.32421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06463202 560.32421875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06463203 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06463204 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06463205 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06463206 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06463207 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06463208 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06463209 560.32427979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06463210 560.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06463211 560.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06463212 560.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06463213 560.32434082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06463214 560.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06463215 560.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06463216 560.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06463217 560.32440186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06463218 560.32446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06463219 560.32446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06463220 560.32446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06463221 560.32446289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06463222 560.32452393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06463223 560.32452393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06463224 560.32452393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06463225 560.32452393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06463226 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06463227 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06463228 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06463229 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06463230 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06463231 560.32458496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06463232 560.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06463233 560.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06463234 560.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06463235 560.32464600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06463236 560.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06463237 560.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06463238 560.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06463239 560.32470703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06463240 560.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06463241 560.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06463242 560.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06463243 560.32476807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06463244 560.32482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06463245 560.32482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06463246 560.32482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06463247 560.32482910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06463248 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06463249 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06463250 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06463251 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06463252 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06463253 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06463254 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06463255 560.32489014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06463256 560.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06463257 560.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06463258 560.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06463259 560.32495117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06463260 560.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06463261 560.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06463262 560.32501221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06463263 560.32507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06463264 560.32507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06463265 560.32507324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06463266 560.32513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06463267 560.32513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06463268 560.32513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06463269 560.32513428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06463270 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06463271 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06463272 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06463273 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06463274 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06463275 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06463276 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06463277 560.32519531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06463278 560.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06463279 560.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06463280 560.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06463281 560.32525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06463282 560.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06463283 560.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06463284 560.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06463285 560.32531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06463286 560.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06463287 560.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06463288 560.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06463289 560.32537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06463290 560.32543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06463291 560.32543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06463292 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06463293 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06463294 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06463295 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06463296 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06463297 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06463298 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06463299 560.32550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06463300 560.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06463301 560.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06463302 560.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06463303 560.32556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06463304 560.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06463305 560.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06463306 560.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06463307 560.32562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06463308 560.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06463309 560.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06463310 560.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06463311 560.32568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06463312 560.32574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06463313 560.32574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06463314 560.32574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06463315 560.32574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06463316 560.32580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06463317 560.32580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06463318 560.32580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06463319 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06463320 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06463321 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06463322 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06463323 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06463324 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06463325 560.32586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06463326 560.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06463327 560.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06463328 560.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06463329 560.32592773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06463330 560.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06463331 560.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06463332 560.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06463333 560.32598877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06463334 560.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06463335 560.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06463336 560.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06463337 560.32604980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06463338 560.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06463339 560.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06463340 560.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06463341 560.32611084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06463342 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06463343 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06463344 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06463345 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06463346 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06463347 560.32617188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06463348 560.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06463349 560.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06463350 560.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06463351 560.32623291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06463352 560.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06463353 560.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06463354 560.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06463355 560.32629395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06463356 560.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06463357 560.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06463358 560.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06463359 560.32635498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06463360 560.32641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06463361 560.32641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06463362 560.32641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06463363 560.32641602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06463364 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06463365 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06463366 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06463367 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06463368 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06463369 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06463370 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06463371 560.32647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06463372 560.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06463373 560.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06463374 560.32653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06463375 560.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06463376 560.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06463377 560.32659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06463378 560.32666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06463379 560.32666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06463380 560.32666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06463381 560.32666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06463382 560.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06463383 560.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06463384 560.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06463385 560.32672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06463386 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06463387 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06463388 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06463389 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06463390 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06463391 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06463392 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06463393 560.32678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06463394 560.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06463395 560.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06463396 560.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06463397 560.32684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06463398 560.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06463399 560.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06463400 560.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06463401 560.32690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06463402 560.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06463403 560.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06463404 560.32696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06463405 560.32702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06463406 560.32702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06463407 560.32702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06463408 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06463409 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06463410 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06463411 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06463412 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06463413 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06463414 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06463415 560.32708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06463416 560.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06463417 560.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06463418 560.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06463419 560.32714844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06463420 560.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06463421 560.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06463422 560.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06463423 560.32720947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06463424 560.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06463425 560.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06463426 560.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06463427 560.32727051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06463428 560.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06463429 560.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06463430 560.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06463431 560.32733154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06463432 560.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06463433 560.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06463434 560.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06463435 560.32739258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06463436 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06463437 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06463438 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06463439 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06463440 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06463441 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06463442 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06463443 560.32745361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06463444 560.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06463445 560.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06463446 560.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06463447 560.32751465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06463448 560.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06463449 560.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06463450 560.32757568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06463451 560.32763672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06463452 560.32763672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06463453 560.32763672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06463454 560.32769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06463455 560.32769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06463456 560.32769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06463457 560.32769775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06463458 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06463459 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06463460 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06463461 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06463462 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06463463 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06463464 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06463465 560.32775879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06463466 560.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06463467 560.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06463468 560.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06463469 560.32781982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06463470 560.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06463471 560.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06463472 560.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06463473 560.32788086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06463474 560.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06463475 560.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06463476 560.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06463477 560.32794189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06463478 560.32800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06463479 560.32800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06463480 560.32800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06463481 560.32800293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06463482 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06463483 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06463484 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06463485 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06463486 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06463487 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06463488 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06463489 560.32806396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06463490 560.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06463491 560.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06463492 560.32812500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06463493 560.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06463494 560.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06463495 560.32818604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06463496 560.32824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06463497 560.32824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06463498 560.32824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06463499 560.32824707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06463500 560.32830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06463501 560.32830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06463502 560.32830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06463503 560.32830811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06463504 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06463505 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06463506 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06463507 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06463508 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06463509 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06463510 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06463511 560.32836914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06463512 560.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06463513 560.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06463514 560.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06463515 560.32843018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06463516 560.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06463517 560.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06463518 560.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06463519 560.32849121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06463520 560.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06463521 560.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06463522 560.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06463523 560.32855225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06463524 560.32861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06463525 560.32861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06463526 560.32861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06463527 560.32861328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06463528 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06463529 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06463530 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06463531 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06463532 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06463533 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06463534 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06463535 560.32867432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06463536 560.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06463537 560.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06463538 560.32873535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06463539 560.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06463540 560.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06463541 560.32879639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06463542 560.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06463543 560.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06463544 560.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06463545 560.32885742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06463546 560.32891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06463547 560.32891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06463548 560.32891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06463549 560.32891846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06463550 560.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06463551 560.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06463552 560.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06463553 560.32897949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06463554 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06463555 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06463556 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06463557 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06463558 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06463559 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06463560 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06463561 560.32904053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06463562 560.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06463563 560.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06463564 560.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06463565 560.32910156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06463566 560.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06463567 560.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06463568 560.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06463569 560.32916260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06463570 560.32922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06463571 560.32922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06463572 560.32922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06463573 560.32922363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06463574 560.32928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06463575 560.32928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06463576 560.32928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06463577 560.32928467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06463578 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06463579 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06463580 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06463581 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06463582 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06463583 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06463584 560.32934570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06463585 560.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06463586 560.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06463587 560.32940674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06463588 560.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06463589 560.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06463590 560.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06463591 560.32946777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06463592 560.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06463593 560.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06463594 560.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06463595 560.32952881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06463596 560.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06463597 560.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06463598 560.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06463599 560.32958984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06463600 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06463601 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06463602 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06463603 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06463604 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06463605 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06463606 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06463607 560.32965088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06463608 560.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06463609 560.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06463610 560.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06463611 560.32971191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06463612 560.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06463613 560.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06463614 560.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06463615 560.32977295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06463616 560.32983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06463617 560.32983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06463618 560.32983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06463619 560.32983398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06463620 560.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06463621 560.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06463622 560.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06463623 560.32989502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06463624 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06463625 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06463626 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06463627 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06463628 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06463629 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06463630 560.32995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06463631 560.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06463632 560.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06463633 560.33001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06463634 560.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06463635 560.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06463636 560.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06463637 560.33007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06463638 560.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06463639 560.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06463640 560.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06463641 560.33013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06463642 560.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06463643 560.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06463644 560.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06463645 560.33020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06463646 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06463647 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06463648 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06463649 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06463650 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06463651 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06463652 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06463653 560.33026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06463654 560.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06463655 560.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06463656 560.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06463657 560.33032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06463658 560.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06463659 560.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06463660 560.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06463661 560.33038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06463662 560.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06463663 560.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06463664 560.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06463665 560.33044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06463666 560.33050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06463667 560.33050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06463668 560.33050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06463669 560.33050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06463670 560.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06463671 560.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06463672 560.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06463673 560.33056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06463674 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06463675 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06463676 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06463677 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06463678 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06463679 560.33062744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06463680 560.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06463681 560.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06463682 560.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06463683 560.33068848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06463684 560.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06463685 560.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06463686 560.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06463687 560.33074951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06463688 560.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06463689 560.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06463690 560.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06463691 560.33081055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06463692 560.33087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06463693 560.33087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06463694 560.33087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06463695 560.33087158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06463696 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06463697 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06463698 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06463699 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06463700 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06463701 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06463702 560.33093262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06463703 560.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06463704 560.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06463705 560.33099365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06463706 560.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06463707 560.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06463708 560.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06463709 560.33105469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06463710 560.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06463711 560.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06463712 560.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06463713 560.33111572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06463714 560.33117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06463715 560.33117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06463716 560.33117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06463717 560.33117676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06463718 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06463719 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06463720 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06463721 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06463722 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06463723 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06463724 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06463725 560.33123779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06463726 560.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06463727 560.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06463728 560.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06463729 560.33129883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06463730 560.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06463731 560.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06463732 560.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06463733 560.33135986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06463734 560.33142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06463735 560.33142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06463736 560.33142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06463737 560.33142090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06463738 560.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06463739 560.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06463740 560.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06463741 560.33148193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06463742 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06463743 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06463744 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06463745 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06463746 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06463747 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06463748 560.33154297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06463749 560.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06463750 560.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06463751 560.33160400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06463752 560.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06463753 560.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06463754 560.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06463755 560.33166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06463756 560.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06463757 560.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06463758 560.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06463759 560.33172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06463760 560.33178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06463761 560.33178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06463762 560.33178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06463763 560.33178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06463764 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06463765 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06463766 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06463767 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06463768 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06463769 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06463770 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06463771 560.33184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06463772 560.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06463773 560.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06463774 560.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06463775 560.33190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06463776 560.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06463777 560.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06463778 560.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06463779 560.33197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06463780 560.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06463781 560.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06463782 560.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06463783 560.33203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06463784 560.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06463785 560.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06463786 560.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06463787 560.33209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06463788 560.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06463789 560.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06463790 560.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06463791 560.33215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06463792 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06463793 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06463794 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06463795 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06463796 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06463797 560.33221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06463798 560.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06463799 560.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06463800 560.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06463801 560.33227539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06463802 560.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06463803 560.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06463804 560.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06463805 560.33233643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06463806 560.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06463807 560.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06463808 560.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06463809 560.33239746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06463810 560.33245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06463811 560.33245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06463812 560.33245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06463813 560.33245850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06463814 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06463815 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06463816 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06463817 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06463818 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06463819 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06463820 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06463821 560.33251953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06463822 560.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06463823 560.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06463824 560.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06463825 560.33258057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06463826 560.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06463827 560.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06463828 560.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06463829 560.33264160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06463830 560.33270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06463831 560.33270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06463832 560.33270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06463833 560.33270264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06463834 560.33276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06463835 560.33276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06463836 560.33276367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06463837 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06463838 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06463839 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06463840 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06463841 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06463842 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06463843 560.33282471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06463844 560.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06463845 560.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06463846 560.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06463847 560.33288574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06463848 560.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06463849 560.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06463850 560.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06463851 560.33294678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06463852 560.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06463853 560.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06463854 560.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06463855 560.33300781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06463856 560.33306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06463857 560.33306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06463858 560.33306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06463859 560.33306885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06463860 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06463861 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06463862 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06463863 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06463864 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06463865 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06463866 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06463867 560.33312988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06463868 560.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06463869 560.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06463870 560.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06463871 560.33319092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06463872 560.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06463873 560.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06463874 560.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06463875 560.33325195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06463876 560.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06463877 560.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06463878 560.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06463879 560.33331299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06463880 560.33337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06463881 560.33337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06463882 560.33337402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06463883 560.33343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06463884 560.33343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06463885 560.33343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06463886 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06463887 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06463888 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06463889 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06463890 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06463891 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06463892 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06463893 560.33349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06463894 560.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06463895 560.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06463896 560.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06463897 560.33355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06463898 560.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06463899 560.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06463900 560.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06463901 560.33361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06463902 560.33367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06463903 560.33367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06463904 560.33367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06463905 560.33367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06463906 560.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06463907 560.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06463908 560.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06463909 560.33374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06463910 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06463911 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06463912 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06463913 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06463914 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06463915 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06463916 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06463917 560.33380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06463918 560.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06463919 560.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06463920 560.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06463921 560.33386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06463922 560.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06463923 560.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06463924 560.33392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06463925 560.33398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06463926 560.33398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06463927 560.33398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06463928 560.33404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06463929 560.33404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06463930 560.33404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06463931 560.33404541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06463932 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06463933 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06463934 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06463935 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06463936 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06463937 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06463938 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06463939 560.33410645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06463940 560.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06463941 560.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06463942 560.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06463943 560.33416748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06463944 560.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06463945 560.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06463946 560.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06463947 560.33422852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06463948 560.33428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06463949 560.33428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06463950 560.33428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06463951 560.33428955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06463952 560.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06463953 560.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06463954 560.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06463955 560.33435059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06463956 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06463957 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06463958 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06463959 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06463960 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06463961 560.33441162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06463962 560.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06463963 560.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06463964 560.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06463965 560.33447266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06463966 560.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06463967 560.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06463968 560.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06463969 560.33453369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06463970 560.33459473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06463971 560.33459473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06463972 560.33459473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06463973 560.33459473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06463974 560.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06463975 560.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06463976 560.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06463977 560.33465576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06463978 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06463979 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06463980 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06463981 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06463982 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06463983 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06463984 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06463985 560.33471680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06463986 560.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06463987 560.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06463988 560.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06463989 560.33477783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06463990 560.33483887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06463991 560.33483887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06463992 560.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06463993 560.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06463994 560.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06463995 560.33489990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06463996 560.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06463997 560.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06463998 560.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06463999 560.33496094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06464000 560.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06464001 560.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06464002 560.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06464003 560.33502197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06464004 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06464005 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06464006 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06464007 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06464008 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06464009 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06464010 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06464011 560.33508301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06464012 560.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06464013 560.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06464014 560.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06464015 560.33514404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06464016 560.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06464017 560.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06464018 560.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06464019 560.33520508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06464020 560.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06464021 560.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06464022 560.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06464023 560.33526611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06464024 560.33532715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06464025 560.33532715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06464026 560.33532715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06464027 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06464028 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06464029 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06464030 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06464031 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06464032 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06464033 560.33538818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06464034 560.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06464035 560.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06464036 560.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06464037 560.33544922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06464038 560.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06464039 560.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06464040 560.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06464041 560.33551025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06464042 560.33557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06464043 560.33557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06464044 560.33557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06464045 560.33557129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06464046 560.33563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06464047 560.33563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06464048 560.33563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06464049 560.33563232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06464050 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06464051 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06464052 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06464053 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06464054 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06464055 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06464056 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06464057 560.33569336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06464058 560.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06464059 560.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06464060 560.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06464061 560.33575439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06464062 560.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06464063 560.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06464064 560.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06464065 560.33581543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06464066 560.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06464067 560.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06464068 560.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06464069 560.33587646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06464070 560.33593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06464071 560.33593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06464072 560.33593750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06464073 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06464074 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06464075 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06464076 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06464077 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06464078 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06464079 560.33599854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06464080 560.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06464081 560.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06464082 560.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06464083 560.33605957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06464084 560.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06464085 560.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06464086 560.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06464087 560.33612061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06464088 560.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06464089 560.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06464090 560.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06464091 560.33618164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06464092 560.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06464093 560.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06464094 560.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06464095 560.33624268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06464096 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06464097 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06464098 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06464099 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06464100 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06464101 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06464102 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06464103 560.33630371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06464104 560.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06464105 560.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06464106 560.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06464107 560.33636475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06464108 560.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06464109 560.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06464110 560.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06464111 560.33642578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06464112 560.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06464113 560.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06464114 560.33648682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06464115 560.33654785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06464116 560.33654785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06464117 560.33654785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06464118 560.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06464119 560.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06464120 560.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06464121 560.33660889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06464122 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06464123 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06464124 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06464125 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06464126 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06464127 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06464128 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06464129 560.33666992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06464130 560.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06464131 560.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06464132 560.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06464133 560.33673096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06464134 560.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06464135 560.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06464136 560.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06464137 560.33679199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06464138 560.33685303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06464139 560.33685303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06464140 560.33685303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06464141 560.33685303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06464142 560.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06464143 560.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06464144 560.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06464145 560.33691406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06464146 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06464147 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06464148 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06464149 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06464150 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06464151 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06464152 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06464153 560.33697510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06464154 560.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06464155 560.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06464156 560.33703613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06464157 560.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06464158 560.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06464159 560.33709717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06464160 560.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06464161 560.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06464162 560.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06464163 560.33715820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06464164 560.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06464165 560.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06464166 560.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06464167 560.33721924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06464168 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06464169 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06464170 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06464171 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06464172 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06464173 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06464174 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06464175 560.33728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06464176 560.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06464177 560.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06464178 560.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06464179 560.33734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06464180 560.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06464181 560.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06464182 560.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06464183 560.33740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06464184 560.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06464185 560.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06464186 560.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06464187 560.33746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06464188 560.33752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06464189 560.33752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06464190 560.33752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06464191 560.33752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06464192 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06464193 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06464194 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06464195 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06464196 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06464197 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06464198 560.33758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06464199 560.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06464200 560.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06464201 560.33764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06464202 560.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06464203 560.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06464204 560.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06464205 560.33770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06464206 560.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06464207 560.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06464208 560.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06464209 560.33776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06464210 560.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06464211 560.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06464212 560.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06464213 560.33782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06464214 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06464215 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06464216 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06464217 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06464218 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06464219 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06464220 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06464221 560.33789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06464222 560.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06464223 560.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06464224 560.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06464225 560.33795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06464226 560.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06464227 560.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06464228 560.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06464229 560.33801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06464230 560.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06464231 560.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06464232 560.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06464233 560.33807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06464234 560.33813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06464235 560.33813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06464236 560.33813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06464237 560.33813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06464238 560.33819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06464239 560.33819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06464240 560.33819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06464241 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06464242 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06464243 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06464244 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06464245 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06464246 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06464247 560.33825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06464248 560.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06464249 560.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06464250 560.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06464251 560.33831787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06464252 560.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06464253 560.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06464254 560.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06464255 560.33837891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06464256 560.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06464257 560.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06464258 560.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06464259 560.33843994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06464260 560.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06464261 560.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06464262 560.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06464263 560.33850098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06464264 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06464265 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06464266 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06464267 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06464268 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06464269 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06464270 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06464271 560.33856201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06464272 560.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06464273 560.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06464274 560.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06464275 560.33862305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06464276 560.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06464277 560.33868408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06464278 560.33874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06464279 560.33874512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06464280 560.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06464281 560.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06464282 560.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06464283 560.33880615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06464284 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06464285 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06464286 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06464287 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06464288 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06464289 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06464290 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06464291 560.33886719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06464292 560.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06464293 560.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06464294 560.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06464295 560.33892822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06464296 560.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06464297 560.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06464298 560.33898926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06464299 560.33905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06464300 560.33905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06464301 560.33905029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06464302 560.33911133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06464303 560.33911133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06464304 560.33911133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06464305 560.33911133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06464306 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06464307 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06464308 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06464309 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06464310 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06464311 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06464312 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06464313 560.33917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06464314 560.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06464315 560.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06464316 560.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06464317 560.33923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06464318 560.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06464319 560.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06464320 560.33929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06464321 560.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06464322 560.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06464323 560.33935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06464324 560.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06464325 560.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06464326 560.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06464327 560.33941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06464328 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06464329 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06464330 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06464331 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06464332 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06464333 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06464334 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06464335 560.33947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06464336 560.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06464337 560.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06464338 560.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06464339 560.33953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06464340 560.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06464341 560.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06464342 560.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06464343 560.33959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06464344 560.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06464345 560.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06464346 560.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06464347 560.33966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06464348 560.33972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06464349 560.33972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06464350 560.33972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06464351 560.33972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06464352 560.33978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06464353 560.33978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06464354 560.33978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06464355 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06464356 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06464357 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06464358 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06464359 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06464360 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06464361 560.33984375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06464362 560.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06464363 560.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06464364 560.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06464365 560.33990479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06464366 560.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06464367 560.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06464368 560.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06464369 560.33996582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06464370 560.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06464371 560.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06464372 560.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06464373 560.34002686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06464374 560.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06464375 560.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06464376 560.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06464377 560.34008789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06464378 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06464379 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06464380 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06464381 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06464382 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06464383 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06464384 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06464385 560.34014893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06464386 560.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06464387 560.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06464388 560.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06464389 560.34020996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06464390 560.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06464391 560.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06464392 560.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06464393 560.34027100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06464394 560.34033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06464395 560.34033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06464396 560.34033203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06464397 560.34039307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06464398 560.34039307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06464399 560.34039307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06464400 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06464401 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06464402 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06464403 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06464404 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06464405 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06464406 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06464407 560.34045410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06464408 560.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06464409 560.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06464410 560.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06464411 560.34051514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06464412 560.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06464413 560.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06464414 560.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06464415 560.34057617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06464416 560.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06464417 560.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06464418 560.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06464419 560.34063721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06464420 560.34069824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06464421 560.34069824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06464422 560.34069824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06464423 560.34069824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06464424 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06464425 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06464426 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06464427 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06464428 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06464429 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06464430 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06464431 560.34075928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06464432 560.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06464433 560.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06464434 560.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06464435 560.34082031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06464436 560.34088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06464437 560.34088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06464438 560.34088135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06464439 560.34094238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06464440 560.34094238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06464441 560.34094238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06464442 560.34100342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06464443 560.34100342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06464444 560.34100342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06464445 560.34100342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06464446 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06464447 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06464448 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06464449 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06464450 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06464451 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06464452 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06464453 560.34106445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06464454 560.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06464455 560.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06464456 560.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06464457 560.34112549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06464458 560.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06464459 560.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06464460 560.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06464461 560.34118652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06464462 560.34124756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06464463 560.34124756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06464464 560.34124756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06464465 560.34124756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06464466 560.34130859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06464467 560.34130859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06464468 560.34130859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06464469 560.34130859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06464470 560.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06464471 560.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06464472 560.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06464473 560.34136963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06464474 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06464475 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06464476 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06464477 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06464478 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06464479 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06464480 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06464481 560.34143066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06464482 560.34149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06464483 560.34149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06464484 560.34149170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06464485 560.34155273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06464486 560.34155273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06464487 560.34155273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06464488 560.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06464489 560.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06464490 560.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06464491 560.34161377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06464492 560.34167480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06464493 560.34167480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06464494 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06464495 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06464496 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06464497 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06464498 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06464499 560.34173584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06464500 560.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06464501 560.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06464502 560.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06464503 560.34179688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06464504 560.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06464505 560.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06464506 560.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06464507 560.34185791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06464508 560.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06464509 560.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06464510 560.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06464511 560.34191895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06464512 560.34197998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06464513 560.34197998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06464514 560.34197998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06464515 560.34197998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06464516 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06464517 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06464518 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06464519 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06464520 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06464521 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06464522 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06464523 560.34204102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06464524 560.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06464525 560.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06464526 560.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06464527 560.34210205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06464528 560.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06464529 560.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06464530 560.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06464531 560.34216309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06464532 560.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06464533 560.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06464534 560.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06464535 560.34222412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06464536 560.34228516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06464537 560.34228516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06464538 560.34228516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06464539 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06464540 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06464541 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06464542 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06464543 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06464544 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06464545 560.34234619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06464546 560.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06464547 560.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06464548 560.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06464549 560.34240723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06464550 560.34246826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06464551 560.34246826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06464552 560.34246826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06464553 560.34246826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06464554 560.34252930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06464555 560.34252930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06464556 560.34252930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06464557 560.34252930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06464558 560.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06464559 560.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06464560 560.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06464561 560.34259033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06464562 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06464563 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06464564 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06464565 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06464566 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06464567 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06464568 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06464569 560.34265137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06464570 560.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06464571 560.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06464572 560.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06464573 560.34271240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06464574 560.34277344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06464575 560.34277344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06464576 560.34283447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06464577 560.34283447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06464578 560.34289551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06464579 560.34289551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06464580 560.34289551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06464581 560.34289551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06464582 560.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06464583 560.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06464584 560.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06464585 560.34295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06464586 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06464587 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06464588 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06464589 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06464590 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06464591 560.34301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06464592 560.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06464593 560.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06464594 560.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06464595 560.34307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06464596 560.34313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06464597 560.34313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06464598 560.34313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06464599 560.34313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06464600 560.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06464601 560.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06464602 560.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06464603 560.34320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06464604 560.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06464605 560.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06464606 560.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06464607 560.34326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06464608 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06464609 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06464610 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06464611 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06464612 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06464613 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06464614 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06464615 560.34332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06464616 560.34338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06464617 560.34338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06464618 560.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06464619 560.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06464620 560.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06464621 560.34344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06464622 560.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06464623 560.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06464624 560.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06464625 560.34350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06464626 560.34356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06464627 560.34356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06464628 560.34356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06464629 560.34356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06464630 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06464631 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06464632 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06464633 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06464634 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06464635 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06464636 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06464637 560.34362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06464638 560.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06464639 560.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06464640 560.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06464641 560.34368896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06464642 560.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06464643 560.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06464644 560.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06464645 560.34375000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06464646 560.34381104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06464647 560.34381104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06464648 560.34381104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06464649 560.34387207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06464650 560.34387207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06464651 560.34387207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06464652 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06464653 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06464654 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06464655 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06464656 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06464657 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06464658 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06464659 560.34393311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06464660 560.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06464661 560.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06464662 560.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06464663 560.34399414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06464664 560.34405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06464665 560.34405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06464666 560.34405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06464667 560.34405518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06464668 560.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06464669 560.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06464670 560.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06464671 560.34411621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06464672 560.34417725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06464673 560.34417725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06464674 560.34423828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06464675 560.34423828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06464676 560.34423828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06464677 560.34423828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06464678 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06464679 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06464680 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06464681 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06464682 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06464683 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06464684 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06464685 560.34429932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06464686 560.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06464687 560.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06464688 560.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06464689 560.34436035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06464690 560.34442139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06464691 560.34442139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06464692 560.34442139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06464693 560.34448242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06464694 560.34448242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06464695 560.34448242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06464696 560.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06464697 560.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06464698 560.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06464699 560.34454346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06464700 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06464701 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06464702 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06464703 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06464704 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06464705 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06464706 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06464707 560.34460449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06464708 560.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06464709 560.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06464710 560.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06464711 560.34466553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06464712 560.34472656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06464713 560.34472656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06464714 560.34472656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06464715 560.34472656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06464716 560.34478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06464717 560.34478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06464718 560.34478760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06464719 560.34484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06464720 560.34484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06464721 560.34484863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06464722 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06464723 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06464724 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06464725 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06464726 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06464727 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06464728 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06464729 560.34490967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06464730 560.34497070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06464731 560.34497070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06464732 560.34497070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06464733 560.34497070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06464734 560.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06464735 560.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06464736 560.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06464737 560.34503174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06464738 560.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06464739 560.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06464740 560.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06464741 560.34509277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06464742 560.34515381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06464743 560.34515381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06464744 560.34515381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06464745 560.34515381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06464746 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06464747 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06464748 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06464749 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06464750 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06464751 560.34521484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06464752 560.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06464753 560.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06464754 560.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06464755 560.34527588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06464756 560.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06464757 560.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06464758 560.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06464759 560.34533691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06464760 560.34539795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06464761 560.34539795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06464762 560.34539795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06464763 560.34539795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06464764 560.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06464765 560.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06464766 560.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06464767 560.34545898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06464768 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06464769 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06464770 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06464771 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06464772 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06464773 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06464774 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06464775 560.34552002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06464776 560.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06464777 560.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06464778 560.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06464779 560.34558105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06464780 560.34564209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06464781 560.34564209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06464782 560.34564209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06464783 560.34570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06464784 560.34570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06464785 560.34570313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06464786 560.34576416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06464787 560.34576416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06464788 560.34576416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06464789 560.34576416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06464790 560.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06464791 560.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06464792 560.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06464793 560.34582520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06464794 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06464795 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06464796 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06464797 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06464798 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06464799 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06464800 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06464801 560.34588623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06464802 560.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06464803 560.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06464804 560.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06464805 560.34594727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06464806 560.34600830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06464807 560.34600830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06464808 560.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06464809 560.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06464810 560.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06464811 560.34606934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06464812 560.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06464813 560.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06464814 560.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06464815 560.34613037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06464816 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06464817 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06464818 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06464819 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06464820 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06464821 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06464822 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06464823 560.34619141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06464824 560.34625244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06464825 560.34625244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06464826 560.34625244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06464827 560.34625244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06464828 560.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06464829 560.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06464830 560.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06464831 560.34631348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06464832 560.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06464833 560.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06464834 560.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06464835 560.34637451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06464836 560.34643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06464837 560.34643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06464838 560.34643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06464839 560.34643555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06464840 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06464841 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06464842 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06464843 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06464844 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06464845 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06464846 560.34649658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06464847 560.34655762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06464848 560.34655762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06464849 560.34655762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06464850 560.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06464851 560.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06464852 560.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06464853 560.34661865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06464854 560.34667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06464855 560.34667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06464856 560.34667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06464857 560.34667969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06464858 560.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06464859 560.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06464860 560.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06464861 560.34674072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06464862 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06464863 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06464864 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06464865 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06464866 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06464867 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06464868 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06464869 560.34680176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06464870 560.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06464871 560.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06464872 560.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06464873 560.34686279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06464874 560.34692383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06464875 560.34692383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06464876 560.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06464877 560.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06464878 560.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06464879 560.34698486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06464880 560.34704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06464881 560.34704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06464882 560.34704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06464883 560.34704590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06464884 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06464885 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06464886 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06464887 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06464888 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06464889 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06464890 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06464891 560.34710693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06464892 560.34716797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06464893 560.34716797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06464894 560.34716797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06464895 560.34716797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06464896 560.34722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06464897 560.34722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06464898 560.34722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06464899 560.34722900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06464900 560.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06464901 560.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06464902 560.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06464903 560.34729004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06464904 560.34735107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06464905 560.34735107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06464906 560.34735107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06464907 560.34741211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06464908 560.34741211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06464909 560.34741211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06464910 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06464911 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06464912 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06464913 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06464914 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06464915 560.34747314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06464916 560.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06464917 560.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06464918 560.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06464919 560.34753418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06464920 560.34759521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06464921 560.34759521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06464922 560.34759521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06464923 560.34759521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06464924 560.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06464925 560.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06464926 560.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06464927 560.34765625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06464928 560.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06464929 560.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06464930 560.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06464931 560.34771729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06464932 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06464933 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06464934 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06464935 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06464936 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06464937 560.34777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06464938 560.34783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06464939 560.34783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06464940 560.34783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06464941 560.34783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06464942 560.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06464943 560.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06464944 560.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06464945 560.34790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06464946 560.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06464947 560.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06464948 560.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06464949 560.34796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06464950 560.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06464951 560.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06464952 560.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06464953 560.34802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06464954 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06464955 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06464956 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06464957 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06464958 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06464959 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06464960 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06464961 560.34808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06464962 560.34814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06464963 560.34814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06464964 560.34814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06464965 560.34814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06464966 560.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06464967 560.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06464968 560.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06464969 560.34820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06464970 560.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06464971 560.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06464972 560.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06464973 560.34826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06464974 560.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06464975 560.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06464976 560.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06464977 560.34832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06464978 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06464979 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06464980 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06464981 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06464982 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06464983 560.34838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06464984 560.34844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06464985 560.34844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06464986 560.34844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06464987 560.34844971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06464988 560.34851074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06464989 560.34851074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06464990 560.34851074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06464991 560.34851074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06464992 560.34857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06464993 560.34857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06464994 560.34857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06464995 560.34857178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06464996 560.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06464997 560.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06464998 560.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06464999 560.34863281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06465000 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06465001 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06465002 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06465003 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06465004 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06465005 560.34869385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06465006 560.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06465007 560.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06465008 560.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06465009 560.34875488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06465010 560.34881592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06465011 560.34881592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06465012 560.34881592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06465013 560.34881592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06465014 560.34887695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06465015 560.34887695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06465016 560.34887695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06465017 560.34887695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06465018 560.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06465019 560.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06465020 560.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06465021 560.34893799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06465022 560.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06465023 560.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06465024 560.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06465025 560.34899902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06465026 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06465027 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06465028 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06465029 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06465030 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06465031 560.34906006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06465032 560.34912109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06465033 560.34912109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06465034 560.34912109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06465035 560.34912109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06465036 560.34918213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06465037 560.34918213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06465038 560.34918213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06465039 560.34918213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06465040 560.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06465041 560.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06465042 560.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06465043 560.34924316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06465044 560.34930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06465045 560.34930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06465046 560.34930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06465047 560.34930420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06465048 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06465049 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06465050 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06465051 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06465052 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06465053 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06465054 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06465055 560.34936523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06465056 560.34942627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06465057 560.34942627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06465058 560.34942627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06465059 560.34942627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06465060 560.34948730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06465061 560.34948730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06465062 560.34948730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06465063 560.34948730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06465064 560.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06465065 560.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06465066 560.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06465067 560.34954834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06465068 560.34960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06465069 560.34960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06465070 560.34960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06465071 560.34960938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06465072 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06465073 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06465074 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06465075 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06465076 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06465077 560.34967041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06465078 560.34973145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06465079 560.34973145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06465080 560.34973145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06465081 560.34973145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06465082 560.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06465083 560.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06465084 560.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06465085 560.34979248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06465086 560.34985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06465087 560.34985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06465088 560.34985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06465089 560.34985352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06465090 560.34991455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06465091 560.34991455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06465092 560.34991455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06465093 560.34991455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06465094 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06465095 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06465096 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06465097 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06465098 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06465099 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06465100 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06465101 560.34997559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06465102 560.35003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06465103 560.35003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06465104 560.35003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06465105 560.35003662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06465106 560.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06465107 560.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06465108 560.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06465109 560.35009766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06465110 560.35015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06465111 560.35015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06465112 560.35015869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06465113 560.35021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06465114 560.35021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06465115 560.35021973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06465116 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06465117 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06465118 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06465119 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06465120 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06465121 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06465122 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06465123 560.35028076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06465124 560.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06465125 560.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06465126 560.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06465127 560.35034180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06465128 560.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06465129 560.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06465130 560.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06465131 560.35040283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06465132 560.35046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06465133 560.35046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06465134 560.35046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06465135 560.35046387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06465136 560.35052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06465137 560.35052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06465138 560.35052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06465139 560.35052490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06465140 560.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06465141 560.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06465142 560.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06465143 560.35058594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06465144 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06465145 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06465146 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06465147 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06465148 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06465149 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06465150 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06465151 560.35064697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06465152 560.35070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06465153 560.35070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06465154 560.35070801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06465155 560.35076904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06465156 560.35076904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06465157 560.35076904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06465158 560.35083008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06465159 560.35083008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06465160 560.35083008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06465161 560.35083008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06465162 560.35089111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06465163 560.35089111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06465164 560.35089111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06465165 560.35089111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06465166 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06465167 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06465168 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06465169 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06465170 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06465171 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06465172 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06465173 560.35095215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06465174 560.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06465175 560.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06465176 560.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06465177 560.35101318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06465178 560.35107422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06465179 560.35107422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06465180 560.35107422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06465181 560.35107422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06465182 560.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06465183 560.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06465184 560.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06465185 560.35113525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06465186 560.35119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06465187 560.35119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06465188 560.35119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06465189 560.35119629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06465190 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06465191 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06465192 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06465193 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06465194 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06465195 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06465196 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06465197 560.35125732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06465198 560.35131836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06465199 560.35131836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06465200 560.35131836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06465201 560.35137939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06465202 560.35137939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06465203 560.35137939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06465204 560.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06465205 560.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06465206 560.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06465207 560.35144043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06465208 560.35150146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06465209 560.35150146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06465210 560.35150146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06465211 560.35150146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06465212 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06465213 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06465214 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06465215 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06465216 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06465217 560.35156250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06465218 560.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06465219 560.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06465220 560.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06465221 560.35162354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06465222 560.35168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06465223 560.35168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06465224 560.35168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06465225 560.35168457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06465226 560.35174561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06465227 560.35174561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06465228 560.35174561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06465229 560.35180664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06465230 560.35180664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06465231 560.35180664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06465232 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06465233 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06465234 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06465235 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06465236 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06465237 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06465238 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06465239 560.35186768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06465240 560.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06465241 560.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06465242 560.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06465243 560.35192871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06465244 560.35198975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06465245 560.35198975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06465246 560.35198975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06465247 560.35198975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06465248 560.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06465249 560.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06465250 560.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06465251 560.35205078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06465252 560.35211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06465253 560.35211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06465254 560.35211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06465255 560.35211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06465256 560.35217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06465257 560.35217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06465258 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06465259 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06465260 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06465261 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06465262 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06465263 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06465264 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06465265 560.35223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06465266 560.35229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06465267 560.35229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06465268 560.35229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06465269 560.35235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06465270 560.35235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06465271 560.35235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06465272 560.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06465273 560.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06465274 560.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06465275 560.35241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06465276 560.35247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06465277 560.35247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06465278 560.35247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06465279 560.35247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06465280 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06465281 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06465282 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06465283 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06465284 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06465285 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06465286 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06465287 560.35253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06465288 560.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06465289 560.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06465290 560.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06465291 560.35260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06465292 560.35266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06465293 560.35266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06465294 560.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06465295 560.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06465296 560.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06465297 560.35272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06465298 560.35278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06465299 560.35278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06465300 560.35278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06465301 560.35278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06465302 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06465303 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06465304 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06465305 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06465306 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06465307 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06465308 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06465309 560.35284424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06465310 560.35290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06465311 560.35290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06465312 560.35290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06465313 560.35290527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06465314 560.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06465315 560.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06465316 560.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06465317 560.35296631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06465318 560.35302734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06465319 560.35302734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06465320 560.35302734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06465321 560.35308838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06465322 560.35308838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06465323 560.35308838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06465324 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06465325 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06465326 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06465327 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06465328 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06465329 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06465330 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06465331 560.35314941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06465332 560.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06465333 560.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06465334 560.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06465335 560.35321045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06465336 560.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06465337 560.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06465338 560.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06465339 560.35327148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06465340 560.35333252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06465341 560.35333252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06465342 560.35333252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06465343 560.35333252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06465344 560.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06465345 560.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06465346 560.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06465347 560.35339355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06465348 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06465349 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06465350 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06465351 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06465352 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06465353 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06465354 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06465355 560.35345459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06465356 560.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06465357 560.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06465358 560.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06465359 560.35351563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06465360 560.35357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06465361 560.35357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06465362 560.35357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06465363 560.35357666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06465364 560.35363770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06465365 560.35363770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06465366 560.35363770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06465367 560.35369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06465368 560.35369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06465369 560.35369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06465370 560.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06465371 560.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06465372 560.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06465373 560.35375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06465374 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06465375 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06465376 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06465377 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06465378 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06465379 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06465380 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06465381 560.35382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06465382 560.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06465383 560.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06465384 560.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06465385 560.35388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06465386 560.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06465387 560.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06465388 560.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06465389 560.35394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06465390 560.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06465391 560.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06465392 560.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06465393 560.35400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06465394 560.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06465395 560.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06465396 560.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06465397 560.35406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06465398 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06465399 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06465400 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06465401 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06465402 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06465403 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06465404 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06465405 560.35412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06465406 560.35418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06465407 560.35418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06465408 560.35418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06465409 560.35424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06465410 560.35424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06465411 560.35424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06465412 560.35430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06465413 560.35430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06465414 560.35430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06465415 560.35430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06465416 560.35437012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06465417 560.35437012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06465418 560.35437012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06465419 560.35437012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06465420 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06465421 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06465422 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06465423 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06465424 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06465425 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06465426 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06465427 560.35443115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06465428 560.35449219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06465429 560.35449219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06465430 560.35449219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06465431 560.35449219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06465432 560.35455322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06465433 560.35455322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06465434 560.35455322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06465435 560.35455322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06465436 560.35461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06465437 560.35461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06465438 560.35461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06465439 560.35461426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06465440 560.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06465441 560.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06465442 560.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06465443 560.35467529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06465444 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06465445 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06465446 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06465447 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06465448 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06465449 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06465450 560.35473633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06465451 560.35479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06465452 560.35479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06465453 560.35479736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06465454 560.35485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06465455 560.35485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06465456 560.35485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06465457 560.35485840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06465458 560.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06465459 560.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06465460 560.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06465461 560.35491943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06465462 560.35498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06465463 560.35498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06465464 560.35498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06465465 560.35498047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06465466 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06465467 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06465468 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06465469 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06465470 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06465471 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06465472 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06465473 560.35504150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06465474 560.35510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06465475 560.35510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06465476 560.35510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06465477 560.35510254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06465478 560.35516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06465479 560.35516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06465480 560.35516357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06465481 560.35522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06465482 560.35522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06465483 560.35522461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06465484 560.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06465485 560.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06465486 560.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06465487 560.35528564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06465488 560.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06465489 560.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06465490 560.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06465491 560.35534668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06465492 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06465493 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06465494 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06465495 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06465496 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06465497 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06465498 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06465499 560.35540771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06465500 560.35546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06465501 560.35546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06465502 560.35546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06465503 560.35546875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06465504 560.35552979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06465505 560.35552979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06465506 560.35552979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06465507 560.35552979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06465508 560.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06465509 560.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06465510 560.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06465511 560.35559082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06465512 560.35565186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06465513 560.35565186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06465514 560.35565186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06465515 560.35565186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06465516 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06465517 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06465518 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06465519 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06465520 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06465521 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06465522 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06465523 560.35571289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06465524 560.35577393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06465525 560.35577393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06465526 560.35583496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06465527 560.35583496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06465528 560.35583496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06465529 560.35583496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06465530 560.35589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06465531 560.35589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06465532 560.35589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06465533 560.35589600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06465534 560.35595703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06465535 560.35595703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06465536 560.35595703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06465537 560.35595703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06465538 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06465539 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06465540 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06465541 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06465542 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06465543 560.35601807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06465544 560.35607910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06465545 560.35607910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06465546 560.35607910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06465547 560.35607910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06465548 560.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06465549 560.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06465550 560.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06465551 560.35614014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06465552 560.35620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06465553 560.35620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06465554 560.35620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06465555 560.35620117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06465556 560.35626221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06465557 560.35626221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06465558 560.35626221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06465559 560.35626221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06465560 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06465561 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06465562 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06465563 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06465564 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06465565 560.35632324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06465566 560.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06465567 560.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06465568 560.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06465569 560.35638428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06465570 560.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06465571 560.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06465572 560.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06465573 560.35644531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06465574 560.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06465575 560.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06465576 560.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06465577 560.35650635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06465578 560.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06465579 560.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06465580 560.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06465581 560.35656738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06465582 560.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06465583 560.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06465584 560.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06465585 560.35662842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06465586 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06465587 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06465588 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06465589 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06465590 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06465591 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06465592 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06465593 560.35668945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06465594 560.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06465595 560.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06465596 560.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06465597 560.35675049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06465598 560.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06465599 560.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06465600 560.35681152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06465601 560.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06465602 560.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06465603 560.35687256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06465604 560.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06465605 560.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06465606 560.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06465607 560.35693359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06465608 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06465609 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06465610 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06465611 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06465612 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06465613 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06465614 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06465615 560.35699463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06465616 560.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06465617 560.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06465618 560.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06465619 560.35705566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06465620 560.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06465621 560.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06465622 560.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06465623 560.35711670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06465624 560.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06465625 560.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06465626 560.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06465627 560.35717773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06465628 560.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06465629 560.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06465630 560.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06465631 560.35723877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06465632 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06465633 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06465634 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06465635 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06465636 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06465637 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06465638 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06465639 560.35729980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06465640 560.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06465641 560.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06465642 560.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06465643 560.35736084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06465644 560.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06465645 560.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06465646 560.35742188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06465647 560.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06465648 560.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06465649 560.35748291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06465650 560.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06465651 560.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06465652 560.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06465653 560.35754395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06465654 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06465655 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06465656 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06465657 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06465658 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06465659 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06465660 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06465661 560.35760498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06465662 560.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06465663 560.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06465664 560.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06465665 560.35766602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06465666 560.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06465667 560.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06465668 560.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06465669 560.35772705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06465670 560.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06465671 560.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06465672 560.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06465673 560.35778809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06465674 560.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06465675 560.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06465676 560.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06465677 560.35784912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06465678 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06465679 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06465680 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06465681 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06465682 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06465683 560.35791016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06465684 560.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06465685 560.35797119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06465686 560.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06465687 560.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06465688 560.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06465689 560.35803223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06465690 560.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06465691 560.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06465692 560.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06465693 560.35809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06465694 560.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06465695 560.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06465696 560.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06465697 560.35815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06465698 560.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06465699 560.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06465700 560.35821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06465701 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06465702 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06465703 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06465704 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06465705 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06465706 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06465707 560.35827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06465708 560.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06465709 560.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06465710 560.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06465711 560.35833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06465712 560.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06465713 560.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06465714 560.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06465715 560.35839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06465716 560.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06465717 560.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06465718 560.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06465719 560.35845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06465720 560.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06465721 560.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06465722 560.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06465723 560.35852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06465724 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06465725 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06465726 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06465727 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06465728 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06465729 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06465730 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06465731 560.35858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06465732 560.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06465733 560.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06465734 560.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06465735 560.35864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06465736 560.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06465737 560.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06465738 560.35870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06465739 560.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06465740 560.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06465741 560.35876465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06465742 560.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06465743 560.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06465744 560.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06465745 560.35882568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06465746 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06465747 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06465748 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06465749 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06465750 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06465751 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06465752 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06465753 560.35888672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06465754 560.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06465755 560.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06465756 560.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06465757 560.35894775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06465758 560.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06465759 560.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06465760 560.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06465761 560.35900879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06465762 560.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06465763 560.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06465764 560.35906982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06465765 560.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06465766 560.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06465767 560.35913086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06465768 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06465769 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06465770 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06465771 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06465772 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06465773 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06465774 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06465775 560.35919189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06465776 560.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06465777 560.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06465778 560.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06465779 560.35925293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06465780 560.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06465781 560.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06465782 560.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06465783 560.35931396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06465784 560.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06465785 560.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06465786 560.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06465787 560.35937500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06465788 560.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06465789 560.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06465790 560.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06465791 560.35943604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06465792 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06465793 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06465794 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06465795 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06465796 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06465797 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06465798 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06465799 560.35949707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06465800 560.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06465801 560.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06465802 560.35955811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06465803 560.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06465804 560.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06465805 560.35961914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06465806 560.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06465807 560.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06465808 560.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06465809 560.35968018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06465810 560.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06465811 560.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06465812 560.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06465813 560.35974121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06465814 560.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06465815 560.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06465816 560.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06465817 560.35980225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06465818 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06465819 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06465820 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06465821 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06465822 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06465823 560.35986328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06465824 560.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06465825 560.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06465826 560.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06465827 560.35992432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06465828 560.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06465829 560.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06465830 560.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06465831 560.35998535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06465832 560.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06465833 560.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06465834 560.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06465835 560.36004639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06465836 560.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06465837 560.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06465838 560.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06465839 560.36010742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06465840 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06465841 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06465842 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06465843 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06465844 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06465845 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06465846 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06465847 560.36016846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06465848 560.36022949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06465849 560.36022949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06465850 560.36022949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06465851 560.36029053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06465852 560.36029053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06465853 560.36029053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06465854 560.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06465855 560.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06465856 560.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06465857 560.36035156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06465858 560.36041260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06465859 560.36041260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06465860 560.36041260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06465861 560.36041260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06465862 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06465863 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06465864 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06465865 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06465866 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06465867 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06465868 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06465869 560.36047363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06465870 560.36053467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06465871 560.36053467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06465872 560.36053467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06465873 560.36059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06465874 560.36059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06465875 560.36059570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06465876 560.36065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06465877 560.36065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06465878 560.36065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06465879 560.36065674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06465880 560.36071777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06465881 560.36071777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06465882 560.36071777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06465883 560.36071777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06465884 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06465885 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06465886 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06465887 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06465888 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06465889 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06465890 560.36077881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06465891 560.36083984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06465892 560.36083984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06465893 560.36083984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06465894 560.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06465895 560.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06465896 560.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06465897 560.36090088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06465898 560.36096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06465899 560.36096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06465900 560.36096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06465901 560.36096191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06465902 560.36102295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06465903 560.36102295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06465904 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06465905 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06465906 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06465907 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06465908 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06465909 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06465910 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06465911 560.36108398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06465912 560.36114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06465913 560.36114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06465914 560.36114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06465915 560.36114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06465916 560.36120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06465917 560.36120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06465918 560.36126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06465919 560.36126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06465920 560.36126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06465921 560.36126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06465922 560.36132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06465923 560.36132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06465924 560.36132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06465925 560.36132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06465926 560.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06465927 560.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06465928 560.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06465929 560.36138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06465930 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06465931 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06465932 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06465933 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06465934 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06465935 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06465936 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06465937 560.36145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06465938 560.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06465939 560.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06465940 560.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06465941 560.36151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06465942 560.36157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06465943 560.36157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06465944 560.36157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06465945 560.36157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06465946 560.36163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06465947 560.36163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06465948 560.36163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06465949 560.36169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06465950 560.36169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06465951 560.36169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06465952 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06465953 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06465954 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06465955 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06465956 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06465957 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06465958 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06465959 560.36175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06465960 560.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06465961 560.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06465962 560.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06465963 560.36181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06465964 560.36187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06465965 560.36187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06465966 560.36187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06465967 560.36187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06465968 560.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06465969 560.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06465970 560.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06465971 560.36193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06465972 560.36199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06465973 560.36199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06465974 560.36199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06465975 560.36199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06465976 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06465977 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06465978 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06465979 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06465980 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06465981 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06465982 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06465983 560.36206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06465984 560.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06465985 560.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06465986 560.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06465987 560.36212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06465988 560.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06465989 560.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06465990 560.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06465991 560.36218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06465992 560.36224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06465993 560.36224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06465994 560.36224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06465995 560.36230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06465996 560.36230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06465997 560.36230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06465998 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06465999 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06466000 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06466001 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06466002 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06466003 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06466004 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06466005 560.36236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06466006 560.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06466007 560.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06466008 560.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06466009 560.36242676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06466010 560.36248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06466011 560.36248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06466012 560.36248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06466013 560.36248779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06466014 560.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06466015 560.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06466016 560.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06466017 560.36254883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06466018 560.36260986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06466019 560.36260986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06466020 560.36260986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06466021 560.36260986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06466022 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06466023 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06466024 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06466025 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06466026 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06466027 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06466028 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06466029 560.36267090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06466030 560.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06466031 560.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06466032 560.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06466033 560.36273193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06466034 560.36279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06466035 560.36279297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06466036 560.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06466037 560.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06466038 560.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06466039 560.36285400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06466040 560.36291504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06466041 560.36291504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06466042 560.36291504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06466043 560.36291504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06466044 560.36297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06466045 560.36297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06466046 560.36297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06466047 560.36297607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06466048 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06466049 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06466050 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06466051 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06466052 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06466053 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06466054 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06466055 560.36303711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06466056 560.36309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06466057 560.36309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06466058 560.36309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06466059 560.36309814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06466060 560.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06466061 560.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06466062 560.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06466063 560.36315918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06466064 560.36322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06466065 560.36322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06466066 560.36322021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06466067 560.36328125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06466068 560.36328125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06466069 560.36328125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06466070 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06466071 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06466072 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06466073 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06466074 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06466075 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06466076 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06466077 560.36334229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06466078 560.36340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06466079 560.36340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06466080 560.36340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06466081 560.36340332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06466082 560.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06466083 560.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06466084 560.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06466085 560.36346436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06466086 560.36352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06466087 560.36352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06466088 560.36352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06466089 560.36352539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06466090 560.36358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06466091 560.36358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06466092 560.36358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06466093 560.36358643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06466094 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06466095 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06466096 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06466097 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06466098 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06466099 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06466100 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06466101 560.36364746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06466102 560.36370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06466103 560.36370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06466104 560.36370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06466105 560.36370850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06466106 560.36376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06466107 560.36376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06466108 560.36376953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06466109 560.36383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06466110 560.36383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06466111 560.36383057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06466112 560.36389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06466113 560.36389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06466114 560.36389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06466115 560.36389160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06466116 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06466117 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06466118 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06466119 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06466120 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06466121 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06466122 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06466123 560.36395264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06466124 560.36401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06466125 560.36401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06466126 560.36401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06466127 560.36401367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06466128 560.36407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06466129 560.36407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06466130 560.36407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06466131 560.36407471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06466132 560.36413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06466133 560.36413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06466134 560.36413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06466135 560.36413574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06466136 560.36419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06466137 560.36419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06466138 560.36419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06466139 560.36419678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06466140 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06466141 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06466142 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06466143 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06466144 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06466145 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06466146 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06466147 560.36425781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06466148 560.36431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06466149 560.36431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06466150 560.36431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06466151 560.36431885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06466152 560.36437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06466153 560.36437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06466154 560.36437988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06466155 560.36444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06466156 560.36444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06466157 560.36444092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06466158 560.36450195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06466159 560.36450195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06466160 560.36450195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06466161 560.36450195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06466162 560.36456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06466163 560.36456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06466164 560.36456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06466165 560.36456299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06466166 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06466167 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06466168 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06466169 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06466170 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06466171 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06466172 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06466173 560.36462402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06466174 560.36468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06466175 560.36468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06466176 560.36468506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06466177 560.36474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06466178 560.36474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06466179 560.36474609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06466180 560.36480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06466181 560.36480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06466182 560.36480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06466183 560.36480713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06466184 560.36486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06466185 560.36486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06466186 560.36486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06466187 560.36486816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06466188 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06466189 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06466190 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06466191 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06466192 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06466193 560.36492920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06466194 560.36499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06466195 560.36499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06466196 560.36499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06466197 560.36499023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06466198 560.36505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06466199 560.36505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06466200 560.36505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06466201 560.36505127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06466202 560.36511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06466203 560.36511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06466204 560.36511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06466205 560.36511230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06466206 560.36517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06466207 560.36517334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06466208 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06466209 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06466210 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06466211 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06466212 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06466213 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06466214 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06466215 560.36523438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06466216 560.36529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06466217 560.36529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06466218 560.36529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06466219 560.36529541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06466220 560.36535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06466221 560.36535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06466222 560.36535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06466223 560.36535645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06466224 560.36541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06466225 560.36541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06466226 560.36541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06466227 560.36541748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06466228 560.36547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06466229 560.36547852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06466230 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06466231 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06466232 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06466233 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06466234 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06466235 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06466236 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06466237 560.36553955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06466238 560.36560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06466239 560.36560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06466240 560.36560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06466241 560.36560059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06466242 560.36566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06466243 560.36566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06466244 560.36566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06466245 560.36566162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06466246 560.36572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06466247 560.36572266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06466248 560.36578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06466249 560.36578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06466250 560.36578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06466251 560.36578369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06466252 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06466253 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06466254 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06466255 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06466256 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06466257 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06466258 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06466259 560.36584473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06466260 560.36590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06466261 560.36590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06466262 560.36590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06466263 560.36590576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06466264 560.36596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06466265 560.36596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06466266 560.36596680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06466267 560.36602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06466268 560.36602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06466269 560.36602783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06466270 560.36608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06466271 560.36608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06466272 560.36608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06466273 560.36608887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06466274 560.36614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06466275 560.36614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06466276 560.36614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06466277 560.36614990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06466278 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06466279 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06466280 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06466281 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06466282 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06466283 560.36621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06466284 560.36627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06466285 560.36627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06466286 560.36627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06466287 560.36633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06466288 560.36633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06466289 560.36633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06466290 560.36639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06466291 560.36639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06466292 560.36639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06466293 560.36639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06466294 560.36645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06466295 560.36645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06466296 560.36645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06466297 560.36645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06466298 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06466299 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06466300 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06466301 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06466302 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06466303 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06466304 560.36651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06466305 560.36657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06466306 560.36657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06466307 560.36657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06466308 560.36663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06466309 560.36663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06466310 560.36663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06466311 560.36663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06466312 560.36669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06466313 560.36669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06466314 560.36669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06466315 560.36669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06466316 560.36676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06466317 560.36676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06466318 560.36676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06466319 560.36676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06466320 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06466321 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06466322 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06466323 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06466324 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06466325 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06466326 560.36682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06466327 560.36688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06466328 560.36688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06466329 560.36688232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06466330 560.36694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06466331 560.36694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06466332 560.36694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06466333 560.36694336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06466334 560.36700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06466335 560.36700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06466336 560.36700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06466337 560.36700439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06466338 560.36706543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06466339 560.36706543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06466340 560.36706543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06466341 560.36706543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06466342 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06466343 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06466344 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06466345 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06466346 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06466347 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06466348 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06466349 560.36712646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06466350 560.36718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06466351 560.36718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06466352 560.36718750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06466353 560.36724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06466354 560.36724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06466355 560.36724854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06466356 560.36730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06466357 560.36730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06466358 560.36730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06466359 560.36730957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06466360 560.36737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06466361 560.36737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06466362 560.36737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06466363 560.36737061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06466364 560.36743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06466365 560.36743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06466366 560.36743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06466367 560.36743164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06466368 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -06466369 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -06466370 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -06466371 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -06466372 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -06466373 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -06466374 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -06466375 560.36749268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -06466376 560.36755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -06466377 560.36755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -06466378 560.36755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -06466379 560.36755371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -06466380 560.36761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -06466381 560.36761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -06466382 560.36761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -06466383 560.36761475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -06466384 560.36767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -06466385 560.36767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -06466386 560.36767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -06466387 560.36767578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -06466388 560.36773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -06466389 560.36773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -06466390 560.36773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -06466391 560.36773682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -06466392 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -06466393 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -06466394 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -06466395 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -06466396 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -06466397 560.36779785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -06466398 560.36785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -06466399 560.36785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -06466400 560.36785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -06466401 560.36785889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -06466402 560.36791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -06466403 560.36791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -06466404 560.36791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -06466405 560.36791992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -06466406 560.36798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -06466407 560.36798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -06466408 560.36798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -06466409 560.36798096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -06466410 560.36804199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -06466411 560.36804199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -06466412 560.36804199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -06466413 560.36804199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -06466414 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -06466415 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -06466416 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -06466417 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -06466418 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -06466419 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -06466420 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -06466421 560.36810303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -06471124 560.43206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12898 -06471125 560.43206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12898 -06471126 560.43212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a8 -06471127 560.43212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a8 -06471128 560.43212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b8 -06471129 560.43218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b8 -06471130 560.43218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c8 -06471131 560.43218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c8 -06471132 560.43225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d8 -06471133 560.43225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d8 -06471134 560.43225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -06471135 560.43225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -06471136 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -06471137 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -06471138 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -06471139 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -06471140 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -06471141 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -06471142 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -06471143 560.43231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -06471144 560.43237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -06471145 560.43237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -06471146 560.43237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -06471147 560.43237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -06471148 560.43243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -06471149 560.43243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -06471150 560.43243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -06471151 560.43243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -06471152 560.43249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -06471153 560.43249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12978 -06471154 560.43249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -06471155 560.43249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12988 -06471156 560.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -06471157 560.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12998 -06471158 560.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -06471159 560.43255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a8 -06471160 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -06471161 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b8 -06471162 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -06471163 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c8 -06471164 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -06471165 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d8 -06471166 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -06471167 560.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e8 -06473820 560.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cc8 -06473821 560.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -06473822 560.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cd8 -06473823 560.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -06473824 560.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17ce8 -06473825 560.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -06473826 560.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17cf8 -06473827 560.46960449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06473828 560.46966553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06473829 560.46966553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -06473830 560.46966553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d08 -06473831 560.46966553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -06473832 560.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d18 -06473833 560.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -06473834 560.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d28 -06473835 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -06473836 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d38 -06473837 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -06473838 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d48 -06473839 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -06473840 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d58 -06473841 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -06473842 560.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d68 -06473843 560.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -06473844 560.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d78 -06473845 560.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -06473846 560.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d88 -06473847 560.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -06473848 560.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d98 -06473849 560.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -06473850 560.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17da8 -06473851 560.46997070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -06473852 560.46997070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17db8 -06473853 560.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -06473854 560.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -06473855 560.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -06473856 560.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -06473857 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -06473858 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -06473859 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -06473860 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -06473861 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -06473862 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -06473863 560.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e18 -06476197 560.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -06476198 560.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -06476199 560.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -06476200 560.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -06476201 560.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -06476202 560.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -06476203 560.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -06476204 560.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -06476205 560.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -06476206 560.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -06476207 560.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -06476208 560.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -06476209 560.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -06476210 560.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -06476211 560.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -06476212 560.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -06476213 560.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -06476214 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -06476215 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -06476216 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -06476217 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -06476218 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -06476219 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -06476220 560.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -06476221 560.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -06476222 560.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -06476223 560.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -06476224 560.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -06476225 560.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -06476226 560.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -06476227 560.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -06476228 560.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -06476229 560.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -06476230 560.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -06476231 560.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -06476232 560.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -06476233 560.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -06476234 560.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -06476235 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -06476236 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -06476237 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c848 -06476238 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c848 -06476239 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c858 -06476240 560.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c858 -06478624 560.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x212d8 -06478625 560.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e8 -06478626 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x212e8 -06478627 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f8 -06478628 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x212f8 -06478629 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21308 -06478630 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21308 -06478631 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21318 -06478632 560.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21318 -06478633 560.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21328 -06478634 560.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21328 -06478635 560.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21338 -06478636 560.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21338 -06478637 560.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21348 -06478638 560.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21348 -06478639 560.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21358 -06478640 560.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21358 -06478641 560.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21368 -06478642 560.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21368 -06478643 560.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21378 -06478644 560.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21378 -06478645 560.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21388 -06478646 560.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21388 -06478647 560.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21398 -06478648 560.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21398 -06478649 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a8 -06478650 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213a8 -06478651 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b8 -06478652 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213b8 -06478653 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c8 -06478654 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213c8 -06478655 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d8 -06478656 560.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213d8 -06478657 560.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e8 -06478658 560.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213e8 -06478659 560.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f8 -06478660 560.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x213f8 -06478661 560.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21408 -06478662 560.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21408 -06478663 560.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21418 -06478664 560.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21418 -06478665 560.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21428 -06478666 560.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21428 -06478667 560.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21438 -06481027 560.56854248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df8 -06481028 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25df8 -06481029 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e08 -06481030 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e08 -06481031 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e18 -06481032 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e18 -06481033 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e28 -06481034 560.56860352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e28 -06481035 560.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e38 -06481036 560.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e38 -06481037 560.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e48 -06481038 560.56866455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e48 -06481039 560.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e58 -06481040 560.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e58 -06481041 560.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e68 -06481042 560.56872559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e68 -06481043 560.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e78 -06481044 560.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e78 -06481045 560.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e88 -06481046 560.56878662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e88 -06481047 560.56884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e98 -06481048 560.56884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e98 -06481049 560.56884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea8 -06481050 560.56884766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ea8 -06481051 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb8 -06481052 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25eb8 -06481053 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec8 -06481054 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ec8 -06481055 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed8 -06481056 560.56890869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ed8 -06481057 560.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee8 -06481058 560.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ee8 -06481059 560.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef8 -06481060 560.56896973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ef8 -06481061 560.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -06481062 560.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -06481063 560.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -06481064 560.56903076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -06481065 560.56909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -06481066 560.56909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -06481067 560.56909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -06481068 560.56909180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -06481069 560.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -06481070 560.56915283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -06483489 560.60223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae8 -06483490 560.60223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aae8 -06483491 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf8 -06483492 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aaf8 -06483493 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab08 -06483494 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab08 -06483495 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab18 -06483496 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab18 -06483497 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab28 -06483498 560.60229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab28 -06483499 560.60235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab38 -06483500 560.60235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab38 -06483501 560.60235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab48 -06483502 560.60235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab48 -06483503 560.60241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab58 -06483504 560.60241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab58 -06483505 560.60241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab68 -06483506 560.60241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab68 -06483507 560.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab78 -06483508 560.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab78 -06483509 560.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab88 -06483510 560.60247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab88 -06483511 560.60253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab98 -06483512 560.60253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab98 -06483513 560.60253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba8 -06483514 560.60253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aba8 -06483515 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb8 -06483516 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abb8 -06483517 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc8 -06483518 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abc8 -06483519 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd8 -06483520 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abd8 -06483521 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe8 -06483522 560.60260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abe8 -06483523 560.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf8 -06483524 560.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2abf8 -06483525 560.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac08 -06483526 560.60266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac08 -06483527 560.60272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac18 -06483528 560.60272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac18 -06483529 560.60272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac28 -06483530 560.60278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac28 -06483531 560.60278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac38 -06483532 560.60278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac38 -06485889 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e8 -06485890 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5e8 -06485891 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f8 -06485892 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f5f8 -06485893 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f608 -06485894 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f608 -06485895 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f618 -06485896 560.63500977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f618 -06485897 560.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f628 -06485898 560.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f628 -06485899 560.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f638 -06485900 560.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f638 -06485901 560.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f648 -06485902 560.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f648 -06485903 560.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f658 -06485904 560.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f658 -06485905 560.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f668 -06485906 560.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f668 -06485907 560.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f678 -06485908 560.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f678 -06485909 560.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f688 -06485910 560.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f688 -06485911 560.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f698 -06485912 560.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f698 -06485913 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a8 -06485914 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6a8 -06485915 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b8 -06485916 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6b8 -06485917 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c8 -06485918 560.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6c8 -06485919 560.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d8 -06485920 560.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6d8 -06485921 560.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e8 -06485922 560.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6e8 -06485923 560.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f8 -06485924 560.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f6f8 -06485925 560.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f708 -06485926 560.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f708 -06485927 560.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f718 -06485928 560.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f718 -06485929 560.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f728 -06485930 560.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f728 -06485931 560.63555908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f738 -06485932 560.63555908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f738 -06488245 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f88 -06488246 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f88 -06488247 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f98 -06488248 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f98 -06488249 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa8 -06488250 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa8 -06488251 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb8 -06488252 560.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb8 -06488253 560.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc8 -06488254 560.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc8 -06488255 560.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd8 -06488256 560.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd8 -06488257 560.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe8 -06488258 560.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe8 -06488259 560.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff8 -06488260 560.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff8 -06488261 560.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34008 -06488262 560.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34008 -06488263 560.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34018 -06488264 560.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34018 -06488265 560.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34028 -06488266 560.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34028 -06488267 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34038 -06488268 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34038 -06488269 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34048 -06488270 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34048 -06488271 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34058 -06488272 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34058 -06488273 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34068 -06488274 560.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34068 -06488275 560.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34078 -06488276 560.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34078 -06488277 560.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34088 -06488278 560.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34088 -06488279 560.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34098 -06488280 560.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34098 -06488281 560.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a8 -06488282 560.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340a8 -06488283 560.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b8 -06488284 560.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340b8 -06488285 560.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c8 -06488286 560.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340c8 -06488287 560.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d8 -06488288 560.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x340d8 -06490683 560.70141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb8 -06490684 560.70141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb8 -06490685 560.70141602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc8 -06490686 560.70147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc8 -06490687 560.70147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd8 -06490688 560.70147705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd8 -06490689 560.70153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -06490690 560.70153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -06490691 560.70153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -06490692 560.70153809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -06490693 560.70159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c08 -06490694 560.70159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c08 -06490695 560.70159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c18 -06490696 560.70159912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c18 -06490697 560.70166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c28 -06490698 560.70166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c28 -06490699 560.70166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c38 -06490700 560.70166016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c38 -06490701 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c48 -06490702 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c48 -06490703 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c58 -06490704 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c58 -06490705 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c68 -06490706 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c68 -06490707 560.70172119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c78 -06490708 560.70178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c78 -06490709 560.70178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c88 -06490710 560.70178223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c88 -06490711 560.70184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c98 -06490712 560.70184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c98 -06490713 560.70184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca8 -06490714 560.70184326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ca8 -06490715 560.70190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb8 -06490716 560.70190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cb8 -06490717 560.70190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc8 -06490718 560.70190430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cc8 -06490719 560.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd8 -06490720 560.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cd8 -06490721 560.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce8 -06490722 560.70196533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ce8 -06490723 560.70202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf8 -06490724 560.70202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38cf8 -06490725 560.70202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d08 -06490726 560.70202637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d08 -06492891 560.73199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -06492892 560.73199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -06492893 560.73205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -06492894 560.73205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -06492895 560.73205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -06492896 560.73205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -06492897 560.73211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -06492898 560.73211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -06492899 560.73211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -06492900 560.73211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -06492901 560.73217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -06492902 560.73217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -06492903 560.73217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -06492904 560.73217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -06492905 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -06492906 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -06492907 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -06492908 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -06492909 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -06492910 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -06492911 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -06492912 560.73223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -06492913 560.73229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -06492914 560.73229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -06492915 560.73229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -06492916 560.73229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -06492917 560.73236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -06492918 560.73236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -06492919 560.73236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -06492920 560.73242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -06492921 560.73242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -06492922 560.73242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -06492923 560.73248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -06492924 560.73248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -06492925 560.73248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -06492926 560.73248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -06492927 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -06492928 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -06492929 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -06492930 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -06492931 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -06492932 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1f8 -06492933 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -06492934 560.73254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d208 -06504043 561.95788574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06504044 561.95794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06504045 561.95794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06504046 561.95794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06504047 561.95800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06504048 561.95800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06504049 561.95806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06504050 561.95806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06504051 561.95806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06504052 561.95806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06504053 561.95812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06504054 561.95812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06504055 561.95812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06504056 561.95812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06504057 561.95819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06504058 561.95819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06504059 561.95825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06504060 561.95825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06504061 561.95831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06504062 561.95831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06504063 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06504064 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06504065 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06504066 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06504067 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06504068 561.95837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06504069 561.95843506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06504070 561.95843506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06504071 561.95849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06504072 561.95849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06504073 561.95855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06504074 561.95855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06504075 561.95855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06504076 561.95861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06504077 561.95861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06504078 561.95861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06504079 561.95867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06504080 561.95867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06504081 561.95874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06504082 561.95874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06504083 561.95874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06504084 561.95874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06504085 561.95880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06504086 561.95880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06504087 561.95886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06504088 561.95886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06504089 561.95892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06504090 561.95892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06504091 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06504092 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06504093 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06504094 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06504095 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06504096 561.95898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06504097 561.95904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06504098 561.95904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06504099 561.95910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06504100 561.95910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06504101 561.95916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06504102 561.95916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06504103 561.95916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06504104 561.95922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06504105 561.95922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06504106 561.95922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06504107 561.95928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06504108 561.95928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06504109 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06504110 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06504111 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06504112 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06504113 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06504114 561.95935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06504115 561.95941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06504116 561.95941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06504117 561.95947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06504118 561.95947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06504119 561.95953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06504120 561.95953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06504121 561.95959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06504122 561.95959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06504123 561.95959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06504124 561.95959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06504125 561.95965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06504126 561.95965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06504127 561.95965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06504128 561.95965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06504129 561.95971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06504130 561.95971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06504131 561.95977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06504132 561.95977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06504133 561.95983887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06504134 561.95983887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06504135 561.95989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06504136 561.95989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06504137 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06504138 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06504139 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06504140 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06504141 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06504142 561.95996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06504143 561.96002197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06504144 561.96002197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06504145 561.96008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06504146 561.96008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06504147 561.96014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06504148 561.96014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06504149 561.96020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06504150 561.96020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06504151 561.96020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06504152 561.96020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06504153 561.96026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06504154 561.96026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06504155 561.96026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06504156 561.96026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06504157 561.96032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06504158 561.96032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06504159 561.96032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06504160 561.96038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06504161 561.96038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06504162 561.96038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06504163 561.96044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06504164 561.96044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06504165 561.96051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06504166 561.96051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06504167 561.96057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06504168 561.96057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06504169 561.96057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06504170 561.96057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06504171 561.96063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06504172 561.96063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06504173 561.96069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06504174 561.96069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06504175 561.96075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06504176 561.96075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06504177 561.96081543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06504178 561.96081543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06504179 561.96087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06504180 561.96087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06504181 561.96087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06504182 561.96087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06504183 561.96093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06504184 561.96093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06504185 561.96093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06504186 561.96093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06504187 561.96099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06504188 561.96099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06504189 561.96105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06504190 561.96105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06504191 561.96105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06504192 561.96105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06504193 561.96112061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06504194 561.96112061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06504195 561.96118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06504196 561.96118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06504197 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06504198 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06504199 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06504200 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06504201 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06504202 561.96124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06504203 561.96130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06504204 561.96130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06504205 561.96136475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06504206 561.96136475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06504207 561.96142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06504208 561.96142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06504209 561.96142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06504210 561.96142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06504211 561.96148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06504212 561.96148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06504213 561.96154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06504214 561.96154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06504215 561.96154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06504216 561.96154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06504217 561.96160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06504218 561.96160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06504219 561.96160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06504220 561.96166992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06504221 561.96173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06504222 561.96173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06504223 561.96173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06504224 561.96179199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06504225 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06504226 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06504227 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06504228 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06504229 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06504230 561.96185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06504231 561.96191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06504232 561.96191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06504233 561.96197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06504234 561.96197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06504235 561.96203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06504236 561.96203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06504237 561.96203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06504238 561.96203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06504239 561.96209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06504240 561.96209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06504241 561.96215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06504242 561.96215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06504243 561.96221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06504244 561.96221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06504245 561.96221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06504246 561.96221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06504247 561.96221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06504248 561.96228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06504249 561.96228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06504250 561.96228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06504251 561.96234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06504252 561.96234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06504253 561.96240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06504254 561.96240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06504255 561.96240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06504256 561.96240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06504257 561.96246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06504258 561.96246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06504259 561.96246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06504260 561.96246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06504261 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06504262 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06504263 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06504264 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06504265 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06504266 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06504267 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06504268 561.96252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06504269 561.96258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06504270 561.96258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06504271 561.96264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06504272 561.96270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06504273 561.96270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06504274 561.96270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06504275 561.96276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06504276 561.96276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06504277 561.96276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06504278 561.96276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06504279 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06504280 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06504281 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06504282 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06504283 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06504284 561.96282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06504285 561.96289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06504286 561.96289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06504287 561.96289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06504288 561.96289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06504289 561.96295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06504290 561.96295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06504291 561.96295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06504292 561.96295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06504293 561.96301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06504294 561.96301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06504295 561.96301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06504296 561.96301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06504297 561.96307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06504298 561.96307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06504299 561.96307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06504300 561.96307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06504301 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06504302 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06504303 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06504304 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06504305 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06504306 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06504307 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06504308 561.96313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06504309 561.96319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06504310 561.96319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06504311 561.96319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06504312 561.96319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06504313 561.96325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06504314 561.96325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06504315 561.96331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06504316 561.96331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06504317 561.96331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06504318 561.96331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06504319 561.96337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06504320 561.96337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06504321 561.96337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06504322 561.96337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06504323 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06504324 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06504325 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06504326 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06504327 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06504328 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06504329 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06504330 561.96343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06504331 561.96350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06504332 561.96350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06504333 561.96350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06504334 561.96350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06504335 561.96356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06504336 561.96356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06504337 561.96356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06504338 561.96356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06504339 561.96362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06504340 561.96362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06504341 561.96368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06504342 561.96368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06504343 561.96374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06504344 561.96374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06504345 561.96374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06504346 561.96374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06504347 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06504348 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06504349 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06504350 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06504351 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06504352 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06504353 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06504354 561.96380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06504355 561.96386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06504356 561.96386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06504357 561.96386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06504358 561.96386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06504359 561.96392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06504360 561.96392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06504361 561.96398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06504362 561.96398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06504363 561.96398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06504364 561.96398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06504365 561.96405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06504366 561.96405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06504367 561.96405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06504368 561.96405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06504369 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06504370 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06504371 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06504372 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06504373 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06504374 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06504375 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06504376 561.96411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06504377 561.96417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06504378 561.96417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06504379 561.96417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06504380 561.96417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06504381 561.96423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06504382 561.96423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06504383 561.96423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06504384 561.96429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06504385 561.96429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06504386 561.96429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06504387 561.96435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06504388 561.96435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06504389 561.96435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06504390 561.96435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06504391 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06504392 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06504393 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06504394 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06504395 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06504396 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06504397 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06504398 561.96441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06504399 561.96447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06504400 561.96447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06504401 561.96447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06504402 561.96447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06504403 561.96453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06504404 561.96453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06504405 561.96453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06504406 561.96459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06504407 561.96459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06504408 561.96459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06504409 561.96466064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06504410 561.96466064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06504411 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06504412 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06504413 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06504414 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06504415 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06504416 561.96472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06504417 561.96478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06504418 561.96478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06504419 561.96478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06504420 561.96478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06504421 561.96484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06504422 561.96484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06504423 561.96484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06504424 561.96484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06504425 561.96490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06504426 561.96490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06504427 561.96490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06504428 561.96490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06504429 561.96496582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06504430 561.96496582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06504431 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06504432 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06504433 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06504434 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06504435 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06504436 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06504437 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06504438 561.96502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06504439 561.96508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06504440 561.96508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06504441 561.96508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06504442 561.96508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06504443 561.96514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06504444 561.96514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06504445 561.96514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06504446 561.96514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06504447 561.96520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06504448 561.96520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06504449 561.96520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06504450 561.96520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06504451 561.96527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06504452 561.96527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06504453 561.96533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06504454 561.96533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06504455 561.96533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06504456 561.96533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06504457 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06504458 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06504459 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06504460 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06504461 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06504462 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06504463 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06504464 561.96539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06504465 561.96545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06504466 561.96545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06504467 561.96545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06504468 561.96551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06504469 561.96551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06504470 561.96551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06504471 561.96557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06504472 561.96557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06504473 561.96557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06504474 561.96557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06504475 561.96563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06504476 561.96563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06504477 561.96563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06504478 561.96563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06504479 561.96569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06504480 561.96569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06504481 561.96582031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06504482 561.96582031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06504483 561.96588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06504484 561.96588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06504485 561.96588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06504486 561.96588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06504487 561.96594238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06504488 561.96594238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06504489 561.96594238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06504490 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06504491 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06504492 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06504493 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06504494 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06504495 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06504496 561.96600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06504497 561.96606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06504498 561.96606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06504499 561.96606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06504500 561.96606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06504501 561.96612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06504502 561.96612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06504503 561.96612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06504504 561.96612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06504505 561.96618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06504506 561.96618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06504507 561.96618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06504508 561.96618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06504509 561.96624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06504510 561.96624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06504511 561.96624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06504512 561.96624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06504513 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06504514 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06504515 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06504516 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06504517 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06504518 561.96630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06504519 561.96636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06504520 561.96636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06504521 561.96636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06504522 561.96636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06504523 561.96643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06504524 561.96643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06504525 561.96643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06504526 561.96643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06504527 561.96649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06504528 561.96649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06504529 561.96649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06504530 561.96649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06504531 561.96655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06504532 561.96655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06504533 561.96655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06504534 561.96655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06504535 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06504536 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06504537 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06504538 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06504539 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06504540 561.96661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06504541 561.96667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06504542 561.96667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06504543 561.96667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06504544 561.96667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06504545 561.96673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06504546 561.96673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06504547 561.96673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06504548 561.96673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06504549 561.96679688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06504550 561.96679688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06504551 561.96679688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06504552 561.96679688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06504553 561.96685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06504554 561.96685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06504555 561.96691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06504556 561.96691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06504557 561.96691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06504558 561.96691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06504559 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06504560 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06504561 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06504562 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06504563 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06504564 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06504565 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06504566 561.96697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06504567 561.96704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06504568 561.96704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06504569 561.96704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06504570 561.96704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06504571 561.96710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06504572 561.96710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06504573 561.96710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06504574 561.96710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06504575 561.96716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06504576 561.96716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06504577 561.96722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06504578 561.96722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06504579 561.96722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06504580 561.96722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06504581 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06504582 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06504583 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06504584 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06504585 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06504586 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06504587 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06504588 561.96728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06504589 561.96734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06504590 561.96734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06504591 561.96734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06504592 561.96734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06504593 561.96740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06504594 561.96740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06504595 561.96740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06504596 561.96740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06504597 561.96746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06504598 561.96746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06504599 561.96746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06504600 561.96746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06504601 561.96752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06504602 561.96752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06504603 561.96752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06504604 561.96752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06504605 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06504606 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06504607 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06504608 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06504609 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06504610 561.96759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06504611 561.96765137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06504612 561.96765137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06504613 561.96771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06504614 561.96771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06504615 561.96771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06504616 561.96771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06504617 561.96777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06504618 561.96777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06504619 561.96777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06504620 561.96777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06504621 561.96783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06504622 561.96783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06504623 561.96783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06504624 561.96783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06504625 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06504626 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06504627 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06504628 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06504629 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06504630 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06504631 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06504632 561.96789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06504633 561.96795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06504634 561.96795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06504635 561.96795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06504636 561.96795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06504637 561.96801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06504638 561.96801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06504639 561.96807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06504640 561.96807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06504641 561.96807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06504642 561.96807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06504643 561.96813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06504644 561.96813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06504645 561.96813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06504646 561.96813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06504647 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06504648 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06504649 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06504650 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06504651 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06504652 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06504653 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06504654 561.96820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06504655 561.96826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06504656 561.96826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06504657 561.96826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06504658 561.96826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06504659 561.96832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06504660 561.96832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06504661 561.96838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06504662 561.96838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06504663 561.96838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06504664 561.96838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06504665 561.96844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06504666 561.96844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06504667 561.96844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06504668 561.96844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06504669 561.96850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06504670 561.96850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06504671 561.96850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06504672 561.96850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06504673 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06504674 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06504675 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06504676 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06504677 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06504678 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06504679 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06504680 561.96856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06504681 561.96862793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06504682 561.96862793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06504683 561.96868896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06504684 561.96868896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06504685 561.96868896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06504686 561.96868896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06504687 561.96875000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06504688 561.96875000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06504689 561.96875000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06504690 561.96875000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06504691 561.96881104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06504692 561.96881104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06504693 561.96881104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06504694 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06504695 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06504696 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06504697 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06504698 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06504699 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06504700 561.96887207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06504701 561.96893311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06504702 561.96893311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06504703 561.96893311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06504704 561.96893311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06504705 561.96899414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06504706 561.96899414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06504707 561.96899414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06504708 561.96899414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06504709 561.96905518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06504710 561.96905518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06504711 561.96905518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06504712 561.96905518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06504713 561.96911621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06504714 561.96911621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06504715 561.96911621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06504716 561.96911621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06504717 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06504718 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06504719 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06504720 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06504721 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06504722 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06504723 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06504724 561.96917725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06504725 561.96923828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06504726 561.96923828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06504727 561.96923828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06504728 561.96923828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06504729 561.96929932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06504730 561.96929932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06504731 561.96929932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06504732 561.96929932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06504733 561.96936035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06504734 561.96936035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06504735 561.96936035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06504736 561.96936035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06504737 561.96942139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06504738 561.96942139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06504739 561.96942139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06504740 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06504741 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06504742 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06504743 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06504744 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06504745 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06504746 561.96948242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06504747 561.96954346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06504748 561.96954346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06504749 561.96954346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06504750 561.96954346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06504751 561.96960449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06504752 561.96960449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06504753 561.96978760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06504754 561.96978760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06504755 561.96978760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06504756 561.96984863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06504757 561.96984863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06504758 561.96984863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06504759 561.96990967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06504760 561.96990967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06504761 561.96997070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06504762 561.96997070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06504763 561.96997070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06504764 561.96997070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06504765 561.97003174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06504766 561.97003174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06504767 561.97003174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06504768 561.97003174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06504769 561.97009277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06504770 561.97009277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06504771 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06504772 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06504773 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06504774 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06504775 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06504776 561.97015381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06504777 561.97021484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06504778 561.97021484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06504779 561.97021484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06504780 561.97021484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06504781 561.97027588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06504782 561.97027588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06504783 561.97027588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06504784 561.97027588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06504785 561.97033691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06504786 561.97033691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06504787 561.97033691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06504788 561.97033691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06504789 561.97039795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06504790 561.97039795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06504791 561.97039795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06504792 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06504793 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06504794 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06504795 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06504796 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06504797 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06504798 561.97045898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06504799 561.97052002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06504800 561.97052002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06504801 561.97052002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06504802 561.97052002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06504803 561.97058105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06504804 561.97058105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06504805 561.97058105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06504806 561.97058105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06504807 561.97064209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06504808 561.97064209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06504809 561.97070313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06504810 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06504811 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06504812 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06504813 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06504814 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06504815 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06504816 561.97076416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06504817 561.97082520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06504818 561.97082520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06504819 561.97082520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06504820 561.97082520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06504821 561.97088623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06504822 561.97088623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06504823 561.97088623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06504824 561.97088623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06504825 561.97094727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06504826 561.97094727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06504827 561.97094727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06504828 561.97100830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06504829 561.97100830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06504830 561.97100830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06504831 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06504832 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06504833 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06504834 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06504835 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06504836 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06504837 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06504838 561.97106934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06504839 561.97113037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06504840 561.97113037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06504841 561.97113037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06504842 561.97113037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06504843 561.97119141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06504844 561.97119141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06504845 561.97119141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06504846 561.97119141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06504847 561.97125244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06504848 561.97125244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06504849 561.97125244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06504850 561.97131348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06504851 561.97131348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06504852 561.97131348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06504853 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06504854 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06504855 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06504856 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06504857 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06504858 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06504859 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06504860 561.97137451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06504861 561.97143555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06504862 561.97143555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06504863 561.97143555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06504864 561.97143555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06504865 561.97149658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06504866 561.97149658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06504867 561.97149658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06504868 561.97149658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06504869 561.97155762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06504870 561.97155762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06504871 561.97155762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06504872 561.97155762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06504873 561.97161865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06504874 561.97161865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06504875 561.97167969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06504876 561.97167969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06504877 561.97174072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06504878 561.97174072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06504879 561.97174072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06504880 561.97174072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06504881 561.97180176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06504882 561.97180176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06504883 561.97186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06504884 561.97186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06504885 561.97186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06504886 561.97186279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06504887 561.97192383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06504888 561.97192383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06504889 561.97192383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06504890 561.97192383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06504891 561.97198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06504892 561.97198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06504893 561.97198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06504894 561.97198486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06504895 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06504896 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06504897 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06504898 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06504899 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06504900 561.97204590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06504901 561.97210693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06504902 561.97210693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06504903 561.97210693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06504904 561.97210693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06504905 561.97216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06504906 561.97216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06504907 561.97216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06504908 561.97216797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06504909 561.97222900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06504910 561.97222900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06504911 561.97222900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06504912 561.97222900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06504913 561.97229004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06504914 561.97229004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06504915 561.97229004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06504916 561.97229004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06504917 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06504918 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06504919 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06504920 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06504921 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06504922 561.97235107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06504923 561.97241211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06504924 561.97241211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06504925 561.97241211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06504926 561.97241211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06504927 561.97247314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06504928 561.97247314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06504929 561.97247314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06504930 561.97247314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06504931 561.97253418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06504932 561.97253418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06504933 561.97253418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06504934 561.97253418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06504935 561.97259521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06504936 561.97259521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06504937 561.97259521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06504938 561.97259521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06504939 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06504940 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06504941 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06504942 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06504943 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06504944 561.97265625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06504945 561.97271729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06504946 561.97271729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06504947 561.97271729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06504948 561.97271729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06504949 561.97277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06504950 561.97277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06504951 561.97277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06504952 561.97277832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06504953 561.97283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06504954 561.97283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06504955 561.97283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06504956 561.97283936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06504957 561.97290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06504958 561.97290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06504959 561.97290039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06504960 561.97296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06504961 561.97296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06504962 561.97296143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06504963 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06504964 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06504965 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06504966 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06504967 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06504968 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06504969 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06504970 561.97302246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06504971 561.97308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06504972 561.97308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06504973 561.97308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06504974 561.97308350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06504975 561.97314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06504976 561.97314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06504977 561.97314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06504978 561.97314453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06504979 561.97320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06504980 561.97320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06504981 561.97320557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06504982 561.97326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06504983 561.97326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06504984 561.97326660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06504985 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06504986 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06504987 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06504988 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06504989 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06504990 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06504991 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06504992 561.97332764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06504993 561.97338867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06504994 561.97338867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06504995 561.97338867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06504996 561.97338867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06504997 561.97344971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06504998 561.97344971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06504999 561.97344971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06505000 561.97344971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06505001 561.97351074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06505002 561.97351074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06505003 561.97351074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06505004 561.97351074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06505005 561.97357178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06505006 561.97357178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06505007 561.97363281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06505008 561.97363281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06505009 561.97363281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06505010 561.97363281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06505011 561.97369385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06505012 561.97369385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06505013 561.97369385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06505014 561.97369385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06505015 561.97375488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06505016 561.97375488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06505017 561.97375488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06505018 561.97375488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06505019 561.97381592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06505020 561.97381592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06505021 561.97381592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06505022 561.97381592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06505023 561.97387695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06505024 561.97387695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06505025 561.97387695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06505026 561.97387695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06505027 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06505028 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06505029 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06505030 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06505031 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06505032 561.97393799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06505033 561.97399902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06505034 561.97399902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06505035 561.97399902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06505036 561.97399902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06505037 561.97406006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06505038 561.97406006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06505039 561.97406006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06505040 561.97406006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06505041 561.97412109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06505042 561.97412109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06505043 561.97412109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06505044 561.97412109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06505045 561.97418213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06505046 561.97418213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06505047 561.97418213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06505048 561.97418213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06505049 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06505050 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06505051 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06505052 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06505053 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06505054 561.97424316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06505055 561.97430420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06505056 561.97430420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06505057 561.97430420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06505058 561.97430420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06505059 561.97436523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06505060 561.97436523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06505061 561.97436523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06505062 561.97436523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06505063 561.97442627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06505064 561.97442627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06505065 561.97442627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06505066 561.97442627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06505067 561.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06505068 561.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06505069 561.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06505070 561.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06505071 561.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06505072 561.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06505073 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06505074 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06505075 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06505076 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06505077 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06505078 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06505079 561.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06505080 561.97467041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06505081 561.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06505082 561.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06505083 561.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06505084 561.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06505085 561.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06505086 561.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06505087 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06505088 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06505089 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06505090 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06505091 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06505092 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06505093 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06505094 561.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06505095 561.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06505096 561.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06505097 561.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06505098 561.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06505181 561.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06505182 561.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06505183 561.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06505184 561.97631836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06505185 561.97637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06505186 561.97637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06505187 561.97637939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06505188 561.97644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06505189 561.97644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06505190 561.97644043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06505191 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06505192 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06505193 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06505194 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06505195 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06505196 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06505197 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06505198 561.97650146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06505199 561.97656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06505200 561.97656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06505201 561.97656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06505202 561.97656250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06505203 561.97662354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06505204 561.97668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06505205 561.97668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06505206 561.97668457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06505207 561.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06505208 561.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06505209 561.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06505210 561.97674561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06505211 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06505212 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06505213 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06505214 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06505215 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06505216 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06505217 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06505218 561.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06505219 561.97686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06505220 561.97686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06505221 561.97686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06505222 561.97686768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06505223 561.97692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06505224 561.97692871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06509567 562.00897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -06509568 562.00897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06509569 562.00897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -06509570 562.00897217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06509571 562.00903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -06509572 562.00903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06509573 562.00903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -06509574 562.00903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06509575 562.00903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -06509576 562.00903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06509577 562.00903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -06509578 562.00903320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06509579 562.00909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -06509580 562.00909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06509581 562.00909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -06509582 562.00909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06509583 562.00909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -06509584 562.00909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06509585 562.00909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -06509586 562.00909424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06509587 562.00915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -06509588 562.00915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06509589 562.00915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -06509590 562.00915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06509591 562.00915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -06509592 562.00915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06509593 562.00915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -06509594 562.00915527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06509595 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -06509596 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06509597 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -06509598 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06509599 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -06509600 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06509601 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -06509602 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06509603 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -06509604 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06509605 562.00921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -06509606 562.00921631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06509607 562.00927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -06509608 562.00927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06509609 562.00927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -06509610 562.00927734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06513745 562.03942871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -06513746 562.03942871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -06513747 562.03942871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9660 -06513748 562.03942871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -06513749 562.03948975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -06513750 562.03948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -06513751 562.03948975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9670 -06513752 562.03948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -06513753 562.03948975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -06513754 562.03948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -06513755 562.03948975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9680 -06513756 562.03948975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -06513757 562.03955078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -06513758 562.03955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -06513759 562.03955078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9690 -06513760 562.03955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -06513761 562.03955078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -06513762 562.03955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -06513763 562.03955078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a0 -06513764 562.03955078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -06513765 562.03961182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -06513766 562.03961182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b0 -06513767 562.03961182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -06513768 562.03961182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -06513769 562.03961182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -06513770 562.03961182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c0 -06513771 562.03967285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -06513772 562.03967285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -06513773 562.03967285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -06513774 562.03967285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d0 -06513775 562.03967285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -06513776 562.03967285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e0 -06513777 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -06513778 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -06513779 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -06513780 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f0 -06513781 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -06513782 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -06513783 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -06513784 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9700 -06513785 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -06513786 562.03973389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -06513787 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -06513788 562.03973389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x9710 -06518098 562.07122803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -06518099 562.07122803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc28 -06518100 562.07122803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb90 -06518101 562.07122803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc38 -06518102 562.07122803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -06518103 562.07122803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc38 -06518104 562.07122803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdba0 -06518105 562.07128906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc48 -06518106 562.07128906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -06518107 562.07128906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc48 -06518108 562.07128906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbb0 -06518109 562.07128906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc58 -06518110 562.07128906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc58 -06518111 562.07128906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -06518112 562.07128906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbc0 -06518113 562.07135010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc68 -06518114 562.07135010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc68 -06518115 562.07135010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -06518116 562.07135010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbd0 -06518117 562.07135010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc78 -06518118 562.07141113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc78 -06518119 562.07141113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -06518120 562.07141113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbe0 -06518121 562.07141113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc88 -06518122 562.07141113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc88 -06518123 562.07141113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -06518124 562.07141113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdbf0 -06518125 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc98 -06518126 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfc98 -06518127 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -06518128 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc00 -06518129 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca8 -06518130 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfca8 -06518131 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -06518132 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc10 -06518133 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb8 -06518134 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcb8 -06518135 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -06518136 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc20 -06518137 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc8 -06518138 562.07147217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcc8 -06518139 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -06518140 562.07147217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc30 -06518141 562.07153320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xfcd8 -06523098 562.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -06523099 562.10809326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x149d8 -06523100 562.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -06523101 562.10809326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -06523102 562.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -06523103 562.10809326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x149e8 -06523104 562.10809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -06523105 562.10815430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -06523106 562.10815430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -06523107 562.10815430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x149f8 -06523108 562.10815430 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -06523109 562.10821533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -06523110 562.10821533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -06523111 562.10821533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a08 -06523112 562.10821533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -06523113 562.10821533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -06523114 562.10821533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -06523115 562.10821533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a18 -06523116 562.10821533 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -06523117 562.10827637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -06523118 562.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -06523119 562.10827637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a28 -06523120 562.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -06523121 562.10827637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -06523122 562.10827637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a38 -06523123 562.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -06523124 562.10827637 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -06523125 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -06523126 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a48 -06523127 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -06523128 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -06523129 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -06523130 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a58 -06523131 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -06523132 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a68 -06523133 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -06523134 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a68 -06523135 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -06523136 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a78 -06523137 562.10833740 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -06523138 562.10833740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a78 -06523139 562.10839844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -06523140 562.10839844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a88 -06523141 562.10839844 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -06527341 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b38 -06527342 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -06527343 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b38 -06527344 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d60 -06527345 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -06527346 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -06527347 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -06527348 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d70 -06527349 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -06527350 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -06527351 562.13885498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -06527352 562.13885498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d80 -06527353 562.13891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -06527354 562.13891602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -06527355 562.13891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -06527356 562.13891602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d90 -06527357 562.13891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b78 -06527358 562.13891602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -06527359 562.13891602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b78 -06527360 562.13891602 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16da0 -06527361 562.13897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b88 -06527362 562.13897705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -06527363 562.13897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b88 -06527364 562.13897705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16db0 -06527365 562.13897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b98 -06527366 562.13897705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -06527367 562.13897705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b98 -06527368 562.13897705 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dc0 -06527369 562.13903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba8 -06527370 562.13903809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -06527371 562.13903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba8 -06527372 562.13903809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16dd0 -06527373 562.13903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb8 -06527374 562.13903809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -06527375 562.13903809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb8 -06527376 562.13903809 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16de0 -06527377 562.13909912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc8 -06527378 562.13909912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -06527379 562.13909912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc8 -06527380 562.13909912 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16df0 -06527381 562.13916016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd8 -06527382 562.13916016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -06527383 562.13916016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd8 -06527384 562.13916016 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e00 -06531647 562.16979980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -06531648 562.16979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -06531649 562.16979980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -06531650 562.16979980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a0 -06531651 562.16986084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -06531652 562.16986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -06531653 562.16986084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -06531654 562.16986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b0 -06531655 562.16986084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -06531656 562.16986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -06531657 562.16986084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -06531658 562.16986084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c0 -06531659 562.16992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -06531660 562.16992188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -06531661 562.16992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -06531662 562.16992188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d0 -06531663 562.16992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -06531664 562.16992188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -06531665 562.16992188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -06531666 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e0 -06531667 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -06531668 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -06531669 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -06531670 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f0 -06531671 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -06531672 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -06531673 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -06531674 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b200 -06531675 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -06531676 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -06531677 562.16998291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -06531678 562.16998291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b210 -06531679 562.17004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -06531680 562.17004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -06531681 562.17004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -06531682 562.17004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b220 -06531683 562.17004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -06531684 562.17004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -06531685 562.17004395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -06531686 562.17004395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b230 -06531687 562.17010498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce28 -06531688 562.17010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -06531689 562.17010498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce28 -06531690 562.17010498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b240 -06535841 562.20001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e58 -06535842 562.20001221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -06535843 562.20001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e58 -06535844 562.20001221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3e0 -06535845 562.20001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e68 -06535846 562.20001221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -06535847 562.20001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e68 -06535848 562.20001221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f3f0 -06535849 562.20007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e78 -06535850 562.20007324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -06535851 562.20007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e78 -06535852 562.20007324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f400 -06535853 562.20007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e88 -06535854 562.20007324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -06535855 562.20013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e88 -06535856 562.20013428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f410 -06535857 562.20013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e98 -06535858 562.20013428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -06535859 562.20013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e98 -06535860 562.20013428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f420 -06535861 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea8 -06535862 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -06535863 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ea8 -06535864 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f430 -06535865 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb8 -06535866 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -06535867 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20eb8 -06535868 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f440 -06535869 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec8 -06535870 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -06535871 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ec8 -06535872 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f450 -06535873 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed8 -06535874 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -06535875 562.20019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ed8 -06535876 562.20019531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f460 -06535877 562.20025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee8 -06535878 562.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -06535879 562.20025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ee8 -06535880 562.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f470 -06535881 562.20025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef8 -06535882 562.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -06535883 562.20025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ef8 -06535884 562.20025635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f480 -06540093 562.23138428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -06540094 562.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -06540095 562.23138428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23630 -06540096 562.23138428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -06540097 562.23144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -06540098 562.23144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23640 -06540099 562.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -06540100 562.23144531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -06540101 562.23144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -06540102 562.23144531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23650 -06540103 562.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -06540104 562.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -06540105 562.23150635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -06540106 562.23150635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23660 -06540107 562.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -06540108 562.23150635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -06540109 562.23156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -06540110 562.23156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23670 -06540111 562.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -06540112 562.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -06540113 562.23156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -06540114 562.23156738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23680 -06540115 562.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -06540116 562.23156738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -06540117 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -06540118 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x23690 -06540119 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -06540120 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -06540121 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -06540122 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236a0 -06540123 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -06540124 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -06540125 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -06540126 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236b0 -06540127 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -06540128 562.23162842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -06540129 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -06540130 562.23162842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236c0 -06540131 562.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -06540132 562.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -06540133 562.23168945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -06540134 562.23168945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x236d0 -06540135 562.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -06540136 562.23168945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -06567693 562.43164063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -06567694 562.43164063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -06567695 562.43164063 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -06567696 562.43164063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb68 -06567697 562.43170166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -06567698 562.43170166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -06567699 562.43170166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -06567700 562.43170166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb78 -06567701 562.43170166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -06567702 562.43170166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -06567703 562.43170166 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -06567704 562.43170166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb88 -06567705 562.43176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -06567706 562.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -06567707 562.43176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -06567708 562.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb98 -06567709 562.43176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -06567710 562.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -06567711 562.43176270 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -06567712 562.43176270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -06567713 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -06567714 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -06567715 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -06567716 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -06567717 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -06567718 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -06567719 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -06567720 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -06567721 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -06567722 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -06567723 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -06567724 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -06567725 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -06567726 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -06567727 562.43182373 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -06567728 562.43182373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -06567729 562.43188477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -06567730 562.43188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -06567731 562.43188477 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -06567732 562.43188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -06567733 562.43194580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -06567734 562.43194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -06567735 562.43194580 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -06567736 562.43194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -06572217 562.46514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -06572218 562.46514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c8 -06572219 562.46514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43230 -06572220 562.46514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440c8 -06572221 562.46514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -06572222 562.46514893 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43240 -06572223 562.46514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d8 -06572224 562.46514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440d8 -06572225 562.46520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -06572226 562.46520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43250 -06572227 562.46520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e8 -06572228 562.46520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440e8 -06572229 562.46520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -06572230 562.46520996 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43260 -06572231 562.46520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -06572232 562.46520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x440f8 -06572233 562.46527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -06572234 562.46527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43270 -06572235 562.46527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -06572236 562.46527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44108 -06572237 562.46527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -06572238 562.46527100 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43280 -06572239 562.46527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -06572240 562.46527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44118 -06572241 562.46533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -06572242 562.46533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x43290 -06572243 562.46533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -06572244 562.46533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44128 -06572245 562.46533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -06572246 562.46533203 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432a0 -06572247 562.46533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -06572248 562.46539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44138 -06572249 562.46539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -06572250 562.46539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432b0 -06572251 562.46539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -06572252 562.46539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44148 -06572253 562.46539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -06572254 562.46539307 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432c0 -06572255 562.46545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -06572256 562.46545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44158 -06572257 562.46545410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -06572258 562.46545410 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x432d0 -06572259 562.46545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -06572260 562.46545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44168 -06577180 562.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -06577181 562.50231934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -06577182 562.50231934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48370 -06577183 562.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -06577184 562.50231934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -06577185 562.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -06577186 562.50231934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48380 -06577187 562.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -06577188 562.50238037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -06577189 562.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06577190 562.50238037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48390 -06577191 562.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06577192 562.50238037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -06577193 562.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06577194 562.50238037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483a0 -06577195 562.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06577196 562.50244141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -06577197 562.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06577198 562.50244141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483b0 -06577199 562.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06577200 562.50244141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -06577201 562.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06577202 562.50244141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483c0 -06577203 562.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06577204 562.50250244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -06577205 562.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06577206 562.50250244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483d0 -06577207 562.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06577208 562.50256348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -06577209 562.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06577210 562.50256348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483e0 -06577211 562.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06577212 562.50256348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -06577213 562.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06577214 562.50256348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x483f0 -06577215 562.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06577216 562.50262451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -06577217 562.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06577218 562.50262451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48400 -06577219 562.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06577220 562.50262451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -06577221 562.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06577222 562.50262451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x48410 -06577223 562.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06581474 562.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce8 -06581475 562.53308105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -06581476 562.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cce8 -06581477 562.53308105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c700 -06581478 562.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf8 -06581479 562.53308105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -06581480 562.53308105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ccf8 -06581481 562.53308105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c710 -06581482 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd08 -06581483 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -06581484 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd08 -06581485 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c720 -06581486 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd18 -06581487 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -06581488 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd18 -06581489 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c730 -06581490 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd28 -06581491 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -06581492 562.53314209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd28 -06581493 562.53314209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c740 -06581494 562.53320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd38 -06581495 562.53320313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -06581496 562.53320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd38 -06581497 562.53320313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c750 -06581498 562.53320313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -06581499 562.53320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd48 -06581500 562.53320313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c760 -06581501 562.53320313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd48 -06581502 562.53326416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -06581503 562.53326416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c770 -06581504 562.53326416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -06581505 562.53326416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c780 -06581506 562.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd58 -06581507 562.53332520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -06581508 562.53332520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c790 -06581509 562.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd58 -06581510 562.53332520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -06581511 562.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd68 -06581512 562.53332520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a0 -06581513 562.53332520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd68 -06581514 562.53338623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -06581515 562.53338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd78 -06581516 562.53338623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b0 -06581517 562.53338623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd78 -06585760 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -06585761 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -06585762 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f78 -06585763 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a60 -06585764 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -06585765 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -06585766 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f88 -06585767 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a70 -06585768 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -06585769 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -06585770 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f98 -06585771 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a80 -06585772 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -06585773 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -06585774 562.56396484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fa8 -06585775 562.56396484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a90 -06585776 562.56402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -06585777 562.56402588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -06585778 562.56402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fb8 -06585779 562.56402588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50aa0 -06585780 562.56402588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -06585781 562.56402588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -06585782 562.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fc8 -06585783 562.56408691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ab0 -06585784 562.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -06585785 562.56408691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -06585786 562.56408691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fd8 -06585787 562.56408691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ac0 -06585788 562.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -06585789 562.56414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -06585790 562.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50fe8 -06585791 562.56414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ad0 -06585792 562.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -06585793 562.56414795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ff8 -06585794 562.56414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -06585795 562.56414795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ae0 -06585796 562.56420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -06585797 562.56420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51008 -06585798 562.56420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -06585799 562.56420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50af0 -06585800 562.56420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -06585801 562.56420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -06585802 562.56420898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51018 -06585803 562.56420898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b00 -06587835 562.69360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53108 -06587836 564.49395752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06587837 564.51434326 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06587838 564.51440430 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06587839 565.02465820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06587840 565.02471924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06587841 565.02471924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06587842 565.02478027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06587843 565.02484131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06587844 565.02484131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06587845 565.02490234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06587846 565.02496338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06587847 565.88421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06587848 565.88421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06587849 565.88427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06587850 565.88427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06587851 565.88427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06587852 565.88427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06587853 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06587854 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06587855 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06587856 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06587857 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06587858 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06587859 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06587860 565.88433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06587861 565.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06587862 565.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06587863 565.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06587864 565.88439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06587865 565.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06587866 565.88446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06587867 565.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06587868 565.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06587869 565.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06587870 565.88452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06587871 565.88458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06587872 565.88458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06587873 565.88458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06587874 565.88458252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06587875 565.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06587876 565.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06587877 565.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06587878 565.88464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06587879 565.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06587880 565.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06587881 565.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06587882 565.88470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06587883 565.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06587884 565.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06587885 565.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06587886 565.88476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06587887 565.88482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06587888 565.88482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06587889 565.88482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06587890 565.88482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06587891 565.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06587892 565.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06587893 565.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06587894 565.88488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06587895 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06587896 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06587897 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06587898 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06587899 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06587900 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06587901 565.88494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06587902 565.88500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06587903 565.88500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06587904 565.88500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06587905 565.88507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06587906 565.88507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06587907 565.88507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06587908 565.88513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06587909 565.88513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06587910 565.88513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06587911 565.88519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06587912 565.88519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06587913 565.88519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06587914 565.88519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06587915 565.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06587916 565.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06587917 565.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06587918 565.88525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06587919 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06587920 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06587921 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06587922 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06587923 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06587924 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06587925 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06587926 565.88531494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06587927 565.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06587928 565.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06587929 565.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06587930 565.88537598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06587931 565.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06587932 565.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06587933 565.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06587934 565.88543701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06587935 565.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06587936 565.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06587937 565.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06587938 565.88549805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06587939 565.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06587940 565.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06587941 565.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06587942 565.88555908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06587943 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06587944 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06587945 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06587946 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06587947 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06587948 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06587949 565.88562012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06587950 565.88568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06587951 565.88568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06587952 565.88568115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06587953 565.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06587954 565.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06587955 565.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06587956 565.88574219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06587957 565.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06587958 565.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06587959 565.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06587960 565.88580322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06587961 565.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06587962 565.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06587963 565.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06587964 565.88586426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06587965 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06587966 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06587967 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06587968 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06587969 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06587970 565.88592529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06587971 565.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06587972 565.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06587973 565.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06587974 565.88598633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06587975 565.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06587976 565.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06587977 565.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06587978 565.88604736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06587979 565.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06587980 565.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06587981 565.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06587982 565.88610840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06587983 565.88616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06587984 565.88616943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06587985 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06587986 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06587987 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06587988 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06587989 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06587990 565.88623047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06587991 565.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06587992 565.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06587993 565.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06587994 565.88629150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06587995 565.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06587996 565.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06587997 565.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06587998 565.88635254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06587999 565.88641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06588000 565.88641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06588001 565.88641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06588002 565.88641357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06588003 565.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06588004 565.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06588005 565.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06588006 565.88647461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06588007 565.88653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06588008 565.88653564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06588009 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06588010 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06588011 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06588012 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06588013 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06588014 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06588015 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06588016 565.88659668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06588017 565.88665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06588018 565.88665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06588019 565.88665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06588020 565.88665771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06588021 565.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06588022 565.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06588023 565.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06588024 565.88671875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06588025 565.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06588026 565.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06588027 565.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06588028 565.88677979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06588029 565.88684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06588030 565.88684082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06588031 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06588032 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06588033 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06588034 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06588035 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06588036 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06588037 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06588038 565.88690186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06588039 565.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06588040 565.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06588041 565.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06588042 565.88696289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06588043 565.88702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06588044 565.88702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06588045 565.88702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06588046 565.88702393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06588047 565.88708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06588048 565.88708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06588049 565.88708496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06588050 565.88714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06588051 565.88714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06588052 565.88714600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06588053 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06588054 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06588055 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06588056 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06588057 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06588058 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06588059 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06588060 565.88720703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06588061 565.88726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06588062 565.88726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06588063 565.88726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06588064 565.88726807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06588065 565.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06588066 565.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06588067 565.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06588068 565.88732910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06588069 565.88739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06588070 565.88739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06588071 565.88739014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06588072 565.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06588073 565.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06588074 565.88745117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06588075 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06588076 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06588077 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06588078 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06588079 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06588080 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06588081 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06588082 565.88751221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06588083 565.88757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06588084 565.88757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06588085 565.88757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06588086 565.88757324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06588087 565.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06588088 565.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06588089 565.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06588090 565.88763428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06588091 565.88769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06588092 565.88769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06588093 565.88769531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06588094 565.88775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06588095 565.88775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06588096 565.88775635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06588097 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06588098 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06588099 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06588100 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06588101 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06588102 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06588103 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06588104 565.88781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06588105 565.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06588106 565.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06588107 565.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06588108 565.88787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06588109 565.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06588110 565.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06588111 565.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06588112 565.88793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06588113 565.88800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06588114 565.88800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06588115 565.88800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06588116 565.88800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06588117 565.88806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06588118 565.88806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06588119 565.88806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06588120 565.88806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06588121 565.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06588122 565.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06588123 565.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06588124 565.88812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06588125 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06588126 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06588127 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06588128 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06588129 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06588130 565.88818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06588131 565.88824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06588132 565.88824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06588133 565.88824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06588134 565.88824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06588135 565.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06588136 565.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06588137 565.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06588138 565.88830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06588139 565.88836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06588140 565.88836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06588141 565.88836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06588142 565.88836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06588143 565.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06588144 565.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06588145 565.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06588146 565.88842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06588147 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06588148 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06588149 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06588150 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06588151 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06588152 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06588153 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06588154 565.88848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06588155 565.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06588156 565.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06588157 565.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06588158 565.88854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06588159 565.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06588160 565.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06588161 565.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06588162 565.88861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06588163 565.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06588164 565.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06588165 565.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06588166 565.88867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06588167 565.88873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06588168 565.88873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06588169 565.88873291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06588170 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06588171 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06588172 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06588173 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06588174 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06588175 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06588176 565.88879395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06588177 565.88885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06588178 565.88885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06588179 565.88885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06588180 565.88885498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06588181 565.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06588182 565.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06588183 565.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06588184 565.88891602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06588185 565.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06588186 565.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06588187 565.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06588188 565.88897705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06588189 565.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06588190 565.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06588191 565.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06588192 565.88903809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06588193 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06588194 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06588195 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06588196 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06588197 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06588198 565.88909912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06588199 565.88916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06588200 565.88916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06588201 565.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06588202 565.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06588203 565.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06588204 565.88922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06588205 565.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06588206 565.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06588207 565.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06588208 565.88928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06588209 565.88934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06588210 565.88934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06588211 565.88934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06588212 565.88934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06588213 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06588214 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06588215 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06588216 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06588217 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06588218 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06588219 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06588220 565.88940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06588221 565.88946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06588222 565.88946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06588223 565.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06588224 565.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06588225 565.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06588226 565.88952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06588227 565.88958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06588228 565.88958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06588229 565.88958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06588230 565.88958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06588231 565.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06588232 565.88964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06588233 565.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06588234 565.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06588235 565.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06588236 565.88970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06588237 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06588238 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06588239 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06588240 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06588241 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06588242 565.88977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06588243 565.88983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06588244 565.88983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06588245 565.88983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06588246 565.88983154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06588247 565.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06588248 565.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06588249 565.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06588250 565.88989258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06588251 565.88995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06588252 565.88995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06588253 565.88995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06588254 565.88995361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06588255 565.89001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06588256 565.89001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06588257 565.89001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06588258 565.89001465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06588259 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06588260 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06588261 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06588262 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06588263 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06588264 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06588265 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06588266 565.89007568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06588267 565.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06588268 565.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06588269 565.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06588270 565.89013672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06588271 565.89019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06588272 565.89019775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06588273 565.89025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06588274 565.89025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06588275 565.89025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06588276 565.89025879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06588277 565.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06588278 565.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06588279 565.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06588280 565.89031982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06588281 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06588282 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06588283 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06588284 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06588285 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06588286 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06588287 565.89038086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06588288 565.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06588289 565.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06588290 565.89044189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06588291 565.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06588292 565.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06588293 565.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06588294 565.89050293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06588295 565.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06588296 565.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06588297 565.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06588298 565.89056396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06588299 565.89062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06588300 565.89062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06588301 565.89062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06588302 565.89062500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06588303 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06588304 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06588305 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06588306 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06588307 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06588308 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06588309 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06588310 565.89068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06588311 565.89074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06588312 565.89074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06588313 565.89074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06588314 565.89074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06588315 565.89080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06588316 565.89080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06588317 565.89080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06588318 565.89080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06588319 565.89086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06588320 565.89086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06588321 565.89086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06588322 565.89086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06588323 565.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06588324 565.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06588325 565.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06588326 565.89093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06588327 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06588328 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06588329 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06588330 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06588331 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06588332 565.89099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06588333 565.89105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06588334 565.89105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06588335 565.89105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06588336 565.89105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06588337 565.89111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06588338 565.89111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06588339 565.89111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06588340 565.89111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06588341 565.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06588342 565.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06588343 565.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06588344 565.89117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06588345 565.89123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06588346 565.89123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06588347 565.89123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06588348 565.89123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06588349 565.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06588350 565.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06588351 565.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06588352 565.89129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06588353 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06588354 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06588355 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06588356 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06588357 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06588358 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06588359 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06588360 565.89135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06588361 565.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06588362 565.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06588363 565.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06588364 565.89141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06588365 565.89147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06588366 565.89147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06588367 565.89147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06588368 565.89147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06588369 565.89154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06588370 565.89154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06588371 565.89154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06588372 565.89160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06588373 565.89160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06588374 565.89160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06588375 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06588376 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06588377 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06588378 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06588379 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06588380 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06588381 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06588382 565.89166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06588383 565.89172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06588384 565.89172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06588385 565.89172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06588386 565.89172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06588387 565.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06588388 565.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06588389 565.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06588390 565.89178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06588391 565.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06588392 565.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06588393 565.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06588394 565.89184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06588395 565.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06588396 565.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06588397 565.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06588398 565.89190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06588399 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06588400 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06588401 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06588402 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06588403 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06588404 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06588405 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06588406 565.89196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06588407 565.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06588408 565.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06588409 565.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06588410 565.89202881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06588411 565.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06588412 565.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06588413 565.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06588414 565.89208984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06588415 565.89215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06588416 565.89215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06588417 565.89215088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06588418 565.89221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06588419 565.89221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06588420 565.89221191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06588421 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06588422 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06588423 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06588424 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06588425 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06588426 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06588427 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06588428 565.89227295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06588429 565.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06588430 565.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06588431 565.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06588432 565.89233398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06588433 565.89239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06588434 565.89239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06588435 565.89239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06588436 565.89239502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06588437 565.89245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06588438 565.89245605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06588439 565.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06588440 565.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06588441 565.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06588442 565.89251709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06588443 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06588444 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06588445 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06588446 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06588447 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06588448 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06588449 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06588450 565.89257813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06588451 565.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06588452 565.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06588453 565.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06588454 565.89263916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06588455 565.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06588456 565.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06588457 565.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06588458 565.89270020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06588459 565.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06588460 565.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06588461 565.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06588462 565.89276123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06588463 565.89282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06588464 565.89282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06588465 565.89282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06588466 565.89282227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06588467 565.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06588468 565.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06588469 565.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06588470 565.89288330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06588471 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06588472 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06588473 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06588474 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06588475 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06588476 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06588477 565.89294434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06588478 565.89300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06588479 565.89300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06588480 565.89300537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06588481 565.89306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06588482 565.89306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06588483 565.89306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06588484 565.89306641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06588485 565.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06588486 565.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06588487 565.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06588488 565.89312744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06588489 565.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06588490 565.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06588491 565.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06588492 565.89318848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06588493 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06588494 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06588495 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06588496 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06588497 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06588498 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06588499 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06588500 565.89324951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06588501 565.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06588502 565.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06588503 565.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06588504 565.89331055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06588505 565.89337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06588506 565.89337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06588507 565.89337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06588508 565.89337158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06588509 565.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06588510 565.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06588511 565.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06588512 565.89343262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06588513 565.89349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06588514 565.89349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06588515 565.89349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06588516 565.89349365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06588517 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06588518 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06588519 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06588520 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06588521 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06588522 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06588523 565.89355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06588524 565.89361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06588525 565.89361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06588526 565.89361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06588527 565.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06588528 565.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06588529 565.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06588530 565.89367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06588531 565.89373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06588532 565.89373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06588533 565.89373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06588534 565.89373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06588535 565.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06588536 565.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06588537 565.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06588538 565.89379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06588539 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06588540 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06588541 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06588542 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06588543 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06588544 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06588545 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06588546 565.89385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06588547 565.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06588548 565.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06588549 565.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06588550 565.89392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06588551 565.89398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06588552 565.89398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06588553 565.89398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06588554 565.89398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06588555 565.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06588556 565.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06588557 565.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06588558 565.89404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06588559 565.89410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06588560 565.89410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06588561 565.89410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06588562 565.89410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06588563 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06588564 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06588565 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06588566 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06588567 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06588568 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06588569 565.89416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06588570 565.89422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06588571 565.89422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06588572 565.89422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06588573 565.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06588574 565.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06588575 565.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06588576 565.89428711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06588577 565.89434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06588578 565.89434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06588579 565.89434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06588580 565.89434814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06588581 565.89440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06588582 565.89440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06588583 565.89440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06588584 565.89440918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06588585 565.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06588586 565.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06588587 565.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06588588 565.89447021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06588589 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06588590 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06588591 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06588592 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06588593 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06588594 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06588595 565.89453125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06588596 565.89459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06588597 565.89459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06588598 565.89459229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06588599 565.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06588600 565.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06588601 565.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06588602 565.89465332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06588603 565.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06588604 565.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06588605 565.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06588606 565.89471436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06588607 565.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06588608 565.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06588609 565.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06588610 565.89477539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06588611 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06588612 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06588613 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06588614 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06588615 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06588616 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06588617 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06588618 565.89483643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06588619 565.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06588620 565.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06588621 565.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06588622 565.89489746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06588623 565.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06588624 565.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06588625 565.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06588626 565.89495850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06588627 565.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06588628 565.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06588629 565.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06588630 565.89501953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06588631 565.89508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06588632 565.89508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06588633 565.89508057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06588634 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06588635 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06588636 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06588637 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06588638 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06588639 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06588640 565.89514160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06588641 565.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06588642 565.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06588643 565.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06588644 565.89520264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06588645 565.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06588646 565.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06588647 565.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06588648 565.89526367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06588649 565.89532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06588650 565.89532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06588651 565.89532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06588652 565.89532471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06588653 565.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06588654 565.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06588655 565.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06588656 565.89538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06588657 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06588658 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06588659 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06588660 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06588661 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06588662 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06588663 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06588664 565.89544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06588665 565.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06588666 565.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06588667 565.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06588668 565.89550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06588669 565.89556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06588670 565.89556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06588671 565.89556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06588672 565.89556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06588673 565.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06588674 565.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06588675 565.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06588676 565.89562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06588677 565.89569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06588678 565.89569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06588679 565.89569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06588680 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06588681 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06588682 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06588683 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06588684 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06588685 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06588686 565.89575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06588687 565.89581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06588688 565.89581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06588689 565.89581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06588690 565.89581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06588691 565.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06588692 565.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06588693 565.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06588694 565.89587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06588695 565.89593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06588696 565.89593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06588697 565.89593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06588698 565.89593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06588699 565.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06588700 565.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06588701 565.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06588702 565.89599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06588703 565.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06588704 565.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06588705 565.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06588706 565.89605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06588707 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06588708 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06588709 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06588710 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06588711 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06588712 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06588713 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06588714 565.89611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06588715 565.89617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06588716 565.89617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06588717 565.89617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06588718 565.89617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06588719 565.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06588720 565.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06588721 565.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06588722 565.89624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06588723 565.89630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06588724 565.89630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06588725 565.89630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06588726 565.89636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06588727 565.89636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06588728 565.89636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06588729 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06588730 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06588731 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06588732 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06588733 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06588734 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06588735 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06588736 565.89642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06588737 565.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06588738 565.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06588739 565.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06588740 565.89648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06588741 565.89654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06588742 565.89654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06588743 565.89654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06588744 565.89654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06588745 565.89660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06588746 565.89660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06588747 565.89660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06588748 565.89660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06588749 565.89666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06588750 565.89666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06588751 565.89666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06588752 565.89666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06588753 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06588754 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06588755 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06588756 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06588757 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06588758 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06588759 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06588760 565.89672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06588761 565.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06588762 565.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06588763 565.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06588764 565.89678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06588765 565.89685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06588766 565.89685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06588767 565.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06588768 565.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06588769 565.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06588770 565.89691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06588771 565.89697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06588772 565.89697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06588773 565.89697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06588774 565.89697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06588775 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06588776 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06588777 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06588778 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06588779 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06588780 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06588781 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06588782 565.89703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06588783 565.89709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06588784 565.89709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06588785 565.89709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06588786 565.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06588787 565.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06588788 565.89715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06588789 565.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06588790 565.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06588791 565.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06588792 565.89721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06588793 565.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06588794 565.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06588795 565.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06588796 565.89727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06588797 565.89733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06588798 565.89733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06588799 565.89733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06588800 565.89733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06588801 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06588802 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06588803 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06588804 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06588805 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06588806 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06588807 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06588808 565.89739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06588809 565.89746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06588810 565.89746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06588811 565.89746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06588812 565.89746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06588813 565.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06588814 565.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06588815 565.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06588816 565.89752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06588817 565.89758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06588818 565.89758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06588819 565.89758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06588820 565.89758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06588821 565.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06588822 565.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06588823 565.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06588824 565.89764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06588825 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06588826 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06588827 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06588828 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06588829 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06588830 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06588831 565.89770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06588832 565.89776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06588833 565.89776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06588834 565.89776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06588835 565.89782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06588836 565.89782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06588837 565.89782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06588838 565.89782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06588839 565.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06588840 565.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06588841 565.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06588842 565.89788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06588843 565.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06588844 565.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06588845 565.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06588846 565.89794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06588847 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06588848 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06588849 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06588850 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06588851 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06588852 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06588853 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06588854 565.89801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06588855 565.89807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06588856 565.89807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06588857 565.89807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06588858 565.89807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06588859 565.89813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06588860 565.89813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06588861 565.89813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06588862 565.89819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06588863 565.89819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06588864 565.89819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06588865 565.89825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06588866 565.89825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06588867 565.89825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06588868 565.89825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06588869 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06588870 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06588871 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06588872 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06588873 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06588874 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06588875 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06588876 565.89831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06588877 565.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06588878 565.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06588879 565.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06588880 565.89837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06588881 565.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06588882 565.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06588883 565.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06588884 565.89843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06588885 565.89849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06588886 565.89849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06588887 565.89849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06588888 565.89849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06588889 565.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06588890 565.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06588891 565.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06588892 565.89855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06588893 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06588894 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06588895 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06588896 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06588897 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06588898 565.89862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06588899 565.89868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06588900 565.89868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06588901 565.89868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06588902 565.89868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06588903 565.89874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06588904 565.89874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06588905 565.89874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06588906 565.89874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06588907 565.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06588908 565.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06588909 565.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06588910 565.89880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06588911 565.89886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06588912 565.89886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06588913 565.89886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06588914 565.89886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06588915 565.89892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06588916 565.89892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06588917 565.89892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06588918 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06588919 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06588920 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06588921 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06588922 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06588923 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06588924 565.89898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06588925 565.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06588926 565.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06588927 565.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06588928 565.89904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06588929 565.89910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06588930 565.89910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06588931 565.89910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06588932 565.89910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06588933 565.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06588934 565.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06588935 565.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06588936 565.89916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06588937 565.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06588938 565.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06588939 565.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06588940 565.89923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06588941 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06588942 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06588943 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06588944 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06588945 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06588946 565.89929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06588947 565.89935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06588948 565.89935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06588949 565.89935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06588950 565.89935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06588951 565.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06588952 565.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06588953 565.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06588954 565.89941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06588955 565.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06588956 565.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06588957 565.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06588958 565.89947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06588959 565.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06588960 565.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06588961 565.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06588962 565.89953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06588963 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06588964 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06588965 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06588966 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06588967 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06588968 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06588969 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06588970 565.89959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06588971 565.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06588972 565.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06588973 565.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06588974 565.89965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06588975 565.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06588976 565.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06588977 565.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06588978 565.89971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06588979 565.89978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06588980 565.89978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06588981 565.89978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06588982 565.89978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06588983 565.89984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06588984 565.89984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06588985 565.89984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06588986 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06588987 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06588988 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06588989 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06588990 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06588991 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06588992 565.89990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06588993 565.89996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06588994 565.89996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06588995 565.89996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06588996 565.89996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06588997 565.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06588998 565.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06588999 565.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06589000 565.90002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06589001 565.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06589002 565.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06589003 565.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06589004 565.90008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06589005 565.90014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06589006 565.90014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06589007 565.90014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06589008 565.90014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06589009 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06589010 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06589011 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06589012 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06589013 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06589014 565.90020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06589015 565.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06589016 565.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06589017 565.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06589018 565.90026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06589019 565.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06589020 565.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06589021 565.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06589022 565.90032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06589023 565.90039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06589024 565.90039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06589025 565.90039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06589026 565.90039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06589027 565.90045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06589028 565.90045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06589029 565.90051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06589030 565.90051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06589031 565.90051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06589032 565.90051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06589033 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06589034 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06589035 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06589036 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06589037 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06589038 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06589039 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06589040 565.90057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06589041 565.90063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06589042 565.90063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06589043 565.90069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06589044 565.90069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06589045 565.90069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06589046 565.90069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06589047 565.90075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06589048 565.90075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06589049 565.90075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06589050 565.90075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06589051 565.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06589052 565.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06589053 565.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06589054 565.90081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06589055 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06589056 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06589057 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06589058 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06589059 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06589060 565.90087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06589061 565.90093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06589062 565.90093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06589063 565.90093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06589064 565.90093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06589065 565.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06589066 565.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06589067 565.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06589068 565.90100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06589069 565.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06589070 565.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06589071 565.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06589072 565.90106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06589073 565.90112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06589074 565.90112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06589075 565.90112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06589076 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06589077 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06589078 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06589079 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06589080 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06589081 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06589082 565.90118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06589083 565.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06589084 565.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06589085 565.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06589086 565.90124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06589087 565.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06589088 565.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06589089 565.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06589090 565.90130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06589091 565.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06589092 565.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06589093 565.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06589094 565.90136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06589095 565.90142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06589096 565.90142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06589097 565.90142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06589098 565.90142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06589099 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06589100 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06589101 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06589102 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06589103 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06589104 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06589105 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06589106 565.90148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06589107 565.90155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06589108 565.90155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06589109 565.90155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06589110 565.90161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06589111 565.90161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06589112 565.90161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06589113 565.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06589114 565.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06589115 565.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06589116 565.90167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06589117 565.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06589118 565.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06589119 565.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06589120 565.90173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06589121 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06589122 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06589123 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06589124 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06589125 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06589126 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06589127 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06589128 565.90179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06589129 565.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06589130 565.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06589131 565.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06589132 565.90185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06589133 565.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06589134 565.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06589135 565.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06589136 565.90191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06589137 565.90197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06589138 565.90197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06589139 565.90197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06589140 565.90197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06589141 565.90203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06589142 565.90203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06589143 565.90203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06589144 565.90203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06589145 565.90209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06589146 565.90209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06589147 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06589148 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06589149 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06589150 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06589151 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06589152 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06589153 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06589154 565.90216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06589155 565.90222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06589156 565.90222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06589157 565.90222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06589158 565.90222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06589159 565.90228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06589160 565.90228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06589161 565.90228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06589162 565.90228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06589163 565.90234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06589164 565.90234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06589165 565.90234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06589166 565.90234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06589167 565.90240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06589168 565.90240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06589169 565.90240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06589170 565.90240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06589171 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06589172 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06589173 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06589174 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06589175 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06589176 565.90246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06589177 565.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06589178 565.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06589179 565.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06589180 565.90252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06589181 565.90258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06589182 565.90258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06589183 565.90258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06589184 565.90258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06589185 565.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06589186 565.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06589187 565.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06589188 565.90264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06589189 565.90270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06589190 565.90270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06589191 565.90270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06589192 565.90270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06589193 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06589194 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06589195 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06589196 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06589197 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06589198 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06589199 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06589200 565.90277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06589201 565.90283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06589202 565.90283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06589203 565.90283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06589204 565.90283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06589205 565.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06589206 565.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06589207 565.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06589208 565.90289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06589209 565.90295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06589210 565.90295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06589211 565.90295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06589212 565.90295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06589213 565.90301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06589214 565.90301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06589215 565.90301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06589216 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06589217 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06589218 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06589219 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06589220 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06589221 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06589222 565.90307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06589223 565.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06589224 565.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06589225 565.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06589226 565.90313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06589227 565.90319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06589228 565.90319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06589229 565.90319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06589230 565.90319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06589231 565.90325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06589232 565.90325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06589233 565.90332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06589234 565.90332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06589235 565.90332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06589236 565.90332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06589237 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06589238 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06589239 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06589240 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06589241 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06589242 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06589243 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06589244 565.90338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06589245 565.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06589246 565.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06589247 565.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06589248 565.90344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06589249 565.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06589250 565.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06589251 565.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06589252 565.90350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06589253 565.90356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06589254 565.90356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06589255 565.90356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06589256 565.90356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06589257 565.90362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06589258 565.90362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06589259 565.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06589260 565.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06589261 565.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06589262 565.90368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06589263 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06589264 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06589265 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06589266 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06589267 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06589268 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06589269 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06589270 565.90374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06589271 565.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06589272 565.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06589273 565.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06589274 565.90380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06589275 565.90386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06589276 565.90386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06589277 565.90386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06589278 565.90393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06589279 565.90393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06589280 565.90393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06589281 565.90399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06589282 565.90399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06589283 565.90399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06589284 565.90399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06589285 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06589286 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06589287 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06589288 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06589289 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06589290 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06589291 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06589292 565.90405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06589293 565.90411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06589294 565.90411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06589295 565.90417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06589296 565.90417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06589297 565.90417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06589298 565.90417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06589299 565.90423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06589300 565.90423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06589301 565.90423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06589302 565.90423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06589303 565.90429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06589304 565.90429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06589305 565.90429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06589306 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06589307 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06589308 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06589309 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06589310 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06589311 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06589312 565.90435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06589313 565.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06589314 565.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06589315 565.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06589316 565.90441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06589317 565.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06589318 565.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06589319 565.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06589320 565.90447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06589321 565.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06589322 565.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06589323 565.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06589324 565.90454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06589325 565.90460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06589326 565.90460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06589327 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06589328 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06589329 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06589330 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06589331 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06589332 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06589333 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06589334 565.90466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06589335 565.90472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06589336 565.90472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06589337 565.90472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06589338 565.90472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06589339 565.90478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06589340 565.90478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06589341 565.90478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06589342 565.90478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06589343 565.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06589344 565.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06589345 565.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06589346 565.90484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06589347 565.90490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06589348 565.90490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06589349 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06589350 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06589351 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06589352 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06589353 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06589354 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06589355 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06589356 565.90496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06589357 565.90502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06589358 565.90502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06589359 565.90502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06589360 565.90509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06589361 565.90509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06589362 565.90509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06589363 565.90515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06589364 565.90515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06589365 565.90515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06589366 565.90515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06589367 565.90521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06589368 565.90521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06589369 565.90521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06589370 565.90521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06589371 565.90527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06589372 565.90527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06589373 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06589374 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06589375 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06589376 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06589377 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06589378 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06589379 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06589380 565.90533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06589381 565.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06589382 565.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06589383 565.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06589384 565.90539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06589385 565.90545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06589386 565.90545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06589387 565.90545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06589388 565.90551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06589389 565.90551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06589390 565.90551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06589391 565.90557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06589392 565.90557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06589393 565.90557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06589394 565.90557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06589395 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06589396 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06589397 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06589398 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06589399 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06589400 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06589401 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06589402 565.90563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06589403 565.90570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06589404 565.90570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06589405 565.90570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06589406 565.90570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06589407 565.90576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06589408 565.90576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06589409 565.90576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06589410 565.90576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06589411 565.90582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06589412 565.90582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06589413 565.90582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06589414 565.90582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06589415 565.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06589416 565.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06589417 565.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06589418 565.90588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06589419 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06589420 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06589421 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06589422 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06589423 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06589424 565.90594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06589425 565.90600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06589426 565.90600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06589427 565.90600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06589428 565.90600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06589429 565.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06589430 565.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06589431 565.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06589432 565.90606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06589433 565.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06589434 565.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06589435 565.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06589436 565.90612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06589437 565.90618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06589438 565.90618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06589439 565.90618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06589440 565.90618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06589441 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06589442 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06589443 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06589444 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06589445 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06589446 565.90625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06589447 565.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06589448 565.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06589449 565.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06589450 565.90631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06589451 565.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06589452 565.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06589453 565.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06589454 565.90637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06589455 565.90643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06589456 565.90643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06589457 565.90643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06589458 565.90643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06589459 565.90649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06589460 565.90649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06589461 565.90649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06589462 565.90649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06589463 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06589464 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06589465 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06589466 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06589467 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06589468 565.90655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06589469 565.90661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06589470 565.90661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06589471 565.90661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06589472 565.90661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06589473 565.90667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06589474 565.90667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06589475 565.90667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06589476 565.90667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06589477 565.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06589478 565.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06589479 565.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06589480 565.90673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06589481 565.90679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06589482 565.90679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06589483 565.90679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06589484 565.90679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06589485 565.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06589486 565.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06589487 565.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06589488 565.90686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06589489 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06589490 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06589491 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06589492 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06589493 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06589494 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06589495 565.90692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06589496 565.90698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06589497 565.90698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06589498 565.90698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06589499 565.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06589500 565.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06589501 565.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06589502 565.90704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06589503 565.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06589504 565.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06589505 565.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06589506 565.90710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06589507 565.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06589508 565.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06589509 565.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06589510 565.90716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06589511 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06589512 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06589513 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06589514 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06589515 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06589516 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06589517 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06589518 565.90722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06589519 565.90728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06589520 565.90728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06589521 565.90728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06589522 565.90734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06589523 565.90734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06589524 565.90734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06589525 565.90740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06589526 565.90740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06589527 565.90740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06589528 565.90740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06589529 565.90747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06589530 565.90747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06589531 565.90747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06589532 565.90747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06589533 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06589534 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06589535 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06589536 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06589537 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06589538 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06589539 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06589540 565.90753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06589541 565.90759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06589542 565.90759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06589543 565.90759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06589544 565.90759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06589545 565.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06589546 565.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06589547 565.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06589548 565.90765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06589549 565.90771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06589550 565.90771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06589551 565.90771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06589552 565.90771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06589553 565.90777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06589554 565.90777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06589555 565.90777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06589556 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06589557 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06589558 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06589559 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06589560 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06589561 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06589562 565.90783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06589563 565.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06589564 565.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06589565 565.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06589566 565.90789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06589567 565.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06589568 565.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06589569 565.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06589570 565.90795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06589571 565.90802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06589572 565.90802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06589573 565.90802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06589574 565.90802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06589575 565.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06589576 565.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06589577 565.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06589578 565.90808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06589579 565.90814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06589580 565.90814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06589581 565.90814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06589582 565.90814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06589583 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06589584 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06589585 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06589586 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06589587 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06589588 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06589589 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06589590 565.90820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06589591 565.90826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06589592 565.90826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06589593 565.90826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06589594 565.90826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06589595 565.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06589596 565.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06589597 565.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06589598 565.90832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06589599 565.90838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06589600 565.90838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06589601 565.90838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06589602 565.90844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06589603 565.90844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06589604 565.90844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06589605 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06589606 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06589607 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06589608 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06589609 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06589610 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06589611 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06589612 565.90850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06589613 565.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06589614 565.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06589615 565.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06589616 565.90856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06589617 565.90863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06589618 565.90863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06589619 565.90863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06589620 565.90863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06589621 565.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06589622 565.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06589623 565.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06589624 565.90869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06589625 565.90875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06589626 565.90875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06589627 565.90875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06589628 565.90875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06589629 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06589630 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06589631 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06589632 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06589633 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06589634 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06589635 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06589636 565.90881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06589637 565.90887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06589638 565.90887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06589639 565.90887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06589640 565.90887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06589641 565.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06589642 565.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06589643 565.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06589644 565.90893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06589645 565.90899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06589646 565.90899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06589647 565.90899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06589648 565.90905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06589649 565.90905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06589650 565.90905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06589651 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06589652 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06589653 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06589654 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06589655 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06589656 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06589657 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06589658 565.90911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06589659 565.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06589660 565.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06589661 565.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06589662 565.90917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06589663 565.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06589664 565.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06589665 565.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06589666 565.90924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06589667 565.90930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06589668 565.90930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06589669 565.90930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06589670 565.90930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06589671 565.90936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06589672 565.90936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06589673 565.90936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06589674 565.90936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06589675 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06589676 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06589677 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06589678 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06589679 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06589680 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06589681 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06589682 565.90942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06589683 565.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06589684 565.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06589685 565.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06589686 565.90948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06589687 565.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06589688 565.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06589689 565.90954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06589690 565.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06589691 565.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06589692 565.90960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06589693 565.90966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06589694 565.90966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06589695 565.90966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06589696 565.90966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06589697 565.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06589698 565.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06589699 565.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06589700 565.90972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06589701 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06589702 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06589703 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06589704 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06589705 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06589706 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06589707 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06589708 565.90979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06589709 565.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06589710 565.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06589711 565.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06589712 565.90985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06589713 565.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06589714 565.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06589715 565.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06589716 565.90991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06589717 565.90997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06589718 565.90997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06589719 565.90997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06589720 565.90997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06589721 565.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06589722 565.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06589723 565.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06589724 565.91003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06589725 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06589726 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06589727 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06589728 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06589729 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06589730 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06589731 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06589732 565.91009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06589733 565.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06589734 565.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06589735 565.91015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06589736 565.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06589737 565.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06589738 565.91021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06589739 565.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06589740 565.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06589741 565.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06589742 565.91027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06589743 565.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06589744 565.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06589745 565.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06589746 565.91033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06589747 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06589748 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06589749 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06589750 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06589751 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06589752 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06589753 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06589754 565.91040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06589755 565.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06589756 565.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06589757 565.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06589758 565.91046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06589759 565.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06589760 565.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06589761 565.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06589762 565.91052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06589763 565.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06589764 565.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06589765 565.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06589766 565.91058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06589767 565.91064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06589768 565.91064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06589769 565.91064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06589770 565.91064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06589771 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06589772 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06589773 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06589774 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06589775 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06589776 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06589777 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06589778 565.91070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06589779 565.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06589780 565.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06589781 565.91076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06589782 565.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06589783 565.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06589784 565.91082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06589785 565.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06589786 565.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06589787 565.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06589788 565.91088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06589789 565.91094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06589790 565.91094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06589791 565.91094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06589792 565.91094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06589793 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06589794 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06589795 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06589796 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06589797 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06589798 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06589799 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06589800 565.91101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06589801 565.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06589802 565.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06589803 565.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06589804 565.91107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06589805 565.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06589806 565.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06589807 565.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06589808 565.91113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06589809 565.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06589810 565.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06589811 565.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06589812 565.91119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06589813 565.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06589814 565.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06589815 565.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06589816 565.91125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06589817 565.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06589818 565.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06589819 565.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06589820 565.91131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06589821 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06589822 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06589823 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06589824 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06589825 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06589826 565.91137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06589827 565.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06589828 565.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06589829 565.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06589830 565.91143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06589831 565.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06589832 565.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06589833 565.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06589834 565.91149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06589835 565.91156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06589836 565.91156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06589837 565.91156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06589838 565.91156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06589839 565.91162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06589840 565.91162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06589841 565.91162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06589842 565.91162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06589843 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06589844 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06589845 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06589846 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06589847 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06589848 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06589849 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06589850 565.91168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06589851 565.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06589852 565.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06589853 565.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06589854 565.91174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06589855 565.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06589856 565.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06589857 565.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06589858 565.91180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06589859 565.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06589860 565.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06589861 565.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06589862 565.91186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06589863 565.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06589864 565.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06589865 565.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06589866 565.91192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06589867 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06589868 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06589869 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06589870 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06589871 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06589872 565.91198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06589873 565.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06589874 565.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06589875 565.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06589876 565.91204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06589877 565.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06589878 565.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06589879 565.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06589880 565.91210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06589881 565.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06589882 565.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06589883 565.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06589884 565.91217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06589885 565.91223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06589886 565.91223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06589887 565.91223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06589888 565.91223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06589889 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06589890 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06589891 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06589892 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06589893 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06589894 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06589895 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06589896 565.91229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06589897 565.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06589898 565.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06589899 565.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06589900 565.91235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06589901 565.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06589902 565.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06589903 565.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06589904 565.91241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06589905 565.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06589906 565.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06589907 565.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06589908 565.91247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06589909 565.91253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06589910 565.91253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06589911 565.91253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06589912 565.91253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06589913 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06589914 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06589915 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06589916 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06589917 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06589918 565.91259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06589919 565.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06589920 565.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06589921 565.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06589922 565.91265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06589923 565.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06589924 565.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06589925 565.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06589926 565.91271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06589927 565.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06589928 565.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06589929 565.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06589930 565.91278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06589931 565.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06589932 565.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06589933 565.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06589934 565.91284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06589935 565.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06589936 565.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06589937 565.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06589938 565.91290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06589939 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06589940 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06589941 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06589942 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06589943 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06589944 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06589945 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06589946 565.91296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06589947 565.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06589948 565.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06589949 565.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06589950 565.91302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06589951 565.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06589952 565.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06589953 565.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06589954 565.91308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06589955 565.91314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06589956 565.91314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06589957 565.91314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06589958 565.91320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06589959 565.91320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06589960 565.91320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06589961 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06589962 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06589963 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06589964 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06589965 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06589966 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06589967 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06589968 565.91326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06589969 565.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06589970 565.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06589971 565.91333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06589972 565.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06589973 565.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06589974 565.91339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06589975 565.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06589976 565.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06589977 565.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06589978 565.91345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06589979 565.91351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06589980 565.91351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06589981 565.91351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06589982 565.91351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06589983 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06589984 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06589985 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06589986 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06589987 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06589988 565.91357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06589989 565.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06589990 565.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06589991 565.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06589992 565.91363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06589993 565.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06589994 565.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06589995 565.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06589996 565.91369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06589997 565.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06589998 565.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06589999 565.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06590000 565.91375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06590001 565.91381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06590002 565.91381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06590003 565.91381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06590004 565.91381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06590005 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06590006 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06590007 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06590008 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06590009 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06590010 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06590011 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06590012 565.91387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06590013 565.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06590014 565.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06590015 565.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06590016 565.91394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06590017 565.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06590018 565.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06590019 565.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06590020 565.91400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06590021 565.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06590022 565.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06590023 565.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06590024 565.91406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06590025 565.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06590026 565.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06590027 565.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06590028 565.91412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06590029 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06590030 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06590031 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06590032 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06590033 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06590034 565.91418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06590035 565.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06590036 565.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06590037 565.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06590038 565.91424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06590039 565.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06590040 565.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06590041 565.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06590042 565.91430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06590043 565.91436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06590044 565.91436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06590045 565.91436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06590046 565.91436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06590047 565.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06590048 565.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06590049 565.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06590050 565.91442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06590051 565.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06590052 565.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06590053 565.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06590054 565.91448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06590055 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06590056 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06590057 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06590058 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06590059 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06590060 565.91455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06590061 565.91461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06590062 565.91461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06590063 565.91461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06590064 565.91461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06590065 565.91467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06590066 565.91467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06590067 565.91467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06590068 565.91467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06590069 565.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06590070 565.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06590071 565.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06590072 565.91473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06590073 565.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06590074 565.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06590075 565.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06590076 565.91479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06590077 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06590078 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06590079 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06590080 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06590081 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06590082 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06590083 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06590084 565.91485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06590085 565.91491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06590086 565.91491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06590087 565.91491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06590088 565.91491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06590089 565.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06590090 565.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06590091 565.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06590092 565.91497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06590093 565.91503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06590094 565.91503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06590095 565.91510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06590096 565.91510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06590097 565.91510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06590098 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06590099 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06590100 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06590101 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06590102 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06590103 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06590104 565.91516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06590105 565.91522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06590106 565.91522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06590107 565.91522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06590108 565.91522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06590109 565.91528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06590110 565.91528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06590111 565.91528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06590112 565.91528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06590113 565.91534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06590114 565.91534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06590115 565.91534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06590116 565.91534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06590117 565.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06590118 565.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06590119 565.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06590120 565.91540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06590121 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06590122 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06590123 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06590124 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06590125 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06590126 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06590127 565.91546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06590128 565.91552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06590129 565.91552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06590130 565.91552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06590131 565.91558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06590132 565.91558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06590133 565.91558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06590134 565.91558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06590135 565.91564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06590136 565.91564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06590137 565.91564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06590138 565.91564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06590139 565.91571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06590140 565.91571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06590141 565.91571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06590142 565.91571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06590143 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06590144 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06590145 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06590146 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06590147 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06590148 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06590149 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06590150 565.91577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06590151 565.91583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06590152 565.91583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06590153 565.91583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06590154 565.91589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06590155 565.91589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06590156 565.91589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06590157 565.91595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06590158 565.91595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06590159 565.91595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06590160 565.91595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06590161 565.91601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06590162 565.91601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06590163 565.91601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06590164 565.91601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06590165 565.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06590166 565.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06590167 565.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06590168 565.91607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06590169 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06590170 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06590171 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06590172 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06590173 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06590174 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06590175 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06590176 565.91613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06590177 565.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06590178 565.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06590179 565.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06590180 565.91619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06590181 565.91625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06590182 565.91625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06590183 565.91625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06590184 565.91625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06590185 565.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06590186 565.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06590187 565.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06590188 565.91632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06590189 565.91638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06590190 565.91638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06590191 565.91638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06590192 565.91638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06590193 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06590194 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06590195 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06590196 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06590197 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06590198 565.91644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06590199 565.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06590200 565.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06590201 565.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06590202 565.91650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06590203 565.91656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06590204 565.91656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06590205 565.91656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06590206 565.91656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06590207 565.91662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06590208 565.91662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06590209 565.91668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06590210 565.91668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06590211 565.91668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06590212 565.91668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06590213 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06590214 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06590215 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06590216 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06590217 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06590218 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06590219 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06590220 565.91674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06590221 565.91680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06590222 565.91680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06590223 565.91680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06590224 565.91680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06590225 565.91687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06590226 565.91687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06590227 565.91687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06590228 565.91687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06590229 565.91693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06590230 565.91693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06590231 565.91693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06590232 565.91693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06590233 565.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06590234 565.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06590235 565.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06590236 565.91699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06590237 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06590238 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06590239 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06590240 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06590241 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06590242 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06590243 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06590244 565.91705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06590245 565.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06590246 565.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06590247 565.91711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06590248 565.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06590249 565.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06590250 565.91717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06590251 565.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06590252 565.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06590253 565.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06590254 565.91723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06590255 565.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06590256 565.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06590257 565.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06590258 565.91729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06590259 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06590260 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06590261 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06590262 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06590263 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06590264 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06590265 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06590266 565.91735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06590267 565.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06590268 565.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06590269 565.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06590270 565.91741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06590271 565.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06590272 565.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06590273 565.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06590274 565.91748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06590275 565.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06590276 565.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06590277 565.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06590278 565.91754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06590279 565.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06590280 565.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06590281 565.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06590282 565.91760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06590283 565.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06590284 565.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06590285 565.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06590286 565.91766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06590287 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06590288 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06590289 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06590290 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06590291 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06590292 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06590293 565.91772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06590294 565.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06590295 565.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06590296 565.91778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06590297 565.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06590298 565.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06590299 565.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06590300 565.91784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06590301 565.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06590302 565.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06590303 565.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06590304 565.91790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06590305 565.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06590306 565.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06590307 565.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06590308 565.91796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06590309 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06590310 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06590311 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06590312 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06590313 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06590314 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06590315 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06590316 565.91802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06590317 565.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06590318 565.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06590319 565.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06590320 565.91809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06590321 565.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06590322 565.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06590323 565.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06590324 565.91815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06590325 565.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06590326 565.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06590327 565.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06590328 565.91821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06590329 565.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06590330 565.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06590331 565.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06590332 565.91827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06590333 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06590334 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06590335 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06590336 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06590337 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06590338 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06590339 565.91833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06590340 565.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06590341 565.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06590342 565.91839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06590343 565.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06590344 565.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06590345 565.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06590346 565.91845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06590347 565.91851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06590348 565.91851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06590349 565.91851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06590350 565.91851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06590351 565.91857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06590352 565.91857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06590353 565.91857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06590354 565.91857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06590355 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06590356 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06590357 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06590358 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06590359 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06590360 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06590361 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06590362 565.91864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06590363 565.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06590364 565.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06590365 565.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06590366 565.91870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06590367 565.91876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06590368 565.91876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06590369 565.91876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06590370 565.91876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06590371 565.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06590372 565.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06590373 565.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06590374 565.91882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06590375 565.91888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06590376 565.91888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06590377 565.91888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06590378 565.91888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06590379 565.91894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06590380 565.91894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06590381 565.91894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06590382 565.91894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06590383 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06590384 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06590385 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06590386 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06590387 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06590388 565.91900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06590389 565.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06590390 565.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06590391 565.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06590392 565.91906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06590393 565.91912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06590394 565.91912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06590395 565.91912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06590396 565.91912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06590397 565.91918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06590398 565.91918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06590399 565.91918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06590400 565.91918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06590401 565.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06590402 565.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06590403 565.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06590404 565.91925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06590405 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06590406 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06590407 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06590408 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06590409 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06590410 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06590411 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06590412 565.91931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06590413 565.91937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06590414 565.91937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06590415 565.91937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06590416 565.91937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06590417 565.91943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06590418 565.91943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06590419 565.91943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06590420 565.91943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06590421 565.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06590422 565.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06590423 565.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06590424 565.91949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06590425 565.91955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06590426 565.91955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06590427 565.91955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06590428 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06590429 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06590430 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06590431 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06590432 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06590433 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06590434 565.91961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06590435 565.91967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06590436 565.91967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06590437 565.91967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06590438 565.91967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06590439 565.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06590440 565.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06590441 565.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06590442 565.91973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06590443 565.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06590444 565.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06590445 565.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06590446 565.91979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06590447 565.91986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06590448 565.91986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06590449 565.91986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06590450 565.91986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06590451 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06590452 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06590453 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06590454 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06590455 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06590456 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06590457 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06590458 565.91992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06590459 565.91998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06590460 565.91998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06590461 565.91998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06590462 565.91998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06590463 565.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06590464 565.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06590465 565.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06590466 565.92004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06590467 565.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06590468 565.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06590469 565.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06590470 565.92010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06590471 565.92016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06590472 565.92016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06590473 565.92016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06590474 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06590475 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06590476 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06590477 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06590478 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06590479 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06590480 565.92022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06590481 565.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06590482 565.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06590483 565.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06590484 565.92028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06590485 565.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06590486 565.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06590487 565.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06590488 565.92034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06590489 565.92041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06590490 565.92041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06590491 565.92041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06590492 565.92041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06590493 565.92047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06590494 565.92047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06590495 565.92047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06590496 565.92047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06590497 565.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06590498 565.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06590499 565.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06590500 565.92053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06590501 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06590502 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06590503 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06590504 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06590505 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06590506 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06590507 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06590508 565.92059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06590509 565.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06590510 565.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06590511 565.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06590512 565.92065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06590513 565.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06590514 565.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06590515 565.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06590516 565.92071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06590517 565.92077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06590518 565.92077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06590519 565.92077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06590520 565.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06590521 565.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06590522 565.92083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06590523 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06590524 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06590525 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06590526 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06590527 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06590528 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06590529 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06590530 565.92089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06590531 565.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06590532 565.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06590533 565.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06590534 565.92095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06590535 565.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06590536 565.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06590537 565.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06590538 565.92102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06590539 565.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06590540 565.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06590541 565.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06590542 565.92108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06590543 565.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06590544 565.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06590545 565.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06590546 565.92114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06590547 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06590548 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06590549 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06590550 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06590551 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06590552 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06590553 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06590554 565.92120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06590555 565.92126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06590556 565.92126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06590557 565.92126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06590558 565.92126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06590559 565.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06590560 565.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06590561 565.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06590562 565.92132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06590563 565.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06590564 565.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06590565 565.92138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06590566 565.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06590567 565.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06590568 565.92144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06590569 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06590570 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06590571 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06590572 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06590573 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06590574 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06590575 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06590576 565.92150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06590577 565.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06590578 565.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06590579 565.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06590580 565.92156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06590581 565.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06590582 565.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06590583 565.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06590584 565.92163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06590585 565.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06590586 565.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06590587 565.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06590588 565.92169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06590589 565.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06590590 565.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06590591 565.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06590592 565.92175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06590593 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06590594 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06590595 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06590596 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06590597 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06590598 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06590599 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06590600 565.92181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06590601 565.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06590602 565.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06590603 565.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06590604 565.92187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06590605 565.92193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06590606 565.92193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06590607 565.92193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06590608 565.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06590609 565.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06590610 565.92199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06590611 565.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06590612 565.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06590613 565.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06590614 565.92205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06590615 565.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06590616 565.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06590617 565.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06590618 565.92211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06591807 565.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06591808 565.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06591809 565.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06591810 565.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06591811 565.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06591812 565.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06591813 565.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06591814 565.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06591815 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06591816 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06591817 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06591818 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06591819 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06591820 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06591821 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06591822 565.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06591823 565.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06591824 565.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06591825 565.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06591826 565.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06591827 565.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06591828 565.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06591829 565.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06591830 565.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06591831 565.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06591832 565.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06591833 565.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06591834 565.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06591835 565.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06591836 565.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06591837 565.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06591838 565.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06591839 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06591840 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06591841 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06591842 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06591843 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06591844 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06591845 565.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06591846 565.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06591847 565.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06591848 565.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06591849 565.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06591850 565.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06594373 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -06594374 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc38 -06594375 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -06594376 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc48 -06594377 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -06594378 565.97393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc58 -06594379 565.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -06594380 565.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc68 -06594381 565.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -06594382 565.97399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc78 -06594383 565.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -06594384 565.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc88 -06594385 565.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -06594386 565.97406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdc98 -06594387 565.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -06594388 565.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdca8 -06594389 565.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -06594390 565.97412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcb8 -06594391 565.97418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -06594392 565.97418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcc8 -06594393 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -06594394 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcd8 -06594395 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -06594396 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdce8 -06594397 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -06594398 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdcf8 -06594399 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -06594400 565.97424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd08 -06594401 565.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -06594402 565.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd18 -06594403 565.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -06594404 565.97430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd28 -06594405 565.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -06594406 565.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd38 -06594407 565.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -06594408 565.97436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd48 -06594409 565.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -06594410 565.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd58 -06594411 565.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -06594412 565.97442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd68 -06594413 565.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -06594414 565.97448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd78 -06594415 565.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -06594416 565.97454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xdd88 -06596801 566.00756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12818 -06596802 566.00756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12818 -06596803 566.00756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12828 -06596804 566.00756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12828 -06596805 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12838 -06596806 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12838 -06596807 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12848 -06596808 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12848 -06596809 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12858 -06596810 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12858 -06596811 566.00762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12868 -06596812 566.00769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12868 -06596813 566.00769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12878 -06596814 566.00769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12878 -06596815 566.00775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12888 -06596816 566.00775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12888 -06596817 566.00775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12898 -06596818 566.00775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12898 -06596819 566.00781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a8 -06596820 566.00781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128a8 -06596821 566.00781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b8 -06596822 566.00781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128b8 -06596823 566.00787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c8 -06596824 566.00787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128c8 -06596825 566.00787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d8 -06596826 566.00787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128d8 -06596827 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -06596828 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128e8 -06596829 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -06596830 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x128f8 -06596831 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -06596832 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12908 -06596833 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -06596834 566.00793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12918 -06596835 566.00799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -06596836 566.00799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12928 -06596837 566.00799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -06596838 566.00799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12938 -06596839 566.00805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -06596840 566.00805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12948 -06596841 566.00805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -06596842 566.00805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12958 -06596843 566.00811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -06596844 566.00811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12968 -06599093 566.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -06599094 566.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fb8 -06599095 566.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -06599096 566.03906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fc8 -06599097 566.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -06599098 566.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fd8 -06599099 566.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -06599100 566.03912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16fe8 -06599101 566.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -06599102 566.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ff8 -06599103 566.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -06599104 566.03918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17008 -06599105 566.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -06599106 566.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17018 -06599107 566.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -06599108 566.03924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17028 -06599109 566.03930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -06599110 566.03930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17038 -06599111 566.03930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -06599112 566.03930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17048 -06599113 566.03936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -06599114 566.03936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17058 -06599115 566.03936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -06599116 566.03936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17068 -06599117 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -06599118 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17078 -06599119 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -06599120 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17088 -06599121 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -06599122 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17098 -06599123 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -06599124 566.03942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170a8 -06599125 566.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -06599126 566.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170b8 -06599127 566.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -06599128 566.03948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170c8 -06599129 566.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06599130 566.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170d8 -06599131 566.03955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06599132 566.03961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170e8 -06599133 566.03961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06599134 566.03961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x170f8 -06599135 566.03967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06599136 566.03967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17108 -06601543 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc48 -06601544 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc48 -06601545 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc58 -06601546 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc58 -06601547 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc68 -06601548 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc68 -06601549 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc78 -06601550 566.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc78 -06601551 566.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc88 -06601552 566.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc88 -06601553 566.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc98 -06601554 566.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc98 -06601555 566.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca8 -06601556 566.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bca8 -06601557 566.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb8 -06601558 566.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcb8 -06601559 566.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc8 -06601560 566.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcc8 -06601561 566.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd8 -06601562 566.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcd8 -06601563 566.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce8 -06601564 566.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bce8 -06601565 566.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf8 -06601566 566.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bcf8 -06601567 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd08 -06601568 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd08 -06601569 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd18 -06601570 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd18 -06601571 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd28 -06601572 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd28 -06601573 566.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd38 -06601574 566.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd38 -06601575 566.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd48 -06601576 566.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd48 -06601577 566.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd58 -06601578 566.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd58 -06601579 566.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd68 -06601580 566.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd68 -06601581 566.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd78 -06601582 566.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd78 -06601583 566.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd88 -06601584 566.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd88 -06601585 566.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd98 -06601586 566.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd98 -06603953 566.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20798 -06603954 566.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20798 -06603955 566.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a8 -06603956 566.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a8 -06603957 566.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -06603958 566.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b8 -06603959 566.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -06603960 566.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207c8 -06603961 566.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -06603962 566.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207d8 -06603963 566.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -06603964 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207e8 -06603965 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -06603966 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -06603967 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -06603968 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -06603969 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -06603970 566.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -06603971 566.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -06603972 566.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -06603973 566.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -06603974 566.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -06603975 566.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -06603976 566.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -06603977 566.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -06603978 566.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -06603979 566.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -06603980 566.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -06603981 566.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -06603982 566.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -06603983 566.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -06603984 566.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -06603985 566.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -06603986 566.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -06603987 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -06603988 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -06603989 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -06603990 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -06603991 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -06603992 566.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -06603993 566.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -06603994 566.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -06603995 566.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -06603996 566.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -06606293 566.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -06606294 566.13781738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250b8 -06606295 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -06606296 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250c8 -06606297 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -06606298 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250d8 -06606299 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -06606300 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250e8 -06606301 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -06606302 566.13787842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x250f8 -06606303 566.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -06606304 566.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25108 -06606305 566.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -06606306 566.13793945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25118 -06606307 566.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -06606308 566.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25128 -06606309 566.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -06606310 566.13800049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -06606311 566.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -06606312 566.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -06606313 566.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -06606314 566.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -06606315 566.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -06606316 566.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -06606317 566.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -06606318 566.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -06606319 566.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -06606320 566.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -06606321 566.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -06606322 566.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -06606323 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -06606324 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -06606325 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -06606326 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -06606327 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -06606328 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -06606329 566.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -06606330 566.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -06606331 566.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -06606332 566.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -06606333 566.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -06606334 566.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -06606335 566.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -06606336 566.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -06608997 566.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a538 -06608998 566.17504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a538 -06608999 566.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a548 -06609000 566.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a548 -06609001 566.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a558 -06609002 566.17510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a558 -06609003 566.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a568 -06609004 566.17517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a568 -06609005 566.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a578 -06609006 566.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a578 -06609007 566.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a588 -06609008 566.17523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a588 -06609009 566.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a598 -06609010 566.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a598 -06609011 566.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a8 -06609012 566.17529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5a8 -06609013 566.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b8 -06609014 566.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5b8 -06609015 566.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c8 -06609016 566.17535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5c8 -06609017 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d8 -06609018 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5d8 -06609019 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e8 -06609020 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5e8 -06609021 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f8 -06609022 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a5f8 -06609023 566.17541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a608 -06609024 566.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a608 -06609025 566.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a618 -06609026 566.17547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a618 -06609027 566.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a628 -06609028 566.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a628 -06609029 566.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a638 -06609030 566.17553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a638 -06609031 566.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a648 -06609032 566.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a648 -06609033 566.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a658 -06609034 566.17559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a658 -06609035 566.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a668 -06609036 566.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a668 -06609037 566.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a678 -06609038 566.17565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a678 -06609039 566.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a688 -06609040 566.17572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a688 -06611477 566.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -06611478 566.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2b8 -06611479 566.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -06611480 566.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2c8 -06611481 566.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -06611482 566.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2d8 -06611483 566.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -06611484 566.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2e8 -06611485 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -06611486 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f2f8 -06611487 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -06611488 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f308 -06611489 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -06611490 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f318 -06611491 566.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -06611492 566.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f328 -06611493 566.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -06611494 566.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f338 -06611495 566.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -06611496 566.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f348 -06611497 566.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -06611498 566.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f358 -06611499 566.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -06611500 566.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f368 -06611501 566.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -06611502 566.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f378 -06611503 566.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -06611504 566.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f388 -06611505 566.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -06611506 566.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f398 -06611507 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -06611508 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3a8 -06611509 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -06611510 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3b8 -06611511 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -06611512 566.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3c8 -06611513 566.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -06611514 566.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3d8 -06611515 566.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -06611516 566.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3e8 -06611517 566.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -06611518 566.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f3f8 -06611519 566.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -06611520 566.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f408 -06613717 566.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b8 -06613718 566.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338b8 -06613719 566.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c8 -06613720 566.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338c8 -06613721 566.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d8 -06613722 566.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338d8 -06613723 566.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e8 -06613724 566.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338e8 -06613725 566.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f8 -06613726 566.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x338f8 -06613727 566.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33908 -06613728 566.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33908 -06613729 566.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33918 -06613730 566.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33918 -06613731 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33928 -06613732 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33928 -06613733 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33938 -06613734 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33938 -06613735 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33948 -06613736 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33948 -06613737 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33958 -06613738 566.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33958 -06613739 566.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33968 -06613740 566.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33968 -06613741 566.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33978 -06613742 566.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33978 -06613743 566.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33988 -06613744 566.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33988 -06613745 566.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33998 -06613746 566.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33998 -06613747 566.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -06613748 566.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -06613749 566.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -06613750 566.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -06613751 566.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -06613752 566.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -06613753 566.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -06613754 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -06613755 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e8 -06613756 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e8 -06613757 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f8 -06613758 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f8 -06613759 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a08 -06613760 566.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a08 -06628391 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -06628392 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50348 -06628393 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -06628394 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50358 -06628395 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -06628396 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50368 -06628397 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -06628398 566.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50378 -06628399 566.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -06628400 566.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50388 -06628401 566.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -06628402 566.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50398 -06628403 566.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a8 -06628404 566.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503a8 -06628405 566.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b8 -06628406 566.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503b8 -06628407 566.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c8 -06628408 566.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503c8 -06628409 566.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d8 -06628410 566.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503d8 -06628411 566.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e8 -06628412 566.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503e8 -06628413 566.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f8 -06628414 566.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x503f8 -06628415 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50408 -06628416 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50408 -06628417 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50418 -06628418 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50418 -06628419 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50428 -06628420 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50428 -06628421 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50438 -06628422 566.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50438 -06628423 566.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50448 -06628424 566.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50448 -06628425 566.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50458 -06628426 566.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50458 -06628427 566.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50468 -06628428 566.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50468 -06628429 566.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50478 -06628430 566.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50478 -06628431 566.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50488 -06628432 566.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50488 -06628433 566.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50498 -06628434 566.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50498 -06629733 566.51568604 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06629734 566.53509521 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629735 566.53509521 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629736 567.53106689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629737 567.53112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629738 567.53112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629739 567.53112793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06629740 567.53125000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629741 567.53125000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06629742 567.53131104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629743 567.53131104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06629744 568.53735352 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06629745 568.55816650 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629746 568.55816650 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629747 570.03735352 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629748 570.03735352 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629749 570.03741455 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629750 570.03741455 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06629751 570.03747559 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629752 570.03747559 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06629753 570.03759766 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06629754 570.03759766 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06629755 570.55987549 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06629756 570.58135986 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629757 570.58135986 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06629758 571.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06629759 571.46038818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06629760 571.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06629761 571.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06629762 571.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06629763 571.46044922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06629764 571.46051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06629765 571.46051025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06629766 571.46057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06629767 571.46057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06629768 571.46057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06629769 571.46057129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06629770 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06629771 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06629772 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06629773 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06629774 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06629775 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06629776 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06629777 571.46063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06629778 571.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06629779 571.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06629780 571.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06629781 571.46069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06629782 571.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06629783 571.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06629784 571.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06629785 571.46075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06629786 571.46081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06629787 571.46081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06629788 571.46081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06629789 571.46081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06629790 571.46087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06629791 571.46087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06629792 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06629793 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06629794 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06629795 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06629796 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06629797 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06629798 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06629799 571.46093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06629800 571.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06629801 571.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06629802 571.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06629803 571.46099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06629804 571.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06629805 571.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06629806 571.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06629807 571.46105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06629808 571.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06629809 571.46112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06629810 571.46118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06629811 571.46118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06629812 571.46118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06629813 571.46118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06629814 571.46124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06629815 571.46124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06629816 571.46124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06629817 571.46124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06629818 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06629819 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06629820 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06629821 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06629822 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06629823 571.46130371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06629824 571.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06629825 571.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06629826 571.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06629827 571.46136475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06629828 571.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06629829 571.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06629830 571.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06629831 571.46142578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06629832 571.46148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06629833 571.46148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06629834 571.46148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06629835 571.46148682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06629836 571.46154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06629837 571.46154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06629838 571.46154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06629839 571.46154785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06629840 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06629841 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06629842 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06629843 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06629844 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06629845 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06629846 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06629847 571.46160889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06629848 571.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06629849 571.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06629850 571.46166992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06629851 571.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06629852 571.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06629853 571.46173096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06629854 571.46179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06629855 571.46179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06629856 571.46179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06629857 571.46179199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06629858 571.46185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06629859 571.46185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06629860 571.46185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06629861 571.46185303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06629862 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06629863 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06629864 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06629865 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06629866 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06629867 571.46191406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06629868 571.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06629869 571.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06629870 571.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06629871 571.46197510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06629872 571.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06629873 571.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06629874 571.46203613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06629875 571.46209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06629876 571.46209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06629877 571.46209717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06629878 571.46215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06629879 571.46215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06629880 571.46215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06629881 571.46215820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06629882 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06629883 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06629884 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06629885 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06629886 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06629887 571.46221924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06629888 571.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06629889 571.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06629890 571.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06629891 571.46228027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06629892 571.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06629893 571.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06629894 571.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06629895 571.46234131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06629896 571.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06629897 571.46240234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06629898 571.46246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06629899 571.46246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06629900 571.46246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06629901 571.46246338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06629902 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06629903 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06629904 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06629905 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06629906 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06629907 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06629908 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06629909 571.46252441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06629910 571.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06629911 571.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06629912 571.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06629913 571.46258545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06629914 571.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06629915 571.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06629916 571.46264648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06629917 571.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06629918 571.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06629919 571.46270752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06629920 571.46276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06629921 571.46276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06629922 571.46276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06629923 571.46276855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06629924 571.46282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06629925 571.46282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06629926 571.46282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06629927 571.46282959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06629928 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06629929 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06629930 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06629931 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06629932 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06629933 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06629934 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06629935 571.46289063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06629936 571.46295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06629937 571.46295166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06629938 571.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06629939 571.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06629940 571.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06629941 571.46301270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06629942 571.46307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06629943 571.46307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06629944 571.46307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06629945 571.46307373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06629946 571.46313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06629947 571.46313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06629948 571.46313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06629949 571.46313477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06629950 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06629951 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06629952 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06629953 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06629954 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06629955 571.46319580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06629956 571.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06629957 571.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06629958 571.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06629959 571.46325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06629960 571.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06629961 571.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06629962 571.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06629963 571.46331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06629964 571.46337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06629965 571.46337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06629966 571.46337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06629967 571.46337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06629968 571.46343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06629969 571.46343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06629970 571.46343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06629971 571.46343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06629972 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06629973 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06629974 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06629975 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06629976 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06629977 571.46350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06629978 571.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06629979 571.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06629980 571.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06629981 571.46356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06629982 571.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06629983 571.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06629984 571.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06629985 571.46362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06629986 571.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06629987 571.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06629988 571.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06629989 571.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06629990 571.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06629991 571.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06629992 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06629993 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06629994 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06629995 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06629996 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06629997 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06629998 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06629999 571.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06630000 571.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06630001 571.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06630002 571.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06630003 571.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06630004 571.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06630005 571.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06630006 571.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06630007 571.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06630008 571.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06630009 571.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06630010 571.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06630011 571.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06630012 571.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06630013 571.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06630014 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06630015 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06630016 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06630017 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06630018 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06630019 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06630020 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06630021 571.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06630022 571.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06630023 571.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06630024 571.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06630025 571.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06630026 571.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06630027 571.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06630028 571.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06630029 571.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06630030 571.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06630031 571.46429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06630032 571.46435547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06630033 571.46435547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06630034 571.46435547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06630035 571.46435547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06630036 571.46441650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06630037 571.46441650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06630038 571.46441650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06630039 571.46441650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06630040 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06630041 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06630042 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06630043 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06630044 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06630045 571.46447754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06630046 571.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06630047 571.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06630048 571.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06630049 571.46453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06630050 571.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06630051 571.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06630052 571.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06630053 571.46459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06630054 571.46466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06630055 571.46466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06630056 571.46466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06630057 571.46466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06630058 571.46472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06630059 571.46472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06630060 571.46472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06630061 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06630062 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06630063 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06630064 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06630065 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06630066 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06630067 571.46478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06630068 571.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06630069 571.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06630070 571.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06630071 571.46484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06630072 571.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06630073 571.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06630074 571.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06630075 571.46490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06630076 571.46496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06630077 571.46496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06630078 571.46502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06630079 571.46502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06630080 571.46502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06630081 571.46502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06630082 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06630083 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06630084 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06630085 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06630086 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06630087 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06630088 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06630089 571.46508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06630090 571.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06630091 571.46514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06630092 571.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06630093 571.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06630094 571.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06630095 571.46520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06630096 571.46527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06630097 571.46527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06630098 571.46527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06630099 571.46527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06630100 571.46533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06630101 571.46533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06630102 571.46533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06630103 571.46533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06630104 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06630105 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06630106 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06630107 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06630108 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06630109 571.46539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06630110 571.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06630111 571.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06630112 571.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06630113 571.46545410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06630114 571.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06630115 571.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06630116 571.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06630117 571.46551514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06630118 571.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06630119 571.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06630120 571.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06630121 571.46557617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06630122 571.46563721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06630123 571.46563721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06630124 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06630125 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06630126 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06630127 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06630128 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06630129 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06630130 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06630131 571.46569824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06630132 571.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06630133 571.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06630134 571.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06630135 571.46575928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06630136 571.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06630137 571.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06630138 571.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06630139 571.46582031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06630140 571.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06630141 571.46588135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06630142 571.46594238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06630143 571.46594238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06630144 571.46594238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06630145 571.46594238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06630146 571.46600342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06630147 571.46600342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06630148 571.46600342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06630149 571.46600342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06630150 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06630151 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06630152 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06630153 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06630154 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06630155 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06630156 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06630157 571.46606445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06630158 571.46612549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06630159 571.46612549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06630160 571.46612549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06630161 571.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06630162 571.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06630163 571.46618652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06630164 571.46624756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06630165 571.46624756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06630166 571.46624756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06630167 571.46624756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06630168 571.46630859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06630169 571.46630859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06630170 571.46630859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06630171 571.46630859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06630172 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06630173 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06630174 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06630175 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06630176 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06630177 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06630178 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06630179 571.46636963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06630180 571.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06630181 571.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06630182 571.46643066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06630183 571.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06630184 571.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06630185 571.46649170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06630186 571.46655273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06630187 571.46655273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06630188 571.46655273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06630189 571.46655273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06630190 571.46661377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06630191 571.46661377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06630192 571.46661377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06630193 571.46661377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06630194 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06630195 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06630196 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06630197 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06630198 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06630199 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06630200 571.46667480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06630201 571.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06630202 571.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06630203 571.46673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06630204 571.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06630205 571.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06630206 571.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06630207 571.46679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06630208 571.46685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06630209 571.46685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06630210 571.46685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06630211 571.46685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06630212 571.46691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06630213 571.46691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06630214 571.46691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06630215 571.46691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06630216 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06630217 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06630218 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06630219 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06630220 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06630221 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06630222 571.46697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06630223 571.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06630224 571.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06630225 571.46704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06630226 571.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06630227 571.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06630228 571.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06630229 571.46710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06630230 571.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06630231 571.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06630232 571.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06630233 571.46716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06630234 571.46722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06630235 571.46722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06630236 571.46722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06630237 571.46722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06630238 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06630239 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06630240 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06630241 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06630242 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06630243 571.46728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06630244 571.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06630245 571.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06630246 571.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06630247 571.46734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06630248 571.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06630249 571.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06630250 571.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06630251 571.46740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06630252 571.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06630253 571.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06630254 571.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06630255 571.46746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06630256 571.46752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06630257 571.46752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06630258 571.46752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06630259 571.46752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06630260 571.46759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06630261 571.46759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06630262 571.46759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06630263 571.46759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06630264 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06630265 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06630266 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06630267 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06630268 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06630269 571.46765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06630270 571.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06630271 571.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06630272 571.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06630273 571.46771240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06630274 571.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06630275 571.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06630276 571.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06630277 571.46777344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06630278 571.46783447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06630279 571.46783447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06630280 571.46783447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06630281 571.46783447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06630282 571.46789551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06630283 571.46789551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06630284 571.46789551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06630285 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06630286 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06630287 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06630288 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06630289 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06630290 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06630291 571.46795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06630292 571.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06630293 571.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06630294 571.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06630295 571.46801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06630296 571.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06630297 571.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06630298 571.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06630299 571.46807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06630300 571.46813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06630301 571.46813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06630302 571.46813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06630303 571.46813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06630304 571.46820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06630305 571.46820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06630306 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06630307 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06630308 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06630309 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06630310 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06630311 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06630312 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06630313 571.46826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06630314 571.46832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06630315 571.46832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06630316 571.46832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06630317 571.46832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06630318 571.46838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06630319 571.46838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06630320 571.46838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06630321 571.46838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06630322 571.46844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06630323 571.46844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06630324 571.46844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06630325 571.46850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06630326 571.46850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06630327 571.46850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06630328 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06630329 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06630330 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06630331 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06630332 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06630333 571.46856689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06630334 571.46862793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06630335 571.46862793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06630336 571.46862793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06630337 571.46862793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06630338 571.46868896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06630339 571.46868896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06630340 571.46868896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06630341 571.46868896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06630342 571.46875000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06630343 571.46875000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06630344 571.46875000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06630345 571.46875000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06630346 571.46881104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06630347 571.46881104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06630348 571.46881104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06630349 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06630350 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06630351 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06630352 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06630353 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06630354 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06630355 571.46887207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06630356 571.46893311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06630357 571.46893311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06630358 571.46893311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06630359 571.46893311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06630360 571.46899414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06630361 571.46899414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06630362 571.46899414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06630363 571.46899414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06630364 571.46905518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06630365 571.46905518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06630366 571.46905518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06630367 571.46905518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06630368 571.46911621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06630369 571.46911621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06630370 571.46911621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06630371 571.46917725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06630372 571.46917725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06630373 571.46917725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06630374 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06630375 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06630376 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06630377 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06630378 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06630379 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06630380 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06630381 571.46923828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06630382 571.46929932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06630383 571.46929932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06630384 571.46929932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06630385 571.46929932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06630386 571.46936035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06630387 571.46936035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06630388 571.46936035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06630389 571.46942139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06630390 571.46942139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06630391 571.46942139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06630392 571.46948242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06630393 571.46948242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06630394 571.46948242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06630395 571.46948242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06630396 571.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06630397 571.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06630398 571.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06630399 571.46954346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06630400 571.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06630401 571.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06630402 571.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06630403 571.46960449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06630404 571.46966553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06630405 571.46966553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06630406 571.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06630407 571.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06630408 571.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06630409 571.46972656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06630410 571.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06630411 571.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06630412 571.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06630413 571.46978760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06630414 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06630415 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06630416 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06630417 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06630418 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06630419 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06630420 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06630421 571.46984863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06630422 571.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06630423 571.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06630424 571.46990967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06630425 571.46997070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06630426 571.46997070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06630427 571.46997070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06630428 571.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06630429 571.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06630430 571.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06630431 571.47003174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06630432 571.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06630433 571.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06630434 571.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06630435 571.47009277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06630436 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06630437 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06630438 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06630439 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06630440 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06630441 571.47015381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06630442 571.47021484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06630443 571.47021484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06630444 571.47027588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06630445 571.47027588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06630446 571.47027588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06630447 571.47027588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06630448 571.47033691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06630449 571.47033691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06630450 571.47033691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06630451 571.47033691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06630452 571.47039795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06630453 571.47039795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06630454 571.47045898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06630455 571.47045898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06630456 571.47045898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06630457 571.47045898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06630458 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06630459 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06630460 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06630461 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06630462 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06630463 571.47052002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06630464 571.47058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06630465 571.47058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06630466 571.47058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06630467 571.47058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06630468 571.47064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06630469 571.47064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06630470 571.47070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06630471 571.47070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06630472 571.47070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06630473 571.47076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06630474 571.47076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06630475 571.47076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06630476 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06630477 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06630478 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06630479 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06630480 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06630481 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06630482 571.47082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06630483 571.47088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06630484 571.47088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06630485 571.47088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06630486 571.47094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06630487 571.47094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06630488 571.47094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06630489 571.47094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06630490 571.47100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06630491 571.47100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06630492 571.47100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06630493 571.47100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06630494 571.47106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06630495 571.47106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06630496 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06630497 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06630498 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06630499 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06630500 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06630501 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06630502 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06630503 571.47113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06630504 571.47119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06630505 571.47119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06630506 571.47119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06630507 571.47119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06630508 571.47125244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06630509 571.47125244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06630510 571.47131348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06630511 571.47131348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06630512 571.47137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06630513 571.47137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06630514 571.47137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06630515 571.47137451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06630516 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06630517 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06630518 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06630519 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06630520 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06630521 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06630522 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06630523 571.47143555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06630524 571.47149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06630525 571.47149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06630526 571.47149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06630527 571.47149658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06630528 571.47155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06630529 571.47155762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06630530 571.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06630531 571.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06630532 571.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06630533 571.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06630534 571.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06630535 571.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06630536 571.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06630537 571.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06630538 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06630539 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06630540 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06630541 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06630542 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06630543 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06630544 571.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06630545 571.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06630546 571.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06630547 571.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06630548 571.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06630549 571.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06630550 571.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06630551 571.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06630552 571.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06630553 571.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06630554 571.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06630555 571.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06630556 571.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06630557 571.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06630558 571.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06630559 571.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06630560 571.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06630561 571.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06630562 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06630563 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06630564 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06630565 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06630566 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06630567 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06630568 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06630569 571.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06630570 571.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06630571 571.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06630572 571.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06630573 571.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06630574 571.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06630575 571.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06630576 571.47229004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06630577 571.47229004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06630578 571.47229004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06630579 571.47229004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06630580 571.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06630581 571.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06630582 571.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06630583 571.47235107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06630584 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06630585 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06630586 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06630587 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06630588 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06630589 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06630590 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06630591 571.47241211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06630592 571.47247314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06630593 571.47247314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06630594 571.47253418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06630595 571.47253418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06630596 571.47253418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06630597 571.47253418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06630598 571.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06630599 571.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06630600 571.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06630601 571.47259521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06630602 571.47265625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06630603 571.47265625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06630604 571.47265625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06630605 571.47265625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06630606 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06630607 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06630608 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06630609 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06630610 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06630611 571.47271729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06630612 571.47277832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06630613 571.47277832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06630614 571.47277832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06630615 571.47277832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06630616 571.47283936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06630617 571.47283936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06630618 571.47283936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06630619 571.47283936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06630620 571.47290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06630621 571.47290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06630622 571.47290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06630623 571.47290039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06630624 571.47296143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06630625 571.47296143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06630626 571.47296143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06630627 571.47296143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06630628 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06630629 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06630630 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06630631 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06630632 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06630633 571.47302246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06630634 571.47308350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06630635 571.47308350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06630636 571.47308350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06630637 571.47308350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06630638 571.47314453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06630639 571.47314453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06630640 571.47314453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06630641 571.47314453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06630642 571.47320557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06630643 571.47320557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06630644 571.47320557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06630645 571.47326660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06630646 571.47326660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06630647 571.47326660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06630648 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06630649 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06630650 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06630651 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06630652 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06630653 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06630654 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06630655 571.47332764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06630656 571.47338867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06630657 571.47338867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06630658 571.47338867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06630659 571.47338867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06630660 571.47344971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06630661 571.47344971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06630662 571.47344971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06630663 571.47351074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06630664 571.47351074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06630665 571.47351074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06630666 571.47357178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06630667 571.47357178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06630668 571.47357178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06630669 571.47357178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06630670 571.47363281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06630671 571.47363281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06630672 571.47363281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06630673 571.47363281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06630674 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06630675 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06630676 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06630677 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06630678 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06630679 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06630680 571.47369385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06630681 571.47375488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06630682 571.47375488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06630683 571.47375488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06630684 571.47381592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06630685 571.47381592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06630686 571.47381592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06630687 571.47381592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06630688 571.47387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06630689 571.47387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06630690 571.47387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06630691 571.47387695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06630692 571.47393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06630693 571.47393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06630694 571.47393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06630695 571.47393799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06630696 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06630697 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06630698 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06630699 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06630700 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06630701 571.47399902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06630702 571.47406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06630703 571.47406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06630704 571.47406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06630705 571.47406006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06630706 571.47412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06630707 571.47412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06630708 571.47412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06630709 571.47412109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06630710 571.47418213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06630711 571.47418213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06630712 571.47418213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06630713 571.47418213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06630714 571.47424316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06630715 571.47424316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06630716 571.47424316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06630717 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06630718 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06630719 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06630720 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06630721 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06630722 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06630723 571.47430420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06630724 571.47436523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06630725 571.47436523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06630726 571.47436523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06630727 571.47436523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06630728 571.47442627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06630729 571.47442627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06630730 571.47442627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06630731 571.47442627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06630732 571.47448730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06630733 571.47448730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06630734 571.47448730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06630735 571.47448730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06630736 571.47454834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06630737 571.47454834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06630738 571.47454834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06630739 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06630740 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06630741 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06630742 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06630743 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06630744 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06630745 571.47460938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06630746 571.47467041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06630747 571.47467041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06630748 571.47467041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06630749 571.47467041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06630750 571.47473145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06630751 571.47473145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06630752 571.47473145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06630753 571.47473145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06630754 571.47479248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06630755 571.47479248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06630756 571.47479248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06630757 571.47479248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06630758 571.47485352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06630759 571.47485352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06630760 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06630761 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06630762 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06630763 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06630764 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06630765 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06630766 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06630767 571.47491455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06630768 571.47497559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06630769 571.47497559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06630770 571.47497559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06630771 571.47497559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06630772 571.47503662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06630773 571.47503662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06630774 571.47503662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06630775 571.47503662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06630776 571.47509766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06630777 571.47509766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06630778 571.47509766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06630779 571.47509766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06630780 571.47515869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06630781 571.47515869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06630782 571.47521973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06630783 571.47521973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06630784 571.47521973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06630785 571.47521973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06630786 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06630787 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06630788 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06630789 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06630790 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06630791 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06630792 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06630793 571.47528076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06630794 571.47534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06630795 571.47534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06630796 571.47534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06630797 571.47534180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06630798 571.47540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06630799 571.47540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06630800 571.47540283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06630801 571.47546387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06630802 571.47546387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06630803 571.47546387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06630804 571.47552490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06630805 571.47552490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06630806 571.47552490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06630807 571.47552490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06630808 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06630809 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06630810 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06630811 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06630812 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06630813 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06630814 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06630815 571.47558594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06630816 571.47564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06630817 571.47564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06630818 571.47564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06630819 571.47564697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06630820 571.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06630821 571.47570801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06630822 571.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06630823 571.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06630824 571.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06630825 571.47576904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06630826 571.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06630827 571.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06630828 571.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06630829 571.47583008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06630830 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06630831 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06630832 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06630833 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06630834 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06630835 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06630836 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06630837 571.47589111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06630838 571.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06630839 571.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06630840 571.47595215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06630841 571.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06630842 571.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06630843 571.47601318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06630844 571.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06630845 571.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06630846 571.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06630847 571.47607422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06630848 571.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06630849 571.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06630850 571.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06630851 571.47613525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06630852 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06630853 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06630854 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06630855 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06630856 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06630857 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06630858 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06630859 571.47619629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06630860 571.47625732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06630861 571.47625732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06630862 571.47631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06630863 571.47631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06630864 571.47631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06630865 571.47631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06630866 571.47637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06630867 571.47637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06630868 571.47637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06630869 571.47637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06630870 571.47644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06630871 571.47644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06630872 571.47644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06630873 571.47644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06630874 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06630875 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06630876 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06630877 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06630878 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06630879 571.47650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06630880 571.47656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06630881 571.47656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06630882 571.47656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06630883 571.47656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06630884 571.47662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06630885 571.47662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06630886 571.47662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06630887 571.47662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06630888 571.47668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06630889 571.47668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06630890 571.47668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06630891 571.47668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06630892 571.47674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06630893 571.47674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06630894 571.47674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06630895 571.47674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06630896 571.47680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06630897 571.47680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06630898 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06630899 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06630900 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06630901 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06630902 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06630903 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06630904 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06630905 571.47686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06630906 571.47692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06630907 571.47692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06630908 571.47692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06630909 571.47692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06630910 571.47698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06630911 571.47698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06630912 571.47698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06630913 571.47698975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06630914 571.47705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06630915 571.47705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06630916 571.47705078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06630917 571.47711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06630918 571.47711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06630919 571.47711182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06630920 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06630921 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06630922 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06630923 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06630924 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06630925 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06630926 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06630927 571.47717285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06630928 571.47723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06630929 571.47723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06630930 571.47723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06630931 571.47723389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06630932 571.47729492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06630933 571.47729492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06630934 571.47735596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06630935 571.47735596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06630936 571.47735596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06630937 571.47735596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06630938 571.47741699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06630939 571.47741699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06630940 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06630941 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06630942 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06630943 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06630944 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06630945 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06630946 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06630947 571.47747803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06630948 571.47753906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06630949 571.47753906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06630950 571.47753906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06630951 571.47753906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06630952 571.47760010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06630953 571.47760010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06630954 571.47760010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06630955 571.47766113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06630956 571.47766113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06630957 571.47766113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06630958 571.47772217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06630959 571.47772217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06630960 571.47772217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06630961 571.47772217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06630962 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06630963 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06630964 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06630965 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06630966 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06630967 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06630968 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06630969 571.47778320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06630970 571.47784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06630971 571.47784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06630972 571.47784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06630973 571.47784424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06630974 571.47790527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06630975 571.47790527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06630976 571.47790527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06630977 571.47796631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06630978 571.47796631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06630979 571.47796631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06630980 571.47802734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06630981 571.47802734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06630982 571.47802734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06630983 571.47802734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06630984 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06630985 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06630986 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06630987 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06630988 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06630989 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06630990 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06630991 571.47808838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06630992 571.47814941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06630993 571.47814941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06630994 571.47814941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06630995 571.47821045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06630996 571.47821045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06630997 571.47821045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06630998 571.47827148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06630999 571.47827148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06631000 571.47827148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06631001 571.47827148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06631002 571.47833252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06631003 571.47833252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06631004 571.47833252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06631005 571.47833252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06631006 571.47839355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06631007 571.47839355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06631008 571.47839355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06631009 571.47839355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06631010 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06631011 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06631012 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06631013 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06631014 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06631015 571.47845459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06631016 571.47851563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06631017 571.47851563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06631018 571.47851563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06631019 571.47851563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06631020 571.47857666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06631021 571.47857666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06631022 571.47857666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06631023 571.47857666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06631024 571.47863770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06631025 571.47863770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06631026 571.47863770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06631027 571.47863770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06631028 571.47869873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06631029 571.47869873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06631030 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06631031 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06631032 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06631033 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06631034 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06631035 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06631036 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06631037 571.47875977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06631038 571.47882080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06631039 571.47882080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06631040 571.47882080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06631041 571.47882080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06631042 571.47888184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06631043 571.47888184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06631044 571.47894287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06631045 571.47894287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06631046 571.47894287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06631047 571.47894287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06631048 571.47900391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06631049 571.47900391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06631050 571.47900391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06631051 571.47900391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06631052 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06631053 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06631054 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06631055 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06631056 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06631057 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06631058 571.47906494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06631059 571.47912598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06631060 571.47912598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06631061 571.47912598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06631062 571.47918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06631063 571.47918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06631064 571.47918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06631065 571.47918701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06631066 571.47924805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06631067 571.47924805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06631068 571.47924805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06631069 571.47924805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06631070 571.47930908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06631071 571.47930908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06631072 571.47930908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06631073 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06631074 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06631075 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06631076 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06631077 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06631078 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06631079 571.47937012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06631080 571.47943115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06631081 571.47943115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06631082 571.47943115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06631083 571.47943115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06631084 571.47949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06631085 571.47949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06631086 571.47949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06631087 571.47949219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06631088 571.47955322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06631089 571.47955322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06631090 571.47955322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06631091 571.47961426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06631092 571.47961426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06631093 571.47961426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06631094 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06631095 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06631096 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06631097 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06631098 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06631099 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06631100 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06631101 571.47967529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06631102 571.47973633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06631103 571.47973633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06631104 571.47973633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06631105 571.47973633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06631106 571.47979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06631107 571.47979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06631108 571.47979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06631109 571.47979736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06631110 571.47985840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06631111 571.47985840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06631112 571.47991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06631113 571.47991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06631114 571.47991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06631115 571.47991943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06631116 571.47998047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06631117 571.47998047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06631118 571.47998047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06631119 571.47998047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06631120 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06631121 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06631122 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06631123 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06631124 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06631125 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06631126 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06631127 571.48004150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06631128 571.48010254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06631129 571.48010254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06631130 571.48010254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06631131 571.48016357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06631132 571.48016357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06631133 571.48016357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06631134 571.48022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06631135 571.48022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06631136 571.48022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06631137 571.48022461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06631138 571.48028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06631139 571.48028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06631140 571.48028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06631141 571.48028564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06631142 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06631143 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06631144 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06631145 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06631146 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06631147 571.48034668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06631148 571.48040771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06631149 571.48040771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06631150 571.48040771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06631151 571.48040771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06631152 571.48046875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06631153 571.48046875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06631154 571.48046875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06631155 571.48046875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06631156 571.48052979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06631157 571.48052979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06631158 571.48052979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06631159 571.48052979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06631160 571.48059082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06631161 571.48059082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06631162 571.48059082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06631163 571.48059082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06631164 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06631165 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06631166 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06631167 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06631168 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06631169 571.48065186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06631170 571.48071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06631171 571.48071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06631172 571.48071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06631173 571.48071289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06631174 571.48077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06631175 571.48077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06631176 571.48077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06631177 571.48077393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06631178 571.48083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06631179 571.48083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06631180 571.48083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06631181 571.48083496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06631182 571.48089600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06631183 571.48089600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06631184 571.48089600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06631185 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06631186 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06631187 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06631188 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06631189 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06631190 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06631191 571.48095703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06631192 571.48101807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06631193 571.48101807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06631194 571.48101807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06631195 571.48101807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06631196 571.48107910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06631197 571.48107910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06631198 571.48107910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06631199 571.48107910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06631200 571.48114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06631201 571.48114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06631202 571.48114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06631203 571.48114014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06631204 571.48120117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06631205 571.48120117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06631206 571.48126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06631207 571.48126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06631208 571.48126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06631209 571.48126221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06631210 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06631211 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06631212 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06631213 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06631214 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06631215 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06631216 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06631217 571.48132324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06631218 571.48138428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06631219 571.48138428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06631220 571.48138428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06631221 571.48138428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06631222 571.48144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06631223 571.48144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06631224 571.48144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06631225 571.48144531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06631226 571.48150635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06631227 571.48150635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06631228 571.48156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06631229 571.48156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06631230 571.48156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06631231 571.48156738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06631232 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06631233 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06631234 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06631235 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06631236 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06631237 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06631238 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06631239 571.48162842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06631240 571.48168945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06631241 571.48168945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06631242 571.48168945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06631243 571.48168945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06631244 571.48175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06631245 571.48175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06631246 571.48175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06631247 571.48175049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06631248 571.48181152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06631249 571.48181152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06631250 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06631251 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06631252 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06631253 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06631254 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06631255 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06631256 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06631257 571.48193359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06631258 571.48199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06631259 571.48199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06631260 571.48199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06631261 571.48199463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06631262 571.48205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06631263 571.48205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06631264 571.48205566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06631265 571.48211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06631266 571.48211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06631267 571.48211670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06631268 571.48217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06631269 571.48217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06631270 571.48217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06631271 571.48217773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06631272 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06631273 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06631274 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06631275 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06631276 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06631277 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06631278 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06631279 571.48223877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06631280 571.48229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06631281 571.48229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06631282 571.48229980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06631283 571.48236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06631284 571.48236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06631285 571.48236084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06631286 571.48242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06631287 571.48242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06631288 571.48242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06631289 571.48242188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06631290 571.48248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06631291 571.48248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06631292 571.48248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06631293 571.48248291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06631294 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06631295 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06631296 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06631297 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06631298 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06631299 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06631300 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06631301 571.48254395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06631302 571.48260498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06631303 571.48260498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06631304 571.48266602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06631305 571.48266602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06631306 571.48266602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06631307 571.48266602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06631308 571.48272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06631309 571.48272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06631310 571.48272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06631311 571.48272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06631312 571.48278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06631313 571.48278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06631314 571.48278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06631315 571.48278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06631316 571.48284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06631317 571.48284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06631318 571.48284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06631319 571.48284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06631320 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06631321 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06631322 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06631323 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06631324 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06631325 571.48291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06631326 571.48297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06631327 571.48297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06631328 571.48297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06631329 571.48297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06631330 571.48303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06631331 571.48303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06631332 571.48303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06631333 571.48303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06631334 571.48309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06631335 571.48309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06631336 571.48309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06631337 571.48309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06631338 571.48315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06631339 571.48315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06631340 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06631341 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06631342 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06631343 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06631344 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06631345 571.48321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06631346 571.48327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06631347 571.48327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06631348 571.48327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06631349 571.48327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06631350 571.48333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06631351 571.48333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06631352 571.48333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06631353 571.48333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06631354 571.48339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06631355 571.48339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06631356 571.48339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06631357 571.48345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06631358 571.48345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06631359 571.48345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06631360 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06631361 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06631362 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06631363 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06631364 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06631365 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06631366 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06631367 571.48352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06631368 571.48358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06631369 571.48358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06631370 571.48358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06631371 571.48358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06631372 571.48364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06631373 571.48364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06631374 571.48364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06631375 571.48364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06631376 571.48370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06631377 571.48370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06631378 571.48376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06631379 571.48376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06631380 571.48376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06631381 571.48376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06631382 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06631383 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06631384 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06631385 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06631386 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06631387 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06631388 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06631389 571.48382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06631390 571.48388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06631391 571.48388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06631392 571.48388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06631393 571.48388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06631394 571.48394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06631395 571.48394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06631396 571.48394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06631397 571.48400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06631398 571.48400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06631399 571.48400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06631400 571.48406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06631401 571.48406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06631402 571.48406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06631403 571.48406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06631404 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06631405 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06631406 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06631407 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06631408 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06631409 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06631410 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06631411 571.48413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06631412 571.48419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06631413 571.48419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06631414 571.48419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06631415 571.48419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06631416 571.48425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06631417 571.48425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06631418 571.48431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06631419 571.48431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06631420 571.48431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06631421 571.48431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06631422 571.48437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06631423 571.48437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06631424 571.48437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06631425 571.48437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06631426 571.48443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06631427 571.48443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06631428 571.48443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06631429 571.48443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06631430 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06631431 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06631432 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06631433 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06631434 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06631435 571.48449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06631436 571.48455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06631437 571.48455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06631438 571.48455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06631439 571.48455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06631440 571.48461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06631441 571.48461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06631442 571.48461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06631443 571.48461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06631444 571.48468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06631445 571.48468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06631446 571.48468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06631447 571.48468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06631448 571.48474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06631449 571.48474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06631450 571.48474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06631451 571.48474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06631452 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06631453 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06631454 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06631455 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06631456 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06631457 571.48480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06631458 571.48486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06631459 571.48486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06631460 571.48486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06631461 571.48486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06631462 571.48492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06631463 571.48492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06631464 571.48492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06631465 571.48492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06631466 571.48498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06631467 571.48498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06631468 571.48498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06631469 571.48498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06631470 571.48504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06631471 571.48504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06631472 571.48504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06631473 571.48504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06631474 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06631475 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06631476 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06631477 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06631478 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06631479 571.48510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06631480 571.48516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06631481 571.48516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06631482 571.48516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06631483 571.48516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06631484 571.48522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06631485 571.48522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06631486 571.48522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06631487 571.48522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06631488 571.48529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06631489 571.48529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06631490 571.48535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06631491 571.48535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06631492 571.48535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06631493 571.48535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06631494 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06631495 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06631496 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06631497 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06631498 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06631499 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06631500 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06631501 571.48541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06631502 571.48547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06631503 571.48547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06631504 571.48553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06631505 571.48553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06631506 571.48553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06631507 571.48553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06631508 571.48559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06631509 571.48559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06631510 571.48559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06631511 571.48559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06631512 571.48565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06631513 571.48565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06631514 571.48565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06631515 571.48565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06631516 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06631517 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06631518 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06631519 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06631520 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06631521 571.48571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06631522 571.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06631523 571.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06631524 571.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06631525 571.48577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06631526 571.48583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06631527 571.48583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06631528 571.48583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06631529 571.48583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06631530 571.48590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06631531 571.48590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06631532 571.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06631533 571.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06631534 571.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06631535 571.48596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06631536 571.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06631537 571.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06631538 571.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06631539 571.48602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06631540 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06631541 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06631542 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06631543 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06631544 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06631545 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06631546 571.48608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06631547 571.48614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06631548 571.48614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06631549 571.48614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06631550 571.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06631551 571.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06631552 571.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06631553 571.48620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06631554 571.48626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06631555 571.48626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06631556 571.48626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06631557 571.48626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06631558 571.48632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06631559 571.48632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06631560 571.48632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06631561 571.48632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06631562 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06631563 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06631564 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06631565 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06631566 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06631567 571.48638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06631568 571.48645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06631569 571.48645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06631570 571.48645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06631571 571.48645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06631572 571.48651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06631573 571.48651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06631574 571.48651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06631575 571.48651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06631576 571.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06631577 571.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06631578 571.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06631579 571.48657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06631580 571.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06631581 571.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06631582 571.48663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06631583 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06631584 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06631585 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06631586 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06631587 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06631588 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06631589 571.48669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06631590 571.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06631591 571.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06631592 571.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06631593 571.48675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06631594 571.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06631595 571.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06631596 571.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06631597 571.48681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06631598 571.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06631599 571.48687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06631600 571.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06631601 571.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06631602 571.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06631603 571.48693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06631604 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06631605 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06631606 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06631607 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06631608 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06631609 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06631610 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06631611 571.48699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06631612 571.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06631613 571.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06631614 571.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06631615 571.48706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06631616 571.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06631617 571.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06631618 571.48712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06631619 571.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06631620 571.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06631621 571.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06631622 571.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06631623 571.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06631624 571.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06631625 571.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06631626 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06631627 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06631628 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06631629 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06631630 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06631631 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06631632 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06631633 571.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06631634 571.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06631635 571.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06631636 571.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06631637 571.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06631638 571.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06631639 571.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06631640 571.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06631641 571.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06631642 571.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06631643 571.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06631644 571.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06631645 571.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06631646 571.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06631647 571.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06631648 571.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06631649 571.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06631650 571.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06631651 571.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06631652 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06631653 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06631654 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06631655 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06631656 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06631657 571.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06631658 571.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06631659 571.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06631660 571.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06631661 571.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06631662 571.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06631663 571.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06631664 571.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06631665 571.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06631666 571.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06631667 571.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06631668 571.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06631669 571.48785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06631670 571.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06631671 571.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06631672 571.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06631673 571.48791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06631674 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06631675 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06631676 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06631677 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06631678 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06631679 571.48797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06631680 571.48803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06631681 571.48803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06631682 571.48803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06631683 571.48803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06631684 571.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06631685 571.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06631686 571.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06631687 571.48809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06631688 571.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06631689 571.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06631690 571.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06631691 571.48815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06631692 571.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06631693 571.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06631694 571.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06631695 571.48822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06631696 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06631697 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06631698 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06631699 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06631700 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06631701 571.48828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06631702 571.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06631703 571.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06631704 571.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06631705 571.48834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06631706 571.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06631707 571.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06631708 571.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06631709 571.48840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06631710 571.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06631711 571.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06631712 571.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06631713 571.48846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06631714 571.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06631715 571.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06631716 571.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06631717 571.48852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06631718 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06631719 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06631720 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06631721 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06631722 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06631723 571.48858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06631724 571.48864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06631725 571.48864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06631726 571.48864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06631727 571.48864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06631728 571.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06631729 571.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06631730 571.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06631731 571.48870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06631732 571.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06631733 571.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06631734 571.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06631735 571.48876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06631736 571.48883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06631737 571.48883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06631738 571.48883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06631739 571.48883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06631740 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06631741 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06631742 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06631743 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06631744 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06631745 571.48889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06631746 571.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06631747 571.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06631748 571.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06631749 571.48895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06631750 571.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06631751 571.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06631752 571.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06631753 571.48901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06631754 571.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06631755 571.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06631756 571.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06631757 571.48907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06631758 571.48913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06631759 571.48913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06631760 571.48913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06631761 571.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06631762 571.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06631763 571.48919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06631764 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06631765 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06631766 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06631767 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06631768 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06631769 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06631770 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06631771 571.48925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06631772 571.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06631773 571.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06631774 571.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06631775 571.48931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06631776 571.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06631777 571.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06631778 571.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06631779 571.48937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06631780 571.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06631781 571.48944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06631782 571.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06631783 571.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06631784 571.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06631785 571.48950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06631786 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06631787 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06631788 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06631789 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06631790 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06631791 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06631792 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06631793 571.48956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06631794 571.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06631795 571.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06631796 571.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06631797 571.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06631798 571.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06631799 571.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06631800 571.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06631801 571.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06631802 571.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06631803 571.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06631804 571.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06631805 571.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06631806 571.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06631807 571.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06631808 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06631809 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06631810 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06631811 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06631812 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06631813 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06631814 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06631815 571.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06631816 571.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06631817 571.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06631818 571.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06631819 571.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06631820 571.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06631821 571.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06631822 571.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06631823 571.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06631824 571.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06631825 571.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06631826 571.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06631827 571.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06631828 571.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06631829 571.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06631830 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06631831 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06631832 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06631833 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06631834 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06631835 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06631836 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06631837 571.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06631838 571.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06631839 571.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06631840 571.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06631841 571.49029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06631842 571.49029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06631843 571.49029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06631844 571.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06631845 571.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06631846 571.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06631847 571.49035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06631848 571.49041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06631849 571.49041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06631850 571.49041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06631851 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06631852 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06631853 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06631854 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06631855 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06631856 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06631857 571.49047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06631858 571.49053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06631859 571.49053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06631860 571.49053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06631861 571.49053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06631862 571.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06631863 571.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06631864 571.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06631865 571.49060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06631866 571.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06631867 571.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06631868 571.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06631869 571.49066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06631870 571.49072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06631871 571.49072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06631872 571.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06631873 571.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06631874 571.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06631875 571.49078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06631876 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06631877 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06631878 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06631879 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06631880 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06631881 571.49084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06631882 571.49090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06631883 571.49090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06631884 571.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06631885 571.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06631886 571.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06631887 571.49096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06631888 571.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06631889 571.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06631890 571.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06631891 571.49102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06631892 571.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06631893 571.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06631894 571.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06631895 571.49108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06631896 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06631897 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06631898 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06631899 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06631900 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06631901 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06631902 571.49114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06631903 571.49121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06631904 571.49121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06631905 571.49121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06631906 571.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06631907 571.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06631908 571.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06631909 571.49127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06631910 571.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06631911 571.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06631912 571.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06631913 571.49133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06631914 571.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06631915 571.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06631916 571.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06631917 571.49139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06631918 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06631919 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06631920 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06631921 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06631922 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06631923 571.49145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06631924 571.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06631925 571.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06631926 571.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06631927 571.49151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06631928 571.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06631929 571.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06631930 571.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06631931 571.49157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06631932 571.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06631933 571.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06631934 571.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06631935 571.49163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06631936 571.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06631937 571.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06631938 571.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06631939 571.49169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06631940 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06631941 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06631942 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06631943 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06631944 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06631945 571.49176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06631946 571.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06631947 571.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06631948 571.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06631949 571.49182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06631950 571.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06631951 571.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06631952 571.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06631953 571.49188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06631954 571.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06631955 571.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06631956 571.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06631957 571.49194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06631958 571.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06631959 571.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06631960 571.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06631961 571.49200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06631962 571.49206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06631963 571.49206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06631964 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06631965 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06631966 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06631967 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06631968 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06631969 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06631970 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06631971 571.49212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06631972 571.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06631973 571.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06631974 571.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06631975 571.49218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06631976 571.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06631977 571.49224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06631978 571.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06631979 571.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06631980 571.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06631981 571.49230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06631982 571.49237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06631983 571.49237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06631984 571.49237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06631985 571.49237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06631986 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06631987 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06631988 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06631989 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06631990 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06631991 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06631992 571.49243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06631993 571.49249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06631994 571.49249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06631995 571.49249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06631996 571.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06631997 571.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06631998 571.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06631999 571.49255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06632000 571.49261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06632001 571.49261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06632002 571.49261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06632003 571.49261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06632004 571.49267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06632005 571.49267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06632006 571.49267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06632007 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06632008 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06632009 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06632010 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06632011 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06632012 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06632013 571.49273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06632014 571.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06632015 571.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06632016 571.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06632017 571.49279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06632018 571.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06632019 571.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06632020 571.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06632021 571.49285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06632022 571.49291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06632023 571.49291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06632024 571.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06632025 571.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06632026 571.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06632027 571.49298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06632028 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06632029 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06632030 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06632031 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06632032 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06632033 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06632034 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06632035 571.49304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06632036 571.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06632037 571.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06632038 571.49310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06632039 571.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06632040 571.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06632041 571.49316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06632042 571.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06632043 571.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06632044 571.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06632045 571.49322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06632046 571.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06632047 571.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06632048 571.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06632049 571.49328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06632050 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06632051 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06632052 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06632053 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06632054 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06632055 571.49334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06632056 571.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06632057 571.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06632058 571.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06632059 571.49340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06632060 571.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06632061 571.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06632062 571.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06632063 571.49346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06632064 571.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06632065 571.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06632066 571.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06632067 571.49353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06632068 571.49359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06632069 571.49359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06632070 571.49359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06632071 571.49365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06632072 571.49365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06632073 571.49365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06632074 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06632075 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06632076 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06632077 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06632078 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06632079 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06632080 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06632081 571.49371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06632082 571.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06632083 571.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06632084 571.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06632085 571.49377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06632086 571.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06632087 571.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06632088 571.49383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06632089 571.49389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06632090 571.49389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06632091 571.49389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06632092 571.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06632093 571.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06632094 571.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06632095 571.49395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06632096 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06632097 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06632098 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06632099 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06632100 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06632101 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06632102 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06632103 571.49401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06632104 571.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06632105 571.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06632106 571.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06632107 571.49407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06632108 571.49414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06632109 571.49414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06632110 571.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06632111 571.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06632112 571.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06632113 571.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06632114 571.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06632115 571.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06632116 571.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06632117 571.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06632118 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06632119 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06632120 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06632121 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06632122 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06632123 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06632124 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06632125 571.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06632126 571.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06632127 571.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06632128 571.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06632129 571.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06632130 571.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06632131 571.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06632132 571.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06632133 571.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06632134 571.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06632135 571.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06632136 571.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06632137 571.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06632138 571.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06632139 571.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06632140 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06632141 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06632142 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06632143 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06632144 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06632145 571.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06632146 571.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06632147 571.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06632148 571.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06632149 571.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06632150 571.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06632151 571.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06632152 571.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06632153 571.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06632154 571.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06632155 571.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06632156 571.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06632157 571.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06632158 571.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06632159 571.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06632160 571.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06632161 571.49487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06632162 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06632163 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06632164 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06632165 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06632166 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06632167 571.49493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06632168 571.49499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06632169 571.49499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06632170 571.49499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06632171 571.49499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06632172 571.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06632173 571.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06632174 571.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06632175 571.49505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06632176 571.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06632177 571.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06632178 571.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06632179 571.49511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06632180 571.49517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06632181 571.49517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06632182 571.49517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06632183 571.49523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06632184 571.49523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06632185 571.49523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06632186 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06632187 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06632188 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06632189 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06632190 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06632191 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06632192 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06632193 571.49530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06632194 571.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06632195 571.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06632196 571.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06632197 571.49536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06632198 571.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06632199 571.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06632200 571.49542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06632201 571.49548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06632202 571.49548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06632203 571.49548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06632204 571.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06632205 571.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06632206 571.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06632207 571.49554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06632208 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06632209 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06632210 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06632211 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06632212 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06632213 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06632214 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06632215 571.49560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06632216 571.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06632217 571.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06632218 571.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06632219 571.49566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06632220 571.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06632221 571.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06632222 571.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06632223 571.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06632224 571.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06632225 571.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06632226 571.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06632227 571.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06632228 571.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06632229 571.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06632230 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06632231 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06632232 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06632233 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06632234 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06632235 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06632236 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06632237 571.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06632238 571.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06632239 571.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06632240 571.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06632241 571.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06632242 571.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06632243 571.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06632244 571.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06632245 571.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06632246 571.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06632247 571.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06632248 571.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06632249 571.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06632250 571.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06632251 571.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06632252 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06632253 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06632254 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06632255 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06632256 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06632257 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06632258 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06632259 571.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06632260 571.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06632261 571.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06632262 571.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06632263 571.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06632264 571.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06632265 571.49633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06632266 571.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06632267 571.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06632268 571.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06632269 571.49639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06632270 571.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06632271 571.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06632272 571.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06632273 571.49645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06632274 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06632275 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06632276 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06632277 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06632278 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06632279 571.49652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06632280 571.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06632281 571.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06632282 571.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06632283 571.49658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06632284 571.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06632285 571.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06632286 571.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06632287 571.49664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06632288 571.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06632289 571.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06632290 571.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06632291 571.49670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06632292 571.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06632293 571.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06632294 571.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06632295 571.49676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06632296 571.49682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06632297 571.49682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06632298 571.49682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06632299 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06632300 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06632301 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06632302 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06632303 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06632304 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06632305 571.49688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06632306 571.49694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06632307 571.49694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06632308 571.49694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06632309 571.49694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06632310 571.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06632311 571.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06632312 571.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06632313 571.49700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06632314 571.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06632315 571.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06632316 571.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06632317 571.49707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06632318 571.49713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06632319 571.49713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06632320 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06632321 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06632322 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06632323 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06632324 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06632325 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06632326 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06632327 571.49719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06632328 571.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06632329 571.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06632330 571.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06632331 571.49725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06632332 571.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06632333 571.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06632334 571.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06632335 571.49731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06632336 571.49737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06632337 571.49737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06632338 571.49737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06632339 571.49743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06632340 571.49743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06632341 571.49743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06632342 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06632343 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06632344 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06632345 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06632346 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06632347 571.49749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06632348 571.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06632349 571.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06632350 571.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06632351 571.49755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06632352 571.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06632353 571.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06632354 571.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06632355 571.49761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06632356 571.49768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06632357 571.49768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06632358 571.49768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06632359 571.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06632360 571.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06632361 571.49774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06632362 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06632363 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06632364 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06632365 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06632366 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06632367 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06632368 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06632369 571.49780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06632370 571.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06632371 571.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06632372 571.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06632373 571.49786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06632374 571.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06632375 571.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06632376 571.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06632377 571.49792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06632378 571.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06632379 571.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06632380 571.49798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06632381 571.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06632382 571.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06632383 571.49804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06632384 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06632385 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06632386 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06632387 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06632388 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06632389 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06632390 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06632391 571.49810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06632392 571.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06632393 571.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06632394 571.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06632395 571.49816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06632396 571.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06632397 571.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06632398 571.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06632399 571.49822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06632400 571.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06632401 571.49829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06632402 571.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06632403 571.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06632404 571.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06632405 571.49835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06632406 571.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06632407 571.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06632408 571.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06632409 571.49841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06632410 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06632411 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06632412 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06632413 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06632414 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06632415 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06632416 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06632417 571.49847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06632418 571.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06632419 571.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06632420 571.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06632421 571.49853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06632422 571.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06632423 571.49859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06632424 571.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06632425 571.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06632426 571.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06632427 571.49865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06632428 571.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06632429 571.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06632430 571.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06632431 571.49871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06632432 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06632433 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06632434 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06632435 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06632436 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06632437 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06632438 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06632439 571.49877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06632440 571.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06632441 571.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06632442 571.49884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06632443 571.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06632444 571.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06632445 571.49890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06632446 571.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06632447 571.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06632448 571.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06632449 571.49896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06632450 571.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06632451 571.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06632452 571.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06632453 571.49902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06632454 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06632455 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06632456 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06632457 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06632458 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06632459 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06632460 571.49908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06632461 571.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06632462 571.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06632463 571.49914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06632464 571.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06632465 571.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06632466 571.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06632467 571.49920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06632468 571.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06632469 571.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06632470 571.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06632471 571.49926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06632472 571.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06632473 571.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06632474 571.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06632475 571.49932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06632476 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06632477 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06632478 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06632479 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06632480 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06632481 571.49938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06632482 571.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06632483 571.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06632484 571.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06632485 571.49945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06632486 571.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06632487 571.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06632488 571.49951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06632489 571.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06632490 571.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06632491 571.49957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06632492 571.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06632493 571.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06632494 571.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06632495 571.49963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06632496 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06632497 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06632498 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06632499 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06632500 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06632501 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06632502 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06632503 571.49969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06632504 571.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06632505 571.49975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06632506 571.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06632507 571.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06632508 571.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06632509 571.49981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06632510 571.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06632511 571.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06632512 571.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06632513 571.49987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06632514 571.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06632515 571.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06632516 571.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06632517 571.49993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06632518 571.50000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06632519 571.50000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06632520 571.50000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06632521 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06632522 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06632523 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06632524 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06632525 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06632526 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06632527 571.50006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06632528 571.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06632529 571.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06632530 571.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06632531 571.50012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06632532 571.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06632533 571.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06632534 571.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06632535 571.50018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06632536 571.50024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06632537 571.50024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06632538 571.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06632539 571.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06632540 571.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06632541 571.50030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06632542 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06632543 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06632544 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06632545 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06632546 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06632547 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06632548 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06632549 571.50036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06632550 571.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06632551 571.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06632552 571.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06632553 571.50042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06632554 571.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06632555 571.50048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06632556 571.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06632557 571.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06632558 571.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06632559 571.50054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06632560 571.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06632561 571.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06632562 571.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06632563 571.50061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06632564 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06632565 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06632566 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06632567 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06632568 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06632569 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06632570 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06632571 571.50067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06632572 571.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06632573 571.50073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06632574 571.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06632575 571.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06632576 571.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06632577 571.50079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06632578 571.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06632579 571.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06632580 571.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06632581 571.50085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06632582 571.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06632583 571.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06632584 571.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06632585 571.50091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06632586 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06632587 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06632588 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06632589 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06632590 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06632591 571.50097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06632592 571.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06632593 571.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06632594 571.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06632595 571.50103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06632596 571.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06632597 571.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06632598 571.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06632599 571.50109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06632600 571.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06632601 571.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06632602 571.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06632603 571.50115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06632604 571.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06632605 571.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06632606 571.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06632607 571.50122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06632608 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06632609 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06632610 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06632611 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06632612 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06632613 571.50128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06632614 571.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06632615 571.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06632616 571.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06632617 571.50134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06632618 571.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06632619 571.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06632620 571.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06632621 571.50140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06632622 571.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06632623 571.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06632624 571.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06632625 571.50146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06632626 571.50152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06632627 571.50152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06632628 571.50152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06632629 571.50158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06632630 571.50158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06632631 571.50158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06632632 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06632633 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06632634 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06632635 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06632636 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06632637 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06632638 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06632639 571.50164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06632640 571.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06632641 571.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06632642 571.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06632643 571.50170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06632644 571.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06632645 571.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06632646 571.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06632647 571.50177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06632648 571.50183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06632649 571.50183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06632650 571.50183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06632651 571.50189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06632652 571.50189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06632653 571.50189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06632654 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06632655 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06632656 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06632657 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06632658 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06632659 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06632660 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06632661 571.50195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06632662 571.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06632663 571.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06632664 571.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06632665 571.50201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06632666 571.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06632667 571.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06632668 571.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06632669 571.50207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06632670 571.50213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06632671 571.50213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06632672 571.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06632673 571.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06632674 571.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06632675 571.50219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06632676 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06632677 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06632678 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06632679 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06632680 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06632681 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06632682 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06632683 571.50225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06632684 571.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06632685 571.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06632686 571.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06632687 571.50231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06632688 571.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06632689 571.50238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06632690 571.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06632691 571.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06632692 571.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06632693 571.50244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06632694 571.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06632695 571.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06632696 571.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06632697 571.50250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06632698 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06632699 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06632700 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06632701 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06632702 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06632703 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06632704 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06632705 571.50256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06632706 571.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06632707 571.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06632708 571.50262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06632709 571.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06632710 571.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06632711 571.50268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06632712 571.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06632713 571.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06632714 571.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06632715 571.50274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06632716 571.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06632717 571.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06632718 571.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06632719 571.50280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06632720 571.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06632721 571.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06632722 571.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06632723 571.50286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06632724 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06632725 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06632726 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06632727 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06632728 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06632729 571.50292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06632730 571.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06632731 571.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06632732 571.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06632733 571.50299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06632734 571.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06632735 571.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06632736 571.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06632737 571.50305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06632738 571.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06632739 571.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06632740 571.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06632741 571.50311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06632742 571.50317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06632743 571.50317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06632744 571.50317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06632745 571.50317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06632746 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06632747 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06632748 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06632749 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06632750 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06632751 571.50323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06632752 571.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06632753 571.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06632754 571.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06632755 571.50329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06632756 571.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06632757 571.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06632758 571.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06632759 571.50335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06632760 571.50341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06632761 571.50341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06632762 571.50341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06632763 571.50341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06632764 571.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06632765 571.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06632766 571.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06632767 571.50347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06632768 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06632769 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06632770 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06632771 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06632772 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06632773 571.50354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06632774 571.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06632775 571.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06632776 571.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06632777 571.50360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06632778 571.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06632779 571.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06632780 571.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06632781 571.50366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06632782 571.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06632783 571.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06632784 571.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06632785 571.50372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06632786 571.50378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06632787 571.50378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06632788 571.50378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06632789 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06632790 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06632791 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06632792 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06632793 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06632794 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06632795 571.50384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06632796 571.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06632797 571.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06632798 571.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06632799 571.50390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06632800 571.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06632801 571.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06632802 571.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06632803 571.50396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06632804 571.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06632805 571.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06632806 571.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06632807 571.50402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06632808 571.50408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06632809 571.50408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06632810 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06632811 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06632812 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06632813 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06632814 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06632815 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06632816 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06632817 571.50415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06632818 571.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06632819 571.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06632820 571.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06632821 571.50421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06632822 571.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06632823 571.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06632824 571.50427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06632825 571.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06632826 571.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06632827 571.50433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06632828 571.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06632829 571.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06632830 571.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06632831 571.50439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06632832 571.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06632833 571.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06632834 571.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06632835 571.50445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06632836 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06632837 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06632838 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06632839 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06632840 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06632841 571.50451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06632842 571.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06632843 571.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06632844 571.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06632845 571.50457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06632846 571.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06632847 571.50463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06632848 571.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06632849 571.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06632850 571.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06632851 571.50469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06632852 571.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06632853 571.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06632854 571.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06632855 571.50476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06632856 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06632857 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06632858 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06632859 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06632860 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06632861 571.50482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06632862 571.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06632863 571.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06632864 571.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06632865 571.50488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06632866 571.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06632867 571.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06632868 571.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06632869 571.50494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06632870 571.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06632871 571.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06632872 571.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06632873 571.50500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06632874 571.50506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06632875 571.50506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06632876 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06632877 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06632878 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06632879 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06632880 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06632881 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06632882 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06632883 571.50512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06632884 571.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06632885 571.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06632886 571.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06632887 571.50518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06632888 571.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06632889 571.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06632890 571.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06632891 571.50524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06632892 571.50531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06632893 571.50531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06632894 571.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06632895 571.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06632896 571.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06632897 571.50537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06632898 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06632899 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06632900 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06632901 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06632902 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06632903 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06632904 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06632905 571.50543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06632906 571.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06632907 571.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06632908 571.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06632909 571.50549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06632910 571.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06632911 571.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06632912 571.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06632913 571.50555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06632914 571.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06632915 571.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06632916 571.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06632917 571.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06632918 571.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06632919 571.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06632920 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06632921 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06632922 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06632923 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06632924 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06632925 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06632926 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06632927 571.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06632928 571.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06632929 571.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06632930 571.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06632931 571.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06632932 571.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06632933 571.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06632934 571.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06632935 571.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06632936 571.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06632937 571.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06632938 571.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06632939 571.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06632940 571.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06632941 571.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06632942 571.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06632943 571.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06632944 571.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06632945 571.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06632946 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06632947 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06632948 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06632949 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06632950 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06632951 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06632952 571.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06632953 571.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06632954 571.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06632955 571.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06632956 571.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06632957 571.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06632958 571.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06632959 571.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06632960 571.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06632961 571.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06632962 571.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06632963 571.50628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06632964 571.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06632965 571.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06632966 571.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06632967 571.50634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06632968 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06632969 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06632970 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06632971 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06632972 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06632973 571.50640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06632974 571.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06632975 571.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06632976 571.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06632977 571.50646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06632978 571.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06632979 571.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06632980 571.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06632981 571.50653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06632982 571.50659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06632983 571.50659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06632984 571.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06632985 571.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06632986 571.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06632987 571.50665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06632988 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06632989 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06632990 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06632991 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06632992 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06632993 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06632994 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06632995 571.50671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06632996 571.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06632997 571.50677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06632998 571.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06632999 571.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06633000 571.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06633001 571.50683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06633002 571.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06633003 571.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06633004 571.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06633005 571.50689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06633006 571.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06633007 571.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06633008 571.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06633009 571.50695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06633010 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06633011 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06633012 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06633013 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06633014 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06633015 571.50701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06633016 571.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06633017 571.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06633018 571.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06633019 571.50708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06633020 571.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06633021 571.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06633022 571.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06633023 571.50714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06633024 571.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06633025 571.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06633026 571.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06633027 571.50720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06633028 571.50726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06633029 571.50726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06633030 571.50726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06633031 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06633032 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06633033 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06633034 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06633035 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06633036 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06633037 571.50732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06633038 571.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06633039 571.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06633040 571.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06633041 571.50738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06633042 571.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06633043 571.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06633044 571.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06633045 571.50744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06633046 571.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06633047 571.50750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06633048 571.50756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06633049 571.50756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06633050 571.50756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06633051 571.50756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06633052 571.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06633053 571.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06633054 571.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06633055 571.50762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06633056 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06633057 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06633058 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06633059 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06633060 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06633061 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06633062 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06633063 571.50769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06633064 571.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06633065 571.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06633066 571.50775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06633067 571.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06633068 571.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06633069 571.50781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06633070 571.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06633071 571.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06633072 571.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06633073 571.50787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06633074 571.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06633075 571.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06633076 571.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06633077 571.50793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06633078 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06633079 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06633080 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06633081 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06633082 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06633083 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06633084 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06633085 571.50799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06633086 571.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06633087 571.50805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06633088 571.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06633089 571.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06633090 571.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06633091 571.50811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06633092 571.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06633093 571.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06633094 571.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06633095 571.50817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06633096 571.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06633097 571.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06633098 571.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06633099 571.50823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06633100 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06633101 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06633102 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06633103 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06633104 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06633105 571.50830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06633106 571.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06633107 571.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06633108 571.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06633109 571.50836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06633110 571.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06633111 571.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06633112 571.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06633113 571.50842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06633114 571.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06633115 571.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06633116 571.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06633117 571.50848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06633118 571.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06633119 571.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06633120 571.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06633121 571.50854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06633122 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06633123 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06633124 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06633125 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06633126 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06633127 571.50860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06633128 571.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06633129 571.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06633130 571.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06633131 571.50866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06633132 571.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06633133 571.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06633134 571.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06633135 571.50872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06633136 571.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06633137 571.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06633138 571.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06633139 571.50878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06633140 571.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06633141 571.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06633142 571.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06633143 571.50885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06633144 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06633145 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06633146 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06633147 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06633148 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06633149 571.50891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06633150 571.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06633151 571.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06633152 571.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06633153 571.50897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06633154 571.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06633155 571.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06633156 571.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06633157 571.50903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06633158 571.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06633159 571.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06633160 571.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06633161 571.50909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06633162 571.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06633163 571.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06633164 571.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06633165 571.50915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06633166 571.50921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06633167 571.50921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06633168 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06633169 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06633170 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06633171 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06633172 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06633173 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06633174 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06633175 571.50927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06633176 571.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06633177 571.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06633178 571.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06633179 571.50933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06633180 571.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06633181 571.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06633182 571.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06633183 571.50939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06633184 571.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06633185 571.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06633186 571.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06633187 571.50946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06633188 571.50952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06633189 571.50952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06633190 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06633191 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06633192 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06633193 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06633194 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06633195 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06633196 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06633197 571.50958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06633198 571.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06633199 571.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06633200 571.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06633201 571.50964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06633202 571.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06633203 571.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06633204 571.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06633205 571.50970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06633206 571.50976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06633207 571.50976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06633208 571.50976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06633209 571.50982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06633210 571.50982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06633211 571.50982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06633212 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06633213 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06633214 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06633215 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06633216 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06633217 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06633218 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06633219 571.50988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06633220 571.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06633221 571.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06633222 571.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06633223 571.50994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06633224 571.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06633225 571.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06633226 571.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06633227 571.51000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06633228 571.51007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06633229 571.51007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06633230 571.51007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06633231 571.51013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06633232 571.51013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06633233 571.51013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06633234 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06633235 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -06633236 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06633237 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -06633238 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06633239 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -06633240 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06633241 571.51019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -06633242 571.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06633243 571.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -06633244 571.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06633245 571.51025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -06633246 571.51031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06633247 571.51031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -06633248 571.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06633249 571.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -06633250 571.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06633251 571.51037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -06633252 571.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06633253 571.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -06633254 571.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06633255 571.51043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -06633256 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06633257 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -06633258 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06633259 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -06633260 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06633261 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -06633262 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06633263 571.51049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -06633264 571.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06633265 571.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -06633266 571.51055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06633267 571.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -06633268 571.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06633269 571.51062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -06633270 571.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06633271 571.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -06633272 571.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06633273 571.51068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -06633274 571.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06633275 571.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -06633276 571.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06633277 571.51074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -06633278 571.51080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06633279 571.51080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -06633280 571.51080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06633281 571.51080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -06633282 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06633283 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -06633284 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06633285 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -06633286 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06633287 571.51086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -06633288 571.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06633289 571.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -06633290 571.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06633291 571.51092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -06633292 571.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06633293 571.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -06633294 571.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06633295 571.51098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -06633296 571.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06633297 571.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -06633298 571.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06633299 571.51104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -06633300 571.51110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06633301 571.51110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -06633302 571.51110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06633303 571.51110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -06633304 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06633305 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -06633306 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06633307 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -06633308 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06633309 571.51116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -06633310 571.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06633311 571.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -06633312 571.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06633313 571.51123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -06633314 571.51129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06633315 571.51129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -06633316 571.51129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06633317 571.51129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -06633318 571.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06633319 571.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -06633320 571.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06633321 571.51135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -06633322 571.51141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06633323 571.51141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -06633324 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06633325 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -06633326 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06633327 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -06633328 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06633329 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -06633330 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06633331 571.51147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -06633332 571.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06633333 571.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -06633334 571.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06633335 571.51153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -06633336 571.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06633337 571.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -06633338 571.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06633339 571.51159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -06633340 571.51165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06633341 571.51165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -06633342 571.51165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06633343 571.51171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -06633344 571.51171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06633345 571.51171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -06633346 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06633347 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -06633348 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06633349 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -06633350 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06633351 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -06633352 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06633353 571.51177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -06633354 571.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06633355 571.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -06633356 571.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06633357 571.51184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -06633358 571.51190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06633359 571.51190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -06633360 571.51190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06633361 571.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -06633362 571.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06633363 571.51196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -06633364 571.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06633365 571.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -06633366 571.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06633367 571.51202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -06633368 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06633369 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -06633370 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06633371 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -06633372 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06633373 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -06633374 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06633375 571.51208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -06633376 571.51214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06633377 571.51214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -06633378 571.51214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06633379 571.51214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -06633380 571.51220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06633381 571.51220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06633382 571.51226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06633383 571.51226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06633384 571.51226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06633385 571.51226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06633386 571.51232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06633387 571.51232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06633388 571.51232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06633389 571.51232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06633390 571.51239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06633391 571.51239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06633392 571.51239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06633393 571.51239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06633394 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06633395 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06633396 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06633397 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06633398 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06633399 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06633400 571.51245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06633401 571.51251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06633402 571.51251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06633403 571.51251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06633404 571.51257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06633405 571.51257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06633406 571.51257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06633407 571.51257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06633408 571.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06633409 571.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06633410 571.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06633411 571.51263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06633412 571.51269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06633413 571.51269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06633414 571.51269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06633415 571.51269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06633416 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06633417 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06633418 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06633419 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06633420 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06633421 571.51275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06633422 571.51281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06633423 571.51281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06633424 571.51281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06633425 571.51281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -06633426 571.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06633427 571.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -06633428 571.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06633429 571.51287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -06633430 571.51293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06633431 571.51293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -06633432 571.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06633433 571.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -06633434 571.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06633435 571.51300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -06633436 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06633437 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -06633438 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06633439 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -06633440 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06633441 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -06633442 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06633443 571.51306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -06633444 571.51312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06633445 571.51312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -06633446 571.51312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06633447 571.51318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -06633448 571.51318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06633449 571.51318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -06633450 571.51324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06633451 571.51324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -06633452 571.51324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06633453 571.51324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -06633454 571.51330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06633455 571.51330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -06633456 571.51330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06633457 571.51330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -06633458 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06633459 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -06633460 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06633461 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -06633462 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06633463 571.51336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -06633464 571.51342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06633465 571.51342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -06633466 571.51342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06633467 571.51342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -06633468 571.51348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06633469 571.51348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -06633470 571.51348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06633471 571.51348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -06633472 571.51354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06633473 571.51354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -06633474 571.51354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06633475 571.51354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -06633476 571.51361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06633477 571.51361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -06633478 571.51367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06633479 571.51367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -06633480 571.51367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06633481 571.51367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -06633482 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06633483 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -06633484 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06633485 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -06633486 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06633487 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -06633488 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06633489 571.51373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -06633490 571.51379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06633491 571.51379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -06633492 571.51385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06633493 571.51385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -06633494 571.51385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06633495 571.51385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -06633496 571.51391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06633497 571.51391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -06633498 571.51391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06633499 571.51391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -06633500 571.51397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06633501 571.51397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -06633502 571.51397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06633503 571.51397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -06633504 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06633505 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -06633506 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06633507 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -06633508 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06633509 571.51403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -06633510 571.51409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06633511 571.51409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -06633512 571.51409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06633513 571.51409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -06633514 571.51416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06633515 571.51416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -06633516 571.51416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06633517 571.51416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -06633518 571.51422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06633519 571.51422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -06633520 571.51422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06633521 571.51422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -06633522 571.51428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06633523 571.51428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -06633524 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06633525 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -06633526 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06633527 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -06633528 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06633529 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -06633530 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06633531 571.51434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -06633532 571.51440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06633533 571.51440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -06633534 571.51440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06633535 571.51440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -06633536 571.51446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06633537 571.51446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -06633538 571.51446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06633539 571.51446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -06633540 571.51452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06633541 571.51452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -06633542 571.51452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06633543 571.51458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -06633544 571.51458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06633545 571.51458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -06633546 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06633547 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -06633548 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06633549 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -06633550 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06633551 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -06633552 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06633553 571.51464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -06633554 571.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06633555 571.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -06633556 571.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06633557 571.51470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -06633558 571.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06633559 571.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -06633560 571.51477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06633561 571.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -06633562 571.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06633563 571.51483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -06633564 571.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06633565 571.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -06633566 571.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06633567 571.51489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -06633568 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06633569 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -06633570 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06633571 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -06633572 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06633573 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -06633574 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06633575 571.51495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -06633576 571.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06633577 571.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -06633578 571.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06633579 571.51501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -06633580 571.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06633581 571.51507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -06633582 571.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06633583 571.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -06633584 571.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06633585 571.51513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -06633586 571.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06633587 571.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -06633588 571.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06633589 571.51519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -06633590 571.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06633591 571.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -06633592 571.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06633593 571.51525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -06633594 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06633595 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -06633596 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06633597 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -06633598 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06633599 571.51531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -06633600 571.51538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06633601 571.51538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -06633602 571.51538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06633603 571.51538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -06633604 571.51544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06633605 571.51544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -06633606 571.51544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06633607 571.51544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -06633608 571.51550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06633609 571.51550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -06633610 571.51550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06633611 571.51550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -06633612 571.51556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06633613 571.51556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -06633614 571.51556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06633615 571.51556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -06633616 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06633617 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -06633618 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06633619 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -06633620 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06633621 571.51562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -06633622 571.51568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06633623 571.51568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -06633624 571.51568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06633625 571.51568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -06633626 571.51574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06633627 571.51574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -06633628 571.51574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06633629 571.51574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -06633630 571.51580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06633631 571.51580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -06633632 571.51580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06633633 571.51580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -06633634 571.51586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06633635 571.51586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -06633636 571.51586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06633637 571.51586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -06633638 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06633639 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -06633640 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06633641 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -06633642 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06633643 571.51593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -06633644 571.51599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06633645 571.51599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -06633646 571.51599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06633647 571.51599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -06633648 571.51605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06633649 571.51605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -06633650 571.51605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06633651 571.51605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -06633652 571.51611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06633653 571.51611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -06633654 571.51611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06633655 571.51611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -06633656 571.51617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06633657 571.51617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -06633658 571.51617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06633659 571.51617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -06633660 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06633661 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -06633662 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06633663 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -06633664 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06633665 571.51623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -06633666 571.51629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06633667 571.51629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -06633668 571.51629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06633669 571.51629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -06633670 571.51635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06633671 571.51635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -06633672 571.51635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06633673 571.51635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -06633674 571.51641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06633675 571.51641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -06633676 571.51641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06633677 571.51641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -06633678 571.51647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06633679 571.51647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -06633680 571.51647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06633681 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -06633682 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06633683 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -06633684 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06633685 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -06633686 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06633687 571.51654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -06633688 571.51660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06633689 571.51660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -06633690 571.51660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06633691 571.51660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -06633692 571.51666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06633693 571.51666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -06633694 571.51666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06633695 571.51666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -06633696 571.51672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06633697 571.51672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -06633698 571.51672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06633699 571.51672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -06633700 571.51678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06633701 571.51678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -06633702 571.51684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06633703 571.51684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -06633704 571.51684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06633705 571.51684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -06633706 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06633707 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -06633708 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06633709 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -06633710 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06633711 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -06633712 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06633713 571.51690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -06633714 571.51696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06633715 571.51696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -06633716 571.51702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06633717 571.51702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -06633718 571.51702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06633719 571.51702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -06633720 571.51708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06633721 571.51708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -06633722 571.51708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06633723 571.51708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -06633724 571.51715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06633725 571.51715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -06633726 571.51715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06633727 571.51715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -06633728 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06633729 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -06633730 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06633731 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -06633732 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06633733 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -06633734 571.51721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06633735 571.51727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -06633736 571.51727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06633737 571.51727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -06633738 571.51733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06633739 571.51733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -06633740 571.51733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06633741 571.51733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -06633742 571.51739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06633743 571.51739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -06633744 571.51739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06633745 571.51739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -06633746 571.51745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06633747 571.51745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -06633748 571.51745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06633749 571.51745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -06633750 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06633751 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -06633752 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06633753 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -06633754 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06633755 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -06633756 571.51751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06633757 571.51757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -06633758 571.51757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06633759 571.51757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -06633760 571.51763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06633761 571.51763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -06633762 571.51763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06633763 571.51763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -06633764 571.51770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06633765 571.51770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -06633766 571.51770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06633767 571.51770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -06633768 571.51776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06633769 571.51776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -06633770 571.51776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06633771 571.51776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -06633772 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06633773 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -06633774 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06633775 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -06633776 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06633777 571.51782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -06633778 571.51788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06633779 571.51788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -06633780 571.51788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06633781 571.51788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -06633782 571.51794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06633783 571.51794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -06633784 571.51794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06633785 571.51794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -06633786 571.51800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06633787 571.51800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -06633788 571.51800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06633789 571.51800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -06633790 571.51806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06633791 571.51806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -06633792 571.51806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06633793 571.51806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -06633794 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06633795 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -06633796 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06633797 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -06633798 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06633799 571.51812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -06633800 571.51818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06633801 571.51818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -06633802 571.51818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06633803 571.51818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -06633804 571.51824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06633805 571.51824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -06633806 571.51824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06633807 571.51824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -06633808 571.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06633809 571.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -06633810 571.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06633811 571.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -06633812 571.51837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06633813 571.51837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -06633814 571.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06633815 571.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -06633816 571.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06633817 571.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -06633818 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06633819 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -06633820 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06633821 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -06633822 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06633823 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -06633824 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06633825 571.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -06633826 571.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06633827 571.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -06633828 571.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06633829 571.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -06633830 571.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06633831 571.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -06633832 571.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06633833 571.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -06633834 571.51867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06633835 571.51867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -06633836 571.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06633837 571.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -06633838 571.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06633839 571.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -06633840 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06633841 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -06633842 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06633843 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -06633844 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06633845 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -06633846 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06633847 571.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -06633848 571.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06633849 571.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -06633850 571.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06633851 571.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -06633852 571.51892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06633853 571.51892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -06633854 571.51892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06633855 571.51898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -06633856 571.51898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06633857 571.51898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -06633858 571.51904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06633859 571.51904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -06633860 571.51904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06633861 571.51904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -06633862 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06633863 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -06633864 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06633865 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -06633866 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06633867 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -06633868 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06633869 571.51910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -06633870 571.51916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06633871 571.51916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -06633872 571.51916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06633873 571.51916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -06633874 571.51922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06633875 571.51922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -06633876 571.51922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06633877 571.51928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -06633878 571.51928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06633879 571.51928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -06633880 571.51934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06633881 571.51934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -06633882 571.51934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06633883 571.51934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -06633884 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06633885 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -06633886 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06633887 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -06633888 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06633889 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -06633890 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06633891 571.51940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -06633892 571.51947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06633893 571.51947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -06633894 571.51947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06633895 571.51947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -06633896 571.51953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06633897 571.51953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -06633898 571.51959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06633899 571.51959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -06633900 571.51959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06633901 571.51959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -06633902 571.51965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06633903 571.51965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -06633904 571.51965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06633905 571.51965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -06633906 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06633907 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -06633908 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06633909 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -06633910 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06633911 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -06633912 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06633913 571.51971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -06633914 571.51977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06633915 571.51977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -06633916 571.51983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06633917 571.51983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -06633918 571.51983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06633919 571.51983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -06633920 571.51989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06633921 571.51989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -06633922 571.51989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06633923 571.51989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -06633924 571.51995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06633925 571.51995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -06633926 571.51995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06633927 571.51995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -06633928 571.52001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06633929 571.52001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -06633930 571.52001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06633931 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -06633932 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06633933 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -06633934 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06633935 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -06633936 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06633937 571.52008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -06633938 571.52014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06633939 571.52014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -06633940 571.52014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06633941 571.52014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -06633942 571.52020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06633943 571.52020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -06633944 571.52020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06633945 571.52020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -06633946 571.52026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06633947 571.52026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -06633948 571.52032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06633949 571.52032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -06633950 571.52032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06633951 571.52032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -06633952 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06633953 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -06633954 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06633955 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -06633956 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06633957 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -06633958 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06633959 571.52038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -06633960 571.52044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06633961 571.52044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -06633962 571.52044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06633963 571.52050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -06633964 571.52050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06633965 571.52050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -06633966 571.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06633967 571.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -06633968 571.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06633969 571.52056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -06633970 571.52062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06633971 571.52062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -06633972 571.52062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -06633973 571.52062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -06633974 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -06633975 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -06633976 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -06633977 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -06633978 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -06633979 571.52069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -06633980 571.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -06633981 571.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -06633982 571.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -06633983 571.52075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -06633984 571.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -06633985 571.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -06633986 571.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -06633987 571.52081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -06633988 571.52087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -06633989 571.52087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -06633990 571.52087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -06633991 571.52087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -06633992 571.52093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -06633993 571.52093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -06633994 571.52093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -06633995 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -06633996 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -06633997 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -06633998 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -06633999 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -06634000 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -06634001 571.52099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -06634002 571.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -06634003 571.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -06634004 571.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -06634005 571.52105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -06634006 571.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -06634007 571.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -06634008 571.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -06634009 571.52111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -06634010 571.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -06634011 571.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -06634012 571.52117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -06634013 571.52124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -06634014 571.52124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -06634015 571.52124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -06634016 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -06634017 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -06634018 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -06634019 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -06634020 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -06634021 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -06634022 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -06634023 571.52130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -06634024 571.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -06634025 571.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -06634026 571.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -06634027 571.52136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -06634028 571.52142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -06634029 571.52142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -06634030 571.52142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -06634031 571.52142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -06634032 571.52148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -06634033 571.52148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -06634034 571.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -06634035 571.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -06634036 571.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -06634037 571.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -06634038 571.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -06634039 571.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -06634040 571.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -06634041 571.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -06634042 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -06634043 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -06634044 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -06634045 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -06634046 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -06634047 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -06634048 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -06634049 571.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -06634050 571.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -06634051 571.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -06634052 571.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -06634053 571.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -06634054 571.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -06634055 571.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -06634056 571.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -06634057 571.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -06634058 571.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -06634059 571.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -06634060 571.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -06634061 571.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -06634062 571.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -06634063 571.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -06634064 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -06634065 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -06634066 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -06634067 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -06634068 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -06634069 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -06634070 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -06634071 571.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -06634072 571.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -06634073 571.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -06634074 571.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -06634075 571.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -06634076 571.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -06634077 571.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -06634078 571.52215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -06634079 571.52215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -06634080 571.52215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -06634081 571.52215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -06634082 571.52221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -06634083 571.52221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -06634084 571.52221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -06634085 571.52221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -06634086 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -06634087 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -06634088 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -06634089 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -06634090 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -06634091 571.52227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -06634092 571.52233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -06634093 571.52233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -06634094 571.52233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -06634095 571.52233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -06634096 571.52239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -06634097 571.52239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -06634098 571.52239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -06634099 571.52239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -06634100 571.52246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -06634101 571.52246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -06634102 571.52246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -06634103 571.52246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -06634104 571.52252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -06634105 571.52252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -06634106 571.52252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -06634107 571.52252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -06634108 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -06634109 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -06634110 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -06634111 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -06634112 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -06634113 571.52258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -06634114 571.52264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -06634115 571.52264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -06634116 571.52264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -06634117 571.52264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -06634118 571.52270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -06634119 571.52270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -06634120 571.52270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06634121 571.52270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -06634122 571.52276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06634123 571.52276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -06634124 571.52276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06634125 571.52276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -06634126 571.52282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06634127 571.52282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -06634128 571.52282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06634129 571.52282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -06634130 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06634131 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -06634132 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06634133 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -06634134 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -06634135 571.52288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -06634136 571.52294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -06634137 571.52294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -06634138 571.52294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -06634139 571.52294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -06634140 571.52301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -06634141 571.52301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -06634142 571.52301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -06634143 571.52301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -06634144 571.52307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -06634145 571.52307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -06634146 571.52307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -06634147 571.52307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -06634148 571.52313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -06634149 571.52313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -06634150 571.52313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -06634151 571.52319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -06634152 571.52319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -06634153 571.52319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -06634154 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -06634155 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -06634156 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -06634157 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -06634158 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -06634159 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -06634160 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -06634161 571.52325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -06634162 571.52331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -06634163 571.52331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -06634164 571.52331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -06634165 571.52331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -06634166 571.52337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -06634167 571.52337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -06634168 571.52337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -06634169 571.52337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -06634170 571.52343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -06634171 571.52343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -06634172 571.52343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -06634173 571.52349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -06634174 571.52349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -06634175 571.52349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -06634176 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -06634177 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -06634178 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -06634179 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -06634180 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -06634181 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -06634182 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -06634183 571.52355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -06634184 571.52362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -06634185 571.52362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -06634186 571.52362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -06634187 571.52362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -06634188 571.52368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -06634189 571.52368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -06634190 571.52368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -06634191 571.52368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -06634192 571.52374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -06634193 571.52374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -06634194 571.52380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -06634195 571.52380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -06634196 571.52380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -06634197 571.52380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -06634198 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -06634199 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -06634200 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -06634201 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -06634202 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -06634203 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -06634204 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -06634205 571.52386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -06634206 571.52392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -06634207 571.52392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -06634208 571.52392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -06634209 571.52392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -06634210 571.52398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -06634211 571.52398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -06634212 571.52398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -06634213 571.52404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -06634214 571.52404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -06634215 571.52404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -06634216 571.52410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -06634217 571.52410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -06634218 571.52410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -06634219 571.52410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -06634220 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -06634221 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -06634222 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -06634223 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -06634224 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -06634225 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -06634226 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -06634227 571.52416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -06634228 571.52423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -06634229 571.52423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -06634230 571.52423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -06634231 571.52423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -06634232 571.52429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -06634233 571.52429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -06634234 571.52435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -06634235 571.52435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -06634236 571.52435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -06634237 571.52435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -06634238 571.52441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -06634239 571.52441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -06634240 571.52441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -06634241 571.52441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -06634242 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -06634243 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -06634244 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -06634245 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -06634246 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -06634247 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -06634248 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -06634249 571.52447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -06634250 571.52453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -06634251 571.52453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -06634252 571.52459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -06634253 571.52459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -06634254 571.52459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -06634255 571.52459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -06634256 571.52465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -06634257 571.52465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -06634258 571.52465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -06634259 571.52465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -06634260 571.52471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -06634261 571.52471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -06634262 571.52471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -06634263 571.52471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -06634264 571.52478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -06634265 571.52478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -06634266 571.52478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -06634267 571.52478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -06634268 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -06634269 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -06634270 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -06634271 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -06634272 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -06634273 571.52484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -06634274 571.52490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -06634275 571.52490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -06634276 571.52490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -06634277 571.52490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -06634278 571.52496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -06634279 571.52496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -06634280 571.52496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -06634281 571.52496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -06634282 571.52502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -06634283 571.52502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -06634284 571.52502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -06634285 571.52502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -06634286 571.52508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -06634287 571.52508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -06634288 571.52508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -06634289 571.52508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -06634290 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -06634291 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -06634292 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -06634293 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -06634294 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -06634295 571.52514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -06634296 571.52520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -06634297 571.52520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -06634298 571.52520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -06634299 571.52520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -06634300 571.52526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -06634301 571.52526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -06634302 571.52526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -06634303 571.52526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -06634304 571.52532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -06634305 571.52532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -06634306 571.52539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -06634307 571.52539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -06634308 571.52539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -06634309 571.52539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -06634310 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -06634311 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -06634312 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -06634313 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -06634314 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -06634315 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -06634316 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -06634317 571.52545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -06634318 571.52551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -06634319 571.52551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -06634320 571.52551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -06634321 571.52551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -06634322 571.52557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -06634323 571.52557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -06634324 571.52557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -06634325 571.52557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -06634326 571.52563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -06634327 571.52563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -06634328 571.52569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -06634329 571.52569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -06634330 571.52569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -06634331 571.52569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -06634332 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -06634333 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -06634334 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -06634335 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -06634336 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -06634337 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -06634338 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -06634339 571.52575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -06634340 571.52581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -06634341 571.52581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -06634342 571.52581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -06634343 571.52581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -06634344 571.52587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -06634345 571.52587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -06634346 571.52593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -06634347 571.52593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -06634348 571.52593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -06634349 571.52593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -06634350 571.52600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -06634351 571.52600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -06634352 571.52600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -06634353 571.52600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -06634354 571.52606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -06634355 571.52606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -06634356 571.52606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -06634357 571.52606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -06634358 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -06634359 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -06634360 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -06634361 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -06634362 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -06634363 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -06634364 571.52612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -06634365 571.52618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -06634366 571.52618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -06634367 571.52618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -06634368 571.52624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -06634369 571.52624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -06634370 571.52624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -06634371 571.52624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -06634372 571.52630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -06634373 571.52630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -06634374 571.52630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -06634375 571.52630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -06634376 571.52636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -06634377 571.52636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -06634378 571.52636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -06634379 571.52636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -06634380 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -06634381 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -06634382 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -06634383 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -06634384 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -06634385 571.52642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -06634386 571.52648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -06634387 571.52648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -06634388 571.52648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -06634389 571.52648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -06634390 571.52655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -06634391 571.52655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -06634392 571.52655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -06634393 571.52655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -06634394 571.52661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -06634395 571.52661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -06634396 571.52661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -06634397 571.52661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -06634398 571.52667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -06634399 571.52667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -06634400 571.52667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -06634401 571.52667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -06634402 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -06634403 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -06634404 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -06634405 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -06634406 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -06634407 571.52673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -06634408 571.52679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -06634409 571.52679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -06634410 571.52679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -06634411 571.52679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -06634412 571.52685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -06634413 571.52685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -06634414 571.52685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -06634415 571.52685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -06634416 571.52691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -06634417 571.52691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -06634418 571.52691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -06634419 571.52691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -06634420 571.52697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -06634421 571.52697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -06634422 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -06634423 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -06634424 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -06634425 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -06634426 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -06634427 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -06634428 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -06634429 571.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -06634430 571.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -06634431 571.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -06634432 571.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -06634433 571.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -06634434 571.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -06634435 571.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -06634436 571.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -06634437 571.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -06634438 571.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -06634439 571.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -06634440 571.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -06634441 571.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -06634442 571.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -06634443 571.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -06634444 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -06634445 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -06634446 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -06634447 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -06634448 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -06634449 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -06634450 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -06634451 571.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -06634452 571.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -06634453 571.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -06634454 571.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -06634455 571.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -06634456 571.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -06634457 571.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa318 -06634458 571.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -06634459 571.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa328 -06634460 571.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -06634461 571.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa338 -06634462 571.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -06634463 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa348 -06634464 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -06634465 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa358 -06634466 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -06634467 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa368 -06634468 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -06634469 571.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa378 -06634470 571.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -06634471 571.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa388 -06634472 571.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -06634473 571.52777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa398 -06634474 571.52783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -06634475 571.52783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3a8 -06634476 571.52783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -06634477 571.52783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3b8 -06634478 571.52789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -06634479 571.52789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3c8 -06634480 571.52789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -06634481 571.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3d8 -06634482 571.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -06634483 571.52795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3e8 -06634484 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -06634485 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa3f8 -06634486 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -06634487 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa408 -06634488 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -06634489 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa418 -06634490 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -06634491 571.52801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa428 -06634492 571.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -06634493 571.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa438 -06634494 571.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -06634495 571.52807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa448 -06634496 571.52813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -06634497 571.52813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa458 -06634498 571.52819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -06634499 571.52819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa468 -06634500 571.52819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -06634501 571.52819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa478 -06634502 571.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -06634503 571.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa488 -06634504 571.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -06634505 571.52825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa498 -06634506 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -06634507 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4a8 -06634508 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -06634509 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4b8 -06634510 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -06634511 571.52832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4c8 -06634512 571.52838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -06634513 571.52838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4d8 -06634514 571.52838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -06634515 571.52838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4e8 -06634516 571.52844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -06634517 571.52844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa4f8 -06634518 571.52844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -06634519 571.52844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa508 -06634520 571.52850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -06634521 571.52850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa518 -06634522 571.52850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -06634523 571.52850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa528 -06634524 571.52856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -06634525 571.52856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa538 -06634526 571.52856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -06634527 571.52856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa548 -06634528 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -06634529 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa558 -06634530 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -06634531 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa568 -06634532 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -06634533 571.52862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa578 -06634534 571.52868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -06634535 571.52868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa588 -06634536 571.52868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -06634537 571.52868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa598 -06634538 571.52874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -06634539 571.52874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5a8 -06634540 571.52874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -06634541 571.52874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5b8 -06634542 571.52880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -06634543 571.52880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5c8 -06634544 571.52880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -06634545 571.52880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5d8 -06634546 571.52886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -06634547 571.52886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5e8 -06634548 571.52886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -06634549 571.52886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa5f8 -06634550 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -06634551 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa608 -06634552 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -06634553 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa618 -06634554 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -06634555 571.52893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa628 -06634556 571.52899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -06634557 571.52899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa638 -06634558 571.52899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -06634559 571.52899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa648 -06634560 571.52905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -06634561 571.52905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa658 -06634562 571.52905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -06634563 571.52905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa668 -06634564 571.52911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -06634565 571.52911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa678 -06634566 571.52911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -06634567 571.52911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa688 -06634568 571.52917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -06634569 571.52917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa698 -06634570 571.52923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -06634571 571.52923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6a8 -06634572 571.52923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -06634573 571.52923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6b8 -06634574 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -06634575 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6c8 -06634576 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -06634577 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6d8 -06634578 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -06634579 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6e8 -06634580 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -06634581 571.52929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa6f8 -06634582 571.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -06634583 571.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa708 -06634584 571.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -06634585 571.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa718 -06634586 571.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -06634587 571.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa728 -06634588 571.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -06634589 571.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa738 -06634590 571.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -06634591 571.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa748 -06634592 571.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -06634593 571.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa758 -06634594 571.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -06634595 571.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa768 -06634596 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -06634597 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa778 -06634598 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -06634599 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa788 -06634600 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -06634601 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa798 -06634602 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -06634603 571.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7a8 -06634604 571.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -06634605 571.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7b8 -06634606 571.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -06634607 571.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7c8 -06634608 571.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -06634609 571.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7d8 -06634610 571.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -06634611 571.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7e8 -06634612 571.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -06634613 571.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa7f8 -06634614 571.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -06634615 571.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa808 -06634616 571.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -06634617 571.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa818 -06634618 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -06634619 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa828 -06634620 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -06634621 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa838 -06634622 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -06634623 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa848 -06634624 571.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -06634625 571.52996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa858 -06634626 571.52996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -06634627 571.52996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa868 -06634628 571.53002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -06634629 571.53002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa878 -06634630 571.53002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -06634631 571.53002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa888 -06634632 571.53009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -06634633 571.53009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa898 -06634634 571.53009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -06634635 571.53009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8a8 -06634636 571.53015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -06634637 571.53015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8b8 -06634638 571.53015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -06634639 571.53015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8c8 -06634640 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -06634641 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8d8 -06634642 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -06634643 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8e8 -06634644 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -06634645 571.53021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa8f8 -06634646 571.53027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -06634647 571.53027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa908 -06634648 571.53027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -06634649 571.53027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa918 -06634650 571.53033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -06634651 571.53033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa928 -06634652 571.53033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -06634653 571.53033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa938 -06634654 571.53039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -06634655 571.53039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa948 -06634656 571.53039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -06634657 571.53039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa958 -06634658 571.53045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -06634659 571.53045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa968 -06634660 571.53045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -06634661 571.53045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa978 -06634662 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -06634663 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa988 -06634664 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -06634665 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa998 -06634666 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -06634667 571.53051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9a8 -06634668 571.53057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -06634669 571.53057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9b8 -06634670 571.53057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -06634671 571.53057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9c8 -06634672 571.53063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -06634673 571.53063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9d8 -06634674 571.53063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -06634675 571.53063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9e8 -06634676 571.53070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -06634677 571.53070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xa9f8 -06634678 571.53070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -06634679 571.53070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa08 -06634680 571.53076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -06634681 571.53076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa18 -06634682 571.53076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -06634683 571.53076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa28 -06634684 571.53082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -06634685 571.53082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa38 -06634686 571.53082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -06634687 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa48 -06634688 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -06634689 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa58 -06634690 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -06634691 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa68 -06634692 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -06634693 571.53088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa78 -06634694 571.53094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -06634695 571.53094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa88 -06634696 571.53094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -06634697 571.53094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaa98 -06634698 571.53100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -06634699 571.53100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaa8 -06634700 571.53100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -06634701 571.53100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaab8 -06634702 571.53106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -06634703 571.53106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaac8 -06634704 571.53106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -06634705 571.53106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaad8 -06634706 571.53112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -06634707 571.53112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaae8 -06634708 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -06634709 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaaf8 -06634710 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -06634711 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab08 -06634712 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -06634713 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab18 -06634714 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -06634715 571.53118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab28 -06634716 571.53125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -06634717 571.53125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab38 -06634718 571.53125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -06634719 571.53125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab48 -06634720 571.53131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -06634721 571.53131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab58 -06634722 571.53131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -06634723 571.53137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab68 -06634724 571.53137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -06634725 571.53137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab78 -06634726 571.53143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -06634727 571.53143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab88 -06634728 571.53143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -06634729 571.53143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xab98 -06634730 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -06634731 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaba8 -06634732 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -06634733 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb8 -06634734 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -06634735 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc8 -06634736 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -06634737 571.53149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd8 -06634738 571.53155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -06634739 571.53155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe8 -06634740 571.53155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -06634741 571.53155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf8 -06634742 571.53161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -06634743 571.53161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac08 -06634744 571.53167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -06634745 571.53167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac18 -06634746 571.53167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -06634747 571.53167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac28 -06634748 571.53173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -06634749 571.53173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac38 -06634750 571.53173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -06634751 571.53173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac48 -06634752 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -06634753 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac58 -06634754 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -06634755 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac68 -06634756 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -06634757 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac78 -06634758 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -06634759 571.53179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac88 -06634760 571.53186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -06634761 571.53186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xac98 -06634762 571.53186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -06634763 571.53192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca8 -06634764 571.53192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -06634765 571.53192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb8 -06634766 571.53198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -06634767 571.53198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc8 -06634768 571.53198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -06634769 571.53198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd8 -06634770 571.53204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -06634771 571.53204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xace8 -06634772 571.53204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -06634773 571.53204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf8 -06634774 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -06634775 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad08 -06634776 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -06634777 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad18 -06634778 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -06634779 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad28 -06634780 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -06634781 571.53210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad38 -06634782 571.53216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -06634783 571.53216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad48 -06634784 571.53222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -06634785 571.53222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad58 -06634786 571.53222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -06634787 571.53222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad68 -06634788 571.53228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -06634789 571.53228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad78 -06634790 571.53228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -06634791 571.53228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -06634792 571.53234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -06634793 571.53234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -06634794 571.53234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -06634795 571.53234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -06634796 571.53240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -06634797 571.53240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -06634798 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -06634799 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -06634800 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -06634801 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -06634802 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -06634803 571.53247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -06634804 571.53253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -06634805 571.53253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -06634806 571.53259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -06634807 571.53259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -06634808 571.53259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -06634809 571.53259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -06634810 571.53265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -06634811 571.53265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -06634812 571.53265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -06634813 571.53265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -06634814 571.53271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -06634815 571.53271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -06634816 571.53271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -06634817 571.53271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -06634818 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -06634819 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -06634820 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -06634821 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -06634822 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -06634823 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -06634824 571.53277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -06634825 571.53283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -06634826 571.53283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -06634827 571.53283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -06634828 571.53289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -06634829 571.53289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -06634830 571.53289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -06634831 571.53289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -06634832 571.53295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -06634833 571.53295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -06634834 571.53295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -06634835 571.53295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaee8 -06634836 571.53302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -06634837 571.53302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaef8 -06634838 571.53302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -06634839 571.53302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf08 -06634840 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -06634841 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf18 -06634842 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -06634843 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf28 -06634844 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -06634845 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf38 -06634846 571.53308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -06634847 571.53314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf48 -06634848 571.53314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -06634849 571.53314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf58 -06634850 571.53320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -06634851 571.53320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf68 -06634852 571.53320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -06634853 571.53320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf78 -06634854 571.53326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -06634855 571.53326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf88 -06634856 571.53326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -06634857 571.53326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaf98 -06634858 571.53332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -06634859 571.53332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafa8 -06634860 571.53332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -06634861 571.53332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafb8 -06634862 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -06634863 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafc8 -06634864 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -06634865 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafd8 -06634866 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -06634867 571.53338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xafe8 -06634868 571.53344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -06634869 571.53344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xaff8 -06634870 571.53344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -06634871 571.53344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb008 -06634872 571.53350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -06634873 571.53350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb018 -06634874 571.53350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -06634875 571.53350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb028 -06634876 571.53356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -06634877 571.53356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb038 -06634878 571.53356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -06634879 571.53356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb048 -06634880 571.53363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -06634881 571.53363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb058 -06634882 571.53363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -06634883 571.53363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb068 -06634884 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -06634885 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb078 -06634886 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -06634887 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb088 -06634888 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -06634889 571.53369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb098 -06634890 571.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -06634891 571.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0a8 -06634892 571.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -06634893 571.53375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0b8 -06634894 571.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -06634895 571.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0c8 -06634896 571.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -06634897 571.53381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0d8 -06634898 571.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -06634899 571.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0e8 -06634900 571.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -06634901 571.53387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb0f8 -06634902 571.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -06634903 571.53393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb108 -06634904 571.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -06634905 571.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb118 -06634906 571.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -06634907 571.53399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb128 -06634908 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -06634909 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb138 -06634910 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -06634911 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb148 -06634912 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -06634913 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb158 -06634914 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -06634915 571.53405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb168 -06634916 571.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -06634917 571.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb178 -06634918 571.53411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -06634919 571.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb188 -06634920 571.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -06634921 571.53417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb198 -06634922 571.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -06634923 571.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1a8 -06634924 571.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -06634925 571.53424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1b8 -06634926 571.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -06634927 571.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1c8 -06634928 571.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -06634929 571.53430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1d8 -06634930 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -06634931 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1e8 -06634932 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -06634933 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb1f8 -06634934 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -06634935 571.53436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb208 -06634936 571.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -06634937 571.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb218 -06634938 571.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -06634939 571.53442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb228 -06634940 571.53448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -06634941 571.53448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb238 -06634942 571.53448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -06634943 571.53448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb248 -06634944 571.53454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -06634945 571.53454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb258 -06634946 571.53454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -06634947 571.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb268 -06634948 571.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -06634949 571.53460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb278 -06634950 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -06634951 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb288 -06634952 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -06634953 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb298 -06634954 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -06634955 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2a8 -06634956 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -06634957 571.53466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2b8 -06634958 571.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -06634959 571.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2c8 -06634960 571.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -06634961 571.53472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2d8 -06634962 571.53479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -06634963 571.53479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2e8 -06634964 571.53479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -06634965 571.53485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb2f8 -06634966 571.53485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -06634967 571.53485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb308 -06634968 571.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -06634969 571.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb318 -06634970 571.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -06634971 571.53491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb328 -06634972 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -06634973 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb338 -06634974 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -06634975 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb348 -06634976 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -06634977 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb358 -06634978 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -06634979 571.53497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb368 -06634980 571.53503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -06634981 571.53503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb378 -06634982 571.53503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -06634983 571.53503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb388 -06634984 571.53509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -06634985 571.53509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb398 -06634986 571.53515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -06634987 571.53515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3a8 -06634988 571.53515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -06634989 571.53515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3b8 -06634990 571.53521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -06634991 571.53521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3c8 -06634992 571.53521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -06634993 571.53521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3d8 -06634994 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -06634995 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3e8 -06634996 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -06634997 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb3f8 -06634998 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -06634999 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb408 -06635000 571.53527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -06635001 571.53533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb418 -06635002 571.53533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -06635003 571.53533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb428 -06635004 571.53540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -06635005 571.53540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb438 -06635006 571.53540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -06635007 571.53540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb448 -06635008 571.53546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -06635009 571.53546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb458 -06635010 571.53546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -06635011 571.53546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb468 -06635012 571.53552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -06635013 571.53552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -06635014 571.53552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -06635015 571.53552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -06635016 571.53558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -06635017 571.53558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -06635018 571.53558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -06635019 571.53558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -06635020 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -06635021 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -06635022 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -06635023 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -06635024 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -06635025 571.53564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -06635026 571.53570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -06635027 571.53570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -06635028 571.53570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -06635029 571.53570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -06635030 571.53576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -06635031 571.53576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -06635032 571.53576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -06635033 571.53576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -06635034 571.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -06635035 571.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -06635036 571.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -06635037 571.53582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -06635038 571.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -06635039 571.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -06635040 571.53588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -06635041 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -06635042 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -06635043 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -06635044 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -06635045 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -06635046 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -06635047 571.53594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -06635048 571.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -06635049 571.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -06635050 571.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -06635051 571.53601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -06635052 571.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -06635053 571.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -06635054 571.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -06635055 571.53607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -06635056 571.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -06635057 571.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -06635058 571.53613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -06635059 571.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -06635060 571.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -06635061 571.53619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -06635062 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -06635063 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -06635064 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -06635065 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb618 -06635066 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -06635067 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb628 -06635068 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -06635069 571.53625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb638 -06635070 571.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -06635071 571.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb648 -06635072 571.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -06635073 571.53631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb658 -06635074 571.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -06635075 571.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb668 -06635076 571.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -06635077 571.53637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb678 -06635078 571.53643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -06635079 571.53643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb688 -06635080 571.53643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -06635081 571.53649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb698 -06635082 571.53649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -06635083 571.53649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6a8 -06635084 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -06635085 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6b8 -06635086 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -06635087 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6c8 -06635088 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -06635089 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6d8 -06635090 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -06635091 571.53656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6e8 -06635092 571.53662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -06635093 571.53662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb6f8 -06635094 571.53662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -06635095 571.53662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb708 -06635096 571.53668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -06635097 571.53668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb718 -06635098 571.53668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -06635099 571.53668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb728 -06635100 571.53674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -06635101 571.53674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -06635102 571.53674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -06635103 571.53680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -06635104 571.53680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -06635105 571.53680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -06635106 571.53686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -06635107 571.53686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -06635108 571.53686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -06635109 571.53686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -06635110 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -06635111 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -06635112 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -06635113 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -06635114 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -06635115 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -06635116 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -06635117 571.53692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -06635118 571.53698730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -06635119 571.53698730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -06635120 571.53698730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -06635121 571.53698730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -06635122 571.53704834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -06635123 571.53704834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -06635124 571.53704834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -06635125 571.53710938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -06635126 571.53710938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -06635127 571.53710938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -06635128 571.53717041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -06635129 571.53717041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -06635130 571.53717041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -06635131 571.53717041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -06635132 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -06635133 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -06635134 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -06635135 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -06635136 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -06635137 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -06635138 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -06635139 571.53723145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -06635140 571.53729248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -06635141 571.53729248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -06635142 571.53729248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -06635143 571.53735352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -06635144 571.53735352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -06635145 571.53735352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb898 -06635146 571.53741455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -06635147 571.53741455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8a8 -06635148 571.53741455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -06635149 571.53741455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8b8 -06635150 571.53747559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -06635151 571.53747559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8c8 -06635152 571.53747559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -06635153 571.53747559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8d8 -06635154 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -06635155 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8e8 -06635156 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -06635157 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb8f8 -06635158 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -06635159 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb908 -06635160 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -06635161 571.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb918 -06635162 571.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -06635163 571.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb928 -06635164 571.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -06635165 571.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb938 -06635166 571.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -06635167 571.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb948 -06635168 571.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -06635169 571.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb958 -06635170 571.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -06635171 571.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb968 -06635172 571.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -06635173 571.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb978 -06635174 571.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -06635175 571.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb988 -06635176 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -06635177 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb998 -06635178 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -06635179 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9a8 -06635180 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -06635181 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9b8 -06635182 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -06635183 571.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9c8 -06635184 571.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -06635185 571.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9d8 -06635186 571.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -06635187 571.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9e8 -06635188 571.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -06635189 571.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb9f8 -06635190 571.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -06635191 571.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba08 -06635192 571.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -06635193 571.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba18 -06635194 571.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -06635195 571.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba28 -06635196 571.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -06635197 571.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba38 -06635198 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -06635199 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba48 -06635200 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -06635201 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba58 -06635202 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -06635203 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba68 -06635204 571.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -06635205 571.53820801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba78 -06635206 571.53820801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -06635207 571.53820801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba88 -06635208 571.53826904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -06635209 571.53826904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xba98 -06635210 571.53826904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -06635211 571.53826904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaa8 -06635212 571.53833008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -06635213 571.53833008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbab8 -06635214 571.53833008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -06635215 571.53833008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbac8 -06635216 571.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -06635217 571.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbad8 -06635218 571.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -06635219 571.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbae8 -06635220 571.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -06635221 571.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbaf8 -06635222 571.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -06635223 571.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb08 -06635224 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -06635225 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb18 -06635226 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -06635227 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb28 -06635228 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -06635229 571.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb38 -06635230 571.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -06635231 571.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb48 -06635232 571.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -06635233 571.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb58 -06635234 571.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -06635235 571.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb68 -06635236 571.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -06635237 571.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb78 -06635238 571.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -06635239 571.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb88 -06635240 571.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -06635241 571.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbb98 -06635242 571.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -06635243 571.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbba8 -06635244 571.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -06635245 571.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbb8 -06635246 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -06635247 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbc8 -06635248 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -06635249 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbd8 -06635250 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -06635251 571.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbe8 -06635252 571.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -06635253 571.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbbf8 -06635254 571.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -06635255 571.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc08 -06635256 571.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -06635257 571.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc18 -06635258 571.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -06635259 571.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc28 -06635260 571.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -06635261 571.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc38 -06635262 571.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -06635263 571.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc48 -06635264 571.53906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -06635265 571.53906250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc58 -06635266 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -06635267 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc68 -06635268 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -06635269 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc78 -06635270 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -06635271 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc88 -06635272 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -06635273 571.53912354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbc98 -06635274 571.53918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -06635275 571.53918457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbca8 -06635276 571.53924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -06635277 571.53924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcb8 -06635278 571.53924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -06635279 571.53924561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcc8 -06635280 571.53930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -06635281 571.53930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcd8 -06635282 571.53930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -06635283 571.53930664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -06635284 571.53936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -06635285 571.53936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -06635286 571.53936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -06635287 571.53936768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -06635288 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -06635289 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -06635290 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -06635291 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -06635292 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -06635293 571.53942871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -06635294 571.53948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -06635295 571.53948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -06635296 571.53948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -06635297 571.53948975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -06635298 571.53955078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -06635299 571.53955078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -06635300 571.53955078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -06635301 571.53955078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -06635302 571.53961182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -06635303 571.53961182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -06635304 571.53961182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -06635305 571.53961182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -06635306 571.53967285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -06635307 571.53967285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -06635308 571.53967285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -06635309 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -06635310 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -06635311 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -06635312 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -06635313 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -06635314 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -06635315 571.53973389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -06635316 571.53979492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -06635317 571.53979492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -06635318 571.53979492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -06635319 571.53979492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -06635320 571.53985596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -06635321 571.53985596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -06635322 571.53985596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -06635323 571.53985596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -06635324 571.53991699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -06635325 571.53991699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -06635326 571.53991699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -06635327 571.53991699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -06635328 571.53997803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -06635329 571.53997803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -06635330 571.54003906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -06635331 571.54003906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -06635332 571.54003906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -06635333 571.54003906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe78 -06635334 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -06635335 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe88 -06635336 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -06635337 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe98 -06635338 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -06635339 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbea8 -06635340 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -06635341 571.54010010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbeb8 -06635342 571.54016113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -06635343 571.54016113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbec8 -06635344 571.54016113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -06635345 571.54016113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbed8 -06635346 571.54022217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -06635347 571.54022217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbee8 -06635348 571.54022217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -06635349 571.54028320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbef8 -06635350 571.54028320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -06635351 571.54028320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf08 -06635352 571.54034424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -06635353 571.54034424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf18 -06635354 571.54034424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -06635355 571.54034424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf28 -06635356 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -06635357 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf38 -06635358 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -06635359 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf48 -06635360 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -06635361 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf58 -06635362 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -06635363 571.54040527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf68 -06635364 571.54046631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -06635365 571.54046631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf78 -06635366 571.54052734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -06635367 571.54052734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf88 -06635368 571.54052734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -06635369 571.54052734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbf98 -06635370 571.54058838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -06635371 571.54058838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfa8 -06635372 571.54058838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -06635373 571.54058838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfb8 -06635374 571.54064941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -06635375 571.54064941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbfc8 -06637429 571.56988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xfff8 -06637430 571.56988525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10008 -06637431 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10008 -06637432 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10018 -06637433 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10018 -06637434 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -06637435 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10028 -06637436 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -06637437 571.56994629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10038 -06637438 571.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -06637439 571.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10048 -06637440 571.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -06637441 571.57000732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10058 -06637442 571.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10068 -06637443 571.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10068 -06637444 571.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10078 -06637445 571.57006836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10078 -06637446 571.57012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10088 -06637447 571.57012939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10088 -06637448 571.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10098 -06637449 571.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10098 -06637450 571.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a8 -06637451 571.57019043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100a8 -06637452 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b8 -06637453 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100b8 -06637454 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c8 -06637455 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100c8 -06637456 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d8 -06637457 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100d8 -06637458 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e8 -06637459 571.57025146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100e8 -06637460 571.57031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f8 -06637461 571.57031250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x100f8 -06637462 571.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -06637463 571.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -06637464 571.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -06637465 571.57037354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -06637466 571.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -06637467 571.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -06637468 571.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -06637469 571.57043457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -06637470 571.57049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -06637471 571.57049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -06637472 571.57049561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -06640830 571.61834717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -06640831 571.61834717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -06640832 571.61834717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -06640833 571.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -06640834 571.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -06640835 571.61840820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -06640836 571.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -06640837 571.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -06640838 571.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -06640839 571.61846924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -06640840 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -06640841 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -06640842 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -06640843 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -06640844 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -06640845 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -06640846 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -06640847 571.61853027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -06640848 571.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -06640849 571.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -06640850 571.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -06640851 571.61859131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -06640852 571.61865234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -06640853 571.61865234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -06640854 571.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -06640855 571.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -06640856 571.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b18 -06640857 571.61871338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b18 -06640858 571.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b28 -06640859 571.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b28 -06640860 571.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b38 -06640861 571.61877441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b38 -06640862 571.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b48 -06640863 571.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b48 -06640864 571.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b58 -06640865 571.61883545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b58 -06640866 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b68 -06640867 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b68 -06640868 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b78 -06640869 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b78 -06640870 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b88 -06640871 571.61889648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b88 -06640872 571.61895752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b98 -06640873 571.61895752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b98 -06643846 571.66131592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c888 -06643847 571.66131592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c888 -06643848 571.66137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c898 -06643849 571.66137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c898 -06643850 571.66137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a8 -06643851 571.66137695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8a8 -06643852 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b8 -06643853 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8b8 -06643854 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c8 -06643855 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8c8 -06643856 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -06643857 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8d8 -06643858 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -06643859 571.66143799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8e8 -06643860 571.66149902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -06643861 571.66149902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c8f8 -06643862 571.66149902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -06643863 571.66149902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c908 -06643864 571.66156006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -06643865 571.66156006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c918 -06643866 571.66156006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -06643867 571.66162109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c928 -06643868 571.66162109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -06643869 571.66162109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c938 -06643870 571.66168213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -06643871 571.66168213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c948 -06643872 571.66168213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -06643873 571.66168213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c958 -06643874 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -06643875 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c968 -06643876 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -06643877 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c978 -06643878 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -06643879 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c988 -06643880 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -06643881 571.66174316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c998 -06643882 571.66180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -06643883 571.66180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9a8 -06643884 571.66180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -06643885 571.66180420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9b8 -06643886 571.66186523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -06643887 571.66186523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9c8 -06643888 571.66192627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -06643889 571.66192627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c9d8 -06646922 571.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a8 -06646923 571.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228a8 -06646924 571.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b8 -06646925 571.70495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228b8 -06646926 571.70501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c8 -06646927 571.70501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228c8 -06646928 571.70507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d8 -06646929 571.70507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228d8 -06646930 571.70507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e8 -06646931 571.70507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228e8 -06646932 571.70513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f8 -06646933 571.70513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x228f8 -06646934 571.70520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22908 -06646935 571.70520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22908 -06646936 571.70520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22918 -06646937 571.70520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22918 -06646938 571.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22928 -06646939 571.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22928 -06646940 571.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22938 -06646941 571.70526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22938 -06646942 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22948 -06646943 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22948 -06646944 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22958 -06646945 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22958 -06646946 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22968 -06646947 571.70532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22968 -06646948 571.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22978 -06646949 571.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22978 -06646950 571.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22988 -06646951 571.70538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22988 -06646952 571.70544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22998 -06646953 571.70544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22998 -06646954 571.70544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a8 -06646955 571.70544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229a8 -06646956 571.70550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b8 -06646957 571.70550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229b8 -06646958 571.70550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c8 -06646959 571.70550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229c8 -06646960 571.70556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d8 -06646961 571.70556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229d8 -06646962 571.70556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e8 -06646963 571.70562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229e8 -06646964 571.70562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f8 -06646965 571.70562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x229f8 -06663076 571.93420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42178 -06663077 571.93420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42178 -06663078 571.93426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42188 -06663079 571.93426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42188 -06663080 571.93426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42198 -06663081 571.93426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42198 -06663082 571.93432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a8 -06663083 571.93432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421a8 -06663084 571.93432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b8 -06663085 571.93432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421b8 -06663086 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c8 -06663087 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421c8 -06663088 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d8 -06663089 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421d8 -06663090 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e8 -06663091 571.93438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421e8 -06663092 571.93444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f8 -06663093 571.93444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x421f8 -06663094 571.93444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42208 -06663095 571.93444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42208 -06663096 571.93450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42218 -06663097 571.93450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42218 -06663098 571.93450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42228 -06663099 571.93450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42228 -06663100 571.93457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42238 -06663101 571.93457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42238 -06663102 571.93457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42248 -06663103 571.93463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42248 -06663104 571.93463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42258 -06663105 571.93463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42258 -06663106 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42268 -06663107 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42268 -06663108 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42278 -06663109 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42278 -06663110 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42288 -06663111 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42288 -06663112 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42298 -06663113 571.93469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42298 -06663114 571.93475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a8 -06663115 571.93475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422a8 -06663116 571.93475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b8 -06663117 571.93475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422b8 -06663118 571.93481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c8 -06663119 571.93481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x422c8 -06666429 571.98199463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a38 -06666430 571.98199463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a48 -06666431 571.98199463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a48 -06666432 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a58 -06666433 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a58 -06666434 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -06666435 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a68 -06666436 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -06666437 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a78 -06666438 571.98205566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -06666439 571.98211670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a88 -06666440 571.98211670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -06666441 571.98211670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a98 -06666442 571.98217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06666443 571.98217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48aa8 -06666444 571.98217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06666445 571.98217773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ab8 -06666446 571.98223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06666447 571.98223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ac8 -06666448 571.98223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06666449 571.98223877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ad8 -06666450 571.98229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06666451 571.98229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ae8 -06666452 571.98229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06666453 571.98229980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48af8 -06666454 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06666455 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -06666456 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06666457 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -06666458 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06666459 571.98236084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -06666460 571.98242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06666461 571.98242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -06666462 571.98242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06666463 571.98242188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -06666464 571.98248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06666465 571.98248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -06666466 571.98248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06666467 571.98248291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -06666468 571.98254395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06666469 571.98254395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -06666470 571.98254395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06666471 571.98254395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -06666472 571.98260498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -06669734 572.02954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f188 -06669735 572.02954102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f188 -06669736 572.02960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f198 -06669737 572.02960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f198 -06669738 572.02960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a8 -06669739 572.02960205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1a8 -06669740 572.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b8 -06669741 572.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1b8 -06669742 572.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c8 -06669743 572.02966309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1c8 -06669744 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -06669745 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1d8 -06669746 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -06669747 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1e8 -06669748 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -06669749 572.02972412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f1f8 -06669750 572.02978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -06669751 572.02978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f208 -06669752 572.02978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f218 -06669753 572.02978516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f218 -06669754 572.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -06669755 572.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f228 -06669756 572.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -06669757 572.02984619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f238 -06669758 572.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -06669759 572.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f248 -06669760 572.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -06669761 572.02990723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f258 -06669762 572.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -06669763 572.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f268 -06669764 572.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -06669765 572.02996826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f278 -06669766 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -06669767 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f288 -06669768 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -06669769 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f298 -06669770 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -06669771 572.03002930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a8 -06669772 572.03009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -06669773 572.03009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b8 -06669774 572.03009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -06669775 572.03009033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c8 -06669776 572.03015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -06669777 572.03015137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d8 -06671644 572.54455566 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671645 572.54467773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671646 572.54467773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671647 572.54473877 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06671648 572.54486084 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671649 572.54486084 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06671650 572.54498291 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671651 572.54498291 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06671652 572.58258057 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06671653 572.60229492 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671654 572.60229492 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671655 574.60314941 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06671656 574.62207031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671657 574.62207031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671658 575.05383301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671659 575.05389404 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671660 575.05395508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671661 575.05395508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06671662 575.05401611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671663 575.05401611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06671664 575.05407715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06671665 575.05419922 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06671666 576.17230225 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -06671667 576.17346191 [vmhook-eac [core number = 2]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -06671668 576.62377930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06671669 576.64721680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671670 576.64721680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06671671 577.05859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06671672 577.05859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06671673 577.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06671674 577.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06671675 577.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06671676 577.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06671677 577.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06671678 577.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06671679 577.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06671680 577.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06671681 577.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06671682 577.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06671683 577.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06671684 577.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06671685 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06671686 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06671687 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06671688 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06671689 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06671690 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06671691 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06671692 577.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06671693 577.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06671694 577.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06671695 577.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06671696 577.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06671697 577.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06671698 577.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06671699 577.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06671700 577.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06671701 577.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06671702 577.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06671703 577.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06671704 577.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06671705 577.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06671706 577.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06671707 577.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06671708 577.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06671709 577.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06671710 577.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06671711 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06671712 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06671713 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06671714 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06671715 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06671716 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06671717 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06671718 577.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06671719 577.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06671720 577.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06671721 577.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06671722 577.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06671723 577.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06671724 577.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06671725 577.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06671726 577.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06671727 577.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06671728 577.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06671729 577.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06671730 577.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06671731 577.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06671732 577.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06671733 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06671734 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06671735 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06671736 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06671737 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06671738 577.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06671739 577.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06671740 577.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06671741 577.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06671742 577.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06671743 577.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06671744 577.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06671745 577.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06671746 577.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06671747 577.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06671748 577.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06671749 577.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06671750 577.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06671751 577.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06671752 577.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06671753 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06671754 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06671755 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06671756 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06671757 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06671758 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06671759 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06671760 577.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06671761 577.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06671762 577.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06671763 577.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06671764 577.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06671765 577.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06671766 577.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06671767 577.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06671768 577.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06671769 577.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06671770 577.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06671771 577.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06671772 577.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06671773 577.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06671774 577.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06671775 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06671776 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06671777 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06671778 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06671779 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06671780 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06671781 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06671782 577.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06671783 577.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06671784 577.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06671785 577.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06671786 577.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06671787 577.06024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06671788 577.06024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06671789 577.06024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06671790 577.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06671791 577.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06671792 577.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06671793 577.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06671794 577.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06671795 577.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06671796 577.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06671797 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06671798 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06671799 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06671800 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06671801 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06671802 577.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06671803 577.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06671804 577.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06671805 577.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06671806 577.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06671807 577.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06671808 577.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06671809 577.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06671810 577.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06671811 577.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06671812 577.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06671813 577.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06671814 577.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06671815 577.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06671816 577.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06671817 577.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06671818 577.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06671819 577.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06671820 577.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06671821 577.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06671822 577.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06671823 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06671824 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06671825 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06671826 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06671827 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06671828 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06671829 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06671830 577.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06671831 577.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06671832 577.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06671833 577.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06671834 577.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06671835 577.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06671836 577.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06671837 577.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06671838 577.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06671839 577.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06671840 577.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06671841 577.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06671842 577.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06671843 577.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06671844 577.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06671845 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06671846 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06671847 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06671848 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06671849 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06671850 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06671851 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06671852 577.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06671853 577.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06671854 577.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06671855 577.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06671856 577.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06671857 577.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06671858 577.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06671859 577.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06671860 577.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06671861 577.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06671862 577.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06671863 577.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06671864 577.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06671865 577.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06671866 577.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06671867 577.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06671868 577.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06671869 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06671870 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06671871 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06671872 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06671873 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06671874 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06671875 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06671876 577.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06671877 577.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06671878 577.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06671879 577.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06671880 577.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06671881 577.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06671882 577.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06671883 577.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06671884 577.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06671885 577.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06671886 577.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06671887 577.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06671888 577.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06671889 577.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06671890 577.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06671891 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06671892 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06671893 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06671894 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06671895 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06671896 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06671897 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06671898 577.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06671899 577.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06671900 577.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06671901 577.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06671902 577.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06671903 577.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06671904 577.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06671905 577.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06671906 577.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06671907 577.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06671908 577.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06671909 577.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06671910 577.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06671911 577.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06671912 577.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06671913 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06671914 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06671915 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06671916 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06671917 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06671918 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06671919 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06671920 577.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06671921 577.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06671922 577.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06671923 577.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06671924 577.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06671925 577.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06671926 577.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06671927 577.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06671928 577.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06671929 577.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06671930 577.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06671931 577.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06671932 577.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06671933 577.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06671934 577.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06671935 577.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06671936 577.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06671937 577.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06671938 577.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06671939 577.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06671940 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06671941 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06671942 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06671943 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06671944 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06671945 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06671946 577.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06671947 577.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06671948 577.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06671949 577.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06671950 577.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06671951 577.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06671952 577.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06671953 577.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06671954 577.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06671955 577.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06671956 577.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06671957 577.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06671958 577.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06671959 577.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06671960 577.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06671961 577.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06671962 577.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06671963 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06671964 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06671965 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06671966 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06671967 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06671968 577.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06671969 577.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06671970 577.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06671971 577.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06671972 577.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06671973 577.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06671974 577.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06671975 577.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06671976 577.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06671977 577.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06671978 577.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06671979 577.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06671980 577.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06671981 577.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06671982 577.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06671983 577.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06671984 577.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06671985 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06671986 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06671987 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06671988 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06671989 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06671990 577.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06671991 577.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06671992 577.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06671993 577.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06671994 577.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06671995 577.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06671996 577.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06671997 577.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06671998 577.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06671999 577.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06672000 577.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06672001 577.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06672002 577.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06672003 577.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06672004 577.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06672005 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06672006 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06672007 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06672008 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06672009 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06672010 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06672011 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06672012 577.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06672013 577.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06672014 577.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06672015 577.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06672016 577.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06672017 577.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06672018 577.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06672019 577.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06672020 577.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06672021 577.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06672022 577.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06672023 577.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06672024 577.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06672025 577.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06672026 577.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06672027 577.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06672028 577.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06672029 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06672030 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06672031 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06672032 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06672033 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06672034 577.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06672035 577.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06672036 577.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06672037 577.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06672038 577.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06672039 577.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06672040 577.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06672041 577.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06672042 577.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06672043 577.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06672044 577.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06672045 577.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06672046 577.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06672047 577.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06672048 577.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06672049 577.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06672050 577.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06672051 577.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06672052 577.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06672053 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06672054 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06672055 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06672056 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06672057 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06672058 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06672059 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06672060 577.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06672061 577.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06672062 577.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06672063 577.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06672064 577.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06672065 577.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06672066 577.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06672067 577.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06672068 577.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06672069 577.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06672070 577.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06672071 577.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06672072 577.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06672073 577.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06672074 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06672075 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06672076 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06672077 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06672078 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06672079 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06672080 577.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06672081 577.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06672082 577.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06672083 577.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06672084 577.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06672085 577.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06672086 577.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06672087 577.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06672088 577.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06672089 577.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06672090 577.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06672091 577.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06672092 577.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06672093 577.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06672094 577.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06672095 577.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06672096 577.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06672097 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06672098 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06672099 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06672100 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06672101 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06672102 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06672103 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06672104 577.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06672105 577.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06672106 577.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06672107 577.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06672108 577.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06672109 577.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06672110 577.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06672111 577.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06672112 577.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06672113 577.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06672114 577.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06672115 577.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06672116 577.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06672117 577.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06672118 577.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06672119 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06672120 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06672121 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06672122 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06672123 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06672124 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06672125 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06672126 577.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06672127 577.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06672128 577.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06672129 577.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06672130 577.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06672131 577.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06672132 577.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06672133 577.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06672134 577.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06672135 577.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06672136 577.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06672137 577.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06672138 577.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06672139 577.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06672140 577.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06672141 577.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06672142 577.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06672143 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06672144 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06672145 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06672146 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06672147 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06672148 577.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06672149 577.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06672150 577.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06672151 577.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06672152 577.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06672153 577.06530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06672154 577.06530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06672155 577.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06672156 577.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06672157 577.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06672158 577.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06672159 577.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06672160 577.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06672161 577.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06672162 577.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06672163 577.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06672164 577.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06672165 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06672166 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06672167 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06672168 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06672169 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06672170 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06672171 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06672172 577.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06672173 577.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06672174 577.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06672175 577.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06672176 577.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06672177 577.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06672178 577.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06672179 577.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06672180 577.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06672181 577.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06672182 577.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06672183 577.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06672184 577.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06672185 577.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06672186 577.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06672187 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06672188 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06672189 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06672190 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06672191 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06672192 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06672193 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06672194 577.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06672195 577.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06672196 577.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06672197 577.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06672198 577.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06672199 577.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06672200 577.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06672201 577.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06672202 577.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06672203 577.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06672204 577.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06672205 577.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06672206 577.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06672207 577.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06672208 577.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06672209 577.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06672210 577.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06672211 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06672212 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06672213 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06672214 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06672215 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06672216 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06672217 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06672218 577.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06672219 577.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06672220 577.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06672221 577.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06672222 577.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06672223 577.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06672224 577.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06672225 577.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06672226 577.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06672227 577.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06672228 577.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06672229 577.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06672230 577.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06672231 577.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06672232 577.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06672233 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06672234 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06672235 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06672236 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06672237 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06672238 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06672239 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06672240 577.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06672241 577.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06672242 577.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06672243 577.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06672244 577.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06672245 577.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06672246 577.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06672247 577.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06672248 577.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06672249 577.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06672250 577.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06672251 577.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06672252 577.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06672253 577.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06672254 577.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06672255 577.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06672256 577.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06672257 577.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06672258 577.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06672259 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06672260 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06672261 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06672262 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06672263 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06672264 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06672265 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06672266 577.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06672267 577.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06672268 577.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06672269 577.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06672270 577.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06672271 577.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06672272 577.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06672273 577.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06672274 577.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06672275 577.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06672276 577.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06672277 577.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06672278 577.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06672279 577.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06672280 577.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06672281 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06672282 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06672283 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06672284 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06672285 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06672286 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06672287 577.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06672288 577.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06672289 577.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06672290 577.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06672291 577.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06672292 577.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06672293 577.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06672294 577.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06672295 577.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06672296 577.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06672297 577.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06672298 577.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06672299 577.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06672300 577.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06672301 577.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06672302 577.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06672303 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06672304 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06672305 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06672306 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06672307 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06672308 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06672309 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06672310 577.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06672311 577.06750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06672312 577.06750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06672313 577.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06672314 577.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06672315 577.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06672316 577.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06672317 577.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06672318 577.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06672319 577.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06672320 577.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06672321 577.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06672322 577.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06672323 577.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06672324 577.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06672325 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06672326 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06672327 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06672328 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06672329 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06672330 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06672331 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06672332 577.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06672333 577.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06672334 577.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06672335 577.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06672336 577.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06672337 577.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06672338 577.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06672339 577.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06672340 577.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06672341 577.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06672342 577.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06672343 577.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06672344 577.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06672345 577.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06672346 577.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06672347 577.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06672348 577.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06672349 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06672350 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06672351 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06672352 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06672353 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06672354 577.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06672355 577.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06672356 577.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06672357 577.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06672358 577.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06672359 577.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06672360 577.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06672361 577.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06672362 577.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06672363 577.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06672364 577.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06672365 577.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06672366 577.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06672367 577.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06672368 577.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06672369 577.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06672370 577.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06672371 577.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06672372 577.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06672373 577.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06672374 577.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06672375 577.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06672376 577.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06672377 577.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06672378 577.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06672379 577.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06672380 577.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06672381 577.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06672382 577.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06672383 577.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06672384 577.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06672385 577.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06672386 577.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06672387 577.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06672388 577.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06672389 577.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06672390 577.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06672391 577.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06672392 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06672393 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06672394 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06672395 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06672396 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06672397 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06672398 577.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06672399 577.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06672400 577.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06672401 577.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06672402 577.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06672403 577.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06672404 577.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06672405 577.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06672406 577.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06672407 577.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06672408 577.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06672409 577.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06672410 577.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06672411 577.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06672412 577.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06672413 577.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06672414 577.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06672415 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06672416 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06672417 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06672418 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06672419 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06672420 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06672421 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06672422 577.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06672423 577.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06672424 577.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06672425 577.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06672426 577.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06672427 577.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06672428 577.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06672429 577.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06672430 577.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06672431 577.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06672432 577.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06672433 577.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06672434 577.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06672435 577.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06672436 577.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06672437 577.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06672438 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06672439 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06672440 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06672441 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06672442 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06672443 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06672444 577.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06672445 577.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06672446 577.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06672447 577.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06672448 577.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06672449 577.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06672450 577.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06672451 577.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06672452 577.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06672453 577.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06672454 577.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06672455 577.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06672456 577.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06672457 577.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06672458 577.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06672459 577.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06672460 577.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06672461 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06672462 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06672463 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06672464 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06672465 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06672466 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06672467 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06672468 577.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06672469 577.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06672470 577.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06672471 577.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06672472 577.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06672473 577.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06672474 577.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06672475 577.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06672476 577.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06672477 577.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06672478 577.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06672479 577.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06672480 577.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06672481 577.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06672482 577.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06672483 577.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06672484 577.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06672485 577.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06672486 577.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06672487 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06672488 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06672489 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06672490 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06672491 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06672492 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06672493 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06672494 577.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06672495 577.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06672496 577.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06672497 577.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06672498 577.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06672499 577.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06672500 577.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06672501 577.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06672502 577.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06672503 577.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06672504 577.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06672505 577.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06672506 577.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06672507 577.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06672508 577.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06672509 577.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06672510 577.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06672511 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06672512 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06672513 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06672514 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06672515 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06672516 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06672517 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06672518 577.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06672519 577.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06672520 577.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06672521 577.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06672522 577.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06672523 577.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06672524 577.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06672525 577.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06672526 577.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06672527 577.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06672528 577.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06672529 577.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06672530 577.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06672531 577.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06672532 577.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06672533 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06672534 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06672535 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06672536 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06672537 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06672538 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06672539 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06672540 577.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06672541 577.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06672542 577.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06672543 577.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06672544 577.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06672545 577.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06672546 577.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06672547 577.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06672548 577.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06672549 577.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06672550 577.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06672551 577.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06672552 577.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06672553 577.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06672554 577.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06672555 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06672556 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06672557 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06672558 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06672559 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06672560 577.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06672561 577.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06672562 577.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06672563 577.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06672564 577.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06672565 577.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06672566 577.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06672567 577.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06672568 577.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06672569 577.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06672570 577.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06672571 577.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06672572 577.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06672573 577.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06672574 577.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06672575 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06672576 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06672577 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06672578 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06672579 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06672580 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06672581 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06672582 577.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06672583 577.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06672584 577.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06672585 577.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06672586 577.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06672587 577.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06672588 577.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06672589 577.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06672590 577.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06672591 577.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06672592 577.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06672593 577.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06672594 577.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06672595 577.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06672596 577.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06672597 577.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06672598 577.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06672599 577.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06672600 577.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06672601 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06672602 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06672603 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06672604 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06672605 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06672606 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06672607 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06672608 577.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06672609 577.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06672610 577.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06672611 577.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06672612 577.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06672613 577.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06672614 577.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06672615 577.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06672616 577.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06672617 577.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06672618 577.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06672619 577.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06672620 577.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06672621 577.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06672622 577.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06672623 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06672624 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06672625 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06672626 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06672627 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06672628 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06672629 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06672630 577.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06672631 577.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06672632 577.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06672633 577.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06672634 577.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06672635 577.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06672636 577.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06672637 577.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06672638 577.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06672639 577.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06672640 577.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06672641 577.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06672642 577.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06672643 577.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06672644 577.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06672645 577.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06672646 577.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06672647 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06672648 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06672649 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06672650 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06672651 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06672652 577.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06672653 577.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06672654 577.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06672655 577.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06672656 577.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06672657 577.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06672658 577.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06672659 577.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06672660 577.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06672661 577.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06672662 577.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06672663 577.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06672664 577.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06672665 577.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06672666 577.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06672667 577.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06672668 577.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06672669 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06672670 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06672671 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06672672 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06672673 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06672674 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06672675 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06672676 577.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06672677 577.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06672678 577.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06672679 577.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06672680 577.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06672681 577.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06672682 577.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06672683 577.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06672684 577.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06672685 577.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06672686 577.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06672687 577.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06672688 577.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06672689 577.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06672690 577.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06672691 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06672692 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06672693 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06672694 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06672695 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06672696 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06672697 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06672698 577.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06672699 577.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06672700 577.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06672701 577.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06672702 577.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06672703 577.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06672704 577.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06672705 577.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06672706 577.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06672707 577.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06672708 577.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06672709 577.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06672710 577.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06672711 577.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06672712 577.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06672713 577.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06672714 577.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06672715 577.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06672716 577.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06672717 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06672718 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06672719 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06672720 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06672721 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06672722 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06672723 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06672724 577.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06672725 577.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06672726 577.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06672727 577.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06672728 577.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06672729 577.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06672730 577.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06672731 577.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06672732 577.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06672733 577.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06672734 577.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06672735 577.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06672736 577.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06672737 577.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06672738 577.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06672739 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06672740 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06672741 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06672742 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06672743 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06672744 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06672745 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06672746 577.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06672747 577.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06672748 577.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06672749 577.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06672750 577.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06672751 577.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06672752 577.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06672753 577.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06672754 577.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06672755 577.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06672756 577.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06672757 577.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06672758 577.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06672759 577.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06672760 577.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06672761 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06672762 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06672763 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06672764 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06672765 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06672766 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06672767 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06672768 577.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06672769 577.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06672770 577.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06672771 577.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06672772 577.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06672773 577.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06672774 577.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06672775 577.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06672776 577.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06672777 577.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06672778 577.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06672779 577.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06672780 577.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06672781 577.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06672782 577.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06672783 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06672784 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06672785 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06672786 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06672787 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06672788 577.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06672789 577.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06672790 577.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06672791 577.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06672792 577.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06672793 577.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06672794 577.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06672795 577.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06672796 577.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06672797 577.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06672798 577.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06672799 577.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06672800 577.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06672801 577.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06672802 577.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06672803 577.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06672804 577.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06672805 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06672806 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06672807 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06672808 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06672809 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06672810 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06672811 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06672812 577.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06672813 577.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06672814 577.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06672815 577.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06672816 577.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06672817 577.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06672818 577.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06672819 577.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06672820 577.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06672821 577.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06672822 577.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06672823 577.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06672824 577.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06672825 577.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06672826 577.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06672827 577.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06672828 577.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06672829 577.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06672830 577.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06672831 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06672832 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06672833 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06672834 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06672835 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06672836 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06672837 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06672838 577.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06672839 577.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06672840 577.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06672841 577.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06672842 577.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06672843 577.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06672844 577.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06672845 577.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06672846 577.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06672847 577.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06672848 577.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06672849 577.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06672850 577.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06672851 577.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06672852 577.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06672853 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06672854 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06672855 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06672856 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06672857 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06672858 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06672859 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06672860 577.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06672861 577.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06672862 577.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06672863 577.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06672864 577.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06672865 577.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06672866 577.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06672867 577.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06672868 577.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06672869 577.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06672870 577.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06672871 577.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06672872 577.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06672873 577.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06672874 577.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06672875 577.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06672876 577.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06672877 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06672878 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06672879 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06672880 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06672881 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06672882 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06672883 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06672884 577.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06672885 577.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06672886 577.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06672887 577.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06672888 577.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06672889 577.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06672890 577.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06672891 577.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06672892 577.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06672893 577.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06672894 577.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06672895 577.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06672896 577.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06672897 577.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06672898 577.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06672899 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06672900 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06672901 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06672902 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06672903 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06672904 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06672905 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06672906 577.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06672907 577.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06672908 577.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06672909 577.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06672910 577.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06672911 577.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06672912 577.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06672913 577.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06672914 577.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06672915 577.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06672916 577.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06672917 577.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06672918 577.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06672919 577.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06672920 577.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06672921 577.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06672922 577.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06672923 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06672924 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06672925 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06672926 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06672927 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06672928 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06672929 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06672930 577.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06672931 577.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06672932 577.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06672933 577.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06672934 577.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06672935 577.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06672936 577.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06672937 577.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06672938 577.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06672939 577.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06672940 577.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06672941 577.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06672942 577.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06672943 577.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06672944 577.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06672945 577.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06672946 577.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06672947 577.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06672948 577.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06672949 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06672950 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06672951 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06672952 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06672953 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06672954 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06672955 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06672956 577.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06672957 577.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06672958 577.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06672959 577.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06672960 577.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06672961 577.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06672962 577.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06672963 577.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06672964 577.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06672965 577.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06672966 577.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06672967 577.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06672968 577.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06672969 577.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06672970 577.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06672971 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06672972 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06672973 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06672974 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06672975 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06672976 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06672977 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06672978 577.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06672979 577.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06672980 577.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06672981 577.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06672982 577.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06672983 577.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06672984 577.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06672985 577.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06672986 577.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06672987 577.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06672988 577.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06672989 577.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06672990 577.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06672991 577.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06672992 577.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06672993 577.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06672994 577.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06672995 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06672996 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06672997 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06672998 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06672999 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06673000 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06673001 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06673002 577.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06673003 577.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06673004 577.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06673005 577.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06673006 577.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06673007 577.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06673008 577.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06673009 577.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06673010 577.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06673011 577.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06673012 577.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06673013 577.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06673014 577.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06673015 577.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06673016 577.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06673017 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06673018 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06673019 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06673020 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06673021 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06673022 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06673023 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06673024 577.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06673025 577.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06673026 577.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06673027 577.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06673028 577.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06673029 577.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06673030 577.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06673031 577.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06673032 577.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06673033 577.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06673034 577.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06673035 577.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06673036 577.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06673037 577.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06673038 577.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06673039 577.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06673040 577.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06673041 577.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06673042 577.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06673043 577.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06673044 577.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06673045 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06673046 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06673047 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06673048 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06673049 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06673050 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06673051 577.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06673052 577.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06673053 577.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06673054 577.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06673055 577.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06673056 577.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06673057 577.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06673058 577.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06673059 577.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06673060 577.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06673061 577.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06673062 577.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06673063 577.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06673064 577.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06673065 577.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06673066 577.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06673067 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06673068 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06673069 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06673070 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06673071 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06673072 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06673073 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06673074 577.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06673075 577.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06673076 577.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06673077 577.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06673078 577.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06673079 577.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06673080 577.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06673081 577.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06673082 577.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06673083 577.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06673084 577.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06673085 577.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06673086 577.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06673087 577.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06673088 577.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06673089 577.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06673090 577.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06673091 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06673092 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06673093 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06673094 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06673095 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06673096 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06673097 577.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06673098 577.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06673099 577.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06673100 577.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06673101 577.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06673102 577.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06673103 577.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06673104 577.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06673105 577.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06673106 577.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06673107 577.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06673108 577.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06673109 577.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06673110 577.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06673111 577.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06673112 577.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06673113 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06673114 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06673115 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06673116 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06673117 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06673118 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06673119 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06673120 577.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06673121 577.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06673122 577.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06673123 577.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06673124 577.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06673125 577.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06673126 577.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06673127 577.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06673128 577.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06673129 577.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06673130 577.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06673131 577.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06673132 577.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06673133 577.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06673134 577.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06673135 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06673136 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06673137 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06673138 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06673139 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06673140 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06673141 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06673142 577.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06673143 577.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06673144 577.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06673145 577.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06673146 577.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06673147 577.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06673148 577.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06673149 577.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06673150 577.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06673151 577.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06673152 577.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06673153 577.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06673154 577.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06673155 577.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06673156 577.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06673157 577.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06673158 577.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06673159 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06673160 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06673161 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06673162 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06673163 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06673164 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06673165 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06673166 577.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06673167 577.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06673168 577.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06673169 577.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06673170 577.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06673171 577.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06673172 577.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06673173 577.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06673174 577.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06673175 577.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06673176 577.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06673177 577.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06673178 577.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06673179 577.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06673180 577.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06673181 577.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06673182 577.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06673183 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06673184 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06673185 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06673186 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06673187 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06673188 577.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06673189 577.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06673190 577.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06673191 577.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06673192 577.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06673193 577.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06673194 577.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06673195 577.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06673196 577.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06673197 577.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06673198 577.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06673199 577.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06673200 577.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06673201 577.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06673202 577.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06673203 577.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06673204 577.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06673205 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06673206 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06673207 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06673208 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06673209 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06673210 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06673211 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06673212 577.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06673213 577.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06673214 577.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06673215 577.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06673216 577.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06673217 577.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06673218 577.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06673219 577.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06673220 577.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06673221 577.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06673222 577.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06673223 577.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06673224 577.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06673225 577.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06673226 577.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06673227 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06673228 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06673229 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06673230 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06673231 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06673232 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06673233 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06673234 577.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06673235 577.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06673236 577.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06673237 577.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06673238 577.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06673239 577.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06673240 577.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06673241 577.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06673242 577.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06673243 577.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06673244 577.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06673245 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06673246 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06673247 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06673248 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06673249 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06673250 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06673251 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06673252 577.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06673253 577.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06673254 577.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06673255 577.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06673256 577.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06673257 577.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06673258 577.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06673259 577.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06673260 577.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06673261 577.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06673262 577.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06673263 577.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06673264 577.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06673265 577.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06673266 577.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06673267 577.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06673268 577.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06673269 577.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06673270 577.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06673271 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06673272 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06673273 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06673274 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06673275 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06673276 577.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06673277 577.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06673278 577.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06673279 577.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06673280 577.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06673281 577.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06673282 577.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06673283 577.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06673284 577.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06673285 577.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06673286 577.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06673287 577.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06673288 577.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06673289 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06673290 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06673291 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06673292 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06673293 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06673294 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06673295 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06673296 577.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06673297 577.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06673298 577.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06673299 577.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06673300 577.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06673301 577.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06673302 577.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06673303 577.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06673304 577.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06673305 577.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06673306 577.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06673307 577.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06673308 577.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06673309 577.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06673310 577.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06673311 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06673312 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06673313 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06673314 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06673315 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06673316 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06673317 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06673318 577.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06673319 577.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06673320 577.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06673321 577.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06673322 577.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06673323 577.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06673324 577.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06673325 577.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06673326 577.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06673327 577.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06673328 577.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06673329 577.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06673330 577.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06673331 577.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06673332 577.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06673333 577.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06673334 577.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06673335 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06673336 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06673337 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06673338 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06673339 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06673340 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06673341 577.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06673342 577.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06673343 577.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06673344 577.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06673345 577.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06673346 577.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06673347 577.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06673348 577.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06673349 577.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06673350 577.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06673351 577.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06673352 577.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06673353 577.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06673354 577.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06673355 577.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06673356 577.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06673357 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06673358 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06673359 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06673360 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06673361 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06673362 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06673363 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06673364 577.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06673365 577.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06673366 577.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06673367 577.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06673368 577.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06673369 577.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06673370 577.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06673371 577.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06673372 577.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06673373 577.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06673374 577.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06673375 577.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06673376 577.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06673377 577.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06673378 577.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06673379 577.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06673380 577.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06673381 577.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06673382 577.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06673383 577.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06673384 577.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06673385 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06673386 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06673387 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06673388 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06673389 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06673390 577.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06673391 577.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06673392 577.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06673393 577.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06673394 577.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06673395 577.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06673396 577.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06673397 577.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06673398 577.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06673399 577.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06673400 577.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06673401 577.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06673402 577.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06673403 577.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06673404 577.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06673405 577.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06673406 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06673407 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06673408 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06673409 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06673410 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06673411 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06673412 577.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06673413 577.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06673414 577.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06673415 577.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06673416 577.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06673417 577.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06673418 577.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06673419 577.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06673420 577.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06673421 577.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06673422 577.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06673423 577.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06673424 577.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06673425 577.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06673426 577.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06673427 577.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06673428 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06673429 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06673430 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06673431 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06673432 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06673433 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06673434 577.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06673435 577.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06673436 577.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06673437 577.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06673438 577.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06673439 577.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06673440 577.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06673441 577.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06673442 577.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06673443 577.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06673444 577.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06673445 577.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06673446 577.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06673447 577.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06673448 577.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06673449 577.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06673450 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06673451 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06673452 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06673453 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06673454 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06673455 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06673456 577.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06673457 577.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06673458 577.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06673459 577.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06673460 577.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06673461 577.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06673462 577.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06673463 577.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06673464 577.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06673465 577.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06673466 577.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06673467 577.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06673468 577.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06673469 577.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06673470 577.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06673471 577.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06673472 577.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06673473 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06673474 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06673475 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06673476 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06673477 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06673478 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06673479 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06673480 577.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06673481 577.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06673482 577.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06673483 577.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06673484 577.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06673485 577.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06673486 577.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06673487 577.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06673488 577.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06673489 577.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06673490 577.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06673491 577.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06673492 577.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06673493 577.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06673494 577.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06673495 577.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06673496 577.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06673497 577.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06673498 577.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06673499 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06673500 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06673501 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06673502 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06673503 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06673504 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06673505 577.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06673506 577.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06673507 577.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06673508 577.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06673509 577.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06673510 577.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06673511 577.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06673512 577.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06673513 577.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06673514 577.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06673515 577.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06673516 577.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06673517 577.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06673518 577.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06673519 577.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06673520 577.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06673521 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06673522 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06673523 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06673524 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06673525 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06673526 577.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06673527 577.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06673528 577.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06673529 577.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06673530 577.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06673531 577.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06673532 577.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06673533 577.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06673534 577.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06673535 577.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06673536 577.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06673537 577.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06673538 577.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06673539 577.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06673540 577.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06673541 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06673542 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06673543 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06673544 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06673545 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06673546 577.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06673547 577.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06673548 577.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06673549 577.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06673550 577.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06673551 577.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06673552 577.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06673553 577.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06673554 577.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06673555 577.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06673556 577.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06673557 577.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06673558 577.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06673559 577.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06673560 577.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06673561 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06673562 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06673563 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06673564 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06673565 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06673566 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06673567 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06673568 577.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06673569 577.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06673570 577.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06673571 577.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06673572 577.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06673573 577.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06673574 577.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06673575 577.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06673576 577.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06673577 577.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06673578 577.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06673579 577.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06673580 577.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06673581 577.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06673582 577.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06673583 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06673584 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06673585 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06673586 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06673587 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06673588 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06673589 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06673590 577.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06673591 577.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06673592 577.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06673593 577.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06673594 577.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06673595 577.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06673596 577.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06673597 577.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06673598 577.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06673599 577.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06673600 577.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06673601 577.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06673602 577.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06673603 577.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06673604 577.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06673605 577.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06673606 577.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06673607 577.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06673608 577.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06673609 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06673610 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06673611 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06673612 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06673613 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06673614 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06673615 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06673616 577.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06673617 577.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06673618 577.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06673619 577.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06673620 577.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06673621 577.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06673622 577.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06673623 577.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06673624 577.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06673625 577.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06673626 577.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06673627 577.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06673628 577.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06673629 577.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06673630 577.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06673631 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06673632 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06673633 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06673634 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06673635 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06673636 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06673637 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06673638 577.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06673639 577.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06673640 577.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06673641 577.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06673642 577.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06673643 577.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06673644 577.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06673645 577.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06673646 577.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06673647 577.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06673648 577.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06673649 577.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06673650 577.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06673651 577.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06673652 577.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06673653 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06673654 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06673655 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06673656 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06673657 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06673658 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06673659 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06673660 577.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06673661 577.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06673662 577.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06673663 577.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06673664 577.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06673665 577.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06673666 577.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06673667 577.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06673668 577.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06673669 577.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06673670 577.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06673671 577.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06673672 577.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06673673 577.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06673674 577.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06673675 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06673676 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06673677 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06673678 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06673679 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06673680 577.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06673681 577.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06673682 577.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06673683 577.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06673684 577.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06673685 577.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06673686 577.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06673687 577.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06673688 577.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06673689 577.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06673690 577.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06673691 577.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06673692 577.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06673693 577.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06673694 577.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06673695 577.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06673696 577.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06673697 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06673698 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06673699 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06673700 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06673701 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06673702 577.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06673703 577.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06673704 577.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06673705 577.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06673706 577.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06673707 577.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06673708 577.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06673709 577.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06673710 577.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06673711 577.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06673712 577.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06673713 577.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06673714 577.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06673715 577.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06673716 577.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06673717 577.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06673718 577.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06673719 577.08709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06673720 577.08709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06673721 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06673722 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06673723 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06673724 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06673725 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06673726 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06673727 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06673728 577.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06673729 577.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06673730 577.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06673731 577.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06673732 577.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06673733 577.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06673734 577.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06673735 577.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06673736 577.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06673737 577.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06673738 577.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06673739 577.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06673740 577.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06673741 577.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06673742 577.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06673743 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06673744 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06673745 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06673746 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06673747 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06673748 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06673749 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06673750 577.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06673751 577.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06673752 577.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06673753 577.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06673754 577.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06673755 577.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06673756 577.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06673757 577.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06673758 577.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06673759 577.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06673760 577.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06673761 577.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06673762 577.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06673763 577.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06673764 577.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06673765 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06673766 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06673767 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06673768 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06673769 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06673770 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06673771 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06673772 577.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06673773 577.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06673774 577.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06673775 577.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06673776 577.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06673777 577.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06673778 577.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06673779 577.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06673780 577.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06673781 577.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06673782 577.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06673783 577.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06673784 577.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06673785 577.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06673786 577.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06673787 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06673788 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06673789 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06673790 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06673791 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06673792 577.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06673793 577.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06673794 577.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06673795 577.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06673796 577.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06673797 577.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06673798 577.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06673799 577.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06673800 577.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06673801 577.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06673802 577.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06673803 577.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06673804 577.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06673805 577.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06673806 577.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06673807 577.08837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06673808 577.08837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06673809 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06673810 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06673811 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06673812 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06673813 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06673814 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06673815 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06673816 577.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06673817 577.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06673818 577.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06673819 577.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06673820 577.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06673821 577.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06673822 577.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06673823 577.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06673824 577.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06673825 577.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06673826 577.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06673827 577.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06673828 577.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06673829 577.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06673830 577.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06673831 577.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06673832 577.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06673833 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06673834 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06673835 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06673836 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06673837 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06673838 577.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06673839 577.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06673840 577.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06673841 577.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06673842 577.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06673843 577.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06673844 577.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06673845 577.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06673846 577.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06673847 577.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06673848 577.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06673849 577.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06673850 577.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06673851 577.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06673852 577.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06673853 577.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06673854 577.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06673855 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06673856 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06673857 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06673858 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06673859 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06673860 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06673861 577.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06673862 577.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06673863 577.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06673864 577.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06673865 577.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06673866 577.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06673867 577.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06673868 577.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06673869 577.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06673870 577.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06673871 577.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06673872 577.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06673873 577.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06673874 577.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06673875 577.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06673876 577.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06673877 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06673878 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06673879 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06673880 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06673881 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06673882 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06673883 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06673884 577.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06673885 577.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06673886 577.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06673887 577.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06673888 577.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06673889 577.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06673890 577.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06673891 577.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06673892 577.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06673893 577.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06673894 577.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06673895 577.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06673896 577.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06673897 577.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06673898 577.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06673899 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06673900 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06673901 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06673902 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06673903 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06673904 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06673905 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06673906 577.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06673907 577.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06673908 577.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06673909 577.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06673910 577.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06673911 577.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06673912 577.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06673913 577.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06673914 577.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06673915 577.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06673916 577.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06673917 577.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06673918 577.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06673919 577.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06673920 577.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06673921 577.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06673922 577.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06673923 577.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06673924 577.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06673925 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06673926 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06673927 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06673928 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06673929 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06673930 577.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06673931 577.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06673932 577.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06673933 577.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06673934 577.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06673935 577.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06673936 577.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06673937 577.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06673938 577.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06673939 577.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06673940 577.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06673941 577.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06673942 577.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06673943 577.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06673944 577.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06673945 577.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06673946 577.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06673947 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06673948 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06673949 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06673950 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06673951 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06673952 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06673953 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06673954 577.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06673955 577.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06673956 577.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06673957 577.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06673958 577.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06673959 577.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06673960 577.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06673961 577.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06673962 577.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06673963 577.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06673964 577.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06673965 577.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06673966 577.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06673967 577.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06673968 577.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06673969 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06673970 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06673971 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06673972 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06673973 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06673974 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06673975 577.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06673976 577.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06673977 577.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06673978 577.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06673979 577.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06673980 577.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06673981 577.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06673982 577.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06673983 577.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06673984 577.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06673985 577.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06673986 577.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06673987 577.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06673988 577.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06673989 577.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06673990 577.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06673991 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06673992 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06673993 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06673994 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06673995 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06673996 577.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06673997 577.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06673998 577.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06673999 577.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06674000 577.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06674001 577.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06674002 577.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06674003 577.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06674004 577.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06674005 577.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06674006 577.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06674007 577.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06674008 577.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06674009 577.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06674010 577.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06674011 577.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06674012 577.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06674013 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06674014 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06674015 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06674016 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06674017 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06674018 577.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06674019 577.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06674020 577.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06674021 577.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06674022 577.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06674023 577.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06674024 577.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06674025 577.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06674026 577.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06674027 577.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06674028 577.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06674029 577.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06674030 577.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06674031 577.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06674032 577.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06674033 577.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06674034 577.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06674035 577.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06674036 577.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06674037 577.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06674038 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06674039 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06674040 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06674041 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06674042 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06674043 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06674044 577.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06674045 577.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06674046 577.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06674047 577.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06674048 577.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06674049 577.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06674050 577.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06674051 577.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06674052 577.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06674053 577.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06674054 577.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06674055 577.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06674056 577.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06674057 577.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06674058 577.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06674059 577.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06674060 577.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06674061 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06674062 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06674063 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06674064 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06674065 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06674066 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06674067 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06674068 577.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06674069 577.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06674070 577.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06674071 577.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06674072 577.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06674073 577.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06674074 577.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06674075 577.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06674076 577.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06674077 577.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06674078 577.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06674079 577.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06674080 577.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06674081 577.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06674082 577.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06674083 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06674084 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06674085 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06674086 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06674087 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06674088 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06674089 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06674090 577.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06674091 577.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06674092 577.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06674093 577.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06674094 577.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06674095 577.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06674096 577.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06674097 577.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06674098 577.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06674099 577.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06674100 577.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06674101 577.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06674102 577.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06674103 577.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06674104 577.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06674105 577.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06674106 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06674107 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06674108 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06674109 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06674110 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06674111 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06674112 577.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06674113 577.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06674114 577.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06674115 577.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06674116 577.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06674117 577.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06674118 577.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06674119 577.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06674120 577.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06674121 577.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06674122 577.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06674123 577.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06674124 577.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06674125 577.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06674126 577.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06674127 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06674128 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06674129 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06674130 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06674131 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06674132 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06674133 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06674134 577.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06674135 577.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06674136 577.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06674137 577.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06674138 577.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06674139 577.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06674140 577.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06674141 577.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06674142 577.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06674143 577.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06674144 577.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06674145 577.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06674146 577.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06674147 577.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06674148 577.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06674149 577.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06674150 577.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06674151 577.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06674152 577.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06674153 577.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06674154 577.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06674155 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06674156 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06674157 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06674158 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06674159 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06674160 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06674161 577.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06674162 577.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06674163 577.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06674164 577.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06674165 577.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06674166 577.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06674167 577.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06674168 577.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06674169 577.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06674170 577.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06674171 577.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06674172 577.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06674173 577.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06674174 577.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06674175 577.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06674176 577.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06674177 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06674178 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06674179 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06674180 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06674181 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06674182 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06674183 577.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06674184 577.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06674185 577.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06674186 577.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06674187 577.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06674188 577.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06674189 577.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06674190 577.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06674191 577.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06674192 577.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06674193 577.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06674194 577.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06674195 577.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06674196 577.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06674197 577.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06674198 577.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06674199 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06674200 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06674201 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06674202 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06674203 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06674204 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06674205 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06674206 577.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06674207 577.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06674208 577.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06674209 577.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06674210 577.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06674211 577.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06674212 577.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06674213 577.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06674214 577.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06674215 577.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06674216 577.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06674217 577.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06674218 577.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06674219 577.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06674220 577.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06674221 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06674222 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06674223 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06674224 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06674225 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06674226 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06674227 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06674228 577.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06674229 577.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06674230 577.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06674231 577.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06674232 577.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06674233 577.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06674234 577.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06674235 577.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06674236 577.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06674237 577.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06674238 577.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06674239 577.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06674240 577.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06674241 577.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06674242 577.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06674243 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06674244 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06674245 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06674246 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06674247 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06674248 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06674249 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06674250 577.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06674251 577.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06674252 577.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06674253 577.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06674254 577.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06674255 577.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06674256 577.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06674257 577.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06674258 577.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06674259 577.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06674260 577.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06674261 577.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06674262 577.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06674263 577.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06674264 577.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06674265 577.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06674266 577.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06674267 577.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06674268 577.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06674269 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06674270 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06674271 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06674272 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06674273 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06674274 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06674275 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06674276 577.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06674277 577.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06674278 577.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06674279 577.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06674280 577.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06674281 577.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06674282 577.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06674283 577.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06674284 577.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06674285 577.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06674286 577.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06674287 577.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06674288 577.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06674289 577.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06674290 577.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06674291 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06674292 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06674293 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06674294 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06674295 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06674296 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06674297 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06674298 577.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06674299 577.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06674300 577.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06674301 577.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06674302 577.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06674303 577.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06674304 577.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06674305 577.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06674306 577.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06674307 577.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06674308 577.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06674309 577.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06674310 577.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06674311 577.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06674312 577.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06674313 577.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06674314 577.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06674315 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06674316 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06674317 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06674318 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06674319 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06674320 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06674321 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06674322 577.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06674323 577.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06674324 577.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06674325 577.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06674326 577.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06674327 577.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06674328 577.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06674329 577.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06674330 577.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06674331 577.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06674332 577.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06674333 577.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06674334 577.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06674335 577.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06674336 577.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06674337 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06674338 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06674339 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06674340 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06674341 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06674342 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06674343 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06674344 577.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06674345 577.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06674346 577.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06674347 577.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06674348 577.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06674349 577.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06674350 577.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06674351 577.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06674352 577.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06674353 577.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06674354 577.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06674355 577.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06674356 577.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06674357 577.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06674358 577.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06674359 577.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06674360 577.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06674361 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06674362 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06674363 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06674364 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06674365 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06674366 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06674367 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06674368 577.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06674369 577.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06674370 577.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06674371 577.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06674372 577.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06674373 577.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06674374 577.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06674375 577.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06674376 577.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06674377 577.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06674378 577.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06674379 577.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06674380 577.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06674381 577.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06674382 577.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06674383 577.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06674384 577.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06674385 577.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06674386 577.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06674387 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06674388 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06674389 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06674390 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06674391 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06674392 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06674393 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06674394 577.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06674395 577.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06674396 577.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06674397 577.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06674398 577.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06674399 577.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06674400 577.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06674401 577.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06674402 577.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06674403 577.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06674404 577.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06674405 577.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06674406 577.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06674407 577.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06674408 577.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06674409 577.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06674410 577.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06674411 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06674412 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06674413 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06674414 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06674415 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06674416 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06674417 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06674418 577.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06674419 577.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06674420 577.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06674421 577.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06674422 577.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06674423 577.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06674424 577.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06674425 577.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06674426 577.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06674427 577.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06674428 577.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06674429 577.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06674430 577.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06674431 577.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06674432 577.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06674433 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06674434 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06674435 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06674436 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06674437 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06674438 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06674439 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06674440 577.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06674441 577.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06674442 577.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06674443 577.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06674444 577.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06674445 577.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06674446 577.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06674447 577.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06674448 577.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06674449 577.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06674450 577.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06674451 577.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06674452 577.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06674453 577.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06674454 577.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06674455 577.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06674456 577.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06674457 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06674458 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06674459 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06674460 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06674461 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06674462 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06674463 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06674464 577.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06674465 577.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06674466 577.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06674467 577.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06674468 577.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06674469 577.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06674470 577.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06674471 577.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06674472 577.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06674473 577.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06674474 577.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06674475 577.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06674476 577.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06674477 577.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06674478 577.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06674479 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06674480 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06674481 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06674482 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06674483 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06674484 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06674485 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06674486 577.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06674487 577.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06674488 577.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06674489 577.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06674490 577.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06674491 577.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06674492 577.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06674493 577.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06674494 577.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06674495 577.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06674496 577.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06674497 577.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06674498 577.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06674499 577.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06674500 577.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06674501 577.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06674502 577.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06674503 577.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06674504 577.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06674505 577.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06674506 577.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06674507 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06674508 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06674509 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06674510 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06674511 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06674512 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06674513 577.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06674514 577.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06674515 577.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06674516 577.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06674517 577.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06674518 577.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06674519 577.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06674520 577.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06674521 577.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06674522 577.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06674523 577.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06674524 577.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06674525 577.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06674526 577.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06674527 577.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06674528 577.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06674529 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06674530 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06674531 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06674532 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06674533 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06674534 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06674535 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06674536 577.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06674537 577.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06674538 577.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06674539 577.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06674540 577.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06674541 577.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06674542 577.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06674543 577.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06674544 577.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06674545 577.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06674546 577.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06674547 577.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06674548 577.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06674549 577.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06674550 577.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06674551 577.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06674552 577.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06674553 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06674554 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06674555 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06674556 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06674557 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06674558 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06674559 577.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06674560 577.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06674561 577.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06674562 577.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06674563 577.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06674564 577.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06674565 577.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06674566 577.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06674567 577.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06674568 577.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06674569 577.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06674570 577.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06674571 577.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06674572 577.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06674573 577.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06674574 577.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06674575 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06674576 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06674577 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06674578 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06674579 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06674580 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06674581 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06674582 577.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06674583 577.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06674584 577.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06674585 577.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06674586 577.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06674587 577.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06674588 577.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06674589 577.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06674590 577.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06674591 577.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06674592 577.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06674593 577.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06674594 577.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06674595 577.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06674596 577.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06674597 577.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06674598 577.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06674599 577.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06674600 577.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06674601 577.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06674602 577.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06674603 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06674604 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06674605 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06674606 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06674607 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06674608 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06674609 577.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06674610 577.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06674611 577.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06674612 577.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06674613 577.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06674614 577.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06674615 577.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06674616 577.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06674617 577.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06674618 577.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06674619 577.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06674620 577.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06674621 577.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06674622 577.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06674623 577.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06674624 577.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06674625 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06674626 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06674627 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06674628 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06674629 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06674630 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06674631 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06674632 577.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06674633 577.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06674634 577.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06674635 577.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06674636 577.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06674637 577.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06674638 577.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06674639 577.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06674640 577.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06674641 577.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06674642 577.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06674643 577.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06674644 577.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06674645 577.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06674646 577.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06674647 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06674648 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06674649 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06674650 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06674651 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06674652 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06674653 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06674654 577.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06674655 577.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06674656 577.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06674657 577.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06674658 577.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06674659 577.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06674660 577.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06674661 577.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06674662 577.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06674663 577.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06674664 577.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06674665 577.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06674666 577.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06674667 577.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06674668 577.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06674669 577.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06674670 577.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06674671 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06674672 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06674673 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06674674 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06674675 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06674676 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06674677 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06674678 577.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06674679 577.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06674680 577.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06674681 577.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06674682 577.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06674683 577.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06674684 577.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06674685 577.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06674686 577.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06674687 577.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06674688 577.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06674689 577.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06674690 577.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06674691 577.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06674692 577.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06674693 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06674694 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06674695 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06674696 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06674697 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06674698 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06674699 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06674700 577.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06674701 577.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06674702 577.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06674703 577.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06674704 577.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06674705 577.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06674706 577.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06674707 577.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06674708 577.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06674709 577.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06674710 577.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06674711 577.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06674712 577.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06674713 577.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06674714 577.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06674715 577.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06674716 577.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06674717 577.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06674718 577.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06674719 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06674720 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06674721 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06674722 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06674723 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06674724 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06674725 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06674726 577.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06674727 577.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06674728 577.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06674729 577.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06674730 577.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06674731 577.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06674732 577.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06674733 577.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06674734 577.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06674735 577.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06674736 577.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06674737 577.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06674738 577.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06674739 577.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06674740 577.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06674741 577.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06674742 577.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06674743 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06674744 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06674745 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06674746 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06674747 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06674748 577.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06674749 577.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06674750 577.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06674751 577.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06674752 577.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06674753 577.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06674754 577.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06674755 577.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06674756 577.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06674757 577.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06674758 577.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06674759 577.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06674760 577.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06674761 577.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06674762 577.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06674763 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06674764 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06674765 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06674766 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06674767 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06674768 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06674769 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06674770 577.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06674771 577.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06674772 577.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06674773 577.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06674774 577.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06674775 577.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06674776 577.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06674777 577.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06674778 577.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06674779 577.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06674780 577.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06674781 577.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06674782 577.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06674783 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06674784 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06674785 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06674786 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06674787 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06674788 577.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06674789 577.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06674790 577.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06674791 577.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06674792 577.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06674793 577.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06674794 577.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06674795 577.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06674796 577.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06674797 577.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06674798 577.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06674799 577.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06674800 577.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06674801 577.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06674802 577.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06674803 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06674804 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06674805 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06674806 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06674807 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06674808 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06674809 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06674810 577.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06674811 577.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06674812 577.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06674813 577.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06674814 577.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06674815 577.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06674816 577.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06674817 577.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06674818 577.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06674819 577.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06674820 577.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06674821 577.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06674822 577.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06674823 577.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06674824 577.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06674825 577.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06674826 577.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06674827 577.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06674828 577.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06674829 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06674830 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06674831 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06674832 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06674833 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06674834 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06674835 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06674836 577.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06674837 577.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06674838 577.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06674839 577.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06674840 577.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06674841 577.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06674842 577.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06674843 577.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06674844 577.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06674845 577.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06674846 577.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06674847 577.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06674848 577.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06674849 577.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06674850 577.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06674851 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06674852 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06674853 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06674854 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06674855 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06674856 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06674857 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06674858 577.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06674859 577.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06674860 577.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06674861 577.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06674862 577.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06674863 577.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06674864 577.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06674865 577.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06674866 577.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06674867 577.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06674868 577.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06674869 577.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06674870 577.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06674871 577.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06674872 577.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06674873 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06674874 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06674875 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06674876 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06674877 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06674878 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06674879 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06674880 577.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06674881 577.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06674882 577.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06674883 577.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06674884 577.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06674885 577.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06674886 577.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06674887 577.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06674888 577.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06674889 577.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06674890 577.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06674891 577.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06674892 577.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06674893 577.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06674894 577.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06674895 577.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06674896 577.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06674897 577.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06674898 577.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06674899 577.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06674900 577.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06674901 577.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06674902 577.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06674903 577.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06674904 577.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06674905 577.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06674906 577.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06674907 577.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06674908 577.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06674909 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06674910 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06674911 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06674912 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06674913 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06674914 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06674915 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06674916 577.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06674917 577.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06674918 577.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06674919 577.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06674920 577.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06674921 577.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06674922 577.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06674923 577.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06674924 577.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06674925 577.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06674926 577.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06674927 577.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06674928 577.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06674929 577.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06674930 577.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06674931 577.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06674932 577.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06674933 577.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06674934 577.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06674935 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06674936 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06674937 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06674938 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06674939 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06674940 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06674941 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06674942 577.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06674943 577.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06674944 577.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06674945 577.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06674946 577.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06674947 577.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06674948 577.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06674949 577.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06674950 577.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06674951 577.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06674952 577.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06674953 577.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06674954 577.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06674955 577.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06674956 577.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06674957 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06674958 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06674959 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06674960 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06674961 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06674962 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06674963 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06674964 577.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06674965 577.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06674966 577.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06674967 577.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06674968 577.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06674969 577.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06674970 577.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06674971 577.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06674972 577.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06674973 577.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06674974 577.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06674975 577.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06674976 577.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06674977 577.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06674978 577.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06674979 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06674980 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06674981 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06674982 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06674983 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06674984 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06674985 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06674986 577.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06674987 577.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06674988 577.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06674989 577.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06674990 577.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06674991 577.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06674992 577.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06674993 577.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06674994 577.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06674995 577.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06674996 577.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06674997 577.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06674998 577.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06674999 577.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06675000 577.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06675001 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06675002 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06675003 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06675004 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06675005 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06675006 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06675007 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06675008 577.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06675009 577.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06675010 577.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06675011 577.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06675012 577.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06675013 577.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06675014 577.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06675015 577.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06675016 577.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06675017 577.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06675018 577.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06675019 577.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06675020 577.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06675021 577.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06675022 577.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06675023 577.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06675024 577.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06675025 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06675026 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06675027 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06675028 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06675029 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06675030 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06675031 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06675032 577.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06675033 577.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06675034 577.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06675035 577.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06675036 577.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06675037 577.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06675038 577.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06675039 577.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06675040 577.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06675041 577.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06675042 577.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06675043 577.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06675044 577.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06675045 577.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06675046 577.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06675047 577.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06675048 577.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06675049 577.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06675050 577.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06675051 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06675052 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06675053 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06675054 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06675055 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06675056 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06675057 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06675058 577.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06675059 577.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06675060 577.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06675061 577.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06675062 577.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06675063 577.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06675064 577.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06675065 577.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06675066 577.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06675067 577.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06675068 577.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06675069 577.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06675070 577.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06675071 577.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06675072 577.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06675073 577.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06675074 577.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06675075 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06675076 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06675077 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06675078 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06675079 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06675080 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06675081 577.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06675082 577.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06675083 577.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06675084 577.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06675085 577.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06675086 577.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06675087 577.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06675088 577.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06675089 577.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06675090 577.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06675091 577.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06675092 577.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06675093 577.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06675094 577.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06675095 577.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06675096 577.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06675097 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06675098 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06675099 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06675100 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06675101 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06675102 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06675103 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06675104 577.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06675105 577.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06675106 577.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06675107 577.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06675108 577.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06675109 577.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06675110 577.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06675111 577.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06675112 577.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06675113 577.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06675114 577.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06675115 577.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06675116 577.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06675117 577.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06675118 577.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06675119 577.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06675120 577.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06675121 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06675122 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06675123 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06675124 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06675125 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06675126 577.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06675127 577.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06675128 577.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06675129 577.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06675130 577.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06675131 577.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06675132 577.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06675133 577.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06675134 577.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06675135 577.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06675136 577.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06675137 577.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06675138 577.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06675139 577.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06675140 577.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06675141 577.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06675142 577.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06675143 577.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06675144 577.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06675145 577.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06675146 577.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06677373 577.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -06677374 577.13806152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc278 -06677375 577.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -06677376 577.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc288 -06677377 577.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -06677378 577.13812256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc298 -06677379 577.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -06677380 577.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a8 -06677381 577.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -06677382 577.13818359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b8 -06677383 577.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -06677384 577.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c8 -06677385 577.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -06677386 577.13824463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d8 -06677387 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -06677388 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e8 -06677389 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -06677390 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f8 -06677391 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -06677392 577.13830566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc308 -06677393 577.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -06677394 577.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc318 -06677395 577.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -06677396 577.13836670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc328 -06677397 577.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -06677398 577.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc338 -06677399 577.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -06677400 577.13842773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc348 -06677401 577.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -06677402 577.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc358 -06677403 577.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -06677404 577.13848877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc368 -06677405 577.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -06677406 577.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc378 -06677407 577.13854980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -06677408 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc388 -06677409 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -06677410 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc398 -06677411 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -06677412 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3a8 -06677413 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -06677414 577.13861084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3b8 -06677415 577.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -06677416 577.13867188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc3c8 -06680285 577.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -06680286 577.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d78 -06680287 577.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d88 -06680288 577.17980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d88 -06680289 577.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d98 -06680290 577.17987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d98 -06680291 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da8 -06680292 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da8 -06680293 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db8 -06680294 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db8 -06680295 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc8 -06680296 577.17993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc8 -06680297 577.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd8 -06680298 577.17999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd8 -06680299 577.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de8 -06680300 577.18005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de8 -06680301 577.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df8 -06680302 577.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df8 -06680303 577.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e08 -06680304 577.18011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e08 -06680305 577.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e18 -06680306 577.18017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e18 -06680307 577.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e28 -06680308 577.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e28 -06680309 577.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e38 -06680310 577.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e38 -06680311 577.18023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e48 -06680312 577.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e48 -06680313 577.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e58 -06680314 577.18029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e58 -06680315 577.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e68 -06680316 577.18035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e68 -06680317 577.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e78 -06680318 577.18041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e78 -06680319 577.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e88 -06680320 577.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e88 -06680321 577.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e98 -06680322 577.18048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e98 -06680323 577.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea8 -06680324 577.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea8 -06680325 577.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb8 -06680326 577.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb8 -06680327 577.18054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec8 -06680328 577.18060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec8 -06683798 577.23150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b38 -06683799 577.23150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -06683800 577.23150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -06683801 577.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -06683802 577.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -06683803 577.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -06683804 577.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -06683805 577.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b78 -06683806 577.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b78 -06683807 577.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b88 -06683808 577.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b88 -06683809 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b98 -06683810 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b98 -06683811 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba8 -06683812 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ba8 -06683813 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb8 -06683814 577.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bb8 -06683815 577.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc8 -06683816 577.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bc8 -06683817 577.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd8 -06683818 577.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bd8 -06683819 577.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be8 -06683820 577.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18be8 -06683821 577.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf8 -06683822 577.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18bf8 -06683823 577.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c08 -06683824 577.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c08 -06683825 577.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c18 -06683826 577.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c18 -06683827 577.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c28 -06683828 577.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c28 -06683829 577.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c38 -06683830 577.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c38 -06683831 577.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c48 -06683832 577.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c48 -06683833 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c58 -06683834 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c58 -06683835 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c68 -06683836 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c68 -06683837 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c78 -06683838 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c78 -06683839 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c88 -06683840 577.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c88 -06683841 577.23211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c98 -06697571 577.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -06697572 577.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339a8 -06697573 577.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -06697574 577.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339b8 -06697575 577.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -06697576 577.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339c8 -06697577 577.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -06697578 577.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339d8 -06697579 577.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e8 -06697580 577.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339e8 -06697581 577.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f8 -06697582 577.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x339f8 -06697583 577.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a08 -06697584 577.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a08 -06697585 577.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a18 -06697586 577.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a18 -06697587 577.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a28 -06697588 577.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a28 -06697589 577.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a38 -06697590 577.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a38 -06697591 577.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a48 -06697592 577.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a48 -06697593 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a58 -06697594 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a58 -06697595 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a68 -06697596 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a68 -06697597 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a78 -06697598 577.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a78 -06697599 577.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a88 -06697600 577.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a88 -06697601 577.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -06697602 577.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -06697603 577.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -06697604 577.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -06697605 577.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab8 -06697606 577.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab8 -06697607 577.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac8 -06697608 577.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac8 -06697609 577.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad8 -06697610 577.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad8 -06697611 577.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae8 -06697612 577.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae8 -06697613 577.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af8 -06697614 577.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af8 -06700889 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a158 -06700890 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a158 -06700891 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a168 -06700892 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a168 -06700893 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a178 -06700894 577.48303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a178 -06700895 577.48309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a188 -06700896 577.48309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a188 -06700897 577.48309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -06700898 577.48315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -06700899 577.48315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -06700900 577.48315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -06700901 577.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -06700902 577.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -06700903 577.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -06700904 577.48321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -06700905 577.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -06700906 577.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -06700907 577.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -06700908 577.48327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -06700909 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -06700910 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -06700911 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -06700912 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -06700913 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -06700914 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -06700915 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -06700916 577.48333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -06700917 577.48339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -06700918 577.48339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -06700919 577.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -06700920 577.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -06700921 577.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -06700922 577.48345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -06700923 577.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -06700924 577.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -06700925 577.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -06700926 577.48352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -06700927 577.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -06700928 577.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -06700929 577.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -06700930 577.48358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -06700931 577.48364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -06700932 577.48364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -06703975 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c8 -06703976 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401c8 -06703977 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d8 -06703978 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401d8 -06703979 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e8 -06703980 577.52722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401e8 -06703981 577.52728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f8 -06703982 577.52728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x401f8 -06703983 577.52728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40208 -06703984 577.52728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40208 -06703985 577.52734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40218 -06703986 577.52734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40218 -06703987 577.52734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40228 -06703988 577.52734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40228 -06703989 577.52740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40238 -06703990 577.52740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40238 -06703991 577.52746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40248 -06703992 577.52746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40248 -06703993 577.52746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40258 -06703994 577.52746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40258 -06703995 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40268 -06703996 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40268 -06703997 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40278 -06703998 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40278 -06703999 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40288 -06704000 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40288 -06704001 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40298 -06704002 577.52752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40298 -06704003 577.52758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a8 -06704004 577.52758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402a8 -06704005 577.52764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b8 -06704006 577.52764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402b8 -06704007 577.52764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c8 -06704008 577.52764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402c8 -06704009 577.52770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d8 -06704010 577.52770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402d8 -06704011 577.52770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e8 -06704012 577.52770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402e8 -06704013 577.52777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f8 -06704014 577.52777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x402f8 -06704015 577.52777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40308 -06704016 577.52777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40308 -06704017 577.52783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40318 -06704018 577.52783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40318 -06706889 577.56860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c98 -06706890 577.56860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c98 -06706891 577.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca8 -06706892 577.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ca8 -06706893 577.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb8 -06706894 577.56866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cb8 -06706895 577.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc8 -06706896 577.56872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cc8 -06706897 577.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd8 -06706898 577.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cd8 -06706899 577.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce8 -06706900 577.56878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ce8 -06706901 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf8 -06706902 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45cf8 -06706903 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d08 -06706904 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d08 -06706905 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d18 -06706906 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d18 -06706907 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d28 -06706908 577.56884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d28 -06706909 577.56890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d38 -06706910 577.56890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d38 -06706911 577.56896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d48 -06706912 577.56896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d48 -06706913 577.56896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d58 -06706914 577.56896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d58 -06706915 577.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d68 -06706916 577.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d68 -06706917 577.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d78 -06706918 577.56903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d78 -06706919 577.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d88 -06706920 577.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d88 -06706921 577.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d98 -06706922 577.56909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d98 -06706923 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da8 -06706924 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da8 -06706925 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db8 -06706926 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db8 -06706927 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc8 -06706928 577.56915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc8 -06706929 577.56921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd8 -06706930 577.56921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd8 -06706931 577.56921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de8 -06706932 577.56921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de8 -06710295 577.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c708 -06710296 577.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c708 -06710297 577.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c718 -06710298 577.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c718 -06710299 577.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c728 -06710300 577.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c728 -06710301 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c738 -06710302 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c738 -06710303 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c748 -06710304 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c748 -06710305 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c758 -06710306 577.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c758 -06710307 577.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c768 -06710308 577.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c768 -06710309 577.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c778 -06710310 577.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c778 -06710311 577.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c788 -06710312 577.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c788 -06710313 577.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c798 -06710314 577.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c798 -06710315 577.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a8 -06710316 577.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7a8 -06710317 577.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b8 -06710318 577.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7b8 -06710319 577.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c8 -06710320 577.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7c8 -06710321 577.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d8 -06710322 577.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7d8 -06710323 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e8 -06710324 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7e8 -06710325 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f8 -06710326 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c7f8 -06710327 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c808 -06710328 577.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c808 -06710329 577.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -06710330 577.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c818 -06710331 577.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -06710332 577.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c828 -06710333 577.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -06710334 577.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c838 -06710335 577.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -06710336 577.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c848 -06710337 577.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -06710338 577.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c858 -06712949 577.65490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -06712950 577.65490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -06712951 577.65496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -06712952 577.65496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -06712953 577.65496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -06712954 577.65496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -06712955 577.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -06712956 577.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -06712957 577.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -06712958 577.65502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -06712959 577.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -06712960 577.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -06712961 577.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -06712962 577.65509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -06712963 577.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -06712964 577.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -06712965 577.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -06712966 577.65515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -06712967 577.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -06712968 577.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -06712969 577.65521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -06712970 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -06712971 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -06712972 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -06712973 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -06712974 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -06712975 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -06712976 577.65527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -06712977 577.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -06712978 577.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -06712979 577.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae8 -06712980 577.65533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ae8 -06712981 577.65539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af8 -06712982 577.65539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51af8 -06712983 577.65539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b08 -06712984 577.65539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b08 -06712985 577.65545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b18 -06712986 577.65545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b18 -06712987 577.65545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b28 -06712988 577.65545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b28 -06712989 577.65551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b38 -06712990 577.65551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b38 -06712991 577.65551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b48 -06712992 577.65557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b48 -06713565 578.45404053 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713566 578.45434570 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713567 578.45483398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713568 578.45513916 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713569 578.45635986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713570 578.45709229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -06713571 578.64843750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06713572 578.66961670 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06713573 578.66961670 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06713574 580.06652832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06713575 580.06658936 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06713576 580.06658936 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06713577 580.06658936 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06713578 580.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06713579 580.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06713580 580.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06713581 580.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06713582 580.67211914 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06713583 580.69311523 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06713584 580.69311523 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06713585 581.58135986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06713586 581.58135986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -06713587 581.58135986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06713588 581.58142090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -06713589 581.58142090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06713590 581.58142090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -06713591 581.58148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06713592 581.58148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -06713593 581.58148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06713594 581.58148193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -06713595 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06713596 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -06713597 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06713598 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -06713599 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06713600 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -06713601 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06713602 581.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -06713603 581.58160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06713604 581.58160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -06713605 581.58160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06713606 581.58160400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -06713607 581.58166504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06713608 581.58166504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -06713609 581.58172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06713610 581.58172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -06713611 581.58172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06713612 581.58172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -06713613 581.58178711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06713614 581.58178711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -06713615 581.58178711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06713616 581.58178711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -06713617 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06713618 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -06713619 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06713620 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -06713621 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06713622 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -06713623 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06713624 581.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -06713625 581.58190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06713626 581.58190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -06713627 581.58190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06713628 581.58197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -06713629 581.58197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06713630 581.58197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -06713631 581.58203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06713632 581.58203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -06713633 581.58203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06713634 581.58203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -06713635 581.58209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06713636 581.58209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -06713637 581.58209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06713638 581.58209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -06713639 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06713640 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -06713641 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06713642 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -06713643 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06713644 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -06713645 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06713646 581.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -06713647 581.58221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06713648 581.58221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -06713649 581.58227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06713650 581.58227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -06713651 581.58227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06713652 581.58227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -06713653 581.58233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06713654 581.58233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -06713655 581.58233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06713656 581.58233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -06713657 581.58239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06713658 581.58239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -06713659 581.58239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06713660 581.58239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -06713661 581.58245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06713662 581.58245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -06713663 581.58245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06713664 581.58245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -06713665 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06713666 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -06713667 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06713668 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -06713669 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -06713670 581.58251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -06713671 581.58258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -06713672 581.58258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -06713673 581.58258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -06713674 581.58264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -06713675 581.58264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -06713676 581.58264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -06713677 581.58270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -06713678 581.58270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -06713679 581.58276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -06713680 581.58276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -06713681 581.58276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -06713682 581.58276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -06713683 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -06713684 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -06713685 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -06713686 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -06713687 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -06713688 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -06713689 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -06713690 581.58282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -06713691 581.58288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -06713692 581.58288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -06713693 581.58288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -06713694 581.58288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -06713695 581.58294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -06713696 581.58294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -06713697 581.58294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -06713698 581.58300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -06713699 581.58300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -06713700 581.58300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -06713701 581.58306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -06713702 581.58306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -06713703 581.58306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -06713704 581.58306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -06713705 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -06713706 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -06713707 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -06713708 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -06713709 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -06713710 581.58312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -06713711 581.58319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -06713712 581.58319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -06713713 581.58319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -06713714 581.58319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -06713715 581.58325195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -06713716 581.58325195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -06713717 581.58325195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -06713718 581.58325195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -06713719 581.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -06713720 581.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -06713721 581.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -06713722 581.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -06713723 581.58337402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -06713724 581.58337402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -06713725 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -06713726 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -06713727 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -06713728 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -06713729 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -06713730 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -06713731 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -06713732 581.58343506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -06713733 581.58349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -06713734 581.58349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -06713735 581.58349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -06713736 581.58349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -06713737 581.58355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -06713738 581.58355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -06713739 581.58355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -06713740 581.58355713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -06713741 581.58361816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -06713742 581.58361816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -06713743 581.58361816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -06713744 581.58367920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -06713745 581.58367920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -06713746 581.58367920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -06713747 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -06713748 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -06713749 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -06713750 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -06713751 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -06713752 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -06713753 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -06713754 581.58374023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -06713755 581.58380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -06713756 581.58380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -06713757 581.58380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -06713758 581.58380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -06713759 581.58386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -06713760 581.58386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -06713761 581.58386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -06713762 581.58386230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -06713763 581.58392334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -06713764 581.58392334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -06713765 581.58398438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -06713766 581.58398438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -06713767 581.58398438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -06713768 581.58398438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -06713769 581.58404541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -06713770 581.58404541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -06713771 581.58404541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -06713772 581.58404541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -06713773 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -06713774 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -06713775 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -06713776 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -06713777 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -06713778 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -06713779 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -06713780 581.58410645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -06713781 581.58416748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -06713782 581.58416748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -06713783 581.58416748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -06713784 581.58416748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -06713785 581.58422852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -06713786 581.58422852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -06713787 581.58428955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -06713788 581.58428955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -06713789 581.58428955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -06713790 581.58428955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -06713791 581.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -06713792 581.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -06713793 581.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -06713794 581.58435059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -06713795 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -06713796 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -06713797 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -06713798 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -06713799 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -06713800 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -06713801 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -06713802 581.58441162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -06713803 581.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -06713804 581.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -06713805 581.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -06713806 581.58453369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -06713807 581.58453369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -06713808 581.58453369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -06713809 581.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -06713810 581.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -06713811 581.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -06713812 581.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -06713813 581.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -06713814 581.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -06713815 581.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -06713816 581.58465576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -06713817 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -06713818 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -06713819 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -06713820 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -06713821 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -06713822 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -06713823 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -06713824 581.58471680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -06713825 581.58477783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -06713826 581.58477783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -06713827 581.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -06713828 581.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -06713829 581.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -06713830 581.58483887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -06713831 581.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -06713832 581.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -06713833 581.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -06713834 581.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -06713835 581.58496094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -06713836 581.58496094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -06713837 581.58496094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -06713838 581.58496094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -06713839 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -06713840 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -06713841 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -06713842 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -06713843 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -06713844 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -06713845 581.58502197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -06713846 581.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -06713847 581.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -06713848 581.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -06713849 581.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -06713850 581.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -06713851 581.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -06713852 581.58514404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -06713853 581.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -06713854 581.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -06713855 581.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -06713856 581.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -06713857 581.58526611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -06713858 581.58526611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -06713859 581.58526611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -06713860 581.58526611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -06713861 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -06713862 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -06713863 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -06713864 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -06713865 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -06713866 581.58532715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -06713867 581.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -06713868 581.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -06713869 581.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -06713870 581.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -06713871 581.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -06713872 581.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -06713873 581.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -06713874 581.58544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -06713875 581.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -06713876 581.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -06713877 581.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -06713878 581.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -06713879 581.58557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -06713880 581.58557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -06713881 581.58557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -06713882 581.58557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -06713883 581.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -06713884 581.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -06713885 581.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -06713886 581.58563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -06713887 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -06713888 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -06713889 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -06713890 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -06713891 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -06713892 581.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -06713893 581.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -06713894 581.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -06713895 581.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -06713896 581.58575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -06713897 581.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -06713898 581.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -06713899 581.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -06713900 581.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -06713901 581.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -06713902 581.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -06713903 581.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -06713904 581.58587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -06713905 581.58593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -06713906 581.58593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -06713907 581.58593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -06713908 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -06713909 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -06713910 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -06713911 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -06713912 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -06713913 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -06713914 581.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -06713915 581.58605957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -06713916 581.58605957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -06713917 581.58605957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -06713918 581.58605957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -06713919 581.58612061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -06713920 581.58612061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -06713921 581.58612061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -06713922 581.58612061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -06713923 581.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -06713924 581.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -06713925 581.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -06713926 581.58618164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -06713927 581.58624268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -06713928 581.58624268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -06713929 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -06713930 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -06713931 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -06713932 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -06713933 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -06713934 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -06713935 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -06713936 581.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -06713937 581.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -06713938 581.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -06713939 581.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -06713940 581.58636475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -06713941 581.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -06713942 581.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -06713943 581.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -06713944 581.58642578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -06713945 581.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -06713946 581.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -06713947 581.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -06713948 581.58654785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -06713949 581.58654785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -06713950 581.58654785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -06713951 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -06713952 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -06713953 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -06713954 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -06713955 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -06713956 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -06713957 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -06713958 581.58660889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -06713959 581.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -06713960 581.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -06713961 581.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -06713962 581.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -06713963 581.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -06713964 581.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -06713965 581.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -06713966 581.58673096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -06713967 581.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -06713968 581.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -06713969 581.58685303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -06713970 581.58685303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -06713971 581.58685303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -06713972 581.58685303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -06713973 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -06713974 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -06713975 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -06713976 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -06713977 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -06713978 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -06713979 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -06713980 581.58691406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -06713981 581.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -06713982 581.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -06713983 581.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -06713984 581.58697510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -06713985 581.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -06713986 581.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -06713987 581.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -06713988 581.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -06713989 581.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -06713990 581.58709717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -06713991 581.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -06713992 581.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -06713993 581.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -06713994 581.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -06713995 581.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -06713996 581.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -06713997 581.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -06713998 581.58721924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -06713999 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -06714000 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -06714001 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -06714002 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -06714003 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -06714004 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -06714005 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -06714006 581.58728027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -06714007 581.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -06714008 581.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -06714009 581.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -06714010 581.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -06714011 581.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -06714012 581.58740234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -06714013 581.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -06714014 581.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -06714015 581.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -06714016 581.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -06714017 581.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -06714018 581.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -06714019 581.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -06714020 581.58752441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -06714021 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -06714022 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -06714023 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -06714024 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -06714025 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -06714026 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -06714027 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -06714028 581.58758545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -06714029 581.58764648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -06714030 581.58764648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -06714031 581.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -06714032 581.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -06714033 581.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -06714034 581.58770752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -06714035 581.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -06714036 581.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -06714037 581.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -06714038 581.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -06714039 581.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -06714040 581.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -06714041 581.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -06714042 581.58782959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -06714043 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -06714044 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -06714045 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -06714046 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -06714047 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -06714048 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -06714049 581.58789063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -06714050 581.58795166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -06714051 581.58795166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -06714052 581.58795166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -06714053 581.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -06714054 581.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -06714055 581.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -06714056 581.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -06714057 581.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -06714058 581.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -06714059 581.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -06714060 581.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -06714061 581.58813477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -06714062 581.58813477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -06714063 581.58813477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -06714064 581.58813477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -06714065 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -06714066 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -06714067 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -06714068 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -06714069 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -06714070 581.58819580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -06714071 581.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -06714072 581.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -06714073 581.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -06714074 581.58825684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -06714075 581.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -06714076 581.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -06714077 581.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -06714078 581.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -06714079 581.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -06714080 581.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -06714081 581.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -06714082 581.58837891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -06714083 581.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -06714084 581.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -06714085 581.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -06714086 581.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -06714087 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -06714088 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -06714089 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -06714090 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -06714091 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -06714092 581.58850098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -06714093 581.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -06714094 581.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -06714095 581.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -06714096 581.58856201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -06714097 581.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -06714098 581.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -06714099 581.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -06714100 581.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -06714101 581.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -06714102 581.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -06714103 581.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -06714104 581.58868408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -06714105 581.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -06714106 581.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -06714107 581.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -06714108 581.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -06714109 581.58880615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -06714110 581.58880615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -06714111 581.58880615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -06714112 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -06714113 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -06714114 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -06714115 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -06714116 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -06714117 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -06714118 581.58886719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -06714119 581.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -06714120 581.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -06714121 581.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -06714122 581.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -06714123 581.58898926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -06714124 581.58898926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -06714125 581.58898926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -06714126 581.58898926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -06714127 581.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -06714128 581.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -06714129 581.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -06714130 581.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -06714131 581.58911133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -06714132 581.58911133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -06714133 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -06714134 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -06714135 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -06714136 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -06714137 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -06714138 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -06714139 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -06714140 581.58917236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -06714141 581.58923340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -06714142 581.58923340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -06714143 581.58923340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -06714144 581.58923340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -06714145 581.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -06714146 581.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -06714147 581.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -06714148 581.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -06714149 581.58935547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -06714150 581.58935547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -06714151 581.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -06714152 581.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -06714153 581.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -06714154 581.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -06714155 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -06714156 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -06714157 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -06714158 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -06714159 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -06714160 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -06714161 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -06714162 581.58947754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -06714163 581.58953857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -06714164 581.58953857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -06714165 581.58953857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -06714166 581.58953857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -06714167 581.58959961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -06714168 581.58959961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -06714169 581.58959961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -06714170 581.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -06714171 581.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -06714172 581.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -06714173 581.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -06714174 581.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -06714175 581.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -06714176 581.58972168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -06714177 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -06714178 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -06714179 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -06714180 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -06714181 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -06714182 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -06714183 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -06714184 581.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -06714185 581.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -06714186 581.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -06714187 581.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -06714188 581.58984375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -06714189 581.58990479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -06714190 581.58990479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -06714191 581.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -06714192 581.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -06714193 581.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -06714194 581.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -06714195 581.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -06714196 581.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -06714197 581.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -06714198 581.59002686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -06714199 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -06714200 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -06714201 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -06714202 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -06714203 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -06714204 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -06714205 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -06714206 581.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -06714207 581.59014893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -06714208 581.59014893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -06714209 581.59014893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -06714210 581.59020996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -06714211 581.59020996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -06714212 581.59020996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -06714213 581.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -06714214 581.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -06714215 581.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -06714216 581.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -06714217 581.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -06714218 581.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -06714219 581.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -06714220 581.59033203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -06714221 581.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -06714222 581.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -06714223 581.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -06714224 581.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -06714225 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -06714226 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -06714227 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -06714228 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -06714229 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -06714230 581.59045410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -06714231 581.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -06714232 581.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -06714233 581.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -06714234 581.59051514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -06714235 581.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -06714236 581.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -06714237 581.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -06714238 581.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -06714239 581.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -06714240 581.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -06714241 581.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -06714242 581.59063721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -06714243 581.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -06714244 581.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -06714245 581.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -06714246 581.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -06714247 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -06714248 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -06714249 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -06714250 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -06714251 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -06714252 581.59075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -06714253 581.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -06714254 581.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -06714255 581.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -06714256 581.59082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -06714257 581.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -06714258 581.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -06714259 581.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -06714260 581.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -06714261 581.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -06714262 581.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -06714263 581.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -06714264 581.59094238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -06714265 581.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -06714266 581.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -06714267 581.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -06714268 581.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -06714269 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -06714270 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -06714271 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -06714272 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -06714273 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -06714274 581.59106445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -06714275 581.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -06714276 581.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -06714277 581.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -06714278 581.59112549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -06714279 581.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -06714280 581.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -06714281 581.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -06714282 581.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -06714283 581.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -06714284 581.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -06714285 581.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -06714286 581.59124756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -06714287 581.59130859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -06714288 581.59130859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -06714289 581.59130859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -06714290 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -06714291 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -06714292 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -06714293 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -06714294 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -06714295 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -06714296 581.59136963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -06714297 581.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -06714298 581.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -06714299 581.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -06714300 581.59143066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -06714301 581.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -06714302 581.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -06714303 581.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -06714304 581.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -06714305 581.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -06714306 581.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -06714307 581.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -06714308 581.59155273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -06714309 581.59161377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -06714310 581.59161377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -06714311 581.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -06714312 581.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -06714313 581.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -06714314 581.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -06714315 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -06714316 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -06714317 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -06714318 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -06714319 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -06714320 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -06714321 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -06714322 581.59173584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -06714323 581.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -06714324 581.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -06714325 581.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -06714326 581.59179688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -06714327 581.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -06714328 581.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -06714329 581.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -06714330 581.59191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -06714331 581.59191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -06714332 581.59191895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -06714333 581.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -06714334 581.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -06714335 581.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -06714336 581.59197998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -06714337 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -06714338 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -06714339 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -06714340 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -06714341 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -06714342 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -06714343 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -06714344 581.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -06714345 581.59210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -06714346 581.59210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -06714347 581.59210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -06714348 581.59210205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -06714349 581.59216309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -06714350 581.59216309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -06714351 581.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -06714352 581.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -06714353 581.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -06714354 581.59222412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -06714355 581.59228516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -06714356 581.59228516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -06714357 581.59228516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -06714358 581.59228516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -06714359 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -06714360 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -06714361 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -06714362 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -06714363 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -06714364 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -06714365 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -06714366 581.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -06714367 581.59240723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -06714368 581.59240723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -06714369 581.59240723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -06714370 581.59246826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -06714371 581.59246826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -06714372 581.59246826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -06714373 581.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -06714374 581.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -06714375 581.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -06714376 581.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -06714377 581.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -06714378 581.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -06714379 581.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -06714380 581.59259033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -06714381 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -06714382 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -06714383 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -06714384 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -06714385 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -06714386 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -06714387 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -06714388 581.59265137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -06714389 581.59271240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -06714390 581.59271240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -06714391 581.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -06714392 581.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -06714393 581.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -06714394 581.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -06714395 581.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -06714396 581.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -06714397 581.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -06714398 581.59283447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -06714399 581.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -06714400 581.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -06714401 581.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -06714402 581.59289551 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -06714403 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -06714404 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -06714405 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -06714406 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -06714407 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -06714408 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -06714409 581.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -06714410 581.59301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -06714411 581.59301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -06714412 581.59301758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -06714413 581.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -06714414 581.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -06714415 581.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -06714416 581.59307861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -06714417 581.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -06714418 581.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -06714419 581.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -06714420 581.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -06714421 581.59320068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -06714422 581.59320068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -06714423 581.59320068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -06714424 581.59320068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -06714425 581.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -06714426 581.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -06714427 581.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -06714428 581.59326172 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -06714429 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -06714430 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -06714431 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -06714432 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -06714433 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -06714434 581.59332275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -06714435 581.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -06714436 581.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -06714437 581.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -06714438 581.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -06714439 581.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -06714440 581.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -06714441 581.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -06714442 581.59344482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -06714443 581.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -06714444 581.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -06714445 581.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -06714446 581.59350586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -06714447 581.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -06714448 581.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -06714449 581.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -06714450 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -06714451 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -06714452 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -06714453 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -06714454 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -06714455 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -06714456 581.59362793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -06714457 581.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -06714458 581.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -06714459 581.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -06714460 581.59368896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -06714461 581.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -06714462 581.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -06714463 581.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -06714464 581.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -06714465 581.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -06714466 581.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -06714467 581.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -06714468 581.59381104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -06714469 581.59387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -06714470 581.59387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -06714471 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -06714472 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -06714473 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -06714474 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -06714475 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -06714476 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -06714477 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -06714478 581.59393311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -06714479 581.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -06714480 581.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -06714481 581.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -06714482 581.59399414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -06714483 581.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -06714484 581.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -06714485 581.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -06714486 581.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -06714487 581.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -06714488 581.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -06714489 581.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -06714490 581.59411621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -06714491 581.59417725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -06714492 581.59417725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -06714493 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -06714494 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -06714495 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -06714496 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -06714497 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -06714498 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -06714499 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -06714500 581.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -06714501 581.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -06714502 581.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -06714503 581.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -06714504 581.59429932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -06714505 581.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -06714506 581.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -06714507 581.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -06714508 581.59436035 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -06714509 581.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -06714510 581.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -06714511 581.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -06714512 581.59448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -06714513 581.59448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -06714514 581.59448242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -06714515 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -06714516 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -06714517 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -06714518 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -06714519 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -06714520 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -06714521 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -06714522 581.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -06714523 581.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -06714524 581.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -06714525 581.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -06714526 581.59460449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -06714527 581.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -06714528 581.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -06714529 581.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -06714530 581.59466553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -06714531 581.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -06714532 581.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -06714533 581.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -06714534 581.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -06714535 581.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -06714536 581.59478760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -06714537 581.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -06714538 581.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -06714539 581.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -06714540 581.59484863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -06714541 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -06714542 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -06714543 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -06714544 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -06714545 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -06714546 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -06714547 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -06714548 581.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -06714549 581.59497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -06714550 581.59497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -06714551 581.59497070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -06714552 581.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -06714553 581.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -06714554 581.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -06714555 581.59509277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -06714556 581.59509277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -06714557 581.59509277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -06714558 581.59509277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -06714559 581.59515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -06714560 581.59515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -06714561 581.59515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -06714562 581.59515381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -06714563 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -06714564 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -06714565 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -06714566 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -06714567 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -06714568 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -06714569 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -06714570 581.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -06714571 581.59527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -06714572 581.59527588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -06714573 581.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -06714574 581.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -06714575 581.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -06714576 581.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -06714577 581.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -06714578 581.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -06714579 581.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -06714580 581.59539795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -06714581 581.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -06714582 581.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -06714583 581.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -06714584 581.59545898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -06714585 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -06714586 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -06714587 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -06714588 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -06714589 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -06714590 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -06714591 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -06714592 581.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -06714593 581.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -06714594 581.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -06714595 581.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -06714596 581.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -06714597 581.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -06714598 581.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -06714599 581.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -06714600 581.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -06714601 581.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -06714602 581.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -06714603 581.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -06714604 581.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -06714605 581.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -06714606 581.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -06714607 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -06714608 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -06714609 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -06714610 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -06714611 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -06714612 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -06714613 581.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -06714614 581.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -06714615 581.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -06714616 581.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -06714617 581.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -06714618 581.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -06714619 581.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -06714620 581.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -06714621 581.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -06714622 581.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -06714623 581.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -06714624 581.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -06714625 581.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -06714626 581.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -06714627 581.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -06714628 581.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -06714629 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -06714630 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -06714631 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -06714632 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -06714633 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -06714634 581.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -06714635 581.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -06714636 581.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -06714637 581.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -06714638 581.59619141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -06714639 581.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -06714640 581.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -06714641 581.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -06714642 581.59625244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -06714643 581.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -06714644 581.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -06714645 581.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -06714646 581.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -06714647 581.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -06714648 581.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -06714649 581.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -06714650 581.59637451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -06714651 581.59643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -06714652 581.59643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -06714653 581.59643555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -06714654 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -06714655 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -06714656 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -06714657 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -06714658 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -06714659 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -06714660 581.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -06714661 581.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -06714662 581.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -06714663 581.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -06714664 581.59655762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -06714665 581.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -06714666 581.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -06714667 581.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -06714668 581.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -06714669 581.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -06714670 581.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -06714671 581.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -06714672 581.59667969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -06714673 581.59674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -06714674 581.59674072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -06714675 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -06714676 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -06714677 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -06714678 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -06714679 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -06714680 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -06714681 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -06714682 581.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -06714683 581.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -06714684 581.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -06714685 581.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -06714686 581.59686279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -06714687 581.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -06714688 581.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -06714689 581.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -06714690 581.59692383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -06714691 581.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -06714692 581.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -06714693 581.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -06714694 581.59704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -06714695 581.59704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -06714696 581.59704590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -06714697 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -06714698 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -06714699 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -06714700 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -06714701 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -06714702 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -06714703 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -06714704 581.59710693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -06714705 581.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -06714706 581.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -06714707 581.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -06714708 581.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -06714709 581.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -06714710 581.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -06714711 581.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -06714712 581.59722900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -06714713 581.59729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -06714714 581.59729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -06714715 581.59729004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -06714716 581.59735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -06714717 581.59735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -06714718 581.59735107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -06714719 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -06714720 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -06714721 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -06714722 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -06714723 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -06714724 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -06714725 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -06714726 581.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -06714727 581.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -06714728 581.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -06714729 581.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -06714730 581.59747314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -06714731 581.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -06714732 581.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -06714733 581.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -06714734 581.59753418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -06714735 581.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -06714736 581.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -06714737 581.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -06714738 581.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -06714739 581.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -06714740 581.59765625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -06714741 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -06714742 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -06714743 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -06714744 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -06714745 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -06714746 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -06714747 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -06714748 581.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -06714749 581.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -06714750 581.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -06714751 581.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -06714752 581.59777832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -06714753 581.59783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -06714754 581.59783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -06714755 581.59783936 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -06714756 581.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -06714757 581.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -06714758 581.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -06714759 581.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -06714760 581.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -06714761 581.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -06714762 581.59796143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -06714763 581.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -06714764 581.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -06714765 581.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -06714766 581.59802246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -06714767 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -06714768 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -06714769 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -06714770 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -06714771 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -06714772 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -06714773 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -06714774 581.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -06714775 581.59814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -06714776 581.59814453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -06714777 581.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -06714778 581.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -06714779 581.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -06714780 581.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -06714781 581.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -06714782 581.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -06714783 581.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -06714784 581.59826660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -06714785 581.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -06714786 581.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -06714787 581.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -06714788 581.59832764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -06714789 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -06714790 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -06714791 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -06714792 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -06714793 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -06714794 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -06714795 581.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -06714796 581.59844971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -06714797 581.59844971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -06714798 581.59844971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -06714799 581.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -06714800 581.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -06714801 581.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -06714802 581.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -06714803 581.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -06714804 581.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -06714805 581.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -06714806 581.59857178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -06714807 581.59863281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -06714808 581.59863281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -06714809 581.59863281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -06714810 581.59863281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -06714811 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -06714812 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -06714813 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -06714814 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -06714815 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -06714816 581.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -06714817 581.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -06714818 581.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -06714819 581.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -06714820 581.59875488 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -06714821 581.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -06714822 581.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -06714823 581.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -06714824 581.59881592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -06714825 581.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -06714826 581.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -06714827 581.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -06714828 581.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -06714829 581.59893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -06714830 581.59893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -06714831 581.59893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -06714832 581.59893799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -06714833 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -06714834 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -06714835 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -06714836 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -06714837 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -06714838 581.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -06714839 581.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -06714840 581.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -06714841 581.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -06714842 581.59906006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -06714843 581.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -06714844 581.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -06714845 581.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -06714846 581.59912109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -06714847 581.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -06714848 581.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -06714849 581.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -06714850 581.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -06714851 581.59924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -06714852 581.59924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -06714853 581.59924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -06714854 581.59924316 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -06714855 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -06714856 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -06714857 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -06714858 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -06714859 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -06714860 581.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -06714861 581.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -06714862 581.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -06714863 581.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -06714864 581.59936523 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -06714865 581.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -06714866 581.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -06714867 581.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -06714868 581.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -06714869 581.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -06714870 581.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -06714871 581.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -06714872 581.59948730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -06714873 581.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -06714874 581.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -06714875 581.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -06714876 581.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -06714877 581.59960938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -06714878 581.59960938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -06714879 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -06714880 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -06714881 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -06714882 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -06714883 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -06714884 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -06714885 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -06714886 581.59967041 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -06714887 581.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -06714888 581.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -06714889 581.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -06714890 581.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -06714891 581.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -06714892 581.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -06714893 581.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -06714894 581.59979248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -06714895 581.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -06714896 581.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -06714897 581.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -06714898 581.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -06714899 581.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -06714900 581.59991455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -06714901 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -06714902 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -06714903 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -06714904 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -06714905 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -06714906 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -06714907 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -06714908 581.59997559 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -06714909 581.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -06714910 581.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -06714911 581.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -06714912 581.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -06714913 581.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -06714914 581.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -06714915 581.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -06714916 581.60009766 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -06714917 581.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -06714918 581.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -06714919 581.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -06714920 581.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -06714921 581.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -06714922 581.60021973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -06714923 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -06714924 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -06714925 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -06714926 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -06714927 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -06714928 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -06714929 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -06714930 581.60028076 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -06714931 581.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -06714932 581.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -06714933 581.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -06714934 581.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -06714935 581.60040283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -06714936 581.60040283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -06714937 581.60040283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -06714938 581.60046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -06714939 581.60046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -06714940 581.60046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -06714941 581.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -06714942 581.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -06714943 581.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -06714944 581.60052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -06714945 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -06714946 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -06714947 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -06714948 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -06714949 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -06714950 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -06714951 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -06714952 581.60058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -06714953 581.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -06714954 581.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -06714955 581.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -06714956 581.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -06714957 581.60070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -06714958 581.60070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -06714959 581.60070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -06714960 581.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -06714961 581.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -06714962 581.60076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -06714963 581.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -06714964 581.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -06714965 581.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -06714966 581.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -06714967 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -06714968 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -06714969 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -06714970 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -06714971 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -06714972 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -06714973 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -06714974 581.60089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -06714975 581.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -06714976 581.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -06714977 581.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -06714978 581.60095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -06714979 581.60101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -06714980 581.60101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -06714981 581.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -06714982 581.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -06714983 581.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -06714984 581.60107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -06714985 581.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -06714986 581.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -06714987 581.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -06714988 581.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -06714989 581.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -06714990 581.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -06714991 581.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -06714992 581.60119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -06714993 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -06714994 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -06714995 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -06714996 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -06714997 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -06714998 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -06714999 581.60125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -06715000 581.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -06715001 581.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -06715002 581.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -06715003 581.60137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -06715004 581.60137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -06715005 581.60137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -06715006 581.60137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -06715007 581.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -06715008 581.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -06715009 581.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -06715010 581.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -06715011 581.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -06715012 581.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -06715013 581.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -06715014 581.60150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -06715015 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -06715016 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -06715017 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -06715018 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -06715019 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -06715020 581.60156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -06715021 581.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -06715022 581.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -06715023 581.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -06715024 581.60162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -06715025 581.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -06715026 581.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -06715027 581.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -06715028 581.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -06715029 581.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -06715030 581.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -06715031 581.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -06715032 581.60174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -06715033 581.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -06715034 581.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -06715035 581.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -06715036 581.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -06715037 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -06715038 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -06715039 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -06715040 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -06715041 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -06715042 581.60186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -06715043 581.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -06715044 581.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -06715045 581.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -06715046 581.60192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -06715047 581.60198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -06715048 581.60198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -06715049 581.60198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -06715050 581.60198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -06715051 581.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -06715052 581.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -06715053 581.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -06715054 581.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -06715055 581.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -06715056 581.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -06715057 581.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -06715058 581.60211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -06715059 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -06715060 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -06715061 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -06715062 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -06715063 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -06715064 581.60217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -06715065 581.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -06715066 581.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -06715067 581.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -06715068 581.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -06715069 581.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -06715070 581.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -06715071 581.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -06715072 581.60229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -06715073 581.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -06715074 581.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -06715075 581.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -06715076 581.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -06715077 581.60241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -06715078 581.60241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -06715079 581.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -06715080 581.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -06715081 581.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -06715082 581.60247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -06715083 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -06715084 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -06715085 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -06715086 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -06715087 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -06715088 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -06715089 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -06715090 581.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -06715091 581.60260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -06715092 581.60260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -06715093 581.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -06715094 581.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -06715095 581.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -06715096 581.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -06715097 581.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -06715098 581.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -06715099 581.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -06715100 581.60272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -06715101 581.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -06715102 581.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -06715103 581.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -06715104 581.60278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -06715105 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -06715106 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -06715107 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -06715108 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -06715109 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -06715110 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -06715111 581.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -06715112 581.60290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -06715113 581.60290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -06715114 581.60290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -06715115 581.60296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -06715116 581.60296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -06715117 581.60296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -06715118 581.60296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -06715119 581.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -06715120 581.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -06715121 581.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -06715122 581.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -06715123 581.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -06715124 581.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -06715125 581.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -06715126 581.60308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -06715127 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -06715128 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -06715129 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -06715130 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -06715131 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -06715132 581.60314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -06715133 581.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -06715134 581.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -06715135 581.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -06715136 581.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -06715137 581.60327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -06715138 581.60327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -06715139 581.60327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -06715140 581.60327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -06715141 581.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -06715142 581.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -06715143 581.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -06715144 581.60333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -06715145 581.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -06715146 581.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -06715147 581.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -06715148 581.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -06715149 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -06715150 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -06715151 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -06715152 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -06715153 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -06715154 581.60345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -06715155 581.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -06715156 581.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -06715157 581.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -06715158 581.60351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -06715159 581.60357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -06715160 581.60357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -06715161 581.60357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -06715162 581.60357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -06715163 581.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -06715164 581.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -06715165 581.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -06715166 581.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -06715167 581.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -06715168 581.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -06715169 581.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -06715170 581.60369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -06715171 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -06715172 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -06715173 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -06715174 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -06715175 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -06715176 581.60375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -06715177 581.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -06715178 581.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -06715179 581.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -06715180 581.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -06715181 581.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -06715182 581.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -06715183 581.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -06715184 581.60388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -06715185 581.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -06715186 581.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -06715187 581.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -06715188 581.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -06715189 581.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -06715190 581.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -06715191 581.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -06715192 581.60400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -06715193 581.60406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -06715194 581.60406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -06715195 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -06715196 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -06715197 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -06715198 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -06715199 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -06715200 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -06715201 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -06715202 581.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -06715203 581.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -06715204 581.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -06715205 581.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -06715206 581.60418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -06715207 581.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -06715208 581.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -06715209 581.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -06715210 581.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -06715211 581.60430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -06715212 581.60430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -06715213 581.60430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -06715214 581.60437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -06715215 581.60437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -06715216 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -06715217 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -06715218 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -06715219 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -06715220 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -06715221 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -06715222 581.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -06715223 581.60449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -06715224 581.60449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -06715225 581.60449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -06715226 581.60449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -06715227 581.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -06715228 581.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -06715229 581.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -06715230 581.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -06715231 581.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -06715232 581.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -06715233 581.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -06715234 581.60461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -06715235 581.60467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -06715236 581.60467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -06715237 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -06715238 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -06715239 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -06715240 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -06715241 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -06715242 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -06715243 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -06715244 581.60473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -06715245 581.60479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -06715246 581.60479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -06715247 581.60479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -06715248 581.60479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -06715249 581.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -06715250 581.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -06715251 581.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -06715252 581.60485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -06715253 581.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -06715254 581.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -06715255 581.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -06715256 581.60498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -06715257 581.60498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -06715258 581.60498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -06715259 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -06715260 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -06715261 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -06715262 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -06715263 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -06715264 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -06715265 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -06715266 581.60504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -06715267 581.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -06715268 581.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -06715269 581.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -06715270 581.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -06715271 581.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -06715272 581.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -06715273 581.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -06715274 581.60516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -06715275 581.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -06715276 581.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -06715277 581.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -06715278 581.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -06715279 581.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -06715280 581.60528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -06715281 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -06715282 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -06715283 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -06715284 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -06715285 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -06715286 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -06715287 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -06715288 581.60534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -06715289 581.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -06715290 581.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -06715291 581.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -06715292 581.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -06715293 581.60546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -06715294 581.60546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -06715295 581.60546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -06715296 581.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -06715297 581.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -06715298 581.60552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -06715299 581.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -06715300 581.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -06715301 581.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -06715302 581.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -06715303 581.60565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -06715304 581.60565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -06715305 581.60565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -06715306 581.60565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -06715307 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -06715308 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -06715309 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -06715310 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -06715311 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -06715312 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -06715313 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -06715314 581.60571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -06715315 581.60577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -06715316 581.60577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -06715317 581.60577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -06715318 581.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -06715319 581.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -06715320 581.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -06715321 581.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -06715322 581.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -06715323 581.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -06715324 581.60589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -06715325 581.60595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -06715326 581.60595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -06715327 581.60595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -06715328 581.60595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -06715329 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -06715330 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -06715331 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -06715332 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -06715333 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -06715334 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -06715335 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -06715336 581.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -06715337 581.60607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -06715338 581.60607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -06715339 581.60614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -06715340 581.60614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -06715341 581.60614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -06715342 581.60614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -06715343 581.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -06715344 581.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -06715345 581.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -06715346 581.60620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -06715347 581.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -06715348 581.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -06715349 581.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -06715350 581.60626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -06715351 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -06715352 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -06715353 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -06715354 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -06715355 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -06715356 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -06715357 581.60632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -06715358 581.60638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -06715359 581.60638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -06715360 581.60638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -06715361 581.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -06715362 581.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -06715363 581.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -06715364 581.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -06715365 581.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -06715366 581.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -06715367 581.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -06715368 581.60650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -06715369 581.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -06715370 581.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -06715371 581.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -06715372 581.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -06715373 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -06715374 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -06715375 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -06715376 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -06715377 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -06715378 581.60662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -06715379 581.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -06715380 581.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -06715381 581.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -06715382 581.60668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -06715383 581.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -06715384 581.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -06715385 581.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -06715386 581.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -06715387 581.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -06715388 581.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -06715389 581.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -06715390 581.60681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -06715391 581.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -06715392 581.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -06715393 581.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -06715394 581.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -06715395 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -06715396 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -06715397 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -06715398 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -06715399 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -06715400 581.60693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -06715401 581.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -06715402 581.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -06715403 581.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -06715404 581.60699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -06715405 581.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -06715406 581.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -06715407 581.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -06715408 581.60705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -06715409 581.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -06715410 581.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -06715411 581.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -06715412 581.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -06715413 581.60717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -06715414 581.60717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -06715415 581.60717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -06715416 581.60717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -06715417 581.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -06715418 581.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -06715419 581.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -06715420 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -06715421 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -06715422 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -06715423 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -06715424 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -06715425 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -06715426 581.60729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -06715427 581.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -06715428 581.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -06715429 581.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -06715430 581.60736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -06715431 581.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -06715432 581.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -06715433 581.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -06715434 581.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -06715435 581.60748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -06715436 581.60748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -06715437 581.60748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -06715438 581.60748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -06715439 581.60754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -06715440 581.60754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -06715441 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -06715442 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -06715443 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -06715444 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -06715445 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -06715446 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -06715447 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -06715448 581.60760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -06715449 581.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -06715450 581.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -06715451 581.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -06715452 581.60766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -06715453 581.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -06715454 581.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -06715455 581.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -06715456 581.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -06715457 581.60778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -06715458 581.60778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -06715459 581.60778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -06715460 581.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -06715461 581.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -06715462 581.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -06715463 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -06715464 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -06715465 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -06715466 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -06715467 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -06715468 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -06715469 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -06715470 581.60791016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -06715471 581.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -06715472 581.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -06715473 581.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -06715474 581.60797119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -06715475 581.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -06715476 581.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -06715477 581.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -06715478 581.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -06715479 581.60809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -06715480 581.60809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -06715481 581.60809326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -06715482 581.60815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -06715483 581.60815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -06715484 581.60815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -06715485 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -06715486 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -06715487 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -06715488 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -06715489 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -06715490 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -06715491 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -06715492 581.60821533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -06715493 581.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -06715494 581.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -06715495 581.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -06715496 581.60827637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -06715497 581.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -06715498 581.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -06715499 581.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -06715500 581.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -06715501 581.60839844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -06715502 581.60839844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -06715503 581.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -06715504 581.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -06715505 581.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -06715506 581.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -06715507 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -06715508 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -06715509 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -06715510 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -06715511 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -06715512 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -06715513 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -06715514 581.60852051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -06715515 581.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -06715516 581.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -06715517 581.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -06715518 581.60858154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -06715519 581.60864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -06715520 581.60864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -06715521 581.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -06715522 581.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -06715523 581.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -06715524 581.60870361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -06715525 581.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -06715526 581.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -06715527 581.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -06715528 581.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -06715529 581.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -06715530 581.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -06715531 581.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -06715532 581.60882568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -06715533 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -06715534 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -06715535 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -06715536 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -06715537 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -06715538 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -06715539 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -06715540 581.60888672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -06715541 581.60894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -06715542 581.60894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -06715543 581.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -06715544 581.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -06715545 581.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -06715546 581.60900879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -06715547 581.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -06715548 581.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -06715549 581.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -06715550 581.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -06715551 581.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -06715552 581.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -06715553 581.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -06715554 581.60913086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -06715555 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -06715556 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -06715557 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -06715558 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -06715559 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -06715560 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -06715561 581.60919189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -06715562 581.60925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -06715563 581.60925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -06715564 581.60925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -06715565 581.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -06715566 581.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -06715567 581.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -06715568 581.60931396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -06715569 581.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -06715570 581.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -06715571 581.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -06715572 581.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -06715573 581.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -06715574 581.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -06715575 581.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -06715576 581.60943604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -06715577 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -06715578 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -06715579 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -06715580 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -06715581 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -06715582 581.60949707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -06715583 581.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -06715584 581.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -06715585 581.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -06715586 581.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -06715587 581.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -06715588 581.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -06715589 581.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -06715590 581.60961914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -06715591 581.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -06715592 581.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -06715593 581.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -06715594 581.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -06715595 581.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -06715596 581.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -06715597 581.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -06715598 581.60974121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -06715599 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -06715600 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -06715601 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -06715602 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -06715603 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -06715604 581.60980225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -06715605 581.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -06715606 581.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -06715607 581.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -06715608 581.60986328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -06715609 581.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -06715610 581.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -06715611 581.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -06715612 581.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -06715613 581.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -06715614 581.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -06715615 581.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -06715616 581.60998535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -06715617 581.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -06715618 581.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -06715619 581.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -06715620 581.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -06715621 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -06715622 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -06715623 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -06715624 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -06715625 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -06715626 581.61010742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -06715627 581.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -06715628 581.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -06715629 581.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -06715630 581.61016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -06715631 581.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -06715632 581.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -06715633 581.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -06715634 581.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -06715635 581.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -06715636 581.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -06715637 581.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -06715638 581.61029053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -06715639 581.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -06715640 581.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -06715641 581.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -06715642 581.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -06715643 581.61041260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -06715644 581.61041260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -06715645 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -06715646 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -06715647 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -06715648 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -06715649 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -06715650 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -06715651 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -06715652 581.61047363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -06715653 581.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -06715654 581.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -06715655 581.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -06715656 581.61053467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -06715657 581.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -06715658 581.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -06715659 581.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -06715660 581.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -06715661 581.61065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -06715662 581.61065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -06715663 581.61065674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -06715664 581.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -06715665 581.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -06715666 581.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -06715667 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -06715668 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -06715669 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -06715670 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -06715671 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -06715672 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -06715673 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -06715674 581.61077881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -06715675 581.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -06715676 581.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -06715677 581.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -06715678 581.61083984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -06715679 581.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -06715680 581.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -06715681 581.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -06715682 581.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -06715683 581.61096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -06715684 581.61096191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -06715685 581.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -06715686 581.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -06715687 581.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -06715688 581.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -06715689 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -06715690 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -06715691 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -06715692 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -06715693 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -06715694 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -06715695 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -06715696 581.61108398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -06715697 581.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -06715698 581.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -06715699 581.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -06715700 581.61114502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -06715701 581.61120605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -06715702 581.61120605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -06715703 581.61120605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -06715704 581.61126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -06715705 581.61126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -06715706 581.61126709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -06715707 581.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -06715708 581.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -06715709 581.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -06715710 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -06715711 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -06715712 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -06715713 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -06715714 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -06715715 581.61138916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -06715716 581.61145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -06715717 581.61145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -06715718 581.61145020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -06715719 581.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -06715720 581.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -06715721 581.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -06715722 581.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -06715723 581.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -06715724 581.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -06715725 581.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -06715726 581.61157227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -06715727 581.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -06715728 581.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -06715729 581.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -06715730 581.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -06715731 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -06715732 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -06715733 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -06715734 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -06715735 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -06715736 581.61169434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -06715737 581.61175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -06715738 581.61175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -06715739 581.61175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -06715740 581.61175537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -06715741 581.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -06715742 581.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -06715743 581.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -06715744 581.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -06715745 581.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -06715746 581.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -06715747 581.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -06715748 581.61187744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -06715749 581.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -06715750 581.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -06715751 581.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -06715752 581.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -06715753 581.61199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -06715754 581.61199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -06715755 581.61199951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -06715756 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -06715757 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -06715758 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -06715759 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -06715760 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -06715761 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -06715762 581.61206055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -06715763 581.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -06715764 581.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -06715765 581.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -06715766 581.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -06715767 581.61218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -06715768 581.61218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -06715769 581.61218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -06715770 581.61218262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -06715771 581.61230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -06715772 581.61230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -06715773 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -06715774 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -06715775 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -06715776 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -06715777 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -06715778 581.61236572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -06715779 581.61242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -06715780 581.61242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -06715781 581.61242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -06715782 581.61242676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -06715783 581.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -06715784 581.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -06715785 581.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -06715786 581.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -06715787 581.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -06715788 581.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -06715789 581.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -06715790 581.61254883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -06715791 581.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -06715792 581.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -06715793 581.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -06715794 581.61260986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -06715795 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -06715796 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -06715797 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -06715798 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -06715799 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -06715800 581.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -06715801 581.61273193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -06715802 581.61273193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -06715803 581.61273193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -06715804 581.61273193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -06715805 581.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -06715806 581.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -06715807 581.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -06715808 581.61279297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -06715809 581.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -06715810 581.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -06715811 581.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -06715812 581.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -06715813 581.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -06715814 581.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -06715815 581.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -06715816 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -06715817 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -06715818 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -06715819 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -06715820 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -06715821 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -06715822 581.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -06715823 581.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -06715824 581.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -06715825 581.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -06715826 581.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -06715827 581.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -06715828 581.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -06715829 581.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -06715830 581.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -06715831 581.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -06715832 581.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -06715833 581.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -06715834 581.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -06715835 581.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -06715836 581.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -06715837 581.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -06715838 581.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -06715839 581.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -06715840 581.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -06715841 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -06715842 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -06715843 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -06715844 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -06715845 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -06715846 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -06715847 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -06715848 581.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -06715849 581.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -06715850 581.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -06715851 581.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -06715852 581.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -06715853 581.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -06715854 581.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -06715855 581.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -06715856 581.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -06715857 581.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -06715858 581.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -06715859 581.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -06715860 581.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -06715861 581.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -06715862 581.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -06715863 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -06715864 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -06715865 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -06715866 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -06715867 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -06715868 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -06715869 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -06715870 581.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -06715871 581.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -06715872 581.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -06715873 581.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -06715874 581.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -06715875 581.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -06715876 581.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -06715877 581.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -06715878 581.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -06715879 581.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -06715880 581.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -06715881 581.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -06715882 581.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -06715883 581.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -06715884 581.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -06715885 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -06715886 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -06715887 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -06715888 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -06715889 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -06715890 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -06715891 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -06715892 581.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -06715893 581.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -06715894 581.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -06715895 581.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -06715896 581.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -06715897 581.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -06715898 581.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -06715899 581.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -06715900 581.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -06715901 581.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -06715902 581.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -06715903 581.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -06715904 581.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -06715905 581.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -06715906 581.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -06715907 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -06715908 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -06715909 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -06715910 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -06715911 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -06715912 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -06715913 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -06715914 581.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -06715915 581.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -06715916 581.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -06715917 581.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -06715918 581.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -06715919 581.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -06715920 581.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -06715921 581.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -06715922 581.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -06715923 581.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -06715924 581.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -06715925 581.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -06715926 581.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -06715927 581.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -06715928 581.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -06715929 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -06715930 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -06715931 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -06715932 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -06715933 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -06715934 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -06715935 581.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -06715936 581.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -06715937 581.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -06715938 581.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -06715939 581.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -06715940 581.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -06715941 581.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -06715942 581.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -06715943 581.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -06715944 581.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -06715945 581.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -06715946 581.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -06715947 581.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -06715948 581.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -06715949 581.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -06715950 581.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -06715951 581.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -06715952 581.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -06715953 581.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -06715954 581.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -06715955 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -06715956 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -06715957 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -06715958 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -06715959 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -06715960 581.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -06715961 581.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -06715962 581.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -06715963 581.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -06715964 581.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -06715965 581.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -06715966 581.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -06715967 581.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -06715968 581.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -06715969 581.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -06715970 581.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -06715971 581.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -06715972 581.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -06715973 581.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -06715974 581.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -06715975 581.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -06715976 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -06715977 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -06715978 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -06715979 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -06715980 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -06715981 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -06715982 581.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -06715983 581.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -06715984 581.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -06715985 581.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -06715986 581.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -06715987 581.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -06715988 581.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -06715989 581.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -06715990 581.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -06715991 581.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -06715992 581.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -06715993 581.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -06715994 581.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -06715995 581.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -06715996 581.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -06715997 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -06715998 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -06715999 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -06716000 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -06716001 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -06716002 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -06716003 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -06716004 581.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -06716005 581.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -06716006 581.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -06716007 581.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -06716008 581.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -06716009 581.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -06716010 581.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -06716011 581.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -06716012 581.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -06716013 581.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -06716014 581.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -06716015 581.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -06716016 581.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -06716017 581.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -06716018 581.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -06716019 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -06716020 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -06716021 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -06716022 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -06716023 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -06716024 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -06716025 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -06716026 581.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -06716027 581.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -06716028 581.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -06716029 581.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -06716030 581.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -06716031 581.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -06716032 581.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -06716033 581.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -06716034 581.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -06716035 581.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -06716036 581.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -06716037 581.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -06716038 581.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -06716039 581.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -06716040 581.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -06716041 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -06716042 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -06716043 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -06716044 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -06716045 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -06716046 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -06716047 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -06716048 581.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -06716049 581.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -06716050 581.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -06716051 581.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -06716052 581.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -06716053 581.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -06716054 581.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -06716055 581.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -06716056 581.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -06716057 581.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -06716058 581.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -06716059 581.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -06716060 581.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -06716061 581.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -06716062 581.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -06716063 581.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -06716064 581.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -06716065 581.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -06716066 581.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -06716067 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -06716068 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -06716069 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -06716070 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -06716071 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -06716072 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -06716073 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -06716074 581.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -06716075 581.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -06716076 581.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -06716077 581.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -06716078 581.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -06716079 581.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -06716080 581.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -06716081 581.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -06716082 581.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -06716083 581.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -06716084 581.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -06716085 581.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -06716086 581.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -06716087 581.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -06716088 581.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -06716089 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -06716090 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -06716091 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -06716092 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -06716093 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -06716094 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -06716095 581.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -06716096 581.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -06716097 581.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -06716098 581.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -06716099 581.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -06716100 581.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -06716101 581.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -06716102 581.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -06716103 581.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -06716104 581.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -06716105 581.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -06716106 581.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -06716107 581.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -06716108 581.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -06716109 581.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -06716110 581.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -06716111 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -06716112 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -06716113 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -06716114 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -06716115 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -06716116 581.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -06716117 581.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -06716118 581.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -06716119 581.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -06716120 581.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -06716121 581.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -06716122 581.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -06716123 581.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -06716124 581.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -06716125 581.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -06716126 581.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -06716127 581.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -06716128 581.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -06716129 581.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -06716130 581.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -06716131 581.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -06716132 581.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -06716133 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -06716134 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -06716135 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -06716136 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -06716137 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -06716138 581.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -06716139 581.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -06716140 581.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -06716141 581.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -06716142 581.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -06716143 581.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -06716144 581.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -06716145 581.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -06716146 581.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -06716147 581.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -06716148 581.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -06716149 581.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -06716150 581.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -06716151 581.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -06716152 581.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -06716153 581.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -06716154 581.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -06716155 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -06716156 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -06716157 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -06716158 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -06716159 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -06716160 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -06716161 581.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -06716162 581.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -06716163 581.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -06716164 581.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -06716165 581.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -06716166 581.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -06716167 581.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -06716168 581.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -06716169 581.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -06716170 581.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -06716171 581.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -06716172 581.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -06716173 581.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -06716174 581.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -06716175 581.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -06716176 581.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -06716177 581.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -06716178 581.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -06716179 581.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -06716180 581.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -06716181 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -06716182 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -06716183 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -06716184 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -06716185 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -06716186 581.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -06716187 581.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -06716188 581.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -06716189 581.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -06716190 581.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -06716191 581.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -06716192 581.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -06716193 581.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -06716194 581.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -06716195 581.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -06716196 581.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -06716197 581.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -06716198 581.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -06716199 581.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -06716200 581.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -06716201 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -06716202 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -06716203 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -06716204 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -06716205 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -06716206 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -06716207 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -06716208 581.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -06716209 581.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -06716210 581.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -06716211 581.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -06716212 581.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -06716213 581.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -06716214 581.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -06716215 581.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -06716216 581.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -06716217 581.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -06716218 581.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -06716219 581.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -06716220 581.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -06716221 581.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -06716222 581.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -06716223 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -06716224 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -06716225 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -06716226 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -06716227 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -06716228 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -06716229 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -06716230 581.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -06716231 581.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -06716232 581.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -06716233 581.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -06716234 581.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -06716235 581.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -06716236 581.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -06716237 581.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -06716238 581.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -06716239 581.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -06716240 581.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -06716241 581.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -06716242 581.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -06716243 581.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -06716244 581.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -06716245 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -06716246 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -06716247 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -06716248 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -06716249 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -06716250 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -06716251 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -06716252 581.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -06716253 581.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -06716254 581.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -06716255 581.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -06716256 581.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -06716257 581.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -06716258 581.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -06716259 581.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -06716260 581.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -06716261 581.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -06716262 581.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -06716263 581.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -06716264 581.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -06716265 581.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -06716266 581.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -06716267 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -06716268 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -06716269 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -06716270 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -06716271 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -06716272 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -06716273 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -06716274 581.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -06716275 581.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -06716276 581.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -06716277 581.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -06716278 581.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -06716279 581.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -06716280 581.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -06716281 581.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -06716282 581.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -06716283 581.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -06716284 581.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -06716285 581.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -06716286 581.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -06716287 581.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -06716288 581.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -06716289 581.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -06716290 581.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -06716291 581.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -06716292 581.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -06716293 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -06716294 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -06716295 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -06716296 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -06716297 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -06716298 581.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -06716299 581.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -06716300 581.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -06716301 581.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -06716302 581.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -06716303 581.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -06716304 581.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -06716305 581.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -06716306 581.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -06716307 581.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -06716308 581.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -06716309 581.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -06716310 581.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -06716311 581.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -06716312 581.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -06716313 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -06716314 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -06716315 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -06716316 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -06716317 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -06716318 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -06716319 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -06716320 581.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -06716321 581.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -06716322 581.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -06716323 581.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -06716324 581.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -06716325 581.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -06716326 581.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -06716327 581.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -06716328 581.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -06716329 581.62017822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -06716330 581.62017822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -06716331 581.62017822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -06716332 581.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -06716333 581.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -06716334 581.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -06716335 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -06716336 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -06716337 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -06716338 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -06716339 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -06716340 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -06716341 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -06716342 581.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -06716343 581.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -06716344 581.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -06716345 581.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -06716346 581.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -06716347 581.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -06716348 581.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -06716349 581.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -06716350 581.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -06716351 581.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -06716352 581.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -06716353 581.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -06716354 581.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -06716355 581.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -06716356 581.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -06716357 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -06716358 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -06716359 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -06716360 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -06716361 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -06716362 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -06716363 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -06716364 581.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -06716365 581.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -06716366 581.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -06716367 581.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -06716368 581.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -06716369 581.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -06716370 581.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -06716371 581.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -06716372 581.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -06716373 581.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -06716374 581.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -06716375 581.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -06716376 581.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -06716377 581.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -06716378 581.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -06716379 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -06716380 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -06716381 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -06716382 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -06716383 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -06716384 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -06716385 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -06716386 581.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -06716387 581.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -06716388 581.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -06716389 581.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -06716390 581.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -06716391 581.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -06716392 581.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -06716393 581.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -06716394 581.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -06716395 581.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -06716396 581.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -06716397 581.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -06716398 581.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -06716399 581.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -06716400 581.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -06716401 581.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -06716402 581.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -06716403 581.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -06716404 581.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -06716405 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -06716406 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -06716407 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -06716408 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -06716409 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -06716410 581.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -06716411 581.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -06716412 581.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -06716413 581.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -06716414 581.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -06716415 581.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -06716416 581.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -06716417 581.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -06716418 581.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -06716419 581.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -06716420 581.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -06716421 581.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -06716422 581.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -06716423 581.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -06716424 581.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -06716425 581.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -06716426 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -06716427 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -06716428 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -06716429 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -06716430 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -06716431 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -06716432 581.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -06716433 581.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -06716434 581.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -06716435 581.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -06716436 581.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -06716437 581.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -06716438 581.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -06716439 581.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -06716440 581.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -06716441 581.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -06716442 581.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -06716443 581.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -06716444 581.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -06716445 581.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -06716446 581.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -06716447 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -06716448 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -06716449 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -06716450 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -06716451 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -06716452 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -06716453 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -06716454 581.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -06716455 581.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -06716456 581.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -06716457 581.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -06716458 581.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -06716459 581.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -06716460 581.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -06716461 581.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -06716462 581.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -06716463 581.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -06716464 581.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -06716465 581.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -06716466 581.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -06716467 581.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -06716468 581.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -06716469 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -06716470 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -06716471 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -06716472 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -06716473 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -06716474 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -06716475 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -06716476 581.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -06716477 581.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -06716478 581.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -06716479 581.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -06716480 581.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -06716481 581.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -06716482 581.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -06716483 581.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -06716484 581.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -06716485 581.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -06716486 581.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -06716487 581.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -06716488 581.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -06716489 581.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -06716490 581.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -06716491 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -06716492 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -06716493 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -06716494 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -06716495 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -06716496 581.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -06716497 581.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -06716498 581.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -06716499 581.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -06716500 581.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -06716501 581.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -06716502 581.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -06716503 581.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -06716504 581.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -06716505 581.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -06716506 581.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -06716507 581.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -06716508 581.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -06716509 581.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -06716510 581.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -06716511 581.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -06716512 581.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -06716513 581.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -06716514 581.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -06716515 581.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -06716516 581.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -06716517 581.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -06716518 581.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -06718041 581.64447021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -06718042 581.64453125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b80 -06718043 581.64453125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -06718044 581.64453125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b90 -06718045 581.64459229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -06718046 581.64459229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba0 -06718047 581.64459229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -06718048 581.64459229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb0 -06718049 581.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -06718050 581.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc0 -06718051 581.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -06718052 581.64465332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd0 -06718053 581.64471436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -06718054 581.64471436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be0 -06718055 581.64471436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -06718056 581.64471436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf0 -06718057 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -06718058 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c00 -06718059 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -06718060 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c10 -06718061 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -06718062 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c20 -06718063 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -06718064 581.64477539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c30 -06718065 581.64483643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -06718066 581.64483643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c40 -06718067 581.64483643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -06718068 581.64483643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c50 -06718069 581.64489746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -06718070 581.64489746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c60 -06718071 581.64489746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -06718072 581.64489746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c70 -06718073 581.64495850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -06718074 581.64495850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c80 -06718075 581.64495850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -06718076 581.64501953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c90 -06718077 581.64501953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -06718078 581.64501953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca0 -06718079 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -06718080 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb0 -06718081 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -06718082 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc0 -06718083 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -06718084 581.64508057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd0 -06720385 581.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -06720386 581.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4c0 -06720387 581.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -06720388 581.67749023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4d0 -06720389 581.67755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -06720390 581.67755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4e0 -06720391 581.67755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -06720392 581.67755127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe4f0 -06720393 581.67761230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -06720394 581.67761230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe500 -06720395 581.67761230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -06720396 581.67761230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe510 -06720397 581.67767334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -06720398 581.67767334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe520 -06720399 581.67767334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -06720400 581.67767334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe530 -06720401 581.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -06720402 581.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe540 -06720403 581.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -06720404 581.67773438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe550 -06720405 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -06720406 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe560 -06720407 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -06720408 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe570 -06720409 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -06720410 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe580 -06720411 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -06720412 581.67779541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe590 -06720413 581.67785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -06720414 581.67785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5a0 -06720415 581.67785645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -06720416 581.67791748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b0 -06720417 581.67791748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -06720418 581.67791748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c0 -06720419 581.67797852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -06720420 581.67797852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d0 -06720421 581.67797852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -06720422 581.67797852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e0 -06720423 581.67803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -06720424 581.67803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -06720425 581.67803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -06720426 581.67803955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -06720427 581.67810059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -06720428 581.67810059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -06722857 581.71228027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -06722858 581.71228027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13200 -06722859 581.71234131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -06722860 581.71234131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13210 -06722861 581.71234131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -06722862 581.71240234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13220 -06722863 581.71240234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -06722864 581.71240234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13230 -06722865 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -06722866 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13240 -06722867 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -06722868 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13250 -06722869 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -06722870 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13260 -06722871 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -06722872 581.71246338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13270 -06722873 581.71252441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -06722874 581.71252441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13280 -06722875 581.71252441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -06722876 581.71252441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13290 -06722877 581.71258545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -06722878 581.71258545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132a0 -06722879 581.71258545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -06722880 581.71258545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132b0 -06722881 581.71264648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -06722882 581.71264648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132c0 -06722883 581.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -06722884 581.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132d0 -06722885 581.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -06722886 581.71270752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132e0 -06722887 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -06722888 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x132f0 -06722889 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -06722890 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13300 -06722891 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -06722892 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13310 -06722893 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -06722894 581.71276855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13320 -06722895 581.71282959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -06722896 581.71282959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13330 -06722897 581.71282959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -06722898 581.71282959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13340 -06722899 581.71289063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -06722900 581.71289063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13350 -06739146 581.93835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f00 -06739147 581.93835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -06739148 581.93835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f10 -06739149 581.93835449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -06739150 581.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f20 -06739151 581.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -06739152 581.93841553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f30 -06739153 581.93847656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -06739154 581.93847656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f40 -06739155 581.93847656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -06739156 581.93847656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f50 -06739157 581.93853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -06739158 581.93853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f60 -06739159 581.93853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -06739160 581.93853760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f70 -06739161 581.93859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -06739162 581.93859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f80 -06739163 581.93859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -06739164 581.93859863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f90 -06739165 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -06739166 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fa0 -06739167 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -06739168 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fb0 -06739169 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -06739170 581.93865967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fc0 -06739171 581.93872070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -06739172 581.93872070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fd0 -06739173 581.93872070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -06739174 581.93872070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32fe0 -06739175 581.93878174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -06739176 581.93878174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x32ff0 -06739177 581.93878174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -06739178 581.93878174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33000 -06739179 581.93884277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -06739180 581.93884277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33010 -06739181 581.93884277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -06739182 581.93884277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33020 -06739183 581.93890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -06739184 581.93890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33030 -06739185 581.93890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -06739186 581.93890381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33040 -06739187 581.93896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -06739188 581.93896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33050 -06739189 581.93896484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x33060 -06741607 581.97302246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -06741608 581.97302246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -06741609 581.97302246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -06741610 581.97302246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -06741611 581.97308350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -06741612 581.97308350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -06741613 581.97308350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -06741614 581.97308350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -06741615 581.97314453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -06741616 581.97314453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -06741617 581.97314453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -06741618 581.97314453 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -06741619 581.97320557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -06741620 581.97320557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -06741621 581.97320557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -06741622 581.97320557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -06741623 581.97326660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -06741624 581.97326660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -06741625 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -06741626 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -06741627 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -06741628 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -06741629 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -06741630 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -06741631 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -06741632 581.97332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -06741633 581.97338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -06741634 581.97338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -06741635 581.97338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -06741636 581.97338867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -06741637 581.97344971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -06741638 581.97344971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -06741639 581.97344971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -06741640 581.97344971 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cf0 -06741641 581.97351074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -06741642 581.97351074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d00 -06741643 581.97351074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -06741644 581.97357178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d10 -06741645 581.97357178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -06741646 581.97357178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d20 -06741647 581.97363281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -06741648 581.97363281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d30 -06741649 581.97363281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -06741650 581.97363281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d40 -06744243 582.01019287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -06744244 582.01019287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce50 -06744245 582.01025391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -06744246 582.01025391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce60 -06744247 582.01025391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -06744248 582.01025391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce70 -06744249 582.01031494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -06744250 582.01031494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce80 -06744251 582.01031494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -06744252 582.01031494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce90 -06744253 582.01037598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -06744254 582.01037598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cea0 -06744255 582.01037598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -06744256 582.01037598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ceb0 -06744257 582.01043701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -06744258 582.01043701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cec0 -06744259 582.01043701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -06744260 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ced0 -06744261 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -06744262 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cee0 -06744263 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -06744264 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cef0 -06744265 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -06744266 582.01049805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf00 -06744267 582.01055908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -06744268 582.01055908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf10 -06744269 582.01055908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -06744270 582.01055908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf20 -06744271 582.01062012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -06744272 582.01062012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf30 -06744273 582.01062012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -06744274 582.01062012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf40 -06744275 582.01068115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -06744276 582.01068115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf50 -06744277 582.01068115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -06744278 582.01068115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf60 -06744279 582.01074219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -06744280 582.01074219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf70 -06744281 582.01074219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -06744282 582.01080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf80 -06744283 582.01080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -06744284 582.01080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf90 -06744285 582.01080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -06744286 582.01080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cfa0 -06746367 582.04016113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -06746368 582.04016113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410b0 -06746369 582.04022217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -06746370 582.04022217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410c0 -06746371 582.04028320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -06746372 582.04028320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410d0 -06746373 582.04028320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -06746374 582.04028320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410e0 -06746375 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -06746376 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x410f0 -06746377 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -06746378 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41100 -06746379 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -06746380 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41110 -06746381 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -06746382 582.04034424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41120 -06746383 582.04040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -06746384 582.04040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41130 -06746385 582.04040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -06746386 582.04040527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41140 -06746387 582.04046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -06746388 582.04046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41150 -06746389 582.04046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -06746390 582.04046631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41160 -06746391 582.04052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -06746392 582.04052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41170 -06746393 582.04052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -06746394 582.04052734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41180 -06746395 582.04058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -06746396 582.04058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41190 -06746397 582.04058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -06746398 582.04058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411a0 -06746399 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -06746400 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411b0 -06746401 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -06746402 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411c0 -06746403 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -06746404 582.04064941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411d0 -06746405 582.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -06746406 582.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411e0 -06746407 582.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -06746408 582.04071045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x411f0 -06746409 582.04077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -06746410 582.04077148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x41200 -06748703 582.07305908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -06748704 582.07305908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b0 -06748705 582.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -06748706 582.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c0 -06748707 582.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -06748708 582.07312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d0 -06748709 582.07318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -06748710 582.07318115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e0 -06748711 582.07324219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -06748712 582.07324219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f0 -06748713 582.07324219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -06748714 582.07324219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a00 -06748715 582.07330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -06748716 582.07330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a10 -06748717 582.07330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -06748718 582.07330322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a20 -06748719 582.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -06748720 582.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a30 -06748721 582.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -06748722 582.07336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a40 -06748723 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -06748724 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a50 -06748725 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -06748726 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a60 -06748727 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -06748728 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a70 -06748729 582.07342529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -06748730 582.07348633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a80 -06748731 582.07348633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -06748732 582.07348633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a90 -06748733 582.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -06748734 582.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa0 -06748735 582.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -06748736 582.07354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab0 -06748737 582.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -06748738 582.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac0 -06748739 582.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -06748740 582.07360840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad0 -06748741 582.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -06748742 582.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae0 -06748743 582.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -06748744 582.07366943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af0 -06748745 582.07373047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -06748746 582.07373047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b00 -06751121 582.10723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -06751122 582.10723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a540 -06751123 582.10729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -06751124 582.10729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a550 -06751125 582.10729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -06751126 582.10729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a560 -06751127 582.10736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -06751128 582.10736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a570 -06751129 582.10736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -06751130 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a580 -06751131 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -06751132 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a590 -06751133 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -06751134 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5a0 -06751135 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -06751136 582.10742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5b0 -06751137 582.10748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -06751138 582.10748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5c0 -06751139 582.10748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -06751140 582.10748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5d0 -06751141 582.10754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -06751142 582.10754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5e0 -06751143 582.10754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -06751144 582.10754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a5f0 -06751145 582.10760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -06751146 582.10760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a600 -06751147 582.10760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -06751148 582.10760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a610 -06751149 582.10766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -06751150 582.10766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a620 -06751151 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -06751152 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a630 -06751153 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -06751154 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a640 -06751155 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -06751156 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a650 -06751157 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -06751158 582.10772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a660 -06751159 582.10778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -06751160 582.10778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -06751161 582.10778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -06751162 582.10778809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -06751163 582.10784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -06751164 582.10784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -06753373 582.13909912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -06753374 582.13909912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eba0 -06753375 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -06753376 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebb0 -06753377 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -06753378 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebc0 -06753379 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -06753380 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -06753381 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -06753382 582.13916016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -06753383 582.13922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -06753384 582.13922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -06753385 582.13922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -06753386 582.13922119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -06753387 582.13928223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -06753388 582.13928223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -06753389 582.13934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -06753390 582.13934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -06753391 582.13934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -06753392 582.13934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -06753393 582.13940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -06753394 582.13940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -06753395 582.13940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -06753396 582.13940430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -06753397 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -06753398 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -06753399 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -06753400 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -06753401 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -06753402 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -06753403 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -06753404 582.13946533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -06753405 582.13952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -06753406 582.13952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -06753407 582.13952637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -06753408 582.13958740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -06753409 582.13958740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -06753410 582.13958740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -06753411 582.13964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -06753412 582.13964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -06753413 582.13964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -06753414 582.13964844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -06753415 582.13970947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -06753416 582.13970947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -06755479 582.57379150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06755480 582.57385254 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06755481 582.57385254 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06755482 582.57385254 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06755483 582.57397461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06755484 582.57397461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06755485 582.57409668 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06755486 582.57415771 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06755487 582.66381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06755488 582.66381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06755489 582.66381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06755490 582.66381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06755491 582.66387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06755492 582.66387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06755493 582.66387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06755494 582.66387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06755495 582.66394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06755496 582.66394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06755497 582.66394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06755498 582.66394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06755499 582.66400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06755500 582.66400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06755501 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06755502 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06755503 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06755504 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06755505 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06755506 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06755507 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06755508 582.66406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06755509 582.66412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06755510 582.66412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06755511 582.66412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06755512 582.66412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06755513 582.66418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06755514 582.66418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06755515 582.66418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06755516 582.66418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06755517 582.66424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06755518 582.66424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06755519 582.66424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06755520 582.66424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06755521 582.66430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06755522 582.66430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06755523 582.66430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06755524 582.66430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06755525 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06755526 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06755527 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06755528 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06755529 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06755530 582.66436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06755531 582.66442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06755532 582.66442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06755533 582.66442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06755534 582.66442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06755535 582.66448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06755536 582.66448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06755537 582.66448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06755538 582.66448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06755539 582.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06755540 582.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06755541 582.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06755542 582.66455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06755543 582.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06755544 582.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06755545 582.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06755546 582.66461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06755547 582.66467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06755548 582.66467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06755549 582.66467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06755550 582.66467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06755551 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06755552 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06755553 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06755554 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06755555 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06755556 582.66473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06755557 582.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06755558 582.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06755559 582.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06755560 582.66479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06755561 582.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06755562 582.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06755563 582.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06755564 582.66485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06755565 582.66491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06755566 582.66491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06755567 582.66491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06755568 582.66491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06755569 582.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06755570 582.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06755571 582.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06755572 582.66497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06755573 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06755574 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06755575 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06755576 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06755577 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06755578 582.66503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06755579 582.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06755580 582.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06755581 582.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06755582 582.66510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06755583 582.66516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06755584 582.66516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06755585 582.66516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06755586 582.66516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06755587 582.66522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06755588 582.66522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06755589 582.66522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06755590 582.66528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06755591 582.66528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06755592 582.66528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06755593 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06755594 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06755595 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06755596 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06755597 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06755598 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06755599 582.66534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06755600 582.66540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06755601 582.66540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06755602 582.66540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06755603 582.66546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06755604 582.66546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06755605 582.66546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06755606 582.66546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06755607 582.66552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06755608 582.66552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06755609 582.66552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06755610 582.66552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06755611 582.66558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06755612 582.66558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06755613 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06755614 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06755615 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06755616 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06755617 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06755618 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06755619 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06755620 582.66564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06755621 582.66571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06755622 582.66571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06755623 582.66571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06755624 582.66571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06755625 582.66577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06755626 582.66577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06755627 582.66577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06755628 582.66577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06755629 582.66583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06755630 582.66583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06755631 582.66583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06755632 582.66583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06755633 582.66589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06755634 582.66589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06755635 582.66589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06755636 582.66589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06755637 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06755638 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06755639 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06755640 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06755641 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06755642 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06755643 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06755644 582.66595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06755645 582.66601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06755646 582.66601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06755647 582.66601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06755648 582.66607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06755649 582.66607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06755650 582.66607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06755651 582.66613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06755652 582.66613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06755653 582.66613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06755654 582.66613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06755655 582.66619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06755656 582.66619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06755657 582.66619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06755658 582.66619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06755659 582.66625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06755660 582.66625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06755661 582.66625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06755662 582.66625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06755663 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06755664 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06755665 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06755666 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06755667 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06755668 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06755669 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06755670 582.66632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06755671 582.66638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06755672 582.66638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06755673 582.66644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06755674 582.66644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06755675 582.66650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06755676 582.66650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06755677 582.66650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06755678 582.66650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06755679 582.66656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06755680 582.66656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06755681 582.66656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06755682 582.66656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06755683 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06755684 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06755685 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06755686 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06755687 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06755688 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06755689 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06755690 582.66662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06755691 582.66668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06755692 582.66668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06755693 582.66674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06755694 582.66674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06755695 582.66674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06755696 582.66674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06755697 582.66680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06755698 582.66680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06755699 582.66680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06755700 582.66680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06755701 582.66687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06755702 582.66687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06755703 582.66687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06755704 582.66687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06755705 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06755706 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06755707 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06755708 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06755709 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06755710 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06755711 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06755712 582.66693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06755713 582.66699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06755714 582.66699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06755715 582.66699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06755716 582.66699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06755717 582.66705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06755718 582.66705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06755719 582.66705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06755720 582.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06755721 582.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06755722 582.66711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06755723 582.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06755724 582.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06755725 582.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06755726 582.66717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06755727 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06755728 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06755729 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06755730 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06755731 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06755732 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06755733 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06755734 582.66723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06755735 582.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06755736 582.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06755737 582.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06755738 582.66729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06755739 582.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06755740 582.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06755741 582.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06755742 582.66735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06755743 582.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06755744 582.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06755745 582.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06755746 582.66741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06755747 582.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06755748 582.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06755749 582.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06755750 582.66748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06755751 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06755752 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06755753 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06755754 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06755755 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06755756 582.66754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06755757 582.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06755758 582.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06755759 582.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06755760 582.66760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06755761 582.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06755762 582.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06755763 582.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06755764 582.66766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06755765 582.66772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06755766 582.66772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06755767 582.66772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06755768 582.66772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06755769 582.66778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06755770 582.66778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06755771 582.66778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06755772 582.66778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06755773 582.66784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06755774 582.66784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06755775 582.66784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06755776 582.66784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06755777 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06755778 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06755779 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06755780 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06755781 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06755782 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06755783 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06755784 582.66790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06755785 582.66796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06755786 582.66796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06755787 582.66796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06755788 582.66802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06755789 582.66802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06755790 582.66802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06755791 582.66809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06755792 582.66809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06755793 582.66809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06755794 582.66809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06755795 582.66815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06755796 582.66815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06755797 582.66815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06755798 582.66815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06755799 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06755800 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06755801 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06755802 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06755803 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06755804 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06755805 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06755806 582.66821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06755807 582.66827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06755808 582.66827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06755809 582.66827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06755810 582.66827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06755811 582.66833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06755812 582.66833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06755813 582.66833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06755814 582.66833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06755815 582.66839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06755816 582.66839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06755817 582.66839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06755818 582.66839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06755819 582.66845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06755820 582.66845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06755821 582.66845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06755822 582.66845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06755823 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06755824 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06755825 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06755826 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06755827 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06755828 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06755829 582.66851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06755830 582.66857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06755831 582.66857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06755832 582.66857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06755833 582.66864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06755834 582.66864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06755835 582.66864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06755836 582.66864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06755837 582.66870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06755838 582.66870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06755839 582.66870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06755840 582.66870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06755841 582.66876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06755842 582.66876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06755843 582.66876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06755844 582.66876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06755845 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06755846 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06755847 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06755848 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06755849 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06755850 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06755851 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06755852 582.66882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06755853 582.66888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06755854 582.66888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06755855 582.66888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06755856 582.66888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06755857 582.66894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06755858 582.66894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06755859 582.66894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06755860 582.66894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06755861 582.66900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06755862 582.66900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06755863 582.66900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06755864 582.66900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06755865 582.66906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06755866 582.66906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06755867 582.66906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06755868 582.66906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06755869 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06755870 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06755871 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06755872 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06755873 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06755874 582.66912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06755875 582.66918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06755876 582.66918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06755877 582.66918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06755878 582.66918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06755879 582.66925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06755880 582.66925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06755881 582.66925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06755882 582.66925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06755883 582.66931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06755884 582.66931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06755885 582.66931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06755886 582.66931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06755887 582.66937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06755888 582.66937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06755889 582.66937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06755890 582.66937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06755891 582.66943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06755892 582.66943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06755893 582.66943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06755894 582.66943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06755895 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06755896 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06755897 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06755898 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06755899 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06755900 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06755901 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06755902 582.66949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06755903 582.66955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06755904 582.66955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06755905 582.66955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06755906 582.66955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06755907 582.66961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06755908 582.66961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06755909 582.66961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06755910 582.66967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06755911 582.66967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06755912 582.66967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06755913 582.66973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06755914 582.66973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06755915 582.66973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06755916 582.66973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06755917 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06755918 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06755919 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06755920 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06755921 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06755922 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06755923 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06755924 582.66979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06755925 582.66986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06755926 582.66986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06755927 582.66986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06755928 582.66986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06755929 582.66992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06755930 582.66992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06755931 582.66992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06755932 582.66992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06755933 582.66998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06755934 582.66998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06755935 582.66998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06755936 582.66998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06755937 582.67004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06755938 582.67004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06755939 582.67004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06755940 582.67004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06755941 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06755942 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06755943 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06755944 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06755945 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06755946 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06755947 582.67010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06755948 582.67016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06755949 582.67016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06755950 582.67016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06755951 582.67022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06755952 582.67022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06755953 582.67022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06755954 582.67022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06755955 582.67028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06755956 582.67028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06755957 582.67028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06755958 582.67028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06755959 582.67034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06755960 582.67034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06755961 582.67034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06755962 582.67034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06755963 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06755964 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06755965 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06755966 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06755967 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06755968 582.67041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06755969 582.67047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06755970 582.67047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06755971 582.67053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06755972 582.67053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06755973 582.67053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06755974 582.67053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06755975 582.67059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06755976 582.67059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06755977 582.67059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06755978 582.67059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06755979 582.67065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06755980 582.67065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06755981 582.67065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06755982 582.67065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06755983 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06755984 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06755985 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06755986 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06755987 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06755988 582.67071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06755989 582.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06755990 582.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06755991 582.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06755992 582.67077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06755993 582.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06755994 582.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06755995 582.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06755996 582.67083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06755997 582.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06755998 582.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06755999 582.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06756000 582.67089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06756001 582.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06756002 582.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06756003 582.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06756004 582.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06756005 582.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06756006 582.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06756007 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06756008 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06756009 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06756010 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06756011 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06756012 582.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06756013 582.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06756014 582.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06756703 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06756704 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06756705 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06756706 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06756707 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06756708 582.68060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06756709 582.68066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06756710 582.68066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06756711 582.68066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06756712 582.68072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06756713 582.68072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06756714 582.68072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06756715 582.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06756716 582.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06756717 582.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06756718 582.68078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06756719 582.68084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06756720 582.68084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06756721 582.68084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06756722 582.68084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06756723 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06756724 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06756725 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06756726 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06756727 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06756728 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06756729 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06756730 582.68090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06756731 582.68096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06756732 582.68096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06756733 582.68096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06756734 582.68096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06756735 582.68103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06756736 582.68103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06756737 582.68103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06756738 582.68103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06756739 582.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06756740 582.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06756741 582.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06756742 582.68109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06756743 582.68115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06756744 582.68115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06756745 582.68115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06756746 582.68115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06759110 582.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06759111 582.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -06759112 582.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06759113 582.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -06759114 582.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06759115 582.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -06759116 582.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06759117 582.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -06759118 582.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06759119 582.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -06759120 582.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06759121 582.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -06759122 582.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06759123 582.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -06759124 582.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06759125 582.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -06759126 582.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06759127 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -06759128 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06759129 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -06759130 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06759131 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -06759132 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06759133 582.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -06759134 582.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06759135 582.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -06759136 582.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06759137 582.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -06759138 582.71405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06759139 582.71405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -06759140 582.71405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06759141 582.71405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -06759142 582.71411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06759143 582.71411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -06759144 582.71411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06759145 582.71417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -06759146 582.71417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06759147 582.71417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -06759148 582.71423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06759149 582.71423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -06759150 582.71429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06759151 582.71429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -06759152 582.71429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06759153 582.71429443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -06775070 582.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -06775071 582.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27428 -06775072 582.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -06775073 582.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27438 -06775074 582.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -06775075 582.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27448 -06775076 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -06775077 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27458 -06775078 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -06775079 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27468 -06775080 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -06775081 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27478 -06775082 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -06775083 582.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27488 -06775084 582.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -06775085 582.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -06775086 582.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -06775087 582.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -06775088 582.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -06775089 582.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -06775090 582.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -06775091 582.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -06775092 582.93304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -06775093 582.93304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -06775094 582.93304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -06775095 582.93304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -06775096 582.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -06775097 582.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -06775098 582.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -06775099 582.93310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -06775100 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -06775101 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -06775102 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -06775103 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -06775104 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -06775105 582.93316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -06775106 582.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -06775107 582.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -06775108 582.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -06775109 582.93322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -06775110 582.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -06775111 582.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -06775112 582.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -06775113 582.93328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -06777538 582.96673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c148 -06777539 582.96673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c148 -06777540 582.96673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c158 -06777541 582.96673584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c158 -06777542 582.96679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c168 -06777543 582.96679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c168 -06777544 582.96679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c178 -06777545 582.96679688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c178 -06777546 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c188 -06777547 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c188 -06777548 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c198 -06777549 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c198 -06777550 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a8 -06777551 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1a8 -06777552 582.96685791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b8 -06777553 582.96691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1b8 -06777554 582.96691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c8 -06777555 582.96691895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1c8 -06777556 582.96697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d8 -06777557 582.96697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1d8 -06777558 582.96697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e8 -06777559 582.96697998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1e8 -06777560 582.96704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f8 -06777561 582.96704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c1f8 -06777562 582.96704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c208 -06777563 582.96704102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c208 -06777564 582.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c218 -06777565 582.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c218 -06777566 582.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c228 -06777567 582.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c228 -06777568 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c238 -06777569 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c238 -06777570 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c248 -06777571 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c248 -06777572 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -06777573 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -06777574 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -06777575 582.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -06777576 582.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -06777577 582.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -06777578 582.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -06777579 582.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -06777580 582.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -06777581 582.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -06779944 582.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c78 -06779945 582.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c78 -06779946 582.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -06779947 582.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c88 -06779948 582.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -06779949 582.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c98 -06779950 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -06779951 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ca8 -06779952 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -06779953 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cb8 -06779954 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -06779955 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cc8 -06779956 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -06779957 582.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cd8 -06779958 583.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -06779959 583.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ce8 -06779960 583.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -06779961 583.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30cf8 -06779962 583.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -06779963 583.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d08 -06779964 583.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -06779965 583.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d18 -06779966 583.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -06779967 583.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d28 -06779968 583.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -06779969 583.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d38 -06779970 583.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -06779971 583.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d48 -06779972 583.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -06779973 583.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d58 -06779974 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -06779975 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d68 -06779976 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -06779977 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d78 -06779978 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -06779979 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d88 -06779980 583.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -06779981 583.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d98 -06779982 583.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -06779983 583.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30da8 -06779984 583.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -06779985 583.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30db8 -06779986 583.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -06779987 583.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30dc8 -06782310 583.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -06782311 583.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35668 -06782312 583.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -06782313 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35678 -06782314 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -06782315 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35688 -06782316 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -06782317 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35698 -06782318 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -06782319 583.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356a8 -06782320 583.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -06782321 583.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356b8 -06782322 583.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -06782323 583.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356c8 -06782324 583.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -06782325 583.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356d8 -06782326 583.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -06782327 583.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356e8 -06782328 583.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -06782329 583.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x356f8 -06782330 583.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -06782331 583.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35708 -06782332 583.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -06782333 583.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35718 -06782334 583.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35728 -06782335 583.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35728 -06782336 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35738 -06782337 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35738 -06782338 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35748 -06782339 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35748 -06782340 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35758 -06782341 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35758 -06782342 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35768 -06782343 583.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35768 -06782344 583.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35778 -06782345 583.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35778 -06782346 583.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35788 -06782347 583.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35788 -06782348 583.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35798 -06782349 583.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35798 -06782350 583.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a8 -06782351 583.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x357a8 -06782352 583.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b8 -06782353 583.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x357b8 -06784534 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be8 -06784535 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39be8 -06784536 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf8 -06784537 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39bf8 -06784538 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c08 -06784539 583.06317139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c08 -06784540 583.06323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c18 -06784541 583.06323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c18 -06784542 583.06323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c28 -06784543 583.06323242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c28 -06784544 583.06329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c38 -06784545 583.06329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c38 -06784546 583.06329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c48 -06784547 583.06329346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c48 -06784548 583.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c58 -06784549 583.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c58 -06784550 583.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c68 -06784551 583.06335449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c68 -06784552 583.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c78 -06784553 583.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c78 -06784554 583.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c88 -06784555 583.06341553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c88 -06784556 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c98 -06784557 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c98 -06784558 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca8 -06784559 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ca8 -06784560 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -06784561 583.06347656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cb8 -06784562 583.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -06784563 583.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cc8 -06784564 583.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -06784565 583.06353760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cd8 -06784566 583.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -06784567 583.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ce8 -06784568 583.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -06784569 583.06359863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39cf8 -06784570 583.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -06784571 583.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d08 -06784572 583.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -06784573 583.06365967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d18 -06784574 583.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d28 -06784575 583.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d28 -06784576 583.06372070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d38 -06784577 583.06378174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d38 -06784590 583.06396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da8 -06784591 583.06396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39da8 -06784592 583.06396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db8 -06784593 583.06396484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39db8 -06784594 583.06402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc8 -06784595 583.06402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dc8 -06784596 583.06402588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd8 -06784597 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39dd8 -06784598 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de8 -06784599 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39de8 -06784600 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df8 -06784601 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39df8 -06784602 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e08 -06784603 583.06408691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e08 -06784604 583.06414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e18 -06784605 583.06414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e18 -06784606 583.06414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e28 -06784607 583.06414795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e28 -06784608 583.06420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e38 -06784609 583.06420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e38 -06784610 583.06420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e48 -06784611 583.06420898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e48 -06784612 583.06427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e58 -06784613 583.06427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e58 -06784614 583.06427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e68 -06784615 583.06427002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e68 -06784616 583.06433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e78 -06784617 583.06433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e78 -06784618 583.06433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e88 -06784619 583.06433105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e88 -06784620 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e98 -06784621 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e98 -06784622 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea8 -06784623 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ea8 -06784624 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb8 -06784625 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39eb8 -06784626 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec8 -06784627 583.06439209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ec8 -06784628 583.06445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed8 -06784629 583.06445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ed8 -06784630 583.06445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee8 -06784631 583.06445313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ee8 -06784632 583.06451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef8 -06784633 583.06451416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39ef8 -06784716 583.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -06784717 583.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a198 -06784718 583.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -06784719 583.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1a8 -06784720 583.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -06784721 583.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1b8 -06784722 583.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -06784723 583.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1c8 -06784724 583.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -06784725 583.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1d8 -06784726 583.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -06784727 583.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1e8 -06784728 583.06591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -06784729 583.06591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a1f8 -06784730 583.06591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -06784731 583.06591797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a208 -06784732 583.06597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -06784733 583.06597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a218 -06784734 583.06597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -06784735 583.06597900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a228 -06784736 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -06784737 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a238 -06784738 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -06784739 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a248 -06784740 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -06784741 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a258 -06784742 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -06784743 583.06604004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -06784744 583.06610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -06784745 583.06610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -06784746 583.06610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -06784747 583.06616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -06784748 583.06616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -06784749 583.06616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -06784750 583.06622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -06784751 583.06622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -06784752 583.06622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -06784753 583.06622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -06784754 583.06628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -06784755 583.06628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -06784756 583.06628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -06784757 583.06628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -06784758 583.06634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -06784759 583.06634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -06784818 583.06719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c8 -06784819 583.06719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c8 -06784820 583.06719971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d8 -06784821 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d8 -06784822 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e8 -06784823 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e8 -06784824 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f8 -06784825 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4f8 -06784826 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a508 -06784827 583.06726074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a508 -06784828 583.06732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a518 -06784829 583.06732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a518 -06784830 583.06732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a528 -06784831 583.06732178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a528 -06784832 583.06738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a538 -06784833 583.06738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a538 -06784834 583.06738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a548 -06784835 583.06738281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a548 -06784836 583.06744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a558 -06784837 583.06744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a558 -06784838 583.06744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a568 -06784839 583.06744385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a568 -06784840 583.06750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a578 -06784841 583.06750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a578 -06784842 583.06750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a588 -06784843 583.06750488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a588 -06784844 583.06756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a598 -06784845 583.06756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a598 -06784846 583.06756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a8 -06784847 583.06756592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5a8 -06784848 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b8 -06784849 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5b8 -06784850 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c8 -06784851 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5c8 -06784852 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d8 -06784853 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5d8 -06784854 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e8 -06784855 583.06762695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5e8 -06784856 583.06768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f8 -06784857 583.06768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a5f8 -06784858 583.06768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a608 -06784859 583.06768799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a608 -06784860 583.06774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a618 -06784861 583.06774902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a618 -06785250 583.07305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b248 -06785251 583.07305908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b248 -06785252 583.07312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b258 -06785253 583.07312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b258 -06785254 583.07312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b268 -06785255 583.07312012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b268 -06785256 583.07318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b278 -06785257 583.07318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b278 -06785258 583.07318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b288 -06785259 583.07318115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b288 -06785260 583.07324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b298 -06785261 583.07324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b298 -06785262 583.07324219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -06785263 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -06785264 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -06785265 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -06785266 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -06785267 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -06785268 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -06785269 583.07330322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -06785270 583.07336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -06785271 583.07336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -06785272 583.07336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -06785273 583.07336426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -06785274 583.07342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -06785275 583.07342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -06785276 583.07342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -06785277 583.07342529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -06785278 583.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -06785279 583.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -06785280 583.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -06785281 583.07348633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -06785282 583.07354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -06785283 583.07354736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -06785284 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -06785285 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -06785286 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -06785287 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -06785288 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -06785289 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -06785290 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -06785291 583.07360840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -06785292 583.07366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -06785293 583.07366943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -06785408 583.07525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b738 -06785409 583.07525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b738 -06785410 583.07525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b748 -06785411 583.07525635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b748 -06785412 583.07531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b758 -06785413 583.07531738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b758 -06785414 583.07537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b768 -06785415 583.07537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b768 -06785416 583.07537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b778 -06785417 583.07537842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b778 -06785418 583.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b788 -06785419 583.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b788 -06785420 583.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b798 -06785421 583.07543945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b798 -06785422 583.07550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a8 -06785423 583.07550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7a8 -06785424 583.07550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b8 -06785425 583.07550049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7b8 -06785426 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c8 -06785427 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7c8 -06785428 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d8 -06785429 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7d8 -06785430 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e8 -06785431 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7e8 -06785432 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f8 -06785433 583.07556152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b7f8 -06785434 583.07562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b808 -06785435 583.07562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b808 -06785436 583.07562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b818 -06785437 583.07562256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b818 -06785438 583.07568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b828 -06785439 583.07568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b828 -06785440 583.07568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b838 -06785441 583.07568359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b838 -06785442 583.07574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b848 -06785443 583.07574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b848 -06785444 583.07574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b858 -06785445 583.07574463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b858 -06785446 583.07580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b868 -06785447 583.07580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b868 -06785448 583.07580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b878 -06785449 583.07580566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b878 -06785450 583.07586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b888 -06785451 583.07586670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b888 -06785874 583.08166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c8 -06785875 583.08166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5c8 -06785876 583.08166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d8 -06785877 583.08166504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5d8 -06785878 583.08172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e8 -06785879 583.08172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5e8 -06785880 583.08172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f8 -06785881 583.08172607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c5f8 -06785882 583.08178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c608 -06785883 583.08178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c608 -06785884 583.08178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c618 -06785885 583.08178711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c618 -06785886 583.08184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c628 -06785887 583.08184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c628 -06785888 583.08184814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c638 -06785889 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c638 -06785890 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c648 -06785891 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c648 -06785892 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c658 -06785893 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c658 -06785894 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c668 -06785895 583.08190918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c668 -06785896 583.08197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c678 -06785897 583.08197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c678 -06785898 583.08197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c688 -06785899 583.08197021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c688 -06785900 583.08203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c698 -06785901 583.08203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c698 -06785902 583.08203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a8 -06785903 583.08203125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6a8 -06785904 583.08209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b8 -06785905 583.08209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6b8 -06785906 583.08209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c8 -06785907 583.08209229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6c8 -06785908 583.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d8 -06785909 583.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6d8 -06785910 583.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e8 -06785911 583.08215332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6e8 -06785912 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f8 -06785913 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c6f8 -06785914 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c708 -06785915 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c708 -06785916 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c718 -06785917 583.08221436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c718 -06788346 583.11621094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -06788347 583.11627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -06788348 583.11627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -06788349 583.11627197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -06788350 583.11633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -06788351 583.11633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -06788352 583.11633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -06788353 583.11633301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -06788354 583.11639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -06788355 583.11639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -06788356 583.11639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -06788357 583.11639404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -06788358 583.11645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -06788359 583.11645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -06788360 583.11645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -06788361 583.11645508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -06788362 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41388 -06788363 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41388 -06788364 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41398 -06788365 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41398 -06788366 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a8 -06788367 583.11651611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a8 -06788368 583.11657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b8 -06788369 583.11657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413b8 -06788370 583.11657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c8 -06788371 583.11657715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413c8 -06788372 583.11663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d8 -06788373 583.11663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413d8 -06788374 583.11663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e8 -06788375 583.11663818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413e8 -06788376 583.11669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f8 -06788377 583.11669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x413f8 -06788378 583.11669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41408 -06788379 583.11669922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41408 -06788380 583.11676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41418 -06788381 583.11676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41418 -06788382 583.11676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41428 -06788383 583.11676025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41428 -06788384 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41438 -06788385 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41438 -06788386 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41448 -06788387 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41448 -06788388 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41458 -06788389 583.11682129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41458 -06790624 583.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a38 -06790625 583.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a38 -06790626 583.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a48 -06790627 583.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a48 -06790628 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a58 -06790629 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a58 -06790630 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a68 -06790631 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a68 -06790632 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a78 -06790633 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a78 -06790634 583.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a88 -06790635 583.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a88 -06790636 583.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a98 -06790637 583.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a98 -06790638 583.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa8 -06790639 583.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa8 -06790640 583.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab8 -06790641 583.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab8 -06790642 583.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac8 -06790643 583.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac8 -06790644 583.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad8 -06790645 583.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad8 -06790646 583.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae8 -06790647 583.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ae8 -06790648 583.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -06790649 583.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45af8 -06790650 583.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -06790651 583.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b08 -06790652 583.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -06790653 583.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b18 -06790654 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -06790655 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b28 -06790656 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -06790657 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -06790658 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -06790659 583.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -06790660 583.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -06790661 583.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -06790662 583.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -06790663 583.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -06790664 583.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -06790665 583.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -06790666 583.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -06790667 583.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -06793124 583.18176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a858 -06793125 583.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a858 -06793126 583.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a868 -06793127 583.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a868 -06793128 583.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a878 -06793129 583.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a878 -06793130 583.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a888 -06793131 583.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a888 -06793132 583.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a898 -06793133 583.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a898 -06793134 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a8 -06793135 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8a8 -06793136 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b8 -06793137 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8b8 -06793138 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c8 -06793139 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8c8 -06793140 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d8 -06793141 583.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8d8 -06793142 583.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e8 -06793143 583.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8e8 -06793144 583.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f8 -06793145 583.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a8f8 -06793146 583.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a908 -06793147 583.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a908 -06793148 583.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a918 -06793149 583.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a918 -06793150 583.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a928 -06793151 583.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a928 -06793152 583.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a938 -06793153 583.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a938 -06793154 583.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a948 -06793155 583.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a948 -06793156 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a958 -06793157 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a958 -06793158 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a968 -06793159 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a968 -06793160 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a978 -06793161 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a978 -06793162 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a988 -06793163 583.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a988 -06793164 583.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a998 -06793165 583.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a998 -06793166 583.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a8 -06793167 583.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a9a8 -06795418 583.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f008 -06795419 583.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f008 -06795420 583.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f018 -06795421 583.21337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f018 -06795422 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f028 -06795423 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f028 -06795424 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f038 -06795425 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f038 -06795426 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f048 -06795427 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f048 -06795428 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f058 -06795429 583.21343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f058 -06795430 583.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f068 -06795431 583.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f068 -06795432 583.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f078 -06795433 583.21350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f078 -06795434 583.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f088 -06795435 583.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f088 -06795436 583.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f098 -06795437 583.21356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f098 -06795438 583.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a8 -06795439 583.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0a8 -06795440 583.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -06795441 583.21362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0b8 -06795442 583.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -06795443 583.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0c8 -06795444 583.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -06795445 583.21368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0d8 -06795446 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -06795447 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0e8 -06795448 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -06795449 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f0f8 -06795450 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -06795451 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f108 -06795452 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -06795453 583.21374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f118 -06795454 583.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f128 -06795455 583.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f128 -06795456 583.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f138 -06795457 583.21380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f138 -06795458 583.21386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f148 -06795459 583.21386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f148 -06795460 583.21386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f158 -06795461 583.21392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f158 -06797376 584.71728516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06797377 584.73602295 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797378 584.73602295 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797379 585.08111572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797380 585.08117676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797381 585.08117676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797382 585.08117676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06797383 585.08135986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797384 585.08135986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06797385 585.08142090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797386 585.08142090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06797387 586.73699951 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06797388 586.75842285 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797389 586.75842285 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797390 587.58837891 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797391 587.58837891 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797392 587.58837891 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06797393 587.58843994 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06797394 587.58862305 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797395 587.58862305 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06797396 587.58868408 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06797397 587.58868408 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06797398 588.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06797399 588.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06797400 588.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06797401 588.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06797402 588.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06797403 588.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06797404 588.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06797405 588.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06797406 588.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06797407 588.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06797408 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06797409 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06797410 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06797411 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06797412 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06797413 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06797414 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06797415 588.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06797416 588.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06797417 588.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06797418 588.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06797419 588.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06797420 588.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06797421 588.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06797422 588.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06797423 588.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06797424 588.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06797425 588.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06797426 588.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06797427 588.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06797428 588.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06797429 588.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06797430 588.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06797431 588.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06797432 588.24255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06797433 588.24255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06797434 588.24255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06797435 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06797436 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06797437 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06797438 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06797439 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06797440 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06797441 588.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06797442 588.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06797443 588.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06797444 588.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06797445 588.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06797446 588.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06797447 588.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06797448 588.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06797449 588.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06797450 588.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06797451 588.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06797452 588.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06797453 588.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06797454 588.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06797455 588.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06797456 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06797457 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06797458 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06797459 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06797460 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06797461 588.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06797462 588.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06797463 588.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06797464 588.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06797465 588.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06797466 588.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06797467 588.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06797468 588.24310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06797469 588.24310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06797470 588.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06797471 588.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06797472 588.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06797473 588.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06797474 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06797475 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06797476 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06797477 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06797478 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06797479 588.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06797480 588.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06797481 588.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06797482 588.24334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06797483 588.24334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06797484 588.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06797485 588.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06797486 588.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06797487 588.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06797488 588.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06797489 588.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06797490 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06797491 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06797492 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06797493 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06797494 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06797495 588.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06797496 588.24359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06797497 588.24359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06797498 588.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06797499 588.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06797500 588.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06797501 588.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06797502 588.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06797503 588.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06797504 588.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06797505 588.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06797506 588.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06797507 588.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06797508 588.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06797509 588.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06797510 588.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06797511 588.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06797512 588.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06797513 588.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06797514 588.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06797515 588.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06797516 588.24395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06797517 588.24395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06797518 588.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06797519 588.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06797520 588.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06797521 588.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06797522 588.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06797523 588.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06797524 588.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06797525 588.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06797526 588.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06797527 588.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06797528 588.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06797529 588.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06797530 588.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06797531 588.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06797532 588.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06797533 588.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06797534 588.24432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06797535 588.24432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06797536 588.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06797537 588.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06797538 588.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06797539 588.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06797540 588.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06797541 588.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06797542 588.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06797543 588.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06797544 588.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06797545 588.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06797546 588.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06797547 588.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06797548 588.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06797549 588.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06797550 588.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06797551 588.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06797552 588.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06797553 588.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06797554 588.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06797555 588.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06797556 588.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06797557 588.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06797558 588.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06797559 588.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06797560 588.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06797561 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06797562 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06797563 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06797564 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06797565 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06797566 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06797567 588.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06797568 588.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06797569 588.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06797570 588.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06797571 588.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06797572 588.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06797573 588.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06797574 588.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06797575 588.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06797576 588.24499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06797577 588.24499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06797578 588.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06797579 588.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06797580 588.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06797581 588.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06797582 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06797583 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06797584 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06797585 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06797586 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06797587 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06797588 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06797589 588.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06797590 588.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06797591 588.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06797592 588.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06797593 588.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06797594 588.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06797595 588.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06797596 588.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06797597 588.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06797598 588.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06797599 588.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06797600 588.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06797601 588.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06797602 588.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06797603 588.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06797604 588.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06797605 588.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06797606 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06797607 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06797608 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06797609 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06797610 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06797611 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06797612 588.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06797613 588.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06797614 588.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06797615 588.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06797616 588.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06797617 588.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06797618 588.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06797619 588.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06797620 588.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06797621 588.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06797622 588.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06797623 588.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06797624 588.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06797625 588.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06797626 588.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06797627 588.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06797628 588.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06797629 588.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06797630 588.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06797631 588.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06797632 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06797633 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06797634 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06797635 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06797636 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06797637 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06797638 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06797639 588.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06797640 588.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06797641 588.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06797642 588.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06797643 588.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06797644 588.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06797645 588.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06797646 588.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06797647 588.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06797648 588.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06797649 588.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06797650 588.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06797651 588.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06797652 588.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06797653 588.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06797654 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06797655 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06797656 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06797657 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06797658 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06797659 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06797660 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06797661 588.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06797662 588.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06797663 588.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06797664 588.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06797665 588.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06797666 588.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06797667 588.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06797668 588.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06797669 588.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06797670 588.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06797671 588.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06797672 588.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06797673 588.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06797674 588.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06797675 588.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06797676 588.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06797677 588.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06797678 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06797679 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06797680 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06797681 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06797682 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06797683 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06797684 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06797685 588.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06797686 588.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06797687 588.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06797688 588.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06797689 588.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06797690 588.24652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06797691 588.24652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06797692 588.24652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06797693 588.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06797694 588.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06797695 588.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06797696 588.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06797697 588.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06797698 588.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06797699 588.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06797700 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06797701 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06797702 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06797703 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06797704 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06797705 588.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06797706 588.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06797707 588.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06797708 588.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06797709 588.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06797710 588.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06797711 588.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06797712 588.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06797713 588.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06797714 588.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06797715 588.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06797716 588.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06797717 588.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06797718 588.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06797719 588.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06797720 588.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06797721 588.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06797722 588.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06797723 588.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06797724 588.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06797725 588.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06797726 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06797727 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06797728 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06797729 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06797730 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06797731 588.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06797732 588.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06797733 588.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06797734 588.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06797735 588.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06797736 588.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06797737 588.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06797738 588.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06797739 588.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06797740 588.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06797741 588.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06797742 588.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06797743 588.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06797744 588.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06797745 588.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06797746 588.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06797747 588.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06797748 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06797749 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06797750 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06797751 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06797752 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06797753 588.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06797754 588.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06797755 588.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06797756 588.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06797757 588.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06797758 588.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06797759 588.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06797760 588.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06797761 588.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06797762 588.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06797763 588.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06797764 588.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06797765 588.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06797766 588.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06797767 588.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06797768 588.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06797769 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06797770 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06797771 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06797772 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06797773 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06797774 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06797775 588.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06797776 588.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06797777 588.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06797778 588.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06797779 588.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06797780 588.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06797781 588.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06797782 588.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06797783 588.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06797784 588.24786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06797785 588.24786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06797786 588.24786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06797787 588.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06797788 588.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06797789 588.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06797790 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06797791 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06797792 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06797793 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06797794 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06797795 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06797796 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06797797 588.24798584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06797798 588.24804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06797799 588.24804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06797800 588.24804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06797801 588.24804688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06797802 588.24810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06797803 588.24810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06797804 588.24810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06797805 588.24810791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06797806 588.24816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06797807 588.24816895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06797808 588.24822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06797809 588.24822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06797810 588.24822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06797811 588.24822998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06797812 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06797813 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06797814 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06797815 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06797816 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06797817 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06797818 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06797819 588.24829102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06797820 588.24835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06797821 588.24835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06797822 588.24835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06797823 588.24835205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06797824 588.24841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06797825 588.24841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06797826 588.24841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06797827 588.24841309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06797828 588.24847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06797829 588.24847412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06797830 588.24853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06797831 588.24853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06797832 588.24853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06797833 588.24853516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06797834 588.24859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06797835 588.24859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06797836 588.24859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06797837 588.24859619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06797838 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06797839 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06797840 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06797841 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06797842 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06797843 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06797844 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06797845 588.24865723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06797846 588.24871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06797847 588.24871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06797848 588.24871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06797849 588.24871826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06797850 588.24877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06797851 588.24877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06797852 588.24877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06797853 588.24877930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06797854 588.24884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06797855 588.24884033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06797856 588.24890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06797857 588.24890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06797858 588.24890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06797859 588.24890137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06797860 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06797861 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06797862 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06797863 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06797864 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06797865 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06797866 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06797867 588.24896240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06797868 588.24902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06797869 588.24902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06797870 588.24902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06797871 588.24902344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06797872 588.24908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06797873 588.24908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06797874 588.24908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06797875 588.24908447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06797876 588.24914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06797877 588.24914551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06797878 588.24920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06797879 588.24920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06797880 588.24920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06797881 588.24920654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06797882 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06797883 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06797884 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06797885 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06797886 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06797887 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06797888 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06797889 588.24926758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06797890 588.24932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06797891 588.24932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06797892 588.24932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06797893 588.24932861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06797894 588.24938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06797895 588.24938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06797896 588.24938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06797897 588.24938965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06797898 588.24945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06797899 588.24945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06797900 588.24945068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06797901 588.24951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06797902 588.24951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06797903 588.24951172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06797904 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06797905 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06797906 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06797907 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06797908 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06797909 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06797910 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06797911 588.24957275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06797912 588.24963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06797913 588.24963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06797914 588.24963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06797915 588.24963379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06797916 588.24969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06797917 588.24969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06797918 588.24969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06797919 588.24969482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06797920 588.24975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06797921 588.24975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06797922 588.24975586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06797923 588.24981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06797924 588.24981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06797925 588.24981689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06797926 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06797927 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06797928 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06797929 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06797930 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06797931 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06797932 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06797933 588.24987793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06797934 588.24993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06797935 588.24993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06797936 588.24993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06797937 588.24993896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06797938 588.25000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06797939 588.25000000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06797940 588.25006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06797941 588.25006104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06797942 588.25012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06797943 588.25012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06797944 588.25012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06797945 588.25012207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06797946 588.25018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06797947 588.25018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06797948 588.25018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06797949 588.25018311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06797950 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06797951 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06797952 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06797953 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06797954 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06797955 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06797956 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06797957 588.25024414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06797958 588.25030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06797959 588.25030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06797960 588.25030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06797961 588.25030518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06797962 588.25036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06797963 588.25036621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06797964 588.25042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06797965 588.25042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06797966 588.25042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06797967 588.25042725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06797968 588.25048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06797969 588.25048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06797970 588.25048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06797971 588.25048828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06797972 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06797973 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06797974 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06797975 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06797976 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06797977 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06797978 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06797979 588.25054932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06797980 588.25061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06797981 588.25061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06797982 588.25061035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06797983 588.25067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06797984 588.25067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06797985 588.25067139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06797986 588.25073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06797987 588.25073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06797988 588.25073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06797989 588.25073242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06797990 588.25079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06797991 588.25079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06797992 588.25079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06797993 588.25079346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06797994 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06797995 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06797996 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06797997 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06797998 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06797999 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06798000 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06798001 588.25085449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06798002 588.25091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06798003 588.25091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06798004 588.25091553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06798005 588.25097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06798006 588.25097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06798007 588.25097656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06798008 588.25103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06798009 588.25103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06798010 588.25103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06798011 588.25103760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06798012 588.25109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06798013 588.25109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06798014 588.25109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06798015 588.25109863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06798016 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06798017 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06798018 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06798019 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06798020 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06798021 588.25115967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06798022 588.25122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06798023 588.25122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06798024 588.25122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06798025 588.25122070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06798026 588.25128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06798027 588.25128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06798028 588.25128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06798029 588.25128174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06798030 588.25134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06798031 588.25134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06798032 588.25134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06798033 588.25134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06798034 588.25140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06798035 588.25140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06798036 588.25140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06798037 588.25140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06798038 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06798039 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06798040 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06798041 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06798042 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06798043 588.25146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06798044 588.25152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06798045 588.25152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06798046 588.25152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06798047 588.25152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06798048 588.25158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06798049 588.25158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06798050 588.25158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06798051 588.25158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06798052 588.25164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06798053 588.25164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06798054 588.25164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06798055 588.25164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06798056 588.25170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06798057 588.25170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06798058 588.25170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06798059 588.25170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06798060 588.25177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06798061 588.25177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06798062 588.25177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06798063 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06798064 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06798065 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06798066 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06798067 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06798068 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06798069 588.25183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06798070 588.25189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06798071 588.25189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06798072 588.25189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06798073 588.25189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06798074 588.25195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06798075 588.25195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06798076 588.25195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06798077 588.25195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06798078 588.25201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06798079 588.25201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06798080 588.25201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06798081 588.25201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06798082 588.25207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06798083 588.25207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06798084 588.25207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06798085 588.25207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06798086 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06798087 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06798088 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06798089 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06798090 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06798091 588.25213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06798092 588.25219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06798093 588.25219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06798094 588.25219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06798095 588.25219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06798096 588.25225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06798097 588.25225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06798098 588.25225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06798099 588.25225830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06798100 588.25231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06798101 588.25231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06798102 588.25231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06798103 588.25231934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06798104 588.25238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06798105 588.25238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06798106 588.25238037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06798107 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06798108 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06798109 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06798110 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06798111 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06798112 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06798113 588.25244141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06798114 588.25250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06798115 588.25250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06798116 588.25250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06798117 588.25250244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06798118 588.25256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06798119 588.25256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06798120 588.25256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06798121 588.25256348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06798122 588.25262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06798123 588.25262451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06798124 588.25268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06798125 588.25268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06798126 588.25268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06798127 588.25268555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06798128 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06798129 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06798130 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06798131 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06798132 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06798133 588.25274658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06798134 588.25280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06798135 588.25280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06798136 588.25280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06798137 588.25280762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06798138 588.25286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06798139 588.25286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06798140 588.25286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06798141 588.25286865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06798142 588.25292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06798143 588.25292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06798144 588.25292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06798145 588.25292969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06798146 588.25299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06798147 588.25299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06798148 588.25299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06798149 588.25299072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06798150 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06798151 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06798152 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06798153 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06798154 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06798155 588.25305176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06798156 588.25311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06798157 588.25311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06798158 588.25311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06798159 588.25311279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06798160 588.25317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06798161 588.25317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06798162 588.25317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06798163 588.25317383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06798164 588.25323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06798165 588.25323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06798166 588.25323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06798167 588.25323486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06798168 588.25329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06798169 588.25329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06798170 588.25329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06798171 588.25329590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06798172 588.25335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06798173 588.25335693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06798174 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06798175 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06798176 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06798177 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06798178 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06798179 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06798180 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06798181 588.25341797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06798182 588.25347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06798183 588.25347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06798184 588.25347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06798185 588.25347900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06798186 588.25354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06798187 588.25354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06798188 588.25354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06798189 588.25354004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06798190 588.25360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06798191 588.25360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06798192 588.25360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06798193 588.25360107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06798194 588.25366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06798195 588.25366211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06798196 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06798197 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06798198 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06798199 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06798200 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06798201 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06798202 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06798203 588.25372314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06798204 588.25378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06798205 588.25378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06798206 588.25378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06798207 588.25378418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06798208 588.25384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06798209 588.25384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06798210 588.25384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06798211 588.25384521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06798212 588.25390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06798213 588.25390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06798214 588.25390625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06798215 588.25396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06798216 588.25396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06798217 588.25396729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06798218 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06798219 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06798220 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06798221 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06798222 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06798223 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06798224 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06798225 588.25402832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06798226 588.25408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06798227 588.25408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06798228 588.25408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06798229 588.25408936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06798230 588.25415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06798231 588.25415039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06798232 588.25421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06798233 588.25421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06798234 588.25421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06798235 588.25421143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06798236 588.25427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06798237 588.25427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06798238 588.25427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06798239 588.25427246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06798240 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06798241 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06798242 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06798243 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06798244 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06798245 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06798246 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06798247 588.25433350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06798248 588.25439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06798249 588.25439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06798250 588.25439453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06798251 588.25445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06798252 588.25445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06798253 588.25445557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06798254 588.25451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06798255 588.25451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06798256 588.25451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06798257 588.25451660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06798258 588.25457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06798259 588.25457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06798260 588.25457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06798261 588.25457764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06798262 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06798263 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06798264 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06798265 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06798266 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06798267 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06798268 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06798269 588.25463867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06798270 588.25469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06798271 588.25469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06798272 588.25469971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06798273 588.25476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06798274 588.25476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06798275 588.25476074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06798276 588.25482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06798277 588.25482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06798278 588.25482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06798279 588.25482178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06798280 588.25488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06798281 588.25488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06798282 588.25488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06798283 588.25488281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06798284 588.25494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06798285 588.25494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06798286 588.25494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06798287 588.25494385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06798288 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06798289 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06798290 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06798291 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06798292 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06798293 588.25500488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06798294 588.25506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06798295 588.25506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06798296 588.25506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06798297 588.25506592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06798298 588.25512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06798299 588.25512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06798300 588.25512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06798301 588.25512695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06798302 588.25518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06798303 588.25518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06798304 588.25518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06798305 588.25518799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06798306 588.25524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06798307 588.25524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06798308 588.25524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06798309 588.25524902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06798310 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06798311 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06798312 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06798313 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06798314 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06798315 588.25531006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06798316 588.25537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06798317 588.25537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06798318 588.25537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06798319 588.25537109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06798320 588.25543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06798321 588.25543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06798322 588.25543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06798323 588.25543213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06798324 588.25549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06798325 588.25549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06798326 588.25549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06798327 588.25549316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06798328 588.25555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06798329 588.25555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06798330 588.25555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06798331 588.25555420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06798332 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06798333 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06798334 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06798335 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06798336 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06798337 588.25561523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06798338 588.25567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06798339 588.25567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06798340 588.25567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06798341 588.25567627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06798342 588.25573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06798343 588.25573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06798344 588.25573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06798345 588.25573730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06798346 588.25579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06798347 588.25579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06798348 588.25579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06798349 588.25579834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06798350 588.25585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06798351 588.25585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06798352 588.25585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06798353 588.25585938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06798354 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06798355 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06798356 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06798357 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06798358 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06798359 588.25592041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06798360 588.25598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06798361 588.25598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06798362 588.25598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06798363 588.25598145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06798364 588.25604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06798365 588.25604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06798366 588.25604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06798367 588.25604248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06798368 588.25610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06798369 588.25610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06798370 588.25610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06798371 588.25610352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06798372 588.25616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06798373 588.25616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06798374 588.25616455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06798375 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06798376 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06798377 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06798378 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06798379 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06798380 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06798381 588.25622559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06798382 588.25628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06798383 588.25628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06798384 588.25628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06798385 588.25628662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06798386 588.25634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06798387 588.25634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06798388 588.25634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06798389 588.25634766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06798390 588.25640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06798391 588.25640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06798392 588.25640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06798393 588.25640869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06798394 588.25646973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06798395 588.25646973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06798396 588.25653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06798397 588.25653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06798398 588.25653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06798399 588.25653076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06798400 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06798401 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06798402 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06798403 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06798404 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06798405 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06798406 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06798407 588.25659180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06798408 588.25665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06798409 588.25665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06798410 588.25665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06798411 588.25665283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06798412 588.25671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06798413 588.25671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06798414 588.25671387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06798415 588.25677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06798416 588.25677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06798417 588.25677490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06798418 588.25683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06798419 588.25683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06798420 588.25683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06798421 588.25683594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06798422 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06798423 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06798424 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06798425 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06798426 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06798427 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06798428 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06798429 588.25689697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06798430 588.25695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06798431 588.25695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06798432 588.25695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06798433 588.25695801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06798434 588.25701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06798435 588.25701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06798436 588.25701904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06798437 588.25708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06798438 588.25708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06798439 588.25708008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06798440 588.25714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06798441 588.25714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06798442 588.25714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06798443 588.25714111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06798444 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06798445 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06798446 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06798447 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06798448 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06798449 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06798450 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06798451 588.25720215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06798452 588.25726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06798453 588.25726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06798454 588.25726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06798455 588.25726318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06798456 588.25732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06798457 588.25732422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06798458 588.25738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06798459 588.25738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06798460 588.25738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06798461 588.25738525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06798462 588.25744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06798463 588.25744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06798464 588.25744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06798465 588.25744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06798466 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06798467 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06798468 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06798469 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06798470 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06798471 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06798472 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06798473 588.25750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06798474 588.25756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06798475 588.25756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06798476 588.25756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06798477 588.25762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06798478 588.25762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06798479 588.25762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06798480 588.25769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06798481 588.25769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06798482 588.25769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06798483 588.25769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06798484 588.25775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06798485 588.25775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06798486 588.25775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06798487 588.25775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06798488 588.25781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06798489 588.25781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06798490 588.25781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06798491 588.25781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06798492 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06798493 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06798494 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06798495 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06798496 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06798497 588.25787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06798498 588.25793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06798499 588.25793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06798500 588.25793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06798501 588.25793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06798502 588.25799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06798503 588.25799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06798504 588.25799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06798505 588.25799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06798506 588.25805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06798507 588.25805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06798508 588.25805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06798509 588.25805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06798510 588.25811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06798511 588.25811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06798512 588.25811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06798513 588.25811768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06798514 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06798515 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06798516 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06798517 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06798518 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06798519 588.25817871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06798520 588.25823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06798521 588.25823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06798522 588.25823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06798523 588.25823975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06798524 588.25830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06798525 588.25830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06798526 588.25830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06798527 588.25830078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06798528 588.25836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06798529 588.25836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06798530 588.25836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06798531 588.25836182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06798532 588.25842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06798533 588.25842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06798534 588.25842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06798535 588.25842285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06798536 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06798537 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06798538 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06798539 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06798540 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06798541 588.25848389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06798542 588.25854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06798543 588.25854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06798544 588.25854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06798545 588.25854492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06798546 588.25860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06798547 588.25860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06798548 588.25860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06798549 588.25860596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06798550 588.25866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06798551 588.25866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06798552 588.25866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06798553 588.25866699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06798554 588.25872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06798555 588.25872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06798556 588.25872803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06798557 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06798558 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06798559 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06798560 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06798561 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06798562 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06798563 588.25878906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06798564 588.25885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06798565 588.25885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06798566 588.25885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06798567 588.25885010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06798568 588.25891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06798569 588.25891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06798570 588.25891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06798571 588.25891113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06798572 588.25897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06798573 588.25897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06798574 588.25897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06798575 588.25897217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06798576 588.25903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06798577 588.25903320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06798578 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06798579 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06798580 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06798581 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06798582 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06798583 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06798584 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06798585 588.25909424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06798586 588.25915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06798587 588.25915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06798588 588.25915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06798589 588.25915527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06798590 588.25921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06798591 588.25921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06798592 588.25921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06798593 588.25921631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06798594 588.25927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06798595 588.25927734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06798596 588.25933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06798597 588.25933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06798598 588.25933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06798599 588.25933838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06798600 588.25939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06798601 588.25939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06798602 588.25939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06798603 588.25939941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06798604 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06798605 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06798606 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06798607 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06798608 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06798609 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06798610 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06798611 588.25946045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06798612 588.25952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06798613 588.25952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06798614 588.25952148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06798615 588.25958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06798616 588.25958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06798617 588.25958252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06798618 588.25964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06798619 588.25964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06798620 588.25964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06798621 588.25964355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06798622 588.25970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06798623 588.25970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06798624 588.25970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06798625 588.25970459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06798626 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06798627 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06798628 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06798629 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06798630 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06798631 588.25976563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06798632 588.25982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06798633 588.25982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06798634 588.25982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06798635 588.25982666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06798636 588.25988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06798637 588.25988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06798638 588.25988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06798639 588.25988770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06798640 588.25994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06798641 588.25994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06798642 588.25994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06798643 588.25994873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06798644 588.26000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06798645 588.26000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06798646 588.26000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06798647 588.26000977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06798648 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06798649 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06798650 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06798651 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06798652 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06798653 588.26007080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06798654 588.26013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06798655 588.26013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06798656 588.26013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06798657 588.26013184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06798658 588.26019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06798659 588.26019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06798660 588.26019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06798661 588.26019287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06798662 588.26025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06798663 588.26025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06798664 588.26025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06798665 588.26025391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06798666 588.26031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06798667 588.26031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06798668 588.26031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06798669 588.26031494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06798670 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06798671 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06798672 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06798673 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06798674 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06798675 588.26037598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06798676 588.26043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06798677 588.26043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06798678 588.26043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06798679 588.26043701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06798680 588.26049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06798681 588.26049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06798682 588.26049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06798683 588.26049805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06798684 588.26055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06798685 588.26055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06798686 588.26055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06798687 588.26055908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06798688 588.26062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06798689 588.26062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06798690 588.26062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06798691 588.26062012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06798692 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06798693 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06798694 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06798695 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06798696 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06798697 588.26068115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06798698 588.26074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06798699 588.26074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06798700 588.26074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06798701 588.26074219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06798702 588.26080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06798703 588.26080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06798704 588.26080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06798705 588.26080322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06798706 588.26086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06798707 588.26086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06798708 588.26086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06798709 588.26086426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06798710 588.26092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06798711 588.26092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06798712 588.26092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06798713 588.26092529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06798714 588.26098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06798715 588.26098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06798716 588.26098633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06798717 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06798718 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06798719 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06798720 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06798721 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06798722 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06798723 588.26104736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06798724 588.26110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06798725 588.26110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06798726 588.26110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06798727 588.26110840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06798728 588.26116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06798729 588.26116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06798730 588.26116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06798731 588.26116943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06798732 588.26123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06798733 588.26123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06798734 588.26123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06798735 588.26123047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06798736 588.26129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06798737 588.26129150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06798738 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06798739 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06798740 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06798741 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06798742 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06798743 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06798744 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06798745 588.26135254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06798746 588.26141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06798747 588.26141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06798748 588.26141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06798749 588.26141357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06798750 588.26147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06798751 588.26147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06798752 588.26147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06798753 588.26147461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06798754 588.26153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06798755 588.26153564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06798756 588.26159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06798757 588.26159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06798758 588.26159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06798759 588.26159668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06798760 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06798761 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06798762 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06798763 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06798764 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06798765 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06798766 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06798767 588.26165771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06798768 588.26171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06798769 588.26171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06798770 588.26171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06798771 588.26171875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06798772 588.26177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06798773 588.26177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06798774 588.26177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06798775 588.26177979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06798776 588.26184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06798777 588.26184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06798778 588.26184082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06798779 588.26190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06798780 588.26190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06798781 588.26190186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06798782 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06798783 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06798784 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06798785 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06798786 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06798787 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06798788 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06798789 588.26196289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06798790 588.26202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06798791 588.26202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06798792 588.26202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06798793 588.26202393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06798794 588.26208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06798795 588.26208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06798796 588.26208496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06798797 588.26214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06798798 588.26214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06798799 588.26214600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06798800 588.26220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06798801 588.26220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06798802 588.26220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06798803 588.26220703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06798804 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06798805 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06798806 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06798807 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06798808 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06798809 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06798810 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06798811 588.26226807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06798812 588.26232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06798813 588.26232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06798814 588.26232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06798815 588.26232910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06798816 588.26239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06798817 588.26239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06798818 588.26239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06798819 588.26239014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06798820 588.26245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06798821 588.26245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06798822 588.26245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06798823 588.26245117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06798824 588.26251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06798825 588.26251221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06798826 588.26257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06798827 588.26257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06798828 588.26257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06798829 588.26257324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06798830 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06798831 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06798832 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06798833 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06798834 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06798835 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06798836 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06798837 588.26263428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06798838 588.26269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06798839 588.26269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06798840 588.26269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06798841 588.26269531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06798842 588.26275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06798843 588.26275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06798844 588.26275635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06798845 588.26281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06798846 588.26281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06798847 588.26281738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06798848 588.26287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06798849 588.26287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06798850 588.26287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06798851 588.26287842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06798852 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06798853 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06798854 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06798855 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06798856 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06798857 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06798858 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06798859 588.26293945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06798860 588.26300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06798861 588.26300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06798862 588.26300049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06798863 588.26306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06798864 588.26306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06798865 588.26306152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06798866 588.26312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06798867 588.26312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06798868 588.26312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06798869 588.26312256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06798870 588.26318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06798871 588.26318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06798872 588.26318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06798873 588.26318359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06798874 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06798875 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06798876 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06798877 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06798878 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06798879 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06798880 588.26324463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06798881 588.26330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06798882 588.26330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06798883 588.26330566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06798884 588.26336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06798885 588.26336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06798886 588.26336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06798887 588.26336670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06798888 588.26342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06798889 588.26342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06798890 588.26342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06798891 588.26342773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06798892 588.26348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06798893 588.26348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06798894 588.26348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06798895 588.26348877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06798896 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06798897 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06798898 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06798899 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06798900 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06798901 588.26354980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06798902 588.26361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06798903 588.26361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06798904 588.26361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06798905 588.26361084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06798906 588.26367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06798907 588.26367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06798908 588.26367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06798909 588.26367188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06798910 588.26373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06798911 588.26373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06798912 588.26373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06798913 588.26373291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06798914 588.26379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06798915 588.26379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06798916 588.26379395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06798917 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06798918 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06798919 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06798920 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06798921 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06798922 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06798923 588.26385498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06798924 588.26391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06798925 588.26391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06798926 588.26391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06798927 588.26391602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06798928 588.26397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06798929 588.26397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06798930 588.26397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06798931 588.26397705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06798932 588.26403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06798933 588.26403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06798934 588.26403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06798935 588.26403809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06798936 588.26409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06798937 588.26409912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06798938 588.26416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06798939 588.26416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06798940 588.26416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06798941 588.26416016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06798942 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06798943 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06798944 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06798945 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06798946 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06798947 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06798948 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06798949 588.26422119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06798950 588.26428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06798951 588.26428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06798952 588.26428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06798953 588.26428223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06798954 588.26434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06798955 588.26434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06798956 588.26434326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06798957 588.26440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06798958 588.26440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06798959 588.26440430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06798960 588.26446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06798961 588.26446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06798962 588.26446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06798963 588.26446533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06798964 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06798965 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06798966 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06798967 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06798968 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06798969 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06798970 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06798971 588.26452637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06798972 588.26458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06798973 588.26458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06798974 588.26458740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06798975 588.26464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06798976 588.26464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06798977 588.26464844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06798978 588.26470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06798979 588.26470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06798980 588.26470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06798981 588.26470947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06798982 588.26477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06798983 588.26477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06798984 588.26477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06798985 588.26477051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06798986 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06798987 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06798988 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06798989 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06798990 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06798991 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06798992 588.26483154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06798993 588.26489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06798994 588.26489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06798995 588.26489258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06798996 588.26495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06798997 588.26495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06798998 588.26495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06798999 588.26495361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06799000 588.26501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06799001 588.26501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06799002 588.26501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06799003 588.26501465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06799004 588.26507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06799005 588.26507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06799006 588.26507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06799007 588.26507568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06799008 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06799009 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06799010 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06799011 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06799012 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06799013 588.26513672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06799014 588.26519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06799015 588.26519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06799016 588.26519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06799017 588.26519775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06799018 588.26525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06799019 588.26525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06799020 588.26525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06799021 588.26525879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06799022 588.26531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06799023 588.26531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06799024 588.26531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06799025 588.26531982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06799026 588.26538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06799027 588.26538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06799028 588.26538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06799029 588.26538086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06799030 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06799031 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06799032 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06799033 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06799034 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06799035 588.26544189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06799036 588.26550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06799037 588.26550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06799038 588.26550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06799039 588.26550293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06799040 588.26556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06799041 588.26556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06799042 588.26556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06799043 588.26556396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06799044 588.26562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06799045 588.26562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06799046 588.26562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06799047 588.26562500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06799048 588.26568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06799049 588.26568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06799050 588.26568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06799051 588.26568604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06799052 588.26574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06799053 588.26574707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06799054 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06799055 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06799056 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06799057 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06799058 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06799059 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06799060 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06799061 588.26580811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06799062 588.26586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06799063 588.26586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06799064 588.26586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06799065 588.26586914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06799066 588.26593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06799067 588.26593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06799068 588.26593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06799069 588.26593018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06799070 588.26599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06799071 588.26599121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06799072 588.26605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06799073 588.26605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06799074 588.26605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06799075 588.26605225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06799076 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06799077 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06799078 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06799079 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06799080 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06799081 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06799082 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06799083 588.26611328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06799084 588.26617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06799085 588.26617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06799086 588.26617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06799087 588.26617432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06799088 588.26623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06799089 588.26623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06799090 588.26623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06799091 588.26623535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06799092 588.26629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06799093 588.26629639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06799094 588.26635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06799095 588.26635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06799096 588.26635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06799097 588.26635742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06799098 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06799099 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06799100 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06799101 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06799102 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06799103 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06799104 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06799105 588.26641846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06799106 588.26647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06799107 588.26647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06799108 588.26647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06799109 588.26647949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06799110 588.26654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06799111 588.26654053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06799112 588.26660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06799113 588.26660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06799114 588.26660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06799115 588.26660156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06799116 588.26666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06799117 588.26666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06799118 588.26666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06799119 588.26666260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06799120 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06799121 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06799122 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06799123 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06799124 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06799125 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06799126 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06799127 588.26672363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06799128 588.26678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06799129 588.26678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06799130 588.26678467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06799131 588.26684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06799132 588.26684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06799133 588.26684570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06799134 588.26690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06799135 588.26690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06799136 588.26690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06799137 588.26690674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06799138 588.26696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06799139 588.26696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06799140 588.26696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06799141 588.26696777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06799142 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06799143 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06799144 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06799145 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06799146 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06799147 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06799148 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06799149 588.26702881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06799150 588.26708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06799151 588.26708984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06799152 588.26715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06799153 588.26715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06799154 588.26715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06799155 588.26715088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06799156 588.26721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06799157 588.26721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06799158 588.26721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06799159 588.26721191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06799160 588.26727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06799161 588.26727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06799162 588.26727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06799163 588.26727295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06799164 588.26733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06799165 588.26733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06799166 588.26733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06799167 588.26733398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06799168 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06799169 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06799170 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06799171 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06799172 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06799173 588.26739502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06799174 588.26745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06799175 588.26745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06799176 588.26745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06799177 588.26745605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06799178 588.26751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06799179 588.26751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06799180 588.26751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06799181 588.26751709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06799182 588.26757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06799183 588.26757813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06799184 588.26763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06799185 588.26763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06799186 588.26763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06799187 588.26763916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06799188 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06799189 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06799190 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06799191 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06799192 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06799193 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06799194 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06799195 588.26770020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06799196 588.26776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06799197 588.26776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06799198 588.26776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06799199 588.26776123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06799200 588.26782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06799201 588.26782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06799202 588.26782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06799203 588.26782227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06799204 588.26788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06799205 588.26788330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06799206 588.26794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06799207 588.26794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06799208 588.26794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06799209 588.26794434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06799210 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06799211 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06799212 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06799213 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06799214 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06799215 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06799216 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06799217 588.26800537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06799218 588.26806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06799219 588.26806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06799220 588.26806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06799221 588.26806641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06799222 588.26812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06799223 588.26812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06799224 588.26812744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06799225 588.26818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06799226 588.26818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06799227 588.26818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06799228 588.26824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06799229 588.26824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06799230 588.26824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06799231 588.26824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06799232 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06799233 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06799234 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06799235 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06799236 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06799237 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06799238 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06799239 588.26831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06799240 588.26837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06799241 588.26837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06799242 588.26837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06799243 588.26837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06799244 588.26843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06799245 588.26843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06799246 588.26843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06799247 588.26849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06799248 588.26849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06799249 588.26849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06799250 588.26855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06799251 588.26855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06799252 588.26855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06799253 588.26855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06799254 588.26861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06799255 588.26861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06799256 588.26861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06799257 588.26861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06799258 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06799259 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06799260 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06799261 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06799262 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06799263 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06799264 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06799265 588.26867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06799266 588.26873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06799267 588.26873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06799268 588.26879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06799269 588.26879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06799270 588.26879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06799271 588.26879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06799272 588.26885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06799273 588.26885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06799274 588.26885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06799275 588.26885986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06799276 588.26892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06799277 588.26892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06799278 588.26892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06799279 588.26892090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06799280 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06799281 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06799282 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06799283 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06799284 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06799285 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06799286 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06799287 588.26898193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06799288 588.26904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06799289 588.26904297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06799290 588.26910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06799291 588.26910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06799292 588.26910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06799293 588.26910400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06799294 588.26916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06799295 588.26916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06799296 588.26916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06799297 588.26916504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06799298 588.26922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06799299 588.26922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06799300 588.26922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06799301 588.26922607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06799302 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06799303 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06799304 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06799305 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06799306 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06799307 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06799308 588.26928711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06799309 588.26934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06799310 588.26934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06799311 588.26934814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06799312 588.26940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06799313 588.26940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06799314 588.26940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06799315 588.26940918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06799316 588.26947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06799317 588.26947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06799318 588.26947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06799319 588.26947021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06799320 588.26953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06799321 588.26953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06799322 588.26953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06799323 588.26953125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06799324 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06799325 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06799326 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06799327 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06799328 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06799329 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06799330 588.26959229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06799331 588.26965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06799332 588.26965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06799333 588.26965332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06799334 588.26971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06799335 588.26971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06799336 588.26971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06799337 588.26971436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06799338 588.26977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06799339 588.26977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06799340 588.26977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06799341 588.26977539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06799342 588.26983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06799343 588.26983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06799344 588.26983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06799345 588.26983643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06799346 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06799347 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06799348 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06799349 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06799350 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06799351 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06799352 588.26989746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06799353 588.26995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06799354 588.26995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06799355 588.26995850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06799356 588.27001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06799357 588.27001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06799358 588.27001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06799359 588.27001953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06799360 588.27008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06799361 588.27008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06799362 588.27008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06799363 588.27008057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06799364 588.27014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06799365 588.27014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06799366 588.27014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06799367 588.27014160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06799368 588.27020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06799369 588.27020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06799370 588.27020264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06799371 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06799372 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06799373 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06799374 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06799375 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06799376 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06799377 588.27026367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06799378 588.27032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06799379 588.27032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06799380 588.27032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06799381 588.27032471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06799382 588.27038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06799383 588.27038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06799384 588.27038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06799385 588.27038574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06799386 588.27044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06799387 588.27044678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06799388 588.27050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06799389 588.27050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06799390 588.27050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06799391 588.27050781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06799392 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06799393 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06799394 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06799395 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06799396 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06799397 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06799398 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06799399 588.27056885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06799400 588.27062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06799401 588.27062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06799402 588.27062988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06799403 588.27069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06799404 588.27069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06799405 588.27069092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06799406 588.27075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06799407 588.27075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06799408 588.27075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06799409 588.27075195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06799410 588.27081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06799411 588.27081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06799412 588.27081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06799413 588.27081299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06799414 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06799415 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06799416 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06799417 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06799418 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06799419 588.27087402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06799420 588.27093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06799421 588.27093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06799422 588.27093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06799423 588.27093506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06799424 588.27099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06799425 588.27099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06799426 588.27099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06799427 588.27099609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06799428 588.27105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06799429 588.27105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06799430 588.27105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06799431 588.27105713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06799432 588.27111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06799433 588.27111816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06799434 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06799435 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06799436 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06799437 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06799438 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06799439 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06799440 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06799441 588.27117920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06799442 588.27124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06799443 588.27124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06799444 588.27124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06799445 588.27124023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06799446 588.27130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06799447 588.27130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06799448 588.27130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06799449 588.27130127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06799450 588.27136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06799451 588.27136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06799452 588.27136230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06799453 588.27142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06799454 588.27142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06799455 588.27142334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06799456 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06799457 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06799458 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06799459 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06799460 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06799461 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06799462 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06799463 588.27148438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06799464 588.27154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06799465 588.27154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06799466 588.27154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06799467 588.27154541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06799468 588.27160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06799469 588.27160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06799470 588.27160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06799471 588.27160645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06799472 588.27166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06799473 588.27166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06799474 588.27166748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06799475 588.27172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06799476 588.27172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06799477 588.27172852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06799478 588.27178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06799479 588.27178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06799480 588.27178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06799481 588.27178955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06799482 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06799483 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06799484 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06799485 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06799486 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06799487 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06799488 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06799489 588.27185059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06799490 588.27191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06799491 588.27191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06799492 588.27191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06799493 588.27191162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06799494 588.27197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06799495 588.27197266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06799496 588.27203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06799497 588.27203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06799498 588.27203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06799499 588.27203369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06799500 588.27209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06799501 588.27209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06799502 588.27209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06799503 588.27209473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06799504 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06799505 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06799506 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06799507 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06799508 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06799509 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06799510 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06799511 588.27215576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06799512 588.27221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06799513 588.27221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06799514 588.27221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06799515 588.27221680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06799516 588.27227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06799517 588.27227783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06799518 588.27233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06799519 588.27233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06799520 588.27233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06799521 588.27233887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06799522 588.27239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06799523 588.27239990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06799524 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06799525 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06799526 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06799527 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06799528 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06799529 588.27246094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06799530 588.27252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06799531 588.27252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06799532 588.27252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06799533 588.27252197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06799534 588.27258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06799535 588.27258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06799536 588.27258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06799537 588.27258301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06799538 588.27264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06799539 588.27264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06799540 588.27264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06799541 588.27264404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06799542 588.27270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06799543 588.27270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06799544 588.27270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06799545 588.27270508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06799546 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06799547 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06799548 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06799549 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06799550 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06799551 588.27276611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06799552 588.27282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06799553 588.27282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06799554 588.27282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06799555 588.27282715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06799556 588.27288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06799557 588.27288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06799558 588.27288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06799559 588.27288818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06799560 588.27294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06799561 588.27294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06799562 588.27294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06799563 588.27294922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06799564 588.27301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06799565 588.27301025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06799566 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06799567 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06799568 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06799569 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06799570 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06799571 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06799572 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06799573 588.27307129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06799574 588.27313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06799575 588.27313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06799576 588.27313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06799577 588.27313232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06799578 588.27319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06799579 588.27319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06799580 588.27319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06799581 588.27319336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06799582 588.27325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06799583 588.27325439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06799584 588.27331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06799585 588.27331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06799586 588.27331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06799587 588.27331543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06799588 588.27337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06799589 588.27337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06799590 588.27337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06799591 588.27337646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06799592 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06799593 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06799594 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06799595 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06799596 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06799597 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06799598 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06799599 588.27343750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06799600 588.27349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06799601 588.27349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06799602 588.27349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06799603 588.27349854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06799604 588.27355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06799605 588.27355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06799606 588.27355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06799607 588.27355957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06799608 588.27362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06799609 588.27362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06799610 588.27362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06799611 588.27362061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06799612 588.27368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06799613 588.27368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06799614 588.27368164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06799615 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06799616 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06799617 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06799618 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06799619 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06799620 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06799621 588.27374268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06799622 588.27380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06799623 588.27380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06799624 588.27380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06799625 588.27380371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06799626 588.27386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06799627 588.27386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06799628 588.27386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06799629 588.27386475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06799630 588.27392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06799631 588.27392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06799632 588.27392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06799633 588.27392578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06799634 588.27398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06799635 588.27398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06799636 588.27398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06799637 588.27398682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06799638 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06799639 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06799640 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06799641 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06799642 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06799643 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06799644 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06799645 588.27404785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06799646 588.27410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06799647 588.27410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06799648 588.27410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06799649 588.27410889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06799650 588.27416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06799651 588.27416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06799652 588.27416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06799653 588.27416992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06799654 588.27423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06799655 588.27423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06799656 588.27423096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06799657 588.27429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06799658 588.27429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06799659 588.27429199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06799660 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06799661 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06799662 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06799663 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06799664 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06799665 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06799666 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06799667 588.27435303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06799668 588.27441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06799669 588.27441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06799670 588.27441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06799671 588.27441406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06799672 588.27447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06799673 588.27447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06799674 588.27447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06799675 588.27447510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06799676 588.27453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06799677 588.27453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06799678 588.27453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06799679 588.27453613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06799680 588.27459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06799681 588.27459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06799682 588.27459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06799683 588.27459717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06799684 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06799685 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06799686 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06799687 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06799688 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06799689 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06799690 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06799691 588.27465820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06799692 588.27471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06799693 588.27471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06799694 588.27471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06799695 588.27471924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06799696 588.27478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06799697 588.27478027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06799698 588.27484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06799699 588.27484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06799700 588.27484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06799701 588.27484131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06799702 588.27490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06799703 588.27490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06799704 588.27490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06799705 588.27490234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06799706 588.27496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06799707 588.27496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06799708 588.27496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06799709 588.27496338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06799710 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06799711 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06799712 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06799713 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06799714 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06799715 588.27502441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -06799716 588.27508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06799717 588.27508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -06799718 588.27508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06799719 588.27508545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -06799720 588.27514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06799721 588.27514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -06799722 588.27514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06799723 588.27514648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -06799724 588.27520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06799725 588.27520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -06799726 588.27520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06799727 588.27520752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -06799728 588.27526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06799729 588.27526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -06799730 588.27526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06799731 588.27526855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -06799732 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06799733 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -06799734 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06799735 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -06799736 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06799737 588.27532959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -06799738 588.27539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06799739 588.27539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -06799740 588.27539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06799741 588.27539063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -06799742 588.27545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06799743 588.27545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -06799744 588.27545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06799745 588.27545166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -06799746 588.27551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06799747 588.27551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -06799748 588.27551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06799749 588.27551270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -06799750 588.27557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06799751 588.27557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -06799752 588.27557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06799753 588.27557373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -06799754 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06799755 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -06799756 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06799757 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -06799758 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06799759 588.27563477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -06799760 588.27569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06799761 588.27569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -06799762 588.27569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06799763 588.27569580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -06799764 588.27575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06799765 588.27575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -06799766 588.27575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06799767 588.27575684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -06799768 588.27581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06799769 588.27581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -06799770 588.27581787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06799771 588.27587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -06799772 588.27587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06799773 588.27587891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -06799774 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06799775 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -06799776 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06799777 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -06799778 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06799779 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -06799780 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06799781 588.27593994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -06799782 588.27600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06799783 588.27600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -06799784 588.27600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06799785 588.27600098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -06799786 588.27606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06799787 588.27606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -06799788 588.27606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06799789 588.27606201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -06799790 588.27612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06799791 588.27612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -06799792 588.27612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06799793 588.27612305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -06799794 588.27618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06799795 588.27618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -06799796 588.27618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06799797 588.27618408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -06799798 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06799799 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -06799800 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06799801 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -06799802 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06799803 588.27624512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -06799804 588.27630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06799805 588.27630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -06799806 588.27630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06799807 588.27630615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -06799808 588.27636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06799809 588.27636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -06799810 588.27636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06799811 588.27636719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -06799812 588.27642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06799813 588.27642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -06799814 588.27642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06799815 588.27642822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -06799816 588.27648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06799817 588.27648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -06799818 588.27648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06799819 588.27648926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -06799820 588.27655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06799821 588.27655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -06799822 588.27655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06799823 588.27655029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -06799824 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06799825 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -06799826 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06799827 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -06799828 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06799829 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -06799830 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06799831 588.27661133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -06799832 588.27667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06799833 588.27667236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -06799834 588.27673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06799835 588.27673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -06799836 588.27673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06799837 588.27673340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -06799838 588.27679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06799839 588.27679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -06799840 588.27679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06799841 588.27679443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -06799842 588.27685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06799843 588.27685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -06799844 588.27685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06799845 588.27685547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -06799846 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06799847 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -06799848 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06799849 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -06799850 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06799851 588.27691650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -06799852 588.27697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06799853 588.27697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -06799854 588.27697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06799855 588.27697754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -06799856 588.27703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06799857 588.27703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -06799858 588.27703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06799859 588.27703857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -06799860 588.27709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06799861 588.27709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -06799862 588.27709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06799863 588.27709961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -06799864 588.27716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06799865 588.27716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -06799866 588.27716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06799867 588.27716064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -06799868 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06799869 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -06799870 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06799871 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -06799872 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06799873 588.27722168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -06799874 588.27728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06799875 588.27728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -06799876 588.27728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06799877 588.27728271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -06799878 588.27734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06799879 588.27734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -06799880 588.27734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06799881 588.27734375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -06799882 588.27740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06799883 588.27740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -06799884 588.27740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06799885 588.27740479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -06799886 588.27746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06799887 588.27746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -06799888 588.27746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06799889 588.27746582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -06799890 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06799891 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -06799892 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06799893 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -06799894 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06799895 588.27752686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -06799896 588.27758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06799897 588.27758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -06799898 588.27758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06799899 588.27758789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -06799900 588.27764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06799901 588.27764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -06799902 588.27764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06799903 588.27764893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -06799904 588.27770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06799905 588.27770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -06799906 588.27770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06799907 588.27770996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -06799908 588.27777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06799909 588.27777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -06799910 588.27777100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06799911 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -06799912 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06799913 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -06799914 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06799915 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -06799916 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06799917 588.27783203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -06799918 588.27789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06799919 588.27789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -06799920 588.27789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06799921 588.27789307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -06799922 588.27795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06799923 588.27795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -06799924 588.27795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06799925 588.27795410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -06799926 588.27801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06799927 588.27801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -06799928 588.27801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06799929 588.27801514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -06799930 588.27807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06799931 588.27807617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -06799932 588.27813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06799933 588.27813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -06799934 588.27813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06799935 588.27813721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -06799936 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06799937 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -06799938 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06799939 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -06799940 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06799941 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -06799942 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06799943 588.27819824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -06799944 588.27825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06799945 588.27825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -06799946 588.27825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06799947 588.27825928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -06799948 588.27832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06799949 588.27832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -06799950 588.27832031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06799951 588.27838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -06799952 588.27838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06799953 588.27838135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -06799954 588.27844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06799955 588.27844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -06799956 588.27844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06799957 588.27844238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -06799958 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06799959 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -06799960 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06799961 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -06799962 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06799963 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -06799964 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06799965 588.27850342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -06799966 588.27856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06799967 588.27856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -06799968 588.27856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06799969 588.27856445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -06799970 588.27862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06799971 588.27862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -06799972 588.27862549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06799973 588.27868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -06799974 588.27868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06799975 588.27868652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -06799976 588.27874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06799977 588.27874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -06799978 588.27874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06799979 588.27874756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -06799980 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06799981 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -06799982 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06799983 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -06799984 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06799985 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -06799986 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06799987 588.27880859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -06799988 588.27886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06799989 588.27886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -06799990 588.27886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06799991 588.27886963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -06799992 588.27893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06799993 588.27893066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -06799994 588.27899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06799995 588.27899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -06799996 588.27899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06799997 588.27899170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -06799998 588.27905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06799999 588.27905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -06800000 588.27905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06800001 588.27905273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -06800002 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06800003 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -06800004 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06800005 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -06800006 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06800007 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -06800008 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06800009 588.27911377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -06800010 588.27917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06800011 588.27917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -06800012 588.27917480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06800013 588.27923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -06800014 588.27923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06800015 588.27923584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -06800016 588.27929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06800017 588.27929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -06800018 588.27929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06800019 588.27929688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -06800020 588.27935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06800021 588.27935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -06800022 588.27935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06800023 588.27935791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -06800024 588.27941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06800025 588.27941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -06800026 588.27941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06800027 588.27941895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -06800028 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06800029 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -06800030 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06800031 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -06800032 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06800033 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -06800034 588.27947998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06800035 588.27954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -06800036 588.27954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06800037 588.27954102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -06800038 588.27960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06800039 588.27960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -06800040 588.27960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06800041 588.27960205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -06800042 588.27966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06800043 588.27966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -06800044 588.27966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06800045 588.27966309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -06800046 588.27972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06800047 588.27972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -06800048 588.27972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06800049 588.27972412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -06800050 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06800051 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -06800052 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06800053 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -06800054 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06800055 588.27978516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -06800056 588.27984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06800057 588.27984619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -06800058 588.27990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06800059 588.27990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -06800060 588.27990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06800061 588.27990723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -06800062 588.27996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06800063 588.27996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -06800064 588.27996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06800065 588.27996826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -06800066 588.28002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06800067 588.28002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -06800068 588.28002930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06800069 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -06800070 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06800071 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -06800072 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06800073 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -06800074 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06800075 588.28009033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -06800076 588.28015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06800077 588.28015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -06800078 588.28015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06800079 588.28015137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -06800080 588.28021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06800081 588.28021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -06800082 588.28021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06800083 588.28021240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -06800084 588.28027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06800085 588.28027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -06800086 588.28027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06800087 588.28027344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -06800088 588.28033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06800089 588.28033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -06800090 588.28033447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06800091 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -06800092 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06800093 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -06800094 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06800095 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -06800096 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06800097 588.28039551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -06800098 588.28045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06800099 588.28045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -06800100 588.28045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06800101 588.28045654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -06800102 588.28051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06800103 588.28051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -06800104 588.28051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06800105 588.28051758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -06800106 588.28057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06800107 588.28057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -06800108 588.28057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06800109 588.28057861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -06800110 588.28063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06800111 588.28063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -06800112 588.28063965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06800113 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -06800114 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06800115 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -06800116 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06800117 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -06800118 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06800119 588.28070068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -06800120 588.28076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06800121 588.28076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -06800122 588.28076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06800123 588.28076172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -06800124 588.28082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06800125 588.28082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -06800126 588.28082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06800127 588.28082275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -06800128 588.28088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06800129 588.28088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -06800130 588.28088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06800131 588.28088379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -06800132 588.28094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06800133 588.28094482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -06800134 588.28100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06800135 588.28100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -06800136 588.28100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06800137 588.28100586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -06800138 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06800139 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -06800140 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06800141 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -06800142 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06800143 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -06800144 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06800145 588.28106689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -06800146 588.28112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06800147 588.28112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -06800148 588.28112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06800149 588.28112793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -06800150 588.28118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06800151 588.28118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -06800152 588.28118896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06800153 588.28125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -06800154 588.28125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06800155 588.28125000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -06800156 588.28131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06800157 588.28131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -06800158 588.28131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06800159 588.28131104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -06800160 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06800161 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -06800162 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06800163 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -06800164 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06800165 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -06800166 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06800167 588.28137207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -06800168 588.28143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06800169 588.28143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -06800170 588.28143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06800171 588.28143311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -06800172 588.28149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06800173 588.28149414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -06800174 588.28155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06800175 588.28155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -06800176 588.28155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06800177 588.28155518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -06800178 588.28161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06800179 588.28161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -06800180 588.28161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06800181 588.28161621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -06800182 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06800183 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -06800184 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06800185 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -06800186 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06800187 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -06800188 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06800189 588.28167725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -06800190 588.28173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06800191 588.28173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -06800192 588.28173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06800193 588.28173828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -06800194 588.28179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06800195 588.28179932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -06800196 588.28186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06800197 588.28186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -06800198 588.28186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06800199 588.28186035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -06800200 588.28192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06800201 588.28192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -06800202 588.28192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06800203 588.28192139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -06800204 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06800205 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -06800206 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06800207 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -06800208 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06800209 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -06800210 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06800211 588.28198242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -06800212 588.28204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06800213 588.28204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -06800214 588.28204346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06800215 588.28210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -06800216 588.28210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06800217 588.28210449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -06800218 588.28216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06800219 588.28216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -06800220 588.28216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06800221 588.28216553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -06800222 588.28222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06800223 588.28222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -06800224 588.28222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06800225 588.28222656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -06800226 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06800227 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -06800228 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06800229 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -06800230 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06800231 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -06800232 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06800233 588.28228760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -06800234 588.28234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06800235 588.28234863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -06800236 588.28240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06800237 588.28240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -06800238 588.28240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06800239 588.28240967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -06800240 588.28247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06800241 588.28247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -06800242 588.28247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06800243 588.28247070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -06800244 588.28253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06800245 588.28253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -06800246 588.28253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06800247 588.28253174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -06800248 588.28259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06800249 588.28259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -06800250 588.28259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06800251 588.28259277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -06800252 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06800253 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -06800254 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06800255 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -06800256 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06800257 588.28265381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -06800258 588.28271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06800259 588.28271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -06800260 588.28271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06800261 588.28271484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -06800262 588.28277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06800263 588.28277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -06800264 588.28277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06800265 588.28277588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -06800266 588.28283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06800267 588.28283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -06800268 588.28283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06800269 588.28283691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -06800270 588.28289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06800271 588.28289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -06800272 588.28289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06800273 588.28289795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -06800274 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06800275 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -06800276 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06800277 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -06800278 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06800279 588.28295898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -06800280 588.28302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06800281 588.28302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -06800282 588.28302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06800283 588.28302002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -06800284 588.28308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06800285 588.28308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -06800286 588.28308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06800287 588.28308105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -06800288 588.28314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06800289 588.28314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -06800290 588.28314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06800291 588.28314209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -06800292 588.28320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06800293 588.28320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -06800294 588.28320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06800295 588.28320313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -06800296 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06800297 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -06800298 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06800299 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -06800300 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06800301 588.28326416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -06800302 588.28332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06800303 588.28332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -06800304 588.28332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06800305 588.28332520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -06800306 588.28338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06800307 588.28338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -06800308 588.28338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06800309 588.28338623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -06800310 588.28344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06800311 588.28344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -06800312 588.28344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06800313 588.28344727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -06800314 588.28350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06800315 588.28350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -06800316 588.28350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06800317 588.28350830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -06800318 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06800319 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -06800320 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06800321 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -06800322 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06800323 588.28356934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -06800324 588.28363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06800325 588.28363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -06800326 588.28363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06800327 588.28363037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -06800328 588.28369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06800329 588.28369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -06800330 588.28369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06800331 588.28369141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -06800332 588.28375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06800333 588.28375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -06800334 588.28375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06800335 588.28375244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -06800336 588.28381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06800337 588.28381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -06800338 588.28381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06800339 588.28381348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -06800340 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06800341 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -06800342 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06800343 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -06800344 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06800345 588.28387451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -06800346 588.28393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06800347 588.28393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -06800348 588.28393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06800349 588.28393555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -06800350 588.28399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06800351 588.28399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -06800352 588.28399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06800353 588.28399658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -06800354 588.28405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06800355 588.28405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -06800356 588.28405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06800357 588.28405762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -06800358 588.28411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06800359 588.28411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -06800360 588.28411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06800361 588.28411865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -06800362 588.28417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06800363 588.28417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -06800364 588.28417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06800365 588.28417969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -06800366 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06800367 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -06800368 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06800369 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -06800370 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06800371 588.28424072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -06800372 588.28430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06800373 588.28430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -06800374 588.28430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06800375 588.28430176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -06800376 588.28436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06800377 588.28436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -06800378 588.28436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06800379 588.28436279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -06800380 588.28442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06800381 588.28442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -06800382 588.28442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06800383 588.28442383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -06800384 588.28448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06800385 588.28448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -06800386 588.28448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06800387 588.28448486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -06800388 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06800389 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -06800390 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06800391 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -06800392 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06800393 588.28454590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -06800394 588.28460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06800395 588.28460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -06800396 588.28460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06800397 588.28460693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -06800398 588.28466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06800399 588.28466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -06800400 588.28466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06800401 588.28466797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -06800402 588.28472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06800403 588.28472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -06800404 588.28472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06800405 588.28472900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -06800406 588.28479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06800407 588.28479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -06800408 588.28479004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06800409 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -06800410 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06800411 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -06800412 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06800413 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -06800414 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06800415 588.28485107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -06800416 588.28491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06800417 588.28491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -06800418 588.28491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06800419 588.28491211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -06800420 588.28497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06800421 588.28497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -06800422 588.28497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06800423 588.28497314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -06800424 588.28503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06800425 588.28503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -06800426 588.28503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06800427 588.28503418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -06800428 588.28509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06800429 588.28509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -06800430 588.28509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06800431 588.28509521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -06800432 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06800433 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -06800434 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06800435 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -06800436 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06800437 588.28515625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -06800438 588.28521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06800439 588.28521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -06800440 588.28521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06800441 588.28521729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -06800442 588.28527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06800443 588.28527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -06800444 588.28527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06800445 588.28527832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -06800446 588.28533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06800447 588.28533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -06800448 588.28533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06800449 588.28533936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -06800450 588.28540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06800451 588.28540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -06800452 588.28540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06800453 588.28540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -06800454 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06800455 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -06800456 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06800457 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -06800458 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06800459 588.28546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -06800460 588.28552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06800461 588.28552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -06800462 588.28552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06800463 588.28552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -06800464 588.28558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06800465 588.28558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -06800466 588.28558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06800467 588.28558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -06800468 588.28564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06800469 588.28564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -06800470 588.28564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06800471 588.28564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -06800472 588.28570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06800473 588.28570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -06800474 588.28570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06800475 588.28570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -06800476 588.28576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06800477 588.28576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -06800478 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06800479 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -06800480 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06800481 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -06800482 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06800483 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -06800484 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06800485 588.28582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -06800486 588.28588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06800487 588.28588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -06800488 588.28588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06800489 588.28588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -06800490 588.28594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06800491 588.28594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -06800492 588.28594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06800493 588.28594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -06800494 588.28601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06800495 588.28601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -06800496 588.28601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06800497 588.28607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -06800498 588.28607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06800499 588.28607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -06800500 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06800501 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -06800502 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06800503 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -06800504 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06800505 588.28613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -06800506 588.28619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06800507 588.28619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -06800508 588.28619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06800509 588.28619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -06800510 588.28625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06800511 588.28625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -06800512 588.28625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06800513 588.28625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -06800514 588.28631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06800515 588.28631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -06800516 588.28631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06800517 588.28631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -06800518 588.28637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06800519 588.28637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -06800520 588.28637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06800521 588.28637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -06800522 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06800523 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -06800524 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06800525 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -06800526 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06800527 588.28643799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -06800528 588.28649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06800529 588.28649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -06800530 588.28649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06800531 588.28649902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -06800532 588.28656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06800533 588.28656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -06800534 588.28656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06800535 588.28656006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -06800536 588.28662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06800537 588.28662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -06800538 588.28662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06800539 588.28662109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -06800540 588.28668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06800541 588.28668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -06800542 588.28668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06800543 588.28668213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -06800544 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06800545 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -06800546 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06800547 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -06800548 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06800549 588.28674316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -06800550 588.28680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06800551 588.28680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -06800552 588.28680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06800553 588.28680420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -06800554 588.28686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06800555 588.28686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -06800556 588.28686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06800557 588.28686523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -06800558 588.28692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06800559 588.28692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -06800560 588.28692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06800561 588.28692627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -06800562 588.28698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06800563 588.28698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -06800564 588.28698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06800565 588.28698730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -06800566 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06800567 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -06800568 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06800569 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -06800570 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06800571 588.28704834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -06800572 588.28710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06800573 588.28710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -06800574 588.28710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06800575 588.28710938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -06800576 588.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06800577 588.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -06800578 588.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06800579 588.28717041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -06800580 588.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06800581 588.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -06800582 588.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06800583 588.28723145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -06800584 588.28729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06800585 588.28729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -06800586 588.28729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06800587 588.28729248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -06800588 588.28735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06800589 588.28735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -06800590 588.28735352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06800591 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -06800592 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06800593 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -06800594 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06800595 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -06800596 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06800597 588.28741455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -06800598 588.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06800599 588.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -06800600 588.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06800601 588.28747559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -06800602 588.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06800603 588.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -06800604 588.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06800605 588.28753662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -06800606 588.28759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06800607 588.28759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -06800608 588.28759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06800609 588.28759766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -06800610 588.28765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06800611 588.28765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -06800612 588.28765869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06800613 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -06800614 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06800615 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -06800616 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06800617 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -06800618 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06800619 588.28771973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -06800620 588.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06800621 588.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -06800622 588.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06800623 588.28778076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -06800624 588.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06800625 588.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -06800626 588.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06800627 588.28784180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -06800628 588.28790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06800629 588.28790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -06800630 588.28790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06800631 588.28790283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -06800632 588.28796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06800633 588.28796387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -06800634 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06800635 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -06800636 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06800637 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -06800638 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06800639 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -06800640 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06800641 588.28802490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -06800642 588.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06800643 588.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -06800644 588.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06800645 588.28808594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -06800646 588.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06800647 588.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -06800648 588.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06800649 588.28814697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -06800650 588.28820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06800651 588.28820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -06800652 588.28820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06800653 588.28820801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -06800654 588.28826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06800655 588.28826904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -06800656 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06800657 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -06800658 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06800659 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -06800660 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06800661 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -06800662 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06800663 588.28833008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -06800664 588.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06800665 588.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -06800666 588.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06800667 588.28839111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -06800668 588.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06800669 588.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -06800670 588.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06800671 588.28845215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -06800672 588.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06800673 588.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -06800674 588.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06800675 588.28851318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -06800676 588.28857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06800677 588.28857422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -06800678 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06800679 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -06800680 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06800681 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -06800682 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06800683 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -06800684 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06800685 588.28863525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -06800686 588.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06800687 588.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -06800688 588.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06800689 588.28869629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -06800690 588.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06800691 588.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -06800692 588.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06800693 588.28875732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -06800694 588.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06800695 588.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -06800696 588.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06800697 588.28881836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -06800698 588.28887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06800699 588.28887939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -06800700 588.28894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06800701 588.28894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -06800702 588.28894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06800703 588.28894043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -06800704 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06800705 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -06800706 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06800707 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -06800708 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06800709 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -06800710 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06800711 588.28900146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -06800712 588.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06800713 588.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -06800714 588.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06800715 588.28906250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -06800716 588.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06800717 588.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -06800718 588.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06800719 588.28912354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -06800720 588.28918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06800721 588.28918457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -06800722 588.28924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06800723 588.28924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -06800724 588.28924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06800725 588.28924561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -06800726 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06800727 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -06800728 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06800729 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -06800730 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06800731 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -06800732 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06800733 588.28930664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -06800734 588.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06800735 588.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -06800736 588.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06800737 588.28936768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -06800738 588.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06800739 588.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -06800740 588.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06800741 588.28942871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -06800742 588.28948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06800743 588.28948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -06800744 588.28948975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06800745 588.28955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -06800746 588.28955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06800747 588.28955078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -06800748 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06800749 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -06800750 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06800751 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -06800752 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06800753 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -06800754 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06800755 588.28961182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -06800756 588.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06800757 588.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -06800758 588.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06800759 588.28967285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -06800760 588.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06800761 588.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -06800762 588.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06800763 588.28973389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -06800764 588.28979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06800765 588.28979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -06800766 588.28979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06800767 588.28979492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -06800768 588.28985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06800769 588.28985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -06800770 588.28985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06800771 588.28985596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -06800772 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06800773 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -06800774 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06800775 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -06800776 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06800777 588.28991699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -06800778 588.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06800779 588.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -06800780 588.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06800781 588.28997803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -06800782 588.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06800783 588.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -06800784 588.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06800785 588.29003906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -06800786 588.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06800787 588.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -06800788 588.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06800789 588.29010010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -06800790 588.29016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06800791 588.29016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -06800792 588.29016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06800793 588.29016113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -06800794 588.29022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06800795 588.29022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -06800796 588.29022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06800797 588.29022217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -06800798 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06800799 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -06800800 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06800801 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -06800802 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06800803 588.29028320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -06800804 588.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06800805 588.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -06800806 588.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06800807 588.29034424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -06800808 588.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06800809 588.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -06800810 588.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06800811 588.29040527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -06800812 588.29046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06800813 588.29046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -06800814 588.29046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06800815 588.29046631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -06800816 588.29052734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06800817 588.29052734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -06800818 588.29052734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06800819 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -06800820 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06800821 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -06800822 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06800823 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -06800824 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06800825 588.29058838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -06800826 588.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06800827 588.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -06800828 588.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06800829 588.29064941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -06800830 588.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06800831 588.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -06800832 588.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06800833 588.29071045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -06800834 588.29077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06800835 588.29077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -06800836 588.29077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06800837 588.29077148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -06800838 588.29083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06800839 588.29083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -06800840 588.29083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06800841 588.29083252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -06800842 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06800843 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -06800844 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06800845 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -06800846 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06800847 588.29089355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -06800848 588.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06800849 588.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -06800850 588.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06800851 588.29095459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -06800852 588.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06800853 588.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -06800854 588.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06800855 588.29101563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -06800856 588.29107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06800857 588.29107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -06800858 588.29107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06800859 588.29107666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -06800860 588.29113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06800861 588.29113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -06800862 588.29113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06800863 588.29113770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -06800864 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06800865 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -06800866 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06800867 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -06800868 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06800869 588.29119873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -06800870 588.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06800871 588.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -06800872 588.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06800873 588.29125977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -06811162 588.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be68 -06811163 588.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be68 -06811164 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be78 -06811165 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be78 -06811166 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be88 -06811167 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be88 -06811168 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be98 -06811169 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be98 -06811170 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea8 -06811171 588.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bea8 -06811172 588.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb8 -06811173 588.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1beb8 -06811174 588.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec8 -06811175 588.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bec8 -06811176 588.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed8 -06811177 588.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bed8 -06811178 588.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee8 -06811179 588.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bee8 -06811180 588.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef8 -06811181 588.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bef8 -06811182 588.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf08 -06811183 588.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf08 -06811184 588.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf18 -06811185 588.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf18 -06811186 588.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf28 -06811187 588.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf28 -06811188 588.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf38 -06811189 588.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf38 -06811190 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf48 -06811191 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf48 -06811192 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf58 -06811193 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf58 -06811194 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf68 -06811195 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf68 -06811196 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf78 -06811197 588.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf78 -06811198 588.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf88 -06811199 588.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf88 -06811200 588.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf98 -06811201 588.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf98 -06811202 588.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa8 -06811203 588.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfa8 -06811204 588.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb8 -06811205 588.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bfb8 -06814502 588.48571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -06814503 588.48571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -06814504 588.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -06814505 588.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -06814506 588.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -06814507 588.48577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -06814508 588.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -06814509 588.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -06814510 588.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -06814511 588.48583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -06814512 588.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -06814513 588.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -06814514 588.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -06814515 588.48590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -06814516 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -06814517 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -06814518 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -06814519 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -06814520 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -06814521 588.48596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -06814522 588.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -06814523 588.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -06814524 588.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -06814525 588.48602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -06814526 588.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -06814527 588.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -06814528 588.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -06814529 588.48608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -06814530 588.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -06814531 588.48614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -06814532 588.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -06814533 588.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -06814534 588.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -06814535 588.48620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -06814536 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -06814537 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -06814538 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -06814539 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -06814540 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -06814541 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -06814542 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -06814543 588.48626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -06814544 588.48632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22818 -06814545 588.48632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22818 -06817388 588.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -06817389 588.52703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x280f8 -06817390 588.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -06817391 588.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28108 -06817392 588.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28118 -06817393 588.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28118 -06817394 588.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28128 -06817395 588.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28128 -06817396 588.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28138 -06817397 588.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28138 -06817398 588.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28148 -06817399 588.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28148 -06817400 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28158 -06817401 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28158 -06817402 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28168 -06817403 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28168 -06817404 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28178 -06817405 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28178 -06817406 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28188 -06817407 588.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28188 -06817408 588.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28198 -06817409 588.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28198 -06817410 588.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a8 -06817411 588.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281a8 -06817412 588.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b8 -06817413 588.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281b8 -06817414 588.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c8 -06817415 588.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281c8 -06817416 588.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d8 -06817417 588.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281d8 -06817418 588.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e8 -06817419 588.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281e8 -06817420 588.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f8 -06817421 588.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x281f8 -06817422 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28208 -06817423 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28208 -06817424 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28218 -06817425 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28218 -06817426 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28228 -06817427 588.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28228 -06817428 588.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28238 -06817429 588.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28238 -06817430 588.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28248 -06817431 588.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28248 -06820120 588.56610107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -06820121 588.56616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -06820122 588.56616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -06820123 588.56616211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -06820124 588.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -06820125 588.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -06820126 588.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -06820127 588.56622314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -06820128 588.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -06820129 588.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -06820130 588.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -06820131 588.56628418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -06820132 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -06820133 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -06820134 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -06820135 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -06820136 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -06820137 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -06820138 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -06820139 588.56634521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6e8 -06820140 588.56640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -06820141 588.56640625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6f8 -06820142 588.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -06820143 588.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d708 -06820144 588.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -06820145 588.56646729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d718 -06820146 588.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -06820147 588.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d728 -06820148 588.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -06820149 588.56652832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d738 -06820150 588.56658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -06820151 588.56658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d748 -06820152 588.56658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -06820153 588.56658936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d758 -06820154 588.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -06820155 588.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d768 -06820156 588.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -06820157 588.56665039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d778 -06820158 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -06820159 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d788 -06820160 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d798 -06820161 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d798 -06820162 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a8 -06820163 588.56671143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d7a8 -06823328 588.61175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -06823329 588.61175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a98 -06823330 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -06823331 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33aa8 -06823332 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab8 -06823333 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ab8 -06823334 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac8 -06823335 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ac8 -06823336 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad8 -06823337 588.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ad8 -06823338 588.61187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae8 -06823339 588.61187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ae8 -06823340 588.61187744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af8 -06823341 588.61193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33af8 -06823342 588.61193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b08 -06823343 588.61193848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b08 -06823344 588.61199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b18 -06823345 588.61199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b18 -06823346 588.61199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b28 -06823347 588.61199951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b28 -06823348 588.61206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b38 -06823349 588.61206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b38 -06823350 588.61206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b48 -06823351 588.61206055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b48 -06823352 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b58 -06823353 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b58 -06823354 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b68 -06823355 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b68 -06823356 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b78 -06823357 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b78 -06823358 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b88 -06823359 588.61212158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b88 -06823360 588.61218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b98 -06823361 588.61218262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b98 -06823362 588.61224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba8 -06823363 588.61224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ba8 -06823364 588.61224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb8 -06823365 588.61224365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bb8 -06823366 588.61230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc8 -06823367 588.61230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bc8 -06823368 588.61230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd8 -06823369 588.61230469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33bd8 -06823370 588.61236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be8 -06823371 588.61236572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33be8 -06826206 588.65240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39488 -06826207 588.65240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39488 -06826208 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -06826209 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39498 -06826210 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -06826211 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394a8 -06826212 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -06826213 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394b8 -06826214 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -06826215 588.65246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394c8 -06826216 588.65252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -06826217 588.65252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394d8 -06826218 588.65252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -06826219 588.65252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394e8 -06826220 588.65258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -06826221 588.65258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x394f8 -06826222 588.65258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -06826223 588.65258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39508 -06826224 588.65264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -06826225 588.65264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39518 -06826226 588.65264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39528 -06826227 588.65270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39528 -06826228 588.65270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39538 -06826229 588.65270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39538 -06826230 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39548 -06826231 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39548 -06826232 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39558 -06826233 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39558 -06826234 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39568 -06826235 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39568 -06826236 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39578 -06826237 588.65277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39578 -06826238 588.65283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39588 -06826239 588.65283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39588 -06826240 588.65283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39598 -06826241 588.65283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39598 -06826242 588.65289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a8 -06826243 588.65289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395a8 -06826244 588.65289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b8 -06826245 588.65289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395b8 -06826246 588.65295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c8 -06826247 588.65295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395c8 -06826248 588.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d8 -06826249 588.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x395d8 -06829032 588.69274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd8 -06829033 588.69274902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecd8 -06829034 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece8 -06829035 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ece8 -06829036 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf8 -06829037 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ecf8 -06829038 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed08 -06829039 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed08 -06829040 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed18 -06829041 588.69281006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed18 -06829042 588.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed28 -06829043 588.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed28 -06829044 588.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed38 -06829045 588.69287109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed38 -06829046 588.69293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed48 -06829047 588.69293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed48 -06829048 588.69293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed58 -06829049 588.69293213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed58 -06829050 588.69299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed68 -06829051 588.69299316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed68 -06829052 588.69305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed78 -06829053 588.69305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed78 -06829054 588.69305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed88 -06829055 588.69305420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed88 -06829056 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed98 -06829057 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed98 -06829058 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda8 -06829059 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eda8 -06829060 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb8 -06829061 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edb8 -06829062 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc8 -06829063 588.69311523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edc8 -06829064 588.69317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd8 -06829065 588.69317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edd8 -06829066 588.69317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede8 -06829067 588.69317627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ede8 -06829068 588.69323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf8 -06829069 588.69323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3edf8 -06829070 588.69323730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee08 -06829071 588.69329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee08 -06829072 588.69329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -06829073 588.69329834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee18 -06829074 588.69335938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -06829075 588.69335938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee28 -06832092 588.73638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c78 -06832093 588.73638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c78 -06832094 588.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c88 -06832095 588.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c88 -06832096 588.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -06832097 588.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c98 -06832098 588.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -06832099 588.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ca8 -06832100 588.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -06832101 588.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cb8 -06832102 588.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -06832103 588.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cc8 -06832104 588.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -06832105 588.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cd8 -06832106 588.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -06832107 588.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ce8 -06832108 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -06832109 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44cf8 -06832110 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -06832111 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d08 -06832112 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -06832113 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d18 -06832114 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -06832115 588.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d28 -06832116 588.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -06832117 588.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d38 -06832118 588.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -06832119 588.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d48 -06832120 588.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d58 -06832121 588.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d58 -06832122 588.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d68 -06832123 588.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d68 -06832124 588.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d78 -06832125 588.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d78 -06832126 588.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d88 -06832127 588.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d88 -06832128 588.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d98 -06832129 588.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d98 -06832130 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da8 -06832131 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44da8 -06832132 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db8 -06832133 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44db8 -06832134 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc8 -06832135 588.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44dc8 -06839287 590.09472656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839288 590.09478760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839289 590.09484863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06839290 590.09484863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06839291 590.09497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839292 590.09497070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06839293 590.09503174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839294 590.09509277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06839295 590.78320313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -06839296 590.80230713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06839297 590.80230713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06839298 592.60192871 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839299 592.60198975 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839300 592.60205078 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -06839301 592.60205078 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -06839302 592.60229492 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839303 592.60229492 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06839304 592.60229492 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -06839305 592.60235596 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -06839306 592.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06839307 592.68402100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -06839308 592.68408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06839309 592.68408203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -06839310 592.68414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06839311 592.68414307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -06839312 592.68420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06839313 592.68420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -06839314 592.68420410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06839315 592.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -06839316 592.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06839317 592.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -06839318 592.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06839319 592.68426514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -06839320 592.68432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06839321 592.68432617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -06839322 592.68438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06839323 592.68438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -06839324 592.68438721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06839325 592.68444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -06839326 592.68444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06839327 592.68444824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -06839328 592.68450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06839329 592.68450928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -06839330 592.68457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06839331 592.68457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -06839332 592.68457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06839333 592.68457031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -06839334 592.68463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06839335 592.68463135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -06839336 592.68475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06839337 592.68475342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -06839338 592.68481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06839339 592.68481445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -06839340 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06839341 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -06839342 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06839343 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -06839344 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06839345 592.68487549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -06839346 592.68499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06839347 592.68499756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -06839348 592.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06839349 592.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -06839350 592.68505859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06839351 592.68511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -06839352 592.68511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06839353 592.68511963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -06839354 592.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06839355 592.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -06839356 592.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06839357 592.68518066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -06839358 592.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06839359 592.68524170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -06839360 592.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06839361 592.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -06839362 592.68530273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06839363 592.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -06839364 592.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06839365 592.68536377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -06839366 592.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06839367 592.68542480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -06839368 592.68548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06839369 592.68548584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -06839370 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06839371 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -06839372 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06839373 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -06839374 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06839375 592.68554688 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -06839376 592.68560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06839377 592.68560791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -06839378 592.68566895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06839379 592.68566895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -06839380 592.68572998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06839381 592.68572998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -06839382 592.68579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06839383 592.68579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -06839384 592.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06839385 592.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -06839386 592.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06839387 592.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -06839388 592.68603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06839389 592.68603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -06839390 592.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06839391 592.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -06839392 592.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06839393 592.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -06839394 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06839395 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -06839396 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06839397 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -06839398 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06839399 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -06839400 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06839401 592.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -06839402 592.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06839403 592.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -06839404 592.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06839405 592.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -06839406 592.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06839407 592.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -06839408 592.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06839409 592.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -06839410 592.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06839411 592.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -06839412 592.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06839413 592.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -06839414 592.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06839415 592.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -06839416 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06839417 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -06839418 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06839419 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -06839420 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06839421 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -06839422 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06839423 592.68646240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -06839424 592.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06839425 592.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -06839426 592.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06839427 592.68652344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -06839428 592.68658447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06839429 592.68658447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -06839430 592.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06839431 592.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -06839432 592.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06839433 592.68664551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -06839434 592.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06839435 592.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -06839436 592.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06839437 592.68670654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -06839438 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06839439 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -06839440 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06839441 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -06839442 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06839443 592.68676758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -06839444 592.68682861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06839445 592.68682861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -06839446 592.68688965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06839447 592.68688965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -06839448 592.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06839449 592.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -06839450 592.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06839451 592.68695068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -06839452 592.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06839453 592.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -06839454 592.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06839455 592.68701172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -06839456 592.68707275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06839457 592.68707275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -06839458 592.68707275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06839459 592.68707275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -06839460 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06839461 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -06839462 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06839463 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -06839464 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06839465 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -06839466 592.68713379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06839467 592.68719482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -06839468 592.68719482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06839469 592.68719482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -06839470 592.68725586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06839471 592.68725586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -06839472 592.68725586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06839473 592.68725586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -06839474 592.68731689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06839475 592.68731689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -06839476 592.68731689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06839477 592.68731689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -06839478 592.68737793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06839479 592.68737793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -06839480 592.68737793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06839481 592.68737793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -06839482 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06839483 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -06839484 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06839485 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -06839486 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06839487 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -06839488 592.68743896 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06839489 592.68750000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -06839490 592.68750000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06839491 592.68750000 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -06839492 592.68756104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06839493 592.68756104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -06839494 592.68756104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06839495 592.68756104 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -06839496 592.68762207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06839497 592.68762207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -06839498 592.68762207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06839499 592.68762207 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -06839500 592.68768311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06839501 592.68768311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -06839502 592.68768311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06839503 592.68768311 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -06839504 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06839505 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -06839506 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06839507 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -06839508 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06839509 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -06839510 592.68774414 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06839511 592.68780518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -06839512 592.68780518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06839513 592.68780518 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -06839514 592.68786621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06839515 592.68786621 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -06839516 592.68792725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06839517 592.68792725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -06839518 592.68792725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06839519 592.68792725 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -06839520 592.68798828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06839521 592.68798828 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -06839522 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06839523 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -06839524 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06839525 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -06839526 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06839527 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -06839528 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06839529 592.68804932 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -06839530 592.68811035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06839531 592.68811035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -06839532 592.68811035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06839533 592.68811035 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -06839534 592.68817139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06839535 592.68817139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -06839536 592.68817139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06839537 592.68817139 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -06839538 592.68823242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06839539 592.68823242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -06839540 592.68823242 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06839541 592.68829346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -06839542 592.68829346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06839543 592.68829346 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -06839544 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06839545 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -06839546 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06839547 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -06839548 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06839549 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -06839550 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06839551 592.68835449 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -06839552 592.68841553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06839553 592.68841553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -06839554 592.68841553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06839555 592.68841553 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -06839556 592.68847656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06839557 592.68847656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -06839558 592.68847656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06839559 592.68847656 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -06839560 592.68853760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06839561 592.68853760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -06839562 592.68853760 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06839563 592.68859863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -06839564 592.68859863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06839565 592.68859863 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -06839566 592.68865967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06839567 592.68865967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -06839568 592.68865967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06839569 592.68865967 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -06839570 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06839571 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -06839572 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06839573 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -06839574 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06839575 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -06839576 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06839577 592.68872070 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -06839578 592.68878174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06839579 592.68878174 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -06839580 592.68884277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06839581 592.68884277 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -06839582 592.68890381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06839583 592.68890381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -06839584 592.68890381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06839585 592.68890381 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -06839586 592.68896484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06839587 592.68896484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -06839588 592.68896484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06839589 592.68896484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -06839590 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06839591 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -06839592 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06839593 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -06839594 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06839595 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -06839596 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06839597 592.68902588 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -06839598 592.68908691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06839599 592.68908691 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -06839600 592.68914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06839601 592.68914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -06839602 592.68914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06839603 592.68914795 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -06839604 592.68920898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06839605 592.68920898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -06839606 592.68920898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06839607 592.68920898 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -06839608 592.68927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06839609 592.68927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -06839610 592.68927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06839611 592.68927002 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -06839612 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06839613 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -06839614 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06839615 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -06839616 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06839617 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -06839618 592.68933105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06839619 592.68939209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -06839620 592.68939209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06839621 592.68939209 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -06839622 592.68945313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06839623 592.68945313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -06839624 592.68945313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06839625 592.68945313 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -06839626 592.68951416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06839627 592.68951416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -06839628 592.68951416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06839629 592.68951416 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -06839630 592.68957520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06839631 592.68957520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -06839632 592.68957520 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06839633 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -06839634 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06839635 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -06839636 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06839637 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -06839638 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06839639 592.68963623 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -06839640 592.68969727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06839641 592.68969727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -06839642 592.68969727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06839643 592.68969727 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -06839644 592.68975830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06839645 592.68975830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -06839646 592.68975830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06839647 592.68975830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -06839648 592.68981934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06839649 592.68981934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -06839650 592.68988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06839651 592.68988037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -06839652 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06839653 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -06839654 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06839655 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -06839656 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06839657 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -06839658 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06839659 592.68994141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -06839660 592.69000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06839661 592.69000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -06839662 592.69000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06839663 592.69000244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -06839664 592.69006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06839665 592.69006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -06839666 592.69006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06839667 592.69006348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -06839668 592.69012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06839669 592.69012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -06839670 592.69012451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06839671 592.69018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -06839672 592.69018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06839673 592.69018555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -06839674 592.69024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06839675 592.69024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -06839676 592.69024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06839677 592.69024658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -06839678 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06839679 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -06839680 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06839681 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -06839682 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06839683 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -06839684 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06839685 592.69030762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -06839686 592.69036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06839687 592.69036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -06839688 592.69036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06839689 592.69036865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -06839690 592.69042969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06839691 592.69042969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -06839692 592.69042969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06839693 592.69049072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -06839694 592.69049072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06839695 592.69049072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -06839696 592.69055176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06839697 592.69055176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -06839698 592.69055176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06839699 592.69055176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -06839700 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06839701 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -06839702 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06839703 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -06839704 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06839705 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -06839706 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06839707 592.69061279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -06839708 592.69067383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06839709 592.69067383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -06839710 592.69067383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06839711 592.69067383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -06839712 592.69073486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06839713 592.69073486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -06839714 592.69073486 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06839715 592.69079590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -06839716 592.69079590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06839717 592.69079590 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -06839718 592.69085693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06839719 592.69085693 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -06839720 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06839721 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -06839722 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06839723 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -06839724 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06839725 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -06839726 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06839727 592.69091797 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -06839728 592.69097900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06839729 592.69097900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -06839730 592.69097900 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06839731 592.69104004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -06839732 592.69104004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06839733 592.69104004 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -06839734 592.69110107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06839735 592.69110107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -06839736 592.69110107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06839737 592.69110107 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -06839738 592.69116211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06839739 592.69116211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -06839740 592.69116211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06839741 592.69116211 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -06839742 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06839743 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -06839744 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06839745 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -06839746 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06839747 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -06839748 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06839749 592.69122314 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -06839750 592.69128418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06839751 592.69128418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -06839752 592.69128418 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06839753 592.69134521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -06839754 592.69134521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06839755 592.69134521 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -06839756 592.69140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06839757 592.69140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -06839758 592.69140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06839759 592.69140625 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -06839760 592.69146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06839761 592.69146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -06839762 592.69146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06839763 592.69146729 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -06839764 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06839765 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -06839766 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06839767 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -06839768 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06839769 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -06839770 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06839771 592.69152832 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -06839772 592.69158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06839773 592.69158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -06839774 592.69158936 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06839775 592.69165039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -06839776 592.69165039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06839777 592.69165039 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -06839778 592.69171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06839779 592.69171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -06839780 592.69171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06839781 592.69171143 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -06839782 592.69177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06839783 592.69177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -06839784 592.69177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06839785 592.69177246 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -06839786 592.69183350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06839787 592.69183350 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -06839788 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06839789 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -06839790 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06839791 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -06839792 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06839793 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -06839794 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06839795 592.69189453 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -06839796 592.69195557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06839797 592.69195557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -06839798 592.69195557 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06839799 592.69201660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -06839800 592.69201660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06839801 592.69201660 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -06839802 592.69207764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06839803 592.69207764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -06839804 592.69207764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06839805 592.69207764 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -06839806 592.69213867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06839807 592.69213867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -06839808 592.69213867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06839809 592.69213867 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -06839810 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06839811 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -06839812 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06839813 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -06839814 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06839815 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -06839816 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06839817 592.69219971 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -06839818 592.69226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06839819 592.69226074 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -06839820 592.69232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06839821 592.69232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -06839822 592.69232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06839823 592.69232178 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -06839824 592.69238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06839825 592.69238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -06839826 592.69238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06839827 592.69238281 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -06839828 592.69244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06839829 592.69244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -06839830 592.69244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06839831 592.69244385 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -06839832 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06839833 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -06839834 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06839835 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -06839836 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06839837 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -06839838 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06839839 592.69250488 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -06839840 592.69256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06839841 592.69256592 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -06839842 592.69262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06839843 592.69262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -06839844 592.69262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06839845 592.69262695 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -06839846 592.69268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06839847 592.69268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -06839848 592.69268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06839849 592.69268799 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -06839850 592.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06839851 592.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -06839852 592.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06839853 592.69274902 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -06839854 592.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06839855 592.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -06839856 592.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06839857 592.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -06839858 592.69281006 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06839859 592.69287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -06839860 592.69287109 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06839861 592.69293213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -06839862 592.69293213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06839863 592.69293213 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -06839864 592.69299316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06839865 592.69299316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -06839866 592.69299316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06839867 592.69299316 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -06839868 592.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06839869 592.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -06839870 592.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06839871 592.69305420 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -06839872 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06839873 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -06839874 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06839875 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -06839876 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06839877 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -06839878 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06839879 592.69311523 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -06839880 592.69317627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06839881 592.69317627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -06839882 592.69317627 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06839883 592.69323730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -06839884 592.69323730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06839885 592.69323730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -06839886 592.69329834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06839887 592.69329834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -06839888 592.69329834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06839889 592.69329834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -06839890 592.69335938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06839891 592.69335938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -06839892 592.69335938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06839893 592.69335938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -06839894 592.69342041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06839895 592.69342041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -06839896 592.69342041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06839897 592.69342041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -06839898 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06839899 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -06839900 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06839901 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -06839902 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06839903 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -06839904 592.69348145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06839905 592.69354248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -06839906 592.69354248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06839907 592.69354248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -06839908 592.69360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06839909 592.69360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -06839910 592.69360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06839911 592.69360352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -06839912 592.69366455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06839913 592.69366455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -06839914 592.69366455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06839915 592.69366455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -06839916 592.69372559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06839917 592.69372559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -06839918 592.69372559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06839919 592.69372559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -06839920 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06839921 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -06839922 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06839923 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -06839924 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06839925 592.69378662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -06839926 592.69384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06839927 592.69384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -06839928 592.69384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06839929 592.69384766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -06839930 592.69390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06839931 592.69390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -06839932 592.69390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06839933 592.69390869 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -06839934 592.69396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06839935 592.69396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -06839936 592.69396973 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06839937 592.69403076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -06839938 592.69403076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06839939 592.69403076 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -06839940 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06839941 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -06839942 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06839943 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -06839944 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06839945 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -06839946 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06839947 592.69409180 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -06839948 592.69415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06839949 592.69415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -06839950 592.69415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06839951 592.69415283 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -06839952 592.69421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06839953 592.69421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -06839954 592.69421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06839955 592.69421387 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -06839956 592.69427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06839957 592.69427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -06839958 592.69427490 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06839959 592.69433594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -06839960 592.69433594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06839961 592.69433594 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -06839962 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06839963 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -06839964 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06839965 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -06839966 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06839967 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -06839968 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06839969 592.69439697 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -06839970 592.69445801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06839971 592.69445801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -06839972 592.69445801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06839973 592.69445801 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -06839974 592.69451904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06839975 592.69451904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -06839976 592.69451904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06839977 592.69458008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -06839978 592.69458008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06839979 592.69458008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -06839980 592.69464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06839981 592.69464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -06839982 592.69464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06839983 592.69464111 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -06839984 592.69470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06839985 592.69470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -06839986 592.69470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06839987 592.69470215 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -06839988 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06839989 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -06839990 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06839991 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -06839992 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06839993 592.69476318 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -06839994 592.69482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06839995 592.69482422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -06839996 592.69488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06839997 592.69488525 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -06839998 592.69494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06839999 592.69494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -06840000 592.69494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06840001 592.69494629 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -06840002 592.69500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06840003 592.69500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -06840004 592.69500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06840005 592.69500732 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -06840006 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06840007 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -06840008 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06840009 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -06840010 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06840011 592.69506836 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -06840012 592.69512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06840013 592.69512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -06840014 592.69512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06840015 592.69512939 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -06840016 592.69519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06840017 592.69519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -06840018 592.69519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06840019 592.69519043 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -06840020 592.69525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06840021 592.69525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -06840022 592.69525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06840023 592.69525146 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -06840024 592.69531250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06840025 592.69531250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -06840026 592.69531250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06840027 592.69531250 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -06840028 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06840029 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -06840030 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06840031 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -06840032 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06840033 592.69537354 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -06840034 592.69543457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06840035 592.69543457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -06840036 592.69543457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06840037 592.69543457 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -06840038 592.69549561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06840039 592.69549561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -06840040 592.69549561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06840041 592.69549561 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -06840042 592.69555664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06840043 592.69555664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -06840044 592.69555664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06840045 592.69555664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -06840046 592.69561768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06840047 592.69561768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -06840048 592.69561768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06840049 592.69561768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -06840050 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06840051 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -06840052 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06840053 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -06840054 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06840055 592.69567871 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -06840056 592.69573975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06840057 592.69573975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -06840058 592.69573975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06840059 592.69573975 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -06840060 592.69580078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06840061 592.69580078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -06840062 592.69580078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06840063 592.69580078 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -06840064 592.69586182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06840065 592.69586182 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -06840066 592.69592285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06840067 592.69592285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -06840068 592.69592285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06840069 592.69592285 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -06840070 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06840071 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -06840072 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06840073 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -06840074 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06840075 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -06840076 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06840077 592.69598389 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -06840078 592.69604492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06840079 592.69604492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -06840080 592.69604492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06840081 592.69604492 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -06840082 592.69610596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06840083 592.69610596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -06840084 592.69610596 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06840085 592.69616699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -06840086 592.69616699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06840087 592.69616699 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -06840088 592.69622803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06840089 592.69622803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -06840090 592.69622803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06840091 592.69622803 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -06840092 592.69628906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06840093 592.69628906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -06840094 592.69628906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06840095 592.69628906 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -06840096 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06840097 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -06840098 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06840099 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -06840100 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06840101 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -06840102 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06840103 592.69635010 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -06840104 592.69641113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06840105 592.69641113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -06840106 592.69641113 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06840107 592.69647217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -06840108 592.69647217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06840109 592.69647217 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -06840110 592.69653320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06840111 592.69653320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -06840112 592.69653320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06840113 592.69653320 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -06840114 592.69659424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06840115 592.69659424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -06840116 592.69659424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06840117 592.69659424 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -06840118 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06840119 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -06840120 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06840121 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -06840122 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06840123 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -06840124 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06840125 592.69665527 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -06840126 592.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06840127 592.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -06840128 592.69671631 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06840129 592.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -06840130 592.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06840131 592.69677734 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -06840132 592.69683838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06840133 592.69683838 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -06840134 592.69689941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06840135 592.69689941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -06840136 592.69689941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06840137 592.69689941 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -06840138 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06840139 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -06840140 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06840141 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -06840142 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06840143 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -06840144 592.69696045 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06840145 592.69702148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -06840146 592.69702148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06840147 592.69702148 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -06840148 592.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06840149 592.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -06840150 592.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06840151 592.69708252 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -06840152 592.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06840153 592.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -06840154 592.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06840155 592.69714355 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -06840156 592.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06840157 592.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -06840158 592.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06840159 592.69720459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -06840160 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06840161 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -06840162 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06840163 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -06840164 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06840165 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -06840166 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06840167 592.69726563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -06840168 592.69732666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06840169 592.69732666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -06840170 592.69738770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06840171 592.69738770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -06840172 592.69738770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06840173 592.69738770 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -06840174 592.69744873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06840175 592.69744873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -06840176 592.69744873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06840177 592.69744873 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -06840178 592.69750977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06840179 592.69750977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -06840180 592.69750977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06840181 592.69750977 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -06840182 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06840183 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -06840184 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06840185 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -06840186 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06840187 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -06840188 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06840189 592.69757080 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -06840190 592.69763184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06840191 592.69763184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -06840192 592.69769287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06840193 592.69769287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -06840194 592.69769287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06840195 592.69769287 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -06840196 592.69775391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06840197 592.69775391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -06840198 592.69775391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06840199 592.69775391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -06840200 592.69781494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06840201 592.69781494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -06840202 592.69781494 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06840203 592.69787598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -06840204 592.69787598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06840205 592.69787598 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -06840206 592.69793701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06840207 592.69793701 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -06840208 592.69799805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06840209 592.69799805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -06840210 592.69799805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06840211 592.69799805 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -06840212 592.69805908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06840213 592.69805908 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -06840214 592.69812012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06840215 592.69812012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -06840216 592.69812012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06840217 592.69812012 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -06840218 592.69818115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06840219 592.69818115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -06840220 592.69818115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06840221 592.69818115 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -06840222 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06840223 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -06840224 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06840225 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -06840226 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06840227 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -06840228 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06840229 592.69824219 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -06840230 592.69830322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06840231 592.69830322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -06840232 592.69830322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06840233 592.69830322 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -06840234 592.69836426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06840235 592.69836426 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -06840236 592.69842529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06840237 592.69842529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -06840238 592.69842529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06840239 592.69842529 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -06840240 592.69848633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06840241 592.69848633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -06840242 592.69848633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06840243 592.69848633 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -06840244 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06840245 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -06840246 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06840247 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -06840248 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06840249 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -06840250 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06840251 592.69854736 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -06840252 592.69860840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06840253 592.69860840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -06840254 592.69860840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06840255 592.69860840 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -06840256 592.69866943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06840257 592.69866943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -06840258 592.69866943 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06840259 592.69873047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -06840260 592.69873047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06840261 592.69873047 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -06840262 592.69879150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06840263 592.69879150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -06840264 592.69879150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06840265 592.69879150 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -06840266 592.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06840267 592.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -06840268 592.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06840269 592.69885254 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -06840270 592.69891357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06840271 592.69891357 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -06840272 592.69897461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06840273 592.69897461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -06840274 592.69897461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06840275 592.69897461 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -06840276 592.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06840277 592.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -06840278 592.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06840279 592.69903564 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -06840280 592.69909668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06840281 592.69909668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -06840282 592.69909668 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06840283 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -06840284 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06840285 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -06840286 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06840287 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -06840288 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06840289 592.69915771 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -06840290 592.69921875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06840291 592.69921875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -06840292 592.69921875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06840293 592.69921875 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -06840294 592.69927979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06840295 592.69927979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -06840296 592.69927979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06840297 592.69927979 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -06840298 592.69934082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06840299 592.69934082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -06840300 592.69934082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06840301 592.69934082 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -06840302 592.69940186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06840303 592.69940186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -06840304 592.69940186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06840305 592.69940186 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -06840306 592.69946289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06840307 592.69946289 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -06840308 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06840309 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -06840310 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06840311 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -06840312 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06840313 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -06840314 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06840315 592.69952393 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -06840316 592.69958496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06840317 592.69958496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -06840318 592.69958496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06840319 592.69958496 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -06840320 592.69964600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06840321 592.69964600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -06840322 592.69964600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06840323 592.69964600 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -06840324 592.69970703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06840325 592.69970703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -06840326 592.69970703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06840327 592.69970703 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -06840328 592.69976807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06840329 592.69976807 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -06840330 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06840331 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -06840332 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06840333 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -06840334 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06840335 592.69982910 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -06840336 592.69989014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06840337 592.69989014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -06840338 592.69989014 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06840339 592.69995117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -06840340 592.69995117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06840341 592.69995117 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -06840342 592.70001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06840343 592.70001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -06840344 592.70001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06840345 592.70001221 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -06840346 592.70007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06840347 592.70007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -06840348 592.70007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06840349 592.70007324 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -06840350 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06840351 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -06840352 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06840353 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -06840354 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06840355 592.70013428 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -06840356 592.70019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06840357 592.70019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -06840358 592.70019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06840359 592.70019531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -06840360 592.70025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06840361 592.70025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -06840362 592.70025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06840363 592.70025635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -06840364 592.70031738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06840365 592.70031738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -06840366 592.70031738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06840367 592.70031738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -06840368 592.70037842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06840369 592.70037842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -06840370 592.70037842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06840371 592.70037842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -06840372 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06840373 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -06840374 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06840375 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -06840376 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06840377 592.70043945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -06840378 592.70050049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06840379 592.70050049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -06840380 592.70050049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06840381 592.70050049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -06840382 592.70056152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06840383 592.70056152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -06840384 592.70056152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06840385 592.70056152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -06840386 592.70062256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06840387 592.70062256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -06840388 592.70062256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06840389 592.70062256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -06840390 592.70068359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06840391 592.70068359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -06840392 592.70068359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06840393 592.70068359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -06840394 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06840395 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -06840396 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06840397 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -06840398 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06840399 592.70074463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -06840400 592.70080566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06840401 592.70080566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -06840402 592.70086670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06840403 592.70086670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -06840404 592.70092773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06840405 592.70092773 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -06840406 592.70104980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06840407 592.70104980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -06840408 592.70104980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06840409 592.70104980 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -06840410 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06840411 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -06840412 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06840413 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -06840414 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06840415 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -06840416 592.70111084 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06840417 592.70117188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -06840418 592.70117188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06840419 592.70117188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -06840420 592.70123291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06840421 592.70123291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -06840422 592.70123291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06840423 592.70123291 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -06840424 592.70129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06840425 592.70129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -06840426 592.70129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06840427 592.70129395 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -06840428 592.70135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06840429 592.70135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -06840430 592.70135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06840431 592.70135498 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -06840432 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06840433 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -06840434 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06840435 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -06840436 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06840437 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -06840438 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06840439 592.70141602 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -06840440 592.70147705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06840441 592.70147705 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -06840442 592.70153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06840443 592.70153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -06840444 592.70153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06840445 592.70153809 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -06840446 592.70159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06840447 592.70159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -06840448 592.70159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06840449 592.70159912 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -06840450 592.70166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06840451 592.70166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -06840452 592.70166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06840453 592.70166016 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -06840454 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06840455 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -06840456 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06840457 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -06840458 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06840459 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -06840460 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06840461 592.70172119 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -06840462 592.70178223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06840463 592.70178223 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -06840464 592.70184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06840465 592.70184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -06840466 592.70184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06840467 592.70184326 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -06840468 592.70190430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06840469 592.70190430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -06840470 592.70190430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06840471 592.70190430 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -06840472 592.70196533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06840473 592.70196533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -06840474 592.70196533 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06840475 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -06840476 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06840477 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -06840478 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06840479 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -06840480 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06840481 592.70202637 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -06840482 592.70208740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06840483 592.70208740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -06840484 592.70208740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06840485 592.70208740 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -06840486 592.70214844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06840487 592.70214844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -06840488 592.70214844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06840489 592.70214844 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -06840490 592.70220947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06840491 592.70220947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -06840492 592.70220947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06840493 592.70220947 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -06840494 592.70227051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06840495 592.70227051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -06840496 592.70227051 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06840497 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -06840498 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06840499 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -06840500 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06840501 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -06840502 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06840503 592.70233154 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -06840504 592.70239258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06840505 592.70239258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -06840506 592.70239258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06840507 592.70239258 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -06840508 592.70245361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06840509 592.70245361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -06840510 592.70245361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06840511 592.70245361 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -06840512 592.70251465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06840513 592.70251465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -06840514 592.70251465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06840515 592.70251465 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -06840516 592.70257568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06840517 592.70257568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -06840518 592.70257568 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06840519 592.70263672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -06840520 592.70263672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06840521 592.70263672 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -06840522 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06840523 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -06840524 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06840525 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -06840526 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06840527 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -06840528 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06840529 592.70269775 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -06840530 592.70275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06840531 592.70275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -06840532 592.70275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06840533 592.70275879 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -06840534 592.70288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06840535 592.70288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -06840536 592.70288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06840537 592.70288086 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -06840538 592.70294189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06840539 592.70294189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -06840540 592.70294189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06840541 592.70294189 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -06840542 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06840543 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -06840544 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06840545 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -06840546 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06840547 592.70300293 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -06840548 592.70306396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06840549 592.70306396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -06840550 592.70306396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06840551 592.70306396 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -06840552 592.70312500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06840553 592.70312500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -06840554 592.70312500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06840555 592.70312500 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -06840556 592.70318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06840557 592.70318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -06840558 592.70318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06840559 592.70318604 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -06840560 592.70324707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06840561 592.70324707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -06840562 592.70324707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06840563 592.70324707 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -06840564 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06840565 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -06840566 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06840567 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -06840568 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06840569 592.70330811 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -06840570 592.70336914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06840571 592.70336914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -06840572 592.70336914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06840573 592.70336914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -06840574 592.70343018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06840575 592.70343018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -06840576 592.70343018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06840577 592.70343018 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -06840578 592.70349121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06840579 592.70349121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -06840580 592.70349121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06840581 592.70349121 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -06840582 592.70355225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06840583 592.70355225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -06840584 592.70355225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06840585 592.70355225 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -06840586 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06840587 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -06840588 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06840589 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -06840590 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06840591 592.70361328 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -06840592 592.70367432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06840593 592.70367432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -06840594 592.70367432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06840595 592.70367432 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -06840596 592.70373535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06840597 592.70373535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -06840598 592.70373535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06840599 592.70373535 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -06840600 592.70379639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06840601 592.70379639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -06840602 592.70379639 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06840603 592.70385742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -06840604 592.70385742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06840605 592.70385742 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -06840606 592.70391846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06840607 592.70391846 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -06840608 592.70397949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06840609 592.70397949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -06840610 592.70397949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06840611 592.70397949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -06840612 592.70404053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06840613 592.70404053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -06840614 592.70410156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06840615 592.70410156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -06840616 592.70410156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06840617 592.70410156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -06840618 592.70416260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06840619 592.70416260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -06840620 592.70416260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06840621 592.70416260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -06840622 592.70422363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06840623 592.70422363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -06840624 592.70422363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06840625 592.70422363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -06840626 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06840627 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -06840628 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06840629 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -06840630 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06840631 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -06840632 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06840633 592.70428467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -06840634 592.70434570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06840635 592.70434570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -06840636 592.70440674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06840637 592.70440674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -06840638 592.70440674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06840639 592.70440674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -06840640 592.70446777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06840641 592.70446777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -06840642 592.70446777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06840643 592.70446777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -06840644 592.70452881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06840645 592.70452881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -06840646 592.70452881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06840647 592.70452881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -06840648 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06840649 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -06840650 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06840651 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -06840652 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06840653 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -06840654 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06840655 592.70458984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -06840656 592.70465088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06840657 592.70465088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -06840658 592.70471191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06840659 592.70471191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -06840660 592.70471191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06840661 592.70471191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -06840662 592.70477295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06840663 592.70477295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -06840664 592.70477295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06840665 592.70477295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -06840666 592.70483398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06840667 592.70483398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -06840668 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06840669 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -06840670 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06840671 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -06840672 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06840673 592.70489502 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -06840674 592.70495605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06840675 592.70495605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -06840676 592.70495605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06840677 592.70495605 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -06840678 592.70501709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06840679 592.70501709 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -06840680 592.70507813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06840681 592.70507813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -06840682 592.70507813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06840683 592.70507813 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -06840684 592.70513916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06840685 592.70513916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -06840686 592.70513916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06840687 592.70513916 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -06840688 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06840689 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -06840690 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06840691 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -06840692 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06840693 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -06840694 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06840695 592.70520020 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -06840696 592.70526123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06840697 592.70526123 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -06840698 592.70532227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06840699 592.70532227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -06840700 592.70532227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06840701 592.70532227 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -06840702 592.70538330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06840703 592.70538330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -06840704 592.70538330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06840705 592.70538330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -06840706 592.70544434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06840707 592.70544434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -06840708 592.70544434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06840709 592.70544434 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -06840710 592.70550537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06840711 592.70550537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -06840712 592.70550537 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06840713 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -06840714 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06840715 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -06840716 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06840717 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -06840718 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06840719 592.70556641 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -06840720 592.70562744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06840721 592.70562744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -06840722 592.70562744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06840723 592.70562744 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -06840724 592.70568848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06840725 592.70568848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -06840726 592.70568848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06840727 592.70568848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -06840728 592.70574951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06840729 592.70574951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -06840730 592.70574951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06840731 592.70574951 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -06840732 592.70581055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06840733 592.70581055 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -06840734 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06840735 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -06840736 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06840737 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -06840738 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06840739 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -06840740 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06840741 592.70587158 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -06840742 592.70593262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06840743 592.70593262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -06840744 592.70593262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06840745 592.70593262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -06840746 592.70599365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06840747 592.70599365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -06840748 592.70599365 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06840749 592.70605469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -06840750 592.70605469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06840751 592.70605469 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -06840752 592.70611572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06840753 592.70611572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -06840754 592.70611572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06840755 592.70611572 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -06840756 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06840757 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -06840758 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06840759 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -06840760 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06840761 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -06840762 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06840763 592.70617676 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -06840764 592.70623779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06840765 592.70623779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -06840766 592.70623779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06840767 592.70623779 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -06840768 592.70629883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06840769 592.70629883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -06840770 592.70629883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06840771 592.70635986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -06840772 592.70635986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06840773 592.70635986 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -06840774 592.70642090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06840775 592.70642090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -06840776 592.70642090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06840777 592.70642090 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -06840778 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06840779 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -06840780 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06840781 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -06840782 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06840783 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -06840784 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06840785 592.70648193 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -06840786 592.70654297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06840787 592.70654297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -06840788 592.70654297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06840789 592.70654297 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -06840790 592.70660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06840791 592.70660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -06840792 592.70660400 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06840793 592.70666504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -06840794 592.70666504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06840795 592.70666504 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -06840796 592.70672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06840797 592.70672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -06840798 592.70672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06840799 592.70672607 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -06840800 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06840801 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -06840802 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06840803 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -06840804 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06840805 592.70678711 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -06840806 592.70684814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06840807 592.70684814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -06840808 592.70684814 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06840809 592.70690918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -06840810 592.70690918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06840811 592.70690918 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -06840812 592.70697021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06840813 592.70697021 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -06840814 592.70703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06840815 592.70703125 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -06840816 592.70709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06840817 592.70709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -06840818 592.70709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06840819 592.70709229 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -06840820 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06840821 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -06840822 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06840823 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -06840824 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06840825 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -06840826 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06840827 592.70715332 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -06840828 592.70721436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06840829 592.70721436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -06840830 592.70721436 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06840831 592.70727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -06840832 592.70727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06840833 592.70727539 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -06840834 592.70733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06840835 592.70733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -06840836 592.70733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06840837 592.70733643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -06840838 592.70739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06840839 592.70739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -06840840 592.70739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06840841 592.70739746 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -06840842 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06840843 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -06840844 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06840845 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -06840846 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06840847 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -06840848 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06840849 592.70745850 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -06840850 592.70751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06840851 592.70751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -06840852 592.70751953 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06840853 592.70758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -06840854 592.70758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06840855 592.70758057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -06840856 592.70764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06840857 592.70764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -06840858 592.70764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06840859 592.70764160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -06840860 592.70770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06840861 592.70770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -06840862 592.70770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06840863 592.70770264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -06840864 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06840865 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -06840866 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06840867 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -06840868 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06840869 592.70776367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -06840870 592.70782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06840871 592.70782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -06840872 592.70782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06840873 592.70782471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -06840874 592.70788574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06840875 592.70788574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -06840876 592.70794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06840877 592.70794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -06840878 592.70794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06840879 592.70794678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -06840880 592.70800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06840881 592.70800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -06840882 592.70800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06840883 592.70800781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -06840884 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06840885 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -06840886 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06840887 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -06840888 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06840889 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -06840890 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06840891 592.70806885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -06840892 592.70812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06840893 592.70812988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -06840894 592.70819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06840895 592.70819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -06840896 592.70819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06840897 592.70819092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -06840898 592.70825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06840899 592.70825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -06840900 592.70825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06840901 592.70825195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -06840902 592.70831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06840903 592.70831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -06840904 592.70831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06840905 592.70831299 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -06840906 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06840907 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -06840908 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06840909 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -06840910 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06840911 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -06840912 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06840913 592.70837402 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -06840914 592.70843506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06840915 592.70843506 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -06840916 592.70849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06840917 592.70849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -06840918 592.70849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06840919 592.70849609 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -06840920 592.70855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06840921 592.70855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -06840922 592.70855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06840923 592.70855713 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -06840924 592.70861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06840925 592.70861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -06840926 592.70861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06840927 592.70861816 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -06840928 592.70867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06840929 592.70867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -06840930 592.70867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06840931 592.70867920 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -06840932 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06840933 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -06840934 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06840935 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -06840936 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06840937 592.70874023 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -06840938 592.70880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06840939 592.70880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -06840940 592.70880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06840941 592.70880127 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -06840942 592.70886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06840943 592.70886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -06840944 592.70886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06840945 592.70886230 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -06840946 592.70892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06840947 592.70892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -06840948 592.70892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06840949 592.70892334 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -06840950 592.70898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06840951 592.70898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -06840952 592.70898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06840953 592.70898438 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -06840954 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06840955 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -06840956 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06840957 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -06840958 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06840959 592.70904541 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -06840960 592.70910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06840961 592.70910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -06840962 592.70910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06840963 592.70910645 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -06840964 592.70916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06840965 592.70916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -06840966 592.70916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06840967 592.70916748 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -06840968 592.70922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06840969 592.70922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -06840970 592.70922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06840971 592.70922852 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -06840972 592.70928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06840973 592.70928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -06840974 592.70928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06840975 592.70928955 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -06840976 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06840977 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -06840978 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06840979 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -06840980 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06840981 592.70935059 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -06840982 592.70941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06840983 592.70941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -06840984 592.70941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06840985 592.70941162 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -06840986 592.70947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06840987 592.70947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -06840988 592.70947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06840989 592.70947266 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -06840990 592.70953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06840991 592.70953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -06840992 592.70953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06840993 592.70953369 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -06840994 592.70959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06840995 592.70959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -06840996 592.70959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06840997 592.70959473 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -06840998 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06840999 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -06841000 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06841001 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -06841002 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06841003 592.70965576 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -06841004 592.70971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06841005 592.70971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -06841006 592.70971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06841007 592.70971680 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -06841008 592.70977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06841009 592.70977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -06841010 592.70977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06841011 592.70977783 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -06841012 592.70983887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06841013 592.70983887 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -06841014 592.70989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06841015 592.70989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -06841016 592.70989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06841017 592.70989990 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -06841018 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06841019 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -06841020 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06841021 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -06841022 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06841023 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -06841024 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06841025 592.70996094 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -06841026 592.71002197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06841027 592.71002197 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -06841028 592.71008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06841029 592.71008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -06841030 592.71008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06841031 592.71008301 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -06841032 592.71014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06841033 592.71014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -06841034 592.71014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06841035 592.71014404 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -06841036 592.71020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06841037 592.71020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -06841038 592.71020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06841039 592.71020508 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -06841040 592.71026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06841041 592.71026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -06841042 592.71026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06841043 592.71026611 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -06841044 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06841045 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -06841046 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06841047 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -06841048 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06841049 592.71032715 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -06841050 592.71038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06841051 592.71038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -06841052 592.71038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06841053 592.71038818 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -06841054 592.71044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06841055 592.71044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -06841056 592.71044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06841057 592.71044922 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -06841058 592.71051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06841059 592.71051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -06841060 592.71051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06841061 592.71051025 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -06841062 592.71057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06841063 592.71057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -06841064 592.71057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06841065 592.71057129 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -06841066 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06841067 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -06841068 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06841069 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -06841070 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06841071 592.71063232 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -06841072 592.71069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06841073 592.71069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -06841074 592.71069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06841075 592.71069336 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -06841076 592.71075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06841077 592.71075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -06841078 592.71075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06841079 592.71075439 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -06841080 592.71087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06841081 592.71087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -06841082 592.71087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06841083 592.71087646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -06841084 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06841085 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -06841086 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06841087 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -06841088 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06841089 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -06841090 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06841091 592.71093750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -06841092 592.71099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06841093 592.71099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -06841094 592.71099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06841095 592.71099854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -06841096 592.71105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06841097 592.71105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -06841098 592.71105957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06841099 592.71112061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -06841100 592.71112061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06841101 592.71112061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -06841102 592.71118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06841103 592.71118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -06841104 592.71118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06841105 592.71118164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -06841106 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06841107 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -06841108 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06841109 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -06841110 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06841111 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -06841112 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06841113 592.71124268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -06841114 592.71130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06841115 592.71130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -06841116 592.71130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06841117 592.71130371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -06841118 592.71136475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06841119 592.71136475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -06841120 592.71136475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06841121 592.71142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -06841122 592.71142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06841123 592.71142578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -06841124 592.71148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06841125 592.71148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -06841126 592.71148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06841127 592.71148682 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -06841128 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06841129 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -06841130 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06841131 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -06841132 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06841133 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -06841134 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06841135 592.71154785 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -06841136 592.71160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06841137 592.71160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -06841138 592.71160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06841139 592.71160889 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -06841140 592.71166992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06841141 592.71166992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -06841142 592.71166992 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06841143 592.71173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -06841144 592.71173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06841145 592.71173096 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -06841146 592.71179199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06841147 592.71179199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -06841148 592.71179199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06841149 592.71179199 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -06841150 592.71185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06841151 592.71185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -06841152 592.71185303 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06841153 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -06841154 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06841155 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -06841156 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06841157 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -06841158 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06841159 592.71191406 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -06841160 592.71197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06841161 592.71197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -06841162 592.71197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06841163 592.71197510 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -06841164 592.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06841165 592.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -06841166 592.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06841167 592.71203613 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -06841168 592.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06841169 592.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -06841170 592.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06841171 592.71209717 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -06841172 592.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06841173 592.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -06841174 592.71215820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06841175 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -06841176 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06841177 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -06841178 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06841179 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -06841180 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06841181 592.71221924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -06841182 592.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06841183 592.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -06841184 592.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06841185 592.71228027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -06841186 592.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06841187 592.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -06841188 592.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06841189 592.71234131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -06841190 592.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06841191 592.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -06841192 592.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06841193 592.71240234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -06841194 592.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06841195 592.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -06841196 592.71246338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06841197 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -06841198 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06841199 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -06841200 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06841201 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -06841202 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06841203 592.71252441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -06841204 592.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06841205 592.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -06841206 592.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06841207 592.71258545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -06841208 592.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06841209 592.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -06841210 592.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06841211 592.71264648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -06841212 592.71270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06841213 592.71270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -06841214 592.71270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06841215 592.71270752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -06841216 592.71276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06841217 592.71276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -06841218 592.71276855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06841219 592.71282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -06841220 592.71282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06841221 592.71282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -06841222 592.71282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06841223 592.71282959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -06841224 592.71289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06841225 592.71289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -06841226 592.71289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06841227 592.71289063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -06841228 592.71295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06841229 592.71295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -06841230 592.71295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06841231 592.71295166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -06841232 592.71301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06841233 592.71301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -06841234 592.71301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06841235 592.71301270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -06841236 592.71307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06841237 592.71307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -06841238 592.71307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06841239 592.71307373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -06841240 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06841241 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -06841242 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06841243 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -06841244 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06841245 592.71313477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -06841246 592.71319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06841247 592.71319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -06841248 592.71319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06841249 592.71319580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -06841250 592.71325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06841251 592.71325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -06841252 592.71325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06841253 592.71325684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -06841254 592.71331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06841255 592.71331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -06841256 592.71331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06841257 592.71331787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -06841258 592.71337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06841259 592.71337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -06841260 592.71337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06841261 592.71337891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -06841262 592.71343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06841263 592.71343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -06841264 592.71343994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06841265 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -06841266 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06841267 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -06841268 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06841269 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -06841270 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06841271 592.71350098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -06841272 592.71356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06841273 592.71356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -06841274 592.71356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06841275 592.71356201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -06841276 592.71362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06841277 592.71362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -06841278 592.71362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06841279 592.71362305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -06841280 592.71368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06841281 592.71368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -06841282 592.71368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06841283 592.71368408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -06841284 592.71374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06841285 592.71374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -06841286 592.71374512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06841287 592.71380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -06841288 592.71380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06841289 592.71380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -06841290 592.71380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06841291 592.71380615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -06841292 592.71386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06841293 592.71386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -06841294 592.71386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06841295 592.71386719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -06841296 592.71392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06841297 592.71392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -06841298 592.71392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06841299 592.71392822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -06841300 592.71398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06841301 592.71398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -06841302 592.71398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06841303 592.71398926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -06841304 592.71405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06841305 592.71405029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -06841306 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06841307 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -06841308 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06841309 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -06841310 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06841311 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -06841312 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06841313 592.71411133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -06841314 592.71417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06841315 592.71417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -06841316 592.71417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06841317 592.71417236 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -06841318 592.71423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06841319 592.71423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -06841320 592.71423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06841321 592.71423340 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -06841322 592.71429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06841323 592.71429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -06841324 592.71429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06841325 592.71429443 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -06841326 592.71435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06841327 592.71435547 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -06841328 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06841329 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -06841330 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06841331 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -06841332 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06841333 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -06841334 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06841335 592.71441650 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -06841336 592.71447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06841337 592.71447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -06841338 592.71447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06841339 592.71447754 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -06841340 592.71453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06841341 592.71453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -06841342 592.71453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06841343 592.71453857 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -06841344 592.71459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06841345 592.71459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -06841346 592.71459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06841347 592.71459961 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -06841348 592.71466064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06841349 592.71466064 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -06841350 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06841351 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -06841352 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06841353 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -06841354 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06841355 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -06841356 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06841357 592.71472168 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -06841358 592.71478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06841359 592.71478271 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -06841360 592.71484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06841361 592.71484375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -06841362 592.71490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06841363 592.71490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -06841364 592.71490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06841365 592.71490479 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -06841366 592.71496582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06841367 592.71496582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -06841368 592.71496582 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06841369 592.71502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -06841370 592.71502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06841371 592.71502686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -06841372 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06841373 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -06841374 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06841375 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -06841376 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06841377 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -06841378 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06841379 592.71508789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -06841380 592.71514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06841381 592.71514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -06841382 592.71514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06841383 592.71514893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -06841384 592.71520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06841385 592.71520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -06841386 592.71520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06841387 592.71520996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -06841388 592.71527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06841389 592.71527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -06841390 592.71527100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06841391 592.71533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -06841392 592.71533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06841393 592.71533203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -06841394 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06841395 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -06841396 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06841397 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -06841398 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06841399 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -06841400 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06841401 592.71539307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -06841402 592.71545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06841403 592.71545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -06841404 592.71545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06841405 592.71545410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -06841406 592.71551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06841407 592.71551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -06841408 592.71551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06841409 592.71551514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -06841410 592.71557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06841411 592.71557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -06841412 592.71557617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06841413 592.71563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -06841414 592.71563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06841415 592.71563721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -06841416 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06841417 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -06841418 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06841419 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -06841420 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06841421 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -06841422 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06841423 592.71569824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -06841424 592.71575928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06841425 592.71575928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -06841426 592.71575928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06841427 592.71575928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -06841428 592.71588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06841429 592.71588135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -06841430 592.71594238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06841431 592.71594238 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -06841432 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06841433 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -06841434 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06841435 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -06841436 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06841437 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -06841438 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06841439 592.71600342 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -06841440 592.71606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06841441 592.71606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -06841442 592.71606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06841443 592.71606445 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -06841444 592.71612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06841445 592.71612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -06841446 592.71612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06841447 592.71612549 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -06841448 592.71618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06841449 592.71618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -06841450 592.71618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06841451 592.71624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -06841452 592.71624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06841453 592.71624756 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -06841454 592.71630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06841455 592.71630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -06841456 592.71630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06841457 592.71630859 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -06841458 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06841459 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -06841460 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06841461 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -06841462 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06841463 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -06841464 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06841465 592.71636963 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -06841466 592.71643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06841467 592.71643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -06841468 592.71643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06841469 592.71643066 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -06841470 592.71649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06841471 592.71649170 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -06841472 592.71655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06841473 592.71655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -06841474 592.71655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06841475 592.71655273 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -06841476 592.71661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06841477 592.71661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -06841478 592.71661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06841479 592.71661377 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -06841480 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06841481 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -06841482 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06841483 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -06841484 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06841485 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -06841486 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06841487 592.71667480 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -06841488 592.71673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06841489 592.71673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -06841490 592.71673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06841491 592.71673584 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -06841492 592.71685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06841493 592.71685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -06841494 592.71685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06841495 592.71685791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -06841496 592.71691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06841497 592.71691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -06841498 592.71691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06841499 592.71691895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -06841500 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06841501 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -06841502 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06841503 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -06841504 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06841505 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -06841506 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06841507 592.71697998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -06841508 592.71704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06841509 592.71704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -06841510 592.71704102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06841511 592.71710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -06841512 592.71710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06841513 592.71710205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -06841514 592.71716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06841515 592.71716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -06841516 592.71716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06841517 592.71716309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -06841518 592.71722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06841519 592.71722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -06841520 592.71722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06841521 592.71722412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -06841522 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06841523 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -06841524 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06841525 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -06841526 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06841527 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -06841528 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06841529 592.71728516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -06841530 592.71734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06841531 592.71734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -06841532 592.71734619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06841533 592.71740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -06841534 592.71740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06841535 592.71740723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -06841536 592.71746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06841537 592.71746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -06841538 592.71746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06841539 592.71746826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -06841540 592.71752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06841541 592.71752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -06841542 592.71752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06841543 592.71752930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -06841544 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06841545 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -06841546 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06841547 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -06841548 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06841549 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -06841550 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06841551 592.71759033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -06841552 592.71765137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06841553 592.71765137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -06841554 592.71765137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06841555 592.71771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -06841556 592.71771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06841557 592.71771240 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -06841558 592.71777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06841559 592.71777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -06841560 592.71777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06841561 592.71777344 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -06841562 592.71783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06841563 592.71783447 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -06841564 592.71789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06841565 592.71789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -06841566 592.71789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06841567 592.71789551 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -06841568 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06841569 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -06841570 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06841571 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -06841572 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06841573 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -06841574 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06841575 592.71795654 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -06841576 592.71801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06841577 592.71801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -06841578 592.71801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06841579 592.71801758 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -06841580 592.71807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06841581 592.71807861 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -06841582 592.71813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06841583 592.71813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -06841584 592.71813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06841585 592.71813965 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -06841586 592.71820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06841587 592.71820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -06841588 592.71820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06841589 592.71820068 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -06841590 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06841591 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -06841592 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06841593 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -06841594 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06841595 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -06841596 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06841597 592.71826172 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -06841598 592.71832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06841599 592.71832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -06841600 592.71832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06841601 592.71832275 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -06841602 592.71838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06841603 592.71838379 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -06841604 592.71844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06841605 592.71844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -06841606 592.71844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06841607 592.71844482 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -06841608 592.71850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06841609 592.71850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -06841610 592.71850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06841611 592.71850586 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -06841612 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06841613 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -06841614 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06841615 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -06841616 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06841617 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -06841618 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06841619 592.71856689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -06841620 592.71862793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06841621 592.71862793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -06841622 592.71862793 [vmhook-eac [c08347288 721.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -08347289 721.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437d0 -08347290 721.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -08347291 721.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437e0 -08347292 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -08347293 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x437f0 -08347294 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -08347295 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43800 -08347296 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -08347297 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43810 -08347298 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -08347299 721.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43820 -08347300 721.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -08347301 721.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43830 -08347302 721.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -08347303 721.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43840 -08347304 721.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -08347305 721.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43850 -08347306 721.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -08347307 721.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43860 -08347308 721.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -08347309 721.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -08347310 721.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -08347311 721.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -08347312 721.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -08347313 721.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -08347314 721.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -08347315 721.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -08347316 721.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -08347317 721.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -08347318 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -08347319 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -08347320 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -08347321 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -08347322 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -08347323 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -08347324 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -08347325 721.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -08347326 721.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -08347327 721.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -08347328 721.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -08347329 721.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -08347330 721.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -08347331 721.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -08350240 722.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -08350241 722.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49410 -08350242 722.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -08350243 722.01068115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49420 -08350244 722.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -08350245 722.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49430 -08350246 722.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -08350247 722.01074219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49440 -08350248 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -08350249 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49450 -08350250 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -08350251 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49460 -08350252 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -08350253 722.01080322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49470 -08350254 722.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -08350255 722.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49480 -08350256 722.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -08350257 722.01086426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49490 -08350258 722.01092529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -08350259 722.01092529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494a0 -08350260 722.01092529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -08350261 722.01092529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494b0 -08350262 722.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -08350263 722.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494c0 -08350264 722.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -08350265 722.01098633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494d0 -08350266 722.01104736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -08350267 722.01104736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494e0 -08350268 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -08350269 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x494f0 -08350270 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -08350271 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49500 -08350272 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -08350273 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49510 -08350274 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -08350275 722.01110840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49520 -08350276 722.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -08350277 722.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49530 -08350278 722.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -08350279 722.01116943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49540 -08350280 722.01123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -08350281 722.01123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49550 -08350282 722.01123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -08350283 722.01123047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49560 -08353078 722.05133057 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -08353079 722.05133057 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -08353080 722.05139160 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -08353081 722.05139160 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -08353082 722.05139160 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -08353083 722.05139160 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -08353084 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -08353085 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -08353086 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -08353087 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -08353088 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -08353089 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -08353090 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -08353091 722.05145264 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -08353092 722.05151367 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -08353093 722.05151367 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed30 -08353094 722.05151367 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -08353095 722.05151367 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed40 -08353096 722.05157471 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -08353097 722.05157471 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed50 -08353098 722.05157471 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -08353099 722.05157471 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed60 -08353100 722.05163574 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -08353101 722.05163574 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed70 -08353102 722.05169678 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -08353103 722.05169678 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed80 -08353104 722.05169678 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -08353105 722.05169678 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed90 -08353106 722.05175781 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -08353107 722.05175781 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda0 -08353108 722.05175781 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -08353109 722.05175781 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb0 -08353110 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -08353111 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc0 -08353112 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -08353113 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd0 -08353114 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -08353115 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ede0 -08353116 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -08353117 722.05181885 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edf0 -08353118 722.05187988 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -08353119 722.05187988 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee00 -08353120 722.05187988 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -08353121 722.05194092 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee10 -08355149 722.31384277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08355150 722.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08355151 722.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08355152 722.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08355153 722.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08355154 722.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08355155 722.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08355156 722.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08355157 722.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08355158 722.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08355159 722.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08355160 722.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08355161 722.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08355162 722.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08355163 722.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08355164 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08355165 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08355166 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08355167 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08355168 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08355169 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08355170 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08355171 722.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08355172 722.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08355173 722.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08355174 722.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08355175 722.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08355176 722.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08355177 722.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08355178 722.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08355179 722.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08355180 722.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08355181 722.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08355182 722.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08355183 722.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08355184 722.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08355185 722.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08355186 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08355187 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08355188 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08355189 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08355190 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08355191 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08355192 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08355193 722.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08355194 722.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08355195 722.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08355196 722.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08355197 722.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08355198 722.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08355199 722.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08355200 722.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08355201 722.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08355202 722.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08355203 722.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08355204 722.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08355205 722.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08355206 722.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08355207 722.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08355208 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08355209 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08355210 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08355211 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08355212 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08355213 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08355214 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08355215 722.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08355216 722.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08355217 722.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08355218 722.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08355219 722.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08355220 722.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08355221 722.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08355222 722.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08355223 722.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08355224 722.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08355225 722.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08355226 722.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08355227 722.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08355228 722.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08355229 722.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08355230 722.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08355231 722.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08355232 722.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08355233 722.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08355234 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08355235 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08355236 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08355237 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08355238 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08355239 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08355240 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08355241 722.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08355242 722.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08355243 722.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08355244 722.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08355245 722.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08355246 722.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08355247 722.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08355248 722.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08355249 722.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08355250 722.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08355251 722.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08355252 722.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08355253 722.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08355254 722.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08355255 722.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08355256 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08355257 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08355258 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08355259 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08355260 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08355261 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08355262 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08355263 722.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08355264 722.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08355265 722.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08355266 722.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08355267 722.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08355268 722.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08355269 722.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08355270 722.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08355271 722.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08355272 722.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08355273 722.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08355274 722.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08355275 722.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08355276 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08355277 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08355278 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08355279 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08355280 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08355281 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08355282 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08355283 722.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08355284 722.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08355285 722.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08355286 722.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08355287 722.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08355288 722.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08355289 722.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08355290 722.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08355291 722.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08355292 722.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08355293 722.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08355294 722.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08355295 722.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08355296 722.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08355297 722.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08355298 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08355299 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08355300 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08355301 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08355302 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08355303 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08355304 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08355305 722.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08355306 722.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08355307 722.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08355308 722.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08355309 722.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08355310 722.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08355311 722.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08355312 722.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08355313 722.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08355314 722.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08355315 722.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08355316 722.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08355317 722.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08355318 722.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08355319 722.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08355320 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08355321 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08355322 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08355323 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08355324 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08355325 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08355326 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08355327 722.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08355328 722.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08355329 722.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08355330 722.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08355331 722.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08355332 722.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08355333 722.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08355334 722.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08355335 722.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08355336 722.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08355337 722.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08355338 722.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08355339 722.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08355340 722.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08355341 722.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08355342 722.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08355343 722.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08355344 722.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08355345 722.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08355346 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08355347 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08355348 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08355349 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08355350 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08355351 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08355352 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08355353 722.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08355354 722.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08355355 722.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08355356 722.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08355357 722.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08355358 722.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08355359 722.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08355360 722.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08355361 722.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08355362 722.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08355363 722.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08355364 722.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08355365 722.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08355366 722.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08355367 722.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08355368 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08355369 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08355370 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08355371 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08355372 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08355373 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08355374 722.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08355375 722.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08355376 722.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08355377 722.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08355378 722.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08355379 722.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08355380 722.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08355381 722.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08355382 722.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08355383 722.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08355384 722.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08355385 722.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08355386 722.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08355387 722.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08355388 722.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08355389 722.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08355390 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08355391 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08355392 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08355393 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08355394 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08355395 722.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08355396 722.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08355397 722.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08355398 722.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08355399 722.80902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08355400 722.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08355401 722.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08355402 722.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08355403 722.80908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08355404 722.80914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08355405 722.80914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08355406 722.80914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08355407 722.80914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08355408 722.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08355409 722.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08355410 722.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08355411 722.80920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08355412 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08355413 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08355414 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08355415 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08355416 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08355417 722.80926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08355418 722.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08355419 722.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08355420 722.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08355421 722.80932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08355422 722.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08355423 722.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08355424 722.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08355425 722.80938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08355426 722.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08355427 722.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08355428 722.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08355429 722.80944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08355430 722.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08355431 722.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08355432 722.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08355433 722.80950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08355434 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08355435 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08355436 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08355437 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08355438 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08355439 722.80957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08355440 722.80963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08355441 722.80963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08355442 722.80963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08355443 722.80963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08355444 722.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08355445 722.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08355446 722.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08355447 722.80969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08355448 722.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08355449 722.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08355450 722.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08355451 722.80975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08355452 722.80981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08355453 722.80981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08355454 722.80981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08355455 722.80987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08355456 722.80987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08355457 722.80987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08355458 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08355459 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08355460 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08355461 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08355462 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08355463 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08355464 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08355465 722.80993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08355466 722.80999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08355467 722.80999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08355468 722.80999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08355469 722.80999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08355470 722.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08355471 722.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08355472 722.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08355473 722.81005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08355474 722.81011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08355475 722.81011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08355476 722.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08355477 722.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08355478 722.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08355479 722.81018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08355480 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08355481 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08355482 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08355483 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08355484 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08355485 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08355486 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08355487 722.81024170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08355488 722.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08355489 722.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08355490 722.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08355491 722.81030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08355492 722.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08355493 722.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08355494 722.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08355495 722.81036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08355496 722.81042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08355497 722.81042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08355498 722.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08355499 722.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08355500 722.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08355501 722.81048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08355502 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08355503 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08355504 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08355505 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08355506 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08355507 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08355508 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08355509 722.81054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08355510 722.81060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08355511 722.81060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08355512 722.81060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08355513 722.81060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08355514 722.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08355515 722.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08355516 722.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08355517 722.81066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08355518 722.81072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08355519 722.81072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08355520 722.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08355521 722.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08355522 722.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08355523 722.81079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08355524 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08355525 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08355526 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08355527 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08355528 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08355529 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08355530 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08355531 722.81085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08355532 722.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08355533 722.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08355534 722.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08355535 722.81091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08355536 722.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08355537 722.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08355538 722.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08355539 722.81097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08355540 722.81103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08355541 722.81103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08355542 722.81109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08355543 722.81109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08355544 722.81109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08355545 722.81109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08355546 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08355547 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08355548 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08355549 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08355550 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08355551 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08355552 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08355553 722.81115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08355554 722.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08355555 722.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08355556 722.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08355557 722.81121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08355558 722.81127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08355559 722.81127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08355560 722.81127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08355561 722.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08355562 722.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08355563 722.81134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08355564 722.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08355565 722.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08355566 722.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08355567 722.81140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08355568 722.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08355569 722.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08355570 722.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08355571 722.81146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08355572 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08355573 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08355574 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08355575 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08355576 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08355577 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08355578 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08355579 722.81152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08355580 722.81158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08355581 722.81158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08355582 722.81158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08355583 722.81164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08355584 722.81164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08355585 722.81164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08355586 722.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08355587 722.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08355588 722.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08355589 722.81170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08355590 722.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08355591 722.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08355592 722.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08355593 722.81176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08355594 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08355595 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08355596 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08355597 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08355598 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08355599 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08355600 722.81182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08355601 722.81188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08355602 722.81188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08355603 722.81188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08355604 722.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08355605 722.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08355606 722.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08355607 722.81195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08355608 722.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08355609 722.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08355610 722.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08355611 722.81201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08355612 722.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08355613 722.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08355614 722.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08355615 722.81207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08355616 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08355617 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08355618 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08355619 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08355620 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08355621 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08355622 722.81213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08355623 722.81219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08355624 722.81219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08355625 722.81219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08355626 722.81225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08355627 722.81225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08355628 722.81225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08355629 722.81225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08355630 722.81231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08355631 722.81231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08355632 722.81231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08355633 722.81231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08355634 722.81237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08355635 722.81237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08364078 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12738 -08364079 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12738 -08364080 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12748 -08364081 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12748 -08364082 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12758 -08364083 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12758 -08364084 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12768 -08364085 722.93157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12768 -08364086 722.93164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12778 -08364087 722.93164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12778 -08364088 722.93164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12788 -08364089 722.93164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12788 -08364090 722.93170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12798 -08364091 722.93170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12798 -08364092 722.93170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a8 -08364093 722.93170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127a8 -08364094 722.93176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b8 -08364095 722.93176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127b8 -08364096 722.93176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c8 -08364097 722.93182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127c8 -08364098 722.93182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d8 -08364099 722.93182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127d8 -08364100 722.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e8 -08364101 722.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127e8 -08364102 722.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f8 -08364103 722.93188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x127f8 -08364104 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12808 -08364105 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12808 -08364106 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12818 -08364107 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12818 -08364108 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12828 -08364109 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12828 -08364110 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12838 -08364111 722.93194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12838 -08364112 722.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12848 -08364113 722.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12848 -08364114 722.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12858 -08364115 722.93200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12858 -08364116 722.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12868 -08364117 722.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12868 -08364118 722.93206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12878 -08364119 722.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12878 -08364120 722.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12888 -08364121 722.93212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12888 -08367198 722.97607422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -08367199 722.97607422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -08367200 722.97613525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -08367201 722.97613525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -08367202 722.97619629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -08367203 722.97619629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -08367204 722.97619629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -08367205 722.97619629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -08367206 722.97625732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -08367207 722.97625732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -08367208 722.97625732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -08367209 722.97625732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -08367210 722.97631836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -08367211 722.97631836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -08367212 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -08367213 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -08367214 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -08367215 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -08367216 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18948 -08367217 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18948 -08367218 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18958 -08367219 722.97637939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18958 -08367220 722.97644043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18968 -08367221 722.97644043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18968 -08367222 722.97644043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18978 -08367223 722.97650146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18978 -08367224 722.97650146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18988 -08367225 722.97650146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18988 -08367226 722.97656250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18998 -08367227 722.97656250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18998 -08367228 722.97656250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -08367229 722.97656250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a8 -08367230 722.97662354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -08367231 722.97662354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b8 -08367232 722.97668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -08367233 722.97668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c8 -08367234 722.97668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -08367235 722.97668457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d8 -08367236 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e8 -08367237 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189e8 -08367238 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f8 -08367239 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x189f8 -08367240 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a08 -08367241 722.97674561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a08 -08369796 723.01361084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -08369797 723.01361084 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -08369798 723.01367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -08369799 723.01367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -08369800 723.01367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -08369801 723.01367188 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -08369802 723.01373291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d8 -08369803 723.01373291 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9d8 -08369804 723.01379395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e8 -08369805 723.01379395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9e8 -08369806 723.01379395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f8 -08369807 723.01379395 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9f8 -08369808 723.01385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da08 -08369809 723.01385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da08 -08369810 723.01385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da18 -08369811 723.01385498 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da18 -08369812 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da28 -08369813 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da28 -08369814 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da38 -08369815 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da38 -08369816 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da48 -08369817 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da48 -08369818 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da58 -08369819 723.01391602 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da58 -08369820 723.01397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da68 -08369821 723.01397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da68 -08369822 723.01397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da78 -08369823 723.01397705 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da78 -08369824 723.01403809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da88 -08369825 723.01403809 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da88 -08369826 723.01409912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da98 -08369827 723.01409912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da98 -08369828 723.01409912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa8 -08369829 723.01409912 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daa8 -08369830 723.01416016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab8 -08369831 723.01416016 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dab8 -08369832 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac8 -08369833 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dac8 -08369834 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad8 -08369835 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dad8 -08369836 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae8 -08369837 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dae8 -08369838 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf8 -08369839 723.01422119 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1daf8 -08372098 723.04632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08372099 723.04632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08372100 723.04638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08372101 723.04638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08372102 723.04644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08372103 723.04644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08372104 723.04644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08372105 723.04644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08372106 723.04650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08372107 723.04650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08372108 723.04650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08372109 723.04650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08372110 723.04656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08372111 723.04656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08372112 723.04656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08372113 723.04656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08372114 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -08372115 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -08372116 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -08372117 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -08372118 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -08372119 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -08372120 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -08372121 723.04663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -08372122 723.04669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -08372123 723.04669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -08372124 723.04675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -08372125 723.04675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -08372126 723.04675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -08372127 723.04675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -08372128 723.04681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -08372129 723.04681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -08372130 723.04681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -08372131 723.04681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -08372132 723.04687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -08372133 723.04687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -08372134 723.04687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -08372135 723.04687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -08372136 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c8 -08372137 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222c8 -08372138 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d8 -08372139 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222d8 -08372140 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e8 -08372141 723.04693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x222e8 -08374254 723.07702637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -08374255 723.07702637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x264f8 -08374256 723.07702637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -08374257 723.07702637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26508 -08374258 723.07708740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -08374259 723.07708740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26518 -08374260 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -08374261 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26528 -08374262 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -08374263 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26538 -08374264 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -08374265 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26548 -08374266 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -08374267 723.07714844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26558 -08374268 723.07720947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26568 -08374269 723.07720947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26568 -08374270 723.07720947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -08374271 723.07720947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26578 -08374272 723.07727051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -08374273 723.07727051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26588 -08374274 723.07727051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -08374275 723.07727051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26598 -08374276 723.07733154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -08374277 723.07733154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265a8 -08374278 723.07733154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -08374279 723.07739258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265b8 -08374280 723.07739258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -08374281 723.07739258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265c8 -08374282 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -08374283 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265d8 -08374284 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -08374285 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265e8 -08374286 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -08374287 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x265f8 -08374288 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -08374289 723.07745361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26608 -08374290 723.07751465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -08374291 723.07751465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26618 -08374292 723.07751465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26628 -08374293 723.07751465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26628 -08374294 723.07757568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -08374295 723.07757568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26638 -08374296 723.07757568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -08374297 723.07757568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x26648 -08376740 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a8 -08376741 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2a8 -08376742 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b8 -08376743 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2b8 -08376744 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c8 -08376745 723.11242676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2c8 -08376746 723.11248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d8 -08376747 723.11248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2d8 -08376748 723.11248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e8 -08376749 723.11248779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2e8 -08376750 723.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f8 -08376751 723.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b2f8 -08376752 723.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b308 -08376753 723.11254883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b308 -08376754 723.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b318 -08376755 723.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b318 -08376756 723.11260986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b328 -08376757 723.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b328 -08376758 723.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b338 -08376759 723.11267090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b338 -08376760 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b348 -08376761 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b348 -08376762 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b358 -08376763 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b358 -08376764 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b368 -08376765 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b368 -08376766 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b378 -08376767 723.11273193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b378 -08376768 723.11279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b388 -08376769 723.11279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b388 -08376770 723.11279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b398 -08376771 723.11279297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b398 -08376772 723.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a8 -08376773 723.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3a8 -08376774 723.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b8 -08376775 723.11285400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3b8 -08376776 723.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c8 -08376777 723.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3c8 -08376778 723.11291504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d8 -08376779 723.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3d8 -08376780 723.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -08376781 723.11297607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3e8 -08376782 723.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -08376783 723.11303711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b3f8 -08379020 723.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e8 -08379021 723.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9e8 -08379022 723.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f8 -08379023 723.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f9f8 -08379024 723.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa08 -08379025 723.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa08 -08379026 723.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa18 -08379027 723.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa18 -08379028 723.14581299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa28 -08379029 723.14581299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa28 -08379030 723.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa38 -08379031 723.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa38 -08379032 723.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa48 -08379033 723.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa48 -08379034 723.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa58 -08379035 723.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa58 -08379036 723.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa68 -08379037 723.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa68 -08379038 723.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa78 -08379039 723.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa78 -08379040 723.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa88 -08379041 723.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa88 -08379042 723.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa98 -08379043 723.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa98 -08379044 723.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa8 -08379045 723.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faa8 -08379046 723.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab8 -08379047 723.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fab8 -08379048 723.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac8 -08379049 723.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fac8 -08379050 723.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad8 -08379051 723.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fad8 -08379052 723.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae8 -08379053 723.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fae8 -08379054 723.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf8 -08379055 723.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2faf8 -08379056 723.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb08 -08379057 723.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb08 -08379058 723.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb18 -08379059 723.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb18 -08379060 723.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb28 -08379061 723.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb28 -08379062 723.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb38 -08379063 723.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb38 -08380830 723.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -08380831 723.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -08380832 723.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -08380833 723.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -08380834 723.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33298 -08380835 723.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33298 -08380836 723.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a8 -08380837 723.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332a8 -08380838 723.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b8 -08380839 723.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332b8 -08380840 723.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c8 -08380841 723.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332c8 -08380842 723.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d8 -08380843 723.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332d8 -08380844 723.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e8 -08380845 723.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332e8 -08380846 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f8 -08380847 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x332f8 -08380848 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33308 -08380849 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33308 -08380850 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33318 -08380851 723.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33318 -08380852 723.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33328 -08380853 723.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33328 -08380854 723.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33338 -08380855 723.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33338 -08380856 723.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33348 -08380857 723.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33348 -08380858 723.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33358 -08380859 723.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33358 -08380860 723.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33368 -08380861 723.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33368 -08380862 723.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33378 -08380863 723.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33378 -08380864 723.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33388 -08380865 723.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33388 -08380866 723.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33398 -08380867 723.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33398 -08380868 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a8 -08380869 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333a8 -08380870 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b8 -08380871 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333b8 -08380872 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c8 -08380873 723.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x333c8 -08383062 723.21057129 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -08383063 723.21057129 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37838 -08383064 723.21057129 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -08383065 723.21057129 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37848 -08383066 723.21063232 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -08383067 723.21063232 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37858 -08383068 723.21063232 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -08383069 723.21063232 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37868 -08383070 723.21069336 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37878 -08383071 723.21069336 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37878 -08383072 723.21069336 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37888 -08383073 723.21069336 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37888 -08383074 723.21075439 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37898 -08383075 723.21075439 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37898 -08383076 723.21075439 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a8 -08383077 723.21075439 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378a8 -08383078 723.21081543 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b8 -08383079 723.21081543 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378b8 -08383080 723.21081543 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c8 -08383081 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378c8 -08383082 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d8 -08383083 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378d8 -08383084 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e8 -08383085 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378e8 -08383086 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f8 -08383087 723.21087646 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x378f8 -08383088 723.21093750 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37908 -08383089 723.21093750 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37908 -08383090 723.21093750 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37918 -08383091 723.21093750 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37918 -08383092 723.21099854 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37928 -08383093 723.21099854 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37928 -08383094 723.21099854 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37938 -08383095 723.21099854 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37938 -08383096 723.21105957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37948 -08383097 723.21105957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37948 -08383098 723.21105957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37958 -08383099 723.21105957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37958 -08383100 723.21112061 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37968 -08383101 723.21112061 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37968 -08383102 723.21118164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37978 -08383103 723.21118164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37978 -08383104 723.21118164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37988 -08383105 723.21118164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37988 -08384932 723.23693848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -08384933 723.23693848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2a8 -08384934 723.23699951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -08384935 723.23699951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2b8 -08384936 723.23699951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -08384937 723.23699951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2c8 -08384938 723.23706055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -08384939 723.23706055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2d8 -08384940 723.23706055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -08384941 723.23706055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2e8 -08384942 723.23712158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -08384943 723.23712158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b2f8 -08384944 723.23712158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -08384945 723.23712158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b308 -08384946 723.23718262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -08384947 723.23718262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b318 -08384948 723.23718262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -08384949 723.23718262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b328 -08384950 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -08384951 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b338 -08384952 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -08384953 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b348 -08384954 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -08384955 723.23724365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b358 -08384956 723.23730469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -08384957 723.23730469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b368 -08384958 723.23730469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -08384959 723.23730469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b378 -08384960 723.23736572 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -08384961 723.23736572 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b388 -08384962 723.23736572 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -08384963 723.23736572 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b398 -08384964 723.23742676 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a8 -08384965 723.23742676 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3a8 -08384966 723.23742676 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b8 -08384967 723.23742676 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3b8 -08384968 723.23748779 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c8 -08384969 723.23748779 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3c8 -08384970 723.23748779 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -08384971 723.23748779 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3d8 -08384972 723.23754883 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -08384973 723.23754883 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3e8 -08384974 723.23754883 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -08384975 723.23760986 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b3f8 -08397046 723.78967285 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08397047 723.79022217 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08397048 724.33740234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08397049 724.35937500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397050 724.35937500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397051 725.49566650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397052 725.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397053 725.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397054 725.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08397055 725.49584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397056 725.49584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08397057 725.49591064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397058 725.49597168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08397059 726.22430420 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -08397060 726.22613525 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -08397061 726.36016846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08397062 726.38385010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397063 726.38391113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397064 728.00299072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397065 728.00299072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397066 728.00299072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397067 728.00299072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08397068 728.00317383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397069 728.00317383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08397070 728.00323486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08397071 728.00323486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08397072 728.38574219 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08397073 728.40747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397074 728.40747070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08397075 728.40777588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08397076 728.40777588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08397077 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08397078 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08397079 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08397080 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08397081 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08397082 728.40783691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08397083 728.40789795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08397084 728.40789795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08397085 728.40795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08397086 728.40795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08397087 728.40795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08397088 728.40795898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08397089 728.40802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08397090 728.40802002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08397091 728.40808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08397092 728.40808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08397093 728.40808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08397094 728.40808105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08397095 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08397096 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08397097 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08397098 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08397099 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08397100 728.40814209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08397101 728.40820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08397102 728.40820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08397103 728.40820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08397104 728.40820313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08397105 728.40826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08397106 728.40826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08397107 728.40826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08397108 728.40826416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08397109 728.40832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08397110 728.40832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08397111 728.40832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08397112 728.40832520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08397113 728.40838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08397114 728.40838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08397115 728.40838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08397116 728.40838623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08397117 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08397118 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08397119 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08397120 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08397121 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08397122 728.40844727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08397123 728.40850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08397124 728.40850830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08397125 728.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08397126 728.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08397127 728.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08397128 728.40856934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08397129 728.40863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08397130 728.40863037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08397131 728.40869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08397132 728.40869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08397133 728.40869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08397134 728.40869141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08397135 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08397136 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08397137 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08397138 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08397139 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08397140 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08397141 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08397142 728.40875244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08397143 728.40881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08397144 728.40881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08397145 728.40881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08397146 728.40881348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08397147 728.40887451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08397148 728.40887451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08397149 728.40893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08397150 728.40893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08397151 728.40893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08397152 728.40893555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08397153 728.40899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08397154 728.40899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08397155 728.40899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08397156 728.40899658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08397157 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08397158 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08397159 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08397160 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08397161 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08397162 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08397163 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08397164 728.40905762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08397165 728.40911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08397166 728.40911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08397167 728.40911865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08397168 728.40917969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08397169 728.40917969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08397170 728.40917969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08397171 728.40924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08397172 728.40924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08397173 728.40924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08397174 728.40924072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08397175 728.40930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08397176 728.40930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08397177 728.40930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08397178 728.40930176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08397179 728.40936279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08397180 728.40936279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08397181 728.40936279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08397182 728.40936279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08397183 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08397184 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08397185 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08397186 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08397187 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08397188 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08397189 728.40942383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08397190 728.40948486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08397191 728.40948486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08397192 728.40948486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08397193 728.40954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08397194 728.40954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08397195 728.40954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08397196 728.40954590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08397197 728.40960693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08397198 728.40960693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08397199 728.40966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08397200 728.40966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08397201 728.40966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08397202 728.40966797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08397203 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08397204 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08397205 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08397206 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08397207 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08397208 728.40972900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08397209 728.40979004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08397210 728.40979004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08397211 728.40979004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08397212 728.40985107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08397213 728.40985107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08397214 728.40985107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08397215 728.40991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08397216 728.40991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08397217 728.40991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08397218 728.40991211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08397219 728.40997314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08397220 728.40997314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08397221 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08397222 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08397223 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08397224 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08397225 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08397226 728.41003418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08397227 728.41009521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08397228 728.41015625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08397229 728.41015625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08397230 728.41015625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08397231 728.41021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08397232 728.41021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08397233 728.41021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08397234 728.41021729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08397235 728.41027832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08397236 728.41027832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08397237 728.41027832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08397238 728.41027832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08397239 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08397240 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08397241 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08397242 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08397243 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08397244 728.41033936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08397245 728.41040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08397246 728.41040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08397247 728.41040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08397248 728.41040039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08397249 728.41046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08397250 728.41046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08397251 728.41046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08397252 728.41046143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08397253 728.41052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08397254 728.41052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08397255 728.41052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08397256 728.41052246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08397257 728.41058350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08397258 728.41058350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08397259 728.41058350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08397260 728.41064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08397261 728.41064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08397262 728.41064453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08397263 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08397264 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08397265 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08397266 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08397267 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08397268 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08397269 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08397270 728.41070557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08397271 728.41076660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08397272 728.41076660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08397273 728.41076660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08397274 728.41082764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08397275 728.41082764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08397276 728.41082764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08397277 728.41088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08397278 728.41088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08397279 728.41088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08397280 728.41088867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08397281 728.41094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08397282 728.41094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08397283 728.41094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08397284 728.41094971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08397285 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08397286 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08397287 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08397288 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08397289 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08397290 728.41101074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08397291 728.41107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08397292 728.41107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08397293 728.41107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08397294 728.41107178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08397295 728.41113281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08397296 728.41113281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08397297 728.41113281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08397298 728.41113281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08397299 728.41119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08397300 728.41119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08397301 728.41119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08397302 728.41119385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08397303 728.41125488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08397304 728.41125488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08397305 728.41125488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08397306 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08397307 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08397308 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08397309 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08397310 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08397311 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08397312 728.41131592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08397313 728.41137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08397314 728.41137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08397315 728.41137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08397316 728.41137695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08397317 728.41143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08397318 728.41143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08397319 728.41143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08397320 728.41143799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08397321 728.41149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08397322 728.41149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08397323 728.41149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08397324 728.41149902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08397325 728.41156006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08397326 728.41156006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08397327 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08397328 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08397329 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08397330 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08397331 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08397332 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08397333 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08397334 728.41162109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08397335 728.41168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08397336 728.41168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08397337 728.41168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08397338 728.41168213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08397339 728.41174316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08397340 728.41174316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08397341 728.41174316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08397342 728.41174316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08397343 728.41180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08397344 728.41180420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08397345 728.41186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08397346 728.41186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08397347 728.41186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08397348 728.41186523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08397349 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08397350 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08397351 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08397352 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08397353 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08397354 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08397355 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08397356 728.41192627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08397357 728.41198730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08397358 728.41198730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08397359 728.41198730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08397360 728.41198730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08397361 728.41204834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08397362 728.41204834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08397363 728.41204834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08397364 728.41204834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08397365 728.41210938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08397366 728.41210938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08397367 728.41217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08397368 728.41217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08397369 728.41217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08397370 728.41217041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08397371 728.41223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08397372 728.41223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08397373 728.41223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08397374 728.41223145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08397375 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08397376 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08397377 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08397378 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08397379 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08397380 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08397381 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08397382 728.41229248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08397383 728.41235352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08397384 728.41235352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08397385 728.41241455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08397386 728.41241455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08397387 728.41247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08397388 728.41247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08397389 728.41247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08397390 728.41247559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08397391 728.41253662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08397392 728.41253662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08397393 728.41253662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08397394 728.41253662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08397395 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08397396 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08397397 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08397398 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08397399 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08397400 728.41259766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08397401 728.41265869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08397402 728.41265869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08397403 728.41271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08397404 728.41271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08397405 728.41271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08397406 728.41271973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08397407 728.41278076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08397408 728.41278076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08397409 728.41284180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08397410 728.41284180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08397411 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08397412 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08397413 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08397414 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08397415 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08397416 728.41290283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08397417 728.41296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08397418 728.41296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08397419 728.41296387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08397420 728.41302490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08397421 728.41302490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08397422 728.41302490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08397423 728.41308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08397424 728.41308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08397425 728.41308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08397426 728.41308594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08397427 728.41314697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08397428 728.41314697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08397429 728.41314697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08397430 728.41314697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08397431 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08397432 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08397433 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08397434 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08397435 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08397436 728.41320801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08397437 728.41326904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08397438 728.41326904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08397439 728.41326904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08397440 728.41333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08397441 728.41333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08397442 728.41333008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08397443 728.41339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08397444 728.41339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08397445 728.41339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08397446 728.41339111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08397447 728.41345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08397448 728.41345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08397449 728.41345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08397450 728.41345215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08397451 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08397452 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08397453 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08397454 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08397455 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08397456 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08397457 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08397458 728.41351318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08397459 728.41357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08397460 728.41357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08397461 728.41357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08397462 728.41357422 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08397463 728.41363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08397464 728.41363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08397465 728.41363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08397466 728.41363525 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08397467 728.41369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08397468 728.41369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08397469 728.41369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08397470 728.41369629 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08397471 728.41375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08397472 728.41375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08397473 728.41375732 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08397474 728.41381836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08397475 728.41381836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08397476 728.41381836 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08397477 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08397478 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08397479 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08397480 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08397481 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08397482 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08397483 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08397484 728.41387939 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08397485 728.41394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08397486 728.41394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08397487 728.41394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08397488 728.41394043 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08397489 728.41400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08397490 728.41400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08397491 728.41400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08397492 728.41400146 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08397493 728.41406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08397494 728.41406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08397495 728.41406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08397496 728.41406250 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08397497 728.41412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08397498 728.41412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08397499 728.41412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08397500 728.41412354 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08397501 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08397502 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08397503 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08397504 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08397505 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08397506 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08397507 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08397508 728.41418457 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08397509 728.41424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08397510 728.41424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08397511 728.41424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08397512 728.41424561 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08397513 728.41430664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08397514 728.41430664 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08397515 728.41436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08397516 728.41436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08397517 728.41436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08397518 728.41436768 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08397519 728.41442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08397520 728.41442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08397521 728.41442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08397522 728.41442871 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08397523 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08397524 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08397525 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08397526 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08397527 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08397528 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08397529 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08397530 728.41448975 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08397531 728.41455078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08397532 728.41455078 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08397533 728.41461182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08397534 728.41461182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08397535 728.41461182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08397536 728.41461182 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08397537 728.41467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08397538 728.41467285 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08397539 728.41473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08397540 728.41473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08397541 728.41473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08397542 728.41473389 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08397543 728.41479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08397544 728.41479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08397545 728.41479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08397546 728.41479492 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08397547 728.41485596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08397548 728.41485596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08397549 728.41485596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08397550 728.41485596 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08397551 728.41491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08397552 728.41491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08397553 728.41491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08397554 728.41491699 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08397555 728.41497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08397556 728.41497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08397557 728.41497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08397558 728.41497803 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08397559 728.41503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08397560 728.41503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08397561 728.41503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08397562 728.41503906 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08397563 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08397564 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08397565 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08397566 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08397567 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08397568 728.41510010 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08397569 728.41516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08397570 728.41516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08397571 728.41516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08397572 728.41516113 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08397573 728.41522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08397574 728.41522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08397575 728.41522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08397576 728.41522217 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08397577 728.41528320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08397578 728.41528320 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08397579 728.41534424 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08397580 728.41534424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08397581 728.41534424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08397582 728.41540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08397583 728.41540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08397584 728.41540527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08397585 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08397586 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08397587 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08397588 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08397589 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08397590 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08397591 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08397592 728.41546631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08397593 728.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08397594 728.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08397595 728.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08397596 728.41552734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08397597 728.41558838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08397598 728.41558838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08397599 728.41558838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08397600 728.41558838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08397601 728.41564941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08397602 728.41564941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08397603 728.41571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08397604 728.41571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08397605 728.41571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08397606 728.41571045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08397607 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08397608 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08397609 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08397610 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08397611 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08397612 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08397613 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08397614 728.41577148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08397615 728.41583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08397616 728.41583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08397617 728.41583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08397618 728.41583252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08397619 728.41589355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08397620 728.41589355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08397621 728.41589355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08397622 728.41595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08397623 728.41595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08397624 728.41595459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08397625 728.41601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08397626 728.41601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08397627 728.41601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08397628 728.41601563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08397629 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08397630 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08397631 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08397632 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08397633 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08397634 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08397635 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08397636 728.41607666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08397637 728.41613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08397638 728.41613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08397639 728.41613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08397640 728.41613770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08397641 728.41619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08397642 728.41619873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08397643 728.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08397644 728.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08397645 728.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08397646 728.41625977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08397647 728.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08397648 728.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08397649 728.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08397650 728.41632080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08397651 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08397652 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08397653 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08397654 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08397655 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08397656 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08397657 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08397658 728.41638184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08397659 728.41644287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08397660 728.41644287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08397661 728.41644287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08397662 728.41650391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08397663 728.41650391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08397664 728.41650391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08397665 728.41656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08397666 728.41656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08397667 728.41656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08397668 728.41656494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08397669 728.41662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08397670 728.41662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08397671 728.41662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08397672 728.41662598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08397673 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08397674 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08397675 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08397676 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08397677 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08397678 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08397679 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08397680 728.41668701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08397681 728.41674805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08397682 728.41674805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08397683 728.41680908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08397684 728.41680908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08397685 728.41680908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08397686 728.41680908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08397687 728.41687012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08397688 728.41687012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08397689 728.41687012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08397690 728.41687012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08397691 728.41693115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08397692 728.41693115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08397693 728.41693115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08397694 728.41693115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08397695 728.41699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08397696 728.41699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08397697 728.41699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08397698 728.41699219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08397699 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08397700 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08397701 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08397702 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08397703 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08397704 728.41705322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08397705 728.41711426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08397706 728.41711426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08397707 728.41711426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08397708 728.41711426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08397709 728.41717529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08397710 728.41717529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08397711 728.41717529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08397712 728.41717529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08397713 728.41723633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08397714 728.41723633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08397715 728.41723633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08397716 728.41723633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08397717 728.41729736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08397718 728.41729736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08397719 728.41729736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08397720 728.41729736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08397721 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08397722 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08397723 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08397724 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08397725 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08397726 728.41735840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08397727 728.41741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08397728 728.41741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08397729 728.41741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08397730 728.41741943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08397731 728.41748047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08397732 728.41748047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08397733 728.41748047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08397734 728.41748047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08397735 728.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08397736 728.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08397737 728.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08397738 728.41754150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08397739 728.41760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08397740 728.41760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08397741 728.41760254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08397742 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08397743 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08397744 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08397745 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08397746 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08397747 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08397748 728.41766357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08397749 728.41772461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08397750 728.41772461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08397751 728.41772461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08397752 728.41772461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08397753 728.41778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08397754 728.41778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08397755 728.41778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08397756 728.41778564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08397757 728.41784668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08397758 728.41784668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08397759 728.41790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08397760 728.41790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08397761 728.41790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08397762 728.41790771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08397763 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08397764 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08397765 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08397766 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08397767 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08397768 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08397769 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08397770 728.41796875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08397771 728.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08397772 728.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08397773 728.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08397774 728.41802979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08397775 728.41809082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08397776 728.41809082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08397777 728.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08397778 728.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08397779 728.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08397780 728.41815186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08397781 728.41821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08397782 728.41821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08397783 728.41821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08397784 728.41821289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08397785 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08397786 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08397787 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08397788 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08397789 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08397790 728.41827393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08397791 728.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08397792 728.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08397793 728.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08397794 728.41833496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08397795 728.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08397796 728.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08397797 728.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08397798 728.41839600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08397799 728.41845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08397800 728.41845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08397801 728.41845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08397802 728.41845703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08397803 728.41851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08397804 728.41851807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08397805 728.41857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08397806 728.41857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08397807 728.41857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08397808 728.41857910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08397809 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08397810 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08397811 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08397812 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08397813 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08397814 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08397815 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08397816 728.41864014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08397817 728.41870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08397818 728.41870117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08397819 728.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08397820 728.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08397821 728.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08397822 728.41876221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08397823 728.41882324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08397824 728.41882324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08397825 728.41882324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08397826 728.41882324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08397827 728.41888428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08397828 728.41888428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08397829 728.41888428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08397830 728.41888428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08397831 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08397832 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08397833 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08397834 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08397835 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08397836 728.41894531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08397837 728.41900635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08397838 728.41900635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08397839 728.41900635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08397840 728.41900635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08397841 728.41906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08397842 728.41906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08397843 728.41906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08397844 728.41906738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08397845 728.41912842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08397846 728.41912842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08397847 728.41912842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08397848 728.41912842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08397849 728.41918945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08397850 728.41918945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08397851 728.41918945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08397852 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08397853 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08397854 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08397855 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08397856 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08397857 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08397858 728.41925049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08397859 728.41931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08397860 728.41931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08397861 728.41931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08397862 728.41931152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08397863 728.41937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08397864 728.41937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08397865 728.41937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08397866 728.41937256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08397867 728.41943359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08397868 728.41943359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08397869 728.41943359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08397870 728.41949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08397871 728.41949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08397872 728.41949463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08397873 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08397874 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08397875 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08397876 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08397877 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08397878 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08397879 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08397880 728.41955566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08397881 728.41961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08397882 728.41961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08397883 728.41961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08397884 728.41961670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08397885 728.41967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08397886 728.41967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08397887 728.41967773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08397888 728.41973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08397889 728.41973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08397890 728.41973877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08397891 728.41979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08397892 728.41979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08397893 728.41979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08397894 728.41979980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08397895 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08397896 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08397897 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08397898 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08397899 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08397900 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08397901 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08397902 728.41986084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08397903 728.41992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08397904 728.41992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08397905 728.41992188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08397906 728.41998291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08397907 728.41998291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08397908 728.41998291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08397909 728.42004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08397910 728.42004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08397911 728.42004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08397912 728.42004395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08397913 728.42010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08397914 728.42010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08397915 728.42010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08397916 728.42010498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08397917 728.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08397918 728.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08397919 728.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08397920 728.42016602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08397921 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08397922 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08397923 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08397924 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08397925 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08397926 728.42022705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08397927 728.42028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08397928 728.42028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08397929 728.42028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08397930 728.42028809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08397931 728.42034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08397932 728.42034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08397933 728.42034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08397934 728.42034912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08397935 728.42041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08397936 728.42041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08397937 728.42041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08397938 728.42041016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08397939 728.42047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08397940 728.42047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08397941 728.42047119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08397942 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08397943 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08397944 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08397945 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08397946 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08397947 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08397948 728.42053223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08397949 728.42059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08397950 728.42059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08397951 728.42059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08397952 728.42059326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08397953 728.42065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08397954 728.42065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08397955 728.42065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08397956 728.42065430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08397957 728.42071533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08397958 728.42071533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08397959 728.42077637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08397960 728.42077637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08397961 728.42077637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08397962 728.42077637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08397963 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08397964 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08397965 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08397966 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08397967 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08397968 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08397969 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08397970 728.42083740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08397971 728.42089844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08397972 728.42089844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08397973 728.42089844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08397974 728.42089844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08397975 728.42095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08397976 728.42095947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08397977 728.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08397978 728.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08397979 728.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08397980 728.42102051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08397981 728.42108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08397982 728.42108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08397983 728.42108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08397984 728.42108154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08397985 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08397986 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08397987 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08397988 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08397989 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08397990 728.42114258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08397991 728.42120361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08397992 728.42120361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08397993 728.42120361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08397994 728.42120361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08397995 728.42126465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08397996 728.42126465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08397997 728.42126465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08397998 728.42126465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08397999 728.42132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08398000 728.42132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08398001 728.42132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08398002 728.42132568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08398003 728.42138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08398004 728.42138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08398005 728.42138672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08398006 728.42144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08398007 728.42144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08398008 728.42144775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08398009 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08398010 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08398011 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08398012 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08398013 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08398014 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08398015 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08398016 728.42150879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08398017 728.42156982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08398018 728.42156982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08398019 728.42156982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08398020 728.42156982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08398021 728.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08398022 728.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08398023 728.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08398024 728.42163086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08398025 728.42169189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08398026 728.42169189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08398027 728.42175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08398028 728.42175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08398029 728.42175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08398030 728.42175293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08398031 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08398032 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08398033 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08398034 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08398035 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08398036 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08398037 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08398038 728.42181396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08398039 728.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08398040 728.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08398041 728.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08398042 728.42187500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08398043 728.42193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08398044 728.42193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08398045 728.42193604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08398046 728.42199707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08398047 728.42199707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08398048 728.42199707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08398049 728.42205811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08398050 728.42205811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08398051 728.42205811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08398052 728.42205811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08398053 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08398054 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08398055 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08398056 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08398057 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08398058 728.42211914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08398059 728.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08398060 728.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08398061 728.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08398062 728.42218018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08398063 728.42224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08398064 728.42224121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08398065 728.42230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08398066 728.42230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08398067 728.42230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08398068 728.42230225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08398069 728.42236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08398070 728.42236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08398071 728.42236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08398072 728.42236328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08398073 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08398074 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08398075 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08398076 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08398077 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08398078 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08398079 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08398080 728.42242432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08398081 728.42248535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08398082 728.42248535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08398083 728.42248535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08398084 728.42254639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08398085 728.42254639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08398086 728.42254639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08398087 728.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08398088 728.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08398089 728.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08398090 728.42260742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08398091 728.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08398092 728.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08398093 728.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08398094 728.42266846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08398095 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08398096 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08398097 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08398098 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08398099 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08398100 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08398101 728.42272949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08398102 728.42279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08398103 728.42279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08398104 728.42279053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08398105 728.42285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08398106 728.42285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08398107 728.42285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08398108 728.42285156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08398109 728.42291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08398110 728.42291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08398111 728.42291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08398112 728.42291260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08398113 728.42297363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08398114 728.42297363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08398115 728.42297363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08398116 728.42297363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08398117 728.42303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08398118 728.42303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08398119 728.42303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08398120 728.42303467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08398121 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08398122 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08398123 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08398124 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08398125 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08398126 728.42309570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08398127 728.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08398128 728.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08398129 728.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08398130 728.42315674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08398131 728.42321777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08398132 728.42321777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08398133 728.42321777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08398134 728.42321777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08398135 728.42327881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08398136 728.42327881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08398137 728.42327881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08398138 728.42327881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08398139 728.42333984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08398140 728.42333984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08398141 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08398142 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08398143 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08398144 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08398145 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08398146 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08398147 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08398148 728.42340088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08398149 728.42346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08398150 728.42346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08398151 728.42346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08398152 728.42346191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08398153 728.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08398154 728.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08398155 728.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08398156 728.42352295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08398157 728.42358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08398158 728.42358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08398159 728.42358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08398160 728.42358398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08398161 728.42364502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08398162 728.42364502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08398163 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08398164 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08398165 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08398166 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08398167 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08398168 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08398169 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08398170 728.42370605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08398171 728.42376709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08398172 728.42376709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08398173 728.42376709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08398174 728.42376709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08398175 728.42382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08398176 728.42382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08398177 728.42382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08398178 728.42382813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08398179 728.42388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08398180 728.42388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08398181 728.42388916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08398182 728.42395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08398183 728.42395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08398184 728.42395020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08398185 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08398186 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08398187 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08398188 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08398189 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08398190 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08398191 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08398192 728.42401123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08398193 728.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08398194 728.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08398195 728.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08398196 728.42407227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08398197 728.42413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08398198 728.42413330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08398199 728.42419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08398200 728.42419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08398201 728.42419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08398202 728.42419434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08398203 728.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08398204 728.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08398205 728.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08398206 728.42425537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08398207 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08398208 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08398209 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08398210 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08398211 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08398212 728.42431641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08398213 728.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08398214 728.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08398215 728.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08398216 728.42437744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08398217 728.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08398218 728.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08398219 728.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08398220 728.42443848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08398221 728.42449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08398222 728.42449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08398223 728.42449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08398224 728.42449951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08398225 728.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08398226 728.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08398227 728.42456055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08398228 728.42462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08398229 728.42462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08398230 728.42462158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08398231 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08398232 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08398233 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08398234 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08398235 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08398236 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08398237 728.42468262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08398238 728.42474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08398239 728.42474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08398240 728.42474365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08398241 728.42480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08398242 728.42480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08398243 728.42480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08398244 728.42480469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08398245 728.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08398246 728.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08398247 728.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08398248 728.42486572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08398249 728.42492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08398250 728.42492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08398251 728.42492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08398252 728.42492676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08398253 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08398254 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08398255 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08398256 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08398257 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08398258 728.42498779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08398259 728.42504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08398260 728.42504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08398261 728.42504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08398262 728.42504883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08398263 728.42510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08398264 728.42510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08398265 728.42510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08398266 728.42510986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08398267 728.42517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08398268 728.42517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08398269 728.42517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08398270 728.42517090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08398271 728.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08398272 728.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08398273 728.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08398274 728.42523193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08398275 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08398276 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08398277 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08398278 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08398279 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08398280 728.42529297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08398281 728.42535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08398282 728.42535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08398283 728.42535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08398284 728.42535400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08398285 728.42541504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08398286 728.42541504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08398287 728.42541504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08398288 728.42541504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08398289 728.42547607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08398290 728.42547607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08398291 728.42547607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08398292 728.42547607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08398293 728.42553711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08398294 728.42553711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08398295 728.42553711 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08398296 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08398297 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08398298 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08398299 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08398300 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08398301 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08398302 728.42559814 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08398303 728.42565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08398304 728.42565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08398305 728.42565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08398306 728.42565918 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08398307 728.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08398308 728.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08398309 728.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08398310 728.42572021 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08398311 728.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08398312 728.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08398313 728.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08398314 728.42578125 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08398315 728.42584229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08398316 728.42584229 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08398317 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08398318 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08398319 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08398320 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08398321 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08398322 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08398323 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08398324 728.42590332 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08398325 728.42596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08398326 728.42596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08398327 728.42596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08398328 728.42596436 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08398329 728.42602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08398330 728.42602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08398331 728.42602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08398332 728.42602539 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08398333 728.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08398334 728.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08398335 728.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08398336 728.42608643 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08398337 728.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08398338 728.42614746 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08398339 728.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08398340 728.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08398341 728.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08398342 728.42620850 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08398343 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08398344 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08398345 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08398346 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08398347 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08398348 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08398349 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08398350 728.42626953 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08398351 728.42633057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08398352 728.42633057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08398353 728.42633057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08398354 728.42633057 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08398355 728.42639160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08398356 728.42639160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08398357 728.42639160 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08398358 728.42645264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08398359 728.42645264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08398360 728.42645264 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08398361 728.42651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08398362 728.42651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08398363 728.42651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08398364 728.42651367 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08398365 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08398366 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08398367 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08398368 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08398369 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08398370 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08398371 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08398372 728.42657471 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08398373 728.42663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08398374 728.42663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08398375 728.42663574 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08398376 728.42669678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08398377 728.42669678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08398378 728.42669678 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08398379 728.42675781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08398380 728.42675781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08398381 728.42675781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08398382 728.42675781 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08398383 728.42681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08398384 728.42681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08398385 728.42681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08398386 728.42681885 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08398387 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08398388 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08398389 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08398390 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08398391 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08398392 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08398393 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08398394 728.42687988 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08398395 728.42694092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08398396 728.42694092 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08398397 728.42700195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08398398 728.42700195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08398399 728.42700195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08398400 728.42700195 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08398401 728.42706299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08398402 728.42706299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08398403 728.42706299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08398404 728.42706299 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08398405 728.42712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08398406 728.42712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08398407 728.42712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08398408 728.42712402 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08398409 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08398410 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08398411 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08398412 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08398413 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08398414 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08398415 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08398416 728.42718506 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08398417 728.42724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08398418 728.42724609 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08398419 728.42730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08398420 728.42730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08398421 728.42730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08398422 728.42730713 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08398423 728.42736816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08398424 728.42736816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08398425 728.42736816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08398426 728.42736816 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08398427 728.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08398428 728.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08398429 728.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08398430 728.42742920 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08398431 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08398432 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08398433 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08398434 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08398435 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08398436 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08398437 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08398438 728.42749023 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08398439 728.42755127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08398440 728.42755127 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08398441 728.42761230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08398442 728.42761230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08398443 728.42761230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08398444 728.42761230 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08398445 728.42767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08398446 728.42767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08398447 728.42767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08398448 728.42767334 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08398449 728.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08398450 728.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08398451 728.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08398452 728.42773438 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08398453 728.42779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08398454 728.42779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08398455 728.42779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08398456 728.42779541 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08398457 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08398458 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08398459 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08398460 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08398461 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08398462 728.42785645 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08398463 728.42791748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08398464 728.42791748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08398465 728.42791748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08398466 728.42791748 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08398467 728.42797852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08398468 728.42797852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08398469 728.42797852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08398470 728.42797852 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08398471 728.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08398472 728.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08398473 728.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08398474 728.42803955 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08398475 728.42810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08398476 728.42810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08398477 728.42810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08398478 728.42810059 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08398479 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08398480 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08398481 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08398482 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08398483 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08398484 728.42816162 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08398485 728.42822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08398486 728.42822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08398487 728.42822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08398488 728.42822266 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08398489 728.42828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08398490 728.42828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08398491 728.42828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08398492 728.42828369 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08398493 728.42834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08398494 728.42834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08398495 728.42834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08398496 728.42834473 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08398497 728.42840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08398498 728.42840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08398499 728.42840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08398500 728.42840576 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08398501 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08398502 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08398503 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08398504 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08398505 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08398506 728.42846680 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08398507 728.42852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08398508 728.42852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08398509 728.42852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08398510 728.42852783 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08398511 728.42858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08398512 728.42858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08398513 728.42858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08398514 728.42858887 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08398515 728.42864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08398516 728.42864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08398517 728.42864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08398518 728.42864990 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08398519 728.42871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08398520 728.42871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08398521 728.42871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08398522 728.42871094 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08398523 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08398524 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08398525 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08398526 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08398527 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08398528 728.42877197 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08398529 728.42883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08398530 728.42883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08398531 728.42883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08398532 728.42883301 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08398533 728.42889404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08398534 728.42889404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08398535 728.42889404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08398536 728.42889404 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08398537 728.42895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08398538 728.42895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08398539 728.42895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08398540 728.42895508 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08398541 728.42901611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08398542 728.42901611 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08398543 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08398544 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08398545 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08398546 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08398547 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08398548 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08398549 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08398550 728.42907715 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08398551 728.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08398552 728.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08398553 728.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08398554 728.42913818 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08398555 728.42919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08398556 728.42919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08398557 728.42919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08398558 728.42919922 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08398559 728.42926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08398560 728.42926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08398561 728.42926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08398562 728.42926025 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08398563 728.42932129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08398564 728.42932129 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08398565 728.42938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08398566 728.42938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08398567 728.42938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08398568 728.42938232 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08398569 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08398570 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08398571 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08398572 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08398573 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08398574 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08398575 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08398576 728.42944336 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08398577 728.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08398578 728.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08398579 728.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08398580 728.42950439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08398581 728.42956543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08398582 728.42956543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08398583 728.42956543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08398584 728.42962646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08398585 728.42962646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08398586 728.42962646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08398587 728.42968750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08398588 728.42968750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08398589 728.42968750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08398590 728.42968750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08398591 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08398592 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08398593 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08398594 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08398595 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08398596 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08398597 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08398598 728.42974854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08398599 728.42980957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08398600 728.42980957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08398601 728.42980957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08398602 728.42980957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08398603 728.42987061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08398604 728.42987061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08398605 728.42987061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08398606 728.42993164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08398607 728.42993164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08398608 728.42993164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08398609 728.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08398610 728.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08398611 728.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08398612 728.42999268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08398613 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08398614 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08398615 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08398616 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08398617 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08398618 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08398619 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08398620 728.43005371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08398621 728.43011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08398622 728.43011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08398623 728.43011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08398624 728.43011475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08398625 728.43017578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08398626 728.43017578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08398627 728.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08398628 728.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08398629 728.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08398630 728.43023682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08398631 728.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08398632 728.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08398633 728.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08398634 728.43029785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08398635 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08398636 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08398637 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08398638 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08398639 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08398640 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08398641 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08398642 728.43035889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08398643 728.43041992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08398644 728.43041992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08398645 728.43041992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08398646 728.43041992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08398647 728.43048096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08398648 728.43048096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08398649 728.43054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08398650 728.43054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08398651 728.43054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08398652 728.43054199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08398653 728.43060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08398654 728.43060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08398655 728.43060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08398656 728.43060303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08398657 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08398658 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08398659 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08398660 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08398661 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08398662 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08398663 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08398664 728.43066406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08398665 728.43072510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08398666 728.43072510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08398667 728.43078613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08398668 728.43078613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08398669 728.43078613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08398670 728.43078613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08398671 728.43084717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08398672 728.43084717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08398673 728.43084717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08398674 728.43084717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08398675 728.43090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08398676 728.43090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08398677 728.43090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08398678 728.43090820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08398679 728.43096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08398680 728.43096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08398681 728.43096924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08398682 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08398683 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08398684 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08398685 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08398686 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08398687 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08398688 728.43103027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08398689 728.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08398690 728.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08398691 728.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08398692 728.43109131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08398693 728.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08398694 728.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08398695 728.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08398696 728.43115234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08398697 728.43121338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08398698 728.43121338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08398699 728.43127441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08398700 728.43127441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08398701 728.43127441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08398702 728.43127441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08398703 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08398704 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08398705 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08398706 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08398707 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08398708 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08398709 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08398710 728.43133545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08398711 728.43139648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08398712 728.43139648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08398713 728.43145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08398714 728.43145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08398715 728.43145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08398716 728.43145752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08398717 728.43151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08398718 728.43151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08398719 728.43151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08398720 728.43151855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08398721 728.43157959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08398722 728.43157959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08398723 728.43157959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08398724 728.43157959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08398725 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08398726 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08398727 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08398728 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08398729 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08398730 728.43164063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08398731 728.43170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08398732 728.43170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08398733 728.43170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08398734 728.43170166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08398735 728.43176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08398736 728.43176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08398737 728.43176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08398738 728.43176270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08398739 728.43182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08398740 728.43182373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08398741 728.43188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08398742 728.43188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08398743 728.43188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08398744 728.43188477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08398745 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08398746 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08398747 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08398748 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08398749 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08398750 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08398751 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08398752 728.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08398753 728.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08398754 728.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08398755 728.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08398756 728.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08398757 728.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08398758 728.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08398759 728.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08398760 728.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08398761 728.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08398762 728.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08398763 728.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08398764 728.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08398765 728.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08398766 728.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08398767 728.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08398768 728.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08398769 728.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08398770 728.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08398771 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08398772 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08398773 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08398774 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08398775 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08398776 728.43231201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08398777 728.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08398778 728.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08398779 728.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08398780 728.43237305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08398781 728.43243408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08398782 728.43243408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08398783 728.43243408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08398784 728.43243408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08398785 728.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08398786 728.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08398787 728.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08398788 728.43249512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08398789 728.43255615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08398790 728.43255615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08398791 728.43255615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08398792 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08398793 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08398794 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08398795 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08398796 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08398797 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08398798 728.43261719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08398799 728.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08398800 728.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08398801 728.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08398802 728.43267822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08398803 728.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08398804 728.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08398805 728.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08398806 728.43273926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08398807 728.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08398808 728.43280029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08398809 728.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08398810 728.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08398811 728.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08398812 728.43286133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08398813 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08398814 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08398815 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08398816 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08398817 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08398818 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08398819 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08398820 728.43292236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08398821 728.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08398822 728.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08398823 728.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08398824 728.43298340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08398825 728.43304443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08398826 728.43304443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08398827 728.43310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08398828 728.43310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08398829 728.43310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08398830 728.43310547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08398831 728.43316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08398832 728.43316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08398833 728.43316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08398834 728.43316650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08398835 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08398836 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08398837 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08398838 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08398839 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08398840 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08398841 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08398842 728.43322754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08398843 728.43328857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08398844 728.43328857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08398845 728.43334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08398846 728.43334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08398847 728.43334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08398848 728.43334961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08398849 728.43341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08398850 728.43341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08398851 728.43341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08398852 728.43341064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08398853 728.43347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08398854 728.43347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08398855 728.43347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08398856 728.43347168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08398857 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08398858 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08398859 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08398860 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08398861 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08398862 728.43353271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08398863 728.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08398864 728.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08398865 728.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08398866 728.43359375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08398867 728.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08398868 728.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08398869 728.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08398870 728.43365479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08398871 728.43371582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08398872 728.43371582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08398873 728.43371582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08398874 728.43371582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08398875 728.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08398876 728.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08398877 728.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08398878 728.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08398879 728.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08398880 728.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08398881 728.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08398882 728.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08398883 728.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08398884 728.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08398885 728.43395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08398886 728.43395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08398887 728.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08398888 728.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08398889 728.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08398890 728.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08398891 728.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08398892 728.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08398893 728.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08398894 728.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08398895 728.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08398896 728.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08398897 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08398898 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08398899 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08398900 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08398901 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08398902 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08398903 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08398904 728.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08398905 728.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08398906 728.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08398907 728.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08398908 728.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08398909 728.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08398910 728.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08398911 728.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08398912 728.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08398913 728.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08398914 728.43438721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08398915 728.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08398916 728.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08398917 728.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08398918 728.43444824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08398919 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08398920 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08398921 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08398922 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08398923 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08398924 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08398925 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08398926 728.43450928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08398927 728.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08398928 728.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08398929 728.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08398930 728.43457031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08398931 728.43463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08398932 728.43463135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08398933 728.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08398934 728.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08398935 728.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08398936 728.43469238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08398937 728.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08398938 728.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08398939 728.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08398940 728.43475342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08398941 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08398942 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08398943 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08398944 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08398945 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08398946 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08398947 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08398948 728.43481445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08398949 728.43487549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08398950 728.43487549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08398951 728.43493652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08398952 728.43493652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08398953 728.43493652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08398954 728.43493652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08398955 728.43499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08398956 728.43499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08398957 728.43499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08398958 728.43499756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08398959 728.43505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08398960 728.43505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08398961 728.43505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08398962 728.43505859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08398963 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08398964 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08398965 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08398966 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08398967 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08398968 728.43511963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08398969 728.43518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08398970 728.43518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08398971 728.43518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08398972 728.43518066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08398973 728.43524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08398974 728.43524170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08398975 728.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08398976 728.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08398977 728.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08398978 728.43530273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08398979 728.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08398980 728.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08398981 728.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08398982 728.43536377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08398983 728.43542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08398984 728.43542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08398985 728.43542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08398986 728.43542480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08398987 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08398988 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08398989 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08398990 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08398991 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08398992 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08398993 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08398994 728.43548584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08398995 728.43554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08398996 728.43554688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08398997 728.43560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08398998 728.43560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08398999 728.43560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08399000 728.43560791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08399001 728.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08399002 728.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08399003 728.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08399004 728.43566895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08399005 728.43572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08399006 728.43572998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08399007 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08399008 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08399009 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08399010 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08399011 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08399012 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08399013 728.43579102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08399014 728.43585205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08399015 728.43585205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08399016 728.43585205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08399017 728.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08399018 728.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08399019 728.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08399020 728.43591309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08399021 728.43597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08399022 728.43597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08399023 728.43597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08399024 728.43597412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08399025 728.43603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08399026 728.43603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08399027 728.43603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08399028 728.43603516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08399029 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08399030 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08399031 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08399032 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08399033 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08399034 728.43609619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08399035 728.43615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08399036 728.43615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08399037 728.43615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08399038 728.43615723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08399039 728.43621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08399040 728.43621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08399041 728.43621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08399042 728.43621826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08399043 728.43627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08399044 728.43627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08399045 728.43627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08399046 728.43627930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08399047 728.43634033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08399048 728.43634033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08399049 728.43634033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08399050 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08399051 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08399052 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08399053 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08399054 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08399055 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08399056 728.43640137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08399057 728.43646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08399058 728.43646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08399059 728.43646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08399060 728.43646240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08399061 728.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08399062 728.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08399063 728.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08399064 728.43652344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08399065 728.43658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08399066 728.43658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08399067 728.43658447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08399068 728.43664551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08399069 728.43664551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08399070 728.43664551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08399071 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08399072 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08399073 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08399074 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08399075 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08399076 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08399077 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08399078 728.43670654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08399079 728.43676758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08399080 728.43676758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08399081 728.43676758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08399082 728.43676758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08399083 728.43682861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08399084 728.43682861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08399085 728.43682861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08399086 728.43688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08399087 728.43688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08399088 728.43688965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08399089 728.43695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08399090 728.43695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08399091 728.43695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08399092 728.43695068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08399093 728.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08399094 728.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08399095 728.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08399096 728.43701172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08399097 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08399098 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08399099 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08399100 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08399101 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08399102 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08399103 728.43707275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08399104 728.43713379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08399105 728.43713379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08399106 728.43713379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08399107 728.43719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08399108 728.43719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08399109 728.43719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08399110 728.43719482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08399111 728.43725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08399112 728.43725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08399113 728.43725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08399114 728.43725586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08399115 728.43731689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08399116 728.43731689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08399117 728.43731689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08399118 728.43731689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08399119 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08399120 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08399121 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08399122 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08399123 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08399124 728.43737793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08399125 728.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08399126 728.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08399127 728.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08399128 728.43743896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08399129 728.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08399130 728.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08399131 728.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08399132 728.43750000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08399133 728.43756104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08399134 728.43756104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08399135 728.43756104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08399136 728.43762207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08399137 728.43762207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08399138 728.43762207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08399139 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08399140 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08399141 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08399142 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08399143 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08399144 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08399145 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08399146 728.43768311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08399147 728.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08399148 728.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08399149 728.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08399150 728.43774414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08399151 728.43780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08399152 728.43780518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08399153 728.43786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08399154 728.43786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08399155 728.43786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08399156 728.43786621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08399157 728.43792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08399158 728.43792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08399159 728.43792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08399160 728.43792725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08399161 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08399162 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08399163 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08399164 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08399165 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08399166 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08399167 728.43798828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08399168 728.43804932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08399169 728.43804932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08399170 728.43804932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08399171 728.43811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08399172 728.43811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08399173 728.43811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08399174 728.43811035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08399175 728.43817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08399176 728.43817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08399177 728.43817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08399178 728.43817139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08399179 728.43823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08399180 728.43823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08399181 728.43823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08399182 728.43823242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08399183 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08399184 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08399185 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08399186 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08399187 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08399188 728.43829346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08399189 728.43835449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08399190 728.43835449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08399191 728.43835449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08399192 728.43835449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08399193 728.43841553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08399194 728.43841553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08399195 728.43841553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08399196 728.43841553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08399197 728.43847656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08399198 728.43847656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08399199 728.43853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08399200 728.43853760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08399201 728.43859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08399202 728.43859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08399203 728.43859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08399204 728.43859863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08399205 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08399206 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08399207 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08399208 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08399209 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08399210 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08399211 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08399212 728.43865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08399213 728.43872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08399214 728.43872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08399215 728.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08399216 728.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08399217 728.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08399218 728.43878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08399219 728.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08399220 728.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08399221 728.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08399222 728.43884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08399223 728.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08399224 728.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08399225 728.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08399226 728.43890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08399227 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08399228 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08399229 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08399230 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08399231 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08399232 728.43896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08399233 728.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08399234 728.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08399235 728.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08399236 728.43902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08399237 728.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08399238 728.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08399239 728.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08399240 728.43908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08399241 728.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08399242 728.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08399243 728.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08399244 728.43914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08399245 728.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08399246 728.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08399247 728.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08399248 728.43920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08399249 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08399250 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08399251 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08399252 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08399253 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08399254 728.43927002 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08399255 728.43933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08399256 728.43933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08399257 728.43933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08399258 728.43933105 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08399259 728.43939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08399260 728.43939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08399261 728.43939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08399262 728.43939209 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08399263 728.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08399264 728.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08399265 728.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08399266 728.43945313 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08399267 728.43951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08399268 728.43951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08399269 728.43951416 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08399270 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08399271 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08399272 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08399273 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08399274 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08399275 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08399276 728.43957520 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08399277 728.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08399278 728.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08399279 728.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08399280 728.43963623 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08399281 728.43969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08399282 728.43969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08399283 728.43969727 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08399284 728.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08399285 728.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08399286 728.43975830 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08399287 728.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08399288 728.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08399289 728.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08399290 728.43981934 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08399291 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08399292 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08399293 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08399294 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08399295 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08399296 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08399297 728.43988037 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08399298 728.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08399299 728.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08399300 728.43994141 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08399301 728.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08399302 728.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08399303 728.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08399304 728.44000244 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08399305 728.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08399306 728.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08399307 728.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08399308 728.44006348 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08399309 728.44012451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08399310 728.44012451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08399311 728.44012451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08399312 728.44018555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08399313 728.44018555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08399314 728.44018555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08399315 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08399316 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08399317 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08399318 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08399319 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08399320 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08399321 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08399322 728.44024658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08399323 728.44030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08399324 728.44030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08399325 728.44030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08399326 728.44030762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08399327 728.44036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08399328 728.44036865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08399329 728.44042969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08399330 728.44042969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08399331 728.44042969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08399332 728.44042969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08399333 728.44049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08399334 728.44049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08399335 728.44049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08399336 728.44049072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08399337 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08399338 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08399339 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08399340 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08399341 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08399342 728.44055176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08399343 728.44061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08399344 728.44061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08399345 728.44061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08399346 728.44061279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08399347 728.44067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08399348 728.44067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08399349 728.44067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08399350 728.44067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08399351 728.44073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08399352 728.44073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08399353 728.44073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08399354 728.44073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08399355 728.44079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08399356 728.44079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08399357 728.44079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08399358 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08399359 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08399360 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08399361 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08399362 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08399363 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08399364 728.44085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08399365 728.44091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08399366 728.44091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08399367 728.44091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08399368 728.44091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08399369 728.44097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08399370 728.44097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08399371 728.44097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08399372 728.44097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08399373 728.44104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08399374 728.44104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08399375 728.44104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08399376 728.44110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08399377 728.44110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08399378 728.44110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08399379 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08399380 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08399381 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08399382 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08399383 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08399384 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08399385 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08399386 728.44116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08399387 728.44122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08399388 728.44122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08399389 728.44122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08399390 728.44122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08399391 728.44128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08399392 728.44128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08399393 728.44128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08399394 728.44134521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08399395 728.44134521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08399396 728.44134521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08399397 728.44140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08399398 728.44140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08399399 728.44140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08399400 728.44140625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08399401 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08399402 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08399403 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08399404 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08399405 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08399406 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08399407 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08399408 728.44146729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08399409 728.44152832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08399410 728.44152832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08399411 728.44158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08399412 728.44158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08399413 728.44158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08399414 728.44158936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08399415 728.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08399416 728.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08399417 728.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08399418 728.44165039 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08399419 728.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08399420 728.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08399421 728.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08399422 728.44171143 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08399423 728.44177246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08399424 728.44177246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08399425 728.44177246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08399426 728.44177246 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08399427 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08399428 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08399429 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08399430 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08399431 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08399432 728.44183350 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08399433 728.44189453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08399434 728.44189453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08399435 728.44189453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08399436 728.44189453 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08399437 728.44195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08399438 728.44195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08399439 728.44195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08399440 728.44195557 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08399441 728.44201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08399442 728.44201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08399443 728.44201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08399444 728.44201660 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08399445 728.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08399446 728.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08399447 728.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08399448 728.44207764 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08399449 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08399450 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08399451 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08399452 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08399453 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08399454 728.44213867 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08399455 728.44219971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08399456 728.44219971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08399457 728.44219971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08399458 728.44219971 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08399459 728.44226074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08399460 728.44226074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08399461 728.44226074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08399462 728.44226074 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08399463 728.44232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08399464 728.44232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08399465 728.44232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08399466 728.44232178 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08399467 728.44238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08399468 728.44238281 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08399469 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08399470 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08399471 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08399472 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08399473 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08399474 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08399475 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08399476 728.44244385 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08399477 728.44250488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08399478 728.44250488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08399479 728.44250488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08399480 728.44250488 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08399481 728.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08399482 728.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08399483 728.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08399484 728.44256592 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08399485 728.44262695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08399486 728.44262695 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08399487 728.44268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08399488 728.44268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08399489 728.44268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08399490 728.44268799 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08399491 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08399492 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08399493 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08399494 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08399495 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08399496 728.44274902 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08399497 728.44281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08399498 728.44281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08399499 728.44281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08399500 728.44281006 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08399501 728.44287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08399502 728.44287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08399503 728.44287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08399504 728.44287109 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08399505 728.44293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08399506 728.44293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08399507 728.44293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08399508 728.44293213 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08399509 728.44299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08399510 728.44299316 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08399511 728.44305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08399512 728.44305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08399513 728.44305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08399514 728.44305420 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08399515 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08399516 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08399517 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08399518 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08399519 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08399520 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08399521 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08399522 728.44311523 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08399523 728.44317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08399524 728.44317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08399525 728.44317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08399526 728.44317627 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08399527 728.44323730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08399528 728.44323730 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08399529 728.44329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08399530 728.44329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08399531 728.44329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08399532 728.44329834 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08399533 728.44335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08399534 728.44335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08399535 728.44335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08399536 728.44335938 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08399537 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08399538 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08399539 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08399540 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08399541 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08399542 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08399543 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08399544 728.44342041 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08399545 728.44348145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08399546 728.44348145 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08399547 728.44354248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08399548 728.44354248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08399549 728.44354248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08399550 728.44354248 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08399551 728.44360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08399552 728.44360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08399553 728.44360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08399554 728.44360352 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08399555 728.44366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08399556 728.44366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08399557 728.44366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08399558 728.44366455 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08399559 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08399560 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08399561 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08399562 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08399563 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08399564 728.44372559 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08399565 728.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08399566 728.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08399567 728.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08399568 728.44378662 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08399569 728.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08399570 728.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08399571 728.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08399572 728.44384766 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08399573 728.44390869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08399574 728.44390869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08399575 728.44390869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08399576 728.44390869 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08399577 728.44396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08399578 728.44396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08399579 728.44396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08399580 728.44396973 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08399581 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08399582 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08399583 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08399584 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08399585 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08399586 728.44403076 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08399587 728.44409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08399588 728.44409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08399589 728.44409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08399590 728.44409180 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08399591 728.44415283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08399592 728.44415283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08399593 728.44415283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08399594 728.44415283 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08399595 728.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08399596 728.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08399597 728.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08399598 728.44421387 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08399599 728.44427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08399600 728.44427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08399601 728.44427490 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08399602 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08399603 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08399604 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08399605 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08399606 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08399607 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08399608 728.44433594 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08399609 728.44439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08399610 728.44439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08399611 728.44439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08399612 728.44439697 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08399613 728.44445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08399614 728.44445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08399615 728.44445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08399616 728.44445801 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08399617 728.44451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08399618 728.44451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08399619 728.44451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08399620 728.44451904 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08399621 728.44458008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08399622 728.44458008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08399623 728.44464111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08399624 728.44464111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08399625 728.44464111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08399626 728.44464111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08399627 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08399628 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08399629 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08399630 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08399631 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08399632 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08399633 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08399634 728.44470215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08399635 728.44476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08399636 728.44476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08399637 728.44476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08399638 728.44476318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08399639 728.44482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08399640 728.44482422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08399641 728.44488525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08399642 728.44488525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08399643 728.44488525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08399644 728.44488525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08399645 728.44494629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08399646 728.44494629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08399647 728.44494629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08399648 728.44494629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08399649 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08399650 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08399651 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08399652 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08399653 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08399654 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08399655 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08399656 728.44500732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08399657 728.44506836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08399658 728.44506836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08399659 728.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08399660 728.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08399661 728.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08399662 728.44512939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08399663 728.44519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08399664 728.44519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08399665 728.44519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08399666 728.44519043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08399667 728.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08399668 728.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08399669 728.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08399670 728.44525146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08399671 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08399672 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08399673 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08399674 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08399675 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08399676 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08399677 728.44531250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08399678 728.44537354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08399679 728.44537354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08399680 728.44537354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08399681 728.44543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08399682 728.44543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08399683 728.44543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08399684 728.44543457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08399685 728.44549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08399686 728.44549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08399687 728.44549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08399688 728.44549561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08399689 728.44555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08399690 728.44555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08399691 728.44555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08399692 728.44555664 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08399693 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08399694 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08399695 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08399696 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08399697 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08399698 728.44561768 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08399699 728.44567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08399700 728.44567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08399701 728.44567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08399702 728.44567871 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08399703 728.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08399704 728.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08399705 728.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08399706 728.44573975 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08399707 728.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08399708 728.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08399709 728.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08399710 728.44580078 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08399711 728.44586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08399712 728.44586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08399713 728.44586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08399714 728.44586182 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08399715 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08399716 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08399717 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08399718 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08399719 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08399720 728.44592285 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08399721 728.44598389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08399722 728.44598389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08399723 728.44598389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08399724 728.44598389 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08399725 728.44604492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08399726 728.44604492 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08399727 728.44610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08399728 728.44610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08399729 728.44610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08399730 728.44610596 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08399731 728.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08399732 728.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08399733 728.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08399734 728.44616699 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08399735 728.44622803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08399736 728.44622803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08399737 728.44622803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08399738 728.44622803 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08399739 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08399740 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08399741 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08399742 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08399743 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08399744 728.44628906 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08399745 728.44635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08399746 728.44635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08399747 728.44635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08399748 728.44635010 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08399749 728.44641113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08399750 728.44641113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08399751 728.44641113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08399752 728.44641113 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08399753 728.44647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08399754 728.44647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08399755 728.44647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08399756 728.44647217 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08399757 728.44653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08399758 728.44653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08399759 728.44653320 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08399760 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08399761 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08399762 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08399763 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08399764 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08399765 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08399766 728.44659424 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08399767 728.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08399768 728.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08399769 728.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08399770 728.44665527 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08399771 728.44671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08399772 728.44671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08399773 728.44671631 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08399774 728.44677734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08399775 728.44677734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08399776 728.44677734 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08399777 728.44683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08399778 728.44683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08399779 728.44683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08399780 728.44683838 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08399781 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08399782 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08399783 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08399784 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08399785 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08399786 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08399787 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08399788 728.44689941 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08399789 728.44696045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08399790 728.44696045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08399791 728.44696045 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08399792 728.44702148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08399793 728.44702148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08399794 728.44702148 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08399795 728.44708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08399796 728.44708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08399797 728.44708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08399798 728.44708252 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08399799 728.44714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08399800 728.44714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08399801 728.44714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08399802 728.44714355 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08399803 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08399804 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08399805 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08399806 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08399807 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08399808 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08399809 728.44720459 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08399810 728.44726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08399811 728.44726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08399812 728.44726563 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08399813 728.44732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08399814 728.44732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08399815 728.44732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08399816 728.44732666 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08399817 728.44738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08399818 728.44738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08399819 728.44738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08399820 728.44738770 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08399821 728.44744873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08399822 728.44744873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08399823 728.44744873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08399824 728.44744873 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08399825 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08399826 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08399827 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08399828 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08399829 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08399830 728.44750977 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08399831 728.44757080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08399832 728.44757080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08399833 728.44757080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08399834 728.44757080 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08399835 728.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08399836 728.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08399837 728.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08399838 728.44763184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08399839 728.44769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08399840 728.44769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08399841 728.44769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08399842 728.44769287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08399843 728.44775391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08399844 728.44775391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08399845 728.44775391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08399846 728.44781494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08399847 728.44781494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08399848 728.44781494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08399849 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08399850 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08399851 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08399852 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08399853 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08399854 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08399855 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08399856 728.44787598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08399857 728.44793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08399858 728.44793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08399859 728.44793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08399860 728.44793701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08399861 728.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08399862 728.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08399863 728.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08399864 728.44799805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08399865 728.44805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08399866 728.44805908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08399867 728.44812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08399868 728.44812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08399869 728.44812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08399870 728.44812012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08399871 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08399872 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08399873 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08399874 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08399875 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08399876 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08399877 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08399878 728.44818115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08399879 728.44824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08399880 728.44824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08399881 728.44824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08399882 728.44824219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08399883 728.44830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08399884 728.44830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08399885 728.44830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08399886 728.44830322 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08399887 728.44836426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08399888 728.44836426 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08399889 728.44842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08399890 728.44842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08399891 728.44842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08399892 728.44842529 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08399893 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08399894 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08399895 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08399896 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08399897 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08399898 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08399899 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08399900 728.44848633 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08399901 728.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08399902 728.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08399903 728.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08399904 728.44854736 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08399905 728.44860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08399906 728.44860840 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08399907 728.44866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08399908 728.44866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08399909 728.44866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08399910 728.44866943 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08399911 728.44873047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08399912 728.44873047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08399913 728.44873047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08399914 728.44873047 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08399915 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08399916 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08399917 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08399918 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08399919 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08399920 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08399921 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08399922 728.44879150 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08399923 728.44885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08399924 728.44885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08399925 728.44885254 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08399926 728.44891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08399927 728.44891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08399928 728.44891357 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08399929 728.44897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08399930 728.44897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08399931 728.44897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08399932 728.44897461 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08399933 728.44903564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08399934 728.44903564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08399935 728.44903564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08399936 728.44903564 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08399937 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08399938 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08399939 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08399940 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08399941 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08399942 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08399943 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08399944 728.44909668 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08399945 728.44915771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08399946 728.44915771 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08399947 728.44921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08399948 728.44921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08399949 728.44921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08399950 728.44921875 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08399951 728.44927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08399952 728.44927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08399953 728.44927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08399954 728.44927979 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08399955 728.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08399956 728.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08399957 728.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08399958 728.44934082 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08399959 728.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08399960 728.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08399961 728.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08399962 728.44940186 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08399963 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08399964 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08399965 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08399966 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08399967 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08399968 728.44946289 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08399969 728.44952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08399970 728.44952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08399971 728.44952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08399972 728.44952393 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08399973 728.44958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08399974 728.44958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08399975 728.44958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08399976 728.44958496 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08399977 728.44964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08399978 728.44964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08399979 728.44964600 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08399980 728.44970703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08399981 728.44970703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08399982 728.44970703 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08399983 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08399984 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08399985 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08399986 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08399987 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08399988 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08399989 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08399990 728.44976807 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08399991 728.44982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08399992 728.44982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08399993 728.44982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08399994 728.44982910 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08399995 728.44989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08399996 728.44989014 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08399997 728.44995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08399998 728.44995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08399999 728.44995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08400000 728.44995117 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08400001 728.45001221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08400002 728.45001221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08400003 728.45001221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08400004 728.45001221 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08400005 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08400006 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08400007 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08400008 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08400009 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08400010 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08400011 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08400012 728.45007324 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08400013 728.45013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08400014 728.45013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08400015 728.45013428 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08400016 728.45019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08400017 728.45019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08400018 728.45019531 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08400019 728.45025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08400020 728.45025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08400021 728.45025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08400022 728.45025635 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08400023 728.45031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08400024 728.45031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08400025 728.45031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08400026 728.45031738 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08400027 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08400028 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08400029 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08400030 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08400031 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08400032 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08400033 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08400034 728.45037842 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08400035 728.45043945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08400036 728.45043945 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08400037 728.45050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08400038 728.45050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08400039 728.45050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08400040 728.45050049 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08400041 728.45056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08400042 728.45056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08400043 728.45056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08400044 728.45056152 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08400045 728.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08400046 728.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08400047 728.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08400048 728.45062256 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08400049 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08400050 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08400051 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08400052 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08400053 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08400054 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08400055 728.45068359 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08400056 728.45074463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08400057 728.45074463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08400058 728.45074463 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08400059 728.45080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08400060 728.45080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08400061 728.45080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08400062 728.45080566 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08400063 728.45086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08400064 728.45086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08400065 728.45086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08400066 728.45086670 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08400067 728.45092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08400068 728.45092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08400069 728.45092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08400070 728.45092773 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08400071 728.45098877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08400072 728.45098877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08400073 728.45098877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08400074 728.45098877 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08400075 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08400076 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08400077 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08400078 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08400079 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08400080 728.45104980 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08400081 728.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08400082 728.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08400083 728.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08400084 728.45111084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08400085 728.45117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08400086 728.45117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08400087 728.45117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08400088 728.45117188 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08400089 728.45123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08400090 728.45123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08400091 728.45123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08400092 728.45123291 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08400093 728.45129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08400094 728.45129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08400095 728.45129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08400096 728.45129395 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08400097 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08400098 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08400099 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08400100 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08400101 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08400102 728.45135498 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08400103 728.45141602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08400104 728.45141602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08400105 728.45141602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08400106 728.45141602 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08400107 728.45147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08400108 728.45147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08400109 728.45147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08400110 728.45147705 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08400111 728.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08400112 728.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08400113 728.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08400114 728.45153809 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08400115 728.45159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08400116 728.45159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08400117 728.45159912 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08400118 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08400119 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08400120 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08400121 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08400122 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08400123 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08400124 728.45166016 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08400125 728.45172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08400126 728.45172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08400127 728.45172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08400128 728.45172119 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08400129 728.45178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08400130 728.45178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08400131 728.45178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08400132 728.45178223 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08400133 728.45184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08400134 728.45184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08400135 728.45184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08400136 728.45184326 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08400137 728.45190430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08400138 728.45190430 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08400139 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08400140 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08400141 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08400142 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08400143 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08400144 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08400145 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08400146 728.45196533 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08400147 728.45202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08400148 728.45202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08400149 728.45202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08400150 728.45202637 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08400151 728.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08400152 728.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08400153 728.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08400154 728.45208740 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08400155 728.45214844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08400156 728.45214844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08400157 728.45214844 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08400158 728.45220947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08400159 728.45220947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08400160 728.45220947 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08400161 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08400162 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08400163 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08400164 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08400165 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08400166 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08400167 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08400168 728.45227051 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08400169 728.45233154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08400170 728.45233154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08400171 728.45233154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08400172 728.45233154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08400173 728.45239258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08400174 728.45239258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08400175 728.45239258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08400176 728.45245361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08400177 728.45245361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08400178 728.45245361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08400179 728.45251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08400180 728.45251465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08400181 728.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08400182 728.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08400183 728.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08400184 728.45257568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08400185 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08400186 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08400187 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08400188 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08400189 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08400190 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08400191 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08400192 728.45263672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08400193 728.45269775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08400194 728.45269775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08400195 728.45275879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08400196 728.45275879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08400197 728.45275879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08400198 728.45275879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08400199 728.45281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08400200 728.45281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08400201 728.45281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08400202 728.45281982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08400203 728.45288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08400204 728.45288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08400205 728.45288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08400206 728.45288086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08400207 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08400208 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08400209 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08400210 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08400211 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08400212 728.45294189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08400213 728.45300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08400214 728.45300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08400215 728.45300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08400216 728.45300293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08400217 728.45306396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08400218 728.45306396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08400219 728.45306396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08400220 728.45306396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08400221 728.45312500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08400222 728.45312500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08400223 728.45318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08400224 728.45318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08400225 728.45318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08400226 728.45318604 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08400227 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08400228 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08400229 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08400230 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08400231 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08400232 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08400233 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08400234 728.45324707 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08400235 728.45330811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08400236 728.45330811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08400237 728.45330811 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08400238 728.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08400239 728.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08400240 728.45336914 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08400241 728.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08400242 728.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08400243 728.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08400244 728.45343018 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08400245 728.45349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08400246 728.45349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08400247 728.45349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08400248 728.45349121 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08400249 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08400250 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08400251 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08400252 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08400253 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08400254 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08400255 728.45355225 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08400256 728.45361328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08400257 728.45361328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08400258 728.45361328 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08400259 728.45367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08400260 728.45367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08400261 728.45367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08400262 728.45367432 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08400263 728.45373535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08400264 728.45373535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08400265 728.45373535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08400266 728.45373535 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08400267 728.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08400268 728.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08400269 728.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08400270 728.45379639 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08400271 728.45385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08400272 728.45385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08400273 728.45385742 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08400274 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08400275 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08400276 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08400277 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08400278 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08400279 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08400280 728.45391846 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08400281 728.45397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08400282 728.45397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08400283 728.45397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08400284 728.45397949 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08400285 728.45404053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08400286 728.45404053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08400287 728.45404053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08400288 728.45404053 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08400289 728.45410156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08400290 728.45410156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08400291 728.45410156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08400292 728.45410156 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08400293 728.45416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08400294 728.45416260 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08400295 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08400296 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08400297 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08400298 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08400299 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08400300 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08400301 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08400302 728.45422363 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08400303 728.45428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08400304 728.45428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08400305 728.45428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08400306 728.45428467 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08400307 728.45434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08400308 728.45434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08400309 728.45434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08400310 728.45434570 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08400311 728.45440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08400312 728.45440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08400313 728.45440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08400314 728.45440674 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08400315 728.45446777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08400316 728.45446777 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08400317 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08400318 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08400319 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08400320 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08400321 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08400322 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08400323 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08400324 728.45452881 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08400325 728.45458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08400326 728.45458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08400327 728.45458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08400328 728.45458984 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08400329 728.45465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08400330 728.45465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08400331 728.45465088 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08400332 728.45471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08400333 728.45471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08400334 728.45471191 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08400335 728.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08400336 728.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08400337 728.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08400338 728.45477295 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08400339 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08400340 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08400341 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08400342 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08400343 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08400344 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08400345 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08400346 728.45483398 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08400347 728.45489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08400348 728.45489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08400349 728.45489502 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08400350 728.45495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08400351 728.45495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08400352 728.45495605 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08400353 728.45501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08400354 728.45501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08400355 728.45501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08400356 728.45501709 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08400357 728.45507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08400358 728.45507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08400359 728.45507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08400360 728.45507813 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08400361 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08400362 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08400363 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08400364 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08400365 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08400366 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08400367 728.45513916 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08400368 728.45520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08400369 728.45520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08400370 728.45520020 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08400371 728.45526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08400372 728.45526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08400373 728.45526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08400374 728.45526123 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08400375 728.45532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08400376 728.45532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08400377 728.45532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08400378 728.45532227 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08400379 728.45538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08400380 728.45538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08400381 728.45538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08400382 728.45538330 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08400383 728.45544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08400384 728.45544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08400385 728.45544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08400386 728.45544434 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08400387 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08400388 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08400389 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08400390 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08400391 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08400392 728.45550537 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08400393 728.45556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08400394 728.45556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08400395 728.45556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08400396 728.45556641 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08400397 728.45562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08400398 728.45562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08400399 728.45562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08400400 728.45562744 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08400401 728.45568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08400402 728.45568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08400403 728.45568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08400404 728.45568848 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08400405 728.45574951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08400406 728.45574951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08400407 728.45574951 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08400408 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08400409 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08400410 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08400411 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08400412 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08400413 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08400414 728.45581055 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08400415 728.45587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08400416 728.45587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08400417 728.45587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08400418 728.45587158 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08400419 728.45593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08400420 728.45593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08400421 728.45593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08400422 728.45593262 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08400423 728.45599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08400424 728.45599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08400425 728.45599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08400426 728.45599365 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08400427 728.45605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08400428 728.45605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08400429 728.45605469 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08400430 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08400431 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08400432 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08400433 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08400434 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08400435 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08400436 728.45611572 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08400437 728.45617676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08400438 728.45617676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08400439 728.45617676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08400440 728.45617676 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08400441 728.45623779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08400442 728.45623779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08400443 728.45623779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08400444 728.45623779 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08400445 728.45629883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08400446 728.45629883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08400447 728.45629883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08400448 728.45629883 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08400449 728.45635986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08400450 728.45635986 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08400451 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08400452 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08400453 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08400454 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08400455 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08400456 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08400457 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08400458 728.45642090 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08400459 728.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08400460 728.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08400461 728.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08400462 728.45648193 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08400463 728.45654297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08400464 728.45654297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08400465 728.45654297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08400466 728.45654297 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08400467 728.45660400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08400468 728.45660400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08400469 728.45660400 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08400470 728.45666504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08400471 728.45666504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08400472 728.45666504 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08400473 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08400474 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08400475 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08400476 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08400477 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08400478 728.45672607 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08400479 728.45678711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08400480 728.45678711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08400481 728.45678711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08400482 728.45678711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08400483 728.45684814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08400484 728.45684814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08400485 728.45690918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08400486 728.45690918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08400487 728.45690918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08400488 728.45690918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08400489 728.45697021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08400490 728.45697021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08400491 728.45697021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08400492 728.45697021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08400493 728.45703125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08400494 728.45703125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08400495 728.45703125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08400496 728.45703125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08400497 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08400498 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08400499 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08400500 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08400501 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08400502 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08400503 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08400504 728.45709229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08400505 728.45715332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08400506 728.45715332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08400507 728.45721436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08400508 728.45721436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08400509 728.45721436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08400510 728.45721436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08400511 728.45727539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08400512 728.45727539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08400513 728.45727539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08400514 728.45727539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08400515 728.45733643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08400516 728.45733643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08400517 728.45733643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08400518 728.45733643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08400519 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08400520 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08400521 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08400522 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08400523 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08400524 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08400525 728.45739746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08400526 728.45745850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08400527 728.45745850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08400528 728.45745850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08400529 728.45751953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08400530 728.45751953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08400531 728.45751953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08400532 728.45751953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08400533 728.45758057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08400534 728.45758057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08400535 728.45758057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08400536 728.45758057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08400537 728.45764160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08400538 728.45764160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08400539 728.45764160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08400540 728.45764160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08400541 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08400542 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08400543 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08400544 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08400545 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08400546 728.45770264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08400547 728.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08400548 728.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08400549 728.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08400550 728.45776367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08400551 728.45782471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08400552 728.45782471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08400553 728.45782471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08400554 728.45782471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08400555 728.45788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08400556 728.45788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08400557 728.45788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08400558 728.45788574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08400559 728.45794678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08400560 728.45794678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08400561 728.45794678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08400562 728.45794678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08400563 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08400564 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08400565 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08400566 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08400567 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08400568 728.45800781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08400569 728.45806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08400570 728.45806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08400571 728.45806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08400572 728.45806885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08400573 728.45812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08400574 728.45812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08400575 728.45812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08400576 728.45812988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08400577 728.45819092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08400578 728.45819092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08400579 728.45819092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08400580 728.45819092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08400581 728.45825195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08400582 728.45825195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08400583 728.45825195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08400584 728.45825195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08400585 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08400586 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08400587 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08400588 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08400589 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08400590 728.45831299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08400591 728.45837402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08400592 728.45837402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08400593 728.45837402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08400594 728.45837402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08400595 728.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08400596 728.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08400597 728.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08400598 728.45843506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08400599 728.45849609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08400600 728.45849609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08400601 728.45849609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08400602 728.45849609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08400603 728.45855713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08400604 728.45855713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08400605 728.45855713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08400606 728.45861816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08400607 728.45861816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08400608 728.45861816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08400609 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08400610 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08400611 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08400612 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08400613 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08400614 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08400615 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08400616 728.45867920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08400617 728.45874023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08400618 728.45874023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08400619 728.45874023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08400620 728.45880127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08400621 728.45880127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08400622 728.45880127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08400623 728.45886230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08400624 728.45886230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08400625 728.45886230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08400626 728.45886230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08400627 728.45892334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08400628 728.45892334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08400629 728.45892334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08400630 728.45892334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08400631 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08400632 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08400633 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08400634 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08400635 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08400636 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08400637 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08400638 728.45898438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08400639 728.45904541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08400640 728.45904541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08400641 728.45910645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08400642 728.45910645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08400643 728.45910645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08400644 728.45910645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08400645 728.45916748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08400646 728.45916748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08400647 728.45916748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08400648 728.45916748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08400649 728.45922852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08400650 728.45922852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08400651 728.45922852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08400652 728.45922852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08400653 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08400654 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08400655 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08400656 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08400657 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08400658 728.45928955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08400659 728.45935059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08400660 728.45935059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08400661 728.45935059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08400662 728.45935059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08400663 728.45941162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08400664 728.45941162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08400665 728.45941162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08400666 728.45941162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08400667 728.45947266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08400668 728.45947266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08400669 728.45947266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08400670 728.45947266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08400671 728.45953369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08400672 728.45953369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08400673 728.45953369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08400674 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08400675 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08400676 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08400677 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08400678 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08400679 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08400680 728.45959473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08400681 728.45965576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08400682 728.45965576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08400683 728.45965576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08400684 728.45965576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08400685 728.45971680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08400686 728.45971680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08400687 728.45971680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08400688 728.45971680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08400689 728.45977783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08400690 728.45977783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08400691 728.45983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08400692 728.45983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08400693 728.45983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08400694 728.45983887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08400695 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08400696 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08400697 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08400698 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08400699 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08400700 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08400701 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08400702 728.45989990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08400703 728.45996094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08400704 728.45996094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08400705 728.46002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08400706 728.46002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08400707 728.46002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08400708 728.46002197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08400709 728.46008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08400710 728.46008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08400711 728.46008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08400712 728.46008301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08400713 728.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08400714 728.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08400715 728.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08400716 728.46014404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08400717 728.46020508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08400718 728.46020508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08400719 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08400720 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08400721 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08400722 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08400723 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08400724 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08400725 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08400726 728.46026611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08400727 728.46032715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08400728 728.46032715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08400729 728.46032715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08400730 728.46032715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08400731 728.46038818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08400732 728.46038818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08400733 728.46038818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08400734 728.46044922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08400735 728.46044922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08400736 728.46044922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08400737 728.46051025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08400738 728.46051025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08400739 728.46051025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08400740 728.46051025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08400741 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08400742 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08400743 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08400744 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08400745 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08400746 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08400747 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08400748 728.46057129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08400749 728.46063232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08400750 728.46063232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08400751 728.46063232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08400752 728.46069336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08400753 728.46069336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08400754 728.46069336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08400755 728.46075439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08400756 728.46075439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08400757 728.46075439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08400758 728.46075439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08400759 728.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08400760 728.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08400761 728.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08400762 728.46081543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08400763 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08400764 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08400765 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08400766 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08400767 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08400768 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08400769 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08400770 728.46087646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08400771 728.46093750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08400772 728.46093750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08400773 728.46099854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08400774 728.46099854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08400775 728.46099854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08400776 728.46099854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08400777 728.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08400778 728.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08400779 728.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08400780 728.46105957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08400781 728.46112061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08400782 728.46112061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08400783 728.46112061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08400784 728.46112061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08400785 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08400786 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08400787 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08400788 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08400789 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08400790 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08400791 728.46118164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08400792 728.46124268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08400793 728.46124268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08400794 728.46124268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08400795 728.46130371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08400796 728.46130371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08400797 728.46130371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08400798 728.46130371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08400799 728.46136475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08400800 728.46136475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08400801 728.46136475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08400802 728.46136475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08400803 728.46142578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08400804 728.46142578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08400805 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08400806 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08400807 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08400808 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08400809 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08400810 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08400811 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08400812 728.46148682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08400813 728.46154785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08400814 728.46154785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08400815 728.46154785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08400816 728.46154785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08400817 728.46160889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08400818 728.46160889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08400819 728.46166992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08400820 728.46166992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08400821 728.46166992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08400822 728.46166992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08400823 728.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08400824 728.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08400825 728.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08400826 728.46173096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08400827 728.46179199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08400828 728.46179199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08400829 728.46179199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08400830 728.46179199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08400831 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08400832 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08400833 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08400834 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08400835 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08400836 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08400837 728.46185303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08400838 728.46191406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08400839 728.46191406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08400840 728.46191406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08400841 728.46197510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08400842 728.46197510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08400843 728.46197510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08400844 728.46197510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08400845 728.46203613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08400846 728.46203613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08400847 728.46203613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08400848 728.46203613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08400849 728.46209717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08400850 728.46209717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08400851 728.46209717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08400852 728.46209717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08400853 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08400854 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08400855 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08400856 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08400857 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08400858 728.46215820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08400859 728.46221924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08400860 728.46221924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08400861 728.46221924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08400862 728.46221924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08400863 728.46228027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08400864 728.46228027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08400865 728.46228027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08400866 728.46228027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08400867 728.46234131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08400868 728.46234131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08400869 728.46234131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08400870 728.46234131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08400871 728.46240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08400872 728.46240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08400873 728.46240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08400874 728.46240234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08400875 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08400876 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08400877 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08400878 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08400879 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08400880 728.46246338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08400881 728.46252441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08400882 728.46252441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08400883 728.46252441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08400884 728.46252441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08400885 728.46258545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08400886 728.46258545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08400887 728.46258545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08400888 728.46258545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08400889 728.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08400890 728.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08400891 728.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08400892 728.46264648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08400893 728.46270752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08400894 728.46270752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08400895 728.46270752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08400896 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08400897 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08400898 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08400899 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08400900 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08400901 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08400902 728.46276855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08400903 728.46282959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08400904 728.46282959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08400905 728.46282959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08400906 728.46282959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08400907 728.46289063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08400908 728.46289063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08400909 728.46289063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08400910 728.46289063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08400911 728.46295166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08400912 728.46295166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08400913 728.46295166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08400914 728.46295166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08400915 728.46301270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08400916 728.46301270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08400917 728.46301270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08400918 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08400919 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08400920 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08400921 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -08400922 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -08400923 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -08400924 728.46307373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -08400925 728.46313477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -08400926 728.46313477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -08400927 728.46313477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -08400928 728.46313477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -08400929 728.46319580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -08400930 728.46319580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -08400931 728.46319580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -08400932 728.46319580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -08400933 728.46325684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -08400934 728.46325684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -08400935 728.46325684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -08400936 728.46325684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -08400937 728.46331787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -08400938 728.46331787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -08400939 728.46331787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -08400940 728.46337891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -08400941 728.46337891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -08400942 728.46337891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -08400943 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -08400944 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -08400945 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -08400946 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -08400947 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -08400948 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -08400949 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -08400950 728.46343994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -08400951 728.46350098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -08400952 728.46350098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -08400953 728.46350098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -08400954 728.46356201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -08400955 728.46356201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -08400956 728.46356201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -08400957 728.46362305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -08400958 728.46362305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -08400959 728.46362305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -08400960 728.46362305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -08400961 728.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -08400962 728.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -08400963 728.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -08400964 728.46368408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -08400965 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -08400966 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -08400967 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -08400968 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -08400969 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -08400970 728.46374512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -08400971 728.46380615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -08400972 728.46380615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -08400973 728.46380615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -08400974 728.46380615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -08400975 728.46386719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -08400976 728.46386719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -08400977 728.46386719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -08400978 728.46386719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -08400979 728.46392822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -08400980 728.46392822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -08400981 728.46392822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -08400982 728.46392822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -08400983 728.46398926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -08400984 728.46398926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -08400985 728.46398926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -08400986 728.46398926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -08400987 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -08400988 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -08400989 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -08400990 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -08400991 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -08400992 728.46405029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -08400993 728.46411133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -08400994 728.46411133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -08400995 728.46417236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -08400996 728.46417236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -08400997 728.46417236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -08400998 728.46417236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -08400999 728.46423340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -08401000 728.46423340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -08401001 728.46429443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -08401002 728.46429443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -08401003 728.46429443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -08401004 728.46429443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -08401005 728.46435547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -08401006 728.46435547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -08401007 728.46435547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -08401008 728.46441650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -08401009 728.46441650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -08401010 728.46441650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -08401011 728.46447754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -08401012 728.46447754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -08401013 728.46447754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -08401014 728.46447754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -08401015 728.46453857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -08401016 728.46453857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -08401017 728.46453857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -08401018 728.46453857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -08401019 728.46459961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -08401020 728.46459961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -08401021 728.46459961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -08401022 728.46459961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -08401023 728.46466064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -08401024 728.46466064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -08401025 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -08401026 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -08401027 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -08401028 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -08401029 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -08401030 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -08401031 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -08401032 728.46472168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -08401033 728.46478271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -08401034 728.46478271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -08401035 728.46478271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -08401036 728.46478271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -08401037 728.46484375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -08401038 728.46484375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -08401039 728.46484375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -08401040 728.46484375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -08401041 728.46490479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -08401042 728.46490479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -08401043 728.46490479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -08401044 728.46496582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -08401045 728.46496582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -08401046 728.46496582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -08401047 728.46502686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -08401048 728.46502686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -08401049 728.46502686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -08401050 728.46502686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -08402971 728.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -08402972 728.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -08402973 728.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -08402974 728.49243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -08402975 728.49249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -08402976 728.49249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -08402977 728.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -08402978 728.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -08402979 728.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -08402980 728.49255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -08402981 728.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -08402982 728.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -08402983 728.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -08402984 728.49261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -08402985 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -08402986 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -08402987 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -08402988 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc908 -08402989 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -08402990 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc918 -08402991 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -08402992 728.49267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc928 -08402993 728.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -08402994 728.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc938 -08402995 728.49273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -08402996 728.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc948 -08402997 728.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -08402998 728.49279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc958 -08402999 728.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -08403000 728.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc968 -08403001 728.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -08403002 728.49285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc978 -08403003 728.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -08403004 728.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc988 -08403005 728.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -08403006 728.49291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc998 -08403007 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -08403008 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9a8 -08403009 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -08403010 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9b8 -08403011 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -08403012 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9c8 -08403013 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -08403014 728.49298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xc9d8 -08404779 728.51818848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -08404780 728.51824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10108 -08404781 728.51824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -08404782 728.51824951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10118 -08404783 728.51831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -08404784 728.51831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10128 -08404785 728.51831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -08404786 728.51831055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10138 -08404787 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -08404788 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10148 -08404789 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -08404790 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10158 -08404791 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -08404792 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10168 -08404793 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -08404794 728.51837158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10178 -08404795 728.51843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -08404796 728.51843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10188 -08404797 728.51843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -08404798 728.51843262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10198 -08404799 728.51849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -08404800 728.51849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101a8 -08404801 728.51849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -08404802 728.51849365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101b8 -08404803 728.51855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -08404804 728.51855469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101c8 -08404805 728.51861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -08404806 728.51861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101d8 -08404807 728.51861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -08404808 728.51861572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101e8 -08404809 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -08404810 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x101f8 -08404811 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -08404812 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10208 -08404813 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -08404814 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10218 -08404815 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -08404816 728.51867676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10228 -08404817 728.51873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -08404818 728.51873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10238 -08404819 728.51873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -08404820 728.51873779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10248 -08404821 728.51879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -08404822 728.51879883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10258 -08406673 728.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -08406674 728.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -08406675 728.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -08406676 728.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -08406677 728.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -08406678 728.54516602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -08406679 728.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -08406680 728.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -08406681 728.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -08406682 728.54522705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -08406683 728.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -08406684 728.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -08406685 728.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -08406686 728.54528809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -08406687 728.54534912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -08406688 728.54534912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -08406689 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -08406690 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -08406691 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -08406692 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -08406693 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -08406694 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -08406695 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -08406696 728.54541016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -08406697 728.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -08406698 728.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -08406699 728.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -08406700 728.54547119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -08406701 728.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -08406702 728.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -08406703 728.54553223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -08406704 728.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -08406705 728.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -08406706 728.54559326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -08406707 728.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -08406708 728.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -08406709 728.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -08406710 728.54565430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -08406711 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -08406712 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -08406713 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d78 -08406714 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d78 -08406715 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d88 -08406716 728.54571533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d88 -08408129 728.57360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b8 -08408130 728.57360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169b8 -08408131 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c8 -08408132 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169c8 -08408133 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d8 -08408134 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169d8 -08408135 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e8 -08408136 728.57366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169e8 -08408137 728.57373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f8 -08408138 728.57373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x169f8 -08408139 728.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a08 -08408140 728.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a08 -08408141 728.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a18 -08408142 728.57379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a18 -08408143 728.57385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a28 -08408144 728.57385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a28 -08408145 728.57391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a38 -08408146 728.57391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a38 -08408147 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -08408148 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a48 -08408149 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -08408150 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a58 -08408151 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -08408152 728.57397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a68 -08408153 728.57403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -08408154 728.57403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a78 -08408155 728.57409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -08408156 728.57409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a88 -08408157 728.57409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -08408158 728.57409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a98 -08408159 728.57415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -08408160 728.57415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16aa8 -08408161 728.57421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -08408162 728.57421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ab8 -08408163 728.57427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -08408164 728.57427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ac8 -08408165 728.57427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -08408166 728.57434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ad8 -08408167 728.57434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -08408168 728.57434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ae8 -08408169 728.57434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -08408170 728.57434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16af8 -08408171 728.57440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -08408172 728.57440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b08 -08409883 728.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a088 -08409884 728.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a088 -08409885 728.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a098 -08409886 728.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a098 -08409887 728.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a8 -08409888 728.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0a8 -08409889 728.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b8 -08409890 728.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0b8 -08409891 728.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c8 -08409892 728.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0c8 -08409893 728.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d8 -08409894 728.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0d8 -08409895 728.60052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e8 -08409896 728.60052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0e8 -08409897 728.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f8 -08409898 728.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a0f8 -08409899 728.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a108 -08409900 728.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a108 -08409901 728.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a118 -08409902 728.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a118 -08409903 728.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a128 -08409904 728.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a128 -08409905 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a138 -08409906 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a138 -08409907 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a148 -08409908 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a148 -08409909 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a158 -08409910 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a158 -08409911 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a168 -08409912 728.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a168 -08409913 728.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a178 -08409914 728.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a178 -08409915 728.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -08409916 728.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -08409917 728.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -08409918 728.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -08409919 728.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -08409920 728.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -08409921 728.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -08409922 728.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -08409923 728.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -08409924 728.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -08409925 728.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -08409926 728.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -08411987 728.63037109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -08411988 728.63043213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e248 -08411989 728.63043213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -08411990 728.63043213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e258 -08411991 728.63049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -08411992 728.63049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e268 -08411993 728.63049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -08411994 728.63049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e278 -08411995 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -08411996 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e288 -08411997 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -08411998 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e298 -08411999 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -08412000 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2a8 -08412001 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -08412002 728.63055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2b8 -08412003 728.63061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -08412004 728.63061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2c8 -08412005 728.63061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -08412006 728.63067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2d8 -08412007 728.63067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -08412008 728.63067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2e8 -08412009 728.63073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -08412010 728.63073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e2f8 -08412011 728.63073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e308 -08412012 728.63073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e308 -08412013 728.63079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e318 -08412014 728.63079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e318 -08412015 728.63079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -08412016 728.63079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e328 -08412017 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e338 -08412018 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e338 -08412019 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e348 -08412020 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e348 -08412021 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e358 -08412022 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e358 -08412023 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e368 -08412024 728.63085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e368 -08412025 728.63092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e378 -08412026 728.63092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e378 -08412027 728.63098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e388 -08412028 728.63098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e388 -08412029 728.63098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e398 -08412030 728.63098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e398 -08413985 728.65893555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b8 -08413986 728.65899658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220b8 -08413987 728.65899658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c8 -08413988 728.65899658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220c8 -08413989 728.65905762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d8 -08413990 728.65905762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220d8 -08413991 728.65905762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e8 -08413992 728.65905762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220e8 -08413993 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f8 -08413994 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x220f8 -08413995 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22108 -08413996 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22108 -08413997 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22118 -08413998 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22118 -08413999 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22128 -08414000 728.65911865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22128 -08414001 728.65917969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -08414002 728.65917969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22138 -08414003 728.65917969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -08414004 728.65917969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22148 -08414005 728.65924072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -08414006 728.65924072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22158 -08414007 728.65924072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -08414008 728.65930176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -08414009 728.65930176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -08414010 728.65930176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -08414011 728.65936279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -08414012 728.65936279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -08414013 728.65936279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08414014 728.65936279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08414015 728.65942383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08414016 728.65942383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08414017 728.65942383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08414018 728.65942383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08414019 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08414020 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08414021 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08414022 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08414023 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08414024 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08414025 728.65948486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08414026 728.65954590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08414027 728.65954590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08414028 728.65954590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08415979 728.68750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -08415980 728.68750000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f08 -08415981 728.68756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -08415982 728.68756104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f18 -08415983 728.68762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -08415984 728.68762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f28 -08415985 728.68762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -08415986 728.68762207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f38 -08415987 728.68768311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -08415988 728.68768311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f48 -08415989 728.68768311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f58 -08415990 728.68768311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f58 -08415991 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -08415992 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f68 -08415993 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -08415994 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f78 -08415995 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -08415996 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f88 -08415997 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -08415998 728.68774414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f98 -08415999 728.68780518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -08416000 728.68780518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fa8 -08416001 728.68780518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -08416002 728.68780518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fb8 -08416003 728.68786621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -08416004 728.68786621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fc8 -08416005 728.68792725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -08416006 728.68792725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fd8 -08416007 728.68792725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -08416008 728.68792725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25fe8 -08416009 728.68798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -08416010 728.68798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ff8 -08416011 728.68798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -08416012 728.68798828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26008 -08416013 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -08416014 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26018 -08416015 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -08416016 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26028 -08416017 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26038 -08416018 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26038 -08416019 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26048 -08416020 728.68804932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26048 -08416021 728.68811035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26058 -08416022 728.68811035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26058 -08417810 728.71441650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29838 -08417811 728.71441650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -08417812 728.71441650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -08417813 728.71441650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -08417814 728.71441650 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -08417815 728.71447754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -08417816 728.71447754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -08417817 728.71447754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -08417818 728.71447754 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -08417819 728.71453857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -08417820 728.71453857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -08417821 728.71453857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -08417822 728.71453857 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -08417823 728.71459961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -08417824 728.71459961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -08417825 728.71459961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -08417826 728.71459961 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298b8 -08417827 728.71466064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -08417828 728.71466064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298c8 -08417829 728.71466064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -08417830 728.71466064 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298d8 -08417831 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -08417832 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298e8 -08417833 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -08417834 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -08417835 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -08417836 728.71472168 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -08417837 728.71478271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -08417838 728.71478271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -08417839 728.71478271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -08417840 728.71478271 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -08417841 728.71484375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -08417842 728.71484375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -08417843 728.71484375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -08417844 728.71484375 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -08417845 728.71490479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -08417846 728.71490479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -08417847 728.71490479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -08417848 728.71490479 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -08417849 728.71496582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -08417850 728.71496582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -08417851 728.71496582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -08417852 728.71496582 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -08417853 728.71502686 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -08419471 728.74157715 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc28 -08419472 728.74157715 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc28 -08419473 728.74163818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc38 -08419474 728.74163818 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc38 -08419475 728.74169922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc48 -08419476 728.74169922 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc48 -08419477 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -08419478 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc58 -08419479 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -08419480 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc68 -08419481 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -08419482 728.74176025 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc78 -08419483 728.74182129 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -08419484 728.74182129 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc88 -08419485 728.74188232 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -08419486 728.74188232 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc98 -08419487 728.74188232 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -08419488 728.74188232 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cca8 -08419489 728.74194336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -08419490 728.74194336 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccb8 -08419491 728.74200439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -08419492 728.74200439 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccc8 -08419493 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -08419494 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccd8 -08419495 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -08419496 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cce8 -08419497 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -08419498 728.74206543 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ccf8 -08419499 728.74212646 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -08419500 728.74212646 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd08 -08419501 728.74218750 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -08419502 728.74218750 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd18 -08419503 728.74218750 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -08419504 728.74224854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd28 -08419505 728.74224854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -08419506 728.74224854 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd38 -08419507 728.74230957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -08419508 728.74230957 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd48 -08419509 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -08419510 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd58 -08419511 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -08419512 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd68 -08419513 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -08419514 728.74237061 [vmhook-eac [core number = 14]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd78 -08431695 728.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -08431696 728.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -08431697 728.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -08431698 728.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -08431699 728.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -08431700 728.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -08431701 728.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -08431702 728.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -08431703 728.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -08431704 728.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -08431705 728.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -08431706 728.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -08431707 728.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -08431708 728.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -08431709 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -08431710 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -08431711 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -08431712 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -08431713 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -08431714 728.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -08431715 728.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -08431716 728.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -08431717 728.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -08431718 728.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ad8 -08431719 728.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -08431720 728.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ae8 -08431721 728.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -08431722 728.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44af8 -08431723 728.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -08431724 728.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b08 -08431725 728.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -08431726 728.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b18 -08431727 728.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -08431728 728.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b28 -08431729 728.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -08431730 728.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b38 -08431731 728.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -08431732 728.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b48 -08431733 728.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -08431734 728.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b58 -08431735 728.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -08431736 728.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b68 -08431737 728.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -08431738 728.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b78 -08433623 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48668 -08433624 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48668 -08433625 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48678 -08433626 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48678 -08433627 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48688 -08433628 728.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48688 -08433629 728.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48698 -08433630 728.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48698 -08433631 728.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a8 -08433632 728.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486a8 -08433633 728.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b8 -08433634 728.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486b8 -08433635 728.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c8 -08433636 728.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486c8 -08433637 728.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -08433638 728.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -08433639 728.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -08433640 728.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -08433641 728.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -08433642 728.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -08433643 728.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48708 -08433644 728.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48708 -08433645 728.96508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48718 -08433646 728.96508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48718 -08433647 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48728 -08433648 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48728 -08433649 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48738 -08433650 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48738 -08433651 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48748 -08433652 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48748 -08433653 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48758 -08433654 728.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48758 -08433655 728.96520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48768 -08433656 728.96520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48768 -08433657 728.96520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48778 -08433658 728.96520996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48778 -08433659 728.96527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48788 -08433660 728.96527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48788 -08433661 728.96527100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48798 -08433662 728.96533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48798 -08433663 728.96533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a8 -08433664 728.96533203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a8 -08433665 728.96539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b8 -08433666 728.96539307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b8 -08435485 728.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c098 -08435486 728.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c098 -08435487 728.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a8 -08435488 728.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0a8 -08435489 728.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b8 -08435490 728.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0b8 -08435491 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c8 -08435492 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0c8 -08435493 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d8 -08435494 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0d8 -08435495 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e8 -08435496 728.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0e8 -08435497 728.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f8 -08435498 728.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c0f8 -08435499 728.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c108 -08435500 728.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c108 -08435501 728.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -08435502 728.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c118 -08435503 728.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -08435504 728.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c128 -08435505 728.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -08435506 728.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c138 -08435507 728.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -08435508 728.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c148 -08435509 728.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -08435510 728.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c158 -08435511 728.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -08435512 728.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c168 -08435513 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -08435514 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c178 -08435515 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -08435516 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c188 -08435517 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -08435518 728.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c198 -08435519 728.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -08435520 728.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1a8 -08435521 728.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -08435522 728.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1b8 -08435523 728.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -08435524 728.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1c8 -08435525 728.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -08435526 728.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1d8 -08435527 728.99200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -08435528 728.99200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c1e8 -08437421 729.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -08437422 729.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd18 -08437423 729.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -08437424 729.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd28 -08437425 729.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -08437426 729.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd38 -08437427 729.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -08437428 729.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd48 -08437429 729.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd58 -08437430 729.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd58 -08437431 729.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd68 -08437432 729.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd68 -08437433 729.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd78 -08437434 729.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd78 -08437435 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd88 -08437436 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd88 -08437437 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd98 -08437438 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd98 -08437439 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda8 -08437440 729.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fda8 -08437441 729.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb8 -08437442 729.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdb8 -08437443 729.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc8 -08437444 729.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdc8 -08437445 729.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd8 -08437446 729.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdd8 -08437447 729.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde8 -08437448 729.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fde8 -08437449 729.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -08437450 729.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fdf8 -08437451 729.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -08437452 729.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe08 -08437453 729.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -08437454 729.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe18 -08437455 729.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -08437456 729.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe28 -08437457 729.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -08437458 729.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe38 -08437459 729.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -08437460 729.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe48 -08437461 729.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -08437462 729.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe58 -08437463 729.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -08437464 729.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe68 -08438961 730.40905762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08438962 730.43212891 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438963 730.43212891 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438964 730.51092529 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438965 730.51098633 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438966 730.51104736 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438967 730.51104736 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08438968 730.51116943 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438969 730.51123047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08438970 730.51123047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438971 730.51129150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08438972 732.43481445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08438973 732.45709229 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438974 732.45709229 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438975 732.54449463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08438976 732.54461670 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08438977 733.00317383 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08438978 733.01727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438979 733.01733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438980 733.01739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438981 733.01739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08438982 733.01757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438983 733.01757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08438984 733.01757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08438985 733.01757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08438986 733.04101563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438987 733.04107666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438988 733.04107666 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08438989 734.04315186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08438990 734.04315186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08438991 734.04315186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08438992 734.04315186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08438993 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08438994 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08438995 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08438996 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08438997 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08438998 734.04321289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08438999 734.04327393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08439000 734.04327393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08439001 734.04327393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08439002 734.04327393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08439003 734.04333496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08439004 734.04333496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08439005 734.04333496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08439006 734.04333496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08439007 734.04339600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08439008 734.04339600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08439009 734.04339600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08439010 734.04339600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08439011 734.04345703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08439012 734.04345703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08439013 734.04345703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08439014 734.04345703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08439015 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08439016 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08439017 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08439018 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08439019 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08439020 734.04351807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08439021 734.04357910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08439022 734.04357910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08439023 734.04357910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08439024 734.04357910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08439025 734.04364014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08439026 734.04364014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08439027 734.04364014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08439028 734.04364014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08439029 734.04370117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08439030 734.04370117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08439031 734.04370117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08439032 734.04370117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08439033 734.04376221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08439034 734.04376221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08439035 734.04376221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08439036 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08439037 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08439038 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08439039 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08439040 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08439041 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08439042 734.04382324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08439043 734.04388428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08439044 734.04388428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08439045 734.04388428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08439046 734.04388428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08439047 734.04394531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08439048 734.04394531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08439049 734.04394531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08439050 734.04394531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08439051 734.04400635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08439052 734.04400635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08439053 734.04400635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08439054 734.04400635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08439055 734.04406738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08439056 734.04406738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08439057 734.04412842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08439058 734.04412842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08439059 734.04412842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08439060 734.04412842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08439061 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08439062 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08439063 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08439064 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08439065 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08439066 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08439067 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08439068 734.04418945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08439069 734.04425049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08439070 734.04425049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08439071 734.04425049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08439072 734.04425049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08439073 734.04431152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08439074 734.04431152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08439075 734.04431152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08439076 734.04431152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08439077 734.04437256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08439078 734.04437256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08439079 734.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08439080 734.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08439081 734.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08439082 734.04443359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08439083 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08439084 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08439085 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08439086 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08439087 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08439088 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08439089 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08439090 734.04449463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08439091 734.04455566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08439092 734.04455566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08439093 734.04455566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08439094 734.04455566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08439095 734.04461670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08439096 734.04461670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08439097 734.04461670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08439098 734.04461670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08439099 734.04467773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08439100 734.04467773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08439101 734.04473877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08439102 734.04473877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08439103 734.04473877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08439104 734.04473877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08439105 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08439106 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08439107 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08439108 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08439109 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08439110 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08439111 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08439112 734.04479980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08439113 734.04486084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08439114 734.04486084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08439115 734.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08439116 734.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08439117 734.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08439118 734.04492188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08439119 734.04498291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08439120 734.04498291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08439121 734.04498291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08439122 734.04498291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08439123 734.04504395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08439124 734.04504395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08439125 734.04504395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08439126 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08439127 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08439128 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08439129 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08439130 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08439131 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08439132 734.04510498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08439133 734.04516602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08439134 734.04516602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08439135 734.04516602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08439136 734.04516602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08439137 734.04522705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08439138 734.04522705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08439139 734.04522705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08439140 734.04522705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08439141 734.04528809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08439142 734.04528809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08439143 734.04528809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08439144 734.04528809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08439145 734.04534912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08439146 734.04534912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08439147 734.04534912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08439148 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08439149 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08439150 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08439151 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08439152 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08439153 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08439154 734.04541016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08439155 734.04547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08439156 734.04547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08439157 734.04547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08439158 734.04547119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08439159 734.04553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08439160 734.04553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08439161 734.04553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08439162 734.04553223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08439163 734.04559326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08439164 734.04559326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08439165 734.04559326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08439166 734.04559326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08439167 734.04565430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08439168 734.04565430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08439169 734.04565430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08439170 734.04571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08439171 734.04571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08439172 734.04571533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08439173 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08439174 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08439175 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08439176 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08439177 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08439178 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08439179 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08439180 734.04577637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08439181 734.04583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08439182 734.04583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08439183 734.04583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08439184 734.04583740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08439185 734.04589844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08439186 734.04589844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08439187 734.04589844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08439188 734.04589844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08439189 734.04595947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08439190 734.04595947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08439191 734.04595947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08439192 734.04602051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08439193 734.04602051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08439194 734.04602051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08439195 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08439196 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08439197 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08439198 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08439199 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08439200 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08439201 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08439202 734.04608154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08439203 734.04614258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08439204 734.04614258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08439205 734.04614258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08439206 734.04614258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08439207 734.04620361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08439208 734.04620361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08439209 734.04620361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08439210 734.04620361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08439211 734.04626465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08439212 734.04626465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08439213 734.04632568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08439214 734.04632568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08439215 734.04632568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08439216 734.04632568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08439217 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08439218 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08439219 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08439220 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08439221 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08439222 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08439223 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08439224 734.04638672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08439225 734.04644775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08439226 734.04644775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08439227 734.04644775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08439228 734.04644775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08439229 734.04650879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08439230 734.04650879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08439231 734.04650879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08439232 734.04650879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08439233 734.04656982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08439234 734.04656982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08439235 734.04663086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08439236 734.04663086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08439237 734.04663086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08439238 734.04663086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08439239 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08439240 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08439241 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08439242 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08439243 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08439244 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08439245 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08439246 734.04669189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08439247 734.04675293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08439248 734.04675293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08439249 734.04675293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08439250 734.04681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08439251 734.04681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08439252 734.04681396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08439253 734.04687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08439254 734.04687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08439255 734.04687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08439256 734.04687500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08439257 734.04693604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08439258 734.04693604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08439259 734.04693604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08439260 734.04693604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08439261 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08439262 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08439263 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08439264 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08439265 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08439266 734.04699707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08439267 734.04705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08439268 734.04705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08439269 734.04705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08439270 734.04705811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08439271 734.04711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08439272 734.04711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08439273 734.04711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08439274 734.04711914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08439275 734.04718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08439276 734.04718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08439277 734.04718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08439278 734.04718018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08439279 734.04724121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08439280 734.04724121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08439281 734.04724121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08439282 734.04730225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08439283 734.04730225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08439284 734.04730225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08439285 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08439286 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08439287 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08439288 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08439289 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08439290 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08439291 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08439292 734.04736328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08439293 734.04742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08439294 734.04742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08439295 734.04742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08439296 734.04742432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08439297 734.04748535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08439298 734.04748535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08439299 734.04748535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08439300 734.04754639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08439301 734.04754639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08439302 734.04754639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08439303 734.04760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08439304 734.04760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08439305 734.04760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08439306 734.04760742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08439307 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08439308 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08439309 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08439310 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08439311 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08439312 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08439313 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08439314 734.04766846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08439315 734.04772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08439316 734.04772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08439317 734.04772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08439318 734.04772949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08439319 734.04779053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08439320 734.04779053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08439321 734.04785156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08439322 734.04785156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08439323 734.04785156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08439324 734.04785156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08439325 734.04791260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08439326 734.04791260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08439327 734.04791260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08439328 734.04791260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08439329 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08439330 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08439331 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08439332 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08439333 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08439334 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08439335 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08439336 734.04797363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08439337 734.04803467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08439338 734.04803467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08439339 734.04803467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08439340 734.04803467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08439341 734.04809570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08439342 734.04809570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08439343 734.04815674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08439344 734.04815674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08439345 734.04815674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08439346 734.04815674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08439347 734.04821777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08439348 734.04821777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08439349 734.04821777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08439350 734.04821777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08439351 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08439352 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08439353 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08439354 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08439355 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08439356 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08439357 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08439358 734.04827881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08439359 734.04833984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08439360 734.04833984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08439361 734.04833984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08439362 734.04840088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08439363 734.04840088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08439364 734.04840088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08439365 734.04846191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08439366 734.04846191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08439367 734.04846191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08439368 734.04846191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08439369 734.04852295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08439370 734.04852295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08439371 734.04852295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08439372 734.04852295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08439373 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08439374 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08439375 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08439376 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08439377 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08439378 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08439379 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08439380 734.04858398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08439381 734.04864502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08439382 734.04864502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08439383 734.04864502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08439384 734.04870605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08439385 734.04870605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08439386 734.04870605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08439387 734.04876709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08439388 734.04876709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08439389 734.04876709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08439390 734.04876709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08439391 734.04882813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08439392 734.04882813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08439393 734.04882813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08439394 734.04882813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08439395 734.04888916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08439396 734.04888916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08439397 734.04888916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08439398 734.04888916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08439399 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08439400 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08439401 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08439402 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08439403 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08439404 734.04895020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08439405 734.04901123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08439406 734.04901123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08439407 734.04901123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08439408 734.04901123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08439409 734.04907227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08439410 734.04907227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08439411 734.04907227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08439412 734.04907227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08439413 734.04913330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08439414 734.04913330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08439415 734.04913330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08439416 734.04913330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08439417 734.04919434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08439418 734.04919434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08439419 734.04919434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08439420 734.04919434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08439421 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08439422 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08439423 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08439424 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08439425 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08439426 734.04925537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08439427 734.04931641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08439428 734.04931641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08439429 734.04931641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08439430 734.04931641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08439431 734.04937744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08439432 734.04937744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08439433 734.04937744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08439434 734.04937744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08439435 734.04943848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08439436 734.04943848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08439437 734.04943848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08439438 734.04943848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08439439 734.04949951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08439440 734.04949951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08439441 734.04949951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08439442 734.04949951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08439443 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08439444 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08439445 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08439446 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08439447 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08439448 734.04956055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08439449 734.04962158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08439450 734.04962158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08439451 734.04962158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08439452 734.04962158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08439453 734.04968262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08439454 734.04968262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08439455 734.04968262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08439456 734.04968262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08439457 734.04974365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08439458 734.04974365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08439459 734.04974365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08439460 734.04974365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08439461 734.04980469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08439462 734.04980469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08439463 734.04980469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08439464 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08439465 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08439466 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08439467 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08439468 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08439469 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08439470 734.04986572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08439471 734.04992676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08439472 734.04992676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08439473 734.04992676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08439474 734.04992676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08439475 734.04998779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08439476 734.04998779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08439477 734.04998779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08439478 734.04998779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08439479 734.05004883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08439480 734.05004883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08439481 734.05010986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08439482 734.05010986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08439483 734.05010986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08439484 734.05010986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08439485 734.05017090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08439486 734.05017090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08439487 734.05017090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08439488 734.05017090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08439489 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08439490 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08439491 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08439492 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08439493 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08439494 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08439495 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08439496 734.05023193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08439497 734.05029297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08439498 734.05029297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08439499 734.05029297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08439500 734.05035400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08439501 734.05035400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08439502 734.05035400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08439503 734.05041504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08439504 734.05041504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08439505 734.05041504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08439506 734.05041504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08439507 734.05047607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08439508 734.05047607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08439509 734.05047607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08439510 734.05047607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08439511 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08439512 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08439513 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08439514 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08439515 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08439516 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08439517 734.05053711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08439518 734.05059814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08439519 734.05059814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08439520 734.05059814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08439521 734.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08439522 734.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08439523 734.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08439524 734.05065918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08439525 734.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08439526 734.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08439527 734.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08439528 734.05072021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08439529 734.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08439530 734.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08439531 734.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08439532 734.05078125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08439533 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08439534 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08439535 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08439536 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08439537 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08439538 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08439539 734.05084229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08439540 734.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08439541 734.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08439542 734.05090332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08439543 734.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08439544 734.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08439545 734.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08439546 734.05096436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08439547 734.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08439548 734.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08439549 734.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08439550 734.05102539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08439551 734.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08439552 734.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08439553 734.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08439554 734.05108643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08439555 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08439556 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08439557 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08439558 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08439559 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08439560 734.05114746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08439561 734.05120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08439562 734.05120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08439563 734.05120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08439564 734.05120850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08439565 734.05126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08439566 734.05126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08439567 734.05126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08439568 734.05126953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08439569 734.05133057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08439570 734.05133057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08439571 734.05133057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08439572 734.05133057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08439573 734.05139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08439574 734.05139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08439575 734.05139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08439576 734.05139160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08439577 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08439578 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08439579 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08439580 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08439581 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08439582 734.05145264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08439583 734.05151367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08439584 734.05151367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08439585 734.05151367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08439586 734.05151367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08439587 734.05157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08439588 734.05157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08439589 734.05157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08439590 734.05157471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08439591 734.05163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08439592 734.05163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08439593 734.05163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08439594 734.05163574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08439595 734.05169678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08439596 734.05169678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08439597 734.05169678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08439598 734.05175781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08439599 734.05175781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08439600 734.05175781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08439601 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08439602 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08439603 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08439604 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08439605 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08439606 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08439607 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08439608 734.05181885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08439609 734.05187988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08439610 734.05187988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08439611 734.05187988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08439612 734.05187988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08439613 734.05194092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08439614 734.05194092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08439615 734.05194092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08439616 734.05194092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08439617 734.05200195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08439618 734.05200195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08439619 734.05206299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08439620 734.05206299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08439621 734.05206299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08439622 734.05206299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08439623 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08439624 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08439625 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08439626 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08439627 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08439628 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08439629 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08439630 734.05212402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08439631 734.05218506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08439632 734.05218506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08439633 734.05218506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08439634 734.05218506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08439635 734.05224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08439636 734.05224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08439637 734.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08439638 734.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08439639 734.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08439640 734.05230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08439641 734.05236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08439642 734.05236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08439643 734.05236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08439644 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08439645 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08439646 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08439647 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08439648 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08439649 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08439650 734.05242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08439651 734.05249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08439652 734.05249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08439653 734.05249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08439654 734.05249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08439655 734.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08439656 734.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08439657 734.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08439658 734.05255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08439659 734.05261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08439660 734.05261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08439661 734.05261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08439662 734.05261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08439663 734.05267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08439664 734.05267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08439665 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08439666 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08439667 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08439668 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08439669 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08439670 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08439671 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08439672 734.05273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08439673 734.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08439674 734.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08439675 734.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08439676 734.05279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08439677 734.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08439678 734.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08439679 734.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08439680 734.05285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08439681 734.05291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08439682 734.05291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08439683 734.05291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08439684 734.05297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08439685 734.05297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08439686 734.05297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08439687 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08439688 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08439689 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08439690 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08439691 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08439692 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08439693 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08439694 734.05303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08439695 734.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08439696 734.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08439697 734.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08439698 734.05310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08439699 734.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08439700 734.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08439701 734.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08439702 734.05316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08439703 734.05322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08439704 734.05322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08439705 734.05322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08439706 734.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08439707 734.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08439708 734.05328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08439709 734.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08439710 734.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08439711 734.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08439712 734.05334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08439713 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08439714 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08439715 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08439716 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08439717 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08439718 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08439719 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08439720 734.05340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08439721 734.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08439722 734.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08439723 734.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08439724 734.05346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08439725 734.05352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08439726 734.05352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08439727 734.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08439728 734.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08439729 734.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08439730 734.05358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08439731 734.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08439732 734.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08439733 734.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08439734 734.05364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08439735 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08439736 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08439737 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08439738 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08439739 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08439740 734.05371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08439741 734.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08439742 734.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08439743 734.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08439744 734.05377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08439745 734.05383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08439746 734.05383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08439747 734.05383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08439748 734.05383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08439749 734.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08439750 734.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08439751 734.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08439752 734.05389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08439753 734.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08439754 734.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08439755 734.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08439756 734.05395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08439757 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08439758 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08439759 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08439760 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08439761 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08439762 734.05401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08439763 734.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08439764 734.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08439765 734.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08439766 734.05407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08439767 734.05413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08439768 734.05413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08439769 734.05413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08439770 734.05413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08439771 734.05419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08439772 734.05419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08439773 734.05419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08439774 734.05426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08439775 734.05426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08439776 734.05426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08439777 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08439778 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08439779 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08439780 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08439781 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08439782 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08439783 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08439784 734.05432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08439785 734.05438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08439786 734.05438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08439787 734.05438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08439788 734.05444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08439789 734.05444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08439790 734.05444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08439791 734.05450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08439792 734.05450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08439793 734.05450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08439794 734.05450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08439795 734.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08439796 734.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08439797 734.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08439798 734.05456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08439799 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08439800 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08439801 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08439802 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08439803 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08439804 734.05462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08439805 734.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08439806 734.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08439807 734.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08439808 734.05468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08439809 734.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08439810 734.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08439811 734.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08439812 734.05474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08439813 734.05480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08439814 734.05480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08439815 734.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08439816 734.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08439817 734.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08439818 734.05487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08439819 734.05493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08439820 734.05493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08439821 734.05493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08439822 734.05493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08439823 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08439824 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08439825 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08439826 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08439827 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08439828 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08439829 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08439830 734.05499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08439831 734.05505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08439832 734.05505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08439833 734.05505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08439834 734.05511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08439835 734.05511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08439836 734.05511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08439837 734.05517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08439838 734.05517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08439839 734.05517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08439840 734.05517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08439841 734.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08439842 734.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08439843 734.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08439844 734.05523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08439845 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08439846 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08439847 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08439848 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08439849 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08439850 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08439851 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08439852 734.05529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08439853 734.05535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08439854 734.05535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08439855 734.05541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08439856 734.05541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08439857 734.05541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08439858 734.05541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08439859 734.05548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08439860 734.05548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08439861 734.05548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08439862 734.05548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08439863 734.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08439864 734.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08439865 734.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08439866 734.05554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08439867 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08439868 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08439869 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08439870 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08439871 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08439872 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08439873 734.05560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08439874 734.05566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08439875 734.05566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08439876 734.05566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08439877 734.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08439878 734.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08439879 734.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08439880 734.05572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08439881 734.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08439882 734.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08439883 734.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08439884 734.05578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08439885 734.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08439886 734.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08439887 734.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08439888 734.05584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08439889 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08439890 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08439891 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08439892 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08439893 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08439894 734.05590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08439895 734.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08439896 734.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08439897 734.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08439898 734.05596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08439899 734.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08439900 734.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08439901 734.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08439902 734.05603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08439903 734.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08439904 734.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08439905 734.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08439906 734.05609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08439907 734.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08439908 734.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08439909 734.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08439910 734.05615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08439911 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08439912 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08439913 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08439914 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08439915 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08439916 734.05621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08439917 734.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08439918 734.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08439919 734.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08439920 734.05627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08439921 734.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08439922 734.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08439923 734.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08439924 734.05633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08439925 734.05639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08439926 734.05639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08439927 734.05639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08439928 734.05639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08439929 734.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08439930 734.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08439931 734.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08439932 734.05645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08439933 734.05651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08439934 734.05651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08439935 734.05651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08439936 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08439937 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08439938 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08439939 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08439940 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08439941 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08439942 734.05657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08439943 734.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08439944 734.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08439945 734.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08439946 734.05664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08439947 734.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08439948 734.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08439949 734.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08439950 734.05670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08439951 734.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08439952 734.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08439953 734.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08439954 734.05676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08439955 734.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08439956 734.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08439957 734.05682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08439958 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08439959 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08439960 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08439961 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08439962 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08439963 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08439964 734.05688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08439965 734.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08439966 734.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08439967 734.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08439968 734.05694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08439969 734.05700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08439970 734.05700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08439971 734.05700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08439972 734.05700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08439973 734.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08439974 734.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08439975 734.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08439976 734.05706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08439977 734.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08439978 734.05712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08439979 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08439980 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08439981 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08439982 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08439983 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08439984 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08439985 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08439986 734.05718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08439987 734.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08439988 734.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08439989 734.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08439990 734.05725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08439991 734.05731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08439992 734.05731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08439993 734.05731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08439994 734.05731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08439995 734.05737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08439996 734.05737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08439997 734.05737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08439998 734.05737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08439999 734.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08440000 734.05743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08440001 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08440002 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08440003 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08440004 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08440005 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08440006 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08440007 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08440008 734.05749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08440009 734.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08440010 734.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08440011 734.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08440012 734.05755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08440013 734.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08440014 734.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08440015 734.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08440016 734.05761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08440017 734.05767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08440018 734.05767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08440019 734.05767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08440020 734.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08440021 734.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08440022 734.05773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08440023 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08440024 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08440025 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08440026 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08440027 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08440028 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08440029 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08440030 734.05780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08440031 734.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08440032 734.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08440033 734.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08440034 734.05786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08440035 734.05792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08440036 734.05792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08440037 734.05792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08440038 734.05792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08440039 734.05798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08440040 734.05798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08440041 734.05798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08440042 734.05804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08440043 734.05804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08440044 734.05804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08440045 734.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08440046 734.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08440047 734.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08440048 734.05810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08440049 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08440050 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08440051 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08440052 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08440053 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08440054 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08440055 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08440056 734.05816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08440057 734.05822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08440058 734.05822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08440059 734.05822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08440060 734.05822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08440061 734.05828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08440062 734.05828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08440063 734.05828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08440064 734.05834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08440065 734.05834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08440066 734.05834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08440067 734.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08440068 734.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08440069 734.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08440070 734.05841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08440071 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08440072 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08440073 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08440074 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08440075 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08440076 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08440077 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08440078 734.05847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08440079 734.05853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08440080 734.05853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08440081 734.05853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08440082 734.05853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08440083 734.05859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08440084 734.05859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08440085 734.05859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08440086 734.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08440087 734.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08440088 734.05865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08440089 734.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08440090 734.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08440091 734.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08440092 734.05871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08440093 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08440094 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08440095 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08440096 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08440097 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08440098 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08440099 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08440100 734.05877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08440101 734.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08440102 734.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08440103 734.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08440104 734.05883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08440105 734.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08440106 734.05889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08440107 734.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08440108 734.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08440109 734.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08440110 734.05895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08440111 734.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08440112 734.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08440113 734.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08440114 734.05902100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08440115 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08440116 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08440117 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08440118 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08440119 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08440120 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08440121 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08440122 734.05908203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08440123 734.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08440124 734.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08440125 734.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08440126 734.05914307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08440127 734.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08440128 734.05920410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08440129 734.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08440130 734.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08440131 734.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08440132 734.05926514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08440133 734.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08440134 734.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08440135 734.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08440136 734.05932617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08440137 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08440138 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08440139 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08440140 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08440141 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08440142 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08440143 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08440144 734.05938721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08440145 734.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08440146 734.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08440147 734.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08440148 734.05944824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08440149 734.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08440150 734.05950928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08440151 734.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08440152 734.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08440153 734.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08440154 734.05957031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08440155 734.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08440156 734.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08440157 734.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08440158 734.05963135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08440159 734.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08440160 734.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08440161 734.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08440162 734.05969238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08440163 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08440164 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08440165 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08440166 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08440167 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08440168 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08440169 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08440170 734.05975342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08440171 734.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08440172 734.05981445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08440173 734.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08440174 734.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08440175 734.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08440176 734.05987549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08440177 734.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08440178 734.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08440179 734.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08440180 734.05993652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08440181 734.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08440182 734.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08440183 734.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08440184 734.05999756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08440185 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08440186 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08440187 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08440188 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08440189 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08440190 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08440191 734.06005859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08440192 734.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08440193 734.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08440194 734.06011963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08440195 734.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08440196 734.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08440197 734.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08440198 734.06018066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08440199 734.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08440200 734.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08440201 734.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08440202 734.06030273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08440203 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08440204 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08440205 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08440206 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08440207 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08440208 734.06036377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08440209 734.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08440210 734.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08440211 734.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08440212 734.06042480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08440213 734.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08440214 734.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08440215 734.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08440216 734.06048584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08440217 734.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08440218 734.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08440219 734.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08440220 734.06054688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08440221 734.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08440222 734.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08440223 734.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08440224 734.06060791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08440225 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08440226 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08440227 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08440228 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08440229 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08440230 734.06066895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08440231 734.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08440232 734.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08440233 734.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08440234 734.06072998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08440235 734.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08440236 734.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08440237 734.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08440238 734.06079102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08440239 734.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08440240 734.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08440241 734.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08440242 734.06085205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08440243 734.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08440244 734.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08440245 734.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08440246 734.06091309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08440247 734.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08440248 734.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08440249 734.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08440250 734.06097412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08440251 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08440252 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08440253 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08440254 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08440255 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08440256 734.06103516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08440257 734.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08440258 734.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08440259 734.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08440260 734.06109619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08440261 734.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08440262 734.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08440263 734.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08440264 734.06115723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08440265 734.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08440266 734.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08440267 734.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08440268 734.06121826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08440269 734.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08440270 734.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08440271 734.06127930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08440272 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08440273 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08440274 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08440275 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08440276 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08440277 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08440278 734.06134033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08440279 734.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08440280 734.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08440281 734.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08440282 734.06140137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08440283 734.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08440284 734.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08440285 734.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08440286 734.06146240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08440287 734.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08440288 734.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08440289 734.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08440290 734.06152344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08440291 734.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08440292 734.06158447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08440293 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08440294 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08440295 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08440296 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08440297 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08440298 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08440299 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08440300 734.06164551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08440301 734.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08440302 734.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08440303 734.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08440304 734.06170654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08440305 734.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08440306 734.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08440307 734.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08440308 734.06176758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08440309 734.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08440310 734.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08440311 734.06182861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08440312 734.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08440313 734.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08440314 734.06188965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08440315 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08440316 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08440317 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08440318 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08440319 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08440320 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08440321 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08440322 734.06195068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08440323 734.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08440324 734.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08440325 734.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08440326 734.06201172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08440327 734.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08440328 734.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08440329 734.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08440330 734.06207275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08440331 734.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08440332 734.06213379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08440333 734.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08440334 734.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08440335 734.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08440336 734.06219482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08440337 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08440338 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08440339 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08440340 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08440341 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08440342 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08440343 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08440344 734.06225586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08440345 734.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08440346 734.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08440347 734.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08440348 734.06231689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08440349 734.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08440350 734.06237793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08440351 734.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08440352 734.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08440353 734.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08440354 734.06243896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08440355 734.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08440356 734.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08440357 734.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08440358 734.06250000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08440359 734.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08440360 734.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08440361 734.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08440362 734.06256104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08440363 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08440364 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08440365 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08440366 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08440367 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08440368 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08440369 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08440370 734.06262207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08440371 734.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08440372 734.06268311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08440373 734.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08440374 734.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08440375 734.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08440376 734.06274414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08440377 734.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08440378 734.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08440379 734.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08440380 734.06280518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08440381 734.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08440382 734.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08440383 734.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08440384 734.06286621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08440385 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08440386 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08440387 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08440388 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08440389 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08440390 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08440391 734.06292725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08440392 734.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08440393 734.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08440394 734.06298828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08440395 734.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08440396 734.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08440397 734.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08440398 734.06304932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08440399 734.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08440400 734.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08440401 734.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08440402 734.06311035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08440403 734.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08440404 734.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08440405 734.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08440406 734.06317139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08440407 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08440408 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08440409 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08440410 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08440411 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08440412 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08440413 734.06323242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08440414 734.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08440415 734.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08440416 734.06329346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08440417 734.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08440418 734.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08440419 734.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08440420 734.06335449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08440421 734.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08440422 734.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08440423 734.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08440424 734.06341553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08440425 734.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08440426 734.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08440427 734.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08440428 734.06347656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08440429 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08440430 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08440431 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08440432 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08440433 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08440434 734.06353760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08440435 734.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08440436 734.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08440437 734.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08440438 734.06359863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08440439 734.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08440440 734.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08440441 734.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08440442 734.06365967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08440443 734.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08440444 734.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08440445 734.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08440446 734.06372070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08440447 734.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08440448 734.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08440449 734.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08440450 734.06378174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08440451 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08440452 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08440453 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08440454 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08440455 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08440456 734.06384277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08440457 734.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08440458 734.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08440459 734.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08440460 734.06390381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08440461 734.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08440462 734.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08440463 734.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08440464 734.06396484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08440465 734.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08440466 734.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08440467 734.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08440468 734.06402588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08440469 734.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08440470 734.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08440471 734.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08440472 734.06408691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08440473 734.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08440474 734.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08440475 734.06414795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08440476 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08440477 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08440478 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08440479 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08440480 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08440481 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08440482 734.06420898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08440483 734.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08440484 734.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08440485 734.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08440486 734.06427002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08440487 734.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08440488 734.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08440489 734.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08440490 734.06433105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08440491 734.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08440492 734.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08440493 734.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08440494 734.06439209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08440495 734.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08440496 734.06445313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08440497 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08440498 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08440499 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08440500 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08440501 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08440502 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08440503 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08440504 734.06451416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08440505 734.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08440506 734.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08440507 734.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08440508 734.06457520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08440509 734.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08440510 734.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08440511 734.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08440512 734.06463623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08440513 734.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08440514 734.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08440515 734.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08440516 734.06469727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08440517 734.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08440518 734.06475830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08440519 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08440520 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08440521 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08440522 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08440523 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08440524 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08440525 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08440526 734.06481934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08440527 734.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08440528 734.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08440529 734.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08440530 734.06488037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08440531 734.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08440532 734.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08440533 734.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08440534 734.06494141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08440535 734.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08440536 734.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08440537 734.06500244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08440538 734.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08440539 734.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08440540 734.06506348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08440541 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08440542 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08440543 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08440544 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08440545 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08440546 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08440547 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08440548 734.06512451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08440549 734.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08440550 734.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08440551 734.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08440552 734.06518555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08440553 734.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08440554 734.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08440555 734.06524658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08440556 734.06530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08440557 734.06530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08440558 734.06530762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08440559 734.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08440560 734.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08440561 734.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08440562 734.06536865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08440563 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08440564 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08440565 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08440566 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08440567 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08440568 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08440569 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08440570 734.06542969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08440571 734.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08440572 734.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08440573 734.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08440574 734.06549072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08440575 734.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08440576 734.06555176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08440577 734.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08440578 734.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08440579 734.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08440580 734.06561279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08440581 734.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08440582 734.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08440583 734.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08440584 734.06567383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08440585 734.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08440586 734.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08440587 734.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08440588 734.06573486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08440589 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08440590 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08440591 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08440592 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08440593 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08440594 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08440595 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08440596 734.06579590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08440597 734.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08440598 734.06585693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08440599 734.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08440600 734.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08440601 734.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08440602 734.06591797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08440603 734.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08440604 734.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08440605 734.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08440606 734.06597900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08440607 734.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08440608 734.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08440609 734.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08440610 734.06604004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08440611 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08440612 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08440613 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08440614 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08440615 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08440616 734.06610107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08440617 734.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08440618 734.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08440619 734.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08440620 734.06616211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08440621 734.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08440622 734.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08440623 734.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08440624 734.06622314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08440625 734.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08440626 734.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08440627 734.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08440628 734.06628418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08440629 734.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08440630 734.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08440631 734.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08440632 734.06634521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08440633 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08440634 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08440635 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08440636 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08440637 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08440638 734.06640625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08440639 734.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08440640 734.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08440641 734.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08440642 734.06646729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08440643 734.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08440644 734.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08440645 734.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08440646 734.06652832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08440647 734.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08440648 734.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08440649 734.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08440650 734.06658936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08440651 734.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08440652 734.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08440653 734.06665039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08440654 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08440655 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08440656 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08440657 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08440658 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08440659 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08440660 734.06671143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08440661 734.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08440662 734.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08440663 734.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08440664 734.06677246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08440665 734.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08440666 734.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08440667 734.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08440668 734.06683350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08440669 734.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08440670 734.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08440671 734.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08440672 734.06689453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08440673 734.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08440674 734.06695557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08440675 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08440676 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08440677 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08440678 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08440679 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08440680 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08440681 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08440682 734.06701660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08440683 734.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08440684 734.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08440685 734.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08440686 734.06707764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08440687 734.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08440688 734.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08440689 734.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08440690 734.06713867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08440691 734.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08440692 734.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08440693 734.06719971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08440694 734.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08440695 734.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08440696 734.06726074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08440697 734.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08440698 734.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08440699 734.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08440700 734.06732178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08440701 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08440702 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08440703 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08440704 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08440705 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08440706 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08440707 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08440708 734.06738281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08440709 734.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08440710 734.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08440711 734.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08440712 734.06744385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08440713 734.06750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08440714 734.06750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08440715 734.06750488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08440716 734.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08440717 734.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08440718 734.06756592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08440719 734.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08440720 734.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08440721 734.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08440722 734.06762695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08440723 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08440724 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08440725 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08440726 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08440727 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08440728 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08440729 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08440730 734.06768799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08440731 734.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08440732 734.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08440733 734.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08440734 734.06774902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08440735 734.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08440736 734.06781006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08440737 734.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08440738 734.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08440739 734.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08440740 734.06787109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08440741 734.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08440742 734.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08440743 734.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08440744 734.06793213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08440745 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08440746 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08440747 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08440748 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08440749 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08440750 734.06799316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08440751 734.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08440752 734.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08440753 734.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08440754 734.06805420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08440755 734.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08440756 734.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08440757 734.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08440758 734.06811523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08440759 734.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08440760 734.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08440761 734.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08440762 734.06817627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08440763 734.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08440764 734.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08440765 734.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08440766 734.06823730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08440767 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08440768 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08440769 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08440770 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08440771 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08440772 734.06829834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08440773 734.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08440774 734.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08440775 734.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08440776 734.06835938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08440777 734.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08440778 734.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08440779 734.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08440780 734.06842041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08440781 734.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08440782 734.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08440783 734.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08440784 734.06848145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08440785 734.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08440786 734.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08440787 734.06854248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08440788 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08440789 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08440790 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08440791 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08440792 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08440793 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08440794 734.06860352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08440795 734.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08440796 734.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08440797 734.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08440798 734.06866455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08440799 734.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08440800 734.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08440801 734.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08440802 734.06872559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08440803 734.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08440804 734.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08440805 734.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08440806 734.06878662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08440807 734.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08440808 734.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08440809 734.06884766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08440810 734.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08440811 734.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08440812 734.06890869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08440813 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08440814 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08440815 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08440816 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08440817 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08440818 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08440819 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08440820 734.06896973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08440821 734.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08440822 734.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08440823 734.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08440824 734.06903076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08440825 734.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08440826 734.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08440827 734.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08440828 734.06909180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08440829 734.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08440830 734.06915283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08440831 734.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08440832 734.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08440833 734.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08440834 734.06921387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08440835 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08440836 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08440837 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08440838 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08440839 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08440840 734.06927490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08440841 734.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08440842 734.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08440843 734.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08440844 734.06933594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08440845 734.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08440846 734.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08440847 734.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08440848 734.06939697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08440849 734.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08440850 734.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08440851 734.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08440852 734.06945801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08440853 734.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08440854 734.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08440855 734.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08440856 734.06951904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08440857 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08440858 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08440859 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08440860 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08440861 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08440862 734.06958008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08440863 734.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08440864 734.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08440865 734.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08440866 734.06964111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08440867 734.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08440868 734.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08440869 734.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08440870 734.06970215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08440871 734.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08440872 734.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08440873 734.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08440874 734.06976318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08440875 734.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08440876 734.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08440877 734.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08440878 734.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08440879 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08440880 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08440881 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08440882 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08440883 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08440884 734.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08440885 734.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08440886 734.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08440887 734.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08440888 734.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08440889 734.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08440890 734.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08440891 734.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08440892 734.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08440893 734.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08440894 734.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08440895 734.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08440896 734.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08440897 734.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08440898 734.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08440899 734.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08440900 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08440901 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08440902 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08440903 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08440904 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08440905 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08440906 734.07019043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08440907 734.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08440908 734.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08440909 734.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08440910 734.07025146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08440911 734.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08440912 734.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08440913 734.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08440914 734.07031250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08440915 734.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08440916 734.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08440917 734.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08440918 734.07037354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08440919 734.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08440920 734.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08440921 734.07043457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08440922 734.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08440923 734.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08440924 734.07049561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08440925 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08440926 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08440927 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08440928 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08440929 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08440930 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08440931 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08440932 734.07055664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08440933 734.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08440934 734.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08440935 734.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08440936 734.07061768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08440937 734.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08440938 734.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08440939 734.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08440940 734.07067871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08440941 734.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08440942 734.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08440943 734.07073975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08440944 734.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08440945 734.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08440946 734.07080078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08440947 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08440948 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08440949 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08440950 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08440951 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08440952 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08440953 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08440954 734.07086182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08440955 734.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08440956 734.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08440957 734.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08440958 734.07092285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08440959 734.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08440960 734.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08440961 734.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08440962 734.07098389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08440963 734.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08440964 734.07104492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08440965 734.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08440966 734.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08440967 734.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08440968 734.07110596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08440969 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08440970 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08440971 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08440972 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08440973 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08440974 734.07116699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08440975 734.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08440976 734.07122803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08440977 734.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08440978 734.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08440979 734.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08440980 734.07128906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08440981 734.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08440982 734.07135010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08440983 734.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08440984 734.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08440985 734.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08440986 734.07141113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08440987 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08440988 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08440989 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08440990 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08440991 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08440992 734.07147217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08440993 734.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08440994 734.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08440995 734.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08440996 734.07153320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08440997 734.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08440998 734.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08440999 734.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08441000 734.07159424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08441001 734.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08441002 734.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08441003 734.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08441004 734.07165527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08441005 734.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08441006 734.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08441007 734.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08441008 734.07171631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08441009 734.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08441010 734.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08441011 734.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08441012 734.07177734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08441013 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08441014 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08441015 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08441016 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08441017 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08441018 734.07183838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08441019 734.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08441020 734.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08441021 734.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08441022 734.07189941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08441023 734.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08441024 734.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08441025 734.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08441026 734.07196045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08441027 734.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08441028 734.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08441029 734.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08441030 734.07202148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08441031 734.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08441032 734.07208252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08441033 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08441034 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08441035 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08441036 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08441037 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08441038 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08441039 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08441040 734.07214355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08441041 734.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08441042 734.07220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08441043 734.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08441044 734.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08441045 734.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08441046 734.07226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08441047 734.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08441048 734.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08441049 734.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08441050 734.07232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08441051 734.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08441052 734.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08441053 734.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08441054 734.07238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08441055 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08441056 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08441057 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08441058 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08441059 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08441060 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08441061 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08441062 734.07244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08441063 734.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08441064 734.07250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08441065 734.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08441066 734.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08441067 734.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08441068 734.07257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08441069 734.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08441070 734.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08441071 734.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08441072 734.07263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08441073 734.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08441074 734.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08441075 734.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08441076 734.07269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08441077 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08441078 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08441079 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08441080 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08441081 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08441082 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08441083 734.07275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08441084 734.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08441085 734.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08441086 734.07281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08441087 734.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08441088 734.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08441089 734.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08441090 734.07287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08441091 734.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08441092 734.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08441093 734.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08441094 734.07293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08441095 734.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08441096 734.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08441097 734.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08441098 734.07299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08441099 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08441100 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08441101 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08441102 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08441103 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08441104 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08441105 734.07305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08441106 734.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08441107 734.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08441108 734.07312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08441109 734.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08441110 734.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08441111 734.07318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08441112 734.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08441113 734.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08441114 734.07324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08441115 734.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08441116 734.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08441117 734.07330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08441118 734.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08441119 734.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08441120 734.07336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08441121 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08441122 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08441123 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08441124 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08441125 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08441126 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08441127 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08441128 734.07342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08441129 734.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08441130 734.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08441131 734.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08441132 734.07348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08441133 734.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08441134 734.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08441135 734.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08441136 734.07354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08441137 734.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08441138 734.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08441139 734.07360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08441140 734.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08441141 734.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08441142 734.07366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08441143 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08441144 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08441145 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08441146 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08441147 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08441148 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08441149 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08441150 734.07373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08441151 734.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08441152 734.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08441153 734.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08441154 734.07379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08441155 734.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08441156 734.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08441157 734.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08441158 734.07385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08441159 734.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08441160 734.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08441161 734.07391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08441162 734.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08441163 734.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08441164 734.07397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08441165 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08441166 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08441167 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08441168 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08441169 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08441170 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08441171 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08441172 734.07403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08441173 734.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08441174 734.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08441175 734.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08441176 734.07409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08441177 734.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08441178 734.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08441179 734.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08441180 734.07415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08441181 734.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08441182 734.07421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08441183 734.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08441184 734.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08441185 734.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08441186 734.07427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08441187 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08441188 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08441189 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08441190 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08441191 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08441192 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08441193 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08441194 734.07434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08441195 734.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08441196 734.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08441197 734.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08441198 734.07440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08441199 734.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08441200 734.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08441201 734.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08441202 734.07446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08441203 734.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08441204 734.07452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08441205 734.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08441206 734.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08441207 734.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08441208 734.07458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08441209 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08441210 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08441211 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08441212 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08441213 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08441214 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08441215 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08441216 734.07464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08441217 734.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08441218 734.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08441219 734.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08441220 734.07470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08441221 734.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08441222 734.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08441223 734.07476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08441224 734.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08441225 734.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08441226 734.07482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08441227 734.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08441228 734.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08441229 734.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08441230 734.07489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08441231 734.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08441232 734.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08441233 734.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08441234 734.07495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08441235 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08441236 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08441237 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08441238 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08441239 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08441240 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08441241 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08441242 734.07501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08441243 734.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08441244 734.07507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08441245 734.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08441246 734.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08441247 734.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08441248 734.07513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08441249 734.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08441250 734.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08441251 734.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08441252 734.07519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08441253 734.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08441254 734.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08441255 734.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08441256 734.07525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08441257 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08441258 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08441259 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08441260 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08441261 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08441262 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08441263 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08441264 734.07531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08441265 734.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08441266 734.07537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08441267 734.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08441268 734.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08441269 734.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08441270 734.07543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08441271 734.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08441272 734.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08441273 734.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08441274 734.07550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08441275 734.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08441276 734.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08441277 734.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08441278 734.07556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08441279 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08441280 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08441281 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08441282 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08441283 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08441284 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08441285 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08441286 734.07562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08441287 734.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08441288 734.07568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08441289 734.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08441290 734.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08441291 734.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08441292 734.07574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08441293 734.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08441294 734.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08441295 734.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08441296 734.07580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08441297 734.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08441298 734.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08441299 734.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08441300 734.07586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08441301 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08441302 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08441303 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08441304 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08441305 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08441306 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08441307 734.07592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08441308 734.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08441309 734.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08441310 734.07598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08441311 734.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08441312 734.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08441313 734.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08441314 734.07604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08441315 734.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08441316 734.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08441317 734.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08441318 734.07611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08441319 734.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08441320 734.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08441321 734.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08441322 734.07617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08441323 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08441324 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08441325 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08441326 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08441327 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08441328 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08441329 734.07623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08441330 734.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08441331 734.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08441332 734.07629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08441333 734.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08441334 734.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08441335 734.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08441336 734.07635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08441337 734.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08441338 734.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08441339 734.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08441340 734.07641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08441341 734.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08441342 734.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08441343 734.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08441344 734.07647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08441345 734.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08441346 734.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08441347 734.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08441348 734.07653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08441349 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08441350 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08441351 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08441352 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08441353 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08441354 734.07659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08441355 734.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08441356 734.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08441357 734.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08441358 734.07666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08441359 734.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08441360 734.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08441361 734.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08441362 734.07672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08441363 734.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08441364 734.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08441365 734.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08441366 734.07678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08441367 734.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08441368 734.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08441369 734.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08441370 734.07684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08441371 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08441372 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08441373 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08441374 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08441375 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08441376 734.07690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08441377 734.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08441378 734.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08441379 734.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08441380 734.07696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08441381 734.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08441382 734.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08441383 734.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08441384 734.07702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08441385 734.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08441386 734.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08441387 734.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08441388 734.07708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08441389 734.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08441390 734.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08441391 734.07714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08441392 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08441393 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08441394 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08441395 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08441396 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08441397 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08441398 734.07720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08441399 734.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08441400 734.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08441401 734.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08441402 734.07727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08441403 734.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08441404 734.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08441405 734.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08441406 734.07733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08441407 734.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08441408 734.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08441409 734.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08441410 734.07739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08441411 734.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08441412 734.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08441413 734.07745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08441414 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08441415 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08441416 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08441417 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08441418 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08441419 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08441420 734.07751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08441421 734.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08441422 734.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08441423 734.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08441424 734.07757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08441425 734.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08441426 734.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08441427 734.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08441428 734.07763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08441429 734.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08441430 734.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08441431 734.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08441432 734.07769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08441433 734.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08441434 734.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08441435 734.07775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08441436 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08441437 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08441438 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08441439 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08441440 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08441441 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08441442 734.07781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08441443 734.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08441444 734.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08441445 734.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08441446 734.07788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08441447 734.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08441448 734.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08441449 734.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08441450 734.07794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08441451 734.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08441452 734.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08441453 734.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08441454 734.07800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08441455 734.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08441456 734.07806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08441457 734.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08441458 734.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08441459 734.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08441460 734.07812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08441461 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08441462 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08441463 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08441464 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08441465 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08441466 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08441467 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08441468 734.07818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08441469 734.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08441470 734.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08441471 734.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08441472 734.07824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08441473 734.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08441474 734.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08441475 734.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08441476 734.07830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08441477 734.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08441478 734.07836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08441479 734.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08441480 734.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08441481 734.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08441482 734.07843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08441483 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08441484 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08441485 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08441486 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08441487 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08441488 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08441489 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08441490 734.07849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08441491 734.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08441492 734.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08441493 734.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08441494 734.07855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08441495 734.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08441496 734.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08441497 734.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08441498 734.07861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08441499 734.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08441500 734.07867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08441501 734.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08441502 734.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08441503 734.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08441504 734.07873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08441505 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08441506 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08441507 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08441508 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08441509 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08441510 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08441511 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08441512 734.07879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08441513 734.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08441514 734.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08441515 734.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08441516 734.07885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08441517 734.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08441518 734.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08441519 734.07891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08441520 734.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08441521 734.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08441522 734.07897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08441523 734.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08441524 734.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08441525 734.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08441526 734.07904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08441527 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08441528 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08441529 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08441530 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08441531 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08441532 734.07910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08441533 734.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08441534 734.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08441535 734.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08441536 734.07916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08441537 734.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08441538 734.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08441539 734.07922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08441540 734.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08441541 734.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08441542 734.07928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08441543 734.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08441544 734.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08441545 734.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08441546 734.07934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08441547 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08441548 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08441549 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08441550 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08441551 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08441552 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08441553 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08441554 734.07940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08441555 734.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08441556 734.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08441557 734.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08441558 734.07946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08441559 734.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08441560 734.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08441561 734.07952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08441562 734.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08441563 734.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08441564 734.07958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08441565 734.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08441566 734.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08441567 734.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08441568 734.07965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08441569 734.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08441570 734.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08441571 734.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08441572 734.07971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08441573 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08441574 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08441575 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08441576 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08441577 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08441578 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08441579 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08441580 734.07977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08441581 734.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08441582 734.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08441583 734.07983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08441584 734.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08441585 734.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08441586 734.07989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08441587 734.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08441588 734.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08441589 734.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08441590 734.07995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08441591 734.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08441592 734.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08441593 734.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08441594 734.08001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08441595 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08441596 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08441597 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08441598 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08441599 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08441600 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08441601 734.08007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08441602 734.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08441603 734.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08441604 734.08013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08441605 734.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08441606 734.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08441607 734.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08441608 734.08020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08441609 734.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08441610 734.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08441611 734.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08441612 734.08026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08441613 734.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08441614 734.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08441615 734.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08441616 734.08032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08441617 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08441618 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08441619 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08441620 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08441621 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08441622 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08441623 734.08038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08441624 734.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08441625 734.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08441626 734.08044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08441627 734.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08441628 734.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08441629 734.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08441630 734.08050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08441631 734.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08441632 734.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08441633 734.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08441634 734.08056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08441635 734.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08441636 734.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08441637 734.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08441638 734.08062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08441639 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08441640 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08441641 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08441642 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08441643 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08441644 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08441645 734.08068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08441646 734.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08441647 734.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08441648 734.08074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08441649 734.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08441650 734.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08441651 734.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08441652 734.08081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08441653 734.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08441654 734.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08441655 734.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08441656 734.08087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08441657 734.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08441658 734.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08441659 734.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08441660 734.08093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08441661 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08441662 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08441663 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08441664 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08441665 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08441666 734.08099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08441667 734.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08441668 734.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08441669 734.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08441670 734.08105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08441671 734.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08441672 734.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08441673 734.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08441674 734.08111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08441675 734.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08441676 734.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08441677 734.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08441678 734.08117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08441679 734.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08441680 734.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08441681 734.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08441682 734.08123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08441683 734.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08441684 734.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08441685 734.08129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08441686 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08441687 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08441688 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08441689 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08441690 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08441691 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08441692 734.08135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08441693 734.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08441694 734.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08441695 734.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08441696 734.08142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08441697 734.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08441698 734.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08441699 734.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08441700 734.08148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08441701 734.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08441702 734.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08441703 734.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08441704 734.08154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08441705 734.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08441706 734.08160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08441707 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08441708 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08441709 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08441710 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08441711 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08441712 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08441713 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08441714 734.08166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08441715 734.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08441716 734.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08441717 734.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08441718 734.08172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08441719 734.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08441720 734.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08441721 734.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08441722 734.08178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08441723 734.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08441724 734.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08441725 734.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08441726 734.08184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08441727 734.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08441728 734.08190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08441729 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08441730 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08441731 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08441732 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08441733 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08441734 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08441735 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08441736 734.08197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08441737 734.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08441738 734.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08441739 734.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08441740 734.08203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08441741 734.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08441742 734.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08441743 734.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08441744 734.08209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08441745 734.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08441746 734.08215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08441747 734.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08441748 734.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08441749 734.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08441750 734.08221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08441751 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08441752 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08441753 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08441754 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08441755 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08441756 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08441757 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08441758 734.08227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08441759 734.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08441760 734.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08441761 734.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08441762 734.08233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08441763 734.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08441764 734.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08441765 734.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08441766 734.08239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08441767 734.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08441768 734.08245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08441769 734.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08441770 734.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08441771 734.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08441772 734.08251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08441773 734.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08441774 734.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08441775 734.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08441776 734.08258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08441777 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08441778 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08441779 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08441780 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08441781 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08441782 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08441783 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08441784 734.08264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08441785 734.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08441786 734.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08441787 734.08270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08441788 734.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08441789 734.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08441790 734.08276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08441791 734.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08441792 734.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08441793 734.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08441794 734.08282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08441795 734.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08441796 734.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08441797 734.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08441798 734.08288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08441799 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08441800 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08441801 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08441802 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08441803 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08441804 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08441805 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08441806 734.08294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08441807 734.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08441808 734.08300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08441809 734.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08441810 734.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08441811 734.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08441812 734.08306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08441813 734.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08441814 734.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08441815 734.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08441816 734.08312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08441817 734.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08441818 734.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08441819 734.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08441820 734.08319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08441821 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08441822 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08441823 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08441824 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08441825 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08441826 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08441827 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08441828 734.08325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08441829 734.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08441830 734.08331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08441831 734.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08441832 734.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08441833 734.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08441834 734.08337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08441835 734.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08441836 734.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08441837 734.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08441838 734.08343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08441839 734.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08441840 734.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08441841 734.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08441842 734.08349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08441843 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08441844 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08441845 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08441846 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08441847 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08441848 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08441849 734.08355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08441850 734.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08441851 734.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08441852 734.08361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08441853 734.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08441854 734.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08441855 734.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08441856 734.08367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08441857 734.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08441858 734.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08441859 734.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08441860 734.08374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08441861 734.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08441862 734.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08441863 734.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08441864 734.08380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08441865 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08441866 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08441867 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08441868 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08441869 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08441870 734.08386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08441871 734.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08441872 734.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08441873 734.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08441874 734.08392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08441875 734.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08441876 734.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08441877 734.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08441878 734.08398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08441879 734.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08441880 734.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08441881 734.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08441882 734.08404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08441883 734.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08441884 734.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08441885 734.08410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08441886 734.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08441887 734.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08441888 734.08416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08441889 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08441890 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08441891 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08441892 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08441893 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08441894 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08441895 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08441896 734.08422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08441897 734.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08441898 734.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08441899 734.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08441900 734.08428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08441901 734.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08441902 734.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08441903 734.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08441904 734.08435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08441905 734.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08441906 734.08441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08441907 734.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08441908 734.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08441909 734.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08441910 734.08447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08441911 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08441912 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08441913 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08441914 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08441915 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08441916 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08441917 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08441918 734.08453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08441919 734.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08441920 734.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08441921 734.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08441922 734.08459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08441923 734.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08441924 734.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08441925 734.08465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08441926 734.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08441927 734.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08441928 734.08471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08441929 734.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08441930 734.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08441931 734.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08441932 734.08477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08441933 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08441934 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08441935 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08441936 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08441937 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08441938 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08441939 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08441940 734.08483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08441941 734.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08441942 734.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08441943 734.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08441944 734.08489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08441945 734.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08441946 734.08496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08441947 734.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08441948 734.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08441949 734.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08441950 734.08502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08441951 734.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08441952 734.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08441953 734.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08441954 734.08508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08441955 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08441956 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08441957 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08441958 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08441959 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08441960 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08441961 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08441962 734.08514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08441963 734.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08441964 734.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08441965 734.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08441966 734.08520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08441967 734.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08441968 734.08526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08441969 734.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08441970 734.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08441971 734.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08441972 734.08532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08441973 734.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08441974 734.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08441975 734.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08441976 734.08538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08441977 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08441978 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08441979 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08441980 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08441981 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08441982 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08441983 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08441984 734.08544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08441985 734.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08441986 734.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08441987 734.08551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08441988 734.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08441989 734.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08441990 734.08557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08441991 734.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08441992 734.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08441993 734.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08441994 734.08563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08441995 734.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08441996 734.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08441997 734.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08441998 734.08569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08441999 734.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08442000 734.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08442001 734.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08442002 734.08575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08442003 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08442004 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08442005 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08442006 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08442007 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08442008 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08442009 734.08581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08442010 734.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08442011 734.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08442012 734.08587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08442013 734.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08442014 734.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08442015 734.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08442016 734.08593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08442017 734.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08442018 734.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08442019 734.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08442020 734.08599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08442021 734.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08442022 734.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08442023 734.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08442024 734.08605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08442025 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08442026 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08442027 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08442028 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08442029 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08442030 734.08612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08442031 734.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08442032 734.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08442033 734.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08442034 734.08618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08442035 734.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08442036 734.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08442037 734.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08442038 734.08624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08442039 734.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08442040 734.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08442041 734.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08442042 734.08630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08442043 734.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08442044 734.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08442045 734.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08442046 734.08636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08442047 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08442048 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08442049 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08442050 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08442051 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08442052 734.08642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08442053 734.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08442054 734.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08442055 734.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08442056 734.08648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08442057 734.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08442058 734.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08442059 734.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08442060 734.08654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08442061 734.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08442062 734.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08442063 734.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08442064 734.08660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08442065 734.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08442066 734.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08442067 734.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08442068 734.08666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08442069 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08442070 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08442071 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08442072 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08442073 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08442074 734.08673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08442075 734.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08442076 734.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08442077 734.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08442078 734.08679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08442079 734.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08442080 734.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08442081 734.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08442082 734.08685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08442083 734.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08442084 734.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08442085 734.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08442086 734.08691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08442087 734.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08442088 734.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08442089 734.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08442090 734.08697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08442091 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08442092 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08442093 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08442094 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08442095 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08442096 734.08703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08442097 734.08709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08442098 734.08709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08442099 734.08709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08442100 734.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08442101 734.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08442102 734.08715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08442103 734.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08442104 734.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08442105 734.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08442106 734.08721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08442107 734.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08442108 734.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08442109 734.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08442110 734.08728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08442111 734.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08442112 734.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08442113 734.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08442114 734.08734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08442115 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08442116 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08442117 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08442118 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08442119 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08442120 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08442121 734.08740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08442122 734.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08442123 734.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08442124 734.08746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08442125 734.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08442126 734.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08442127 734.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08442128 734.08752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08442129 734.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08442130 734.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08442131 734.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08442132 734.08758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08442133 734.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08442134 734.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08442135 734.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08442136 734.08764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08442137 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08442138 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08442139 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08442140 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08442141 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08442142 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08442143 734.08770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08442144 734.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08442145 734.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08442146 734.08776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08442147 734.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08442148 734.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08442149 734.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08442150 734.08782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08442151 734.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08442152 734.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08442153 734.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08442154 734.08789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08442155 734.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08442156 734.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08442157 734.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08442158 734.08795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08442159 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08442160 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08442161 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08442162 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08442163 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08442164 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08442165 734.08801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08442166 734.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08442167 734.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08442168 734.08807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08442169 734.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08442170 734.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08442171 734.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08442172 734.08813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08442173 734.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08442174 734.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08442175 734.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08442176 734.08819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08442177 734.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08442178 734.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08442179 734.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08442180 734.08825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08442181 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08442182 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08442183 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08442184 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08442185 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08442186 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08442187 734.08831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08442188 734.08837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08442189 734.08837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08442190 734.08837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08442191 734.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08442192 734.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08442193 734.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08442194 734.08843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08442195 734.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08442196 734.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08442197 734.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08442198 734.08850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08442199 734.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08442200 734.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08442201 734.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08442202 734.08856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08442203 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08442204 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08442205 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08442206 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08442207 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08442208 734.08862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08442209 734.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08442210 734.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08442211 734.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08442212 734.08868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08442213 734.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08442214 734.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08442215 734.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08442216 734.08874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08442217 734.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08442218 734.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08442219 734.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08442220 734.08880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08442221 734.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08442222 734.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08442223 734.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08442224 734.08886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08442225 734.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08442226 734.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08442227 734.08892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08442228 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08442229 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08442230 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08442231 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08442232 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08442233 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08442234 734.08898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08442235 734.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08442236 734.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08442237 734.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08442238 734.08905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08442239 734.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08442240 734.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08442241 734.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08442242 734.08911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08442243 734.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08442244 734.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08442245 734.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08442246 734.08917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08442247 734.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08442248 734.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08442249 734.08923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08442250 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08442251 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08442252 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08442253 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08442254 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08442255 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08442256 734.08929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08442257 734.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08442258 734.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08442259 734.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08442260 734.08935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08442261 734.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08442262 734.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08442263 734.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08442264 734.08941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08442265 734.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08442266 734.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08442267 734.08947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08442268 734.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08442269 734.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08442270 734.08953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08442271 734.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08442272 734.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08442273 734.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08442274 734.08959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08442275 734.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08442276 734.08966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08442277 734.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08442278 734.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08442279 734.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08442280 734.08972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08442281 734.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08442282 734.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08442283 734.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08442284 734.08978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08442285 734.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08442286 734.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08442287 734.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08442288 734.08984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08442289 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08442290 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08442291 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08442292 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08442293 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08442294 734.08990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08442295 734.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08442296 734.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08442297 734.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08442298 734.08996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08442299 734.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08442300 734.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08442301 734.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08442302 734.09002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08442303 734.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08442304 734.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08442305 734.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08442306 734.09008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08442307 734.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08442308 734.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08442309 734.09014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08442310 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08442311 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08442312 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08442313 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08442314 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08442315 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08442316 734.09020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08442317 734.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08442318 734.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08442319 734.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08442320 734.09027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08442321 734.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08442322 734.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08442323 734.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08442324 734.09033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08442325 734.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08442326 734.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08442327 734.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08442328 734.09039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08442329 734.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08442330 734.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08442331 734.09045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08442332 734.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08442333 734.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08442334 734.09051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08442335 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08442336 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08442337 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08442338 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08442339 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08442340 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08442341 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08442342 734.09057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08442343 734.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08442344 734.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08442345 734.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08442346 734.09063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08442347 734.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08442348 734.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08442349 734.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08442350 734.09069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08442351 734.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08442352 734.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08442353 734.09075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08442354 734.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08442355 734.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08442356 734.09082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08442357 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08442358 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08442359 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08442360 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08442361 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08442362 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08442363 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08442364 734.09088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08442365 734.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08442366 734.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08442367 734.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08442368 734.09094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08442369 734.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08442370 734.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08442371 734.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08442372 734.09100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08442373 734.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08442374 734.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08442375 734.09106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08442376 734.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08442377 734.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08442378 734.09112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08442379 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08442380 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08442381 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08442382 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08442383 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08442384 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08442385 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08442386 734.09118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08442387 734.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08442388 734.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08442389 734.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08442390 734.09124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08442391 734.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08442392 734.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08442393 734.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08442394 734.09130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08442395 734.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08442396 734.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08442397 734.09136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08442398 734.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08442399 734.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08442400 734.09143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08442401 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08442402 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08442403 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08442404 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08442405 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08442406 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08442407 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08442408 734.09149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08442409 734.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08442410 734.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08442411 734.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08442412 734.09155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08442413 734.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08442414 734.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08442415 734.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08442416 734.09161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08442417 734.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08442418 734.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08442419 734.09167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08442420 734.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08442421 734.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08442422 734.09173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08442423 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08442424 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08442425 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08442426 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08442427 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08442428 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08442429 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08442430 734.09179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08442431 734.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08442432 734.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08442433 734.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08442434 734.09185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08442435 734.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08442436 734.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08442437 734.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08442438 734.09191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08442439 734.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08442440 734.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08442441 734.09197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08442442 734.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08442443 734.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08442444 734.09204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08442445 734.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08442446 734.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08442447 734.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08442448 734.09210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08442449 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08442450 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08442451 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08442452 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08442453 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08442454 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08442455 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08442456 734.09216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08442457 734.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08442458 734.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08442459 734.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08442460 734.09222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08442461 734.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08442462 734.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08442463 734.09228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08442464 734.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08442465 734.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08442466 734.09234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08442467 734.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08442468 734.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08442469 734.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08442470 734.09240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08442471 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08442472 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08442473 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08442474 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08442475 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08442476 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08442477 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08442478 734.09246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08442479 734.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08442480 734.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08442481 734.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08442482 734.09252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08442483 734.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08442484 734.09259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08442485 734.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08442486 734.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08442487 734.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08442488 734.09265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08442489 734.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08442490 734.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08442491 734.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08442492 734.09271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08442493 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08442494 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08442495 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08442496 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08442497 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08442498 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08442499 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08442500 734.09277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08442501 734.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08442502 734.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08442503 734.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08442504 734.09283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08442505 734.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08442506 734.09289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08442507 734.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08442508 734.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08442509 734.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08442510 734.09295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08442511 734.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08442512 734.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08442513 734.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08442514 734.09301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08442515 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08442516 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08442517 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08442518 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08442519 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08442520 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08442521 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08442522 734.09307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08442523 734.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08442524 734.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08442525 734.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08442526 734.09313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08442527 734.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08442528 734.09320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08442529 734.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08442530 734.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08442531 734.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08442532 734.09326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08442533 734.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08442534 734.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08442535 734.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08442536 734.09332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08442537 734.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08442538 734.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08442539 734.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08442540 734.09338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08442541 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08442542 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08442543 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08442544 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08442545 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08442546 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08442547 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08442548 734.09344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08442549 734.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08442550 734.09350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08442551 734.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08442552 734.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08442553 734.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08442554 734.09356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08442555 734.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08442556 734.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08442557 734.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08442558 734.09362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08442559 734.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08442560 734.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08442561 734.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08442562 734.09368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08442563 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08442564 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08442565 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08442566 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08442567 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08442568 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08442569 734.09375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08442570 734.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08442571 734.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08442572 734.09381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08442573 734.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08442574 734.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08442575 734.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08442576 734.09387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08442577 734.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08442578 734.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08442579 734.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08442580 734.09393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08442581 734.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08442582 734.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08442583 734.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08442584 734.09399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08442585 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08442586 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08442587 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08442588 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08442589 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08442590 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08442591 734.09405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08442592 734.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08442593 734.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08442594 734.09411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08442595 734.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08442596 734.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08442597 734.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08442598 734.09417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08442599 734.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08442600 734.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08442601 734.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08442602 734.09423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08442603 734.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08442604 734.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08442605 734.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08442606 734.09429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08442607 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08442608 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08442609 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08442610 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08442611 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08442612 734.09436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08442613 734.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08442614 734.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08442615 734.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08442616 734.09442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08442617 734.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08442618 734.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08442619 734.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08442620 734.09448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08442621 734.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08442622 734.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08442623 734.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08442624 734.09454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08442625 734.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08442626 734.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08442627 734.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08442628 734.09460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08442629 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08442630 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08442631 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08442632 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08442633 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08442634 734.09466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08442635 734.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08442636 734.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08442637 734.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08442638 734.09472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08442639 734.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08442640 734.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08442641 734.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08442642 734.09478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08442643 734.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08442644 734.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08442645 734.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08442646 734.09484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08442647 734.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08442648 734.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08442649 734.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08442650 734.09490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08442651 734.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08442652 734.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08442653 734.09497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08442654 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08442655 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08442656 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08442657 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08442658 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08442659 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08442660 734.09503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08442661 734.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08442662 734.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08442663 734.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08442664 734.09509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08442665 734.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08442666 734.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08442667 734.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08442668 734.09515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08442669 734.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08442670 734.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08442671 734.09521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08442672 734.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08442673 734.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08442674 734.09527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08442675 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08442676 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08442677 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08442678 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08442679 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08442680 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08442681 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08442682 734.09533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08442683 734.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08442684 734.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08442685 734.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08442686 734.09539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08442687 734.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08442688 734.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08442689 734.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08442690 734.09545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08442691 734.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08442692 734.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08442693 734.09552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08442694 734.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08442695 734.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08442696 734.09558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08442697 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08442698 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08442699 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08442700 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08442701 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08442702 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08442703 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08442704 734.09564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08442705 734.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08442706 734.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08442707 734.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08442708 734.09570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08442709 734.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08442710 734.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08442711 734.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08442712 734.09576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08442713 734.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08442714 734.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08442715 734.09582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08442716 734.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08442717 734.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08442718 734.09588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08442719 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08442720 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08442721 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08442722 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08442723 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08442724 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08442725 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08442726 734.09594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08442727 734.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08442728 734.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08442729 734.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08442730 734.09600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08442731 734.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08442732 734.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08442733 734.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08442734 734.09606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08442735 734.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08442736 734.09613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08442737 734.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08442738 734.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08442739 734.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08442740 734.09619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08442741 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08442742 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08442743 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08442744 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08442745 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08442746 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08442747 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08442748 734.09625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08442749 734.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08442750 734.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08442751 734.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08442752 734.09631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08442753 734.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08442754 734.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08442755 734.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08442756 734.09637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08442757 734.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08442758 734.09643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08442759 734.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08442760 734.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08442761 734.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08442762 734.09649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08442763 734.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08442764 734.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08442765 734.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08442766 734.09655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08442767 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08442768 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08442769 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08442770 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08442771 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08442772 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08442773 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08442774 734.09661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08442775 734.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08442776 734.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08442777 734.09667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08442778 734.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08442779 734.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08442780 734.09674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08442781 734.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08442782 734.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08442783 734.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08442784 734.09680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08442785 734.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08442786 734.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08442787 734.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08442788 734.09686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08442789 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08442790 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08442791 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08442792 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08442793 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08442794 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08442795 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08442796 734.09692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08442797 734.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08442798 734.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08442799 734.09698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08442800 734.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08442801 734.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08442802 734.09704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08442803 734.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08442804 734.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08442805 734.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08442806 734.09710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08442807 734.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08442808 734.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08442809 734.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08442810 734.09716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08442811 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08442812 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08442813 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08442814 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08442815 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08442816 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08442817 734.09722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08442818 734.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08442819 734.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08442820 734.09729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08442821 734.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08442822 734.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08442823 734.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08442824 734.09735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08442825 734.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08442826 734.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08442827 734.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08442828 734.09741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08442829 734.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08442830 734.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08442831 734.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08442832 734.09747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08442833 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08442834 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08442835 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -08442836 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -08442837 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -08442838 734.09753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -08442839 734.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -08442840 734.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -08442841 734.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -08442842 734.09759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -08442843 734.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -08442844 734.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -08442845 734.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -08442846 734.09765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -08442847 734.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -08442848 734.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -08442849 734.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -08442850 734.09771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -08442851 734.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -08442852 734.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -08442853 734.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -08442854 734.09777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -08442855 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -08442856 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -08442857 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -08442858 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -08442859 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -08442860 734.09783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -08442861 734.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -08442862 734.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -08442863 734.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -08442864 734.09790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -08442865 734.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -08442866 734.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -08442867 734.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -08442868 734.09796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -08442869 734.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -08442870 734.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -08442871 734.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -08442872 734.09802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -08442873 734.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -08442874 734.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -08442875 734.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -08442876 734.09808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -08442877 734.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -08442878 734.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -08442879 734.09814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -08442880 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -08442881 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -08442882 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -08442883 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -08442884 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -08442885 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -08442886 734.09820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -08442887 734.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -08442888 734.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -08442889 734.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -08442890 734.09826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -08442891 734.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -08442892 734.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -08442893 734.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -08442894 734.09832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -08442895 734.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -08442896 734.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -08442897 734.09838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -08442898 734.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -08442899 734.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -08442900 734.09844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -08442901 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -08442902 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -08442903 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -08442904 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -08442905 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -08442906 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -08442907 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -08442908 734.09851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -08442909 734.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -08442910 734.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -08442911 734.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -08442912 734.09857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -08442913 734.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -08442914 734.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -08442915 734.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -08442916 734.09863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -08442917 734.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -08442918 734.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -08442919 734.09869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -08442920 734.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -08442921 734.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -08442922 734.09875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -08442923 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -08442924 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -08442925 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -08442926 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -08442927 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -08442928 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -08442929 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -08442930 734.09881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -08442931 734.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -08442932 734.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -08442933 734.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -08442934 734.09887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -08442935 734.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -08442936 734.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -08442937 734.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -08442938 734.09893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -08442939 734.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -08442940 734.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -08442941 734.09899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -08442942 734.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -08442943 734.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -08442944 734.09906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -08442945 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -08442946 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -08442947 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -08442948 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -08442949 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -08442950 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -08442951 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -08442952 734.09912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -08442953 734.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -08442954 734.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -08442955 734.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -08442956 734.09918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -08442957 734.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -08442958 734.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -08442959 734.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -08442960 734.09924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -08442961 734.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -08442962 734.09930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -08442963 734.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -08442964 734.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -08442965 734.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -08442966 734.09936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -08442967 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -08442968 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -08442969 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -08442970 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -08442971 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -08442972 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -08442973 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -08442974 734.09942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -08442975 734.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -08442976 734.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -08442977 734.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -08442978 734.09948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -08442979 734.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -08442980 734.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -08442981 734.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -08442982 734.09954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -08442983 734.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -08442984 734.09960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -08442985 734.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -08442986 734.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -08442987 734.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -08442988 734.09967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -08442989 734.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -08442990 734.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -08442991 734.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -08442992 734.09973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -08442993 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -08442994 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -08442995 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -08442996 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -08442997 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -08442998 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -08442999 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -08443000 734.09979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -08443001 734.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -08443002 734.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -08443003 734.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -08443004 734.09985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -08443005 734.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -08443006 734.09991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -08443007 734.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -08443008 734.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -08443009 734.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -08443010 734.09997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -08443011 734.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -08443012 734.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -08443013 734.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -08443014 734.10003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -08443015 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -08443016 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -08443017 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -08443018 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -08443019 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -08443020 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -08443021 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -08443022 734.10009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -08443023 734.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -08443024 734.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -08443025 734.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -08443026 734.10015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -08443027 734.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -08443028 734.10021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -08443029 734.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -08443030 734.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -08443031 734.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -08443032 734.10028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -08443033 734.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -08443034 734.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -08443035 734.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -08443036 734.10034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -08443037 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -08443038 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -08443039 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -08443040 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -08443041 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -08443042 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -08443043 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -08443044 734.10040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -08443045 734.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -08443046 734.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -08443047 734.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -08443048 734.10046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -08443049 734.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -08443050 734.10052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -08443051 734.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -08443052 734.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -08443053 734.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -08443054 734.10058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -08443055 734.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -08443056 734.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -08443057 734.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -08443058 734.10064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -08443059 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -08443060 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -08443061 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -08443062 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -08443063 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -08443064 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -08443065 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -08443066 734.10070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -08443067 734.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -08443068 734.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -08443069 734.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -08443070 734.10076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -08443071 734.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -08443072 734.10083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -08443073 734.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -08443074 734.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -08443075 734.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -08443076 734.10089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -08443077 734.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -08443078 734.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -08443079 734.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -08443080 734.10095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -08443081 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -08443082 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -08443083 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -08443084 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -08443085 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -08443086 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -08443087 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -08443088 734.10101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -08443089 734.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -08443090 734.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -08443091 734.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -08443092 734.10107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -08443093 734.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -08443094 734.10113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -08443095 734.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -08443096 734.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -08443097 734.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -08443098 734.10119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -08443099 734.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -08443100 734.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -08443101 734.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -08443102 734.10125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -08443103 734.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -08443104 734.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -08443105 734.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -08443106 734.10131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -08443107 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -08443108 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -08443109 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -08443110 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -08443111 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -08443112 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -08443113 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -08443114 734.10137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -08443115 734.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -08443116 734.10144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -08443117 734.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -08443118 734.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -08443119 734.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -08443120 734.10150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -08443121 734.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -08443122 734.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -08443123 734.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -08443124 734.10156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -08443125 734.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -08443126 734.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -08443127 734.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -08443128 734.10162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -08443129 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -08443130 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -08443131 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -08443132 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -08443133 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -08443134 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -08443135 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -08443136 734.10168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -08443137 734.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -08443138 734.10174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -08443139 734.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -08443140 734.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -08443141 734.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -08443142 734.10180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -08443143 734.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -08443144 734.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -08443145 734.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -08443146 734.10186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -08443147 734.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -08443148 734.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -08443149 734.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -08443150 734.10192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -08443151 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -08443152 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -08443153 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -08443154 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -08443155 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -08443156 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -08443157 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -08443158 734.10198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -08443159 734.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -08443160 734.10205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -08443161 734.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -08443162 734.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -08443163 734.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -08443164 734.10211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -08443165 734.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -08443166 734.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -08443167 734.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -08443168 734.10217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -08443169 734.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -08443170 734.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -08443171 734.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -08443172 734.10223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -08443173 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -08443174 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -08443175 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -08443176 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -08443177 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -08443178 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -08443179 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -08443180 734.10229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -08443181 734.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -08443182 734.10235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -08443183 734.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -08443184 734.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -08443185 734.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -08443186 734.10241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -08443187 734.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -08443188 734.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -08443189 734.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -08443190 734.10247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -08443191 734.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -08443192 734.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -08443193 734.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -08443194 734.10253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -08443195 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -08443196 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -08443197 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -08443198 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -08443199 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -08443200 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -08443201 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -08443202 734.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -08443203 734.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -08443204 734.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -08443205 734.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -08443206 734.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -08443207 734.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -08443208 734.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -08443209 734.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -08443210 734.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -08443211 734.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -08443212 734.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -08443213 734.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -08443214 734.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -08443215 734.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -08443216 734.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -08443217 734.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -08443218 734.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -08443219 734.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -08443220 734.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -08443221 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -08443222 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -08443223 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -08443224 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -08443225 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -08443226 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -08443227 734.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -08443228 734.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -08443229 734.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -08443230 734.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -08443231 734.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -08443232 734.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -08443233 734.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -08443234 734.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -08443235 734.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -08443236 734.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -08443237 734.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -08443238 734.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -08443239 734.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -08443240 734.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -08443241 734.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -08443242 734.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -08443243 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -08443244 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -08443245 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -08443246 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -08443247 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -08443248 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -08443249 734.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -08443250 734.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -08443251 734.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -08443252 734.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -08443253 734.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -08443254 734.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -08443255 734.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -08443256 734.10339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -08443257 734.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -08443258 734.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -08443259 734.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -08443260 734.10345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -08443261 734.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -08443262 734.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -08443263 734.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -08443264 734.10351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -08443265 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -08443266 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -08443267 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -08443268 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -08443269 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -08443270 734.10357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -08443271 734.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -08443272 734.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -08443273 734.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -08443274 734.10363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -08443275 734.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -08443276 734.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -08443277 734.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -08443278 734.10369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -08443279 734.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -08443280 734.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -08443281 734.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -08443282 734.10375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -08443283 734.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -08443284 734.10382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -08443285 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -08443286 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -08443287 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -08443288 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -08443289 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -08443290 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -08443291 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -08443292 734.10388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -08443293 734.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -08443294 734.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -08443295 734.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -08443296 734.10394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -08443297 734.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -08443298 734.10400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -08443299 734.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -08443300 734.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -08443301 734.10406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -08443302 734.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -08443303 734.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -08443304 734.10412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -08443305 734.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -08443306 734.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -08443307 734.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -08443308 734.10418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -08443309 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -08443310 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -08443311 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -08443312 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -08443313 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -08443314 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -08443315 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -08443316 734.10424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -08443317 734.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -08443318 734.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -08443319 734.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -08443320 734.10430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -08443321 734.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -08443322 734.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -08443323 734.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -08443324 734.10437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -08443325 734.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -08443326 734.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -08443327 734.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -08443328 734.10443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -08443329 734.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -08443330 734.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -08443331 734.10449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -08443332 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -08443333 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -08443334 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -08443335 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -08443336 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -08443337 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -08443338 734.10455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -08443339 734.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -08443340 734.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -08443341 734.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -08443342 734.10461426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -08443343 734.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -08443344 734.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -08443345 734.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -08443346 734.10467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -08443347 734.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -08443348 734.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -08443349 734.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -08443350 734.10473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -08443351 734.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -08443352 734.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -08443353 734.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -08443354 734.10479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -08443355 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -08443356 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -08443357 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -08443358 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -08443359 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -08443360 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -08443361 734.10485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -08443362 734.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -08443363 734.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -08443364 734.10491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -08443365 734.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -08443366 734.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -08443367 734.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -08443368 734.10498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -08443369 734.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -08443370 734.10504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -08443371 734.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -08443372 734.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -08443373 734.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -08443374 734.10510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -08443375 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -08443376 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -08443377 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -08443378 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -08443379 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -08443380 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -08443381 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -08443382 734.10516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -08443383 734.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -08443384 734.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -08443385 734.10522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -08443386 734.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -08443387 734.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -08443388 734.10528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -08443389 734.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -08443390 734.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99c8 -08443391 734.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -08443392 734.10534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99d8 -08443393 734.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -08443394 734.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99e8 -08443395 734.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -08443396 734.10540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x99f8 -08443397 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -08443398 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a08 -08443399 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -08443400 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a18 -08443401 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -08443402 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a28 -08443403 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -08443404 734.10546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a38 -08443405 734.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -08443406 734.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a48 -08443407 734.10552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -08443408 734.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a58 -08443409 734.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -08443410 734.10559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a68 -08443411 734.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -08443412 734.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a78 -08443413 734.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -08443414 734.10565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a88 -08443415 734.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -08443416 734.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9a98 -08443417 734.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -08443418 734.10571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9aa8 -08443419 734.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -08443420 734.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ab8 -08443421 734.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -08443422 734.10577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ac8 -08443423 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -08443424 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ad8 -08443425 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -08443426 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ae8 -08443427 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -08443428 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9af8 -08443429 734.10583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -08443430 734.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b08 -08443431 734.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -08443432 734.10589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b18 -08443433 734.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -08443434 734.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b28 -08443435 734.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -08443436 734.10595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b38 -08443437 734.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -08443438 734.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b48 -08443439 734.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -08443440 734.10601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b58 -08443441 734.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -08443442 734.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b68 -08443443 734.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -08443444 734.10607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b78 -08443445 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -08443446 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b88 -08443447 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -08443448 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9b98 -08443449 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -08443450 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ba8 -08443451 734.10614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -08443452 734.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bb8 -08443453 734.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -08443454 734.10620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bc8 -08443455 734.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -08443456 734.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bd8 -08443457 734.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -08443458 734.10626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9be8 -08443459 734.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -08443460 734.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9bf8 -08443461 734.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -08443462 734.10632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c08 -08443463 734.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -08443464 734.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c18 -08443465 734.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -08443466 734.10638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c28 -08443467 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -08443468 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c38 -08443469 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -08443470 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c48 -08443471 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -08443472 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c58 -08443473 734.10644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -08443474 734.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c68 -08443475 734.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -08443476 734.10650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c78 -08443477 734.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -08443478 734.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c88 -08443479 734.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -08443480 734.10656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9c98 -08443481 734.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -08443482 734.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ca8 -08443483 734.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -08443484 734.10662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cb8 -08443485 734.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -08443486 734.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cc8 -08443487 734.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -08443488 734.10668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cd8 -08443489 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -08443490 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ce8 -08443491 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -08443492 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9cf8 -08443493 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -08443494 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d08 -08443495 734.10675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -08443496 734.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d18 -08443497 734.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -08443498 734.10681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d28 -08443499 734.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -08443500 734.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d38 -08443501 734.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -08443502 734.10687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d48 -08443503 734.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -08443504 734.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d58 -08443505 734.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -08443506 734.10693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d68 -08443507 734.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -08443508 734.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d78 -08443509 734.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -08443510 734.10699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d88 -08443511 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -08443512 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9d98 -08443513 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -08443514 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9da8 -08443515 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -08443516 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9db8 -08443517 734.10705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -08443518 734.10711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dc8 -08443519 734.10711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -08443520 734.10711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9dd8 -08443521 734.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -08443522 734.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9de8 -08443523 734.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -08443524 734.10717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9df8 -08443525 734.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -08443526 734.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e08 -08443527 734.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -08443528 734.10723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e18 -08443529 734.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -08443530 734.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e28 -08443531 734.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -08443532 734.10729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e38 -08443533 734.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -08443534 734.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e48 -08443535 734.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -08443536 734.10736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e58 -08443537 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -08443538 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e68 -08443539 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -08443540 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e78 -08443541 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -08443542 734.10742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e88 -08443543 734.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -08443544 734.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9e98 -08443545 734.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -08443546 734.10748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ea8 -08443547 734.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -08443548 734.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9eb8 -08443549 734.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -08443550 734.10754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ec8 -08443551 734.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -08443552 734.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ed8 -08443553 734.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -08443554 734.10760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ee8 -08443555 734.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -08443556 734.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ef8 -08443557 734.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -08443558 734.10766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f08 -08443559 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -08443560 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f18 -08443561 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -08443562 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f28 -08443563 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -08443564 734.10772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f38 -08443565 734.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -08443566 734.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f48 -08443567 734.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -08443568 734.10778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f58 -08443569 734.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -08443570 734.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f68 -08443571 734.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -08443572 734.10784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f78 -08443573 734.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -08443574 734.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f88 -08443575 734.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -08443576 734.10791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9f98 -08443577 734.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -08443578 734.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fa8 -08443579 734.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -08443580 734.10797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fb8 -08443581 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -08443582 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fc8 -08443583 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -08443584 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fd8 -08443585 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -08443586 734.10803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9fe8 -08443587 734.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -08443588 734.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x9ff8 -08443589 734.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -08443590 734.10809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa008 -08443591 734.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -08443592 734.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa018 -08443593 734.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -08443594 734.10815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa028 -08443595 734.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -08443596 734.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa038 -08443597 734.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -08443598 734.10821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa048 -08443599 734.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -08443600 734.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa058 -08443601 734.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -08443602 734.10827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa068 -08443603 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -08443604 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa078 -08443605 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -08443606 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa088 -08443607 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -08443608 734.10833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa098 -08443609 734.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -08443610 734.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0a8 -08443611 734.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -08443612 734.10839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0b8 -08443613 734.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -08443614 734.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0c8 -08443615 734.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -08443616 734.10845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0d8 -08443617 734.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -08443618 734.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0e8 -08443619 734.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -08443620 734.10852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa0f8 -08443621 734.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -08443622 734.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa108 -08443623 734.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -08443624 734.10858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa118 -08443625 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -08443626 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa128 -08443627 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -08443628 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa138 -08443629 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -08443630 734.10864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa148 -08443631 734.10870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -08443632 734.10870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa158 -08443633 734.10870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -08443634 734.10870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa168 -08443635 734.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -08443636 734.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa178 -08443637 734.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -08443638 734.10876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -08444251 734.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -08444252 734.11743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -08444253 734.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -08444254 734.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -08444255 734.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -08444256 734.11749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -08444257 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -08444258 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -08444259 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -08444260 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -08444261 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -08444262 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -08444263 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -08444264 734.11755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -08444265 734.11761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -08444266 734.11761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -08444267 734.11761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -08444268 734.11761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -08444269 734.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -08444270 734.11767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -08444271 734.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -08444272 734.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -08444273 734.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -08444274 734.11773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -08444275 734.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -08444276 734.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -08444277 734.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -08444278 734.11779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -08444279 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -08444280 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -08444281 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -08444282 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -08444283 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -08444284 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -08444285 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -08444286 734.11785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -08444287 734.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -08444288 734.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5d8 -08444289 734.11791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -08444290 734.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5e8 -08444291 734.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -08444292 734.11798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5f8 -08444293 734.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -08444294 734.11804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xb608 -08446333 734.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c8 -08446334 734.14660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5c8 -08446335 734.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d8 -08446336 734.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5d8 -08446337 734.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -08446338 734.14666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5e8 -08446339 734.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -08446340 734.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf5f8 -08446341 734.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -08446342 734.14672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf608 -08446343 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -08446344 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf618 -08446345 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -08446346 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf628 -08446347 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -08446348 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf638 -08446349 734.14678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -08446350 734.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf648 -08446351 734.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -08446352 734.14685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf658 -08446353 734.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -08446354 734.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf668 -08446355 734.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -08446356 734.14691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf678 -08446357 734.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -08446358 734.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf688 -08446359 734.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -08446360 734.14697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf698 -08446361 734.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -08446362 734.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6a8 -08446363 734.14703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -08446364 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6b8 -08446365 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -08446366 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6c8 -08446367 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -08446368 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6d8 -08446369 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -08446370 734.14709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6e8 -08446371 734.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -08446372 734.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf6f8 -08446373 734.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -08446374 734.14715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf708 -08446375 734.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -08446376 734.14721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xf718 -08448455 734.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -08448456 734.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13818 -08448457 734.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -08448458 734.17639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13828 -08448459 734.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -08448460 734.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13838 -08448461 734.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -08448462 734.17645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -08448463 734.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -08448464 734.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -08448465 734.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -08448466 734.17651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -08448467 734.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -08448468 734.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -08448469 734.17657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -08448470 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -08448471 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -08448472 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -08448473 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -08448474 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -08448475 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -08448476 734.17663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -08448477 734.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -08448478 734.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -08448479 734.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -08448480 734.17669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -08448481 734.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -08448482 734.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -08448483 734.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -08448484 734.17675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x138f8 -08448485 734.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -08448486 734.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13908 -08448487 734.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -08448488 734.17681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13918 -08448489 734.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -08448490 734.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13928 -08448491 734.17687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -08448492 734.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13938 -08448493 734.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -08448494 734.17694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13948 -08448495 734.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -08448496 734.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13958 -08448497 734.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -08448498 734.17700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13968 -08450431 734.20532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -08450432 734.20532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175d8 -08450433 734.20532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -08450434 734.20532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175e8 -08450435 734.20538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -08450436 734.20538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x175f8 -08450437 734.20538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -08450438 734.20538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17608 -08450439 734.20544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -08450440 734.20544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17618 -08450441 734.20544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -08450442 734.20544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17628 -08450443 734.20550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -08450444 734.20550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17638 -08450445 734.20550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -08450446 734.20550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17648 -08450447 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -08450448 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17658 -08450449 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -08450450 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17668 -08450451 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -08450452 734.20556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17678 -08450453 734.20562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -08450454 734.20562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17688 -08450455 734.20562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -08450456 734.20562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17698 -08450457 734.20568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -08450458 734.20568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176a8 -08450459 734.20568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -08450460 734.20568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176b8 -08450461 734.20574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -08450462 734.20574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176c8 -08450463 734.20574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -08450464 734.20574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176d8 -08450465 734.20581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -08450466 734.20581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176e8 -08450467 734.20581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -08450468 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x176f8 -08450469 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -08450470 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17708 -08450471 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -08450472 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17718 -08450473 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -08450474 734.20587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17728 -08452317 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -08452318 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -08452319 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d8 -08452320 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d8 -08452321 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e8 -08452322 734.23193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e8 -08452323 734.23199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f8 -08452324 734.23199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0f8 -08452325 734.23199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b108 -08452326 734.23199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b108 -08452327 734.23205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b118 -08452328 734.23205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b118 -08452329 734.23205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b128 -08452330 734.23211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b128 -08452331 734.23211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b138 -08452332 734.23211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b138 -08452333 734.23217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b148 -08452334 734.23217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b148 -08452335 734.23217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b158 -08452336 734.23217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b158 -08452337 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b168 -08452338 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b168 -08452339 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b178 -08452340 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b178 -08452341 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b188 -08452342 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b188 -08452343 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b198 -08452344 734.23223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b198 -08452345 734.23229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a8 -08452346 734.23229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a8 -08452347 734.23229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b8 -08452348 734.23236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b8 -08452349 734.23236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c8 -08452350 734.23236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c8 -08452351 734.23242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d8 -08452352 734.23242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d8 -08452353 734.23242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e8 -08452354 734.23242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e8 -08452355 734.23248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f8 -08452356 734.23248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f8 -08452357 734.23248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b208 -08452358 734.23248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b208 -08452359 734.23254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b218 -08452360 734.23254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b218 -08466997 734.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -08466998 734.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -08466999 734.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -08467000 734.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -08467001 734.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -08467002 734.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -08467003 734.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -08467004 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -08467005 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -08467006 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -08467007 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -08467008 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -08467009 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be8 -08467010 734.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be8 -08467011 734.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf8 -08467012 734.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf8 -08467013 734.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c08 -08467014 734.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c08 -08467015 734.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c18 -08467016 734.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c18 -08467017 734.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c28 -08467018 734.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c28 -08467019 734.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c38 -08467020 734.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c38 -08467021 734.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c48 -08467022 734.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c48 -08467023 734.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c58 -08467024 734.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c58 -08467025 734.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -08467026 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -08467027 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -08467028 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -08467029 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -08467030 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -08467031 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -08467032 734.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -08467033 734.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -08467034 734.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -08467035 734.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb8 -08467036 734.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb8 -08467037 734.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc8 -08467038 734.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc8 -08467039 734.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd8 -08467040 734.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd8 -08469012 734.46655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -08469013 734.46655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba78 -08469014 734.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -08469015 734.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba88 -08469016 734.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -08469017 734.46661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba98 -08469018 734.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -08469019 734.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baa8 -08469020 734.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -08469021 734.46667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bab8 -08469022 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac8 -08469023 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bac8 -08469024 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad8 -08469025 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bad8 -08469026 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae8 -08469027 734.46673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bae8 -08469028 734.46679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf8 -08469029 734.46679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3baf8 -08469030 734.46679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb08 -08469031 734.46679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb08 -08469032 734.46685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -08469033 734.46685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb18 -08469034 734.46685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -08469035 734.46685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb28 -08469036 734.46691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -08469037 734.46691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb38 -08469038 734.46691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -08469039 734.46691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb48 -08469040 734.46697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -08469041 734.46697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb58 -08469042 734.46697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -08469043 734.46697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb68 -08469044 734.46704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -08469045 734.46704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb78 -08469046 734.46704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb88 -08469047 734.46704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb88 -08469048 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb98 -08469049 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb98 -08469050 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba8 -08469051 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bba8 -08469052 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb8 -08469053 734.46710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbb8 -08469054 734.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc8 -08469055 734.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bbc8 -08471048 734.49548340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa08 -08471049 734.49548340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa08 -08471050 734.49554443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa18 -08471051 734.49554443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa18 -08471052 734.49554443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa28 -08471053 734.49554443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa28 -08471054 734.49560547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa38 -08471055 734.49560547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa38 -08471056 734.49560547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -08471057 734.49560547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa48 -08471058 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -08471059 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa58 -08471060 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -08471061 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa68 -08471062 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -08471063 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa78 -08471064 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -08471065 734.49566650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa88 -08471066 734.49572754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa98 -08471067 734.49572754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa98 -08471068 734.49578857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa8 -08471069 734.49578857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faa8 -08471070 734.49578857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab8 -08471071 734.49578857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fab8 -08471072 734.49584961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -08471073 734.49584961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fac8 -08471074 734.49584961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -08471075 734.49584961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fad8 -08471076 734.49591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -08471077 734.49591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fae8 -08471078 734.49591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -08471079 734.49591064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3faf8 -08471080 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -08471081 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb08 -08471082 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -08471083 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb18 -08471084 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -08471085 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb28 -08471086 734.49597168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -08471087 734.49603271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb38 -08471088 734.49603271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -08471089 734.49603271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb48 -08471090 734.49609375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -08471091 734.49609375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb58 -08473044 734.52362061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43868 -08473045 734.52362061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43868 -08473046 734.52368164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43878 -08473047 734.52368164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43878 -08473048 734.52368164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43888 -08473049 734.52368164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43888 -08473050 734.52374268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43898 -08473051 734.52374268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43898 -08473052 734.52374268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a8 -08473053 734.52374268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a8 -08473054 734.52380371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b8 -08473055 734.52380371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b8 -08473056 734.52380371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c8 -08473057 734.52380371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c8 -08473058 734.52386475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d8 -08473059 734.52386475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d8 -08473060 734.52386475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e8 -08473061 734.52386475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e8 -08473062 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f8 -08473063 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f8 -08473064 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43908 -08473065 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43908 -08473066 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -08473067 734.52392578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43918 -08473068 734.52398682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43928 -08473069 734.52398682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43928 -08473070 734.52398682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43938 -08473071 734.52398682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43938 -08473072 734.52404785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43948 -08473073 734.52404785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43948 -08473074 734.52404785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43958 -08473075 734.52404785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43958 -08473076 734.52410889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43968 -08473077 734.52410889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43968 -08473078 734.52410889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43978 -08473079 734.52416992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43978 -08473080 734.52416992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43988 -08473081 734.52416992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43988 -08473082 734.52423096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43998 -08473083 734.52423096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43998 -08473084 734.52423096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a8 -08473085 734.52423096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a8 -08473086 734.52429199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b8 -08473087 734.52429199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b8 -08475210 734.55413818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c18 -08475211 734.55413818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c18 -08475212 734.55419922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c28 -08475213 734.55419922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c28 -08475214 734.55419922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c38 -08475215 734.55419922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c38 -08475216 734.55426025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c48 -08475217 734.55426025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c48 -08475218 734.55432129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c58 -08475219 734.55432129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c58 -08475220 734.55432129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c68 -08475221 734.55432129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c68 -08475222 734.55438232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c78 -08475223 734.55438232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c78 -08475224 734.55438232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c88 -08475225 734.55438232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c88 -08475226 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c98 -08475227 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c98 -08475228 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca8 -08475229 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca8 -08475230 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb8 -08475231 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb8 -08475232 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc8 -08475233 734.55444336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc8 -08475234 734.55450439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd8 -08475235 734.55450439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd8 -08475236 734.55456543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce8 -08475237 734.55456543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce8 -08475238 734.55456543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf8 -08475239 734.55456543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf8 -08475240 734.55462646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d08 -08475241 734.55462646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d08 -08475242 734.55462646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d18 -08475243 734.55462646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d18 -08475244 734.55468750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d28 -08475245 734.55468750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d28 -08475246 734.55468750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d38 -08475247 734.55468750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d38 -08475248 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d48 -08475249 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d48 -08475250 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d58 -08475251 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d58 -08475252 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d68 -08475253 734.55474854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d68 -08477202 734.58233643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -08477203 734.58233643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -08477204 734.58233643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba68 -08477205 734.58233643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba68 -08477206 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba78 -08477207 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba78 -08477208 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba88 -08477209 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba88 -08477210 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba98 -08477211 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba98 -08477212 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa8 -08477213 734.58239746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baa8 -08477214 734.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab8 -08477215 734.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bab8 -08477216 734.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac8 -08477217 734.58245850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bac8 -08477218 734.58251953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -08477219 734.58251953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bad8 -08477220 734.58251953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -08477221 734.58258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bae8 -08477222 734.58258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -08477223 734.58258057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4baf8 -08477224 734.58264160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -08477225 734.58264160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb08 -08477226 734.58264160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -08477227 734.58264160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb18 -08477228 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -08477229 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb28 -08477230 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -08477231 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb38 -08477232 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -08477233 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb48 -08477234 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -08477235 734.58270264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb58 -08477236 734.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -08477237 734.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb68 -08477238 734.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -08477239 734.58276367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb78 -08477240 734.58282471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb88 -08477241 734.58282471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb88 -08477242 734.58282471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb98 -08477243 734.58288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb98 -08477244 734.58288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba8 -08477245 734.58288574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bba8 -08479190 734.61029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f878 -08479191 734.61029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f878 -08479192 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f888 -08479193 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f888 -08479194 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f898 -08479195 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f898 -08479196 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a8 -08479197 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a8 -08479198 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b8 -08479199 734.61035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b8 -08479200 734.61041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c8 -08479201 734.61041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c8 -08479202 734.61041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d8 -08479203 734.61041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d8 -08479204 734.61047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e8 -08479205 734.61047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e8 -08479206 734.61047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f8 -08479207 734.61047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f8 -08479208 734.61053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f908 -08479209 734.61053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f908 -08479210 734.61053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f918 -08479211 734.61059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f918 -08479212 734.61059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f928 -08479213 734.61059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f928 -08479214 734.61065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f938 -08479215 734.61065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f938 -08479216 734.61065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f948 -08479217 734.61065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f948 -08479218 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f958 -08479219 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f958 -08479220 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f968 -08479221 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f968 -08479222 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f978 -08479223 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f978 -08479224 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f988 -08479225 734.61071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f988 -08479226 734.61077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f998 -08479227 734.61077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f998 -08479228 734.61077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a8 -08479229 734.61077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a8 -08479230 734.61083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b8 -08479231 734.61083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b8 -08479232 734.61083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c8 -08479233 734.61090088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c8 -08480878 735.52398682 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480879 735.52404785 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480880 735.52410889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480881 735.52410889 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08480882 735.52416992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480883 735.52416992 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08480884 735.52429199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480885 735.52429199 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08480886 736.48181152 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08480887 736.50567627 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480888 736.50573730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480889 738.03002930 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480890 738.03009033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480891 738.03009033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480892 738.03009033 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08480893 738.03021240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480894 738.03021240 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08480895 738.03027344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08480896 738.03033447 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08480897 738.50769043 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08480898 738.52996826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480899 738.52996826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08480900 739.17730713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480901 739.17749023 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480902 739.17761230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480903 739.17779541 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480904 739.17797852 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480905 739.17816162 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480906 739.17828369 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480907 739.17852783 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480908 739.17871094 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480909 739.17883301 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480910 739.17901611 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480911 739.17913818 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480912 739.17932129 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480913 739.17944336 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480914 739.17962646 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480915 739.17980957 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480916 739.17999268 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480917 739.18011475 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480918 739.18035889 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480919 739.18048096 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480920 739.18066406 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480921 739.18078613 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480922 739.18096924 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480923 739.18109131 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480924 739.18121338 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480925 739.18133545 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480926 739.18151855 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480927 739.18164063 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480928 739.18182373 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480929 739.18200684 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480930 739.18212891 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480931 739.18231201 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480932 739.18243408 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480933 739.18261719 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480934 739.18273926 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480935 739.18292236 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480936 739.18310547 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480937 739.18322754 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480938 739.18341064 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480939 739.18353271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480940 739.18365479 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480941 739.18383789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480942 739.18395996 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480943 739.18414307 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480944 739.18426514 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480945 739.18444824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480946 739.18457031 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480947 739.18475342 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480948 739.18493652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480949 739.18511963 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480950 739.18524170 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480951 739.18542480 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480952 739.18560791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480953 739.18579102 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480954 739.18591309 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480955 739.18609619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480956 739.18621826 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480957 739.18634033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480958 739.18646240 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480959 739.18664551 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480960 739.18676758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480961 739.18695068 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480962 739.18707275 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480963 739.18725586 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480964 739.18737793 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480965 739.18762207 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480966 739.18774414 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480967 739.18792725 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480968 739.18817139 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480969 739.18835449 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480970 739.18847656 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480971 739.18865967 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480972 739.18878174 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480973 739.18896484 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480974 739.18908691 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480975 739.18927002 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480976 739.18939209 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480977 739.18951416 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480978 739.18963623 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480979 739.18981934 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480980 739.18994141 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480981 739.19012451 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480982 739.19024658 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480983 739.19049072 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480984 739.19067383 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480985 739.19085693 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480986 739.19097900 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480987 739.19116211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480988 739.19128418 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480989 739.19146729 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480990 739.19165039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480991 739.19183350 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480992 739.19201660 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480993 739.19226074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480994 739.19244385 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480995 739.19256592 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480996 739.19274902 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480997 739.19293213 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480998 739.19311523 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08480999 739.19323730 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481000 739.19342041 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481001 739.19354248 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481002 739.19372559 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481003 739.19384766 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481004 739.19403076 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481005 739.19415283 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481006 739.19433594 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481007 739.19445801 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481008 739.19464111 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481009 739.19476318 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481010 739.19494629 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481011 739.19506836 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481012 739.19525146 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481013 739.19537354 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481014 739.19549561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481015 739.19561768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481016 739.19580078 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481017 739.19598389 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481018 739.19610596 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481019 739.19628906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481020 739.19647217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481021 739.19659424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481022 739.19671631 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481023 739.19689941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481024 739.19702148 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481025 739.19720459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481026 739.19738770 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481027 739.19757080 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481028 739.19769287 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481029 739.19787598 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481030 739.19799805 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481031 739.19818115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481032 739.19830322 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481033 739.19848633 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481034 739.19860840 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481035 739.19879150 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481036 739.19897461 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481037 739.19915771 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481038 739.19934082 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481039 739.19946289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481040 739.19964600 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481041 739.19976807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481042 739.19995117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481043 739.20007324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481044 739.20019531 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481045 739.20037842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481046 739.20050049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481047 739.20068359 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481048 739.20080566 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481049 739.20098877 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481050 739.20111084 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481051 739.20129395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481052 739.20147705 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481053 739.20166016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481054 739.20178223 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481055 739.20196533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481056 739.20214844 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481057 739.20233154 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481058 739.20245361 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481059 739.20263672 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481060 739.20275879 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481061 739.20294189 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481062 739.20306396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481063 739.20324707 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481064 739.20336914 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481065 739.20355225 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481066 739.20367432 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481067 739.20385742 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481068 739.20397949 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481069 739.20416260 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481070 739.20428467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481071 739.20452881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481072 739.20471191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481073 739.20483398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481074 739.20501709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481075 739.20520020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481076 739.20532227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481077 739.20556641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481078 739.20574951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481079 739.20587158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481080 739.20605469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481081 739.20617676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481082 739.20635986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481083 739.20648193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481084 739.20672607 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481085 739.20684814 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481086 739.20703125 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481087 739.20721436 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481088 739.20739746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481089 739.20751953 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481090 739.20770264 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481091 739.20788574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481092 739.20806885 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481093 739.20819092 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481094 739.20837402 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481095 739.20849609 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481096 739.20867920 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481097 739.20880127 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481098 739.20898438 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481099 739.20910645 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481100 739.20928955 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481101 739.20941162 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481102 739.20959473 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481103 739.20971680 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481104 739.20989990 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481105 739.21002197 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481106 739.21020508 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481107 739.21032715 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481108 739.21051025 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481109 739.21063232 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481110 739.21081543 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481111 739.21093750 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481112 739.21112061 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481113 739.21130371 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481114 739.21148682 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481115 739.21160889 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481116 739.21179199 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481117 739.21191406 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481118 739.21209717 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481119 739.21221924 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481120 739.21240234 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481121 739.21252441 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481122 739.21270752 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481123 739.21282959 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481124 739.21301270 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481125 739.21313477 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481126 739.21325684 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481127 739.21343994 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481128 739.21362305 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481129 739.21374512 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481130 739.21392822 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481131 739.21405029 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481132 739.21423340 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481133 739.21441650 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481134 739.21459961 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481135 739.21478271 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481136 739.21496582 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481137 739.21508789 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481138 739.21527100 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481139 739.21539307 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481140 739.21557617 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481141 739.21569824 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481142 739.21588135 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481143 739.21600342 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481144 739.21618652 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481145 739.21630859 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481146 739.21649170 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481147 739.21661377 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481148 739.21685791 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481149 739.21704102 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481150 739.21722412 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481151 739.21734619 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481152 739.21759033 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481153 739.21771240 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481154 739.21789551 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481155 739.21801758 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481156 739.21820068 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481157 739.21832275 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481158 739.21850586 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481159 739.21862793 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481160 739.21881104 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481161 739.21893311 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481162 739.21911621 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481163 739.21923828 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481164 739.21942139 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481165 739.21954346 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481166 739.21972656 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481167 739.21984863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481168 739.21997070 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481169 739.22015381 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481170 739.22033691 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481171 739.22045898 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481172 739.22070313 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481173 739.22088623 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481174 739.22113037 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481175 739.22131348 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481176 739.22137451 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481177 739.22155762 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481178 739.22167969 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481179 739.22186279 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481180 739.22204590 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481181 739.22222900 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481182 739.22241211 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481183 739.22265625 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481184 739.22290039 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481185 739.22308350 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481186 739.22326660 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481187 739.22351074 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481188 739.22363281 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481189 739.22387695 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481190 739.22393799 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481191 739.22412109 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481192 739.22424316 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481193 739.22442627 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481194 739.22454834 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481195 739.22473145 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481196 739.22485352 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481197 739.22503662 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481198 739.22521973 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481199 739.22540283 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481200 739.22552490 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481201 739.22570801 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481202 739.22583008 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481203 739.22595215 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481204 739.22613525 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481205 739.22625732 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481206 739.22644043 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481207 739.22656250 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481208 739.22674561 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481209 739.22686768 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481210 739.22705078 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481211 739.22717285 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481212 739.22735596 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481213 739.22753906 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481214 739.22772217 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481215 739.22784424 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481216 739.22802734 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481217 739.22814941 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481218 739.22833252 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481219 739.22851563 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481220 739.22863770 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481221 739.22875977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481222 739.22894287 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481223 739.22906494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481224 739.22924805 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481225 739.22937012 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481226 739.22955322 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481227 739.22967529 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481228 739.22985840 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481229 739.22998047 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481230 739.23016357 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481231 739.23028564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481232 739.23052979 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481233 739.23065186 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481234 739.23083496 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481235 739.23101807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481236 739.23120117 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481237 739.23132324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481238 739.23150635 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481239 739.23156738 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481240 739.23175049 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481241 739.23187256 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481242 739.23205566 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481243 739.23217773 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481244 739.23236084 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481245 739.23248291 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481246 739.23266602 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481247 739.23284912 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481248 739.23297119 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481249 739.23309326 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481250 739.23321533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481251 739.23339844 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481252 739.23352051 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481253 739.23370361 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481254 739.23382568 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481255 739.23400879 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481256 739.23413086 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481257 739.23431396 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481258 739.23443604 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481259 739.23455811 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481260 739.23474121 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481261 739.23486328 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481262 739.23504639 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481263 739.23516846 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481264 739.23535156 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481265 739.23547363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481266 739.23565674 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481267 739.23577881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481268 739.23596191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481269 739.23602295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481270 739.23620605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481271 739.23632813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481272 739.23651123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481273 739.23663330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481274 739.23681641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481275 739.23693848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481276 739.23712158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481277 739.23724365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481278 739.23748779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481279 739.23760986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481280 739.23779297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481281 739.23797607 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481282 739.23815918 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481283 739.23828125 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481284 739.23846436 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481285 739.23864746 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481286 739.23889160 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481287 739.23913574 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481288 739.23937988 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481289 739.23962402 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481290 739.23980713 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481291 739.24011230 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481292 739.24029541 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481293 739.24053955 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481294 739.24078369 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481295 739.24102783 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481296 739.24121094 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481297 739.24139404 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481298 739.24169922 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481299 739.24194336 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481300 739.24218750 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481301 739.24365234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481302 739.24377441 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481303 739.24395752 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481304 739.24426270 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481305 739.24444580 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481306 739.24462891 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481307 739.24487305 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481308 739.24523926 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481309 739.24542236 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481310 739.24554443 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481311 739.24584961 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481312 739.24597168 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481313 739.24615479 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481314 739.24633789 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481315 739.24652100 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481316 739.24682617 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481317 739.24700928 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481318 739.24713135 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481319 739.24731445 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481320 739.24743652 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481321 739.24755859 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481322 739.24774170 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481323 739.24786377 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481324 739.24804688 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481325 739.24816895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481326 739.24841309 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481327 739.24853516 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481328 739.24884033 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481329 739.24902344 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481330 739.24914551 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481331 739.24932861 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481332 739.24951172 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481333 739.24963379 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481334 739.24987793 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481335 739.25006104 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481336 739.25036621 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481337 739.25054932 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481338 739.25079346 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481339 739.25109863 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481340 739.25128174 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481341 739.25140381 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481342 739.25158691 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481343 739.25177002 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481344 739.25189209 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481345 739.25207520 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481346 739.25225830 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481347 739.25244141 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481348 739.25256348 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481349 739.25274658 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481350 739.25286865 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481351 739.25317383 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481352 739.25335693 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481353 739.25347900 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481354 739.25366211 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481355 739.25378418 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481356 739.25396729 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481357 739.25408936 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481358 739.25427246 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481359 739.25445557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481360 739.25457764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481361 739.25476074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481362 739.25494385 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481363 739.25506592 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481364 739.25531006 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481365 739.25543213 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481366 739.25561523 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481367 739.25573730 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481368 739.25592041 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481369 739.25604248 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481370 739.25622559 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481371 739.25634766 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481372 739.25653076 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481373 739.25665283 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481374 739.25683594 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481375 739.25695801 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481376 739.25714111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481377 739.25726318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481378 739.25744629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481379 739.25762939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481380 739.25775146 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481381 739.25793457 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481382 739.25805664 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481383 739.25823975 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481384 739.25836182 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481385 739.25854492 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481386 739.25860596 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481387 739.25878906 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481388 739.25891113 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481389 739.25921631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481390 739.25939941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481391 739.25958252 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481392 739.25976563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481393 739.26013184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481394 739.26025391 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481395 739.26043701 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481396 739.26062012 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481397 739.26080322 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481398 739.26092529 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481399 739.26110840 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481400 739.26123047 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481401 739.26141357 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481402 739.26153564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481403 739.26165771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481404 739.26177979 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481405 739.26196289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481406 739.26208496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481407 739.26232910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481408 739.26245117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481409 739.26263428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481410 739.26275635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481411 739.26293945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481412 739.26306152 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481413 739.26324463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481414 739.26342773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481415 739.26373291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481416 739.26391602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481417 739.26403809 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481418 739.26422119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481419 739.26434326 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481420 739.26452637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481421 739.26464844 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481422 739.26483154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481423 739.26495361 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481424 739.26513672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481425 739.26525879 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481426 739.26544189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481427 739.26556396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481428 739.26574707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481429 739.26593018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481430 739.26611328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481431 739.26623535 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481432 739.26641846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481433 739.26660156 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481434 739.26678467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481435 739.26690674 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481436 739.26708984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481437 739.26727295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481438 739.26745605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481439 739.26843262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481440 739.26867676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481441 739.26904297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481442 739.26922607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481443 739.26934814 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481444 739.26983643 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481445 739.27001953 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481446 739.27026367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481447 739.27038574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481448 739.27056885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481449 739.27069092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481450 739.27117920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481451 739.27130127 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481452 739.27148438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481453 739.27160645 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481454 739.27178955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481455 739.27191162 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481456 739.27209473 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481457 739.27227783 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481458 739.27252197 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481459 739.27282715 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481460 739.27301025 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481461 739.27319336 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481462 739.27337646 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481463 739.27349854 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481464 739.27374268 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481465 739.27386475 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481466 739.27404785 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481467 739.27416992 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481468 739.27435303 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481469 739.27447510 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481470 739.27465820 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481471 739.27478027 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481472 739.27496338 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481473 739.27508545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481474 739.27526855 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481475 739.27539063 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481476 739.27557373 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481477 739.27569580 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481478 739.27587891 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481479 739.27606201 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481480 739.27618408 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481481 739.27636719 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481482 739.27655029 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481483 739.27673340 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481484 739.27697754 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481485 739.27728271 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481486 739.27740479 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481487 739.27758789 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481488 739.27770996 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481489 739.27789307 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481490 739.27801514 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481491 739.27819824 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481492 739.27832031 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481493 739.27850342 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481494 739.27862549 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481495 739.27880859 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481496 739.27893066 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481497 739.27917480 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481498 739.27929688 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481499 739.27947998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481500 739.27960205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481501 739.27984619 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481502 739.28002930 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481503 739.28015137 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481504 739.28033447 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481505 739.28045654 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481506 739.28063965 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481507 739.28082275 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481508 739.28100586 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481509 739.28112793 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481510 739.28131104 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481511 739.28143311 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481512 739.28167725 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481513 739.28179932 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481514 739.28198242 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481515 739.28228760 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481516 739.28240967 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481517 739.28253174 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481518 739.28271484 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481519 739.28289795 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481520 739.28302002 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481521 739.28320313 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481522 739.28332520 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481523 739.28356934 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481524 739.28369141 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481525 739.28387451 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481526 739.28399658 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481527 739.28417969 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481528 739.28430176 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481529 739.28448486 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481530 739.28460693 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481531 739.28479004 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481532 739.28491211 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481533 739.28509521 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481534 739.28527832 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481535 739.28540039 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481536 739.28558350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481537 739.28570557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481538 739.28588867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481539 739.28601074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481540 739.28619385 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481541 739.28631592 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481542 739.28649902 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481543 739.28668213 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481544 739.28686523 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481545 739.28698730 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481546 739.28717041 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481547 739.28735352 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481548 739.28747559 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481549 739.28765869 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481550 739.28778076 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481551 739.28796387 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481552 739.28808594 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481553 739.28833008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481554 739.28845215 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481555 739.28857422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481556 739.28875732 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481557 739.28887939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481558 739.28906250 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481559 739.28924561 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481560 739.28936768 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481561 739.28955078 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481562 739.28973389 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481563 739.28991699 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481564 739.29003906 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481565 739.29028320 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481566 739.29040527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481567 739.29058838 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481568 739.29071045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481569 739.29089355 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481570 739.29101563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481571 739.29119873 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481572 739.29138184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481573 739.29156494 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481574 739.29174805 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481575 739.29193115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481576 739.29241943 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481577 739.29254150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481578 739.29278564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481579 739.29290771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481580 739.29321289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481581 739.29333496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481582 739.29351807 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481583 739.29370117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481584 739.29382324 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481585 739.29400635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481586 739.29418945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481587 739.29467773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481588 739.29486084 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481589 739.29504395 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481590 739.29516602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481591 739.29553223 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481592 739.29571533 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481593 739.29669189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481594 739.29681396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481595 739.29699707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481596 739.29718018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481597 739.29736328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481598 739.29760742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481599 739.29772949 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481600 739.29791260 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481601 739.29803467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481602 739.29827881 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481603 739.29840088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481604 739.29852295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481605 739.29870605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481606 739.29888916 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481607 739.29901123 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481608 739.29919434 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481609 739.29931641 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481610 739.29956055 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481611 739.29968262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481612 739.29986572 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481613 739.29998779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481614 739.30017090 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481615 739.30035400 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481616 739.30053711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481617 739.30072021 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481618 739.30084229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481619 739.30102539 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481620 739.30114746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481621 739.30133057 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481622 739.30145264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481623 739.30163574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481624 739.30175781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481625 739.30194092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481626 739.30206299 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481627 739.30224609 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481628 739.30249023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481629 739.30273438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481630 739.30291748 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481631 739.30303955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481632 739.30322266 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481633 739.30334473 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481634 739.30364990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481635 739.30383301 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481636 739.30401611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481637 739.30413818 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481638 739.30432129 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481639 739.30444336 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481640 739.30462646 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481641 739.30474854 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481642 739.30493164 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481643 739.30505371 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481644 739.30523682 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481645 739.30535889 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481646 739.30554199 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481647 739.30566406 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481648 739.30584717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481649 739.30596924 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481650 739.30615234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481651 739.30627441 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481652 739.30645752 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481653 739.30664063 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481654 739.30682373 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481655 739.30700684 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481656 739.30718994 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481657 739.30731201 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481658 739.30749512 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481659 739.30767822 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481660 739.30780029 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481661 739.30798340 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481662 739.30816650 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481663 739.30834961 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481664 739.30847168 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481665 739.30865479 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481666 739.30877686 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481667 739.30895996 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481668 739.30908203 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481669 739.30926514 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481670 739.30938721 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481671 739.30957031 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481672 739.30969238 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481673 739.30987549 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481674 739.31005859 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481675 739.31018066 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481676 739.31036377 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481677 739.31048584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481678 739.31066895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481679 739.31072998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481680 739.31097412 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481681 739.31109619 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481682 739.31127930 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481683 739.31134033 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481684 739.31152344 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481685 739.31164551 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481686 739.31182861 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481687 739.31195068 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481688 739.31213379 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481689 739.31225586 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481690 739.31243896 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481691 739.31256104 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481692 739.31280518 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481693 739.31286621 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481694 739.31311035 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481695 739.31744385 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481696 739.31768799 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481697 739.31781006 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481698 739.31799316 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481699 739.32336426 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481700 739.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481701 739.32366943 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481702 739.32379150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481703 739.32434082 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481704 739.32458496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481705 739.32464600 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481706 739.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481707 739.32904053 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481708 739.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481709 739.32940674 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481710 739.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481711 739.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481712 739.33105469 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481713 739.33123779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481714 739.33135986 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481715 739.33154297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481716 739.33172607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481717 739.33190918 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481718 739.33221436 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481719 739.33239746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481720 739.33258057 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481721 739.33270264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481722 739.33300781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481723 739.33319092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481724 739.33331299 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481725 739.33355713 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481726 739.33374023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481727 739.33386230 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481728 739.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481729 739.33422852 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481730 739.33453369 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481731 739.33477783 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481732 739.33489990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481733 739.33508301 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481734 739.33520508 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481735 739.33538818 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481736 739.33551025 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481737 739.33575439 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481738 739.33587646 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481739 739.33605957 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481740 739.33630371 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481741 739.33648682 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481742 739.33673096 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481743 739.33679199 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481744 739.33697510 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481745 739.33709717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481746 739.33728027 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481747 739.33740234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481748 739.33758545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481749 739.33770752 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481750 739.33789063 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481751 739.33801270 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481752 739.33819580 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481753 739.33831787 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481754 739.33850098 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481755 739.33862305 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481756 739.33874512 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481757 739.33892822 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481758 739.33905029 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481759 739.33923340 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481760 739.33935547 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481761 739.33953857 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481762 739.33966064 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481763 739.33984375 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481764 739.33996582 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481765 739.34014893 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481766 739.34027100 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481767 739.34039307 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481768 739.34051514 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481769 739.34075928 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481770 739.34088135 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481771 739.34100342 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481772 739.34118652 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481773 739.34130859 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481774 739.34149170 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481775 739.34161377 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481776 739.34179688 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481777 739.34191895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481778 739.34210205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481779 739.34228516 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481780 739.34246826 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481781 739.34277344 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481782 739.34289551 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481783 739.34307861 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481784 739.34320068 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481785 739.34338379 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481786 739.34356689 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481787 739.34368896 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481788 739.34387207 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481789 739.34405518 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481790 739.34417725 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481791 739.34429932 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481792 739.34442139 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481793 739.34466553 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481794 739.34478760 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481795 739.34497070 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481796 739.34509277 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481797 739.34527588 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481798 739.34545898 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481799 739.34564209 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481800 739.34582520 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481801 739.34594727 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481802 739.34613037 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481803 739.34631348 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481804 739.34649658 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481805 739.34674072 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481806 739.34686279 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481807 739.34710693 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481808 739.34722900 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481809 739.34735107 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481810 739.34777832 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481811 739.34790039 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481812 739.34808350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481813 739.34820557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481814 739.34838867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481815 739.34851074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481816 739.34869385 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481817 739.34887695 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481818 739.34906006 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481819 739.34918213 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481820 739.34936523 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481821 739.34954834 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481822 739.34973145 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481823 739.34991455 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481824 739.35009766 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481825 739.35028076 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481826 739.35040283 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481827 739.35058594 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481828 739.35070801 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481829 739.35089111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481830 739.35101318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481831 739.35119629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481832 739.35131836 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481833 739.35156250 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481834 739.35168457 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481835 739.35186768 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481836 739.35211182 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481837 739.35229492 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481838 739.35247803 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481839 739.35266113 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481840 739.35290527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481841 739.35314941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481842 739.35333252 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481843 739.35357666 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481844 739.35388184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481845 739.35412598 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481846 739.35430908 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481847 739.35449219 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481848 739.35479736 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481849 739.35498047 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481850 739.35516357 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481851 739.35546875 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481852 739.35565186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481853 739.35589600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481854 739.35607910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481855 739.35632324 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481856 739.35656738 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481857 739.35681152 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481858 739.35705566 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481859 739.35723877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481860 739.35742188 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481861 739.35766602 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481862 739.35791016 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481863 739.35809326 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481864 739.35833740 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481865 739.35876465 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481866 739.35894775 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481867 739.35925293 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481868 739.35943604 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481869 739.35961914 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481870 739.35980225 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481871 739.35998535 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481872 739.36016846 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481873 739.36035156 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481874 739.36053467 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481875 739.36065674 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481876 739.36083984 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481877 739.36096191 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481878 739.36114502 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481879 739.36126709 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481880 739.36145020 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481881 739.36157227 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481882 739.36175537 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481883 739.36187744 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481884 739.36206055 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481885 739.36218262 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481886 739.36236572 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481887 739.36248779 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481888 739.36279297 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481889 739.36291504 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481890 739.36309814 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481891 739.36340332 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481892 739.36352539 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481893 739.36370850 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481894 739.36389160 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481895 739.36407471 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481896 739.36437988 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481897 739.36456299 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481898 739.36474609 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481899 739.36492920 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481900 739.36511230 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481901 739.36529541 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481902 739.36541748 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481903 739.36560059 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481904 739.36572266 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481905 739.36590576 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481906 739.36602783 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481907 739.36621094 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481908 739.36639404 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481909 739.36657715 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481910 739.36669922 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481911 739.36688232 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481912 739.36712646 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481913 739.36724854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481914 739.36743164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481915 739.36755371 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481916 739.36779785 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481917 739.36791992 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481918 739.36810303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481919 739.36822510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481920 739.36846924 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481921 739.36853027 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481922 739.36877441 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481923 739.36889648 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481924 739.36907959 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481925 739.36920166 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481926 739.36938477 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481927 739.36950684 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481928 739.36968994 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481929 739.36981201 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481930 739.36999512 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481931 739.37011719 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481932 739.37030029 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481933 739.37042236 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481934 739.37060547 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481935 739.37072754 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481936 739.37097168 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481937 739.37109375 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481938 739.37127686 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481939 739.37139893 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481940 739.37164307 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481941 739.37176514 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481942 739.37194824 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481943 739.37213135 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481944 739.37231445 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481945 739.37243652 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481946 739.37261963 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481947 739.37274170 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481948 739.37292480 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481949 739.37707520 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481950 739.37738037 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481951 739.37756348 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481952 739.37774658 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481953 739.37792969 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481954 739.37829590 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481955 739.37841797 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481956 739.37866211 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481957 739.37884521 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481958 739.37902832 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481959 739.37927246 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481960 739.37939453 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481961 739.37957764 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481962 739.37976074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481963 739.37994385 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481964 739.38012695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481965 739.38031006 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481966 739.38049316 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481967 739.38061523 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481968 739.38079834 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481969 739.38098145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481970 739.38116455 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481971 739.38134766 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481972 739.38153076 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481973 739.38165283 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481974 739.38183594 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481975 739.38208008 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481976 739.38226318 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481977 739.38244629 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481978 739.38256836 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481979 739.38281250 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481980 739.38293457 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481981 739.38311768 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481982 739.38323975 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481983 739.38342285 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481984 739.38354492 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481985 739.38372803 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481986 739.38397217 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481987 739.38415527 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481988 739.38439941 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481989 739.38452148 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481990 739.38470459 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481991 739.38482666 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481992 739.38500977 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481993 739.38513184 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481994 739.38537598 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481995 739.38555908 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481996 739.38580322 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481997 739.38598633 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481998 739.38610840 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08481999 739.38629150 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482000 739.38641357 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482001 739.38659668 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482002 739.38677979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482003 739.38690186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482004 739.38714600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482005 739.38726807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482006 739.38751221 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482007 739.38763428 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482008 739.38787842 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482009 739.38800049 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482010 739.38818359 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482011 739.38830566 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482012 739.38848877 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482013 739.38861084 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482014 739.38879395 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482015 739.38891602 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482016 739.38909912 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482017 739.38922119 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482018 739.38940430 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482019 739.38952637 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482020 739.38977051 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482021 739.38989258 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482022 739.39007568 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482023 739.39025879 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482024 739.39044189 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482025 739.39080811 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482026 739.39099121 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482027 739.39111328 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482028 739.39129639 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482029 739.39141846 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482030 739.39160156 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482031 739.39172363 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482032 739.39190674 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482033 739.39202881 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482034 739.39221191 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482035 739.39233398 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482036 739.39251709 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482037 739.39270020 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482038 739.39294434 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482039 739.39312744 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482040 739.39337158 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482041 739.39355469 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482042 739.39367676 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482043 739.39385986 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482044 739.39398193 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482045 739.39416504 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482046 739.39428711 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482047 739.39440918 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482048 739.39453125 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482049 739.39471436 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482050 739.39489746 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482051 739.39508057 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482052 739.39520264 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482053 739.39544678 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482054 739.39556885 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482055 739.39575195 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482056 739.39587402 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482057 739.39605713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482058 739.39617920 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482059 739.39636230 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482060 739.39648438 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482061 739.39672852 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482062 739.39685059 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482063 739.39703369 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482064 739.39715576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482065 739.39733887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482066 739.39746094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482067 739.39764404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482068 739.39776611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482069 739.39794922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482070 739.39807129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482071 739.39825439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482072 739.39837646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482073 739.39855957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482074 739.39868164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482075 739.39886475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482076 739.39904785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482077 739.39923096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482078 739.39935303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482079 739.39953613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482080 739.39965820 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482081 739.39984131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482082 739.40008545 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482083 739.40026855 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482084 739.40039063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482085 739.40057373 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482086 739.40069580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482087 739.40087891 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482088 739.40100098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482089 739.40118408 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482090 739.40130615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482091 739.40155029 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482092 739.40167236 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482093 739.40185547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482094 739.40197754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482095 739.40216064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482096 739.40234375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482097 739.40246582 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482098 739.40264893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482099 739.40283203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482100 739.40301514 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482101 739.40313721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482102 739.40325928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482103 739.40344238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482104 739.40356445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482105 739.40374756 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482106 739.40393066 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482107 739.40405273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482108 739.40429688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482109 739.40441895 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482110 739.40466309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482111 739.40478516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482112 739.40496826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482113 739.40515137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482114 739.40563965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482115 739.40582275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482116 739.40606689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482117 739.40625000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482118 739.40637207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482119 739.40655518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482120 739.40673828 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482121 739.40686035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482122 739.40704346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482123 739.40722656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482124 739.40734863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482125 739.40753174 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482126 739.40765381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482127 739.40777588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482128 739.40795898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482129 739.40814209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482130 739.40832520 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482131 739.40856934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482132 739.40881348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482133 739.40893555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482134 739.40917969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482135 739.40930176 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482136 739.40948486 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482137 739.40960693 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482138 739.40979004 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482139 739.40997314 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482140 739.41015625 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482141 739.41033936 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482142 739.41046143 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482143 739.41064453 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482144 739.41076660 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482145 739.41107178 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482146 739.41137695 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482147 739.41156006 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482148 739.41168213 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482149 739.41192627 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482150 739.41204834 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482151 739.41223145 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482152 739.41235352 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482153 739.41265869 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482154 739.41284180 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482155 739.41302490 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482156 739.41320801 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482157 739.41339111 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482158 739.41357422 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482159 739.41369629 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482160 739.41381836 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482161 739.41394043 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482162 739.41418457 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482163 739.41430664 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482164 739.41455078 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482165 739.41467285 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482166 739.41485596 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482167 739.41510010 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482168 739.41528320 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482169 739.41552734 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482170 739.41564941 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482171 739.41601563 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482172 739.41619873 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482173 739.41638184 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482174 739.41650391 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482175 739.41680908 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482176 739.41711426 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482177 739.41741943 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482178 739.41760254 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482179 739.41778564 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482180 739.41796875 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482181 739.41809082 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482182 739.41827393 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482183 739.41851807 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482184 739.41870117 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482185 739.41882324 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482186 739.41900635 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482187 739.41912842 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482188 739.41931152 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482189 739.41943359 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482190 739.41967773 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482191 739.41973877 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482192 739.41998291 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482193 739.42010498 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482194 739.42028809 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482195 739.42041016 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482196 739.42059326 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482197 739.42071533 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482198 739.42089844 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482199 739.42102051 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482200 739.42120361 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482201 739.42132568 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482202 739.42150879 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482203 739.42163086 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482204 739.42181396 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482205 739.42193604 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482206 739.42211914 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482207 739.42224121 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482208 739.42242432 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482209 739.42254639 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482210 739.42272949 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482211 739.42285156 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482212 739.42303467 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482213 739.42315674 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482214 739.42333984 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482215 739.42346191 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482216 739.42364502 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482217 739.42376709 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482218 739.42395020 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482219 739.42407227 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482220 739.42425537 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482221 739.42443848 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482222 739.42456055 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482223 739.42474365 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482224 739.42486572 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482225 739.42504883 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482226 739.42517090 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482227 739.42535400 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482228 739.42547607 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482229 739.42565918 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482230 739.42584229 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482231 739.42602539 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482232 739.42620850 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482233 739.42639160 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482234 739.42657471 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482235 739.42669678 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482236 739.42687988 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482237 739.42700195 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482238 739.42730713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482239 739.42749023 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482240 739.42767334 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482241 739.42785645 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482242 739.42816162 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482243 739.42828369 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482244 739.42846680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482245 739.42889404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482246 739.42907715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482247 739.42919922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482248 739.42938232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482249 739.42950439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482250 739.42968750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482251 739.42980957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482252 739.42999268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482253 739.43011475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482254 739.43048096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482255 739.43066406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482256 739.43078613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482257 739.43096924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482258 739.43139648 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482259 739.43157959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482260 739.43188477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482261 739.43206787 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482262 739.43218994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482263 739.43237305 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482264 739.43682861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482265 739.43707275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482266 739.43719482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482267 739.43743896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482268 739.43756104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482269 739.43774414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482270 739.43792725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482271 739.43811035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482272 739.43835449 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482273 739.43847656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482274 739.43872070 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482275 739.43890381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482276 739.43908691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482277 739.43927002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482278 739.43951416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482279 739.43969727 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482280 739.43994141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482281 739.44006348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482282 739.44030762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482283 739.44042969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482284 739.44079590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482285 739.44091797 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482286 739.44128418 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482287 739.44140625 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482288 739.44158936 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482289 739.44171143 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482290 739.44189453 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482291 739.44201660 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482292 739.44219971 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482293 739.44232178 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482294 739.44250488 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482295 739.44262695 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482296 739.44281006 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482297 739.44293213 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482298 739.44311523 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482299 739.44323730 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482300 739.44342041 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482301 739.44354248 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482302 739.44372559 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482303 739.44384766 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482304 739.44409180 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482305 739.44421387 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482306 739.44439697 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482307 739.44451904 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482308 739.44470215 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482309 739.44482422 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482310 739.44500732 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482311 739.44512939 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482312 739.44531250 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482313 739.44543457 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482314 739.44567871 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482315 739.44580078 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482316 739.44598389 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482317 739.44610596 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482318 739.44635010 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482319 739.44647217 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482320 739.44665527 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482321 739.44683838 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482322 739.44696045 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482323 739.44714355 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482324 739.44726563 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482325 739.44744873 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482326 739.44763184 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482327 739.44775391 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482328 739.44793701 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482329 739.44805908 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482330 739.44824219 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482331 739.44836426 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482332 739.44854736 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482333 739.44873047 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482334 739.44891357 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482335 739.44903564 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482336 739.44921875 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482337 739.44940186 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482338 739.44952393 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482339 739.44970703 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482340 739.44989014 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482341 739.45025635 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482342 739.45043945 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482343 739.45056152 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482344 739.45074463 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482345 739.45086670 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482346 739.45104980 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482347 739.45117188 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482348 739.45135498 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482349 739.45147705 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482350 739.45166016 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482351 739.45178223 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482352 739.45196533 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482353 739.45208740 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482354 739.45227051 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482355 739.45239258 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482356 739.45257568 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482357 739.45269775 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482358 739.45288086 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482359 739.45300293 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482360 739.45318604 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482361 739.45330811 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482362 739.45349121 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482363 739.45367432 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482364 739.45379639 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482365 739.45397949 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482366 739.45410156 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482367 739.45446777 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482368 739.45483398 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482369 739.45501709 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482370 739.45526123 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482371 739.45556641 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482372 739.45611572 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482373 739.45629883 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482374 739.45660400 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482375 739.45684814 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482376 739.45690918 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482377 739.45715332 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482378 739.45739746 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482379 739.45751953 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482380 739.45770264 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482381 739.45782471 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482382 739.45806885 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482383 739.45837402 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482384 739.45849609 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482385 739.45874023 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482386 739.45904541 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482387 739.45928955 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482388 739.45965576 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482389 739.45983887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482390 739.46002197 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482391 739.46020508 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482392 739.46075439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482393 739.46093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482394 739.46105957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482395 739.46142578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482396 739.46185303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482397 739.46215820 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482398 739.46252441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482399 739.46276855 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482400 739.46289063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482401 739.46313477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482402 739.46325684 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482403 739.46350098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482404 739.46374512 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482405 739.46398926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482406 739.46417236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482407 739.46435547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482408 739.46447754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482409 739.46466064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482410 739.46478271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482411 739.46496582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482412 739.46508789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482413 739.46527100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482414 739.46539307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482415 739.46557617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482416 739.46569824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482417 739.46588135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482418 739.46606445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482419 739.46618652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482420 739.46636963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482421 739.46649170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482422 739.46667480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482423 739.46685791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482424 739.46704102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482425 739.46728516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482426 739.46740723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482427 739.46765137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482428 739.46777344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482429 739.46795654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482430 739.46813965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482431 739.46832275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482432 739.46850586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482433 739.46862793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482434 739.46881104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482435 739.46899414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482436 739.46917725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482437 739.46929932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482438 739.46954346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482439 739.46966553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482440 739.46984863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482441 739.47003174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482442 739.47021484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482443 739.47039795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482444 739.47052002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482445 739.47076416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482446 739.47088623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482447 739.47113037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482448 739.47131348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482449 739.47149658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482450 739.47174072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482451 739.47192383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482452 739.47210693 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482453 739.47229004 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482454 739.47241211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482455 739.47259521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482456 739.47271729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482457 739.47290039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482458 739.47302246 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482459 739.47320557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482460 739.47332764 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482461 739.47351074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482462 739.47369385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482463 739.47381592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482464 739.47399902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482465 739.47412109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482466 739.47430420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482467 739.47442627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482468 739.47460938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482469 739.47473145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482470 739.47491455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482471 739.47503662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482472 739.47521973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482473 739.47546387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482474 739.47583008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482475 739.47619629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482476 739.47637939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482477 739.47674561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482478 739.47686768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482479 739.47711182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482480 739.48120117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482481 739.48138428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482482 739.48156738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482483 739.48193359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482484 739.48211670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482485 739.48223877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482486 739.48242188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482487 739.48254395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482488 739.48272705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482489 739.48291016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482490 739.48303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482491 739.48321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482492 739.48339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482493 739.48358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482494 739.48382568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482495 739.48400879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482496 739.48419189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482497 739.48437500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482498 739.48449707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482499 739.48468018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482500 739.48480225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482501 739.48498535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482502 739.48510742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482503 739.48535156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482504 739.48547363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482505 739.48565674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482506 739.48577881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482507 739.48596191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482508 739.48614502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482509 739.48632813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482510 739.48645020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482511 739.48663330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482512 739.48675537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482513 739.48693848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482514 739.48706055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482515 739.48724365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482516 739.48736572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482517 739.48754883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482518 739.48767090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482519 739.48785400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482520 739.48797607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482521 739.48815918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482522 739.48828125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482523 739.48846436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482524 739.48858643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482525 739.48876953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482526 739.48889160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482527 739.48907471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482528 739.48925781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482529 739.48944092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482530 739.48956299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482531 739.48974609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482532 739.48986816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482533 739.49005127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482534 739.49017334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482535 739.49035645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482536 739.49047852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482537 739.49072266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482538 739.49084473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482539 739.49102783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482540 739.49114990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482541 739.49133301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482542 739.49145508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482543 739.49169922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482544 739.49182129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482545 739.49200439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482546 739.49212646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482547 739.49230957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482548 739.49243164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482549 739.49261475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482550 739.49273682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482551 739.49291992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482552 739.49304199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482553 739.49322510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482554 739.49334717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482555 739.49353027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482556 739.49371338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482557 739.49395752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482558 739.49407959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482559 739.49432373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482560 739.49450684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482561 739.49468994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482562 739.49487305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482563 739.49499512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482564 739.49517822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482565 739.49536133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482566 739.49554443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482567 739.49566650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482568 739.49584961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482569 739.49597168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482570 739.49615479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482571 739.49658203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482572 739.49676514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482573 739.49725342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482574 739.49749756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482575 739.49768066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482576 739.49786377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482577 739.49835205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482578 739.49847412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482579 739.49877930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482580 739.49896240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482581 739.49908447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482582 739.49926758 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482583 739.49938965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482584 739.49957275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482585 739.49969482 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482586 739.49987793 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482587 739.50006104 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482588 739.50018311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482589 739.50036621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482590 739.50048828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482591 739.50067139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482592 739.50079346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482593 739.50097656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482594 739.50115967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482595 739.50128174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482596 739.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482597 739.50164795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482598 739.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482599 739.50195313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482600 739.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482601 739.50225830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482602 739.50238037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482603 739.50250244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482604 739.50268555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482605 739.50292969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482606 739.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482607 739.50323486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482608 739.50347900 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482609 739.50360107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482610 739.50378418 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482611 739.50390625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482612 739.50415039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482613 739.50445557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482614 739.50463867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482615 739.50488281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482616 739.50512695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482617 739.50524902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482618 739.50543213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482619 739.50555420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482620 739.50573730 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482621 739.50585938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482622 739.50604248 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482623 739.50616455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482624 739.50628662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482625 739.50646973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482626 739.50665283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482627 739.50677490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482628 739.50695801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482629 739.50714111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482630 739.50732422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482631 739.50750732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482632 739.50769043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482633 739.50781250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482634 739.50799561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482635 739.50811768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482636 739.50830078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482637 739.50842285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482638 739.50860596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482639 739.50872803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482640 739.50891113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482641 739.50903320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482642 739.50921631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482643 739.50933838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482644 739.50952148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482645 739.50964355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482646 739.50982666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482647 739.50994873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482648 739.51013184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482649 739.51025391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482650 739.51043701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482651 739.51062012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482652 739.51080322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482653 739.51092529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482654 739.51116943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482655 739.51135254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482656 739.51147461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482657 739.51171875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482658 739.51184082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482659 739.51202393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482660 739.51214600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482661 739.51232910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482662 739.51245117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482663 739.51263428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482664 739.51275635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482665 739.51293945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482666 739.51306152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482667 739.51324463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482668 739.51336670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482669 739.51361084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482670 739.51373291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482671 739.51422119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482672 739.51434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482673 739.51464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482674 739.51477051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482675 739.51501465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482676 739.51525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482677 739.51538086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482678 739.51556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482679 739.51568604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482680 739.51586914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482681 739.51605225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482682 739.51623535 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482683 739.51654053 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482684 739.51672363 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482685 739.51690674 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482686 739.51708984 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482687 739.51721191 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482688 739.51733398 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482689 739.51751709 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482690 739.51770020 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482691 739.51782227 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482692 739.51800537 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482693 739.51812744 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482694 739.51831055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482695 739.51849365 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482696 739.51867676 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482697 739.51885986 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482698 739.51904297 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482699 739.51916504 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482700 739.51934814 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482701 739.51947021 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482702 739.51965332 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482703 739.51983643 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482704 739.52001953 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482705 739.52014160 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482706 739.52026367 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482707 739.52038574 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482708 739.52062988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482709 739.52075195 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482710 739.52093506 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482711 739.52111816 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482712 739.52130127 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482713 739.52160645 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482714 739.52172852 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482715 739.52197266 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482716 739.52209473 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482717 739.52227783 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482718 739.52233887 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482719 739.52252197 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482720 739.52264404 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482721 739.52282715 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482722 739.52294922 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482723 739.52313232 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482724 739.52325439 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482725 739.52343750 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482726 739.52355957 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482727 739.52374268 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482728 739.52392578 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482729 739.52416992 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482730 739.52429199 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482731 739.52447510 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482732 739.52465820 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482733 739.52484131 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482734 739.52502441 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482735 739.52514648 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482736 739.52532959 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482737 739.52575684 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482738 739.52587891 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482739 739.52636719 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482740 739.52648926 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482741 739.52685547 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482742 739.52703857 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482743 739.52716064 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482744 739.52734375 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482745 739.52746582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482746 739.52764893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482747 739.52777100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482748 739.52795410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482749 739.52807617 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482750 739.52819824 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482751 739.52832031 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482752 739.52850342 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482753 739.52862549 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482754 739.52886963 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482755 739.52899170 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482756 739.52917480 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482757 739.52929688 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482758 739.52947998 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482759 739.52960205 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482760 739.52978516 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482761 739.52990723 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482762 739.53009033 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482763 739.53021240 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482764 739.53045654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482765 739.53057861 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482766 739.53076172 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482767 739.53088379 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482768 739.53106689 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482769 739.53125000 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482770 739.53143311 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482771 739.53155518 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482772 739.53179932 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482773 739.53186035 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482774 739.53210449 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482775 739.53222656 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482776 739.53240967 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482777 739.53253174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482778 739.53271484 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482779 739.53283691 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482780 739.53302002 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482781 739.53314209 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482782 739.53332520 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482783 739.53344727 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482784 739.53363037 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482785 739.53375244 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482786 739.53399658 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482787 739.53411865 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482788 739.53436279 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482789 739.53466797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482790 739.53479004 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482791 739.53497314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482792 739.53509521 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482793 739.53527832 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482794 739.53540039 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482795 739.53558350 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482796 739.53570557 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482797 739.53588867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482798 739.53601074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482799 739.53619385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482800 739.53631592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482801 739.53649902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482802 739.53662109 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482803 739.53680420 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482804 739.53692627 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482805 739.53710938 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482806 739.53723145 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482807 739.53741455 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482808 739.53753662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482809 739.53771973 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482810 739.53784180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482811 739.53802490 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482812 739.53814697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482813 739.53833008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482814 739.53851318 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482815 739.53906250 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482816 739.53918457 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482817 739.53936768 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482818 739.53955078 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482819 739.53973389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482820 739.53985596 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482821 739.54010010 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482822 739.54028320 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482823 739.54040527 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482824 739.54058838 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482825 739.54071045 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482826 739.54095459 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482827 739.54107666 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482828 739.54125977 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482829 739.54138184 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482830 739.54156494 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482831 739.54174805 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482832 739.54193115 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482833 739.54211426 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482834 739.54229736 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482835 739.54260254 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482836 739.54278564 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482837 739.54296875 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482838 739.54321289 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482839 739.54333496 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482840 739.54351807 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482841 739.54364014 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482842 739.54382324 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482843 739.54394531 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482844 739.54412842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482845 739.54431152 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482846 739.54449463 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482847 739.54461670 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482848 739.54479980 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482849 739.54486084 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482850 739.54504395 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482851 739.54516602 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482852 739.54541016 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482853 739.54553223 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482854 739.54571533 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482855 739.54583740 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482856 739.54602051 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482857 739.54614258 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482858 739.54632568 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482859 739.54644775 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482860 739.54663086 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482861 739.54675293 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482862 739.54687500 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482863 739.54711914 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482864 739.54730225 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482865 739.54742432 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482866 739.54760742 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482867 739.54779053 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482868 739.54803467 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482869 739.54821777 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482870 739.54840088 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482871 739.54858398 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482872 739.54907227 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482873 739.54931641 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482874 739.54949951 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482875 739.54962158 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482876 739.54980469 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482877 739.54992676 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482878 739.55017090 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482879 739.55029297 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482880 739.55053711 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482881 739.55065918 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482882 739.55090332 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482883 739.55102539 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482884 739.55126953 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482885 739.55151367 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482886 739.55163574 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482887 739.55181885 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482888 739.55194092 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482889 739.55212402 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482890 739.55224609 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482891 739.55242920 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482892 739.55255127 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482893 739.55273438 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482894 739.55285645 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482895 739.55303955 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482896 739.55316162 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482897 739.55334473 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482898 739.55346680 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482899 739.55364990 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482900 739.55377197 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482901 739.55401611 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482902 739.55413818 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482903 739.55432129 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482904 739.55444336 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482905 739.55462646 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482906 739.55480957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482907 739.55499268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482908 739.55511475 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482909 739.55529785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482910 739.55554199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482911 739.55566406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482912 739.55584717 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482913 739.55596924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482914 739.55615234 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482915 739.55627441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482916 739.55645752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482917 739.55657959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482918 739.55676270 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482919 739.55688477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482920 739.55706787 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482921 739.55725098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482922 739.55737305 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482923 739.55755615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482924 739.55767822 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482925 739.55786133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482926 739.55798340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482927 739.55816650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482928 739.55828857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482929 739.55847168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482930 739.55859375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482931 739.55877686 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482932 739.55889893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482933 739.55908203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482934 739.55920410 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482935 739.55938721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482936 739.55950928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482937 739.55969238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482938 739.55981445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482939 739.55999756 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482940 739.56011963 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482941 739.56030273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482942 739.56042480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482943 739.56060791 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482944 739.56072998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482945 739.56091309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482946 739.56109619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482947 739.56127930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482948 739.56140137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482949 739.56158447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482950 739.56170654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482951 739.56195068 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482952 739.56207275 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482953 739.56231689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482954 739.56243896 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482955 739.56262207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482956 739.56274414 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482957 739.56292725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482958 739.56304932 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482959 739.56323242 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482960 739.56335449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482961 739.56353760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482962 739.56359863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482963 739.56378174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482964 739.56396484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482965 739.56414795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482966 739.56427002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482967 739.56445313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482968 739.56463623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482969 739.56481934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482970 739.56500244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482971 739.56518555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482972 739.56530762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482973 739.56549072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482974 739.56561279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482975 739.56579590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482976 739.56591797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482977 739.56610107 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482978 739.56622314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482979 739.56640625 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482980 739.56652832 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482981 739.56671143 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482982 739.56683350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482983 739.56701660 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482984 739.56713867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482985 739.56732178 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482986 739.56738281 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482987 739.56756592 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482988 739.56768799 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482989 739.56787109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482990 739.56805420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482991 739.56817627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482992 739.56835938 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482993 739.56848145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482994 739.56866455 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482995 739.56878662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482996 739.56896973 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482997 739.56909180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482998 739.56933594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08482999 739.56945801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483000 739.56964111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483001 739.56982422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483002 739.56994629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483003 739.57025146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483004 739.57043457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483005 739.57061768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483006 739.57104492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483007 739.57122803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483008 739.57171631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483009 739.57189941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483010 739.57208252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483011 739.57220459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483012 739.57238770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483013 739.57250977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483014 739.57263184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483015 739.57281494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483016 739.57293701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483017 739.57312012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483018 739.57336426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483019 739.57354736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483020 739.57373047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483021 739.57385254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483022 739.57403564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483023 739.57421875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483024 739.57440186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483025 739.57452393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483026 739.57470703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483027 739.57482910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483028 739.57501221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483029 739.57513428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483030 739.57531738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483031 739.57543945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483032 739.57562256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483033 739.57574463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483034 739.57592773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483035 739.57604980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483036 739.57623291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483037 739.57635498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483038 739.57653809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483039 739.57666016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483040 739.57684326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483041 739.57702637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483042 739.57720947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483043 739.57733154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483044 739.57751465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483045 739.57763672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483046 739.57788086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483047 739.57800293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483048 739.57818604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483049 739.57830811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483050 739.57849121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483051 739.57861328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483052 739.57879639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483053 739.57891846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483054 739.57910156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483055 739.57922363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483056 739.57940674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483057 739.57952881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483058 739.57971191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483059 739.57983398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483060 739.58013916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483061 739.58026123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483062 739.58044434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483063 739.58062744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483064 739.58087158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483065 739.58105469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483066 739.58123779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483067 739.58135986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483068 739.58154297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483069 739.58172607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483070 739.58184814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483071 739.58203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483072 739.58215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483073 739.58227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483074 739.58239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483075 739.58258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483076 739.58270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483077 739.58288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483078 739.58300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483079 739.58319092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483080 739.58331299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483081 739.58349609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483082 739.58361816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483083 739.58380127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483084 739.58392334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483085 739.58416748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483086 739.58428955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483087 739.58447266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483088 739.58459473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483089 739.58477783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483090 739.58489990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483091 739.58508301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483092 739.58520508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483093 739.58538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483094 739.58551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483095 739.58569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483096 739.58581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483097 739.58599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483098 739.58612061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483099 739.58630371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483100 739.58648682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483101 739.58666992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483102 739.58679199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483103 739.58703613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483104 739.58715820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483105 739.58734131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483106 739.58746338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483107 739.58764648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483108 739.58776855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483109 739.58801270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483110 739.58807373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483111 739.58831787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483112 739.58843994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483113 739.58862305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483114 739.58874512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483115 739.58892822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483116 739.58905029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483117 739.58929443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483118 739.58941650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483119 739.58966064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483120 739.58978271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483121 739.58996582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483122 739.59008789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483123 739.59027100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483124 739.59039307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483125 739.59057617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483126 739.59069824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483127 739.59088135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483128 739.59100342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483129 739.59118652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483130 739.59130859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483131 739.59149170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483132 739.59167480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483133 739.59185791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483134 739.59204102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483135 739.59216309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483136 739.59234619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483137 739.59252930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483138 739.59277344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483139 739.59295654 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483140 739.59313965 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483141 739.59338379 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483142 739.59356689 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483143 739.59375000 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483144 739.59387207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483145 739.59405518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483146 739.59423828 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483147 739.59442139 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483148 739.59454346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483149 739.59472656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483150 739.59490967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483151 739.59503174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483152 739.59521484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483153 739.59533691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483154 739.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483155 739.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483156 739.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483157 739.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483158 739.59613037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483159 739.59631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483160 739.59649658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483161 739.59661865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483162 739.59680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483163 739.59698486 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483164 739.59716797 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483165 739.59741211 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483166 739.59759521 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483167 739.59771729 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483168 739.59790039 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483169 739.59808350 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483170 739.59820557 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483171 739.59838867 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483172 739.59851074 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483173 739.59869385 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483174 739.59887695 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483175 739.59899902 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483176 739.59918213 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483177 739.59930420 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483178 739.59942627 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483179 739.59954834 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483180 739.59973145 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483181 739.59985352 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483182 739.60003662 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483183 739.60015869 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483184 739.60034180 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483185 739.60046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483186 739.60064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483187 739.60083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483188 739.60101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483189 739.60113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483190 739.60131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483191 739.60144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483192 739.60168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483193 739.60180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483194 739.60205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483195 739.60223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483196 739.60235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483197 739.60253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483198 739.60266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483199 739.60284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483200 739.60302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483201 739.60321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483202 739.60339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483203 739.60363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483204 739.60382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483205 739.60394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483206 739.60412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483207 739.60424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483208 739.60443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483209 739.60455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483210 739.60467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483211 739.60491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483212 739.60510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483213 739.60522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483214 739.60540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483215 739.60559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483216 739.60583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483217 739.60601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483218 739.60644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483219 739.60656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483220 739.60675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483221 739.60687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483222 739.60711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483223 739.60723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483224 739.60742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483225 739.60754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483226 739.60772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483227 739.60784912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483228 739.60803223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483229 739.60815430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483230 739.60833740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483231 739.60845947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483232 739.60864258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483233 739.60876465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483234 739.60894775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483235 739.60906982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483236 739.60925293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483237 739.60937500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483238 739.60955811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483239 739.60968018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483240 739.60992432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483241 739.61004639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483242 739.61022949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483243 739.61035156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483244 739.61059570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483245 739.61071777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483246 739.61090088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483247 739.61102295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483248 739.61120605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483249 739.61132813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483250 739.61151123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483251 739.61163330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483252 739.61181641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483253 739.61193848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483254 739.61212158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483255 739.61230469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483256 739.61248779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483257 739.61267090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483258 739.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483259 739.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483260 739.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483261 739.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483262 739.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483263 739.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483264 739.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483265 739.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483266 739.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483267 739.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483268 739.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483269 739.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483270 739.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483271 739.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483272 739.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483273 739.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483274 739.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483275 739.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483276 739.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483277 739.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483278 739.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483279 739.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483280 739.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483281 739.61676025 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483282 739.61694336 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483283 739.61718750 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483284 739.61743164 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483285 739.61761475 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483286 739.61779785 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483287 739.61791992 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483288 739.61810303 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483289 739.61822510 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483290 739.61840820 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483291 739.61853027 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483292 739.61871338 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483293 739.61889648 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483294 739.61901855 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483295 739.61920166 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483296 739.61932373 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483297 739.61950684 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483298 739.61962891 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483299 739.61981201 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483300 739.61993408 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483301 739.62011719 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483302 739.62030029 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483303 739.62042236 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483304 739.62054443 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483305 739.62072754 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483306 739.62084961 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483307 739.62109375 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483308 739.62121582 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483309 739.62139893 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483310 739.62152100 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483311 739.62170410 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483312 739.62176514 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483313 739.62194824 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483314 739.62207031 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483315 739.62231445 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483316 739.62243652 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483317 739.62261963 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483318 739.62280273 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483319 739.62298584 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483320 739.62316895 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483321 739.62335205 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483322 739.62353516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483323 739.62371826 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483324 739.62390137 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483325 739.62402344 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483326 739.62420654 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483327 739.62432861 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483328 739.62451172 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483329 739.62463379 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483330 739.62481689 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483331 739.62493896 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483332 739.62512207 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483333 739.62524414 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483334 739.62542725 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483335 739.62561035 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483336 739.62579346 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483337 739.62591553 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483338 739.62615967 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483339 739.62628174 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483340 739.62646484 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483341 739.62658691 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483342 739.62689209 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483343 739.62731934 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483344 739.62744141 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483345 739.62774658 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483346 739.62799072 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483347 739.62817383 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483348 739.62835693 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483349 739.62872314 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483350 739.62908936 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483351 739.62939453 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483352 739.62969971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483353 739.63006592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483354 739.63024902 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483355 739.63061523 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483356 739.63079834 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483357 739.63092041 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483358 739.63110352 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483359 739.63128662 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483360 739.63140869 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483361 739.63159180 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483362 739.63171387 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483363 739.63189697 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483364 739.63208008 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483365 739.63220215 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483366 739.63244629 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483367 739.63256836 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483368 739.63275146 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483369 739.63287354 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483370 739.63305664 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483371 739.63317871 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483372 739.63336182 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483373 739.63348389 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483374 739.63366699 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483375 739.63378906 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483376 739.63397217 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483377 739.63415527 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483378 739.63427734 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483379 739.63446045 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483380 739.63458252 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483381 739.63476563 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483382 739.63488770 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483383 739.63507080 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483384 739.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08483385 739.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08483386 739.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08483387 739.63507080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08483388 739.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08483389 739.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08483390 739.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08483391 739.63513184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08483392 739.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08483393 739.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08483394 739.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08483395 739.63519287 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483396 739.63519287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08483397 739.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08483398 739.63525391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08483399 739.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08483400 739.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08483401 739.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08483402 739.63531494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08483403 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08483404 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08483405 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08483406 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08483407 739.63537598 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483408 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08483409 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08483410 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08483411 739.63537598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08483412 739.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08483413 739.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08483414 739.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08483415 739.63543701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08483416 739.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08483417 739.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08483418 739.63549805 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483419 739.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08483420 739.63549805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08483421 739.63555908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08483422 739.63555908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08483423 739.63562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08483424 739.63562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08483425 739.63562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08483426 739.63562012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08483427 739.63568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08483428 739.63568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08483429 739.63568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08483430 739.63568115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08483431 739.63568115 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483432 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08483433 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08483434 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08483435 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08483436 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08483437 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08483438 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08483439 739.63574219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08483440 739.63580322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08483441 739.63580322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08483442 739.63580322 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483443 739.63580322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08483444 739.63586426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08483445 739.63586426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08483446 739.63586426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08483447 739.63592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08483448 739.63592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08483449 739.63592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08483450 739.63592529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08483451 739.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08483452 739.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08483453 739.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08483454 739.63598633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08483455 739.63598633 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483456 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08483457 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08483458 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08483459 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08483460 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08483461 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08483462 739.63604736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08483463 739.63610840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08483464 739.63610840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08483465 739.63610840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08483466 739.63616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08483467 739.63616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08483468 739.63616943 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483469 739.63616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08483470 739.63616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08483471 739.63623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08483472 739.63623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08483473 739.63623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08483474 739.63623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08483475 739.63629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08483476 739.63629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08483477 739.63629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08483478 739.63629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08483479 739.63635254 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483480 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08483481 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08483482 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08483483 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08483484 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08483485 739.63635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08483486 739.63641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08483487 739.63641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08483488 739.63641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08483489 739.63641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08483490 739.63647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08483491 739.63647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08483492 739.63647461 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483493 739.63647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08483494 739.63647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08483495 739.63653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08483496 739.63653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08483497 739.63653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08483498 739.63653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08483499 739.63659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08483500 739.63659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08483501 739.63659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08483502 739.63659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08483503 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08483504 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08483505 739.63665771 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483506 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08483507 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08483508 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08483509 739.63665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08483510 739.63671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08483511 739.63671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08483512 739.63671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08483513 739.63671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08483514 739.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08483515 739.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08483516 739.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08483517 739.63677979 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483518 739.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08483519 739.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08483520 739.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08483521 739.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08483522 739.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08483523 739.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08483524 739.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08483525 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08483526 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08483527 739.63696289 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483528 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08483529 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08483530 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08483531 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08483532 739.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08483533 739.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08483534 739.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08483535 739.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08483536 739.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08483537 739.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08483538 739.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08483539 739.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08483540 739.63708496 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483541 739.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08483542 739.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08483543 739.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08483544 739.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08483545 739.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08483546 739.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08483547 739.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08483548 739.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08483549 739.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08483550 739.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08483551 739.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08483552 739.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08483553 739.63732910 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483554 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08483555 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08483556 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08483557 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08483558 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08483559 739.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08483560 739.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08483561 739.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08483562 739.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08483563 739.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08483564 739.63739014 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483565 739.63745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08483566 739.63745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08483567 739.63745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08483568 739.63745117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08483569 739.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08483570 739.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08483571 739.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08483572 739.63751221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08483573 739.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08483574 739.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08483575 739.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08483576 739.63757324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08483577 739.63763428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483578 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08483579 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08483580 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08483581 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08483582 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08483583 739.63763428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08483584 739.63769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08483585 739.63769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08483586 739.63769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08483587 739.63769531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08483588 739.63775635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483589 739.63775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08483590 739.63775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08483591 739.63775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08483592 739.63775635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08483593 739.63781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08483594 739.63781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08483595 739.63781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08483596 739.63781738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08483597 739.63787842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08483598 739.63787842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08483599 739.63787842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08483600 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08483601 739.63793945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483602 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08483603 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08483604 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08483605 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08483606 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08483607 739.63793945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08483608 739.63800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08483609 739.63800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08483610 739.63800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08483611 739.63800049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08483612 739.63806152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483613 739.63806152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08483614 739.63806152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08483615 739.63806152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08483616 739.63806152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08483617 739.63812256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08483618 739.63812256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08483619 739.63812256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08483620 739.63818359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08483621 739.63818359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08483622 739.63818359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08483623 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08483624 739.63824463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483625 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08483626 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08483627 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08483628 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08483629 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08483630 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08483631 739.63824463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08483632 739.63830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08483633 739.63830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08483634 739.63830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08483635 739.63830566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08483636 739.63836670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483637 739.63836670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08483638 739.63836670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08483639 739.63836670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08483640 739.63842773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08483641 739.63842773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08483642 739.63842773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08483643 739.63848877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08483644 739.63848877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08483645 739.63848877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08483646 739.63848877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08483647 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08483648 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08483649 739.63854980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483650 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08483651 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08483652 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08483653 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08483654 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08483655 739.63854980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08483656 739.63861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08483657 739.63861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08483658 739.63861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08483659 739.63861084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08483660 739.63867188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08483661 739.63867188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483662 739.63867188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08483663 739.63873291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08483664 739.63873291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08483665 739.63873291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08483666 739.63873291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08483667 739.63879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08483668 739.63879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08483669 739.63879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08483670 739.63879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08483671 739.63885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08483672 739.63885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08483673 739.63885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08483674 739.63885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08483675 739.63885498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483676 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08483677 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08483678 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08483679 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08483680 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08483681 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08483682 739.63891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08483683 739.63897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08483684 739.63897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08483685 739.63897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08483686 739.63903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08483687 739.63903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08483688 739.63903809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483689 739.63903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08483690 739.63903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08483691 739.63909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08483692 739.63909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08483693 739.63909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08483694 739.63909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08483695 739.63916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08483696 739.63916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08483697 739.63916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08483698 739.63916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08483699 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08483700 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08483701 739.63922119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483702 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08483703 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08483704 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08483705 739.63922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08483706 739.63928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08483707 739.63928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08483708 739.63928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08483709 739.63928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08483710 739.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08483711 739.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08483712 739.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08483713 739.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08483714 739.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08483715 739.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08483716 739.63940430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483717 739.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08483718 739.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08483719 739.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08483720 739.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08483721 739.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08483722 739.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08483723 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08483724 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08483725 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08483726 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08483727 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08483728 739.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08483729 739.63952637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483730 739.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08483731 739.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08483732 739.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08483733 739.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08483734 739.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08483735 739.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08483736 739.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08483737 739.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08483738 739.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08483739 739.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08483740 739.63970947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483741 739.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08483742 739.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08483743 739.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08483744 739.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08483745 739.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08483746 739.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08483747 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08483748 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08483749 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08483750 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08483751 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08483752 739.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08483753 739.63983154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483754 739.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08483755 739.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08483756 739.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08483757 739.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08483758 739.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08483759 739.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08483760 739.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08483761 739.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08483762 739.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08483763 739.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08483764 739.64001465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483765 739.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08483766 739.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08483767 739.64007568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08483768 739.64007568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08483769 739.64007568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08483770 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08483771 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08483772 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08483773 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08483774 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08483775 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08483776 739.64013672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483777 739.64013672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08483778 739.64019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08483779 739.64019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08483780 739.64019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08483781 739.64019775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08483782 739.64025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08483783 739.64025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08483784 739.64025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08483785 739.64025879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08483786 739.64031982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08483787 739.64031982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08483788 739.64031982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483789 739.64031982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08483790 739.64031982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08483791 739.64038086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08483792 739.64038086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08483793 739.64044189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08483794 739.64044189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08483795 739.64044189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08483796 739.64044189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08483797 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08483798 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08483799 739.64050293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483800 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08483801 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08483802 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08483803 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08483804 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08483805 739.64050293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08483806 739.64056396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08483807 739.64056396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08483808 739.64056396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08483809 739.64056396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08483810 739.64062500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08483811 739.64062500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08483812 739.64062500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483813 739.64062500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08483814 739.64062500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08483815 739.64068604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08483816 739.64068604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08483817 739.64074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08483818 739.64074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08483819 739.64074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08483820 739.64074707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08483821 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08483822 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08483823 739.64080811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483824 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08483825 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08483826 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08483827 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08483828 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08483829 739.64080811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08483830 739.64086914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08483831 739.64086914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08483832 739.64086914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08483833 739.64086914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08483834 739.64093018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08483835 739.64093018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08483836 739.64093018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483837 739.64099121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08483838 739.64099121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08483839 739.64099121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08483840 739.64099121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08483841 739.64105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08483842 739.64105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08483843 739.64105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08483844 739.64105225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08483845 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08483846 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08483847 739.64111328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483848 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08483849 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08483850 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08483851 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08483852 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08483853 739.64111328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08483854 739.64117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08483855 739.64117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08483856 739.64117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08483857 739.64117432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08483858 739.64123535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08483859 739.64123535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08483860 739.64123535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483861 739.64129639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08483862 739.64129639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08483863 739.64129639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08483864 739.64129639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08483865 739.64135742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08483866 739.64135742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08483867 739.64135742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08483868 739.64135742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08483869 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08483870 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08483871 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08483872 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08483873 739.64141846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483874 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08483875 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08483876 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08483877 739.64141846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08483878 739.64147949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08483879 739.64147949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08483880 739.64147949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08483881 739.64154053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08483882 739.64154053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08483883 739.64154053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08483884 739.64154053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483885 739.64160156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08483886 739.64160156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08483887 739.64160156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08483888 739.64160156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08483889 739.64166260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08483890 739.64166260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08483891 739.64166260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08483892 739.64166260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08483893 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08483894 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08483895 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08483896 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08483897 739.64172363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483898 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08483899 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08483900 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08483901 739.64172363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08483902 739.64178467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08483903 739.64178467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08483904 739.64178467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08483905 739.64184570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08483906 739.64184570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08483907 739.64184570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08483908 739.64190674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08483909 739.64190674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08483910 739.64190674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483911 739.64190674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08483912 739.64190674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08483913 739.64196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08483914 739.64196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08483915 739.64196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08483916 739.64196777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08483917 739.64202881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08483918 739.64202881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08483919 739.64202881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08483920 739.64202881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08483921 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08483922 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08483923 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08483924 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08483925 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08483926 739.64208984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483927 739.64208984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08483928 739.64221191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08483929 739.64221191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08483930 739.64227295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08483931 739.64227295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08483932 739.64233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08483933 739.64233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08483934 739.64233398 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483935 739.64233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08483936 739.64233398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08483937 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08483938 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08483939 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08483940 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08483941 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08483942 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08483943 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08483944 739.64239502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08483945 739.64245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08483946 739.64245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08483947 739.64245605 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483948 739.64245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08483949 739.64245605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08483950 739.64251709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08483951 739.64251709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08483952 739.64251709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08483953 739.64257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08483954 739.64257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08483955 739.64257813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08483956 739.64263916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08483957 739.64263916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08483958 739.64263916 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483959 739.64263916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08483960 739.64263916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08483961 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08483962 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08483963 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08483964 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08483965 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08483966 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08483967 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08483968 739.64270020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08483969 739.64276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08483970 739.64276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08483971 739.64276123 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483972 739.64276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08483973 739.64276123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08483974 739.64282227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08483975 739.64282227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08483976 739.64288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08483977 739.64288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08483978 739.64288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08483979 739.64288330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08483980 739.64294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08483981 739.64294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08483982 739.64294434 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483983 739.64294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08483984 739.64294434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08483985 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08483986 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08483987 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08483988 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08483989 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08483990 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08483991 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08483992 739.64300537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08483993 739.64306641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08483994 739.64306641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08483995 739.64306641 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08483996 739.64312744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08483997 739.64312744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08483998 739.64312744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08483999 739.64312744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08484000 739.64318848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08484001 739.64318848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08484002 739.64318848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08484003 739.64318848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08484004 739.64324951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08484005 739.64324951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08484006 739.64324951 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08484007 739.64324951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08484008 739.64324951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08484009 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08484010 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08484011 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08484012 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08484013 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08484014 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08484015 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08484016 739.64331055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08484017 739.64337158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08484018 739.64337158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08484019 739.64337158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08484020 739.64343262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08484021 739.64343262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08484022 739.64343262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08484023 739.64343262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08484024 739.64349365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08484025 739.64349365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08484026 739.64349365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08484027 739.64349365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08484028 739.64355469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08484029 739.64355469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08484030 739.64355469 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08484031 739.64355469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08484032 739.64355469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08484033 739.64361572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08484034 739.64361572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08484035 739.64361572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08484036 739.64361572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08484037 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08484038 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08484039 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08484040 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08484041 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08484042 739.64367676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08484043 739.64367676 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08484044 739.64373779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08484045 739.64373779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08484046 739.64373779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08484047 739.64373779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08484048 739.64379883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08484049 739.64379883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08484050 739.64379883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08484051 739.64379883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08484052 739.64385986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08484053 739.64385986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08484054 739.64385986 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08484055 739.64385986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08484056 739.64385986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08484057 739.64392090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08484058 739.64392090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08484059 739.64392090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08486703 739.67877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08486704 739.67877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08486705 739.67877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08486706 739.67877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08486707 739.67883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08486708 739.67883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08486709 739.67889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08486710 739.67889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08486711 739.67889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08486712 739.67889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08486713 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08486714 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08486715 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08486716 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08486717 739.67895508 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08486718 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08486719 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08486720 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08486721 739.67895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08486722 739.67901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08486723 739.67901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08486724 739.67907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08486725 739.67907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08486726 739.67907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08486727 739.67907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08486728 739.67913818 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08486729 739.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08486730 739.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08486731 739.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08486732 739.67913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08486733 739.67919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08486734 739.67919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08486735 739.67919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08486736 739.67919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08486737 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08486738 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08486739 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08486740 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08486741 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08486742 739.67926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08486743 739.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08486744 739.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08486745 739.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08486746 739.67932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08489272 739.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -08489273 739.71325684 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08489274 739.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbce8 -08489275 739.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -08489276 739.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbcf8 -08489277 739.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -08489278 739.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd08 -08489279 739.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -08489280 739.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -08489281 739.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -08489282 739.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -08489283 739.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -08489284 739.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -08489285 739.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -08489286 739.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -08489287 739.71350098 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08489288 739.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -08489289 739.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -08489290 739.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -08489291 739.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -08489292 739.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -08489293 739.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -08489294 739.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -08489295 739.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -08489296 739.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -08489297 739.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -08489298 739.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -08489299 739.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -08489300 739.71374512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08489301 739.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -08489302 739.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -08489303 739.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -08489304 739.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -08489305 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -08489306 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -08489307 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -08489308 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -08489309 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -08489310 739.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -08489311 739.71392822 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08489312 739.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -08489313 739.71392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -08489314 739.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -08489315 739.71398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -08528869 741.08190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08528870 741.08190918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08528871 741.08197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08528872 741.08197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08528873 741.08197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08528874 741.08197021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08528875 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08528876 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08528877 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08528878 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08528879 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08528880 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08528881 741.08203125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08528882 741.08209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08528883 741.08209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08528884 741.08209229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08528885 741.08215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08528886 741.08215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08528887 741.08215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08528888 741.08215332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08528889 741.08221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08528890 741.08221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08528891 741.08221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08528892 741.08221436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08528893 741.08227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08528894 741.08227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08528895 741.08227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08528896 741.08227539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08528897 741.08233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08528898 741.08233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08528899 741.08233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08528900 741.08233643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08528901 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08528902 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08528903 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08528904 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08528905 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08528906 741.08239746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08528907 741.08245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08528908 741.08245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08528909 741.08245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08528910 741.08245850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08528911 741.08251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08528912 741.08251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08528913 741.08251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08528914 741.08251953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08528915 741.08258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08528916 741.08258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08528917 741.08258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08528918 741.08258057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08528919 741.08264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08528920 741.08264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08528921 741.08264160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08528922 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08528923 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08528924 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08528925 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08528926 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08528927 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08528928 741.08270264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08528929 741.08276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08528930 741.08276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08528931 741.08276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08528932 741.08276367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08528933 741.08282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08528934 741.08282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08528935 741.08282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08528936 741.08282471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08528937 741.08288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08528938 741.08288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08528939 741.08288574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08528940 741.08294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08528941 741.08294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08528942 741.08294678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08528943 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08528944 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08528945 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08528946 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08528947 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08528948 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08528949 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08528950 741.08300781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08528951 741.08306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08528952 741.08306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08528953 741.08306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08528954 741.08306885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08528955 741.08312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08528956 741.08312988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08529089 741.08538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08529090 741.08538818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08529091 741.08544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08529092 741.08544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08529093 741.08544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08529094 741.08544922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08529095 741.08551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08529096 741.08551025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08529097 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08529098 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08529099 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08529100 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08529101 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08529102 741.08557129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08529103 741.08563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08529104 741.08563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08529105 741.08563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08529106 741.08563232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08529107 741.08569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08529108 741.08569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08529109 741.08569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08529110 741.08569336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08529111 741.08575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08529112 741.08575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08529113 741.08575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08529114 741.08581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08529115 741.08581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08529116 741.08581543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08529117 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08529118 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08529119 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08529120 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08529121 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08529122 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08529123 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08529124 741.08587646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08529125 741.08593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08529126 741.08593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08529127 741.08593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08529128 741.08593750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08529129 741.08599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08529130 741.08599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08529131 741.08599854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08529132 741.08605957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08530534 741.10681152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08530535 741.10687256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08530536 741.10687256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08530537 741.10687256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08530538 741.10687256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08530539 741.10693359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08530540 741.10693359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08530541 741.10693359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08530542 741.10693359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08530543 741.10699463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08530544 741.10699463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08530545 741.10699463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08530546 741.10699463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08530547 741.10705566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08530548 741.10705566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08530549 741.10705566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08530550 741.10705566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08530551 741.10711670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08530552 741.10711670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08530553 741.10711670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08530554 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08530555 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08530556 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08530557 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08530558 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08530559 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08530560 741.10717773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08530561 741.10723877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08530562 741.10723877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08530563 741.10723877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08530564 741.10723877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08530565 741.10729980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08530566 741.10729980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08530567 741.10729980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08530568 741.10729980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08530569 741.10736084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08530570 741.10736084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08530571 741.10736084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08530572 741.10742188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08530573 741.10742188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08530574 741.10742188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08530575 741.10748291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08530576 741.10748291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08530577 741.10748291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08531869 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -08531870 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -08531871 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -08531872 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -08531873 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -08531874 741.12591553 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -08531875 741.12597656 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -08531876 741.12597656 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -08531877 741.12597656 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -08531878 741.12597656 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -08531879 741.12603760 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -08531880 741.12603760 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -08531881 741.12603760 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -08531882 741.12609863 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -08531883 741.12609863 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -08531884 741.12609863 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -08531885 741.12615967 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -08531886 741.12615967 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -08531887 741.12615967 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -08531888 741.12615967 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -08531889 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -08531890 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -08531891 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -08531892 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -08531893 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -08531894 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -08531895 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -08531896 741.12622070 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -08531897 741.12628174 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -08531898 741.12628174 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -08531899 741.12628174 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -08531900 741.12634277 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -08531901 741.12634277 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -08531902 741.12634277 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -08531903 741.12640381 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -08531904 741.12640381 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -08531905 741.12640381 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -08531906 741.12640381 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -08531907 741.12646484 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -08531908 741.12646484 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -08531909 741.12646484 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -08531910 741.12646484 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -08531911 741.12652588 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -08531912 741.12652588 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -08532535 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -08532536 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -08532537 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -08532538 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -08532539 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -08532540 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -08532541 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -08532542 741.13543701 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -08532543 741.13549805 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -08532544 741.13549805 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -08532545 741.13549805 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -08532546 741.13555908 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -08532547 741.13555908 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -08532548 741.13555908 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -08532549 741.13562012 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -08532550 741.13562012 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -08532551 741.13562012 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -08532552 741.13562012 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -08532553 741.13568115 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -08532554 741.13568115 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -08532555 741.13568115 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -08532556 741.13568115 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -08532557 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -08532558 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -08532559 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -08532560 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -08532561 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -08532562 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -08532563 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -08532564 741.13574219 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -08532565 741.13580322 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -08532566 741.13580322 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c0 -08532567 741.13586426 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -08532568 741.13586426 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d0 -08532569 741.13586426 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -08532570 741.13586426 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e0 -08532571 741.13592529 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -08532572 741.13592529 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f0 -08532573 741.13592529 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -08532574 741.13592529 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8400 -08532575 741.13598633 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -08532576 741.13598633 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8410 -08532577 741.13598633 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -08532578 741.13598633 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x8420 -08533843 741.15399170 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -08533844 741.15399170 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabb0 -08533845 741.15405273 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -08533846 741.15405273 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabc0 -08533847 741.15405273 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -08533848 741.15405273 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabd0 -08533849 741.15411377 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -08533850 741.15411377 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabe0 -08533851 741.15411377 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -08533852 741.15411377 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xabf0 -08533853 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -08533854 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac00 -08533855 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -08533856 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac10 -08533857 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -08533858 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac20 -08533859 741.15417480 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -08533860 741.15423584 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac30 -08533861 741.15423584 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -08533862 741.15423584 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac40 -08533863 741.15429688 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -08533864 741.15429688 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac50 -08533865 741.15429688 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -08533866 741.15429688 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac60 -08533867 741.15435791 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -08533868 741.15435791 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac70 -08533869 741.15435791 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -08533870 741.15435791 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac80 -08533871 741.15441895 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -08533872 741.15441895 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xac90 -08533873 741.15441895 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -08533874 741.15441895 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xaca0 -08533875 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -08533876 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacb0 -08533877 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -08533878 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacc0 -08533879 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -08533880 741.15447998 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacd0 -08533881 741.15454102 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -08533882 741.15454102 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xace0 -08533883 741.15454102 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -08533884 741.15454102 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xacf0 -08533885 741.15460205 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -08533886 741.15460205 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xad00 -08535043 741.17108154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -08535044 741.17108154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd130 -08535045 741.17114258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -08535046 741.17114258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd140 -08535047 741.17114258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -08535048 741.17114258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd150 -08535049 741.17120361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -08535050 741.17120361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd160 -08535051 741.17120361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -08535052 741.17126465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd170 -08535053 741.17126465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -08535054 741.17126465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd180 -08535055 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -08535056 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd190 -08535057 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -08535058 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1a0 -08535059 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -08535060 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1b0 -08535061 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -08535062 741.17132568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1c0 -08535063 741.17138672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -08535064 741.17138672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1d0 -08535065 741.17138672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -08535066 741.17138672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1e0 -08535067 741.17144775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -08535068 741.17144775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd1f0 -08535069 741.17144775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -08535070 741.17144775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd200 -08535071 741.17150879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -08535072 741.17150879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd210 -08535073 741.17156982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -08535074 741.17156982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd220 -08535075 741.17156982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -08535076 741.17156982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd230 -08535077 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -08535078 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd240 -08535079 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -08535080 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd250 -08535081 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -08535082 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd260 -08535083 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -08535084 741.17163086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd270 -08535085 741.17169189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -08535086 741.17169189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xd280 -08536291 741.18884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -08536292 741.18884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf830 -08536293 741.18884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -08536294 741.18884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf840 -08536295 741.18890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -08536296 741.18890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf850 -08536297 741.18890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -08536298 741.18896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf860 -08536299 741.18896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -08536300 741.18896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf870 -08536301 741.18902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -08536302 741.18902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf880 -08536303 741.18902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -08536304 741.18902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf890 -08536305 741.18908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -08536306 741.18908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8a0 -08536307 741.18908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -08536308 741.18908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8b0 -08536309 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -08536310 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8c0 -08536311 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -08536312 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8d0 -08536313 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -08536314 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8e0 -08536315 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -08536316 741.18914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf8f0 -08536317 741.18920898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -08536318 741.18920898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf900 -08536319 741.18927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -08536320 741.18927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf910 -08536321 741.18927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -08536322 741.18927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf920 -08536323 741.18933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -08536324 741.18933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf930 -08536325 741.18933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -08536326 741.18933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf940 -08536327 741.18939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -08536328 741.18939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf950 -08536329 741.18939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -08536330 741.18939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf960 -08536331 741.18945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -08536332 741.18945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf970 -08536333 741.18945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -08536334 741.18945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xf980 -08537465 741.20556641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -08537466 741.20556641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ce0 -08537467 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -08537468 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11cf0 -08537469 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -08537470 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d00 -08537471 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -08537472 741.20562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d10 -08537473 741.20568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -08537474 741.20568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d20 -08537475 741.20568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -08537476 741.20568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d30 -08537477 741.20574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -08537478 741.20574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d40 -08537479 741.20574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -08537480 741.20574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d50 -08537481 741.20581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -08537482 741.20581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d60 -08537483 741.20581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -08537484 741.20581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d70 -08537485 741.20587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -08537486 741.20587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d80 -08537487 741.20587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -08537488 741.20587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d90 -08537489 741.20593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -08537490 741.20593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11da0 -08537491 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -08537492 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11db0 -08537493 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -08537494 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dc0 -08537495 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -08537496 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11dd0 -08537497 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -08537498 741.20599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11de0 -08537499 741.20605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -08537500 741.20605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11df0 -08537501 741.20605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -08537502 741.20605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e00 -08537503 741.20611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -08537504 741.20611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e10 -08537505 741.20611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -08537506 741.20611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e20 -08537507 741.20617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -08537508 741.20617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e30 -08538682 741.22283936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x142e0 -08538683 741.22290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -08538684 741.22290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x142f0 -08538685 741.22290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -08538686 741.22290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14300 -08538687 741.22296143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -08538688 741.22296143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14310 -08538689 741.22302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -08538690 741.22302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14320 -08538691 741.22302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -08538692 741.22302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14330 -08538693 741.22308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -08538694 741.22308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14340 -08538695 741.22308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -08538696 741.22308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14350 -08538697 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -08538698 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14360 -08538699 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -08538700 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14370 -08538701 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -08538702 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14380 -08538703 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -08538704 741.22314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14390 -08538705 741.22320557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -08538706 741.22320557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143a0 -08538707 741.22326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -08538708 741.22326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143b0 -08538709 741.22326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -08538710 741.22326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143c0 -08538711 741.22332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -08538712 741.22332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143d0 -08538713 741.22332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -08538714 741.22332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143e0 -08538715 741.22338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -08538716 741.22338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x143f0 -08538717 741.22338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -08538718 741.22338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14400 -08538719 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -08538720 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14410 -08538721 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -08538722 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14420 -08538723 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -08538724 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14430 -08538725 741.22344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14440 -08539879 741.23986816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -08539880 741.23986816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16850 -08539881 741.23992920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -08539882 741.23992920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16860 -08539883 741.23992920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -08539884 741.23992920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16870 -08539885 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -08539886 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16880 -08539887 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -08539888 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16890 -08539889 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -08539890 741.23999023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168a0 -08539891 741.24005127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -08539892 741.24005127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168b0 -08539893 741.24005127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -08539894 741.24005127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168c0 -08539895 741.24011230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -08539896 741.24011230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168d0 -08539897 741.24011230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -08539898 741.24011230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168e0 -08539899 741.24017334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -08539900 741.24017334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x168f0 -08539901 741.24017334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -08539902 741.24017334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16900 -08539903 741.24023438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -08539904 741.24023438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16910 -08539905 741.24023438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -08539906 741.24023438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16920 -08539907 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -08539908 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16930 -08539909 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -08539910 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16940 -08539911 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -08539912 741.24029541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16950 -08539913 741.24035645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -08539914 741.24035645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16960 -08539915 741.24035645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -08539916 741.24035645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16970 -08539917 741.24041748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -08539918 741.24041748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16980 -08539919 741.24041748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -08539920 741.24041748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16990 -08539921 741.24047852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -08539922 741.24047852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x169a0 -08541235 741.25958252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -08541236 741.25958252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192b0 -08541237 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -08541238 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192c0 -08541239 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -08541240 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192d0 -08541241 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -08541242 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192e0 -08541243 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -08541244 741.25964355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x192f0 -08541245 741.25970459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -08541246 741.25970459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19300 -08541247 741.25970459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -08541248 741.25970459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19310 -08541249 741.25976563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -08541250 741.25976563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19320 -08541251 741.25982666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -08541252 741.25982666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19330 -08541253 741.25982666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -08541254 741.25982666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19340 -08541255 741.25988770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -08541256 741.25988770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19350 -08541257 741.25988770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -08541258 741.25988770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19360 -08541259 741.25994873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -08541260 741.25994873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19370 -08541261 741.25994873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -08541262 741.25994873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19380 -08541263 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -08541264 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19390 -08541265 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -08541266 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193a0 -08541267 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -08541268 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193b0 -08541269 741.26000977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -08541270 741.26007080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193c0 -08541271 741.26007080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -08541272 741.26007080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193d0 -08541273 741.26013184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -08541274 741.26013184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193e0 -08541275 741.26013184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -08541276 741.26013184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x193f0 -08541277 741.26019287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -08541278 741.26019287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19400 -08542441 741.27673340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -08542442 741.27673340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b860 -08542443 741.27679443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -08542444 741.27679443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b870 -08542445 741.27679443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -08542446 741.27679443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b880 -08542447 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -08542448 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b890 -08542449 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -08542450 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a0 -08542451 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -08542452 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b0 -08542453 741.27685547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -08542454 741.27691650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c0 -08542455 741.27691650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -08542456 741.27691650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d0 -08542457 741.27697754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -08542458 741.27697754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e0 -08542459 741.27697754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -08542460 741.27697754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f0 -08542461 741.27703857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -08542462 741.27703857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b900 -08542463 741.27703857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -08542464 741.27703857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b910 -08542465 741.27709961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -08542466 741.27709961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b920 -08542467 741.27709961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -08542468 741.27709961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b930 -08542469 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -08542470 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b940 -08542471 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -08542472 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b950 -08542473 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -08542474 741.27716064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b960 -08542475 741.27722168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -08542476 741.27722168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b970 -08542477 741.27722168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -08542478 741.27722168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b980 -08542479 741.27728271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -08542480 741.27728271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b990 -08542481 741.27728271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -08542482 741.27728271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9a0 -08542483 741.27734375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -08542484 741.27734375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b9b0 -08543663 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -08543664 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de90 -08543665 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -08543666 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dea0 -08543667 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -08543668 741.29492188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1deb0 -08543669 741.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -08543670 741.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dec0 -08543671 741.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -08543672 741.29498291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ded0 -08543673 741.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -08543674 741.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dee0 -08543675 741.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -08543676 741.29504395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1def0 -08543677 741.29510498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -08543678 741.29510498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df00 -08543679 741.29510498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -08543680 741.29510498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df10 -08543681 741.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -08543682 741.29516602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df20 -08543683 741.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -08543684 741.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df30 -08543685 741.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -08543686 741.29522705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df40 -08543687 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -08543688 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df50 -08543689 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -08543690 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df60 -08543691 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -08543692 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df70 -08543693 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -08543694 741.29528809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df80 -08543695 741.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -08543696 741.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df90 -08543697 741.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -08543698 741.29534912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfa0 -08543699 741.29541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -08543700 741.29541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfb0 -08543701 741.29541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -08543702 741.29547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfc0 -08543703 741.29547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -08543704 741.29547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfd0 -08543705 741.29553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -08543706 741.29553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dfe0 -08544937 741.31304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -08544938 741.31304932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20660 -08544939 741.31311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -08544940 741.31311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20670 -08544941 741.31311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -08544942 741.31311035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20680 -08544943 741.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -08544944 741.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20690 -08544945 741.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -08544946 741.31317139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206a0 -08544947 741.31323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -08544948 741.31323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206b0 -08544949 741.31323242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -08544950 741.31329346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206c0 -08544951 741.31329346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -08544952 741.31329346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206d0 -08544953 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -08544954 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206e0 -08544955 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -08544956 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x206f0 -08544957 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -08544958 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20700 -08544959 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -08544960 741.31335449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20710 -08544961 741.31341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -08544962 741.31341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20720 -08544963 741.31341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -08544964 741.31341553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20730 -08544965 741.31347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -08544966 741.31347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20740 -08544967 741.31347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -08544968 741.31347656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20750 -08544969 741.31353760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -08544970 741.31353760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20760 -08544971 741.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -08544972 741.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20770 -08544973 741.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -08544974 741.31359863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20780 -08544975 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -08544976 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20790 -08544977 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -08544978 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207a0 -08544979 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -08544980 741.31365967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x207b0 -08546123 741.33001709 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -08546124 741.33001709 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b70 -08546125 741.33007813 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -08546126 741.33007813 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b80 -08546127 741.33013916 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -08546128 741.33013916 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b90 -08546129 741.33013916 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -08546130 741.33013916 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ba0 -08546131 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -08546132 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bb0 -08546133 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -08546134 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bc0 -08546135 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -08546136 741.33020020 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bd0 -08546137 741.33026123 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -08546138 741.33026123 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22be0 -08546139 741.33026123 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -08546140 741.33026123 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22bf0 -08546141 741.33032227 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -08546142 741.33032227 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c00 -08546143 741.33032227 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -08546144 741.33032227 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c10 -08546145 741.33038330 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -08546146 741.33038330 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c20 -08546147 741.33038330 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -08546148 741.33038330 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c30 -08546149 741.33044434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -08546150 741.33044434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c40 -08546151 741.33044434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -08546152 741.33044434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c50 -08546153 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -08546154 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c60 -08546155 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -08546156 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c70 -08546157 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -08546158 741.33050537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c80 -08546159 741.33056641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -08546160 741.33056641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c90 -08546161 741.33056641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -08546162 741.33056641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca0 -08546163 741.33062744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -08546164 741.33062744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb0 -08546165 741.33062744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -08546166 741.33062744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc0 -08547245 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -08547246 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e80 -08547247 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -08547248 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e90 -08547249 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -08547250 741.34606934 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ea0 -08547251 741.34613037 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -08547252 741.34613037 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24eb0 -08547253 741.34613037 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -08547254 741.34613037 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ec0 -08547255 741.34619141 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -08547256 741.34619141 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ed0 -08547257 741.34619141 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -08547258 741.34619141 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ee0 -08547259 741.34625244 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -08547260 741.34625244 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ef0 -08547261 741.34625244 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -08547262 741.34631348 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f00 -08547263 741.34631348 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -08547264 741.34631348 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f10 -08547265 741.34637451 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -08547266 741.34637451 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f20 -08547267 741.34637451 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -08547268 741.34637451 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f30 -08547269 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -08547270 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f40 -08547271 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -08547272 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f50 -08547273 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -08547274 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f60 -08547275 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -08547276 741.34643555 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f70 -08547277 741.34649658 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -08547278 741.34649658 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f80 -08547279 741.34649658 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -08547280 741.34655762 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f90 -08547281 741.34655762 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -08547282 741.34655762 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fa0 -08547283 741.34661865 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -08547284 741.34661865 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fb0 -08547285 741.34661865 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -08547286 741.34661865 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fc0 -08547287 741.34667969 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -08547288 741.34667969 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x24fd0 -08547357 741.34765625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -08547358 741.34765625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25200 -08547359 741.34765625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -08547360 741.34765625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25210 -08547361 741.34771729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -08547362 741.34771729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25220 -08547363 741.34777832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -08547364 741.34777832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25230 -08547365 741.34777832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -08547366 741.34777832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25240 -08547367 741.34783936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -08547368 741.34783936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25250 -08547369 741.34783936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -08547370 741.34783936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25260 -08547371 741.34790039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -08547372 741.34790039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25270 -08547373 741.34790039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -08547374 741.34790039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25280 -08547375 741.34796143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -08547376 741.34796143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25290 -08547377 741.34796143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -08547378 741.34796143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252a0 -08547379 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -08547380 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252b0 -08547381 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -08547382 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252c0 -08547383 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -08547384 741.34802246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252d0 -08547385 741.34808350 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -08547386 741.34808350 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252e0 -08547387 741.34808350 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -08547388 741.34808350 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x252f0 -08547389 741.34814453 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -08547390 741.34814453 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25300 -08547391 741.34814453 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -08547392 741.34820557 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25310 -08547393 741.34820557 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -08547394 741.34820557 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25320 -08547395 741.34826660 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -08547396 741.34826660 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25330 -08547397 741.34826660 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -08547398 741.34826660 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25340 -08547399 741.34832764 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -08547400 741.34832764 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25350 -08547596 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25970 -08547597 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -08547598 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25980 -08547599 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -08547600 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25990 -08547601 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -08547602 741.35119629 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259a0 -08547603 741.35125732 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -08547604 741.35125732 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259b0 -08547605 741.35125732 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -08547606 741.35125732 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259c0 -08547607 741.35131836 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -08547608 741.35131836 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259d0 -08547609 741.35131836 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -08547610 741.35137939 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259e0 -08547611 741.35137939 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -08547612 741.35137939 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x259f0 -08547613 741.35144043 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -08547614 741.35144043 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a00 -08547615 741.35144043 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -08547616 741.35144043 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a10 -08547617 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -08547618 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a20 -08547619 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -08547620 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a30 -08547621 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -08547622 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a40 -08547623 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -08547624 741.35150146 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a50 -08547625 741.35156250 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -08547626 741.35156250 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a60 -08547627 741.35156250 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -08547628 741.35156250 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a70 -08547629 741.35162354 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -08547630 741.35162354 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a80 -08547631 741.35168457 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -08547632 741.35168457 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a90 -08547633 741.35168457 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -08547634 741.35168457 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25aa0 -08547635 741.35174561 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -08547636 741.35174561 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ab0 -08547637 741.35174561 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -08547638 741.35174561 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ac0 -08547639 741.35180664 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x25ad0 -08553275 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -08553276 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30af0 -08553277 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -08553278 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b00 -08553279 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -08553280 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b10 -08553281 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -08553282 741.43286133 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b20 -08553283 741.43292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -08553284 741.43292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b30 -08553285 741.43292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -08553286 741.43292236 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b40 -08553287 741.43298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -08553288 741.43298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b50 -08553289 741.43298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -08553290 741.43298340 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b60 -08553291 741.43304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -08553292 741.43304443 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b70 -08553293 741.43310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -08553294 741.43310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b80 -08553295 741.43310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -08553296 741.43310547 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b90 -08553297 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -08553298 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ba0 -08553299 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -08553300 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bb0 -08553301 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -08553302 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bc0 -08553303 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -08553304 741.43316650 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bd0 -08553305 741.43322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -08553306 741.43322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30be0 -08553307 741.43322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -08553308 741.43322754 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30bf0 -08553309 741.43328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -08553310 741.43328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c00 -08553311 741.43328857 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -08553312 741.43334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c10 -08553313 741.43334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -08553314 741.43334961 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c20 -08553315 741.43341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -08553316 741.43341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c30 -08553317 741.43341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -08553318 741.43341064 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c40 -08553473 741.43566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -08553474 741.43566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31120 -08553475 741.43566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -08553476 741.43566895 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31130 -08553477 741.43572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -08553478 741.43572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31140 -08553479 741.43572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -08553480 741.43572998 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31150 -08553481 741.43579102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -08553482 741.43579102 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31160 -08553483 741.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -08553484 741.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31170 -08553485 741.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -08553486 741.43585205 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31180 -08553487 741.43591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -08553488 741.43591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31190 -08553489 741.43591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -08553490 741.43591309 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311a0 -08553491 741.43597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -08553492 741.43597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311b0 -08553493 741.43597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -08553494 741.43597412 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311c0 -08553495 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -08553496 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311d0 -08553497 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -08553498 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311e0 -08553499 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -08553500 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x311f0 -08553501 741.43603516 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -08553502 741.43609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31200 -08553503 741.43609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -08553504 741.43609619 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31210 -08553505 741.43615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -08553506 741.43615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31220 -08553507 741.43615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -08553508 741.43615723 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31230 -08553509 741.43621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -08553510 741.43621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31240 -08553511 741.43621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -08553512 741.43621826 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31250 -08553513 741.43627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -08553514 741.43627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31260 -08553515 741.43627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -08553516 741.43627930 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x31270 -08554655 741.45281982 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -08554656 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33610 -08554657 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -08554658 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33620 -08554659 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -08554660 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33630 -08554661 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -08554662 741.45288086 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33640 -08554663 741.45294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -08554664 741.45294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33650 -08554665 741.45294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -08554666 741.45294189 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33660 -08554667 741.45300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -08554668 741.45300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33670 -08554669 741.45300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -08554670 741.45300293 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33680 -08554671 741.45306396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -08554672 741.45306396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33690 -08554673 741.45306396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -08554674 741.45306396 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a0 -08554675 741.45312500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -08554676 741.45312500 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b0 -08554677 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -08554678 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c0 -08554679 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -08554680 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d0 -08554681 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -08554682 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e0 -08554683 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -08554684 741.45318604 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f0 -08554685 741.45324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -08554686 741.45324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33700 -08554687 741.45324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -08554688 741.45324707 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33710 -08554689 741.45330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -08554690 741.45330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33720 -08554691 741.45330811 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -08554692 741.45336914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33730 -08554693 741.45336914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -08554694 741.45336914 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33740 -08554695 741.45343018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -08554696 741.45343018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33750 -08554697 741.45343018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -08554698 741.45343018 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x33760 -08555961 741.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -08555962 741.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ee0 -08555963 741.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -08555964 741.47161865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ef0 -08555965 741.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -08555966 741.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f00 -08555967 741.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -08555968 741.47167969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f10 -08555969 741.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -08555970 741.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f20 -08555971 741.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -08555972 741.47174072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f30 -08555973 741.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -08555974 741.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f40 -08555975 741.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -08555976 741.47180176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f50 -08555977 741.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -08555978 741.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f60 -08555979 741.47186279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -08555980 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f70 -08555981 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -08555982 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f80 -08555983 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -08555984 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f90 -08555985 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -08555986 741.47192383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fa0 -08555987 741.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -08555988 741.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fb0 -08555989 741.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -08555990 741.47198486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fc0 -08555991 741.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -08555992 741.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fd0 -08555993 741.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -08555994 741.47204590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35fe0 -08555995 741.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -08555996 741.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ff0 -08555997 741.47210693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -08555998 741.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36000 -08555999 741.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -08556000 741.47216797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36010 -08556001 741.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -08556002 741.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36020 -08556003 741.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -08556004 741.47222900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36030 -08557227 741.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -08557228 741.48962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38670 -08557229 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -08557230 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38680 -08557231 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -08557232 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38690 -08557233 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -08557234 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386a0 -08557235 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -08557236 741.48968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386b0 -08557237 741.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -08557238 741.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386c0 -08557239 741.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -08557240 741.48974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386d0 -08557241 741.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -08557242 741.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386e0 -08557243 741.48980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -08557244 741.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x386f0 -08557245 741.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -08557246 741.48986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38700 -08557247 741.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -08557248 741.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38710 -08557249 741.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -08557250 741.48992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38720 -08557251 741.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -08557252 741.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38730 -08557253 741.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -08557254 741.48999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38740 -08557255 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -08557256 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38750 -08557257 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -08557258 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38760 -08557259 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -08557260 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38770 -08557261 741.49005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -08557262 741.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38780 -08557263 741.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -08557264 741.49011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38790 -08557265 741.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -08557266 741.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387a0 -08557267 741.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -08557268 741.49017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387b0 -08557269 741.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -08557270 741.49023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x387c0 -08558335 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -08558336 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a910 -08558337 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -08558338 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a920 -08558339 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -08558340 741.50561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a930 -08558341 741.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -08558342 741.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a940 -08558343 741.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -08558344 741.50567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a950 -08558345 741.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -08558346 741.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a960 -08558347 741.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -08558348 741.50573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a970 -08558349 741.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -08558350 741.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a980 -08558351 741.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -08558352 741.50579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a990 -08558353 741.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -08558354 741.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9a0 -08558355 741.50585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -08558356 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9b0 -08558357 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -08558358 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9c0 -08558359 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -08558360 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9d0 -08558361 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -08558362 741.50592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9e0 -08558363 741.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -08558364 741.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a9f0 -08558365 741.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -08558366 741.50598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa00 -08558367 741.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -08558368 741.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa10 -08558369 741.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -08558370 741.50604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa20 -08558371 741.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -08558372 741.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa30 -08558373 741.50610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -08558374 741.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa40 -08558375 741.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -08558376 741.50616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa50 -08558377 741.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -08558378 741.50622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa60 -08559459 741.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -08559460 741.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc30 -08559461 741.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -08559462 741.52154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc40 -08559463 741.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -08559464 741.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc50 -08559465 741.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -08559466 741.52160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc60 -08559467 741.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -08559468 741.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc70 -08559469 741.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -08559470 741.52166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc80 -08559471 741.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -08559472 741.52172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc90 -08559473 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -08559474 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cca0 -08559475 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -08559476 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccb0 -08559477 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -08559478 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccc0 -08559479 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -08559480 741.52178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccd0 -08559481 741.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -08559482 741.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cce0 -08559483 741.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -08559484 741.52185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ccf0 -08559485 741.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -08559486 741.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd00 -08559487 741.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -08559488 741.52191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd10 -08559489 741.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -08559490 741.52197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd20 -08559491 741.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -08559492 741.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd30 -08559493 741.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -08559494 741.52203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd40 -08559495 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -08559496 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd50 -08559497 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -08559498 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd60 -08559499 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -08559500 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd70 -08559501 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -08559502 741.52209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd80 -08560643 741.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -08560644 741.53839111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f130 -08560645 741.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -08560646 741.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f140 -08560647 741.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -08560648 741.53845215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f150 -08560649 741.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -08560650 741.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f160 -08560651 741.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -08560652 741.53851318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f170 -08560653 741.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -08560654 741.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f180 -08560655 741.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -08560656 741.53857422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f190 -08560657 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -08560658 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1a0 -08560659 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -08560660 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1b0 -08560661 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -08560662 741.53863525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1c0 -08560663 741.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -08560664 741.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1d0 -08560665 741.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -08560666 741.53869629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1e0 -08560667 741.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -08560668 741.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f1f0 -08560669 741.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -08560670 741.53875732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f200 -08560671 741.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -08560672 741.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f210 -08560673 741.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -08560674 741.53881836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f220 -08560675 741.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -08560676 741.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f230 -08560677 741.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -08560678 741.53887939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f240 -08560679 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -08560680 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f250 -08560681 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -08560682 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f260 -08560683 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -08560684 741.53894043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f270 -08560685 741.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -08560686 741.53900146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f280 -08561795 741.55480957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -08561796 741.55480957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41530 -08561797 741.55480957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -08561798 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41540 -08561799 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -08561800 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41550 -08561801 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -08561802 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41560 -08561803 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -08561804 741.55487061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41570 -08561805 741.55493164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -08561806 741.55493164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41580 -08561807 741.55493164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -08561808 741.55493164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41590 -08561809 741.55499268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -08561810 741.55499268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415a0 -08561811 741.55499268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -08561812 741.55499268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415b0 -08561813 741.55505371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -08561814 741.55505371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415c0 -08561815 741.55505371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -08561816 741.55511475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415d0 -08561817 741.55511475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -08561818 741.55511475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415e0 -08561819 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -08561820 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x415f0 -08561821 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -08561822 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41600 -08561823 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -08561824 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41610 -08561825 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -08561826 741.55517578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41620 -08561827 741.55523682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -08561828 741.55523682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41630 -08561829 741.55523682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -08561830 741.55523682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41640 -08561831 741.55529785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -08561832 741.55529785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41650 -08561833 741.55529785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -08561834 741.55535889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41660 -08561835 741.55535889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -08561836 741.55535889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41670 -08561837 741.55541992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -08561838 741.55541992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41680 -08562923 741.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -08562924 741.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43870 -08562925 741.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -08562926 741.57092285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43880 -08562927 741.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -08562928 741.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43890 -08562929 741.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -08562930 741.57098389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438a0 -08562931 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -08562932 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438b0 -08562933 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -08562934 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438c0 -08562935 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -08562936 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438d0 -08562937 741.57104492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -08562938 741.57110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438e0 -08562939 741.57110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -08562940 741.57110596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x438f0 -08562941 741.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -08562942 741.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43900 -08562943 741.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -08562944 741.57116699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43910 -08562945 741.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -08562946 741.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43920 -08562947 741.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -08562948 741.57122803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43930 -08562949 741.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -08562950 741.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43940 -08562951 741.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -08562952 741.57128906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43950 -08562953 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -08562954 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43960 -08562955 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -08562956 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43970 -08562957 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -08562958 741.57135010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43980 -08562959 741.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -08562960 741.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43990 -08562961 741.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -08562962 741.57141113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439a0 -08562963 741.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -08562964 741.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439b0 -08562965 741.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -08562966 741.57147217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x439c0 -08564102 741.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d40 -08564103 741.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -08564104 741.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d50 -08564105 741.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -08564106 741.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d60 -08564107 741.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -08564108 741.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d70 -08564109 741.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -08564110 741.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d80 -08564111 741.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -08564112 741.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d90 -08564113 741.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -08564114 741.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45da0 -08564115 741.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -08564116 741.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45db0 -08564117 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -08564118 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dc0 -08564119 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -08564120 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45dd0 -08564121 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -08564122 741.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45de0 -08564123 741.58795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -08564124 741.58795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45df0 -08564125 741.58795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -08564126 741.58795166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e00 -08564127 741.58801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -08564128 741.58801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e10 -08564129 741.58801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -08564130 741.58801270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e20 -08564131 741.58807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -08564132 741.58807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e30 -08564133 741.58807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -08564134 741.58807373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e40 -08564135 741.58813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -08564136 741.58813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e50 -08564137 741.58813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -08564138 741.58813477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e60 -08564139 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -08564140 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e70 -08564141 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -08564142 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e80 -08564143 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -08564144 741.58819580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e90 -08564145 741.58825684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ea0 -08565229 741.60369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -08565230 741.60369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48080 -08565231 741.60369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -08565232 741.60369873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48090 -08565233 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -08565234 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480a0 -08565235 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -08565236 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480b0 -08565237 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -08565238 741.60375977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480c0 -08565239 741.60382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -08565240 741.60382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480d0 -08565241 741.60382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -08565242 741.60382080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480e0 -08565243 741.60388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -08565244 741.60388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x480f0 -08565245 741.60388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -08565246 741.60388184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48100 -08565247 741.60394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -08565248 741.60394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48110 -08565249 741.60394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -08565250 741.60394287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48120 -08565251 741.60400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -08565252 741.60400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48130 -08565253 741.60400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -08565254 741.60400391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48140 -08565255 741.60406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -08565256 741.60406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48150 -08565257 741.60406494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -08565258 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48160 -08565259 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -08565260 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48170 -08565261 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -08565262 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48180 -08565263 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -08565264 741.60412598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48190 -08565265 741.60418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -08565266 741.60418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481a0 -08565267 741.60418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -08565268 741.60418701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481b0 -08565269 741.60424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -08565270 741.60424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481c0 -08565271 741.60424805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -08565272 741.60430908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x481d0 -08566444 741.62091064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a670 -08566445 741.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -08566446 741.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a680 -08566447 741.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -08566448 741.62097168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a690 -08566449 741.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -08566450 741.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6a0 -08566451 741.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -08566452 741.62103271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6b0 -08566453 741.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -08566454 741.62109375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6c0 -08566455 741.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -08566456 741.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6d0 -08566457 741.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -08566458 741.62115479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6e0 -08566459 741.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -08566460 741.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a6f0 -08566461 741.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -08566462 741.62121582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a700 -08566463 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -08566464 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a710 -08566465 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -08566466 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a720 -08566467 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -08566468 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a730 -08566469 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -08566470 741.62127686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a740 -08566471 741.62133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -08566472 741.62133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a750 -08566473 741.62133789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -08566474 741.62139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a760 -08566475 741.62139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -08566476 741.62139893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a770 -08566477 741.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -08566478 741.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a780 -08566479 741.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -08566480 741.62145996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a790 -08566481 741.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -08566482 741.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7a0 -08566483 741.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -08566484 741.62152100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7b0 -08566485 741.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -08566486 741.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7c0 -08566487 741.62158203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a7d0 -08567557 741.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -08567558 741.63677979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c940 -08567559 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -08567560 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c950 -08567561 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -08567562 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c960 -08567563 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -08567564 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c970 -08567565 741.63684082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -08567566 741.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c980 -08567567 741.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -08567568 741.63690186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c990 -08567569 741.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -08567570 741.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9a0 -08567571 741.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -08567572 741.63696289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9b0 -08567573 741.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -08567574 741.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9c0 -08567575 741.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -08567576 741.63702393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9d0 -08567577 741.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -08567578 741.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9e0 -08567579 741.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -08567580 741.63708496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c9f0 -08567581 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -08567582 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca00 -08567583 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -08567584 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca10 -08567585 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -08567586 741.63714600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca20 -08567587 741.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -08567588 741.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca30 -08567589 741.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -08567590 741.63720703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca40 -08567591 741.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -08567592 741.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca50 -08567593 741.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -08567594 741.63726807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca60 -08567595 741.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -08567596 741.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca70 -08567597 741.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -08567598 741.63732910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca80 -08567599 741.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -08567600 741.63739014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca90 -08568867 741.65527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -08568868 741.65527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f230 -08568869 741.65533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -08568870 741.65533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f240 -08568871 741.65533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -08568872 741.65533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f250 -08568873 741.65539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -08568874 741.65539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f260 -08568875 741.65539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -08568876 741.65539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f270 -08568877 741.65545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -08568878 741.65545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f280 -08568879 741.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -08568880 741.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f290 -08568881 741.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -08568882 741.65551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2a0 -08568883 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -08568884 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2b0 -08568885 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -08568886 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2c0 -08568887 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -08568888 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2d0 -08568889 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -08568890 741.65557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2e0 -08568891 741.65563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -08568892 741.65563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f2f0 -08568893 741.65563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -08568894 741.65563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f300 -08568895 741.65570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -08568896 741.65570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f310 -08568897 741.65576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -08568898 741.65576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f320 -08568899 741.65576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -08568900 741.65576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f330 -08568901 741.65582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -08568902 741.65582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f340 -08568903 741.65582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -08568904 741.65582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f350 -08568905 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -08568906 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f360 -08568907 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -08568908 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f370 -08568909 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -08568910 741.65588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f380 -08569970 741.67095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514a0 -08569971 741.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -08569972 741.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514b0 -08569973 741.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -08569974 741.67102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514c0 -08569975 741.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -08569976 741.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514d0 -08569977 741.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -08569978 741.67108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514e0 -08569979 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -08569980 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x514f0 -08569981 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -08569982 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51500 -08569983 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -08569984 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51510 -08569985 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -08569986 741.67114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51520 -08569987 741.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -08569988 741.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51530 -08569989 741.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -08569990 741.67120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51540 -08569991 741.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -08569992 741.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51550 -08569993 741.67126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -08569994 741.67132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51560 -08569995 741.67132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -08569996 741.67132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51570 -08569997 741.67138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -08569998 741.67138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51580 -08569999 741.67138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -08570000 741.67138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51590 -08570001 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -08570002 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515a0 -08570003 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -08570004 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515b0 -08570005 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -08570006 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515c0 -08570007 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -08570008 741.67144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515d0 -08570009 741.67150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -08570010 741.67150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515e0 -08570011 741.67150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -08570012 741.67150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x515f0 -08570013 741.67156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51600 -08570764 742.55596924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08570765 742.57775879 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08570766 742.57775879 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08570767 743.04614258 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08570768 743.04620361 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08570769 743.04620361 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08570770 743.04626465 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08570771 743.04632568 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08570772 743.04632568 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08570773 743.04638672 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08570774 743.04644775 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08570775 744.57855225 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08570776 744.60076904 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08570777 744.60076904 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08570778 745.23461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08570779 745.23461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08570780 745.23461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08570781 745.23461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08570782 745.23468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08570783 745.23468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08570784 745.23468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08570785 745.23468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08570786 745.23474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08570787 745.23474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08570788 745.23474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08570789 745.23480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08570790 745.23480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08570791 745.23480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08570792 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08570793 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08570794 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08570795 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08570796 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08570797 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08570798 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08570799 745.23486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08570800 745.23492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08570801 745.23492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08570802 745.23492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08570803 745.23492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08570804 745.23498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08570805 745.23498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08570806 745.23498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08570807 745.23498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08570808 745.23504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08570809 745.23504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08570810 745.23504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08570811 745.23510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08570812 745.23510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08570813 745.23510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08570814 745.23516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08570815 745.23516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08570816 745.23516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08570817 745.23516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08570818 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08570819 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08570820 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08570821 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08570822 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08570823 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08570824 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08570825 745.23522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08570826 745.23529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08570827 745.23529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08570828 745.23529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08570829 745.23529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08570830 745.23535156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08570831 745.23535156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08570832 745.23541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08570833 745.23541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08570834 745.23541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08570835 745.23541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08570836 745.23547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08570837 745.23547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08570838 745.23547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08570839 745.23547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08570840 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08570841 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08570842 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08570843 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08570844 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08570845 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08570846 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08570847 745.23553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08570848 745.23559570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08570849 745.23559570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08570850 745.23565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08570851 745.23565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08570852 745.23565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08570853 745.23565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08570854 745.23571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08570855 745.23571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08570856 745.23571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08570857 745.23571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08570858 745.23577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08570859 745.23577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08570860 745.23577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08570861 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08570862 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08570863 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08570864 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08570865 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08570866 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08570867 745.23583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08570868 745.23590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08570869 745.23590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08570870 745.23590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08570871 745.23590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08570872 745.23596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08570873 745.23596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08570874 745.23596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08570875 745.23596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08570876 745.23602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08570877 745.23602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08570878 745.23602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08570879 745.23602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08570880 745.23608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08570881 745.23608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08570882 745.23608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08570883 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08570884 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08570885 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08570886 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08570887 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08570888 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08570889 745.23614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08570890 745.23620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08570891 745.23620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08570892 745.23620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08570893 745.23620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08570894 745.23626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08570895 745.23626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08570896 745.23626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08570897 745.23626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08570898 745.23632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08570899 745.23632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08570900 745.23632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08570901 745.23632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08570902 745.23638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08570903 745.23638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08570904 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08570905 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08570906 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08570907 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08570908 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08570909 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08570910 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08570911 745.23645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08570912 745.23651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08570913 745.23651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08570914 745.23651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08570915 745.23651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08570916 745.23657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08570917 745.23657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08570918 745.23663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08570919 745.23663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08570920 745.23663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08570921 745.23663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08570922 745.23669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08570923 745.23669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08570924 745.23669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08570925 745.23669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08570926 745.23675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08570927 745.23675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08570928 745.23675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08570929 745.23675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08570930 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08570931 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08570932 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08570933 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08570934 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08570935 745.23681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08570936 745.23687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08570937 745.23687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08570938 745.23687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08570939 745.23687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08570940 745.23693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08570941 745.23693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08570942 745.23693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08570943 745.23693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08570944 745.23699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08570945 745.23699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08570946 745.23699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08570947 745.23699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08570948 745.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08570949 745.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08570950 745.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08570951 745.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08570952 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08570953 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08570954 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08570955 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08570956 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08570957 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08570958 745.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08570959 745.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08570960 745.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08570961 745.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08570962 745.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08570963 745.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08570964 745.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08570965 745.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08570966 745.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08570967 745.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08570968 745.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08570969 745.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08570970 745.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08570971 745.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08570972 745.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08570973 745.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08570974 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08570975 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08570976 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08570977 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08570978 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08570979 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08570980 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08570981 745.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08570982 745.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08570983 745.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08570984 745.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08570985 745.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08570986 745.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08570987 745.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08570988 745.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08570989 745.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08570990 745.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08570991 745.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08570992 745.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08570993 745.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08570994 745.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08570995 745.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08570996 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08570997 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08570998 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08570999 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08571000 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08571001 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08571002 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08571003 745.23773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08571004 745.23779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08571005 745.23779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08571006 745.23779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08571007 745.23779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08571008 745.23785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08571009 745.23785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08571010 745.23785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08571011 745.23785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08571012 745.23791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08571013 745.23791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08571014 745.23791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08571015 745.23791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08571016 745.23797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08571017 745.23797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08571018 745.23797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08571019 745.23797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08571020 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08571021 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08571022 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08571023 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08571024 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08571025 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08571026 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08571027 745.23803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08571028 745.23809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08571029 745.23809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08571030 745.23809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08571031 745.23809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08571032 745.23815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08571033 745.23815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08571034 745.23815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08571035 745.23822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08571036 745.23822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08571037 745.23822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08571038 745.23828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08571039 745.23828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08571040 745.23828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08571041 745.23828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08571042 745.23834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08571043 745.23834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08571044 745.23834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08571045 745.23834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08571046 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08571047 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08571048 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08571049 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08571050 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08571051 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08571052 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08571053 745.23840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08571054 745.23846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08571055 745.23846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08571056 745.23846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08571057 745.23846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08571058 745.23852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08571059 745.23852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08571060 745.23852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08571061 745.23852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08571062 745.23858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08571063 745.23858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08571064 745.23864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08571065 745.23864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08571066 745.23864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08571067 745.23864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08571068 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08571069 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08571070 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08571071 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08571072 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08571073 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08571074 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08571075 745.23870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08571076 745.23876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08571077 745.23876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08571078 745.23876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08571079 745.23876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08571080 745.23883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08571081 745.23883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08571082 745.23883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08571083 745.23889160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08571084 745.23889160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08571085 745.23889160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08571086 745.23895264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08571087 745.23895264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08571088 745.23895264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08571089 745.23895264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08571090 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08571091 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08571092 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08571093 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08571094 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08571095 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08571096 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08571097 745.23901367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08571098 745.23907471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08571099 745.23907471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08571100 745.23907471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08571101 745.23913574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08571102 745.23913574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08571103 745.23913574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08571104 745.23919678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08571105 745.23919678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08571106 745.23919678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08571107 745.23919678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08571108 745.23925781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08571109 745.23925781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08571110 745.23925781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08571111 745.23925781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08571112 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08571113 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08571114 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08571115 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08571116 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08571117 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08571118 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08571119 745.23931885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08571120 745.23937988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08571121 745.23937988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08571122 745.23944092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08571123 745.23944092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08571124 745.23944092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08571125 745.23944092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08571126 745.23950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08571127 745.23950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08571128 745.23950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08571129 745.23950195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08571130 745.23956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08571131 745.23956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08571132 745.23956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08571133 745.23956299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08571134 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08571135 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08571136 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08571137 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08571138 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08571139 745.23962402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08571140 745.23968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08571141 745.23968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08571142 745.23968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08571143 745.23968506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08571144 745.23974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08571145 745.23974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08571146 745.23974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08571147 745.23974609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08571148 745.23980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08571149 745.23980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08571150 745.23980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08571151 745.23980713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08571152 745.23986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08571153 745.23986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08571154 745.23986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08571155 745.23986816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08571156 745.23992920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08571157 745.23992920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08571158 745.23992920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08571159 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08571160 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08571161 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08571162 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08571163 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08571164 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08571165 745.23999023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08571166 745.24005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08571167 745.24005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08571168 745.24005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08571169 745.24005127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08571170 745.24011230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08571171 745.24011230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08571172 745.24011230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08571173 745.24011230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08571174 745.24017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08571175 745.24017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08571176 745.24017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08571177 745.24017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08571178 745.24023438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08571179 745.24023438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08571180 745.24023438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08571181 745.24023438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08571182 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08571183 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08571184 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08571185 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08571186 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08571187 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08571188 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08571189 745.24029541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08571190 745.24035645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08571191 745.24035645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08571192 745.24035645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08571193 745.24035645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08571194 745.24041748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08571195 745.24041748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08571196 745.24041748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08571197 745.24041748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08571198 745.24047852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08571199 745.24047852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08571200 745.24047852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08571201 745.24053955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08571202 745.24053955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08571203 745.24053955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08571204 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08571205 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08571206 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08571207 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08571208 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08571209 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08571210 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08571211 745.24060059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08571212 745.24066162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08571213 745.24066162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08571214 745.24066162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08571215 745.24066162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08571216 745.24072266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08571217 745.24072266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08571218 745.24072266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08571219 745.24072266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08571220 745.24078369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08571221 745.24078369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08571222 745.24078369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08571223 745.24078369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08571224 745.24084473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08571225 745.24084473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08571226 745.24084473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08571227 745.24084473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08571228 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08571229 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08571230 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08571231 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08571232 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08571233 745.24090576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08571234 745.24096680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08571235 745.24096680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08571236 745.24096680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08571237 745.24096680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08571238 745.24102783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08571239 745.24102783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08571240 745.24102783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08571241 745.24102783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08571242 745.24108887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08571243 745.24108887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08571244 745.24108887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08571245 745.24108887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08571246 745.24114990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08571247 745.24114990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08571248 745.24114990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08571249 745.24114990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08571250 745.24121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08571251 745.24121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08571252 745.24121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08571253 745.24121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08571254 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08571255 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08571256 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08571257 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08571258 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08571259 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08571260 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08571261 745.24127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08571262 745.24133301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08571263 745.24133301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08571264 745.24133301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08571265 745.24139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08571266 745.24139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08571267 745.24139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08571268 745.24145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08571269 745.24145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08571270 745.24145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08571271 745.24145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08571272 745.24151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08571273 745.24151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08571274 745.24151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08571275 745.24151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08571276 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08571277 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08571278 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08571279 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08571280 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08571281 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08571282 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08571283 745.24157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08571284 745.24163818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08571285 745.24163818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08571286 745.24169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08571287 745.24169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08571288 745.24169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08571289 745.24169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08571290 745.24176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08571291 745.24176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08571292 745.24176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08571293 745.24176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08571294 745.24182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08571295 745.24182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08571296 745.24182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08571297 745.24182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08571298 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08571299 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08571300 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08571301 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08571302 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08571303 745.24188232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08571304 745.24194336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08571305 745.24194336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08571306 745.24194336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08571307 745.24194336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08571308 745.24200439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08571309 745.24200439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08571310 745.24200439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08571311 745.24200439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08571312 745.24206543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08571313 745.24206543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08571314 745.24206543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08571315 745.24206543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08571316 745.24212646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08571317 745.24212646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08571318 745.24212646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08571319 745.24212646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08571320 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08571321 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08571322 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08571323 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08571324 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08571325 745.24218750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08571326 745.24224854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08571327 745.24224854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08571328 745.24224854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08571329 745.24224854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08571330 745.24230957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08571331 745.24230957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08571332 745.24230957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08571333 745.24230957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08571334 745.24237061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08571335 745.24237061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08571336 745.24237061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08571337 745.24237061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08571338 745.24243164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08571339 745.24243164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08571340 745.24243164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08571341 745.24243164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08571342 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08571343 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08571344 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08571345 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08571346 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08571347 745.24249268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08571348 745.24255371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08571349 745.24255371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08571350 745.24255371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08571351 745.24261475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08571352 745.24261475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08571353 745.24261475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08571354 745.24267578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08571355 745.24267578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08571356 745.24273682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08571357 745.24273682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08571358 745.24273682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08571359 745.24273682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08571360 745.24279785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08571361 745.24279785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08571362 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08571363 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08571364 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08571365 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08571366 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08571367 745.24285889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08571368 745.24291992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08571369 745.24291992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08571370 745.24298096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08571371 745.24298096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08571372 745.24298096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08571373 745.24298096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08571374 745.24304199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08571375 745.24304199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08571376 745.24310303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08571377 745.24310303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08571378 745.24310303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08571379 745.24310303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08571380 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08571381 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08571382 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08571383 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08571384 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08571385 745.24316406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08571386 745.24322510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08571387 745.24322510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08571388 745.24328613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08571389 745.24328613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08571390 745.24328613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08571391 745.24328613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08571392 745.24334717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08571393 745.24334717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08571394 745.24340820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08571395 745.24340820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08571396 745.24340820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08571397 745.24340820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08571398 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08571399 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08571400 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08571401 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08571402 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08571403 745.24346924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08571404 745.24353027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08571405 745.24353027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08571406 745.24353027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08571407 745.24353027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08571408 745.24359131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08571409 745.24359131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08571410 745.24359131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08571411 745.24359131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08571412 745.24365234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08571413 745.24365234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08571414 745.24365234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08571415 745.24371338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08571416 745.24371338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08571417 745.24371338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08571418 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08571419 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08571420 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08571421 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08571422 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08571423 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08571424 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08571425 745.24377441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08571426 745.24383545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08571427 745.24383545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08571428 745.24383545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08571429 745.24383545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08571430 745.24389648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08571431 745.24389648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08571432 745.24389648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08571433 745.24389648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08571434 745.24395752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08571435 745.24395752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08571436 745.24395752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08571437 745.24401855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08571438 745.24401855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08571439 745.24401855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08571440 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08571441 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08571442 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08571443 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08571444 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08571445 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08571446 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08571447 745.24407959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08571448 745.24414063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08571449 745.24414063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08571450 745.24414063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08571451 745.24414063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08571452 745.24420166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08571453 745.24420166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08571454 745.24420166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08571455 745.24420166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08571456 745.24426270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08571457 745.24426270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08571458 745.24432373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08571459 745.24432373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08571460 745.24432373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08571461 745.24432373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08571462 745.24438477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08571463 745.24438477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08571464 745.24438477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08571465 745.24438477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08571466 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08571467 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08571468 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08571469 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08571470 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08571471 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08571472 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08571473 745.24444580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08571474 745.24450684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08571475 745.24450684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08571476 745.24456787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08571477 745.24456787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08571478 745.24456787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08571479 745.24456787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08571480 745.24462891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08571481 745.24462891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08571482 745.24462891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08571483 745.24462891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08571484 745.24468994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08571485 745.24468994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08571486 745.24468994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08571487 745.24468994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08571488 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08571489 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08571490 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08571491 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08571492 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08571493 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08571494 745.24475098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08571495 745.24481201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08571496 745.24481201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08571497 745.24481201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08571498 745.24487305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08571499 745.24487305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08571500 745.24487305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08571501 745.24487305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08571502 745.24493408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08571503 745.24493408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08571504 745.24493408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08571505 745.24493408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08571506 745.24499512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08571507 745.24499512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08571508 745.24499512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08571509 745.24499512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08571510 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08571511 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08571512 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08571513 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08571514 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08571515 745.24505615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08571516 745.24511719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08571517 745.24511719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08571518 745.24511719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08571519 745.24511719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08571520 745.24517822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08571521 745.24517822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08571522 745.24517822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08571523 745.24517822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08571524 745.24523926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08571525 745.24523926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08571526 745.24530029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08571527 745.24530029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08571528 745.24530029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08571529 745.24530029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08571530 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08571531 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08571532 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08571533 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08571534 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08571535 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08571536 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08571537 745.24536133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08571538 745.24542236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08571539 745.24542236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08571540 745.24542236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08571541 745.24542236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08571542 745.24548340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08571543 745.24548340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08571544 745.24548340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08571545 745.24548340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08571546 745.24554443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08571547 745.24554443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08571548 745.24554443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08571549 745.24554443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08571550 745.24560547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08571551 745.24560547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08571552 745.24560547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08571553 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08571554 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08571555 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08571556 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08571557 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08571558 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08571559 745.24566650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08571560 745.24572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08571561 745.24572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08571562 745.24572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08571563 745.24572754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08571564 745.24578857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08571565 745.24578857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08571566 745.24578857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08571567 745.24578857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08571568 745.24584961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08571569 745.24584961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08571570 745.24584961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08571571 745.24591064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08571572 745.24591064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08571573 745.24591064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08571574 745.24597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08571575 745.24597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08571576 745.24597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08571577 745.24597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08571578 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08571579 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08571580 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08571581 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08571582 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08571583 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08571584 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08571585 745.24603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08571586 745.24609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08571587 745.24609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08571588 745.24609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08571589 745.24609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08571590 745.24615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08571591 745.24615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08571592 745.24615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08571593 745.24615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08571594 745.24621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08571595 745.24621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08571596 745.24621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08571597 745.24621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08571598 745.24627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08571599 745.24627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08571600 745.24627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08571601 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08571602 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08571603 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08571604 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08571605 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08571606 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08571607 745.24633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08571608 745.24639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08571609 745.24639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08571610 745.24639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08571611 745.24639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08571612 745.24645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08571613 745.24645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08571614 745.24645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08571615 745.24645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08571616 745.24652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08571617 745.24652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08571618 745.24652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08571619 745.24652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08571620 745.24658203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08571621 745.24658203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08571622 745.24658203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08571623 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08571624 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08571625 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08571626 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08571627 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08571628 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08571629 745.24664307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08571630 745.24670410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08571631 745.24670410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08571632 745.24670410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08571633 745.24670410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08571634 745.24676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08571635 745.24676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08571636 745.24676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08571637 745.24676514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08571638 745.24682617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08571639 745.24682617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08571640 745.24682617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08571641 745.24682617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08571642 745.24688721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08571643 745.24688721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08571644 745.24688721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08571645 745.24688721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08571646 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08571647 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08571648 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08571649 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08571650 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08571651 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08571652 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08571653 745.24694824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08571654 745.24700928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08571655 745.24700928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08571656 745.24700928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08571657 745.24700928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08571658 745.24707031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08571659 745.24707031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08571660 745.24707031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08571661 745.24707031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08571662 745.24713135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08571663 745.24713135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08571664 745.24713135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08571665 745.24719238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08571666 745.24719238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08571667 745.24719238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08571668 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08571669 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08571670 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08571671 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08571672 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08571673 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08571674 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08571675 745.24725342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08571676 745.24731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08571677 745.24731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08571678 745.24731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08571679 745.24731445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08571680 745.24737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08571681 745.24737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08571682 745.24737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08571683 745.24737549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08571684 745.24743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08571685 745.24743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08571686 745.24743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08571687 745.24743652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08571688 745.24749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08571689 745.24749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08571690 745.24749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08571691 745.24749756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08571692 745.24755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08571693 745.24755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08571694 745.24755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08571695 745.24755859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08571696 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08571697 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08571698 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08571699 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08571700 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08571701 745.24761963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08571702 745.24768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08571703 745.24768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08571704 745.24768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08571705 745.24768066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08571706 745.24774170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08571707 745.24774170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08571708 745.24774170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08571709 745.24774170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08571710 745.24780273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08571711 745.24780273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08571712 745.24780273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08571713 745.24780273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08571714 745.24786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08571715 745.24786377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08571716 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08571717 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08571718 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08571719 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08571720 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08571721 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08571722 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08571723 745.24792480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08571724 745.24798584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08571725 745.24798584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08571726 745.24798584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08571727 745.24798584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08571728 745.24804688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08571729 745.24804688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08571730 745.24804688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08571731 745.24804688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08571732 745.24810791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08571733 745.24810791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08571734 745.24810791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08571735 745.24810791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08571736 745.24816895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08571737 745.24816895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08571738 745.24816895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08571739 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08571740 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08571741 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08571742 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08571743 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08571744 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08571745 745.24822998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08571746 745.24829102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08571747 745.24829102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08571748 745.24829102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08571749 745.24829102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08571750 745.24835205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08571751 745.24835205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08571752 745.24835205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08571753 745.24835205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08571754 745.24841309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08571755 745.24841309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08571756 745.24841309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08571757 745.24841309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08571758 745.24847412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08571759 745.24847412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08571760 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08571761 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08571762 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08571763 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08571764 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08571765 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08571766 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08571767 745.24853516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08571768 745.24859619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08571769 745.24859619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08571770 745.24859619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08571771 745.24859619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08571772 745.24865723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08571773 745.24865723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08571774 745.24865723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08571775 745.24865723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08571776 745.24871826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08571777 745.24871826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08571778 745.24871826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08571779 745.24877930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08571780 745.24877930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08571781 745.24877930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08571782 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08571783 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08571784 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08571785 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08571786 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08571787 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08571788 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08571789 745.24884033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08571790 745.24890137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08571791 745.24890137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08571792 745.24890137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08571793 745.24890137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08571794 745.24896240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08571795 745.24896240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08571796 745.24896240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08571797 745.24896240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08571798 745.24902344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08571799 745.24902344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08571800 745.24908447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08571801 745.24908447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08571802 745.24908447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08571803 745.24908447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08571804 745.24914551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08571805 745.24914551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08571806 745.24914551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08571807 745.24914551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08571808 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08571809 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08571810 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08571811 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08571812 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08571813 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08571814 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08571815 745.24920654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08571816 745.24926758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08571817 745.24926758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08571818 745.24926758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08571819 745.24932861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08571820 745.24932861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08571821 745.24932861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08571822 745.24938965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08571823 745.24938965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08571824 745.24938965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08571825 745.24938965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08571826 745.24945068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08571827 745.24945068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08571828 745.24945068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08571829 745.24945068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08571830 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08571831 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08571832 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08571833 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08571834 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08571835 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08571836 745.24951172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08571837 745.24957275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08571838 745.24957275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08571839 745.24957275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08571840 745.24963379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08571841 745.24963379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08571842 745.24963379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08571843 745.24963379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08571844 745.24969482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08571845 745.24969482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08571846 745.24969482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08571847 745.24969482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08571848 745.24975586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08571849 745.24975586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08571850 745.24975586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08571851 745.24975586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08571852 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08571853 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08571854 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08571855 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08571856 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08571857 745.24981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08571858 745.24987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08571859 745.24987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08571860 745.24987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08571861 745.24987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08571862 745.24993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08571863 745.24993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08571864 745.24993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08571865 745.24993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08571866 745.25000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08571867 745.25000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08571868 745.25000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08571869 745.25000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08571870 745.25006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08571871 745.25006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08571872 745.25006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08571873 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08571874 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08571875 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08571876 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08571877 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08571878 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08571879 745.25012207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08571880 745.25018311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08571881 745.25018311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08571882 745.25018311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08571883 745.25018311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08571884 745.25024414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08571885 745.25024414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08571886 745.25024414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08571887 745.25024414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08571888 745.25030518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08571889 745.25030518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08571890 745.25030518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08571891 745.25030518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08571892 745.25036621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08571893 745.25036621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08571894 745.25036621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08571895 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08571896 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08571897 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08571898 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08571899 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08571900 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08571901 745.25042725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08571902 745.25048828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08571903 745.25048828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08571904 745.25048828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08571905 745.25048828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08571906 745.25054932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08571907 745.25054932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08571908 745.25054932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08571909 745.25054932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08571910 745.25061035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08571911 745.25061035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08571912 745.25061035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08571913 745.25061035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08571914 745.25067139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08571915 745.25067139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08571916 745.25073242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08571917 745.25073242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08571918 745.25073242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08571919 745.25073242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08571920 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08571921 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08571922 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08571923 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08571924 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08571925 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08571926 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08571927 745.25079346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08571928 745.25085449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08571929 745.25085449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08571930 745.25085449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08571931 745.25085449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08571932 745.25091553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08571933 745.25091553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08571934 745.25097656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08571935 745.25097656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08571936 745.25097656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08571937 745.25097656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08571938 745.25103760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08571939 745.25103760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08571940 745.25103760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08571941 745.25103760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08571942 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08571943 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08571944 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08571945 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08571946 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08571947 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08571948 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08571949 745.25109863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08571950 745.25115967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08571951 745.25115967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08571952 745.25115967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08571953 745.25122070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08571954 745.25122070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08571955 745.25122070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08571956 745.25128174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08571957 745.25128174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08571958 745.25128174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08571959 745.25128174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08571960 745.25134277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08571961 745.25134277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08571962 745.25134277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08571963 745.25134277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08571964 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08571965 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08571966 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08571967 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08571968 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08571969 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08571970 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08571971 745.25140381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08571972 745.25146484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08571973 745.25146484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08571974 745.25146484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08571975 745.25146484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08571976 745.25152588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08571977 745.25152588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08571978 745.25152588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08571979 745.25158691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08571980 745.25158691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08571981 745.25158691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08571982 745.25164795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08571983 745.25164795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08571984 745.25164795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08571985 745.25164795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08571986 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08571987 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08571988 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08571989 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08571990 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08571991 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08571992 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08571993 745.25170898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08571994 745.25177002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08571995 745.25177002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08571996 745.25177002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08571997 745.25177002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08571998 745.25183105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08571999 745.25183105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08572000 745.25183105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08572001 745.25183105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08572002 745.25189209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08572003 745.25189209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08572004 745.25189209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08572005 745.25195313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08572006 745.25195313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08572007 745.25195313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08572008 745.25201416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08572009 745.25201416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08572010 745.25201416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08572011 745.25201416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08572012 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08572013 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08572014 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08572015 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08572016 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08572017 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08572018 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08572019 745.25207520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08572020 745.25213623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08572021 745.25213623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08572022 745.25213623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08572023 745.25213623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08572024 745.25219727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08572025 745.25219727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08572026 745.25219727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08572027 745.25219727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08572028 745.25225830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08572029 745.25225830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08572030 745.25225830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08572031 745.25225830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08572032 745.25231934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08572033 745.25231934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08572034 745.25231934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08572035 745.25231934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08572036 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08572037 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08572038 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08572039 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08572040 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08572041 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08572042 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08572043 745.25238037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08572044 745.25244141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08572045 745.25244141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08572046 745.25244141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08572047 745.25244141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08572048 745.25250244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08572049 745.25250244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08572050 745.25256348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08572051 745.25256348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08572052 745.25256348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08572053 745.25256348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08572054 745.25262451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08572055 745.25262451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08572056 745.25262451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08572057 745.25262451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08572058 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08572059 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08572060 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08572061 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08572062 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08572063 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08572064 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08572065 745.25268555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08572066 745.25274658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08572067 745.25274658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08572068 745.25274658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08572069 745.25280762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08572070 745.25280762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08572071 745.25280762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08572072 745.25286865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08572073 745.25286865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08572074 745.25286865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08572075 745.25286865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08572076 745.25292969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08572077 745.25292969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08572078 745.25292969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08572079 745.25292969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08572080 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08572081 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08572082 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08572083 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08572084 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08572085 745.25299072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08572086 745.25305176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08572087 745.25305176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08572088 745.25305176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08572089 745.25305176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08572090 745.25311279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08572091 745.25311279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08572092 745.25311279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08572093 745.25311279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08572094 745.25317383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08572095 745.25317383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08572096 745.25317383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08572097 745.25323486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08572098 745.25323486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08572099 745.25323486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08572100 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08572101 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08572102 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08572103 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08572104 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08572105 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08572106 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08572107 745.25329590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08572108 745.25335693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08572109 745.25335693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08572110 745.25335693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08572111 745.25335693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08572112 745.25341797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08572113 745.25341797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08572114 745.25341797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08572115 745.25347900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08572116 745.25347900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08572117 745.25347900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08572118 745.25354004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08572119 745.25354004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08572120 745.25354004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08572121 745.25354004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08572122 745.25360107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08572123 745.25360107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08572124 745.25360107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08572125 745.25360107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08572126 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08572127 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08572128 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08572129 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08572130 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08572131 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08572132 745.25366211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08572133 745.25372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08572134 745.25372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08572135 745.25372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08572136 745.25378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08572137 745.25378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08572138 745.25378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08572139 745.25378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08572140 745.25384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08572141 745.25384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08572142 745.25384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08572143 745.25384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08572144 745.25390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08572145 745.25390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08572146 745.25390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08572147 745.25390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08572148 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08572149 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08572150 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08572151 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08572152 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08572153 745.25396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08572154 745.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08572155 745.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08572156 745.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08572157 745.25402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08572158 745.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08572159 745.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08572160 745.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08572161 745.25408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08572162 745.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08572163 745.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08572164 745.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08572165 745.25415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08572166 745.25421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08572167 745.25421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08572168 745.25421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08572169 745.25421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08572170 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08572171 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08572172 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08572173 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08572174 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08572175 745.25427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08572176 745.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08572177 745.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08572178 745.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08572179 745.25433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08572180 745.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08572181 745.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08572182 745.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08572183 745.25439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08572184 745.25445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08572185 745.25445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08572186 745.25445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08572187 745.25445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08572188 745.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08572189 745.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08572190 745.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08572191 745.25451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08572192 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08572193 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08572194 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08572195 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08572196 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08572197 745.25457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08572198 745.25463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08572199 745.25463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08572200 745.25463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08572201 745.25463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08572202 745.25469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08572203 745.25469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08572204 745.25469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08572205 745.25469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08572206 745.25476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08572207 745.25476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08572208 745.25476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08572209 745.25476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08572210 745.25482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08572211 745.25482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08572212 745.25482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08572213 745.25482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08572214 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08572215 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08572216 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08572217 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08572218 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08572219 745.25488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08572220 745.25494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08572221 745.25494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08572222 745.25494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08572223 745.25494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08572224 745.25500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08572225 745.25500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08572226 745.25500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08572227 745.25500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08572228 745.25506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08572229 745.25506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08572230 745.25506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08572231 745.25506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08572232 745.25512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08572233 745.25512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08572234 745.25512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08572235 745.25512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08572236 745.25518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08572237 745.25518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08572238 745.25518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08572239 745.25518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08572240 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08572241 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08572242 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08572243 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08572244 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08572245 745.25524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08572246 745.25531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08572247 745.25531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08572248 745.25531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08572249 745.25531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08572250 745.25537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08572251 745.25537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08572252 745.25537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08572253 745.25537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08572254 745.25543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08572255 745.25543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08572256 745.25543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08572257 745.25543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08572258 745.25549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08572259 745.25549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08572260 745.25549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08572261 745.25549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08572262 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08572263 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08572264 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08572265 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08572266 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08572267 745.25555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08572268 745.25561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08572269 745.25561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08572270 745.25561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08572271 745.25561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08572272 745.25567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08572273 745.25567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08572274 745.25567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08572275 745.25567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08572276 745.25573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08572277 745.25573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08572278 745.25573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08572279 745.25573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08572280 745.25579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08572281 745.25579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08572282 745.25579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08572283 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08572284 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08572285 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08572286 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08572287 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08572288 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08572289 745.25585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08572290 745.25592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08572291 745.25592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08572292 745.25592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08572293 745.25592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08572294 745.25598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08572295 745.25598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08572296 745.25598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08572297 745.25598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08572298 745.25604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08572299 745.25604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08572300 745.25604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08572301 745.25604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08572302 745.25610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08572303 745.25610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08572304 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08572305 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08572306 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08572307 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08572308 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08572309 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08572310 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08572311 745.25616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08572312 745.25622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08572313 745.25622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08572314 745.25622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08572315 745.25622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08572316 745.25628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08572317 745.25628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08572318 745.25628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08572319 745.25628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08572320 745.25634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08572321 745.25634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08572322 745.25634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08572323 745.25634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08572324 745.25640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08572325 745.25640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08572326 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08572327 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08572328 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08572329 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08572330 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08572331 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08572332 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08572333 745.25646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08572334 745.25653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08572335 745.25653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08572336 745.25653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08572337 745.25653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08572338 745.25659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08572339 745.25659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08572340 745.25659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08572341 745.25659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08572342 745.25665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08572343 745.25665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08572344 745.25671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08572345 745.25671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08572346 745.25671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08572347 745.25671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08572348 745.25677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08572349 745.25677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08572350 745.25677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08572351 745.25677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08572352 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08572353 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08572354 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08572355 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08572356 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08572357 745.25683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08572358 745.25689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08572359 745.25689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08572360 745.25689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08572361 745.25689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08572362 745.25695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08572363 745.25695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08572364 745.25695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08572365 745.25695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08572366 745.25701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08572367 745.25701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08572368 745.25701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08572369 745.25701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08572370 745.25708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08572371 745.25708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08572372 745.25708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08572373 745.25708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08572374 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08572375 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08572376 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08572377 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08572378 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08572379 745.25714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08572380 745.25720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08572381 745.25720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08572382 745.25720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08572383 745.25720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08572384 745.25726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08572385 745.25726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08572386 745.25726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08572387 745.25726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08572388 745.25732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08572389 745.25732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08572390 745.25732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08572391 745.25732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08572392 745.25738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08572393 745.25738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08572394 745.25738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08572395 745.25738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08572396 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08572397 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08572398 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08572399 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08572400 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08572401 745.25744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08572402 745.25750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08572403 745.25750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08572404 745.25750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08572405 745.25750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08572406 745.25756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08572407 745.25756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08572408 745.25756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08572409 745.25756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08572410 745.25762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08572411 745.25762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08572412 745.25762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08572413 745.25762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08572414 745.25769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08572415 745.25769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08572416 745.25769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08572417 745.25769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08572418 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08572419 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08572420 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08572421 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08572422 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08572423 745.25775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08572424 745.25781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08572425 745.25781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08572426 745.25781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08572427 745.25781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08572428 745.25787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08572429 745.25787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08572430 745.25787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08572431 745.25787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08572432 745.25793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08572433 745.25793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08572434 745.25793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08572435 745.25793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08572436 745.25799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08572437 745.25799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08572438 745.25799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08572439 745.25799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08572440 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08572441 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08572442 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08572443 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08572444 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08572445 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08572446 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08572447 745.25805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08572448 745.25811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08572449 745.25811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08572450 745.25811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08572451 745.25817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08572452 745.25817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08572453 745.25817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08572454 745.25823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08572455 745.25823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08572456 745.25823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08572457 745.25823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08572458 745.25830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08572459 745.25830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08572460 745.25830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08572461 745.25830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08572462 745.25836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08572463 745.25836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08572464 745.25836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08572465 745.25836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08572466 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08572467 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08572468 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08572469 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08572470 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08572471 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08572472 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08572473 745.25842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08572474 745.25848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08572475 745.25848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08572476 745.25854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08572477 745.25854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08572478 745.25854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08572479 745.25854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08572480 745.25860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08572481 745.25860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08572482 745.25860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08572483 745.25860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08572484 745.25866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08572485 745.25866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08572486 745.25866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08572487 745.25866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08572488 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08572489 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08572490 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08572491 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08572492 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08572493 745.25872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08572494 745.25878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08572495 745.25878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08572496 745.25878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08572497 745.25878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08572498 745.25885010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08572499 745.25885010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08572500 745.25885010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08572501 745.25885010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08572502 745.25891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08572503 745.25891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08572504 745.25891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08572505 745.25891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08572506 745.25897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08572507 745.25897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08572508 745.25897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08572509 745.25897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08572510 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08572511 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08572512 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08572513 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08572514 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08572515 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08572516 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08572517 745.25903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08572518 745.25909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08572519 745.25909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08572520 745.25909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08572521 745.25915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08572522 745.25915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08572523 745.25915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08572524 745.25921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08572525 745.25921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08572526 745.25921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08572527 745.25921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08572528 745.25927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08572529 745.25927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08572530 745.25927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08572531 745.25927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08572532 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08572533 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08572534 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08572535 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08572536 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08572537 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08572538 745.25933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08572539 745.25939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08572540 745.25939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08572541 745.25939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08572542 745.25946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08572543 745.25946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08572544 745.25946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08572545 745.25946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08572546 745.25952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08572547 745.25952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08572548 745.25952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08572549 745.25952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08572550 745.25958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08572551 745.25958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08572552 745.25958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08572553 745.25958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08572554 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08572555 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08572556 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08572557 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08572558 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08572559 745.25964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08572560 745.25970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08572561 745.25970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08572562 745.25970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08572563 745.25970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08572564 745.25976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08572565 745.25976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08572566 745.25976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08572567 745.25976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08572568 745.25982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08572569 745.25982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08572570 745.25982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08572571 745.25982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08572572 745.25988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08572573 745.25988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08572574 745.25988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08572575 745.25988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08572576 745.25994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08572577 745.25994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08572578 745.25994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08572579 745.25994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08572580 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08572581 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08572582 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08572583 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08572584 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08572585 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08572586 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08572587 745.26000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08572588 745.26007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08572589 745.26007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08572590 745.26007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08572591 745.26007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08572592 745.26013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08572593 745.26013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08572594 745.26013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08572595 745.26013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08572596 745.26019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08572597 745.26019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08572598 745.26019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08572599 745.26019287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08572600 745.26025391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08572601 745.26025391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08572602 745.26025391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08572603 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08572604 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08572605 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08572606 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08572607 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08572608 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08572609 745.26031494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08572610 745.26037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08572611 745.26037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08572612 745.26037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08572613 745.26037598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08572614 745.26043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08572615 745.26043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08572616 745.26043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08572617 745.26043701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08572618 745.26049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08572619 745.26049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08572620 745.26049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08572621 745.26049805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08572622 745.26055908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08572623 745.26055908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08572624 745.26055908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08572625 745.26055908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08572626 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08572627 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08572628 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08572629 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08572630 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08572631 745.26062012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08572632 745.26068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08572633 745.26068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08572634 745.26068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08572635 745.26068115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08572636 745.26074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08572637 745.26074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08572638 745.26074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08572639 745.26074219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08572640 745.26080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08572641 745.26080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08572642 745.26080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08572643 745.26080322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08572644 745.26086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08572645 745.26086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08572646 745.26086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08572647 745.26086426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08572648 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08572649 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08572650 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08572651 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08572652 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08572653 745.26092529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08572654 745.26098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08572655 745.26098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08572656 745.26098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08572657 745.26098633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08572658 745.26104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08572659 745.26104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08572660 745.26104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08572661 745.26104736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08572662 745.26110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08572663 745.26110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08572664 745.26110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08572665 745.26110840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08572666 745.26116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08572667 745.26116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08572668 745.26116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08572669 745.26116943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08572670 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08572671 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08572672 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08572673 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08572674 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08572675 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08572676 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08572677 745.26123047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08572678 745.26129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08572679 745.26129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08572680 745.26129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08572681 745.26129150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08572682 745.26135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08572683 745.26135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08572684 745.26135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08572685 745.26135254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08572686 745.26141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08572687 745.26141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08572688 745.26141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08572689 745.26141357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08572690 745.26147461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08572691 745.26147461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08572692 745.26153564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08572693 745.26153564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08572694 745.26153564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08572695 745.26153564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08572696 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08572697 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08572698 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08572699 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08572700 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08572701 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08572702 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08572703 745.26159668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08572704 745.26165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08572705 745.26165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08572706 745.26165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08572707 745.26165771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08572708 745.26171875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08572709 745.26171875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08572710 745.26177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08572711 745.26177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08572712 745.26177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08572713 745.26177979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08572714 745.26184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08572715 745.26184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08572716 745.26184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08572717 745.26184082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08572718 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08572719 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08572720 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08572721 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08572722 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08572723 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08572724 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08572725 745.26190186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08572726 745.26196289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08572727 745.26196289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08572728 745.26196289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08572729 745.26202393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08572730 745.26202393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08572731 745.26202393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08572732 745.26208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08572733 745.26208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08572734 745.26208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08572735 745.26208496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08572736 745.26214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08572737 745.26214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08572738 745.26214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08572739 745.26214600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08572740 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08572741 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08572742 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08572743 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08572744 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08572745 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08572746 745.26220703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08572747 745.26226807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08572748 745.26226807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08572749 745.26226807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08572750 745.26232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08572751 745.26232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08572752 745.26232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08572753 745.26232910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08572754 745.26239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08572755 745.26239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08572756 745.26239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08572757 745.26239014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08572758 745.26245117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08572759 745.26245117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08572760 745.26245117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08572761 745.26245117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08572762 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08572763 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08572764 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08572765 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08572766 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08572767 745.26251221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08572768 745.26257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08572769 745.26257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08572770 745.26257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08572771 745.26257324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08572772 745.26263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08572773 745.26263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08572774 745.26263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08572775 745.26263428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08572776 745.26269531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08572777 745.26269531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08572778 745.26269531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08572779 745.26269531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08572780 745.26275635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08572781 745.26275635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08572782 745.26275635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08572783 745.26281738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08572784 745.26281738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08572785 745.26281738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08572786 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08572787 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08572788 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08572789 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08572790 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08572791 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08572792 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08572793 745.26287842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08572794 745.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08572795 745.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08572796 745.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08572797 745.26293945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08572798 745.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08572799 745.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08572800 745.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08572801 745.26300049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08572802 745.26306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08572803 745.26306152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08572804 745.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08572805 745.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08572806 745.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08572807 745.26312256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08572808 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08572809 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08572810 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08572811 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08572812 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08572813 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08572814 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08572815 745.26318359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08572816 745.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08572817 745.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08572818 745.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08572819 745.26324463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08572820 745.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08572821 745.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08572822 745.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08572823 745.26330566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08572824 745.26336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08572825 745.26336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08572826 745.26336670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08572827 745.26342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08572828 745.26342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08572829 745.26342773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08572830 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08572831 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08572832 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08572833 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08572834 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08572835 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08572836 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08572837 745.26348877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08572838 745.26354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08572839 745.26354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08572840 745.26354980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08572841 745.26361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08572842 745.26361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08572843 745.26361084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08572844 745.26367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08572845 745.26367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08572846 745.26367188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08572847 745.26373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08572848 745.26373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08572849 745.26373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08572850 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08572851 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08572852 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08572853 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08572854 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08572855 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08572856 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08572857 745.26379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08572858 745.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08572859 745.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08572860 745.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08572861 745.26385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08572862 745.26391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08572863 745.26391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08572864 745.26397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08572865 745.26397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08572866 745.26397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08572867 745.26397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08572868 745.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08572869 745.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08572870 745.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08572871 745.26403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08572872 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08572873 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08572874 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08572875 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08572876 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08572877 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08572878 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08572879 745.26409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08572880 745.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08572881 745.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08572882 745.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08572883 745.26416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08572884 745.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08572885 745.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08572886 745.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08572887 745.26422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08572888 745.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08572889 745.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08572890 745.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08572891 745.26428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08572892 745.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08572893 745.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08572894 745.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08572895 745.26434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08572896 745.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08572897 745.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08572898 745.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08572899 745.26440430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08572900 745.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08572901 745.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08572902 745.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08572903 745.26446533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08572904 745.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08572905 745.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08572906 745.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08572907 745.26452637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08572908 745.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08572909 745.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08572910 745.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08572911 745.26458740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08572912 745.26464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08572913 745.26464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08572914 745.26464844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08572915 745.26470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08572916 745.26470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08572917 745.26470947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08572918 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08572919 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08572920 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08572921 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08572922 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08572923 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08572924 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08572925 745.26477051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08572926 745.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08572927 745.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08572928 745.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08572929 745.26483154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08572930 745.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08572931 745.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08572932 745.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08572933 745.26489258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08572934 745.26495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08572935 745.26495361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08572936 745.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08572937 745.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08572938 745.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08572939 745.26501465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08572940 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08572941 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08572942 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08572943 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08572944 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08572945 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08572946 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08572947 745.26507568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08572948 745.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08572949 745.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08572950 745.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08572951 745.26513672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08572952 745.26519775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08572953 745.26519775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08572954 745.26519775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08572955 745.26525879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08572956 745.26525879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08572957 745.26525879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08572958 745.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08572959 745.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08572960 745.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08572961 745.26531982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08572962 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08572963 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08572964 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08572965 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08572966 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08572967 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08572968 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08572969 745.26538086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08572970 745.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08572971 745.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08572972 745.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08572973 745.26544189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08572974 745.26550293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08572975 745.26550293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08572976 745.26550293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08572977 745.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08572978 745.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08572979 745.26556396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08572980 745.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08572981 745.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08572982 745.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08572983 745.26562500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08572984 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08572985 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08572986 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08572987 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08572988 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08572989 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08572990 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08572991 745.26568604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08572992 745.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08572993 745.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08572994 745.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08572995 745.26574707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08572996 745.26580811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08572997 745.26580811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08572998 745.26580811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08572999 745.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08573000 745.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08573001 745.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08573002 745.26586914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08573003 745.26593018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08573004 745.26593018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08573005 745.26593018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08573006 745.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08573007 745.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08573008 745.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08573009 745.26599121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08573010 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08573011 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08573012 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08573013 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08573014 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08573015 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08573016 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08573017 745.26605225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08573018 745.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08573019 745.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08573020 745.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08573021 745.26611328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08573022 745.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08573023 745.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08573024 745.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08573025 745.26617432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08573026 745.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08573027 745.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08573028 745.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08573029 745.26623535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08573030 745.26629639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08573031 745.26629639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08573032 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08573033 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08573034 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08573035 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08573036 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08573037 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08573038 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08573039 745.26635742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08573040 745.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08573041 745.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08573042 745.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08573043 745.26641846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08573044 745.26647949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08573045 745.26647949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08573046 745.26647949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08573047 745.26647949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08573048 745.26654053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08573049 745.26654053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08573050 745.26654053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08573051 745.26660156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08573052 745.26660156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08573053 745.26660156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08573054 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08573055 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08573056 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08573057 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08573058 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08573059 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08573060 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08573061 745.26666260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08573062 745.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08573063 745.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08573064 745.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08573065 745.26672363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08573066 745.26678467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08573067 745.26678467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08573068 745.26678467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08573069 745.26678467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08573070 745.26684570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08573071 745.26684570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08573072 745.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08573073 745.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08573074 745.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08573075 745.26690674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08573076 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08573077 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08573078 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08573079 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08573080 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08573081 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08573082 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08573083 745.26696777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08573084 745.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08573085 745.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08573086 745.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08573087 745.26702881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08573088 745.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08573089 745.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08573090 745.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08573091 745.26708984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08573092 745.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08573093 745.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08573094 745.26715088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08573095 745.26721191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08573096 745.26721191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08573097 745.26721191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08573098 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08573099 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08573100 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08573101 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08573102 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08573103 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08573104 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08573105 745.26727295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08573106 745.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08573107 745.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08573108 745.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08573109 745.26733398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08573110 745.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08573111 745.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08573112 745.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08573113 745.26739502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08573114 745.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08573115 745.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08573116 745.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08573117 745.26745605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08573118 745.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08573119 745.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08573120 745.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08573121 745.26751709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08573122 745.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08573123 745.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08573124 745.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08573125 745.26757813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08573126 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08573127 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08573128 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08573129 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08573130 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08573131 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08573132 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08573133 745.26763916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08573134 745.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08573135 745.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08573136 745.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08573137 745.26770020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08573138 745.26776123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08573139 745.26776123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08573140 745.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08573141 745.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08573142 745.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08573143 745.26782227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08573144 745.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08573145 745.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08573146 745.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08573147 745.26788330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08573148 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08573149 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08573150 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08573151 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08573152 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08573153 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08573154 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08573155 745.26794434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08573156 745.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08573157 745.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08573158 745.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08573159 745.26800537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08573160 745.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08573161 745.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08573162 745.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08573163 745.26806641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08573164 745.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08573165 745.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08573166 745.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08573167 745.26812744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08573168 745.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08573169 745.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08573170 745.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08573171 745.26818848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08573172 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08573173 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08573174 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08573175 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08573176 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08573177 745.26824951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08573178 745.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08573179 745.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08573180 745.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08573181 745.26831055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08573182 745.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08573183 745.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08573184 745.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08573185 745.26837158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08573186 745.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08573187 745.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08573188 745.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08573189 745.26843262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08573190 745.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08573191 745.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08573192 745.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08573193 745.26849365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08573194 745.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08573195 745.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08573196 745.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08573197 745.26855469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08584814 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -08584815 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -08584816 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -08584817 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -08584818 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -08584819 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -08584820 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -08584821 745.43090820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -08584822 745.43096924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -08584823 745.43096924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -08584824 745.43096924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -08584825 745.43096924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -08584826 745.43103027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -08584827 745.43103027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -08584828 745.43109131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -08584829 745.43109131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -08584830 745.43109131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -08584831 745.43109131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -08584832 745.43115234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -08584833 745.43115234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -08584834 745.43115234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -08584835 745.43115234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -08584836 745.43121338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -08584837 745.43121338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -08584838 745.43121338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -08584839 745.43121338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -08584840 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -08584841 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -08584842 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -08584843 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -08584844 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -08584845 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -08584846 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -08584847 745.43127441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -08584848 745.43133545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -08584849 745.43133545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -08584850 745.43139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -08584851 745.43139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -08584852 745.43139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -08584853 745.43139648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -08584854 745.43145752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -08584855 745.43145752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c828 -08584856 745.43145752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -08584857 745.43145752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c838 -08592274 745.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b008 -08592275 745.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b008 -08592276 745.53546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b018 -08592277 745.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b018 -08592278 745.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b028 -08592279 745.53552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b028 -08592280 745.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b038 -08592281 745.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b038 -08592282 745.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b048 -08592283 745.53558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b048 -08592284 745.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b058 -08592285 745.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b058 -08592286 745.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b068 -08592287 745.53564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b068 -08592288 745.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b078 -08592289 745.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b078 -08592290 745.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b088 -08592291 745.53570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b088 -08592292 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b098 -08592293 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b098 -08592294 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a8 -08592295 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0a8 -08592296 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b8 -08592297 745.53576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0b8 -08592298 745.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c8 -08592299 745.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0c8 -08592300 745.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d8 -08592301 745.53582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0d8 -08592302 745.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e8 -08592303 745.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0e8 -08592304 745.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f8 -08592305 745.53588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b0f8 -08592306 745.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -08592307 745.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b108 -08592308 745.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -08592309 745.53594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b118 -08592310 745.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -08592311 745.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b128 -08592312 745.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -08592313 745.53601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b138 -08592314 745.53607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -08592315 745.53607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b148 -08592316 745.53607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -08592317 745.53613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b158 -08599232 745.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38938 -08599233 745.63281250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38938 -08599234 745.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38948 -08599235 745.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38948 -08599236 745.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38958 -08599237 745.63287354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38958 -08599238 745.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38968 -08599239 745.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38968 -08599240 745.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38978 -08599241 745.63293457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38978 -08599242 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38988 -08599243 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38988 -08599244 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38998 -08599245 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38998 -08599246 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a8 -08599247 745.63299561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a8 -08599248 745.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b8 -08599249 745.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b8 -08599250 745.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c8 -08599251 745.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c8 -08599252 745.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d8 -08599253 745.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d8 -08599254 745.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e8 -08599255 745.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e8 -08599256 745.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f8 -08599257 745.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f8 -08599258 745.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a08 -08599259 745.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a08 -08599260 745.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a18 -08599261 745.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a18 -08599262 745.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a28 -08599263 745.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a28 -08599264 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a38 -08599265 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a38 -08599266 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a48 -08599267 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a48 -08599268 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a58 -08599269 745.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a58 -08599270 745.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a68 -08599271 745.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a68 -08599272 745.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a78 -08599273 745.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a78 -08599274 745.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a88 -08599275 745.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a88 -08612672 746.60308838 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08612673 746.62475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612674 746.62475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612675 748.06011963 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612676 748.06024170 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612677 748.06024170 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612678 748.06024170 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08612679 748.06048584 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612680 748.06048584 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08612681 748.06054688 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612682 748.06054688 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08612683 748.62670898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08612684 748.64801025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612685 748.64801025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612686 750.56622314 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612687 750.56628418 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612688 750.56628418 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612689 750.56634521 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08612690 750.56646729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612691 750.56646729 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08612692 750.56652832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08612693 750.56652832 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08612694 750.65026855 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08612695 750.67279053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612696 750.67279053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08612697 750.82220459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08612698 750.82226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08612699 750.82226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08612700 750.82226563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08612701 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08612702 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08612703 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08612704 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08612705 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08612706 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08612707 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08612708 750.82232666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08612709 750.82238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08612710 750.82238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08612711 750.82238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08612712 750.82238770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08612713 750.82244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08612714 750.82244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08612715 750.82244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08612716 750.82244873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08612717 750.82250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08612718 750.82250977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08612719 750.82257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08612720 750.82257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08612721 750.82257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08612722 750.82257080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08612723 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08612724 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08612725 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08612726 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08612727 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08612728 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08612729 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08612730 750.82263184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08612731 750.82269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08612732 750.82269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08612733 750.82269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08612734 750.82269287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08612735 750.82275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08612736 750.82275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08612737 750.82275391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08612738 750.82281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08612739 750.82281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08612740 750.82281494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08612741 750.82287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08612742 750.82287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08612743 750.82287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08612744 750.82287598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08612745 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08612746 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08612747 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08612748 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08612749 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08612750 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08612751 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08612752 750.82293701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08612753 750.82299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08612754 750.82299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08612755 750.82299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08612756 750.82299805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08612757 750.82305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08612758 750.82305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08612759 750.82305908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08612760 750.82312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08612761 750.82312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08612762 750.82312012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08612763 750.82318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08612764 750.82318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08612765 750.82318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08612766 750.82318115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08612767 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08612768 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08612769 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08612770 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08612771 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08612772 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08612773 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08612774 750.82324219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08612775 750.82330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08612776 750.82330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08612777 750.82330322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08612778 750.82336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08612779 750.82336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08612780 750.82336426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08612781 750.82342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08612782 750.82342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08612783 750.82342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08612784 750.82342529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08612785 750.82348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08612786 750.82348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08612787 750.82348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08612788 750.82348633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08612789 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08612790 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08612791 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08612792 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08612793 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08612794 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08612795 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08612796 750.82354736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08612797 750.82360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08612798 750.82360840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08612799 750.82366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08612800 750.82366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08612801 750.82366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08612802 750.82366943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08612803 750.82373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08612804 750.82373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08612805 750.82373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08612806 750.82373047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08612807 750.82379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08612808 750.82379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08612809 750.82379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08612810 750.82379150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08612811 750.82385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08612812 750.82385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08612813 750.82385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08612814 750.82385254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08612815 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08612816 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08612817 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08612818 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08612819 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08612820 750.82391357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08612821 750.82397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08612822 750.82397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08612823 750.82397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08612824 750.82397461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08612825 750.82403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08612826 750.82403564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08612827 750.82409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08612828 750.82409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08612829 750.82409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08612830 750.82409668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08612831 750.82415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08612832 750.82415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08612833 750.82415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08612834 750.82415771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08612835 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08612836 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08612837 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08612838 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08612839 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08612840 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08612841 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08612842 750.82421875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08612843 750.82427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08612844 750.82427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08612845 750.82427979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08612846 750.82434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08612847 750.82434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08612848 750.82434082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08612849 750.82440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08612850 750.82440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08612851 750.82440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08612852 750.82440186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08612853 750.82446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08612854 750.82446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08612855 750.82446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08612856 750.82446289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08612857 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08612858 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08612859 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08612860 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08612861 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08612862 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08612863 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08612864 750.82452393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08612865 750.82458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08612866 750.82458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08612867 750.82458496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08612868 750.82464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08612869 750.82464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08612870 750.82464600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08612871 750.82470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08612872 750.82470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08612873 750.82470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08612874 750.82470703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08612875 750.82476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08612876 750.82476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08612877 750.82476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08612878 750.82476807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08612879 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08612880 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08612881 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08612882 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08612883 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08612884 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08612885 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08612886 750.82482910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08612887 750.82489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08612888 750.82489014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08612889 750.82495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08612890 750.82495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08612891 750.82495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08612892 750.82495117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08612893 750.82501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08612894 750.82501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08612895 750.82501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08612896 750.82501221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08612897 750.82507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08612898 750.82507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08612899 750.82507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08612900 750.82507324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08612901 750.82513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08612902 750.82513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08612903 750.82513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08612904 750.82513428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08612905 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08612906 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08612907 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08612908 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08612909 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08612910 750.82519531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08612911 750.82525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08612912 750.82525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08612913 750.82525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08612914 750.82525635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08612915 750.82531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08612916 750.82531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08612917 750.82531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08612918 750.82531738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08612919 750.82537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08612920 750.82537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08612921 750.82537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08612922 750.82537842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08612923 750.82543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08612924 750.82543945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08612925 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08612926 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08612927 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08612928 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08612929 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08612930 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08612931 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08612932 750.82550049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08612933 750.82556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08612934 750.82556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08612935 750.82556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08612936 750.82556152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08612937 750.82562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08612938 750.82562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08612939 750.82562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08612940 750.82562256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08612941 750.82568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08612942 750.82568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08612943 750.82568359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08612944 750.82574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08612945 750.82574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08612946 750.82574463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08612947 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08612948 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08612949 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08612950 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08612951 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08612952 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08612953 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08612954 750.82580566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08612955 750.82586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08612956 750.82586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08612957 750.82586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08612958 750.82586670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08612959 750.82592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08612960 750.82592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08612961 750.82592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08612962 750.82592773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08612963 750.82598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08612964 750.82598877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08612965 750.82604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08612966 750.82604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08612967 750.82604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08612968 750.82604980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08612969 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08612970 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08612971 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08612972 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08612973 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08612974 750.82611084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08612975 750.82617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08612976 750.82617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08612977 750.82617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08612978 750.82617188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08612979 750.82623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08612980 750.82623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08612981 750.82623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08612982 750.82623291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08612983 750.82629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08612984 750.82629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08612985 750.82629395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08612986 750.82635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08612987 750.82635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08612988 750.82635498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08612989 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08612990 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08612991 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08612992 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08612993 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08612994 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08612995 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08612996 750.82641602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08612997 750.82647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08612998 750.82647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08612999 750.82647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08613000 750.82647705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08613001 750.82653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08613002 750.82653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08613003 750.82653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08613004 750.82653809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08613005 750.82659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08613006 750.82659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08613007 750.82659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08613008 750.82659912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08613009 750.82666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08613010 750.82666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08613011 750.82666016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08613012 750.82672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08613013 750.82672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08613014 750.82672119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08613015 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08613016 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08613017 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08613018 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08613019 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08613020 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08613021 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08613022 750.82678223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08613023 750.82684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08613024 750.82684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08613025 750.82684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08613026 750.82684326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08613027 750.82690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08613028 750.82690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08613029 750.82690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08613030 750.82690430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08613031 750.82696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08613032 750.82696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08613033 750.82696533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08613034 750.82702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08613035 750.82702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08613036 750.82702637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08613037 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08613038 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08613039 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08613040 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08613041 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08613042 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08613043 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08613044 750.82708740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08613045 750.82714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08613046 750.82714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08613047 750.82714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08613048 750.82714844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08613049 750.82720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08613050 750.82720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08613051 750.82720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08613052 750.82720947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08613053 750.82727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08613054 750.82727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08613055 750.82727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08613056 750.82727051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08613057 750.82733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08613058 750.82733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08613059 750.82733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08613060 750.82733154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08613061 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08613062 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08613063 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08613064 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08613065 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08613066 750.82739258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08613067 750.82745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08613068 750.82745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08613069 750.82745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08613070 750.82745361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08613071 750.82751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08613072 750.82751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08613073 750.82751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08613074 750.82751465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08613075 750.82757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08613076 750.82757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08613077 750.82757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08613078 750.82757568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08613079 750.82763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08613080 750.82763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08613081 750.82763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08613082 750.82763672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08613083 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08613084 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08613085 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08613086 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08613087 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08613088 750.82769775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08613089 750.82775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08613090 750.82775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08613091 750.82775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08613092 750.82775879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08613093 750.82781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08613094 750.82781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08613095 750.82781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08613096 750.82781982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08613097 750.82788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08613098 750.82788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08613099 750.82788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08613100 750.82788086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08613101 750.82794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08613102 750.82794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08613103 750.82794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08613104 750.82794189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08613105 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08613106 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08613107 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08613108 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08613109 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08613110 750.82800293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08613111 750.82806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08613112 750.82806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08613113 750.82806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08613114 750.82806396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08613115 750.82812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08613116 750.82812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08613117 750.82812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08613118 750.82812500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08613119 750.82818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08613120 750.82818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08613121 750.82818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08613122 750.82818604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08613123 750.82824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08613124 750.82824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08613125 750.82824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08613126 750.82824707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08613127 750.82830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08613128 750.82830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08613129 750.82830811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08613130 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08613131 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08613132 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08613133 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08613134 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08613135 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08613136 750.82836914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08613137 750.82843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08613138 750.82843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08613139 750.82843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08613140 750.82843018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08613141 750.82849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08613142 750.82849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08613143 750.82849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08613144 750.82849121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08613145 750.82855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08613146 750.82855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08613147 750.82855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08613148 750.82855225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08613149 750.82861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08613150 750.82861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08613151 750.82861328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08613152 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08613153 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08613154 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08613155 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08613156 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08613157 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08613158 750.82867432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08613159 750.82873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08613160 750.82873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08613161 750.82873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08613162 750.82873535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08613163 750.82879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08613164 750.82879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08613165 750.82879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08613166 750.82879639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08613167 750.82885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08613168 750.82885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08613169 750.82885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08613170 750.82885742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08613171 750.82891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08613172 750.82891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08613173 750.82891846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08613174 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08613175 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08613176 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08613177 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08613178 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08613179 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08613180 750.82897949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08613181 750.82904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08613182 750.82904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08613183 750.82904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08613184 750.82904053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08613185 750.82910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08613186 750.82910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08613187 750.82910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08613188 750.82910156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08613189 750.82916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08613190 750.82916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08613191 750.82916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08613192 750.82916260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08613193 750.82922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08613194 750.82922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08613195 750.82922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08613196 750.82922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08613197 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08613198 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08613199 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08613200 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08613201 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08613202 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08613203 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08613204 750.82928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08613205 750.82934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08613206 750.82934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08613207 750.82934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08613208 750.82934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08613209 750.82940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08613210 750.82940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08613211 750.82940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08613212 750.82940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08613213 750.82946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08613214 750.82946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08613215 750.82946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08613216 750.82946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08613217 750.82952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08613218 750.82952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08613219 750.82952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08613220 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08613221 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08613222 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08613223 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08613224 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08613225 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08613226 750.82958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08613227 750.82965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08613228 750.82965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08613229 750.82965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08613230 750.82965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08613231 750.82971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08613232 750.82971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08613233 750.82971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08613234 750.82971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08613235 750.82977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08613236 750.82977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08613237 750.82977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08613238 750.82977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08613239 750.82983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08613240 750.82983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08613241 750.82983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08613242 750.82983398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08613243 750.82989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08613244 750.82989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08613245 750.82989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08613246 750.82989502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08613247 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08613248 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08613249 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08613250 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08613251 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08613252 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08613253 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08613254 750.82995605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08613255 750.83001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08613256 750.83001709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08613257 750.83007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08613258 750.83007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08613259 750.83007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08613260 750.83007813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08613261 750.83013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08613262 750.83013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08613263 750.83013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08613264 750.83013916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08613265 750.83020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08613266 750.83020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08613267 750.83020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08613268 750.83020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08613269 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08613270 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08613271 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08613272 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08613273 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08613274 750.83026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08613275 750.83032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08613276 750.83032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08613277 750.83032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08613278 750.83032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08613279 750.83038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08613280 750.83038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08613281 750.83038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08613282 750.83038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08613283 750.83044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08613284 750.83044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08613285 750.83044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08613286 750.83044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08613287 750.83050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08613288 750.83050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08613289 750.83050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08613290 750.83050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08613291 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08613292 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08613293 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08613294 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08613295 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08613296 750.83056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08613297 750.83062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08613298 750.83062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08613299 750.83062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08613300 750.83062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08613301 750.83068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08613302 750.83068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08613303 750.83068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08613304 750.83068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08613305 750.83074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08613306 750.83074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08613307 750.83074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08613308 750.83074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08613309 750.83081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08613310 750.83081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08613311 750.83081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08613312 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08613313 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08613314 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08613315 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08613316 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08613317 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08613318 750.83087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08613319 750.83093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08613320 750.83093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08613321 750.83093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08613322 750.83093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08613323 750.83099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08613324 750.83099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08613325 750.83099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08613326 750.83099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08613327 750.83105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08613328 750.83105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08613329 750.83105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08613330 750.83105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08613331 750.83111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08613332 750.83111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08613333 750.83111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08613334 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08613335 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08613336 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08613337 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08613338 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08613339 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08613340 750.83117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08613341 750.83123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08613342 750.83123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08613343 750.83123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08613344 750.83123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08613345 750.83129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08613346 750.83129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08613347 750.83129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08613348 750.83129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08613349 750.83135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08613350 750.83135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08613351 750.83135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08613352 750.83135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08613353 750.83142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08613354 750.83142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08613355 750.83142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08613356 750.83148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08613357 750.83148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08613358 750.83148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08613359 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08613360 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08613361 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08613362 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08613363 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08613364 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08613365 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08613366 750.83154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08613367 750.83160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08613368 750.83160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08613369 750.83160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08613370 750.83160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08613371 750.83166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08613372 750.83166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08613373 750.83166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08613374 750.83166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08613375 750.83172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08613376 750.83172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08613377 750.83172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08613378 750.83178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08613379 750.83178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08613380 750.83178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08613381 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08613382 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08613383 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08613384 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08613385 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08613386 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08613387 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08613388 750.83184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08613389 750.83190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08613390 750.83190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08613391 750.83190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08613392 750.83190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08613393 750.83197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08613394 750.83197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08613395 750.83197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08613396 750.83197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08613397 750.83203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08613398 750.83203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08613399 750.83203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08613400 750.83209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08613401 750.83209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08613402 750.83209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08613403 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08613404 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08613405 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08613406 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08613407 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08613408 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08613409 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08613410 750.83215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08613411 750.83221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08613412 750.83221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08613413 750.83221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08613414 750.83221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08613415 750.83227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08613416 750.83227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08613417 750.83227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08613418 750.83227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08613419 750.83233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08613420 750.83233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08613421 750.83233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08613422 750.83239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08613423 750.83239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08613424 750.83239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08613425 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08613426 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08613427 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08613428 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08613429 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08613430 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08613431 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08613432 750.83245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08613433 750.83251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08613434 750.83251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08613435 750.83251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08613436 750.83251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08613437 750.83258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08613438 750.83258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08613439 750.83258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08613440 750.83258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08613441 750.83264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08613442 750.83264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08613443 750.83264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08613444 750.83270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08613445 750.83270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08613446 750.83270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08613447 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08613448 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08613449 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08613450 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08613451 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08613452 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08613453 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08613454 750.83276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08613455 750.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08613456 750.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08613457 750.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08613458 750.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08613459 750.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08613460 750.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08613461 750.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08613462 750.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08613463 750.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08613464 750.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08613465 750.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08613466 750.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08613467 750.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08613468 750.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08613469 750.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08613470 750.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08613471 750.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08613472 750.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08613473 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08613474 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08613475 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08613476 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08613477 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08613478 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08613479 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08613480 750.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08613481 750.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08613482 750.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08613483 750.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08613484 750.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08613485 750.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08613486 750.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08613487 750.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08613488 750.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08613489 750.83331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08613490 750.83331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08613491 750.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08613492 750.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08613493 750.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08613494 750.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08613495 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08613496 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08613497 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08613498 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08613499 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08613500 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08613501 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08613502 750.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08613503 750.83349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08613504 750.83349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08613505 750.83349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08613506 750.83349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08613507 750.83355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08613508 750.83355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08613509 750.83355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08613510 750.83355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08613511 750.83361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08613512 750.83361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08613513 750.83367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08613514 750.83367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08613515 750.83367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08613516 750.83367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08613517 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08613518 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08613519 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08613520 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08613521 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08613522 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08613523 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08613524 750.83374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08613525 750.83380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08613526 750.83380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08613527 750.83380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08613528 750.83380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08613529 750.83386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08613530 750.83386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08613531 750.83386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08613532 750.83386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08613533 750.83392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08613534 750.83392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08613535 750.83392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08613536 750.83392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08613537 750.83398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08613538 750.83398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08613539 750.83398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08613540 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08613541 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08613542 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08613543 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08613544 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08613545 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08613546 750.83404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08613547 750.83410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08613548 750.83410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08613549 750.83410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08613550 750.83410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08613551 750.83416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08613552 750.83416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08613553 750.83416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08613554 750.83416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08613555 750.83422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08613556 750.83422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08613557 750.83422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08613558 750.83422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08613559 750.83428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08613560 750.83428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08613561 750.83428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08613562 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08613563 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08613564 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08613565 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08613566 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08613567 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08613568 750.83435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08613569 750.83441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08613570 750.83441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08613571 750.83441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08613572 750.83441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08613573 750.83447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08613574 750.83447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08613575 750.83447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08613576 750.83447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08613577 750.83453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08613578 750.83453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08613579 750.83453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08613580 750.83453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08613581 750.83459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08613582 750.83459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08613583 750.83459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08613584 750.83465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08613585 750.83465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08613586 750.83465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08613587 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08613588 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08613589 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08613590 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08613591 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08613592 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08613593 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08613594 750.83471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08613595 750.83477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08613596 750.83477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08613597 750.83477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08613598 750.83477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08613599 750.83483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08613600 750.83483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08613601 750.83483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08613602 750.83483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08613603 750.83489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08613604 750.83489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08613605 750.83489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08613606 750.83496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08613607 750.83496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08613608 750.83496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08613609 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08613610 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08613611 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08613612 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08613613 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08613614 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08613615 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08613616 750.83502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08613617 750.83508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08613618 750.83508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08613619 750.83508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08613620 750.83508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08613621 750.83514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08613622 750.83514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08613623 750.83514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08613624 750.83520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08613625 750.83520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08613626 750.83520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08613627 750.83526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08613628 750.83526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08613629 750.83526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08613630 750.83526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08613631 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08613632 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08613633 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08613634 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08613635 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08613636 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08613637 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08613638 750.83532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08613639 750.83538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08613640 750.83538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08613641 750.83538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08613642 750.83538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08613643 750.83544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08613644 750.83544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08613645 750.83551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08613646 750.83551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08613647 750.83551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08613648 750.83551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08613649 750.83557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08613650 750.83557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08613651 750.83557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08613652 750.83557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08613653 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08613654 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08613655 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08613656 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08613657 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08613658 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08613659 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08613660 750.83563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08613661 750.83569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08613662 750.83569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08613663 750.83569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08613664 750.83569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08613665 750.83575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08613666 750.83575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08613667 750.83581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08613668 750.83581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08613669 750.83581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08613670 750.83581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08613671 750.83587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08613672 750.83587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08613673 750.83587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08613674 750.83587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08613675 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08613676 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08613677 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08613678 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08613679 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08613680 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08613681 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08613682 750.83593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08613683 750.83599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08613684 750.83599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08613685 750.83599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08613686 750.83599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08613687 750.83605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08613688 750.83605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08613689 750.83612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08613690 750.83612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08613691 750.83612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08613692 750.83612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08613693 750.83618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08613694 750.83618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08613695 750.83618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08613696 750.83618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08613697 750.83624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08613698 750.83624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08613699 750.83624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08613700 750.83624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08613701 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08613702 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08613703 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08613704 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08613705 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08613706 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08613707 750.83630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08613708 750.83636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08613709 750.83636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08613710 750.83636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08613711 750.83642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08613712 750.83642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08613713 750.83642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08613714 750.83642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08613715 750.83648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08613716 750.83648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08613717 750.83648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08613718 750.83648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08613719 750.83654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08613720 750.83654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08613721 750.83654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08613722 750.83654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08613723 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08613724 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08613725 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08613726 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08613727 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08613728 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08613729 750.83660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08613730 750.83666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08613731 750.83666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08613732 750.83666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08613733 750.83673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08613734 750.83673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08613735 750.83673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08613736 750.83673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08613737 750.83679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08613738 750.83679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08613739 750.83679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08613740 750.83679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08613741 750.83685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08613742 750.83685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08613743 750.83685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08613744 750.83685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08613745 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08613746 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08613747 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08613748 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08613749 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08613750 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08613751 750.83691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08613752 750.83697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08613753 750.83697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08613754 750.83697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08613755 750.83703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08613756 750.83703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08613757 750.83703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08613758 750.83703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08613759 750.83709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08613760 750.83709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08613761 750.83709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08613762 750.83709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08613763 750.83715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08613764 750.83715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08613765 750.83715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08613766 750.83715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08613767 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08613768 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08613769 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08613770 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08613771 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08613772 750.83721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08613773 750.83728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08613774 750.83728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08613775 750.83728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08613776 750.83728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08613777 750.83734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08613778 750.83734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08613779 750.83734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08613780 750.83734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08613781 750.83740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08613782 750.83740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08613783 750.83740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08613784 750.83740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08613785 750.83746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08613786 750.83746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08613787 750.83746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08613788 750.83746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08613789 750.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08613790 750.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08613791 750.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08613792 750.83752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08613793 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08613794 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08613795 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08613796 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08613797 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08613798 750.83758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08613799 750.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08613800 750.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08613801 750.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08613802 750.83764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08613803 750.83770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08613804 750.83770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08613805 750.83770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08613806 750.83770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08613807 750.83776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08613808 750.83776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08613809 750.83776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08613810 750.83776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08613811 750.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08613812 750.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08613813 750.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08613814 750.83782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08613815 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08613816 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08613817 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08613818 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08613819 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08613820 750.83789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08613821 750.83795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08613822 750.83795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08613823 750.83795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08613824 750.83795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08613825 750.83801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08613826 750.83801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08613827 750.83801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08613828 750.83801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08613829 750.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08613830 750.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08613831 750.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08613832 750.83807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08613833 750.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08613834 750.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08613835 750.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08613836 750.83813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08613837 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08613838 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08613839 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08613840 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08613841 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08613842 750.83819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08613843 750.83825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08613844 750.83825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08613845 750.83825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08613846 750.83825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08613847 750.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08613848 750.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08613849 750.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08613850 750.83831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08613851 750.83837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08613852 750.83837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08613853 750.83837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08613854 750.83837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08613855 750.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08613856 750.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08613857 750.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08613858 750.83843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08613859 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08613860 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08613861 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08613862 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08613863 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08613864 750.83850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08613865 750.83856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08613866 750.83856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08613867 750.83856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08613868 750.83856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08613869 750.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08613870 750.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08613871 750.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08613872 750.83862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08613873 750.83868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08613874 750.83868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08613875 750.83868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08613876 750.83868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08613877 750.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08613878 750.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08613879 750.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08613880 750.83874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08613881 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08613882 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08613883 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08613884 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08613885 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08613886 750.83880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08613887 750.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08613888 750.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08613889 750.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08613890 750.83886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08613891 750.83892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08613892 750.83892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08613893 750.83892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08613894 750.83892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08613895 750.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08613896 750.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08613897 750.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08613898 750.83898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08613899 750.83905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08613900 750.83905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08613901 750.83905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08613902 750.83911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08613903 750.83911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08613904 750.83911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08613905 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08613906 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08613907 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08613908 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08613909 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08613910 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08613911 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08613912 750.83917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08613913 750.83923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08613914 750.83923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08613915 750.83923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08613916 750.83923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08613917 750.83929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08613918 750.83929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08613919 750.83929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08613920 750.83935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08613921 750.83935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08613922 750.83935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08613923 750.83941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08613924 750.83941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08613925 750.83941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08613926 750.83941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08613927 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08613928 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08613929 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08613930 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08613931 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08613932 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08613933 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08613934 750.83947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08613935 750.83953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08613936 750.83953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08613937 750.83953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08613938 750.83959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08613939 750.83959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08613940 750.83959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08613941 750.83966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08613942 750.83966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08613943 750.83966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08613944 750.83966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08613945 750.83972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08613946 750.83972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08613947 750.83972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08613948 750.83972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08613949 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08613950 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08613951 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08613952 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08613953 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08613954 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08613955 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08613956 750.83978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08613957 750.83984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08613958 750.83984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08613959 750.83984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08613960 750.83990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08613961 750.83990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08613962 750.83990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08613963 750.83996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08613964 750.83996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08613965 750.83996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08613966 750.83996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08613967 750.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08613968 750.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08613969 750.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08613970 750.84002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08613971 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08613972 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08613973 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08613974 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08613975 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08613976 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08613977 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08613978 750.84008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08613979 750.84014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08613980 750.84014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08613981 750.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08613982 750.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08613983 750.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08613984 750.84020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08613985 750.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08613986 750.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08613987 750.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08613988 750.84027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08613989 750.84033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08613990 750.84033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08613991 750.84033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08613992 750.84033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08613993 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08613994 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08613995 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08613996 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08613997 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08613998 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08613999 750.84039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08614000 750.84045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08614001 750.84045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08614002 750.84045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08614003 750.84051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08614004 750.84051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08614005 750.84051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08614006 750.84051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08614007 750.84057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08614008 750.84057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08614009 750.84057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08614010 750.84057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08614011 750.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08614012 750.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08614013 750.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08614014 750.84063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08614015 750.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08614016 750.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08614017 750.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08614018 750.84069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08614019 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08614020 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08614021 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08614022 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08614023 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08614024 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08614025 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08614026 750.84075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08614027 750.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08614028 750.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08614029 750.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08614030 750.84082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08614031 750.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08614032 750.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08614033 750.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08614034 750.84088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08614035 750.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08614036 750.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08614037 750.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08614038 750.84094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08614039 750.84100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08614040 750.84100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08614041 750.84100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08614042 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08614043 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08614044 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08614045 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08614046 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08614047 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08614048 750.84106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08614049 750.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08614050 750.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08614051 750.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08614052 750.84112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08614053 750.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08614054 750.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08614055 750.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08614056 750.84118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08614057 750.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08614058 750.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08614059 750.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08614060 750.84124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08620995 750.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11398 -08620996 750.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11398 -08620997 750.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a8 -08620998 750.93823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113a8 -08620999 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b8 -08621000 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113b8 -08621001 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c8 -08621002 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113c8 -08621003 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d8 -08621004 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113d8 -08621005 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e8 -08621006 750.93829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113e8 -08621007 750.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f8 -08621008 750.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x113f8 -08621009 750.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11408 -08621010 750.93835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11408 -08621011 750.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11418 -08621012 750.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11418 -08621013 750.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11428 -08621014 750.93841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11428 -08621015 750.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11438 -08621016 750.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11438 -08621017 750.93847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11448 -08621018 750.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11448 -08621019 750.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11458 -08621020 750.93853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11458 -08621021 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11468 -08621022 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11468 -08621023 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11478 -08621024 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11478 -08621025 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11488 -08621026 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11488 -08621027 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11498 -08621028 750.93859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11498 -08621029 750.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a8 -08621030 750.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114a8 -08621031 750.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b8 -08621032 750.93865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114b8 -08621033 750.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c8 -08621034 750.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114c8 -08621035 750.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d8 -08621036 750.93872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114d8 -08621037 750.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e8 -08621038 750.93878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x114e8 -08627939 751.03540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -08627940 751.03540039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec98 -08627941 751.03546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -08627942 751.03546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eca8 -08627943 751.03546143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -08627944 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecb8 -08627945 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -08627946 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecc8 -08627947 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -08627948 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecd8 -08627949 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -08627950 751.03552246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ece8 -08627951 751.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -08627952 751.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ecf8 -08627953 751.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -08627954 751.03558350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed08 -08627955 751.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -08627956 751.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed18 -08627957 751.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -08627958 751.03564453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed28 -08627959 751.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed38 -08627960 751.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed38 -08627961 751.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -08627962 751.03570557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed48 -08627963 751.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -08627964 751.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed58 -08627965 751.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -08627966 751.03576660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed68 -08627967 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -08627968 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed78 -08627969 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed88 -08627970 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed88 -08627971 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed98 -08627972 751.03582764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed98 -08627973 751.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda8 -08627974 751.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eda8 -08627975 751.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb8 -08627976 751.03588867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edb8 -08627977 751.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc8 -08627978 751.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edc8 -08627979 751.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd8 -08627980 751.03594971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1edd8 -08627981 751.03601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede8 -08627982 751.03601074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ede8 -08635685 751.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -08635686 751.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -08635687 751.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -08635688 751.14355469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -08635689 751.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -08635690 751.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -08635691 751.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded8 -08635692 751.14361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ded8 -08635693 751.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee8 -08635694 751.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dee8 -08635695 751.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def8 -08635696 751.14367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2def8 -08635697 751.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df08 -08635698 751.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df08 -08635699 751.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df18 -08635700 751.14373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df18 -08635701 751.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df28 -08635702 751.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df28 -08635703 751.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df38 -08635704 751.14379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df38 -08635705 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df48 -08635706 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df48 -08635707 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df58 -08635708 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df58 -08635709 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df68 -08635710 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df68 -08635711 751.14385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df78 -08635712 751.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df78 -08635713 751.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df88 -08635714 751.14392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df88 -08635715 751.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df98 -08635716 751.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df98 -08635717 751.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa8 -08635718 751.14398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfa8 -08635719 751.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb8 -08635720 751.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfb8 -08635721 751.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc8 -08635722 751.14404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfc8 -08635723 751.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd8 -08635724 751.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfd8 -08635725 751.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe8 -08635726 751.14410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dfe8 -08635727 751.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff8 -08635728 751.14416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dff8 -08654583 752.00842285 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08654584 752.00915527 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08654585 752.67395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08654586 752.69665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654587 752.69665527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654588 753.07513428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654589 753.07519531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654590 753.07519531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654591 753.07519531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08654592 753.07537842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654593 753.07537842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08654594 753.07537842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654595 753.07543945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08654596 754.69769287 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08654597 754.72131348 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654598 754.72131348 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654599 755.58215332 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654600 755.58215332 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654601 755.58221436 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08654602 755.58221436 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08654603 755.58233643 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654604 755.58233643 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08654605 755.58239746 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08654606 755.58245850 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08654607 756.23565674 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -08654608 756.23693848 [vmhook-eac [core number = 9]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -08654609 756.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08654610 756.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08654611 756.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08654612 756.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08654613 756.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08654614 756.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08654615 756.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08654616 756.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08654617 756.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08654618 756.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08654619 756.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08654620 756.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08654621 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08654622 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08654623 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08654624 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08654625 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08654626 756.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08654627 756.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08654628 756.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08654629 756.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08654630 756.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08654631 756.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08654632 756.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08654633 756.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08654634 756.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08654635 756.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08654636 756.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08654637 756.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08654638 756.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08654639 756.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08654640 756.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08654641 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08654642 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08654643 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08654644 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08654645 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08654646 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08654647 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08654648 756.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08654649 756.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08654650 756.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08654651 756.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08654652 756.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08654653 756.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08654654 756.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08654655 756.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08654656 756.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08654657 756.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08654658 756.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08654659 756.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08654660 756.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08654661 756.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08654662 756.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08654663 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08654664 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08654665 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08654666 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08654667 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08654668 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08654669 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08654670 756.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08654671 756.41040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08654672 756.41040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08654673 756.41040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08654674 756.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08654675 756.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08654676 756.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08654677 756.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08654678 756.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08654679 756.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08654680 756.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08654681 756.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08654682 756.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08654683 756.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08654684 756.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08654685 756.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08654686 756.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08654687 756.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08654688 756.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08654689 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08654690 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08654691 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08654692 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08654693 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08654694 756.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08654695 756.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08654696 756.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08654697 756.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08654698 756.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08654699 756.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08654700 756.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08654701 756.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08654702 756.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08654703 756.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08654704 756.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08654705 756.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08654706 756.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08654707 756.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08654708 756.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08654709 756.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08654710 756.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08654711 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08654712 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08654713 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08654714 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08654715 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08654716 756.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08654717 756.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08654718 756.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08654719 756.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08654720 756.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08654721 756.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08654722 756.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08654723 756.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08654724 756.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08654725 756.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08654726 756.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08654727 756.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08654728 756.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08654729 756.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08654730 756.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08654731 756.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08654732 756.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08654733 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08654734 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08654735 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08654736 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08654737 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08654738 756.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08654739 756.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08654740 756.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08654741 756.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08654742 756.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08654743 756.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08654744 756.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08654745 756.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08654746 756.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08654747 756.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08654748 756.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08654749 756.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08654750 756.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08654751 756.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08654752 756.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08654753 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08654754 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08654755 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08654756 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08654757 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08654758 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08654759 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08654760 756.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08654761 756.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08654762 756.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08654763 756.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08654764 756.41174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08654765 756.41174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08654766 756.41174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08654767 756.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08654768 756.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08654769 756.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08654770 756.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08654771 756.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08654772 756.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08654773 756.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08654774 756.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08654775 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08654776 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08654777 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08654778 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08654779 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08654780 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08654781 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08654782 756.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08654783 756.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08654784 756.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08654785 756.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08654786 756.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08654787 756.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08654788 756.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08654789 756.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08654790 756.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08654791 756.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08654792 756.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08654793 756.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08654794 756.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08654795 756.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08654796 756.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08654797 756.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08654798 756.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08654799 756.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08654800 756.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08654801 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08654802 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08654803 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08654804 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08654805 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08654806 756.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08654807 756.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08654808 756.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08654809 756.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08654810 756.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08654811 756.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08654812 756.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08654813 756.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08654814 756.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08654815 756.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08654816 756.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08654817 756.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08654818 756.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08654819 756.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08654820 756.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08654821 756.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08654822 756.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08654823 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08654824 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08654825 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08654826 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08654827 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08654828 756.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08654829 756.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08654830 756.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08654831 756.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08654832 756.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08654833 756.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08654834 756.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08654835 756.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08654836 756.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08654837 756.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08654838 756.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08654839 756.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08654840 756.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08654841 756.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08654842 756.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08654843 756.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08654844 756.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08654845 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08654846 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08654847 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08654848 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08654849 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08654850 756.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08654851 756.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08654852 756.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08654853 756.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08654854 756.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08654855 756.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08654856 756.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08654857 756.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08654858 756.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08654859 756.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08654860 756.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08654861 756.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08654862 756.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08654863 756.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08654864 756.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08654865 756.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08654866 756.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08654867 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08654868 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08654869 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08654870 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08654871 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08654872 756.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08654873 756.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08654874 756.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08654875 756.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08654876 756.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08654877 756.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08654878 756.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08654879 756.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08654880 756.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08654881 756.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08654882 756.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08654883 756.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08654884 756.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08654885 756.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08654886 756.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08654887 756.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08654888 756.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08654889 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08654890 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08654891 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08654892 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08654893 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08654894 756.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08654895 756.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08654896 756.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08654897 756.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08654898 756.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08654899 756.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08654900 756.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08654901 756.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08654902 756.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08654903 756.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08654904 756.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08654905 756.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08654906 756.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08654907 756.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08654908 756.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08654909 756.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08654910 756.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08654911 756.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08654912 756.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08654913 756.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08654914 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08654915 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08654916 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08654917 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08654918 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08654919 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08654920 756.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08654921 756.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08654922 756.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08654923 756.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08654924 756.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08654925 756.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08654926 756.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08654927 756.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08654928 756.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08654929 756.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08654930 756.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08654931 756.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08654932 756.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08654933 756.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08654934 756.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08654935 756.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08654936 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08654937 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08654938 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08654939 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08654940 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08654941 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08654942 756.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08654943 756.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08654944 756.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08654945 756.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08654946 756.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08654947 756.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08654948 756.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08654949 756.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08654950 756.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08654951 756.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08654952 756.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08654953 756.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08654954 756.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08654955 756.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08654956 756.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08654957 756.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08654958 756.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08654959 756.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08654960 756.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08654961 756.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08654962 756.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08654963 756.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08654964 756.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08654965 756.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08654966 756.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08654967 756.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08654968 756.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08654969 756.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08654970 756.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08654971 756.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08654972 756.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08654973 756.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08654974 756.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08654975 756.41473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08654976 756.41473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08654977 756.41473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08654978 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08654979 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08654980 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08654981 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08654982 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08654983 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08654984 756.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08654985 756.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08654986 756.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08654987 756.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08654988 756.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08654989 756.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08654990 756.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08654991 756.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08654992 756.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08654993 756.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08654994 756.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08654995 756.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08654996 756.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08654997 756.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08654998 756.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08654999 756.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08655000 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08655001 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08655002 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08655003 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08655004 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08655005 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08655006 756.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08655007 756.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08655008 756.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08655009 756.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08655010 756.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08655011 756.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08655012 756.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08655013 756.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08655014 756.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08655015 756.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08655016 756.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08655017 756.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08655018 756.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08655019 756.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08655020 756.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08655021 756.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08655022 756.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08655023 756.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08655024 756.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08655025 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08655026 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08655027 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08655028 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08655029 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08655030 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08655031 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08655032 756.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08655033 756.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08655034 756.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08655035 756.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08655036 756.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08655037 756.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08655038 756.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08655039 756.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08655040 756.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08655041 756.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08655042 756.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08655043 756.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08655044 756.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08655045 756.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08655046 756.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08655047 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08655048 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08655049 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08655050 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08655051 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08655052 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08655053 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08655054 756.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08655055 756.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08655056 756.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08655057 756.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08655058 756.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08655059 756.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08655060 756.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08655061 756.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08655062 756.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08655063 756.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08655064 756.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08655065 756.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08655066 756.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08655067 756.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08655068 756.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08655069 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08655070 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08655071 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08655072 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08655073 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08655074 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08655075 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08655076 756.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08655077 756.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08655078 756.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08655079 756.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08655080 756.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08655081 756.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08655082 756.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08655083 756.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08655084 756.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08655085 756.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08655086 756.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08655087 756.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08655088 756.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08655089 756.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08655090 756.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08655091 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08655092 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08655093 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08655094 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08655095 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08655096 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08655097 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08655098 756.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08655099 756.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08655100 756.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08655101 756.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08655102 756.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08655103 756.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08655104 756.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08655105 756.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08655106 756.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08655107 756.41656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08655108 756.41656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08655109 756.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08655110 756.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08655111 756.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08655112 756.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08655113 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08655114 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08655115 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08655116 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08655117 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08655118 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08655119 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08655120 756.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08655121 756.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08655122 756.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08655123 756.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08655124 756.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08655125 756.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08655126 756.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08655127 756.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08655128 756.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08655129 756.41687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08655130 756.41687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08655131 756.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08655132 756.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08655133 756.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08655134 756.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08655135 756.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08655136 756.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08655137 756.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08655138 756.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08655139 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08655140 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08655141 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08655142 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08655143 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08655144 756.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08655145 756.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08655146 756.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08655147 756.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08655148 756.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08655149 756.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08655150 756.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08655151 756.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08655152 756.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08655153 756.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08655154 756.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08655155 756.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08655156 756.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08655157 756.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08655158 756.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08655159 756.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08655160 756.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08655161 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08655162 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08655163 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08655164 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08655165 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08655166 756.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08655167 756.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08655168 756.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08655169 756.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08655170 756.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08655171 756.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08655172 756.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08655173 756.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08655174 756.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08655175 756.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08655176 756.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08655177 756.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08655178 756.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08655179 756.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08655180 756.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08655181 756.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08655182 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08655183 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08655184 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08655185 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08655186 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08655187 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08655188 756.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08655189 756.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08655190 756.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08655191 756.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08655192 756.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08655193 756.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08655194 756.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08655195 756.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08655196 756.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08655197 756.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08655198 756.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08655199 756.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08655200 756.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08655201 756.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08655202 756.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08655203 756.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08655204 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08655205 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08655206 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08655207 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08655208 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08655209 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08655210 756.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08655211 756.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08655212 756.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08655213 756.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08655214 756.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08655215 756.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08655216 756.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08655217 756.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08655218 756.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08655219 756.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08655220 756.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08655221 756.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08655222 756.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08655223 756.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08655224 756.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08655225 756.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08655226 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08655227 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08655228 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08655229 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08655230 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08655231 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08655232 756.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08655233 756.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08655234 756.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08655235 756.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08655236 756.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08655237 756.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08655238 756.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08655239 756.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08655240 756.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08655241 756.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08655242 756.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08655243 756.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08655244 756.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08655245 756.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08655246 756.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08655247 756.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08655248 756.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08655249 756.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08655250 756.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08655251 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08655252 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08655253 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08655254 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08655255 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08655256 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08655257 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08655258 756.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08655259 756.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08655260 756.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08655261 756.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08655262 756.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08655263 756.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08655264 756.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08655265 756.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08655266 756.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08655267 756.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08655268 756.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08655269 756.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08655270 756.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08655271 756.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08655272 756.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08655273 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08655274 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08655275 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08655276 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08655277 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08655278 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08655279 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08655280 756.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08655281 756.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08655282 756.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08655283 756.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08655284 756.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08655285 756.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08655286 756.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08655287 756.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08655288 756.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08655289 756.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08655290 756.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08655291 756.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08655292 756.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08655293 756.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08655294 756.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08655295 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08655296 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08655297 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08655298 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08655299 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08655300 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08655301 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08655302 756.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08655303 756.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08655304 756.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08655305 756.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08655306 756.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08655307 756.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08655308 756.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08655309 756.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08655310 756.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08655311 756.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08655312 756.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08655313 756.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08655314 756.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08655315 756.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08655316 756.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08655317 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08655318 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08655319 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08655320 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08655321 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08655322 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08655323 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08655324 756.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08655325 756.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08655326 756.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08655327 756.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08655328 756.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08655329 756.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08655330 756.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08655331 756.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08655332 756.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08655333 756.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08655334 756.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08655335 756.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08655336 756.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08655337 756.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08655338 756.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08655339 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08655340 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08655341 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08655342 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08655343 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08655344 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08655345 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08655346 756.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08655347 756.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08655348 756.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08655349 756.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08655350 756.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08655351 756.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08655352 756.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08655353 756.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08655354 756.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08655355 756.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08655356 756.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08655357 756.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08655358 756.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08655359 756.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08655360 756.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08655361 756.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08655362 756.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08655363 756.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08655364 756.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08655365 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08655366 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08655367 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08655368 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08655369 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08655370 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08655371 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08655372 756.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08655373 756.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08655374 756.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08655375 756.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08655376 756.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08655377 756.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08655378 756.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08655379 756.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08655380 756.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08655381 756.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08655382 756.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08655383 756.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08655384 756.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08655385 756.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08655386 756.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08655387 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08655388 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08655389 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08655390 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08655391 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08655392 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08655393 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08655394 756.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08655395 756.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08655396 756.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08655397 756.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08655398 756.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08655399 756.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08655400 756.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08655401 756.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08655402 756.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08655403 756.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08655404 756.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08655405 756.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08655406 756.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08655407 756.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08655408 756.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08655409 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08655410 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08655411 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08655412 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08655413 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08655414 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08655415 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08655416 756.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08655417 756.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08655418 756.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08655419 756.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08655420 756.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08655421 756.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08655422 756.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08655423 756.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08655424 756.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08655425 756.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08655426 756.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08655427 756.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08655428 756.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08655429 756.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08655430 756.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08655431 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08655432 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08655433 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08655434 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08655435 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08655436 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08655437 756.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08655438 756.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08655439 756.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08655440 756.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08655441 756.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08655442 756.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08655443 756.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08655444 756.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08655445 756.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08655446 756.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08655447 756.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08655448 756.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08655449 756.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08655450 756.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08655451 756.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08655452 756.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08655453 756.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08655454 756.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08655455 756.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08655456 756.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08655457 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08655458 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08655459 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08655460 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08655461 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08655462 756.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08655463 756.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08655464 756.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08655465 756.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08655466 756.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08655467 756.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08655468 756.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08655469 756.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08655470 756.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08655471 756.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08655472 756.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08655473 756.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08655474 756.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08655475 756.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08655476 756.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08655477 756.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08655478 756.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08655479 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08655480 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08655481 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08655482 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08655483 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08655484 756.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08655485 756.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08655486 756.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08655487 756.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08655488 756.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08655489 756.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08655490 756.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08655491 756.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08655492 756.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08655493 756.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08655494 756.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08655495 756.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08655496 756.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08655497 756.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08655498 756.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08655499 756.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08655500 756.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08655501 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08655502 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08655503 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08655504 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08655505 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08655506 756.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08655507 756.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08655508 756.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08655509 756.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08655510 756.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08655511 756.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08655512 756.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08655513 756.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08655514 756.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08655515 756.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08655516 756.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08655517 756.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08655518 756.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08655519 756.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08655520 756.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08655521 756.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08655522 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08655523 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08655524 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08655525 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08655526 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08655527 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08655528 756.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08655529 756.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08655530 756.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08655531 756.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08655532 756.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08655533 756.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08655534 756.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08655535 756.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08655536 756.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08655537 756.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08655538 756.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08655539 756.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08655540 756.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08655541 756.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08655542 756.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08655543 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08655544 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08655545 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08655546 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08655547 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08655548 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08655549 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08655550 756.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08655551 756.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08655552 756.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08655553 756.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08655554 756.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08655555 756.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08655556 756.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08655557 756.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08655558 756.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08655559 756.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08655560 756.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08655561 756.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08655562 756.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08655563 756.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08655564 756.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08655565 756.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08655566 756.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08655567 756.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08655568 756.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08655569 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08655570 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08655571 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08655572 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08655573 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08655574 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08655575 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08655576 756.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08655577 756.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08655578 756.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08655579 756.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08655580 756.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08655581 756.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08655582 756.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08655583 756.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08655584 756.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08655585 756.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08655586 756.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08655587 756.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08655588 756.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08655589 756.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08655590 756.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08655591 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08655592 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08655593 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08655594 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08655595 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08655596 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08655597 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08655598 756.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08655599 756.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08655600 756.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08655601 756.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08655602 756.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08655603 756.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08655604 756.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08655605 756.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08655606 756.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08655607 756.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08655608 756.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08655609 756.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08655610 756.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08655611 756.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08655612 756.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08655613 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08655614 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08655615 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08655616 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08655617 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08655618 756.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08655619 756.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08655620 756.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08655621 756.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08655622 756.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08655623 756.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08655624 756.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08655625 756.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08655626 756.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08655627 756.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08655628 756.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08655629 756.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08655630 756.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08655631 756.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08655632 756.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08655633 756.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08655634 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08655635 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08655636 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08655637 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08655638 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08655639 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08655640 756.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08655641 756.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08655642 756.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08655643 756.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08655644 756.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08655645 756.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08655646 756.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08655647 756.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08655648 756.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08655649 756.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08655650 756.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08655651 756.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08655652 756.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08655653 756.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08655654 756.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08655655 756.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08655656 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08655657 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08655658 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08655659 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08655660 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08655661 756.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08656293 756.43359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08656294 756.43359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08656295 756.43359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08656296 756.43359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08656297 756.43365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08656298 756.43365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08656299 756.43365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08656300 756.43371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08656301 756.43371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08656302 756.43371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08656303 756.43377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08656304 756.43377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08656305 756.43377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08656306 756.43377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08656307 756.43383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08656308 756.43383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08656309 756.43383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08656310 756.43383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08656311 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08656312 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08656313 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08656314 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08656315 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08656316 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08656317 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08656318 756.43389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08656319 756.43395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08656320 756.43395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08656321 756.43395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08656322 756.43402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08656323 756.43402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08656324 756.43402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08656325 756.43408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08656326 756.43408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08656327 756.43408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08656328 756.43408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08656329 756.43414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08656330 756.43414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08656331 756.43414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08656332 756.43414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08656333 756.43420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08656334 756.43420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08656335 756.43420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08656336 756.43420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08664203 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c18 -08664204 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c18 -08664205 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c28 -08664206 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c28 -08664207 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -08664208 756.54541016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c38 -08664209 756.54547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -08664210 756.54547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c48 -08664211 756.54547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -08664212 756.54547119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c58 -08664213 756.54553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -08664214 756.54553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c68 -08664215 756.54553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -08664216 756.54553223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c78 -08664217 756.54559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -08664218 756.54559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c88 -08664219 756.54559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -08664220 756.54559326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c98 -08664221 756.54565430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -08664222 756.54565430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ca8 -08664223 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -08664224 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cb8 -08664225 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -08664226 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cc8 -08664227 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -08664228 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cd8 -08664229 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -08664230 756.54571533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ce8 -08664231 756.54577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -08664232 756.54577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13cf8 -08664233 756.54577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -08664234 756.54577637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d08 -08664235 756.54583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -08664236 756.54583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d18 -08664237 756.54583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -08664238 756.54583740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d28 -08664239 756.54589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -08664240 756.54589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d38 -08664241 756.54589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -08664242 756.54589844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d48 -08664243 756.54595947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -08664244 756.54595947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d58 -08664245 756.54602051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -08664246 756.54602051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d68 -08672375 756.66021729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -08672376 756.66021729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -08672377 756.66027832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -08672378 756.66027832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -08672379 756.66027832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -08672380 756.66027832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -08672381 756.66033936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -08672382 756.66033936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -08672383 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -08672384 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -08672385 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc8 -08672386 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc8 -08672387 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd8 -08672388 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd8 -08672389 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be8 -08672390 756.66040039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be8 -08672391 756.66046143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf8 -08672392 756.66046143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf8 -08672393 756.66046143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c08 -08672394 756.66046143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c08 -08672395 756.66052246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c18 -08672396 756.66052246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c18 -08672397 756.66052246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c28 -08672398 756.66052246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c28 -08672399 756.66058350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c38 -08672400 756.66058350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c38 -08672401 756.66058350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c48 -08672402 756.66058350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c48 -08672403 756.66064453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c58 -08672404 756.66064453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c58 -08672405 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c68 -08672406 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c68 -08672407 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c78 -08672408 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c78 -08672409 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c88 -08672410 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c88 -08672411 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c98 -08672412 756.66070557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c98 -08672413 756.66076660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca8 -08672414 756.66076660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ca8 -08672415 756.66076660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb8 -08672416 756.66076660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cb8 -08672417 756.66082764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc8 -08672418 756.66082764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23cc8 -08691872 756.93536377 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -08691873 756.93536377 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ca8 -08691874 756.93536377 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -08691875 756.93536377 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cb8 -08691876 756.93542480 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -08691877 756.93542480 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cc8 -08691878 756.93542480 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd8 -08691879 756.93548584 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cd8 -08691880 756.93548584 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce8 -08691881 756.93548584 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49ce8 -08691882 756.93554688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf8 -08691883 756.93554688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49cf8 -08691884 756.93554688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d08 -08691885 756.93554688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d08 -08691886 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d18 -08691887 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d18 -08691888 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d28 -08691889 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d28 -08691890 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d38 -08691891 756.93560791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d38 -08691892 756.93566895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d48 -08691893 756.93566895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d48 -08691894 756.93566895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d58 -08691895 756.93572998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d58 -08691896 756.93572998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d68 -08691897 756.93572998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d68 -08691898 756.93579102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d78 -08691899 756.93579102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d78 -08691900 756.93579102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d88 -08691901 756.93579102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d88 -08691902 756.93585205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d98 -08691903 756.93585205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d98 -08691904 756.93585205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da8 -08691905 756.93585205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49da8 -08691906 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db8 -08691907 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49db8 -08691908 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc8 -08691909 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dc8 -08691910 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd8 -08691911 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49dd8 -08691912 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de8 -08691913 756.93591309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49de8 -08691914 756.93597412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df8 -08691915 756.93597412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x49df8 -08696498 758.08892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08696499 758.08898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08696500 758.08898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08696501 758.08898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08696502 758.08911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08696503 758.08911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08696504 758.08923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08696505 758.08923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08696506 758.74584961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08696507 758.76733398 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08696508 758.76733398 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08696509 759.68328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08696510 759.68328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08696511 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08696512 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08696513 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08696514 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08696515 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08696516 759.68334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08696517 759.68341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08696518 759.68341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08696519 759.68341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08696520 759.68347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08696521 759.68347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08696522 759.68347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08696523 759.68353271 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08696524 759.68359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08696525 759.68359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08696526 759.68359375 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08696527 759.68365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08696528 759.68365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08696529 759.68365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08696530 759.68365479 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08696531 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08696532 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08696533 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08696534 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08696535 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08696536 759.68371582 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08696537 759.68377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08696538 759.68377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08696539 759.68377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08696540 759.68377686 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08696541 759.68383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08696542 759.68383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08696543 759.68383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08696544 759.68383789 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08696545 759.68389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08696546 759.68389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08696547 759.68389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08696548 759.68389893 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08696549 759.68395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08696550 759.68395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08696551 759.68395996 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08696552 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08696553 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08696554 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08696555 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08696556 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08696557 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08696558 759.68402100 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08696559 759.68408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08696560 759.68408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08696561 759.68408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08696562 759.68408203 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08696563 759.68414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08696564 759.68414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08696565 759.68414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08696566 759.68414307 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08696567 759.68420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08696568 759.68420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08696569 759.68420410 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08696570 759.68426514 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08696571 759.68426514 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08696572 759.68426514 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08696573 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08696574 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08696575 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08696576 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08696577 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08696578 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08696579 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08696580 759.68432617 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08696581 759.68438721 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08696582 759.68438721 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08696583 759.68438721 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08696584 759.68438721 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08696585 759.68444824 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08696586 759.68444824 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08696587 759.68444824 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08696588 759.68444824 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08696589 759.68450928 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08696590 759.68450928 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08696591 759.68457031 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08696592 759.68457031 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08696593 759.68457031 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08696594 759.68457031 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08696595 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08696596 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08696597 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08696598 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08696599 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08696600 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08696601 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08696602 759.68463135 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08696603 759.68469238 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08696604 759.68469238 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08696605 759.68469238 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08696606 759.68469238 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08696607 759.68475342 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08696608 759.68475342 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08696609 759.68481445 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08696610 759.68481445 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08696611 759.68481445 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08696612 759.68481445 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08696613 759.68487549 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08696614 759.68487549 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08696615 759.68487549 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08696616 759.68487549 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08696617 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08696618 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08696619 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08696620 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08696621 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08696622 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08696623 759.68493652 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08696624 759.68499756 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08696625 759.68499756 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08696626 759.68499756 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08696627 759.68505859 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08696628 759.68505859 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08696629 759.68505859 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08696630 759.68505859 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08696631 759.68511963 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08696632 759.68511963 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08696633 759.68518066 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08696634 759.68518066 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08696635 759.68518066 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08696636 759.68518066 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08696637 759.68524170 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08696638 759.68524170 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08696639 759.68524170 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08696640 759.68524170 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08696641 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08696642 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08696643 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08696644 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08696645 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08696646 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08696647 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08696648 759.68530273 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08696649 759.68536377 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08696650 759.68536377 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08696651 759.68542480 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08696652 759.68542480 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08696653 759.68542480 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08696654 759.68542480 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08696655 759.68548584 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08696656 759.68548584 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08696657 759.68548584 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08696658 759.68548584 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08696659 759.68554688 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08696660 759.68554688 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08696661 759.68554688 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08696662 759.68554688 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08696663 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08696664 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08696665 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08696666 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08696667 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08696668 759.68560791 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08696669 759.68566895 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08696670 759.68566895 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08696671 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08696672 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08696673 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08696674 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08696675 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08696676 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08696677 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08696678 759.68591309 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08696679 759.68597412 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08696680 759.68597412 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08696681 759.68603516 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08696682 759.68603516 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08696683 759.68603516 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08696684 759.68603516 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08696685 759.68609619 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08696686 759.68609619 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08696687 759.68609619 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08696688 759.68609619 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08696689 759.68615723 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08696690 759.68615723 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08696691 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08696692 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08696693 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08696694 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08696695 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08696696 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08696697 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08696698 759.68621826 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08696699 759.68627930 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08696700 759.68627930 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08696701 759.68634033 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08696702 759.68634033 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08696703 759.68634033 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08696704 759.68634033 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08696705 759.68640137 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08696706 759.68640137 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08696707 759.68640137 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08696708 759.68640137 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08696709 759.68646240 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08696710 759.68646240 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08696711 759.68646240 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08696712 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08696713 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08696714 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08696715 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08696716 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08696717 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08696718 759.68652344 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08696719 759.68670654 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08696720 759.68670654 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08696721 759.68676758 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08696722 759.68676758 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08696723 759.68676758 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08696724 759.68682861 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08696725 759.68682861 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08696726 759.68682861 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08696727 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08696728 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08696729 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08696730 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08696731 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08696732 759.68688965 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08696733 759.68695068 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08696734 759.68695068 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08696735 759.68701172 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08696736 759.68701172 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08696737 759.68707275 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08696738 759.68707275 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08696739 759.68707275 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08696740 759.68713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08696741 759.68713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08696742 759.68713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08696743 759.68719482 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08696744 759.68725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08696745 759.68731689 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08696746 759.68731689 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08696747 759.68737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08696748 759.68737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08696749 759.68737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08696750 759.68737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08696751 759.68743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08696752 759.68743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08696753 759.68743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08696754 759.68743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08696755 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08696756 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08696757 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08696758 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08696759 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08696760 759.68750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08696761 759.68756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08696762 759.68756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08696763 759.68756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08696764 759.68756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08696765 759.68762207 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08696766 759.68762207 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08696767 759.68768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08696768 759.68768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08696769 759.68768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08696770 759.68768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08696771 759.68774414 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08696772 759.68774414 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08696773 759.68774414 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08696774 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08696775 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08696776 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08696777 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08696778 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08696779 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08696780 759.68780518 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08696781 759.68786621 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08696782 759.68786621 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08696783 759.68786621 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08696784 759.68792725 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08696785 759.68792725 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08696786 759.68792725 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08696787 759.68798828 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08696788 759.68798828 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08696789 759.68798828 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08696790 759.68798828 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08696791 759.68804932 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08696792 759.68804932 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08696793 759.68804932 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08696794 759.68804932 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08696795 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08696796 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08696797 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08696798 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08696799 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08696800 759.68811035 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08696801 759.68817139 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08696802 759.68817139 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08696803 759.68817139 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08696804 759.68817139 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08696805 759.68823242 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08696806 759.68823242 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08696807 759.68823242 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08696808 759.68823242 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08696809 759.68829346 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08696810 759.68829346 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08696811 759.68835449 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08696812 759.68835449 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08696813 759.68835449 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08696814 759.68835449 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08696815 759.68841553 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08696816 759.68841553 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08696817 759.68841553 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08696818 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08696819 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08696820 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08696821 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08696822 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08696823 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08696824 759.68847656 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08696825 759.68853760 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08696826 759.68853760 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08696827 759.68859863 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08696828 759.68859863 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08696829 759.68859863 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08696830 759.68859863 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08696831 759.68865967 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08696832 759.68865967 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08696833 759.68865967 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08696834 759.68865967 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08696835 759.68872070 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08696836 759.68872070 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08696837 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08696838 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08696839 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08696840 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08696841 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08696842 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08696843 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08696844 759.68878174 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08696845 759.68884277 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08696846 759.68884277 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08696847 759.68884277 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08696848 759.68884277 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08696849 759.68890381 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08696850 759.68890381 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08696851 759.68896484 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08696852 759.68896484 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08696853 759.68896484 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08696854 759.68896484 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08696855 759.68902588 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08696856 759.68902588 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08696857 759.68902588 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08696858 759.68902588 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08696859 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08696860 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08696861 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08696862 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08696863 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08696864 759.68908691 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08696865 759.68914795 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08696866 759.68914795 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08696867 759.68914795 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08696868 759.68914795 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08696869 759.68920898 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08696870 759.68920898 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08696871 759.68927002 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08696872 759.68927002 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08696873 759.68927002 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08696874 759.68927002 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08696875 759.68933105 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08696876 759.68933105 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08696877 759.68933105 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08696878 759.68933105 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08696879 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08696880 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08696881 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08696882 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08696883 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08696884 759.68939209 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08696885 759.68945313 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08696886 759.68945313 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08696887 759.68945313 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08696888 759.68945313 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08696889 759.68951416 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08696890 759.68951416 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08696891 759.68957520 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08696892 759.68957520 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08696893 759.68957520 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08696894 759.68957520 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08696895 759.68963623 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08696896 759.68963623 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08696897 759.68963623 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08696898 759.68963623 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08696899 759.68969727 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08696900 759.68969727 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08696901 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08696902 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08696903 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08696904 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08696905 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08696906 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08696907 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08696908 759.68975830 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08696909 759.68981934 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08696910 759.68981934 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08696911 759.68981934 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08696912 759.68981934 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08696913 759.68988037 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08696914 759.68988037 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08696915 759.68988037 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08696916 759.68994141 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08696917 759.68994141 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08696918 759.68994141 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08696919 759.69000244 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08696920 759.69000244 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08696921 759.69000244 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08696922 759.69000244 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08696923 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08696924 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08696925 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08696926 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08696927 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08696928 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08696929 759.69006348 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08696930 759.69012451 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08696931 759.69012451 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08696932 759.69012451 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08696933 759.69018555 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08696934 759.69018555 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08696935 759.69018555 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08696936 759.69018555 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08696937 759.69024658 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08696938 759.69024658 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08696939 759.69024658 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08696940 759.69024658 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08696941 759.69030762 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08696942 759.69030762 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08696943 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08696944 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08696945 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08696946 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08696947 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08696948 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08696949 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08696950 759.69036865 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08696951 759.69042969 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08696952 759.69042969 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08696953 759.69042969 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08696954 759.69042969 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08696955 759.69049072 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08696956 759.69049072 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08696957 759.69049072 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08696958 759.69049072 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08696959 759.69055176 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08696960 759.69055176 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08696961 759.69055176 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08696962 759.69061279 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08696963 759.69061279 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08696964 759.69061279 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08696965 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08696966 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08696967 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08696968 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08696969 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08696970 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08696971 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08696972 759.69067383 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08696973 759.69073486 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08696974 759.69073486 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08696975 759.69073486 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08696976 759.69073486 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08696977 759.69079590 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08696978 759.69079590 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08696979 759.69079590 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08696980 759.69079590 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08696981 759.69085693 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08696982 759.69085693 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08696983 759.69091797 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08696984 759.69091797 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08696985 759.69091797 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08696986 759.69091797 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08696987 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08696988 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08696989 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08696990 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08696991 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08696992 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08696993 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08696994 759.69097900 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08696995 759.69104004 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08696996 759.69104004 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08696997 759.69104004 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08696998 759.69104004 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08696999 759.69110107 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08697000 759.69110107 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08697001 759.69116211 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08697002 759.69116211 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08697003 759.69116211 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08697004 759.69116211 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08697005 759.69122314 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08697006 759.69122314 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08697007 759.69122314 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08697008 759.69122314 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08697009 759.69128418 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08697010 759.69128418 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08697011 759.69128418 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08697012 759.69128418 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08697013 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08697014 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08697015 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08697016 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08697017 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08697018 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08697019 759.69134521 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08697020 759.69140625 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08697021 759.69140625 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08697022 759.69140625 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08697023 759.69146729 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08697024 759.69146729 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08697025 759.69146729 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08697026 759.69146729 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08697027 759.69152832 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08697028 759.69152832 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08697029 759.69152832 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08697030 759.69152832 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08697031 759.69158936 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08697032 759.69158936 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08697033 759.69158936 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08697034 759.69158936 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08697035 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08697036 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08697037 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08697038 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08697039 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08697040 759.69165039 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08697041 759.69171143 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08697042 759.69171143 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08697043 759.69177246 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08697044 759.69177246 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08697045 759.69177246 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08697046 759.69177246 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08697047 759.69183350 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08697048 759.69183350 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08697049 759.69183350 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08697050 759.69183350 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08697051 759.69189453 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08697052 759.69189453 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08697053 759.69189453 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08697054 759.69189453 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08697055 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08697056 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08697057 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08697058 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08697059 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08697060 759.69195557 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08697061 759.69201660 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08697062 759.69201660 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08697063 759.69201660 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08697064 759.69201660 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08697065 759.69207764 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08697066 759.69207764 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08697067 759.69207764 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08697068 759.69207764 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08697069 759.69213867 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08697070 759.69213867 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08697071 759.69213867 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08697072 759.69213867 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08697073 759.69219971 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08697074 759.69219971 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08697075 759.69219971 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08697076 759.69219971 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08697077 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08697078 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08697079 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08697080 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08697081 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08697082 759.69226074 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08697083 759.69232178 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08697084 759.69232178 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08697085 759.69232178 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08697086 759.69232178 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08697087 759.69238281 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08697088 759.69238281 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08697089 759.69238281 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08697090 759.69238281 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08697091 759.69244385 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08697092 759.69244385 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08697093 759.69244385 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08697094 759.69244385 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08697095 759.69250488 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08697096 759.69250488 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08697097 759.69250488 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08697098 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08697099 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08697100 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08697101 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08697102 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08697103 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08697104 759.69256592 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08697105 759.69281006 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08697106 759.69281006 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08697107 759.69281006 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08697108 759.69281006 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08697109 759.69287109 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08697110 759.69287109 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08697111 759.69287109 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08697112 759.69287109 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08697113 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08697114 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08697115 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08697116 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08697117 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08697118 759.69293213 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08697119 759.69299316 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08697120 759.69299316 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08697121 759.69299316 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08697122 759.69299316 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08697123 759.69305420 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08697124 759.69305420 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08697125 759.69305420 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08697126 759.69305420 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08697127 759.69311523 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08697128 759.69311523 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08697129 759.69311523 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08697130 759.69311523 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08697131 759.69317627 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08697132 759.69317627 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08697133 759.69317627 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08697134 759.69317627 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08697135 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08697136 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08697137 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08697138 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08697139 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08697140 759.69323730 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08697141 759.69329834 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08697142 759.69329834 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08697143 759.69329834 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08697144 759.69329834 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08697145 759.69335938 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08697146 759.69335938 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08697147 759.69335938 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08697148 759.69335938 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08697149 759.69342041 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08697150 759.69342041 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08697151 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08697152 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08697153 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08697154 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08697155 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08697156 759.69354248 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08697157 759.69360352 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08697158 759.69360352 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08697159 759.69360352 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08697160 759.69366455 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08697161 759.69366455 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08697162 759.69366455 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08697163 759.69372559 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08697164 759.69372559 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08697165 759.69372559 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08697166 759.69372559 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08697167 759.69378662 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08697168 759.69378662 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08697169 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08697170 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08697171 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08697172 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08697173 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08697174 759.69384766 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08697175 759.69403076 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08697176 759.69403076 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08697177 759.69403076 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08697178 759.69403076 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08697179 759.69409180 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08697180 759.69409180 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08697181 759.69409180 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08697182 759.69409180 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08697183 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08697184 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08697185 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08697186 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08697187 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08697188 759.69415283 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08697189 759.69421387 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08697190 759.69421387 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08697191 759.69421387 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08697192 759.69421387 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08697193 759.69427490 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08697194 759.69427490 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08697195 759.69427490 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08697196 759.69427490 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08697197 759.69433594 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08697198 759.69433594 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08697199 759.69433594 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08697200 759.69433594 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08697201 759.69439697 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08697202 759.69439697 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08697203 759.69439697 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08697204 759.69439697 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08697205 759.69445801 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08697206 759.69445801 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08697207 759.69445801 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08697208 759.69451904 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08697209 759.69451904 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08697210 759.69451904 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08697211 759.69451904 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08697212 759.69451904 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08712470 759.92980957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20300 -08712471 759.92980957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -08712472 759.92980957 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20310 -08712473 759.92987061 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -08712474 759.92987061 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20320 -08712475 759.92987061 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -08712476 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20330 -08712477 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -08712478 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20340 -08712479 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -08712480 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20350 -08712481 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -08712482 759.92993164 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20360 -08712483 759.92999268 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -08712484 759.92999268 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20370 -08712485 759.92999268 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -08712486 759.92999268 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20380 -08712487 759.93005371 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -08712488 759.93005371 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20390 -08712489 759.93005371 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -08712490 759.93005371 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203a0 -08712491 759.93011475 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -08712492 759.93011475 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203b0 -08712493 759.93011475 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -08712494 759.93011475 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203c0 -08712495 759.93017578 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -08712496 759.93017578 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203d0 -08712497 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -08712498 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203e0 -08712499 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -08712500 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x203f0 -08712501 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -08712502 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20400 -08712503 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -08712504 759.93023682 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20410 -08712505 759.93029785 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -08712506 759.93029785 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20420 -08712507 759.93029785 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -08712508 759.93029785 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20430 -08712509 759.93035889 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -08712510 759.93035889 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20440 -08712511 759.93035889 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -08712512 759.93035889 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20450 -08712513 759.93041992 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x20460 -08717977 760.01568604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -08717978 760.01568604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af20 -08717979 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -08717980 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af30 -08717981 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -08717982 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af40 -08717983 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -08717984 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af50 -08717985 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -08717986 760.01574707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af60 -08717987 760.01580811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -08717988 760.01580811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af70 -08717989 760.01586914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -08717990 760.01586914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af80 -08717991 760.01586914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -08717992 760.01586914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af90 -08717993 760.01593018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -08717994 760.01593018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afa0 -08717995 760.01593018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -08717996 760.01593018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afb0 -08717997 760.01599121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -08717998 760.01599121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afc0 -08717999 760.01599121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -08718000 760.01599121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afd0 -08718001 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -08718002 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2afe0 -08718003 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -08718004 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aff0 -08718005 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -08718006 760.01605225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b000 -08718007 760.01611328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -08718008 760.01611328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b010 -08718009 760.01611328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -08718010 760.01611328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b020 -08718011 760.01617432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -08718012 760.01617432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b030 -08718013 760.01623535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -08718014 760.01623535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b040 -08718015 760.01623535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -08718016 760.01623535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b050 -08718017 760.01629639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -08718018 760.01629639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b060 -08718019 760.01629639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -08718020 760.01629639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b070 -08724519 760.11145020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -08724520 760.11145020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b90 -08724521 760.11145020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -08724522 760.11145020 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba0 -08724523 760.11151123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -08724524 760.11151123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb0 -08724525 760.11151123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -08724526 760.11151123 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc0 -08724527 760.11157227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -08724528 760.11157227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd0 -08724529 760.11157227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -08724530 760.11157227 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be0 -08724531 760.11163330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -08724532 760.11163330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf0 -08724533 760.11163330 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -08724534 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c00 -08724535 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -08724536 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c10 -08724537 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -08724538 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c20 -08724539 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -08724540 760.11169434 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c30 -08724541 760.11175537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -08724542 760.11175537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c40 -08724543 760.11175537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -08724544 760.11175537 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c50 -08724545 760.11181641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -08724546 760.11181641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c60 -08724547 760.11181641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -08724548 760.11181641 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c70 -08724549 760.11187744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -08724550 760.11187744 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c80 -08724551 760.11193848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -08724552 760.11193848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c90 -08724553 760.11193848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -08724554 760.11193848 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca0 -08724555 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -08724556 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cb0 -08724557 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -08724558 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cc0 -08724559 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -08724560 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37cd0 -08724561 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -08724562 760.11199951 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ce0 -08732739 760.23303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -08732740 760.23303223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c70 -08732741 760.23309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -08732742 760.23309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c80 -08732743 760.23309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -08732744 760.23309326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c90 -08732745 760.23315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -08732746 760.23315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ca0 -08732747 760.23315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -08732748 760.23315430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cb0 -08732749 760.23321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -08732750 760.23321533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cc0 -08732751 760.23327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -08732752 760.23327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cd0 -08732753 760.23327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -08732754 760.23327637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47ce0 -08732755 760.23333740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -08732756 760.23333740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47cf0 -08732757 760.23333740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -08732758 760.23333740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d00 -08732759 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -08732760 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d10 -08732761 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -08732762 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d20 -08732763 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -08732764 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d30 -08732765 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -08732766 760.23339844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d40 -08732767 760.23345947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -08732768 760.23345947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d50 -08732769 760.23345947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -08732770 760.23352051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d60 -08732771 760.23352051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -08732772 760.23352051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d70 -08732773 760.23358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -08732774 760.23358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d80 -08732775 760.23358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -08732776 760.23358154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d90 -08732777 760.23364258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -08732778 760.23364258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47da0 -08732779 760.23364258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -08732780 760.23364258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47db0 -08732781 760.23370361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -08732782 760.23370361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x47dc0 -08738404 760.59667969 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08738405 760.59667969 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08738406 760.59674072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08738407 760.59674072 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08738408 760.59686279 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08738409 760.59686279 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08738410 760.59692383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08738411 760.59692383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08738412 760.76953125 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08738413 760.79351807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08738414 760.79351807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08738415 762.00079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08738416 762.00079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08738417 762.00079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08738418 762.00079346 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08738419 762.00085449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08738420 762.00085449 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08738421 762.00091553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08738422 762.00091553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08738423 762.00091553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08738424 762.00091553 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08738425 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08738426 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08738427 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08738428 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08738429 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08738430 762.00097656 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08738431 762.00103760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08738432 762.00103760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08738433 762.00103760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08738434 762.00103760 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08738435 762.00109863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08738436 762.00109863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08738437 762.00109863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08738438 762.00109863 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08738439 762.00115967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08738440 762.00115967 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08738441 762.00122070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08738442 762.00122070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08738443 762.00122070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08738444 762.00122070 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08738445 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08738446 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08738447 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08738448 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08738449 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08738450 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08738451 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08738452 762.00128174 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08738453 762.00134277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08738454 762.00134277 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08738455 762.00140381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08738456 762.00140381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08738457 762.00140381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08738458 762.00140381 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08738459 762.00146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08738460 762.00146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08738461 762.00146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08738462 762.00146484 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08738463 762.00152588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08738464 762.00152588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08738465 762.00152588 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08738466 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08738467 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08738468 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08738469 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08738470 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08738471 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08738472 762.00158691 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08738473 762.00164795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08738474 762.00164795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08738475 762.00164795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08738476 762.00164795 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08738477 762.00170898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08738478 762.00170898 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08738479 762.00177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08738480 762.00177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08738481 762.00177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08738482 762.00177002 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08738483 762.00183105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08738484 762.00183105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08738485 762.00183105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08738486 762.00183105 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08738487 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08738488 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08738489 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08738490 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08738491 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08738492 762.00189209 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08738493 762.00195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08738494 762.00195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08738495 762.00195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08738496 762.00195313 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08738497 762.00201416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08738498 762.00201416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08738499 762.00201416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08738500 762.00201416 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08738501 762.00207520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08738502 762.00207520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08738503 762.00207520 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08738504 762.00213623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08738505 762.00213623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08738506 762.00213623 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08738507 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08738508 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08738509 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08738510 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08738511 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08738512 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08738513 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08738514 762.00219727 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08738515 762.00225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08738516 762.00225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08738517 762.00225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08738518 762.00225830 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08738519 762.00231934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08738520 762.00231934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08738521 762.00231934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08738522 762.00231934 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08738523 762.00238037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08738524 762.00238037 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08738525 762.00244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08738526 762.00244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08738527 762.00244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08738528 762.00244141 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08738529 762.00250244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08738530 762.00250244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08738531 762.00250244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08738532 762.00250244 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08738533 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08738534 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08738535 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08738536 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08738537 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08738538 762.00256348 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08738539 762.00262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08738540 762.00262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08738541 762.00262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08738542 762.00262451 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08738543 762.00268555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08738544 762.00268555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08738545 762.00268555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08738546 762.00268555 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08738547 762.00274658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08738548 762.00274658 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08738549 762.00280762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08738550 762.00280762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08738551 762.00280762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08738552 762.00280762 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08738553 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08738554 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08738555 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08738556 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08738557 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08738558 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08738559 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08738560 762.00286865 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08738561 762.00292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08738562 762.00292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08738563 762.00292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08738564 762.00292969 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08738565 762.00299072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08738566 762.00299072 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08738567 762.00305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08738568 762.00305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08738569 762.00305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08738570 762.00305176 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08738571 762.00311279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08738572 762.00311279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08738573 762.00311279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08738574 762.00311279 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08738575 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08738576 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08738577 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08738578 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08738579 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08738580 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08738581 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08738582 762.00317383 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08738583 762.00323486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08738584 762.00323486 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08738585 762.00329590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08738586 762.00329590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08738587 762.00329590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08738588 762.00329590 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08738589 762.00335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08738590 762.00335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08738591 762.00335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08738592 762.00335693 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08738593 762.00341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08738594 762.00341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08738595 762.00341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08738596 762.00341797 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08738597 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08738598 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08738599 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08738600 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08738601 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08738602 762.00347900 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08738603 762.00354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08738604 762.00354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08738605 762.00354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08738606 762.00354004 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08738607 762.00360107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08738608 762.00360107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08738609 762.00360107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08738610 762.00360107 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08738611 762.00366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08738612 762.00366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08738613 762.00366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08738614 762.00366211 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08738615 762.00372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08738616 762.00372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08738617 762.00372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08738618 762.00372314 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08738619 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08738620 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08738621 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08738622 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08738623 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08738624 762.00378418 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08738625 762.00384521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08738626 762.00384521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08738627 762.00384521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08738628 762.00384521 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08738629 762.00390625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08738630 762.00390625 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08738631 762.00396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08738632 762.00396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08738633 762.00396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08738634 762.00396729 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08738635 762.00402832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08738636 762.00402832 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08738637 762.00408936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08738638 762.00408936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08738639 762.00408936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08738640 762.00408936 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08738641 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08738642 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08738643 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08738644 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08738645 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08738646 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08738647 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08738648 762.00415039 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08738649 762.00421143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08738650 762.00421143 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08738651 762.00427246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08738652 762.00427246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08738653 762.00427246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08738654 762.00427246 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08738655 762.00433350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08738656 762.00433350 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08738657 762.00439453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08738658 762.00439453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08738659 762.00439453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08738660 762.00439453 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08738661 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08738662 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08738663 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08738664 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08738665 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08738666 762.00445557 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08738667 762.00451660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08738668 762.00451660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08738669 762.00451660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08738670 762.00451660 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08738671 762.00457764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08738672 762.00457764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08738673 762.00457764 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08738674 762.00463867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08738675 762.00463867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08738676 762.00463867 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08738677 762.00469971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08738678 762.00469971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08738679 762.00469971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08738680 762.00469971 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08738681 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08738682 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08738683 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08738684 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08738685 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08738686 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08738687 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08738688 762.00476074 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08738689 762.00482178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08738690 762.00482178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08738691 762.00482178 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08738692 762.00488281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08738693 762.00488281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08738694 762.00488281 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08738695 762.00494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08738696 762.00494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08738697 762.00494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08738698 762.00494385 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08738699 762.00500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08738700 762.00500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08738701 762.00500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08738702 762.00500488 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08738703 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08738704 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08738705 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08738706 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08738707 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08738708 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08738709 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08738710 762.00506592 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08738711 762.00512695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08738712 762.00512695 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08738713 762.00518799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08738714 762.00518799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08738715 762.00518799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08738716 762.00518799 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08738717 762.00524902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08738718 762.00524902 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08738719 762.00531006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08738720 762.00531006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08738721 762.00531006 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08738722 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08738723 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08738724 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08738725 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08738726 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08738727 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08738728 762.00537109 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08738729 762.00543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08738730 762.00543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08738731 762.00543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08738732 762.00543213 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08738733 762.00549316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08738734 762.00549316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08738735 762.00549316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08738736 762.00549316 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08738737 762.00555420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08738738 762.00555420 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08738739 762.00561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08738740 762.00561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08738741 762.00561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08738742 762.00561523 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08738743 762.00567627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08738744 762.00567627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08738745 762.00567627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08738746 762.00567627 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08738747 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08738748 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08738749 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08738750 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08738751 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08738752 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08738753 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08738754 762.00573730 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08738755 762.00579834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08738756 762.00579834 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08738757 762.00585938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08738758 762.00585938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08738759 762.00585938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08738760 762.00585938 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08738761 762.00592041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08738762 762.00592041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08738763 762.00592041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08738764 762.00592041 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08738765 762.00598145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08738766 762.00598145 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08738767 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08738768 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08738769 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08738770 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08738771 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08738772 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08738773 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08738774 762.00604248 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08738775 762.00610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08738776 762.00610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08738777 762.00610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08738778 762.00610352 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08738779 762.00616455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08738780 762.00616455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08738781 762.00616455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08738782 762.00616455 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08738783 762.00622559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08738784 762.00622559 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08738785 762.00628662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08738786 762.00628662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08738787 762.00628662 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08738788 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08738789 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08738790 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08738791 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08738792 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08738793 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08738794 762.00634766 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08738795 762.00640869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08738796 762.00640869 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08738797 762.00646973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08738798 762.00646973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08738799 762.00646973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08738800 762.00646973 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08738801 762.00653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08738802 762.00653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08738803 762.00653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08738804 762.00653076 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08738805 762.00659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08738806 762.00659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08738807 762.00659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08738808 762.00659180 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08738809 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08738810 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08738811 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08738812 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08738813 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08738814 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08738815 762.00665283 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08738816 762.00671387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08738817 762.00671387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08738818 762.00671387 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08738819 762.00677490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08738820 762.00677490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08738821 762.00677490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08738822 762.00677490 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08738823 762.00683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08738824 762.00683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08738825 762.00683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08738826 762.00683594 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08738827 762.00689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08738828 762.00689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08738829 762.00689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08738830 762.00689697 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08738831 762.00695801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08738832 762.00695801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08738833 762.00695801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08738834 762.00695801 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08738835 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08738836 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08738837 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08738838 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08738839 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08738840 762.00701904 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08738841 762.00708008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08738842 762.00708008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08738843 762.00708008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08738844 762.00708008 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08738845 762.00714111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08738846 762.00714111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08738847 762.00714111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08738848 762.00714111 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08738849 762.00720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08738850 762.00720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08738851 762.00720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08738852 762.00720215 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08738853 762.00726318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08738854 762.00726318 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08739508 762.01702881 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08739509 762.01708984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08739510 762.01708984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08739511 762.01708984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08739512 762.01708984 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08739513 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08739514 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08739515 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08739516 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08739517 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08739518 762.01715088 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08739519 762.01721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08739520 762.01721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08739521 762.01721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08739522 762.01721191 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08739523 762.01727295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08739524 762.01727295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08739525 762.01727295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08739526 762.01727295 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08739527 762.01733398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08739528 762.01733398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08739529 762.01733398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08739530 762.01733398 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08739531 762.01739502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08739532 762.01739502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08739533 762.01739502 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08739534 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08739535 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08739536 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08739537 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08739538 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08739539 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08739540 762.01745605 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08739541 762.01751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08739542 762.01751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08739543 762.01751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08739544 762.01751709 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08739545 762.01757813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08739546 762.01757813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08739547 762.01757813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08739548 762.01757813 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08739549 762.01763916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08739550 762.01763916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08739551 762.01763916 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08745245 762.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -08745246 762.10260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5b8 -08745247 762.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -08745248 762.10266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5c8 -08745249 762.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -08745250 762.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5d8 -08745251 762.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -08745252 762.10272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5e8 -08745253 762.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -08745254 762.10278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f8 -08745255 762.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -08745256 762.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe608 -08745257 762.10284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -08745258 762.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe618 -08745259 762.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -08745260 762.10290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe628 -08745261 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -08745262 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe638 -08745263 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -08745264 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe648 -08745265 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -08745266 762.10296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe658 -08745267 762.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -08745268 762.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe668 -08745269 762.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -08745270 762.10302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe678 -08745271 762.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -08745272 762.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe688 -08745273 762.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -08745274 762.10308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -08745275 762.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -08745276 762.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -08745277 762.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -08745278 762.10314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -08745279 762.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -08745280 762.10321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -08745281 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -08745282 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -08745283 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -08745284 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -08745285 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -08745286 762.10327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -08745287 762.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -08745288 762.10333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -08751597 762.19390869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac38 -08751598 762.19396973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac38 -08751599 762.19396973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac48 -08751600 762.19396973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac48 -08751601 762.19403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac58 -08751602 762.19403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac58 -08751603 762.19403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac68 -08751604 762.19403076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac68 -08751605 762.19409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac78 -08751606 762.19409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac78 -08751607 762.19409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac88 -08751608 762.19409180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac88 -08751609 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac98 -08751610 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac98 -08751611 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca8 -08751612 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aca8 -08751613 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb8 -08751614 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acb8 -08751615 762.19415283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc8 -08751616 762.19421387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acc8 -08751617 762.19421387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd8 -08751618 762.19421387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acd8 -08751619 762.19427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace8 -08751620 762.19427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ace8 -08751621 762.19427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf8 -08751622 762.19427490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1acf8 -08751623 762.19433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad08 -08751624 762.19433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad08 -08751625 762.19433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad18 -08751626 762.19433594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad18 -08751627 762.19439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad28 -08751628 762.19439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad28 -08751629 762.19439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad38 -08751630 762.19439697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad38 -08751631 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad48 -08751632 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad48 -08751633 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad58 -08751634 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad58 -08751635 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad68 -08751636 762.19445801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad68 -08751637 762.19451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad78 -08751638 762.19451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad78 -08751639 762.19451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad88 -08751640 762.19451904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad88 -08768059 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea8 -08768060 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aea8 -08768061 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb8 -08768062 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aeb8 -08768063 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec8 -08768064 762.43560791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aec8 -08768065 762.43566895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -08768066 762.43566895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aed8 -08768067 762.43566895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee8 -08768068 762.43566895 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aee8 -08768069 762.43572998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef8 -08768070 762.43572998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aef8 -08768071 762.43572998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af08 -08768072 762.43579102 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af08 -08768073 762.43579102 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af18 -08768074 762.43579102 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af18 -08768075 762.43585205 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af28 -08768076 762.43585205 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af28 -08768077 762.43585205 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af38 -08768078 762.43585205 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af38 -08768079 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -08768080 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af48 -08768081 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -08768082 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af58 -08768083 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -08768084 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af68 -08768085 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -08768086 762.43591309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af78 -08768087 762.43597412 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -08768088 762.43597412 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af88 -08768089 762.43597412 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -08768090 762.43597412 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af98 -08768091 762.43603516 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -08768092 762.43603516 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afa8 -08768093 762.43603516 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -08768094 762.43609619 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afb8 -08768095 762.43609619 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -08768096 762.43609619 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afc8 -08768097 762.43615723 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -08768098 762.43615723 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afd8 -08768099 762.43615723 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -08768100 762.43615723 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3afe8 -08768101 762.43621826 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -08768102 762.43621826 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aff8 -08773771 762.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46128 -08773772 762.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46128 -08773773 762.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46138 -08773774 762.51831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46138 -08773775 762.51837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46148 -08773776 762.51837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46148 -08773777 762.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -08773778 762.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46158 -08773779 762.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -08773780 762.51843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46168 -08773781 762.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -08773782 762.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46178 -08773783 762.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46188 -08773784 762.51849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46188 -08773785 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46198 -08773786 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46198 -08773787 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a8 -08773788 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461a8 -08773789 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b8 -08773790 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461b8 -08773791 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -08773792 762.51855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461c8 -08773793 762.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -08773794 762.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461d8 -08773795 762.51861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -08773796 762.51867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461e8 -08773797 762.51867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -08773798 762.51867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x461f8 -08773799 762.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46208 -08773800 762.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46208 -08773801 762.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46218 -08773802 762.51873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46218 -08773803 762.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46228 -08773804 762.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46228 -08773805 762.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46238 -08773806 762.51879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46238 -08773807 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46248 -08773808 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46248 -08773809 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46258 -08773810 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46258 -08773811 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46268 -08773812 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46268 -08773813 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46278 -08773814 762.51885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46278 -08780129 762.60961914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d8 -08780130 762.60961914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527d8 -08780131 762.60968018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e8 -08780132 762.60968018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527e8 -08780133 762.60968018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f8 -08780134 762.60968018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x527f8 -08780135 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52808 -08780136 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52808 -08780137 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52818 -08780138 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52818 -08780139 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52828 -08780140 762.60974121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52828 -08780141 762.60980225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52838 -08780142 762.60980225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52838 -08780143 762.60980225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52848 -08780144 762.60980225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52848 -08780145 762.60986328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52858 -08780146 762.60986328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52858 -08780147 762.60986328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -08780148 762.60986328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52868 -08780149 762.60992432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -08780150 762.60992432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52878 -08780151 762.60992432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -08780152 762.60992432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52888 -08780153 762.60998535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -08780154 762.60998535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52898 -08780155 762.60998535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -08780156 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528a8 -08780157 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b8 -08780158 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528b8 -08780159 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -08780160 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528c8 -08780161 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -08780162 762.61004639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528d8 -08780163 762.61010742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -08780164 762.61010742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528e8 -08780165 762.61010742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -08780166 762.61010742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x528f8 -08780167 762.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -08780168 762.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52908 -08780169 762.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -08780170 762.61016846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52918 -08780171 762.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -08780172 762.61022949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52928 -08780301 762.79418945 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08780302 762.81719971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780303 762.81719971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780304 763.10498047 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780305 763.10504150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780306 763.10504150 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780307 763.10510254 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08780308 763.10516357 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780309 763.10516357 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08780310 763.10522461 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780311 763.10528564 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08780312 764.81982422 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08780313 764.84075928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780314 764.84082031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780315 765.61132813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780316 765.61132813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780317 765.61138916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780318 765.61138916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08780319 765.61145020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780320 765.61145020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08780321 765.61157227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08780322 765.61157227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08780323 766.60736084 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780324 766.64819336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780325 766.68963623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780326 766.73052979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780327 766.77099609 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780328 766.81182861 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780329 766.84301758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08780330 766.85333252 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780331 766.86517334 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780332 766.86517334 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08780333 766.89416504 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780334 766.93511963 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780335 766.97613525 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780336 767.01733398 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780337 767.05804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780338 767.09906006 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780339 767.14001465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780340 767.18121338 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780341 767.22204590 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780342 767.26306152 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780343 767.30401611 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780344 767.34484863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780345 767.38586426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780346 767.42681885 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780347 767.46783447 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780348 767.50909424 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780349 767.54986572 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780350 767.59075928 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08780351 767.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08780352 767.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08780353 767.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08780354 767.61352539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08780355 767.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08780356 767.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08780357 767.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08780358 767.61358643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08780359 767.61364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08780360 767.61364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08780361 767.61364746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08780362 767.61370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08780363 767.61370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08780364 767.61370850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08780365 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08780366 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08780367 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08780368 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08780369 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08780370 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08780371 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08780372 767.61376953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08780373 767.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08780374 767.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08780375 767.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08780376 767.61383057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08780377 767.61389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08780378 767.61389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08780379 767.61389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08780380 767.61389160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08780381 767.61395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08780382 767.61395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08780383 767.61395264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08780384 767.61401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08780385 767.61401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08780386 767.61401367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08780387 767.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08780388 767.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08780389 767.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08780390 767.61407471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08780391 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08780392 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08780393 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08780394 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08780395 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08780396 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08780397 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08780398 767.61413574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08780399 767.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08780400 767.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08780401 767.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08780402 767.61419678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08780403 767.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08780404 767.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08780405 767.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08780406 767.61425781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08780407 767.61431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08780408 767.61431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08780409 767.61431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08780410 767.61431885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08780411 767.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08780412 767.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08780413 767.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08780414 767.61437988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08780415 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08780416 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08780417 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08780418 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08780419 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08780420 767.61444092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08780421 767.61450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08780422 767.61450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08780423 767.61450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08780424 767.61450195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08780425 767.61456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08780426 767.61456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08780427 767.61456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08780428 767.61456299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08780429 767.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08780430 767.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08780431 767.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08780432 767.61462402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08780433 767.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08780434 767.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08780435 767.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08780436 767.61468506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08780437 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08780438 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08780439 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08780440 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08780441 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08780442 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08780443 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08780444 767.61474609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08780445 767.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08780446 767.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08780447 767.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08780448 767.61480713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08780449 767.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08780450 767.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08780451 767.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08780452 767.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08780453 767.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08780454 767.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08780455 767.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08780456 767.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08780457 767.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08780458 767.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08780459 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08780460 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08780461 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08780462 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08780463 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08780464 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08780465 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08780466 767.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08780467 767.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08780468 767.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08780469 767.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08780470 767.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08780471 767.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08780472 767.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08780473 767.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08780474 767.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08780475 767.61523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08780476 767.61523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08780477 767.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08780478 767.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08780479 767.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08780480 767.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08780481 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08780482 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08780483 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08780484 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08780485 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08780486 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08780487 767.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08780488 767.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08780489 767.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08780490 767.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08780491 767.61547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08780492 767.61547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08780493 767.61547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08780494 767.61547852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08780495 767.61553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08780496 767.61553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08780497 767.61553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08780498 767.61553955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08780499 767.61560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08780500 767.61560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08780501 767.61560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08780502 767.61560059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08780503 767.61566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08780504 767.61566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08780505 767.61566162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08780506 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08780507 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08780508 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08780509 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08780510 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08780511 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08780512 767.61572266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08780513 767.61578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08780514 767.61578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08780515 767.61578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08780516 767.61578369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08780517 767.61584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08780518 767.61584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08780519 767.61584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08780520 767.61584473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08780521 767.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08780522 767.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08780523 767.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08780524 767.61590576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08780525 767.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08780526 767.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08780527 767.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08780528 767.61596680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08780529 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08780530 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08780531 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08780532 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08780533 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08780534 767.61602783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08780535 767.61608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08780536 767.61608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08780537 767.61608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08780538 767.61608887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08780539 767.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08780540 767.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08780541 767.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08780542 767.61614990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08780543 767.61621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08780544 767.61621094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08780545 767.61627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08780546 767.61627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08780547 767.61627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08780548 767.61627197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08780549 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08780550 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08780551 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08780552 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08780553 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08780554 767.61633301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08780555 767.61639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08780556 767.61639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08780557 767.61639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08780558 767.61639404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08780559 767.61645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08780560 767.61645508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08780561 767.61657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08780562 767.61657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08780563 767.61657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08780564 767.61657715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08780565 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08780566 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08780567 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08780568 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08780569 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08780570 767.61663818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08780571 767.61669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08780572 767.61669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08780573 767.61669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08780574 767.61669922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08780575 767.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08780576 767.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08780577 767.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08780578 767.61676025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08780579 767.61682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08780580 767.61682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08780581 767.61682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08780582 767.61682129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08780583 767.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08780584 767.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08780585 767.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08780586 767.61688232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08780587 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08780588 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08780589 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08780590 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08780591 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08780592 767.61694336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08780593 767.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08780594 767.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08780595 767.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08780596 767.61700439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08780597 767.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08780598 767.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08780599 767.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08780600 767.61706543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08780601 767.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08780602 767.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08780603 767.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08780604 767.61712646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08780605 767.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08780606 767.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08780607 767.61718750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08780608 767.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08780609 767.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08780610 767.61724854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08780611 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08780612 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08780613 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08780614 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08780615 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08780616 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08780617 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08780618 767.61730957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08780619 767.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08780620 767.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08780621 767.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08780622 767.61737061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08780623 767.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08780624 767.61743164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08780625 767.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08780626 767.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08780627 767.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08780628 767.61749268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08780629 767.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08780630 767.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08780631 767.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08780632 767.61755371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08780633 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08780634 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08780635 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08780636 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08780637 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08780638 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08780639 767.61761475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08780640 767.61767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08780641 767.61767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08780642 767.61767578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08780643 767.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08780644 767.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08780645 767.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08780646 767.61773682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08780647 767.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08780648 767.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08780649 767.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08780650 767.61779785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08780651 767.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08780652 767.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08780653 767.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08780654 767.61785889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08780655 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08780656 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08780657 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08780658 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08780659 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08780660 767.61791992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08780661 767.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08780662 767.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08780663 767.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08780664 767.61798096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08780665 767.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08780666 767.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08780667 767.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08780668 767.61804199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08780669 767.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08780670 767.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08780671 767.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08780672 767.61810303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08780673 767.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08780674 767.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08780675 767.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08780676 767.61816406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08780677 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08780678 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08780679 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08780680 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08780681 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08780682 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08780683 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08780684 767.61822510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08780685 767.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08780686 767.61828613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08780687 767.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08780688 767.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08780689 767.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08780690 767.61834717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08780691 767.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08780692 767.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08780693 767.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08780694 767.61840820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08780695 767.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08780696 767.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08780697 767.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08780698 767.61846924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08780699 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08780700 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08780701 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08780702 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08780703 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08780704 767.61853027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08780705 767.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08780706 767.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08780707 767.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08780708 767.61859131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08780709 767.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08780710 767.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08780711 767.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08780712 767.61865234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08780713 767.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08780714 767.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08780715 767.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08780716 767.61871338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08780717 767.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08780718 767.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08780719 767.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08780720 767.61877441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08780721 767.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08780722 767.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08780723 767.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08780724 767.61883545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08780725 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08780726 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08780727 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08780728 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08780729 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08780730 767.61889648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08780731 767.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08780732 767.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08780733 767.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08780734 767.61895752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08780735 767.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08780736 767.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08780737 767.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08780738 767.61901855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08780739 767.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08780740 767.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08780741 767.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08780742 767.61907959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08780743 767.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08780744 767.61914063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08780745 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08780746 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08780747 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08780748 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08780749 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08780750 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08780751 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08780752 767.61920166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08780753 767.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08780754 767.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08780755 767.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08780756 767.61926270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08780757 767.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08780758 767.61932373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08780759 767.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08780760 767.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08780761 767.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08780762 767.61938477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08780763 767.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08780764 767.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08780765 767.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08780766 767.61944580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08780767 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08780768 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08780769 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08780770 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08780771 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08780772 767.61950684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08780773 767.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08780774 767.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08780775 767.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08780776 767.61956787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08780777 767.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08780778 767.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08780779 767.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08780780 767.61962891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08780781 767.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08780782 767.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08780783 767.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08780784 767.61968994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08780785 767.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08780786 767.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08780787 767.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08780788 767.61975098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08780789 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08780790 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08780791 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08780792 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08780793 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08780794 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08780795 767.61981201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08780796 767.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08780797 767.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08780798 767.61987305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08780799 767.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08780800 767.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08780801 767.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08780802 767.61993408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08780803 767.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08780804 767.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08780805 767.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08780806 767.61999512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08780807 767.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08780808 767.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08780809 767.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08780810 767.62005615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08780811 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08780812 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08780813 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08780814 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08780815 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08780816 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08780817 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08780818 767.62011719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08780819 767.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08780820 767.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08780821 767.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08780822 767.62017822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08780823 767.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08780824 767.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08780825 767.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08780826 767.62023926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08780827 767.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08780828 767.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08780829 767.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08780830 767.62030029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08780831 767.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08780832 767.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08780833 767.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08780834 767.62036133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08780835 767.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08780836 767.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08780837 767.62042236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08780838 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08780839 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08780840 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08780841 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08780842 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08780843 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08780844 767.62048340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08780845 767.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08780846 767.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08780847 767.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08780848 767.62054443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08780849 767.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08780850 767.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08780851 767.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08780852 767.62060547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08780853 767.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08780854 767.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08780855 767.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08780856 767.62066650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08780857 767.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08780858 767.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08780859 767.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08780860 767.62072754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08780861 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08780862 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08780863 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08780864 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08780865 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08780866 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08780867 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08780868 767.62078857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08780869 767.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08780870 767.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08780871 767.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08780872 767.62084961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08780873 767.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08780874 767.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08780875 767.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08780876 767.62091064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08780877 767.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08780878 767.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08780879 767.62097168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08780880 767.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08780881 767.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08780882 767.62103271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08780883 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08780884 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08780885 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08780886 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08780887 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08780888 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08780889 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08780890 767.62109375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08780891 767.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08780892 767.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08780893 767.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08780894 767.62115479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08780895 767.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08780896 767.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08780897 767.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08780898 767.62121582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08780899 767.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08780900 767.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08780901 767.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08780902 767.62127686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08780903 767.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08780904 767.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08780905 767.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08780906 767.62133789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08780907 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08780908 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08780909 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08780910 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08780911 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08780912 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08780913 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08780914 767.62139893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08780915 767.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08780916 767.62145996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08780917 767.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08780918 767.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08780919 767.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08780920 767.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08780921 767.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08780922 767.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08780923 767.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08780924 767.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08780925 767.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08780926 767.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08780927 767.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08780928 767.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08780929 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08780930 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08780931 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08780932 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08780933 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08780934 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08780935 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08780936 767.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08780937 767.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08780938 767.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08780939 767.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08780940 767.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08780941 767.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08780942 767.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08780943 767.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08780944 767.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08780945 767.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08780946 767.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08780947 767.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08780948 767.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08780949 767.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08780950 767.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08780951 767.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08780952 767.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08780953 767.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08780954 767.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08780955 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08780956 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08780957 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08780958 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08780959 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08780960 767.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08780961 767.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08780962 767.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08780963 767.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08780964 767.62213135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08780965 767.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08780966 767.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08780967 767.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08780968 767.62219238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08780969 767.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08780970 767.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08780971 767.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08780972 767.62225342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08780973 767.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08780974 767.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08780975 767.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08780976 767.62231445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08780977 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08780978 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08780979 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08780980 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08780981 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08780982 767.62237549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08780983 767.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08780984 767.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08780985 767.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08780986 767.62243652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08780987 767.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08780988 767.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08780989 767.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08780990 767.62249756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08780991 767.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08780992 767.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08780993 767.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08780994 767.62255859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08780995 767.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08780996 767.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08780997 767.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08780998 767.62261963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08780999 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08781000 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08781001 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08781002 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08781003 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08781004 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08781005 767.62268066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08781006 767.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08781007 767.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08781008 767.62274170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08781009 767.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08781010 767.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08781011 767.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08781012 767.62280273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08781013 767.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08781014 767.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08781015 767.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08781016 767.62286377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08781017 767.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08781018 767.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08781019 767.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08781020 767.62292480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08781021 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08781022 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08781023 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08781024 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08781025 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08781026 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08781027 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08781028 767.62298584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08781029 767.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08781030 767.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08781031 767.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08781032 767.62304688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08781033 767.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08781034 767.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08781035 767.62310791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08781036 767.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08781037 767.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08781038 767.62316895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08781039 767.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08781040 767.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08781041 767.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08781042 767.62322998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08781043 767.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08781044 767.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08781045 767.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08781046 767.62329102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08781047 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08781048 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08781049 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08781050 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08781051 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08781052 767.62335205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08781053 767.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08781054 767.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08781055 767.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08781056 767.62341309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08781057 767.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08781058 767.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08781059 767.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08781060 767.62347412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08781061 767.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08781062 767.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08781063 767.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08781064 767.62353516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08781065 767.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08781066 767.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08781067 767.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08781068 767.62359619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08781069 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08781070 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08781071 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08781072 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08781073 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08781074 767.62365723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08781075 767.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08781076 767.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08781077 767.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08781078 767.62371826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08781079 767.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08781080 767.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08781081 767.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08781082 767.62377930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08781083 767.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08781084 767.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08781085 767.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08781086 767.62384033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08781087 767.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08781088 767.62390137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08781089 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08781090 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08781091 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08781092 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08781093 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08781094 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08781095 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08781096 767.62396240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08781097 767.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08781098 767.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08781099 767.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08781100 767.62402344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08781101 767.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08781102 767.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08781103 767.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08781104 767.62408447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08781105 767.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08781106 767.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08781107 767.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08781108 767.62414551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08781109 767.62420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08781110 767.62420654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08781111 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08781112 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08781113 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08781114 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08781115 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08781116 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08781117 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08781118 767.62426758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08781119 767.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08781120 767.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08781121 767.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08781122 767.62432861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08781123 767.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08781124 767.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08781125 767.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08781126 767.62438965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08781127 767.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08781128 767.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08781129 767.62445068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08781130 767.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08781131 767.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08781132 767.62451172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08781133 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08781134 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08781135 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08781136 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08781137 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08781138 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08781139 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08781140 767.62457275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08781141 767.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08781142 767.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08781143 767.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08781144 767.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08781145 767.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08781146 767.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08781147 767.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08781148 767.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08781149 767.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08781150 767.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08781151 767.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08781152 767.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08781153 767.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08781154 767.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08781155 767.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08781156 767.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08781157 767.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08781158 767.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08781159 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08781160 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08781161 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08781162 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08781163 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08781164 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08781165 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08781166 767.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08781167 767.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08781168 767.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08781169 767.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08781170 767.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08781171 767.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08781172 767.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08781173 767.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08781174 767.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08781175 767.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08781176 767.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08781177 767.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08781178 767.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08781179 767.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08781180 767.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08781181 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08781182 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08781183 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08781184 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08781185 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08781186 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08781187 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08781188 767.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08781189 767.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08781190 767.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08781191 767.62530518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08781192 767.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08781193 767.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08781194 767.62536621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08781195 767.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08781196 767.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08781197 767.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08781198 767.62542725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08781199 767.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08781200 767.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08781201 767.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08781202 767.62548828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08781203 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08781204 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08781205 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08781206 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08781207 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08781208 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08781209 767.62554932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08781210 767.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08781211 767.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08781212 767.62561035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08781213 767.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08781214 767.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08781215 767.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08781216 767.62567139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08781217 767.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08781218 767.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08781219 767.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08781220 767.62573242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08781221 767.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08781222 767.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08781223 767.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08781224 767.62579346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08781225 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08781226 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08781227 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08781228 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08781229 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08781230 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08781231 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08781232 767.62585449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08781233 767.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08781234 767.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08781235 767.62591553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08781236 767.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08781237 767.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08781238 767.62597656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08781239 767.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08781240 767.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08781241 767.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08781242 767.62603760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08781243 767.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08781244 767.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08781245 767.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08781246 767.62609863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08781247 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08781248 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08781249 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08781250 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08781251 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08781252 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08781253 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08781254 767.62615967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08781255 767.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08781256 767.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08781257 767.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08781258 767.62622070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08781259 767.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08781260 767.62628174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08781261 767.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08781262 767.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08781263 767.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08781264 767.62634277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08781265 767.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08781266 767.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08781267 767.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08781268 767.62640381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08781269 767.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08781270 767.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08781271 767.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08781272 767.62646484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08781273 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08781274 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08781275 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08781276 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08781277 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08781278 767.62652588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08781279 767.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08781280 767.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08781281 767.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08781282 767.62658691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08781283 767.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08781284 767.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08781285 767.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08781286 767.62664795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08781287 767.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08781288 767.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08781289 767.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08781290 767.62670898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08781291 767.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08781292 767.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08781293 767.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08781294 767.62677002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08781295 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08781296 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08781297 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08781298 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08781299 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08781300 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08781301 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08781302 767.62683105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08781303 767.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08781304 767.62689209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08781305 767.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08781306 767.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08781307 767.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08781308 767.62695313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08781309 767.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08781310 767.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08781311 767.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08781312 767.62701416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08781313 767.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08781314 767.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08781315 767.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08781316 767.62707520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08781317 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08781318 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08781319 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08781320 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08781321 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08781322 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08781323 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08781324 767.62713623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08781325 767.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08781326 767.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08781327 767.62719727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08781328 767.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08781329 767.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08781330 767.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08781331 767.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08781332 767.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08781333 767.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08781334 767.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08781335 767.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08781336 767.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08781337 767.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08781338 767.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08781339 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08781340 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08781341 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08781342 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08781343 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08781344 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08781345 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08781346 767.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08781347 767.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08781348 767.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08781349 767.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08781350 767.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08781351 767.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08781352 767.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08781353 767.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08781354 767.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08781355 767.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08781356 767.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08781357 767.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08781358 767.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08781359 767.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08781360 767.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08782186 767.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08782187 767.63916016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08782188 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08782189 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08782190 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08782191 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08782192 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08782193 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08782194 767.63922119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08782195 767.63928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08782196 767.63928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08782197 767.63928223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08782198 767.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08782199 767.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08782200 767.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08782201 767.63934326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08782202 767.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08782203 767.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08782204 767.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08782205 767.63940430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08782206 767.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08782207 767.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08782208 767.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08782209 767.63946533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08782210 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08782211 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08782212 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08782213 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08782214 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08782215 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08782216 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08782217 767.63952637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08782218 767.63958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08782219 767.63958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08782220 767.63958740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08782221 767.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08782222 767.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08782223 767.63964844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08782224 767.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08782225 767.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08782226 767.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08782227 767.63970947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08782228 767.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08782229 767.63977051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08788996 767.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e58 -08788997 767.73492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e58 -08788998 767.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e68 -08788999 767.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e68 -08789000 767.73498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e78 -08789001 767.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e78 -08789002 767.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e88 -08789003 767.73504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e88 -08789004 767.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e98 -08789005 767.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e98 -08789006 767.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea8 -08789007 767.73510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ea8 -08789008 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb8 -08789009 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11eb8 -08789010 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec8 -08789011 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ec8 -08789012 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed8 -08789013 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ed8 -08789014 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee8 -08789015 767.73516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ee8 -08789016 767.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef8 -08789017 767.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ef8 -08789018 767.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f08 -08789019 767.73522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f08 -08789020 767.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f18 -08789021 767.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f18 -08789022 767.73529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f28 -08789023 767.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f28 -08789024 767.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f38 -08789025 767.73535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f38 -08789026 767.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -08789027 767.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f48 -08789028 767.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -08789029 767.73541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f58 -08789030 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -08789031 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f68 -08789032 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -08789033 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f78 -08789034 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -08789035 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f88 -08789036 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -08789037 767.73547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f98 -08789038 767.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -08789039 767.73553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11fa8 -08803151 767.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d888 -08803152 767.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d888 -08803153 767.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d898 -08803154 767.93341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d898 -08803155 767.93347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a8 -08803156 767.93347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a8 -08803157 767.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b8 -08803158 767.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b8 -08803159 767.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c8 -08803160 767.93353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c8 -08803161 767.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d8 -08803162 767.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d8 -08803163 767.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e8 -08803164 767.93359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e8 -08803165 767.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f8 -08803166 767.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f8 -08803167 767.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d908 -08803168 767.93365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d908 -08803169 767.93371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d918 -08803170 767.93371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d918 -08803171 767.93371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -08803172 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -08803173 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -08803174 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -08803175 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -08803176 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -08803177 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -08803178 767.93377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -08803179 767.93383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -08803180 767.93383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -08803181 767.93383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -08803182 767.93383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -08803183 767.93389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -08803184 767.93389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -08803185 767.93389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -08803186 767.93395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -08803187 767.93395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -08803188 767.93395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -08803189 767.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -08803190 767.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -08803191 767.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -08803192 767.93402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -08803193 767.93408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -08803194 767.93408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -08809063 768.01916504 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x39138 -08809064 768.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39138 -08809065 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39148 -08809066 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39148 -08809067 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39158 -08809068 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39158 -08809069 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39168 -08809070 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39168 -08809071 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39178 -08809072 768.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39178 -08809073 768.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39188 -08809074 768.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39188 -08809075 768.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39198 -08809076 768.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39198 -08809077 768.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a8 -08809078 768.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391a8 -08809079 768.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b8 -08809080 768.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391b8 -08809081 768.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c8 -08809082 768.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391c8 -08809083 768.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d8 -08809084 768.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391d8 -08809085 768.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e8 -08809086 768.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391e8 -08809087 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f8 -08809088 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x391f8 -08809089 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39208 -08809090 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39208 -08809091 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39218 -08809092 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39218 -08809093 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39228 -08809094 768.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39228 -08809095 768.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39238 -08809096 768.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39238 -08809097 768.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39248 -08809098 768.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39248 -08809099 768.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39258 -08809100 768.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39258 -08809101 768.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39268 -08809102 768.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39268 -08809103 768.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39278 -08809104 768.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39278 -08809105 768.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39288 -08809106 768.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39288 -08814895 768.10211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44768 -08814896 768.10211182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44768 -08814897 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44778 -08814898 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44778 -08814899 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44788 -08814900 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44788 -08814901 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44798 -08814902 768.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44798 -08814903 768.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a8 -08814904 768.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447a8 -08814905 768.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b8 -08814906 768.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447b8 -08814907 768.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c8 -08814908 768.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447c8 -08814909 768.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d8 -08814910 768.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447d8 -08814911 768.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -08814912 768.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447e8 -08814913 768.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -08814914 768.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x447f8 -08814915 768.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -08814916 768.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44808 -08814917 768.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -08814918 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44818 -08814919 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -08814920 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44828 -08814921 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -08814922 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44838 -08814923 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -08814924 768.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44848 -08814925 768.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44858 -08814926 768.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44858 -08814927 768.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44868 -08814928 768.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44868 -08814929 768.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44878 -08814930 768.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44878 -08814931 768.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44888 -08814932 768.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44888 -08814933 768.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44898 -08814934 768.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44898 -08814935 768.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a8 -08814936 768.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x448a8 -08814937 768.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b8 -08814938 768.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x448b8 -08820983 768.19067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50558 -08820984 768.19067383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50558 -08820985 768.19073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50568 -08820986 768.19073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50568 -08820987 768.19073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50578 -08820988 768.19073486 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50578 -08820989 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50588 -08820990 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50588 -08820991 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50598 -08820992 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50598 -08820993 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a8 -08820994 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a8 -08820995 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b8 -08820996 768.19079590 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b8 -08820997 768.19085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c8 -08820998 768.19085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505c8 -08820999 768.19085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d8 -08821000 768.19085693 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505d8 -08821001 768.19091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e8 -08821002 768.19091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505e8 -08821003 768.19091797 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f8 -08821004 768.19097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x505f8 -08821005 768.19097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50608 -08821006 768.19097900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50608 -08821007 768.19104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50618 -08821008 768.19104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50618 -08821009 768.19104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50628 -08821010 768.19104004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50628 -08821011 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50638 -08821012 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50638 -08821013 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50648 -08821014 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50648 -08821015 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50658 -08821016 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50658 -08821017 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50668 -08821018 768.19110107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50668 -08821019 768.19116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50678 -08821020 768.19116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50678 -08821021 768.19116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50688 -08821022 768.19116211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50688 -08821023 768.19122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50698 -08821024 768.19122314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50698 -08821025 768.19128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a8 -08821026 768.19128418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x506a8 -08822265 768.45135498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822266 768.49206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822267 768.53308105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822268 768.57403564 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822269 768.61499023 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822270 768.65600586 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822271 768.69696045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822272 768.73797607 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822273 768.77893066 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822274 768.81994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822275 768.86083984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822276 768.86663818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08822277 768.89111328 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822278 768.89111328 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822279 768.90185547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822280 768.94287109 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822281 768.98376465 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822282 769.02478027 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822283 769.06573486 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822284 769.10668945 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822285 769.14764404 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822286 769.18865967 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822287 769.22979736 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822288 769.27062988 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822289 769.31152344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822290 769.35253906 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822291 769.39349365 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822292 769.43444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822293 769.47540283 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822294 769.51641846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822295 769.55737305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822296 769.59838867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822297 769.63934326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822298 769.68029785 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822299 769.72125244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822300 769.76232910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822301 769.80322266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822302 769.84417725 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822303 769.88525391 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822304 769.92614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822305 769.96710205 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822306 770.00817871 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822307 770.04907227 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822308 770.09002686 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822309 770.13098145 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822310 770.17199707 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822311 770.21295166 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822312 770.25390625 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822313 770.29486084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822314 770.33587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822315 770.37683105 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822316 770.41784668 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822317 770.45880127 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822318 770.49975586 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822319 770.54077148 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822320 770.58172607 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822321 770.62268066 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822322 770.62646484 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822323 770.62652588 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822324 770.62652588 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822325 770.62658691 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08822326 770.62670898 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822327 770.62670898 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08822328 770.62677002 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822329 770.62683105 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08822330 770.66363525 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822331 770.70465088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822332 770.74560547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822333 770.78656006 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822334 770.82751465 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822335 770.86846924 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822336 770.89422607 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08822337 770.90948486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822338 770.91619873 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822339 770.91619873 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822340 770.95043945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08822341 772.91784668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08822342 772.93994141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822343 772.93994141 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822344 773.13287354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822345 773.13287354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822346 773.13287354 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08822347 773.13293457 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08822348 773.13305664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822349 773.13305664 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08822350 773.13311768 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08822351 773.13317871 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08822352 773.21075439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08822353 773.21075439 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08822354 773.21081543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08822355 773.21081543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08822356 773.21081543 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08822357 773.21087646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08822358 773.21087646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08822359 773.21087646 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08822360 773.21093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08822361 773.21093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08822362 773.21093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08822363 773.21093750 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08822364 773.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08822365 773.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08822366 773.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08822367 773.21099854 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08822368 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08822369 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08822370 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08822371 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08822372 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08822373 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08822374 773.21105957 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08822375 773.21112061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08822376 773.21112061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08822377 773.21112061 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08822378 773.21118164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08822379 773.21118164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08822380 773.21118164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08822381 773.21118164 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08822382 773.21124268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08822383 773.21124268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08822384 773.21124268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08822385 773.21124268 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08822386 773.21130371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08822387 773.21130371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08822388 773.21130371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08822389 773.21130371 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08822390 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08822391 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08822392 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08822393 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08822394 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08822395 773.21136475 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08822396 773.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08822397 773.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08822398 773.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08822399 773.21142578 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08822400 773.21148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08822401 773.21148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08822402 773.21148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08822403 773.21148682 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08822404 773.21154785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08822405 773.21154785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08822406 773.21154785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08822407 773.21154785 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08822408 773.21160889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08822409 773.21160889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08822410 773.21160889 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08822411 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08822412 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08822413 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08822414 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08822415 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08822416 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08822417 773.21166992 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08822418 773.21173096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08822419 773.21173096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08822420 773.21173096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08822421 773.21173096 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08822422 773.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08822423 773.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08822424 773.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08822425 773.21179199 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08822426 773.21185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08822427 773.21185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08822428 773.21185303 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08822429 773.21191406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08822430 773.21191406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08822431 773.21191406 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08822432 773.21197510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08822433 773.21197510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08822434 773.21197510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08822435 773.21197510 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08822436 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08822437 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08822438 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08822439 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08822440 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08822441 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08822442 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08822443 773.21203613 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08822444 773.21209717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08822445 773.21209717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08822446 773.21209717 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08822447 773.21215820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08822448 773.21215820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08822449 773.21215820 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08822450 773.21221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08822451 773.21221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08822452 773.21221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08822453 773.21221924 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08822454 773.21228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08822455 773.21228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08822456 773.21228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08822457 773.21228027 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08822458 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08822459 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08822460 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08822461 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08822462 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08822463 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08822464 773.21234131 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08822465 773.21240234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08822466 773.21240234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08822467 773.21240234 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08822468 773.21246338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08822469 773.21246338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08822470 773.21246338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08822471 773.21246338 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08822472 773.21252441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08822473 773.21252441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08822474 773.21252441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08822475 773.21252441 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08822476 773.21258545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08822477 773.21258545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08822478 773.21258545 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08822479 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08822480 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08822481 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08822482 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08822483 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08822484 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08822485 773.21264648 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08822486 773.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08822487 773.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08822488 773.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08822489 773.21270752 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08822490 773.21276855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08822491 773.21276855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08822492 773.21276855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08822493 773.21276855 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08822494 773.21282959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08822495 773.21282959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08822496 773.21282959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08822497 773.21282959 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08822498 773.21289063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08822499 773.21289063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08822500 773.21289063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08822501 773.21289063 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08822502 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08822503 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08822504 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08822505 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08822506 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08822507 773.21295166 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08822508 773.21301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08822509 773.21301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08822510 773.21301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08822511 773.21301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08822512 773.21307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08822513 773.21307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08822514 773.21307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08822515 773.21307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08822516 773.21313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08822517 773.21313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08822518 773.21313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08822519 773.21313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08822520 773.21319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08822521 773.21319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08822522 773.21319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08822523 773.21319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08822524 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08822525 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08822526 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08822527 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08822528 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08822529 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08822530 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08822531 773.21325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08822532 773.21331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08822533 773.21331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08822534 773.21331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08822535 773.21331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08822536 773.21337891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08822537 773.21337891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08822538 773.21337891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08822539 773.21337891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08822540 773.21343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08822541 773.21343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08822542 773.21343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08822543 773.21343994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08822544 773.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08822545 773.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08822546 773.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08822547 773.21350098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08822548 773.21356201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08822549 773.21356201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08822550 773.21356201 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08822551 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08822552 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08822553 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08822554 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08822555 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08822556 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08822557 773.21362305 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08822558 773.21368408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08822559 773.21368408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08822560 773.21368408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08822561 773.21368408 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08822562 773.21374512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08822563 773.21374512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08822564 773.21374512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08822565 773.21374512 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08822566 773.21380615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08822567 773.21380615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08822568 773.21380615 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08822569 773.21386719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08822570 773.21386719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08822571 773.21386719 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08822572 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08822573 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08822574 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08822575 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08822576 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08822577 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08822578 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08822579 773.21392822 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08822580 773.21398926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08822581 773.21398926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08822582 773.21398926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08822583 773.21398926 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08822584 773.21405029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08822585 773.21405029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08822586 773.21405029 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08822587 773.21411133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08822588 773.21411133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08822589 773.21411133 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08822590 773.21417236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08822591 773.21417236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08822592 773.21417236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08822593 773.21417236 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08822594 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08822595 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08822596 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08822597 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08822598 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08822599 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08822600 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08822601 773.21423340 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08822602 773.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08822603 773.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08822604 773.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08822605 773.21429443 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08822606 773.21435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08822607 773.21435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08822608 773.21435547 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08822609 773.21441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08822610 773.21441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08822611 773.21441650 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08822612 773.21447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08822613 773.21447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08822614 773.21447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08822615 773.21447754 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08822616 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08822617 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08822618 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08822619 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08822620 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08822621 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08822622 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08822623 773.21453857 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08822624 773.21459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08822625 773.21459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08822626 773.21459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08822627 773.21459961 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08822628 773.21466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08822629 773.21466064 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08822630 773.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08822631 773.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08822632 773.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08822633 773.21472168 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08822634 773.21478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08822635 773.21478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08822636 773.21478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08822637 773.21478271 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08822638 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08822639 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08822640 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08822641 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08822642 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08822643 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08822644 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08822645 773.21484375 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08822646 773.21490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08822647 773.21490479 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08822648 773.21496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08822649 773.21496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08822650 773.21496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08822651 773.21496582 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08822652 773.21502686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08822653 773.21502686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08822654 773.21502686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08822655 773.21502686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08822656 773.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08822657 773.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08822658 773.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08822659 773.21508789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08822660 773.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08822661 773.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08822662 773.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08822663 773.21514893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08822664 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08822665 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08822666 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08822667 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08822668 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08822669 773.21520996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08822670 773.21527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08822671 773.21527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08822672 773.21527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08822673 773.21527100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08822674 773.21533203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08822675 773.21533203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08822676 773.21533203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08822677 773.21533203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08822678 773.21539307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08822679 773.21539307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08822680 773.21539307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08822681 773.21539307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08822682 773.21545410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08822683 773.21545410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08822684 773.21545410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08822685 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08822686 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08822687 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08822688 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08822689 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08822690 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08822691 773.21551514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08822692 773.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08822693 773.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08822694 773.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08822695 773.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08822696 773.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08822697 773.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08822698 773.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08822699 773.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08822700 773.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08822701 773.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08822702 773.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08822703 773.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08822704 773.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08822705 773.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08822706 773.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08822707 773.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08822708 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08822709 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08822710 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08822711 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08822712 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08822713 773.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08822714 773.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08822715 773.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08822716 773.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08822717 773.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08822718 773.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08822719 773.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08822720 773.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08822721 773.21594238 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08822722 773.21600342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08822723 773.21600342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08822724 773.21600342 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08822725 773.21606445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08822726 773.21606445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08822727 773.21606445 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08822728 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08822729 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08822730 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08822731 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08822732 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08822733 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08822734 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08822735 773.21612549 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08822736 773.21618652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08822737 773.21618652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08822738 773.21618652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08822739 773.21618652 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08822740 773.21624756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08822741 773.21624756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08822742 773.21624756 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08822743 773.21630859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08822744 773.21630859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08822745 773.21630859 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08822746 773.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08822747 773.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08822748 773.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08822749 773.21636963 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08822750 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08822751 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08822752 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08822753 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08822754 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08822755 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08822756 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08822757 773.21643066 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08822758 773.21649170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08822759 773.21649170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08822760 773.21649170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08822761 773.21649170 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08822762 773.21655273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08822763 773.21655273 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08822764 773.21661377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08822765 773.21661377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08822766 773.21661377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08822767 773.21661377 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08822768 773.21667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08822769 773.21667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08822770 773.21667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08822771 773.21667480 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08822772 773.21673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08822773 773.21673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08822774 773.21673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08822775 773.21673584 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08822776 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08822777 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08822778 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08822779 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08822780 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08822781 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08822782 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08822783 773.21679688 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08822784 773.21685791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08822785 773.21685791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08822786 773.21685791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08822787 773.21685791 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08822788 773.21691895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08822789 773.21691895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08822790 773.21691895 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08822791 773.21697998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08822792 773.21697998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08822793 773.21697998 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08822794 773.21704102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08822795 773.21704102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08822796 773.21704102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08822797 773.21704102 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08822798 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08822799 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08822800 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08822801 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08822802 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08822803 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08822804 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08822805 773.21710205 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08822806 773.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08822807 773.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08822808 773.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08822809 773.21716309 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08822810 773.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08822811 773.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08822812 773.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08822813 773.21722412 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08822814 773.21728516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08822815 773.21728516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08822816 773.21728516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08822817 773.21728516 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08822818 773.21734619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08822819 773.21734619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08822820 773.21734619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08822821 773.21734619 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08822822 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08822823 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08822824 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08822825 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08822826 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08822827 773.21740723 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08822828 773.21746826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08822829 773.21746826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08822830 773.21746826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08822831 773.21746826 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08822832 773.21752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08822833 773.21752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08822834 773.21752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08822835 773.21752930 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08822836 773.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08822837 773.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08822838 773.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08822839 773.21759033 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08822840 773.21765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08822841 773.21765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08822842 773.21765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08822843 773.21765137 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08822844 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08822845 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08822846 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08822847 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08822848 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08822849 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08822850 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08822851 773.21771240 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08822852 773.21777344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08822853 773.21777344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08822854 773.21777344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08822855 773.21777344 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08822856 773.21783447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08822857 773.21783447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08822858 773.21783447 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08822859 773.21789551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08822860 773.21789551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08822861 773.21789551 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08822862 773.21795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08822863 773.21795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08822864 773.21795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08822865 773.21795654 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08822866 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08822867 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08822868 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08822869 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08822870 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08822871 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08822872 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08822873 773.21801758 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08822874 773.21807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08822875 773.21807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08822876 773.21807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08822877 773.21807861 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08822878 773.21813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08822879 773.21813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08822880 773.21813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08822881 773.21813965 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08822882 773.21820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08822883 773.21820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08822884 773.21820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08822885 773.21820068 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08822886 773.21826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08822887 773.21826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08822888 773.21826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08822889 773.21826172 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08822890 773.21832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08822891 773.21832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08822892 773.21832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08822893 773.21832275 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08822894 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08822895 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08822896 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08822897 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08822898 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08822899 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08822900 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08822901 773.21838379 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08822902 773.21844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08822903 773.21844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08822904 773.21844482 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08822905 773.21850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08822906 773.21850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08822907 773.21850586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08822908 773.21856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08822909 773.21856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08822910 773.21856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08822911 773.21856689 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08822912 773.21862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08822913 773.21862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08822914 773.21862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08822915 773.21862793 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08822916 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08822917 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08822918 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08822919 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08822920 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08822921 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08822922 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08822923 773.21868896 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08822924 773.21875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08822925 773.21875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08822926 773.21875000 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08822927 773.21881104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08822928 773.21881104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08822929 773.21881104 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08822930 773.21887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08822931 773.21887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08822932 773.21887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08822933 773.21887207 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08822934 773.21893311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08822935 773.21893311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08822936 773.21893311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08822937 773.21893311 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08822938 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08822939 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08822940 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08822941 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08822942 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08822943 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08822944 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08822945 773.21899414 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08822946 773.21905518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08822947 773.21905518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08822948 773.21905518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08822949 773.21905518 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08822950 773.21911621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08822951 773.21911621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08822952 773.21911621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08822953 773.21911621 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08822954 773.21917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08822955 773.21917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08822956 773.21917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08822957 773.21917725 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08822958 773.21923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08822959 773.21923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08822960 773.21923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08822961 773.21923828 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08822962 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08822963 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08822964 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08822965 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08822966 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08822967 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08822968 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08822969 773.21929932 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08822970 773.21936035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08822971 773.21936035 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08822972 773.21942139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08822973 773.21942139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08822974 773.21942139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08822975 773.21942139 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08822976 773.21948242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08822977 773.21948242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08822978 773.21948242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08822979 773.21948242 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08822980 773.21954346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08822981 773.21954346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08822982 773.21954346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08822983 773.21954346 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08822984 773.21960449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08822985 773.21960449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08822986 773.21960449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08822987 773.21960449 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08822988 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08822989 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08822990 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08822991 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08822992 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08822993 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08822994 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08822995 773.21966553 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08822996 773.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08822997 773.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08822998 773.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08822999 773.21972656 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08823000 773.21978760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08823001 773.21978760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08823002 773.21978760 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08823003 773.21984863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08823004 773.21984863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08823005 773.21984863 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08823006 773.21990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08823007 773.21990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08823008 773.21990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08823009 773.21990967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08823010 773.21997070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08823011 773.21997070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08838268 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a8 -08838269 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201a8 -08838270 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b8 -08838271 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201b8 -08838272 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -08838273 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201c8 -08838274 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -08838275 773.43377686 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201d8 -08838276 773.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e8 -08838277 773.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201e8 -08838278 773.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f8 -08838279 773.43383789 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x201f8 -08838280 773.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20208 -08838281 773.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20208 -08838282 773.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20218 -08838283 773.43389893 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20218 -08838284 773.43395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20228 -08838285 773.43395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20228 -08838286 773.43395996 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -08838287 773.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20238 -08838288 773.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -08838289 773.43402100 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20248 -08838290 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -08838291 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20258 -08838292 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -08838293 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20268 -08838294 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -08838295 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20278 -08838296 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -08838297 773.43408203 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20288 -08838298 773.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -08838299 773.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x20298 -08838300 773.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -08838301 773.43414307 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202a8 -08838302 773.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -08838303 773.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202b8 -08838304 773.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -08838305 773.43420410 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202c8 -08838306 773.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -08838307 773.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202d8 -08838308 773.43426514 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -08838309 773.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202e8 -08838310 773.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -08838311 773.43432617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x202f8 -08847983 773.56988525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33138 -08847984 773.56994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33148 -08847985 773.56994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33148 -08847986 773.56994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -08847987 773.56994629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -08847988 773.57000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -08847989 773.57000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -08847990 773.57000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -08847991 773.57000732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -08847992 773.57006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -08847993 773.57006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -08847994 773.57006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -08847995 773.57006836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -08847996 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -08847997 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -08847998 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -08847999 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -08848000 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -08848001 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -08848002 773.57012939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -08848003 773.57019043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -08848004 773.57019043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -08848005 773.57019043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -08848006 773.57025146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -08848007 773.57025146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -08848008 773.57025146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -08848009 773.57025146 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -08848010 773.57031250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -08848011 773.57031250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -08848012 773.57031250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -08848013 773.57031250 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -08848014 773.57037354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -08848015 773.57037354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -08848016 773.57037354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -08848017 773.57037354 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -08848018 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33258 -08848019 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33258 -08848020 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33268 -08848021 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33268 -08848022 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -08848023 773.57043457 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33278 -08848024 773.57049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -08848025 773.57049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33288 -08848026 773.57049561 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x33298 -08857464 773.70330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -08857465 773.70330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -08857466 773.70330811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -08857467 773.70336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -08857468 773.70336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a8 -08857469 773.70336914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a8 -08857470 773.70343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b8 -08857471 773.70343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b8 -08857472 773.70343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c8 -08857473 773.70343018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459c8 -08857474 773.70349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d8 -08857475 773.70349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459d8 -08857476 773.70349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e8 -08857477 773.70349121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459e8 -08857478 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f8 -08857479 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x459f8 -08857480 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a08 -08857481 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a08 -08857482 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a18 -08857483 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a18 -08857484 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a28 -08857485 773.70355225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a28 -08857486 773.70361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a38 -08857487 773.70361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a38 -08857488 773.70361328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a48 -08857489 773.70367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a48 -08857490 773.70367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a58 -08857491 773.70367432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a58 -08857492 773.70373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a68 -08857493 773.70373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a68 -08857494 773.70373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a78 -08857495 773.70373535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a78 -08857496 773.70379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a88 -08857497 773.70379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a88 -08857498 773.70379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a98 -08857499 773.70379639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a98 -08857500 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa8 -08857501 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45aa8 -08857502 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab8 -08857503 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ab8 -08857504 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac8 -08857505 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ac8 -08857506 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad8 -08857507 773.70385742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ad8 -08864238 774.94256592 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08864239 774.96527100 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08864240 774.96527100 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08864241 775.63909912 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08864242 775.63916016 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08864243 775.63916016 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08864244 775.63916016 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08864245 775.63928223 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08864246 775.63928223 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08864247 775.63934326 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08864248 775.63934326 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08864249 776.96716309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08864250 776.99017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08864251 776.99017334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08864252 777.32012939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08864253 777.32012939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08864254 777.32019043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08864255 777.32019043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08864256 777.32019043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08864257 777.32019043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08864258 777.32025146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08864259 777.32025146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08864260 777.32031250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08864261 777.32031250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08864262 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08864263 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08864264 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08864265 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08864266 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08864267 777.32037354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08864268 777.32043457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08864269 777.32043457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08864270 777.32049561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08864271 777.32049561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08864272 777.32055664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08864273 777.32055664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08864274 777.32061768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08864275 777.32061768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08864276 777.32061768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08864277 777.32061768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08864278 777.32067871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08864279 777.32067871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08864280 777.32067871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08864281 777.32067871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08864282 777.32073975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08864283 777.32073975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08864284 777.32080078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08864285 777.32080078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08864286 777.32080078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08864287 777.32086182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08864288 777.32092285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08864289 777.32092285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08864290 777.32098389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08864291 777.32098389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08864292 777.32098389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08864293 777.32098389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08864294 777.32104492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08864295 777.32104492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08864296 777.32104492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08864297 777.32104492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08864298 777.32110596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08864299 777.32110596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08864300 777.32116699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08864301 777.32116699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08864302 777.32122803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08864303 777.32122803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08864304 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08864305 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08864306 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08864307 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08864308 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08864309 777.32128906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08864310 777.32135010 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08864311 777.32135010 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08864312 777.32141113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08864313 777.32141113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08864314 777.32147217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08864315 777.32147217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08864316 777.32147217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08864317 777.32147217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08864318 777.32153320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08864319 777.32153320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08864320 777.32159424 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08864321 777.32159424 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08864322 777.32165527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08864323 777.32165527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08864324 777.32165527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08864325 777.32165527 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08864326 777.32171631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08864327 777.32171631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08864328 777.32171631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08864329 777.32171631 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08864330 777.32177734 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08864331 777.32177734 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08864332 777.32177734 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08864333 777.32183838 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08864334 777.32183838 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08864335 777.32183838 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08864336 777.32189941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08864337 777.32189941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08864338 777.32189941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08864339 777.32189941 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08864340 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08864341 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08864342 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08864343 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08864344 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08864345 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08864346 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08864347 777.32196045 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08864348 777.32202148 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08864349 777.32202148 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08864350 777.32202148 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08864351 777.32202148 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08864352 777.32208252 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08864353 777.32208252 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08864354 777.32214355 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08864355 777.32214355 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08864356 777.32214355 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08864357 777.32214355 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08864358 777.32220459 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08864359 777.32220459 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08864360 777.32220459 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08864361 777.32220459 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08864362 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08864363 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08864364 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08864365 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08864366 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08864367 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08864368 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08864369 777.32226563 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08864370 777.32232666 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08864371 777.32232666 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08864372 777.32232666 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08864373 777.32238770 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08864374 777.32238770 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08864375 777.32238770 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08864376 777.32244873 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08864377 777.32244873 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08864378 777.32244873 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08864379 777.32250977 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08864380 777.32250977 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08864381 777.32250977 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08864382 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08864383 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08864384 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08864385 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08864386 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08864387 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08864388 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08864389 777.32257080 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08864390 777.32263184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08864391 777.32263184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08864392 777.32263184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08864393 777.32263184 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08864394 777.32269287 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08864395 777.32269287 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08864396 777.32269287 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08864397 777.32269287 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08864398 777.32275391 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08864399 777.32275391 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08864400 777.32281494 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08864401 777.32281494 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08864402 777.32281494 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08864403 777.32281494 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08864404 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08864405 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08864406 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08864407 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08864408 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08864409 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08864410 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08864411 777.32287598 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08864412 777.32293701 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08864413 777.32293701 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08864414 777.32293701 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08864415 777.32293701 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08864416 777.32299805 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08864417 777.32299805 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08864418 777.32299805 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08864419 777.32305908 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08864420 777.32305908 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08864421 777.32305908 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08864422 777.32312012 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08864423 777.32312012 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08864424 777.32312012 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08864425 777.32312012 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08864426 777.32318115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08864427 777.32318115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08864428 777.32318115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08864429 777.32318115 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08864430 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08864431 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08864432 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08864433 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08864434 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08864435 777.32324219 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08864436 777.32330322 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08864437 777.32330322 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08864438 777.32330322 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08864439 777.32330322 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08864440 777.32336426 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08864441 777.32336426 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08864442 777.32342529 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08864443 777.32342529 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08864444 777.32342529 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08864445 777.32342529 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08864446 777.32348633 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08864447 777.32348633 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08864448 777.32348633 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08864449 777.32348633 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08864450 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08864451 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08864452 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08864453 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08864454 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08864455 777.32354736 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08864456 777.32360840 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08864457 777.32360840 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08864458 777.32360840 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08864459 777.32360840 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08864460 777.32366943 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08864461 777.32366943 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08864462 777.32373047 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08864463 777.32373047 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08864464 777.32373047 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08864465 777.32373047 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08864466 777.32379150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08864467 777.32379150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08864468 777.32379150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08864469 777.32379150 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08864470 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08864471 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08864472 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08864473 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08864474 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08864475 777.32385254 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08864476 777.32391357 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08864477 777.32391357 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08864478 777.32397461 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08864479 777.32397461 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08864480 777.32397461 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08864481 777.32397461 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08864482 777.32403564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08864483 777.32403564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08864484 777.32403564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08864485 777.32403564 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08864486 777.32409668 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08864487 777.32409668 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08864488 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08864489 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08864490 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08864491 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08864492 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08864493 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08864494 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08864495 777.32415771 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08864496 777.32421875 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08864497 777.32421875 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08864498 777.32421875 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08864499 777.32421875 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08864500 777.32427979 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08864501 777.32427979 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08864502 777.32427979 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08864503 777.32427979 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08864504 777.32434082 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08864505 777.32434082 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08864506 777.32440186 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08864507 777.32440186 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08864508 777.32440186 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08864509 777.32440186 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08864510 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08864511 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08864512 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08864513 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08864514 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08864515 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08864516 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08864517 777.32446289 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08864518 777.32452393 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08864519 777.32452393 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08864520 777.32452393 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08864521 777.32452393 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08864522 777.32458496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08864523 777.32458496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08864524 777.32458496 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08864525 777.32464600 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08864526 777.32464600 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08864527 777.32464600 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08864528 777.32470703 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08864529 777.32470703 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08864530 777.32470703 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08864531 777.32470703 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08864532 777.32476807 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08864533 777.32476807 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08864534 777.32476807 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08864535 777.32476807 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08864536 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08864537 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08864538 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08864539 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08864540 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08864541 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08864542 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08864543 777.32482910 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08864544 777.32489014 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08864545 777.32489014 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08864546 777.32495117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08864547 777.32495117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08864548 777.32495117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08864549 777.32495117 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08864550 777.32501221 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08864551 777.32501221 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08864552 777.32501221 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08864553 777.32501221 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08864554 777.32507324 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08864555 777.32507324 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08864556 777.32507324 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08864557 777.32507324 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08864558 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08864559 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08864560 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08864561 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08864562 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08864563 777.32513428 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08864564 777.32519531 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08864565 777.32519531 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08864566 777.32519531 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08864567 777.32519531 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08864568 777.32525635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08864569 777.32525635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08864570 777.32525635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08864571 777.32525635 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08864572 777.32531738 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08864573 777.32531738 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08864574 777.32531738 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08864575 777.32531738 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08864576 777.32537842 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08864577 777.32537842 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08864578 777.32537842 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08864579 777.32537842 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08864580 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08864581 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08864582 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08864583 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08864584 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08864585 777.32543945 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08864586 777.32550049 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08864587 777.32550049 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08864588 777.32550049 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08864589 777.32550049 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08864590 777.32556152 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08864591 777.32556152 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08864592 777.32556152 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08864593 777.32556152 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08864594 777.32562256 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08864595 777.32562256 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08864596 777.32562256 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08864597 777.32562256 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08864598 777.32568359 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08864599 777.32568359 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08864600 777.32568359 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08864601 777.32568359 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08864602 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08864603 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08864604 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08864605 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08864606 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08864607 777.32574463 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08864608 777.32580566 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08864609 777.32580566 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08864610 777.32580566 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08864611 777.32580566 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08864612 777.32586670 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08864613 777.32586670 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08864614 777.32586670 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08864615 777.32586670 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08864616 777.32592773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08864617 777.32592773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08864618 777.32592773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08864619 777.32592773 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08864620 777.32598877 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08864621 777.32598877 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08864622 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08864623 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08864624 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08864625 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08864626 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08864627 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08864628 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08864629 777.32604980 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08864630 777.32611084 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08864631 777.32611084 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08864632 777.32611084 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08864633 777.32611084 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08864634 777.32617188 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08864635 777.32617188 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08864636 777.32617188 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08864637 777.32617188 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08864638 777.32623291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08864639 777.32623291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08864640 777.32623291 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08864641 777.32629395 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08864642 777.32629395 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08864643 777.32629395 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08864644 777.32635498 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08864645 777.32635498 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08864646 777.32635498 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08864647 777.32635498 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08864648 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08864649 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08864650 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08864651 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08864652 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08864653 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08864654 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08864655 777.32641602 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08864656 777.32647705 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08864657 777.32647705 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08864658 777.32647705 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08864659 777.32647705 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08864660 777.32653809 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08864661 777.32653809 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08864662 777.32659912 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08864663 777.32659912 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08864664 777.32659912 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08864665 777.32659912 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08864666 777.32666016 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08864667 777.32666016 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08864668 777.32666016 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08864669 777.32666016 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08864670 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08864671 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08864672 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08864673 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08864674 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08864675 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08864676 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08864677 777.32672119 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08864678 777.32678223 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08864679 777.32678223 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08864680 777.32684326 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08864681 777.32684326 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08864682 777.32684326 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08864683 777.32684326 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08864684 777.32690430 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08864685 777.32690430 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08864686 777.32690430 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08864687 777.32690430 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08864688 777.32696533 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08864689 777.32696533 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08864690 777.32696533 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08864691 777.32696533 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08864692 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08864693 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08864694 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08864695 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08864696 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08864697 777.32702637 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08864698 777.32708740 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08864699 777.32708740 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08864700 777.32708740 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08864701 777.32708740 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08864702 777.32714844 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08864703 777.32714844 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08864704 777.32714844 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08864705 777.32714844 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08864706 777.32720947 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08864707 777.32720947 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08864708 777.32720947 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08864709 777.32720947 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08864710 777.32727051 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08864711 777.32727051 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08864712 777.32727051 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08864713 777.32727051 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08864714 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08864715 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08864716 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08864717 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08864718 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08864719 777.32733154 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08864720 777.32739258 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08864721 777.32739258 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08864722 777.32739258 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08864723 777.32739258 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08864724 777.32745361 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08864725 777.32745361 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08864726 777.32745361 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08864727 777.32745361 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08864728 777.32751465 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08864729 777.32751465 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08864730 777.32751465 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08864731 777.32751465 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08864732 777.32757568 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08864733 777.32757568 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08864734 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08864735 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08864736 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08864737 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08864738 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08864739 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08864740 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08864741 777.32763672 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08864742 777.32769775 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08864743 777.32769775 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08864744 777.32769775 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08864745 777.32769775 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08864746 777.32775879 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08864747 777.32775879 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08864748 777.32775879 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08864749 777.32781982 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08864750 777.32781982 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08864751 777.32781982 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08864752 777.32788086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08864753 777.32788086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08864754 777.32788086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08864755 777.32788086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08864756 777.32794189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08864757 777.32794189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08864758 777.32794189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08864759 777.32794189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08864760 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08864761 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08864762 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08864763 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08864764 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08864765 777.32800293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08864766 777.32806396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08864767 777.32806396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08864768 777.32812500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08864769 777.32812500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08864770 777.32812500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08864771 777.32812500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08864772 777.32818604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08864773 777.32818604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08864774 777.32818604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08864775 777.32818604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08864776 777.32824707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08864777 777.32824707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08864778 777.32824707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08864779 777.32824707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08864780 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08864781 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08864782 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08864783 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08864784 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08864785 777.32830811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08864786 777.32836914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08864787 777.32836914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08864788 777.32836914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08864789 777.32836914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08864790 777.32843018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08864791 777.32843018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08864792 777.32849121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08864793 777.32849121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08864794 777.32849121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08864795 777.32849121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08864796 777.32855225 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08864797 777.32855225 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08864798 777.32855225 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08864799 777.32855225 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08864800 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08864801 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08864802 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08864803 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08864804 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08864805 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08864806 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08864807 777.32861328 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08864808 777.32867432 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08864809 777.32867432 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08864810 777.32873535 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08864811 777.32873535 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08864812 777.32873535 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08864813 777.32873535 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08864814 777.32879639 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08864815 777.32879639 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08864816 777.32879639 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08864817 777.32879639 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08864818 777.32885742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08864819 777.32885742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08864820 777.32885742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08864821 777.32885742 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08864822 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08864823 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08864824 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08864825 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08864826 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08864827 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08864828 777.32891846 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08864829 777.32897949 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08864830 777.32897949 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08864831 777.32897949 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08864832 777.32904053 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08864833 777.32904053 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08864834 777.32904053 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08864835 777.32904053 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08864836 777.32910156 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08864837 777.32910156 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08864838 777.32910156 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08864839 777.32910156 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08864840 777.32916260 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08864841 777.32916260 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08864842 777.32922363 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08864843 777.32922363 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08864844 777.32922363 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08864845 777.32922363 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08864846 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08864847 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08864848 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08864849 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08864850 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08864851 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08864852 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08864853 777.32928467 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08864854 777.32934570 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08864855 777.32934570 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08864856 777.32934570 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08864857 777.32940674 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08864858 777.32940674 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08864859 777.32940674 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08864860 777.32946777 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08864861 777.32946777 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08864862 777.32946777 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08864863 777.32946777 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08864864 777.32952881 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08864865 777.32952881 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08864866 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08864867 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08864868 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08864869 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08864870 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08864871 777.32958984 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08864872 777.32965088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08864873 777.32965088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08864874 777.32965088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08864875 777.32965088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08864876 777.32971191 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08864877 777.32971191 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08864878 777.32971191 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08864879 777.32971191 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08864880 777.32977295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08864881 777.32977295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08864882 777.32977295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08864883 777.32977295 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08864884 777.32983398 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08864885 777.32983398 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08864886 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08864887 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08864888 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08864889 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08864890 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08864891 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08864892 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08864893 777.32989502 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08864894 777.32995605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08864895 777.32995605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08864896 777.32995605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08864897 777.32995605 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08864898 777.33001709 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08864899 777.33001709 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08864900 777.33007813 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08864901 777.33007813 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08864902 777.33007813 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08864903 777.33007813 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08864904 777.33013916 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08864905 777.33013916 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08864906 777.33013916 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08864907 777.33013916 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08864908 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08864909 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08864910 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08864911 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08864912 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08864913 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08864914 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08864915 777.33020020 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08864916 777.33026123 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08864917 777.33026123 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08864918 777.33026123 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08864919 777.33032227 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08864920 777.33032227 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08864921 777.33032227 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08864922 777.33038330 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08864923 777.33038330 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08864924 777.33038330 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08864925 777.33038330 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08864926 777.33044434 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08864927 777.33044434 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08864928 777.33044434 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08864929 777.33044434 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08864930 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08864931 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08864932 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08864933 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08864934 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08864935 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08864936 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08864937 777.33050537 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08864938 777.33056641 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08864939 777.33056641 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08864940 777.33062744 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08864941 777.33062744 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08864942 777.33062744 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08864943 777.33062744 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08864944 777.33068848 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08864945 777.33068848 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08864946 777.33068848 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08864947 777.33068848 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08864948 777.33074951 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08864949 777.33074951 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08864950 777.33074951 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08864951 777.33074951 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08864952 777.33081055 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08864953 777.33081055 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08864954 777.33081055 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08864955 777.33081055 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08864956 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08864957 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08864958 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08864959 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08864960 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08864961 777.33087158 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08864962 777.33093262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08864963 777.33093262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08864964 777.33093262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08864965 777.33093262 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08864966 777.33099365 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08864967 777.33099365 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08864968 777.33099365 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08864969 777.33099365 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08864970 777.33105469 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08864971 777.33105469 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08864972 777.33105469 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08864973 777.33105469 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08864974 777.33111572 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08864975 777.33111572 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08864976 777.33111572 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08864977 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08864978 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08864979 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08864980 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08864981 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08864982 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08864983 777.33117676 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08864984 777.33123779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08864985 777.33123779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08864986 777.33123779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08864987 777.33123779 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08864988 777.33129883 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08864989 777.33129883 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08864990 777.33129883 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08864991 777.33129883 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08864992 777.33135986 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08864993 777.33135986 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08864994 777.33135986 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08864995 777.33135986 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08864996 777.33142090 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08864997 777.33142090 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08864998 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08864999 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08865000 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08865001 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08865002 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08865003 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08865004 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08865005 777.33148193 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08865006 777.33154297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08865007 777.33154297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08865008 777.33154297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08865009 777.33154297 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08865010 777.33160400 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08865011 777.33160400 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08865012 777.33160400 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08865013 777.33160400 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08865014 777.33166504 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08865015 777.33166504 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08865016 777.33166504 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08865017 777.33172607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08865018 777.33172607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08865019 777.33172607 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08865020 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08865021 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08865022 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08865023 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08865024 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08865025 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08865026 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08865027 777.33178711 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08865028 777.33184814 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08865029 777.33184814 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08865030 777.33184814 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08865031 777.33184814 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08865032 777.33190918 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08865033 777.33190918 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08865034 777.33197021 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08865035 777.33197021 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08865036 777.33197021 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08865037 777.33197021 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08865038 777.33203125 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08865039 777.33203125 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08865040 777.33203125 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08865041 777.33203125 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08865042 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08865043 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08865044 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08865045 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08865046 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08865047 777.33209229 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08865048 777.33215332 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08865049 777.33215332 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08865050 777.33215332 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08865051 777.33215332 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08865052 777.33221436 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08865053 777.33221436 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08865054 777.33221436 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08865055 777.33221436 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08865056 777.33227539 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08865057 777.33227539 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08865058 777.33227539 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08865059 777.33227539 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08865060 777.33233643 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08865061 777.33233643 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08865062 777.33239746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08865063 777.33239746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08865064 777.33239746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08865065 777.33239746 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08865066 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08865067 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08865068 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08865069 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08865070 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08865071 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08865072 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08865073 777.33245850 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08865074 777.33251953 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08865075 777.33251953 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08865076 777.33251953 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08865077 777.33251953 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08865078 777.33258057 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08865079 777.33258057 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08865080 777.33258057 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08865081 777.33264160 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08865082 777.33264160 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08865083 777.33264160 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08865084 777.33270264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08865085 777.33270264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08865086 777.33270264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08865087 777.33270264 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08865088 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08865089 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08865090 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08865091 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08865092 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08865093 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08865094 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08865095 777.33276367 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08865096 777.33282471 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08865097 777.33282471 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08865098 777.33288574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08865099 777.33288574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08865100 777.33288574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08865101 777.33288574 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08865102 777.33294678 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08865103 777.33294678 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08865104 777.33294678 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08865105 777.33294678 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08865106 777.33300781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08865107 777.33300781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08865108 777.33300781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08865109 777.33300781 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08865110 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08865111 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08865112 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08865113 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08865114 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08865115 777.33306885 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08865116 777.33312988 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08865117 777.33312988 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08865118 777.33312988 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08865119 777.33312988 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08865120 777.33319092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08865121 777.33319092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08865122 777.33319092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08865123 777.33319092 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08865124 777.33325195 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08865125 777.33325195 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08865126 777.33325195 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08865127 777.33331299 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08865128 777.33331299 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08865129 777.33331299 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08865130 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08865131 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08865132 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08865133 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08865134 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08865135 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08865136 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08865137 777.33337402 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08865138 777.33343506 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08865139 777.33343506 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08865140 777.33343506 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08865141 777.33343506 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08865142 777.33349609 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08865143 777.33349609 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08865144 777.33349609 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08865145 777.33349609 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08865146 777.33355713 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08865147 777.33355713 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08865148 777.33361816 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08865149 777.33361816 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08865150 777.33361816 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08865151 777.33361816 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08865152 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08865153 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08865154 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08865155 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08865156 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08865157 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08865158 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08865159 777.33367920 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08865160 777.33374023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08865161 777.33374023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08865162 777.33374023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08865163 777.33374023 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08865164 777.33380127 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08865165 777.33380127 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08865166 777.33380127 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08865167 777.33386230 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08865168 777.33386230 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08865169 777.33386230 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08865170 777.33392334 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08865171 777.33392334 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08865172 777.33392334 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08865173 777.33392334 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08865174 777.33398438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08865175 777.33398438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08865176 777.33398438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08865177 777.33398438 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08865178 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08865179 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08865180 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08865181 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08865182 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08865183 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08865184 777.33404541 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08865185 777.33410645 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08865186 777.33410645 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08865187 777.33410645 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08865188 777.33416748 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08865189 777.33416748 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08865190 777.33416748 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08865191 777.33416748 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08865192 777.33422852 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08865193 777.33422852 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08865194 777.33422852 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08865195 777.33422852 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08865196 777.33428955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08865197 777.33428955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08865198 777.33428955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08865199 777.33428955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08865200 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08865201 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08865202 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08865203 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08865204 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08865205 777.33435059 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08865206 777.33441162 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08865207 777.33441162 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08865208 777.33441162 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08865209 777.33441162 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08865210 777.33447266 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08865211 777.33447266 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08865212 777.33447266 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08865213 777.33447266 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08865214 777.33453369 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08865215 777.33453369 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08865216 777.33453369 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08865217 777.33459473 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08865218 777.33459473 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08865219 777.33459473 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08865220 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08865221 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08865222 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08865223 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08865224 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08865225 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08865226 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08865227 777.33465576 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08865228 777.33471680 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08865229 777.33471680 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08865230 777.33471680 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08865231 777.33477783 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08865232 777.33477783 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08865233 777.33477783 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08865234 777.33483887 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08865235 777.33483887 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08865236 777.33483887 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08865237 777.33483887 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08865238 777.33489990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08865239 777.33489990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08865240 777.33489990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08865241 777.33489990 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08865242 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08865243 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08865244 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08865245 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08865246 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08865247 777.33496094 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08865248 777.33502197 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08865249 777.33502197 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08865250 777.33502197 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08865251 777.33502197 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08865252 777.33508301 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08865253 777.33508301 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08865254 777.33508301 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08865255 777.33514404 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08865256 777.33514404 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08865257 777.33514404 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08865258 777.33520508 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08865259 777.33520508 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08865260 777.33520508 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08865261 777.33520508 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08865262 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08865263 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08865264 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08865265 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08865266 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08865267 777.33526611 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08865268 777.33538818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08865269 777.33538818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08865270 777.33538818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08865271 777.33544922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08865272 777.33544922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08865273 777.33544922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08865274 777.33551025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08865275 777.33551025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08865276 777.33551025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08865277 777.33551025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08865278 777.33557129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08865279 777.33557129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08865280 777.33557129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08865281 777.33557129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08865282 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08865283 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08865284 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08865285 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08865286 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08865287 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08865288 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08865289 777.33563232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08865290 777.33569336 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08865291 777.33569336 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08865292 777.33575439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08865293 777.33575439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08865294 777.33575439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08865295 777.33575439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08865296 777.33581543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08865297 777.33581543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08865298 777.33581543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08865299 777.33581543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08865300 777.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08865301 777.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08865302 777.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08865303 777.33587646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08865304 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08865305 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08865306 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08865307 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08865308 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08865309 777.33593750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08865310 777.33599854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08865311 777.33599854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08865312 777.33599854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08865313 777.33599854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08865314 777.33605957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08865315 777.33605957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08865316 777.33605957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08865317 777.33605957 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08865318 777.33612061 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08865319 777.33612061 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08865320 777.33612061 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08865321 777.33612061 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08865322 777.33618164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08865323 777.33618164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08865324 777.33618164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08865325 777.33618164 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08865326 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08865327 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08865328 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08865329 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08865330 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08865331 777.33624268 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08865332 777.33630371 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08865333 777.33630371 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08865334 777.33630371 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08865335 777.33630371 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08865336 777.33636475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08865337 777.33636475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08865338 777.33636475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08865339 777.33636475 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08865340 777.33642578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08865341 777.33642578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08865342 777.33642578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08865343 777.33642578 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08865344 777.33648682 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08865345 777.33648682 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08865346 777.33648682 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08865347 777.33648682 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08865348 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08865349 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08865350 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08865351 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08865352 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08865353 777.33654785 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08865354 777.33660889 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08865355 777.33660889 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08865356 777.33660889 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08865357 777.33660889 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08865358 777.33666992 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08865359 777.33666992 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08865360 777.33666992 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08865361 777.33666992 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08865362 777.33673096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08865363 777.33673096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08865364 777.33673096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08865365 777.33673096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08865366 777.33679199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08865367 777.33679199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08865368 777.33679199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08865369 777.33679199 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08865370 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08865371 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08865372 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08865373 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08865374 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08865375 777.33685303 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08865376 777.33691406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08865377 777.33691406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08865378 777.33691406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08865379 777.33691406 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08865380 777.33697510 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08865381 777.33697510 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08865382 777.33703613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08865383 777.33703613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08865384 777.33703613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08865385 777.33703613 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08865386 777.33709717 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08865387 777.33709717 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08865388 777.33709717 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08865389 777.33709717 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08865390 777.33715820 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08865391 777.33715820 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08865392 777.33715820 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08865393 777.33721924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08865394 777.33721924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08865395 777.33721924 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08865396 777.33728027 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08865397 777.33728027 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08865398 777.33734131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08865399 777.33734131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08865400 777.33734131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08865401 777.33734131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08865402 777.33740234 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08865403 777.33740234 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08865404 777.33740234 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08865405 777.33740234 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08865406 777.33746338 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08865407 777.33746338 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08865408 777.33746338 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08865409 777.33746338 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08865410 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08865411 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08865412 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08865413 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08865414 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08865415 777.33752441 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08865416 777.33764648 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08865417 777.33764648 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08865418 777.33764648 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08865419 777.33764648 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08865420 777.33770752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08865421 777.33770752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08865422 777.33770752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08865423 777.33770752 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08865424 777.33776855 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08865425 777.33776855 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08865426 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08865427 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08865428 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08865429 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08865430 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08865431 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08865432 777.33782959 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08865433 777.33789063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08865434 777.33789063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08865435 777.33789063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08865436 777.33795166 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08865437 777.33795166 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08865438 777.33795166 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08865439 777.33795166 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08865440 777.33801270 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08865441 777.33801270 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08865442 777.33801270 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08865443 777.33801270 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08865444 777.33807373 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08865445 777.33807373 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08865446 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08865447 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08865448 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08865449 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08865450 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08865451 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08865452 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08865453 777.33813477 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08865454 777.33819580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08865455 777.33819580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08865456 777.33819580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08865457 777.33819580 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08865458 777.33825684 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08865459 777.33825684 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08865460 777.33825684 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08865461 777.33825684 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08865462 777.33831787 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08865463 777.33831787 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08865464 777.33831787 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08865465 777.33837891 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08865466 777.33837891 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08865467 777.33837891 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08865468 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08865469 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08865470 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08865471 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08865472 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08865473 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08865474 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08865475 777.33843994 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08865476 777.33850098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08865477 777.33850098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08865478 777.33850098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08865479 777.33850098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08865480 777.33856201 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08865481 777.33856201 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08865482 777.33856201 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08865483 777.33856201 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08865484 777.33862305 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08865485 777.33862305 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08865486 777.33868408 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08865487 777.33868408 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08865488 777.33868408 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08865489 777.33868408 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08865490 777.33874512 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08865491 777.33874512 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08865492 777.33874512 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08865493 777.33874512 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08865494 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08865495 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08865496 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08865497 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08865498 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08865499 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08865500 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08865501 777.33880615 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08865502 777.33886719 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08865503 777.33886719 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08865504 777.33886719 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08865505 777.33892822 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08865506 777.33892822 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08865507 777.33892822 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08865508 777.33898926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08865509 777.33898926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08865510 777.33898926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08865511 777.33898926 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08865512 777.33905029 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08865513 777.33905029 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08865514 777.33905029 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08865515 777.33905029 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08865516 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08865517 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08865518 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08865519 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08865520 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08865521 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08865522 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08865523 777.33911133 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08865524 777.33923340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08865525 777.33923340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08865526 777.33929443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08865527 777.33929443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08865528 777.33929443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08865529 777.33929443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08865530 777.33935547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08865531 777.33935547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08865532 777.33935547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08865533 777.33935547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08865534 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08865535 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08865536 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08865537 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08865538 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08865539 777.33941650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08865540 777.33947754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08865541 777.33947754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08865542 777.33947754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08865543 777.33947754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08865544 777.33953857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08865545 777.33953857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08865546 777.33953857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08865547 777.33953857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08865548 777.33959961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08865549 777.33959961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08865550 777.33959961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08865551 777.33959961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08865552 777.33966064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08865553 777.33966064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08865554 777.33966064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08865555 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08865556 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08865557 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08865558 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08865559 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08865560 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08865561 777.33972168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08865562 777.33978271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08865563 777.33978271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08865564 777.33978271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08865565 777.33978271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08865566 777.33984375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08865567 777.33984375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08865568 777.33984375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08865569 777.33984375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08865570 777.33990479 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08865571 777.33990479 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08865572 777.33990479 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08865573 777.33996582 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08865574 777.33996582 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08865575 777.33996582 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08865576 777.34002686 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08865577 777.34002686 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08865578 777.34002686 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08865579 777.34002686 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08865580 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08865581 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08865582 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08865583 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08865584 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08865585 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08865586 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08865587 777.34008789 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08865588 777.34014893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08865589 777.34014893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08865590 777.34014893 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08865591 777.34020996 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08865592 777.34020996 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08865593 777.34020996 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08865594 777.34027100 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08865595 777.34027100 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08865596 777.34027100 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08865597 777.34027100 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08865598 777.34033203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08865599 777.34033203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08865600 777.34033203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08865601 777.34033203 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08865602 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08865603 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08865604 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08865605 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08865606 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08865607 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08865608 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08865609 777.34039307 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08865610 777.34045410 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08865611 777.34045410 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08865612 777.34045410 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08865613 777.34051514 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08865614 777.34051514 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08865615 777.34051514 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08865616 777.34057617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08865617 777.34057617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08865618 777.34057617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08865619 777.34057617 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08865620 777.34063721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08865621 777.34063721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08865622 777.34063721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08865623 777.34063721 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08865624 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08865625 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08865626 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08865627 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08865628 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08865629 777.34069824 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08865630 777.34075928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08865631 777.34075928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08865632 777.34075928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08865633 777.34075928 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08865634 777.34082031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08865635 777.34082031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08865636 777.34082031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08865637 777.34082031 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08865638 777.34088135 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08865639 777.34088135 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08865640 777.34094238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08865641 777.34094238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08865642 777.34094238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08865643 777.34094238 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08865644 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08865645 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08865646 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08865647 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08865648 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08865649 777.34100342 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08865650 777.34106445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08865651 777.34106445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08865652 777.34106445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08865653 777.34106445 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08865654 777.34112549 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08865655 777.34112549 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08865656 777.34118652 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08865657 777.34118652 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08865658 777.34124756 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08865659 777.34124756 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08865660 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08865661 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08865662 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08865663 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08865664 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08865665 777.34130859 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08865666 777.34136963 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08865667 777.34136963 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08865668 777.34143066 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08865669 777.34143066 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08865670 777.34143066 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08865671 777.34143066 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08865672 777.34149170 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08865673 777.34149170 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08865674 777.34149170 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08865675 777.34149170 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08865676 777.34155273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08865677 777.34155273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08865678 777.34155273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08865679 777.34155273 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08865680 777.34161377 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08865681 777.34161377 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08865682 777.34161377 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08865683 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08865684 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08865685 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08865686 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08865687 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08865688 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08865689 777.34167480 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08865690 777.34173584 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08865691 777.34173584 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08865692 777.34173584 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08865693 777.34173584 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08865694 777.34179688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08865695 777.34179688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08865696 777.34179688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08865697 777.34179688 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08865698 777.34185791 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08865699 777.34185791 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08865700 777.34185791 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08865701 777.34191895 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08865702 777.34191895 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08865703 777.34191895 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08865704 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08865705 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08865706 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08865707 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08865708 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08865709 777.34197998 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08865710 777.34204102 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08865711 777.34204102 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08865712 777.34204102 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08865713 777.34204102 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08865714 777.34210205 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08865715 777.34210205 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08865716 777.34210205 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08865717 777.34210205 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08865718 777.34216309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08865719 777.34216309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08865720 777.34216309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08865721 777.34216309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08865722 777.34222412 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08865723 777.34222412 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08865724 777.34222412 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08865725 777.34222412 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08865726 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08865727 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08865728 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08865729 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08865730 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08865731 777.34228516 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08865732 777.34234619 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08865733 777.34234619 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08865734 777.34234619 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08865735 777.34234619 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08865736 777.34240723 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08865737 777.34240723 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08865738 777.34246826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08865739 777.34246826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08865740 777.34246826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08865741 777.34246826 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08865742 777.34252930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08865743 777.34252930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08865744 777.34252930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08865745 777.34252930 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08865746 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08865747 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08865748 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08865749 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08865750 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08865751 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08865752 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08865753 777.34259033 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08865754 777.34265137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08865755 777.34265137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08865756 777.34265137 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08865757 777.34271240 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08865758 777.34271240 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08865759 777.34271240 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08865760 777.34277344 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08865761 777.34277344 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08865762 777.34277344 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08865763 777.34277344 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08865764 777.34283447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08865765 777.34283447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08865766 777.34283447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08865767 777.34283447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08865768 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08865769 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08865770 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08865771 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08865772 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08865773 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08865774 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08865775 777.34289551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08865776 777.34295654 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08865777 777.34295654 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08865778 777.34301758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08865779 777.34301758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08865780 777.34301758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08865781 777.34301758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08865782 777.34307861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08865783 777.34307861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08865784 777.34307861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08865785 777.34307861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08865786 777.34313965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08865787 777.34313965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08865788 777.34313965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08865789 777.34313965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08865790 777.34320068 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08865791 777.34320068 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08865792 777.34326172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08865793 777.34326172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08865794 777.34326172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08865795 777.34326172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08865796 777.34332275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08865797 777.34332275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08865798 777.34332275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08865799 777.34332275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08865800 777.34338379 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08865801 777.34338379 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08865802 777.34344482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08865803 777.34344482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08865804 777.34344482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08865805 777.34344482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08865806 777.34350586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08865807 777.34350586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08865808 777.34350586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08865809 777.34350586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08865810 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08865811 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08865812 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08865813 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08865814 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08865815 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08865816 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08865817 777.34356689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08865818 777.34362793 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08865819 777.34362793 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08865820 777.34362793 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08865821 777.34368896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08865822 777.34368896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08865823 777.34368896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08865824 777.34375000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08865825 777.34375000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08865826 777.34375000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08865827 777.34375000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08865828 777.34381104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08865829 777.34381104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08865830 777.34381104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08865831 777.34381104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08865832 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08865833 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08865834 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08865835 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08865836 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08865837 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08865838 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08865839 777.34387207 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08865840 777.34393311 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08865841 777.34393311 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08865842 777.34399414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08865843 777.34399414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08865844 777.34399414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08865845 777.34399414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08865846 777.34405518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08865847 777.34405518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08865848 777.34405518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08865849 777.34405518 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08865850 777.34411621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08865851 777.34411621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08865852 777.34411621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08865853 777.34411621 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08865854 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08865855 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08865856 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08865857 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08865858 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08865859 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08865860 777.34417725 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08865861 777.34423828 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08865862 777.34423828 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08865863 777.34423828 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08865864 777.34429932 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08865865 777.34429932 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08865866 777.34429932 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08865867 777.34429932 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08865868 777.34436035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08865869 777.34436035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08865870 777.34436035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08865871 777.34436035 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08865872 777.34442139 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08865873 777.34442139 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08865874 777.34442139 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08865875 777.34442139 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08865876 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08865877 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08865878 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08865879 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08865880 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08865881 777.34448242 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08865882 777.34454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08865883 777.34454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08865884 777.34454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08865885 777.34454346 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08865886 777.34460449 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08865887 777.34460449 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08865888 777.34466553 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08865889 777.34466553 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08865890 777.34466553 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08865891 777.34466553 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08865892 777.34472656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08865893 777.34472656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08865894 777.34472656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08865895 777.34472656 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08865896 777.34478760 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08865897 777.34478760 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08865898 777.34478760 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08865899 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08865900 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08865901 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08865902 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08865903 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08865904 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08865905 777.34484863 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08865906 777.34490967 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08865907 777.34490967 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08865908 777.34497070 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08865909 777.34497070 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08865910 777.34497070 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08865911 777.34497070 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08865912 777.34503174 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08865913 777.34503174 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08865914 777.34503174 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08865915 777.34503174 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08865916 777.34509277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08865917 777.34509277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08865918 777.34509277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08865919 777.34509277 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08865920 777.34515381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08865921 777.34515381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08865922 777.34515381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08865923 777.34515381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08865924 777.34515381 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08865925 777.34521484 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08865926 777.34527588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08865927 777.34527588 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08865928 777.34533691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08865929 777.34533691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08865930 777.34533691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08865931 777.34533691 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08865932 777.34539795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08865933 777.34539795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08865934 777.34539795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08865935 777.34539795 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08865936 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08865937 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08865938 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08865939 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08865940 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08865941 777.34545898 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08865942 777.34552002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08865943 777.34552002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08865944 777.34552002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08865945 777.34552002 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08865946 777.34558105 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08865947 777.34558105 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08865948 777.34558105 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08865949 777.34558105 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08865950 777.34564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08865951 777.34564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08865952 777.34564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08865953 777.34564209 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08865954 777.34570313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08865955 777.34570313 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08865956 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08865957 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08865958 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08865959 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08865960 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08865961 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08865962 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08865963 777.34576416 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08865964 777.34582520 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08865965 777.34582520 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08865966 777.34582520 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08865967 777.34582520 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08865968 777.34588623 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08865969 777.34588623 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08865970 777.34588623 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08865971 777.34588623 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08865972 777.34594727 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08865973 777.34594727 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08865974 777.34594727 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08865975 777.34600830 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08865976 777.34600830 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08865977 777.34600830 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08865978 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08865979 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08865980 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08865981 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08865982 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08865983 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08865984 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08865985 777.34606934 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08865986 777.34613037 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08865987 777.34613037 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08865988 777.34613037 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08865989 777.34613037 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08865990 777.34619141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08865991 777.34619141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08865992 777.34619141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08865993 777.34619141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08865994 777.34625244 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08865995 777.34625244 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08865996 777.34631348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08865997 777.34631348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08865998 777.34631348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08865999 777.34631348 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08866000 777.34637451 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08866001 777.34637451 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08866002 777.34637451 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08866003 777.34637451 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08866004 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08866005 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08866006 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08866007 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08866008 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08866009 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08866010 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08866011 777.34643555 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08866012 777.34649658 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08866013 777.34649658 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08866014 777.34655762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08866015 777.34655762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08866016 777.34655762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08866017 777.34655762 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08866018 777.34661865 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08866019 777.34661865 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08866020 777.34667969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08866021 777.34667969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08866022 777.34667969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08866023 777.34667969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08866024 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08866025 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08866026 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08866027 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08866028 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08866029 777.34674072 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08866030 777.34680176 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08866031 777.34680176 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08866032 777.34680176 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08866033 777.34680176 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08866034 777.34686279 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08866035 777.34686279 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08866036 777.34686279 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08866037 777.34692383 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08866038 777.34692383 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08866039 777.34692383 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08866040 777.34698486 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08866041 777.34698486 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08866042 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08866043 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08866044 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08866045 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08866046 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08866047 777.34704590 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08866048 777.34710693 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08866049 777.34710693 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08866050 777.34716797 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08866051 777.34716797 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08866052 777.34729004 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08866053 777.34729004 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08866054 777.34735107 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08866055 777.34735107 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08866056 777.34735107 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08866057 777.34735107 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08866058 777.34735107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08866059 777.34735107 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08866060 777.34741211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08866061 777.34741211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08866062 777.34741211 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08866063 777.34747314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08866064 777.34747314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08866065 777.34747314 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08866066 777.34753418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08866067 777.34753418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08866068 777.34753418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08866069 777.34753418 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08866070 777.34759521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08866071 777.34759521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08866072 777.34759521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08866073 777.34759521 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08866074 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08866075 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08866076 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08866077 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08866078 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08866079 777.34765625 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08866080 777.34771729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08866081 777.34771729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08866082 777.34771729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -08866083 777.34771729 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -08866084 777.34777832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -08866085 777.34777832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -08866086 777.34777832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -08866087 777.34777832 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -08866088 777.34783936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -08866089 777.34783936 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -08866090 777.34790039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -08866091 777.34790039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -08866092 777.34790039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -08866093 777.34790039 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -08866094 777.34796143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -08866095 777.34796143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -08866096 777.34796143 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -08866097 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -08866098 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -08866099 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -08866100 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -08866101 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -08866102 777.34802246 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -08866103 777.34808350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -08866104 777.34808350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -08866105 777.34808350 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -08866106 777.34814453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -08866107 777.34814453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -08866108 777.34814453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -08866109 777.34814453 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -08866110 777.34820557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -08866111 777.34820557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -08866112 777.34820557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -08866113 777.34820557 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -08866114 777.34826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -08866115 777.34826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -08866116 777.34826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -08866117 777.34826660 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -08866118 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -08866119 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -08866120 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -08866121 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -08866122 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -08866123 777.34832764 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -08866124 777.34838867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -08866125 777.34838867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -08866126 777.34838867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -08866127 777.34838867 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -08866128 777.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -08866129 777.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -08866130 777.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -08866131 777.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -08866132 777.34851074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -08866133 777.34851074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -08866134 777.34851074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -08866135 777.34851074 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -08866136 777.34857178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -08866137 777.34857178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -08866138 777.34857178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -08866139 777.34857178 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -08866140 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -08866141 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -08866142 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -08866143 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -08866144 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -08866145 777.34863281 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -08866146 777.34869385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -08866147 777.34869385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -08866148 777.34869385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -08866149 777.34869385 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -08866150 777.34875488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -08866151 777.34875488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -08866152 777.34875488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -08866153 777.34875488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -08866154 777.34881592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -08866155 777.34881592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -08866156 777.34881592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -08866157 777.34881592 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -08866158 777.34887695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -08866159 777.34887695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -08866160 777.34887695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -08866161 777.34887695 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -08866162 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -08866163 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -08866164 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -08866165 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -08866166 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -08866167 777.34893799 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -08866168 777.34899902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -08866169 777.34899902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -08866170 777.34899902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -08866171 777.34899902 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -08866172 777.34906006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -08866173 777.34906006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -08866174 777.34906006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -08866175 777.34906006 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -08866176 777.34912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -08866177 777.34912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -08866178 777.34912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -08866179 777.34912109 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -08866180 777.34918213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -08866181 777.34918213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -08866182 777.34918213 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -08866183 777.34924316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -08866184 777.34924316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -08866185 777.34924316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -08866186 777.34924316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -08866187 777.34924316 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -08872466 777.43994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -08872467 777.43994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f0 -08872468 777.44000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -08872469 777.44000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11100 -08872470 777.44000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -08872471 777.44000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11110 -08872472 777.44006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -08872473 777.44006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11120 -08872474 777.44006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -08872475 777.44006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11130 -08872476 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -08872477 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11140 -08872478 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -08872479 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11150 -08872480 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -08872481 777.44012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11160 -08872482 777.44018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -08872483 777.44018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11170 -08872484 777.44018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -08872485 777.44018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11180 -08872486 777.44024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -08872487 777.44024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11190 -08872488 777.44024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -08872489 777.44024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111a0 -08872490 777.44030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -08872491 777.44030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111b0 -08872492 777.44030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -08872493 777.44030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111c0 -08872494 777.44036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -08872495 777.44036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111d0 -08872496 777.44036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -08872497 777.44042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111e0 -08872498 777.44042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -08872499 777.44042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x111f0 -08872500 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -08872501 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11200 -08872502 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -08872503 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11210 -08872504 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -08872505 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11220 -08872506 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -08872507 777.44049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11230 -08872508 777.44055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -08872509 777.44055176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11240 -08874962 777.47552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -08874963 777.47552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ef0 -08874964 777.47552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -08874965 777.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f00 -08874966 777.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -08874967 777.47558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f10 -08874968 777.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -08874969 777.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f20 -08874970 777.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -08874971 777.47564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f30 -08874972 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -08874973 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f40 -08874974 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -08874975 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f50 -08874976 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -08874977 777.47570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f60 -08874978 777.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -08874979 777.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f70 -08874980 777.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -08874981 777.47576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f80 -08874982 777.47583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -08874983 777.47583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f90 -08874984 777.47583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -08874985 777.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fa0 -08874986 777.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -08874987 777.47589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fb0 -08874988 777.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -08874989 777.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fc0 -08874990 777.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -08874991 777.47595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fd0 -08874992 777.47601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -08874993 777.47601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15fe0 -08874994 777.47601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -08874995 777.47601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ff0 -08874996 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -08874997 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16000 -08874998 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -08874999 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16010 -08875000 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -08875001 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16020 -08875002 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -08875003 777.47607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16030 -08875004 777.47613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -08875005 777.47613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16040 -08877646 777.51373291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -08877647 777.51379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2d0 -08877648 777.51379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -08877649 777.51379395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2e0 -08877650 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -08877651 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2f0 -08877652 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -08877653 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b300 -08877654 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -08877655 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b310 -08877656 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -08877657 777.51385498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b320 -08877658 777.51391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -08877659 777.51391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b330 -08877660 777.51391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -08877661 777.51391602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b340 -08877662 777.51397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -08877663 777.51397705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b350 -08877664 777.51403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -08877665 777.51403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b360 -08877666 777.51403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -08877667 777.51403809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b370 -08877668 777.51409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -08877669 777.51409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b380 -08877670 777.51409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -08877671 777.51409912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b390 -08877672 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -08877673 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3a0 -08877674 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -08877675 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3b0 -08877676 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -08877677 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3c0 -08877678 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -08877679 777.51416016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3d0 -08877680 777.51422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -08877681 777.51422119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3e0 -08877682 777.51428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -08877683 777.51428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b3f0 -08877684 777.51428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -08877685 777.51428223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b400 -08877686 777.51434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -08877687 777.51434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b410 -08877688 777.51434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -08877689 777.51434326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b420 -08879848 777.54498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -08879849 777.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7a0 -08879850 777.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -08879851 777.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7b0 -08879852 777.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -08879853 777.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7c0 -08879854 777.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -08879855 777.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7d0 -08879856 777.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -08879857 777.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7e0 -08879858 777.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -08879859 777.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f7f0 -08879860 777.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -08879861 777.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f800 -08879862 777.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -08879863 777.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f810 -08879864 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -08879865 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f820 -08879866 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -08879867 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f830 -08879868 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -08879869 777.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f840 -08879870 777.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -08879871 777.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f850 -08879872 777.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -08879873 777.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f860 -08879874 777.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -08879875 777.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f870 -08879876 777.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -08879877 777.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f880 -08879878 777.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -08879879 777.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f890 -08879880 777.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -08879881 777.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8a0 -08879882 777.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -08879883 777.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8b0 -08879884 777.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -08879885 777.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8c0 -08879886 777.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -08879887 777.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8d0 -08879888 777.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -08879889 777.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8e0 -08879890 777.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -08879891 777.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f8f0 -08882098 777.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -08882099 777.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23df0 -08882100 777.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -08882101 777.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e00 -08882102 777.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -08882103 777.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e10 -08882104 777.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -08882105 777.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e20 -08882106 777.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -08882107 777.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e30 -08882108 777.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -08882109 777.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e40 -08882110 777.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -08882111 777.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e50 -08882112 777.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -08882113 777.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e60 -08882114 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -08882115 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e70 -08882116 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -08882117 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e80 -08882118 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -08882119 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e90 -08882120 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -08882121 777.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ea0 -08882122 777.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -08882123 777.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23eb0 -08882124 777.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -08882125 777.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ec0 -08882126 777.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -08882127 777.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ed0 -08882128 777.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -08882129 777.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ee0 -08882130 777.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -08882131 777.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ef0 -08882132 777.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -08882133 777.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f00 -08882134 777.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -08882135 777.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f10 -08882136 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -08882137 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f20 -08882138 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -08882139 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f30 -08882140 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -08882141 777.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f40 -08884722 777.61444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -08884723 777.61444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ff0 -08884724 777.61450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -08884725 777.61450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29000 -08884726 777.61450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -08884727 777.61450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29010 -08884728 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -08884729 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29020 -08884730 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -08884731 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29030 -08884732 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -08884733 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29040 -08884734 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -08884735 777.61456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29050 -08884736 777.61462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -08884737 777.61462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29060 -08884738 777.61462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -08884739 777.61468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29070 -08884740 777.61468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -08884741 777.61468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29080 -08884742 777.61474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -08884743 777.61474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29090 -08884744 777.61474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -08884745 777.61474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290a0 -08884746 777.61480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -08884747 777.61480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290b0 -08884748 777.61480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -08884749 777.61480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290c0 -08884750 777.61486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -08884751 777.61486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290d0 -08884752 777.61486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -08884753 777.61486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290e0 -08884754 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -08884755 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x290f0 -08884756 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -08884757 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29100 -08884758 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -08884759 777.61492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29110 -08884760 777.61499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -08884761 777.61499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29120 -08884762 777.61499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -08884763 777.61499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29130 -08884764 777.61505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -08884765 777.61505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29140 -08887096 777.64758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -08887097 777.64758301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da20 -08887098 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -08887099 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da30 -08887100 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -08887101 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da40 -08887102 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -08887103 777.64764404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da50 -08887104 777.64770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -08887105 777.64770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da60 -08887106 777.64770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -08887107 777.64770508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da70 -08887108 777.64776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -08887109 777.64776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da80 -08887110 777.64776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -08887111 777.64776611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da90 -08887112 777.64782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -08887113 777.64782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa0 -08887114 777.64782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -08887115 777.64782715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab0 -08887116 777.64788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -08887117 777.64788818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac0 -08887118 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -08887119 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad0 -08887120 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -08887121 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae0 -08887122 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -08887123 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf0 -08887124 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -08887125 777.64794922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db00 -08887126 777.64801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -08887127 777.64801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db10 -08887128 777.64801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -08887129 777.64801025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db20 -08887130 777.64807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -08887131 777.64807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db30 -08887132 777.64807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -08887133 777.64807129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db40 -08887134 777.64813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -08887135 777.64813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db50 -08887136 777.64813232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -08887137 777.64819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db60 -08887138 777.64819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -08887139 777.64819336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db70 -08890320 777.69262695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -08890321 777.69262695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ee0 -08890322 777.69262695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -08890323 777.69262695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ef0 -08890324 777.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -08890325 777.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f00 -08890326 777.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -08890327 777.69268799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -08890328 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -08890329 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -08890330 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -08890331 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -08890332 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -08890333 777.69274902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -08890334 777.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -08890335 777.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -08890336 777.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -08890337 777.69281006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -08890338 777.69287109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -08890339 777.69287109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -08890340 777.69287109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -08890341 777.69287109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -08890342 777.69293213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -08890343 777.69293213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -08890344 777.69293213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -08890345 777.69293213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -08890346 777.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -08890347 777.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -08890348 777.69299316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -08890349 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -08890350 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -08890351 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -08890352 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -08890353 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -08890354 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -08890355 777.69305420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -08890356 777.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -08890357 777.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -08890358 777.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -08890359 777.69311523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -08890360 777.69317627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -08890361 777.69317627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -08890362 777.69317627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -08890363 777.69317627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -08892686 777.72528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -08892687 777.72528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388d0 -08892688 777.72534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -08892689 777.72534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388e0 -08892690 777.72534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -08892691 777.72534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x388f0 -08892692 777.72540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -08892693 777.72540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38900 -08892694 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -08892695 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38910 -08892696 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -08892697 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38920 -08892698 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -08892699 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38930 -08892700 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -08892701 777.72546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38940 -08892702 777.72552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -08892703 777.72552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38950 -08892704 777.72552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -08892705 777.72552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38960 -08892706 777.72558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -08892707 777.72558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38970 -08892708 777.72558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -08892709 777.72564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38980 -08892710 777.72564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -08892711 777.72564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38990 -08892712 777.72570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -08892713 777.72570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389a0 -08892714 777.72570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -08892715 777.72570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389b0 -08892716 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -08892717 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389c0 -08892718 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -08892719 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389d0 -08892720 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -08892721 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389e0 -08892722 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -08892723 777.72576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x389f0 -08892724 777.72583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -08892725 777.72583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a00 -08892726 777.72589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -08892727 777.72589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a10 -08892728 777.72589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -08892729 777.72589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a20 -08906147 778.14648438 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08906148 778.14654541 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08906149 778.14654541 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08906150 778.14660645 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08906151 778.14672852 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08906152 778.14672852 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08906153 778.14678955 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08906154 778.14678955 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08906155 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08906156 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08906157 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08906158 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08906159 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08906160 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08906161 778.79846191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08906162 778.79852295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08906163 778.79852295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08906164 778.79852295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08906165 778.79858398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08906166 778.79858398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08906167 778.79858398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08906168 778.79858398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08906169 778.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08906170 778.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08906171 778.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08906172 778.79864502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08906173 778.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08906174 778.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08906175 778.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08906176 778.79870605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08906177 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08906178 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08906179 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08906180 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08906181 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08906182 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08906183 778.79876709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08906184 778.79882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08906185 778.79882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08906186 778.79882813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08906187 778.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08906188 778.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08906189 778.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08906190 778.79888916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08906191 778.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08906192 778.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08906193 778.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08906194 778.79895020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08906195 778.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08906196 778.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08906197 778.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08906198 778.79901123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08906199 778.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08906200 778.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08906201 778.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08906202 778.79907227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08906203 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08906204 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08906205 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08906206 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08906207 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08906208 778.79913330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08906209 778.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08906210 778.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08906211 778.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08906212 778.79919434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08906213 778.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08906214 778.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08906215 778.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08906216 778.79925537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08906217 778.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08906218 778.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08906219 778.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08906220 778.79931641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08906221 778.79937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08906222 778.79937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08906223 778.79937744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08906224 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08906225 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08906226 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08906227 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08906228 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08906229 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08906230 778.79943848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08906231 778.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08906232 778.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08906233 778.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08906234 778.79949951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08906235 778.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08906236 778.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08906237 778.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08906238 778.79956055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08906239 778.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08906240 778.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08906241 778.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08906242 778.79962158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08906243 778.79968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08906244 778.79968262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08906245 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08906246 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08906247 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08906248 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08906249 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08906250 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08906251 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08906252 778.79974365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08906253 778.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08906254 778.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08906255 778.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08906256 778.79980469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08906257 778.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08906258 778.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08906259 778.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08906260 778.79986572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08906261 778.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08906262 778.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08906263 778.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08906264 778.79992676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08906265 778.79998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08906266 778.79998779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08906267 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08906268 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08906269 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08906270 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08906271 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08906272 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08906273 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08906274 778.80004883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08906275 778.80010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08906276 778.80010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08906277 778.80010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08906278 778.80010986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08906279 778.80017090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08906280 778.80017090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08906281 778.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08906282 778.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08906283 778.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08906284 778.80023193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08906285 778.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08906286 778.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08906287 778.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08906288 778.80029297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08906289 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08906290 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08906291 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08906292 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08906293 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08906294 778.80035400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08906295 778.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08906296 778.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08906297 778.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08906298 778.80041504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08906299 778.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08906300 778.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08906301 778.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08906302 778.80047607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08906303 778.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08906304 778.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08906305 778.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08906306 778.80053711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08906307 778.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08906308 778.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08906309 778.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08906310 778.80059814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08906311 778.80065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08906312 778.80065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08906313 778.80065918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08906314 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08906315 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08906316 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08906317 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08906318 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08906319 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08906320 778.80072021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08906321 778.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08906322 778.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08906323 778.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08906324 778.80078125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08906325 778.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08906326 778.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08906327 778.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08906328 778.80084229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08906329 778.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08906330 778.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08906331 778.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08906332 778.80090332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08906333 778.80096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08906334 778.80096436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08906335 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08906336 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08906337 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08906338 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08906339 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08906340 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08906341 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08906342 778.80102539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08906343 778.80108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08906344 778.80108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08906345 778.80108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08906346 778.80108643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08906347 778.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08906348 778.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08906349 778.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08906350 778.80114746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08906351 778.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08906352 778.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08906353 778.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08906354 778.80120850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08906355 778.80126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08906356 778.80126953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08906357 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08906358 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08906359 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08906360 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08906361 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08906362 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08906363 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08906364 778.80133057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08906365 778.80139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08906366 778.80139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08906367 778.80139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08906368 778.80139160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08906369 778.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08906370 778.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08906371 778.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08906372 778.80145264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08906373 778.80151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08906374 778.80151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08906375 778.80151367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08906376 778.80157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08906377 778.80157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08906378 778.80157471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08906379 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08906380 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08906381 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08906382 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08906383 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08906384 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08906385 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08906386 778.80163574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08906387 778.80169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08906388 778.80169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08906389 778.80169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08906390 778.80169678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08906391 778.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08906392 778.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08906393 778.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08906394 778.80175781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08906395 778.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08906396 778.80181885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08906397 778.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08906398 778.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08906399 778.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08906400 778.80187988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08906401 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08906402 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08906403 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08906404 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08906405 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08906406 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08906407 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08906408 778.80194092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08906409 778.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08906410 778.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08906411 778.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08906412 778.80200195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08906413 778.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08906414 778.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08906415 778.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08906416 778.80206299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08906417 778.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08906418 778.80212402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08906419 778.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08906420 778.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08906421 778.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08906422 778.80218506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08906423 778.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08906424 778.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08906425 778.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08906426 778.80224609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08906427 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08906428 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08906429 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08906430 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08906431 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08906432 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08906433 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08906434 778.80230713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08906435 778.80236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08906436 778.80236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08906437 778.80236816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08906438 778.80242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08906439 778.80242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08906440 778.80242920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08906441 778.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08906442 778.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08906443 778.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08906444 778.80249023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08906445 778.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08906446 778.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08906447 778.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08906448 778.80255127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08906449 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08906450 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08906451 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08906452 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08906453 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08906454 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08906455 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08906456 778.80261230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08906457 778.80267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08906458 778.80267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08906459 778.80267334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08906460 778.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08906461 778.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08906462 778.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08906463 778.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08906464 778.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08906465 778.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08906466 778.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08906467 778.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08906468 778.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08906469 778.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08906470 778.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08906471 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08906472 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08906473 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08906474 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08906475 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08906476 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08906477 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08906478 778.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08906479 778.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08906480 778.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08906481 778.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08906482 778.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08906483 778.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08906484 778.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08906485 778.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08906486 778.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08906487 778.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08906488 778.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08906489 778.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08906490 778.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08906491 778.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08906492 778.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08906493 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08906494 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08906495 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08906496 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08906497 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08906498 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08906499 778.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08906500 778.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08906501 778.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08906502 778.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08906503 778.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08906504 778.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08906505 778.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08906506 778.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08906507 778.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08906508 778.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08906509 778.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08906510 778.80340576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08906511 778.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08906512 778.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08906513 778.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08906514 778.80346680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08906515 778.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08906516 778.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08906517 778.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08906518 778.80352783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08906519 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08906520 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08906521 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08906522 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08906523 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08906524 778.80358887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08906525 778.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08906526 778.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08906527 778.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08906528 778.80364990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08906529 778.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08906530 778.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08906531 778.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08906532 778.80371094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08906533 778.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08906534 778.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08906535 778.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08906536 778.80377197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08906537 778.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08906538 778.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08906539 778.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08906540 778.80383301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08906541 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08906542 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08906543 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08906544 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08906545 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08906546 778.80389404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08906547 778.80395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08906548 778.80395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08906549 778.80395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08906550 778.80395508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08906551 778.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08906552 778.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08906553 778.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08906554 778.80401611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08906555 778.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08906556 778.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08906557 778.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08906558 778.80407715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08906559 778.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08906560 778.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08906561 778.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08906562 778.80413818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08906563 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08906564 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08906565 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08906566 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08906567 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08906568 778.80419922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08906569 778.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08906570 778.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08906571 778.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08906572 778.80426025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08906573 778.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08906574 778.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08906575 778.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08906576 778.80432129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08906577 778.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08906578 778.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08906579 778.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08906580 778.80438232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08906581 778.80444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08906582 778.80444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08906583 778.80444336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08906584 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08906585 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08906586 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08906587 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08906588 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08906589 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08906590 778.80450439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08906591 778.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08906592 778.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08906593 778.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08906594 778.80456543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08906595 778.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08906596 778.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08906597 778.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08906598 778.80462646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08906599 778.80468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08906600 778.80468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08906601 778.80468750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08906602 778.80474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08906603 778.80474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08906604 778.80474854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08906605 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08906606 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08906607 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08906608 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08906609 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08906610 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08906611 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08906612 778.80480957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08906613 778.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08906614 778.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08906615 778.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08906616 778.80487061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08906617 778.80493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08906618 778.80493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08906619 778.80493164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08906620 778.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08906621 778.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08906622 778.80499268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08906623 778.80505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08906624 778.80505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08906625 778.80505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08906626 778.80505371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08906627 778.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08906628 778.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08906629 778.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08906630 778.80511475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08906631 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08906632 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08906633 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08906634 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08906635 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08906636 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08906637 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08906638 778.80517578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08906639 778.80523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08906640 778.80523682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08906641 778.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08906642 778.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08906643 778.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08906644 778.80529785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08906645 778.80535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08906646 778.80535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08906647 778.80535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08906648 778.80535889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08906649 778.80541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08906650 778.80541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08906651 778.80541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08906652 778.80541992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08906653 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08906654 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08906655 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08906656 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08906657 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08906658 778.80548096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08906659 778.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08906660 778.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08906661 778.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08906662 778.80554199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08906663 778.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08906664 778.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08906665 778.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08906666 778.80560303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08906667 778.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08906668 778.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08906669 778.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08906670 778.80566406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08906671 778.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08906672 778.80572510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08906673 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08906674 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08906675 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08906676 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08906677 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08906678 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08906679 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08906680 778.80578613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08906681 778.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08906682 778.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08906683 778.80584717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08906684 778.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08906685 778.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08906686 778.80590820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08906687 778.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08906688 778.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08906689 778.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08906690 778.80596924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08906691 778.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08906692 778.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08906693 778.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08906694 778.80603027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08906695 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08906696 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08906697 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08906698 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08906699 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08906700 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08906701 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08906702 778.80609131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08906703 778.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08906704 778.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08906705 778.80615234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08906706 778.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08906707 778.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08906708 778.80621338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08906709 778.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08906710 778.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08906711 778.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08906712 778.80627441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08906713 778.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08906714 778.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08906715 778.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08906716 778.80633545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08906717 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08906718 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08906719 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08906720 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08906721 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08906722 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08906723 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08906724 778.80639648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08906725 778.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08906726 778.80645752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08906727 778.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08906728 778.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08906729 778.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08906730 778.80651855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08906731 778.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08906732 778.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08906733 778.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08906734 778.80657959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08906735 778.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08906736 778.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08906737 778.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08906738 778.80664063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08906739 778.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08906740 778.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08906741 778.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08906742 778.80670166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08906743 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08906744 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08906745 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08906746 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08906747 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08906748 778.80676270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08906749 778.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08906750 778.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08906751 778.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08906752 778.80682373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08906753 778.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08906754 778.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08906755 778.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08906756 778.80688477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08906757 778.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08906758 778.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08906759 778.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08906760 778.80694580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08906761 778.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08906762 778.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08906763 778.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08906764 778.80700684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08906765 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08906766 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08906767 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08906768 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08906769 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08906770 778.80706787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08906771 778.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08906772 778.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08906773 778.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08906774 778.80712891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08906775 778.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08906776 778.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08906777 778.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08906778 778.80718994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08906779 778.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08906780 778.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08906781 778.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08906782 778.80725098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08906783 778.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08906784 778.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08906785 778.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08906786 778.80731201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08906787 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08906788 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08906789 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08906790 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08906791 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08906792 778.80737305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08906793 778.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08906794 778.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08906795 778.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08906796 778.80743408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08906797 778.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08906798 778.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08906799 778.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08906800 778.80749512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08906801 778.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08906802 778.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08906803 778.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08906804 778.80755615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08906805 778.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08906806 778.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08906807 778.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08906808 778.80761719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08906809 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08906810 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08906811 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08906812 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08906813 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08906814 778.80767822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08906815 778.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08906816 778.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08906817 778.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08906818 778.80773926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08906819 778.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08906820 778.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08906821 778.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08906822 778.80780029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08906823 778.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08906824 778.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08906825 778.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08906826 778.80786133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08906827 778.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08906828 778.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08906829 778.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08906830 778.80792236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08906831 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08906832 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08906833 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08906834 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08906835 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08906836 778.80798340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08906837 778.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08906838 778.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08906839 778.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08906840 778.80804443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08906841 778.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08906842 778.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08906843 778.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08906844 778.80810547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08906845 778.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08906846 778.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08906847 778.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08906848 778.80816650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08906849 778.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08906850 778.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08906851 778.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08906852 778.80822754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08906853 778.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08906854 778.80828857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08906855 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08906856 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08906857 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08906858 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08906859 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08906860 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08906861 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08906862 778.80834961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08906863 778.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08906864 778.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08906865 778.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08906866 778.80841064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08906867 778.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08906868 778.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08906869 778.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08906870 778.80847168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08906871 778.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08906872 778.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08906873 778.80853271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08906874 778.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08906875 778.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08906876 778.80859375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08906877 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08906878 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08906879 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08906880 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08906881 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08906882 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08906883 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08906884 778.80865479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08906885 778.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08906886 778.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08906887 778.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08906888 778.80871582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08906889 778.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08906890 778.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08906891 778.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08906892 778.80877686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08906893 778.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08906894 778.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08906895 778.80883789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08906896 778.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08906897 778.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08906898 778.80889893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08906899 778.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08906900 778.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08906901 778.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08906902 778.80895996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08915503 778.93066406 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -08915504 778.93066406 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -08915505 778.93066406 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -08915506 778.93066406 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -08915507 778.93072510 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -08915508 778.93072510 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -08915509 778.93072510 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13498 -08915510 778.93072510 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13498 -08915511 778.93078613 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -08915512 778.93078613 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -08915513 778.93078613 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -08915514 778.93078613 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -08915515 778.93084717 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -08915516 778.93084717 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -08915517 778.93084717 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -08915518 778.93084717 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -08915519 778.93090820 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -08915520 778.93090820 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -08915521 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -08915522 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -08915523 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -08915524 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -08915525 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13518 -08915526 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13518 -08915527 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13528 -08915528 778.93096924 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13528 -08915529 778.93103027 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13538 -08915530 778.93103027 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13538 -08915531 778.93103027 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13548 -08915532 778.93103027 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13548 -08915533 778.93109131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -08915534 778.93109131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13558 -08915535 778.93109131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -08915536 778.93109131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13568 -08915537 778.93115234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -08915538 778.93115234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13578 -08915539 778.93115234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -08915540 778.93115234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13588 -08915541 778.93121338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -08915542 778.93121338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x13598 -08915543 778.93127441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -08915544 778.93127441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x135a8 -08915545 778.93127441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -08915546 778.93127441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x135b8 -08918175 778.96838379 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -08918176 778.96838379 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x187e8 -08918177 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -08918178 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x187f8 -08918179 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -08918180 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18808 -08918181 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -08918182 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18818 -08918183 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -08918184 778.96844482 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18828 -08918185 778.96850586 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -08918186 778.96850586 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18838 -08918187 778.96850586 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -08918188 778.96850586 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18848 -08918189 778.96856689 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -08918190 778.96856689 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18858 -08918191 778.96856689 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -08918192 778.96856689 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18868 -08918193 778.96862793 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -08918194 778.96862793 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18878 -08918195 778.96862793 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -08918196 778.96868896 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18888 -08918197 778.96868896 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -08918198 778.96868896 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18898 -08918199 778.96875000 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -08918200 778.96875000 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a8 -08918201 778.96875000 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -08918202 778.96875000 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b8 -08918203 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -08918204 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c8 -08918205 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -08918206 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d8 -08918207 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -08918208 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e8 -08918209 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -08918210 778.96881104 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f8 -08918211 778.96887207 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -08918212 778.96887207 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18908 -08918213 778.96887207 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -08918214 778.96887207 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18918 -08918215 778.96893311 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -08918216 778.96893311 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18928 -08918217 778.96893311 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -08918218 778.96899414 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x18938 -08920664 779.00366211 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a8 -08920665 779.00366211 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5a8 -08920666 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b8 -08920667 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5b8 -08920668 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c8 -08920669 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5c8 -08920670 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d8 -08920671 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5d8 -08920672 779.00372314 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e8 -08920673 779.00378418 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5e8 -08920674 779.00378418 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f8 -08920675 779.00378418 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d5f8 -08920676 779.00384521 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d608 -08920677 779.00384521 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d608 -08920678 779.00384521 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d618 -08920679 779.00384521 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d618 -08920680 779.00390625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d628 -08920681 779.00390625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d628 -08920682 779.00390625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d638 -08920683 779.00390625 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d638 -08920684 779.00396729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d648 -08920685 779.00396729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d648 -08920686 779.00396729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d658 -08920687 779.00396729 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d658 -08920688 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d668 -08920689 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d668 -08920690 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d678 -08920691 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d678 -08920692 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d688 -08920693 779.00402832 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d688 -08920694 779.00408936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d698 -08920695 779.00408936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d698 -08920696 779.00408936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a8 -08920697 779.00408936 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6a8 -08920698 779.00415039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b8 -08920699 779.00415039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6b8 -08920700 779.00415039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c8 -08920701 779.00415039 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6c8 -08920702 779.00421143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d8 -08920703 779.00421143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6d8 -08920704 779.00421143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e8 -08920705 779.00421143 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6e8 -08920706 779.00427246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f8 -08920707 779.00427246 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f8 -08923256 779.04028320 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22698 -08923257 779.04028320 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22698 -08923258 779.04034424 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a8 -08923259 779.04034424 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226a8 -08923260 779.04034424 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b8 -08923261 779.04034424 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b8 -08923262 779.04040527 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -08923263 779.04040527 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -08923264 779.04040527 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -08923265 779.04040527 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -08923266 779.04046631 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -08923267 779.04046631 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -08923268 779.04046631 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -08923269 779.04046631 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -08923270 779.04052734 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -08923271 779.04052734 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -08923272 779.04052734 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -08923273 779.04052734 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -08923274 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -08923275 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -08923276 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -08923277 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -08923278 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -08923279 779.04058838 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -08923280 779.04064941 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -08923281 779.04064941 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -08923282 779.04064941 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -08923283 779.04064941 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -08923284 779.04071045 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -08923285 779.04071045 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -08923286 779.04071045 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -08923287 779.04071045 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -08923288 779.04077148 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -08923289 779.04077148 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -08923290 779.04077148 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -08923291 779.04077148 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -08923292 779.04083252 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -08923293 779.04083252 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -08923294 779.04083252 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -08923295 779.04083252 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -08923296 779.04089355 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -08923297 779.04089355 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -08923298 779.04089355 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -08923299 779.04089355 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -08925761 779.07574463 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -08925762 779.07574463 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -08925763 779.07574463 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -08925764 779.07580566 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -08925765 779.07580566 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -08925766 779.07580566 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -08925767 779.07580566 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -08925768 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -08925769 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -08925770 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -08925771 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -08925772 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -08925773 779.07586670 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -08925774 779.07592773 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -08925775 779.07592773 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -08925776 779.07592773 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -08925777 779.07592773 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -08925778 779.07598877 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -08925779 779.07598877 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -08925780 779.07598877 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -08925781 779.07598877 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -08925782 779.07604980 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -08925783 779.07604980 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -08925784 779.07604980 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -08925785 779.07611084 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -08925786 779.07611084 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -08925787 779.07611084 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -08925788 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -08925789 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -08925790 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -08925791 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -08925792 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -08925793 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -08925794 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -08925795 779.07617188 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -08925796 779.07623291 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -08925797 779.07623291 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x275f8 -08925798 779.07623291 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -08925799 779.07623291 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27608 -08925800 779.07629395 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -08925801 779.07629395 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27618 -08925802 779.07635498 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -08925803 779.07635498 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27628 -08925804 779.07635498 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x27638 -08928300 779.11169434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -08928301 779.11169434 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c438 -08928302 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -08928303 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c448 -08928304 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -08928305 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c458 -08928306 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -08928307 779.11175537 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c468 -08928308 779.11181641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -08928309 779.11181641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c478 -08928310 779.11181641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -08928311 779.11181641 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c488 -08928312 779.11187744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c498 -08928313 779.11187744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c498 -08928314 779.11187744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a8 -08928315 779.11187744 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4a8 -08928316 779.11193848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b8 -08928317 779.11193848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4b8 -08928318 779.11193848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c8 -08928319 779.11193848 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4c8 -08928320 779.11199951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d8 -08928321 779.11199951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4d8 -08928322 779.11199951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e8 -08928323 779.11199951 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4e8 -08928324 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f8 -08928325 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c4f8 -08928326 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c508 -08928327 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c508 -08928328 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -08928329 779.11206055 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c518 -08928330 779.11212158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -08928331 779.11212158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c528 -08928332 779.11212158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c538 -08928333 779.11212158 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c538 -08928334 779.11218262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c548 -08928335 779.11218262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c548 -08928336 779.11218262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c558 -08928337 779.11218262 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c558 -08928338 779.11224365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c568 -08928339 779.11224365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c568 -08928340 779.11224365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c578 -08928341 779.11224365 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c578 -08928342 779.11230469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c588 -08928343 779.11230469 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c588 -08928784 779.11859131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -08928785 779.11859131 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -08928786 779.11865234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -08928787 779.11865234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d368 -08928788 779.11865234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -08928789 779.11865234 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d378 -08928790 779.11871338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -08928791 779.11871338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d388 -08928792 779.11871338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -08928793 779.11871338 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d398 -08928794 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -08928795 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3a8 -08928796 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -08928797 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3b8 -08928798 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -08928799 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3c8 -08928800 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -08928801 779.11877441 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3d8 -08928802 779.11883545 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -08928803 779.11883545 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3e8 -08928804 779.11883545 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -08928805 779.11883545 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d3f8 -08928806 779.11889648 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -08928807 779.11889648 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d408 -08928808 779.11895752 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -08928809 779.11895752 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d418 -08928810 779.11895752 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -08928811 779.11895752 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d428 -08928812 779.11901855 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -08928813 779.11901855 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d438 -08928814 779.11901855 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -08928815 779.11901855 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d448 -08928816 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -08928817 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d458 -08928818 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -08928819 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d468 -08928820 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -08928821 779.11907959 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d478 -08928822 779.11914063 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -08928823 779.11914063 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d488 -08928824 779.11914063 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -08928825 779.11914063 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d498 -08928826 779.11920166 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -08928827 779.11920166 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d4a8 -08928854 779.11962891 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -08928855 779.11962891 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d588 -08928856 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -08928857 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d598 -08928858 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -08928859 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5a8 -08928860 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -08928861 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5b8 -08928862 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -08928863 779.11968994 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5c8 -08928864 779.11975098 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -08928865 779.11975098 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5d8 -08928866 779.11975098 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -08928867 779.11975098 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5e8 -08928868 779.11981201 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -08928869 779.11981201 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d5f8 -08928870 779.11981201 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -08928871 779.11981201 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d608 -08928872 779.11987305 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d618 -08928873 779.11987305 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d618 -08928874 779.11987305 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d628 -08928875 779.11987305 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d628 -08928876 779.11993408 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -08928877 779.11993408 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d638 -08928878 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -08928879 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d648 -08928880 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -08928881 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d658 -08928882 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -08928883 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d668 -08928884 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -08928885 779.11999512 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d678 -08928886 779.12005615 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -08928887 779.12005615 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d688 -08928888 779.12005615 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -08928889 779.12005615 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d698 -08928890 779.12011719 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -08928891 779.12011719 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6a8 -08928892 779.12011719 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -08928893 779.12011719 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6b8 -08928894 779.12017822 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -08928895 779.12017822 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6c8 -08928896 779.12017822 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -08928897 779.12023926 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d6d8 -08928946 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d868 -08928947 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d868 -08928948 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d878 -08928949 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d878 -08928950 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d888 -08928951 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d888 -08928952 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d898 -08928953 779.12097168 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d898 -08928954 779.12103271 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a8 -08928955 779.12103271 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8a8 -08928956 779.12103271 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b8 -08928957 779.12103271 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8b8 -08928958 779.12109375 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c8 -08928959 779.12109375 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8c8 -08928960 779.12109375 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d8 -08928961 779.12115479 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8d8 -08928962 779.12115479 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e8 -08928963 779.12115479 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8e8 -08928964 779.12121582 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f8 -08928965 779.12121582 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d8f8 -08928966 779.12121582 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d908 -08928967 779.12121582 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d908 -08928968 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d918 -08928969 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d918 -08928970 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -08928971 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d928 -08928972 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -08928973 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d938 -08928974 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -08928975 779.12127686 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d948 -08928976 779.12133789 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -08928977 779.12133789 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d958 -08928978 779.12133789 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -08928979 779.12133789 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d968 -08928980 779.12139893 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -08928981 779.12139893 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d978 -08928982 779.12145996 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -08928983 779.12145996 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d988 -08928984 779.12145996 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -08928985 779.12145996 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d998 -08928986 779.12152100 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -08928987 779.12152100 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9a8 -08928988 779.12152100 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -08928989 779.12152100 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9b8 -08929014 779.12194824 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -08929015 779.12194824 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -08929016 779.12194824 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -08929017 779.12194824 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -08929018 779.12200928 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -08929019 779.12200928 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -08929020 779.12200928 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -08929021 779.12200928 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -08929022 779.12207031 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -08929023 779.12207031 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -08929024 779.12207031 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -08929025 779.12207031 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -08929026 779.12213135 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -08929027 779.12213135 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -08929028 779.12213135 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -08929029 779.12213135 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -08929030 779.12219238 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -08929031 779.12219238 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -08929032 779.12219238 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -08929033 779.12219238 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -08929034 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -08929035 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db28 -08929036 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -08929037 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db38 -08929038 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -08929039 779.12225342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db48 -08929040 779.12231445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -08929041 779.12231445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -08929042 779.12231445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -08929043 779.12231445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -08929044 779.12237549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -08929045 779.12237549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -08929046 779.12237549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -08929047 779.12237549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -08929048 779.12243652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -08929049 779.12243652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -08929050 779.12243652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -08929051 779.12243652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -08929052 779.12249756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -08929053 779.12249756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -08929054 779.12249756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -08929055 779.12255859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -08929056 779.12255859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -08929057 779.12255859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -08929108 779.12322998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd78 -08929109 779.12329102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd78 -08929110 779.12329102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd88 -08929111 779.12329102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd88 -08929112 779.12335205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd98 -08929113 779.12335205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd98 -08929114 779.12335205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda8 -08929115 779.12335205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dda8 -08929116 779.12341309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb8 -08929117 779.12341309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddb8 -08929118 779.12341309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc8 -08929119 779.12341309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddc8 -08929120 779.12347412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd8 -08929121 779.12347412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddd8 -08929122 779.12347412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde8 -08929123 779.12347412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dde8 -08929124 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf8 -08929125 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ddf8 -08929126 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de08 -08929127 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de08 -08929128 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de18 -08929129 779.12353516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de18 -08929130 779.12359619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de28 -08929131 779.12359619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de28 -08929132 779.12359619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de38 -08929133 779.12359619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de38 -08929134 779.12365723 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de48 -08929135 779.12365723 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de48 -08929136 779.12365723 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de58 -08929137 779.12365723 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de58 -08929138 779.12371826 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de68 -08929139 779.12371826 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de68 -08929140 779.12371826 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de78 -08929141 779.12371826 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de78 -08929142 779.12377930 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de88 -08929143 779.12377930 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de88 -08929144 779.12377930 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de98 -08929145 779.12377930 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de98 -08929146 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -08929147 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dea8 -08929148 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -08929149 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2deb8 -08929150 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -08929151 779.12384033 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dec8 -08929620 779.13061523 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed78 -08929621 779.13061523 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed78 -08929622 779.13067627 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed88 -08929623 779.13067627 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed88 -08929624 779.13067627 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed98 -08929625 779.13067627 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed98 -08929626 779.13073730 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda8 -08929627 779.13073730 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eda8 -08929628 779.13073730 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb8 -08929629 779.13073730 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edb8 -08929630 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc8 -08929631 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edc8 -08929632 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd8 -08929633 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edd8 -08929634 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede8 -08929635 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ede8 -08929636 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf8 -08929637 779.13079834 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2edf8 -08929638 779.13085938 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee08 -08929639 779.13085938 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee08 -08929640 779.13092041 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee18 -08929641 779.13092041 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee18 -08929642 779.13092041 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee28 -08929643 779.13092041 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee28 -08929644 779.13098145 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -08929645 779.13098145 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -08929646 779.13098145 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -08929647 779.13098145 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -08929648 779.13104248 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -08929649 779.13104248 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -08929650 779.13104248 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -08929651 779.13104248 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -08929652 779.13110352 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -08929653 779.13110352 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -08929654 779.13110352 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -08929655 779.13110352 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -08929656 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -08929657 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -08929658 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -08929659 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -08929660 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -08929661 779.13116455 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -08929662 779.13122559 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -08929663 779.13122559 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -08931780 779.16107178 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f8 -08931781 779.16113281 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x330f8 -08931782 779.16113281 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33108 -08931783 779.16113281 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33108 -08931784 779.16119385 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33118 -08931785 779.16119385 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33118 -08931786 779.16119385 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33128 -08931787 779.16119385 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33128 -08931788 779.16125488 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33138 -08931789 779.16125488 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33138 -08931790 779.16125488 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33148 -08931791 779.16125488 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33148 -08931792 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -08931793 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33158 -08931794 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -08931795 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33168 -08931796 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -08931797 779.16131592 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33178 -08931798 779.16137695 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -08931799 779.16137695 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33188 -08931800 779.16137695 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -08931801 779.16137695 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33198 -08931802 779.16143799 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -08931803 779.16143799 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331a8 -08931804 779.16143799 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -08931805 779.16143799 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331b8 -08931806 779.16149902 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -08931807 779.16149902 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331c8 -08931808 779.16149902 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -08931809 779.16149902 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331d8 -08931810 779.16156006 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -08931811 779.16156006 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331e8 -08931812 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -08931813 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x331f8 -08931814 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -08931815 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33208 -08931816 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -08931817 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33218 -08931818 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -08931819 779.16162109 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33228 -08931820 779.16168213 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -08931821 779.16168213 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33238 -08931822 779.16168213 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -08931823 779.16168213 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x33248 -08934134 779.19427490 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a88 -08934135 779.19427490 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a88 -08934136 779.19433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a98 -08934137 779.19433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a98 -08934138 779.19433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa8 -08934139 779.19433594 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37aa8 -08934140 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab8 -08934141 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ab8 -08934142 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac8 -08934143 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ac8 -08934144 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad8 -08934145 779.19439697 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ad8 -08934146 779.19445801 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae8 -08934147 779.19445801 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ae8 -08934148 779.19445801 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af8 -08934149 779.19445801 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37af8 -08934150 779.19451904 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b08 -08934151 779.19451904 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b08 -08934152 779.19451904 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b18 -08934153 779.19451904 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b18 -08934154 779.19458008 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b28 -08934155 779.19458008 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b28 -08934156 779.19458008 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b38 -08934157 779.19458008 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b38 -08934158 779.19464111 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b48 -08934159 779.19464111 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b48 -08934160 779.19464111 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b58 -08934161 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b58 -08934162 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b68 -08934163 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b68 -08934164 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b78 -08934165 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b78 -08934166 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -08934167 779.19470215 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -08934168 779.19476318 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -08934169 779.19476318 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -08934170 779.19476318 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -08934171 779.19476318 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -08934172 779.19482422 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -08934173 779.19482422 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -08934174 779.19482422 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -08934175 779.19482422 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -08934176 779.19488525 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -08934177 779.19488525 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -08936466 779.22705078 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c368 -08936467 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c368 -08936468 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c378 -08936469 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c378 -08936470 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c388 -08936471 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c388 -08936472 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c398 -08936473 779.22711182 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c398 -08936474 779.22717285 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a8 -08936475 779.22717285 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3a8 -08936476 779.22717285 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b8 -08936477 779.22717285 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3b8 -08936478 779.22723389 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c8 -08936479 779.22723389 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3c8 -08936480 779.22723389 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d8 -08936481 779.22723389 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3d8 -08936482 779.22729492 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e8 -08936483 779.22729492 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3e8 -08936484 779.22729492 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f8 -08936485 779.22729492 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c3f8 -08936486 779.22735596 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c408 -08936487 779.22735596 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c408 -08936488 779.22735596 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c418 -08936489 779.22735596 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c418 -08936490 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c428 -08936491 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c428 -08936492 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c438 -08936493 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c438 -08936494 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c448 -08936495 779.22741699 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c448 -08936496 779.22747803 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c458 -08936497 779.22747803 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c458 -08936498 779.22747803 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c468 -08936499 779.22747803 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c468 -08936500 779.22753906 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c478 -08936501 779.22753906 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c478 -08936502 779.22753906 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c488 -08936503 779.22753906 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c488 -08936504 779.22760010 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c498 -08936505 779.22760010 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c498 -08936506 779.22760010 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a8 -08936507 779.22760010 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4a8 -08936508 779.22766113 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b8 -08936509 779.22766113 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c4b8 -08948044 780.30841064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948045 780.30895996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948046 780.30944824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948047 780.30987549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948048 780.32781982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948049 780.32836914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948050 780.34631348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948051 780.34680176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948052 780.34741211 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948053 780.34790039 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948054 780.34844971 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x530d0 -08948055 780.34875488 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948056 780.37457275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948057 780.37731934 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948058 780.37792969 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948059 780.37829590 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948060 780.37872314 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948061 780.38299561 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948062 780.38360596 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948063 780.40496826 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948064 780.40521240 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948065 780.40545654 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948066 780.40563965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948067 780.65435791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948068 780.65441895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948069 780.65441895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948070 780.65447998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08948071 780.65460205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948072 780.65460205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08948073 780.65466309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948074 780.65472412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08948075 781.01525879 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08948076 781.03814697 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948077 781.03820801 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948078 783.03991699 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08948079 783.06359863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948080 783.06359863 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948081 783.16180420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948082 783.16186523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948083 783.16186523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08948084 783.16186523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08948085 783.16198730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948086 783.16198730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08948087 783.16204834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08948088 783.16210938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08948089 783.22479248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948090 783.22540283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948091 783.22583008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948092 783.22644043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08948093 784.39538574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08948094 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08948095 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08948096 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08948097 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08948098 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08948099 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08948100 784.39544678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08948101 784.39550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08948102 784.39550781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08948103 784.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08948104 784.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08948105 784.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08948106 784.39556885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08948107 784.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08948108 784.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08948109 784.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08948110 784.39562988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08948111 784.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08948112 784.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08948113 784.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08948114 784.39569092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08948115 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08948116 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08948117 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08948118 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08948119 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08948120 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08948121 784.39575195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08948122 784.39581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08948123 784.39581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08948124 784.39581299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08948125 784.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08948126 784.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08948127 784.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08948128 784.39587402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08948129 784.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08948130 784.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08948131 784.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08948132 784.39593506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08948133 784.39599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08948134 784.39599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08948135 784.39599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08948136 784.39599609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08948137 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08948138 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08948139 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08948140 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08948141 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08948142 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08948143 784.39605713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08948144 784.39611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08948145 784.39611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08948146 784.39611816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08948147 784.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08948148 784.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08948149 784.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08948150 784.39617920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08948151 784.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08948152 784.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08948153 784.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08948154 784.39624023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08948155 784.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08948156 784.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08948157 784.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08948158 784.39630127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08948159 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08948160 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08948161 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08948162 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08948163 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08948164 784.39636230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08948165 784.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08948166 784.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08948167 784.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08948168 784.39642334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08948169 784.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08948170 784.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08948171 784.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08948172 784.39648438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08948173 784.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08948174 784.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08948175 784.39654541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08948176 784.39660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08948177 784.39660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08948178 784.39660645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08948179 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08948180 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08948181 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08948182 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08948183 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08948184 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08948185 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08948186 784.39666748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08948187 784.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08948188 784.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08948189 784.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08948190 784.39672852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08948191 784.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08948192 784.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08948193 784.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08948194 784.39678955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08948195 784.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08948196 784.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08948197 784.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08948198 784.39685059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08948199 784.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08948200 784.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08948201 784.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08948202 784.39691162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08948203 784.39697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08948204 784.39697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08948205 784.39697266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08948206 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08948207 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08948208 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08948209 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08948210 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08948211 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08948212 784.39703369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08948213 784.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08948214 784.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08948215 784.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08948216 784.39709473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08948217 784.39715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08948218 784.39715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08948219 784.39715576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08948220 784.39721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08948221 784.39721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08948222 784.39721680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08948223 784.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08948224 784.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08948225 784.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08948226 784.39727783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08948227 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08948228 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08948229 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08948230 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08948231 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08948232 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08948233 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08948234 784.39733887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08948235 784.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08948236 784.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08948237 784.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08948238 784.39739990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08948239 784.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08948240 784.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08948241 784.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08948242 784.39746094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08948243 784.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08948244 784.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08948245 784.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08948246 784.39752197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08948247 784.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08948248 784.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08948249 784.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08948250 784.39758301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08948251 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08948252 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08948253 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08948254 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08948255 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08948256 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08948257 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08948258 784.39764404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08948259 784.39770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08948260 784.39770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08948261 784.39770508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08948262 784.39776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08948263 784.39776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08948264 784.39776611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08948265 784.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08948266 784.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08948267 784.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08948268 784.39782715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08948269 784.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08948270 784.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08948271 784.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08948272 784.39788818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08948273 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08948274 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08948275 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08948276 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08948277 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08948278 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08948279 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08948280 784.39794922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08948281 784.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08948282 784.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08948283 784.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08948284 784.39801025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08948285 784.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08948286 784.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08948287 784.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08948288 784.39807129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08948289 784.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08948290 784.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08948291 784.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08948292 784.39813232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08948293 784.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08948294 784.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08948295 784.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08948296 784.39819336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08948297 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08948298 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08948299 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08948300 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08948301 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08948302 784.39825439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08948303 784.39831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08948304 784.39831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08948305 784.39831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08948306 784.39831543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08948307 784.39837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08948308 784.39837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08948309 784.39837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08948310 784.39837646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08948311 784.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08948312 784.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08948313 784.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08948314 784.39843750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08948315 784.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08948316 784.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08948317 784.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08948318 784.39849854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08948319 784.39855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08948320 784.39855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08948321 784.39855957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08948322 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08948323 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08948324 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08948325 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08948326 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08948327 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08948328 784.39862061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08948329 784.39868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08948330 784.39868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08948331 784.39868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08948332 784.39868164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08948333 784.39874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08948334 784.39874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08948335 784.39874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08948336 784.39874268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08948337 784.39880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08948338 784.39880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08948339 784.39880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08948340 784.39880371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08948341 784.39886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08948342 784.39886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08948343 784.39886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08948344 784.39886475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08948345 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08948346 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08948347 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08948348 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08948349 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08948350 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08948351 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08948352 784.39892578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08948353 784.39898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08948354 784.39898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08948355 784.39898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08948356 784.39898682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08948357 784.39904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08948358 784.39904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08948359 784.39904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08948360 784.39904785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08948361 784.39910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08948362 784.39910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08948363 784.39910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08948364 784.39910889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08948365 784.39916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08948366 784.39916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08948367 784.39916992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08948368 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08948369 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08948370 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08948371 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08948372 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08948373 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08948374 784.39923096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08948375 784.39929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08948376 784.39929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08948377 784.39929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08948378 784.39929199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08948379 784.39935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08948380 784.39935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08948381 784.39935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08948382 784.39935303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08948383 784.39941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08948384 784.39941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08948385 784.39941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08948386 784.39941406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08948387 784.39947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08948388 784.39947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08948389 784.39947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08948390 784.39947510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08948391 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08948392 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08948393 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08948394 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08948395 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08948396 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08948397 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08948398 784.39953613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08948399 784.39959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08948400 784.39959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08948401 784.39959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08948402 784.39959717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08948403 784.39965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08948404 784.39965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08948405 784.39965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08948406 784.39965820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08948407 784.39971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08948408 784.39971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08948409 784.39971924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08948410 784.39978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08948411 784.39978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08948412 784.39978027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08948413 784.39984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08948414 784.39984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08948415 784.39984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08948416 784.39984131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08948417 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08948418 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08948419 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08948420 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08948421 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08948422 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08948423 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08948424 784.39990234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08948425 784.39996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08948426 784.39996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08948427 784.39996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08948428 784.39996338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08948429 784.40002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08948430 784.40002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08948431 784.40002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08948432 784.40002441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08948433 784.40008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08948434 784.40008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08948435 784.40008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08948436 784.40008545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08948437 784.40014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08948438 784.40014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08948439 784.40014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08948440 784.40014648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08948441 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08948442 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08948443 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08948444 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08948445 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08948446 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08948447 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08948448 784.40020752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08948449 784.40026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08948450 784.40026855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08948451 784.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08948452 784.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08948453 784.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08948454 784.40032959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08948455 784.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08948456 784.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08948457 784.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08948458 784.40039063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08948459 784.40045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08948460 784.40045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08948461 784.40045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08948462 784.40045166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08948463 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08948464 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08948465 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08948466 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08948467 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08948468 784.40051270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08948469 784.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08948470 784.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08948471 784.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08948472 784.40057373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08948473 784.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08948474 784.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08948475 784.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08948476 784.40063477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08948477 784.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08948478 784.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08948479 784.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08948480 784.40069580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08948481 784.40075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08948482 784.40075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08948483 784.40075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08948484 784.40075684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08948485 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08948486 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08948487 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08948488 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08948489 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08948490 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08948491 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08948492 784.40081787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08948493 784.40087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08948494 784.40087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08948495 784.40087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08948496 784.40087891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08948497 784.40093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08948498 784.40093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08948499 784.40093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08948500 784.40093994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08948501 784.40100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08948502 784.40100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08948503 784.40100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08948504 784.40100098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08948505 784.40106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08948506 784.40106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08948507 784.40106201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08948508 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08948509 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08948510 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08948511 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08948512 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08948513 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08948514 784.40112305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08948515 784.40118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08948516 784.40118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08948517 784.40118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08948518 784.40118408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08948519 784.40124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08948520 784.40124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08948521 784.40124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08948522 784.40124512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08948523 784.40130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08948524 784.40130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08948525 784.40130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08948526 784.40130615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08948527 784.40136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08948528 784.40136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08948529 784.40136719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08948530 784.40142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08948531 784.40142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08948532 784.40142822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08948533 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08948534 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08948535 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08948536 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08948537 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08948538 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08948539 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08948540 784.40148926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08948541 784.40155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08948542 784.40155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08948543 784.40155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08948544 784.40155029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08948545 784.40161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08948546 784.40161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08948547 784.40161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08948548 784.40161133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08948549 784.40167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08948550 784.40167236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08948551 784.40173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08948552 784.40173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08948553 784.40173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08948554 784.40173340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08948555 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08948556 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08948557 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08948558 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08948559 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08948560 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08948561 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08948562 784.40179443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08948563 784.40185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08948564 784.40185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08948565 784.40185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08948566 784.40185547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08948567 784.40191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08948568 784.40191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08948569 784.40191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08948570 784.40191650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08948571 784.40197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08948572 784.40197754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08948573 784.40203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08948574 784.40203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08948575 784.40203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08948576 784.40203857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08948577 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08948578 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08948579 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08948580 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08948581 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08948582 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08948583 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08948584 784.40209961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08948585 784.40216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08948586 784.40216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08948587 784.40216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08948588 784.40216064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08948589 784.40222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08948590 784.40222168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08948591 784.40228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08948592 784.40228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08948593 784.40228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08948594 784.40228271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08948595 784.40234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08948596 784.40234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08948597 784.40234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08948598 784.40234375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08948599 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08948600 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08948601 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08948602 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08948603 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08948604 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08948605 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08948606 784.40240479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08948607 784.40246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08948608 784.40246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08948609 784.40246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08948610 784.40246582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08948611 784.40252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08948612 784.40252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08948613 784.40252686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08948614 784.40258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08948615 784.40258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08948616 784.40258789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08948617 784.40264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08948618 784.40264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08948619 784.40264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08948620 784.40264893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08948621 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08948622 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08948623 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08948624 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08948625 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08948626 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08948627 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08948628 784.40270996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08948629 784.40277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08948630 784.40277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08948631 784.40277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08948632 784.40277100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08948633 784.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08948634 784.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08948635 784.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08948636 784.40283203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08948637 784.40289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08948638 784.40289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08948639 784.40289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08948640 784.40289307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08948641 784.40295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08948642 784.40295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08948643 784.40295410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08948644 784.40301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08948645 784.40301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08948646 784.40301514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08948647 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08948648 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08948649 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08948650 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08948651 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08948652 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08948653 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08948654 784.40307617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08948655 784.40313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08948656 784.40313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08948657 784.40313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08948658 784.40313721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08948659 784.40319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08948660 784.40319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08948661 784.40319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08948662 784.40319824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08948663 784.40325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08948664 784.40325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08948665 784.40325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08948666 784.40325928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08948667 784.40332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08948668 784.40332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08948669 784.40332031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08948670 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08948671 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08948672 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08948673 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08948674 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08948675 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08948676 784.40338135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08948677 784.40344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08948678 784.40344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08948679 784.40344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08948680 784.40344238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08948681 784.40350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08948682 784.40350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08948683 784.40350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08948684 784.40350342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08948685 784.40356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08948686 784.40356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08948687 784.40356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08948688 784.40356445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08948689 784.40362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08948690 784.40362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08948691 784.40362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08948692 784.40362549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08948693 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08948694 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08948695 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08948696 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08948697 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08948698 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08948699 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08948700 784.40368652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08948701 784.40374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08948702 784.40374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08948703 784.40374756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08948704 784.40380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08948705 784.40380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08948706 784.40380859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08948707 784.40386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08948708 784.40386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08948709 784.40386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08948710 784.40386963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08948711 784.40393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08948712 784.40393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08948713 784.40393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08948714 784.40393066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08948715 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08948716 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08948717 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08948718 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08948719 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08948720 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08948721 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08948722 784.40399170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08948723 784.40405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08948724 784.40405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08948725 784.40405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08948726 784.40405273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08948727 784.40411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08948728 784.40411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08948729 784.40411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08948730 784.40411377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08948731 784.40417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08948732 784.40417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08948733 784.40417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08948734 784.40417480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08948735 784.40423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08948736 784.40423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08948737 784.40423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08948738 784.40423584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08948739 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08948740 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08948741 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08948742 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08948743 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08948744 784.40429688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08948745 784.40435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08948746 784.40435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08948747 784.40435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08948748 784.40435791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08948749 784.40441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08948750 784.40441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08948751 784.40441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08948752 784.40441895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08948753 784.40447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08948754 784.40447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08948755 784.40447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08948756 784.40447998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08948757 784.40454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08948758 784.40454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08948759 784.40454102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08948760 784.40460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08948761 784.40460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08948762 784.40460205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08948763 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08948764 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08948765 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08948766 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08948767 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08948768 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08948769 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08948770 784.40466309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08948771 784.40472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08948772 784.40472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08948773 784.40472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08948774 784.40472412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08948775 784.40478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08948776 784.40478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08948777 784.40478516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08948778 784.40484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08948779 784.40484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08948780 784.40484619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08948781 784.40490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08948782 784.40490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08948783 784.40490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08948784 784.40490723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08948785 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08948786 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08948787 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08948788 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08948789 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08948790 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08948791 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08948792 784.40496826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08948793 784.40502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08948794 784.40502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08948795 784.40502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08948796 784.40502930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08948797 784.40509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08948798 784.40509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08948799 784.40509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08948800 784.40509033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08948801 784.40515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08948802 784.40515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08948803 784.40515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08948804 784.40515137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08948805 784.40521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08948806 784.40521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08948807 784.40521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08948808 784.40521240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08948809 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08948810 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08948811 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08948812 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08948813 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08948814 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08948815 784.40527344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08948816 784.40533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08948817 784.40533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08948818 784.40533447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08948819 784.40539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08948820 784.40539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08948821 784.40539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08948822 784.40539551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08948823 784.40545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08948824 784.40545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08948825 784.40545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08948826 784.40545654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08948827 784.40551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08948828 784.40551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08948829 784.40551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08948830 784.40551758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08948831 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08948832 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08948833 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08948834 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08948835 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08948836 784.40557861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08948837 784.40563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08948838 784.40563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08948839 784.40563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08948840 784.40563965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08948841 784.40570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08948842 784.40570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08948843 784.40570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08948844 784.40570068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08948845 784.40576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08948846 784.40576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08948847 784.40576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08948848 784.40576172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08948849 784.40582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08948850 784.40582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08948851 784.40582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08948852 784.40582275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08948853 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08948854 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08948855 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08948856 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08948857 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08948858 784.40588379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08948859 784.40594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08948860 784.40594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08948861 784.40594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08948862 784.40594482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08948863 784.40600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08948864 784.40600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08948865 784.40600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08948866 784.40600586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08948867 784.40606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08948868 784.40606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08948869 784.40606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08948870 784.40606689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08948871 784.40612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08948872 784.40612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08948873 784.40612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08948874 784.40612793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08948875 784.40618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08948876 784.40618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08948877 784.40618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08948878 784.40618896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08948879 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08948880 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08948881 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08948882 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08948883 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08948884 784.40625000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08948885 784.40631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08948886 784.40631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08948887 784.40631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08948888 784.40631104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08948889 784.40637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08948890 784.40637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08948891 784.40637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08948892 784.40637207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08948893 784.40643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08948894 784.40643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08948895 784.40643311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08948896 784.40649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08948897 784.40649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08948898 784.40649414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08948899 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08948900 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08948901 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08948902 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08948903 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08948904 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08948905 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08948906 784.40655518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08948907 784.40661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08948908 784.40661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08948909 784.40661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08948910 784.40661621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08948911 784.40667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08948912 784.40667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08948913 784.40667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08948914 784.40667725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08948915 784.40673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08948916 784.40673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08948917 784.40673828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08948918 784.40679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08948919 784.40679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08948920 784.40679932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08948921 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08948922 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08948923 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08948924 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08948925 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08948926 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08948927 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08948928 784.40686035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08948929 784.40692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08948930 784.40692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08948931 784.40692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08948932 784.40692139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08948933 784.40698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08948934 784.40698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08948935 784.40698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08948936 784.40698242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08948937 784.40704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08948938 784.40704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08948939 784.40704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08948940 784.40704346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08948941 784.40710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08948942 784.40710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08948943 784.40710449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08948944 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08948945 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08948946 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08948947 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08948948 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08948949 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08948950 784.40716553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08948951 784.40722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08948952 784.40722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08948953 784.40722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08948954 784.40722656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08948955 784.40728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08948956 784.40728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08948957 784.40728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08948958 784.40728760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08948959 784.40734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08948960 784.40734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08948961 784.40734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08948962 784.40734863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08948963 784.40740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08948964 784.40740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08948965 784.40740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08948966 784.40740967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08948967 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08948968 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08948969 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08948970 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08948971 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08948972 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08948973 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08948974 784.40747070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08948975 784.40753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08948976 784.40753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08948977 784.40753174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08948978 784.40759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08948979 784.40759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08948980 784.40759277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08948981 784.40765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08948982 784.40765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08948983 784.40765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08948984 784.40765381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08948985 784.40771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08948986 784.40771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08948987 784.40771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08948988 784.40771484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08948989 784.40777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08948990 784.40777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08948991 784.40777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08948992 784.40777588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08948993 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08948994 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08948995 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08948996 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08948997 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08948998 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08948999 784.40783691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08949000 784.40789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08949001 784.40789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08949002 784.40789795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08949003 784.40795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08949004 784.40795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08949005 784.40795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08949006 784.40795898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08949007 784.40802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08949008 784.40802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08949009 784.40802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08949010 784.40802002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08949011 784.40808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08949012 784.40808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08949013 784.40808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08949014 784.40808105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08949015 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08949016 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08949017 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08949018 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08949019 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08949020 784.40814209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08949021 784.40820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08949022 784.40820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08949023 784.40820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08949024 784.40820313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08949025 784.40826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08949026 784.40826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08949027 784.40826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08949028 784.40826416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08949029 784.40832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08949030 784.40832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08949031 784.40832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08949032 784.40832520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08949033 784.40838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08949034 784.40838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08949035 784.40838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08949036 784.40838623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08949037 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08949038 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08949039 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08949040 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08949041 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08949042 784.40844727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08949043 784.40850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08949044 784.40850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08949045 784.40850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08949046 784.40850830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08949047 784.40856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08949048 784.40856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08949049 784.40856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08949050 784.40856934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08949051 784.40863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08949052 784.40863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08949053 784.40863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08949054 784.40863037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08949055 784.40869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08949056 784.40869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08949057 784.40869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08949058 784.40869141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08949059 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08949060 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08949061 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08949062 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08949063 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08949064 784.40875244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08949065 784.40881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08949066 784.40881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08949067 784.40881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08949068 784.40881348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08949069 784.40887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08949070 784.40887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08949071 784.40887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08949072 784.40887451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08949073 784.40893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08949074 784.40893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08949075 784.40893555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08949076 784.40899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08949077 784.40899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08949078 784.40899658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08949079 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08949080 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08949081 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08949082 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08949083 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08949084 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08949085 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08949086 784.40905762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08949087 784.40911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08949088 784.40911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08949089 784.40911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08949090 784.40911865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08949091 784.40917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08949092 784.40917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08949093 784.40917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08949094 784.40917969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08949095 784.40924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08949096 784.40924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08949097 784.40924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08949098 784.40924072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08949099 784.40930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08949100 784.40930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08949101 784.40930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08949102 784.40930176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08949103 784.40936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08949104 784.40936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08949105 784.40936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08949106 784.40936279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08949107 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08949108 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08949109 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08949110 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08949111 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08949112 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08949113 784.40942383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08949114 784.40948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08949115 784.40948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08949116 784.40948486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08949117 784.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08949118 784.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08949119 784.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08949120 784.40954590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08949121 784.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08949122 784.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08949123 784.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08949124 784.40960693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08949125 784.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08949126 784.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08949127 784.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08949128 784.40966797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08949129 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08949130 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08949131 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08949132 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08949133 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08949134 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08949135 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08949136 784.40972900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08949137 784.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08949138 784.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08949139 784.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08949140 784.40979004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08949141 784.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08949142 784.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08949143 784.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08949144 784.40985107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08949145 784.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08949146 784.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08949147 784.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08949148 784.40991211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08949149 784.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08949150 784.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08949151 784.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08949152 784.40997314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08949153 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08949154 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08949155 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08949156 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08949157 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08949158 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08949159 784.41003418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08949160 784.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08949161 784.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08949162 784.41009521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08949163 784.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08949164 784.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08949165 784.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08949166 784.41015625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08949167 784.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08949168 784.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08949169 784.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08949170 784.41021729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08949171 784.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08949172 784.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08949173 784.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08949174 784.41027832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08949175 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08949176 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08949177 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08949178 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08949179 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08949180 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08949181 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08949182 784.41033936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08949183 784.41040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08949184 784.41040039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08949185 784.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08949186 784.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08949187 784.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08949188 784.41046143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08949189 784.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08949190 784.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08949191 784.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08949192 784.41052246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08949193 784.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08949194 784.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08949195 784.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08949196 784.41058350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08949197 784.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08949198 784.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08949199 784.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08949200 784.41064453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08949201 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08949202 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08949203 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08949204 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08949205 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08949206 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08949207 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08949208 784.41070557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08949209 784.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08949210 784.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08949211 784.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08949212 784.41076660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08949213 784.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08949214 784.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08949215 784.41082764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08949216 784.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08949217 784.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08949218 784.41088867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08949219 784.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08949220 784.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08949221 784.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08949222 784.41094971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08949223 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08949224 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08949225 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08949226 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08949227 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08949228 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08949229 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08949230 784.41101074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08949231 784.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08949232 784.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08949233 784.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08949234 784.41107178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08949235 784.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08949236 784.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08949237 784.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08949238 784.41113281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08949239 784.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08949240 784.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08949241 784.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08949242 784.41119385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08949243 784.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08949244 784.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08949245 784.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08949246 784.41125488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08949247 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08949248 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08949249 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08949250 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08949251 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08949252 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08949253 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08949254 784.41131592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08949255 784.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08949256 784.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08949257 784.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08949258 784.41137695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08949259 784.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08949260 784.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08949261 784.41143799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08949262 784.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08949263 784.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08949264 784.41149902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08949265 784.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08949266 784.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08949267 784.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08949268 784.41156006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08949269 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08949270 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08949271 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08949272 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08949273 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08949274 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08949275 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08949276 784.41162109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08949277 784.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08949278 784.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08949279 784.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08949280 784.41168213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08949281 784.41174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08949282 784.41174316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08949283 784.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08949284 784.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08949285 784.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08949286 784.41180420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08949287 784.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08949288 784.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08949289 784.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08949290 784.41186523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08949291 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08949292 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08949293 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08949294 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08949295 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08949296 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08949297 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08949298 784.41192627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08949299 784.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08949300 784.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08949301 784.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08949302 784.41198730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08949303 784.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08949304 784.41204834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08949305 784.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08949306 784.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08949307 784.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08949308 784.41210938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08949309 784.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08949310 784.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08949311 784.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08949312 784.41217041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08949313 784.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08949314 784.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08949315 784.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08949316 784.41223145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08949317 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08949318 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08949319 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08949320 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08949321 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08949322 784.41229248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08949323 784.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08949324 784.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08949325 784.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08949326 784.41235352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08949327 784.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08949328 784.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08949329 784.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08949330 784.41241455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08949331 784.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08949332 784.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08949333 784.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08949334 784.41247559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08949335 784.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08949336 784.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08949337 784.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08949338 784.41253662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08949339 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08949340 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08949341 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08949342 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08949343 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08949344 784.41259766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08949345 784.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08949346 784.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08949347 784.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08949348 784.41265869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08949349 784.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08949350 784.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08949351 784.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08949352 784.41271973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08949353 784.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08949354 784.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08949355 784.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08949356 784.41278076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08949357 784.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08949358 784.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08949359 784.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08949360 784.41284180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08949361 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08949362 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08949363 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08949364 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08949365 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08949366 784.41290283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08949367 784.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08949368 784.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08949369 784.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08949370 784.41296387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08949371 784.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08949372 784.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08949373 784.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08949374 784.41302490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08949375 784.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08949376 784.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08949377 784.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08949378 784.41308594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08949379 784.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08949380 784.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08949381 784.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08949382 784.41314697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08949383 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08949384 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08949385 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08949386 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08949387 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08949388 784.41320801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08949389 784.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08949390 784.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08949391 784.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08949392 784.41326904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08949393 784.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08949394 784.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08949395 784.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08949396 784.41333008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08949397 784.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08949398 784.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08949399 784.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08949400 784.41339111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08949401 784.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08949402 784.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08949403 784.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08949404 784.41345215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08949405 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08949406 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08949407 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08949408 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08949409 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08949410 784.41351318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08949411 784.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08949412 784.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08949413 784.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08949414 784.41357422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08949415 784.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08949416 784.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08949417 784.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08949418 784.41363525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08949419 784.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08949420 784.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08949421 784.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08949422 784.41369629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08949423 784.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08949424 784.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08949425 784.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08949426 784.41375732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08949427 784.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08949428 784.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08949429 784.41381836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08949430 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08949431 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08949432 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08949433 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08949434 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08949435 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08949436 784.41387939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08949437 784.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08949438 784.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08949439 784.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08949440 784.41394043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08949441 784.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08949442 784.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08949443 784.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08949444 784.41400146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08949445 784.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08949446 784.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08949447 784.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08949448 784.41406250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08949449 784.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08949450 784.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08949451 784.41412354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08949452 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08949453 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08949454 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08949455 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08949456 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08949457 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08949458 784.41418457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08949459 784.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08949460 784.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08949461 784.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08949462 784.41424561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08949463 784.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08949464 784.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08949465 784.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08949466 784.41430664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08949467 784.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08949468 784.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08949469 784.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08949470 784.41436768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08949471 784.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08949472 784.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08949473 784.41442871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08949474 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08949475 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08949476 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08949477 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08949478 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08949479 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08949480 784.41448975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08949481 784.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08949482 784.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08949483 784.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08949484 784.41455078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08949485 784.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08949486 784.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08949487 784.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08949488 784.41461182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08949489 784.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08949490 784.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08949491 784.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08949492 784.41467285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08949493 784.41473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08949494 784.41473389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08949495 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08949496 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08949497 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08949498 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08949499 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08949500 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08949501 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08949502 784.41479492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08949503 784.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08949504 784.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08949505 784.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08949506 784.41485596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08949507 784.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08949508 784.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08949509 784.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08949510 784.41491699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08949511 784.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08949512 784.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08949513 784.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08949514 784.41497803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08949515 784.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08949516 784.41503906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08949517 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08949518 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08949519 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08949520 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08949521 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08949522 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08949523 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08949524 784.41510010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08949525 784.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08949526 784.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08949527 784.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08949528 784.41516113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08949529 784.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08949530 784.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08949531 784.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08949532 784.41522217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08949533 784.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08949534 784.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08949535 784.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08949536 784.41528320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08949537 784.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08949538 784.41534424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08949539 784.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08949540 784.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08949541 784.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08949542 784.41540527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08949543 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08949544 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08949545 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08949546 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08949547 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08949548 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08949549 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08949550 784.41546631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08949551 784.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08949552 784.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08949553 784.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08949554 784.41552734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08949555 784.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08949556 784.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08949557 784.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08949558 784.41558838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08949559 784.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08949560 784.41564941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08949561 784.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08949562 784.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08949563 784.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08949564 784.41571045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08949565 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08949566 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08949567 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08949568 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08949569 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08949570 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08949571 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08949572 784.41577148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08949573 784.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08949574 784.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08949575 784.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08949576 784.41583252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08949577 784.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08949578 784.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08949579 784.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08949580 784.41589355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08949581 784.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08949582 784.41595459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08949583 784.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08949584 784.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08949585 784.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08949586 784.41601563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08949587 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08949588 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08949589 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08949590 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08949591 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08949592 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08949593 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08949594 784.41607666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08949595 784.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08949596 784.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08949597 784.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08949598 784.41613770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08949599 784.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08949600 784.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08949601 784.41619873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08949602 784.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08949603 784.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08949604 784.41625977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08949605 784.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08949606 784.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08949607 784.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08949608 784.41632080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08949609 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08949610 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08949611 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08949612 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08949613 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08949614 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08949615 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08949616 784.41638184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08949617 784.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08949618 784.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08949619 784.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08949620 784.41644287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08949621 784.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08949622 784.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08949623 784.41650391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08949624 784.41656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08949625 784.41656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08949626 784.41656494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08949627 784.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08949628 784.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08949629 784.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08949630 784.41662598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08949631 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08949632 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08949633 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08949634 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08949635 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08949636 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08949637 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08949638 784.41668701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08949639 784.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08949640 784.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08949641 784.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08949642 784.41674805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08949643 784.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08949644 784.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08949645 784.41680908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08949646 784.41687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08949647 784.41687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08949648 784.41687012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08949649 784.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08949650 784.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08949651 784.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08949652 784.41693115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08949653 784.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08949654 784.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08949655 784.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08949656 784.41699219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08949657 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08949658 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08949659 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08949660 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08949661 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08949662 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08949663 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08949664 784.41705322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08949665 784.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08949666 784.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08949667 784.41711426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08949668 784.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08949669 784.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08949670 784.41717529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08949671 784.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08949672 784.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08949673 784.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08949674 784.41723633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08949675 784.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08949676 784.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08949677 784.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08949678 784.41729736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08949679 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08949680 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08949681 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08949682 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08949683 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08949684 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08949685 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08949686 784.41735840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08949687 784.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08949688 784.41741943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08949689 784.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08949690 784.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08949691 784.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08949692 784.41748047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08949693 784.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08949694 784.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08949695 784.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08949696 784.41754150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08949697 784.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08949698 784.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08949699 784.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08949700 784.41760254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08949701 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08949702 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08949703 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08949704 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08949705 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08949706 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08949707 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08949708 784.41766357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08949709 784.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08949710 784.41772461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08949711 784.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08949712 784.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08949713 784.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08949714 784.41778564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08949715 784.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08949716 784.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08949717 784.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08949718 784.41784668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08949719 784.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08949720 784.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08949721 784.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08949722 784.41790771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08949723 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08949724 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08949725 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08949726 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08949727 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08949728 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08949729 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08949730 784.41796875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08949731 784.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08949732 784.41802979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08949733 784.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08949734 784.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08949735 784.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08949736 784.41809082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08949737 784.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08949738 784.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08949739 784.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08949740 784.41815186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08949741 784.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08949742 784.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08949743 784.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08949744 784.41821289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08949745 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08949746 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08949747 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08949748 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08949749 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08949750 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08949751 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08949752 784.41827393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08949753 784.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08949754 784.41833496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08949755 784.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08949756 784.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08949757 784.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08949758 784.41839600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08949759 784.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08949760 784.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08949761 784.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08949762 784.41845703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08949763 784.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08949764 784.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08949765 784.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08949766 784.41851807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08949767 784.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08949768 784.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08949769 784.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08949770 784.41857910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08949771 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08949772 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08949773 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08949774 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08949775 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08949776 784.41864014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08949777 784.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08949778 784.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08949779 784.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08949780 784.41870117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08949781 784.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08949782 784.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08949783 784.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08949784 784.41876221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08949785 784.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08949786 784.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08949787 784.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08949788 784.41882324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08949789 784.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08949790 784.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08949791 784.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08949792 784.41888428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08949793 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08949794 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08949795 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08949796 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08949797 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08949798 784.41894531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08949799 784.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08949800 784.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08949801 784.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08949802 784.41900635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08949803 784.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08949804 784.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08949805 784.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08949806 784.41906738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08949807 784.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08949808 784.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08949809 784.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08949810 784.41912842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08949811 784.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08949812 784.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08949813 784.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08949814 784.41918945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08949815 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08949816 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08949817 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08949818 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08949819 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08949820 784.41925049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08949821 784.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08949822 784.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08949823 784.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08949824 784.41931152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08949825 784.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08949826 784.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08949827 784.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08949828 784.41937256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08949829 784.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08949830 784.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08949831 784.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08949832 784.41943359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08949833 784.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08949834 784.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08949835 784.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08949836 784.41949463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08949837 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08949838 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08949839 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08949840 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08949841 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08949842 784.41955566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08949843 784.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08949844 784.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08949845 784.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08949846 784.41961670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08949847 784.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08949848 784.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08949849 784.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08949850 784.41967773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08949851 784.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08949852 784.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08949853 784.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08949854 784.41973877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08949855 784.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08949856 784.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08949857 784.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08949858 784.41979980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08949859 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08949860 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08949861 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08949862 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08949863 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08949864 784.41986084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08949865 784.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08949866 784.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08949867 784.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08949868 784.41992188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08949869 784.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08949870 784.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08949871 784.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08949872 784.41998291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08949873 784.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08949874 784.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08949875 784.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08949876 784.42004395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08949877 784.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08949878 784.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08949879 784.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08949880 784.42010498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08949881 784.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08949882 784.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08949883 784.42016602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08949884 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08949885 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08949886 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08949887 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08949888 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08949889 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08949890 784.42022705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08949891 784.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08949892 784.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08949893 784.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08949894 784.42028809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08949895 784.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08949896 784.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08949897 784.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08949898 784.42034912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08949899 784.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08949900 784.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08949901 784.42041016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08949902 784.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08949903 784.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08949904 784.42047119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08949905 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08949906 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08949907 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08949908 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08949909 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08949910 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08949911 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08949912 784.42053223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08949913 784.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08949914 784.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08949915 784.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08949916 784.42059326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08949917 784.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08949918 784.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08949919 784.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08949920 784.42065430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08949921 784.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08949922 784.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08949923 784.42071533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08949924 784.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08949925 784.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08949926 784.42077637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08949927 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08949928 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08949929 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08949930 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08949931 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08949932 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08949933 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08949934 784.42083740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08949935 784.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08949936 784.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08949937 784.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08949938 784.42089844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08949939 784.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08949940 784.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08949941 784.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08949942 784.42095947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08949943 784.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08949944 784.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08949945 784.42102051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08949946 784.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08949947 784.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08949948 784.42108154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08949949 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08949950 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08949951 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08949952 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08949953 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08949954 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08949955 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08949956 784.42114258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08949957 784.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08949958 784.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08949959 784.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08949960 784.42120361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08949961 784.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08949962 784.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08949963 784.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08949964 784.42126465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08949965 784.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08949966 784.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08949967 784.42132568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08949968 784.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08949969 784.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08949970 784.42138672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08949971 784.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08949972 784.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08949973 784.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08949974 784.42144775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08949975 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08949976 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08949977 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08949978 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08949979 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08949980 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08949981 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08949982 784.42150879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08949983 784.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08949984 784.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08949985 784.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08949986 784.42156982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08949987 784.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08949988 784.42163086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08949989 784.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08949990 784.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08949991 784.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08949992 784.42169189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08949993 784.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08949994 784.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08949995 784.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08949996 784.42175293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08949997 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08949998 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08949999 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08950000 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08950001 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08950002 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08950003 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08950004 784.42181396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08950005 784.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08950006 784.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08950007 784.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08950008 784.42187500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08950009 784.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08950010 784.42193604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08950011 784.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08950012 784.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08950013 784.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08950014 784.42199707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08950015 784.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08950016 784.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08950017 784.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08950018 784.42205811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08950019 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08950020 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08950021 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08950022 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08950023 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08950024 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08950025 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08950026 784.42211914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08950027 784.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08950028 784.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08950029 784.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08950030 784.42218018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08950031 784.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08950032 784.42224121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08950033 784.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08950034 784.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08950035 784.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08950036 784.42230225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08950037 784.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08950038 784.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08950039 784.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08950040 784.42236328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08950041 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08950042 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08950043 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08950044 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08950045 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08950046 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08950047 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08950048 784.42242432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08950049 784.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08950050 784.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08950051 784.42248535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08950052 784.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08950053 784.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08950054 784.42254639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08950055 784.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08950056 784.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08950057 784.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08950058 784.42260742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08950059 784.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08950060 784.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08950061 784.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08950062 784.42266846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08950063 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08950064 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08950065 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08950066 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08950067 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08950068 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08950069 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08950070 784.42272949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08950071 784.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08950072 784.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08950073 784.42279053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08950074 784.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08950075 784.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08950076 784.42285156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08950077 784.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08950078 784.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08950079 784.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08950080 784.42291260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08950081 784.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08950082 784.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08950083 784.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08950084 784.42297363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08950085 784.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08950086 784.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08950087 784.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08950088 784.42303467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08950089 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08950090 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08950091 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08950092 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08950093 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08950094 784.42309570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08950095 784.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08950096 784.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08950097 784.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08950098 784.42315674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08950099 784.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08950100 784.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08950101 784.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08950102 784.42321777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08950103 784.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08950104 784.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08950105 784.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08950106 784.42327881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08950107 784.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08950108 784.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08950109 784.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08950110 784.42333984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08950111 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08950112 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08950113 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08950114 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08950115 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08950116 784.42340088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08950117 784.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08950118 784.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08950119 784.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08950120 784.42346191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08950121 784.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08950122 784.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08950123 784.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08950124 784.42352295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08950125 784.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08950126 784.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08950127 784.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08950128 784.42358398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08950129 784.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08950130 784.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08950131 784.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08950132 784.42364502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08950133 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08950134 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08950135 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08950136 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08950137 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08950138 784.42370605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08950139 784.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08950140 784.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08950141 784.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08950142 784.42376709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08950143 784.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08950144 784.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08950145 784.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08950146 784.42382813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08950147 784.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08950148 784.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08950149 784.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08950150 784.42388916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08950151 784.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08950152 784.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08950153 784.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08950154 784.42395020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08950155 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08950156 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08950157 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08950158 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08950159 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08950160 784.42401123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08950161 784.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08950162 784.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08950163 784.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08950164 784.42407227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08950165 784.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08950166 784.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08950167 784.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08950168 784.42413330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08950169 784.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08950170 784.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08950171 784.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08950172 784.42419434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08950173 784.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08950174 784.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08950175 784.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08950176 784.42425537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08950177 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08950178 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08950179 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08950180 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08950181 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08950182 784.42431641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08950183 784.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08950184 784.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08950185 784.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08950186 784.42437744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08950187 784.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08950188 784.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08950189 784.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08950190 784.42443848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08950191 784.42449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08950192 784.42449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08950193 784.42449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08950194 784.42449951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08950195 784.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08950196 784.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08950197 784.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08950198 784.42456055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08950199 784.42462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08950200 784.42462158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08950201 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08950202 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08950203 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08950204 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08950205 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08950206 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08950207 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08950208 784.42468262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08950209 784.42474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08950210 784.42474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08950211 784.42474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08950212 784.42474365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08950213 784.42480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08950214 784.42480469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08950215 784.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08950216 784.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08950217 784.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08950218 784.42486572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08950219 784.42492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08950220 784.42492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08950221 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08950222 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08950223 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08950224 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08950225 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08950226 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08950227 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08950228 784.42498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08950229 784.42504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08950230 784.42504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08950231 784.42504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08950232 784.42510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08950233 784.42510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08950234 784.42510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08950235 784.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08950236 784.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08950237 784.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08950238 784.42517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08950239 784.42523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08950240 784.42523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08950241 784.42523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08950242 784.42523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08950243 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08950244 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08950245 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08950246 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08950247 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08950248 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08950249 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08950250 784.42529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08950251 784.42535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08950252 784.42535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08950253 784.42535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08950254 784.42541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08950255 784.42541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08950256 784.42541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08950257 784.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08950258 784.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08950259 784.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08950260 784.42547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08950261 784.42553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08950262 784.42553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08950263 784.42553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08950264 784.42553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08950265 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08950266 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08950267 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08950268 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08950269 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08950270 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08950271 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08950272 784.42559814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08950273 784.42565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08950274 784.42565918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08950275 784.42572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08950276 784.42572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08950277 784.42572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08950278 784.42572021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08950279 784.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08950280 784.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08950281 784.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08950282 784.42578125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08950283 784.42584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08950284 784.42584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08950285 784.42584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08950286 784.42584229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08950287 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08950288 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08950289 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08950290 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08950291 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08950292 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08950293 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08950294 784.42590332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08950295 784.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08950296 784.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08950297 784.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08950298 784.42596436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08950299 784.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08950300 784.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08950301 784.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08950302 784.42602539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08950303 784.42608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08950304 784.42608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08950305 784.42608643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08950306 784.42614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08950307 784.42614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08950308 784.42614746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08950309 784.42620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08950310 784.42620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08950311 784.42620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08950312 784.42620850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08950313 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08950314 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08950315 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08950316 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08950317 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08950318 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08950319 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08950320 784.42626953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08950321 784.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08950322 784.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08950323 784.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08950324 784.42633057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08950325 784.42639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08950326 784.42639160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08950327 784.42645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08950328 784.42645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08950329 784.42645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08950330 784.42645264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08950331 784.42651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08950332 784.42651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08950333 784.42651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08950334 784.42651367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08950335 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08950336 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08950337 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08950338 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08950339 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08950340 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08950341 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08950342 784.42657471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08950343 784.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08950344 784.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08950345 784.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08950346 784.42663574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08950347 784.42669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08950348 784.42669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08950349 784.42669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08950350 784.42669678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08950351 784.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08950352 784.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08950353 784.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08950354 784.42675781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08950355 784.42681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08950356 784.42681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08950357 784.42681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08950358 784.42681885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08950359 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08950360 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08950361 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08950362 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08950363 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08950364 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08950365 784.42687988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08950366 784.42694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08950367 784.42694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08950368 784.42694092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08950369 784.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08950370 784.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08950371 784.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08950372 784.42700195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08950373 784.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08950374 784.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08950375 784.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08950376 784.42706299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08950377 784.42712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08950378 784.42712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08950379 784.42712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08950380 784.42712402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08950381 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08950382 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08950383 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08950384 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08950385 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08950386 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08950387 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08950388 784.42718506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08950389 784.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08950390 784.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08950391 784.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08950392 784.42724609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08950393 784.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08950394 784.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08950395 784.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08950396 784.42730713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08950397 784.42736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08950398 784.42736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08950399 784.42736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08950400 784.42736816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08950401 784.42742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08950402 784.42742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08950403 784.42742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08950404 784.42742920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08950405 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08950406 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08950407 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08950408 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08950409 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08950410 784.42749023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08950411 784.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08950412 784.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08950413 784.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08950414 784.42755127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08950415 784.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08950416 784.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08950417 784.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08950418 784.42761230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08950419 784.42767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08950420 784.42767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08950421 784.42767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08950422 784.42767334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08950423 784.42773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08950424 784.42773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08950425 784.42773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08950426 784.42773438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08950427 784.42779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08950428 784.42779541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08950429 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08950430 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08950431 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08950432 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08950433 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08950434 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08950435 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08950436 784.42785645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08950437 784.42791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08950438 784.42791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08950439 784.42791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08950440 784.42791748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08950441 784.42797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08950442 784.42797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08950443 784.42797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08950444 784.42797852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08950445 784.42803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08950446 784.42803955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08950447 784.42810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08950448 784.42810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08950449 784.42810059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08950450 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08950451 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08950452 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08950453 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08950454 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08950455 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08950456 784.42816162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08950457 784.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08950458 784.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08950459 784.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08950460 784.42822266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08950461 784.42828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08950462 784.42828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08950463 784.42828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08950464 784.42828369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08950465 784.42834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08950466 784.42834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08950467 784.42834473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08950468 784.42840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08950469 784.42840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08950470 784.42840576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08950471 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08950472 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08950473 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08950474 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08950475 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08950476 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08950477 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08950478 784.42846680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08950479 784.42852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08950480 784.42852783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08950481 784.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08950482 784.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08950483 784.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08950484 784.42858887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08950485 784.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08950486 784.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08950487 784.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08950488 784.42864990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08950489 784.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08950490 784.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08950491 784.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08950492 784.42871094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08950493 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08950494 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08950495 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08950496 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08950497 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08950498 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08950499 784.42877197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08950500 784.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08950501 784.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08950502 784.42883301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08950503 784.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08950504 784.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08950505 784.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08950506 784.42889404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08950507 784.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08950508 784.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08950509 784.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08950510 784.42895508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08950511 784.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08950512 784.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08950513 784.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08950514 784.42901611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08950515 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08950516 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08950517 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08950518 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08950519 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08950520 784.42907715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08950521 784.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08950522 784.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08950523 784.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08950524 784.42913818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08950525 784.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08950526 784.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08950527 784.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08950528 784.42919922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08950529 784.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08950530 784.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08950531 784.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08950532 784.42926025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08950533 784.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08950534 784.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08950535 784.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08950536 784.42932129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08950537 784.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08950538 784.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08950539 784.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08950540 784.42938232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08950541 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08950542 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08950543 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08950544 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08950545 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08950546 784.42944336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08950547 784.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08950548 784.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08950549 784.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08950550 784.42950439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08950551 784.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08950552 784.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08950553 784.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08950554 784.42956543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08950555 784.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08950556 784.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08950557 784.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08950558 784.42962646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08950559 784.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08950560 784.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08950561 784.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08950562 784.42968750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08950563 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08950564 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08950565 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08950566 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08950567 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08950568 784.42974854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08950569 784.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08950570 784.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08950571 784.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08950572 784.42980957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08950573 784.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08950574 784.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08950575 784.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08950576 784.42987061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08950577 784.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08950578 784.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08950579 784.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08950580 784.42993164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08950581 784.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08950582 784.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08950583 784.42999268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08950584 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08950585 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08950586 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08950587 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08950588 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08950589 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08950590 784.43005371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08950591 784.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08950592 784.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08950593 784.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08950594 784.43011475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08950595 784.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08950596 784.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08950597 784.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08950598 784.43017578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08950599 784.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08950600 784.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08950601 784.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08950602 784.43023682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08950603 784.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08950604 784.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08950605 784.43029785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08950606 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08950607 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08950608 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08950609 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08950610 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08950611 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08950612 784.43035889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08950613 784.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08950614 784.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08950615 784.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08950616 784.43041992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08950617 784.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08950618 784.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08950619 784.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08950620 784.43048096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08950621 784.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08950622 784.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08950623 784.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08950624 784.43054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08950625 784.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08950626 784.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08950627 784.43060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08950628 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08950629 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08950630 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08950631 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08950632 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08950633 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08950634 784.43066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08950635 784.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08950636 784.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08950637 784.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08950638 784.43072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08950639 784.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08950640 784.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08950641 784.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08950642 784.43078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08950643 784.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08950644 784.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08950645 784.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08950646 784.43084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08950647 784.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08950648 784.43090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08950649 784.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08950650 784.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08950651 784.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08950652 784.43096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08950653 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08950654 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08950655 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08950656 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08950657 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08950658 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08950659 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08950660 784.43103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08950661 784.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08950662 784.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08950663 784.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08950664 784.43109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08950665 784.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08950666 784.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08950667 784.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08950668 784.43115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08950669 784.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08950670 784.43121338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08950671 784.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08950672 784.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08950673 784.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08950674 784.43127441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08950675 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08950676 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08950677 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08950678 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08950679 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08950680 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08950681 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08950682 784.43133545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08950683 784.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08950684 784.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08950685 784.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08950686 784.43139648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08950687 784.43145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08950688 784.43145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08950689 784.43145752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08950690 784.43151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08950691 784.43151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08950692 784.43151855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08950693 784.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08950694 784.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08950695 784.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08950696 784.43157959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08950697 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08950698 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08950699 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08950700 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08950701 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08950702 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08950703 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08950704 784.43164063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08950705 784.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08950706 784.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08950707 784.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08950708 784.43170166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08950709 784.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08950710 784.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08950711 784.43176270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08950712 784.43182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08950713 784.43182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08950714 784.43182373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08950715 784.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08950716 784.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08950717 784.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08950718 784.43188477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08950719 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08950720 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08950721 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08950722 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08950723 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08950724 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08950725 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08950726 784.43194580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08950727 784.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08950728 784.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08950729 784.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08950730 784.43200684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08950731 784.43206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08950732 784.43206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08950733 784.43206787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08950734 784.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08950735 784.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08950736 784.43212891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08950737 784.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08950738 784.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08950739 784.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08950740 784.43218994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08950741 784.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08950742 784.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08950743 784.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08950744 784.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08950745 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08950746 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08950747 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08950748 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08950749 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08950750 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08950751 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08950752 784.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08950753 784.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08950754 784.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08950755 784.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08950756 784.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08950757 784.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08950758 784.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08950759 784.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08950760 784.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08950761 784.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08950762 784.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08950763 784.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08950764 784.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08950765 784.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08950766 784.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08950767 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08950768 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08950769 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08950770 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08950771 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08950772 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08950773 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08950774 784.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08950775 784.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08950776 784.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08950777 784.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08950778 784.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08950779 784.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08950780 784.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08950781 784.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08950782 784.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08950783 784.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08950784 784.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08950785 784.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08950786 784.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08950787 784.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08950788 784.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08950789 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08950790 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08950791 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08950792 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08950793 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08950794 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08950795 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08950796 784.43292236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08950797 784.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08950798 784.43298340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08950799 784.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08950800 784.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08950801 784.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08950802 784.43304443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08950803 784.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08950804 784.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08950805 784.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08950806 784.43310547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08950807 784.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08950808 784.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08950809 784.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08950810 784.43316650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08950811 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08950812 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08950813 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08950814 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08950815 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08950816 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08950817 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08950818 784.43322754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08950819 784.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08950820 784.43328857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08950821 784.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08950822 784.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08950823 784.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08950824 784.43334961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08950825 784.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08950826 784.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08950827 784.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08950828 784.43341064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08950829 784.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08950830 784.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08950831 784.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08950832 784.43347168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08950833 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08950834 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08950835 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08950836 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08950837 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08950838 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08950839 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08950840 784.43353271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08950841 784.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08950842 784.43359375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08950843 784.43365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08950844 784.43365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08950845 784.43365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08950846 784.43365479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08950847 784.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08950848 784.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08950849 784.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08950850 784.43371582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08950851 784.43377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08950852 784.43377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08950853 784.43377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08950854 784.43377686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08950855 784.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08950856 784.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08950857 784.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08950858 784.43383789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08950859 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08950860 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08950861 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08950862 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08950863 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08950864 784.43389893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08950865 784.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08950866 784.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08950867 784.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08950868 784.43395996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08950869 784.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08950870 784.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08950871 784.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08950872 784.43402100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08950873 784.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08950874 784.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08950875 784.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08950876 784.43408203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08950877 784.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08950878 784.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08950879 784.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08950880 784.43414307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08950881 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08950882 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08950883 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08950884 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08950885 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08950886 784.43420410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08950887 784.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08950888 784.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08950889 784.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08950890 784.43426514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08950891 784.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08950892 784.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08950893 784.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08950894 784.43432617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08950895 784.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08950896 784.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08950897 784.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08950898 784.43438721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08950899 784.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08950900 784.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08950901 784.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08950902 784.43444824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08950903 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08950904 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08950905 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08950906 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08950907 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08950908 784.43450928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08950909 784.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08950910 784.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08950911 784.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08950912 784.43457031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08950913 784.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08950914 784.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08950915 784.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08950916 784.43463135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08950917 784.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08950918 784.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08950919 784.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08950920 784.43469238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08950921 784.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08950922 784.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08950923 784.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08950924 784.43475342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08950925 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08950926 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08950927 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08950928 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08950929 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08950930 784.43481445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08950931 784.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08950932 784.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08950933 784.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08950934 784.43487549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08950935 784.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08950936 784.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08950937 784.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08950938 784.43493652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08950939 784.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08950940 784.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08950941 784.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08950942 784.43499756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08950943 784.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08950944 784.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08950945 784.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08950946 784.43505859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08950947 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08950948 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08950949 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08950950 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08950951 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08950952 784.43511963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08950953 784.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08950954 784.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08950955 784.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08950956 784.43518066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08950957 784.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08950958 784.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08950959 784.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08950960 784.43524170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08950961 784.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08950962 784.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08950963 784.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08950964 784.43530273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08950965 784.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08950966 784.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08950967 784.43536377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08950968 784.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08950969 784.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08950970 784.43542480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08950971 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08950972 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08950973 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08950974 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08950975 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08950976 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08950977 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08950978 784.43548584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08950979 784.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08950980 784.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08950981 784.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08950982 784.43554688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08950983 784.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08950984 784.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08950985 784.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08950986 784.43560791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08950987 784.43566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08950988 784.43566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08950989 784.43566895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08950990 784.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08950991 784.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08950992 784.43572998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08950993 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08950994 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08950995 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08950996 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08950997 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08950998 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08950999 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08951000 784.43579102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08951001 784.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08951002 784.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08951003 784.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08951004 784.43585205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08951005 784.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08951006 784.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08951007 784.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08951008 784.43591309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08951009 784.43597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08951010 784.43597412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08951011 784.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08951012 784.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08951013 784.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08951014 784.43603516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08951015 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08951016 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08951017 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08951018 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08951019 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08951020 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08951021 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08951022 784.43609619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08951023 784.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08951024 784.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08951025 784.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08951026 784.43615723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08951027 784.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08951028 784.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08951029 784.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08951030 784.43621826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08951031 784.43627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08951032 784.43627930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08951033 784.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08951034 784.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08951035 784.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08951036 784.43634033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08951037 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08951038 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08951039 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08951040 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08951041 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08951042 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08951043 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08951044 784.43640137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08951045 784.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08951046 784.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08951047 784.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08951048 784.43646240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08951049 784.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08951050 784.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08951051 784.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08951052 784.43652344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08951053 784.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08951054 784.43658447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08951055 784.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08951056 784.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08951057 784.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08951058 784.43664551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08951059 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08951060 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08951061 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08951062 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08951063 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08951064 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08951065 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08951066 784.43670654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08951067 784.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08951068 784.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08951069 784.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08951070 784.43676758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08951071 784.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08951072 784.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08951073 784.43682861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08951074 784.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08951075 784.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08951076 784.43688965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08951077 784.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08951078 784.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08951079 784.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08951080 784.43695068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08951081 784.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08951082 784.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08951083 784.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08951084 784.43701172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08951085 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08951086 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08951087 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08951088 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08951089 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08951090 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08951091 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08951092 784.43707275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08951093 784.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08951094 784.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08951095 784.43713379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08951096 784.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08951097 784.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08951098 784.43719482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08951099 784.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08951100 784.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08951101 784.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08951102 784.43725586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08951103 784.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08951104 784.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08951105 784.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08951106 784.43731689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08951107 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08951108 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08951109 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08951110 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08951111 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08951112 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08951113 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08951114 784.43737793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08951115 784.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08951116 784.43750000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08951117 784.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08951118 784.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08951119 784.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08951120 784.43756104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08951121 784.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08951122 784.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08951123 784.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08951124 784.43762207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08951125 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08951126 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08951127 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08951128 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08951129 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08951130 784.43768311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08951131 784.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08951132 784.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08951133 784.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08951134 784.43774414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08951135 784.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08951136 784.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08951137 784.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08951138 784.43780518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08951139 784.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08951140 784.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08951141 784.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08951142 784.43786621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08951143 784.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08951144 784.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08951145 784.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08951146 784.43792725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08951147 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08951148 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08951149 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08951150 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08951151 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08951152 784.43798828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08951153 784.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08951154 784.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08951155 784.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08951156 784.43804932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08951157 784.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08951158 784.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08951159 784.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08951160 784.43811035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08951161 784.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08951162 784.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08951163 784.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08951164 784.43817139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08951165 784.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08951166 784.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08951167 784.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08951168 784.43823242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08951169 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08951170 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08951171 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08951172 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08951173 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08951174 784.43829346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08951175 784.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08951176 784.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08951177 784.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08951178 784.43835449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08951179 784.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08951180 784.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08951181 784.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08951182 784.43841553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08951183 784.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08951184 784.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08951185 784.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08951186 784.43847656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08951187 784.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08951188 784.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08951189 784.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08951190 784.43853760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08951191 784.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08951192 784.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08951193 784.43859863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08951194 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08951195 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08951196 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08951197 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08951198 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08951199 784.43865967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08951200 784.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08951201 784.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08951202 784.43872070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08951203 784.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08951204 784.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08951205 784.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08951206 784.43878174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08951207 784.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08951208 784.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08951209 784.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08951210 784.43884277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08951211 784.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08951212 784.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08951213 784.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08951214 784.43890381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08951215 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08951216 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08951217 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08951218 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08951219 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08951220 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08951221 784.43896484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08951222 784.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08951223 784.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08951224 784.43902588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08951225 784.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08951226 784.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08951227 784.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08951228 784.43908691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08951229 784.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08951230 784.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08951231 784.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08951232 784.43914795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08951233 784.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08951234 784.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08951235 784.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08951236 784.43920898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08951237 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08951238 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08951239 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08951240 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08951241 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08951242 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08951243 784.43927002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08951244 784.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08951245 784.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08951246 784.43933105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08951247 784.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08951248 784.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08951249 784.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08951250 784.43939209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08951251 784.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08951252 784.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08951253 784.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08951254 784.43945313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08951255 784.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08951256 784.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08951257 784.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08951258 784.43951416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08951259 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08951260 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08951261 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08951262 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08951263 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08951264 784.43957520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08951265 784.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08951266 784.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08951267 784.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08951268 784.43963623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08951269 784.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08951270 784.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08951271 784.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08951272 784.43969727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08951273 784.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08951274 784.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08951275 784.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08951276 784.43975830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08951277 784.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08951278 784.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08951279 784.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08951280 784.43981934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08951281 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08951282 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08951283 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08951284 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08951285 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08951286 784.43988037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08951287 784.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08951288 784.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08951289 784.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08951290 784.43994141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08951291 784.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08951292 784.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08951293 784.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08951294 784.44000244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08951295 784.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08951296 784.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08951297 784.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08951298 784.44006348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08951299 784.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08951300 784.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08951301 784.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08951302 784.44012451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08951303 784.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08951304 784.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08951305 784.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08951306 784.44018555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08951307 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08951308 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08951309 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08951310 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08951311 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08951312 784.44024658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08951313 784.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08951314 784.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08951315 784.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08951316 784.44030762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08951317 784.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08951318 784.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08951319 784.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08951320 784.44036865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08951321 784.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08951322 784.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08951323 784.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08951324 784.44042969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08951325 784.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08951326 784.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08951327 784.44049072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08951328 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08951329 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08951330 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08951331 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08951332 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08951333 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08951334 784.44055176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08951335 784.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08951336 784.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08951337 784.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08951338 784.44061279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08951339 784.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08951340 784.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08951341 784.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08951342 784.44067383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08951343 784.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08951344 784.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08951345 784.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08951346 784.44073486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08951347 784.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08951348 784.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08951349 784.44079590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08951350 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08951351 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08951352 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08951353 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08951354 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08951355 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08951356 784.44085693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08951357 784.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08951358 784.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08951359 784.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08951360 784.44091797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08951361 784.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08951362 784.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08951363 784.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08951364 784.44097900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08951365 784.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08951366 784.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08951367 784.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08951368 784.44104004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08951369 784.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08951370 784.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08951371 784.44110107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08951372 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08951373 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08951374 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08951375 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08951376 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08951377 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08951378 784.44116211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08951379 784.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08951380 784.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08951381 784.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08951382 784.44122314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08951383 784.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08951384 784.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08951385 784.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08951386 784.44128418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08951387 784.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08951388 784.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08951389 784.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08951390 784.44134521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08951391 784.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08951392 784.44140625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08951393 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08951394 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08951395 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08951396 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08951397 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08951398 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08951399 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08951400 784.44146729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08951401 784.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08951402 784.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08951403 784.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08951404 784.44152832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08951405 784.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08951406 784.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08951407 784.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08951408 784.44158936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08951409 784.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08951410 784.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08951411 784.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08951412 784.44165039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08951413 784.44171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08951414 784.44171143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08951415 784.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08951416 784.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08951417 784.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08951418 784.44177246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08951419 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08951420 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08951421 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08951422 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08951423 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08951424 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08951425 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08951426 784.44183350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08951427 784.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08951428 784.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08951429 784.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08951430 784.44189453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08951431 784.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08951432 784.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08951433 784.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08951434 784.44195557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08951435 784.44201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08951436 784.44201660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08951437 784.44207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08951438 784.44207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08951439 784.44207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08951440 784.44207764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08951441 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08951442 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08951443 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08951444 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08951445 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08951446 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08951447 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08951448 784.44213867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08951449 784.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08951450 784.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08951451 784.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08951452 784.44219971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08951453 784.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08951454 784.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08951455 784.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08951456 784.44226074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08951457 784.44232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08951458 784.44232178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08951459 784.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08951460 784.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08951461 784.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08951462 784.44238281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08951463 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08951464 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08951465 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08951466 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08951467 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08951468 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08951469 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08951470 784.44244385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08951471 784.44250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08951472 784.44250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08951473 784.44250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08951474 784.44250488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08951475 784.44256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08951476 784.44256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08951477 784.44256592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08951478 784.44262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08951479 784.44262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08951480 784.44262695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08951481 784.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08951482 784.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08951483 784.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08951484 784.44268799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08951485 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08951486 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08951487 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08951488 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08951489 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08951490 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08951491 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08951492 784.44274902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08951493 784.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08951494 784.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08951495 784.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08951496 784.44281006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08951497 784.44287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08951498 784.44287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08951499 784.44287109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08951500 784.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08951501 784.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08951502 784.44293213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08951503 784.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08951504 784.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08951505 784.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08951506 784.44299316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08951507 784.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08951508 784.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08951509 784.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08951510 784.44305420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08951511 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08951512 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08951513 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08951514 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08951515 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08951516 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08951517 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08951518 784.44311523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08951519 784.44317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08951520 784.44317627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08951521 784.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08951522 784.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08951523 784.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08951524 784.44323730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08951525 784.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08951526 784.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08951527 784.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08951528 784.44329834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08951529 784.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08951530 784.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08951531 784.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08951532 784.44335938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08951533 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08951534 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08951535 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08951536 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08951537 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08951538 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08951539 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08951540 784.44342041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08951541 784.44348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08951542 784.44348145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08951543 784.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08951544 784.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08951545 784.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08951546 784.44354248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08951547 784.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08951548 784.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08951549 784.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08951550 784.44360352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08951551 784.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08951552 784.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08951553 784.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08951554 784.44366455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08951555 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08951556 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08951557 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08951558 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08951559 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08951560 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08951561 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08951562 784.44372559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08951563 784.44378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08951564 784.44378662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08951565 784.44384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08951566 784.44384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08951567 784.44384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08951568 784.44384766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08951569 784.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08951570 784.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08951571 784.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08951572 784.44390869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08951573 784.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08951574 784.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08951575 784.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08951576 784.44396973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08951577 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08951578 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08951579 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08951580 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08951581 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08951582 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08951583 784.44403076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08951584 784.44409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08951585 784.44409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08951586 784.44409180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08951587 784.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08951588 784.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08951589 784.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08951590 784.44415283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08951591 784.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08951592 784.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08951593 784.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08951594 784.44421387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08951595 784.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08951596 784.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08951597 784.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08951598 784.44427490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08951599 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08951600 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08951601 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08951602 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08951603 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08951604 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08951605 784.44433594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08951606 784.44439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08951607 784.44439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08951608 784.44439697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08951609 784.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08951610 784.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08951611 784.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08951612 784.44445801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08951613 784.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08951614 784.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08951615 784.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08951616 784.44451904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08951617 784.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08951618 784.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08951619 784.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08951620 784.44458008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08951621 784.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08951622 784.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08951623 784.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08951624 784.44464111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08951625 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08951626 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08951627 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08951628 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08951629 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08951630 784.44470215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08951631 784.44476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08951632 784.44476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08951633 784.44476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08951634 784.44476318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08951635 784.44482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08951636 784.44482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08951637 784.44482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08951638 784.44482422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08951639 784.44488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08951640 784.44488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08951641 784.44488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08951642 784.44488525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08951643 784.44494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08951644 784.44494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08951645 784.44494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08951646 784.44494629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08951647 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08951648 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08951649 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08951650 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08951651 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08951652 784.44500732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08951653 784.44506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08951654 784.44506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08951655 784.44506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08951656 784.44506836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08951657 784.44512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08951658 784.44512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08951659 784.44512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08951660 784.44512939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08951661 784.44519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08951662 784.44519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08951663 784.44519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08951664 784.44519043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08951665 784.44525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08951666 784.44525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08951667 784.44525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08951668 784.44525146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08951669 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08951670 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08951671 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08951672 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08951673 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08951674 784.44531250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08951675 784.44537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08951676 784.44537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08951677 784.44537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08951678 784.44537354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08951679 784.44543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08951680 784.44543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08951681 784.44543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08951682 784.44543457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08951683 784.44549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08951684 784.44549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08951685 784.44549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08951686 784.44549561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08953623 784.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -08953624 784.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd18 -08953625 784.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -08953626 784.47271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd28 -08953627 784.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -08953628 784.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd38 -08953629 784.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -08953630 784.47277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd48 -08953631 784.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -08953632 784.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd58 -08953633 784.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -08953634 784.47283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd68 -08953635 784.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -08953636 784.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd78 -08953637 784.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -08953638 784.47290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd88 -08953639 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -08953640 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbd98 -08953641 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -08953642 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbda8 -08953643 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -08953644 784.47296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdb8 -08953645 784.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -08953646 784.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdc8 -08953647 784.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -08953648 784.47302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdd8 -08953649 784.47308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -08953650 784.47308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbde8 -08953651 784.47308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -08953652 784.47308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbdf8 -08953653 784.47314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -08953654 784.47314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe08 -08953655 784.47314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -08953656 784.47314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe18 -08953657 784.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -08953658 784.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe28 -08953659 784.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -08953660 784.47320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe38 -08953661 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -08953662 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe48 -08953663 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -08953664 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe58 -08953665 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -08953666 784.47326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xbe68 -08956101 784.50744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -08956102 784.50744629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -08956103 784.50750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -08956104 784.50750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -08956105 784.50750732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -08956106 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -08956107 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -08956108 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -08956109 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -08956110 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -08956111 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -08956112 784.50756836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -08956113 784.50762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -08956114 784.50762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -08956115 784.50762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -08956116 784.50762939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -08956117 784.50769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -08956118 784.50769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -08956119 784.50769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b18 -08956120 784.50769043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b18 -08956121 784.50775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b28 -08956122 784.50775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b28 -08956123 784.50775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -08956124 784.50775146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -08956125 784.50781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -08956126 784.50781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -08956127 784.50781250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -08956128 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -08956129 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -08956130 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -08956131 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -08956132 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -08956133 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -08956134 784.50787354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -08956135 784.50793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -08956136 784.50793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -08956137 784.50793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -08956138 784.50793457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -08956139 784.50799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -08956140 784.50799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -08956141 784.50799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -08956142 784.50799561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -08956143 784.50805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -08956144 784.50805664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bd8 -08958739 784.54449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf8 -08958740 784.54449463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15cf8 -08958741 784.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d08 -08958742 784.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d08 -08958743 784.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d18 -08958744 784.54455566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d18 -08958745 784.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d28 -08958746 784.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d28 -08958747 784.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d38 -08958748 784.54461670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d38 -08958749 784.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d48 -08958750 784.54467773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d48 -08958751 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d58 -08958752 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d58 -08958753 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d68 -08958754 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d68 -08958755 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d78 -08958756 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d78 -08958757 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d88 -08958758 784.54473877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d88 -08958759 784.54479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -08958760 784.54479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d98 -08958761 784.54479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -08958762 784.54479980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15da8 -08958763 784.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -08958764 784.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15db8 -08958765 784.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -08958766 784.54486084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dc8 -08958767 784.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -08958768 784.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15dd8 -08958769 784.54492188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -08958770 784.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15de8 -08958771 784.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df8 -08958772 784.54498291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15df8 -08958773 784.54504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e08 -08958774 784.54504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e08 -08958775 784.54504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e18 -08958776 784.54504395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e18 -08958777 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e28 -08958778 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e28 -08958779 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e38 -08958780 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e38 -08958781 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e48 -08958782 784.54510498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e48 -08961209 784.57922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -08961210 784.57922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa28 -08961211 784.57922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -08961212 784.57922363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa38 -08961213 784.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -08961214 784.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa48 -08961215 784.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -08961216 784.57928467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa58 -08961217 784.57934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -08961218 784.57934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa68 -08961219 784.57934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -08961220 784.57934570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa78 -08961221 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -08961222 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa88 -08961223 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -08961224 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa98 -08961225 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -08961226 784.57940674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaa8 -08961227 784.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -08961228 784.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aab8 -08961229 784.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -08961230 784.57946777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aac8 -08961231 784.57952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -08961232 784.57952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aad8 -08961233 784.57952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -08961234 784.57952881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aae8 -08961235 784.57958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -08961236 784.57958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aaf8 -08961237 784.57958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -08961238 784.57958984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab08 -08961239 784.57965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -08961240 784.57965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab18 -08961241 784.57965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -08961242 784.57965088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab28 -08961243 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -08961244 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab38 -08961245 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -08961246 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab48 -08961247 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -08961248 784.57971191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab58 -08961249 784.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -08961250 784.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab68 -08961251 784.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab78 -08961252 784.57977295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab78 -08963747 784.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f978 -08963748 784.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f978 -08963749 784.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f988 -08963750 784.61486816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f988 -08963751 784.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f998 -08963752 784.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f998 -08963753 784.61492920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a8 -08963754 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9a8 -08963755 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b8 -08963756 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9b8 -08963757 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c8 -08963758 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9c8 -08963759 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d8 -08963760 784.61499023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9d8 -08963761 784.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e8 -08963762 784.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9e8 -08963763 784.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f8 -08963764 784.61505127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f9f8 -08963765 784.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa08 -08963766 784.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa08 -08963767 784.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa18 -08963768 784.61511230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa18 -08963769 784.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa28 -08963770 784.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa28 -08963771 784.61517334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa38 -08963772 784.61523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa38 -08963773 784.61523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa48 -08963774 784.61523438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa48 -08963775 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa58 -08963776 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa58 -08963777 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa68 -08963778 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa68 -08963779 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa78 -08963780 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa78 -08963781 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa88 -08963782 784.61529541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa88 -08963783 784.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa98 -08963784 784.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa98 -08963785 784.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa8 -08963786 784.61535645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa8 -08963787 784.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -08963788 784.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -08963789 784.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -08963790 784.61541748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -08964215 784.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -08964216 784.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -08964217 784.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -08964218 784.62152100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -08964219 784.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -08964220 784.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -08964221 784.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -08964222 784.62158203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -08964223 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -08964224 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -08964225 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -08964226 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -08964227 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -08964228 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -08964229 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -08964230 784.62164307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -08964231 784.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -08964232 784.62170410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -08964233 784.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -08964234 784.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -08964235 784.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -08964236 784.62176514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -08964237 784.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -08964238 784.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -08964239 784.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -08964240 784.62182617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -08964241 784.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -08964242 784.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -08964243 784.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -08964244 784.62188721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -08964245 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -08964246 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -08964247 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -08964248 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -08964249 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -08964250 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -08964251 784.62194824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -08964252 784.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -08964253 784.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -08964254 784.62200928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -08964255 784.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20958 -08964256 784.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20958 -08964257 784.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20968 -08964258 784.62207031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20968 -08964437 784.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f08 -08964438 784.62463379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f08 -08964439 784.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f18 -08964440 784.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f18 -08964441 784.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f28 -08964442 784.62469482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f28 -08964443 784.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f38 -08964444 784.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f38 -08964445 784.62475586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f48 -08964446 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f48 -08964447 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f58 -08964448 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f58 -08964449 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f68 -08964450 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f68 -08964451 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f78 -08964452 784.62481689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f78 -08964453 784.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f88 -08964454 784.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f88 -08964455 784.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f98 -08964456 784.62487793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f98 -08964457 784.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa8 -08964458 784.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fa8 -08964459 784.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb8 -08964460 784.62493896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fb8 -08964461 784.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc8 -08964462 784.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fc8 -08964463 784.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd8 -08964464 784.62500000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fd8 -08964465 784.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe8 -08964466 784.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20fe8 -08964467 784.62506104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff8 -08964468 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ff8 -08964469 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21008 -08964470 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21008 -08964471 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21018 -08964472 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21018 -08964473 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21028 -08964474 784.62512207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21028 -08964475 784.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21038 -08964476 784.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21038 -08964477 784.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21048 -08964478 784.62518311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21048 -08964479 784.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21058 -08964480 784.62524414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21058 -08964617 784.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -08964618 784.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -08964619 784.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -08964620 784.62725830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -08964621 784.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -08964622 784.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -08964623 784.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -08964624 784.62731934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -08964625 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -08964626 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -08964627 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -08964628 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -08964629 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -08964630 784.62738037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -08964631 784.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -08964632 784.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -08964633 784.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -08964634 784.62744141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -08964635 784.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -08964636 784.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -08964637 784.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -08964638 784.62750244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -08964639 784.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -08964640 784.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -08964641 784.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -08964642 784.62756348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -08964643 784.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -08964644 784.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -08964645 784.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -08964646 784.62762451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -08964647 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -08964648 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -08964649 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -08964650 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -08964651 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -08964652 784.62768555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -08964653 784.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -08964654 784.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -08964655 784.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -08964656 784.62774658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -08964657 784.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -08964658 784.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -08964659 784.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -08964660 784.62780762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -08964745 784.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -08964746 784.62902832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -08964747 784.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -08964748 784.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -08964749 784.62908936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -08964750 784.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -08964751 784.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -08964752 784.62915039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -08964753 784.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e8 -08964754 784.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218e8 -08964755 784.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f8 -08964756 784.62921143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218f8 -08964757 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21908 -08964758 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21908 -08964759 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21918 -08964760 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21918 -08964761 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21928 -08964762 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21928 -08964763 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21938 -08964764 784.62927246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21938 -08964765 784.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21948 -08964766 784.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21948 -08964767 784.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21958 -08964768 784.62933350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21958 -08964769 784.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21968 -08964770 784.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21968 -08964771 784.62939453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21978 -08964772 784.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21978 -08964773 784.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21988 -08964774 784.62945557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21988 -08964775 784.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21998 -08964776 784.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21998 -08964777 784.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a8 -08964778 784.62951660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219a8 -08964779 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b8 -08964780 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219b8 -08964781 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c8 -08964782 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219c8 -08964783 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d8 -08964784 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219d8 -08964785 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e8 -08964786 784.62957764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219e8 -08964787 784.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f8 -08964788 784.62963867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x219f8 -08965025 784.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -08965026 784.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22168 -08965027 784.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -08965028 784.63305664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22178 -08965029 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -08965030 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22188 -08965031 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08965032 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22198 -08965033 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08965034 784.63311768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221a8 -08965035 784.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08965036 784.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221b8 -08965037 784.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08965038 784.63317871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221c8 -08965039 784.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08965040 784.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221d8 -08965041 784.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08965042 784.63323975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221e8 -08965043 784.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08965044 784.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x221f8 -08965045 784.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08965046 784.63330078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22208 -08965047 784.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -08965048 784.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22218 -08965049 784.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -08965050 784.63336182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22228 -08965051 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -08965052 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22238 -08965053 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -08965054 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22248 -08965055 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -08965056 784.63342285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22258 -08965057 784.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -08965058 784.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22268 -08965059 784.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -08965060 784.63348389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22278 -08965061 784.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -08965062 784.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22288 -08965063 784.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -08965064 784.63354492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22298 -08965065 784.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -08965066 784.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222a8 -08965067 784.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -08965068 784.63360596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x222b8 -08965089 784.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -08965090 784.63391113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22368 -08965091 784.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -08965092 784.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22378 -08965093 784.63397217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -08965094 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22388 -08965095 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -08965096 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22398 -08965097 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -08965098 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223a8 -08965099 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b8 -08965100 784.63403320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223b8 -08965101 784.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c8 -08965102 784.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223c8 -08965103 784.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d8 -08965104 784.63409424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223d8 -08965105 784.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e8 -08965106 784.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223e8 -08965107 784.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -08965108 784.63415527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x223f8 -08965109 784.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -08965110 784.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22408 -08965111 784.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -08965112 784.63421631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22418 -08965113 784.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -08965114 784.63427734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22428 -08965115 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -08965116 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22438 -08965117 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -08965118 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22448 -08965119 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -08965120 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22458 -08965121 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -08965122 784.63433838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22468 -08965123 784.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -08965124 784.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22478 -08965125 784.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -08965126 784.63439941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22488 -08965127 784.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -08965128 784.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22498 -08965129 784.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -08965130 784.63446045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224a8 -08965131 784.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -08965132 784.63452148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224b8 -08965139 784.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -08965140 784.63464355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x224f8 -08965141 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -08965142 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22508 -08965143 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -08965144 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22518 -08965145 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -08965146 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22528 -08965147 784.63470459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -08965148 784.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22538 -08965149 784.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -08965150 784.63476563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22548 -08965151 784.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -08965152 784.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22558 -08965153 784.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -08965154 784.63482666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22568 -08965155 784.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -08965156 784.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22578 -08965157 784.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -08965158 784.63488770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22588 -08965159 784.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -08965160 784.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22598 -08965161 784.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -08965162 784.63494873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225a8 -08965163 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -08965164 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225b8 -08965165 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -08965166 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225c8 -08965167 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -08965168 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225d8 -08965169 784.63500977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e8 -08965170 784.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225e8 -08965171 784.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f8 -08965172 784.63507080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x225f8 -08965173 784.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22608 -08965174 784.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22608 -08965175 784.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22618 -08965176 784.63513184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22618 -08965177 784.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22628 -08965178 784.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22628 -08965179 784.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22638 -08965180 784.63519287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22638 -08965181 784.63525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22648 -08965182 784.63525391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22648 -08965566 784.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23248 -08965567 784.64068604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23258 -08965568 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23258 -08965569 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23268 -08965570 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23268 -08965571 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -08965572 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23278 -08965573 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -08965574 784.64074707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23288 -08965575 784.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23298 -08965576 784.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23298 -08965577 784.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -08965578 784.64080811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232a8 -08965579 784.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -08965580 784.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232b8 -08965581 784.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -08965582 784.64086914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -08965583 784.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -08965584 784.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -08965585 784.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -08965586 784.64093018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -08965587 784.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -08965588 784.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -08965589 784.64099121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -08965590 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -08965591 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -08965592 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -08965593 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -08965594 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -08965595 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -08965596 784.64105225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -08965597 784.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -08965598 784.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -08965599 784.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -08965600 784.64111328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -08965601 784.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -08965602 784.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -08965603 784.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -08965604 784.64117432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -08965605 784.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -08965606 784.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -08965607 784.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -08965608 784.64123535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -08965609 784.64129639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -08965617 784.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -08965618 784.64135742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -08965619 784.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -08965620 784.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -08965621 784.64141846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -08965622 784.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -08965623 784.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -08965624 784.64147949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -08965625 784.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -08965626 784.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23428 -08965627 784.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -08965628 784.64154053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23438 -08965629 784.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -08965630 784.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23448 -08965631 784.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -08965632 784.64160156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23458 -08965633 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -08965634 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23468 -08965635 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -08965636 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23478 -08965637 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -08965638 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23488 -08965639 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -08965640 784.64166260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23498 -08965641 784.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -08965642 784.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234a8 -08965643 784.64172363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -08965644 784.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234b8 -08965645 784.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -08965646 784.64178467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234c8 -08965647 784.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -08965648 784.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234d8 -08965649 784.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -08965650 784.64184570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234e8 -08965651 784.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -08965652 784.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x234f8 -08965653 784.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -08965654 784.64190674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23508 -08965655 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -08965656 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23518 -08965657 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -08965658 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23528 -08965659 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -08965660 784.64196777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23538 -08965777 784.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e8 -08965778 784.64361572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x238e8 -08965779 784.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f8 -08965780 784.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x238f8 -08965781 784.64367676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23908 -08965782 784.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23908 -08965783 784.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23918 -08965784 784.64373779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23918 -08965785 784.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23928 -08965786 784.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23928 -08965787 784.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23938 -08965788 784.64379883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23938 -08965789 784.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23948 -08965790 784.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23948 -08965791 784.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23958 -08965792 784.64385986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23958 -08965793 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23968 -08965794 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23968 -08965795 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23978 -08965796 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23978 -08965797 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23988 -08965798 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23988 -08965799 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23998 -08965800 784.64392090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23998 -08965801 784.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a8 -08965802 784.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239a8 -08965803 784.64398193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b8 -08965804 784.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239b8 -08965805 784.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c8 -08965806 784.64404297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239c8 -08965807 784.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d8 -08965808 784.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239d8 -08965809 784.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e8 -08965810 784.64410400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239e8 -08965811 784.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f8 -08965812 784.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x239f8 -08965813 784.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a08 -08965814 784.64416504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a08 -08965815 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a18 -08965816 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a18 -08965817 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a28 -08965818 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a28 -08965819 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a38 -08965820 784.64422607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a38 -08967961 784.67492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -08967962 784.67492676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -08967963 784.67498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -08967964 784.67498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -08967965 784.67498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -08967966 784.67498779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -08967967 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -08967968 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -08967969 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -08967970 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -08967971 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -08967972 784.67504883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -08967973 784.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -08967974 784.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -08967975 784.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -08967976 784.67510986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -08967977 784.67517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -08967978 784.67517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -08967979 784.67517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -08967980 784.67517090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -08967981 784.67523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -08967982 784.67523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -08967983 784.67523193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -08967984 784.67529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -08967985 784.67529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -08967986 784.67529297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -08967987 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -08967988 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -08967989 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -08967990 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -08967991 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -08967992 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -08967993 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -08967994 784.67535400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -08967995 784.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -08967996 784.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -08967997 784.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -08967998 784.67541504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e48 -08967999 784.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -08968000 784.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e58 -08968001 784.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -08968002 784.67547607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e68 -08968003 784.67553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -08968004 784.67553711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e78 -08970975 784.71740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -08970976 784.71740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db58 -08970977 784.71740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -08970978 784.71740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db68 -08970979 784.71746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -08970980 784.71746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db78 -08970981 784.71752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -08970982 784.71752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db88 -08970983 784.71752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -08970984 784.71752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db98 -08970985 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -08970986 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dba8 -08970987 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -08970988 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbb8 -08970989 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -08970990 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbc8 -08970991 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -08970992 784.71759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbd8 -08970993 784.71765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -08970994 784.71765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbe8 -08970995 784.71765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -08970996 784.71765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dbf8 -08970997 784.71771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -08970998 784.71771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc08 -08970999 784.71771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -08971000 784.71771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc18 -08971001 784.71777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -08971002 784.71777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc28 -08971003 784.71783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -08971004 784.71783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc38 -08971005 784.71783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc48 -08971006 784.71783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc48 -08971007 784.71789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc58 -08971008 784.71789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc58 -08971009 784.71789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc68 -08971010 784.71789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc68 -08971011 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc78 -08971012 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc78 -08971013 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc88 -08971014 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc88 -08971015 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc98 -08971016 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc98 -08971017 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca8 -08971018 784.71795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dca8 -08986261 784.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -08986262 784.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -08986263 784.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -08986264 784.93054199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -08986265 784.93060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b928 -08986266 784.93060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b928 -08986267 784.93060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b938 -08986268 784.93060303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b938 -08986269 784.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b948 -08986270 784.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b948 -08986271 784.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b958 -08986272 784.93066406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b958 -08986273 784.93072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b968 -08986274 784.93072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b968 -08986275 784.93072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b978 -08986276 784.93072510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b978 -08986277 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b988 -08986278 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b988 -08986279 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b998 -08986280 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b998 -08986281 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a8 -08986282 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9a8 -08986283 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b8 -08986284 784.93078613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9b8 -08986285 784.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c8 -08986286 784.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9c8 -08986287 784.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d8 -08986288 784.93084717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9d8 -08986289 784.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e8 -08986290 784.93090820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9e8 -08986291 784.93096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f8 -08986292 784.93096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b9f8 -08986293 784.93096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba08 -08986294 784.93096924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba08 -08986295 784.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba18 -08986296 784.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba18 -08986297 784.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba28 -08986298 784.93103027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba28 -08986299 784.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba38 -08986300 784.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba38 -08986301 784.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba48 -08986302 784.93109131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba48 -08986303 784.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -08986304 784.93115234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba58 -08988578 784.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50168 -08988579 784.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -08988580 784.96234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50178 -08988581 784.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -08988582 784.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50188 -08988583 784.96240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -08988584 784.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50198 -08988585 784.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -08988586 784.96246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501a8 -08988587 784.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -08988588 784.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501b8 -08988589 784.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -08988590 784.96252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501c8 -08988591 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -08988592 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501d8 -08988593 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -08988594 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501e8 -08988595 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -08988596 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x501f8 -08988597 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -08988598 784.96258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50208 -08988599 784.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -08988600 784.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50218 -08988601 784.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -08988602 784.96264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50228 -08988603 784.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -08988604 784.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50238 -08988605 784.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -08988606 784.96270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50248 -08988607 784.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -08988608 784.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50258 -08988609 784.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -08988610 784.96276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50268 -08988611 784.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -08988612 784.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50278 -08988613 784.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -08988614 784.96282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50288 -08988615 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -08988616 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50298 -08988617 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -08988618 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502a8 -08988619 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -08988620 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502b8 -08988621 784.96289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x502c8 -08989979 785.06396484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08989980 785.08575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08989981 785.08575439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08989982 785.37829590 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989983 785.37884521 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989984 785.43884277 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989985 785.43939209 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989986 785.48022461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989987 785.48077393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989988 785.54058838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989989 785.54113770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08989990 785.66821289 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08989991 785.66821289 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08989992 785.66827393 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08989993 785.66827393 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08989994 785.66833496 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08989995 785.66833496 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08989996 785.66845703 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08989997 785.66851807 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08989998 786.24792480 [vmhook-eac [core number = 21]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -08989999 786.24908447 [vmhook-eac [core number = 21]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -08990000 787.08734131 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08990001 787.10797119 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08990002 787.10797119 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08990003 787.27539063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990004 787.27587891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990005 788.17565918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08990006 788.17565918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08990007 788.17572021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08990008 788.17572021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08990009 788.17584229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08990010 788.17584229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08990011 788.17590332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08990012 788.17590332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08990013 788.35577393 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990014 788.35620117 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990015 788.35662842 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990016 788.35687256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990017 788.35809326 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990018 788.35919189 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990019 788.35925293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990020 788.35998535 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990021 788.36010742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990022 788.36090088 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990023 788.36090088 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990024 788.36132813 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990025 788.36163330 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990026 788.36206055 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08990027 789.10968018 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08990028 789.13153076 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08990029 789.13159180 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08990030 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08990031 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08990032 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08990033 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08990034 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08990035 789.98284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08990036 789.98291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08990037 789.98291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08990038 789.98291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08990039 789.98291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08990040 789.98297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08990041 789.98297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08990042 789.98303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08990043 789.98303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08990044 789.98303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08990045 789.98303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08990046 789.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08990047 789.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08990048 789.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08990049 789.98309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08990050 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08990051 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08990052 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08990053 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08990054 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08990055 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08990056 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08990057 789.98315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08990058 789.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08990059 789.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08990060 789.98321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08990061 789.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08990062 789.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08990063 789.98327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08990064 789.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08990065 789.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08990066 789.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08990067 789.98333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08990068 789.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08990069 789.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08990070 789.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08990071 789.98339844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08990072 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08990073 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08990074 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08990075 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08990076 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08990077 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08990078 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08990079 789.98345947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08990080 789.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08990081 789.98352051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08990082 789.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08990083 789.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08990084 789.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08990085 789.98358154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08990086 789.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08990087 789.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08990088 789.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08990089 789.98364258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08990090 789.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08990091 789.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08990092 789.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08990093 789.98370361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08990094 789.98376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08990095 789.98376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08990096 789.98376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08990097 789.98376465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08990098 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08990099 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08990100 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08990101 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08990102 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08990103 789.98382568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08990104 789.98388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08990105 789.98388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08990106 789.98388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08990107 789.98388672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08990108 789.98394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08990109 789.98394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08990110 789.98394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08990111 789.98394775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08990112 789.98400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08990113 789.98400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08990114 789.98400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08990115 789.98400879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08990116 789.98406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08990117 789.98406982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08990118 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08990119 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08990120 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08990121 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08990122 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08990123 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08990124 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08990125 789.98413086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08990126 789.98419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08990127 789.98419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08990128 789.98419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08990129 789.98419189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08990130 789.98425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08990131 789.98425293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08990132 789.98431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08990133 789.98431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08990134 789.98431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08990135 789.98431396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08990136 789.98437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08990137 789.98437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08990138 789.98437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08990139 789.98437500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08990140 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08990141 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08990142 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08990143 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08990144 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08990145 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08990146 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08990147 789.98443604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08990148 789.98449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08990149 789.98449707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08990150 789.98455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08990151 789.98455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08990152 789.98455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08990153 789.98455811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08990154 789.98461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08990155 789.98461914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08990156 789.98468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08990157 789.98468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08990158 789.98468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08990159 789.98468018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08990160 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08990161 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08990162 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08990163 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08990164 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08990165 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08990166 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08990167 789.98474121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08990168 789.98480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08990169 789.98480225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08990170 789.98486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08990171 789.98486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08990172 789.98486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08990173 789.98486328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08990174 789.98492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08990175 789.98492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08990176 789.98492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08990177 789.98492432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08990178 789.98498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08990179 789.98498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08990180 789.98498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08990181 789.98498535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08990182 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08990183 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08990184 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08990185 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08990186 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08990187 789.98504639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08990188 789.98510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08990189 789.98510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08990190 789.98510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08990191 789.98510742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08990192 789.98516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08990193 789.98516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08990194 789.98516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08990195 789.98516846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08990196 789.98522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08990197 789.98522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08990198 789.98522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08990199 789.98522949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08990200 789.98529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08990201 789.98529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08990202 789.98529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08990203 789.98529053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08990204 789.98535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08990205 789.98535156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08990206 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08990207 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08990208 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08990209 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08990210 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08990211 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08990212 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08990213 789.98541260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08990214 789.98547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08990215 789.98547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08990216 789.98547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08990217 789.98547363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08990218 789.98553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08990219 789.98553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08990220 789.98553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08990221 789.98553467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08990222 789.98559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08990223 789.98559570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08990224 789.98565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08990225 789.98565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08990226 789.98565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08990227 789.98565674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08990228 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08990229 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08990230 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08990231 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08990232 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08990233 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08990234 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08990235 789.98571777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08990236 789.98577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08990237 789.98577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08990238 789.98577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08990239 789.98577881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08990240 789.98583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08990241 789.98583984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08990242 789.98590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08990243 789.98590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08990244 789.98590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08990245 789.98590088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08990246 789.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08990247 789.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08990248 789.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08990249 789.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08990250 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08990251 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08990252 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08990253 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08990254 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08990255 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08990256 789.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08990257 789.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08990258 789.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08990259 789.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08990260 789.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08990261 789.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08990262 789.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08990263 789.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08990264 789.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08990265 789.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08990266 789.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08990267 789.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08990268 789.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08990269 789.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08990270 789.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08990271 789.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08990272 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08990273 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08990274 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08990275 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08990276 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08990277 789.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08990278 789.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08990279 789.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08990280 789.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08990281 789.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08990282 789.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08990283 789.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08990284 789.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08990285 789.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08990286 789.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08990287 789.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08990288 789.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08990289 789.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08990290 789.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08990291 789.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08990292 789.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08990293 789.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08990294 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08990295 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08990296 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08990297 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08990298 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08990299 789.98663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08990300 789.98669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08990301 789.98669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08990302 789.98669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08990303 789.98669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08990304 789.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08990305 789.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08990306 789.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08990307 789.98675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08990308 789.98681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08990309 789.98681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08990310 789.98681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08990311 789.98681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08990312 789.98687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08990313 789.98687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08990314 789.98693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08990315 789.98693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08990316 789.98693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08990317 789.98693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08990318 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08990319 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08990320 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08990321 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08990322 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08990323 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08990324 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08990325 789.98699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08990326 789.98706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08990327 789.98706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08990328 789.98706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08990329 789.98706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08990330 789.98712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08990331 789.98712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08990332 789.98712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08990333 789.98718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08990334 789.98718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08990335 789.98718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08990336 789.98724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08990337 789.98724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08990338 789.98724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08990339 789.98724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08990340 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08990341 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08990342 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08990343 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08990344 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08990345 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08990346 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08990347 789.98730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08990348 789.98736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08990349 789.98736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08990350 789.98736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08990351 789.98742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08990352 789.98742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08990353 789.98742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08990354 789.98748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08990355 789.98748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08990356 789.98748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08990357 789.98748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08990358 789.98754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08990359 789.98754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08990360 789.98754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08990361 789.98754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08990362 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08990363 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08990364 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08990365 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08990366 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08990367 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08990368 789.98760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08990369 789.98767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08990370 789.98767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08990371 789.98767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08990372 789.98773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08990373 789.98773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08990374 789.98773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08990375 789.98773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08990376 789.98779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08990377 789.98779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08990378 789.98779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08990379 789.98779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08990380 789.98785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08990381 789.98785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08990382 789.98785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08990383 789.98785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08990384 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08990385 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08990386 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08990387 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08990388 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08990389 789.98791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08990390 789.98797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08990391 789.98797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08990392 789.98797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08990393 789.98797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08990394 789.98803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08990395 789.98803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08990396 789.98803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08990397 789.98803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08990398 789.98809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08990399 789.98809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08990400 789.98809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08990401 789.98809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08990402 789.98815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08990403 789.98815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08990404 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08990405 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08990406 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08990407 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08990408 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08990409 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08990410 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08990411 789.98822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08990412 789.98828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08990413 789.98828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08990414 789.98828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08990415 789.98828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08990416 789.98834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08990417 789.98834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08990418 789.98834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08990419 789.98834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08990420 789.98840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08990421 789.98840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08990422 789.98846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08990423 789.98846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08990424 789.98846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08990425 789.98846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08990426 789.98852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08990427 789.98852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08990428 789.98852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08990429 789.98852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08990430 789.98858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08990431 789.98858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08990432 789.98858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08990433 789.98858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08990434 789.98864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08990435 789.98864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08990436 789.98864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08990437 789.98864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08990438 789.98870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08990439 789.98870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08990440 789.98870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08990441 789.98876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08990442 789.98876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08990443 789.98876953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08990444 789.98883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08990445 789.98883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08990446 789.98883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08990447 789.98883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08990448 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08990449 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08990450 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08990451 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08990452 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08990453 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08990454 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08990455 789.98889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08990456 789.98895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08990457 789.98895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08990458 789.98895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08990459 789.98895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08990460 789.98901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08990461 789.98901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08990462 789.98907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08990463 789.98907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08990464 789.98907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08990465 789.98907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08990466 789.98913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08990467 789.98913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08990468 789.98913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08990469 789.98913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08990470 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08990471 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08990472 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08990473 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08990474 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08990475 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08990476 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08990477 789.98919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08990478 789.98925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08990479 789.98925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08990480 789.98925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08990481 789.98931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08990482 789.98931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08990483 789.98931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08990484 789.98937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08990485 789.98937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08990486 789.98937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08990487 789.98937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08990488 789.98944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08990489 789.98944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08990490 789.98944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08990491 789.98944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08990492 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08990493 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08990494 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08990495 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08990496 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08990497 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08990498 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08990499 789.98950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08990500 789.98956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08990501 789.98956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08990502 789.98956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08990503 789.98962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08990504 789.98962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08990505 789.98962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08990506 789.98968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08990507 789.98968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08990508 789.98968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08990509 789.98968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08990510 789.98974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08990511 789.98974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08990512 789.98974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08990513 789.98974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08990514 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08990515 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08990516 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08990517 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08990518 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08990519 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08990520 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08990521 789.98980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08990522 789.98986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08990523 789.98986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08990524 789.98986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08990525 789.98992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08990526 789.98992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08990527 789.98992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08990528 789.98999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08990529 789.98999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08990530 789.98999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08990531 789.98999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08990532 789.99005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08990533 789.99005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08990534 789.99005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08990535 789.99005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08990536 789.99011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08990537 789.99011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08990538 789.99011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08990539 789.99011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08990540 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08990541 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08990542 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08990543 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08990544 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08990545 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08990546 789.99017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08990547 789.99023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08990548 789.99023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08990549 789.99023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08990550 789.99029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08990551 789.99029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08990552 789.99029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08990553 789.99029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08990554 789.99035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08990555 789.99035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08990556 789.99035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08990557 789.99035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08990558 789.99041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08990559 789.99041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08990560 789.99041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08990561 789.99041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08990562 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08990563 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08990564 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08990565 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08990566 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08990567 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08990568 789.99047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08990569 789.99053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08990570 789.99053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08990571 789.99053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08990572 789.99060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08990573 789.99060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08990574 789.99060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08990575 789.99060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08990576 789.99066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08990577 789.99066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08990578 789.99066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08990579 789.99066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08990580 789.99072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08990581 789.99072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08990582 789.99072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08990583 789.99072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08990584 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08990585 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08990586 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08990587 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08990588 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08990589 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08990590 789.99078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08990591 789.99084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08990592 789.99084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08990593 789.99084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08990594 789.99090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08990595 789.99090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08990596 789.99090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08990597 789.99090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08990598 789.99096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08990599 789.99096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08990600 789.99096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08990601 789.99096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08990602 789.99102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08990603 789.99102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08990604 789.99102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08990605 789.99102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08990606 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08990607 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08990608 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08990609 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08990610 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08990611 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08990612 789.99108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08990613 789.99114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08990614 789.99114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08990615 789.99114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08990616 789.99121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08990617 789.99121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08990618 789.99121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08990619 789.99121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08990620 789.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08990621 789.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08990622 789.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08990623 789.99127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08990624 789.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08990625 789.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08990626 789.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08990627 789.99133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08990628 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08990629 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08990630 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08990631 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08990632 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08990633 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08990634 789.99139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08990635 789.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08990636 789.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08990637 789.99145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08990638 789.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08990639 789.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08990640 789.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08990641 789.99151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08990642 789.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08990643 789.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08990644 789.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08990645 789.99157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08990646 789.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08990647 789.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08990648 789.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08990649 789.99163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08990650 789.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08990651 789.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08990652 789.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08990653 789.99169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08990654 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08990655 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08990656 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08990657 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08990658 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08990659 789.99176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08990660 789.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08990661 789.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08990662 789.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08990663 789.99182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08990664 789.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08990665 789.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08990666 789.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08990667 789.99188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08990668 789.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08990669 789.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08990670 789.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08990671 789.99194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08990672 789.99200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08990673 789.99200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08990674 789.99200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08990675 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08990676 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08990677 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08990678 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08990679 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08990680 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08990681 789.99206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08990682 789.99212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08990683 789.99212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08990684 789.99212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08990685 789.99212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08990686 789.99218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08990687 789.99218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08990688 789.99218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08990689 789.99218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08990690 789.99224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08990691 789.99224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08990692 789.99224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08990693 789.99224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08990694 789.99230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08990695 789.99230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08990696 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08990697 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08990698 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08990699 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08990700 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08990701 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08990702 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08990703 789.99237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08990704 789.99243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08990705 789.99243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08990706 789.99243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08990707 789.99243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08990708 789.99249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08990709 789.99249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08990710 789.99249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08990711 789.99249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08990712 789.99255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08990713 789.99255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08990714 789.99255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08990715 789.99255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08990716 789.99261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08990717 789.99261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08990718 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08990719 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08990720 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08990721 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08990722 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08990723 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08990724 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08990725 789.99267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08990726 789.99273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08990727 789.99273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08990728 789.99273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08990729 789.99273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08990730 789.99279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08990731 789.99279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08990732 789.99279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08990733 789.99279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08990734 789.99285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08990735 789.99285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08990736 789.99285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08990737 789.99285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08990738 789.99291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08990739 789.99291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08990740 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08990741 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08990742 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08990743 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08990744 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08990745 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08990746 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08990747 789.99298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08990748 789.99304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08990749 789.99304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08990750 789.99304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08990751 789.99304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08990752 789.99310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08990753 789.99310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08990754 789.99310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08990755 789.99310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08990756 789.99316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08990757 789.99316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08990758 789.99316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08990759 789.99316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08990760 789.99322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08990761 789.99322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08990762 789.99328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08990763 789.99328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08990764 789.99328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08990765 789.99328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08990766 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08990767 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08990768 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08990769 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08990770 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08990771 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08990772 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08990773 789.99334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08990774 789.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08990775 789.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08990776 789.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08990777 789.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08990778 789.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08990779 789.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08990780 789.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08990781 789.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08990782 789.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08990783 789.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08990784 789.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08990785 789.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08990786 789.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08990787 789.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08990788 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08990789 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08990790 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08990791 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08990792 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08990793 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08990794 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08990795 789.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08990796 789.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08990797 789.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08990798 789.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08990799 789.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08990800 789.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08990801 789.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08990802 789.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08990803 789.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08990804 789.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08990805 789.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08990806 789.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08990807 789.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08990808 789.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08990809 789.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08990810 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08990811 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08990812 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08990813 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08990814 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08990815 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08990816 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08990817 789.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08990818 789.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08990819 789.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08990820 789.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08990821 789.99401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08990822 789.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08990823 789.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08990824 789.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08990825 789.99407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08990826 789.99414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08990827 789.99414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08990828 789.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08990829 789.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08990830 789.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08990831 789.99420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08990832 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08990833 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08990834 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08990835 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08990836 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08990837 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08990838 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08990839 789.99426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08990840 789.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08990841 789.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08990842 789.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08990843 789.99432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08990844 789.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08990845 789.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08990846 789.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08990847 789.99438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08990848 789.99444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08990849 789.99444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08990850 789.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08990851 789.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08990852 789.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08990853 789.99450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08990854 789.99456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08990855 789.99456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08990856 789.99456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08990857 789.99456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08990858 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08990859 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08990860 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08990861 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08990862 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08990863 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08990864 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08990865 789.99462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08990866 789.99468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08990867 789.99468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08990868 789.99468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08990869 789.99468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08990870 789.99475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08990871 789.99475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08990872 789.99481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08990873 789.99481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08990874 789.99481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08990875 789.99481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08990876 789.99487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08990877 789.99487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08990878 789.99487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08990879 789.99487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08990880 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08990881 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08990882 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08990883 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08990884 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08990885 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08990886 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08990887 789.99493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08990888 789.99499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08990889 789.99499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08990890 789.99499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08990891 789.99505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08990892 789.99505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08990893 789.99505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08990894 789.99511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08990895 789.99511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08990896 789.99511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08990897 789.99511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08990898 789.99517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08990899 789.99517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08990900 789.99517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08990901 789.99517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08990902 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08990903 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08990904 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08990905 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08990906 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08990907 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08990908 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08990909 789.99523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08990910 789.99530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08990911 789.99530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08990912 789.99536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08990913 789.99536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08990914 789.99536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08990915 789.99536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08990916 789.99542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08990917 789.99542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08990918 789.99542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08990919 789.99542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08990920 789.99548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08990921 789.99548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08990922 789.99548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08990923 789.99548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08990924 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08990925 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08990926 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08990927 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08990928 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08990929 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08990930 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08990931 789.99554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08990932 789.99560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08990933 789.99560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08990934 789.99566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08990935 789.99566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08990936 789.99566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08990937 789.99566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08990938 789.99572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08990939 789.99572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08990940 789.99572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08990941 789.99572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08990942 789.99578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08990943 789.99578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08990944 789.99578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08990945 789.99578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08990946 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08990947 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08990948 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08990949 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08990950 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08990951 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08990952 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08990953 789.99584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08990954 789.99591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08990955 789.99591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08990956 789.99597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08990957 789.99597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08990958 789.99597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08990959 789.99597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08990960 789.99603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08990961 789.99603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08990962 789.99603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08990963 789.99603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08990964 789.99609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08990965 789.99609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08990966 789.99609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08990967 789.99609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08990968 789.99615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08990969 789.99615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08990970 789.99615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08990971 789.99615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08990972 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08990973 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08990974 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08990975 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08990976 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08990977 789.99621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08990978 789.99627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08990979 789.99627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08990980 789.99627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08990981 789.99627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08990982 789.99633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08990983 789.99633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08990984 789.99633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08990985 789.99633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08990986 789.99639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08990987 789.99639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08990988 789.99639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08990989 789.99639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08990990 789.99645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08990991 789.99645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08990992 789.99645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08990993 789.99645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08990994 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08990995 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08990996 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08990997 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08990998 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08990999 789.99652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08991000 789.99658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08991001 789.99658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08991002 789.99658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08991003 789.99658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08991004 789.99664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08991005 789.99664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08991006 789.99664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08991007 789.99664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08991008 789.99670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08991009 789.99670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08991010 789.99670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08991011 789.99670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08991012 789.99676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08991013 789.99676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08991014 789.99676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08991015 789.99676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08991016 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08991017 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08991018 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08991019 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08991020 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08991021 789.99682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08991022 789.99688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08991023 789.99688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08991024 789.99688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08991025 789.99688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08991026 789.99694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08991027 789.99694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08991028 789.99694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08991029 789.99694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08991030 789.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08991031 789.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08991032 789.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08991033 789.99700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08991034 789.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08991035 789.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08991036 789.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08991037 789.99707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08991038 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08991039 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08991040 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08991041 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08991042 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08991043 789.99713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08991044 789.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08991045 789.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08991046 789.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08991047 789.99719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08991048 789.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08991049 789.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08991050 789.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08991051 789.99725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08991052 789.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08991053 789.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08991054 789.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08991055 789.99731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08991056 789.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08991057 789.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08991058 789.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08991059 789.99737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08991060 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08991061 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08991062 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08991063 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08991064 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08991065 789.99743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08991066 789.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08991067 789.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08991068 789.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08991069 789.99749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08991070 789.99755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08991071 789.99755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08991072 789.99755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08991073 789.99755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08991074 789.99761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08991075 789.99761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08991076 789.99761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08991077 789.99761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08991078 789.99768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08991079 789.99768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08991080 789.99768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08991081 789.99774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08991082 789.99774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08991083 789.99774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08991084 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08991085 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08991086 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08991087 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08991088 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08991089 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08991090 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08991091 789.99780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08991092 789.99786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08991093 789.99786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08991094 789.99786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08991095 789.99786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08991096 789.99792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08991097 789.99792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08991098 789.99792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08991099 789.99792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08991100 789.99798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08991101 789.99798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08991102 789.99798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08991103 789.99804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08991104 789.99804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08991105 789.99804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08991106 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08991107 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08991108 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08991109 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08991110 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08991111 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08991112 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08991113 789.99810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08991114 789.99816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08991115 789.99816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08991116 789.99816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08991117 789.99816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08991118 789.99822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08991119 789.99822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08991120 789.99822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08991121 789.99822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08991122 789.99829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08991123 789.99829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08991124 789.99829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08991125 789.99829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08991126 789.99835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08991127 789.99835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08991128 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08991129 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08991130 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08991131 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08991132 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08991133 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08991134 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08991135 789.99841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08991136 789.99847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08991137 789.99847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08991138 789.99847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08991139 789.99847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08991140 789.99853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08991141 789.99853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08991142 789.99853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08991143 789.99853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08991144 789.99859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08991145 789.99859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08991146 789.99859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08991147 789.99865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08991148 789.99865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08991149 789.99865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08991150 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08991151 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08991152 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08991153 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08991154 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08991155 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08991156 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08991157 789.99871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08991158 789.99877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08991159 789.99877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08991160 789.99877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08991161 789.99877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08991162 789.99884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08991163 789.99884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08991164 789.99884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08991165 789.99884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08991166 789.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08991167 789.99890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08991168 789.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08991169 789.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08991170 789.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08991171 789.99896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08991172 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08991173 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08991174 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08991175 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08991176 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08991177 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08991178 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08991179 789.99902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08991180 789.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08991181 789.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08991182 789.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08991183 789.99908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08991184 789.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08991185 789.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08991186 789.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08991187 789.99914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08991188 789.99920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08991189 789.99920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08991190 789.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08991191 789.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08991192 789.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08991193 789.99926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08991194 789.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08991195 789.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08991196 789.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08991197 789.99932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08991198 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08991199 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08991200 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08991201 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08991202 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08991203 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08991204 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08991205 789.99938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08991206 789.99945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08991207 789.99945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08991208 789.99945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08991209 789.99945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08991210 789.99951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08991211 789.99951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08991212 789.99957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08991213 789.99957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08991214 789.99957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08991215 789.99957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08991216 789.99963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08991217 789.99963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08991218 789.99963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08991219 789.99963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08991220 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08991221 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08991222 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08991223 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08991224 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08991225 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08991226 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08991227 789.99969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08991228 789.99975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08991229 789.99975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08991230 789.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08991231 789.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08991232 789.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08991233 789.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08991234 789.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08991235 789.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08991236 789.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08991237 789.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08991238 789.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08991239 789.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08991240 789.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08991241 789.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08991242 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08991243 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08991244 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08991245 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08991246 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08991247 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08991248 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08991249 790.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08991250 790.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08991251 790.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08991252 790.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08991253 790.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08991254 790.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08991255 790.00012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08991256 790.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08991257 790.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08991258 790.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08991259 790.00018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08991260 790.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08991261 790.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08991262 790.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08991263 790.00024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08991264 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08991265 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08991266 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08991267 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08991268 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08991269 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08991270 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08991271 790.00030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08991272 790.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08991273 790.00036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08991274 790.00042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08991275 790.00042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08991276 790.00042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08991277 790.00042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08991278 790.00048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08991279 790.00048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08991280 790.00048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08991281 790.00048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08991282 790.00054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08991283 790.00054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08991284 790.00054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08991285 790.00054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08991286 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08991287 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08991288 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08991289 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08991290 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08991291 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08991292 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08991293 790.00061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08991294 790.00067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08991295 790.00067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08991296 790.00073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08991297 790.00073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08991298 790.00073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08991299 790.00073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08991300 790.00079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08991301 790.00079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08991302 790.00079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08991303 790.00079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08991304 790.00085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08991305 790.00085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08991306 790.00085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08991307 790.00085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08991308 790.00091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08991309 790.00091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08991310 790.00091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08991311 790.00091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08991312 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08991313 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08991314 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08991315 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08991316 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08991317 790.00097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08991318 790.00103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08991319 790.00103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08991320 790.00103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08991321 790.00103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08991322 790.00109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08991323 790.00109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08991324 790.00109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08991325 790.00109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08991326 790.00115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08991327 790.00115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08991328 790.00115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08991329 790.00115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08991330 790.00122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08991331 790.00122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08991332 790.00122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08991333 790.00122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08991334 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08991335 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08991336 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08991337 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08991338 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08991339 790.00128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08991340 790.00134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08991341 790.00134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08991342 790.00134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08991343 790.00134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08991344 790.00140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08991345 790.00140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08991346 790.00140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08991347 790.00140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08991348 790.00146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08991349 790.00146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08991350 790.00146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08991351 790.00146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08991352 790.00152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08991353 790.00152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08991354 790.00152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08991355 790.00152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08991356 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08991357 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08991358 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08991359 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08991360 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08991361 790.00158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08991362 790.00164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08991363 790.00164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08991364 790.00164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08991365 790.00164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08991366 790.00170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08991367 790.00170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08991368 790.00170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08991369 790.00170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08991370 790.00177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08991371 790.00177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08991372 790.00177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08991373 790.00177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08991374 790.00183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08991375 790.00183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08991376 790.00183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08991377 790.00183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08991378 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08991379 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08991380 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08991381 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08991382 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08991383 790.00189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08991384 790.00195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08991385 790.00195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08991386 790.00195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08991387 790.00195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08991388 790.00201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08991389 790.00201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08991390 790.00201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08991391 790.00201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08991392 790.00207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08991393 790.00207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08991394 790.00207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08991395 790.00207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08991396 790.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08991397 790.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08991398 790.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08991399 790.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08991400 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08991401 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08991402 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08991403 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08991404 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08991405 790.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08991406 790.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08991407 790.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08991408 790.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08991409 790.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08991410 790.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08991411 790.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08991412 790.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08991413 790.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08991414 790.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08991415 790.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08991416 790.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08991417 790.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08991418 790.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08991419 790.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08991420 790.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08991421 790.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08991422 790.00250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08991423 790.00250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08991424 790.00250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08991425 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08991426 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08991427 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08991428 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08991429 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08991430 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08991431 790.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08991432 790.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08991433 790.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08991434 790.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08991435 790.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08991436 790.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08991437 790.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08991438 790.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08991439 790.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08991440 790.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08991441 790.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08991442 790.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08991443 790.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08991444 790.00280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08991445 790.00280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08991446 790.00280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08991447 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08991448 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08991449 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08991450 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08991451 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08991452 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08991453 790.00286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08991454 790.00292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08991455 790.00292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08991456 790.00292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08991457 790.00292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08991458 790.00299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08991459 790.00299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08991460 790.00299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08991461 790.00299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08991462 790.00305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08991463 790.00305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08991464 790.00305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08991465 790.00305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08991466 790.00311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08991467 790.00311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08991468 790.00311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08991469 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08991470 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08991471 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08991472 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08991473 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08991474 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08991475 790.00317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08991476 790.00323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08991477 790.00323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08991478 790.00323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08991479 790.00323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08991480 790.00329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08991481 790.00329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08991482 790.00329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08991483 790.00329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08991484 790.00335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08991485 790.00335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08991486 790.00335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08991487 790.00335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08991488 790.00341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08991489 790.00341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08991490 790.00341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08991491 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08991492 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08991493 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08991494 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08991495 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08991496 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08991497 790.00347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08991498 790.00354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08991499 790.00354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08991500 790.00354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08991501 790.00354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08991502 790.00360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08991503 790.00360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08991504 790.00360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08991505 790.00360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08991506 790.00366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08991507 790.00366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08991508 790.00366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08991509 790.00366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08991510 790.00372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08991511 790.00372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08991512 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08991513 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08991514 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08991515 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08991516 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08991517 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08991518 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08991519 790.00378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08991520 790.00384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08991521 790.00384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08991522 790.00384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08991523 790.00384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08991524 790.00390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08991525 790.00390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08991526 790.00390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08991527 790.00390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08991528 790.00396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08991529 790.00396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08991530 790.00396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08991531 790.00396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08991532 790.00402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08991533 790.00402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08991534 790.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08991535 790.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08991536 790.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08991537 790.00408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08991538 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08991539 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08991540 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08991541 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08991542 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08991543 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08991544 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08991545 790.00415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08991546 790.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08991547 790.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08991548 790.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08991549 790.00421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08991550 790.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08991551 790.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08991552 790.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08991553 790.00427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08991554 790.00433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08991555 790.00433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08991556 790.00439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08991557 790.00439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08991558 790.00439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08991559 790.00439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08991560 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08991561 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08991562 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08991563 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08991564 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08991565 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08991566 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08991567 790.00445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08991568 790.00451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08991569 790.00451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08991570 790.00451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08991571 790.00451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08991572 790.00457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08991573 790.00457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08991574 790.00457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08991575 790.00463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08991576 790.00463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08991577 790.00463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08991578 790.00469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08991579 790.00469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08991580 790.00469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08991581 790.00469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08991582 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08991583 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08991584 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08991585 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08991586 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08991587 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08991588 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08991589 790.00476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08991590 790.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08991591 790.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08991592 790.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08991593 790.00482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08991594 790.00488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08991595 790.00488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08991596 790.00488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08991597 790.00494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08991598 790.00494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08991599 790.00494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08991600 790.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08991601 790.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08991602 790.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08991603 790.00500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08991604 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08991605 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08991606 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08991607 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08991608 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08991609 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08991610 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08991611 790.00506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08991612 790.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08991613 790.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08991614 790.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08991615 790.00512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08991616 790.00518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08991617 790.00518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08991618 790.00518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08991619 790.00518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08991620 790.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08991621 790.00524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08991622 790.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08991623 790.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08991624 790.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08991625 790.00531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08991626 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08991627 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08991628 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08991629 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08991630 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08991631 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08991632 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08991633 790.00537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08991634 790.00543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08991635 790.00543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08991636 790.00543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08991637 790.00543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08991638 790.00549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08991639 790.00549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08991640 790.00549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08991641 790.00549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08991642 790.00555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08991643 790.00555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08991644 790.00561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08991645 790.00561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08991646 790.00561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08991647 790.00561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08991648 790.00567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08991649 790.00567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08991650 790.00567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08991651 790.00567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08991652 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08991653 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08991654 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08991655 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08991656 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08991657 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08991658 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08991659 790.00573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08991660 790.00579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08991661 790.00579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08991662 790.00579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08991663 790.00585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08991664 790.00585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08991665 790.00585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08991666 790.00592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08991667 790.00592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08991668 790.00592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08991669 790.00592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08991670 790.00598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08991671 790.00598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08991672 790.00598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08991673 790.00598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08991674 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08991675 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08991676 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08991677 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08991678 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08991679 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08991680 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08991681 790.00604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08991682 790.00610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08991683 790.00610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08991684 790.00610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08991685 790.00610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08991686 790.00616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08991687 790.00616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08991688 790.00622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08991689 790.00622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08991690 790.00622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08991691 790.00622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08991692 790.00628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08991693 790.00628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08991694 790.00628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08991695 790.00628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08991696 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08991697 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08991698 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08991699 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08991700 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08991701 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08991702 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08991703 790.00634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08991704 790.00640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08991705 790.00640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08991706 790.00640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08991707 790.00640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08991708 790.00646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08991709 790.00646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08991710 790.00653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08991711 790.00653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08991712 790.00653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08991713 790.00653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08991714 790.00659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08991715 790.00659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08991716 790.00659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08991717 790.00659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08991718 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08991719 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08991720 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08991721 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08991722 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08991723 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08991724 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08991725 790.00665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08991726 790.00671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08991727 790.00671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08991728 790.00671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08991729 790.00677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08991730 790.00677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08991731 790.00677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08991732 790.00683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08991733 790.00683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08991734 790.00683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08991735 790.00683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08991736 790.00689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08991737 790.00689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08991738 790.00689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08991739 790.00689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08991740 790.00695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08991741 790.00695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08991742 790.00695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08991743 790.00695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08991744 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08991745 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08991746 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08991747 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08991748 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08991749 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08991750 790.00701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08991751 790.00708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08991752 790.00708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08991753 790.00708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08991754 790.00714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08991755 790.00714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08991756 790.00714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08991757 790.00714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08991758 790.00720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08991759 790.00720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08991760 790.00720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08991761 790.00720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08991762 790.00726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08991763 790.00726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08991764 790.00726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08991765 790.00726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08991766 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08991767 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08991768 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08991769 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08991770 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08991771 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08991772 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08991773 790.00732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08991774 790.00738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08991775 790.00738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08991776 790.00744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08991777 790.00744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08991778 790.00744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08991779 790.00744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08991780 790.00750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08991781 790.00750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08991782 790.00750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08991783 790.00750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08991784 790.00756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08991785 790.00756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08991786 790.00756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08991787 790.00756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08991788 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08991789 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08991790 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08991791 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08991792 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08991793 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08991794 790.00762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08991795 790.00769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08991796 790.00769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08991797 790.00769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08991798 790.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08991799 790.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08991800 790.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08991801 790.00775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08991802 790.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08991803 790.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08991804 790.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08991805 790.00781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08991806 790.00787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08991807 790.00787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08991808 790.00787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08991809 790.00787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08991810 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08991811 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08991812 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08991813 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08991814 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08991815 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08991816 790.00793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08991817 790.00799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08991818 790.00799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08991819 790.00799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08991820 790.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08991821 790.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08991822 790.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08991823 790.00805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08991824 790.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08991825 790.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08991826 790.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08991827 790.00811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08991828 790.00817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08991829 790.00817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08991830 790.00817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08991831 790.00817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08991832 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08991833 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08991834 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08991835 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08991836 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08991837 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08991838 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08991839 790.00823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08991840 790.00830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08991841 790.00830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08991842 790.00836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08991843 790.00836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08991844 790.00836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08991845 790.00836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08991846 790.00842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08991847 790.00842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08991848 790.00842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08991849 790.00842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08991850 790.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08991851 790.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08991852 790.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08991853 790.00848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08991854 790.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08991855 790.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08991856 790.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08991857 790.00854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08991858 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08991859 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08991860 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08991861 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08991862 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08991863 790.00860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08991864 790.00866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08991865 790.00866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08991866 790.00866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08991867 790.00866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08991868 790.00872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08991869 790.00872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08991870 790.00872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08991871 790.00872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08991872 790.00878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08991873 790.00878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08991874 790.00878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08991875 790.00878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08991876 790.00885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08991877 790.00885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08991878 790.00885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08991879 790.00885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08991880 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08991881 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08991882 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08991883 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08991884 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08991885 790.00891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08991886 790.00897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08991887 790.00897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08991888 790.00897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08991889 790.00897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08991890 790.00903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08991891 790.00903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08991892 790.00903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08991893 790.00903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08991894 790.00909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08991895 790.00909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08991896 790.00909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08991897 790.00909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08991898 790.00915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08991899 790.00915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08991900 790.00915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08991901 790.00915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08991902 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08991903 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08991904 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08991905 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08991906 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08991907 790.00921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08991908 790.00927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08991909 790.00927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08991910 790.00927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08991911 790.00927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08991912 790.00933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08991913 790.00933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08991914 790.00933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08991915 790.00933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08991916 790.00939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08991917 790.00939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08991918 790.00939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08991919 790.00939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08991920 790.00946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08991921 790.00946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08991922 790.00946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08991923 790.00946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08991924 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08991925 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08991926 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08991927 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08991928 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08991929 790.00952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08991930 790.00958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08991931 790.00958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08991932 790.00958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08991933 790.00958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08991934 790.00964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08991935 790.00964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08991936 790.00964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08991937 790.00964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08991938 790.00970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08991939 790.00970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08991940 790.00970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08991941 790.00970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08991942 790.00976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08991943 790.00976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08991944 790.00976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08991945 790.00976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08991946 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08991947 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08991948 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08991949 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08991950 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08991951 790.00982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08991952 790.00988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08991953 790.00988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08991954 790.00988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08991955 790.00988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08991956 790.00994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08991957 790.00994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08991958 790.00994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08991959 790.00994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08991960 790.01000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08991961 790.01000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08991962 790.01000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08991963 790.01000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08991964 790.01007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08991965 790.01007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08991966 790.01007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08991967 790.01007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08991968 790.01013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08991969 790.01013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08991970 790.01013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08991971 790.01013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08991972 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08991973 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08991974 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08991975 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08991976 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08991977 790.01019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08991978 790.01025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08991979 790.01025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08991980 790.01025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08991981 790.01025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08991982 790.01031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08991983 790.01031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08991984 790.01031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08991985 790.01031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08991986 790.01037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08991987 790.01037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08991988 790.01037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08991989 790.01037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08991990 790.01043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08991991 790.01043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08991992 790.01043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08991993 790.01043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08991994 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08991995 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08991996 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08991997 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08991998 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08991999 790.01049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08992000 790.01055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08992001 790.01055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08992002 790.01055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08992003 790.01055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08992004 790.01062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08992005 790.01062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08992006 790.01062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08992007 790.01062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08992008 790.01068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08992009 790.01068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08992010 790.01068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08992011 790.01068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08992012 790.01074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08992013 790.01074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08992014 790.01074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08992015 790.01074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08992016 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08992017 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08992018 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08992019 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08992020 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08992021 790.01080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08992022 790.01086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08992023 790.01086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08992024 790.01086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08992025 790.01086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08992026 790.01092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08992027 790.01092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08992028 790.01092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08992029 790.01092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08992030 790.01098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08992031 790.01098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08992032 790.01098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08992033 790.01098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08992034 790.01104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08992035 790.01104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08992036 790.01104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08992037 790.01104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08992038 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08992039 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08992040 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08992041 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08992042 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08992043 790.01110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08992044 790.01116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08992045 790.01116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08992046 790.01116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08992047 790.01116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08992048 790.01123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08992049 790.01123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08992050 790.01123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08992051 790.01123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08992052 790.01129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08992053 790.01129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08992054 790.01129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08992055 790.01129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08992056 790.01135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08992057 790.01135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08992058 790.01135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08992059 790.01135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08992060 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08992061 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08992062 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08992063 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08992064 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08992065 790.01141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08992066 790.01147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08992067 790.01147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08992068 790.01147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08992069 790.01147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08992070 790.01153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08992071 790.01153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08992072 790.01153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08992073 790.01153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08992074 790.01159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08992075 790.01159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08992076 790.01159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08992077 790.01159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08992078 790.01165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08992079 790.01165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08992080 790.01165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08992081 790.01165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08992082 790.01171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08992083 790.01171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08992084 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08992085 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08992086 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08992087 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08992088 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08992089 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08992090 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08992091 790.01177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08992092 790.01184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08992093 790.01184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08992094 790.01184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08992095 790.01184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08992096 790.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08992097 790.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08992098 790.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08992099 790.01190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08992100 790.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08992101 790.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08992102 790.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08992103 790.01196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08992104 790.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08992105 790.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08992106 790.01202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08992107 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08992108 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08992109 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08992110 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08992111 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08992112 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08992113 790.01208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08992114 790.01214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08992115 790.01214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08992116 790.01214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08992117 790.01214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08992118 790.01220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08992119 790.01220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08992120 790.01220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08992121 790.01220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08992122 790.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08992123 790.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08992124 790.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08992125 790.01226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08992126 790.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08992127 790.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08992128 790.01232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08992129 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08992130 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08992131 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08992132 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08992133 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08992134 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08992135 790.01239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08992136 790.01245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08992137 790.01245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08992138 790.01245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08992139 790.01245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08992140 790.01251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08992141 790.01251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08992142 790.01251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08992143 790.01251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08992144 790.01257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08992145 790.01257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08992146 790.01257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08992147 790.01257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08992148 790.01263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08992149 790.01263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08992150 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08992151 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08992152 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08992153 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08992154 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08992155 790.01269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08992156 790.01275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08992157 790.01275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08992158 790.01275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08992159 790.01281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08992160 790.01281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08992161 790.01281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08992162 790.01287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08992163 790.01287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08992164 790.01287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08992165 790.01287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08992166 790.01293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08992167 790.01293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08992168 790.01293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08992169 790.01293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08992170 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08992171 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08992172 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08992173 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08992174 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08992175 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08992176 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08992177 790.01300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08992178 790.01306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08992179 790.01306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08992180 790.01312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08992181 790.01312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08992182 790.01312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08992183 790.01312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08992184 790.01318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08992185 790.01318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08992186 790.01318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08992187 790.01318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08992188 790.01324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08992189 790.01324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08992190 790.01324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08992191 790.01324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08992192 790.01330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08992193 790.01330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08992194 790.01330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08992195 790.01330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08992196 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08992197 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08992198 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08992199 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08992200 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08992201 790.01336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08992202 790.01342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08992203 790.01342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08992204 790.01342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08992205 790.01342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08992206 790.01348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08992207 790.01348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08992208 790.01348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08992209 790.01348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08992210 790.01354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08992211 790.01354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08992212 790.01354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08992213 790.01354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08992214 790.01361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08992215 790.01361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08992216 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08992217 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08992218 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08992219 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08992220 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08992221 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08992222 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08992223 790.01367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08992224 790.01373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08992225 790.01373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08992226 790.01373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08992227 790.01373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08992228 790.01379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08992229 790.01379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08992230 790.01379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08992231 790.01379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08992232 790.01385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08992233 790.01385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08992234 790.01385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08992235 790.01385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08992236 790.01391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08992237 790.01391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08992238 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08992239 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08992240 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08992241 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08992242 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08992243 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08992244 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08992245 790.01397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08992246 790.01403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08992247 790.01403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08992248 790.01403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08992249 790.01403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08992250 790.01409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08992251 790.01409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08992252 790.01409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08992253 790.01409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08992254 790.01416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08992255 790.01416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08992256 790.01416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08992257 790.01416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08992258 790.01422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08992259 790.01422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08992260 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08992261 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08992262 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08992263 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08992264 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08992265 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08992266 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08992267 790.01428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08992268 790.01434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08992269 790.01434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08992270 790.01434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08992271 790.01434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08992272 790.01440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08992273 790.01440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08992274 790.01440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08992275 790.01440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08992276 790.01446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08992277 790.01446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08992278 790.01446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08992279 790.01446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08992280 790.01452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08992281 790.01452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08992282 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08992283 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08992284 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08992285 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08992286 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08992287 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08992288 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08992289 790.01458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08992290 790.01464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08992291 790.01464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08992292 790.01470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08992293 790.01470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08992294 790.01470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08992295 790.01470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08992296 790.01477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08992297 790.01477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08992298 790.01483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08992299 790.01483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08992300 790.01483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08992301 790.01483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08992302 790.01489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08992303 790.01489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08992304 790.01489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08992305 790.01489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08992306 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08992307 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08992308 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08992309 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08992310 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08992311 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08992312 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08992313 790.01495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08992314 790.01501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08992315 790.01501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08992316 790.01501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08992317 790.01501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08992318 790.01507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08992319 790.01507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08992320 790.01513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08992321 790.01513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08992322 790.01513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08992323 790.01513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08992324 790.01519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08992325 790.01519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08992326 790.01519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08992327 790.01519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08992328 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08992329 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08992330 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08992331 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08992332 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08992333 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08992334 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08992335 790.01525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08992336 790.01531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08992337 790.01531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08992338 790.01531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08992339 790.01538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08992340 790.01538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08992341 790.01538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08992342 790.01544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08992343 790.01544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08992344 790.01544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08992345 790.01544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08992346 790.01550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08992347 790.01550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08992348 790.01550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08992349 790.01550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08992350 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08992351 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08992352 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08992353 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08992354 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08992355 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08992356 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08992357 790.01556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08992358 790.01562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08992359 790.01562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08992360 790.01562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08992361 790.01568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08992362 790.01568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08992363 790.01568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08992364 790.01574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08992365 790.01574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08992366 790.01574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08992367 790.01574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08992368 790.01580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08992369 790.01580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08992370 790.01580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08992371 790.01580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08992372 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08992373 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08992374 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08992375 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08992376 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08992377 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08992378 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08992379 790.01586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08992380 790.01593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08992381 790.01593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08992382 790.01593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08992383 790.01599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08992384 790.01599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08992385 790.01599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08992386 790.01605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08992387 790.01605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08992388 790.01605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08992389 790.01605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08992390 790.01611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08992391 790.01611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08992392 790.01611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08992393 790.01611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08992394 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08992395 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08992396 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08992397 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08992398 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08992399 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08992400 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08992401 790.01617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08992402 790.01623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08992403 790.01623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08992404 790.01623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08992405 790.01629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08992406 790.01629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08992407 790.01629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08992408 790.01635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08992409 790.01635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08992410 790.01635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08992411 790.01635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08992412 790.01641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08992413 790.01641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08992414 790.01641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08992415 790.01641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08992416 790.01647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08992417 790.01647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08992418 790.01647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08992419 790.01647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08992420 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08992421 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08992422 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08992423 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08992424 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08992425 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08992426 790.01654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08992427 790.01660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08992428 790.01660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08992429 790.01660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08992430 790.01666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08992431 790.01666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08992432 790.01666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08992433 790.01666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08992434 790.01672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08992435 790.01672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08992436 790.01672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08992437 790.01672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08992438 790.01678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08992439 790.01678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08992440 790.01678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08992441 790.01678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08992442 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08992443 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08992444 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08992445 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08992446 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08992447 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08992448 790.01684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08992449 790.01690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08992450 790.01690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08992451 790.01690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08992452 790.01696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08992453 790.01696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08992454 790.01696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08992455 790.01696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08992456 790.01702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08992457 790.01702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08992458 790.01702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08992459 790.01702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08992460 790.01708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08992461 790.01708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08992462 790.01708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08992463 790.01708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08992464 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08992465 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08992466 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08992467 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08992468 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08992469 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08992470 790.01715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08992471 790.01721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08992472 790.01721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08992473 790.01721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08992474 790.01727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08992475 790.01727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08992476 790.01727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08992477 790.01727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08992478 790.01733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08992479 790.01733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08992480 790.01733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08992481 790.01733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08992482 790.01739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08992483 790.01739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08992484 790.01739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08992485 790.01739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08992486 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08992487 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08992488 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08992489 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08992490 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08992491 790.01745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08992492 790.01751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08992493 790.01751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08992494 790.01751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08992495 790.01751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08992496 790.01757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08992497 790.01757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08992498 790.01757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08992499 790.01757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08992500 790.01763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08992501 790.01763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08992502 790.01763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08992503 790.01763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08992504 790.01770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08992505 790.01770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08992506 790.01770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08992507 790.01770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08992508 790.01776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08992509 790.01776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08992510 790.01776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08992511 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08992512 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08992513 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08992514 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08992515 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08992516 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08992517 790.01782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08992518 790.01788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08992519 790.01788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08992520 790.01788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08992521 790.01788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08992522 790.01794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08992523 790.01794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08992524 790.01794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08992525 790.01794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08992526 790.01800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08992527 790.01800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08992528 790.01800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08992529 790.01800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08992530 790.01806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08992531 790.01806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08992532 790.01806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08992533 790.01806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08992534 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08992535 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08992536 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08992537 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08992538 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08992539 790.01812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08992540 790.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08992541 790.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08992542 790.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08992543 790.01818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08992544 790.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08992545 790.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08992546 790.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08992547 790.01824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08992548 790.01831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08992549 790.01831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08992550 790.01831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08992551 790.01831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08992552 790.01837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08992553 790.01837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08992554 790.01837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08992555 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08992556 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08992557 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08992558 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08992559 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08992560 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08992561 790.01843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08992562 790.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08992563 790.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08992564 790.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08992565 790.01849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08992566 790.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08992567 790.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08992568 790.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08992569 790.01855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08992570 790.01861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08992571 790.01861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08992572 790.01861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08992573 790.01861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08992574 790.01867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08992575 790.01867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08992576 790.01867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08992577 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08992578 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08992579 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08992580 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08992581 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08992582 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08992583 790.01873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08992584 790.01879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08992585 790.01879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08992586 790.01879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08992587 790.01879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08992588 790.01885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08992589 790.01885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08992590 790.01885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08992591 790.01885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08992592 790.01892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08992593 790.01892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08992594 790.01892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08992595 790.01892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08992596 790.01898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08992597 790.01898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08992598 790.01898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08992599 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08992600 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08992601 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08992602 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08992603 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08992604 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08992605 790.01904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08992606 790.01910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08992607 790.01910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08992608 790.01910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08992609 790.01910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08992610 790.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08992611 790.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08992612 790.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08992613 790.01916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08992614 790.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08992615 790.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08992616 790.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08992617 790.01922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08992618 790.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08992619 790.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08992620 790.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08992621 790.01928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08992622 790.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08992623 790.01934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08992624 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08992625 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08992626 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08992627 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08992628 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08992629 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08992630 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08992631 790.01940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08992632 790.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08992633 790.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08992634 790.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08992635 790.01947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08992636 790.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08992637 790.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08992638 790.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08992639 790.01953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08992640 790.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08992641 790.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08992642 790.01959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08992643 790.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08992644 790.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08992645 790.01965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08992646 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08992647 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08992648 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08992649 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08992650 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08992651 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08992652 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08992653 790.01971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08992654 790.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08992655 790.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08992656 790.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08992657 790.01977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08992658 790.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08992659 790.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08992660 790.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08992661 790.01983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08992662 790.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08992663 790.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08992664 790.01989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08992665 790.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08992666 790.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08992667 790.01995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08992668 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08992669 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08992670 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08992671 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08992672 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08992673 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08992674 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08992675 790.02001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08992676 790.02008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08992677 790.02008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08992678 790.02008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08992679 790.02008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08992680 790.02014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08992681 790.02014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08992682 790.02014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08992683 790.02014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08992684 790.02020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08992685 790.02020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08992686 790.02020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08992687 790.02026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08992688 790.02026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08992689 790.02026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08992690 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08992691 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08992692 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08992693 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08992694 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08992695 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08992696 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08992697 790.02032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08992698 790.02038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08992699 790.02038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08992700 790.02038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08992701 790.02038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08992702 790.02044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08992703 790.02044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08992704 790.02044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08992705 790.02044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08992706 790.02050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08992707 790.02050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08992708 790.02050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08992709 790.02056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08992710 790.02056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08992711 790.02056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08992712 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08992713 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08992714 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08992715 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08992716 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08992717 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08992718 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08992719 790.02062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08992720 790.02069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08992721 790.02069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08992722 790.02069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08992723 790.02069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08992724 790.02075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08992725 790.02075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08992726 790.02075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08992727 790.02075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08992728 790.02081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08992729 790.02081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08992730 790.02081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08992731 790.02087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08992732 790.02087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08992733 790.02087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08992734 790.02093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08992735 790.02093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08992736 790.02093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08992737 790.02093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08992738 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08992739 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08992740 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08992741 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08992742 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08992743 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08992744 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08992745 790.02099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08992746 790.02105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08992747 790.02105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08992748 790.02105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08992749 790.02105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08992750 790.02111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08992751 790.02111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08992752 790.02111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08992753 790.02111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08992754 790.02117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08992755 790.02117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08992756 790.02124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08992757 790.02124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08992758 790.02124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08992759 790.02124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08992760 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08992761 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08992762 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08992763 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08992764 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08992765 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08992766 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08992767 790.02130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08992768 790.02136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08992769 790.02136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08992770 790.02136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08992771 790.02136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08992772 790.02142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08992773 790.02142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08992774 790.02142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08992775 790.02142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08992776 790.02148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08992777 790.02148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08992778 790.02154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08992779 790.02154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08992780 790.02154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08992781 790.02154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08992782 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08992783 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08992784 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08992785 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08992786 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08992787 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08992788 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08992789 790.02160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08992790 790.02166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08992791 790.02166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08992792 790.02166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08992793 790.02166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08992794 790.02172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08992795 790.02172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08992796 790.02172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08992797 790.02172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08992798 790.02178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08992799 790.02178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08992800 790.02185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08992801 790.02185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08992802 790.02185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08992803 790.02185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08992804 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08992805 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08992806 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08992807 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08992808 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08992809 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08992810 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08992811 790.02191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08992812 790.02197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08992813 790.02197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08992814 790.02197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08992815 790.02197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08992816 790.02203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08992817 790.02203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08992818 790.02203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08992819 790.02203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08992820 790.02209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08992821 790.02209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08992822 790.02215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08992823 790.02215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08992824 790.02215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08992825 790.02215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08992826 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08992827 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08992828 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08992829 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08992830 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08992831 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08992832 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08992833 790.02221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08992834 790.02227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08992835 790.02227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08992836 790.02227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08992837 790.02227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08992838 790.02233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08992839 790.02233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08992840 790.02233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08992841 790.02233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08992842 790.02239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08992843 790.02239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08992844 790.02246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08992845 790.02246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08992846 790.02246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08992847 790.02246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08992848 790.02252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08992849 790.02252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08992850 790.02252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08992851 790.02252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08992852 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08992853 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08992854 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08992855 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08992856 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08992857 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08992858 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08992859 790.02258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08992860 790.02264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08992861 790.02264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08992862 790.02264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08992863 790.02264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08992864 790.02270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08992865 790.02270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08992866 790.02276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08992867 790.02276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08992868 790.02276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08992869 790.02276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08992870 790.02282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08992871 790.02282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08992872 790.02282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08992873 790.02282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08992874 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08992875 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08992876 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08992877 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08992878 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08992879 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08992880 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08992881 790.02288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08992882 790.02294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08992883 790.02294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08992884 790.02294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08992885 790.02294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08992886 790.02301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08992887 790.02301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08992888 790.02307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08992889 790.02307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08992890 790.02307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08992891 790.02307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08992892 790.02313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08992893 790.02313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08992894 790.02313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08992895 790.02313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08992896 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08992897 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08992898 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08992899 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08992900 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08992901 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08992902 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08992903 790.02319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08992904 790.02325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08992905 790.02325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08992906 790.02325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08992907 790.02325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08992908 790.02331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08992909 790.02331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08992910 790.02337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08992911 790.02337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08992912 790.02337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08992913 790.02337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08992914 790.02343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08992915 790.02343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08992916 790.02343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08992917 790.02343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08992918 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08992919 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08992920 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08992921 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08992922 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08992923 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08992924 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08992925 790.02349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08992926 790.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08992927 790.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08992928 790.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08992929 790.02355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08992930 790.02362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08992931 790.02362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08992932 790.02368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08992933 790.02368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08992934 790.02368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08992935 790.02368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08992936 790.02374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08992937 790.02374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08992938 790.02374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08992939 790.02374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08992940 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08992941 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08992942 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08992943 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08992944 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08992945 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08992946 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08992947 790.02380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08992948 790.02386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08992949 790.02386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08992950 790.02386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08992951 790.02386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08992952 790.02392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08992953 790.02392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08992954 790.02398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08992955 790.02398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08992956 790.02398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08992957 790.02398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08992958 790.02404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08992959 790.02404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08992960 790.02404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08992961 790.02404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08992962 790.02410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08992963 790.02410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08992964 790.02410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08992965 790.02410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08992966 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08992967 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08992968 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08992969 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08992970 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08992971 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08992972 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08992973 790.02416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08992974 790.02423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08992975 790.02423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08992976 790.02429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08992977 790.02429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08992978 790.02429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08992979 790.02429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08992980 790.02435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08992981 790.02435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08992982 790.02435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08992983 790.02435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08992984 790.02441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08992985 790.02441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08992986 790.02441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08992987 790.02441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08992988 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08992989 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08992990 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08992991 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08992992 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08992993 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08992994 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08992995 790.02447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08992996 790.02453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08992997 790.02453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08992998 790.02459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08992999 790.02459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08993000 790.02459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08993001 790.02459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08993002 790.02465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08993003 790.02465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08993004 790.02465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08993005 790.02465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08993006 790.02471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08993007 790.02471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08993008 790.02471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08993009 790.02471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08993010 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08993011 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08993012 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08993013 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08993014 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08993015 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08993016 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08993017 790.02478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08993018 790.02484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08993019 790.02484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08993020 790.02490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08993021 790.02490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08993022 790.02490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08993023 790.02490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08993024 790.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08993025 790.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08993026 790.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08993027 790.02496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08993028 790.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08993029 790.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08993030 790.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08993031 790.02502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08993032 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08993033 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08993034 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08993035 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08993036 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08993037 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08993038 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08993039 790.02508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08993040 790.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08993041 790.02514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08993042 790.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08993043 790.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08993044 790.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08993045 790.02520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08993046 790.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08993047 790.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08993048 790.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08993049 790.02526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08993050 790.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08993051 790.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08993052 790.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08993053 790.02532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08993054 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08993055 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08993056 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08993057 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08993058 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08993059 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08993060 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08993061 790.02539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08993062 790.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08993063 790.02545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08993064 790.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08993065 790.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08993066 790.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08993067 790.02551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08993068 790.02557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08993069 790.02557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08993070 790.02557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08993071 790.02557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08993072 790.02563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08993073 790.02563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08993074 790.02563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08993075 790.02563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08993076 790.02569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08993077 790.02569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08993078 790.02569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08993079 790.02569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08993080 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08993081 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08993082 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08993083 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08993084 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08993085 790.02575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08993086 790.02581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08993087 790.02581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08993088 790.02581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08993089 790.02581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08993090 790.02587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08993091 790.02587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08993092 790.02587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08993093 790.02587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08993094 790.02593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08993095 790.02593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08993096 790.02593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08993097 790.02593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08993098 790.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08993099 790.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08993100 790.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08993101 790.02600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08993102 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08993103 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08993104 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08993105 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08993106 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08993107 790.02606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08993108 790.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08993109 790.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08993110 790.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08993111 790.02612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08993112 790.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08993113 790.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08993114 790.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08993115 790.02618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08993116 790.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08993117 790.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08993118 790.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08993119 790.02624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08993120 790.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08993121 790.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08993122 790.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08993123 790.02630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08993124 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08993125 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08993126 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08993127 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08993128 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08993129 790.02636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08993130 790.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08993131 790.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08993132 790.02642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08993133 790.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08993134 790.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08993135 790.02648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08993136 790.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08993137 790.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08993138 790.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08993139 790.02655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08993140 790.02661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08993141 790.02661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08993142 790.02661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08993143 790.02661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08993144 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08993145 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08993146 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08993147 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08993148 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08993149 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08993150 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08993151 790.02667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08993152 790.02673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08993153 790.02673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08993154 790.02673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08993155 790.02679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08993156 790.02679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08993157 790.02679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08993158 790.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08993159 790.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08993160 790.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08993161 790.02685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08993162 790.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08993163 790.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08993164 790.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08993165 790.02691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08993166 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08993167 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08993168 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08993169 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08993170 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08993171 790.02697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08993172 790.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08993173 790.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08993174 790.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08993175 790.02709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08993176 790.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08993177 790.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08993178 790.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08993179 790.02716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08993180 790.02722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08993181 790.02722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08993182 790.02722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08993183 790.02728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08993184 790.02728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08993185 790.02728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08993186 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08993187 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08993188 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08993189 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08993190 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08993191 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08993192 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08993193 790.02734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08993194 790.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08993195 790.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08993196 790.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08993197 790.02740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08993198 790.02746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08993199 790.02746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08993200 790.02746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08993201 790.02746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08993202 790.02752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08993203 790.02752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08993204 790.02752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08993205 790.02758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08993206 790.02758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08993207 790.02758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08993208 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08993209 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08993210 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08993211 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08993212 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08993213 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08993214 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08993215 790.02764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08993216 790.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08993217 790.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08993218 790.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08993219 790.02770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08993220 790.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08993221 790.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08993222 790.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08993223 790.02777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08993224 790.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08993225 790.02783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08993226 790.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08993227 790.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08993228 790.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08993229 790.02789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08993230 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08993231 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08993232 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08993233 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08993234 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08993235 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08993236 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08993237 790.02795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08993238 790.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08993239 790.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08993240 790.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08993241 790.02801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08993242 790.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08993243 790.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08993244 790.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08993245 790.02807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08993246 790.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08993247 790.02813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08993248 790.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08993249 790.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08993250 790.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08993251 790.02819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08993252 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08993253 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08993254 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08993255 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08993256 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08993257 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08993258 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08993259 790.02825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08993260 790.02832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08993261 790.02832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08993262 790.02832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08993263 790.02832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08993264 790.02838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08993265 790.02838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08993266 790.02838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08993267 790.02838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08993268 790.02844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08993269 790.02844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08993270 790.02850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08993271 790.02850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08993272 790.02850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08993273 790.02850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08993274 790.02856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08993275 790.02856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08993276 790.02856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08993277 790.02856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08993278 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08993279 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08993280 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08993281 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08993282 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08993283 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08993284 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08993285 790.02862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08993286 790.02868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08993287 790.02868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08993288 790.02868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08993289 790.02868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08993290 790.02874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08993291 790.02874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08993292 790.02880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08993293 790.02880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08993294 790.02880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08993295 790.02880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08993296 790.02886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08993297 790.02886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08993298 790.02886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08993299 790.02886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08993300 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08993301 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08993302 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08993303 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08993304 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08993305 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08993306 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08993307 790.02893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08993308 790.02899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08993309 790.02899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08993310 790.02899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08993311 790.02899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08993312 790.02905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08993313 790.02905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08993314 790.02911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08993315 790.02911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08993316 790.02911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08993317 790.02911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08993318 790.02917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08993319 790.02917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08993320 790.02917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08993321 790.02917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08993322 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08993323 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08993324 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08993325 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08993326 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08993327 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08993328 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08993329 790.02923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08993330 790.02929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08993331 790.02929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08993332 790.02929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08993333 790.02929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08993334 790.02935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08993335 790.02935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08993336 790.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08993337 790.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08993338 790.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08993339 790.02941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08993340 790.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08993341 790.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08993342 790.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08993343 790.02947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08993344 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08993345 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08993346 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08993347 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08993348 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08993349 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08993350 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08993351 790.02954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08993352 790.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08993353 790.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08993354 790.02960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08993355 790.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08993356 790.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08993357 790.02966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08993358 790.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08993359 790.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08993360 790.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08993361 790.02972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08993362 790.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08993363 790.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08993364 790.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08993365 790.02978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08993366 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08993367 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08993368 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08993369 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08993370 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08993371 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08993372 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08993373 790.02984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08993374 790.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08993375 790.02990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08993376 790.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08993377 790.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08993378 790.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08993379 790.02996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08993380 790.03002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08993381 790.03002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08993382 790.03002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08993383 790.03002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08993384 790.03009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08993385 790.03009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08993386 790.03009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08993387 790.03009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08993388 790.03015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08993389 790.03015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08993390 790.03015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08993391 790.03015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08993392 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08993393 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08993394 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08993395 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08993396 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08993397 790.03021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08993398 790.03027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08993399 790.03027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08993400 790.03027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08993401 790.03027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08993402 790.03033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08993403 790.03033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08993404 790.03033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08993405 790.03033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08993406 790.03039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08993407 790.03039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08993408 790.03039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08993409 790.03039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08993410 790.03045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08993411 790.03045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08993412 790.03045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08993413 790.03045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08993414 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08993415 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08993416 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08993417 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08993418 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08993419 790.03051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08993420 790.03057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08993421 790.03057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08993422 790.03057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08993423 790.03057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08993424 790.03063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08993425 790.03063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08993426 790.03063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08993427 790.03063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08993428 790.03070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08993429 790.03070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08993430 790.03070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08993431 790.03070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08993432 790.03076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08993433 790.03076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08993434 790.03076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08993435 790.03076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08993436 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08993437 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08993438 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08993439 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08993440 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08993441 790.03082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08993442 790.03088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08993443 790.03088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08993444 790.03088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08993445 790.03088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08993446 790.03094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08993447 790.03094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08993448 790.03094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08993449 790.03094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08993450 790.03100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08993451 790.03100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08993452 790.03100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08993453 790.03100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08993454 790.03106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08993455 790.03106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08993456 790.03106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08993457 790.03106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08993458 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08993459 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08993460 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08993461 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08993462 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08993463 790.03112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08993464 790.03118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08993465 790.03118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08993466 790.03118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08993467 790.03118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08993468 790.03125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08993469 790.03125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08993470 790.03125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08993471 790.03125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08993472 790.03131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08993473 790.03131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08993474 790.03131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08993475 790.03131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08993476 790.03137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08993477 790.03137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08993478 790.03137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08993479 790.03137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08993480 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08993481 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08993482 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08993483 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08993484 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08993485 790.03143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08993486 790.03149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08993487 790.03149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08993488 790.03149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08993489 790.03149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08993490 790.03155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08993491 790.03155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08993492 790.03155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08993493 790.03155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08993494 790.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08993495 790.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08993496 790.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08993497 790.03161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08993498 790.03167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08993499 790.03167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08993500 790.03167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08993501 790.03167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08993502 790.03173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08993503 790.03173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08993504 790.03173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08993505 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08993506 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08993507 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08993508 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08993509 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08993510 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08993511 790.03179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08993512 790.03186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08993513 790.03186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08993514 790.03186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08993515 790.03186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08993516 790.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08993517 790.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08993518 790.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08993519 790.03192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08993520 790.03198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08993521 790.03198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08993522 790.03198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08993523 790.03198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08993524 790.03204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08993525 790.03204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08993526 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08993527 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08993528 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08993529 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08993530 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08993531 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08993532 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08993533 790.03210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08993534 790.03216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08993535 790.03216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08993536 790.03216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08993537 790.03216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08993538 790.03222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08993539 790.03222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08993540 790.03222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08993541 790.03222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08993542 790.03228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08993543 790.03228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08993544 790.03228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08993545 790.03228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08993546 790.03234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08993547 790.03234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08993548 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08993549 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08993550 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08993551 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08993552 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08993553 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08993554 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08993555 790.03240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08993556 790.03247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08993557 790.03247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08993558 790.03247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08993559 790.03247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08993560 790.03253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08993561 790.03253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08993562 790.03253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08993563 790.03253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08993564 790.03259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08993565 790.03259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08993566 790.03259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08993567 790.03259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08993568 790.03265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08993569 790.03265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08993570 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08993571 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08993572 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08993573 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08993574 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08993575 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08993576 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08993577 790.03271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08993578 790.03277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08993579 790.03277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08993580 790.03277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08993581 790.03277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08993582 790.03283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08993583 790.03283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08993584 790.03283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08993585 790.03283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08993586 790.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08993587 790.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08993588 790.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08993589 790.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08993590 790.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08993591 790.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08993592 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08993593 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08993594 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08993595 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08993596 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08993597 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08993598 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08993599 790.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08993600 790.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08993601 790.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08993602 790.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08993603 790.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08993604 790.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08993605 790.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08993606 790.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08993607 790.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08993608 790.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08993609 790.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08993610 790.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08993611 790.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08993612 790.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08993613 790.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08993614 790.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08993615 790.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08993616 790.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08993617 790.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08993618 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08993619 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08993620 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08993621 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08993622 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08993623 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08993624 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08993625 790.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08993626 790.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08993627 790.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08993628 790.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08993629 790.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08993630 790.03350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08993631 790.03350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08993632 790.03350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08993633 790.03350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08993634 790.03356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08993635 790.03356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08993636 790.03363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08993637 790.03363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08993638 790.03363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08993639 790.03363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08993640 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08993641 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08993642 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08993643 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08993644 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08993645 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08993646 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08993647 790.03369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08993648 790.03375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08993649 790.03375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08993650 790.03375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08993651 790.03375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08993652 790.03381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08993653 790.03381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08993654 790.03381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08993655 790.03387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08993656 790.03387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08993657 790.03387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08993658 790.03393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08993659 790.03393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08993660 790.03393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08993661 790.03393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08993662 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08993663 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08993664 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08993665 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08993666 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08993667 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08993668 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08993669 790.03399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08993670 790.03405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08993671 790.03405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08993672 790.03405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08993673 790.03405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08993674 790.03411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08993675 790.03411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08993676 790.03411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08993677 790.03417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08993678 790.03417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08993679 790.03417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08993680 790.03424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08993681 790.03424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08993682 790.03424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08993683 790.03424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08993684 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08993685 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08993686 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08993687 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08993688 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08993689 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08993690 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08993691 790.03430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08993692 790.03436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08993693 790.03436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08993694 790.03436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08993695 790.03442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08993696 790.03442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08993697 790.03442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08993698 790.03448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08993699 790.03448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08993700 790.03448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08993701 790.03448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08993702 790.03454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08993703 790.03454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08993704 790.03454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08993705 790.03454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08993706 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08993707 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08993708 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08993709 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08993710 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08993711 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08993712 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08993713 790.03460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08993714 790.03466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08993715 790.03466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08993716 790.03472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08993717 790.03472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -08993718 790.03472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08993719 790.03472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -08993720 790.03479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08993721 790.03479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -08993722 790.03479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08993723 790.03479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -08993724 790.03485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08993725 790.03485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -08993726 790.03485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08993727 790.03485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -08993728 790.03491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08993729 790.03491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -08993730 790.03491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08993731 790.03491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -08993732 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08993733 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -08993734 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08993735 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -08993736 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08993737 790.03497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -08993738 790.03503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08993739 790.03503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -08993740 790.03503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08993741 790.03503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -08993742 790.03509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08993743 790.03509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -08993744 790.03509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08993745 790.03509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -08993746 790.03515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08993747 790.03515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -08993748 790.03515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08993749 790.03515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -08993750 790.03521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08993751 790.03521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -08993752 790.03521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08993753 790.03521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -08993754 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08993755 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -08993756 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08993757 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -08993758 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08993759 790.03527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -08993760 790.03533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08993761 790.03533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -08993762 790.03533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08993763 790.03533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -08993764 790.03540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08993765 790.03540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -08993766 790.03540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08993767 790.03540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -08993768 790.03546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08993769 790.03546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -08993770 790.03546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08993771 790.03546143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -08993772 790.03552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08993773 790.03552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -08993774 790.03552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08993775 790.03552246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -08993776 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08993777 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -08993778 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08993779 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -08993780 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08993781 790.03558350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -08993782 790.03564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08993783 790.03564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -08993784 790.03564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08993785 790.03564453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -08993786 790.03570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08993787 790.03570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -08993788 790.03570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08993789 790.03570557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -08993790 790.03576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08993791 790.03576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -08993792 790.03576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08993793 790.03576660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -08993794 790.03582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08993795 790.03582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -08993796 790.03582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08993797 790.03582764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -08993798 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08993799 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -08993800 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08993801 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -08993802 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08993803 790.03588867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -08993804 790.03594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08993805 790.03594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -08993806 790.03594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08993807 790.03594971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -08993808 790.03601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08993809 790.03601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -08993810 790.03601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08993811 790.03601074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -08993812 790.03607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08993813 790.03607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -08993814 790.03607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08993815 790.03607178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -08993816 790.03613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08993817 790.03613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -08993818 790.03613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08993819 790.03613281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -08993820 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08993821 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -08993822 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08993823 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -08993824 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08993825 790.03619385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -08993826 790.03625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08993827 790.03625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -08993828 790.03625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08993829 790.03625488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -08993830 790.03631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08993831 790.03631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -08993832 790.03631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08993833 790.03631592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -08993834 790.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08993835 790.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -08993836 790.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08993837 790.03637695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -08993838 790.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08993839 790.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -08993840 790.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08993841 790.03643799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -08993842 790.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08993843 790.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -08993844 790.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08993845 790.03649902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -08993846 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08993847 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -08993848 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08993849 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -08993850 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08993851 790.03656006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -08993852 790.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08993853 790.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -08993854 790.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08993855 790.03662109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -08993856 790.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08993857 790.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -08993858 790.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08993859 790.03668213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -08993860 790.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08993861 790.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -08993862 790.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08993863 790.03674316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -08993864 790.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08993865 790.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -08993866 790.03680420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08993867 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -08993868 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08993869 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -08993870 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08993871 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -08993872 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08993873 790.03686523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -08993874 790.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08993875 790.03692627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -08995898 790.06530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -08995899 790.06530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7a8 -08995900 790.06530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -08995901 790.06530762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7b8 -08995902 790.06536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -08995903 790.06536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7c8 -08995904 790.06536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -08995905 790.06536865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7d8 -08995906 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -08995907 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7e8 -08995908 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -08995909 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc7f8 -08995910 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -08995911 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc808 -08995912 790.06542969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -08995913 790.06549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc818 -08995914 790.06549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -08995915 790.06549072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc828 -08995916 790.06555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -08995917 790.06555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc838 -08995918 790.06555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -08995919 790.06555176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc848 -08995920 790.06561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -08995921 790.06561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc858 -08995922 790.06561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -08995923 790.06561279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc868 -08995924 790.06567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -08995925 790.06567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc878 -08995926 790.06567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -08995927 790.06567383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc888 -08995928 790.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -08995929 790.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc898 -08995930 790.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -08995931 790.06573486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8a8 -08995932 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -08995933 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8b8 -08995934 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -08995935 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8c8 -08995936 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -08995937 790.06579590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8d8 -08995938 790.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -08995939 790.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8e8 -08995940 790.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -08995941 790.06585693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc8f8 -08998531 790.10217285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119e8 -08998532 790.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -08998533 790.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x119f8 -08998534 790.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -08998535 790.10223389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a08 -08998536 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -08998537 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a18 -08998538 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -08998539 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a28 -08998540 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -08998541 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a38 -08998542 790.10229492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -08998543 790.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a48 -08998544 790.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -08998545 790.10235596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a58 -08998546 790.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a68 -08998547 790.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a68 -08998548 790.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a78 -08998549 790.10241699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a78 -08998550 790.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a88 -08998551 790.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a88 -08998552 790.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a98 -08998553 790.10247803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a98 -08998554 790.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa8 -08998555 790.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11aa8 -08998556 790.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab8 -08998557 790.10253906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ab8 -08998558 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac8 -08998559 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ac8 -08998560 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad8 -08998561 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ad8 -08998562 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae8 -08998563 790.10260010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11ae8 -08998564 790.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af8 -08998565 790.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11af8 -08998566 790.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b08 -08998567 790.10266113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b08 -08998568 790.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -08998569 790.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b18 -08998570 790.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -08998571 790.10272217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b28 -08998572 790.10278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -08998573 790.10278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b38 -08998574 790.10278320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b48 -09001140 790.13879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b78 -09001141 790.13879395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b78 -09001142 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b88 -09001143 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b88 -09001144 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b98 -09001145 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b98 -09001146 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba8 -09001147 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ba8 -09001148 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb8 -09001149 790.13885498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bb8 -09001150 790.13891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc8 -09001151 790.13891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bc8 -09001152 790.13891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd8 -09001153 790.13891602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bd8 -09001154 790.13897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be8 -09001155 790.13897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16be8 -09001156 790.13897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf8 -09001157 790.13897705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16bf8 -09001158 790.13903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c08 -09001159 790.13903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c08 -09001160 790.13903809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c18 -09001161 790.13909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c18 -09001162 790.13909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c28 -09001163 790.13909912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c28 -09001164 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c38 -09001165 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c38 -09001166 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c48 -09001167 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c48 -09001168 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c58 -09001169 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c58 -09001170 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c68 -09001171 790.13916016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c68 -09001172 790.13922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c78 -09001173 790.13922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c78 -09001174 790.13922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c88 -09001175 790.13922119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c88 -09001176 790.13928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c98 -09001177 790.13928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c98 -09001178 790.13928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca8 -09001179 790.13928223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16ca8 -09001180 790.13934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb8 -09001181 790.13934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cb8 -09001182 790.13940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc8 -09001183 790.13940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16cc8 -09003592 790.17327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b818 -09003593 790.17327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b818 -09003594 790.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b828 -09003595 790.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b828 -09003596 790.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b838 -09003597 790.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b838 -09003598 790.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b848 -09003599 790.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b848 -09003600 790.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b858 -09003601 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b858 -09003602 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b868 -09003603 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b868 -09003604 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b878 -09003605 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b878 -09003606 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b888 -09003607 790.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b888 -09003608 790.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b898 -09003609 790.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b898 -09003610 790.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a8 -09003611 790.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8a8 -09003612 790.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b8 -09003613 790.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8b8 -09003614 790.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c8 -09003615 790.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8c8 -09003616 790.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d8 -09003617 790.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8d8 -09003618 790.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e8 -09003619 790.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8e8 -09003620 790.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f8 -09003621 790.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b8f8 -09003622 790.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b908 -09003623 790.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b908 -09003624 790.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b918 -09003625 790.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b918 -09003626 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b928 -09003627 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b928 -09003628 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b938 -09003629 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b938 -09003630 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b948 -09003631 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b948 -09003632 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b958 -09003633 790.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b958 -09003634 790.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b968 -09003635 790.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b968 -09006246 790.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b08 -09006247 790.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b08 -09006248 790.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b18 -09006249 790.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b18 -09006250 790.21063232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b28 -09006251 790.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b28 -09006252 790.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b38 -09006253 790.21069336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b38 -09006254 790.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -09006255 790.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b48 -09006256 790.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -09006257 790.21075439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b58 -09006258 790.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -09006259 790.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b68 -09006260 790.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -09006261 790.21081543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b78 -09006262 790.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -09006263 790.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b88 -09006264 790.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -09006265 790.21087646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b98 -09006266 790.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -09006267 790.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20ba8 -09006268 790.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -09006269 790.21093750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bb8 -09006270 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -09006271 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bc8 -09006272 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -09006273 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bd8 -09006274 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -09006275 790.21099854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20be8 -09006276 790.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -09006277 790.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20bf8 -09006278 790.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -09006279 790.21105957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c08 -09006280 790.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -09006281 790.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c18 -09006282 790.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -09006283 790.21112061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c28 -09006284 790.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -09006285 790.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c38 -09006286 790.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -09006287 790.21118164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c48 -09006288 790.21124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -09006289 790.21124268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c58 -09022138 790.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -09022139 790.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fba8 -09022140 790.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -09022141 790.43261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbb8 -09022142 790.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -09022143 790.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbc8 -09022144 790.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -09022145 790.43267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbd8 -09022146 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -09022147 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbe8 -09022148 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -09022149 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fbf8 -09022150 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -09022151 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc08 -09022152 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -09022153 790.43273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc18 -09022154 790.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -09022155 790.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc28 -09022156 790.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -09022157 790.43280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc38 -09022158 790.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -09022159 790.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc48 -09022160 790.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -09022161 790.43286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc58 -09022162 790.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -09022163 790.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc68 -09022164 790.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -09022165 790.43292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc78 -09022166 790.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -09022167 790.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc88 -09022168 790.43298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -09022169 790.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc98 -09022170 790.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca8 -09022171 790.43304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fca8 -09022172 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb8 -09022173 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcb8 -09022174 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc8 -09022175 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcc8 -09022176 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd8 -09022177 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcd8 -09022178 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce8 -09022179 790.43310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fce8 -09022180 790.43316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf8 -09022181 790.43316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fcf8 -09024400 790.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -09024401 790.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -09024402 790.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -09024403 790.46368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -09024404 790.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -09024405 790.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -09024406 790.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -09024407 790.46374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -09024408 790.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -09024409 790.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -09024410 790.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -09024411 790.46380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -09024412 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -09024413 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -09024414 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -09024415 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -09024416 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -09024417 790.46386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -09024418 790.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -09024419 790.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -09024420 790.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -09024421 790.46392822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -09024422 790.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -09024423 790.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -09024424 790.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -09024425 790.46398926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -09024426 790.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -09024427 790.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44328 -09024428 790.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -09024429 790.46405029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44338 -09024430 790.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -09024431 790.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44348 -09024432 790.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -09024433 790.46411133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44358 -09024434 790.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44368 -09024435 790.46417236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44368 -09024436 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44378 -09024437 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44378 -09024438 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44388 -09024439 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44388 -09024440 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44398 -09024441 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44398 -09024442 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a8 -09024443 790.46423340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x443a8 -09026726 790.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -09026727 790.49572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b08 -09026728 790.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -09026729 790.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b18 -09026730 790.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -09026731 790.49578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b28 -09026732 790.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -09026733 790.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b38 -09026734 790.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -09026735 790.49584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b48 -09026736 790.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -09026737 790.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b58 -09026738 790.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -09026739 790.49591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b68 -09026740 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -09026741 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b78 -09026742 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -09026743 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b88 -09026744 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -09026745 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b98 -09026746 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -09026747 790.49597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48ba8 -09026748 790.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -09026749 790.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bb8 -09026750 790.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -09026751 790.49603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bc8 -09026752 790.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -09026753 790.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bd8 -09026754 790.49609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -09026755 790.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48be8 -09026756 790.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -09026757 790.49615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48bf8 -09026758 790.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -09026759 790.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c08 -09026760 790.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -09026761 790.49621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c18 -09026762 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -09026763 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c28 -09026764 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -09026765 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c38 -09026766 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -09026767 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c48 -09026768 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -09026769 790.49627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c58 -09029156 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f8 -09029157 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d6f8 -09029158 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d708 -09029159 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d708 -09029160 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d718 -09029161 790.52935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d718 -09029162 790.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d728 -09029163 790.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d728 -09029164 790.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d738 -09029165 790.52941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d738 -09029166 790.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d748 -09029167 790.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d748 -09029168 790.52947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d758 -09029169 790.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d758 -09029170 790.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d768 -09029171 790.52954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d768 -09029172 790.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d778 -09029173 790.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d778 -09029174 790.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d788 -09029175 790.52960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d788 -09029176 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d798 -09029177 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d798 -09029178 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a8 -09029179 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a8 -09029180 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b8 -09029181 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b8 -09029182 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c8 -09029183 790.52966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c8 -09029184 790.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d8 -09029185 790.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d8 -09029186 790.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e8 -09029187 790.52972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e8 -09029188 790.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f8 -09029189 790.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f8 -09029190 790.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d808 -09029191 790.52978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d808 -09029192 790.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d818 -09029193 790.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d818 -09029194 790.52984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d828 -09029195 790.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d828 -09029196 790.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d838 -09029197 790.52990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d838 -09029198 790.52996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09029199 790.52996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09031394 790.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -09031395 790.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ce8 -09031396 790.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -09031397 790.56042480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51cf8 -09031398 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -09031399 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d08 -09031400 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -09031401 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d18 -09031402 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -09031403 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d28 -09031404 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -09031405 790.56048584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d38 -09031406 790.56054688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -09031407 790.56054688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d48 -09031408 790.56054688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -09031409 790.56054688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d58 -09031410 790.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -09031411 790.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d68 -09031412 790.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -09031413 790.56060791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d78 -09031414 790.56066895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -09031415 790.56066895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d88 -09031416 790.56066895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -09031417 790.56066895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d98 -09031418 790.56072998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -09031419 790.56072998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51da8 -09031420 790.56072998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -09031421 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51db8 -09031422 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -09031423 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dc8 -09031424 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -09031425 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51dd8 -09031426 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -09031427 790.56079102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51de8 -09031428 790.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -09031429 790.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51df8 -09031430 790.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -09031431 790.56085205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e08 -09031432 790.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -09031433 790.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e18 -09031434 790.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -09031435 790.56091309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e28 -09031436 790.56097412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e38 -09031437 790.56097412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e38 -09031916 790.68225098 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031917 790.68231201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031918 790.68231201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031919 790.68231201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09031920 790.68249512 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031921 790.68249512 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09031922 790.68249512 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031923 790.68249512 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09031924 791.13305664 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09031925 791.15411377 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031926 791.15411377 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031927 793.15673828 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09031928 793.17974854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031929 793.17974854 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031930 793.19073486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031931 793.19073486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031932 793.19073486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09031933 793.19073486 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09031934 793.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031935 793.19091797 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09031936 793.19097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09031937 793.19097900 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09031938 794.91223145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09031939 794.91223145 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09031940 794.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09031941 794.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09031942 794.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09031943 794.91229248 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09031944 794.91235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09031945 794.91235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09031946 794.91235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09031947 794.91235352 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09031948 794.91241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09031949 794.91241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09031950 794.91241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09031951 794.91241455 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09031952 794.91247559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09031953 794.91247559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09031954 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09031955 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09031956 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09031957 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09031958 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09031959 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09031960 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09031961 794.91253662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09031962 794.91259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09031963 794.91259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09031964 794.91259766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09031965 794.91265869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09031966 794.91265869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09031967 794.91265869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09031968 794.91271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09031969 794.91271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09031970 794.91271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09031971 794.91271973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09031972 794.91278076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09031973 794.91278076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09031974 794.91278076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09031975 794.91278076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09031976 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09031977 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09031978 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09031979 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09031980 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09031981 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09031982 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09031983 794.91284180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09031984 794.91290283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09031985 794.91290283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09031986 794.91296387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09031987 794.91296387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09031988 794.91296387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09031989 794.91296387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09031990 794.91302490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09031991 794.91302490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09031992 794.91302490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09031993 794.91302490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09031994 794.91308594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09031995 794.91308594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09031996 794.91308594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09031997 794.91308594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09031998 794.91314697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09031999 794.91314697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09032000 794.91314697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09032001 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09032002 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09032003 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09032004 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09032005 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09032006 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09032007 794.91320801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09032008 794.91326904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09032009 794.91326904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09032010 794.91333008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09032011 794.91333008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09032012 794.91333008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09032013 794.91333008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09032014 794.91339111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09032015 794.91339111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09032016 794.91339111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09032017 794.91339111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09032018 794.91345215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09032019 794.91345215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09032020 794.91345215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09032021 794.91345215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09032022 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09032023 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09032024 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09032025 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09032026 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09032027 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09032028 794.91351318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09032029 794.91357422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09032030 794.91357422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09032031 794.91357422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09032032 794.91363525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09032033 794.91363525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09032034 794.91369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09032035 794.91369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09032036 794.91369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09032037 794.91369629 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09032038 794.91375732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09032039 794.91375732 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09032040 794.91381836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09032041 794.91381836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09032042 794.91381836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09032043 794.91381836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09032044 794.91387939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09032045 794.91387939 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09032046 794.91394043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09032047 794.91394043 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09032048 794.91400146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09032049 794.91400146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09032050 794.91400146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09032051 794.91400146 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09032052 794.91406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09032053 794.91406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09032054 794.91406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09032055 794.91406250 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09032056 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09032057 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09032058 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09032059 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09032060 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09032061 794.91412354 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09032062 794.91418457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09032063 794.91418457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09032064 794.91418457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09032065 794.91418457 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09032066 794.91424561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09032067 794.91424561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09032068 794.91430664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09032069 794.91430664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09032070 794.91430664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09032071 794.91430664 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09032072 794.91436768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09032073 794.91436768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09032074 794.91436768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09032075 794.91436768 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09032076 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09032077 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09032078 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09032079 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09032080 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09032081 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09032082 794.91442871 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09032083 794.91448975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09032084 794.91448975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09032085 794.91448975 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09032086 794.91455078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09032087 794.91455078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09032088 794.91455078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09032089 794.91455078 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09032090 794.91461182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09032091 794.91461182 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09032092 794.91467285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09032093 794.91467285 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09032094 794.91473389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09032095 794.91473389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09032096 794.91473389 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09032097 794.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09032098 794.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09032099 794.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09032100 794.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09032101 794.91479492 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09032102 794.91485596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09032103 794.91485596 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09032104 794.91491699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09032105 794.91491699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09032106 794.91491699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09032107 794.91491699 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09032108 794.91497803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09032109 794.91497803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09032110 794.91497803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09032111 794.91497803 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09032112 794.91503906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09032113 794.91503906 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09032114 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09032115 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09032116 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09032117 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09032118 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09032119 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09032120 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09032121 794.91510010 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09032122 794.91516113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09032123 794.91516113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09032124 794.91516113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09032125 794.91516113 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09032126 794.91522217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09032127 794.91522217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09032128 794.91522217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09032129 794.91522217 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09032130 794.91528320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09032131 794.91528320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09032132 794.91528320 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09032133 794.91534424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09032134 794.91534424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09032135 794.91534424 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09032136 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09032137 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09032138 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09032139 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09032140 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09032141 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09032142 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09032143 794.91540527 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09032144 794.91546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09032145 794.91546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09032146 794.91546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09032147 794.91546631 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09032148 794.91552734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09032149 794.91552734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09032150 794.91552734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09032151 794.91552734 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09032152 794.91558838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09032153 794.91558838 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09032154 794.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09032155 794.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09032156 794.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09032157 794.91564941 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09032158 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09032159 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09032160 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09032161 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09032162 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09032163 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09032164 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09032165 794.91571045 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09032166 794.91577148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09032167 794.91577148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09032168 794.91577148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09032169 794.91577148 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09032170 794.91583252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09032171 794.91583252 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09032172 794.91589355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09032173 794.91589355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09032174 794.91589355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09032175 794.91589355 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09032176 794.91595459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09032177 794.91595459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09032178 794.91595459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09032179 794.91595459 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09032180 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09032181 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09032182 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09032183 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09032184 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09032185 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09032186 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09032187 794.91601563 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09032188 794.91607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09032189 794.91607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09032190 794.91607666 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09032191 794.91613770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09032192 794.91613770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09032193 794.91613770 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09032194 794.91619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09032195 794.91619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09032196 794.91619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09032197 794.91619873 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09032198 794.91625977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09032199 794.91625977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09032200 794.91625977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09032201 794.91625977 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09032202 794.91632080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09032203 794.91632080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09032204 794.91632080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09032205 794.91632080 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09032206 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09032207 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09032208 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09032209 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09032210 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09032211 794.91638184 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09032212 794.91644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09032213 794.91644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09032214 794.91644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09032215 794.91644287 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09032216 794.91650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09032217 794.91650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09032218 794.91650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09032219 794.91650391 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09032220 794.91656494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09032221 794.91656494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09032222 794.91656494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09032223 794.91656494 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09032224 794.91662598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09032225 794.91662598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09032226 794.91662598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09032227 794.91662598 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09032228 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09032229 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09032230 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09032231 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09032232 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09032233 794.91668701 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09032234 794.91674805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09032235 794.91674805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09032236 794.91674805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09032237 794.91674805 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09032238 794.91680908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09032239 794.91680908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09032240 794.91680908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09032241 794.91680908 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09032242 794.91687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09032243 794.91687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09032244 794.91687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09032245 794.91687012 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09032246 794.91693115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09032247 794.91693115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09032248 794.91693115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09032249 794.91693115 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09032250 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09032251 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09032252 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09032253 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09032254 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09032255 794.91699219 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09032256 794.91705322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09032257 794.91705322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09032258 794.91705322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09032259 794.91705322 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09032260 794.91711426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09032261 794.91711426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09032262 794.91711426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09032263 794.91711426 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09032264 794.91717529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09032265 794.91717529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09032266 794.91717529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09032267 794.91717529 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09032268 794.91723633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09032269 794.91723633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09032270 794.91723633 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09032271 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09032272 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09032273 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09032274 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09032275 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09032276 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09032277 794.91729736 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09032278 794.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09032279 794.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09032280 794.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09032281 794.91735840 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09032282 794.91741943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09032283 794.91741943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09032284 794.91741943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09032285 794.91741943 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09032286 794.91748047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09032287 794.91748047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09032288 794.91748047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09032289 794.91748047 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09032290 794.91754150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09032291 794.91754150 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09032292 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09032293 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09032294 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09032295 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09032296 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09032297 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09032298 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09032299 794.91760254 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09032300 794.91766357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09032301 794.91766357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09032302 794.91766357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09032303 794.91766357 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09032304 794.91772461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09032305 794.91772461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09032306 794.91772461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09032307 794.91772461 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09032308 794.91778564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09032309 794.91778564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09032310 794.91778564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09032311 794.91778564 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09032312 794.91784668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09032313 794.91784668 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09032314 794.91790771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09032315 794.91790771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09032316 794.91790771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09032317 794.91790771 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09032318 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09032319 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09032320 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09032321 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09032322 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09032323 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09032324 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09032325 794.91796875 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09032326 794.91802979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09032327 794.91802979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09032328 794.91802979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09032329 794.91802979 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09032330 794.91809082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09032331 794.91809082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09032332 794.91809082 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09032333 794.91815186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09032334 794.91815186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09032335 794.91815186 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09032336 794.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09032337 794.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09032338 794.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09032339 794.91821289 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09032340 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09032341 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09032342 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09032343 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09032344 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09032345 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09032346 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09032347 794.91827393 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09032348 794.91833496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09032349 794.91833496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09032350 794.91833496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09032351 794.91833496 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09032352 794.91839600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09032353 794.91839600 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09032354 794.91845703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09032355 794.91845703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09032356 794.91845703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09032357 794.91845703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09032358 794.91851807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09032359 794.91851807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09032360 794.91851807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09032361 794.91851807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09032362 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09032363 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09032364 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09032365 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09032366 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09032367 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09032368 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09032369 794.91857910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09032370 794.91864014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09032371 794.91864014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09032372 794.91864014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09032373 794.91870117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09032374 794.91870117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09032375 794.91870117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09032376 794.91876221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09032377 794.91876221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09032378 794.91876221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09032379 794.91876221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09032380 794.91882324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09032381 794.91882324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09032382 794.91882324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09032383 794.91882324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09032384 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09032385 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09032386 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09032387 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09032388 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09032389 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09032390 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09032391 794.91888428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09032392 794.91894531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09032393 794.91894531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09032394 794.91894531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09032395 794.91900635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09032396 794.91900635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09032397 794.91900635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09032398 794.91906738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09032399 794.91906738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09032400 794.91906738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09032401 794.91906738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09032402 794.91912842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09032403 794.91912842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09032404 794.91912842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09032405 794.91912842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09032406 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09032407 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09032408 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09032409 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09032410 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09032411 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09032412 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09032413 794.91918945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09032414 794.91925049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09032415 794.91925049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09032416 794.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09032417 794.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09032418 794.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09032419 794.91931152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09032420 794.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09032421 794.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09032422 794.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09032423 794.91937256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09032424 794.91943359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09032425 794.91943359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09032426 794.91943359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09032427 794.91943359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09032428 794.91949463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09032429 794.91949463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09032430 794.91949463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09032431 794.91949463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09032432 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09032433 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09032434 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09032435 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09032436 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09032437 794.91955566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09032438 794.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09032439 794.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09032440 794.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09032441 794.91961670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09032442 794.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09032443 794.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09032444 794.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09032445 794.91967773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09032446 794.91973877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09032447 794.91973877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09032448 794.91973877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09032449 794.91973877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09032450 794.91979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09032451 794.91979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09032452 794.91979980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09032453 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09032454 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09032455 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09032456 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09032457 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09032458 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09032459 794.91986084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09032460 794.91992188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09032461 794.91992188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09032462 794.91992188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09032463 794.91992188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09032464 794.91998291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09032465 794.91998291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09032466 794.91998291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09032467 794.91998291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09032468 794.92004395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09032469 794.92004395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09032470 794.92004395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09032471 794.92004395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09032472 794.92010498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09032473 794.92010498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09032474 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09032475 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09032476 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09032477 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09032478 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09032479 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09032480 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09032481 794.92016602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09032482 794.92022705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09032483 794.92022705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09032484 794.92022705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09032485 794.92022705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09032486 794.92028809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09032487 794.92028809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09032488 794.92028809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09032489 794.92028809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09032490 794.92034912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09032491 794.92034912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09032492 794.92034912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09032493 794.92041016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09032494 794.92041016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09032495 794.92041016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09032496 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09032497 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09032498 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09032499 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09032500 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09032501 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09032502 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09032503 794.92047119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09032504 794.92059326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09032505 794.92059326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09032506 794.92059326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09032507 794.92059326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09032508 794.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09032509 794.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09032510 794.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09032511 794.92065430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09032512 794.92071533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09032513 794.92071533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09032514 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09032515 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09032516 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09032517 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09032518 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09032519 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09032520 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09032521 794.92077637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09032522 794.92083740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09032523 794.92083740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09032524 794.92083740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09032525 794.92083740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09032526 794.92089844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09032527 794.92089844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09032528 794.92089844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09032529 794.92089844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09032530 794.92095947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09032531 794.92095947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09032532 794.92095947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09032533 794.92102051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09032534 794.92102051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09032535 794.92102051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09032536 794.92108154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09032537 794.92108154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09032538 794.92108154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09032539 794.92108154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09032540 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09032541 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09032542 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09032543 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09032544 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09032545 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09032546 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09032547 794.92114258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09032548 794.92120361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09032549 794.92120361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09032550 794.92120361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09032551 794.92120361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09032552 794.92126465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09032553 794.92126465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09032554 794.92132568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09032555 794.92132568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09032556 794.92132568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09032557 794.92132568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09032558 794.92138672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09032559 794.92138672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09032560 794.92138672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09032561 794.92138672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09032562 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09032563 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09032564 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09032565 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09032566 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09032567 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09032568 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09032569 794.92144775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09032570 794.92150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09032571 794.92150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09032572 794.92150879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09032573 794.92156982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09032574 794.92156982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09032575 794.92156982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09032576 794.92163086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09032577 794.92163086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09032578 794.92163086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09032579 794.92163086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09032580 794.92169189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09032581 794.92169189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09032582 794.92169189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09032583 794.92169189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09032584 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09032585 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09032586 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09032587 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09032588 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09032589 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09032590 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09032591 794.92175293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09032592 794.92181396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09032593 794.92181396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09032594 794.92181396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09032595 794.92187500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09032596 794.92187500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09032597 794.92187500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09032598 794.92193604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09032599 794.92193604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09032600 794.92193604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09032601 794.92193604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09032602 794.92199707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09032603 794.92199707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09032604 794.92199707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09032605 794.92199707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09032606 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09032607 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09032608 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09032609 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09032610 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09032611 794.92205811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09032612 794.92211914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09032613 794.92211914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09032614 794.92211914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09032615 794.92211914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09032616 794.92218018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09032617 794.92218018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09032618 794.92224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09032619 794.92224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09032620 794.92224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09032621 794.92224121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09032622 794.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09032623 794.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09032624 794.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09032625 794.92230225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09032626 794.92236328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09032627 794.92236328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09032628 794.92242432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09032629 794.92242432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09032630 794.92248535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09032631 794.92248535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09032632 794.92248535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09032633 794.92248535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09032634 794.92254639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09032635 794.92254639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09032636 794.92254639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09032637 794.92254639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09032638 794.92260742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09032639 794.92260742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09032640 794.92266846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09032641 794.92266846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09032642 794.92266846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09032643 794.92266846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09032644 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09032645 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09032646 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09032647 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09032648 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09032649 794.92272949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09032650 794.92279053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09032651 794.92279053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09032652 794.92279053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09032653 794.92279053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09032654 794.92285156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09032655 794.92285156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09032656 794.92291260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09032657 794.92291260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09032658 794.92291260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09032659 794.92291260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09032660 794.92297363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09032661 794.92297363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09032662 794.92297363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09032663 794.92297363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09032664 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09032665 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09032666 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09032667 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09032668 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09032669 794.92303467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09032670 794.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09032671 794.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09032672 794.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09032673 794.92309570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09032674 794.92315674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09032675 794.92315674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09032676 794.92315674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09032677 794.92315674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09032678 794.92321777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09032679 794.92321777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09032680 794.92321777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09032681 794.92321777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09032682 794.92327881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09032683 794.92327881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09032684 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09032685 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09032686 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09032687 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09032688 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09032689 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09032690 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09032691 794.92333984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09032692 794.92340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09032693 794.92340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09032694 794.92340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09032695 794.92340088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09032696 794.92346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09032697 794.92346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09032698 794.92346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09032699 794.92346191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09032700 794.92352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09032701 794.92352295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09032702 794.92358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09032703 794.92358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09032704 794.92358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09032705 794.92358398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09032706 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09032707 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09032708 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09032709 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09032710 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09032711 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09032712 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09032713 794.92364502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09032714 794.92370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09032715 794.92370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09032716 794.92370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09032717 794.92370605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09032718 794.92376709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09032719 794.92376709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09032720 794.92376709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09032721 794.92382813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09032722 794.92382813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09032723 794.92382813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09032724 794.92388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09032725 794.92388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09032726 794.92388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09032727 794.92388916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09032728 794.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09032729 794.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09032730 794.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09032731 794.92395020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09032732 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09032733 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09032734 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09032735 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09032736 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09032737 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09032738 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09032739 794.92401123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09032740 794.92407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09032741 794.92407227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09032742 794.92413330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09032743 794.92413330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09032744 794.92413330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09032745 794.92419434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09032746 794.92419434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09032747 794.92419434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09032748 794.92425537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09032749 794.92425537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09032750 794.92431641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09032751 794.92431641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09032752 794.92431641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09032753 794.92431641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09032754 794.92431641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09032755 794.92437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09032756 794.92437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09032757 794.92437744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09032758 794.92443848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09032759 794.92443848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09032760 794.92443848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09032761 794.92443848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09032762 794.92449951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09032763 794.92449951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09032764 794.92449951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09032765 794.92449951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09032766 794.92456055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09032767 794.92456055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09032768 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09032769 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09032770 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09032771 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09032772 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09032773 794.92462158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09032774 794.92468262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09032775 794.92468262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09032776 794.92474365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09032777 794.92474365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09032778 794.92480469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09032779 794.92480469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09032780 794.92486572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09032781 794.92486572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09032782 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09032783 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09032784 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09032785 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09032786 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09032787 794.92492676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09032788 794.92498779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09032789 794.92498779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09032790 794.92504883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09032791 794.92504883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09032792 794.92504883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09032793 794.92504883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09032794 794.92510986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09032795 794.92510986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09032796 794.92517090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09032797 794.92517090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09032798 794.92517090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09032799 794.92517090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09032800 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09032801 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09032802 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09032803 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09032804 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09032805 794.92523193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09032806 794.92529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09032807 794.92529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09032808 794.92529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09032809 794.92529297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09032810 794.92535400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09032811 794.92535400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09032812 794.92535400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09032813 794.92535400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09032814 794.92541504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09032815 794.92541504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09032816 794.92541504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09032817 794.92541504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09032818 794.92547607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09032819 794.92547607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09032820 794.92547607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09032821 794.92553711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09032822 794.92553711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09032823 794.92553711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09032824 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09032825 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09032826 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09032827 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09032828 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09032829 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09032830 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09032831 794.92559814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09032832 794.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09032833 794.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09032834 794.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09032835 794.92565918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09032836 794.92572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09032837 794.92572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09032838 794.92572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09032839 794.92572021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09032840 794.92578125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09032841 794.92578125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09032842 794.92584229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09032843 794.92584229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09032844 794.92584229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09032845 794.92584229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09032846 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09032847 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09032848 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09032849 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09032850 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09032851 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09032852 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09032853 794.92590332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09032854 794.92596436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09032855 794.92596436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09032856 794.92596436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09032857 794.92596436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09032858 794.92602539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09032859 794.92602539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09032860 794.92602539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09032861 794.92608643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09032862 794.92608643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09032863 794.92608643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09032864 794.92614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09032865 794.92614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09032866 794.92614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09032867 794.92614746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09032868 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09032869 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09032870 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09032871 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09032872 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09032873 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09032874 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09032875 794.92620850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09032876 794.92626953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09032877 794.92626953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09032878 794.92626953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09032879 794.92626953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09032880 794.92633057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09032881 794.92633057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09032882 794.92639160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09032883 794.92639160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09032884 794.92639160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09032885 794.92639160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09032886 794.92645264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09032887 794.92645264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09032888 794.92645264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09032889 794.92645264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09032890 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09032891 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09032892 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09032893 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09032894 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09032895 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09032896 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09032897 794.92651367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09032898 794.92657471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09032899 794.92657471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09032900 794.92657471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09032901 794.92663574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09032902 794.92663574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09032903 794.92663574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09032904 794.92669678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09032905 794.92669678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09032906 794.92669678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09032907 794.92669678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09032908 794.92675781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09032909 794.92675781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09032910 794.92675781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09032911 794.92675781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09032912 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09032913 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09032914 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09032915 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09032916 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09032917 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09032918 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09032919 794.92681885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09032920 794.92687988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09032921 794.92687988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09032922 794.92687988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09032923 794.92694092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09032924 794.92694092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09032925 794.92694092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09032926 794.92700195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09032927 794.92700195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09032928 794.92700195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09032929 794.92700195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09032930 794.92706299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09032931 794.92706299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09032932 794.92706299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09032933 794.92706299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09032934 794.92712402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09032935 794.92712402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09032936 794.92712402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09032937 794.92712402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09032938 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09032939 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09032940 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09032941 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09032942 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09032943 794.92718506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09032944 794.92724609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09032945 794.92724609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09032946 794.92724609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09032947 794.92724609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09032948 794.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09032949 794.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09032950 794.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09032951 794.92730713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09032952 794.92736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09032953 794.92736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09032954 794.92736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09032955 794.92736816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09032956 794.92742920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09032957 794.92742920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09032958 794.92742920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09032959 794.92742920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09032960 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09032961 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09032962 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09032963 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09032964 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09032965 794.92749023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09032966 794.92755127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09032967 794.92755127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09032968 794.92755127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09032969 794.92755127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09032970 794.92761230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09032971 794.92761230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09032972 794.92761230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09032973 794.92761230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09032974 794.92767334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09032975 794.92767334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09032976 794.92767334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09032977 794.92767334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09032978 794.92773438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09032979 794.92773438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09032980 794.92773438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09032981 794.92773438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09032982 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09032983 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09032984 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09032985 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09032986 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09032987 794.92779541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09032988 794.92785645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09032989 794.92785645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09032990 794.92785645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09032991 794.92785645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09032992 794.92791748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09032993 794.92791748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09032994 794.92791748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09032995 794.92791748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09032996 794.92797852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09032997 794.92797852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09032998 794.92797852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09032999 794.92797852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09033000 794.92803955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09033001 794.92803955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09033002 794.92803955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09033003 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09033004 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09033005 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09033006 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09033007 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09033008 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09033009 794.92810059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09033010 794.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09033011 794.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09033012 794.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09033013 794.92816162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09033014 794.92822266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09033015 794.92822266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09033016 794.92822266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09033017 794.92822266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09033018 794.92828369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09033019 794.92828369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09033020 794.92828369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09033021 794.92828369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09033022 794.92834473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09033023 794.92834473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09033024 794.92834473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09033025 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09033026 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09033027 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09033028 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09033029 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09033030 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09033031 794.92840576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09033032 794.92846680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09033033 794.92846680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09033034 794.92846680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09033035 794.92846680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09033036 794.92852783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -09033037 794.92852783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -09033038 794.92852783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -09033039 794.92852783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -09033040 794.92858887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -09033041 794.92858887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -09033042 794.92858887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -09033043 794.92858887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -09033044 794.92864990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -09033045 794.92864990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -09033046 794.92871094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -09033047 794.92871094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -09033048 794.92871094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -09033049 794.92871094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -09033050 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -09033051 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -09033052 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -09033053 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -09033054 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -09033055 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -09033056 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -09033057 794.92877197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -09033058 794.92883301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -09033059 794.92883301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -09033060 794.92883301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -09033061 794.92883301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -09033062 794.92889404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -09033063 794.92889404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -09033064 794.92889404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -09033065 794.92895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -09033066 794.92895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -09033067 794.92895508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -09033068 794.92901611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -09033069 794.92901611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -09033070 794.92901611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -09033071 794.92901611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -09033072 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -09033073 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -09033074 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -09033075 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -09033076 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -09033077 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -09033078 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -09033079 794.92907715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -09033080 794.92913818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -09033081 794.92913818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -09033082 794.92913818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -09033083 794.92913818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -09033084 794.92919922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -09033085 794.92919922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -09033086 794.92919922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -09033087 794.92926025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -09033088 794.92926025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -09033089 794.92926025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -09033090 794.92932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -09033091 794.92932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -09033092 794.92932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -09033093 794.92932129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -09033094 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -09033095 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -09033096 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -09033097 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -09033098 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -09033099 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -09033100 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -09033101 794.92938232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -09033102 794.92944336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -09033103 794.92944336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -09033104 794.92944336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -09033105 794.92944336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -09033106 794.92950439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -09033107 794.92950439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -09033108 794.92956543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -09033109 794.92956543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -09033110 794.92956543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -09033111 794.92956543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -09033112 794.92962646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -09033113 794.92962646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -09033114 794.92962646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -09033115 794.92962646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -09033116 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -09033117 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -09033118 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -09033119 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -09033120 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -09033121 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -09033122 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -09033123 794.92968750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -09033124 794.92974854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -09033125 794.92974854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -09033126 794.92974854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -09033127 794.92980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -09033128 794.92980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -09033129 794.92980957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -09033130 794.92987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -09033131 794.92987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -09033132 794.92987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -09033133 794.92987061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -09033134 794.92993164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -09033135 794.92993164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -09033136 794.92993164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -09033137 794.92993164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -09033138 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -09033139 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -09033140 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -09033141 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -09033142 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -09033143 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -09033144 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -09033145 794.92999268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -09033146 794.93005371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -09033147 794.93005371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -09033148 794.93011475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -09033149 794.93011475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -09033150 794.93011475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -09033151 794.93011475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -09033152 794.93017578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -09033153 794.93017578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -09033154 794.93017578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -09033155 794.93017578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -09033156 794.93023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -09033157 794.93023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -09033158 794.93023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -09033159 794.93023682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -09033160 794.93029785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -09033161 794.93029785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -09033162 794.93029785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -09033163 794.93029785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -09033164 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -09033165 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -09033166 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -09033167 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -09033168 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -09033169 794.93035889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -09033170 794.93041992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -09033171 794.93041992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -09033172 794.93041992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -09033173 794.93041992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -09033174 794.93048096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -09033175 794.93048096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -09033176 794.93048096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -09033177 794.93048096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -09033178 794.93054199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -09033179 794.93054199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -09033180 794.93054199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -09033181 794.93054199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -09033182 794.93060303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -09033183 794.93060303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -09033184 794.93060303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -09033185 794.93060303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -09033186 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -09033187 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -09033188 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -09033189 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -09033190 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -09033191 794.93066406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -09033192 794.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -09033193 794.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -09033194 794.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -09033195 794.93072510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -09033196 794.93078613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -09033197 794.93078613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -09033198 794.93078613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -09033199 794.93078613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -09033200 794.93084717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -09033201 794.93084717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -09033202 794.93084717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -09033203 794.93084717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -09033204 794.93090820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -09033205 794.93090820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -09033206 794.93090820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -09033207 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -09033208 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -09033209 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -09033210 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -09033211 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -09033212 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -09033213 794.93096924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -09033214 794.93103027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -09033215 794.93103027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -09033216 794.93103027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -09033217 794.93103027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -09033218 794.93109131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -09033219 794.93109131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -09033220 794.93109131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -09033221 794.93109131 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -09033222 794.93115234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -09033223 794.93115234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -09033224 794.93115234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -09033225 794.93115234 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -09033226 794.93121338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -09033227 794.93121338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -09033228 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -09033229 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -09033230 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -09033231 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -09033232 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -09033233 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -09033234 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -09033235 794.93127441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -09033236 794.93133545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -09033237 794.93133545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -09033238 794.93133545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -09033239 794.93133545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -09033240 794.93139648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -09033241 794.93139648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -09033242 794.93139648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -09033243 794.93139648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -09033244 794.93145752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -09033245 794.93145752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -09033246 794.93145752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -09033247 794.93151855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -09033248 794.93151855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -09033249 794.93151855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -09033250 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -09033251 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -09033252 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -09033253 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -09033254 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -09033255 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -09033256 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -09033257 794.93157959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -09033258 794.93164063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -09033259 794.93164063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -09033260 794.93164063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -09033261 794.93164063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -09033262 794.93170166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -09033263 794.93170166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -09033264 794.93170166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -09033265 794.93170166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -09033266 794.93176270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -09033267 794.93176270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -09033268 794.93182373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -09033269 794.93182373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -09033270 794.93182373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -09033271 794.93182373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -09033272 794.93188477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -09033273 794.93188477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -09033274 794.93188477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -09033275 794.93188477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -09033276 794.93194580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -09033277 794.93194580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -09033278 794.93194580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -09033279 794.93194580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -09033280 794.93200684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -09033281 794.93200684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -09033282 794.93206787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -09033283 794.93206787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -09033284 794.93206787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -09033285 794.93206787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -09033286 794.93212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -09033287 794.93212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -09033288 794.93212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -09033289 794.93212891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -09033290 794.93218994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -09033291 794.93218994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -09033292 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -09033293 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -09033294 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -09033295 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -09033296 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -09033297 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -09033298 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -09033299 794.93225098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -09033300 794.93231201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -09033301 794.93231201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -09033302 794.93231201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -09033303 794.93231201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -09033304 794.93237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -09033305 794.93237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -09033306 794.93237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -09033307 794.93237305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -09033308 794.93243408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -09033309 794.93243408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -09033310 794.93243408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -09033311 794.93249512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -09033312 794.93249512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -09033313 794.93249512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -09033314 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -09033315 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -09033316 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -09033317 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -09033318 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -09033319 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -09033320 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -09033321 794.93255615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -09033322 794.93261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -09033323 794.93261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -09033324 794.93261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -09033325 794.93261719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -09033326 794.93267822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -09033327 794.93267822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -09033328 794.93267822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -09033329 794.93273926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -09033330 794.93273926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -09033331 794.93273926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -09033332 794.93280029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -09033333 794.93280029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -09033334 794.93280029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -09033335 794.93280029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -09033336 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -09033337 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -09033338 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -09033339 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -09033340 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -09033341 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -09033342 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -09033343 794.93286133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -09033344 794.93292236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -09033345 794.93292236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -09033346 794.93292236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -09033347 794.93292236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -09033348 794.93298340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -09033349 794.93298340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -09033350 794.93304443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -09033351 794.93304443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -09033352 794.93304443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -09033353 794.93304443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -09033354 794.93310547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -09033355 794.93310547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -09033356 794.93310547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -09033357 794.93310547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -09033358 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -09033359 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -09033360 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -09033361 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -09033362 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -09033363 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -09033364 794.93316650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -09033365 794.93322754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -09033366 794.93322754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -09033367 794.93322754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -09033368 794.93328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -09033369 794.93328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -09033370 794.93328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -09033371 794.93328857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -09033372 794.93334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -09033373 794.93334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -09033374 794.93334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -09033375 794.93334961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -09033376 794.93341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -09033377 794.93341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -09033378 794.93341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -09033379 794.93341064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -09033380 794.93347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -09033381 794.93347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -09033382 794.93347168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -09033383 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -09033384 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -09033385 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -09033386 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -09033387 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -09033388 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -09033389 794.93353271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -09033390 794.93359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -09033391 794.93359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -09033392 794.93359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -09033393 794.93359375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -09033394 794.93365479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -09033395 794.93365479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -09033396 794.93365479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -09033397 794.93365479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -09033398 794.93371582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -09033399 794.93371582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -09033400 794.93371582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -09033401 794.93371582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -09033402 794.93377686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -09033403 794.93377686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -09033404 794.93377686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -09033405 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -09033406 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -09033407 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -09033408 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -09033409 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -09033410 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -09033411 794.93383789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -09033412 794.93389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -09033413 794.93389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -09033414 794.93389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -09033415 794.93389893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -09033416 794.93395996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -09033417 794.93395996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -09033418 794.93395996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -09033419 794.93395996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -09033420 794.93402100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -09033421 794.93402100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -09033422 794.93402100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -09153033 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d858 -09153034 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d858 -09153035 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d868 -09153036 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d868 -09153037 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d878 -09153038 801.57995605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d878 -09153039 801.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d888 -09153040 801.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d888 -09153041 801.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d898 -09153042 801.58001709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d898 -09153043 801.58007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a8 -09153044 801.58007813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8a8 -09153045 801.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b8 -09153046 801.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8b8 -09153047 801.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c8 -09153048 801.58013916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8c8 -09153049 801.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d8 -09153050 801.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8d8 -09153051 801.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e8 -09153052 801.58020020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8e8 -09153053 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f8 -09153054 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d8f8 -09153055 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d908 -09153056 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d908 -09153057 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d918 -09153058 801.58026123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d918 -09153059 801.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d928 -09153060 801.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d928 -09153061 801.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d938 -09153062 801.58032227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d938 -09153063 801.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d948 -09153064 801.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d948 -09153065 801.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d958 -09153066 801.58038330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d958 -09153067 801.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d968 -09153068 801.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d968 -09153069 801.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d978 -09153070 801.58044434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d978 -09153071 801.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d988 -09153072 801.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d988 -09153073 801.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d998 -09153074 801.58050537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d998 -09153075 801.58056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a8 -09153076 801.58056641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d9a8 -09157221 801.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -09157222 801.63934326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b38 -09157223 801.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -09157224 801.63940430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b48 -09157225 801.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -09157226 801.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b58 -09157227 801.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -09157228 801.63946533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b68 -09157229 801.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -09157230 801.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b78 -09157231 801.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -09157232 801.63952637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b88 -09157233 801.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -09157234 801.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b98 -09157235 801.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -09157236 801.63958740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45ba8 -09157237 801.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -09157238 801.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bb8 -09157239 801.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -09157240 801.63964844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bc8 -09157241 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -09157242 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bd8 -09157243 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -09157244 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45be8 -09157245 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -09157246 801.63970947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45bf8 -09157247 801.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -09157248 801.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c08 -09157249 801.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -09157250 801.63977051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c18 -09157251 801.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -09157252 801.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c28 -09157253 801.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -09157254 801.63983154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c38 -09157255 801.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -09157256 801.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c48 -09157257 801.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c58 -09157258 801.63989258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c58 -09157259 801.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c68 -09157260 801.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c68 -09157261 801.63995361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c78 -09157262 801.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c78 -09157263 801.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c88 -09157264 801.64001465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c88 -09160183 801.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c8 -09160184 801.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7c8 -09160185 801.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d8 -09160186 801.68298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7d8 -09160187 801.68304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e8 -09160188 801.68304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7e8 -09160189 801.68304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f8 -09160190 801.68310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b7f8 -09160191 801.68310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b808 -09160192 801.68310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b808 -09160193 801.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b818 -09160194 801.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b818 -09160195 801.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b828 -09160196 801.68316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b828 -09160197 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b838 -09160198 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b838 -09160199 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b848 -09160200 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b848 -09160201 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b858 -09160202 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b858 -09160203 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -09160204 801.68322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b868 -09160205 801.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -09160206 801.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b878 -09160207 801.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -09160208 801.68328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b888 -09160209 801.68334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -09160210 801.68334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b898 -09160211 801.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -09160212 801.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8a8 -09160213 801.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -09160214 801.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8b8 -09160215 801.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -09160216 801.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8c8 -09160217 801.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d8 -09160218 801.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8d8 -09160219 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e8 -09160220 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8e8 -09160221 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f8 -09160222 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b8f8 -09160223 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -09160224 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b908 -09160225 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -09160226 801.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b918 -09160347 801.68530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce8 -09160348 801.68530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bce8 -09160349 801.68536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf8 -09160350 801.68536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bcf8 -09160351 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd08 -09160352 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd08 -09160353 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd18 -09160354 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd18 -09160355 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd28 -09160356 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd28 -09160357 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd38 -09160358 801.68542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd38 -09160359 801.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -09160360 801.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -09160361 801.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -09160362 801.68548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -09160363 801.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -09160364 801.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -09160365 801.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -09160366 801.68554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -09160367 801.68560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -09160368 801.68560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -09160369 801.68560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -09160370 801.68560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -09160371 801.68566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -09160372 801.68566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -09160373 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -09160374 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -09160375 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -09160376 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -09160377 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -09160378 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -09160379 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -09160380 801.68572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -09160381 801.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -09160382 801.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -09160383 801.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -09160384 801.68579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -09160385 801.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -09160386 801.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -09160387 801.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -09160388 801.68585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -09160389 801.68591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -09160390 801.68591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -09163265 801.72631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51818 -09163266 801.72631836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51818 -09163267 801.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51828 -09163268 801.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51828 -09163269 801.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51838 -09163270 801.72637939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51838 -09163271 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51848 -09163272 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51848 -09163273 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -09163274 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51858 -09163275 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -09163276 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51868 -09163277 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -09163278 801.72644043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51878 -09163279 801.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -09163280 801.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51888 -09163281 801.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -09163282 801.72650146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51898 -09163283 801.72656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -09163284 801.72656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518a8 -09163285 801.72656250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -09163286 801.72662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518b8 -09163287 801.72662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -09163288 801.72662354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518c8 -09163289 801.72668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d8 -09163290 801.72668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518d8 -09163291 801.72668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e8 -09163292 801.72668457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518e8 -09163293 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f8 -09163294 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x518f8 -09163295 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -09163296 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51908 -09163297 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -09163298 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51918 -09163299 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -09163300 801.72674561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51928 -09163301 801.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -09163302 801.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51938 -09163303 801.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -09163304 801.72680664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51948 -09163305 801.72686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -09163306 801.72686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51958 -09163307 801.72686768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -09163308 801.72692871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51968 -09163941 803.21716309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163942 803.21716309 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163943 803.21722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163944 803.21722412 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09163945 803.21728516 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163946 803.21734619 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09163947 803.21740723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163948 803.21740723 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09163949 803.27508545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09163950 803.29656982 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163951 803.29656982 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163952 805.29907227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09163953 805.31976318 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163954 805.31982422 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163955 805.72503662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163956 805.72509766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163957 805.72509766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09163958 805.72509766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09163959 805.72521973 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163960 805.72521973 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09163961 805.72528076 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09163962 805.72528076 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09163963 806.73626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09163964 806.73626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09163965 806.73626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09163966 806.73626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09163967 806.73632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09163968 806.73632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09163969 806.73632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09163970 806.73632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09163971 806.73638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09163972 806.73638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09163973 806.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09163974 806.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09163975 806.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09163976 806.73645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09163977 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09163978 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09163979 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09163980 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09163981 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09163982 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09163983 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09163984 806.73651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09163985 806.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09163986 806.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09163987 806.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09163988 806.73657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09163989 806.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09163990 806.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09163991 806.73663330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09163992 806.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09163993 806.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09163994 806.73669434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09163995 806.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09163996 806.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09163997 806.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09163998 806.73675537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09163999 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09164000 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09164001 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09164002 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09164003 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09164004 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09164005 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09164006 806.73681641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09164007 806.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09164008 806.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09164009 806.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09164010 806.73687744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09164011 806.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09164012 806.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09164013 806.73693848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09164014 806.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09164015 806.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09164016 806.73699951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09164017 806.73706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09164018 806.73706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09164019 806.73706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09164020 806.73706055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09164021 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09164022 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09164023 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09164024 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09164025 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09164026 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09164027 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09164028 806.73712158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09164029 806.73718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09164030 806.73718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09164031 806.73718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09164032 806.73718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09164033 806.73724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09164034 806.73724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09164035 806.73730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09164036 806.73730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09164037 806.73730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09164038 806.73730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09164039 806.73736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09164040 806.73736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09164041 806.73736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09164042 806.73736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09164043 806.73742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09164044 806.73742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09164045 806.73742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09164046 806.73742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09164047 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09164048 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09164049 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09164050 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09164051 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09164052 806.73748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09164053 806.73754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09164054 806.73754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09164055 806.73754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09164056 806.73754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09164057 806.73760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09164058 806.73760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09164059 806.73760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09164060 806.73760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09164061 806.73767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09164062 806.73767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09164063 806.73767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09164064 806.73767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09164065 806.73773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09164066 806.73773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09164067 806.73773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09164068 806.73773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09164069 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09164070 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09164071 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09164072 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09164073 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09164074 806.73779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09164075 806.73785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09164076 806.73785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09164077 806.73785400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09164078 806.73791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09164079 806.73791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09164080 806.73791504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09164081 806.73797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09164082 806.73797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09164083 806.73797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09164084 806.73797607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09164085 806.73803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09164086 806.73803711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09164087 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09164088 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09164089 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09164090 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09164091 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09164092 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09164093 806.73809814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09164094 806.73815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09164095 806.73815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09164096 806.73815918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09164097 806.73822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09164098 806.73822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09164099 806.73822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09164100 806.73822021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09164101 806.73828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09164102 806.73828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09164103 806.73828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09164104 806.73828125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09164105 806.73834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09164106 806.73834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09164107 806.73834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09164108 806.73834229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09164109 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09164110 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09164111 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09164112 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09164113 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09164114 806.73840332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09164115 806.73846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09164116 806.73846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09164117 806.73846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09164118 806.73846436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09164119 806.73852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09164120 806.73852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09164121 806.73852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09164122 806.73852539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09164123 806.73858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09164124 806.73858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09164125 806.73858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09164126 806.73858643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09164127 806.73864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09164128 806.73864746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09164129 806.73870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09164130 806.73870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09164131 806.73870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09164132 806.73870850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09164133 806.73883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09164134 806.73883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09164135 806.73883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09164136 806.73883057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09164137 806.73889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09164138 806.73889160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09164139 806.73895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09164140 806.73895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09164141 806.73895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09164142 806.73895264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09164143 806.73901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09164144 806.73901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09164145 806.73901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09164146 806.73901367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09164147 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09164148 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09164149 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09164150 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09164151 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09164152 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09164153 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09164154 806.73907471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09164155 806.73913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09164156 806.73913574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09164157 806.73919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09164158 806.73919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09164159 806.73919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09164160 806.73919678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09164161 806.73925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09164162 806.73925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09164163 806.73925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09164164 806.73925781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09164165 806.73931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09164166 806.73931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09164167 806.73931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09164168 806.73931885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09164169 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09164170 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09164171 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09164172 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09164173 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09164174 806.73937988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09164175 806.73944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09164176 806.73944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09164177 806.73944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09164178 806.73944092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09164179 806.73950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09164180 806.73950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09164181 806.73950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09164182 806.73950195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09164183 806.73956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09164184 806.73956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09164185 806.73956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09164186 806.73956299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09164187 806.73962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09164188 806.73962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09164189 806.73962402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09164190 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09164191 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09164192 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09164193 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09164194 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09164195 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09164196 806.73968506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09164197 806.73974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09164198 806.73974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09164199 806.73974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09164200 806.73974609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09164201 806.73980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09164202 806.73980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09164203 806.73980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09164204 806.73980713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09164205 806.73986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09164206 806.73986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09164207 806.73986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09164208 806.73986816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09164209 806.73992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09164210 806.73992920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09164211 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09164212 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09164213 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09164214 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09164215 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09164216 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09164217 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09164218 806.73999023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09164219 806.74005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09164220 806.74005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09164221 806.74005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09164222 806.74005127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09164223 806.74011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09164224 806.74011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09164225 806.74011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09164226 806.74011230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09164227 806.74017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09164228 806.74017334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09164229 806.74023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09164230 806.74023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09164231 806.74023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09164232 806.74023438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09164233 806.74029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09164234 806.74029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09164235 806.74029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09164236 806.74029541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09164237 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09164238 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09164239 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09164240 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09164241 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09164242 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09164243 806.74035645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09164244 806.74041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09164245 806.74041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09164246 806.74041748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09164247 806.74047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09164248 806.74047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09164249 806.74047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09164250 806.74047852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09164251 806.74053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09164252 806.74053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09164253 806.74053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09164254 806.74053955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09164255 806.74060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09164256 806.74060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09164257 806.74060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09164258 806.74060059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09164259 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09164260 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09164261 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09164262 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09164263 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09164264 806.74066162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09164265 806.74072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09164266 806.74072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09164267 806.74072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09164268 806.74072266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09164269 806.74078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09164270 806.74078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09164271 806.74078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09164272 806.74078369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09164273 806.74084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09164274 806.74084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09164275 806.74084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09164276 806.74084473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09164277 806.74090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09164278 806.74090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09164279 806.74090576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09164280 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09164281 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09164282 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09164283 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09164284 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09164285 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09164286 806.74096680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09164287 806.74102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09164288 806.74102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09164289 806.74102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09164290 806.74102783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09164291 806.74108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09164292 806.74108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09164293 806.74108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09164294 806.74108887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09164295 806.74114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09164296 806.74114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09164297 806.74114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09164298 806.74114990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09164299 806.74121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09164300 806.74121094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09164301 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09164302 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09164303 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09164304 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09164305 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09164306 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09164307 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09164308 806.74127197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09164309 806.74133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09164310 806.74133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09164311 806.74133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09164312 806.74133301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09164313 806.74139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09164314 806.74139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09164315 806.74139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09164316 806.74139404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09164317 806.74145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09164318 806.74145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09164319 806.74145508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09164320 806.74151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09164321 806.74151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09164322 806.74151611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09164323 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09164324 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09164325 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09164326 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09164327 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09164328 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09164329 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09164330 806.74157715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09164331 806.74163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09164332 806.74163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09164333 806.74163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09164334 806.74163818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09164335 806.74169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09164336 806.74169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09164337 806.74169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09164338 806.74169922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09164339 806.74176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09164340 806.74176025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09164341 806.74182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09164342 806.74182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09164343 806.74182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09164344 806.74182129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09164345 806.74188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09164346 806.74188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09164347 806.74188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09164348 806.74188232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09164349 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09164350 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09164351 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09164352 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09164353 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09164354 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09164355 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09164356 806.74194336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09164357 806.74200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09164358 806.74200439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09164359 806.74206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09164360 806.74206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09164361 806.74206543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09164362 806.74212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09164363 806.74212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09164364 806.74212646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09164365 806.74218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09164366 806.74218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09164367 806.74218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09164368 806.74218750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09164369 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09164370 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09164371 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09164372 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09164373 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09164374 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09164375 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09164376 806.74224854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09164377 806.74230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09164378 806.74230957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09164379 806.74237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09164380 806.74237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09164381 806.74237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09164382 806.74237061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09164383 806.74243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09164384 806.74243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09164385 806.74243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09164386 806.74243164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09164387 806.74249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09164388 806.74249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09164389 806.74249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09164390 806.74249268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09164391 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09164392 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09164393 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09164394 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09164395 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09164396 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09164397 806.74255371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09164398 806.74261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09164399 806.74261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09164400 806.74261475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09164401 806.74267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09164402 806.74267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09164403 806.74267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09164404 806.74267578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09164405 806.74273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09164406 806.74273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09164407 806.74273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09164408 806.74273682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09164409 806.74279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09164410 806.74279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09164411 806.74279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09164412 806.74279785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09164413 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09164414 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09164415 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09164416 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09164417 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09164418 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09164419 806.74285889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09164420 806.74291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09164421 806.74291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09164422 806.74291992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09164423 806.74298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09164424 806.74298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09164425 806.74298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09164426 806.74298096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09164427 806.74304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09164428 806.74304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09164429 806.74304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09164430 806.74304199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09164431 806.74310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09164432 806.74310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09164433 806.74310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09164434 806.74310303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09164435 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09164436 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09164437 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09164438 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09164439 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09164440 806.74316406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09164441 806.74322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09164442 806.74322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09164443 806.74322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09164444 806.74322510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09164445 806.74328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09164446 806.74328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09164447 806.74328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09164448 806.74328613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09164449 806.74334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09164450 806.74334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09164451 806.74334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09164452 806.74334717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09164453 806.74340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09164454 806.74340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09164455 806.74340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09164456 806.74340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09164457 806.74346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09164458 806.74346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09164459 806.74346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09164460 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09164461 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09164462 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09164463 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09164464 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09164465 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09164466 806.74353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09164467 806.74359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09164468 806.74359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09164469 806.74359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09164470 806.74359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09164471 806.74365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09164472 806.74365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09164473 806.74365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09164474 806.74365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09164475 806.74371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09164476 806.74371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09164477 806.74371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09164478 806.74371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09164479 806.74377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09164480 806.74377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09164481 806.74377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09164482 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09164483 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09164484 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09164485 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09164486 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09164487 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09164488 806.74383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09164489 806.74389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09164490 806.74389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09164491 806.74389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09164492 806.74389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09164493 806.74395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09164494 806.74395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09164495 806.74395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09164496 806.74395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09164497 806.74401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09164498 806.74401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09164499 806.74401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09164500 806.74401855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09164501 806.74407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09164502 806.74407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09164503 806.74407959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09164504 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09164505 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09164506 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09164507 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09164508 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09164509 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09164510 806.74414063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09164511 806.74420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09164512 806.74420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09164513 806.74420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09164514 806.74420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09164515 806.74426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09164516 806.74426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09164517 806.74426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09164518 806.74426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09164519 806.74432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09164520 806.74432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09164521 806.74432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09164522 806.74432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09164523 806.74438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09164524 806.74438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09164525 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09164526 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09164527 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09164528 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09164529 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09164530 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09164531 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09164532 806.74444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09164533 806.74450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09164534 806.74450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09164535 806.74450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09164536 806.74450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09164537 806.74456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09164538 806.74456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09164539 806.74456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09164540 806.74462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09164541 806.74462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09164542 806.74462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09164543 806.74468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09164544 806.74468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09164545 806.74468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09164546 806.74468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09164547 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09164548 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09164549 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09164550 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09164551 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09164552 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09164553 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09164554 806.74475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09164555 806.74481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09164556 806.74481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09164557 806.74487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09164558 806.74487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09164559 806.74487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09164560 806.74487305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09164561 806.74493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09164562 806.74493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09164563 806.74493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09164564 806.74493408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09164565 806.74499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09164566 806.74499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09164567 806.74499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09164568 806.74499512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09164569 806.74505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09164570 806.74505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09164571 806.74505615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09164572 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09164573 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09164574 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09164575 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09164576 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09164577 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09164578 806.74511719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09164579 806.74517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09164580 806.74517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09164581 806.74517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09164582 806.74517822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09164583 806.74523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09164584 806.74523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09164585 806.74523926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09164586 806.74530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09164587 806.74530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09164588 806.74530029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09164589 806.74536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09164590 806.74536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09164591 806.74536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09164592 806.74536133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09164593 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09164594 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09164595 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09164596 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09164597 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09164598 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09164599 806.74542236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09164600 806.74548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09164601 806.74548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09164602 806.74548340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09164603 806.74554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09164604 806.74554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09164605 806.74554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09164606 806.74554443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09164607 806.74560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09164608 806.74560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09164609 806.74560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09164610 806.74560547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09164611 806.74566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09164612 806.74566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09164613 806.74566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09164614 806.74566650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09164615 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09164616 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09164617 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09164618 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09164619 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09164620 806.74572754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09164621 806.74578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09164622 806.74578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09164623 806.74578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09164624 806.74578857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09164625 806.74584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09164626 806.74584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09164627 806.74584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09164628 806.74584961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09164629 806.74591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09164630 806.74591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09164631 806.74591064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09164632 806.74597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09164633 806.74597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09164634 806.74597168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09164635 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09164636 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09164637 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09164638 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09164639 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09164640 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09164641 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09164642 806.74603271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09164643 806.74609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09164644 806.74609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09164645 806.74609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09164646 806.74609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09164647 806.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09164648 806.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09164649 806.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09164650 806.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09164651 806.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09164652 806.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09164653 806.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09164654 806.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09164655 806.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09164656 806.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09164657 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09164658 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09164659 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09164660 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09164661 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09164662 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09164663 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09164664 806.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09164665 806.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09164666 806.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09164667 806.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09164668 806.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09164669 806.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09164670 806.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09164671 806.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09164672 806.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09164673 806.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09164674 806.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09164675 806.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09164676 806.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09164677 806.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09164678 806.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09164679 806.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09164680 806.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09164681 806.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09164682 806.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09164683 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09164684 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09164685 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09164686 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09164687 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09164688 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09164689 806.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09164690 806.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09164691 806.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09164692 806.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09164693 806.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09164694 806.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09164695 806.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09164696 806.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09164697 806.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09164698 806.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09164699 806.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09164700 806.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09164701 806.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09164702 806.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09164703 806.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09164704 806.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09164705 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09164706 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09164707 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09164708 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09164709 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09164710 806.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09164711 806.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09164712 806.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09164713 806.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09164714 806.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09164715 806.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09164716 806.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09164717 806.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09164718 806.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09164719 806.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09164720 806.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09164721 806.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09164722 806.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09164723 806.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09164724 806.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09164725 806.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09164726 806.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09164727 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09164728 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09164729 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09164730 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09164731 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09164732 806.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09164733 806.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09164734 806.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09164735 806.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09164736 806.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09164737 806.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09164738 806.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09164739 806.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09164740 806.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09164741 806.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09164742 806.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09164743 806.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09164744 806.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09164745 806.74755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09164746 806.74755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09164747 806.74755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09164748 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09164749 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09164750 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09164751 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09164752 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09164753 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09164754 806.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09164755 806.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09164756 806.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09164757 806.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09164758 806.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09164759 806.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09164760 806.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09164761 806.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09164762 806.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09164763 806.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09164764 806.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09164765 806.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09164766 806.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09164767 806.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09164768 806.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09164769 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09164770 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09164771 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09164772 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09164773 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09164774 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09164775 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09164776 806.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09164777 806.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09164778 806.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09164779 806.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09164780 806.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09164781 806.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09164782 806.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09164783 806.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09164784 806.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09164785 806.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09164786 806.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09164787 806.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09164788 806.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09164789 806.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09164790 806.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09164791 806.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09164792 806.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09164793 806.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09164794 806.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09164795 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09164796 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09164797 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09164798 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09164799 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09164800 806.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09164801 806.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09164802 806.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09164803 806.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09164804 806.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09164805 806.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09164806 806.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09164807 806.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09164808 806.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09164809 806.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09164810 806.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09164811 806.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09164812 806.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09164813 806.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09164814 806.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09164815 806.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09164816 806.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09164817 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09164818 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09164819 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09164820 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09164821 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09164822 806.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09164823 806.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09164824 806.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09164825 806.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09164826 806.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09164827 806.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09164828 806.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09164829 806.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09164830 806.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09164831 806.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09164832 806.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09164833 806.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09164834 806.74884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09164835 806.74884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09164836 806.74884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09164837 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09164838 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09164839 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09164840 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09164841 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09164842 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09164843 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09164844 806.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09164845 806.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09164846 806.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09164847 806.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09164848 806.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09164849 806.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09164850 806.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09164851 806.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09164852 806.74908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09164853 806.74908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09164854 806.74908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09164855 806.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09164856 806.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09164857 806.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09164858 806.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09164859 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09164860 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09164861 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09164862 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09164863 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09164864 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09164865 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09164866 806.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09164867 806.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09164868 806.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09164869 806.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09164870 806.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09164871 806.74932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09164872 806.74932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09164873 806.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09164874 806.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09164875 806.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09164876 806.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09164877 806.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09164878 806.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09164879 806.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09164880 806.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09164881 806.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09164882 806.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09164883 806.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09164884 806.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09164885 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09164886 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09164887 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09164888 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09164889 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09164890 806.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09164891 806.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09164892 806.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09164893 806.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09164894 806.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09164895 806.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09164896 806.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09164897 806.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09164898 806.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09164899 806.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09164900 806.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09164901 806.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09164902 806.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09164903 806.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09164904 806.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09164905 806.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09164906 806.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09164907 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09164908 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09164909 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09164910 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09164911 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09164912 806.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09164913 806.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09164914 806.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09164915 806.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09164916 806.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09164917 806.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09164918 806.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09164919 806.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09164920 806.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09164921 806.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09164922 806.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09164923 806.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09164924 806.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09164925 806.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09164926 806.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09164927 806.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09164928 806.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09164929 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09164930 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09164931 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09164932 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09164933 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09164934 806.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09164935 806.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09164936 806.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09164937 806.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09164938 806.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09164939 806.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09164940 806.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09164941 806.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09164942 806.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09164943 806.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09164944 806.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09164945 806.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09164946 806.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09164947 806.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09164948 806.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09164949 806.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09164950 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09164951 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09164952 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09164953 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09164954 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09164955 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09164956 806.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09164957 806.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09164958 806.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09164959 806.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09164960 806.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09164961 806.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09164962 806.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09164963 806.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09164964 806.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09164965 806.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09164966 806.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09164967 806.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09164968 806.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09164969 806.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09164970 806.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09164971 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09164972 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09164973 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09164974 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09164975 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09164976 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09164977 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09164978 806.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09164979 806.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09164980 806.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09164981 806.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09164982 806.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09164983 806.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09164984 806.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09164985 806.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09164986 806.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09164987 806.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09164988 806.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09164989 806.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09164990 806.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09164991 806.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09164992 806.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09164993 806.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09164994 806.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09164995 806.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09164996 806.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09164997 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09164998 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09164999 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09165000 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09165001 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09165002 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09165003 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09165004 806.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09165005 806.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09165006 806.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09165007 806.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09165008 806.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09165009 806.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09165010 806.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09165011 806.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09165012 806.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09165013 806.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09165014 806.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09165015 806.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09165016 806.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09165017 806.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09165018 806.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09165019 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09165020 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09165021 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09165022 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09165023 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09165024 806.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09165025 806.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09165026 806.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09165027 806.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09165028 806.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09165029 806.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09165030 806.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09165031 806.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09165032 806.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09165033 806.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09165034 806.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09165035 806.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09165036 806.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09165037 806.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09165038 806.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09165039 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09165040 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09165041 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09165042 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09165043 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09165044 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09165045 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09165046 806.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09165047 806.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09165048 806.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09165049 806.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09165050 806.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09165051 806.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09165052 806.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09165053 806.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09165054 806.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09165055 806.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09165056 806.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09165057 806.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09165058 806.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09165059 806.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09165060 806.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09165061 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09165062 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09165063 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09165064 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09165065 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09165066 806.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09165067 806.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09165068 806.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09165069 806.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09165070 806.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09165071 806.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09165072 806.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09165073 806.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09165074 806.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09165075 806.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09165076 806.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09165077 806.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09165078 806.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09165079 806.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09165080 806.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09165081 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09165082 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09165083 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09165084 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09165085 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09165086 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09165087 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09165088 806.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09165089 806.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09165090 806.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09165091 806.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09165092 806.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09165093 806.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09165094 806.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09165095 806.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09165096 806.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09165097 806.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09165098 806.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09165099 806.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09165100 806.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09165101 806.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09165102 806.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09165103 806.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09165104 806.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09165105 806.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09165106 806.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09165107 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09165108 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09165109 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09165110 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09165111 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09165112 806.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09165113 806.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09165114 806.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09165115 806.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09165116 806.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09165117 806.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09165118 806.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09165119 806.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09165120 806.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09165121 806.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09165122 806.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09165123 806.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09165124 806.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09165125 806.75299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09165126 806.75299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09165127 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09165128 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09165129 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09165130 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09165131 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09165132 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09165133 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09165134 806.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09165135 806.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09165136 806.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09165137 806.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09165138 806.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09165139 806.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09165140 806.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09165141 806.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09165142 806.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09165143 806.75323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09165144 806.75323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09165145 806.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09165146 806.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09165147 806.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09165148 806.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09165149 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09165150 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09165151 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09165152 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09165153 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09165154 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09165155 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09165156 806.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09165157 806.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09165158 806.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09165159 806.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09165160 806.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09165161 806.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09165162 806.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09165163 806.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09165164 806.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09165165 806.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09165166 806.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09165167 806.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09165168 806.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09165169 806.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09165170 806.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09165171 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09165172 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09165173 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09165174 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09165175 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09165176 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09165177 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09165178 806.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09165179 806.75372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09165180 806.75372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09165181 806.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09165182 806.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09165183 806.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09165184 806.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09165185 806.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09165186 806.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09165187 806.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09165188 806.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09165189 806.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09165190 806.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09165191 806.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09165192 806.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09165193 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09165194 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09165195 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09165196 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09165197 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09165198 806.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09165199 806.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09165200 806.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09165201 806.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09165202 806.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09165203 806.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09165204 806.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09165205 806.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09165206 806.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09165207 806.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09165208 806.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09165209 806.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09165210 806.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09165211 806.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09165212 806.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09165213 806.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09165214 806.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09165215 806.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09165216 806.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09165217 806.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09165218 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09165219 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09165220 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09165221 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09165222 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09165223 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09165224 806.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09165225 806.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09165226 806.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09165227 806.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09165228 806.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09165229 806.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09165230 806.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09165231 806.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09165232 806.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09165233 806.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09165234 806.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09165235 806.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09165236 806.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09165237 806.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09165238 806.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09165239 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09165240 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09165241 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09165242 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09165243 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09165244 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09165245 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09165246 806.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09165247 806.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09165248 806.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09165249 806.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09165250 806.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09165251 806.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09165252 806.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09165253 806.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09165254 806.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09165255 806.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09165256 806.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09165257 806.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09165258 806.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09165259 806.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09165260 806.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09165261 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09165262 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09165263 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09165264 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09165265 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09165266 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09165267 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09165268 806.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09165269 806.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09165270 806.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09165271 806.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09165272 806.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09165273 806.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09165274 806.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09165275 806.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09165276 806.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09165277 806.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09165278 806.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09165279 806.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09165280 806.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09165281 806.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09165282 806.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09165283 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09165284 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09165285 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09165286 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09165287 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09165288 806.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09165289 806.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09165290 806.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09165291 806.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09165292 806.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09165293 806.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09165294 806.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09165295 806.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09165296 806.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09165297 806.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09165298 806.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09165299 806.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09165300 806.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09165301 806.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09165302 806.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09165303 806.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09165304 806.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09165305 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09165306 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09165307 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09165308 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09165309 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09165310 806.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09165311 806.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09165312 806.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09165313 806.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09165314 806.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09165315 806.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09165316 806.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09165317 806.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09165318 806.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09165319 806.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09165320 806.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09165321 806.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09165322 806.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09165323 806.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09165324 806.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09165325 806.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09165326 806.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09165327 806.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09165328 806.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09165329 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09165330 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09165331 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09165332 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09165333 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09165334 806.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09165335 806.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09165336 806.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09165337 806.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09165338 806.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09165339 806.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09165340 806.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09165341 806.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09165342 806.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09165343 806.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09165344 806.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09165345 806.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09165346 806.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09165347 806.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09165348 806.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09165349 806.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09165350 806.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09165351 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09165352 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09165353 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09165354 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09165355 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09165356 806.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09165357 806.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09165358 806.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09165359 806.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09165360 806.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09165361 806.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09165362 806.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09165363 806.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09165364 806.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09165365 806.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09165366 806.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09165367 806.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09165368 806.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09165369 806.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09165370 806.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09165371 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09165372 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09165373 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09165374 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09165375 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09165376 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09165377 806.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09165378 806.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09165379 806.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09165380 806.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09165381 806.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09165382 806.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09165383 806.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09165384 806.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09165385 806.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09165386 806.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09165387 806.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09165388 806.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09165389 806.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09165390 806.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09165391 806.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09165392 806.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09165393 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09165394 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09165395 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09165396 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09165397 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09165398 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09165399 806.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09165400 806.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09165401 806.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09165402 806.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09165403 806.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09165404 806.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09165405 806.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09165406 806.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09165407 806.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09165408 806.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09165409 806.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09165410 806.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09165411 806.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09165412 806.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09165413 806.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09165414 806.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09165415 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09165416 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09165417 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09165418 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09165419 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09165420 806.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09165421 806.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09165422 806.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09165423 806.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09165424 806.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09165425 806.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09165426 806.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09165427 806.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09165428 806.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09165429 806.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09165430 806.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09165431 806.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09165432 806.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09165433 806.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09165434 806.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09165435 806.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09165436 806.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09165437 806.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09165438 806.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09165439 806.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09165440 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09165441 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09165442 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09165443 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09165444 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09165445 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09165446 806.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09165447 806.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09165448 806.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09165449 806.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09165450 806.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09165451 806.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09165452 806.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09165453 806.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09165454 806.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09165455 806.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09165456 806.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09165457 806.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09165458 806.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09165459 806.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09165460 806.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09165461 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09165462 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09165463 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09165464 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09165465 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09165466 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09165467 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09165468 806.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09165469 806.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09165470 806.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09165471 806.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09165472 806.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09165473 806.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09165474 806.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09165475 806.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09165476 806.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09165477 806.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09165478 806.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09165479 806.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09165480 806.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09165481 806.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09165482 806.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09165483 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09165484 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09165485 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09165486 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09165487 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09165488 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09165489 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09165490 806.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09165491 806.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09165492 806.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09165493 806.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09165494 806.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09165495 806.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09165496 806.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09165497 806.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09165498 806.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09165499 806.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09165500 806.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09165501 806.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09165502 806.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09165503 806.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09165504 806.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09165505 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09165506 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09165507 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09165508 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09165509 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09165510 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09165511 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09165512 806.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09165513 806.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09165514 806.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09165515 806.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09165516 806.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09165517 806.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09165518 806.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09165519 806.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09165520 806.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09165521 806.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09165522 806.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09165523 806.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09165524 806.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09165525 806.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09165526 806.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09165527 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09165528 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09165529 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09165530 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09165531 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09165532 806.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09165533 806.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09165534 806.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09165535 806.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09165536 806.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09165537 806.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09165538 806.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09165539 806.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09165540 806.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09165541 806.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09165542 806.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09165543 806.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09165544 806.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09165545 806.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09165546 806.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09165547 806.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09165548 806.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09165549 806.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09165550 806.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09165551 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09165552 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09165553 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09165554 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09165555 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09165556 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09165557 806.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09165558 806.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09165559 806.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09165560 806.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09165561 806.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09165562 806.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09165563 806.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09165564 806.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09165565 806.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09165566 806.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09165567 806.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09165568 806.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09165569 806.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09165570 806.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09165571 806.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09165572 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09165573 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09165574 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09165575 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09165576 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09165577 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09165578 806.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09165579 806.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09165580 806.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09165581 806.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09165582 806.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09165583 806.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09165584 806.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09165585 806.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09165586 806.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09165587 806.75958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09165588 806.75958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09165589 806.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09165590 806.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09165591 806.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09165592 806.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09165593 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09165594 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09165595 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09165596 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09165597 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09165598 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09165599 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09165600 806.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09165601 806.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09165602 806.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09165603 806.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09165604 806.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09165605 806.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09165606 806.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09165607 806.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09165608 806.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09165609 806.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09165610 806.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09165611 806.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09165612 806.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09165613 806.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09165614 806.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09165615 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09165616 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09165617 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09165618 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09165619 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09165620 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09165621 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09165622 806.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09165623 806.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09165624 806.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09165625 806.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09165626 806.76013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09165627 806.76013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09165628 806.76013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09165629 806.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09165630 806.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09165631 806.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09165632 806.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09165633 806.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09165634 806.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09165635 806.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09165636 806.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09165637 806.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09165638 806.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09165639 806.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09165640 806.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09165641 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09165642 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09165643 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09165644 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09165645 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09165646 806.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09165647 806.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09165648 806.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09165649 806.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09165650 806.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09165651 806.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09165652 806.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09165653 806.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09165654 806.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09165655 806.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09165656 806.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09165657 806.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09165658 806.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09165659 806.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09165660 806.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09165661 806.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09165662 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09165663 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09165664 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09165665 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09165666 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09165667 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09165668 806.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09165669 806.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09165670 806.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09165671 806.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09165672 806.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09165673 806.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09165674 806.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09165675 806.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09165676 806.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09165677 806.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09165678 806.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09165679 806.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09165680 806.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09165681 806.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09165682 806.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09165683 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09165684 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09165685 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09165686 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09165687 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09165688 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09165689 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09165690 806.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09165691 806.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09165692 806.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09165693 806.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09165694 806.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09165695 806.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09165696 806.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09165697 806.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09165698 806.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09165699 806.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09165700 806.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09165701 806.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09165702 806.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09165703 806.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09165704 806.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09165705 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09165706 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09165707 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09165708 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09165709 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09165710 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09165711 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09165712 806.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09165713 806.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09165714 806.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09165715 806.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09165716 806.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09165717 806.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09165718 806.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09165719 806.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09165720 806.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09165721 806.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09165722 806.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09165723 806.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09165724 806.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09165725 806.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09165726 806.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09165727 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09165728 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09165729 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09165730 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09165731 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09165732 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09165733 806.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09165734 806.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09165735 806.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09165736 806.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09165737 806.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09165738 806.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09165739 806.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09165740 806.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09165741 806.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09165742 806.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09165743 806.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09165744 806.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09165745 806.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09165746 806.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09165747 806.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09165748 806.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09165749 806.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09165750 806.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09165751 806.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09165752 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09165753 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09165754 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09165755 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09165756 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09165757 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09165758 806.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09165759 806.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09165760 806.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09165761 806.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09165762 806.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09165763 806.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09165764 806.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09165765 806.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09165766 806.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09165767 806.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09165768 806.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09165769 806.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09165770 806.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09165771 806.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09165772 806.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09165773 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09165774 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09165775 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09165776 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09165777 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09165778 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09165779 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09165780 806.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09165781 806.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09165782 806.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09165783 806.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09165784 806.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09165785 806.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09165786 806.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09165787 806.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09165788 806.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09165789 806.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09165790 806.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09165791 806.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09165792 806.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09165793 806.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09165794 806.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09165795 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09165796 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09165797 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09165798 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09165799 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09165800 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09165801 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09165802 806.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09165803 806.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09165804 806.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09165805 806.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09165806 806.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09165807 806.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09165808 806.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09165809 806.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09165810 806.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09165811 806.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09165812 806.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09165813 806.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09165814 806.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09165815 806.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09165816 806.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09165817 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09165818 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09165819 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09165820 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09165821 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09165822 806.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09165823 806.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09165824 806.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09165825 806.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09165826 806.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09165827 806.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09165828 806.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09165829 806.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09165830 806.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09165831 806.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09165832 806.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09165833 806.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09165834 806.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09165835 806.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09165836 806.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09165837 806.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09165838 806.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09165839 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09165840 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09165841 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09165842 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09165843 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09165844 806.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09165845 806.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09165846 806.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09165847 806.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09165848 806.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09165849 806.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09165850 806.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09165851 806.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09165852 806.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09165853 806.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09165854 806.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09165855 806.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09165856 806.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09165857 806.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09165858 806.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09165859 806.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09165860 806.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09165861 806.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09165862 806.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09165863 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09165864 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09165865 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09165866 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09165867 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09165868 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09165869 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09165870 806.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09165871 806.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09165872 806.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09165873 806.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09165874 806.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09165875 806.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09165876 806.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09165877 806.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09165878 806.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09165879 806.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09165880 806.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09165881 806.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09165882 806.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09165883 806.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09165884 806.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09165885 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09165886 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09165887 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09165888 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09165889 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09165890 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09165891 806.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09165892 806.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09165893 806.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09165894 806.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09165895 806.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09165896 806.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09165897 806.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09165898 806.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09165899 806.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09165900 806.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09165901 806.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09165902 806.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09165903 806.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09165904 806.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09165905 806.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09165906 806.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09165907 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09165908 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09165909 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09165910 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09165911 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09165912 806.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09165913 806.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09165914 806.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09165915 806.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09165916 806.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09165917 806.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09165918 806.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09165919 806.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09165920 806.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09165921 806.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09165922 806.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09165923 806.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09165924 806.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09165925 806.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09165926 806.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09165927 806.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09165928 806.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09165929 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09165930 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09165931 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09165932 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09165933 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09165934 806.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09165935 806.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09165936 806.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09165937 806.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09165938 806.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09165939 806.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09165940 806.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09165941 806.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09165942 806.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09165943 806.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09165944 806.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09165945 806.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09165946 806.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09165947 806.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09165948 806.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09165949 806.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09165950 806.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09165951 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09165952 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09165953 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09165954 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09165955 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09165956 806.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09165957 806.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09165958 806.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09165959 806.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09165960 806.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09165961 806.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09165962 806.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09165963 806.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09165964 806.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09165965 806.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09165966 806.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09165967 806.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09165968 806.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09165969 806.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09165970 806.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09165971 806.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09165972 806.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09165973 806.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09165974 806.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09165975 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09165976 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09165977 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09165978 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09165979 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09165980 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09165981 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09165982 806.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09165983 806.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09165984 806.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09165985 806.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09165986 806.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09165987 806.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09165988 806.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09165989 806.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09165990 806.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09165991 806.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09165992 806.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09165993 806.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09165994 806.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09165995 806.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09165996 806.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09165997 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09165998 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09165999 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09166000 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09166001 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09166002 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09166003 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09166004 806.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09166005 806.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09166006 806.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09166007 806.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09166008 806.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09166009 806.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09166010 806.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09166011 806.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09166012 806.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09166013 806.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09166014 806.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09166015 806.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09166016 806.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09166017 806.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09166018 806.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09166019 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09166020 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09166021 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09166022 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09166023 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09166024 806.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09166025 806.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09166026 806.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09166027 806.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09166028 806.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09166029 806.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09166030 806.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09166031 806.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09166032 806.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09166033 806.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09166034 806.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09166035 806.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09166036 806.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09166037 806.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09166038 806.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09166039 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09166040 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09166041 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09166042 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09166043 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09166044 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09166045 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09166046 806.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09166047 806.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09166048 806.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09166049 806.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09166050 806.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09166051 806.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09166052 806.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09166053 806.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09166054 806.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09166055 806.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09166056 806.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09166057 806.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09166058 806.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09166059 806.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09166060 806.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09166061 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09166062 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09166063 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09166064 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09166065 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09166066 806.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09166067 806.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09166068 806.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09166069 806.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09166070 806.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09166071 806.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09166072 806.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09166073 806.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09166074 806.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09166075 806.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09166076 806.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09166077 806.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09166078 806.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09166079 806.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09166080 806.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09166081 806.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09166082 806.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09166083 806.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09166084 806.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09166085 806.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09166086 806.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09166087 806.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09166088 806.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09166089 806.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09166090 806.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09166091 806.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09166092 806.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09166093 806.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09166094 806.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09166095 806.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09166096 806.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09166097 806.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09166098 806.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09166099 806.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09166100 806.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09166101 806.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09166102 806.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09166103 806.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09166104 806.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09166105 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09166106 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09166107 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09166108 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09166109 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09166110 806.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09166111 806.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09166112 806.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09166113 806.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09166114 806.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09166115 806.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09166116 806.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09166117 806.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09166118 806.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09166119 806.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09166120 806.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09166121 806.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09166122 806.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09166123 806.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09166124 806.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09166125 806.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09166126 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09166127 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09166128 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09166129 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09166130 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09166131 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09166132 806.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09166133 806.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09166134 806.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09166135 806.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09166136 806.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09166137 806.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09166138 806.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09166139 806.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09166140 806.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09166141 806.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09166142 806.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09166143 806.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09166144 806.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09166145 806.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09166146 806.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09166147 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09166148 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09166149 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09166150 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09166151 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09166152 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09166153 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09166154 806.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09166155 806.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09166156 806.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09166157 806.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09166158 806.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09166159 806.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09166160 806.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09166161 806.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09166162 806.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09166163 806.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09166164 806.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09166165 806.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09166166 806.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09166167 806.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09166168 806.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09166169 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09166170 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09166171 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09166172 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09166173 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09166174 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09166175 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09166176 806.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09166177 806.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09166178 806.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09166179 806.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09166180 806.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09166181 806.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09166182 806.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09166183 806.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09166184 806.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09166185 806.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09166186 806.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09166187 806.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09166188 806.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09166189 806.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09166190 806.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09166191 806.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09166192 806.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09166193 806.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09166194 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09166195 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09166196 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09166197 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09166198 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09166199 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09166200 806.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09166201 806.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09166202 806.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09166203 806.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09166204 806.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09166205 806.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09166206 806.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09166207 806.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09166208 806.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09166209 806.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09166210 806.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09166211 806.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09166212 806.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09166213 806.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09166214 806.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09166215 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09166216 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09166217 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09166218 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09166219 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09166220 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09166221 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09166222 806.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09166223 806.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09166224 806.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09166225 806.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09166226 806.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09166227 806.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09166228 806.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09166229 806.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09166230 806.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09166231 806.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09166232 806.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09166233 806.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09166234 806.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09166235 806.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09166236 806.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09166237 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09166238 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09166239 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09166240 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09166241 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09166242 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09166243 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09166244 806.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09166245 806.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09166246 806.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09166247 806.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09166248 806.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09166249 806.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09166250 806.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09166251 806.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09166252 806.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09166253 806.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09166254 806.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09166255 806.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09166256 806.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09166257 806.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09166258 806.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09166259 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09166260 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09166261 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09166262 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09166263 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09166264 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09166265 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09166266 806.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09166267 806.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09166268 806.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09166269 806.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09166270 806.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09166271 806.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09166272 806.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09166273 806.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09166274 806.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09166275 806.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09166276 806.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09166277 806.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09166278 806.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09166279 806.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09166280 806.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09166281 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09166282 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09166283 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09166284 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09166285 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09166286 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09166287 806.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09166288 806.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09166289 806.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09166290 806.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09166291 806.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09166292 806.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09166293 806.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09166294 806.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09166295 806.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09166296 806.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09166297 806.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09166298 806.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09166299 806.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09166300 806.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09166301 806.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09166302 806.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09166303 806.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09166304 806.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09166305 806.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09166306 806.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09166307 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09166308 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09166309 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09166310 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09166311 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09166312 806.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09166313 806.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09166314 806.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09166315 806.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09166316 806.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09166317 806.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09166318 806.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09166319 806.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09166320 806.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09166321 806.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09166322 806.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09166323 806.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09166324 806.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09166325 806.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09166326 806.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09166327 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09166328 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09166329 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09166330 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09166331 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09166332 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09166333 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09166334 806.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09166335 806.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09166336 806.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09166337 806.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09166338 806.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09166339 806.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09166340 806.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09166341 806.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09166342 806.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09166343 806.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09166344 806.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09166345 806.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09166346 806.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09166347 806.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09166348 806.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09166349 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09166350 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09166351 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09166352 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09166353 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09166354 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09166355 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09166356 806.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09166357 806.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09166358 806.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09166359 806.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09166360 806.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09166361 806.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09166362 806.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09166363 806.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09166364 806.77069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09166365 806.77069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09166366 806.77069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09166367 806.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09166368 806.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09166369 806.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09166370 806.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09166371 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09166372 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09166373 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09166374 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09166375 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09166376 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09166377 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09166378 806.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09166379 806.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09166380 806.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09166381 806.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09166382 806.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09166383 806.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09166384 806.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09166385 806.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09166386 806.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09166387 806.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09166388 806.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09166389 806.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09166390 806.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09166391 806.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09166392 806.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09166393 806.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09166394 806.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09166395 806.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09166396 806.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09166397 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09166398 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09166399 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09166400 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09166401 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09166402 806.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09166403 806.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09166404 806.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09166405 806.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09166406 806.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09166407 806.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09166408 806.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09166409 806.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09166410 806.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09166411 806.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09166412 806.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09166413 806.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09166414 806.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09166415 806.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09166416 806.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09166417 806.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09166418 806.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09166419 806.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09166420 806.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09166421 806.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09166422 806.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09166423 806.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09166424 806.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09166425 806.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09166426 806.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09166427 806.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09166428 806.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09166429 806.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09166430 806.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09166431 806.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09166432 806.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09166433 806.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09166434 806.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09166435 806.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09166436 806.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09166437 806.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09166438 806.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09166439 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09166440 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09166441 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09166442 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09166443 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09166444 806.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09166445 806.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09166446 806.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09166447 806.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09166448 806.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09166449 806.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09166450 806.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09166451 806.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09166452 806.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09166453 806.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09166454 806.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09166455 806.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09166456 806.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09166457 806.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09166458 806.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09166459 806.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09166460 806.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09166461 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09166462 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09166463 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09166464 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09166465 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09166466 806.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09166467 806.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09166468 806.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09166469 806.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09166470 806.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09166471 806.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09166472 806.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09166473 806.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09166474 806.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09166475 806.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09166476 806.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09166477 806.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09166478 806.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09166479 806.77233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09166480 806.77233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09166481 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09166482 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09166483 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09166484 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09166485 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09166486 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09166487 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09166488 806.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09166489 806.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09166490 806.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09166491 806.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09166492 806.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09166493 806.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09166494 806.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09166495 806.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09166496 806.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09166497 806.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09166498 806.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09166499 806.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09166500 806.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09166501 806.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09166502 806.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09166503 806.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09166504 806.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09166505 806.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09166506 806.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09166507 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09166508 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09166509 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09166510 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09166511 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09166512 806.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09166513 806.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09166514 806.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09166515 806.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09166516 806.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09166517 806.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09166518 806.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09166519 806.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09166520 806.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09166521 806.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09166522 806.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09166523 806.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09166524 806.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09166525 806.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09166526 806.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09166527 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09166528 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09166529 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09166530 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09166531 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09166532 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09166533 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09166534 806.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09166535 806.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09166536 806.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09166537 806.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09166538 806.77319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09166539 806.77319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09166540 806.77319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09166541 806.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09166542 806.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09166543 806.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09166544 806.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09166545 806.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09166546 806.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09166547 806.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09166548 806.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09166549 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09166550 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09166551 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09166552 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09166553 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09166554 806.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09166555 806.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09166556 806.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09166557 806.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09166558 806.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09166559 806.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09166560 806.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09166561 806.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09166562 806.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09166563 806.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09166564 806.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09166565 806.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09166566 806.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09166567 806.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09166568 806.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09166569 806.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09166570 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09166571 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09166572 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09166573 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09166574 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09166575 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09166576 806.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09166577 806.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09166578 806.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09166579 806.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09166580 806.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09166581 806.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09166582 806.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09166583 806.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09166584 806.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09166585 806.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09166586 806.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09166587 806.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09166588 806.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09166589 806.77392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09166590 806.77392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09166591 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09166592 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09166593 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09166594 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09166595 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09166596 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09166597 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09166598 806.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09166599 806.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09166600 806.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09166601 806.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09166602 806.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09166603 806.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09166604 806.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09166605 806.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09166606 806.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09166607 806.77416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09166608 806.77416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09166609 806.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09166610 806.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09166611 806.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09166612 806.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09166613 806.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09166614 806.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09166615 806.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09166616 806.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09166617 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09166618 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09166619 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09166620 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09166621 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09166622 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09166623 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09166624 806.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09166625 806.77441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09166626 806.77441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09166627 806.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09166628 806.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09166629 806.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09166630 806.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09166631 806.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09166632 806.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09166633 806.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09166634 806.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09166635 806.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09166636 806.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09166637 806.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09166638 806.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09166639 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09166640 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09166641 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09166642 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09166643 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09166644 806.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09166645 806.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09166646 806.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09166647 806.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09166648 806.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09166649 806.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09166650 806.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09166651 806.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09166652 806.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09166653 806.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09166654 806.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09166655 806.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09166656 806.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09166657 806.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09166658 806.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09166659 806.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09166660 806.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09166661 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09166662 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09166663 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09166664 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09166665 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09166666 806.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09166667 806.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09166668 806.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09166669 806.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09166670 806.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09166671 806.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09166672 806.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09166673 806.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09166674 806.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09166675 806.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09166676 806.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09166677 806.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09166678 806.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09166679 806.77520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09166680 806.77520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09166681 806.77520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09166682 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09166683 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09166684 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09166685 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09166686 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09166687 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09166688 806.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09166689 806.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09166690 806.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09166691 806.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09166692 806.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09166693 806.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09166694 806.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09166695 806.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09166696 806.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09166697 806.77545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09166698 806.77545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09166699 806.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09166700 806.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09166701 806.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09166702 806.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09166703 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09166704 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09166705 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09166706 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09166707 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09166708 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09166709 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09166710 806.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09166711 806.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09166712 806.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09166713 806.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09166714 806.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09166715 806.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09166716 806.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09166717 806.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09166718 806.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09166719 806.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09166720 806.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09166721 806.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09166722 806.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09166723 806.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09166724 806.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09166725 806.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09166726 806.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09166727 806.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09166728 806.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09166729 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09166730 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09166731 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09166732 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09166733 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09166734 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09166735 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09166736 806.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09166737 806.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09166738 806.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09166739 806.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09166740 806.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09166741 806.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09166742 806.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09166743 806.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09166744 806.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09166745 806.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09166746 806.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09166747 806.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09166748 806.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09166749 806.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09166750 806.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09166751 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09166752 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09166753 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09166754 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09166755 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09166756 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09166757 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09166758 806.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09166759 806.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09166760 806.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09166761 806.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09166762 806.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09166763 806.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09166764 806.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09166765 806.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09166766 806.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09166767 806.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09166768 806.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09166769 806.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09166770 806.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09166771 806.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09166772 806.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09166773 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09166774 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09166775 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09166776 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09166777 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09166778 806.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09166779 806.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09166780 806.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09166781 806.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09166782 806.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09166783 806.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09166784 806.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09166785 806.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09166786 806.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09166787 806.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09166788 806.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09166789 806.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09166790 806.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09166791 806.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09166792 806.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09166793 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09166794 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09166795 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09166796 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09166797 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09166798 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09166799 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09166800 806.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09166801 806.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09166802 806.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09166803 806.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09166804 806.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09166805 806.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09166806 806.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09166807 806.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09166808 806.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09166809 806.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09166810 806.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09166811 806.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09166812 806.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09166813 806.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09166814 806.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09166815 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09166816 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09166817 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09166818 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09166819 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09166820 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09166821 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09166822 806.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09166823 806.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09166824 806.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09166825 806.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09166826 806.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09166827 806.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09166828 806.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09166829 806.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09166830 806.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09166831 806.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09166832 806.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09166833 806.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09166834 806.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09166835 806.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09166836 806.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09166837 806.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09166838 806.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09166839 806.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09166840 806.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09166841 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09166842 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09166843 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09166844 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09166845 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09166846 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09166847 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09166848 806.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09166849 806.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09166850 806.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09166851 806.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09166852 806.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09166853 806.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09166854 806.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09166855 806.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09166856 806.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09166857 806.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09166858 806.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09166859 806.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09166860 806.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09166861 806.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09166862 806.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09166863 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09166864 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09166865 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09166866 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09166867 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09166868 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09166869 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09166870 806.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09166871 806.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09166872 806.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09166873 806.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09166874 806.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09166875 806.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09166876 806.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09166877 806.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09166878 806.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09166879 806.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09166880 806.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09166881 806.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09166882 806.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09166883 806.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09166884 806.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09166885 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09166886 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09166887 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09166888 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09166889 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09166890 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09166891 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09166892 806.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09166893 806.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09166894 806.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09166895 806.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09166896 806.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09166897 806.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09166898 806.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09166899 806.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09166900 806.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09166901 806.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09166902 806.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09166903 806.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09166904 806.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09166905 806.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09166906 806.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09166907 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09166908 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09166909 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09166910 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09166911 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09166912 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09166913 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09166914 806.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09166915 806.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09166916 806.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09166917 806.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09166918 806.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09166919 806.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09166920 806.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09166921 806.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09166922 806.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09166923 806.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09166924 806.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09166925 806.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09166926 806.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09166927 806.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09166928 806.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09166929 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09166930 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09166931 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09166932 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09166933 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09166934 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09166935 806.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09166936 806.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09166937 806.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09166938 806.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09166939 806.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09166940 806.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09166941 806.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09166942 806.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09166943 806.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09166944 806.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09166945 806.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09166946 806.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09166947 806.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09166948 806.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09166949 806.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09166950 806.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09166951 806.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09166952 806.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09166953 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09166954 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09166955 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09166956 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09166957 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09166958 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09166959 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09166960 806.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09166961 806.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09166962 806.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09166963 806.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09166964 806.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09166965 806.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09166966 806.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09166967 806.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09166968 806.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09166969 806.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09166970 806.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09166971 806.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09166972 806.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09166973 806.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09166974 806.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09166975 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09166976 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09166977 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09166978 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09166979 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09166980 806.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09166981 806.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09166982 806.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09166983 806.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09166984 806.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09166985 806.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09166986 806.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09166987 806.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09166988 806.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09166989 806.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09166990 806.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09166991 806.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09166992 806.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09166993 806.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09166994 806.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09166995 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09166996 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09166997 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09166998 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09166999 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09167000 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09167001 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09167002 806.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09167003 806.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09167004 806.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09167005 806.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09167006 806.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09167007 806.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09167008 806.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09167009 806.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09167010 806.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09167011 806.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09167012 806.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09167013 806.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09167014 806.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09167015 806.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09167016 806.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09167017 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09167018 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09167019 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09167020 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09167021 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09167022 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09167023 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09167024 806.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09167025 806.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09167026 806.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09167027 806.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09167028 806.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09167029 806.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09167030 806.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09167031 806.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09167032 806.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09167033 806.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09167034 806.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09167035 806.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09167036 806.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09167037 806.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09167038 806.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09167039 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09167040 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09167041 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09167042 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09167043 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09167044 806.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09167045 806.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09167046 806.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09167047 806.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09167048 806.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09167049 806.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09167050 806.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09167051 806.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09167052 806.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09167053 806.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09167054 806.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09167055 806.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09167056 806.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09167057 806.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09167058 806.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09167059 806.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09167060 806.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09167061 806.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09167062 806.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09167063 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09167064 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09167065 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09167066 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09167067 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09167068 806.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09167069 806.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09167070 806.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09167071 806.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09167072 806.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09167073 806.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09167074 806.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09167075 806.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09167076 806.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09167077 806.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09167078 806.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09167079 806.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09167080 806.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09167081 806.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09167082 806.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09167083 806.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09167084 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09167085 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09167086 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09167087 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09167088 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09167089 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09167090 806.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09167091 806.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09167092 806.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09167093 806.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09167094 806.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09167095 806.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09167096 806.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09167097 806.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09167098 806.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09167099 806.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09167100 806.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09167101 806.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09167102 806.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09167103 806.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09167104 806.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09167105 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09167106 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09167107 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09167108 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09167109 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09167110 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09167111 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09167112 806.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09167113 806.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09167114 806.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09167115 806.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09167116 806.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09167117 806.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09167118 806.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09167119 806.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09167120 806.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09167121 806.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09167122 806.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09167123 806.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09167124 806.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09167125 806.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09167126 806.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09167127 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09167128 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09167129 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09167130 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09167131 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09167132 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09167133 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09167134 806.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09167135 806.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09167136 806.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09167137 806.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09167138 806.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09167139 806.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09167140 806.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09167141 806.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09167142 806.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09167143 806.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09167144 806.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09167145 806.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09167146 806.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09167147 806.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09167148 806.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09167149 806.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09167150 806.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09167151 806.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09167152 806.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09167153 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09167154 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09167155 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09167156 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09167157 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09167158 806.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09167159 806.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09167160 806.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09167161 806.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09167162 806.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09167163 806.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09167164 806.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09167165 806.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09167166 806.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09167167 806.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09167168 806.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09167169 806.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09167170 806.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09167171 806.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09167172 806.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09167173 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09167174 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09167175 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09167176 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09167177 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09167178 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09167179 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09167180 806.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09167181 806.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09167182 806.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09167183 806.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09167184 806.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09167185 806.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09167186 806.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09167187 806.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09167188 806.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09167189 806.78247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09167190 806.78247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09167191 806.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09167192 806.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09167193 806.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09167194 806.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09167195 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09167196 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09167197 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09167198 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09167199 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09167200 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09167201 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09167202 806.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09167203 806.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09167204 806.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09167205 806.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09167206 806.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09167207 806.78271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09167208 806.78271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09167209 806.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09167210 806.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09167211 806.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09167212 806.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09167213 806.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09167214 806.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09167215 806.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09167216 806.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09167217 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09167218 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09167219 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09167220 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09167221 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09167222 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09167223 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09167224 806.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09167225 806.78295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09167226 806.78295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09167227 806.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09167228 806.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09167229 806.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09167230 806.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09167231 806.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09167232 806.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09167233 806.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09167234 806.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09167235 806.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09167236 806.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09167237 806.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09167238 806.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09167239 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09167240 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09167241 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09167242 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09167243 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09167244 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09167245 806.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09167246 806.78326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09167247 806.78326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09167248 806.78326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09167249 806.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09167250 806.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09167251 806.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09167252 806.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09167253 806.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09167254 806.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09167255 806.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09167256 806.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09167257 806.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09167258 806.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09167259 806.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09167260 806.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09167261 806.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09167262 806.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09167263 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09167264 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09167265 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09167266 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09167267 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09167268 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09167269 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09167270 806.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09167271 806.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09167272 806.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09167273 806.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09167274 806.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09167275 806.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09167276 806.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09167277 806.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09167278 806.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09167279 806.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09167280 806.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09167281 806.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09167282 806.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09167283 806.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09167284 806.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09167285 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09167286 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09167287 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09167288 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09167289 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09167290 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09167291 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09167292 806.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09167293 806.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09167294 806.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09167295 806.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09167296 806.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09167297 806.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09167298 806.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09167299 806.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09167300 806.78405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09177995 806.93640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c8 -09177996 806.93640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c8 -09177997 806.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d8 -09177998 806.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d8 -09177999 806.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -09178000 806.93646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -09178001 806.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -09178002 806.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -09178003 806.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -09178004 806.93652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -09178005 806.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -09178006 806.93658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -09178007 806.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -09178008 806.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -09178009 806.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -09178010 806.93664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -09178011 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -09178012 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c748 -09178013 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -09178014 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c758 -09178015 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -09178016 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c768 -09178017 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -09178018 806.93670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c778 -09178019 806.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -09178020 806.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c788 -09178021 806.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -09178022 806.93676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c798 -09178023 806.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -09178024 806.93682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7a8 -09178025 806.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -09178026 806.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7b8 -09178027 806.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -09178028 806.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7c8 -09178029 806.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -09178030 806.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7d8 -09178031 806.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -09178032 806.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7e8 -09178033 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -09178034 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c7f8 -09178035 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -09178036 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c808 -09178037 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -09178038 806.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c818 -09181451 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -09181452 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232c8 -09181453 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -09181454 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232d8 -09181455 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -09181456 806.98596191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232e8 -09181457 806.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -09181458 806.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x232f8 -09181459 806.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -09181460 806.98602295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23308 -09181461 806.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -09181462 806.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23318 -09181463 806.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -09181464 806.98608398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23328 -09181465 806.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -09181466 806.98614502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23338 -09181467 806.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -09181468 806.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23348 -09181469 806.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -09181470 806.98620605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23358 -09181471 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -09181472 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23368 -09181473 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -09181474 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23378 -09181475 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -09181476 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23388 -09181477 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -09181478 806.98626709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23398 -09181479 806.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -09181480 806.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233a8 -09181481 806.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -09181482 806.98632813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233b8 -09181483 806.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -09181484 806.98638916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233c8 -09181485 806.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -09181486 806.98645020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233d8 -09181487 806.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -09181488 806.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233e8 -09181489 806.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -09181490 806.98651123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x233f8 -09181491 806.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -09181492 806.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23408 -09181493 806.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -09181494 806.98657227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23418 -09184721 807.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -09184722 807.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x298f8 -09184723 807.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -09184724 807.03289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29908 -09184725 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -09184726 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29918 -09184727 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -09184728 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29928 -09184729 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -09184730 807.03295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29938 -09184731 807.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -09184732 807.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29948 -09184733 807.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -09184734 807.03302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29958 -09184735 807.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -09184736 807.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29968 -09184737 807.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -09184738 807.03308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29978 -09184739 807.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -09184740 807.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29988 -09184741 807.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -09184742 807.03314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29998 -09184743 807.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -09184744 807.03320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299a8 -09184745 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -09184746 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299b8 -09184747 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -09184748 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299c8 -09184749 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -09184750 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299d8 -09184751 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -09184752 807.03326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299e8 -09184753 807.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -09184754 807.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x299f8 -09184755 807.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a08 -09184756 807.03332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a08 -09184757 807.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a18 -09184758 807.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a18 -09184759 807.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a28 -09184760 807.03338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a28 -09184761 807.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a38 -09184762 807.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a38 -09184763 807.03344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a48 -09184764 807.03350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a48 -09187771 807.07647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -09187772 807.07647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -09187773 807.07647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -09187774 807.07647705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -09187775 807.07653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -09187776 807.07653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -09187777 807.07653809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -09187778 807.07659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -09187779 807.07659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -09187780 807.07659912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -09187781 807.07666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -09187782 807.07666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -09187783 807.07666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -09187784 807.07666016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -09187785 807.07672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -09187786 807.07672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -09187787 807.07672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -09187788 807.07672119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -09187789 807.07678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -09187790 807.07678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8d8 -09187791 807.07678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -09187792 807.07678223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8e8 -09187793 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -09187794 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8f8 -09187795 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -09187796 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f908 -09187797 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -09187798 807.07684326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f918 -09187799 807.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -09187800 807.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f928 -09187801 807.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -09187802 807.07690430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f938 -09187803 807.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f948 -09187804 807.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f948 -09187805 807.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -09187806 807.07696533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f958 -09187807 807.07702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -09187808 807.07702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f968 -09187809 807.07702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f978 -09187810 807.07702637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f978 -09187811 807.07708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f988 -09187812 807.07708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f988 -09187813 807.07708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f998 -09187814 807.07708740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f998 -09191965 807.13616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b58 -09191966 807.13616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b58 -09191967 807.13616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b68 -09191968 807.13616943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b68 -09191969 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b78 -09191970 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b78 -09191971 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -09191972 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b88 -09191973 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -09191974 807.13623047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b98 -09191975 807.13629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -09191976 807.13629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ba8 -09191977 807.13629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -09191978 807.13629150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bb8 -09191979 807.13635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -09191980 807.13635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bc8 -09191981 807.13635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -09191982 807.13635254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bd8 -09191983 807.13641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be8 -09191984 807.13641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37be8 -09191985 807.13641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf8 -09191986 807.13641357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37bf8 -09191987 807.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c08 -09191988 807.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c08 -09191989 807.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c18 -09191990 807.13647461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c18 -09191991 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c28 -09191992 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c28 -09191993 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c38 -09191994 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c38 -09191995 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c48 -09191996 807.13653564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c48 -09191997 807.13659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c58 -09191998 807.13659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c58 -09191999 807.13659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -09192000 807.13659668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c68 -09192001 807.13665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -09192002 807.13665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c78 -09192003 807.13665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -09192004 807.13665771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c88 -09192005 807.13671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -09192006 807.13671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c98 -09192007 807.13671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -09192008 807.13671875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37ca8 -09195037 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db58 -09195038 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db58 -09195039 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db68 -09195040 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db68 -09195041 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db78 -09195042 807.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db78 -09195043 807.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db88 -09195044 807.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db88 -09195045 807.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db98 -09195046 807.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db98 -09195047 807.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba8 -09195048 807.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dba8 -09195049 807.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb8 -09195050 807.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbb8 -09195051 807.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc8 -09195052 807.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbc8 -09195053 807.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd8 -09195054 807.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbd8 -09195055 807.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe8 -09195056 807.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbe8 -09195057 807.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf8 -09195058 807.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dbf8 -09195059 807.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc08 -09195060 807.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc08 -09195061 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc18 -09195062 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc18 -09195063 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc28 -09195064 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc28 -09195065 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc38 -09195066 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc38 -09195067 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc48 -09195068 807.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc48 -09195069 807.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc58 -09195070 807.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc58 -09195071 807.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc68 -09195072 807.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc68 -09195073 807.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc78 -09195074 807.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc78 -09195075 807.18060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc88 -09195076 807.18060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc88 -09195077 807.18066406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc98 -09195078 807.18066406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc98 -09195079 807.18066406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca8 -09195080 807.18066406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dca8 -09198231 807.22552490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f28 -09198232 807.22552490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f28 -09198233 807.22558594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f38 -09198234 807.22558594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f38 -09198235 807.22558594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f48 -09198236 807.22558594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f48 -09198237 807.22564697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f58 -09198238 807.22564697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f58 -09198239 807.22564697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f68 -09198240 807.22564697 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f68 -09198241 807.22570801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f78 -09198242 807.22570801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f78 -09198243 807.22570801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f88 -09198244 807.22570801 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f88 -09198245 807.22576904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f98 -09198246 807.22576904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f98 -09198247 807.22576904 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa8 -09198248 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fa8 -09198249 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb8 -09198250 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fb8 -09198251 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc8 -09198252 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fc8 -09198253 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd8 -09198254 807.22583008 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fd8 -09198255 807.22589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe8 -09198256 807.22589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43fe8 -09198257 807.22589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff8 -09198258 807.22589111 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43ff8 -09198259 807.22595215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44008 -09198260 807.22595215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44008 -09198261 807.22595215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44018 -09198262 807.22595215 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44018 -09198263 807.22601318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44028 -09198264 807.22601318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44028 -09198265 807.22601318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44038 -09198266 807.22601318 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44038 -09198267 807.22607422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44048 -09198268 807.22607422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44048 -09198269 807.22607422 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44058 -09198270 807.22613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44058 -09198271 807.22613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44068 -09198272 807.22613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44068 -09198273 807.22613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -09198274 807.22613525 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44078 -09205852 808.23217773 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09205853 808.23223877 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09205854 808.23223877 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09205855 808.23223877 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09205856 808.23242188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09205857 808.23242188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09205858 808.23242188 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09205859 808.23248291 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09205860 809.34448242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09205861 809.36553955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09205862 809.36553955 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09205863 810.51251221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09205864 810.51251221 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09205865 810.51257324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09205866 810.51257324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09205867 810.51257324 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09205868 810.51263428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09205869 810.51263428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09205870 810.51263428 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09205871 810.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09205872 810.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09205873 810.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09205874 810.51269531 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09205875 810.51275635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09205876 810.51275635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09205877 810.51275635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09205878 810.51275635 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09205879 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09205880 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09205881 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09205882 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09205883 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09205884 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09205885 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09205886 810.51281738 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09205887 810.51287842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09205888 810.51287842 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09205889 810.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09205890 810.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09205891 810.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09205892 810.51293945 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09205893 810.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09205894 810.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09205895 810.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09205896 810.51300049 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09205897 810.51306152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09205898 810.51306152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09205899 810.51306152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09205900 810.51306152 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09205901 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09205902 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09205903 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09205904 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09205905 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09205906 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09205907 810.51312256 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09205908 810.51318359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09205909 810.51318359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09205910 810.51318359 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09205911 810.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09205912 810.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09205913 810.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09205914 810.51324463 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09205915 810.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09205916 810.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09205917 810.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09205918 810.51330566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09205919 810.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09205920 810.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09205921 810.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09205922 810.51336670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09205923 810.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09205924 810.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09205925 810.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09205926 810.51342773 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09205927 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09205928 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09205929 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09205930 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09205931 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09205932 810.51348877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09205933 810.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09205934 810.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09205935 810.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09205936 810.51354980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09205937 810.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09205938 810.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09205939 810.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09205940 810.51361084 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09205941 810.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09205942 810.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09205943 810.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09205944 810.51367188 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09205945 810.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09205946 810.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09205947 810.51373291 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09205948 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09205949 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09205950 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09205951 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09205952 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09205953 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09205954 810.51379395 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09205955 810.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09205956 810.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09205957 810.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09205958 810.51385498 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09205959 810.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09205960 810.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09205961 810.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09205962 810.51391602 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09205963 810.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09205964 810.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09205965 810.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09205966 810.51397705 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09205967 810.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09205968 810.51403809 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09205969 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09205970 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09205971 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09205972 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09205973 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09205974 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09205975 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09205976 810.51409912 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09205977 810.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09205978 810.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09205979 810.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09205980 810.51416016 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09205981 810.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09205982 810.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09205983 810.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09205984 810.51422119 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09205985 810.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09205986 810.51428223 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09205987 810.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09205988 810.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09205989 810.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09205990 810.51434326 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09205991 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09205992 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09205993 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09205994 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09205995 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09205996 810.51440430 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09205997 810.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09205998 810.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09205999 810.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09206000 810.51446533 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09206001 810.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09206002 810.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09206003 810.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09206004 810.51452637 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09206005 810.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09206006 810.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09206007 810.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09206008 810.51458740 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09206009 810.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09206010 810.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09206011 810.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09206012 810.51464844 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09206013 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09206014 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09206015 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09206016 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09206017 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09206018 810.51470947 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09206019 810.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09206020 810.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09206021 810.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09206022 810.51477051 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09206023 810.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09206024 810.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09206025 810.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09206026 810.51483154 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09206027 810.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09206028 810.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09206029 810.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09206030 810.51489258 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09206031 810.51495361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09206032 810.51495361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09206033 810.51495361 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09206034 810.51501465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09206035 810.51501465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09206036 810.51501465 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09206037 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09206038 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09206039 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09206040 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09206041 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09206042 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09206043 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09206044 810.51507568 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09206045 810.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09206046 810.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09206047 810.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09206048 810.51513672 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09206049 810.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09206050 810.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09206051 810.51519775 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09206052 810.51525879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09206053 810.51525879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09206054 810.51525879 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09206055 810.51531982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09206056 810.51531982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09206057 810.51531982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09206058 810.51531982 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09206059 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09206060 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09206061 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09206062 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09206063 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09206064 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09206065 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09206066 810.51538086 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09206067 810.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09206068 810.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09206069 810.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09206070 810.51544189 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09206071 810.51550293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09206072 810.51550293 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09206073 810.51556396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09206074 810.51556396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09206075 810.51556396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09206076 810.51556396 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09206077 810.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09206078 810.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09206079 810.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09206080 810.51562500 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09206081 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09206082 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09206083 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09206084 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09206085 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09206086 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09206087 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09206088 810.51568604 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09206089 810.51574707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09206090 810.51574707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09206091 810.51574707 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09206092 810.51580811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09206093 810.51580811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09206094 810.51580811 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09206095 810.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09206096 810.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09206097 810.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09206098 810.51586914 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09206099 810.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09206100 810.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09206101 810.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09206102 810.51593018 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09206103 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09206104 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09206105 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09206106 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09206107 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09206108 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09206109 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09206110 810.51599121 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09206111 810.51605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09206112 810.51605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09206113 810.51605225 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09206114 810.51611328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09206115 810.51611328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09206116 810.51611328 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09206117 810.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09206118 810.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09206119 810.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09206120 810.51617432 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09206121 810.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09206122 810.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09206123 810.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09206124 810.51623535 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09206125 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09206126 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09206127 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09206128 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09206129 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09206130 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09206131 810.51629639 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09206132 810.51635742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09206133 810.51635742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09206134 810.51635742 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09206135 810.51641846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09206136 810.51641846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09206137 810.51641846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09206138 810.51641846 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09206139 810.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09206140 810.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09206141 810.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09206142 810.51647949 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09206143 810.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09206144 810.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09206145 810.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09206146 810.51654053 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09206147 810.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09206148 810.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09206149 810.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09206150 810.51660156 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09206151 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09206152 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09206153 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09206154 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09206155 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09206156 810.51666260 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09206157 810.51672363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09206158 810.51672363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09206159 810.51672363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09206160 810.51672363 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09206161 810.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09206162 810.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09206163 810.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09206164 810.51678467 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09206165 810.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09206166 810.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09206167 810.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09206168 810.51684570 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09206169 810.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09206170 810.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09206171 810.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09206172 810.51690674 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09206173 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09206174 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09206175 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09206176 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09206177 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09206178 810.51696777 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09206179 810.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09206180 810.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09206181 810.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09206182 810.51702881 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09206183 810.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09206184 810.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09206185 810.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09206186 810.51708984 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09206187 810.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09206188 810.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09206189 810.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09206190 810.51715088 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09206191 810.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09206192 810.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09206193 810.51721191 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09206194 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09206195 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09206196 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09206197 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09206198 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09206199 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09206200 810.51727295 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09206201 810.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09206202 810.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09206203 810.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09206204 810.51733398 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09206205 810.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09206206 810.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09206207 810.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09206208 810.51739502 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09206209 810.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09206210 810.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09206211 810.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09206212 810.51745605 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09206213 810.51751709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09206214 810.51751709 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09206215 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09206216 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09206217 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09206218 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09206219 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09206220 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09206221 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09206222 810.51757813 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09206223 810.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09206224 810.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09206225 810.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09206226 810.51763916 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09206227 810.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09206228 810.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09206229 810.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09206230 810.51770020 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09206231 810.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09206232 810.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09206233 810.51776123 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09206234 810.51782227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09206235 810.51782227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09206236 810.51782227 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09206237 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09206238 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09206239 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09206240 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09206241 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09206242 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09206243 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09206244 810.51788330 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09206245 810.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09206246 810.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09206247 810.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09206248 810.51794434 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09206249 810.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09206250 810.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09206251 810.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09206252 810.51800537 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09206253 810.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09206254 810.51806641 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09206255 810.51812744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09206256 810.51812744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09206257 810.51812744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09206258 810.51812744 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09206259 810.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09206260 810.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09206261 810.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09206262 810.51818848 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09206263 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09206264 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09206265 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09206266 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09206267 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09206268 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09206269 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09206270 810.51824951 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09206271 810.51831055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09206272 810.51831055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09206273 810.51831055 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09206274 810.51837158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09206275 810.51837158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09206276 810.51837158 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09206277 810.51843262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09206278 810.51843262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09206279 810.51843262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09206280 810.51843262 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09206281 810.51849365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09206282 810.51849365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09206283 810.51849365 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09206284 810.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09206285 810.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09206286 810.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09206287 810.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09206288 810.51855469 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09206289 810.51861572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09206290 810.51861572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09206291 810.51861572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09206292 810.51861572 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09206293 810.51867676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09206294 810.51867676 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09206295 810.51873779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09206296 810.51873779 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09206297 810.51879883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09206298 810.51879883 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09206299 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09206300 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09206301 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09206302 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09206303 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09206304 810.51885986 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09206305 810.51892090 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09206306 810.51892090 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09206307 810.51898193 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09206308 810.51898193 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09206309 810.51904297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09206310 810.51904297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09206311 810.51904297 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09206312 810.51910400 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09206313 810.51910400 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09206314 810.51910400 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09206315 810.51916504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09206316 810.51916504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09206317 810.51916504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09206318 810.51916504 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09206319 810.51928711 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09206320 810.51928711 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09206321 810.51928711 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09206322 810.51928711 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09206323 810.51934814 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09206324 810.51934814 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09206325 810.51940918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09206326 810.51940918 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09206327 810.51947021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09206328 810.51947021 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09206329 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09206330 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09206331 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09206332 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09206333 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09206334 810.51953125 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09206335 810.51959229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09206336 810.51959229 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09206337 810.51965332 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09206338 810.51965332 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09206339 810.51971436 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09206340 810.51971436 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09206341 810.51971436 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09206342 810.51977539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09206343 810.51977539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09206344 810.51977539 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09206345 810.51983643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09206346 810.51983643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09206347 810.51983643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09206348 810.51983643 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09206349 810.51989746 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09206350 810.51989746 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09206351 810.51995850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09206352 810.51995850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09206353 810.51995850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09206354 810.51995850 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09206355 810.52001953 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09206356 810.52001953 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09206357 810.52008057 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09206358 810.52008057 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09206359 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09206360 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09206361 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09206362 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09206363 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09206364 810.52014160 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09206365 810.52026367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09206366 810.52026367 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09206367 810.52032471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09206368 810.52032471 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09206369 810.52038574 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09206370 810.52038574 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09206371 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09206372 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09206373 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09206374 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09206375 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09206376 810.52044678 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09206377 810.52050781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09206378 810.52050781 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09206379 810.52056885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09206380 810.52056885 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09206381 810.52062988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09206382 810.52062988 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09206383 810.52069092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09206384 810.52069092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09206385 810.52069092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09206386 810.52069092 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09206387 810.52075195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09206388 810.52075195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09206389 810.52075195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09206390 810.52075195 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09206391 810.52081299 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09206392 810.52081299 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09206393 810.52087402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09206394 810.52087402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09206395 810.52087402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09206396 810.52087402 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09206397 810.52093506 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09206398 810.52093506 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09206399 810.52099609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09206400 810.52099609 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09206401 810.52105713 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09206402 810.52105713 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09206403 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09206404 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09206405 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09206406 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09206407 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09206408 810.52111816 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09206409 810.52117920 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09206410 810.52117920 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09206411 810.52130127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09206412 810.52130127 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09206413 810.52136230 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09206414 810.52136230 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09206415 810.52142334 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09206416 810.52142334 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09206417 810.52142334 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09206418 810.52142334 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09206419 810.52148438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09206420 810.52148438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09206421 810.52148438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09206422 810.52148438 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09206423 810.52154541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09206424 810.52154541 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09206425 810.52160645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09206426 810.52160645 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09206427 810.52166748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09206428 810.52166748 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09206429 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09206430 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09206431 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09206432 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09206433 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09206434 810.52172852 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09206435 810.52178955 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09206436 810.52178955 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09206437 810.52185059 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09206438 810.52185059 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09206439 810.52191162 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09206440 810.52191162 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09206441 810.52191162 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09206442 810.52197266 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09206443 810.52197266 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09206444 810.52197266 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09206445 810.52203369 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09206446 810.52203369 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09206447 810.52203369 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09206448 810.52203369 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09206449 810.52209473 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09206450 810.52209473 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09206451 810.52209473 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09206452 810.52215576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09206453 810.52215576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09206454 810.52215576 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09206455 810.52221680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09206456 810.52221680 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09206457 810.52227783 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09206458 810.52227783 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09206459 810.52233887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09206460 810.52233887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09206461 810.52233887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09206462 810.52233887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09206463 810.52233887 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09206464 810.52239990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09206465 810.52239990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09206466 810.52239990 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09206467 810.52246094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09206468 810.52246094 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09206469 810.52252197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09206470 810.52252197 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09206471 810.52258301 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09206472 810.52258301 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09206473 810.52258301 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09206474 810.52264404 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09206475 810.52264404 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09206476 810.52264404 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09206477 810.52270508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09206478 810.52270508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09206479 810.52270508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09206480 810.52270508 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09206481 810.52276611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09206482 810.52276611 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09206483 810.52282715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09206484 810.52282715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09206485 810.52282715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09206486 810.52282715 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09206487 810.52288818 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09206488 810.52288818 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09206489 810.52294922 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09206490 810.52294922 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09206491 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09206492 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09206493 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09206494 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09206495 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09206496 810.52301025 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09206497 810.52307129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09206498 810.52307129 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09206499 810.52313232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09206500 810.52313232 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09206501 810.52319336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09206502 810.52319336 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09206503 810.52331543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09206504 810.52331543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09206505 810.52331543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09206506 810.52331543 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09206507 810.52337646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09206508 810.52337646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09206509 810.52337646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09206510 810.52337646 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09206511 810.52343750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09206512 810.52343750 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09206513 810.52349854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09206514 810.52349854 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09206515 810.52355957 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09206516 810.52355957 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09206517 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09206518 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09206519 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09206520 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09206521 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09206522 810.52362061 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09206523 810.52368164 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09206524 810.52368164 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09206525 810.52374268 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09206526 810.52374268 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09206527 810.52380371 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09206528 810.52380371 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09206529 810.52380371 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09206530 810.52380371 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09206531 810.52386475 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09206532 810.52386475 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09206533 810.52392578 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09206534 810.52392578 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09206535 810.52392578 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09206536 810.52392578 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09206537 810.52398682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09206538 810.52398682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09206539 810.52398682 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09206540 810.52404785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09206541 810.52404785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09206542 810.52404785 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09206543 810.52410889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09206544 810.52410889 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09206545 810.52416992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09206546 810.52416992 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09206547 810.52423096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09206548 810.52423096 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09206549 810.52435303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09206550 810.52435303 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09206551 810.52441406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09206552 810.52441406 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09206553 810.52447510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09206554 810.52447510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09206555 810.52447510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09206556 810.52447510 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09206557 810.52453613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09206558 810.52453613 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09206559 810.52459717 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09206560 810.52459717 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09206561 810.52459717 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09206562 810.52459717 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09206563 810.52465820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09206564 810.52465820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09206565 810.52465820 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09206566 810.52471924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09206567 810.52471924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09206568 810.52471924 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09206569 810.52478027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09206570 810.52478027 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09206571 810.52484131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09206572 810.52484131 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09206573 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09206574 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09206575 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09206576 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09206577 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09206578 810.52490234 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09206579 810.52496338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09206580 810.52496338 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09206581 810.52502441 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09206582 810.52502441 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09206583 810.52508545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09206584 810.52508545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09206585 810.52508545 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09206586 810.52514648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09206587 810.52514648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09206588 810.52514648 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09206589 810.52520752 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09206590 810.52520752 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09206591 810.52526855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09206592 810.52526855 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09206593 810.52532959 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09206594 810.52532959 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09206595 810.52532959 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09206596 810.52532959 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09206597 810.52539063 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09206598 810.52539063 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09206599 810.52545166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09206600 810.52545166 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09206601 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09206602 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09206603 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09206604 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09206605 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09206606 810.52551270 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09206607 810.52557373 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09206608 810.52557373 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09206609 810.52563477 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09206610 810.52563477 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09206611 810.52569580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09206612 810.52569580 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09206613 810.52575684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09206614 810.52575684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09206615 810.52575684 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09206616 810.52581787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09206617 810.52581787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09206618 810.52581787 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09206619 810.52587891 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09206620 810.52587891 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09206621 810.52587891 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09206622 810.52587891 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09206623 810.52593994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09206624 810.52593994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09206625 810.52593994 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09206626 810.52600098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09206627 810.52600098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09206628 810.52600098 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09206629 810.52606201 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09206630 810.52606201 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09206631 810.52612305 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09206632 810.52612305 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09206633 810.52618408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09206634 810.52618408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09206635 810.52618408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09206636 810.52618408 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09206637 810.52624512 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09206638 810.52624512 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09206639 810.52630615 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09206640 810.52630615 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09206641 810.52636719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09206642 810.52636719 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09206643 810.52642822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09206644 810.52642822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09206645 810.52642822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09206646 810.52642822 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09206647 810.52648926 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09206648 810.52648926 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09206649 810.52648926 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09206650 810.52648926 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09206651 810.52655029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09206652 810.52655029 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09206653 810.52661133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09206654 810.52661133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09206655 810.52661133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09206656 810.52661133 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09206657 810.52667236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09206658 810.52667236 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09206659 810.52673340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09206660 810.52673340 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09206661 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09206662 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09206663 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09206664 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09206665 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09206666 810.52679443 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09206667 810.52685547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09206668 810.52685547 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09206669 810.52691650 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09206670 810.52691650 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09206671 810.52697754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09206672 810.52697754 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09206673 810.52703857 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09206674 810.52703857 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09206675 810.52703857 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09206676 810.52709961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09206677 810.52709961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09206678 810.52709961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09206679 810.52709961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09206680 810.52709961 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09206681 810.52716064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09206682 810.52716064 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09206683 810.52728271 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09206684 810.52728271 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09206685 810.52734375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09206686 810.52734375 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09206687 810.52740479 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09206688 810.52740479 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09206689 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09206690 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09206691 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09206692 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09206693 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09206694 810.52746582 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09206695 810.52752686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09206696 810.52752686 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09206697 810.52758789 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09206698 810.52758789 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09206699 810.52764893 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09206700 810.52764893 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09206701 810.52770996 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09206702 810.52770996 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09206703 810.52770996 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09206704 810.52770996 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09206705 810.52777100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09206706 810.52777100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09206707 810.52777100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09206708 810.52777100 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09206709 810.52783203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09206710 810.52783203 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09206711 810.52789307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09206712 810.52789307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09206713 810.52789307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09206714 810.52789307 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09206715 810.52795410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09206716 810.52795410 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09206717 810.52801514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09206718 810.52801514 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09206719 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09206720 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09206721 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09206722 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09206723 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09206724 810.52807617 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09206725 810.52813721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09206726 810.52813721 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09206727 810.52825928 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09206728 810.52825928 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09206729 810.52832031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09206730 810.52832031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09206731 810.52832031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09206732 810.52832031 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09206733 810.52838135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09206734 810.52838135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09206735 810.52838135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09206736 810.52838135 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09206737 810.52844238 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09206738 810.52844238 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09206739 810.52850342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09206740 810.52850342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09206741 810.52850342 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09206742 810.52856445 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09206743 810.52856445 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09206744 810.52856445 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09206745 810.52862549 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09206746 810.52862549 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09206747 810.52868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09206748 810.52868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09206749 810.52868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09206750 810.52868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09206751 810.52868652 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09206752 810.52874756 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09206753 810.52874756 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09206754 810.52874756 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09206755 810.52880859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09206756 810.52880859 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09206757 810.52886963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09206758 810.52886963 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09206759 810.52893066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09206760 810.52893066 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09206761 810.52899170 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09206762 810.52899170 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09206763 810.52899170 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09206764 810.52899170 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09206765 810.52905273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09206766 810.52905273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09206767 810.52905273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09206768 810.52905273 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09206769 810.52911377 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09206770 810.52911377 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09206771 810.52917480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09206772 810.52917480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09206773 810.52917480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09206774 810.52917480 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09206775 810.52929688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09206776 810.52929688 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09206777 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09206778 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09206779 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09206780 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09206781 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09206782 810.52935791 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09206783 810.52941895 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09206784 810.52941895 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09206785 810.52947998 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09206786 810.52947998 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09206787 810.52954102 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09206788 810.52954102 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09206789 810.52960205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09206790 810.52960205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09206791 810.52960205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09206792 810.52960205 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09206793 810.52966309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09206794 810.52966309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09206795 810.52966309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09206796 810.52966309 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09206797 810.52972412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09206798 810.52972412 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09206799 810.52978516 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09206800 810.52978516 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09206801 810.52978516 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09206802 810.52984619 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09206803 810.52984619 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09206804 810.52984619 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09206805 810.52990723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09206806 810.52990723 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09206807 810.52996826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09206808 810.52996826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09206809 810.52996826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09206810 810.52996826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09206811 810.52996826 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09206812 810.53002930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09206813 810.53002930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09206814 810.53002930 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09206815 810.53009033 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09206816 810.53009033 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09206817 810.53015137 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09206818 810.53015137 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09206819 810.53021240 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09206820 810.53021240 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09206821 810.53027344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09206822 810.53027344 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09206823 810.53033447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09206824 810.53033447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09206825 810.53033447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09206826 810.53033447 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09206827 810.53039551 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09206828 810.53039551 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09206829 810.53039551 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09206830 810.53045654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09206831 810.53045654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09206832 810.53045654 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09206833 810.53051758 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09206834 810.53051758 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09206835 810.53057861 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09206836 810.53057861 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09206837 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09206838 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09206839 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09206840 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09206841 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09206842 810.53063965 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09206843 810.53070068 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09206844 810.53070068 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09206845 810.53076172 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09206846 810.53076172 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09206847 810.53082275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09206848 810.53082275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09206849 810.53082275 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09206850 810.53088379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09206851 810.53088379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09206852 810.53088379 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09206853 810.53094482 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09206854 810.53094482 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09206855 810.53094482 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09206856 810.53094482 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09206857 810.53100586 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09206858 810.53100586 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09206859 810.53106689 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09206860 810.53106689 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09206861 810.53106689 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09206862 810.53106689 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09206863 810.53112793 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09206864 810.53112793 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09206865 810.53118896 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09206866 810.53118896 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09206867 810.53125000 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09206868 810.53125000 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09206869 810.53131104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09206870 810.53131104 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09206871 810.53137207 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09206872 810.53137207 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09206873 810.53143311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09206874 810.53143311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09206875 810.53143311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09206876 810.53143311 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09206877 810.53149414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09206878 810.53149414 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09206879 810.53155518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09206880 810.53155518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09206881 810.53155518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09206882 810.53155518 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09206883 810.53161621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09206884 810.53161621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09206885 810.53161621 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09206886 810.53167725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09206887 810.53167725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09206888 810.53167725 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09206889 810.53173828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09206890 810.53173828 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09206891 810.53179932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09206892 810.53179932 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09206893 810.53186035 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09206894 810.53186035 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09206895 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09206896 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09206897 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09206898 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09206899 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09206900 810.53192139 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09206901 810.53198242 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09206902 810.53198242 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09206903 810.53204346 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09206904 810.53204346 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09206905 810.53210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09206906 810.53210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09206907 810.53210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09206908 810.53210449 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09206909 810.53216553 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09206910 810.53216553 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09206911 810.53222656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09206912 810.53222656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09206913 810.53222656 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09206914 810.53228760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09206915 810.53228760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09206916 810.53228760 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09206917 810.53234863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09206918 810.53234863 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09206919 810.53240967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09206920 810.53240967 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09206921 810.53247070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09206922 810.53247070 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09206923 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09206924 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09206925 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09206926 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09206927 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09206928 810.53253174 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09206929 810.53259277 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09206930 810.53259277 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09206931 810.53265381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09206932 810.53265381 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09206933 810.53271484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09206934 810.53271484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09206935 810.53271484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09206936 810.53271484 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09206937 810.53277588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09206938 810.53277588 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09206939 810.53283691 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09206940 810.53283691 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09206941 810.53283691 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09206942 810.53283691 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09206943 810.53289795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09206944 810.53289795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09206945 810.53289795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09206946 810.53289795 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09206947 810.53295898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09206948 810.53295898 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09206949 810.53302002 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09206950 810.53302002 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09206951 810.53308105 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09206952 810.53308105 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09206953 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09206954 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09206955 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09206956 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09206957 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09206958 810.53314209 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09206959 810.53332520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09206960 810.53332520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09206961 810.53332520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -09206962 810.53332520 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -09206963 810.53338623 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -09206964 810.53338623 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -09206965 810.53344727 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -09206966 810.53344727 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -09206967 810.53350830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -09206968 810.53350830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -09206969 810.53350830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -09206970 810.53350830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -09206971 810.53350830 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -09206972 810.53356934 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -09206973 810.53356934 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -09206974 810.53356934 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -09206975 810.53363037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -09206976 810.53363037 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -09206977 810.53369141 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -09206978 810.53369141 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -09206979 810.53375244 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -09206980 810.53375244 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -09206981 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -09206982 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -09206983 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -09206984 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -09206985 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -09206986 810.53381348 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -09206987 810.53387451 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -09206988 810.53387451 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -09206989 810.53393555 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -09206990 810.53393555 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -09206991 810.53399658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -09206992 810.53399658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -09206993 810.53399658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -09206994 810.53399658 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -09206995 810.53405762 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -09206996 810.53405762 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -09206997 810.53411865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -09206998 810.53411865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -09206999 810.53411865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -09207000 810.53411865 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -09207001 810.53417969 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -09207002 810.53417969 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -09207003 810.53424072 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -09207004 810.53424072 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -09207005 810.53430176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -09207006 810.53430176 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -09207007 810.53436279 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -09207008 810.53436279 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -09207009 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -09207010 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -09207011 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -09207012 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -09207013 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -09207014 810.53442383 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -09207015 810.53448486 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -09207016 810.53448486 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -09207017 810.53454590 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -09207018 810.53454590 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -09207019 810.53460693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -09207020 810.53460693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -09207021 810.53460693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -09207022 810.53460693 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -09207023 810.53466797 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -09207024 810.53466797 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -09207025 810.53472900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -09207026 810.53472900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -09207027 810.53472900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -09207028 810.53472900 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -09207029 810.53479004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -09207030 810.53479004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -09207031 810.53479004 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -09207032 810.53485107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -09207033 810.53485107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -09207034 810.53485107 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -09207035 810.53491211 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -09207036 810.53491211 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -09207037 810.53497314 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -09207038 810.53497314 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -09207039 810.53503418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -09207040 810.53503418 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -09207041 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -09207042 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -09207043 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -09207044 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -09207045 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -09207046 810.53509521 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -09207047 810.53515625 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -09207048 810.53515625 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -09207049 810.53527832 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -09207050 810.53533936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -09207051 810.53533936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -09207052 810.53533936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -09207053 810.53540039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -09207054 810.53540039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -09207055 810.53540039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -09207056 810.53540039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -09207057 810.53546143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -09207058 810.53546143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -09207059 810.53552246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -09207060 810.53552246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -09207061 810.53552246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -09207062 810.53552246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -09207063 810.53558350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -09207064 810.53558350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -09207065 810.53564453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -09207066 810.53564453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -09207067 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -09207068 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -09207069 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -09207070 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -09207071 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -09207072 810.53570557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -09207073 810.53576660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -09207074 810.53576660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -09207075 810.53582764 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -09207076 810.53582764 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -09207077 810.53588867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -09207078 810.53588867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -09207079 810.53594971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -09207080 810.53594971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -09207081 810.53594971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -09207082 810.53594971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -09207083 810.53601074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -09207084 810.53601074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -09207085 810.53601074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -09207086 810.53601074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -09207087 810.53607178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -09207088 810.53607178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -09207089 810.53613281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -09207090 810.53613281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -09207091 810.53613281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -09207092 810.53613281 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -09207093 810.53625488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -09207094 810.53625488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -09207095 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -09207096 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -09207097 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -09207098 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -09207099 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -09207100 810.53631592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -09207101 810.53637695 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -09207102 810.53637695 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -09207103 810.53643799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -09207104 810.53643799 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -09207105 810.53649902 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -09207106 810.53649902 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -09207107 810.53656006 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -09207108 810.53656006 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -09207109 810.53656006 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -09207110 810.53656006 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -09207111 810.53662109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -09207112 810.53662109 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -09207113 810.53668213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -09207114 810.53668213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -09207115 810.53668213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -09207116 810.53668213 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -09207117 810.53674316 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -09207118 810.53674316 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -09207119 810.53674316 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -09207120 810.53680420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -09207121 810.53680420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -09207122 810.53680420 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -09207123 810.53686523 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -09207124 810.53686523 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -09207125 810.53692627 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -09207126 810.53692627 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -09207127 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -09207128 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -09207129 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -09207130 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -09207131 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -09207132 810.53698730 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -09207133 810.53704834 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -09207134 810.53704834 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -09207135 810.53710938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -09207136 810.53710938 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -09207137 810.53717041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -09207138 810.53717041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -09207139 810.53717041 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -09207140 810.53723145 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -09207141 810.53729248 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -09207142 810.53729248 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -09207143 810.53729248 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -09207144 810.53729248 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -09207145 810.53735352 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -09207146 810.53735352 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -09207147 810.53735352 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -09207148 810.53741455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -09207149 810.53741455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -09207150 810.53741455 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -09207151 810.53747559 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -09207152 810.53747559 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -09207153 810.53753662 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -09207154 810.53753662 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -09207155 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -09207156 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -09207157 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -09207158 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -09207159 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -09207160 810.53759766 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -09207161 810.53765869 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -09207162 810.53765869 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -09207163 810.53771973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -09207164 810.53771973 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -09207165 810.53778076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -09207166 810.53778076 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -09207167 810.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -09207168 810.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -09207169 810.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -09207170 810.53784180 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -09207171 810.53790283 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -09207172 810.53790283 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -09207173 810.53790283 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -09207174 810.53790283 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -09207175 810.53796387 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -09207176 810.53796387 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -09207177 810.53802490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -09207178 810.53802490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -09207179 810.53802490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -09207180 810.53802490 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -09207181 810.53808594 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -09207182 810.53808594 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -09207183 810.53814697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -09207184 810.53814697 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -09207185 810.53820801 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -09207186 810.53820801 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -09207187 810.53826904 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -09207188 810.53826904 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -09207189 810.53833008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -09207190 810.53833008 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -09207191 810.53839111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -09207192 810.53839111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -09207193 810.53839111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -09207194 810.53839111 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -09207195 810.53845215 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -09207196 810.53845215 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -09207197 810.53851318 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -09207198 810.53851318 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -09207199 810.53857422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -09207200 810.53857422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -09207201 810.53857422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -09207202 810.53857422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -09207203 810.53857422 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -09207204 810.53863525 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -09207205 810.53863525 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -09207206 810.53863525 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -09207207 810.53869629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -09207208 810.53869629 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -09207209 810.53875732 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -09207210 810.53875732 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -09207211 810.53881836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -09207212 810.53881836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -09207213 810.53881836 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -09207214 810.53887939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -09207215 810.53887939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -09207216 810.53887939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -09207217 810.53887939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -09207218 810.53887939 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -09207219 810.53894043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -09207220 810.53894043 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -09207221 810.53900146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -09207222 810.53900146 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -09207223 810.53906250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -09207224 810.53906250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -09207225 810.53906250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -09207226 810.53906250 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -09207227 810.53912354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -09207228 810.53912354 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -09207229 810.53918457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -09207230 810.53918457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -09207231 810.53918457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -09207232 810.53918457 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -09207233 810.53924561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -09207234 810.53924561 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -09207235 810.53930664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -09207236 810.53930664 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -09207237 810.53936768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -09207238 810.53936768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -09207239 810.53936768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -09207240 810.53936768 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -09207241 810.53942871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -09207242 810.53942871 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -09207243 810.53948975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -09207244 810.53948975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -09207245 810.53948975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -09207246 810.53948975 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -09207247 810.53955078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -09207248 810.53955078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -09207249 810.53955078 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -09207250 810.53961182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -09207251 810.53961182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -09207252 810.53961182 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -09207253 810.53967285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -09207254 810.53967285 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -09207255 810.53973389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -09207256 810.53973389 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -09207257 810.53979492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -09207258 810.53979492 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -09207259 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -09207260 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -09207261 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -09207262 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -09207263 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -09207264 810.53985596 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -09207265 810.53991699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -09207266 810.53991699 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -09207267 810.53997803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -09207268 810.53997803 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -09207269 810.54003906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -09207270 810.54003906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -09207271 810.54003906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -09207272 810.54003906 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -09207273 810.54010010 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -09207274 810.54010010 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -09207275 810.54016113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -09207276 810.54016113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -09207277 810.54016113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -09207278 810.54016113 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -09207279 810.54022217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -09207280 810.54022217 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -09207281 810.54028320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -09207282 810.54028320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -09207283 810.54028320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -09207284 810.54028320 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -09207285 810.54034424 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -09207286 810.54034424 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -09207287 810.54040527 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -09207288 810.54040527 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -09207289 810.54046631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -09207290 810.54046631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -09207291 810.54046631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -09207292 810.54046631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -09207293 810.54046631 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -09207294 810.54052734 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -09207295 810.54052734 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -09207296 810.54052734 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -09207297 810.54058838 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -09207298 810.54058838 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -09207299 810.54064941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -09207300 810.54064941 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -09207301 810.54071045 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -09207302 810.54071045 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -09207303 810.54071045 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -09207304 810.54077148 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -09207305 810.54077148 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -09207306 810.54077148 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -09207307 810.54077148 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -09207308 810.54077148 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -09207309 810.54083252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -09207310 810.54083252 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -09207311 810.54089355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -09207312 810.54089355 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -09207313 810.54095459 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -09207314 810.54095459 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -09207315 810.54095459 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -09207316 810.54095459 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -09207317 810.54101563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -09207318 810.54101563 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -09207319 810.54107666 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -09207320 810.54107666 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -09207321 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -09207322 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -09207323 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -09207324 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -09207325 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -09207326 810.54113770 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -09207327 810.54132080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -09207328 810.54132080 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -09207329 810.54138184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -09207330 810.54138184 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -09207331 810.54144287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -09207332 810.54144287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -09207333 810.54144287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -09207334 810.54144287 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -09207335 810.54150391 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -09207336 810.54150391 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -09207337 810.54150391 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -09207338 810.54156494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -09207339 810.54156494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -09207340 810.54156494 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -09207341 810.54162598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -09207342 810.54162598 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -09207343 810.54168701 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -09207344 810.54168701 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -09207345 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -09207346 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -09207347 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -09207348 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -09207349 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -09207350 810.54174805 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -09207351 810.54180908 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -09207352 810.54180908 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -09207353 810.54187012 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -09207354 810.54187012 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -09207355 810.54193115 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -09207356 810.54193115 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -09207357 810.54199219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -09207358 810.54199219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -09207359 810.54199219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -09207360 810.54199219 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -09207361 810.54205322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -09207362 810.54205322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -09207363 810.54205322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -09207364 810.54205322 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -09207365 810.54211426 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -09207366 810.54211426 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -09207367 810.54217529 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -09207368 810.54217529 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -09207369 810.54223633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -09207370 810.54223633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -09207371 810.54223633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -09207372 810.54223633 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -09207373 810.54229736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -09207374 810.54229736 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -09207375 810.54235840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -09207376 810.54235840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -09207377 810.54235840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -09207378 810.54235840 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -09207379 810.54241943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -09207380 810.54241943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -09207381 810.54241943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -09207382 810.54241943 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -09207383 810.54248047 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -09207384 810.54248047 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -09207385 810.54254150 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -09207386 810.54254150 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -09207387 810.54260254 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -09207388 810.54260254 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -09207389 810.54266357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -09207390 810.54266357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -09207391 810.54266357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -09207392 810.54266357 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -09207393 810.54272461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -09207394 810.54272461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -09207395 810.54272461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -09207396 810.54272461 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -09207397 810.54278564 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -09207398 810.54278564 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -09207399 810.54284668 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -09207400 810.54284668 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -09207401 810.54284668 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -09207402 810.54284668 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -09207403 810.54290771 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -09207404 810.54290771 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -09207405 810.54296875 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -09207406 810.54296875 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -09207407 810.54302979 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -09207408 810.54302979 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -09207409 810.54302979 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -09207410 810.54302979 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -09207411 810.54302979 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -09207412 810.54309082 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -09207413 810.54309082 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -09207414 810.54309082 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -09207415 810.54315186 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -09207416 810.54315186 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -09207417 810.54327393 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -09207418 810.54327393 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -09207419 810.54333496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -09207420 810.54333496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -09207421 810.54333496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -09207422 810.54333496 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -09207423 810.54339600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -09207424 810.54339600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -09207425 810.54339600 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -09207426 810.54345703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -09207427 810.54345703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -09207428 810.54345703 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -09207429 810.54351807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -09207430 810.54351807 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -09207431 810.54357910 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -09207432 810.54357910 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -09207433 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -09207434 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -09207435 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -09207436 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -09207437 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -09207438 810.54364014 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -09207439 810.54370117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -09207440 810.54370117 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -09207441 810.54376221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -09207442 810.54376221 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -09207443 810.54382324 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -09207444 810.54382324 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -09207445 810.54388428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -09207446 810.54388428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -09207447 810.54388428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -09207448 810.54388428 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -09207449 810.54394531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -09207450 810.54394531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -09207451 810.54394531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -09207452 810.54394531 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -09207453 810.54400635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -09207454 810.54400635 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -09207455 810.54406738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -09207456 810.54406738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -09207457 810.54406738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -09207458 810.54406738 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -09207459 810.54412842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -09207460 810.54412842 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -09207461 810.54418945 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -09207462 810.54418945 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -09207463 810.54425049 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -09207464 810.54431152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -09207465 810.54431152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -09207466 810.54431152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -09207467 810.54431152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -09207468 810.54431152 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -09207469 810.54437256 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -09207470 810.54437256 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -09207471 810.54443359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -09207472 810.54443359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -09207473 810.54443359 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -09207474 810.54449463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -09207475 810.54449463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -09207476 810.54449463 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -09207477 810.54455566 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -09207478 810.54455566 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -09207479 810.54461670 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -09207480 810.54461670 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -09207481 810.54461670 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -09207482 810.54461670 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -09207483 810.54467773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -09207484 810.54467773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -09207485 810.54467773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -09207486 810.54467773 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -09207487 810.54473877 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -09207488 810.54473877 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -09207489 810.54479980 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -09207490 810.54479980 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -09207491 810.54486084 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -09207492 810.54486084 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -09207493 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -09207494 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -09207495 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -09207496 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -09207497 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -09207498 810.54492188 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -09207499 810.54498291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -09207500 810.54498291 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -09207501 810.54504395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -09207502 810.54504395 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -09207503 810.54510498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -09207504 810.54510498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -09207505 810.54510498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -09207506 810.54510498 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -09207507 810.54516602 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -09207508 810.54516602 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -09207509 810.54522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -09207510 810.54522705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -09207511 810.54528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -09207512 810.54528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -09207513 810.54528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -09207514 810.54528809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -09207515 810.54534912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -09207516 810.54534912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -09207517 810.54534912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -09207518 810.54541016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -09207519 810.54541016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -09207520 810.54541016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -09207521 810.54547119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -09207522 810.54547119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -09207523 810.54547119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -09207524 810.54547119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -09207525 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -09207526 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -09207527 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -09207528 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -09207529 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -09207530 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -09207531 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -09207532 810.54553223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -09207533 810.54559326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -09207534 810.54559326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -09207535 810.54559326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -09207536 810.54559326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -09207537 810.54565430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -09207538 810.54565430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -09207539 810.54571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -09207540 810.54571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -09207541 810.54571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -09207542 810.54571533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -09207543 810.54577637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -09207544 810.54577637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -09207545 810.54577637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -09207546 810.54577637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -09207547 810.54583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -09207548 810.54583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -09207549 810.54583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -09207550 810.54583740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -09207551 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -09207552 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -09207553 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -09207554 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -09207555 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -09207556 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -09207557 810.54589844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -09207558 810.54595947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -09207559 810.54595947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -09207560 810.54595947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -09207561 810.54602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -09207562 810.54602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -09207563 810.54602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -09207564 810.54602051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -09207565 810.54608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -09207566 810.54608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -09207567 810.54608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -09207568 810.54608154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -09207569 810.54614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -09207570 810.54614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -09207571 810.54614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -09207572 810.54614258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -09207573 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -09207574 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -09207575 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -09207576 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -09207577 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -09207578 810.54620361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -09207579 810.54626465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -09207580 810.54626465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -09207581 810.54626465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -09207582 810.54626465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -09207583 810.54632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -09207584 810.54632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -09207585 810.54632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -09207586 810.54632568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -09207587 810.54638672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -09207588 810.54638672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -09207589 810.54638672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -09207590 810.54638672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -09207591 810.54644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -09207592 810.54644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -09207593 810.54644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -09207594 810.54644775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -09207595 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -09207596 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -09207597 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -09207598 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -09207599 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -09207600 810.54650879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -09207601 810.54656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -09207602 810.54656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -09207603 810.54656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -09207604 810.54656982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -09207605 810.54663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -09207606 810.54663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -09207607 810.54663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -09207608 810.54663086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -09207609 810.54669189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -09207610 810.54669189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -09207611 810.54669189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -09207612 810.54669189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -09207613 810.54675293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -09207614 810.54675293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -09207615 810.54675293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -09207616 810.54675293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -09207617 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -09207618 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -09207619 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -09207620 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -09207621 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -09207622 810.54681396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -09207623 810.54687500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -09207624 810.54687500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -09207625 810.54687500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -09207626 810.54687500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -09207627 810.54693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -09207628 810.54693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -09207629 810.54693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -09207630 810.54693604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -09207631 810.54699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -09207632 810.54699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -09207633 810.54699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -09207634 810.54699707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -09207635 810.54705811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -09207636 810.54705811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -09207637 810.54705811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -09207638 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -09207639 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -09207640 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -09207641 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -09207642 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -09207643 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -09207644 810.54711914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -09207645 810.54718018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -09207646 810.54718018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -09207647 810.54718018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -09207648 810.54718018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -09207649 810.54724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -09207650 810.54724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -09207651 810.54724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -09207652 810.54724121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -09207653 810.54730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -09207654 810.54730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -09207655 810.54730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -09207656 810.54730225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -09207657 810.54736328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -09207658 810.54736328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -09207659 810.54742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -09207660 810.54742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -09207661 810.54742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -09207662 810.54742432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -09207663 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -09207664 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -09207665 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -09207666 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -09207667 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -09207668 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -09207669 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -09207670 810.54748535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -09207671 810.54754639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -09207672 810.54754639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -09207673 810.54754639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -09207674 810.54754639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -09207675 810.54760742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -09207676 810.54760742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -09207677 810.54760742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -09207678 810.54766846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -09207679 810.54766846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -09207680 810.54766846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -09207681 810.54772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -09207682 810.54772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -09207683 810.54772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -09207684 810.54772949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -09207685 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -09207686 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -09207687 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -09207688 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -09207689 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -09207690 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -09207691 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -09207692 810.54779053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -09207693 810.54785156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -09207694 810.54785156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -09207695 810.54785156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -09207696 810.54785156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -09207697 810.54791260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -09207698 810.54791260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -09207699 810.54797363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -09207700 810.54797363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -09207701 810.54797363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -09207702 810.54797363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -09207703 810.54803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -09207704 810.54803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -09207705 810.54803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -09207706 810.54803467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -09207707 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -09207708 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -09207709 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -09207710 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -09207711 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -09207712 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -09207713 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -09207714 810.54809570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -09207715 810.54815674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -09207716 810.54815674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -09207717 810.54815674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -09207718 810.54821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -09207719 810.54821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -09207720 810.54821777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -09207721 810.54827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -09207722 810.54827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -09207723 810.54827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -09207724 810.54827881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -09207725 810.54833984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -09207726 810.54833984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -09207727 810.54833984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -09207728 810.54833984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -09207729 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -09207730 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -09207731 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -09207732 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -09207733 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -09207734 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -09207735 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -09207736 810.54840088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -09207737 810.54846191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -09207738 810.54846191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -09207739 810.54852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -09207740 810.54852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -09207741 810.54852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -09207742 810.54852295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -09207743 810.54858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -09207744 810.54858398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -09207745 810.54864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -09207746 810.54864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -09207747 810.54864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -09207748 810.54864502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -09207749 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -09207750 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -09207751 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -09207752 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -09207753 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -09207754 810.54870605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -09207755 810.54876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -09207756 810.54876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -09207757 810.54876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -09207758 810.54876709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -09207759 810.54882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -09207760 810.54882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -09207761 810.54882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -09207762 810.54882813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -09207763 810.54888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -09207764 810.54888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -09207765 810.54888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -09207766 810.54888916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -09207767 810.54895020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -09207768 810.54895020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -09207769 810.54901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -09207770 810.54901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -09207771 810.54901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -09207772 810.54901123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -09207773 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -09207774 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -09207775 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -09207776 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -09207777 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -09207778 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -09207779 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -09207780 810.54907227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -09207781 810.54913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -09207782 810.54913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -09207783 810.54913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -09207784 810.54913330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -09207785 810.54919434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -09207786 810.54919434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -09207787 810.54919434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -09207788 810.54925537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -09207789 810.54925537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -09207790 810.54925537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -09207791 810.54931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -09207792 810.54931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -09207793 810.54931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -09207794 810.54931641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -09207795 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -09207796 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -09207797 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -09207798 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -09207799 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -09207800 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -09207801 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -09207802 810.54937744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -09207803 810.54943848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -09207804 810.54943848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -09207805 810.54943848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -09207806 810.54943848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -09207807 810.54949951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -09207808 810.54949951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -09207809 810.54956055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -09207810 810.54956055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -09207811 810.54956055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -09207812 810.54956055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -09207813 810.54962158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -09207814 810.54962158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -09207815 810.54962158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -09207816 810.54962158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -09207817 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -09207818 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -09207819 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -09207820 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -09207821 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -09207822 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -09207823 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -09207824 810.54968262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -09207825 810.54974365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -09207826 810.54974365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -09207827 810.54980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -09207828 810.54980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -09207829 810.54980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -09207830 810.54980469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -09207831 810.54986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -09207832 810.54986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -09207833 810.54986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -09207834 810.54986572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -09207835 810.54992676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -09207836 810.54992676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -09207837 810.54992676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -09207838 810.54992676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -09207839 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -09207840 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -09207841 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -09207842 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -09207843 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -09207844 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -09207845 810.54998779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -09207846 810.55004883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -09207847 810.55004883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -09207848 810.55004883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -09207849 810.55010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -09207850 810.55010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -09207851 810.55010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -09207852 810.55010986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -09207853 810.55017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -09207854 810.55017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -09207855 810.55017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -09207856 810.55017090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -09207857 810.55023193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -09207858 810.55023193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -09207859 810.55023193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -09207860 810.55023193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -09207861 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -09207862 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -09207863 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -09207864 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -09207865 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -09207866 810.55029297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -09207867 810.55035400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -09207868 810.55035400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -09207869 810.55035400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -09207870 810.55035400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -09207871 810.55041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -09207872 810.55041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -09207873 810.55041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -09207874 810.55041504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -09207875 810.55047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -09207876 810.55047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -09207877 810.55047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -09207878 810.55047607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -09207879 810.55053711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -09207880 810.55053711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -09207881 810.55053711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -09207882 810.55059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -09207883 810.55059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -09207884 810.55059814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -09207885 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -09207886 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -09207887 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -09207888 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -09207889 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -09207890 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -09207891 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -09207892 810.55065918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -09207893 810.55072021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -09207894 810.55072021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -09207895 810.55072021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -09207896 810.55072021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -09207897 810.55078125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -09207898 810.55078125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -09207899 810.55078125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -09207900 810.55084229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -09207901 810.55084229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -09207902 810.55084229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -09207903 810.55090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -09207904 810.55090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -09207905 810.55090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -09207906 810.55090332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -09207907 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -09207908 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -09207909 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -09207910 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -09207911 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -09207912 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -09207913 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -09207914 810.55096436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -09207915 810.55102539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -09207916 810.55102539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -09207917 810.55102539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -09207918 810.55108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -09207919 810.55108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -09207920 810.55108643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -09207921 810.55114746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -09207922 810.55114746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -09207923 810.55114746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -09207924 810.55114746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -09207925 810.55120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -09207926 810.55120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -09207927 810.55120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -09207928 810.55120850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -09207929 810.55126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -09207930 810.55126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -09207931 810.55126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -09207932 810.55126953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -09207933 810.55133057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -09207934 810.55133057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -09207935 810.55139160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -09207936 810.55139160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -09207937 810.55145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -09207938 810.55145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -09207939 810.55145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -09207940 810.55145264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -09207941 810.55151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -09207942 810.55151367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -09207943 810.55157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -09207944 810.55157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -09207945 810.55157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -09207946 810.55157471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -09207947 810.55163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -09207948 810.55163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -09207949 810.55163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -09207950 810.55163574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -09207951 810.55169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -09207952 810.55169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -09207953 810.55169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -09207954 810.55169678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -09207955 810.55175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -09207956 810.55175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -09207957 810.55175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -09207958 810.55175781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -09207959 810.55181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -09207960 810.55181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -09207961 810.55181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -09207962 810.55181885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -09207963 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -09207964 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -09207965 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -09207966 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -09207967 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -09207968 810.55187988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -09207969 810.55194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -09207970 810.55194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -09207971 810.55194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -09207972 810.55194092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -09207973 810.55200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -09207974 810.55200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -09207975 810.55200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -09207976 810.55200195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -09207977 810.55206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -09207978 810.55206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -09207979 810.55206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -09207980 810.55206299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -09207981 810.55212402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -09207982 810.55212402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -09207983 810.55218506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -09207984 810.55218506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -09207985 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -09207986 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -09207987 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -09207988 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -09207989 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -09207990 810.55224609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -09207991 810.55230713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -09207992 810.55230713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -09207993 810.55236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -09207994 810.55236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -09207995 810.55236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -09207996 810.55236816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -09207997 810.55242920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -09207998 810.55242920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -09207999 810.55242920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -09208000 810.55242920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -09208001 810.55249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -09208002 810.55249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -09208003 810.55249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -09208004 810.55249023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -09208005 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -09208006 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -09208007 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -09208008 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -09208009 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -09208010 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -09208011 810.55255127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -09208012 810.55261230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -09208013 810.55261230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -09208014 810.55261230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -09208015 810.55267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -09208016 810.55267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -09208017 810.55267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -09208018 810.55267334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -09208019 810.55273438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -09208020 810.55273438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -09208021 810.55273438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -09208022 810.55273438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -09208023 810.55279541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -09208024 810.55279541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -09208025 810.55279541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -09208026 810.55279541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -09208027 810.55285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -09208028 810.55285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -09208029 810.55285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -09208030 810.55285645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -09208031 810.55291748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -09208032 810.55291748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -09208033 810.55297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -09208034 810.55297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -09208035 810.55297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -09208036 810.55297852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -09208037 810.55303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -09208038 810.55303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -09208039 810.55303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -09208040 810.55303955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -09208041 810.55310059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -09208042 810.55310059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -09208043 810.55310059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -09208044 810.55310059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -09208045 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -09208046 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -09208047 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -09208048 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -09208049 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -09208050 810.55316162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -09208051 810.55322266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -09208052 810.55322266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -09208053 810.55322266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -09208054 810.55322266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -09208055 810.55328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -09208056 810.55328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -09208057 810.55328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -09208058 810.55328369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -09208059 810.55334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -09208060 810.55334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -09208061 810.55334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -09208062 810.55334473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -09208063 810.55340576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -09208064 810.55340576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -09208065 810.55340576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -09208066 810.55346680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -09208067 810.55346680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -09208068 810.55346680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -09208069 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -09208070 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -09208071 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -09208072 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -09208073 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -09208074 810.55352783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -09211501 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -09211502 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc070 -09211503 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -09211504 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc080 -09211505 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -09211506 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc090 -09211507 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -09211508 810.60308838 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0a0 -09211509 810.60314941 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -09211510 810.60314941 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0b0 -09211511 810.60314941 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -09211512 810.60321045 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0c0 -09211513 810.60321045 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -09211514 810.60321045 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0d0 -09211515 810.60327148 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -09211516 810.60327148 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0e0 -09211517 810.60327148 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -09211518 810.60327148 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc0f0 -09211519 810.60333252 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -09211520 810.60333252 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc100 -09211521 810.60333252 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -09211522 810.60333252 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc110 -09211523 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -09211524 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc120 -09211525 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -09211526 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc130 -09211527 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -09211528 810.60339355 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc140 -09211529 810.60345459 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -09211530 810.60345459 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc150 -09211531 810.60345459 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -09211532 810.60345459 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc160 -09211533 810.60351563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -09211534 810.60351563 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc170 -09211535 810.60357666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -09211536 810.60357666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc180 -09211537 810.60357666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -09211538 810.60357666 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc190 -09211539 810.60363770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -09211540 810.60363770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1a0 -09211541 810.60363770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -09211542 810.60363770 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1b0 -09211543 810.60369873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -09211544 810.60369873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0xc1c0 -09214867 810.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -09214868 810.65240479 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129a0 -09214869 810.65246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -09214870 810.65246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129b0 -09214871 810.65246582 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -09214872 810.65252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129c0 -09214873 810.65252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -09214874 810.65252686 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129d0 -09214875 810.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -09214876 810.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129e0 -09214877 810.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -09214878 810.65258789 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x129f0 -09214879 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -09214880 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a00 -09214881 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -09214882 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a10 -09214883 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -09214884 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a20 -09214885 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -09214886 810.65264893 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a30 -09214887 810.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -09214888 810.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a40 -09214889 810.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -09214890 810.65270996 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a50 -09214891 810.65277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -09214892 810.65277100 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a60 -09214893 810.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -09214894 810.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a70 -09214895 810.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -09214896 810.65283203 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a80 -09214897 810.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -09214898 810.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a90 -09214899 810.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -09214900 810.65289307 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12aa0 -09214901 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -09214902 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ab0 -09214903 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -09214904 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ac0 -09214905 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -09214906 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ad0 -09214907 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -09214908 810.65295410 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12ae0 -09214909 810.65301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -09214910 810.65301514 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x12af0 -09218772 810.70849609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a390 -09218773 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -09218774 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3a0 -09218775 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -09218776 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3b0 -09218777 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -09218778 810.70855713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3c0 -09218779 810.70861816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -09218780 810.70861816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3d0 -09218781 810.70861816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -09218782 810.70861816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3e0 -09218783 810.70867920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -09218784 810.70867920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a3f0 -09218785 810.70867920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -09218786 810.70867920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a400 -09218787 810.70874023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -09218788 810.70874023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a410 -09218789 810.70874023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -09218790 810.70874023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a420 -09218791 810.70880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -09218792 810.70880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a430 -09218793 810.70880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -09218794 810.70880127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a440 -09218795 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -09218796 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a450 -09218797 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -09218798 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a460 -09218799 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -09218800 810.70886230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a470 -09218801 810.70892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -09218802 810.70892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a480 -09218803 810.70892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -09218804 810.70892334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a490 -09218805 810.70898438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -09218806 810.70898438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4a0 -09218807 810.70898438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -09218808 810.70898438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4b0 -09218809 810.70904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -09218810 810.70904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4c0 -09218811 810.70904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -09218812 810.70904541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4d0 -09218813 810.70910645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -09218814 810.70910645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4e0 -09218815 810.70910645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a4f0 -09235163 810.94372559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -09235164 810.94372559 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a390 -09235165 810.94378662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -09235166 810.94378662 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a0 -09235167 810.94384766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -09235168 810.94384766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b0 -09235169 810.94384766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -09235170 810.94384766 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c0 -09235171 810.94390869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -09235172 810.94390869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d0 -09235173 810.94390869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -09235174 810.94390869 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e0 -09235175 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -09235176 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f0 -09235177 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -09235178 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a400 -09235179 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -09235180 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a410 -09235181 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -09235182 810.94396973 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a420 -09235183 810.94403076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -09235184 810.94403076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a430 -09235185 810.94403076 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -09235186 810.94409180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a440 -09235187 810.94409180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -09235188 810.94409180 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a450 -09235189 810.94415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -09235190 810.94415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a460 -09235191 810.94415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -09235192 810.94415283 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a470 -09235193 810.94421387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -09235194 810.94421387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a480 -09235195 810.94421387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -09235196 810.94421387 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a490 -09235197 810.94427490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -09235198 810.94427490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a0 -09235199 810.94427490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -09235200 810.94427490 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4b0 -09235201 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -09235202 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4c0 -09235203 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -09235204 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4d0 -09235205 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -09235206 810.94433594 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4e0 -09238959 810.99792480 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -09238960 810.99792480 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a30 -09238961 810.99792480 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -09238962 810.99792480 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a40 -09238963 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -09238964 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a50 -09238965 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -09238966 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a60 -09238967 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -09238968 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a70 -09238969 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -09238970 810.99798584 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a80 -09238971 810.99804688 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -09238972 810.99804688 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a90 -09238973 810.99810791 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -09238974 810.99810791 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41aa0 -09238975 810.99810791 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -09238976 810.99810791 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ab0 -09238977 810.99816895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -09238978 810.99816895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ac0 -09238979 810.99816895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -09238980 810.99816895 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ad0 -09238981 810.99822998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -09238982 810.99822998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41ae0 -09238983 810.99822998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -09238984 810.99822998 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41af0 -09238985 810.99829102 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -09238986 810.99829102 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b00 -09238987 810.99829102 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -09238988 810.99829102 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b10 -09238989 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -09238990 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b20 -09238991 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -09238992 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b30 -09238993 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -09238994 810.99835205 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b40 -09238995 810.99841309 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -09238996 810.99841309 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b50 -09238997 810.99841309 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -09238998 810.99841309 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b60 -09238999 810.99847412 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -09239000 810.99847412 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b70 -09239001 810.99847412 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -09239002 810.99847412 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b80 -09241591 811.03552246 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -09241592 811.03552246 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c70 -09241593 811.03552246 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -09241594 811.03552246 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c80 -09241595 811.03558350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -09241596 811.03558350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c90 -09241597 811.03558350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -09241598 811.03558350 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ca0 -09241599 811.03564453 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -09241600 811.03564453 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cb0 -09241601 811.03564453 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -09241602 811.03564453 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cc0 -09241603 811.03570557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -09241604 811.03570557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cd0 -09241605 811.03570557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -09241606 811.03570557 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ce0 -09241607 811.03576660 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -09241608 811.03576660 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf0 -09241609 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -09241610 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d00 -09241611 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -09241612 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d10 -09241613 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -09241614 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d20 -09241615 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -09241616 811.03582764 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d30 -09241617 811.03588867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -09241618 811.03588867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d40 -09241619 811.03588867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -09241620 811.03588867 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d50 -09241621 811.03594971 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -09241622 811.03594971 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d60 -09241623 811.03594971 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -09241624 811.03594971 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d70 -09241625 811.03601074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -09241626 811.03601074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d80 -09241627 811.03601074 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -09241628 811.03607178 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d90 -09241629 811.03607178 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -09241630 811.03607178 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da0 -09241631 811.03613281 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -09241632 811.03613281 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db0 -09241633 811.03613281 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -09241634 811.03613281 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc0 -09243735 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -09243736 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af70 -09243737 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -09243738 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af80 -09243739 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -09243740 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af90 -09243741 811.06665039 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -09243742 811.06671143 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afa0 -09243743 811.06671143 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -09243744 811.06671143 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afb0 -09243745 811.06677246 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -09243746 811.06677246 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afc0 -09243747 811.06677246 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -09243748 811.06677246 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afd0 -09243749 811.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -09243750 811.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4afe0 -09243751 811.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -09243752 811.06683350 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aff0 -09243753 811.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -09243754 811.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b000 -09243755 811.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -09243756 811.06689453 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b010 -09243757 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -09243758 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b020 -09243759 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -09243760 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b030 -09243761 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -09243762 811.06695557 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b040 -09243763 811.06701660 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -09243764 811.06701660 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b050 -09243765 811.06701660 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -09243766 811.06701660 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b060 -09243767 811.06707764 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -09243768 811.06707764 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b070 -09243769 811.06707764 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -09243770 811.06707764 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b080 -09243771 811.06713867 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -09243772 811.06713867 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b090 -09243773 811.06713867 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -09243774 811.06713867 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0a0 -09243775 811.06719971 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -09243776 811.06719971 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0b0 -09243777 811.06719971 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -09243778 811.06719971 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b0c0 -09245667 811.09783936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -09245668 811.09783936 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebd0 -09245669 811.09790039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -09245670 811.09790039 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebe0 -09245671 811.09796143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -09245672 811.09796143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ebf0 -09245673 811.09796143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -09245674 811.09796143 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec00 -09245675 811.09802246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -09245676 811.09802246 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec10 -09245677 811.09808350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -09245678 811.09808350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec20 -09245679 811.09808350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -09245680 811.09808350 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec30 -09245681 811.09814453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -09245682 811.09814453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec40 -09245683 811.09814453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -09245684 811.09814453 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec50 -09245685 811.09820557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -09245686 811.09820557 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec60 -09245687 811.09826660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -09245688 811.09826660 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec70 -09245689 811.09832764 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -09245690 811.09832764 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec80 -09245691 811.09838867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -09245692 811.09838867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec90 -09245693 811.09838867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -09245694 811.09838867 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca0 -09245695 811.09844971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -09245696 811.09844971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb0 -09245697 811.09844971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -09245698 811.09844971 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc0 -09245699 811.09851074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -09245700 811.09851074 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd0 -09245701 811.09857178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -09245702 811.09857178 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece0 -09245703 811.09869385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -09245704 811.09869385 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf0 -09245705 811.09875488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -09245706 811.09875488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed00 -09245707 811.09875488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -09245708 811.09875488 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed10 -09245709 811.09881592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -09245710 811.09881592 [vmhook-eac [core number = 0]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed20 -09247768 811.36657715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09247769 811.38671875 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09247770 811.38671875 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09247771 812.34185791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09247772 812.34191895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09247773 812.34191895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09247774 812.34191895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09247775 812.34197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09247776 812.34197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09247777 812.34197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09247778 812.34197998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09247779 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09247780 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09247781 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09247782 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09247783 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09247784 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09247785 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09247786 812.34204102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09247787 812.34210205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09247788 812.34210205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09247789 812.34216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09247790 812.34216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09247791 812.34216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09247792 812.34216309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09247793 812.34222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09247794 812.34222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09247795 812.34222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09247796 812.34222412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09247797 812.34228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09247798 812.34228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09247799 812.34228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09247800 812.34228516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09247801 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09247802 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09247803 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09247804 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09247805 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09247806 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09247807 812.34234619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09247808 812.34240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09247809 812.34240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09247810 812.34240723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09247811 812.34246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09247812 812.34246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09247813 812.34246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09247814 812.34246826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09247815 812.34252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09247816 812.34252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09247817 812.34252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09247818 812.34252930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09247819 812.34259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09247820 812.34259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09247821 812.34259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09247822 812.34259033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09247823 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09247824 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09247825 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09247826 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09247827 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09247828 812.34265137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09247829 812.34271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09247830 812.34271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09247831 812.34271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09247832 812.34271240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09247833 812.34277344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09247834 812.34277344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09247835 812.34283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09247836 812.34283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09247837 812.34283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09247838 812.34283447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09247839 812.34289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09247840 812.34289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09247841 812.34289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09247842 812.34289551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09247843 812.34295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09247844 812.34295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09247845 812.34295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09247846 812.34295654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09247847 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09247848 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09247849 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09247850 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09247851 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09247852 812.34301758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09247853 812.34307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09247854 812.34307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09247855 812.34307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09247856 812.34307861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09247857 812.34313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09247858 812.34313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09247859 812.34313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09247860 812.34313965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09247861 812.34320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09247862 812.34320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09247863 812.34320068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09247864 812.34326172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09247865 812.34326172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09247866 812.34326172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09247867 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09247868 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09247869 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09247870 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09247871 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09247872 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09247873 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09247874 812.34332275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09247875 812.34338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09247876 812.34338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09247877 812.34338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09247878 812.34338379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09247879 812.34344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09247880 812.34344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09247881 812.34344482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09247882 812.34350586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09247883 812.34350586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09247884 812.34350586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09247885 812.34356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09247886 812.34356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09247887 812.34356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09247888 812.34356689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09247889 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09247890 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09247891 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09247892 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09247893 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09247894 812.34362793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09247895 812.34368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09247896 812.34368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09247897 812.34368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09247898 812.34368896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09247899 812.34375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09247900 812.34375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09247901 812.34375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09247902 812.34375000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09247903 812.34381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09247904 812.34381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09247905 812.34381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09247906 812.34381104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09247907 812.34387207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09247908 812.34387207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09247909 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09247910 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09247911 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09247912 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09247913 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09247914 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09247915 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09247916 812.34393311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09247917 812.34399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09247918 812.34399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09247919 812.34399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09247920 812.34399414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09247921 812.34405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09247922 812.34405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09247923 812.34405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09247924 812.34405518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09247925 812.34411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09247926 812.34411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09247927 812.34411621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09247928 812.34417725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09247929 812.34417725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09247930 812.34417725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09247931 812.34423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09247932 812.34423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09247933 812.34423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09247934 812.34423828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09247935 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09247936 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09247937 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09247938 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09247939 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09247940 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09247941 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09247942 812.34429932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09247943 812.34436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09247944 812.34436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09247945 812.34436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09247946 812.34436035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09247947 812.34442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09247948 812.34442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09247949 812.34442139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09247950 812.34448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09247951 812.34448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09247952 812.34448242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09247953 812.34454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09247954 812.34454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09247955 812.34454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09247956 812.34454346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09247957 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09247958 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09247959 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09247960 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09247961 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09247962 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09247963 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09247964 812.34460449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09247965 812.34466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09247966 812.34466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09247967 812.34466553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09247968 812.34472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09247969 812.34472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09247970 812.34472656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09247971 812.34478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09247972 812.34478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09247973 812.34478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09247974 812.34478760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09247975 812.34484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09247976 812.34484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09247977 812.34484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09247978 812.34484863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09247979 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09247980 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09247981 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09247982 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09247983 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09247984 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09247985 812.34490967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09247986 812.34497070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09247987 812.34497070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09247988 812.34497070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09247989 812.34503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09247990 812.34503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09247991 812.34503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09247992 812.34503174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09247993 812.34509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09247994 812.34509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09247995 812.34509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09247996 812.34509277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09247997 812.34515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09247998 812.34515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09247999 812.34515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09248000 812.34515381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09248001 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09248002 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09248003 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09248004 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09248005 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09248006 812.34521484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09248007 812.34527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09248008 812.34527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09248009 812.34527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09248010 812.34527588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09248011 812.34533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09248012 812.34533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09248013 812.34533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09248014 812.34533691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09248015 812.34539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09248016 812.34539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09248017 812.34539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09248018 812.34539795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09248019 812.34545898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09248020 812.34545898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09248021 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09248022 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09248023 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09248024 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09248025 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09248026 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09248027 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09248028 812.34552002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09248029 812.34558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09248030 812.34558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09248031 812.34558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09248032 812.34558105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09248033 812.34564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09248034 812.34564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09248035 812.34564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09248036 812.34564209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09248037 812.34570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09248038 812.34570313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09248039 812.34576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09248040 812.34576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09248041 812.34576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09248042 812.34576416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09248043 812.34582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09248044 812.34582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09248045 812.34582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09248046 812.34582520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09248047 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09248048 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09248049 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09248050 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09248051 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09248052 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09248053 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09248054 812.34588623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09248055 812.34594727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09248056 812.34594727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09248057 812.34594727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09248058 812.34600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09248059 812.34600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09248060 812.34600830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09248061 812.34606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09248062 812.34606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09248063 812.34606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09248064 812.34606934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09248065 812.34613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09248066 812.34613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09248067 812.34613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09248068 812.34613037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09248069 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09248070 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09248071 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09248072 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09248073 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09248074 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09248075 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09248076 812.34619141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09248077 812.34625244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09248078 812.34625244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09248079 812.34631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09248080 812.34631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09248081 812.34631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09248082 812.34631348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09248083 812.34637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09248084 812.34637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09248085 812.34637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09248086 812.34637451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09248087 812.34643555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09248088 812.34643555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09248089 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09248090 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09248091 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09248092 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09248093 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09248094 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09248095 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09248096 812.34649658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09248097 812.34655762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09248098 812.34655762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09248099 812.34661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09248100 812.34661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09248101 812.34661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09248102 812.34661865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09248103 812.34667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09248104 812.34667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09248105 812.34667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09248106 812.34667969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09248107 812.34674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09248108 812.34674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09248109 812.34674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09248110 812.34674072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09248111 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09248112 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09248113 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09248114 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09248115 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09248116 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09248117 812.34680176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09248118 812.34686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09248119 812.34686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09248120 812.34686279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09248121 812.34692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09248122 812.34692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09248123 812.34692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09248124 812.34692383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09248125 812.34698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09248126 812.34698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09248127 812.34698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09248128 812.34698486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09248129 812.34704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09248130 812.34704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09248131 812.34704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09248132 812.34704590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09248133 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09248134 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09248135 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09248136 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09248137 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09248138 812.34710693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09248139 812.34716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09248140 812.34716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09248141 812.34716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09248142 812.34716797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09248143 812.34722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09248144 812.34722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09248145 812.34722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09248146 812.34722900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09248147 812.34729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09248148 812.34729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09248149 812.34729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09248150 812.34729004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09248151 812.34735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09248152 812.34735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09248153 812.34735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09248154 812.34735107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09248155 812.34741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09248156 812.34741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09248157 812.34741211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09248158 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09248159 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09248160 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09248161 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09248162 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09248163 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09248164 812.34747314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09248165 812.34753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09248166 812.34753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09248167 812.34753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09248168 812.34753418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09248169 812.34759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09248170 812.34759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09248171 812.34759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09248172 812.34759521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09248173 812.34765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09248174 812.34765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09248175 812.34765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09248176 812.34765625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09248177 812.34771729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09248178 812.34771729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09248179 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09248180 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09248181 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09248182 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09248183 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09248184 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09248185 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09248186 812.34777832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09248187 812.34783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09248188 812.34783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09248189 812.34783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09248190 812.34783936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09248191 812.34790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09248192 812.34790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09248193 812.34790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09248194 812.34790039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09248195 812.34796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09248196 812.34796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09248197 812.34796143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09248198 812.34802246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09248199 812.34802246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09248200 812.34802246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09248201 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09248202 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09248203 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09248204 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09248205 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09248206 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09248207 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09248208 812.34808350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09248209 812.34814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09248210 812.34814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09248211 812.34814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09248212 812.34814453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09248213 812.34820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09248214 812.34820557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09248215 812.34826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09248216 812.34826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09248217 812.34826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09248218 812.34826660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09248219 812.34832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09248220 812.34832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09248221 812.34832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09248222 812.34832764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09248223 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09248224 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09248225 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09248226 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09248227 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09248228 812.34838867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09248229 812.34844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09248230 812.34844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09248231 812.34844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09248232 812.34844971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09248233 812.34851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09248234 812.34851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09248235 812.34851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09248236 812.34851074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09248237 812.34857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09248238 812.34857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09248239 812.34857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09248240 812.34857178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09248241 812.34863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09248242 812.34863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09248243 812.34863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09248244 812.34863281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09248245 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09248246 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09248247 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09248248 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09248249 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09248250 812.34869385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09248251 812.34875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09248252 812.34875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09248253 812.34875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09248254 812.34875488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09248255 812.34881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09248256 812.34881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09248257 812.34881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09248258 812.34881592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09248259 812.34887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09248260 812.34887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09248261 812.34887695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09248262 812.34893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09248263 812.34893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09248264 812.34893799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09248265 812.34899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09248266 812.34899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09248267 812.34899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09248268 812.34899902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09248269 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09248270 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09248271 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09248272 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09248273 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09248274 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09248275 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09248276 812.34906006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09248277 812.34912109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09248278 812.34912109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09248279 812.34918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09248280 812.34918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09248281 812.34918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09248282 812.34918213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09248283 812.34924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09248284 812.34924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09248285 812.34924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09248286 812.34924316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09248287 812.34930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09248288 812.34930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09248289 812.34930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09248290 812.34930420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09248291 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09248292 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09248293 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09248294 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09248295 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09248296 812.34936523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09248297 812.34942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09248298 812.34942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09248299 812.34942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09248300 812.34942627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09248301 812.34948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09248302 812.34948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09248303 812.34948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09248304 812.34948730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09248305 812.34954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09248306 812.34954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09248307 812.34954834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09248308 812.34960938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09248309 812.34960938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09248310 812.34960938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09248311 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09248312 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09248313 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09248314 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09248315 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09248316 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09248317 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09248318 812.34967041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09248319 812.34973145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09248320 812.34973145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09248321 812.34973145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09248322 812.34979248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09248323 812.34979248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09248324 812.34979248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09248325 812.34985352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09248326 812.34985352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09248327 812.34985352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09248328 812.34985352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09248329 812.34991455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09248330 812.34991455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09248331 812.34991455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09248332 812.34991455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09248333 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09248334 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09248335 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09248336 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09248337 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09248338 812.34997559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09248339 812.35003662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09248340 812.35003662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09248341 812.35003662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09248342 812.35003662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09248343 812.35009766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09248344 812.35009766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09248345 812.35009766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09248346 812.35009766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09248347 812.35015869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09248348 812.35015869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09248349 812.35015869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09248350 812.35015869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09248351 812.35021973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09248352 812.35021973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09248353 812.35021973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09248354 812.35021973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09248355 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09248356 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09248357 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09248358 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09248359 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09248360 812.35028076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09248361 812.35034180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09248362 812.35034180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09248363 812.35034180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09248364 812.35034180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09248365 812.35040283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09248366 812.35040283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09248367 812.35040283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09248368 812.35040283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09248369 812.35046387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09248370 812.35046387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09248371 812.35046387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09248372 812.35046387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09248373 812.35052490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09248374 812.35052490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09248375 812.35058594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09248376 812.35058594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09248377 812.35058594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09248378 812.35058594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09248379 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09248380 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09248381 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09248382 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09248383 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09248384 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09248385 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09248386 812.35064697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09248387 812.35070801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09248388 812.35070801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09248389 812.35070801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09248390 812.35070801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09248391 812.35076904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09248392 812.35076904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09248393 812.35076904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09248394 812.35083008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09248395 812.35083008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09248396 812.35083008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09248397 812.35089111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09248398 812.35089111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09248399 812.35089111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09248400 812.35089111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09248401 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09248402 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09248403 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09248404 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09248405 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09248406 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09248407 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09248408 812.35095215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09248409 812.35101318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09248410 812.35101318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09248411 812.35107422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09248412 812.35107422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09248413 812.35107422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09248414 812.35107422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09248415 812.35113525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09248416 812.35113525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09248417 812.35113525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09248418 812.35113525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09248419 812.35119629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09248420 812.35119629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09248421 812.35119629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09248422 812.35119629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09248423 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09248424 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09248425 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09248426 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09248427 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09248428 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09248429 812.35125732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09248430 812.35131836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09248431 812.35131836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09248432 812.35131836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09248433 812.35137939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09248434 812.35137939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09248435 812.35137939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09248436 812.35137939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09248437 812.35144043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09248438 812.35144043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09248439 812.35144043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09248440 812.35144043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09248441 812.35150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09248442 812.35150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09248443 812.35150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09248444 812.35150146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09248445 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09248446 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09248447 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09248448 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09248449 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09248450 812.35156250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09248451 812.35162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09248452 812.35162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09248453 812.35162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09248454 812.35162354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09248455 812.35168457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09248456 812.35168457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09248457 812.35168457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09248458 812.35168457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09248459 812.35174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09248460 812.35174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09248461 812.35174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09248462 812.35174561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09248463 812.35180664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09248464 812.35180664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09248465 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09248466 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09248467 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09248468 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09248469 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09248470 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09248471 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09248472 812.35186768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09248473 812.35192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09248474 812.35192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09248475 812.35192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09248476 812.35192871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09248477 812.35198975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09248478 812.35198975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09248479 812.35198975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09248480 812.35205078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09248481 812.35205078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09248482 812.35205078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09248483 812.35211182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09248484 812.35211182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09248485 812.35211182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09248486 812.35211182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09248487 812.35217285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09248488 812.35217285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09248489 812.35217285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09248490 812.35217285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09248491 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09248492 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09248493 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09248494 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09248495 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09248496 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09248497 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09248498 812.35223389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09248499 812.35229492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09248500 812.35229492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09248501 812.35235596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09248502 812.35235596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09248503 812.35235596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09248504 812.35235596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09248505 812.35241699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09248506 812.35241699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09248507 812.35241699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09248508 812.35241699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09248509 812.35247803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09248510 812.35247803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09248511 812.35247803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09248512 812.35247803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09248513 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09248514 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09248515 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09248516 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09248517 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09248518 812.35253906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09254221 812.43389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -09254222 812.43389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9d8 -09254223 812.43389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -09254224 812.43395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9e8 -09254225 812.43395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -09254226 812.43395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xd9f8 -09254227 812.43402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -09254228 812.43402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda08 -09254229 812.43402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -09254230 812.43402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda18 -09254231 812.43408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -09254232 812.43408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda28 -09254233 812.43408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -09254234 812.43408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda38 -09254235 812.43414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -09254236 812.43414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda48 -09254237 812.43414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -09254238 812.43414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda58 -09254239 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -09254240 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda68 -09254241 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -09254242 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda78 -09254243 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -09254244 812.43420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda88 -09254245 812.43426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -09254246 812.43426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xda98 -09254247 812.43426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -09254248 812.43426514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaa8 -09254249 812.43432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -09254250 812.43432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdab8 -09254251 812.43432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -09254252 812.43432617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdac8 -09254253 812.43438721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -09254254 812.43438721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdad8 -09254255 812.43438721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -09254256 812.43438721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdae8 -09254257 812.43444824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -09254258 812.43444824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdaf8 -09254259 812.43444824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -09254260 812.43444824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb08 -09254261 812.43450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -09254262 812.43450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb18 -09254263 812.43450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -09254264 812.43450928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xdb28 -09257097 812.47509766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b8 -09257098 812.47509766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133b8 -09257099 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c8 -09257100 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133c8 -09257101 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d8 -09257102 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133d8 -09257103 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e8 -09257104 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133e8 -09257105 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f8 -09257106 812.47515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x133f8 -09257107 812.47521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13408 -09257108 812.47521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13408 -09257109 812.47528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13418 -09257110 812.47528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13418 -09257111 812.47528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13428 -09257112 812.47528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13428 -09257113 812.47534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13438 -09257114 812.47534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13438 -09257115 812.47534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13448 -09257116 812.47534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13448 -09257117 812.47540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13458 -09257118 812.47540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13458 -09257119 812.47540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -09257120 812.47540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13468 -09257121 812.47546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -09257122 812.47546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13478 -09257123 812.47546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -09257124 812.47546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13488 -09257125 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13498 -09257126 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13498 -09257127 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -09257128 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134a8 -09257129 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -09257130 812.47552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134b8 -09257131 812.47558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -09257132 812.47558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134c8 -09257133 812.47558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -09257134 812.47558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134d8 -09257135 812.47564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -09257136 812.47564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134e8 -09257137 812.47564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -09257138 812.47564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x134f8 -09257139 812.47570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -09257140 812.47570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13508 -09260469 812.52331543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d18 -09260470 812.52331543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d18 -09260471 812.52331543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d28 -09260472 812.52331543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d28 -09260473 812.52337646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d38 -09260474 812.52337646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d38 -09260475 812.52337646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d48 -09260476 812.52337646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d48 -09260477 812.52343750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d58 -09260478 812.52343750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d58 -09260479 812.52343750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d68 -09260480 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d68 -09260481 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d78 -09260482 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d78 -09260483 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d88 -09260484 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d88 -09260485 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d98 -09260486 812.52349854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d98 -09260487 812.52355957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da8 -09260488 812.52355957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19da8 -09260489 812.52355957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db8 -09260490 812.52355957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19db8 -09260491 812.52362061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc8 -09260492 812.52362061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dc8 -09260493 812.52362061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd8 -09260494 812.52368164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19dd8 -09260495 812.52368164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de8 -09260496 812.52368164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19de8 -09260497 812.52374268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df8 -09260498 812.52374268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19df8 -09260499 812.52374268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e08 -09260500 812.52374268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e08 -09260501 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e18 -09260502 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e18 -09260503 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e28 -09260504 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e28 -09260505 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e38 -09260506 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e38 -09260507 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e48 -09260508 812.52380371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e48 -09260509 812.52386475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e58 -09260510 812.52386475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e58 -09260511 812.52386475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -09260512 812.52392578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e68 -09263889 812.57244873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -09263890 812.57244873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x207f8 -09263891 812.57244873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -09263892 812.57244873 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20808 -09263893 812.57250977 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -09263894 812.57250977 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20818 -09263895 812.57250977 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -09263896 812.57250977 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20828 -09263897 812.57257080 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -09263898 812.57257080 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20838 -09263899 812.57257080 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -09263900 812.57257080 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20848 -09263901 812.57263184 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -09263902 812.57263184 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20858 -09263903 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -09263904 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20868 -09263905 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -09263906 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20878 -09263907 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -09263908 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20888 -09263909 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -09263910 812.57269287 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20898 -09263911 812.57275391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -09263912 812.57275391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208a8 -09263913 812.57275391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -09263914 812.57275391 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208b8 -09263915 812.57281494 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -09263916 812.57281494 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208c8 -09263917 812.57281494 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -09263918 812.57281494 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208d8 -09263919 812.57287598 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -09263920 812.57287598 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208e8 -09263921 812.57287598 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -09263922 812.57287598 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x208f8 -09263923 812.57293701 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -09263924 812.57293701 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20908 -09263925 812.57299805 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -09263926 812.57299805 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20918 -09263927 812.57299805 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -09263928 812.57299805 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20928 -09263929 812.57305908 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -09263930 812.57305908 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20938 -09263931 812.57305908 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -09263932 812.57305908 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x20948 -09267630 812.62579346 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cd8 -09267631 812.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce8 -09267632 812.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27ce8 -09267633 812.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf8 -09267634 812.62585449 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27cf8 -09267635 812.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d08 -09267636 812.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d08 -09267637 812.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d18 -09267638 812.62591553 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d18 -09267639 812.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -09267640 812.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d28 -09267641 812.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -09267642 812.62597656 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d38 -09267643 812.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -09267644 812.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d48 -09267645 812.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -09267646 812.62603760 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d58 -09267647 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -09267648 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d68 -09267649 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -09267650 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d78 -09267651 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -09267652 812.62609863 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d88 -09267653 812.62615967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -09267654 812.62615967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d98 -09267655 812.62615967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -09267656 812.62615967 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27da8 -09267657 812.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -09267658 812.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27db8 -09267659 812.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -09267660 812.62622070 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dc8 -09267661 812.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -09267662 812.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27dd8 -09267663 812.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -09267664 812.62628174 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27de8 -09267665 812.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -09267666 812.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27df8 -09267667 812.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -09267668 812.62634277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e08 -09267669 812.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -09267670 812.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e18 -09267671 812.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -09267672 812.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e28 -09267673 812.62640381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e38 -09270243 812.66333008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce88 -09270244 812.66333008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce88 -09270245 812.66333008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce98 -09270246 812.66333008 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce98 -09270247 812.66339111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea8 -09270248 812.66339111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cea8 -09270249 812.66339111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb8 -09270250 812.66339111 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ceb8 -09270251 812.66345215 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec8 -09270252 812.66345215 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cec8 -09270253 812.66351318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced8 -09270254 812.66351318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ced8 -09270255 812.66351318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee8 -09270256 812.66351318 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cee8 -09270257 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef8 -09270258 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cef8 -09270259 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf08 -09270260 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf08 -09270261 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf18 -09270262 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf18 -09270263 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf28 -09270264 812.66357422 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf28 -09270265 812.66363525 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf38 -09270266 812.66363525 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf38 -09270267 812.66363525 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf48 -09270268 812.66363525 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf48 -09270269 812.66369629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf58 -09270270 812.66369629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf58 -09270271 812.66369629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf68 -09270272 812.66369629 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf68 -09270273 812.66375732 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf78 -09270274 812.66375732 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf78 -09270275 812.66381836 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf88 -09270276 812.66381836 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf88 -09270277 812.66381836 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf98 -09270278 812.66381836 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf98 -09270279 812.66387939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa8 -09270280 812.66387939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfa8 -09270281 812.66387939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb8 -09270282 812.66387939 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfb8 -09270283 812.66394043 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc8 -09270284 812.66394043 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfc8 -09270285 812.66394043 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd8 -09270286 812.66394043 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cfd8 -09273567 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33668 -09273568 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33668 -09273569 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33678 -09273570 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33678 -09273571 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33688 -09273572 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33688 -09273573 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33698 -09273574 812.71032715 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33698 -09273575 812.71038818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a8 -09273576 812.71038818 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336a8 -09273577 812.71044922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b8 -09273578 812.71044922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336b8 -09273579 812.71044922 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c8 -09273580 812.71051025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336c8 -09273581 812.71051025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d8 -09273582 812.71051025 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336d8 -09273583 812.71057129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e8 -09273584 812.71057129 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336e8 -09273585 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f8 -09273586 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x336f8 -09273587 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33708 -09273588 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33708 -09273589 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33718 -09273590 812.71063232 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33718 -09273591 812.71069336 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33728 -09273592 812.71069336 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33728 -09273593 812.71075439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33738 -09273594 812.71075439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33738 -09273595 812.71075439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33748 -09273596 812.71075439 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33748 -09273597 812.71081543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33758 -09273598 812.71081543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33758 -09273599 812.71081543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33768 -09273600 812.71081543 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33768 -09273601 812.71087646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33778 -09273602 812.71087646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33778 -09273603 812.71087646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33788 -09273604 812.71087646 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33788 -09273605 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33798 -09273606 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x33798 -09273607 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a8 -09273608 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x337a8 -09273609 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b8 -09273610 812.71093750 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x337b8 -09289027 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -09289028 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51988 -09289029 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -09289030 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51998 -09289031 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -09289032 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519a8 -09289033 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -09289034 812.93365479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519b8 -09289035 812.93371582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -09289036 812.93371582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519c8 -09289037 812.93371582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -09289038 812.93371582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519d8 -09289039 812.93377686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -09289040 812.93377686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519e8 -09289041 812.93377686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -09289042 812.93377686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x519f8 -09289043 812.93383789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -09289044 812.93383789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a08 -09289045 812.93389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -09289046 812.93389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a18 -09289047 812.93389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -09289048 812.93389893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a28 -09289049 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -09289050 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a38 -09289051 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -09289052 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a48 -09289053 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -09289054 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a58 -09289055 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -09289056 812.93395996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a68 -09289057 812.93402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -09289058 812.93402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a78 -09289059 812.93402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -09289060 812.93402100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a88 -09289061 812.93408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -09289062 812.93408203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a98 -09289063 812.93414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -09289064 812.93414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51aa8 -09289065 812.93414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -09289066 812.93414307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ab8 -09289067 812.93420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -09289068 812.93420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ac8 -09289069 812.93420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -09289070 812.93420410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51ad8 -09289657 813.24822998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289658 813.24822998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289659 813.24822998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289660 813.24822998 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09289661 813.24841309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289662 813.24841309 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09289663 813.24847412 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289664 813.24853516 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09289665 813.38836670 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09289666 813.41033936 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289667 813.41033936 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289668 815.41296387 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09289669 815.43395996 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289670 815.43395996 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289671 815.75531006 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289672 815.75537109 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289673 815.75543213 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289674 815.75543213 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09289675 815.75561523 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289676 815.75561523 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09289677 815.75567627 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09289678 815.75573730 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09289679 816.25689697 [vmhook-eac [core number = 10]]sha1 hash data = 0xFFFFF80061B91000, len = 0x51d28, result = 0xFFFFFE815A084BE0 -09289680 816.25811768 [vmhook-eac [core number = 10]]sha1 hash data = 0xFFFFF80061C0B000, len = 0x2bc79d, result = 0xFFFFFE815A084BE0 -09289681 817.43591309 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09289682 817.45727539 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289683 817.45727539 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09289684 817.94372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09289685 817.94372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09289686 817.94372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09289687 817.94372559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09289688 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09289689 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09289690 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09289691 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09289692 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09289693 817.94378662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09289694 817.94384766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09289695 817.94384766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09289696 817.94384766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09289697 817.94384766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09289698 817.94390869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09289699 817.94390869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09289700 817.94390869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09289701 817.94390869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09289702 817.94396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09289703 817.94396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09289704 817.94396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09289705 817.94396973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09289706 817.94403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09289707 817.94403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09289708 817.94403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09289709 817.94403076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09289710 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09289711 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09289712 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09289713 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09289714 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09289715 817.94409180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09289716 817.94415283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09289717 817.94415283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09289718 817.94415283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09289719 817.94415283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09289720 817.94421387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09289721 817.94421387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09289722 817.94421387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09289723 817.94421387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09289724 817.94427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09289725 817.94427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09289726 817.94427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09289727 817.94427490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09289728 817.94433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09289729 817.94433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09289730 817.94433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09289731 817.94433594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09289732 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09289733 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09289734 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09289735 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09289736 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09289737 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09289738 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09289739 817.94439697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09289740 817.94445801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09289741 817.94445801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09289742 817.94445801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09289743 817.94451904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09289744 817.94451904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09289745 817.94451904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09289746 817.94458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09289747 817.94458008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09289748 817.94464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09289749 817.94464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09289750 817.94464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09289751 817.94464111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09289752 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09289753 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09289754 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09289755 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09289756 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09289757 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09289758 817.94470215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09289759 817.94476318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09289760 817.94476318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09289761 817.94476318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09289762 817.94482422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09289763 817.94482422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09289764 817.94482422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09289765 817.94482422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09289766 817.94488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09289767 817.94488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09289768 817.94488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09289769 817.94488525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09289770 817.94494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09289771 817.94494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09289772 817.94494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09289773 817.94494629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09289774 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09289775 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09289776 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09289777 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09289778 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09289779 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09289780 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09289781 817.94500732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09289782 817.94506836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09289783 817.94506836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09289784 817.94506836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09289785 817.94506836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09289786 817.94512939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09289787 817.94512939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09289788 817.94512939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09289789 817.94512939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09289790 817.94519043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09289791 817.94519043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09289792 817.94519043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09289793 817.94519043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09289794 817.94525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09289795 817.94525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09289796 817.94525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09289797 817.94525146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09289798 817.94531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09289799 817.94531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09289800 817.94531250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09289801 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09289802 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09289803 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09289804 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09289805 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09289806 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09289807 817.94537354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09289808 817.94543457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09289809 817.94543457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09289810 817.94543457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09289811 817.94543457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09289812 817.94549561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09289813 817.94549561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09289814 817.94549561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09289815 817.94555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09289816 817.94555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09289817 817.94555664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09289818 817.94561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09289819 817.94561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09289820 817.94561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09289821 817.94561768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09289822 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09289823 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09289824 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09289825 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09289826 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09289827 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09289828 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09289829 817.94567871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09289830 817.94573975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09289831 817.94573975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09289832 817.94573975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09289833 817.94573975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09289834 817.94580078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09289835 817.94580078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09289836 817.94586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09289837 817.94586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09289838 817.94586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09289839 817.94586182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09289840 817.94592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09289841 817.94592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09289842 817.94592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09289843 817.94592285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09289844 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09289845 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09289846 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09289847 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09289848 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09289849 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09289850 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09289851 817.94598389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09289852 817.94604492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09289853 817.94604492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09289854 817.94604492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09289855 817.94604492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09289856 817.94610596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09289857 817.94610596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09289858 817.94616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09289859 817.94616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09289860 817.94616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09289861 817.94616699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09289862 817.94622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09289863 817.94622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09289864 817.94622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09289865 817.94622803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09289866 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09289867 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09289868 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09289869 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09289870 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09289871 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09289872 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09289873 817.94628906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09289874 817.94635010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09289875 817.94635010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09289876 817.94635010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09289877 817.94635010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09289878 817.94641113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09289879 817.94641113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09289880 817.94641113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09289881 817.94641113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09289882 817.94647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09289883 817.94647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09289884 817.94647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09289885 817.94647217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09289886 817.94653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09289887 817.94653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09289888 817.94653320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09289889 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09289890 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09289891 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09289892 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09289893 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09289894 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09289895 817.94659424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09289896 817.94665527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09289897 817.94665527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09289898 817.94665527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09289899 817.94665527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09289900 817.94671631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09289901 817.94671631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09289902 817.94671631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09289903 817.94677734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09289904 817.94677734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09289905 817.94677734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09289906 817.94683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09289907 817.94683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09289908 817.94683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09289909 817.94683838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09289910 817.94689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09289911 817.94689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09289912 817.94689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09289913 817.94689941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09289914 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09289915 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09289916 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09289917 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09289918 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09289919 817.94696045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09289920 817.94702148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09289921 817.94702148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09289922 817.94702148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09289923 817.94702148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09289924 817.94708252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09289925 817.94708252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09289926 817.94708252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09289927 817.94708252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09289928 817.94714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09289929 817.94714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09289930 817.94714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09289931 817.94714355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09289932 817.94720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09289933 817.94720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09289934 817.94720459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09289935 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09289936 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09289937 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09289938 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09289939 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09289940 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09289941 817.94726563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09289942 817.94732666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09289943 817.94732666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09289944 817.94732666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09289945 817.94732666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09289946 817.94738770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09289947 817.94738770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09289948 817.94738770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09289949 817.94738770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09289950 817.94744873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09289951 817.94744873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09289952 817.94744873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09289953 817.94750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09289954 817.94750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09289955 817.94750977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09289956 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09289957 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09289958 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09289959 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09289960 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09289961 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09289962 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09289963 817.94757080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09289964 817.94763184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09289965 817.94763184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09289966 817.94763184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09289967 817.94763184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09289968 817.94769287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09289969 817.94769287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09289970 817.94769287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09289971 817.94775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09289972 817.94775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09289973 817.94775391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09289974 817.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09289975 817.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09289976 817.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09289977 817.94781494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09289978 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09289979 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09289980 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09289981 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09289982 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09289983 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09289984 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09289985 817.94787598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09289986 817.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09289987 817.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09289988 817.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09289989 817.94793701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09289990 817.94799805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09289991 817.94799805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09289992 817.94799805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09289993 817.94799805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09289994 817.94805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09289995 817.94805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09289996 817.94805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09289997 817.94805908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09289998 817.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09289999 817.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09290000 817.94812012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09290001 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09290002 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09290003 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09290004 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09290005 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09290006 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09290007 817.94818115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09290008 817.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09290009 817.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09290010 817.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09290011 817.94824219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09290012 817.94830322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09290013 817.94830322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09290014 817.94830322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09290015 817.94830322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09290016 817.94836426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09290017 817.94836426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09290018 817.94842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09290019 817.94842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09290020 817.94842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09290021 817.94842529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09290022 817.94848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09290023 817.94848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09290024 817.94848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09290025 817.94848633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09290026 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09290027 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09290028 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09290029 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09290030 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09290031 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09290032 817.94854736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09290033 817.94860840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09290034 817.94860840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09290035 817.94860840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09290036 817.94866943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09290037 817.94866943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09290038 817.94866943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09290039 817.94866943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09290040 817.94873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09290041 817.94873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09290042 817.94873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09290043 817.94873047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09290044 817.94879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09290045 817.94879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09290046 817.94879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09290047 817.94879150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09290048 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09290049 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09290050 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09290051 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09290052 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09290053 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09290054 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09290055 817.94885254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09290056 817.94891357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09290057 817.94891357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09290058 817.94891357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09290059 817.94897461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09290060 817.94897461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09290061 817.94897461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09290062 817.94903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09290063 817.94903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09290064 817.94903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09290065 817.94903564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09290066 817.94909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09290067 817.94909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09290068 817.94909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09290069 817.94909668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09290070 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09290071 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09290072 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09290073 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09290074 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09290075 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09290076 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09290077 817.94915771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09290078 817.94921875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09290079 817.94921875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09290080 817.94921875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09290081 817.94921875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09290082 817.94927979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09290083 817.94927979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09290084 817.94927979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09290085 817.94927979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09290086 817.94934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09290087 817.94934082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09290088 817.94940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09290089 817.94940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09290090 817.94940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09290091 817.94940186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09290092 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09290093 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09290094 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09290095 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09290096 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09290097 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09290098 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09290099 817.94946289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09290100 817.94952393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09290101 817.94952393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09290102 817.94952393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09290103 817.94952393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09290104 817.94958496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09290105 817.94958496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09290106 817.94958496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09290107 817.94958496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09290108 817.94964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09290109 817.94964600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09290110 817.94970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09290111 817.94970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09290112 817.94970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09290113 817.94970703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09290114 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09290115 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09290116 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09290117 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09290118 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09290119 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09290120 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09290121 817.94976807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09290122 817.94982910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09290123 817.94982910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09290124 817.94982910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09290125 817.94989014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09290126 817.94989014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09290127 817.94989014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09290128 817.94995117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09290129 817.94995117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09290130 817.94995117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09290131 817.94995117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09290132 817.95001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09290133 817.95001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09290134 817.95001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09290135 817.95001221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09290136 817.95007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09290137 817.95007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09290138 817.95007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09290139 817.95007324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09290140 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09290141 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09290142 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09290143 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09290144 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09290145 817.95013428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09290146 817.95019531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09290147 817.95019531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09290148 817.95019531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09290149 817.95019531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09290150 817.95025635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09290151 817.95025635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09290152 817.95025635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09290153 817.95025635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09290154 817.95031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09290155 817.95031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09290156 817.95031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09290157 817.95031738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09290158 817.95037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09290159 817.95037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09290160 817.95037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09290161 817.95037842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09290162 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09290163 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09290164 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09290165 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09290166 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09290167 817.95043945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09290168 817.95050049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09290169 817.95050049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09290170 817.95050049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09290171 817.95050049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09290172 817.95056152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09290173 817.95056152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09290174 817.95056152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09290175 817.95056152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09290176 817.95062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09290177 817.95062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09290178 817.95062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09290179 817.95062256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09290180 817.95068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09290181 817.95068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09290182 817.95068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09290183 817.95068359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09290184 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09290185 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09290186 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09290187 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09290188 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09290189 817.95074463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09290190 817.95080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09290191 817.95080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09290192 817.95080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09290193 817.95080566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09290194 817.95086670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09290195 817.95086670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09290196 817.95086670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09290197 817.95086670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09290198 817.95092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09290199 817.95092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09290200 817.95092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09290201 817.95092773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09290202 817.95098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09290203 817.95098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09290204 817.95098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09290205 817.95098877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09290206 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09290207 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09290208 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09290209 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09290210 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09290211 817.95104980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09290212 817.95111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09290213 817.95111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09290214 817.95111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09290215 817.95111084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09290216 817.95117188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09290217 817.95117188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09290218 817.95117188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09290219 817.95117188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09290220 817.95123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09290221 817.95123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09290222 817.95123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09290223 817.95123291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09290224 817.95129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09290225 817.95129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09290226 817.95129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09290227 817.95129395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09290228 817.95135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09290229 817.95135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09290230 817.95135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09290231 817.95135498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09290232 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09290233 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09290234 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09290235 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09290236 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09290237 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09290238 817.95141602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09290239 817.95147705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09290240 817.95147705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09290241 817.95147705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09290242 817.95153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09290243 817.95153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09290244 817.95153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09290245 817.95153809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09290246 817.95159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09290247 817.95159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09290248 817.95159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09290249 817.95159912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09290250 817.95166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09290251 817.95166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09290252 817.95166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09290253 817.95166016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09290254 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09290255 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09290256 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09290257 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09290258 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09290259 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09290260 817.95172119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09290261 817.95178223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09290262 817.95178223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09290263 817.95178223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09290264 817.95184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09290265 817.95184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09290266 817.95184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09290267 817.95184326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09290268 817.95190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09290269 817.95190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09290270 817.95190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09290271 817.95190430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09290272 817.95196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09290273 817.95196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09290274 817.95196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09290275 817.95196533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09290276 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09290277 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09290278 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09290279 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09290280 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09290281 817.95202637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09290282 817.95208740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09290283 817.95208740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09290284 817.95208740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09290285 817.95208740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09290286 817.95214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09290287 817.95214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09290288 817.95214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09290289 817.95214844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09290290 817.95220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09290291 817.95220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09290292 817.95220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09290293 817.95220947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09290294 817.95227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09290295 817.95227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09290296 817.95227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09290297 817.95227051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09290298 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09290299 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09290300 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09290301 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09290302 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09290303 817.95233154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09290304 817.95239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09290305 817.95239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09290306 817.95239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09290307 817.95239258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09290308 817.95245361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09290309 817.95245361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09290310 817.95245361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09290311 817.95245361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09290312 817.95251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09290313 817.95251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09290314 817.95251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09290315 817.95251465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09290316 817.95257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09290317 817.95257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09290318 817.95257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09290319 817.95257568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09290320 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09290321 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09290322 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09290323 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09290324 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09290325 817.95263672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09290326 817.95269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09290327 817.95269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09290328 817.95269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09290329 817.95269775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09290330 817.95275879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09290331 817.95275879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09290332 817.95275879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09290333 817.95275879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09290334 817.95281982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09290335 817.95281982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09290336 817.95281982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09290337 817.95281982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09290338 817.95288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09290339 817.95288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09290340 817.95288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09290341 817.95288086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09290342 817.95294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09290343 817.95294189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09290344 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09290345 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09290346 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09290347 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09290348 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09290349 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09290350 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09290351 817.95300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09290352 817.95306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09290353 817.95306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09290354 817.95306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09290355 817.95306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09290356 817.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09290357 817.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09290358 817.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09290359 817.95312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09290360 817.95318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09290361 817.95318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09290362 817.95318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09290363 817.95318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09290364 817.95324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09290365 817.95324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09290366 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09290367 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09290368 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09290369 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09290370 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09290371 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09290372 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09290373 817.95330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09290374 817.95336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09290375 817.95336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09290376 817.95336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09290377 817.95336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09290378 817.95343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09290379 817.95343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09290380 817.95343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09290381 817.95343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09290382 817.95349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09290383 817.95349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09290384 817.95349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09290385 817.95349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09290386 817.95355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09290387 817.95355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09290388 817.95355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09290389 817.95355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09290390 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09290391 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09290392 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09290393 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09290394 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09290395 817.95361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09290396 817.95367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09290397 817.95367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09290398 817.95367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09290399 817.95367432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09290400 817.95373535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09290401 817.95373535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09290402 817.95373535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09290403 817.95373535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09290404 817.95379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09290405 817.95379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09290406 817.95379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09290407 817.95379639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09290408 817.95385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09290409 817.95385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09290410 817.95385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09290411 817.95385742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09290412 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09290413 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09290414 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09290415 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09290416 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09290417 817.95391846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09290418 817.95397949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09290419 817.95397949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09290420 817.95397949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09290421 817.95397949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09290422 817.95404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09290423 817.95404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09290424 817.95404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09290425 817.95404053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09290426 817.95410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09290427 817.95410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09290428 817.95410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09290429 817.95410156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09290430 817.95416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09290431 817.95416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09290432 817.95416260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09290433 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09290434 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09290435 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09290436 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09290437 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09290438 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09290439 817.95422363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09290440 817.95428467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09290441 817.95428467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09290442 817.95428467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09290443 817.95428467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09290444 817.95434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09290445 817.95434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09290446 817.95434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09290447 817.95434570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09290448 817.95440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09290449 817.95440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09290450 817.95440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09290451 817.95440674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09290452 817.95446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09290453 817.95446777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09290454 817.95452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09290455 817.95452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09290456 817.95452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09290457 817.95452881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09290458 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09290459 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09290460 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09290461 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09290462 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09290463 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09290464 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09290465 817.95458984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09290466 817.95465088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09290467 817.95465088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09290468 817.95465088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09290469 817.95465088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09290470 817.95471191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09290471 817.95471191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09290472 817.95471191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09290473 817.95471191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09290474 817.95477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09290475 817.95477295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09290476 817.95483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09290477 817.95483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09290478 817.95483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09290479 817.95483398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09290480 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09290481 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09290482 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09290483 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09290484 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09290485 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09290486 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09290487 817.95489502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09290488 817.95495605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09290489 817.95495605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09290490 817.95501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09290491 817.95501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09290492 817.95501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09290493 817.95501709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09290494 817.95507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09290495 817.95507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09290496 817.95507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09290497 817.95507813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09290498 817.95513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09290499 817.95513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09290500 817.95513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09290501 817.95513916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09290502 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09290503 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09290504 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09290505 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09290506 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09290507 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09290508 817.95520020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09290509 817.95526123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09290510 817.95526123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09290511 817.95526123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09290512 817.95532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09290513 817.95532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09290514 817.95532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09290515 817.95532227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09290516 817.95538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09290517 817.95538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09290518 817.95538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09290519 817.95538330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09290520 817.95544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09290521 817.95544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09290522 817.95544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09290523 817.95544434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09290524 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09290525 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09290526 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09290527 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09290528 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09290529 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09290530 817.95550537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09290531 817.95556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09290532 817.95556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09290533 817.95556641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09290534 817.95562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09290535 817.95562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09290536 817.95562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09290537 817.95562744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09290538 817.95568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09290539 817.95568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09290540 817.95568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09290541 817.95568848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09290542 817.95574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09290543 817.95574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09290544 817.95574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09290545 817.95574951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09290546 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09290547 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09290548 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09290549 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09290550 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09290551 817.95581055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09290552 817.95587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09290553 817.95587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09290554 817.95587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09290555 817.95587158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09290556 817.95593262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09290557 817.95593262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09290558 817.95593262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09290559 817.95593262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09290560 817.95599365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09290561 817.95599365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09290562 817.95599365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09290563 817.95599365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09290564 817.95605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09290565 817.95605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09290566 817.95605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09290567 817.95605469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09290568 817.95611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09290569 817.95611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09290570 817.95611572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09290571 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09290572 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09290573 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09290574 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09290575 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09290576 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09290577 817.95617676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09290578 817.95623779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09290579 817.95623779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09290580 817.95623779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09290581 817.95623779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09290582 817.95629883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09290583 817.95629883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09290584 817.95629883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09290585 817.95629883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09290586 817.95635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09290587 817.95635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09290588 817.95635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09290589 817.95635986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09290590 817.95642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09290591 817.95642090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09290592 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09290593 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09290594 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09290595 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09290596 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09290597 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09290598 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09290599 817.95648193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09290600 817.95654297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09290601 817.95654297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09290602 817.95654297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09290603 817.95654297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09290604 817.95660400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09290605 817.95660400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09290606 817.95660400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09290607 817.95660400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09290608 817.95666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09290609 817.95666504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09290610 817.95672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09290611 817.95672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09290612 817.95672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09290613 817.95672607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09290614 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09290615 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09290616 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09290617 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09290618 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09290619 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09290620 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09290621 817.95678711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09290622 817.95684814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09290623 817.95684814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09290624 817.95684814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09290625 817.95684814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09290626 817.95690918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09290627 817.95690918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09290628 817.95690918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09290629 817.95690918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09290630 817.95697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09290631 817.95697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09290632 817.95697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09290633 817.95697021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09290634 817.95703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09290635 817.95703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09290636 817.95703125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09290637 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09290638 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09290639 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09290640 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09290641 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09290642 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09290643 817.95709229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09290644 817.95715332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09290645 817.95715332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09290646 817.95715332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09290647 817.95715332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09290648 817.95721436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09290649 817.95721436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09290650 817.95727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09290651 817.95727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09290652 817.95727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09290653 817.95727539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09290654 817.95733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09290655 817.95733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09290656 817.95733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09290657 817.95733643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09290658 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09290659 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09290660 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09290661 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09290662 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09290663 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09290664 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09290665 817.95739746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09290666 817.95745850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09290667 817.95745850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09290668 817.95745850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09290669 817.95751953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09290670 817.95751953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09290671 817.95751953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09290672 817.95758057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09290673 817.95758057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09290674 817.95758057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09290675 817.95758057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09290676 817.95764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09290677 817.95764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09290678 817.95764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09290679 817.95764160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09290680 817.95770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09290681 817.95770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09290682 817.95770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09290683 817.95770264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09290684 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09290685 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09290686 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09290687 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09290688 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09290689 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09290690 817.95776367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09290691 817.95782471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09290692 817.95782471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09290693 817.95782471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09290694 817.95788574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09290695 817.95788574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09290696 817.95788574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09290697 817.95788574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09290698 817.95794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09290699 817.95794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09290700 817.95794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09290701 817.95794678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09290702 817.95800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09290703 817.95800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09290704 817.95800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09290705 817.95800781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09290706 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09290707 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09290708 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09290709 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09290710 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09290711 817.95806885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09290712 817.95812988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09290713 817.95812988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09290714 817.95812988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09290715 817.95812988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09290716 817.95819092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09290717 817.95819092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09290718 817.95819092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09290719 817.95819092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09290720 817.95825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09290721 817.95825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09290722 817.95825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09290723 817.95825195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09290724 817.95831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09290725 817.95831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09290726 817.95831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09290727 817.95831299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09290728 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09290729 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09290730 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09290731 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09290732 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09290733 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09290734 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09290735 817.95837402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09290736 817.95843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09290737 817.95843506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09290738 817.95849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09290739 817.95849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09290740 817.95849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09290741 817.95849609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09290742 817.95855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09290743 817.95855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09290744 817.95855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09290745 817.95855713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09290746 817.95861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09290747 817.95861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09290748 817.95861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09290749 817.95861816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09290750 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09290751 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09290752 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09290753 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09290754 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09290755 817.95867920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09290756 817.95874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09290757 817.95874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09290758 817.95874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09290759 817.95874023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09290760 817.95880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09290761 817.95880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09290762 817.95880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09290763 817.95880127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09290764 817.95886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09290765 817.95886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09290766 817.95886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09290767 817.95886230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09290768 817.95892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09290769 817.95892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09290770 817.95892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09290771 817.95892334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09290772 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09290773 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09290774 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09290775 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09290776 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09290777 817.95898438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09290778 817.95904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09290779 817.95904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09290780 817.95904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09290781 817.95904541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09290782 817.95910645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09290783 817.95910645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09290784 817.95910645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09290785 817.95910645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09290786 817.95916748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09290787 817.95916748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09290788 817.95916748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09290789 817.95916748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09290790 817.95922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09290791 817.95922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09290792 817.95922852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09290793 817.95928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09290794 817.95928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09290795 817.95928955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09290796 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09290797 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09290798 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09290799 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09290800 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09290801 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09290802 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09290803 817.95935059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09290804 817.95941162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09290805 817.95941162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09290806 817.95941162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09290807 817.95941162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09290808 817.95947266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09290809 817.95947266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09290810 817.95953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09290811 817.95953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09290812 817.95953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09290813 817.95953369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09290814 817.95959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09290815 817.95959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09290816 817.95959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09290817 817.95959473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09290818 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09290819 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09290820 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09290821 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09290822 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09290823 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09290824 817.95965576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09290825 817.95971680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09290826 817.95971680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09290827 817.95971680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09290828 817.95977783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09290829 817.95977783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09290830 817.95977783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09290831 817.95977783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09290832 817.95983887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09290833 817.95983887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09290834 817.95983887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09290835 817.95983887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09290836 817.95989990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09290837 817.95989990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09290838 817.95989990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09290839 817.95989990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09290840 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09290841 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09290842 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09290843 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09290844 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09290845 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09290846 817.95996094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09290847 817.96002197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09290848 817.96002197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09290849 817.96002197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09290850 817.96008301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09290851 817.96008301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09290852 817.96008301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09290853 817.96008301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09290854 817.96014404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09290855 817.96014404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09290856 817.96014404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09290857 817.96014404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09290858 817.96020508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09290859 817.96020508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09290860 817.96020508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09290861 817.96020508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09290862 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09290863 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09290864 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09290865 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09290866 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09290867 817.96026611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09290868 817.96032715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09290869 817.96032715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09290870 817.96032715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09290871 817.96032715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09290872 817.96038818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09290873 817.96038818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09290874 817.96038818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09290875 817.96038818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09290876 817.96044922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09290877 817.96044922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09290878 817.96044922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09290879 817.96044922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09290880 817.96051025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09290881 817.96051025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09290882 817.96051025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09290883 817.96051025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09290884 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09290885 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09290886 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09290887 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09290888 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09290889 817.96057129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09290890 817.96063232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09290891 817.96063232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09290892 817.96063232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09290893 817.96063232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09290894 817.96069336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09290895 817.96069336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09290896 817.96069336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09290897 817.96069336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09290898 817.96075439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09290899 817.96075439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09290900 817.96081543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09290901 817.96081543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09290902 817.96081543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09290903 817.96081543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09290904 817.96087646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09290905 817.96087646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09290906 817.96087646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09290907 817.96087646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09290908 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09290909 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09290910 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09290911 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09290912 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09290913 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09290914 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09290915 817.96093750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09290916 817.96099854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09290917 817.96099854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09290918 817.96099854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09290919 817.96099854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09290920 817.96105957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09290921 817.96105957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09290922 817.96105957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09290923 817.96112061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09290924 817.96112061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09290925 817.96112061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09290926 817.96118164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09290927 817.96118164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09290928 817.96118164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09290929 817.96118164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09290930 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09290931 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09290932 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09290933 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09290934 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09290935 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09290936 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09290937 817.96124268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09290938 817.96130371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09290939 817.96130371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09290940 817.96130371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09290941 817.96130371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09290942 817.96136475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09290943 817.96136475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09290944 817.96136475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09290945 817.96142578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09290946 817.96142578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09290947 817.96142578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09290948 817.96148682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09290949 817.96148682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09290950 817.96148682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09290951 817.96148682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09290952 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09290953 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09290954 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09290955 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09290956 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09290957 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09290958 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09290959 817.96154785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09290960 817.96160889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09290961 817.96160889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09290962 817.96160889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09290963 817.96166992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09290964 817.96166992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09290965 817.96166992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09290966 817.96173096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09290967 817.96173096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09290968 817.96173096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09290969 817.96173096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09290970 817.96179199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09290971 817.96179199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09290972 817.96179199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09290973 817.96179199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09290974 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09290975 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09290976 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09290977 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09290978 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09290979 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09290980 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09290981 817.96185303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09290982 817.96191406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09290983 817.96191406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09290984 817.96191406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09290985 817.96197510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09290986 817.96197510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09290987 817.96197510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09290988 817.96203613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09290989 817.96203613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09290990 817.96203613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09290991 817.96203613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09290992 817.96209717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09290993 817.96209717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09290994 817.96209717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09290995 817.96209717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09290996 817.96215820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09290997 817.96215820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09290998 817.96215820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09290999 817.96215820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09291000 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09291001 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09291002 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09291003 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09291004 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09291005 817.96221924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09291006 817.96228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09291007 817.96228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09291008 817.96228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09291009 817.96228027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09291010 817.96234131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09291011 817.96234131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09291012 817.96234131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09291013 817.96234131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09291014 817.96240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09291015 817.96240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09291016 817.96240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09291017 817.96240234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09291018 817.96246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09291019 817.96246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09291020 817.96246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09291021 817.96246338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09291022 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09291023 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09291024 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09291025 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09291026 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09291027 817.96252441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09291028 817.96258545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09291029 817.96258545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09291030 817.96258545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09291031 817.96258545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09291032 817.96264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09291033 817.96264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09291034 817.96264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09291035 817.96264648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09291036 817.96270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09291037 817.96270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09291038 817.96270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09291039 817.96270752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09291040 817.96276855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09291041 817.96276855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09291042 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09291043 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09291044 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09291045 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09291046 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09291047 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09291048 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09291049 817.96282959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09291050 817.96289063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09291051 817.96289063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09291052 817.96289063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09291053 817.96289063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09291054 817.96295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09291055 817.96295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09291056 817.96295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09291057 817.96295166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09291058 817.96301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09291059 817.96301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09291060 817.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09291061 817.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09291062 817.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09291063 817.96307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09291064 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09291065 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09291066 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09291067 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09291068 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09291069 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09291070 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09291071 817.96313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09291072 817.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09291073 817.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09291074 817.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09291075 817.96319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09291076 817.96325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09291077 817.96325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09291078 817.96325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09291079 817.96325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09291080 817.96331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09291081 817.96331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09291082 817.96331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09291083 817.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09291084 817.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09291085 817.96337891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09291086 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09291087 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09291088 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09291089 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09291090 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09291091 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09291092 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09291093 817.96343994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09291094 817.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09291095 817.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09291096 817.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09291097 817.96350098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09291098 817.96356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09291099 817.96356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09291100 817.96356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09291101 817.96356201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09291102 817.96362305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09291103 817.96362305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09291104 817.96368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09291105 817.96368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09291106 817.96368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09291107 817.96368408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09291108 817.96374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09291109 817.96374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09291110 817.96374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09291111 817.96374512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09291112 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09291113 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09291114 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09291115 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09291116 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09291117 817.96380615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09291118 817.96386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09291119 817.96386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09291120 817.96386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09291121 817.96386719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09291122 817.96392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09291123 817.96392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09291124 817.96392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09291125 817.96392822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09291126 817.96398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09291127 817.96398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09291128 817.96398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09291129 817.96398926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09291130 817.96405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09291131 817.96405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09291132 817.96405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09291133 817.96405029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09291134 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09291135 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09291136 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09291137 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09291138 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09291139 817.96411133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09291140 817.96417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09291141 817.96417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09291142 817.96417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09291143 817.96417236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09291144 817.96423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09291145 817.96423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09291146 817.96423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09291147 817.96423340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09291148 817.96429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09291149 817.96429443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09291150 817.96435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09291151 817.96435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09291152 817.96435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09291153 817.96435547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09291154 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09291155 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09291156 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09291157 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09291158 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09291159 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09291160 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09291161 817.96441650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09291162 817.96447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09291163 817.96447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09291164 817.96447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09291165 817.96447754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09291166 817.96453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09291167 817.96453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09291168 817.96453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09291169 817.96453857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09291170 817.96459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09291171 817.96459961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09291172 817.96466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09291173 817.96466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09291174 817.96466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09291175 817.96466064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09291176 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09291177 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09291178 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09291179 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09291180 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09291181 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09291182 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09291183 817.96472168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09291184 817.96478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09291185 817.96478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09291186 817.96478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09291187 817.96478271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09291188 817.96484375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09291189 817.96484375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09291190 817.96484375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09291191 817.96490479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09291192 817.96490479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09291193 817.96490479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09291194 817.96496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09291195 817.96496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09291196 817.96496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09291197 817.96496582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09291198 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09291199 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09291200 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09291201 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09291202 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09291203 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09291204 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09291205 817.96502686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09291206 817.96508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09291207 817.96508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09291208 817.96508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09291209 817.96508789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09291210 817.96514893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09291211 817.96514893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09291212 817.96514893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09291213 817.96520996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09291214 817.96520996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09291215 817.96520996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09291216 817.96527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09291217 817.96527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09291218 817.96527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09291219 817.96527100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09291220 817.96533203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09291221 817.96533203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09291222 817.96533203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09291223 817.96533203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09291224 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09291225 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09291226 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09291227 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09291228 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09291229 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09291230 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09291231 817.96539307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09291232 817.96545410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09291233 817.96545410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09291234 817.96551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09291235 817.96551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09291236 817.96551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09291237 817.96551514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09291238 817.96557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09291239 817.96557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09291240 817.96557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09291241 817.96557617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09291242 817.96563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09291243 817.96563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09291244 817.96563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09291245 817.96563721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09291246 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09291247 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09291248 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09291249 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09291250 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09291251 817.96569824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09291252 817.96575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09291253 817.96575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09291254 817.96575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09291255 817.96575928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09291256 817.96582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09291257 817.96582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09291258 817.96582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09291259 817.96582031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09291260 817.96588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09291261 817.96588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09291262 817.96588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09291263 817.96588135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09291264 817.96594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09291265 817.96594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09291266 817.96594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09291267 817.96594238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09291268 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09291269 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09291270 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09291271 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09291272 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09291273 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09291274 817.96600342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09291275 817.96606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09291276 817.96606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09291277 817.96606445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09291278 817.96612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09291279 817.96612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09291280 817.96612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09291281 817.96612549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09291282 817.96618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09291283 817.96618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09291284 817.96618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09291285 817.96618652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09291286 817.96624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09291287 817.96624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09291288 817.96624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09291289 817.96624756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09291290 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09291291 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09291292 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09291293 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09291294 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09291295 817.96630859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09291296 817.96636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09291297 817.96636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09291298 817.96636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09291299 817.96636963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09291300 817.96643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09291301 817.96643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09291302 817.96643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09291303 817.96643066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09291304 817.96649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09291305 817.96649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09291306 817.96649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09291307 817.96649170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09291308 817.96655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09291309 817.96655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09291310 817.96655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09291311 817.96655273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09291312 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09291313 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09291314 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09291315 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09291316 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09291317 817.96661377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09291318 817.96667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09291319 817.96667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09291320 817.96667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09291321 817.96667480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09291322 817.96673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09291323 817.96673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09291324 817.96673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09291325 817.96673584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09291326 817.96679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09291327 817.96679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09291328 817.96679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09291329 817.96679688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09291330 817.96685791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09291331 817.96685791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09291332 817.96685791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09291333 817.96691895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09291334 817.96691895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09291335 817.96691895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09291336 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09291337 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09291338 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09291339 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09291340 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09291341 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09291342 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09291343 817.96697998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09291344 817.96704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09291345 817.96704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09291346 817.96704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09291347 817.96704102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09291348 817.96710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09291349 817.96710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09291350 817.96710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09291351 817.96710205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09291352 817.96716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09291353 817.96716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09291354 817.96716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09291355 817.96716309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09291356 817.96722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09291357 817.96722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09291358 817.96722412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09291359 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09291360 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09291361 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09291362 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09291363 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09291364 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09291365 817.96728516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09291366 817.96734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09291367 817.96734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09291368 817.96734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09291369 817.96734619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09291370 817.96740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09291371 817.96740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09291372 817.96740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09291373 817.96740723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09291374 817.96746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09291375 817.96746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09291376 817.96746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09291377 817.96746826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09291378 817.96752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09291379 817.96752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09291380 817.96752930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09291381 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09291382 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09291383 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09291384 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09291385 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09291386 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09291387 817.96759033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09291388 817.96765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09291389 817.96765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09291390 817.96765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09291391 817.96765137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09291392 817.96771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09291393 817.96771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09291394 817.96771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09291395 817.96771240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09291396 817.96777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09291397 817.96777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09291398 817.96777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09291399 817.96777344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09291400 817.96783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09291401 817.96783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09291402 817.96783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09291403 817.96783447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09291404 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09291405 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09291406 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09291407 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09291408 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09291409 817.96789551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09291410 817.96795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09291411 817.96795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09291412 817.96795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09291413 817.96795654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09291414 817.96801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09291415 817.96801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09291416 817.96801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09291417 817.96801758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09291418 817.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09291419 817.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09291420 817.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09291421 817.96807861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09291422 817.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09291423 817.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09291424 817.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09291425 817.96813965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09291426 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09291427 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09291428 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09291429 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09291430 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09291431 817.96820068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09291432 817.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09291433 817.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09291434 817.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09291435 817.96826172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09291436 817.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09291437 817.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09291438 817.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09291439 817.96832275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09291440 817.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09291441 817.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09291442 817.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09291443 817.96838379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09291444 817.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09291445 817.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09291446 817.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09291447 817.96844482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09291448 817.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09291449 817.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09291450 817.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09291451 817.96850586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09291452 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09291453 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09291454 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09291455 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09291456 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09291457 817.96856689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09291458 817.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09291459 817.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09291460 817.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09291461 817.96862793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09291462 817.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09291463 817.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09291464 817.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09291465 817.96868896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09291466 817.96875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09291467 817.96875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09291468 817.96875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09291469 817.96875000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09291470 817.96881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09291471 817.96881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09291472 817.96881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09291473 817.96881104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09291474 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09291475 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09291476 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09291477 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09291478 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09291479 817.96887207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09291480 817.96893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09291481 817.96893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09291482 817.96893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09291483 817.96893311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09291484 817.96899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09291485 817.96899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09291486 817.96899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09291487 817.96899414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09291488 817.96905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09291489 817.96905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09291490 817.96905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09291491 817.96905518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09291492 817.96911621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09291493 817.96911621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09291494 817.96911621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09291495 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09291496 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09291497 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09291498 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09291499 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09291500 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09291501 817.96917725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09291502 817.96923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09291503 817.96923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09291504 817.96923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09291505 817.96923828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09291506 817.96929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09291507 817.96929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09291508 817.96929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09291509 817.96929932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09291510 817.96936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09291511 817.96936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09291512 817.96936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09291513 817.96936035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09291514 817.96942139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09291515 817.96942139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09291516 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09291517 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09291518 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09291519 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09291520 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09291521 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09291522 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09291523 817.96948242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09291524 817.96954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09291525 817.96954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09291526 817.96954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09291527 817.96954346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09291528 817.96960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09291529 817.96960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09291530 817.96960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09291531 817.96960449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09291532 817.96966553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09291533 817.96966553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09291534 817.96966553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09291535 817.96972656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09291536 817.96972656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09291537 817.96972656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09291538 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09291539 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09291540 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09291541 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09291542 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09291543 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09291544 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09291545 817.96978760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09291546 817.96984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09291547 817.96984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09291548 817.96984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09291549 817.96984863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09291550 817.96990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09291551 817.96990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09291552 817.96990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09291553 817.96990967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09291554 817.96997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09291555 817.96997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09291556 817.96997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09291557 817.96997070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09291558 817.97003174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09291559 817.97003174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09291560 817.97009277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09291561 817.97009277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09291562 817.97009277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09291563 817.97009277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09291564 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09291565 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09291566 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09291567 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09291568 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09291569 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09291570 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09291571 817.97015381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09291572 817.97021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09291573 817.97021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09291574 817.97021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09291575 817.97021484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09291576 817.97027588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09291577 817.97027588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09291578 817.97027588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09291579 817.97033691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09291580 817.97033691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09291581 817.97033691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09291582 817.97039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09291583 817.97039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09291584 817.97039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09291585 817.97039795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09291586 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09291587 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09291588 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09291589 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09291590 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09291591 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09291592 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09291593 817.97045898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09291594 817.97052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09291595 817.97052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09291596 817.97052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09291597 817.97052002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09291598 817.97058105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09291599 817.97058105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09291600 817.97058105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09291601 817.97058105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09291602 817.97064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09291603 817.97064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09291604 817.97064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09291605 817.97064209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09291606 817.97070313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09291607 817.97070313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09291608 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09291609 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09291610 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09291611 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09291612 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09291613 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09291614 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09291615 817.97076416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09291616 817.97082520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09291617 817.97082520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09291618 817.97082520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09291619 817.97082520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09291620 817.97088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09291621 817.97088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09291622 817.97088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09291623 817.97088623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09291624 817.97094727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09291625 817.97094727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09291626 817.97100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09291627 817.97100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09291628 817.97100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09291629 817.97100830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09291630 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09291631 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09291632 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09291633 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09291634 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09291635 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09291636 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09291637 817.97106934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09291638 817.97113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09291639 817.97113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09291640 817.97113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09291641 817.97113037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09291642 817.97119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09291643 817.97119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09291644 817.97119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09291645 817.97119141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09291646 817.97125244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09291647 817.97125244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09291648 817.97131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09291649 817.97131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09291650 817.97131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09291651 817.97131348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09291652 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09291653 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09291654 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09291655 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09291656 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09291657 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09291658 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09291659 817.97137451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09291660 817.97143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09291661 817.97143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09291662 817.97143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09291663 817.97143555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09291664 817.97149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09291665 817.97149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09291666 817.97149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09291667 817.97149658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09291668 817.97155762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09291669 817.97155762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09291670 817.97161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09291671 817.97161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09291672 817.97161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09291673 817.97161865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09291674 817.97167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09291675 817.97167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09291676 817.97167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09291677 817.97167969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09291678 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09291679 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09291680 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09291681 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09291682 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09291683 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09291684 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09291685 817.97174072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09291686 817.97180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09291687 817.97180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09291688 817.97180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09291689 817.97180176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09291690 817.97186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09291691 817.97186279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09291692 817.97192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09291693 817.97192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09291694 817.97192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09291695 817.97192383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09291696 817.97198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09291697 817.97198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09291698 817.97198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09291699 817.97198486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09291700 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09291701 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09291702 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09291703 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09291704 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09291705 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09291706 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09291707 817.97204590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09291708 817.97210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09291709 817.97210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09291710 817.97210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09291711 817.97210693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09291712 817.97216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09291713 817.97216797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09291714 817.97222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09291715 817.97222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09291716 817.97222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09291717 817.97222900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09291718 817.97229004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09291719 817.97229004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09291720 817.97229004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09291721 817.97229004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09291722 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09291723 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09291724 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09291725 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09291726 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09291727 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09291728 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09291729 817.97235107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09291730 817.97241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09291731 817.97241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09291732 817.97241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09291733 817.97241211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09291734 817.97247314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09291735 817.97247314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09291736 817.97253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09291737 817.97253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09291738 817.97253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09291739 817.97253418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09291740 817.97259521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09291741 817.97259521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09291742 817.97259521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09291743 817.97259521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09291744 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09291745 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09291746 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09291747 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09291748 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09291749 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09291750 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09291751 817.97265625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09291752 817.97271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09291753 817.97271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09291754 817.97271729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09291755 817.97277832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09291756 817.97277832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09291757 817.97277832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09291758 817.97283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09291759 817.97283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09291760 817.97283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09291761 817.97283936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09291762 817.97290039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09291763 817.97290039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09291764 817.97290039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09291765 817.97290039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09291766 817.97296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09291767 817.97296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09291768 817.97296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09291769 817.97296143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09291770 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09291771 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09291772 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09291773 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09291774 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09291775 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09291776 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09291777 817.97302246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09291778 817.97308350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09291779 817.97308350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09291780 817.97314453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09291781 817.97314453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09291782 817.97314453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09291783 817.97314453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09291784 817.97320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09291785 817.97320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09291786 817.97320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09291787 817.97320557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09291788 817.97326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09291789 817.97326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09291790 817.97326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09291791 817.97326660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09291792 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09291793 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09291794 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09291795 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09291796 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09291797 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09291798 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09291799 817.97332764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09291800 817.97338867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09291801 817.97338867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09291802 817.97338867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09291803 817.97344971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09291804 817.97344971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09291805 817.97344971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09291806 817.97351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09291807 817.97351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09291808 817.97351074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09291809 817.97357178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09291810 817.97357178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09291811 817.97357178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09291812 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09291813 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09291814 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09291815 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09291816 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09291817 817.97363281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09291818 817.97369385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09291819 817.97369385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09291820 817.97369385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09291821 817.97369385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09291822 817.97375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09291823 817.97375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09291824 817.97375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09291825 817.97375488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09291826 817.97381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09291827 817.97381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09291828 817.97381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09291829 817.97381592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09291830 817.97387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09291831 817.97387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09291832 817.97387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09291833 817.97387695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09291834 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09291835 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09291836 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09291837 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09291838 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09291839 817.97393799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09291840 817.97399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09291841 817.97399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09291842 817.97399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09291843 817.97399902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09291844 817.97406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09291845 817.97406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09291846 817.97406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09291847 817.97406006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09291848 817.97412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09291849 817.97412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09291850 817.97412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09291851 817.97412109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09291852 817.97418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09291853 817.97418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09291854 817.97418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09291855 817.97418213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09291856 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09291857 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09291858 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09291859 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09291860 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09291861 817.97424316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09291862 817.97430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09291863 817.97430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09291864 817.97430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09291865 817.97430420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09291866 817.97436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09291867 817.97436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09291868 817.97436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09291869 817.97436523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09291870 817.97442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09291871 817.97442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09291872 817.97442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09291873 817.97442627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09291874 817.97448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09291875 817.97448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09291876 817.97448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09291877 817.97448730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09291878 817.97454834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09291879 817.97454834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09291880 817.97454834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09291881 817.97454834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09291882 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09291883 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09291884 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09291885 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09291886 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09291887 817.97460938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09291888 817.97467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09291889 817.97467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09291890 817.97467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09291891 817.97467041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09291892 817.97473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09291893 817.97473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09291894 817.97473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09291895 817.97473145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09291896 817.97479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09291897 817.97479248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09291898 817.97485352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09291899 817.97485352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09291900 817.97485352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09291901 817.97485352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09291902 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09291903 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09291904 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09291905 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09291906 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09291907 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09291908 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09291909 817.97491455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09291910 817.97497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09291911 817.97497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09291912 817.97497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09291913 817.97497559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09291914 817.97503662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09291915 817.97503662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09291916 817.97503662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09291917 817.97509766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09291918 817.97509766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09291919 817.97509766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09291920 817.97515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09291921 817.97515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09291922 817.97515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09291923 817.97515869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09291924 817.97521973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09291925 817.97521973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09291926 817.97521973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09291927 817.97521973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09291928 817.97528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09291929 817.97528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09291930 817.97528076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09291931 817.97534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09291932 817.97534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09291933 817.97534180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09291934 817.97540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09291935 817.97540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09291936 817.97540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09291937 817.97540283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09291938 817.97546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09291939 817.97546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09291940 817.97546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09291941 817.97546387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09291942 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09291943 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09291944 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09291945 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09291946 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09291947 817.97552490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09291948 817.97558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09291949 817.97558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09291950 817.97558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09291951 817.97558594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09291952 817.97564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09291953 817.97564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09291954 817.97564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09291955 817.97564697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09291956 817.97570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09291957 817.97570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09291958 817.97570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09291959 817.97570801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09291960 817.97576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09291961 817.97576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09291962 817.97576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09291963 817.97576904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09291964 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09291965 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09291966 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09291967 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09291968 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09291969 817.97583008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09291970 817.97589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09291971 817.97589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09291972 817.97589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09291973 817.97589111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09291974 817.97595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09291975 817.97595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09291976 817.97595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09291977 817.97595215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09291978 817.97601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09291979 817.97601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09291980 817.97601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09291981 817.97601318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09291982 817.97607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09291983 817.97607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09291984 817.97607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09291985 817.97607422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09291986 817.97613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09291987 817.97613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09291988 817.97613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09291989 817.97613525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09291990 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09291991 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09291992 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09291993 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09291994 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09291995 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09291996 817.97619629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09291997 817.97625732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09291998 817.97625732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09291999 817.97625732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09292000 817.97631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09292001 817.97631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09292002 817.97631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09292003 817.97631836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09292004 817.97637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09292005 817.97637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09292006 817.97637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09292007 817.97637939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09292008 817.97644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09292009 817.97644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09292010 817.97644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09292011 817.97644043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09292012 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09292013 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09292014 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09292015 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09292016 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09292017 817.97650146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09292018 817.97656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09292019 817.97656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09292020 817.97656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09292021 817.97656250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09292022 817.97662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09292023 817.97662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09292024 817.97662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09292025 817.97662354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09292026 817.97668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09292027 817.97668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09292028 817.97668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09292029 817.97668457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09292030 817.97674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09292031 817.97674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09292032 817.97674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09292033 817.97674561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09292034 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09292035 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09292036 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09292037 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09292038 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09292039 817.97680664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09292040 817.97686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09292041 817.97686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09292042 817.97686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09292043 817.97686768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09292044 817.97692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09292045 817.97692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09292046 817.97692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09292047 817.97692871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09292048 817.97698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09292049 817.97698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09292050 817.97698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09292051 817.97698975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09292052 817.97705078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09292053 817.97705078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09292054 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09292055 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09292056 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09292057 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09292058 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09292059 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09292060 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09292061 817.97711182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09292062 817.97717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09292063 817.97717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09292064 817.97717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09292065 817.97717285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09292066 817.97723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09292067 817.97723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09292068 817.97723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09292069 817.97723389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09292070 817.97729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09292071 817.97729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09292072 817.97729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09292073 817.97729492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09292074 817.97735596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09292075 817.97735596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09292076 817.97735596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09292077 817.97735596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09292078 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09292079 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09292080 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09292081 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09292082 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09292083 817.97741699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09292084 817.97747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09292085 817.97747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09292086 817.97747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09292087 817.97747803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09292088 817.97753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09292089 817.97753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09292090 817.97753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09292091 817.97753906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09292092 817.97760010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09292093 817.97760010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09292094 817.97760010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09292095 817.97760010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09292096 817.97766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09292097 817.97766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09292098 817.97766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09292099 817.97766113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09292100 817.97772217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09292101 817.97772217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09292102 817.97772217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09292103 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09292104 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09292105 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09292106 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09292107 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09292108 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09292109 817.97778320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09292110 817.97784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09292111 817.97784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09292112 817.97784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09292113 817.97784424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09292114 817.97790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09292115 817.97790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09292116 817.97790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09292117 817.97790527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09292118 817.97796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09292119 817.97796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09292120 817.97796631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09292121 817.97802734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09292122 817.97802734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09292123 817.97802734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09292124 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09292125 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09292126 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09292127 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09292128 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09292129 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09292130 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09292131 817.97808838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09292132 817.97814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09292133 817.97814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09292134 817.97814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09292135 817.97814941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09292136 817.97821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09292137 817.97821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09292138 817.97821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09292139 817.97821045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09292140 817.97827148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09292141 817.97827148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09292142 817.97827148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09292143 817.97833252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09292144 817.97833252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09292145 817.97833252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09292146 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09292147 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09292148 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09292149 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09292150 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09292151 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09292152 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09292153 817.97839355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09292154 817.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09292155 817.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09292156 817.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09292157 817.97845459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09292158 817.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09292159 817.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09292160 817.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09292161 817.97851563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09292162 817.97857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09292163 817.97857666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09292164 817.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09292165 817.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09292166 817.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09292167 817.97863770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09292168 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09292169 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09292170 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09292171 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09292172 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09292173 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09292174 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09292175 817.97869873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09292176 817.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09292177 817.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09292178 817.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09292179 817.97875977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09292180 817.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09292181 817.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09292182 817.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09292183 817.97882080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09292184 817.97888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09292185 817.97888184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09292186 817.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09292187 817.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09292188 817.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09292189 817.97894287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09292190 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09292191 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09292192 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09292193 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09292194 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09292195 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09292196 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09292197 817.97900391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09292198 817.97906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09292199 817.97906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09292200 817.97906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09292201 817.97906494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09292202 817.97912598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09292203 817.97912598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09292204 817.97918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09292205 817.97918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09292206 817.97918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09292207 817.97918701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09292208 817.97924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09292209 817.97924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09292210 817.97924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09292211 817.97924805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09292212 817.97930908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09292213 817.97930908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09292214 817.97930908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09292215 817.97930908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09292216 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09292217 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09292218 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09292219 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09292220 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09292221 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09292222 817.97937012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09292223 817.97943115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09292224 817.97943115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09292225 817.97943115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09292226 817.97949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09292227 817.97949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09292228 817.97949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09292229 817.97949219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09292230 817.97955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09292231 817.97955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09292232 817.97955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09292233 817.97955322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09292234 817.97961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09292235 817.97961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09292236 817.97961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09292237 817.97961426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09292238 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09292239 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09292240 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09292241 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09292242 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09292243 817.97967529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09292244 817.97973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09292245 817.97973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09292246 817.97973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09292247 817.97973633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09292248 817.97979736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09292249 817.97979736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09292250 817.97979736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09292251 817.97979736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09292252 817.97985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09292253 817.97985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09292254 817.97985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09292255 817.97985840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09292256 817.97991943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09292257 817.97991943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09292258 817.97991943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09292259 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09292260 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09292261 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09292262 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09292263 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09292264 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09292265 817.97998047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09292266 817.98004150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09292267 817.98004150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09292268 817.98004150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09292269 817.98004150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09292270 817.98010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09292271 817.98010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09292272 817.98010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09292273 817.98010254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09292274 817.98016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09292275 817.98016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09292276 817.98016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09292277 817.98016357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09292278 817.98022461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09292279 817.98022461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09292280 817.98022461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09292281 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09292282 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09292283 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09292284 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09292285 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09292286 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09292287 817.98028564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09292288 817.98034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09292289 817.98034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09292290 817.98034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09292291 817.98034668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09292292 817.98040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09292293 817.98040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09292294 817.98040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09292295 817.98040771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09292296 817.98046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09292297 817.98046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09292298 817.98046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09292299 817.98046875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09292300 817.98052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09292301 817.98052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09292302 817.98052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09292303 817.98052979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09292304 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09292305 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09292306 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09292307 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09292308 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09292309 817.98059082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09292310 817.98065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09292311 817.98065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09292312 817.98065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09292313 817.98065186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09292314 817.98071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09292315 817.98071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09292316 817.98071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09292317 817.98071289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09292318 817.98077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09292319 817.98077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09292320 817.98077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09292321 817.98077393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09292322 817.98083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09292323 817.98083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09292324 817.98083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09292325 817.98083496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09292326 817.98089600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09292327 817.98089600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09292328 817.98089600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09292329 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09292330 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09292331 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09292332 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09292333 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09292334 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09292335 817.98095703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09292336 817.98101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09292337 817.98101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09292338 817.98101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09292339 817.98101807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09292340 817.98107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09292341 817.98107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09292342 817.98107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09292343 817.98107910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09292344 817.98114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09292345 817.98114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09292346 817.98114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09292347 817.98114014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09292348 817.98120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09292349 817.98120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09292350 817.98120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09292351 817.98120117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09292352 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09292353 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09292354 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09292355 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09292356 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09292357 817.98126221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09292358 817.98132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09292359 817.98132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09292360 817.98132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09292361 817.98132324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09292362 817.98138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09292363 817.98138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09292364 817.98138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09292365 817.98138428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09292366 817.98144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09292367 817.98144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09292368 817.98144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09292369 817.98144531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09292370 817.98150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09292371 817.98150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09292372 817.98150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09292373 817.98150635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09292374 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09292375 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09292376 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09292377 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09292378 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09292379 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09292380 817.98156738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09292381 817.98162842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09292382 817.98162842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09292383 817.98162842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09292384 817.98168945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09292385 817.98168945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09292386 817.98168945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09292387 817.98168945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09292388 817.98175049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09292389 817.98175049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09292390 817.98175049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09292391 817.98175049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09292392 817.98181152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09292393 817.98181152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09292394 817.98181152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09292395 817.98181152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09292396 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09292397 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09292398 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09292399 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09292400 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09292401 817.98187256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09292402 817.98193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09292403 817.98193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09292404 817.98193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09292405 817.98193359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09292406 817.98199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09292407 817.98199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09292408 817.98199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09292409 817.98199463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09292410 817.98205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09292411 817.98205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09292412 817.98205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09292413 817.98205566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09292414 817.98211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09292415 817.98211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09292416 817.98211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09292417 817.98211670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09292418 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09292419 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09292420 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09292421 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09292422 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09292423 817.98217773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09292424 817.98223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09292425 817.98223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09292426 817.98223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09292427 817.98223877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09292428 817.98229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09292429 817.98229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09292430 817.98229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09292431 817.98229980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09292432 817.98236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09292433 817.98236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09292434 817.98236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09292435 817.98236084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09292436 817.98242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09292437 817.98242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09292438 817.98242188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09292439 817.98248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09292440 817.98248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09292441 817.98248291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09292442 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09292443 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09292444 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09292445 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09292446 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09292447 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09292448 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09292449 817.98254395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09292450 817.98260498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09292451 817.98260498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09292452 817.98260498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09292453 817.98260498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09292454 817.98266602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09292455 817.98266602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09292456 817.98266602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09292457 817.98272705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09292458 817.98272705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09292459 817.98272705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09292460 817.98278809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09292461 817.98278809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09292462 817.98278809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09292463 817.98278809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09292464 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09292465 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09292466 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09292467 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09292468 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09292469 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09292470 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09292471 817.98284912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09292472 817.98291016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09292473 817.98291016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09292474 817.98291016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09292475 817.98291016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09292476 817.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09292477 817.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09292478 817.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09292479 817.98297119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09292480 817.98303223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09292481 817.98303223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09292482 817.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09292483 817.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09292484 817.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09292485 817.98309326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09292486 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09292487 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09292488 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09292489 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09292490 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09292491 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09292492 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09292493 817.98315430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09292494 817.98321533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09292495 817.98321533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09292496 817.98321533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09292497 817.98321533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09292498 817.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09292499 817.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09292500 817.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09292501 817.98327637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09292502 817.98333740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09292503 817.98333740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09292504 817.98339844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09292505 817.98339844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09292506 817.98339844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09292507 817.98339844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09292508 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09292509 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09292510 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09292511 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09292512 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09292513 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09292514 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09292515 817.98345947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09292516 817.98352051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09292517 817.98352051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09292518 817.98352051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09292519 817.98352051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09292520 817.98358154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09292521 817.98358154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09292522 817.98358154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09292523 817.98358154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09292524 817.98364258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09292525 817.98364258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09292526 817.98364258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09292527 817.98364258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09292528 817.98370361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09292529 817.98370361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09292530 817.98370361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09292531 817.98370361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09292532 817.98376465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09292533 817.98376465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09292534 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09292535 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09292536 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09292537 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09292538 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09292539 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09292540 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09292541 817.98382568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09292542 817.98388672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09292543 817.98388672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09292544 817.98394775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09292545 817.98394775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09292546 817.98394775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09292547 817.98394775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09292548 817.98400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09292549 817.98400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09292550 817.98400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09292551 817.98400879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09292552 817.98406982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09292553 817.98406982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09292554 817.98406982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09292555 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09292556 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09292557 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09292558 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09292559 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09292560 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09292561 817.98413086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09292562 817.98419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09292563 817.98419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09292564 817.98419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09292565 817.98419189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09292566 817.98425293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09292567 817.98425293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09292568 817.98425293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09292569 817.98425293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09292570 817.98431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09292571 817.98431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09292572 817.98431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09292573 817.98431396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09292574 817.98437500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09292575 817.98437500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09292576 817.98437500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09292577 817.98437500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09292578 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09292579 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09292580 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09292581 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09292582 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09292583 817.98443604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09292584 817.98449707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09292585 817.98449707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09292586 817.98449707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09292587 817.98449707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09292588 817.98455811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09292589 817.98455811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09292590 817.98455811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09292591 817.98455811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09292592 817.98461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09292593 817.98461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09292594 817.98461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09292595 817.98461914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09292596 817.98468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09292597 817.98468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09292598 817.98468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09292599 817.98468018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09292600 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09292601 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09292602 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09292603 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09292604 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09292605 817.98474121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09292606 817.98480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09292607 817.98480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09292608 817.98480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09292609 817.98480225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09292610 817.98486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09292611 817.98486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09292612 817.98486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09292613 817.98486328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09292614 817.98492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09292615 817.98492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09292616 817.98492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09292617 817.98492432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09292618 817.98498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09292619 817.98498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09292620 817.98498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09292621 817.98498535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09292622 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09292623 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09292624 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09292625 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09292626 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09292627 817.98504639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09292628 817.98510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09292629 817.98510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09292630 817.98510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09292631 817.98510742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09292632 817.98516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09292633 817.98516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09292634 817.98516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09292635 817.98516846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09292636 817.98522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09292637 817.98522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09292638 817.98522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09292639 817.98522949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09292640 817.98529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09292641 817.98529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09292642 817.98529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09292643 817.98529053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09292644 817.98535156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09292645 817.98535156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09292646 817.98535156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09292647 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09292648 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09292649 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09292650 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09292651 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09292652 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09292653 817.98541260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09292654 817.98547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09292655 817.98547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09292656 817.98547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09292657 817.98547363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09292658 817.98553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09292659 817.98553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09292660 817.98553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09292661 817.98553467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09292662 817.98559570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09292663 817.98559570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09292664 817.98565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09292665 817.98565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09292666 817.98565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09292667 817.98565674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09292668 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09292669 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09292670 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09292671 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09292672 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09292673 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09292674 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09292675 817.98571777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09292676 817.98577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09292677 817.98577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09292678 817.98577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09292679 817.98577881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09292680 817.98583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09292681 817.98583984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09292682 817.98590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09292683 817.98590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09292684 817.98590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09292685 817.98590088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09292686 817.98596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09292687 817.98596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09292688 817.98596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09292689 817.98596191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09292690 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09292691 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09292692 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09292693 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09292694 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09292695 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09292696 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09292697 817.98602295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09292698 817.98608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09292699 817.98608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09292700 817.98608398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09292701 817.98614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09292702 817.98614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09292703 817.98614502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09292704 817.98620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09292705 817.98620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09292706 817.98620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09292707 817.98620605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09292708 817.98626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09292709 817.98626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09292710 817.98626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09292711 817.98626709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09292712 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09292713 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09292714 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09292715 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09292716 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09292717 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09292718 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09292719 817.98632813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09292720 817.98638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09292721 817.98638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09292722 817.98638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09292723 817.98638916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09292724 817.98645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09292725 817.98645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09292726 817.98645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09292727 817.98645020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09292728 817.98651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09292729 817.98651123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09292730 817.98657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09292731 817.98657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09292732 817.98657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09292733 817.98657227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09292734 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09292735 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09292736 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09292737 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09292738 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09292739 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09292740 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09292741 817.98663330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09292742 817.98669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09292743 817.98669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09292744 817.98669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09292745 817.98669434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09292746 817.98675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09292747 817.98675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09292748 817.98675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09292749 817.98675537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09292750 817.98681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09292751 817.98681641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09292752 817.98687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09292753 817.98687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09292754 817.98687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09292755 817.98687744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09292756 817.98693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09292757 817.98693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09292758 817.98693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09292759 817.98693848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09292760 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09292761 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09292762 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09292763 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09292764 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09292765 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09292766 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09292767 817.98699951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09292768 817.98706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09292769 817.98706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09292770 817.98706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09292771 817.98706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09292772 817.98712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09292773 817.98712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09292774 817.98712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09292775 817.98718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09292776 817.98718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09292777 817.98718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09292778 817.98724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09292779 817.98724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09292780 817.98724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09292781 817.98724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09292782 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09292783 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09292784 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09292785 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09292786 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09292787 817.98730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09292788 817.98736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09292789 817.98736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09292790 817.98736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09292791 817.98736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09292792 817.98742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09292793 817.98742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09292794 817.98742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09292795 817.98742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09292796 817.98748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09292797 817.98748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09292798 817.98748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09292799 817.98748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09292800 817.98754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09292801 817.98754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09292802 817.98754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09292803 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09292804 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09292805 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09292806 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09292807 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09292808 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09292809 817.98760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09292810 817.98767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09292811 817.98767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09292812 817.98767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09292813 817.98767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09292814 817.98773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09292815 817.98773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09292816 817.98773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09292817 817.98773193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09292818 817.98779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09292819 817.98779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09292820 817.98779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09292821 817.98779297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09292822 817.98785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09292823 817.98785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09292824 817.98785400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09292825 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09292826 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09292827 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09292828 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09292829 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09292830 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09292831 817.98791504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09292832 817.98797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09292833 817.98797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09292834 817.98797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09292835 817.98797607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09292836 817.98803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09292837 817.98803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09292838 817.98803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09292839 817.98803711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09292840 817.98809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09292841 817.98809814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09292842 817.98815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09292843 817.98815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09292844 817.98815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09292845 817.98815918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09292846 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09292847 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09292848 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09292849 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09292850 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09292851 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09292852 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09292853 817.98822021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09292854 817.98828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09292855 817.98828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09292856 817.98828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09292857 817.98828125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09292858 817.98834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09292859 817.98834229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09292860 817.98840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09292861 817.98840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09292862 817.98840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09292863 817.98840332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09292864 817.98846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09292865 817.98846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09292866 817.98846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09292867 817.98846436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09292868 817.98852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09292869 817.98852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09292870 817.98852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09292871 817.98852539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09292872 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09292873 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09292874 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09292875 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09292876 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09292877 817.98858643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09292878 817.98864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09292879 817.98864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09292880 817.98864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09292881 817.98864746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09292882 817.98870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09292883 817.98870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09292884 817.98870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09292885 817.98870850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09292886 817.98876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09292887 817.98876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09292888 817.98876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09292889 817.98876953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09292890 817.98883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09292891 817.98883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09292892 817.98883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09292893 817.98883057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09292894 817.98889160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09292895 817.98889160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09294332 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -09294333 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa188 -09294334 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -09294335 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa198 -09294336 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -09294337 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1a8 -09294338 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -09294339 818.00921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b8 -09294340 818.00927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -09294341 818.00927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c8 -09294342 818.00927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -09294343 818.00927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d8 -09294344 818.00933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -09294345 818.00933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e8 -09294346 818.00933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -09294347 818.00933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f8 -09294348 818.00939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -09294349 818.00939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa208 -09294350 818.00939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -09294351 818.00946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa218 -09294352 818.00946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -09294353 818.00946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa228 -09294354 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -09294355 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa238 -09294356 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -09294357 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa248 -09294358 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -09294359 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa258 -09294360 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -09294361 818.00952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -09294362 818.00958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -09294363 818.00958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -09294364 818.00958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -09294365 818.00958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -09294366 818.00964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -09294367 818.00964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -09294368 818.00964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -09294369 818.00964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -09294370 818.00970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -09294371 818.00970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -09294372 818.00970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -09294373 818.00976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -09294374 818.00976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -09294375 818.00976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -09296818 818.04418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -09296819 818.04418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef38 -09296820 818.04418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -09296821 818.04418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef48 -09296822 818.04425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -09296823 818.04425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef58 -09296824 818.04425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -09296825 818.04425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef68 -09296826 818.04431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -09296827 818.04431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef78 -09296828 818.04431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -09296829 818.04431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef88 -09296830 818.04437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -09296831 818.04437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xef98 -09296832 818.04437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -09296833 818.04443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefa8 -09296834 818.04443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb8 -09296835 818.04443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefb8 -09296836 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc8 -09296837 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefc8 -09296838 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd8 -09296839 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefd8 -09296840 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe8 -09296841 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xefe8 -09296842 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff8 -09296843 818.04449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xeff8 -09296844 818.04455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf008 -09296845 818.04455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf008 -09296846 818.04455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf018 -09296847 818.04455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf018 -09296848 818.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf028 -09296849 818.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf028 -09296850 818.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf038 -09296851 818.04461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf038 -09296852 818.04467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf048 -09296853 818.04467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf048 -09296854 818.04473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf058 -09296855 818.04473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf058 -09296856 818.04473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf068 -09296857 818.04473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf068 -09296858 818.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf078 -09296859 818.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf078 -09296860 818.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf088 -09296861 818.04479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xf088 -09299402 818.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff8 -09299403 818.08050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff8 -09299404 818.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14008 -09299405 818.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14008 -09299406 818.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14018 -09299407 818.08056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14018 -09299408 818.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14028 -09299409 818.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14028 -09299410 818.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14038 -09299411 818.08062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14038 -09299412 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14048 -09299413 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14048 -09299414 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14058 -09299415 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14058 -09299416 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14068 -09299417 818.08068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14068 -09299418 818.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14078 -09299419 818.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14078 -09299420 818.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14088 -09299421 818.08074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14088 -09299422 818.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14098 -09299423 818.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14098 -09299424 818.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a8 -09299425 818.08081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140a8 -09299426 818.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -09299427 818.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140b8 -09299428 818.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -09299429 818.08087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140c8 -09299430 818.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -09299431 818.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140d8 -09299432 818.08093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -09299433 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140e8 -09299434 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f8 -09299435 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x140f8 -09299436 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14108 -09299437 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14108 -09299438 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14118 -09299439 818.08099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14118 -09299440 818.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14128 -09299441 818.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14128 -09299442 818.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14138 -09299443 818.08105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14138 -09299444 818.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14148 -09299445 818.08111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14148 -09301570 818.11090088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b8 -09301571 818.11090088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183b8 -09301572 818.11096191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c8 -09301573 818.11096191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183c8 -09301574 818.11096191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d8 -09301575 818.11096191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183d8 -09301576 818.11102295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e8 -09301577 818.11102295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183e8 -09301578 818.11102295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f8 -09301579 818.11102295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x183f8 -09301580 818.11108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18408 -09301581 818.11108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18408 -09301582 818.11108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18418 -09301583 818.11114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18418 -09301584 818.11114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -09301585 818.11114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18428 -09301586 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -09301587 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18438 -09301588 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -09301589 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18448 -09301590 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -09301591 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18458 -09301592 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -09301593 818.11120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18468 -09301594 818.11126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -09301595 818.11126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18478 -09301596 818.11126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -09301597 818.11126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18488 -09301598 818.11132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -09301599 818.11132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18498 -09301600 818.11132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -09301601 818.11132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184a8 -09301602 818.11138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -09301603 818.11138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184b8 -09301604 818.11138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -09301605 818.11145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184c8 -09301606 818.11145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -09301607 818.11145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184d8 -09301608 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -09301609 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184e8 -09301610 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -09301611 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x184f8 -09301612 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -09301613 818.11151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18508 -09304282 818.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -09304283 818.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d878 -09304284 818.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -09304285 818.14953613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d888 -09304286 818.14959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d898 -09304287 818.14959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d898 -09304288 818.14959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a8 -09304289 818.14959717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8a8 -09304290 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b8 -09304291 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8b8 -09304292 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c8 -09304293 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8c8 -09304294 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d8 -09304295 818.14965820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8d8 -09304296 818.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e8 -09304297 818.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8e8 -09304298 818.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f8 -09304299 818.14971924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d8f8 -09304300 818.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d908 -09304301 818.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d908 -09304302 818.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d918 -09304303 818.14978027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d918 -09304304 818.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d928 -09304305 818.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d928 -09304306 818.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d938 -09304307 818.14984131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d938 -09304308 818.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d948 -09304309 818.14990234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d948 -09304310 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d958 -09304311 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d958 -09304312 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d968 -09304313 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d968 -09304314 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d978 -09304315 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d978 -09304316 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d988 -09304317 818.14996338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d988 -09304318 818.15002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d998 -09304319 818.15002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d998 -09304320 818.15002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -09304321 818.15002441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9a8 -09304322 818.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -09304323 818.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9b8 -09304324 818.15008545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -09304325 818.15014648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d9c8 -09304686 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -09304687 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -09304688 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -09304689 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -09304690 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -09304691 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -09304692 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -09304693 818.15539551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -09304694 818.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -09304695 818.15545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -09304696 818.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -09304697 818.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -09304698 818.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -09304699 818.15551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -09304700 818.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -09304701 818.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -09304702 818.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -09304703 818.15557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -09304704 818.15563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -09304705 818.15563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -09304706 818.15563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -09304707 818.15563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -09304708 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -09304709 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -09304710 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -09304711 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -09304712 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -09304713 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -09304714 818.15570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -09304715 818.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -09304716 818.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e608 -09304717 818.15576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e608 -09304718 818.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e618 -09304719 818.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e618 -09304720 818.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e628 -09304721 818.15582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e628 -09304722 818.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e638 -09304723 818.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e638 -09304724 818.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e648 -09304725 818.15588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e648 -09304726 818.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e658 -09304727 818.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e658 -09304728 818.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e668 -09304729 818.15594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e668 -09304836 818.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c8 -09304837 818.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9c8 -09304838 818.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d8 -09304839 818.15753174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9d8 -09304840 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e8 -09304841 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9e8 -09304842 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f8 -09304843 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e9f8 -09304844 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea08 -09304845 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea08 -09304846 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea18 -09304847 818.15759277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea18 -09304848 818.15765381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea28 -09304849 818.15765381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea28 -09304850 818.15765381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea38 -09304851 818.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea38 -09304852 818.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea48 -09304853 818.15771484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea48 -09304854 818.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -09304855 818.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea58 -09304856 818.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -09304857 818.15777588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea68 -09304858 818.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -09304859 818.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea78 -09304860 818.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -09304861 818.15783691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea88 -09304862 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -09304863 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea98 -09304864 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -09304865 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaa8 -09304866 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -09304867 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eab8 -09304868 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -09304869 818.15789795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eac8 -09304870 818.15795898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -09304871 818.15795898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ead8 -09304872 818.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -09304873 818.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eae8 -09304874 818.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -09304875 818.15802002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eaf8 -09304876 818.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -09304877 818.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb08 -09304878 818.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -09304879 818.15808105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb18 -09306086 818.17535400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d8 -09306087 818.17535400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210d8 -09306088 818.17535400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -09306089 818.17535400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210e8 -09306090 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -09306091 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x210f8 -09306092 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -09306093 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21108 -09306094 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -09306095 818.17541504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21118 -09306096 818.17547607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -09306097 818.17547607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21128 -09306098 818.17547607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -09306099 818.17547607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21138 -09306100 818.17553711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -09306101 818.17553711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21148 -09306102 818.17553711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -09306103 818.17553711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21158 -09306104 818.17559814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -09306105 818.17559814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21168 -09306106 818.17565918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -09306107 818.17565918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21178 -09306108 818.17565918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -09306109 818.17565918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21188 -09306110 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -09306111 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21198 -09306112 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -09306113 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211a8 -09306114 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -09306115 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211b8 -09306116 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -09306117 818.17572021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211c8 -09306118 818.17578125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -09306119 818.17578125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211d8 -09306120 818.17578125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -09306121 818.17584229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211e8 -09306122 818.17584229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -09306123 818.17584229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x211f8 -09306124 818.17590332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -09306125 818.17590332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21208 -09306126 818.17590332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -09306127 818.17590332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21218 -09306128 818.17596436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -09306129 818.17596436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21228 -09306230 818.17736816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -09306231 818.17742920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -09306232 818.17742920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -09306233 818.17742920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -09306234 818.17749023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -09306235 818.17749023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -09306236 818.17749023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -09306237 818.17749023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -09306238 818.17755127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -09306239 818.17755127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -09306240 818.17755127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -09306241 818.17755127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -09306242 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -09306243 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -09306244 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -09306245 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -09306246 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -09306247 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -09306248 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -09306249 818.17761230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -09306250 818.17767334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -09306251 818.17767334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x215f8 -09306252 818.17773438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -09306253 818.17773438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21608 -09306254 818.17773438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -09306255 818.17773438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21618 -09306256 818.17779541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -09306257 818.17779541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21628 -09306258 818.17779541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -09306259 818.17779541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21638 -09306260 818.17785645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -09306261 818.17785645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21648 -09306262 818.17785645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -09306263 818.17785645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21658 -09306264 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -09306265 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21668 -09306266 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -09306267 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21678 -09306268 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -09306269 818.17791748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21688 -09306270 818.17797852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21698 -09306271 818.17797852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21698 -09306272 818.17797852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a8 -09306273 818.17797852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x216a8 -09310390 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29758 -09310391 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29758 -09310392 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29768 -09310393 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29768 -09310394 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29778 -09310395 818.23706055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29778 -09310396 818.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29788 -09310397 818.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29788 -09310398 818.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29798 -09310399 818.23712158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29798 -09310400 818.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a8 -09310401 818.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297a8 -09310402 818.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b8 -09310403 818.23718262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297b8 -09310404 818.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c8 -09310405 818.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297c8 -09310406 818.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d8 -09310407 818.23724365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297d8 -09310408 818.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e8 -09310409 818.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297e8 -09310410 818.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f8 -09310411 818.23730469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x297f8 -09310412 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29808 -09310413 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29808 -09310414 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29818 -09310415 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29818 -09310416 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29828 -09310417 818.23736572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29828 -09310418 818.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29838 -09310419 818.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29838 -09310420 818.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -09310421 818.23742676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29848 -09310422 818.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -09310423 818.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29858 -09310424 818.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -09310425 818.23748779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29868 -09310426 818.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -09310427 818.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29878 -09310428 818.23754883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -09310429 818.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29888 -09310430 818.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -09310431 818.23760986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29898 -09310432 818.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -09310433 818.23767090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x298a8 -09324043 818.43164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441b8 -09324044 818.43164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -09324045 818.43164063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441c8 -09324046 818.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -09324047 818.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441d8 -09324048 818.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -09324049 818.43170166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441e8 -09324050 818.43176270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -09324051 818.43176270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x441f8 -09324052 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -09324053 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44208 -09324054 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -09324055 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44218 -09324056 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -09324057 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44228 -09324058 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -09324059 818.43182373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44238 -09324060 818.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -09324061 818.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44248 -09324062 818.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -09324063 818.43188477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44258 -09324064 818.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -09324065 818.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44268 -09324066 818.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -09324067 818.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44278 -09324068 818.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -09324069 818.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44288 -09324070 818.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -09324071 818.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44298 -09324072 818.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -09324073 818.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442a8 -09324074 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -09324075 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442b8 -09324076 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -09324077 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442c8 -09324078 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -09324079 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442d8 -09324080 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -09324081 818.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442e8 -09324082 818.43218994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -09324083 818.43218994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x442f8 -09324084 818.43218994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -09324085 818.43225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44308 -09324086 818.43225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44318 -09328192 818.49121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c368 -09328193 818.49121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c368 -09328194 818.49121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c378 -09328195 818.49121094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c378 -09328196 818.49127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c388 -09328197 818.49127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c388 -09328198 818.49127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c398 -09328199 818.49127197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c398 -09328200 818.49133301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a8 -09328201 818.49133301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a8 -09328202 818.49139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b8 -09328203 818.49139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b8 -09328204 818.49139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c8 -09328205 818.49139404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c8 -09328206 818.49145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d8 -09328207 818.49145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d8 -09328208 818.49145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e8 -09328209 818.49145508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e8 -09328210 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f8 -09328211 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f8 -09328212 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c408 -09328213 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c408 -09328214 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c418 -09328215 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c418 -09328216 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c428 -09328217 818.49151611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c428 -09328218 818.49157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c438 -09328219 818.49157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c438 -09328220 818.49157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c448 -09328221 818.49157715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c448 -09328222 818.49163818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c458 -09328223 818.49163818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c458 -09328224 818.49169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c468 -09328225 818.49169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c468 -09328226 818.49169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c478 -09328227 818.49169922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c478 -09328228 818.49176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c488 -09328229 818.49176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c488 -09328230 818.49176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c498 -09328231 818.49176025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c498 -09328232 818.49182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a8 -09328233 818.49182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4a8 -09328234 818.49182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b8 -09328235 818.49182129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c4b8 -09331578 819.45855713 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09331579 819.47955322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331580 819.47955322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331581 820.76873779 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331582 820.76873779 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331583 820.76873779 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331584 820.76879883 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09331585 820.76892090 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331586 820.76892090 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09331587 820.76898193 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331588 820.76904297 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09331589 821.48101807 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09331590 821.50244141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331591 821.50244141 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331592 823.27575684 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331593 823.27581787 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331594 823.27581787 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331595 823.27581787 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09331596 823.27600098 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331597 823.27600098 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09331598 823.27606201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09331599 823.27606201 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09331600 823.50360107 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09331601 823.52539063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331602 823.52539063 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09331603 823.53967285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09331604 823.53967285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09331605 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09331606 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09331607 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09331608 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09331609 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09331610 823.53973389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09331611 823.53979492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09331612 823.53979492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09331613 823.53979492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09331614 823.53979492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09331615 823.53985596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09331616 823.53985596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09331617 823.53985596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09331618 823.53985596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09331619 823.53991699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09331620 823.53991699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09331621 823.53991699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09331622 823.53991699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09331623 823.53997803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09331624 823.53997803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09331625 823.53997803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09331626 823.53997803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09331627 823.54003906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09331628 823.54003906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09331629 823.54003906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09331630 823.54003906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09331631 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09331632 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09331633 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09331634 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09331635 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09331636 823.54010010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09331637 823.54016113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09331638 823.54016113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09331639 823.54016113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09331640 823.54016113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09331641 823.54022217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09331642 823.54022217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09331643 823.54022217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09331644 823.54022217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09331645 823.54028320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09331646 823.54028320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09331647 823.54028320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09331648 823.54028320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09331649 823.54034424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09331650 823.54034424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09331651 823.54040527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09331652 823.54040527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09331653 823.54040527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09331654 823.54040527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09331655 823.54046631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09331656 823.54046631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09331657 823.54046631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09331658 823.54046631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09331659 823.54052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09331660 823.54052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09331661 823.54052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09331662 823.54052734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09331663 823.54058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09331664 823.54058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09331665 823.54058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09331666 823.54058838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09331667 823.54064941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09331668 823.54064941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09331669 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09331670 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09331671 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09331672 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09331673 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09331674 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09331675 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09331676 823.54071045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09331677 823.54077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09331678 823.54077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09331679 823.54077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09331680 823.54077148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09331681 823.54083252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09331682 823.54083252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09331683 823.54083252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09331684 823.54083252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09331685 823.54089355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09331686 823.54089355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09331687 823.54089355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09331688 823.54095459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09331689 823.54095459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09331690 823.54095459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09331691 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09331692 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09331693 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09331694 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09331695 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09331696 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09331697 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09331698 823.54101563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09331699 823.54107666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09331700 823.54107666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09331701 823.54107666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09331702 823.54107666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09331703 823.54113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09331704 823.54113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09331705 823.54113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09331706 823.54113770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09331707 823.54119873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09331708 823.54119873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09331709 823.54125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09331710 823.54125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09331711 823.54125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09331712 823.54125977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09331713 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09331714 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09331715 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09331716 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09331717 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09331718 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09331719 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09331720 823.54132080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09331721 823.54138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09331722 823.54138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09331723 823.54138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09331724 823.54138184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09331725 823.54144287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09331726 823.54144287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09331727 823.54150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09331728 823.54150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09331729 823.54150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09331730 823.54150391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09331731 823.54156494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09331732 823.54156494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09331733 823.54156494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09331734 823.54162598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09331735 823.54162598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09331736 823.54162598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09331737 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09331738 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09331739 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09331740 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09331741 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09331742 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09331743 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09331744 823.54168701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09331745 823.54174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09331746 823.54174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09331747 823.54174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09331748 823.54174805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09331749 823.54180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09331750 823.54180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09331751 823.54180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09331752 823.54180908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09331753 823.54187012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09331754 823.54187012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09331755 823.54187012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09331756 823.54193115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09331757 823.54193115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09331758 823.54193115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09331759 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09331760 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09331761 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09331762 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09331763 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09331764 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09331765 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09331766 823.54199219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09331767 823.54205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09331768 823.54205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09331769 823.54205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09331770 823.54205322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09331771 823.54211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09331772 823.54211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09331773 823.54211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09331774 823.54211426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09331775 823.54217529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09331776 823.54217529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09331777 823.54223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09331778 823.54223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09331779 823.54223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09331780 823.54223633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09331781 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09331782 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09331783 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09331784 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09331785 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09331786 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09331787 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09331788 823.54229736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09331789 823.54235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09331790 823.54235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09331791 823.54235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09331792 823.54235840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09331793 823.54241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09331794 823.54241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09331795 823.54241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09331796 823.54241943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09331797 823.54248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09331798 823.54248047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09331799 823.54254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09331800 823.54254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09331801 823.54254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09331802 823.54254150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09331803 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09331804 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09331805 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09331806 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09331807 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09331808 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09331809 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09331810 823.54260254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09331811 823.54266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09331812 823.54266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09331813 823.54266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09331814 823.54266357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09331815 823.54272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09331816 823.54272461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09331817 823.54278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09331818 823.54278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09331819 823.54278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09331820 823.54278564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09331821 823.54284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09331822 823.54284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09331823 823.54284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09331824 823.54284668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09331825 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09331826 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09331827 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09331828 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09331829 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09331830 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09331831 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09331832 823.54290771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09331833 823.54296875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09331834 823.54296875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09331835 823.54296875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09331836 823.54302979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09331837 823.54302979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09331838 823.54302979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09331839 823.54309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09331840 823.54309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09331841 823.54309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09331842 823.54309082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09331843 823.54315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09331844 823.54315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09331845 823.54315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09331846 823.54315186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09331847 823.54321289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09331848 823.54321289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09331849 823.54321289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09331850 823.54321289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09331851 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09331852 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09331853 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09331854 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09331855 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09331856 823.54327393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09331857 823.54333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09331858 823.54333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09331859 823.54333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09331860 823.54333496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09331861 823.54339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09331862 823.54339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09331863 823.54339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09331864 823.54339600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09331865 823.54345703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09331866 823.54345703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09331867 823.54345703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09331868 823.54351807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09331869 823.54351807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09331870 823.54351807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09331871 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09331872 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09331873 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09331874 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09331875 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09331876 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09331877 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09331878 823.54357910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09331879 823.54364014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09331880 823.54364014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09331881 823.54364014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09331882 823.54370117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09331883 823.54370117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09331884 823.54370117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09331885 823.54376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09331886 823.54376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09331887 823.54376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09331888 823.54376221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09331889 823.54382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09331890 823.54382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09331891 823.54382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09331892 823.54382324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09331893 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09331894 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09331895 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09331896 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09331897 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09331898 823.54388428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09331899 823.54394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09331900 823.54394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09331901 823.54394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09331902 823.54394531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09331903 823.54400635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09331904 823.54400635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09331905 823.54400635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09331906 823.54400635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09331907 823.54406738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09331908 823.54406738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09331909 823.54412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09331910 823.54412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09331911 823.54412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09331912 823.54412842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09331913 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09331914 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09331915 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09331916 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09331917 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09331918 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09331919 823.54418945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09331920 823.54425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09331921 823.54425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09331922 823.54425049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09331923 823.54431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09331924 823.54431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09331925 823.54431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09331926 823.54431152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09331927 823.54437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09331928 823.54437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09331929 823.54437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09331930 823.54437256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09331931 823.54443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09331932 823.54443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09331933 823.54443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09331934 823.54443359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09331935 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09331936 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09331937 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09331938 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09331939 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09331940 823.54449463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09331941 823.54455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09331942 823.54455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09331943 823.54455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09331944 823.54455566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09331945 823.54461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09331946 823.54461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09331947 823.54461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09331948 823.54461670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09331949 823.54467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09331950 823.54467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09331951 823.54467773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09331952 823.54473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09331953 823.54473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09331954 823.54473877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09331955 823.54479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09331956 823.54479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09331957 823.54479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09331958 823.54479980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09331959 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09331960 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09331961 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09331962 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09331963 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09331964 823.54486084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09331965 823.54492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09331966 823.54492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09331967 823.54492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09331968 823.54492188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09331969 823.54498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09331970 823.54498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09331971 823.54498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09331972 823.54498291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09331973 823.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09331974 823.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09331975 823.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09331976 823.54504395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09331977 823.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09331978 823.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09331979 823.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09331980 823.54510498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09331981 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09331982 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09331983 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09331984 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09331985 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09331986 823.54516602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09331987 823.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09331988 823.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09331989 823.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09331990 823.54522705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09331991 823.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09331992 823.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09331993 823.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09331994 823.54528809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09331995 823.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09331996 823.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09331997 823.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09331998 823.54534912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09331999 823.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09332000 823.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09332001 823.54541016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09332002 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09332003 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09332004 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09332005 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09332006 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09332007 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09332008 823.54547119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09332009 823.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09332010 823.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09332011 823.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09332012 823.54553223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09332013 823.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09332014 823.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09332015 823.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09332016 823.54559326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09332017 823.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09332018 823.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09332019 823.54565430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09332020 823.54571533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09332021 823.54571533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09332022 823.54571533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09332023 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09332024 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09332025 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09332026 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09332027 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09332028 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09332029 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09332030 823.54577637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09332031 823.54583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09332032 823.54583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09332033 823.54583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09332034 823.54583740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09332035 823.54589844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09332036 823.54589844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09332037 823.54589844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09332038 823.54595947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09332039 823.54595947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09332040 823.54595947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09332041 823.54602051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09332042 823.54602051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09332043 823.54602051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09332044 823.54602051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09332045 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09332046 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09332047 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09332048 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09332049 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09332050 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09332051 823.54608154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09332052 823.54614258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09332053 823.54614258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09332054 823.54614258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09332055 823.54620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09332056 823.54620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09332057 823.54620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09332058 823.54620361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09332059 823.54626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09332060 823.54626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09332061 823.54626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09332062 823.54626465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09332063 823.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09332064 823.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09332065 823.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09332066 823.54632568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09332067 823.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09332068 823.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09332069 823.54638672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09332070 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09332071 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09332072 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09332073 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09332074 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09332075 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09332076 823.54644775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09332077 823.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09332078 823.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09332079 823.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09332080 823.54650879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09332081 823.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09332082 823.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09332083 823.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09332084 823.54656982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09332085 823.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09332086 823.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09332087 823.54663086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09332088 823.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09332089 823.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09332090 823.54669189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09332091 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09332092 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09332093 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09332094 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09332095 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09332096 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09332097 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09332098 823.54675293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09332099 823.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09332100 823.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09332101 823.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09332102 823.54681396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09332103 823.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09332104 823.54687500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09332105 823.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09332106 823.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09332107 823.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09332108 823.54693604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09332109 823.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09332110 823.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09332111 823.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09332112 823.54699707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09332113 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09332114 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09332115 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09332116 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09332117 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09332118 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09332119 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09332120 823.54705811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09332121 823.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09332122 823.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09332123 823.54711914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09332124 823.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09332125 823.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09332126 823.54718018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09332127 823.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09332128 823.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09332129 823.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09332130 823.54724121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09332131 823.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09332132 823.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09332133 823.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09332134 823.54730225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09332135 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09332136 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09332137 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09332138 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09332139 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09332140 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09332141 823.54736328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09332142 823.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09332143 823.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09332144 823.54742432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09332145 823.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09332146 823.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09332147 823.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09332148 823.54748535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09332149 823.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09332150 823.54754639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09332151 823.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09332152 823.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09332153 823.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09332154 823.54760742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09332155 823.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09332156 823.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09332157 823.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09332158 823.54766846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09332159 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09332160 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09332161 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09332162 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09332163 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09332164 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09332165 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09332166 823.54772949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09332167 823.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09332168 823.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09332169 823.54779053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09332170 823.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09332171 823.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09332172 823.54785156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09332173 823.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09332174 823.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09332175 823.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09332176 823.54791260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09332177 823.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09332178 823.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09332179 823.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09332180 823.54797363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09332181 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09332182 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09332183 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09332184 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09332185 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09332186 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09332187 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09332188 823.54803467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09332189 823.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09332190 823.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09332191 823.54809570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09332192 823.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09332193 823.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09332194 823.54815674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09332195 823.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09332196 823.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09332197 823.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09332198 823.54821777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09332199 823.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09332200 823.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09332201 823.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09332202 823.54827881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09332203 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09332204 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09332205 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09332206 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09332207 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09332208 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09332209 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09332210 823.54833984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09332211 823.54840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09332212 823.54840088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09332213 823.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09332214 823.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09332215 823.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09332216 823.54846191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09332217 823.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09332218 823.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09332219 823.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09332220 823.54852295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09332221 823.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09332222 823.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09332223 823.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09332224 823.54858398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09332225 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09332226 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09332227 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09332228 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09332229 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09332230 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09332231 823.54864502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09332232 823.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09332233 823.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09332234 823.54870605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09332235 823.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09332236 823.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09332237 823.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09332238 823.54876709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09332239 823.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09332240 823.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09332241 823.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09332242 823.54882813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09332243 823.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09332244 823.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09332245 823.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09332246 823.54888916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09332247 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09332248 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09332249 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09332250 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09332251 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09332252 823.54895020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09332253 823.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09332254 823.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09332255 823.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09332256 823.54901123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09332257 823.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09332258 823.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09332259 823.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09332260 823.54907227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09332261 823.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09332262 823.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09332263 823.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09332264 823.54913330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09332265 823.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09332266 823.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09332267 823.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09332268 823.54919434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09332269 823.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09332270 823.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09332271 823.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09332272 823.54925537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09332273 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09332274 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09332275 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09332276 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09332277 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09332278 823.54931641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09332279 823.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09332280 823.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09332281 823.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09332282 823.54937744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09332283 823.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09332284 823.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09332285 823.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09332286 823.54943848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09332287 823.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09332288 823.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09332289 823.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09332290 823.54949951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09332291 823.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09332292 823.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09332293 823.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09332294 823.54956055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09332295 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09332296 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09332297 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09332298 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09332299 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09332300 823.54962158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09332301 823.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09332302 823.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09332303 823.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09332304 823.54968262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09332305 823.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09332306 823.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09332307 823.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09332308 823.54974365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09332309 823.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09332310 823.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09332311 823.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09332312 823.54980469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09332313 823.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09332314 823.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09332315 823.54986572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09332316 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09332317 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09332318 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09332319 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09332320 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09332321 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09332322 823.54992676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09332323 823.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09332324 823.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09332325 823.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09332326 823.54998779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09332327 823.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09332328 823.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09332329 823.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09332330 823.55004883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09332331 823.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09332332 823.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09332333 823.55010986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09332334 823.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09332335 823.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09332336 823.55017090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09332337 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09332338 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09332339 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09332340 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09332341 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09332342 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09332343 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09332344 823.55023193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09332345 823.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09332346 823.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09332347 823.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09332348 823.55029297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09332349 823.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09332350 823.55035400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09332351 823.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09332352 823.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09332353 823.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09332354 823.55041504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09332355 823.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09332356 823.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09332357 823.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09332358 823.55047607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09332359 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09332360 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09332361 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09332362 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09332363 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09332364 823.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09332365 823.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09332366 823.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09332367 823.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09332368 823.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09332369 823.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09332370 823.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09332371 823.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09332372 823.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09332373 823.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09332374 823.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09332375 823.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09332376 823.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09332377 823.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09332378 823.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09332379 823.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09332380 823.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09332381 823.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09332382 823.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09332383 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09332384 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09332385 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09332386 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09332387 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09332388 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09332389 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09332390 823.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09332391 823.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09332392 823.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09332393 823.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09332394 823.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09332395 823.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09332396 823.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09332397 823.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09332398 823.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09332399 823.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09332400 823.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09332401 823.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09332402 823.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09332403 823.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09332404 823.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09332405 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09332406 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09332407 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09332408 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09332409 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09332410 823.55120850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09332411 823.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09332412 823.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09332413 823.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09332414 823.55126953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09332415 823.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09332416 823.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09332417 823.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09332418 823.55133057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09332419 823.55139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09332420 823.55139160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09332421 823.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09332422 823.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09332423 823.55145264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09332424 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09332425 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09332426 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09332427 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09332428 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09332429 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09332430 823.55151367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09332431 823.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09332432 823.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09332433 823.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09332434 823.55157471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09332435 823.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09332436 823.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09332437 823.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09332438 823.55163574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09332439 823.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09332440 823.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09332441 823.55169678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09332442 823.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09332443 823.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09332444 823.55175781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09332445 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09332446 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09332447 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09332448 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09332449 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09332450 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09332451 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09332452 823.55181885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09332453 823.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09332454 823.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09332455 823.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09332456 823.55187988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09332457 823.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09332458 823.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09332459 823.55194092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09332460 823.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09332461 823.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09332462 823.55200195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09332463 823.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09332464 823.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09332465 823.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09332466 823.55206299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09332467 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09332468 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09332469 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09332470 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09332471 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09332472 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09332473 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09332474 823.55212402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09332475 823.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09332476 823.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09332477 823.55218506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09332478 823.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09332479 823.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09332480 823.55224609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09332481 823.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09332482 823.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09332483 823.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09332484 823.55230713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09332485 823.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09332486 823.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09332487 823.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09332488 823.55236816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09332489 823.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09332490 823.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09332491 823.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09332492 823.55242920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09332493 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09332494 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09332495 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09332496 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09332497 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09332498 823.55249023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09332499 823.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09332500 823.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09332501 823.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09332502 823.55255127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09332503 823.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09332504 823.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09332505 823.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09332506 823.55261230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09332507 823.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09332508 823.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09332509 823.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09332510 823.55267334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09332511 823.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09332512 823.55273438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09332513 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09332514 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09332515 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09332516 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09332517 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09332518 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09332519 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09332520 823.55279541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09332521 823.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09332522 823.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09332523 823.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09332524 823.55285645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09332525 823.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09332526 823.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09332527 823.55291748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09332528 823.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09332529 823.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09332530 823.55297852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09332531 823.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09332532 823.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09332533 823.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09332534 823.55303955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09332535 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09332536 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09332537 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09332538 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09332539 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09332540 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09332541 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09332542 823.55310059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09332543 823.55316162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09332544 823.55316162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09332545 823.55316162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09332546 823.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09332547 823.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09332548 823.55322266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09332549 823.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09332550 823.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09332551 823.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09332552 823.55328369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09332553 823.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09332554 823.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09332555 823.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09332556 823.55334473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09332557 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09332558 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09332559 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09332560 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09332561 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09332562 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09332563 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09332564 823.55340576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09332565 823.55346680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09332566 823.55346680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09332567 823.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09332568 823.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09332569 823.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09332570 823.55352783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09332571 823.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09332572 823.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09332573 823.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09332574 823.55358887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09332575 823.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09332576 823.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09332577 823.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09332578 823.55364990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09332579 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09332580 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09332581 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09332582 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09332583 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09332584 823.55371094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09332585 823.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09332586 823.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09332587 823.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09332588 823.55377197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09332589 823.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09332590 823.55383301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09332591 823.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09332592 823.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09332593 823.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09332594 823.55389404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09332595 823.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09332596 823.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09332597 823.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09332598 823.55395508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09332599 823.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09332600 823.55401611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09332601 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09332602 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09332603 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09332604 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09332605 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09332606 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09332607 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09332608 823.55407715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09332609 823.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09332610 823.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09332611 823.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09332612 823.55413818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09332613 823.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09332614 823.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09332615 823.55419922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09332616 823.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09332617 823.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09332618 823.55426025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09332619 823.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09332620 823.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09332621 823.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09332622 823.55432129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09332623 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09332624 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09332625 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09332626 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09332627 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09332628 823.55438232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09332629 823.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09332630 823.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09332631 823.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09332632 823.55444336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09332633 823.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09332634 823.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09332635 823.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09332636 823.55450439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09332637 823.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09332638 823.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09332639 823.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09332640 823.55456543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09332641 823.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09332642 823.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09332643 823.55462646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09332644 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09332645 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09332646 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09332647 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09332648 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09332649 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09332650 823.55468750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09332651 823.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09332652 823.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09332653 823.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09332654 823.55474854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09332655 823.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09332656 823.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09332657 823.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09332658 823.55480957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09332659 823.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09332660 823.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09332661 823.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09332662 823.55487061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09332663 823.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09332664 823.55493164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09332665 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09332666 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09332667 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09332668 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09332669 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09332670 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09332671 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09332672 823.55499268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09332673 823.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09332674 823.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09332675 823.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09332676 823.55505371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09332677 823.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09332678 823.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09332679 823.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09332680 823.55511475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09332681 823.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09332682 823.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09332683 823.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09332684 823.55517578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09332685 823.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09332686 823.55523682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09332687 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09332688 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09332689 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09332690 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09332691 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09332692 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09332693 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09332694 823.55529785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09332695 823.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09332696 823.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09332697 823.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09332698 823.55535889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09332699 823.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09332700 823.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09332701 823.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09332702 823.55541992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09332703 823.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09332704 823.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09332705 823.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09332706 823.55548096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09332707 823.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09332708 823.55554199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09332709 823.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09332710 823.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09332711 823.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09332712 823.55560303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09332713 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09332714 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09332715 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09332716 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09332717 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09332718 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09332719 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09332720 823.55566406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09332721 823.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09332722 823.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09332723 823.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09332724 823.55572510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09332725 823.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09332726 823.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09332727 823.55578613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09332728 823.55584717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09332729 823.55584717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09332730 823.55584717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09332731 823.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09332732 823.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09332733 823.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09332734 823.55590820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09332735 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09332736 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09332737 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09332738 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09332739 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09332740 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09332741 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09332742 823.55596924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09332743 823.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09332744 823.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09332745 823.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09332746 823.55603027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09332747 823.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09332748 823.55609131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09332749 823.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09332750 823.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09332751 823.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09332752 823.55615234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09332753 823.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09332754 823.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09332755 823.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09332756 823.55621338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09332757 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09332758 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09332759 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09332760 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09332761 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09332762 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09332763 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09332764 823.55627441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09332765 823.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09332766 823.55633545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09332767 823.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09332768 823.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09332769 823.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09332770 823.55639648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09332771 823.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09332772 823.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09332773 823.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09332774 823.55645752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09332775 823.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09332776 823.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09332777 823.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09332778 823.55651855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09332779 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09332780 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09332781 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09332782 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09332783 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09332784 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09332785 823.55657959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09332786 823.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09332787 823.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09332788 823.55664063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09332789 823.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09332790 823.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09332791 823.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09332792 823.55670166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09332793 823.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09332794 823.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09332795 823.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09332796 823.55676270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09332797 823.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09332798 823.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09332799 823.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09332800 823.55682373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09332801 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09332802 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09332803 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09332804 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09332805 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09332806 823.55688477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09332807 823.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09332808 823.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09332809 823.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09332810 823.55694580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09332811 823.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09332812 823.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09332813 823.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09332814 823.55700684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09332815 823.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09332816 823.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09332817 823.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09332818 823.55706787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09332819 823.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09332820 823.55712891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09332821 823.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09332822 823.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09332823 823.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09332824 823.55718994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09332825 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09332826 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09332827 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09332828 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09332829 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09332830 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09332831 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09332832 823.55725098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09332833 823.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09332834 823.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09332835 823.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09332836 823.55731201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09332837 823.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09332838 823.55737305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09332839 823.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09332840 823.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09332841 823.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09332842 823.55743408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09332843 823.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09332844 823.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09332845 823.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09332846 823.55749512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09332847 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09332848 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09332849 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09332850 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09332851 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09332852 823.55755615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09332853 823.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09332854 823.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09332855 823.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09332856 823.55761719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09332857 823.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09332858 823.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09332859 823.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09332860 823.55767822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09332861 823.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09332862 823.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09332863 823.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09332864 823.55773926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09332865 823.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09332866 823.55780029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09332867 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09332868 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09332869 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09332870 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09332871 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09332872 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09332873 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09332874 823.55786133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09332875 823.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09332876 823.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09332877 823.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09332878 823.55792236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09332879 823.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09332880 823.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09332881 823.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09332882 823.55798340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09332883 823.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09332884 823.55804443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09332885 823.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09332886 823.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09332887 823.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09332888 823.55810547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09332889 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09332890 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09332891 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09332892 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09332893 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09332894 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09332895 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09332896 823.55816650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09332897 823.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09332898 823.55822754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09332899 823.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09332900 823.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09332901 823.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09332902 823.55828857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09332903 823.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09332904 823.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09332905 823.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09332906 823.55834961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09332907 823.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09332908 823.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09332909 823.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09332910 823.55841064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09332911 823.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09332912 823.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09332913 823.55847168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09332914 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09332915 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09332916 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09332917 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09332918 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09332919 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09332920 823.55853271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09332921 823.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09332922 823.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09332923 823.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09332924 823.55859375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09332925 823.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09332926 823.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09332927 823.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09332928 823.55865479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09332929 823.55871582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09332930 823.55871582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09332931 823.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09332932 823.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09332933 823.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09332934 823.55877686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09332935 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09332936 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09332937 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09332938 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09332939 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09332940 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09332941 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09332942 823.55883789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09332943 823.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09332944 823.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09332945 823.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09332946 823.55889893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09332947 823.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09332948 823.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09332949 823.55895996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09332950 823.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09332951 823.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09332952 823.55902100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09332953 823.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09332954 823.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09332955 823.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09332956 823.55908203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09332957 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09332958 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09332959 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09332960 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09332961 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09332962 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09332963 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09332964 823.55914307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09332965 823.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09332966 823.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09332967 823.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09332968 823.55920410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09332969 823.55926514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09332970 823.55926514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09332971 823.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09332972 823.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09332973 823.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09332974 823.55932617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09332975 823.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09332976 823.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09332977 823.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09332978 823.55938721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09332979 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09332980 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09332981 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09332982 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09332983 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09332984 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09332985 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09332986 823.55944824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09332987 823.55950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09332988 823.55950928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09332989 823.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09332990 823.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09332991 823.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09332992 823.55957031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09332993 823.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09332994 823.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09332995 823.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09332996 823.55963135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09332997 823.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09332998 823.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09332999 823.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09333000 823.55969238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09333001 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09333002 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09333003 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09333004 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09333005 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09333006 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09333007 823.55975342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09333008 823.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09333009 823.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09333010 823.55981445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09333011 823.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09333012 823.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09333013 823.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09333014 823.55987549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09333015 823.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09333016 823.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09333017 823.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09333018 823.55993652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09333019 823.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09333020 823.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09333021 823.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09333022 823.55999756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09333023 823.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09333024 823.56005859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09333025 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09333026 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09333027 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09333028 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09333029 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09333030 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09333031 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09333032 823.56011963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09333033 823.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09333034 823.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09333035 823.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09333036 823.56018066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09333037 823.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09333038 823.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09333039 823.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09333040 823.56024170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09333041 823.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09333042 823.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09333043 823.56030273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09333044 823.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09333045 823.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09333046 823.56036377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09333047 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09333048 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09333049 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09333050 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09333051 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09333052 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09333053 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09333054 823.56042480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09333055 823.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09333056 823.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09333057 823.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09333058 823.56048584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09333059 823.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09333060 823.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09333061 823.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09333062 823.56054688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09333063 823.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09333064 823.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09333065 823.56060791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09333066 823.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09333067 823.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09333068 823.56066895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09333069 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09333070 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09333071 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09333072 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09333073 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09333074 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09333075 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09333076 823.56072998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09333077 823.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09333078 823.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09333079 823.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09333080 823.56079102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09333081 823.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09333082 823.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09333083 823.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09333084 823.56085205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09333085 823.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09333086 823.56091309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09333087 823.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09333088 823.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09333089 823.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09333090 823.56097412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09333091 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09333092 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09333093 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09333094 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09333095 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09333096 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09333097 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09333098 823.56103516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09333099 823.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09333100 823.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09333101 823.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09333102 823.56109619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09333103 823.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09333104 823.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09333105 823.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09333106 823.56115723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09333107 823.56121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09333108 823.56121826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09333109 823.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09333110 823.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09333111 823.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09333112 823.56127930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09333113 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09333114 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09333115 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09333116 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09333117 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09333118 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09333119 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09333120 823.56134033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09333121 823.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09333122 823.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09333123 823.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09333124 823.56140137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09333125 823.56146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09333126 823.56146240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09333127 823.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09333128 823.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09333129 823.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09333130 823.56152344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09333131 823.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09333132 823.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09333133 823.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09333134 823.56158447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09333135 823.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09333136 823.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09333137 823.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09333138 823.56164551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09333139 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09333140 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09333141 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09333142 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09333143 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09333144 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09333145 823.56170654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09333146 823.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09333147 823.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09333148 823.56176758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09333149 823.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09333150 823.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09333151 823.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09333152 823.56182861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09333153 823.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09333154 823.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09333155 823.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09333156 823.56188965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09333157 823.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09333158 823.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09333159 823.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09333160 823.56195068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09333161 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09333162 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09333163 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09333164 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09333165 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09333166 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09333167 823.56201172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09333168 823.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09333169 823.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09333170 823.56207275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09333171 823.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09333172 823.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09333173 823.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09333174 823.56213379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09333175 823.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09333176 823.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09333177 823.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09333178 823.56219482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09333179 823.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09333180 823.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09333181 823.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09333182 823.56225586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09333183 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09333184 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09333185 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09333186 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09333187 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09333188 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09333189 823.56231689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09333190 823.56237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09333191 823.56237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09333192 823.56237793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09333193 823.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09333194 823.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09333195 823.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09333196 823.56243896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09333197 823.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09333198 823.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09333199 823.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09333200 823.56250000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09333201 823.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09333202 823.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09333203 823.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09333204 823.56256104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09333205 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09333206 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09333207 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09333208 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09333209 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09333210 823.56262207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09333211 823.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09333212 823.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09333213 823.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09333214 823.56268311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09333215 823.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09333216 823.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09333217 823.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09333218 823.56274414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09333219 823.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09333220 823.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09333221 823.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09333222 823.56280518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09333223 823.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09333224 823.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09333225 823.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09333226 823.56286621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09333227 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09333228 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09333229 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09333230 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09333231 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09333232 823.56292725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09333233 823.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09333234 823.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09333235 823.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09333236 823.56298828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09333237 823.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09333238 823.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09333239 823.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09333240 823.56304932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09333241 823.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09333242 823.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09333243 823.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09333244 823.56311035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09333245 823.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09333246 823.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09333247 823.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09333248 823.56317139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09333249 823.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09333250 823.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09333251 823.56323242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09333252 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09333253 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09333254 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09333255 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09333256 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09333257 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09333258 823.56329346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09333259 823.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09333260 823.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09333261 823.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09333262 823.56335449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09333263 823.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09333264 823.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09333265 823.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09333266 823.56341553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09333267 823.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09333268 823.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09333269 823.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09333270 823.56347656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09333271 823.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09333272 823.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09333273 823.56353760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09333274 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09333275 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09333276 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09333277 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09333278 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09333279 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09333280 823.56359863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09333281 823.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09333282 823.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09333283 823.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09333284 823.56365967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09333285 823.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09333286 823.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09333287 823.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09333288 823.56372070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09333289 823.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09333290 823.56378174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09333291 823.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09333292 823.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09333293 823.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09333294 823.56384277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09333295 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09333296 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09333297 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09333298 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09333299 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09333300 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09333301 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09333302 823.56390381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09333303 823.56396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09333304 823.56396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09333305 823.56396484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09333306 823.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09333307 823.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09333308 823.56402588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09333309 823.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09333310 823.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09333311 823.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09333312 823.56408691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09333313 823.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09333314 823.56414795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09333315 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09333316 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09333317 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09333318 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09333319 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09333320 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09333321 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09333322 823.56420898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09333323 823.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09333324 823.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09333325 823.56427002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09333326 823.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09333327 823.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09333328 823.56433105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09333329 823.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09333330 823.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09333331 823.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09333332 823.56439209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09333333 823.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09333334 823.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09333335 823.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09333336 823.56445313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09333337 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09333338 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09333339 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09333340 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09333341 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09333342 823.56451416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09333343 823.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09333344 823.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09333345 823.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09333346 823.56457520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09333347 823.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09333348 823.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09333349 823.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09333350 823.56463623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09333351 823.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09333352 823.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09333353 823.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09333354 823.56469727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09333355 823.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09333356 823.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09333357 823.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09333358 823.56475830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09333359 823.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09333360 823.56481934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09333361 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09333362 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09333363 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09333364 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09333365 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09333366 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09333367 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09333368 823.56488037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09333369 823.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09333370 823.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09333371 823.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09333372 823.56494141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09333373 823.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09333374 823.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09333375 823.56500244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09333376 823.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09333377 823.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09333378 823.56506348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09333379 823.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09333380 823.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09333381 823.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09333382 823.56512451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09333383 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09333384 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09333385 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09333386 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09333387 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09333388 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09333389 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09333390 823.56518555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09333391 823.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09333392 823.56524658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09333393 823.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09333394 823.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09333395 823.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09333396 823.56530762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09333397 823.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09333398 823.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09333399 823.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09333400 823.56536865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09333401 823.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09333402 823.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09333403 823.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09333404 823.56542969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09333405 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09333406 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09333407 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09333408 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09333409 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09333410 823.56549072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09333411 823.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09333412 823.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09333413 823.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09333414 823.56555176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09333415 823.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09333416 823.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09333417 823.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09333418 823.56561279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09333419 823.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09333420 823.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09333421 823.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09333422 823.56567383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09333423 823.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09333424 823.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09333425 823.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09333426 823.56573486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09333427 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09333428 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09333429 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09333430 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09333431 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09333432 823.56579590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09333433 823.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09333434 823.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09333435 823.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09333436 823.56585693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09333437 823.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09333438 823.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09333439 823.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09333440 823.56591797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09333441 823.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09333442 823.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09333443 823.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09333444 823.56597900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09333445 823.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09333446 823.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09333447 823.56604004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09333448 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09333449 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09333450 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09333451 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09333452 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09333453 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09333454 823.56610107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09333455 823.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09333456 823.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09333457 823.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09333458 823.56616211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09333459 823.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09333460 823.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09333461 823.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09333462 823.56622314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09333463 823.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09333464 823.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09333465 823.56628418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09333466 823.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09333467 823.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09333468 823.56634521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09333469 823.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09333470 823.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09333471 823.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09333472 823.56640625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09333473 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09333474 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09333475 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09333476 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09333477 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09333478 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09333479 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09333480 823.56646729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09333481 823.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09333482 823.56652832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09333483 823.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09333484 823.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09333485 823.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09333486 823.56658936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09333487 823.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09333488 823.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09333489 823.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09333490 823.56665039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09333491 823.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09333492 823.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09333493 823.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09333494 823.56671143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09333495 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09333496 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09333497 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09333498 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09333499 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09333500 823.56677246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09333501 823.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09333502 823.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09333503 823.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09333504 823.56683350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09333505 823.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09333506 823.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09333507 823.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09333508 823.56689453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09333509 823.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09333510 823.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09333511 823.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09333512 823.56695557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09333513 823.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09333514 823.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09333515 823.56701660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09333516 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09333517 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09333518 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09333519 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09333520 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09333521 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09333522 823.56707764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09333523 823.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09333524 823.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09333525 823.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09333526 823.56713867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09333527 823.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09333528 823.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09333529 823.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09333530 823.56719971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09333531 823.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09333532 823.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09333533 823.56726074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09333534 823.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09333535 823.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09333536 823.56732178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09333537 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09333538 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09333539 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09333540 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09333541 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09333542 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09333543 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09333544 823.56738281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09333545 823.56744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09333546 823.56744385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09333547 823.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09333548 823.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09333549 823.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09333550 823.56750488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09333551 823.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09333552 823.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09333553 823.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09333554 823.56756592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09333555 823.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09333556 823.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09333557 823.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09333558 823.56762695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09333559 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09333560 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09333561 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09333562 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09333563 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09333564 823.56768799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09333565 823.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09333566 823.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09333567 823.56774902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09333568 823.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09333569 823.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09333570 823.56781006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09333571 823.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09333572 823.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09333573 823.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09333574 823.56787109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09333575 823.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09333576 823.56793213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09333577 823.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09333578 823.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09333579 823.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09333580 823.56799316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09333581 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09333582 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09333583 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09333584 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09333585 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09333586 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09333587 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09333588 823.56805420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09333589 823.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09333590 823.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09333591 823.56811523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09333592 823.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09333593 823.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09333594 823.56817627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09333595 823.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09333596 823.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09333597 823.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09333598 823.56823730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09333599 823.56829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09333600 823.56829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09333601 823.56829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09333602 823.56829834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09333603 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09333604 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09333605 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09333606 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09333607 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09333608 823.56835938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09333609 823.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09333610 823.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09333611 823.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09333612 823.56842041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09333613 823.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09333614 823.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09333615 823.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09333616 823.56848145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09333617 823.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09333618 823.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09333619 823.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09333620 823.56854248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09333621 823.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09333622 823.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09333623 823.56860352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09333624 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09333625 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09333626 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09333627 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09333628 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09333629 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09333630 823.56866455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09333631 823.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09333632 823.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09333633 823.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09333634 823.56872559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09333635 823.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09333636 823.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09333637 823.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09333638 823.56878662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09333639 823.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09333640 823.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09333641 823.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09333642 823.56884766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09333643 823.56890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09333644 823.56890869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09333645 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09333646 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09333647 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09333648 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09333649 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09333650 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09333651 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09333652 823.56896973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09333653 823.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09333654 823.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09333655 823.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09333656 823.56903076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09333657 823.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09333658 823.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09333659 823.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09333660 823.56909180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09333661 823.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09333662 823.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09333663 823.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09333664 823.56915283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09333665 823.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09333666 823.56921387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09333667 823.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09333668 823.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09333669 823.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09333670 823.56927490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09333671 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09333672 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09333673 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09333674 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09333675 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09333676 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09333677 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09333678 823.56933594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09333679 823.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09333680 823.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09333681 823.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09333682 823.56939697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09333683 823.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09333684 823.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09333685 823.56945801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09333686 823.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09333687 823.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09333688 823.56951904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09333689 823.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09333690 823.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09333691 823.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09333692 823.56958008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09333693 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09333694 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09333695 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09333696 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09333697 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09333698 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09333699 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09333700 823.56964111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09333701 823.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09333702 823.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09333703 823.56970215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09333704 823.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09333705 823.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09333706 823.56976318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09333707 823.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09333708 823.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09333709 823.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09333710 823.56982422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09333711 823.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09333712 823.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09333713 823.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09333714 823.56988525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09333715 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09333716 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09333717 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09333718 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09333719 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09333720 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09333721 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09333722 823.56994629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09333723 823.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09333724 823.57000732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09333725 823.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09333726 823.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09333727 823.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09333728 823.57006836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09333729 823.57012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09333730 823.57012939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09333731 823.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09333732 823.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09333733 823.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09333734 823.57019043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09333735 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09333736 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09333737 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09333738 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09333739 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09333740 823.57025146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09333741 823.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09333742 823.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09333743 823.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09333744 823.57031250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09333745 823.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09333746 823.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09333747 823.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09333748 823.57037354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09333749 823.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09333750 823.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09333751 823.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09333752 823.57043457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09333753 823.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09333754 823.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09333755 823.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09333756 823.57049561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09333757 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09333758 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09333759 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09333760 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09333761 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09333762 823.57055664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09333763 823.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09333764 823.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09333765 823.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09333766 823.57061768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09333767 823.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09333768 823.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09333769 823.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09333770 823.57067871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09333771 823.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09333772 823.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09333773 823.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09333774 823.57073975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09333775 823.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09333776 823.57080078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09333777 823.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09333778 823.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09333779 823.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09333780 823.57086182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09333781 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09333782 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09333783 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09333784 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09333785 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09333786 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09333787 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09333788 823.57092285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09333789 823.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09333790 823.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09333791 823.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09333792 823.57098389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09333793 823.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09333794 823.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09333795 823.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09333796 823.57104492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09333797 823.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09333798 823.57110596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09333799 823.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09333800 823.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09333801 823.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09333802 823.57116699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09333803 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09333804 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09333805 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09333806 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09333807 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09333808 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09333809 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09333810 823.57122803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09333811 823.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09333812 823.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09333813 823.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09333814 823.57128906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09333815 823.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09333816 823.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09333817 823.57135010 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09333818 823.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09333819 823.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09333820 823.57141113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09333821 823.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09333822 823.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09333823 823.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09333824 823.57147217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09333825 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09333826 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09333827 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09333828 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09333829 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09333830 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09333831 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09333832 823.57153320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09333833 823.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09333834 823.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09333835 823.57159424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09333836 823.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09333837 823.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09333838 823.57165527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09333839 823.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09333840 823.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09333841 823.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09333842 823.57171631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09333843 823.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09333844 823.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09333845 823.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09333846 823.57177734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09333847 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09333848 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09333849 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09333850 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09333851 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09333852 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09333853 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09333854 823.57183838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09333855 823.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09333856 823.57189941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09333857 823.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09333858 823.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09333859 823.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09333860 823.57196045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09333861 823.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09333862 823.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09333863 823.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09333864 823.57202148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09333865 823.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09333866 823.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09333867 823.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09333868 823.57208252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09333869 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09333870 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09333871 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09333872 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09333873 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09333874 823.57214355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09333875 823.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09333876 823.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09333877 823.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09333878 823.57220459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09333879 823.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09333880 823.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09333881 823.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09333882 823.57226563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09333883 823.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09333884 823.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09333885 823.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09333886 823.57232666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09333887 823.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09333888 823.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09333889 823.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09333890 823.57238770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09333891 823.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09333892 823.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09333893 823.57244873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09333894 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09333895 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09333896 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09333897 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09333898 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09333899 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09333900 823.57250977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09333901 823.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09333902 823.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09333903 823.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09333904 823.57257080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09333905 823.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09333906 823.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09333907 823.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09333908 823.57263184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09333909 823.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09333910 823.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09333911 823.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09333912 823.57269287 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09333913 823.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09333914 823.57275391 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09333915 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09333916 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09333917 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09333918 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09333919 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09333920 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09333921 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09333922 823.57281494 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09333923 823.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09333924 823.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09333925 823.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09333926 823.57287598 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09333927 823.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09333928 823.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09333929 823.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09333930 823.57293701 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09333931 823.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09333932 823.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09333933 823.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09333934 823.57299805 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09333935 823.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09333936 823.57305908 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09333937 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09333938 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09333939 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09333940 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09333941 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09333942 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09333943 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09333944 823.57312012 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09333945 823.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09333946 823.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09333947 823.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09333948 823.57318115 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09333949 823.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09333950 823.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09333951 823.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09333952 823.57324219 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09333953 823.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09333954 823.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09333955 823.57330322 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09333956 823.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09333957 823.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09333958 823.57336426 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09333959 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09333960 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09333961 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09333962 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09333963 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09333964 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09333965 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09333966 823.57342529 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09333967 823.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09333968 823.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09333969 823.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09333970 823.57348633 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09333971 823.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09333972 823.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09333973 823.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09333974 823.57354736 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09333975 823.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09333976 823.57360840 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09333977 823.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09333978 823.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09333979 823.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09333980 823.57366943 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09333981 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09333982 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09333983 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09333984 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09333985 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09333986 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09333987 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09333988 823.57373047 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09333989 823.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09333990 823.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09333991 823.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09333992 823.57379150 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09333993 823.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09333994 823.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09333995 823.57385254 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09333996 823.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09333997 823.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09333998 823.57391357 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09333999 823.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09334000 823.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09334001 823.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09334002 823.57397461 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09334003 823.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09334004 823.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09334005 823.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09334006 823.57403564 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09334007 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09334008 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09334009 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09334010 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09334011 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09334012 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09334013 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09334014 823.57409668 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09334015 823.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09334016 823.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09334017 823.57415771 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09334018 823.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09334019 823.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09334020 823.57421875 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09334021 823.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09334022 823.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09334023 823.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09334024 823.57427979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09334025 823.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09334026 823.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09334027 823.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09334028 823.57434082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09334029 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09334030 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09334031 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09334032 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09334033 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09334034 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09334035 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09334036 823.57440186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09334037 823.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09334038 823.57446289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09334039 823.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09334040 823.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09334041 823.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09334042 823.57452393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09334043 823.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09334044 823.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09334045 823.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09334046 823.57458496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09334047 823.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09334048 823.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09334049 823.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09334050 823.57464600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09334051 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09334052 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09334053 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09334054 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09334055 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09334056 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09334057 823.57470703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09334058 823.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09334059 823.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09334060 823.57476807 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09334061 823.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09334062 823.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09334063 823.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09334064 823.57482910 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09334065 823.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09334066 823.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09334067 823.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09334068 823.57489014 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09334069 823.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09334070 823.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09334071 823.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09334072 823.57495117 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09334073 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09334074 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09334075 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09334076 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09334077 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09334078 823.57501221 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09334079 823.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09334080 823.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09334081 823.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09334082 823.57507324 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09334083 823.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09334084 823.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09334085 823.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09334086 823.57513428 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09334087 823.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09334088 823.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09334089 823.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09334090 823.57519531 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09334091 823.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09334092 823.57525635 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09334093 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09334094 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09334095 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09334096 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09334097 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09334098 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09334099 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09334100 823.57531738 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09334101 823.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09334102 823.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09334103 823.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09334104 823.57537842 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09334105 823.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09334106 823.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09334107 823.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09334108 823.57543945 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09334109 823.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09334110 823.57550049 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09334111 823.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09334112 823.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09334113 823.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09334114 823.57556152 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09334115 823.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09334116 823.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09334117 823.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09334118 823.57562256 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09334119 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09334120 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09334121 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09334122 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09334123 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09334124 823.57568359 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09334125 823.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09334126 823.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09334127 823.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09334128 823.57574463 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09334129 823.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09334130 823.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09334131 823.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09334132 823.57580566 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09334133 823.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09334134 823.57586670 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09334135 823.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09334136 823.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09334137 823.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09334138 823.57592773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09334139 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09334140 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09334141 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09334142 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09334143 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09334144 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09334145 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09334146 823.57598877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09334147 823.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09334148 823.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09334149 823.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09334150 823.57604980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09334151 823.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09334152 823.57611084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09334153 823.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09334154 823.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09334155 823.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09334156 823.57617188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09334157 823.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09334158 823.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09334159 823.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09334160 823.57623291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09334161 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09334162 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09334163 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09334164 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09334165 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09334166 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09334167 823.57629395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09334168 823.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09334169 823.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09334170 823.57635498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09334171 823.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09334172 823.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09334173 823.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09334174 823.57641602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09334175 823.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09334176 823.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09334177 823.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09334178 823.57647705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09334179 823.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09334180 823.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09334181 823.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09334182 823.57653809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09334183 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09334184 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09334185 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09334186 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09334187 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09334188 823.57659912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09334189 823.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09334190 823.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09334191 823.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09334192 823.57666016 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09334193 823.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09334194 823.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09334195 823.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09334196 823.57672119 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09334197 823.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09334198 823.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09334199 823.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09334200 823.57678223 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09334201 823.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09334202 823.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09334203 823.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09334204 823.57684326 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09334205 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09334206 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09334207 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09334208 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09334209 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09334210 823.57690430 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09334211 823.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09334212 823.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09334213 823.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09334214 823.57696533 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09334215 823.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09334216 823.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09334217 823.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09334218 823.57702637 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09334219 823.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09334220 823.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09334221 823.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09334222 823.57708740 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09334223 823.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09334224 823.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09334225 823.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09334226 823.57714844 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09334227 823.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09334228 823.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09334229 823.57720947 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09334230 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09334231 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09334232 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09334233 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09334234 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09334235 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09334236 823.57727051 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09334237 823.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09334238 823.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09334239 823.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09334240 823.57733154 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09334241 823.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09334242 823.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09334243 823.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09334244 823.57739258 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09334245 823.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09334246 823.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09334247 823.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09334248 823.57745361 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09334249 823.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09334250 823.57751465 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09334251 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09334252 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09334253 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09334254 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09334255 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09334256 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09334257 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09334258 823.57757568 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09334259 823.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09334260 823.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09334261 823.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09334262 823.57763672 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09334263 823.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09334264 823.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09334265 823.57769775 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09334266 823.57775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09334267 823.57775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09334268 823.57775879 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09334269 823.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09334270 823.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09334271 823.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09334272 823.57781982 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09334273 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09334274 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09334275 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09334276 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09334277 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09334278 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09334279 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09334280 823.57788086 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09334281 823.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09334282 823.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09334283 823.57794189 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09334284 823.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09334285 823.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09334286 823.57800293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09334287 823.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09334288 823.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09334289 823.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09334290 823.57806396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09334291 823.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09334292 823.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09334293 823.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09334294 823.57812500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09334295 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09334296 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09334297 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09334298 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09334299 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09334300 823.57818604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09334301 823.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09334302 823.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09334303 823.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09334304 823.57824707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09334305 823.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09334306 823.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09334307 823.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09334308 823.57830811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09334309 823.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09334310 823.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09334311 823.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09334312 823.57836914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09334313 823.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09334314 823.57843018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09334315 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09334316 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09334317 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09334318 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09334319 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09334320 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09334321 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09334322 823.57849121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09334323 823.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09334324 823.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09334325 823.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09334326 823.57855225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09334327 823.57861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09334328 823.57861328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09334329 823.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09334330 823.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09334331 823.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09334332 823.57867432 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09334333 823.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09334334 823.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09334335 823.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09334336 823.57873535 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09334337 823.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09334338 823.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09334339 823.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09334340 823.57879639 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09334341 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09334342 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09334343 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09334344 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09334345 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09334346 823.57885742 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09334347 823.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09334348 823.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09334349 823.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09334350 823.57891846 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09334351 823.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09334352 823.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09334353 823.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09334354 823.57897949 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09334355 823.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09334356 823.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09334357 823.57904053 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09334358 823.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09334359 823.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09334360 823.57910156 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09334361 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09334362 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09334363 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09334364 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09334365 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09334366 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09334367 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09334368 823.57916260 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09334369 823.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09334370 823.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09334371 823.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09334372 823.57922363 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09334373 823.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09334374 823.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09334375 823.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09334376 823.57928467 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09334377 823.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09334378 823.57934570 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09334379 823.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09334380 823.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09334381 823.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09334382 823.57940674 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09334383 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09334384 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09334385 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09334386 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09334387 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09334388 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09334389 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09334390 823.57946777 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09334391 823.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09334392 823.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09334393 823.57952881 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09334394 823.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09334395 823.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09334396 823.57958984 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09334397 823.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09334398 823.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09334399 823.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09334400 823.57965088 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09334401 823.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09334402 823.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09334403 823.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09334404 823.57971191 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09334405 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09334406 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09334407 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09334408 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09334409 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09334410 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09334411 823.57977295 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09334412 823.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09334413 823.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09334414 823.57983398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09334415 823.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09334416 823.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09334417 823.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09334418 823.57989502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09334419 823.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09334420 823.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09334421 823.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09334422 823.57995605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09334423 823.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09334424 823.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09334425 823.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09334426 823.58001709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09334427 823.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09334428 823.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09334429 823.58007813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09334430 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09334431 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09334432 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09334433 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09334434 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09334435 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09334436 823.58013916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09334437 823.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09334438 823.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09334439 823.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09334440 823.58020020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09334441 823.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09334442 823.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09334443 823.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09334444 823.58026123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09334445 823.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09334446 823.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09334447 823.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09334448 823.58032227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09334449 823.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09334450 823.58038330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09334451 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09334452 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09334453 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09334454 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09334455 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09334456 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09334457 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09334458 823.58044434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09334459 823.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09334460 823.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09334461 823.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09334462 823.58050537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09334463 823.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09334464 823.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09334465 823.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09334466 823.58056641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09334467 823.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09334468 823.58062744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09334469 823.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09334470 823.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09334471 823.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09334472 823.58068848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09334473 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09334474 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09334475 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09334476 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09334477 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09334478 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09334479 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09334480 823.58074951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09334481 823.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09334482 823.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09334483 823.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09334484 823.58081055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09334485 823.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09334486 823.58087158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09334487 823.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09334488 823.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09334489 823.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09334490 823.58093262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09334491 823.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09334492 823.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09334493 823.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09334494 823.58099365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09334495 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09334496 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09334497 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09334498 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09334499 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09334500 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09334501 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09334502 823.58105469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09334503 823.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09334504 823.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09334505 823.58111572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09334506 823.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09334507 823.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09334508 823.58117676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09334509 823.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09334510 823.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09334511 823.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09334512 823.58123779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09334513 823.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09334514 823.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09334515 823.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09334516 823.58129883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09334517 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09334518 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09334519 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09334520 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09334521 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09334522 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09334523 823.58135986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09334524 823.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09334525 823.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09334526 823.58142090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09334527 823.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09334528 823.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09334529 823.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09334530 823.58148193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09334531 823.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09334532 823.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09334533 823.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09334534 823.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09334535 823.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09334536 823.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09334537 823.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09334538 823.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09334539 823.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09334540 823.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09334541 823.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09334542 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09334543 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09334544 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09334545 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09334546 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09334547 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09334548 823.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09334549 823.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09334550 823.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09334551 823.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09334552 823.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09334553 823.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09334554 823.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09334555 823.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09334556 823.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09334557 823.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09334558 823.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09334559 823.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09334560 823.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09334561 823.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09334562 823.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09334563 823.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09334564 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09334565 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09334566 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09334567 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09334568 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09334569 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09334570 823.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09334571 823.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09334572 823.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09334573 823.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09334574 823.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09334575 823.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09334576 823.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09334577 823.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09334578 823.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09334579 823.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09334580 823.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09334581 823.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09334582 823.58221436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09334583 823.58227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09334584 823.58227539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09334585 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09334586 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09334587 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09334588 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09334589 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09334590 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09334591 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09334592 823.58233643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09334593 823.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09334594 823.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09334595 823.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09334596 823.58239746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09334597 823.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09334598 823.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09334599 823.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09334600 823.58245850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09334601 823.58251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09334602 823.58251953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09334603 823.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09334604 823.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09334605 823.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09334606 823.58258057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09334607 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09334608 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09334609 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09334610 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09334611 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09334612 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09334613 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09334614 823.58264160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09334615 823.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09334616 823.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09334617 823.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09334618 823.58270264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09334619 823.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09334620 823.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09334621 823.58276367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09334622 823.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09334623 823.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09334624 823.58282471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09334625 823.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09334626 823.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09334627 823.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09334628 823.58288574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09334629 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09334630 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09334631 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09334632 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09334633 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09334634 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09334635 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09334636 823.58294678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09334637 823.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09334638 823.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09334639 823.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09334640 823.58300781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09334641 823.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09334642 823.58306885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09334643 823.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09334644 823.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09334645 823.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09334646 823.58312988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09334647 823.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09334648 823.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09334649 823.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09334650 823.58319092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09334651 823.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09334652 823.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09334653 823.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09334654 823.58325195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09334655 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09334656 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09334657 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09334658 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09334659 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09334660 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09334661 823.58331299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09334662 823.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09334663 823.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09334664 823.58337402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09334665 823.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09334666 823.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09334667 823.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09334668 823.58343506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09334669 823.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09334670 823.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09334671 823.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09334672 823.58349609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09334673 823.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09334674 823.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09334675 823.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09334676 823.58355713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09334677 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09334678 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09334679 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09334680 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09334681 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09334682 823.58361816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09334683 823.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09334684 823.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09334685 823.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09334686 823.58367920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09334687 823.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09334688 823.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09334689 823.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09334690 823.58374023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09334691 823.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09334692 823.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09334693 823.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09334694 823.58380127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09334695 823.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09334696 823.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09334697 823.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09334698 823.58386230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09334699 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09334700 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09334701 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09334702 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09334703 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09334704 823.58392334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09334705 823.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09334706 823.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09334707 823.58398438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09334708 823.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09334709 823.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09334710 823.58404541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09334711 823.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09334712 823.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09334713 823.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09334714 823.58410645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09334715 823.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09334716 823.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09334717 823.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09334718 823.58416748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09334719 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09334720 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09334721 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09334722 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09334723 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09334724 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09334725 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09334726 823.58422852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09334727 823.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09334728 823.58428955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09334729 823.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09334730 823.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09334731 823.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09334732 823.58435059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09334733 823.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09334734 823.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09334735 823.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09334736 823.58441162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09334737 823.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09334738 823.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09334739 823.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09334740 823.58447266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09334741 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09334742 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09334743 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09334744 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09334745 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09334746 823.58453369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09334747 823.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09334748 823.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09334749 823.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09334750 823.58459473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09334751 823.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09334752 823.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09334753 823.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09334754 823.58465576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09334755 823.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09334756 823.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09334757 823.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09334758 823.58471680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09334759 823.58477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09334760 823.58477783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09334761 823.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09334762 823.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09334763 823.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09334764 823.58483887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09334765 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09334766 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09334767 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09334768 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09334769 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09334770 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09334771 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09334772 823.58489990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09334773 823.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09334774 823.58496094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09334775 823.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09334776 823.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09334777 823.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09334778 823.58502197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09334779 823.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09334780 823.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09334781 823.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09334782 823.58508301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09334783 823.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09334784 823.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09334785 823.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09334786 823.58514404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09334787 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09334788 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09334789 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09334790 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09334791 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09334792 823.58520508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09334793 823.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09334794 823.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09334795 823.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09334796 823.58526611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09334797 823.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09334798 823.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09334799 823.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09334800 823.58532715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09334801 823.58538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09334802 823.58538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09334803 823.58538818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09334804 823.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09334805 823.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09334806 823.58544922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09334807 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09334808 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09334809 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09334810 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09334811 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09334812 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09334813 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09334814 823.58551025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09334815 823.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09334816 823.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09334817 823.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09334818 823.58557129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09334819 823.58563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09334820 823.58563232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09334821 823.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09334822 823.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09334823 823.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09334824 823.58569336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09334825 823.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09334826 823.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09334827 823.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09334828 823.58575439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09334829 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09334830 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09334831 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09334832 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09334833 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09334834 823.58581543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09334835 823.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09334836 823.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09334837 823.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09334838 823.58587646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09334839 823.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09334840 823.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09334841 823.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09334842 823.58593750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09334843 823.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09334844 823.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09334845 823.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09334846 823.58599854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09334847 823.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09334848 823.58605957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09334849 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09334850 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09334851 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09334852 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09334853 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09334854 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09334855 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09334856 823.58612061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09334857 823.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09334858 823.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09334859 823.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09334860 823.58618164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09334861 823.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09334862 823.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09334863 823.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09334864 823.58624268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09334865 823.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09334866 823.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09334867 823.58630371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09334868 823.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09334869 823.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09334870 823.58636475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09334871 823.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09334872 823.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09334873 823.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09334874 823.58642578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09334875 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09334876 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09334877 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09334878 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09334879 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09334880 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09334881 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09334882 823.58648682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09334883 823.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09334884 823.58654785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09334885 823.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09334886 823.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09334887 823.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09334888 823.58660889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09334889 823.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09334890 823.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09334891 823.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09334892 823.58666992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09334893 823.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09334894 823.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09334895 823.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09334896 823.58673096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09334897 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09334898 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09334899 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09334900 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09334901 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09334902 823.58679199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09334903 823.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09334904 823.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09334905 823.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09334906 823.58685303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09334907 823.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09334908 823.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09334909 823.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09334910 823.58691406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09334911 823.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09334912 823.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09334913 823.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09334914 823.58697510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09334915 823.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09334916 823.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09334917 823.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09334918 823.58703613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09334919 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09334920 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09334921 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09334922 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09334923 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09334924 823.58709717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09334925 823.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09334926 823.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09334927 823.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09334928 823.58715820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09334929 823.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09334930 823.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09334931 823.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09334932 823.58721924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09334933 823.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09334934 823.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09334935 823.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09334936 823.58728027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09334937 823.58734131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09334938 823.58734131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09334939 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09334940 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09334941 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -09334942 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -09334943 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -09334944 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -09334945 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -09334946 823.58740234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -09334947 823.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -09334948 823.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -09334949 823.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -09334950 823.58746338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -09334951 823.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -09334952 823.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -09334953 823.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -09334954 823.58752441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -09334955 823.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -09334956 823.58758545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -09334957 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -09334958 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -09334959 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -09334960 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -09334961 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -09334962 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -09334963 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -09334964 823.58770752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -09334965 823.58776855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -09334966 823.58776855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -09334967 823.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -09334968 823.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -09334969 823.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -09334970 823.58782959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -09334971 823.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -09334972 823.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -09334973 823.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -09334974 823.58789063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -09334975 823.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -09334976 823.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -09334977 823.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -09334978 823.58795166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -09334979 823.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -09334980 823.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -09334981 823.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -09334982 823.58801270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -09334983 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -09334984 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -09334985 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -09334986 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -09334987 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -09334988 823.58807373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -09334989 823.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -09334990 823.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -09334991 823.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -09334992 823.58813477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -09334993 823.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -09334994 823.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -09334995 823.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -09334996 823.58819580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -09334997 823.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -09334998 823.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -09334999 823.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -09335000 823.58825684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -09335001 823.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -09335002 823.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -09335003 823.58831787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -09335004 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -09335005 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -09335006 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -09335007 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -09335008 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -09335009 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -09335010 823.58837891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -09335011 823.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -09335012 823.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -09335013 823.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -09335014 823.58843994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -09335015 823.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -09335016 823.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -09335017 823.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -09335018 823.58850098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -09335019 823.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -09335020 823.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -09335021 823.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -09335022 823.58856201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -09335023 823.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -09335024 823.58862305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -09335025 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -09335026 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -09335027 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -09335028 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -09335029 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -09335030 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -09335031 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -09335032 823.58868408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -09335033 823.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -09335034 823.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -09335035 823.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -09335036 823.58874512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -09335037 823.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -09335038 823.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -09335039 823.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -09335040 823.58880615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -09335041 823.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -09335042 823.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -09335043 823.58886719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -09335044 823.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -09335045 823.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -09335046 823.58892822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -09335047 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -09335048 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -09335049 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -09335050 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -09335051 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -09335052 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -09335053 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -09335054 823.58898926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -09335055 823.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -09335056 823.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -09335057 823.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -09335058 823.58905029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -09335059 823.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -09335060 823.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -09335061 823.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -09335062 823.58911133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -09335063 823.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -09335064 823.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -09335065 823.58917236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -09335066 823.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -09335067 823.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -09335068 823.58923340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -09335069 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -09335070 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -09335071 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -09335072 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -09335073 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -09335074 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -09335075 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -09335076 823.58929443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -09335077 823.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -09335078 823.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -09335079 823.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -09335080 823.58935547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -09335081 823.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -09335082 823.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -09335083 823.58941650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -09335084 823.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -09335085 823.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -09335086 823.58947754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -09335087 823.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -09335088 823.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -09335089 823.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -09335090 823.58953857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -09335091 823.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -09335092 823.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -09335093 823.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -09335094 823.58959961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -09335095 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -09335096 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -09335097 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -09335098 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -09335099 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -09335100 823.58966064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -09335101 823.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -09335102 823.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -09335103 823.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -09335104 823.58972168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -09335105 823.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -09335106 823.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -09335107 823.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -09335108 823.58978271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -09335109 823.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -09335110 823.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -09335111 823.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -09335112 823.58984375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -09335113 823.58990479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -09335114 823.58990479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -09335115 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -09335116 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -09335117 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -09335118 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -09335119 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -09335120 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -09335121 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -09335122 823.58996582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -09335123 823.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -09335124 823.59002686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -09335125 823.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -09335126 823.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -09335127 823.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -09335128 823.59008789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -09335129 823.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -09335130 823.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -09335131 823.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -09335132 823.59014893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -09335133 823.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -09335134 823.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -09335135 823.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -09335136 823.59020996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -09335137 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -09335138 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -09335139 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -09335140 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -09335141 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -09335142 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -09335143 823.59027100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -09335144 823.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -09335145 823.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -09335146 823.59033203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -09335147 823.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -09335148 823.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -09335149 823.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -09335150 823.59039307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -09335151 823.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -09335152 823.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -09335153 823.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -09335154 823.59045410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -09335155 823.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -09335156 823.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -09335157 823.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -09335158 823.59051514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -09335159 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -09335160 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -09335161 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -09335162 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -09335163 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -09335164 823.59057617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -09335165 823.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -09335166 823.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -09335167 823.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -09335168 823.59063721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -09335169 823.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -09335170 823.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -09335171 823.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -09335172 823.59069824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -09335173 823.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -09335174 823.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -09335175 823.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -09335176 823.59075928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -09338506 823.63842773 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7f8 -09338507 823.63848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe808 -09338508 823.63848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe808 -09338509 823.63848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe818 -09338510 823.63848877 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe818 -09338511 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe828 -09338512 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe828 -09338513 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe838 -09338514 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe838 -09338515 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe848 -09338516 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe848 -09338517 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -09338518 823.63854980 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe858 -09338519 823.63861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -09338520 823.63861084 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe868 -09338521 823.63867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -09338522 823.63867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe878 -09338523 823.63867188 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -09338524 823.63873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe888 -09338525 823.63873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -09338526 823.63873291 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe898 -09338527 823.63879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -09338528 823.63879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8a8 -09338529 823.63879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -09338530 823.63879395 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8b8 -09338531 823.63885498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -09338532 823.63885498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8c8 -09338533 823.63885498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -09338534 823.63885498 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8d8 -09338535 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -09338536 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8e8 -09338537 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -09338538 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe8f8 -09338539 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -09338540 823.63891602 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe908 -09338541 823.63897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -09338542 823.63897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe918 -09338543 823.63897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -09338544 823.63897705 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe928 -09338545 823.63903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -09338546 823.63903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe938 -09338547 823.63903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -09338548 823.63903809 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe948 -09338549 823.63909912 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe958 -09342115 823.68988037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -09342116 823.68988037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158c8 -09342117 823.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -09342118 823.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158d8 -09342119 823.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -09342120 823.68994141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158e8 -09342121 823.69000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -09342122 823.69000244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x158f8 -09342123 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -09342124 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15908 -09342125 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -09342126 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15918 -09342127 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -09342128 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15928 -09342129 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15938 -09342130 823.69006348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15938 -09342131 823.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -09342132 823.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15948 -09342133 823.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -09342134 823.69012451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15958 -09342135 823.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -09342136 823.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15968 -09342137 823.69018555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -09342138 823.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15978 -09342139 823.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -09342140 823.69024658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15988 -09342141 823.69030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -09342142 823.69030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15998 -09342143 823.69030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -09342144 823.69030762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159a8 -09342145 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -09342146 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159b8 -09342147 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -09342148 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -09342149 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -09342150 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -09342151 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -09342152 823.69036865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -09342153 823.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -09342154 823.69042969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -09342155 823.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -09342156 823.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -09342157 823.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -09342158 823.69049072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -09359049 823.93347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f8 -09359050 823.93347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x369f8 -09359051 823.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a08 -09359052 823.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a08 -09359053 823.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a18 -09359054 823.93353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a18 -09359055 823.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a28 -09359056 823.93359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a28 -09359057 823.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a38 -09359058 823.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a38 -09359059 823.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a48 -09359060 823.93365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a48 -09359061 823.93371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a58 -09359062 823.93371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a58 -09359063 823.93371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a68 -09359064 823.93371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a68 -09359065 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a78 -09359066 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a78 -09359067 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a88 -09359068 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a88 -09359069 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a98 -09359070 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a98 -09359071 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa8 -09359072 823.93377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36aa8 -09359073 823.93383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab8 -09359074 823.93383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ab8 -09359075 823.93383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac8 -09359076 823.93389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ac8 -09359077 823.93389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad8 -09359078 823.93389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ad8 -09359079 823.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae8 -09359080 823.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36ae8 -09359081 823.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af8 -09359082 823.93395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36af8 -09359083 823.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b08 -09359084 823.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b08 -09359085 823.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b18 -09359086 823.93402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b18 -09359087 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b28 -09359088 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b28 -09359089 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b38 -09359090 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b38 -09359091 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b48 -09359092 823.93408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b48 -09363075 823.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c8 -09363076 823.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c8 -09363077 823.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d8 -09363078 823.99340820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d8 -09363079 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e8 -09363080 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e8 -09363081 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f8 -09363082 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f8 -09363083 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e808 -09363084 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e808 -09363085 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e818 -09363086 823.99346924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e818 -09363087 823.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -09363088 823.99353027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -09363089 823.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -09363090 823.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -09363091 823.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -09363092 823.99359131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -09363093 823.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -09363094 823.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -09363095 823.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -09363096 823.99365234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -09363097 823.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -09363098 823.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -09363099 823.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -09363100 823.99371338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -09363101 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -09363102 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -09363103 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a8 -09363104 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8a8 -09363105 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b8 -09363106 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8b8 -09363107 823.99377441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c8 -09363108 823.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8c8 -09363109 823.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d8 -09363110 823.99383545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8d8 -09363111 823.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e8 -09363112 823.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8e8 -09363113 823.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f8 -09363114 823.99389648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e8f8 -09363115 823.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e908 -09363116 823.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e908 -09363117 823.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e918 -09363118 823.99395752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e918 -09367135 824.05352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -09367136 824.05352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -09367137 824.05352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -09367138 824.05352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -09367139 824.05352783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -09367140 824.05358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -09367141 824.05358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -09367142 824.05358887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -09367143 824.05364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -09367144 824.05364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -09367145 824.05364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -09367146 824.05364990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -09367147 824.05371094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -09367148 824.05371094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -09367149 824.05371094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46718 -09367150 824.05371094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46718 -09367151 824.05377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46728 -09367152 824.05377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46728 -09367153 824.05377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46738 -09367154 824.05377197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46738 -09367155 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46748 -09367156 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46748 -09367157 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46758 -09367158 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46758 -09367159 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46768 -09367160 824.05383301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46768 -09367161 824.05389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46778 -09367162 824.05389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46778 -09367163 824.05389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46788 -09367164 824.05389404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46788 -09367165 824.05395508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46798 -09367166 824.05395508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46798 -09367167 824.05395508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a8 -09367168 824.05395508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467a8 -09367169 824.05401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b8 -09367170 824.05401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467b8 -09367171 824.05401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c8 -09367172 824.05401611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467c8 -09367173 824.05407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d8 -09367174 824.05407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467d8 -09367175 824.05407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e8 -09367176 824.05407715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467e8 -09367177 824.05413818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f8 -09367178 824.05413818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x467f8 -09370485 824.10150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf58 -09370486 824.10150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf58 -09370487 824.10150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf68 -09370488 824.10150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf68 -09370489 824.10156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf78 -09370490 824.10156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf78 -09370491 824.10156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf88 -09370492 824.10156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf88 -09370493 824.10162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf98 -09370494 824.10162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf98 -09370495 824.10162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa8 -09370496 824.10162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfa8 -09370497 824.10168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -09370498 824.10168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfb8 -09370499 824.10168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc8 -09370500 824.10168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfc8 -09370501 824.10174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd8 -09370502 824.10174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfd8 -09370503 824.10174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe8 -09370504 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cfe8 -09370505 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff8 -09370506 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cff8 -09370507 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d008 -09370508 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d008 -09370509 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d018 -09370510 824.10180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d018 -09370511 824.10186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d028 -09370512 824.10186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d028 -09370513 824.10186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d038 -09370514 824.10186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d038 -09370515 824.10192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d048 -09370516 824.10192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d048 -09370517 824.10192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d058 -09370518 824.10192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d058 -09370519 824.10198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d068 -09370520 824.10198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d068 -09370521 824.10198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d078 -09370522 824.10205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d078 -09370523 824.10205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d088 -09370524 824.10205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d088 -09370525 824.10211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d098 -09370526 824.10211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d098 -09370527 824.10211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a8 -09370528 824.10211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d0a8 -09373489 825.52697754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09373490 825.54693604 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373491 825.54693604 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373492 825.78210449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373493 825.78216553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373494 825.78216553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373495 825.78216553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09373496 825.78234863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373497 825.78234863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09373498 825.78234863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373499 825.78234863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09373500 827.54919434 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09373501 827.57043457 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373502 827.57043457 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373503 828.28869629 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373504 828.28875732 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373505 828.28875732 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09373506 828.28881836 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09373507 828.28894043 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373508 828.28894043 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09373509 828.28900146 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09373510 828.28900146 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09373511 829.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09373512 829.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09373513 829.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09373514 829.14538574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09373515 829.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09373516 829.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09373517 829.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09373518 829.14544678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09373519 829.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09373520 829.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09373521 829.14550781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09373522 829.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09373523 829.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09373524 829.14556885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09373525 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09373526 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09373527 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09373528 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09373529 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09373530 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09373531 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09373532 829.14562988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09373533 829.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09373534 829.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09373535 829.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09373536 829.14569092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09373537 829.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09373538 829.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09373539 829.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09373540 829.14575195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09373541 829.14581299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09373542 829.14581299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09373543 829.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09373544 829.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09373545 829.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09373546 829.14587402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09373547 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09373548 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09373549 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09373550 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09373551 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09373552 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09373553 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09373554 829.14593506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09373555 829.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09373556 829.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09373557 829.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09373558 829.14599609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09373559 829.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09373560 829.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09373561 829.14605713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09373562 829.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09373563 829.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09373564 829.14611816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09373565 829.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09373566 829.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09373567 829.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09373568 829.14617920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09373569 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09373570 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09373571 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09373572 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09373573 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09373574 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09373575 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09373576 829.14624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09373577 829.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09373578 829.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09373579 829.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09373580 829.14630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09373581 829.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09373582 829.14636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09373583 829.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09373584 829.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09373585 829.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09373586 829.14642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09373587 829.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09373588 829.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09373589 829.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09373590 829.14648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09373591 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09373592 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09373593 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09373594 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09373595 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09373596 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09373597 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09373598 829.14654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09373599 829.14660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09373600 829.14660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09373601 829.14660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09373602 829.14666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09373603 829.14666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09373604 829.14666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09373605 829.14672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09373606 829.14672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09373607 829.14672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09373608 829.14672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09373609 829.14678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09373610 829.14678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09373611 829.14678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09373612 829.14678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09373613 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09373614 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09373615 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09373616 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09373617 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09373618 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09373619 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09373620 829.14685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09373621 829.14691162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09373622 829.14691162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09373623 829.14697266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09373624 829.14697266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09373625 829.14697266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09373626 829.14697266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09373627 829.14703369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09373628 829.14703369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09373629 829.14703369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09373630 829.14703369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09373631 829.14709473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09373632 829.14709473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09373633 829.14709473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09373634 829.14709473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09373635 829.14715576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09373636 829.14715576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09373637 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09373638 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09373639 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09373640 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09373641 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09373642 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09373643 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09373644 829.14721680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09373645 829.14727783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09373646 829.14727783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09373647 829.14727783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09373648 829.14733887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09373649 829.14733887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09373650 829.14733887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09373651 829.14739990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09373652 829.14739990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09373653 829.14739990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09373654 829.14739990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09373655 829.14746094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09373656 829.14746094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09373657 829.14746094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09373658 829.14746094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09373659 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09373660 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09373661 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09373662 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09373663 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09373664 829.14752197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09373665 829.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09373666 829.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09373667 829.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09373668 829.14758301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09373669 829.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09373670 829.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09373671 829.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09373672 829.14764404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09373673 829.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09373674 829.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09373675 829.14770508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09373676 829.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09373677 829.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09373678 829.14776611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09373679 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09373680 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09373681 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09373682 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09373683 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09373684 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09373685 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09373686 829.14782715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09373687 829.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09373688 829.14788818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09373689 829.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09373690 829.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09373691 829.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09373692 829.14794922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09373693 829.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09373694 829.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09373695 829.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09373696 829.14801025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09373697 829.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09373698 829.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09373699 829.14807129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09373700 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09373701 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09373702 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09373703 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09373704 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09373705 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09373706 829.14813232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09373707 829.14819336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09373708 829.14819336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09373709 829.14819336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09373710 829.14819336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09373711 829.14825439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09373712 829.14825439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09373713 829.14825439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09373714 829.14825439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09373715 829.14831543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09373716 829.14831543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09373717 829.14837646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09373718 829.14837646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09373719 829.14837646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09373720 829.14837646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09373721 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09373722 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09373723 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09373724 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09373725 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09373726 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09373727 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09373728 829.14843750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09373729 829.14849854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09373730 829.14849854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09373731 829.14855957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09373732 829.14855957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09373733 829.14855957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09373734 829.14855957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09373735 829.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09373736 829.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09373737 829.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09373738 829.14862061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09373739 829.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09373740 829.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09373741 829.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09373742 829.14868164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09373743 829.14874268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09373744 829.14874268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09373745 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09373746 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09373747 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09373748 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09373749 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09373750 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09373751 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09373752 829.14880371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09373753 829.14886475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09373754 829.14886475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09373755 829.14886475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09373756 829.14886475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09373757 829.14892578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09373758 829.14892578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09373759 829.14898682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09373760 829.14898682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09373761 829.14898682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09373762 829.14898682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09373763 829.14904785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09373764 829.14904785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09373765 829.14904785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09373766 829.14904785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09373767 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09373768 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09373769 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09373770 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09373771 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09373772 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09373773 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09373774 829.14910889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09373775 829.14916992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09373776 829.14916992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09373777 829.14923096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09373778 829.14923096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09373779 829.14923096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09373780 829.14923096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09373781 829.14929199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09373782 829.14929199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09373783 829.14929199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09373784 829.14929199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09373785 829.14935303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09373786 829.14935303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09373787 829.14935303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09373788 829.14935303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09373789 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09373790 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09373791 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09373792 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09373793 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09373794 829.14941406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09373795 829.14947510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09373796 829.14947510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09373797 829.14947510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09373798 829.14947510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09373799 829.14953613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09373800 829.14953613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09373801 829.14953613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09373802 829.14953613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09373803 829.14959717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09373804 829.14959717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09373805 829.14959717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09373806 829.14959717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09373807 829.14965820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09373808 829.14965820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09373809 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09373810 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09373811 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09373812 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09373813 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09373814 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09373815 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09373816 829.14971924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09373817 829.14978027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09373818 829.14978027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09373819 829.14978027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09373820 829.14978027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09373821 829.14984131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09373822 829.14984131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09373823 829.14984131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09373824 829.14984131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09373825 829.14990234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09373826 829.14990234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09373827 829.14996338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09373828 829.14996338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09373829 829.14996338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09373830 829.14996338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09373831 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09373832 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09373833 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09373834 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09373835 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09373836 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09373837 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09373838 829.15002441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09373839 829.15008545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09373840 829.15008545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09373841 829.15008545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09373842 829.15008545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09373843 829.15014648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09373844 829.15014648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09373845 829.15020752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09373846 829.15020752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09373847 829.15020752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09373848 829.15020752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09373849 829.15026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09373850 829.15026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09373851 829.15026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09373852 829.15026855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09373853 829.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09373854 829.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09373855 829.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09373856 829.15032959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09373857 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09373858 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09373859 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09373860 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09373861 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09373862 829.15039063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09373863 829.15045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09373864 829.15045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09373865 829.15045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09373866 829.15045166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09373867 829.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09373868 829.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09373869 829.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09373870 829.15051270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09373871 829.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09373872 829.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09373873 829.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09373874 829.15057373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09373875 829.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09373876 829.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09373877 829.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09373878 829.15063477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09373879 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09373880 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09373881 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09373882 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09373883 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09373884 829.15069580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09373885 829.15075684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09373886 829.15075684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09373887 829.15075684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09373888 829.15075684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09373889 829.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09373890 829.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09373891 829.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09373892 829.15081787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09373893 829.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09373894 829.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09373895 829.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09373896 829.15087891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09373897 829.15093994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09373898 829.15093994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09373899 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09373900 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09373901 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09373902 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09373903 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09373904 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09373905 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09373906 829.15100098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09373907 829.15106201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09373908 829.15106201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09373909 829.15106201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09373910 829.15106201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09373911 829.15112305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09373912 829.15112305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09373913 829.15112305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09373914 829.15112305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09373915 829.15118408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09373916 829.15118408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09373917 829.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09373918 829.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09373919 829.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09373920 829.15124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09373921 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09373922 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09373923 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09373924 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09373925 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09373926 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09373927 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09373928 829.15130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09373929 829.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09373930 829.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09373931 829.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09373932 829.15136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09373933 829.15142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09373934 829.15142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09373935 829.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09373936 829.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09373937 829.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09373938 829.15148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09373939 829.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09373940 829.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09373941 829.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09373942 829.15155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09373943 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09373944 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09373945 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09373946 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09373947 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09373948 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09373949 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09373950 829.15161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09373951 829.15167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09373952 829.15167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09373953 829.15167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09373954 829.15173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09373955 829.15173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09373956 829.15173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09373957 829.15179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09373958 829.15179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09373959 829.15179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09373960 829.15179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09373961 829.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09373962 829.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09373963 829.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09373964 829.15185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09373965 829.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09373966 829.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09373967 829.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09373968 829.15191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09373969 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09373970 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09373971 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09373972 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09373973 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09373974 829.15197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09373975 829.15203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09373976 829.15203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09373977 829.15203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09373978 829.15203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09373979 829.15209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09373980 829.15209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09373981 829.15209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09373982 829.15209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09373983 829.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09373984 829.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09373985 829.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09373986 829.15216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09373987 829.15222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09373988 829.15222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09373989 829.15222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09373990 829.15222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09373991 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09373992 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09373993 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09373994 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09373995 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09373996 829.15228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09373997 829.15234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09373998 829.15234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09373999 829.15234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09374000 829.15234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09374001 829.15240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09374002 829.15240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09374003 829.15240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09374004 829.15240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09374005 829.15246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09374006 829.15246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09374007 829.15252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09374008 829.15252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09374009 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09374010 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09374011 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09374012 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09374013 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09374014 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09374015 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09374016 829.15258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09374017 829.15264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09374018 829.15264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09374019 829.15264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09374020 829.15264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09374021 829.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09374022 829.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09374023 829.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09374024 829.15270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09374025 829.15277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09374026 829.15277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09374027 829.15283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09374028 829.15283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09374029 829.15283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09374030 829.15283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09374031 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09374032 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09374033 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09374034 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09374035 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09374036 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09374037 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09374038 829.15289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09374039 829.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09374040 829.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09374041 829.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09374042 829.15295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09374043 829.15301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09374044 829.15301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09374045 829.15307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09374046 829.15307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09374047 829.15307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09374048 829.15307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09374049 829.15313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09374050 829.15313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09374051 829.15313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09374052 829.15313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09374053 829.15319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09374054 829.15319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09374055 829.15319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09374056 829.15319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09374057 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09374058 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09374059 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09374060 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09374061 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09374062 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09374063 829.15325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09374064 829.15332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09374065 829.15332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09374066 829.15332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09374067 829.15338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09374068 829.15338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09374069 829.15338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09374070 829.15338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09374071 829.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09374072 829.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09374073 829.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09374074 829.15344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09374075 829.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09374076 829.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09374077 829.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09374078 829.15350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09374079 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09374080 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09374081 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09374082 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09374083 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09374084 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09374085 829.15356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09374086 829.15362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09374087 829.15362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09374088 829.15362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09374089 829.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09374090 829.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09374091 829.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09374092 829.15368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09374093 829.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09374094 829.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09374095 829.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09374096 829.15374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09374097 829.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09374098 829.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09374099 829.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09374100 829.15380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09374101 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09374102 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09374103 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09374104 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09374105 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09374106 829.15386963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09374107 829.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09374108 829.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09374109 829.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09374110 829.15393066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09374111 829.15399170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09374112 829.15399170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09374113 829.15399170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09374114 829.15399170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09374115 829.15405273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09374116 829.15405273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09374117 829.15405273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09374118 829.15405273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09374119 829.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09374120 829.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09374121 829.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09374122 829.15411377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09374123 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09374124 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09374125 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09374126 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09374127 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09374128 829.15417480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09374129 829.15423584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09374130 829.15423584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09374131 829.15423584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09374132 829.15423584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09374133 829.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09374134 829.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09374135 829.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09374136 829.15429688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09374137 829.15435791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09374138 829.15435791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09374139 829.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09374140 829.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09374141 829.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09374142 829.15441895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09374143 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09374144 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09374145 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09374146 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09374147 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09374148 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09374149 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09374150 829.15447998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09374151 829.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09374152 829.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09374153 829.15454102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09374154 829.15460205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09374155 829.15460205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09374156 829.15460205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09374157 829.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09374158 829.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09374159 829.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09374160 829.15466309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09374161 829.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09374162 829.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09374163 829.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09374164 829.15472412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09374165 829.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09374166 829.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09374167 829.15478516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09374168 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09374169 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09374170 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09374171 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09374172 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09374173 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09374174 829.15484619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09374175 829.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09374176 829.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09374177 829.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09374178 829.15490723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09374179 829.15496826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09374180 829.15496826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09374181 829.15496826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09374182 829.15496826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09374183 829.15502930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09374184 829.15502930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09374185 829.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09374186 829.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09374187 829.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09374188 829.15509033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09374189 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09374190 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09374191 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09374192 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09374193 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09374194 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09374195 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09374196 829.15515137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09374197 829.15521240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09374198 829.15521240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09374199 829.15527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09374200 829.15527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09374201 829.15527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09374202 829.15527344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09374203 829.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09374204 829.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09374205 829.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09374206 829.15533447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09374207 829.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09374208 829.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09374209 829.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09374210 829.15539551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09374211 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09374212 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09374213 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09374214 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09374215 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09374216 829.15545654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09374217 829.15551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09374218 829.15551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09374219 829.15551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09374220 829.15551758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09374221 829.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09374222 829.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09374223 829.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09374224 829.15557861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09374225 829.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09374226 829.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09374227 829.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09374228 829.15563965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09374229 829.15570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09374230 829.15570068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09374231 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09374232 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09374233 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09374234 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09374235 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09374236 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09374237 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09374238 829.15576172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09374239 829.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09374240 829.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09374241 829.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09374242 829.15582275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09374243 829.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09374244 829.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09374245 829.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09374246 829.15588379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09374247 829.15594482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09374248 829.15594482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09374249 829.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09374250 829.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09374251 829.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09374252 829.15600586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09374253 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09374254 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09374255 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09374256 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09374257 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09374258 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09374259 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09374260 829.15606689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09374261 829.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09374262 829.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09374263 829.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09374264 829.15612793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09374265 829.15618896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09374266 829.15618896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09374267 829.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09374268 829.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09374269 829.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09374270 829.15625000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09374271 829.15631104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09374272 829.15631104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09374273 829.15631104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09374274 829.15631104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09374275 829.15637207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09374276 829.15637207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09374277 829.15637207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09374278 829.15637207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09374279 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09374280 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09374281 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09374282 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09374283 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09374284 829.15643311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09374285 829.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09374286 829.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09374287 829.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09374288 829.15649414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09374289 829.15655518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09374290 829.15655518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09374291 829.15655518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09374292 829.15655518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09374293 829.15661621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09374294 829.15661621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09374295 829.15661621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09374296 829.15661621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09374297 829.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09374298 829.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09374299 829.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09374300 829.15667725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09374301 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09374302 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09374303 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09374304 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09374305 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09374306 829.15673828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09374307 829.15679932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09374308 829.15679932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09374309 829.15679932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09374310 829.15679932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09374311 829.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09374312 829.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09374313 829.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09374314 829.15686035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09374315 829.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09374316 829.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09374317 829.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09374318 829.15692139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09374319 829.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09374320 829.15698242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09374321 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09374322 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09374323 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09374324 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09374325 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09374326 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09374327 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09374328 829.15704346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09374329 829.15710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09374330 829.15710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09374331 829.15710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09374332 829.15710449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09374333 829.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09374334 829.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09374335 829.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09374336 829.15716553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09374337 829.15722656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09374338 829.15722656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09374339 829.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09374340 829.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09374341 829.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09374342 829.15728760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09374343 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09374344 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09374345 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09374346 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09374347 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09374348 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09374349 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09374350 829.15734863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09374351 829.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09374352 829.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09374353 829.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09374354 829.15740967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09374355 829.15747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09374356 829.15747070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09374357 829.15753174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09374358 829.15753174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09374359 829.15753174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09374360 829.15753174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09374361 829.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09374362 829.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09374363 829.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09374364 829.15759277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09374365 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09374366 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09374367 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09374368 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09374369 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09374370 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09374371 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09374372 829.15765381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09374373 829.15771484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09374374 829.15771484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09374375 829.15771484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09374376 829.15777588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09374377 829.15777588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09374378 829.15777588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09374379 829.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09374380 829.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09374381 829.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09374382 829.15783691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09374383 829.15789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09374384 829.15789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09374385 829.15789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09374386 829.15789795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09374387 829.15795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09374388 829.15795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09374389 829.15795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09374390 829.15795898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09374391 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09374392 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09374393 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09374394 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09374395 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09374396 829.15802002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09374397 829.15808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09374398 829.15808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09374399 829.15808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09374400 829.15808105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09374401 829.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09374402 829.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09374403 829.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09374404 829.15814209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09374405 829.15820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09374406 829.15820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09374407 829.15820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09374408 829.15820313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09374409 829.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09374410 829.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09374411 829.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09374412 829.15826416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09374413 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09374414 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09374415 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09374416 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09374417 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09374418 829.15832520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09374419 829.15838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09374420 829.15838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09374421 829.15838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09374422 829.15838623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09374423 829.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09374424 829.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09374425 829.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09374426 829.15844727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09374427 829.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09374428 829.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09374429 829.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09374430 829.15850830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09374431 829.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09374432 829.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09374433 829.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09374434 829.15856934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09374435 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09374436 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09374437 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09374438 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09374439 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09374440 829.15863037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09374441 829.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09374442 829.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09374443 829.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09374444 829.15869141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09374445 829.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09374446 829.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09374447 829.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09374448 829.15875244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09374449 829.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09374450 829.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09374451 829.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09374452 829.15881348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09374453 829.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09374454 829.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09374455 829.15887451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09374456 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09374457 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09374458 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09374459 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09374460 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09374461 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09374462 829.15893555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09374463 829.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09374464 829.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09374465 829.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09374466 829.15899658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09374467 829.15905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09374468 829.15905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09374469 829.15905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09374470 829.15905762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09374471 829.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09374472 829.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09374473 829.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09374474 829.15911865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09374475 829.15917969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09374476 829.15917969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09374477 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09374478 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09374479 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09374480 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09374481 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09374482 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09374483 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09374484 829.15924072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09374485 829.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09374486 829.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09374487 829.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09374488 829.15930176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09374489 829.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09374490 829.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09374491 829.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09374492 829.15936279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09374493 829.15942383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09374494 829.15942383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09374495 829.15942383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09374496 829.15948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09374497 829.15948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09374498 829.15948486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09374499 829.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09374500 829.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09374501 829.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09374502 829.15954590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09374503 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09374504 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09374505 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09374506 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09374507 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09374508 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09374509 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09374510 829.15960693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09374511 829.15966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09374512 829.15966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09374513 829.15966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09374514 829.15966797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09374515 829.15972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09374516 829.15972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09374517 829.15972900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09374518 829.15979004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09374519 829.15979004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09374520 829.15979004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09374521 829.15985107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09374522 829.15985107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09374523 829.15985107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09374524 829.15985107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09374525 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09374526 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09374527 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09374528 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09374529 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09374530 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09374531 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09374532 829.15991211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09374533 829.15997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09374534 829.15997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09374535 829.15997314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09374536 829.16003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09374537 829.16003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09374538 829.16003418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09374539 829.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09374540 829.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09374541 829.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09374542 829.16009521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09374543 829.16015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09374544 829.16015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09374545 829.16015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09374546 829.16015625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09374547 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09374548 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09374549 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09374550 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09374551 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09374552 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09374553 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09374554 829.16021729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09374555 829.16027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09374556 829.16027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09374557 829.16027832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09374558 829.16033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09374559 829.16033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09374560 829.16033936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09374561 829.16040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09374562 829.16040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09374563 829.16040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09374564 829.16040039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09374565 829.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09374566 829.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09374567 829.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09374568 829.16046143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09374569 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09374570 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09374571 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09374572 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09374573 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09374574 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09374575 829.16052246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09374576 829.16058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09374577 829.16058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09374578 829.16058350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09374579 829.16064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09374580 829.16064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09374581 829.16064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09374582 829.16064453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09374583 829.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09374584 829.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09374585 829.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09374586 829.16070557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09374587 829.16076660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09374588 829.16076660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09374589 829.16076660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09374590 829.16076660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09374591 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09374592 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09374593 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09374594 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09374595 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09374596 829.16082764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09374597 829.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09374598 829.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09374599 829.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09374600 829.16088867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09374601 829.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09374602 829.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09374603 829.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09374604 829.16094971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09374605 829.16101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09374606 829.16101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09374607 829.16101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09374608 829.16101074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09374609 829.16107178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09374610 829.16107178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09374611 829.16107178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09374612 829.16113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09374613 829.16113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09374614 829.16113281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09374615 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09374616 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09374617 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09374618 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09374619 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09374620 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09374621 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09374622 829.16119385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09374623 829.16125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09374624 829.16125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09374625 829.16125488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09374626 829.16131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09374627 829.16131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09374628 829.16131592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09374629 829.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09374630 829.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09374631 829.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09374632 829.16137695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09374633 829.16143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09374634 829.16143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09374635 829.16143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09374636 829.16143799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09374637 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09374638 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09374639 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09374640 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09374641 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09374642 829.16149902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09374643 829.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09374644 829.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09374645 829.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09374646 829.16156006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09374647 829.16162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09374648 829.16162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09374649 829.16162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09374650 829.16162109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09374651 829.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09374652 829.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09374653 829.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09374654 829.16168213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09374655 829.16174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09374656 829.16174316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09374657 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09374658 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09374659 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09374660 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09374661 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09374662 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09374663 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09374664 829.16180420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09374665 829.16186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09374666 829.16186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09374667 829.16186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09374668 829.16186523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09374669 829.16192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09374670 829.16192627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09374671 829.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09374672 829.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09374673 829.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09374674 829.16198730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09374675 829.16204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09374676 829.16204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09374677 829.16204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09374678 829.16204834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09374679 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09374680 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09374681 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09374682 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09374683 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09374684 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09374685 829.16210938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09374686 829.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09374687 829.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09374688 829.16217041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09374689 829.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09374690 829.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09374691 829.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09374692 829.16223145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09374693 829.16229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09374694 829.16229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09374695 829.16229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09374696 829.16229248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09374697 829.16235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09374698 829.16235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09374699 829.16235352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09374700 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09374701 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09374702 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09374703 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09374704 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09374705 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09374706 829.16241455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09374707 829.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09374708 829.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09374709 829.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09374710 829.16247559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09374711 829.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09374712 829.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09374713 829.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09374714 829.16253662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09374715 829.16259766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09374716 829.16259766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09374717 829.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09374718 829.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09374719 829.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09374720 829.16265869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09374721 829.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09374722 829.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09374723 829.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09374724 829.16271973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09374725 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09374726 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09374727 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09374728 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09374729 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09374730 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09374731 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09374732 829.16278076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09374733 829.16284180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09374734 829.16284180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09374735 829.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09374736 829.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09374737 829.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09374738 829.16290283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09374739 829.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09374740 829.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09374741 829.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09374742 829.16296387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09374743 829.16302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09374744 829.16302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09374745 829.16302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09374746 829.16302490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09374747 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09374748 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09374749 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09374750 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09374751 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09374752 829.16308594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09374753 829.16314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09374754 829.16314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09374755 829.16314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09374756 829.16314697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09374757 829.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09374758 829.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09374759 829.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09374760 829.16320801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09374761 829.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09374762 829.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09374763 829.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09374764 829.16326904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09374765 829.16333008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09374766 829.16333008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09374767 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09374768 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09374769 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09374770 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09374771 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09374772 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09374773 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09374774 829.16339111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09374775 829.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09374776 829.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09374777 829.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09374778 829.16345215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09374779 829.16351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09374780 829.16351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09374781 829.16351318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09374782 829.16357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09374783 829.16357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09374784 829.16357422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09374785 829.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09374786 829.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09374787 829.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09374788 829.16363525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09374789 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09374790 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09374791 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09374792 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09374793 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09374794 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09374795 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09374796 829.16369629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09374797 829.16375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09374798 829.16375732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09374799 829.16381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09374800 829.16381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09374801 829.16381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09374802 829.16381836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09374803 829.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09374804 829.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09374805 829.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09374806 829.16387939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09374807 829.16394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09374808 829.16394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09374809 829.16394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09374810 829.16394043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09374811 829.16400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09374812 829.16400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09374813 829.16400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09374814 829.16400146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09374815 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09374816 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09374817 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09374818 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09374819 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09374820 829.16406250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09374821 829.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09374822 829.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09374823 829.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09374824 829.16412354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09374825 829.16418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09374826 829.16418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09374827 829.16418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09374828 829.16418457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09374829 829.16424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09374830 829.16424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09374831 829.16424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09374832 829.16424561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09374833 829.16430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09374834 829.16430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09374835 829.16430664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09374836 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09374837 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09374838 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09374839 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09374840 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09374841 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09374842 829.16436768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09374843 829.16442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09374844 829.16442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09374845 829.16442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09374846 829.16442871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09374847 829.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09374848 829.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09374849 829.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09374850 829.16448975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09374851 829.16455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09374852 829.16455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09374853 829.16455078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09374854 829.16461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09374855 829.16461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09374856 829.16461182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09374857 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09374858 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09374859 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09374860 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09374861 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09374862 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09374863 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09374864 829.16467285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09374865 829.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09374866 829.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09374867 829.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09374868 829.16473389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09374869 829.16479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09374870 829.16479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09374871 829.16479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09374872 829.16479492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09374873 829.16485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09374874 829.16485596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09374875 829.16491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09374876 829.16491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09374877 829.16491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09374878 829.16491699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09374879 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09374880 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09374881 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09374882 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09374883 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09374884 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09374885 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09374886 829.16497803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09374887 829.16503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09374888 829.16503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09374889 829.16503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09374890 829.16503906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09374891 829.16510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09374892 829.16510010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09374893 829.16516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09374894 829.16516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09374895 829.16516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09374896 829.16516113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09374897 829.16522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09374898 829.16522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09374899 829.16522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09374900 829.16522217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09374901 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09374902 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09374903 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09374904 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09374905 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09374906 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09374907 829.16528320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09374908 829.16534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09374909 829.16534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09374910 829.16534424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09374911 829.16540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09374912 829.16540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09374913 829.16540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09374914 829.16540527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09374915 829.16546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09374916 829.16546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09374917 829.16546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09374918 829.16546631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09374919 829.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09374920 829.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09374921 829.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09374922 829.16552734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09374923 829.16558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09374924 829.16558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09374925 829.16558838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09374926 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09374927 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09374928 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09374929 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09374930 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09374931 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09374932 829.16564941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09374933 829.16571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09374934 829.16571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09374935 829.16571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09374936 829.16571045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09374937 829.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09374938 829.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09374939 829.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09374940 829.16577148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09374941 829.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09374942 829.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09374943 829.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09374944 829.16583252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09374945 829.16589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09374946 829.16589355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09374947 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09374948 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09374949 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09374950 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09374951 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09374952 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09374953 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09374954 829.16595459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09374955 829.16601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09374956 829.16601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09374957 829.16601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09374958 829.16601563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09374959 829.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09374960 829.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09374961 829.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09374962 829.16607666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09374963 829.16613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09374964 829.16613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09374965 829.16613770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09374966 829.16619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09374967 829.16619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09374968 829.16619873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09374969 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09374970 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09374971 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09374972 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09374973 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09374974 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09374975 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09374976 829.16625977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09374977 829.16632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09374978 829.16632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09374979 829.16632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09374980 829.16632080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09374981 829.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09374982 829.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09374983 829.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09374984 829.16638184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09374985 829.16644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09374986 829.16644287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09374987 829.16650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09374988 829.16650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09374989 829.16650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09374990 829.16650391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09374991 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09374992 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09374993 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09374994 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09374995 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09374996 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09374997 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09374998 829.16656494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09374999 829.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09375000 829.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09375001 829.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09375002 829.16662598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09375003 829.16668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09375004 829.16668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09375005 829.16668701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09375006 829.16674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09375007 829.16674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09375008 829.16674805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09375009 829.16680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09375010 829.16680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09375011 829.16680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09375012 829.16680908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09375013 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09375014 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09375015 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09375016 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09375017 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09375018 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09375019 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09375020 829.16687012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09375021 829.16693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09375022 829.16693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09375023 829.16693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09375024 829.16693115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09375025 829.16699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09375026 829.16699219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09375027 829.16705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09375028 829.16705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09375029 829.16705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09375030 829.16705322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09375031 829.16711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09375032 829.16711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09375033 829.16711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09375034 829.16711426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09375035 829.16717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09375036 829.16717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09375037 829.16717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09375038 829.16717529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09375039 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09375040 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09375041 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09375042 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09375043 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09375044 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09375045 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09375046 829.16723633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09375047 829.16729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09375048 829.16729736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09375049 829.16735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09375050 829.16735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09375051 829.16735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09375052 829.16735840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09375053 829.16741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09375054 829.16741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09375055 829.16741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09375056 829.16741943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09375057 829.16748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09375058 829.16748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09375059 829.16748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09375060 829.16748047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09375061 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09375062 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09375063 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09375064 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09375065 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09375066 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09375067 829.16754150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09375068 829.16760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09375069 829.16760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09375070 829.16760254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09375071 829.16766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09375072 829.16766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09375073 829.16766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09375074 829.16766357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09375075 829.16772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09375076 829.16772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09375077 829.16772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09375078 829.16772461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09375079 829.16778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09375080 829.16778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09375081 829.16778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09375082 829.16778564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09375083 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09375084 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09375085 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09375086 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09375087 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09375088 829.16784668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09375089 829.16790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09375090 829.16790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09375091 829.16790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09375092 829.16790771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09375093 829.16796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09375094 829.16796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09375095 829.16796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09375096 829.16796875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09375097 829.16802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09375098 829.16802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09375099 829.16802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09375100 829.16802979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09375101 829.16809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09375102 829.16809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09375103 829.16809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09375104 829.16809082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09375105 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09375106 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09375107 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09375108 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09375109 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09375110 829.16815186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09375111 829.16821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09375112 829.16821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09375113 829.16821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09375114 829.16821289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09375115 829.16827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09375116 829.16827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09375117 829.16827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09375118 829.16827393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09375119 829.16833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09375120 829.16833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09375121 829.16833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09375122 829.16833496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09375123 829.16839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09375124 829.16839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09375125 829.16839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09375126 829.16839600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09375127 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09375128 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09375129 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09375130 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09375131 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09375132 829.16845703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09375133 829.16851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09375134 829.16851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09375135 829.16851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09375136 829.16851807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09375137 829.16857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09375138 829.16857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09375139 829.16857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09375140 829.16857910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09375141 829.16864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09375142 829.16864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09375143 829.16864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09375144 829.16864014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09375145 829.16870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09375146 829.16870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09375147 829.16870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09375148 829.16870117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09375149 829.16876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09375150 829.16876221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09375151 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09375152 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09375153 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09375154 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09375155 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09375156 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09375157 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09375158 829.16882324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09375159 829.16888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09375160 829.16888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09375161 829.16888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09375162 829.16888428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09375163 829.16894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09375164 829.16894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09375165 829.16894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09375166 829.16894531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09375167 829.16900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09375168 829.16900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09375169 829.16900635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09375170 829.16906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09375171 829.16906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09375172 829.16906738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09375173 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09375174 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09375175 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09375176 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09375177 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09375178 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09375179 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09375180 829.16912842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09375181 829.16918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09375182 829.16918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09375183 829.16918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09375184 829.16918945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09375185 829.16925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09375186 829.16925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09375187 829.16925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09375188 829.16925049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09375189 829.16931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09375190 829.16931152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09375191 829.16937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09375192 829.16937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09375193 829.16937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09375194 829.16937256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09375195 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09375196 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09375197 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09375198 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09375199 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09375200 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09375201 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09375202 829.16943359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09375203 829.16949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09375204 829.16949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09375205 829.16949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09375206 829.16949463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09375207 829.16955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09375208 829.16955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09375209 829.16955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09375210 829.16955566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09375211 829.16961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09375212 829.16961670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09375213 829.16967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09375214 829.16967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09375215 829.16967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09375216 829.16967773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09375217 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09375218 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09375219 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09375220 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09375221 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09375222 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09375223 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09375224 829.16973877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09375225 829.16979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09375226 829.16979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09375227 829.16979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09375228 829.16979980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09375229 829.16986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09375230 829.16986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09375231 829.16986084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09375232 829.16992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09375233 829.16992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09375234 829.16992188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09375235 829.16998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09375236 829.16998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09375237 829.16998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09375238 829.16998291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09375239 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09375240 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09375241 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09375242 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09375243 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09375244 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09375245 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09375246 829.17004395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09375247 829.17010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09375248 829.17010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09375249 829.17010498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09375250 829.17016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09375251 829.17016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09375252 829.17016602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09375253 829.17022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09375254 829.17022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09375255 829.17022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09375256 829.17022705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09375257 829.17028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09375258 829.17028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09375259 829.17028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09375260 829.17028809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09375261 829.17034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09375262 829.17034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09375263 829.17034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09375264 829.17034912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09375265 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09375266 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09375267 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09375268 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09375269 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09375270 829.17041016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09375271 829.17047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09375272 829.17047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09375273 829.17047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09375274 829.17047119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09375275 829.17053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09375276 829.17053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09375277 829.17053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09375278 829.17053223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09375279 829.17059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09375280 829.17059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09375281 829.17059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09375282 829.17059326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09375283 829.17065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09375284 829.17065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09375285 829.17065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09375286 829.17065430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09375287 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09375288 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09375289 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09375290 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09375291 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09375292 829.17071533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09375293 829.17077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09375294 829.17077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09375295 829.17077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09375296 829.17077637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09375297 829.17083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09375298 829.17083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09375299 829.17083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09375300 829.17083740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09375301 829.17089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09375302 829.17089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09375303 829.17089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09375304 829.17089844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09375305 829.17095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09375306 829.17095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09375307 829.17095947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09375308 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09375309 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09375310 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09375311 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09375312 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09375313 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09375314 829.17102051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09375315 829.17108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09375316 829.17108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09375317 829.17108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09375318 829.17108154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09375319 829.17114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09375320 829.17114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09375321 829.17114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09375322 829.17114258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09375323 829.17120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09375324 829.17120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09375325 829.17120361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09375326 829.17126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09375327 829.17126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09375328 829.17126465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09375329 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09375330 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09375331 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09375332 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09375333 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09375334 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09375335 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09375336 829.17132568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09375337 829.17138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09375338 829.17138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09375339 829.17138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09375340 829.17138672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09375341 829.17144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09375342 829.17144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09375343 829.17144775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09375344 829.17150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09375345 829.17150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09375346 829.17150879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09375347 829.17156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09375348 829.17156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09375349 829.17156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09375350 829.17156982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09375351 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09375352 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09375353 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09375354 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09375355 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09375356 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09375357 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09375358 829.17163086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09375359 829.17169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09375360 829.17169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09375361 829.17169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09375362 829.17169189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09375363 829.17175293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09375364 829.17175293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09375365 829.17181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09375366 829.17181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09375367 829.17181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09375368 829.17181396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09375369 829.17187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09375370 829.17187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09375371 829.17187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09375372 829.17187500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09375373 829.17193604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09375374 829.17193604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09375375 829.17193604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09375376 829.17193604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09375377 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09375378 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09375379 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09375380 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09375381 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09375382 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09375383 829.17199707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09375384 829.17205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09375385 829.17205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09375386 829.17205811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09375387 829.17211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09375388 829.17211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09375389 829.17211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09375390 829.17211914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09375391 829.17218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09375392 829.17218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09375393 829.17218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09375394 829.17218018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09375395 829.17224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09375396 829.17224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09375397 829.17224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09375398 829.17224121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09375399 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09375400 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09375401 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09375402 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09375403 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09375404 829.17230225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09375405 829.17236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09375406 829.17236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09375407 829.17236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09375408 829.17236328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09375409 829.17242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09375410 829.17242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09375411 829.17242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09375412 829.17242432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09375413 829.17248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09375414 829.17248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09375415 829.17248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09375416 829.17248535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09375417 829.17254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09375418 829.17254639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09375419 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09375420 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09375421 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09375422 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09375423 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09375424 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09375425 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09375426 829.17260742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09375427 829.17266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09375428 829.17266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09375429 829.17266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09375430 829.17266846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09375431 829.17272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09375432 829.17272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09375433 829.17272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09375434 829.17272949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09375435 829.17279053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09375436 829.17279053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09375437 829.17285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09375438 829.17285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09375439 829.17285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09375440 829.17285156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09375441 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09375442 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09375443 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09375444 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09375445 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09375446 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09375447 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09375448 829.17291260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09375449 829.17297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09375450 829.17297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09375451 829.17297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09375452 829.17297363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09375453 829.17303467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09375454 829.17303467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09375455 829.17303467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09375456 829.17309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09375457 829.17309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09375458 829.17309570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09375459 829.17315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09375460 829.17315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09375461 829.17315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09375462 829.17315674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09375463 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09375464 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09375465 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09375466 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09375467 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09375468 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09375469 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09375470 829.17321777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09375471 829.17327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09375472 829.17327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09375473 829.17327881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09375474 829.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09375475 829.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09375476 829.17333984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09375477 829.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09375478 829.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09375479 829.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09375480 829.17340088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09375481 829.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09375482 829.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09375483 829.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09375484 829.17346191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09375485 829.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09375486 829.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09375487 829.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09375488 829.17352295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09375489 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09375490 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09375491 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09375492 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09375493 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09375494 829.17358398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09375495 829.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09375496 829.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09375497 829.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09375498 829.17364502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09375499 829.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09375500 829.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09375501 829.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09375502 829.17370605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09375503 829.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09375504 829.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09375505 829.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09375506 829.17376709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09375507 829.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09375508 829.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09375509 829.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09375510 829.17382813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09375511 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09375512 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09375513 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09375514 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09375515 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09375516 829.17388916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09375517 829.17395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09375518 829.17395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09375519 829.17395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09375520 829.17395020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09375521 829.17401123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09375522 829.17401123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09375523 829.17401123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09375524 829.17401123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09375525 829.17407227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09375526 829.17407227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09375527 829.17407227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09375528 829.17407227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09375529 829.17413330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09375530 829.17413330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09375531 829.17413330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09375532 829.17413330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09375533 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09375534 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09375535 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09375536 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09375537 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09375538 829.17419434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09375539 829.17425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09375540 829.17425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09375541 829.17425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09375542 829.17425537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09375543 829.17431641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09375544 829.17431641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09375545 829.17431641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09375546 829.17431641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09375547 829.17437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09375548 829.17437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09375549 829.17437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09375550 829.17437744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09375551 829.17443848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09375552 829.17443848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09375553 829.17443848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09375554 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09375555 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09375556 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09375557 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09375558 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09375559 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09375560 829.17449951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09375561 829.17456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09375562 829.17456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09375563 829.17456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09375564 829.17456055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09375565 829.17462158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09375566 829.17462158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09375567 829.17468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09375568 829.17468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09375569 829.17468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09375570 829.17468262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09375571 829.17474365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09375572 829.17474365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09375573 829.17474365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09375574 829.17474365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09375575 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09375576 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09375577 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09375578 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09375579 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09375580 829.17480469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09375581 829.17486572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09375582 829.17486572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09375583 829.17492676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09375584 829.17492676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09375585 829.17498779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09375586 829.17498779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09375587 829.17498779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09375588 829.17504883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09375589 829.17504883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09375590 829.17504883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09375591 829.17510986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09375592 829.17510986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09375593 829.17510986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09375594 829.17510986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09375595 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09375596 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09375597 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09375598 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09375599 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09375600 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09375601 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09375602 829.17517090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09375603 829.17523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09375604 829.17523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09375605 829.17523193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09375606 829.17529297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09375607 829.17529297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09375608 829.17529297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09375609 829.17535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09375610 829.17535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09375611 829.17535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09375612 829.17535400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09375613 829.17541504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09375614 829.17541504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09375615 829.17541504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09375616 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09375617 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09375618 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09375619 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09375620 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09375621 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09375622 829.17547607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09375623 829.17553711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09375624 829.17553711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09375625 829.17559814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09375626 829.17559814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09375627 829.17559814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09375628 829.17559814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09375629 829.17565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09375630 829.17565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09375631 829.17565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09375632 829.17565918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09375633 829.17572021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09375634 829.17572021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09375635 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09375636 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09375637 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09375638 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09375639 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09375640 829.17578125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09375641 829.17584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09375642 829.17584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09375643 829.17584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09375644 829.17584229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09375645 829.17590332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09375646 829.17590332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09375647 829.17590332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09375648 829.17590332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09375649 829.17596436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09375650 829.17596436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09375651 829.17596436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09375652 829.17602539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09375653 829.17602539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09375654 829.17602539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09375655 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09375656 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09375657 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09375658 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09375659 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09375660 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09375661 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09375662 829.17608643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09375663 829.17614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09375664 829.17614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09375665 829.17614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09375666 829.17614746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09375667 829.17620850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09375668 829.17620850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09375669 829.17626953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09375670 829.17626953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09375671 829.17626953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09375672 829.17626953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09375673 829.17633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09375674 829.17633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09375675 829.17633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09375676 829.17633057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09375677 829.17639160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09375678 829.17639160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09375679 829.17639160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09375680 829.17639160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09375681 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09375682 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09375683 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09375684 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09375685 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09375686 829.17645264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09375687 829.17651367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09375688 829.17651367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09375689 829.17651367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09375690 829.17651367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09375691 829.17657471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09375692 829.17657471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09375693 829.17657471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09375694 829.17657471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09375695 829.17663574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09375696 829.17663574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09375697 829.17663574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09375698 829.17669678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09375699 829.17669678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09375700 829.17669678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09375701 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09375702 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09375703 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09375704 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09375705 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09375706 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09375707 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09375708 829.17675781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09375709 829.17681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09375710 829.17681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09375711 829.17681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09375712 829.17681885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09375713 829.17687988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09375714 829.17687988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09375715 829.17687988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09375716 829.17694092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09375717 829.17694092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09375718 829.17694092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09375719 829.17700195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09375720 829.17700195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09375721 829.17700195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09375722 829.17700195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09375723 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09375724 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09375725 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09375726 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09375727 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09375728 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09375729 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09375730 829.17706299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09375731 829.17712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09375732 829.17712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09375733 829.17712402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09375734 829.17718506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09375735 829.17718506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09375736 829.17718506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09375737 829.17724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09375738 829.17724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09375739 829.17724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09375740 829.17724609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09375741 829.17730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09375742 829.17730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09375743 829.17730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09375744 829.17730713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09375745 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09375746 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09375747 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09375748 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09375749 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09375750 829.17736816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09375751 829.17742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09375752 829.17742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09375753 829.17742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09375754 829.17742920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09375755 829.17749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09375756 829.17749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09375757 829.17749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09375758 829.17749023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09375759 829.17755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09375760 829.17755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09375761 829.17755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09375762 829.17755127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09375763 829.17761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09375764 829.17761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09375765 829.17761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09375766 829.17761230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09375767 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09375768 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09375769 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09375770 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09375771 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09375772 829.17767334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09375773 829.17773438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09375774 829.17773438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09375775 829.17773438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09375776 829.17773438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09375777 829.17779541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09375778 829.17779541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09375779 829.17779541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09375780 829.17779541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09375781 829.17785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09375782 829.17785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09375783 829.17785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09375784 829.17785645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09375785 829.17791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09375786 829.17791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09375787 829.17791748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09375788 829.17797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09375789 829.17797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09375790 829.17797852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09375791 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09375792 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09375793 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09375794 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09375795 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09375796 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09375797 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09375798 829.17803955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09375799 829.17810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09375800 829.17810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09375801 829.17810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09375802 829.17810059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09375803 829.17816162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09375804 829.17816162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09375805 829.17816162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09375806 829.17822266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09375807 829.17822266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09375808 829.17822266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09375809 829.17828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09375810 829.17828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09375811 829.17828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09375812 829.17828369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09375813 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09375814 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09375815 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09375816 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09375817 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09375818 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09375819 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09375820 829.17834473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09375821 829.17840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09375822 829.17840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09375823 829.17840576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09375824 829.17846680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09375825 829.17846680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09375826 829.17846680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09375827 829.17852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09375828 829.17852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09375829 829.17852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09375830 829.17852783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09375831 829.17858887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09375832 829.17858887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09375833 829.17858887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09375834 829.17858887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09375835 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09375836 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09375837 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09375838 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09375839 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09375840 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09375841 829.17864990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09375842 829.17871094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09375843 829.17871094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09375844 829.17871094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09375845 829.17877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09375846 829.17877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09375847 829.17877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09375848 829.17877197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09375849 829.17883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09375850 829.17883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09375851 829.17883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09375852 829.17883301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09375853 829.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09375854 829.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09375855 829.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09375856 829.17889404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09375857 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09375858 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09375859 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09375860 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09375861 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09375862 829.17895508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09375863 829.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09375864 829.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09375865 829.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09375866 829.17901611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09375867 829.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09375868 829.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09375869 829.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09375870 829.17907715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09375871 829.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09375872 829.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09375873 829.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09375874 829.17913818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09375875 829.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09375876 829.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09375877 829.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09375878 829.17919922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09375879 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09375880 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09375881 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09375882 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09375883 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09375884 829.17926025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09375885 829.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09375886 829.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09375887 829.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09375888 829.17932129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09375889 829.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09375890 829.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09375891 829.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09375892 829.17938232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09375893 829.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09375894 829.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09375895 829.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09375896 829.17944336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09375897 829.17950439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09375898 829.17950439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09375899 829.17956543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09375900 829.17956543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09375901 829.17956543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09375902 829.17956543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09375903 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09375904 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09375905 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09375906 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09375907 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09375908 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09375909 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09375910 829.17962646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09375911 829.17968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09375912 829.17968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09375913 829.17968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09375914 829.17968750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09375915 829.17974854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09375916 829.17974854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09375917 829.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09375918 829.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09375919 829.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09375920 829.17980957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09375921 829.17987061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09375922 829.17987061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09375923 829.17987061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09375924 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09375925 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09375926 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09375927 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09375928 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09375929 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09375930 829.17993164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09375931 829.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09375932 829.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09375933 829.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09375934 829.17999268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09375935 829.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09375936 829.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09375937 829.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09375938 829.18005371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09375939 829.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09375940 829.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09375941 829.18011475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09375942 829.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09375943 829.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09375944 829.18017578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09375945 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09375946 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09375947 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09375948 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09375949 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09375950 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09375951 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09375952 829.18023682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09375953 829.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09375954 829.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09375955 829.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09375956 829.18029785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09375957 829.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09375958 829.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09375959 829.18035889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09375960 829.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09375961 829.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09375962 829.18041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09375963 829.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09375964 829.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09375965 829.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09375966 829.18048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09375967 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09375968 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09375969 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09375970 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09375971 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09375972 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09375973 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09375974 829.18054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09375975 829.18060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09375976 829.18060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09375977 829.18060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09375978 829.18066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09375979 829.18066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09375980 829.18066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09375981 829.18072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09375982 829.18072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09375983 829.18072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09375984 829.18072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09375985 829.18078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09375986 829.18078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09375987 829.18078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09375988 829.18078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09375989 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09375990 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09375991 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09375992 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09375993 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09375994 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09375995 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09375996 829.18084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09375997 829.18090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09375998 829.18090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09375999 829.18090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09376000 829.18096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09376001 829.18096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09376002 829.18096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09376003 829.18103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09376004 829.18103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09376005 829.18103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09376006 829.18103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09376007 829.18109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09376008 829.18109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09376009 829.18109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09376010 829.18109131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09376011 829.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09376012 829.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09376013 829.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09376014 829.18115234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09376015 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09376016 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09376017 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09376018 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09376019 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09376020 829.18121338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09376021 829.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09376022 829.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09376023 829.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09376024 829.18127441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09376025 829.18133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09376026 829.18133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09376027 829.18133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09376028 829.18133545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09376029 829.18139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09376030 829.18139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09376031 829.18139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09376032 829.18139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09376033 829.18145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09376034 829.18145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09376035 829.18145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09376036 829.18145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09376037 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09376038 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09376039 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09376040 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09376041 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09376042 829.18151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09376043 829.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09376044 829.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09376045 829.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09376046 829.18157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09376047 829.18164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09376048 829.18164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09376049 829.18164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09376050 829.18164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09376051 829.18170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09376052 829.18170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09376053 829.18170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09376054 829.18170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09376055 829.18176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09376056 829.18176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09376057 829.18176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09376058 829.18176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09376059 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09376060 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09376061 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09376062 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09376063 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09376064 829.18182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09376065 829.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09376066 829.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09376067 829.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09376068 829.18188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09376069 829.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09376070 829.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09376071 829.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09376072 829.18194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09376073 829.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09376074 829.18200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09376075 829.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09376076 829.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09376077 829.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09376078 829.18206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09376079 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09376080 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09376081 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09376082 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09376083 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09376084 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09376085 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09376086 829.18212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09376087 829.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09376088 829.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09376089 829.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09376090 829.18218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09376091 829.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09376092 829.18225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09376093 829.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09376094 829.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09376095 829.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09376096 829.18231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09376097 829.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09376098 829.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09376099 829.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09376100 829.18237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09376101 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09376102 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09376103 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09376104 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09376105 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09376106 829.18243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09376107 829.18249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09376108 829.18249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09376109 829.18249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09376110 829.18249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09376111 829.18255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09376112 829.18255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09376113 829.18255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09376114 829.18255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09376115 829.18261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09376116 829.18261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09376117 829.18261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09376118 829.18261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09376119 829.18267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09376120 829.18267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09376121 829.18273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09376122 829.18273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09376123 829.18273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09376124 829.18273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09376125 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09376126 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09376127 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09376128 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09376129 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09376130 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09376131 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09376132 829.18280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09376133 829.18286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09376134 829.18286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09376135 829.18292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09376136 829.18292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09376137 829.18292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09376138 829.18292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09376139 829.18298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09376140 829.18298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09376141 829.18298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09376142 829.18298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09376143 829.18304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09376144 829.18304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09376145 829.18304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09376146 829.18304443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09376147 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09376148 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09376149 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09376150 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09376151 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09376152 829.18310547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09376153 829.18316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09376154 829.18316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09376155 829.18316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09376156 829.18316650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09376157 829.18322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09376158 829.18322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09376159 829.18322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09376160 829.18322754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09376161 829.18328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09376162 829.18328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09376163 829.18328857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09376164 829.18334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09376165 829.18334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09376166 829.18334961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09376167 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09376168 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09376169 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09376170 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09376171 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09376172 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09376173 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09376174 829.18341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09376175 829.18347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09376176 829.18347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09376177 829.18347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09376178 829.18347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09376179 829.18353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09376180 829.18353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09376181 829.18359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09376182 829.18359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09376183 829.18359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09376184 829.18359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09376185 829.18365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09376186 829.18365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09376187 829.18365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09376188 829.18365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09376189 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09376190 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09376191 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09376192 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09376193 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09376194 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09376195 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09376196 829.18371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09376197 829.18377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09376198 829.18377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09376199 829.18377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09376200 829.18383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09376201 829.18383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09376202 829.18383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09376203 829.18389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09376204 829.18389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09376205 829.18389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09376206 829.18389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09376207 829.18395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09376208 829.18395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09376209 829.18395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09376210 829.18395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09376211 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09376212 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09376213 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09376214 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09376215 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09376216 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09376217 829.18402100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09376218 829.18408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09376219 829.18408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09376220 829.18408203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09376221 829.18414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09376222 829.18414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09376223 829.18414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09376224 829.18414307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09376225 829.18420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09376226 829.18420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09376227 829.18420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09376228 829.18420410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09376229 829.18426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09376230 829.18426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09376231 829.18426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09376232 829.18426514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09376233 829.18432617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09376234 829.18432617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09376235 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09376236 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09376237 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09376238 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09376239 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09376240 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09376241 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09376242 829.18438721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09376243 829.18444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09376244 829.18444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09376245 829.18444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09376246 829.18444824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09376247 829.18450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09376248 829.18450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09376249 829.18450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09376250 829.18450928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09376251 829.18457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09376252 829.18457031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09376253 829.18463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09376254 829.18463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09376255 829.18463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09376256 829.18463135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09376257 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09376258 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09376259 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09376260 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09376261 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09376262 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09376263 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09376264 829.18469238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09376265 829.18475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09376266 829.18475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09376267 829.18475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09376268 829.18475342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09376269 829.18481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09376270 829.18481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09376271 829.18481445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09376272 829.18487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09376273 829.18487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09376274 829.18487549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09376275 829.18493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09376276 829.18493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09376277 829.18493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09376278 829.18493652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09376279 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09376280 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09376281 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09376282 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09376283 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09376284 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09376285 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09376286 829.18499756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09376287 829.18505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09376288 829.18505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09376289 829.18505859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09376290 829.18511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09376291 829.18511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09376292 829.18511963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09376293 829.18518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09376294 829.18518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09376295 829.18518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09376296 829.18518066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09376297 829.18524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09376298 829.18524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09376299 829.18524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09376300 829.18524170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09376301 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09376302 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09376303 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09376304 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09376305 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09376306 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09376307 829.18530273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09376308 829.18536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09376309 829.18536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09376310 829.18536377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09376311 829.18542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09376312 829.18542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09376313 829.18542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09376314 829.18542480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09376315 829.18548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09376316 829.18548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09376317 829.18548584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09376318 829.18554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09376319 829.18554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09376320 829.18554688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09376321 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09376322 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09376323 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09376324 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09376325 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09376326 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09376327 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09376328 829.18560791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09376329 829.18566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09376330 829.18566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09376331 829.18566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09376332 829.18566895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09376333 829.18572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09376334 829.18572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09376335 829.18572998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09376336 829.18579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09376337 829.18579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09376338 829.18579102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09376339 829.18585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09376340 829.18585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09376341 829.18585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09376342 829.18585205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09376343 829.18591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09376344 829.18591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09376345 829.18591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09376346 829.18591309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09376347 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09376348 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09376349 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09376350 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09376351 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09376352 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09376353 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09376354 829.18597412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09376355 829.18603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09376356 829.18603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09376357 829.18603516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09376358 829.18609619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09376359 829.18609619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09376360 829.18609619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09376361 829.18615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09376362 829.18615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09376363 829.18615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09376364 829.18615723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09376365 829.18621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09376366 829.18621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09376367 829.18621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09376368 829.18621826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09376369 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09376370 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09376371 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09376372 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09376373 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09376374 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09376375 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09376376 829.18627930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09376377 829.18634033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09376378 829.18634033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09376379 829.18640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09376380 829.18640137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09376381 829.18646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09376382 829.18646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09376383 829.18646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09376384 829.18646240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09376385 829.18652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09376386 829.18652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09376387 829.18652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09376388 829.18652344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09376389 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09376390 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09376391 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09376392 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09376393 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09376394 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09376395 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09376396 829.18658447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09376397 829.18664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09376398 829.18664551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09376399 829.18670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09376400 829.18670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09376401 829.18670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09376402 829.18670654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09376403 829.18676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09376404 829.18676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09376405 829.18676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09376406 829.18676758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09376407 829.18682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09376408 829.18682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09376409 829.18682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09376410 829.18682861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09376411 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09376412 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09376413 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09376414 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09376415 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09376416 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09376417 829.18688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09376418 829.18695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09376419 829.18695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09376420 829.18695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09376421 829.18701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09376422 829.18701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09376423 829.18701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09376424 829.18701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09376425 829.18707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09376426 829.18707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09376427 829.18713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09376428 829.18713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09376429 829.18713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09376430 829.18713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09376431 829.18719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09376432 829.18719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09376433 829.18719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09376434 829.18719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09376435 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09376436 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09376437 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09376438 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09376439 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09376440 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09376441 829.18725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09376442 829.18731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09376443 829.18731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09376444 829.18731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09376445 829.18737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09376446 829.18737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09376447 829.18737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09376448 829.18737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09376449 829.18743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09376450 829.18743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09376451 829.18743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09376452 829.18743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09376453 829.18750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09376454 829.18750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09376455 829.18750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09376456 829.18750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09376457 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09376458 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09376459 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09376460 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09376461 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09376462 829.18756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09376463 829.18762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09376464 829.18762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09376465 829.18762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09376466 829.18768311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09376467 829.18768311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09376468 829.18768311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09376469 829.18774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09376470 829.18774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09376471 829.18774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09376472 829.18774414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09376473 829.18780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09376474 829.18780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09376475 829.18780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09376476 829.18780518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09376477 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09376478 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09376479 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09376480 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09376481 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09376482 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09376483 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09376484 829.18786621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09376485 829.18792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09376486 829.18792725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09376487 829.18798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09376488 829.18798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09376489 829.18798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09376490 829.18798828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09376491 829.18804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09376492 829.18804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09376493 829.18804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09376494 829.18804932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09376495 829.18811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09376496 829.18811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09376497 829.18811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09376498 829.18811035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09376499 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09376500 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09376501 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09376502 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09376503 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09376504 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09376505 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09376506 829.18817139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09376507 829.18823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09376508 829.18823242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09376509 829.18829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09376510 829.18829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09376511 829.18829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09376512 829.18829346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09376513 829.18835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09376514 829.18835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09376515 829.18835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09376516 829.18835449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09376517 829.18841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09376518 829.18841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09376519 829.18841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09376520 829.18841553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09376521 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09376522 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09376523 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09376524 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09376525 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09376526 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09376527 829.18847656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09376528 829.18853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09376529 829.18853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09376530 829.18853760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09376531 829.18859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09376532 829.18859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09376533 829.18859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09376534 829.18859863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09376535 829.18865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09376536 829.18865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09376537 829.18865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09376538 829.18865967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09376539 829.18872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09376540 829.18872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09376541 829.18872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09376542 829.18872070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09376543 829.18878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09376544 829.18878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09376545 829.18878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09376546 829.18878174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09376547 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09376548 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09376549 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09376550 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09376551 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09376552 829.18884277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09376553 829.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09376554 829.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09376555 829.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09376556 829.18890381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09376557 829.18896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09376558 829.18896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09376559 829.18896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09376560 829.18896484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09376561 829.18902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09376562 829.18902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09376563 829.18902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09376564 829.18902588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09376565 829.18908691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09376566 829.18908691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09376567 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09376568 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09376569 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09376570 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09376571 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09376572 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09376573 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09376574 829.18914795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09376575 829.18920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09376576 829.18920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09376577 829.18920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09376578 829.18920898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09376579 829.18927002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09376580 829.18927002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09376581 829.18933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09376582 829.18933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09376583 829.18933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09376584 829.18933105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09376585 829.18939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09376586 829.18939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09376587 829.18939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09376588 829.18939209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09376589 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09376590 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09376591 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09376592 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09376593 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09376594 829.18945313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09378765 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -09378766 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb478 -09378767 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -09378768 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb488 -09378769 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -09378770 829.22058105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb498 -09378771 829.22064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -09378772 829.22064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4a8 -09378773 829.22064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -09378774 829.22064209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4b8 -09378775 829.22070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -09378776 829.22070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4c8 -09378777 829.22070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -09378778 829.22070313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4d8 -09378779 829.22076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -09378780 829.22076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4e8 -09378781 829.22076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -09378782 829.22076416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb4f8 -09378783 829.22082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -09378784 829.22082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb508 -09378785 829.22082520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -09378786 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb518 -09378787 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -09378788 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb528 -09378789 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -09378790 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb538 -09378791 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -09378792 829.22088623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb548 -09378793 829.22094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -09378794 829.22094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb558 -09378795 829.22094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -09378796 829.22094727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb568 -09378797 829.22100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -09378798 829.22100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb578 -09378799 829.22100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -09378800 829.22100830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb588 -09378801 829.22106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -09378802 829.22106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb598 -09378803 829.22106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -09378804 829.22106934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5a8 -09378805 829.22113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -09378806 829.22113037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5b8 -09378807 829.22119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -09378808 829.22119141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xb5c8 -09393911 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc8 -09393912 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dc8 -09393913 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd8 -09393914 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28dd8 -09393915 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de8 -09393916 829.43731689 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28de8 -09393917 829.43737793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df8 -09393918 829.43737793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28df8 -09393919 829.43737793 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e08 -09393920 829.43743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e08 -09393921 829.43743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e18 -09393922 829.43743896 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e18 -09393923 829.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e28 -09393924 829.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e28 -09393925 829.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e38 -09393926 829.43750000 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e38 -09393927 829.43756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e48 -09393928 829.43756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e48 -09393929 829.43756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e58 -09393930 829.43756104 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e58 -09393931 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e68 -09393932 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e68 -09393933 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e78 -09393934 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e78 -09393935 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e88 -09393936 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e88 -09393937 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e98 -09393938 829.43762207 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e98 -09393939 829.43768311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea8 -09393940 829.43768311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ea8 -09393941 829.43768311 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb8 -09393942 829.43774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28eb8 -09393943 829.43774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec8 -09393944 829.43774414 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ec8 -09393945 829.43780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed8 -09393946 829.43780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ed8 -09393947 829.43780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee8 -09393948 829.43780518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ee8 -09393949 829.43786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef8 -09393950 829.43786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28ef8 -09393951 829.43786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f08 -09393952 829.43786621 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f08 -09393953 829.43792725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f18 -09393954 829.43792725 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f18 -09397293 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f778 -09397294 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f778 -09397295 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f788 -09397296 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f788 -09397297 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f798 -09397298 829.48718262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f798 -09397299 829.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a8 -09397300 829.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7a8 -09397301 829.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b8 -09397302 829.48724365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7b8 -09397303 829.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c8 -09397304 829.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7c8 -09397305 829.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d8 -09397306 829.48730469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7d8 -09397307 829.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -09397308 829.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7e8 -09397309 829.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -09397310 829.48736572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f7f8 -09397311 829.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -09397312 829.48742676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f808 -09397313 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -09397314 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f818 -09397315 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -09397316 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f828 -09397317 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -09397318 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f838 -09397319 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -09397320 829.48748779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f848 -09397321 829.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -09397322 829.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f858 -09397323 829.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -09397324 829.48754883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f868 -09397325 829.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -09397326 829.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f878 -09397327 829.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -09397328 829.48760986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f888 -09397329 829.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -09397330 829.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f898 -09397331 829.48767090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -09397332 829.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8a8 -09397333 829.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -09397334 829.48773193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8b8 -09397335 829.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -09397336 829.48779297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f8c8 -09400827 829.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e8 -09400828 829.53753662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x365e8 -09400829 829.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f8 -09400830 829.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x365f8 -09400831 829.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36608 -09400832 829.53759766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36608 -09400833 829.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36618 -09400834 829.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36618 -09400835 829.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36628 -09400836 829.53765869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36628 -09400837 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36638 -09400838 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36638 -09400839 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36648 -09400840 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36648 -09400841 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36658 -09400842 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36658 -09400843 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36668 -09400844 829.53771973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36668 -09400845 829.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36678 -09400846 829.53778076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36678 -09400847 829.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36688 -09400848 829.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36688 -09400849 829.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36698 -09400850 829.53784180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36698 -09400851 829.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a8 -09400852 829.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366a8 -09400853 829.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b8 -09400854 829.53790283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366b8 -09400855 829.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c8 -09400856 829.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366c8 -09400857 829.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d8 -09400858 829.53796387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366d8 -09400859 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e8 -09400860 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366e8 -09400861 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f8 -09400862 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x366f8 -09400863 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36708 -09400864 829.53802490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36708 -09400865 829.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36718 -09400866 829.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36718 -09400867 829.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36728 -09400868 829.53808594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36728 -09400869 829.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36738 -09400870 829.53814697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36738 -09404040 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca48 -09404041 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca48 -09404042 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca58 -09404043 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca58 -09404044 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca68 -09404045 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca68 -09404046 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca78 -09404047 829.58343506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca78 -09404048 829.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca88 -09404049 829.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca88 -09404050 829.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca98 -09404051 829.58349609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca98 -09404052 829.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa8 -09404053 829.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caa8 -09404054 829.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab8 -09404055 829.58355713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cab8 -09404056 829.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac8 -09404057 829.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cac8 -09404058 829.58361816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad8 -09404059 829.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cad8 -09404060 829.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae8 -09404061 829.58367920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cae8 -09404062 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf8 -09404063 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3caf8 -09404064 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -09404065 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb08 -09404066 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -09404067 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb18 -09404068 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -09404069 829.58374023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb28 -09404070 829.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -09404071 829.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb38 -09404072 829.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -09404073 829.58380127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb48 -09404074 829.58386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -09404075 829.58386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb58 -09404076 829.58386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -09404077 829.58386230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb68 -09404078 829.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -09404079 829.58392334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb78 -09404080 829.58398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -09404081 829.58398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb88 -09404082 829.58398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -09404083 829.58398438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb98 -09404304 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d288 -09404305 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d288 -09404306 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d298 -09404307 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d298 -09404308 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a8 -09404309 829.58728027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2a8 -09404310 829.58734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b8 -09404311 829.58734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2b8 -09404312 829.58734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c8 -09404313 829.58734131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2c8 -09404314 829.58740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d8 -09404315 829.58740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2d8 -09404316 829.58740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e8 -09404317 829.58740234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2e8 -09404318 829.58746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f8 -09404319 829.58746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d2f8 -09404320 829.58746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d308 -09404321 829.58746338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d308 -09404322 829.58752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d318 -09404323 829.58752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d318 -09404324 829.58752441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -09404325 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d328 -09404326 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -09404327 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d338 -09404328 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -09404329 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d348 -09404330 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -09404331 829.58758545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d358 -09404332 829.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -09404333 829.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d368 -09404334 829.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -09404335 829.58764648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d378 -09404336 829.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -09404337 829.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d388 -09404338 829.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d398 -09404339 829.58770752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d398 -09404340 829.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a8 -09404341 829.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3a8 -09404342 829.58776855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b8 -09404343 829.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3b8 -09404344 829.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c8 -09404345 829.58782959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3c8 -09404346 829.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d8 -09404347 829.58789063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d3d8 -09404694 829.59295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -09404695 829.59295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3deb8 -09404696 829.59295654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -09404697 829.59301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dec8 -09404698 829.59301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -09404699 829.59301758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ded8 -09404700 829.59307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -09404701 829.59307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dee8 -09404702 829.59307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -09404703 829.59307861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3def8 -09404704 829.59313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -09404705 829.59313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df08 -09404706 829.59313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -09404707 829.59313965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df18 -09404708 829.59320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -09404709 829.59320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df28 -09404710 829.59320068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -09404711 829.59326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df38 -09404712 829.59326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -09404713 829.59326172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df48 -09404714 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -09404715 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df58 -09404716 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -09404717 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df68 -09404718 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -09404719 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df78 -09404720 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -09404721 829.59332275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df88 -09404722 829.59338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -09404723 829.59338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df98 -09404724 829.59338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -09404725 829.59338379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfa8 -09404726 829.59344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -09404727 829.59344482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfb8 -09404728 829.59350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -09404729 829.59350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfc8 -09404730 829.59350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -09404731 829.59350586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfd8 -09404732 829.59356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -09404733 829.59356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dfe8 -09404734 829.59356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -09404735 829.59356689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dff8 -09404736 829.59362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e008 -09404737 829.59362793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e008 -09405030 829.59777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e928 -09405031 829.59777832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e928 -09405032 829.59783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e938 -09405033 829.59783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e938 -09405034 829.59783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e948 -09405035 829.59783936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e948 -09405036 829.59790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e958 -09405037 829.59790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e958 -09405038 829.59790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e968 -09405039 829.59790039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e968 -09405040 829.59796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e978 -09405041 829.59796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e978 -09405042 829.59796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e988 -09405043 829.59796143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e988 -09405044 829.59802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -09405045 829.59802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -09405046 829.59802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -09405047 829.59802246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -09405048 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -09405049 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -09405050 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -09405051 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -09405052 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -09405053 829.59808350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -09405054 829.59814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -09405055 829.59814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -09405056 829.59814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -09405057 829.59814453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -09405058 829.59820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -09405059 829.59820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -09405060 829.59820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -09405061 829.59820557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -09405062 829.59826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -09405063 829.59826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -09405064 829.59826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -09405065 829.59826660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -09405066 829.59832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea48 -09405067 829.59832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea48 -09405068 829.59832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea58 -09405069 829.59832764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea58 -09405070 829.59838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea68 -09405071 829.59838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea68 -09405072 829.59838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea78 -09405073 829.59838867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea78 -09405742 829.60809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -09405743 829.60809326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff68 -09405744 829.60815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -09405745 829.60815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff78 -09405746 829.60815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff88 -09405747 829.60815430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff88 -09405748 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff98 -09405749 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff98 -09405750 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa8 -09405751 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffa8 -09405752 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb8 -09405753 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffb8 -09405754 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc8 -09405755 829.60821533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffc8 -09405756 829.60827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd8 -09405757 829.60827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffd8 -09405758 829.60827637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe8 -09405759 829.60833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ffe8 -09405760 829.60833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff8 -09405761 829.60833740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fff8 -09405762 829.60839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40008 -09405763 829.60839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40008 -09405764 829.60839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40018 -09405765 829.60839844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40018 -09405766 829.60845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40028 -09405767 829.60845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40028 -09405768 829.60845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40038 -09405769 829.60845947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40038 -09405770 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40048 -09405771 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40048 -09405772 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40058 -09405773 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40058 -09405774 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40068 -09405775 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40068 -09405776 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40078 -09405777 829.60852051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40078 -09405778 829.60858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40088 -09405779 829.60858154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40088 -09405780 829.60864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40098 -09405781 829.60864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40098 -09405782 829.60864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a8 -09405783 829.60864258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x400a8 -09405784 829.60870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b8 -09405785 829.60870361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x400b8 -09409034 829.65612793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -09409035 829.65612793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46648 -09409036 829.65612793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -09409037 829.65612793 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46658 -09409038 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -09409039 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46668 -09409040 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46678 -09409041 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46678 -09409042 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46688 -09409043 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46688 -09409044 829.65618896 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46698 -09409045 829.65625000 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46698 -09409046 829.65625000 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -09409047 829.65625000 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466a8 -09409048 829.65631104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -09409049 829.65631104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466b8 -09409050 829.65631104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -09409051 829.65631104 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466c8 -09409052 829.65637207 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -09409053 829.65637207 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466d8 -09409054 829.65637207 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -09409055 829.65637207 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466e8 -09409056 829.65643311 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -09409057 829.65643311 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x466f8 -09409058 829.65643311 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -09409059 829.65643311 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46708 -09409060 829.65649414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46718 -09409061 829.65649414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46718 -09409062 829.65649414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46728 -09409063 829.65649414 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46728 -09409064 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46738 -09409065 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46738 -09409066 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46748 -09409067 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46748 -09409068 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46758 -09409069 829.65655518 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46758 -09409070 829.65661621 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46768 -09409071 829.65661621 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46768 -09409072 829.65661621 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46778 -09409073 829.65661621 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46778 -09409074 829.65667725 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46788 -09409075 829.65667725 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46788 -09409076 829.65667725 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46798 -09409077 829.65667725 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x46798 -09412648 829.70715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d738 -09412649 829.70715332 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d738 -09412650 829.70721436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d748 -09412651 829.70721436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d748 -09412652 829.70721436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d758 -09412653 829.70721436 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d758 -09412654 829.70727539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d768 -09412655 829.70727539 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d768 -09412656 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d778 -09412657 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d778 -09412658 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d788 -09412659 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d788 -09412660 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d798 -09412661 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d798 -09412662 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a8 -09412663 829.70733643 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7a8 -09412664 829.70739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b8 -09412665 829.70739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7b8 -09412666 829.70739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c8 -09412667 829.70739746 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7c8 -09412668 829.70745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d8 -09412669 829.70745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7d8 -09412670 829.70745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e8 -09412671 829.70745850 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7e8 -09412672 829.70751953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f8 -09412673 829.70751953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d7f8 -09412674 829.70751953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d808 -09412675 829.70751953 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d808 -09412676 829.70758057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d818 -09412677 829.70758057 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d818 -09412678 829.70764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d828 -09412679 829.70764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d828 -09412680 829.70764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d838 -09412681 829.70764160 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d838 -09412682 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09412683 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09412684 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -09412685 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -09412686 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -09412687 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -09412688 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -09412689 829.70770264 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -09412690 829.70776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -09412691 829.70776367 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -09415400 830.10620117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -09415401 830.10681152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -09415402 830.13720703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09415403 830.13720703 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09415404 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09415405 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09415406 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09415407 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09415408 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09415409 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09415410 830.13726807 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09415411 830.13732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09415412 830.13732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09415413 830.13732910 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09415414 830.13739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09415415 830.13739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09415416 830.13739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09415417 830.13739014 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09415418 830.13745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09415419 830.13745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09415420 830.13745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09415421 830.13745117 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09415422 830.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09415423 830.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09415424 830.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09415425 830.13751221 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09415426 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09415427 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09415428 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09415429 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09415430 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09415431 830.13757324 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09415432 830.13763428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09415433 830.13763428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09415434 830.13763428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09415435 830.13763428 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09415436 830.13769531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09415437 830.13769531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09415438 830.13769531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09415439 830.13769531 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09415440 830.13775635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09415441 830.13775635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09415442 830.13775635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09415443 830.13775635 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09415444 830.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09415445 830.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09415446 830.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09415447 830.13781738 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09415448 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09415449 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09415450 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09415451 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09415452 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09415453 830.13787842 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09415454 830.13793945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09415455 830.13793945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09415456 830.13793945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09415457 830.13793945 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09415458 830.13800049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09415459 830.13800049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09415460 830.13800049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09415461 830.13800049 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09415462 830.13806152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09415463 830.13806152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09415464 830.13806152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09415465 830.13806152 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09415466 830.13812256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09415467 830.13812256 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09415468 830.13818359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09415469 830.13818359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09415470 830.13818359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09415471 830.13818359 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09415472 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09415473 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09415474 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09415475 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09415476 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09415477 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09415478 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09415479 830.13824463 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09415480 830.13830566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09415481 830.13830566 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09415482 830.13836670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09415483 830.13842773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09415484 830.13842773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09415485 830.13842773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09415486 830.13848877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09415487 830.13848877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09415488 830.13848877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09415489 830.13848877 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09415490 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09415491 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09415492 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09415493 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09415494 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09415495 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09415496 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09415497 830.13854980 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09415498 830.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09415499 830.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09415500 830.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09415501 830.13861084 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09415502 830.13867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09415503 830.13867188 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09415504 830.13873291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09415505 830.13873291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09415506 830.13873291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09415507 830.13873291 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09415508 830.13879395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09415509 830.13879395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09415510 830.13879395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09415511 830.13879395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09415512 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09415513 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09415514 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09415515 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09415516 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09415517 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09415518 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09415519 830.13885498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09415520 830.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09415521 830.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09415522 830.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09415523 830.13891602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09415524 830.13897705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09415525 830.13897705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09415526 830.13903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09415527 830.13903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09415528 830.13903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09415529 830.13903809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09415530 830.13909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09415531 830.13909912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09415532 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09415533 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09415534 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09415535 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09415536 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09415537 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09415538 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09415539 830.13916016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09415540 830.13922119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09415541 830.13922119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09415542 830.13922119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09415543 830.13922119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09415544 830.13928223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09415545 830.13928223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09415546 830.13928223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09415547 830.13928223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09415548 830.13934326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09415549 830.13934326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09415550 830.13934326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09415551 830.13940430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09415552 830.13940430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09415553 830.13940430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09415554 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09415555 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09415556 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09415557 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09415558 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09415559 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09415560 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09415561 830.13946533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09415562 830.13952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09415563 830.13952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09415564 830.13952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09415565 830.13952637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09415566 830.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09415567 830.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09415568 830.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09415569 830.13958740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09415570 830.13964844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09415571 830.13964844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09415572 830.13970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09415573 830.13970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09415574 830.13970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09415575 830.13970947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09415576 830.13977051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09415577 830.13977051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09415578 830.13977051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09415579 830.13977051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09415580 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09415581 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09415582 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09415583 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09415584 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09415585 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09415586 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09415587 830.13983154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09415588 830.13989258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09415589 830.13989258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09415590 830.13989258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09415591 830.13995361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09415592 830.13995361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09415593 830.13995361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09415594 830.14001465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09415595 830.14001465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09415596 830.14001465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09415597 830.14001465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09415598 830.14007568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09415599 830.14007568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09415600 830.14007568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09415601 830.14007568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09415602 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09415603 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09415604 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09415605 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09415606 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09415607 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09415608 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09415609 830.14013672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09415610 830.14019775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09415611 830.14019775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09415612 830.14025879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09415613 830.14025879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09418680 830.18414307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -09418681 830.18414307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -09418682 830.18414307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -09418683 830.18414307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -09418684 830.18420410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -09418685 830.18420410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -09418686 830.18420410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -09418687 830.18420410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -09418688 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -09418689 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -09418690 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -09418691 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -09418692 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -09418693 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -09418694 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -09418695 830.18426514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -09418696 830.18432617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -09418697 830.18432617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -09418698 830.18438721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -09418699 830.18438721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -09418700 830.18438721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -09418701 830.18438721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -09418702 830.18444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -09418703 830.18444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -09418704 830.18444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -09418705 830.18444824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -09418706 830.18450928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -09418707 830.18450928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -09418708 830.18450928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -09418709 830.18450928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -09418710 830.18457031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -09418711 830.18457031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -09418712 830.18457031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -09418713 830.18457031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -09418714 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -09418715 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -09418716 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -09418717 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -09418718 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -09418719 830.18463135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -09418720 830.18469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -09418721 830.18469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -09418722 830.18469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -09418723 830.18469238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -09422368 830.23706055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -09422369 830.23706055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xe9f0 -09422370 830.23712158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -09422371 830.23712158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea00 -09422372 830.23712158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -09422373 830.23718262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea10 -09422374 830.23718262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -09422375 830.23718262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea20 -09422376 830.23724365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -09422377 830.23724365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea30 -09422378 830.23724365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -09422379 830.23724365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea40 -09422380 830.23730469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -09422381 830.23730469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea50 -09422382 830.23730469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -09422383 830.23730469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea60 -09422384 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -09422385 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea70 -09422386 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -09422387 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea80 -09422388 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -09422389 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xea90 -09422390 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -09422391 830.23736572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaa0 -09422392 830.23742676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -09422393 830.23742676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeab0 -09422394 830.23748779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -09422395 830.23748779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeac0 -09422396 830.23748779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -09422397 830.23748779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xead0 -09422398 830.23754883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -09422399 830.23754883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeae0 -09422400 830.23754883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -09422401 830.23754883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeaf0 -09422402 830.23760986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -09422403 830.23760986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb00 -09422404 830.23760986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -09422405 830.23760986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb10 -09422406 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -09422407 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb20 -09422408 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -09422409 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb30 -09422410 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -09422411 830.23767090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0xeb40 -09435596 830.43078613 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -09435597 830.43078613 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28750 -09435598 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -09435599 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28760 -09435600 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -09435601 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28770 -09435602 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -09435603 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28780 -09435604 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -09435605 830.43084717 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28790 -09435606 830.43090820 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -09435607 830.43090820 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a0 -09435608 830.43090820 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -09435609 830.43090820 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b0 -09435610 830.43096924 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -09435611 830.43096924 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c0 -09435612 830.43096924 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -09435613 830.43103027 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d0 -09435614 830.43103027 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -09435615 830.43103027 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e0 -09435616 830.43109131 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -09435617 830.43109131 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f0 -09435618 830.43109131 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -09435619 830.43109131 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28800 -09435620 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -09435621 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28810 -09435622 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -09435623 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28820 -09435624 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -09435625 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28830 -09435626 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -09435627 830.43115234 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28840 -09435628 830.43121338 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -09435629 830.43121338 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28850 -09435630 830.43121338 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -09435631 830.43121338 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28860 -09435632 830.43127441 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -09435633 830.43127441 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28870 -09435634 830.43133545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -09435635 830.43133545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28880 -09435636 830.43133545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -09435637 830.43133545 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x28890 -09435638 830.43139648 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -09435639 830.43139648 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a0 -09438612 830.47406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -09438613 830.47406006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e590 -09438614 830.47412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -09438615 830.47412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5a0 -09438616 830.47412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -09438617 830.47412109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5b0 -09438618 830.47418213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -09438619 830.47418213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5c0 -09438620 830.47418213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -09438621 830.47418213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5d0 -09438622 830.47424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -09438623 830.47424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5e0 -09438624 830.47424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -09438625 830.47424316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e5f0 -09438626 830.47430420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -09438627 830.47430420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e600 -09438628 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -09438629 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e610 -09438630 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -09438631 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e620 -09438632 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -09438633 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e630 -09438634 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -09438635 830.47436523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e640 -09438636 830.47442627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -09438637 830.47442627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e650 -09438638 830.47442627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -09438639 830.47442627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e660 -09438640 830.47448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -09438641 830.47448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e670 -09438642 830.47448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -09438643 830.47448730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e680 -09438644 830.47454834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -09438645 830.47454834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e690 -09438646 830.47454834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -09438647 830.47460938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6a0 -09438648 830.47460938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -09438649 830.47460938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6b0 -09438650 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -09438651 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6c0 -09438652 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -09438653 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6d0 -09438654 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -09438655 830.47467041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e6e0 -09441476 830.51538086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -09441477 830.51538086 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f10 -09441478 830.51544189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -09441479 830.51544189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f20 -09441480 830.51544189 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -09441481 830.51550293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f30 -09441482 830.51550293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -09441483 830.51550293 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f40 -09441484 830.51556396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -09441485 830.51556396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f50 -09441486 830.51556396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -09441487 830.51556396 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f60 -09441488 830.51562500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -09441489 830.51562500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f70 -09441490 830.51562500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -09441491 830.51562500 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f80 -09441492 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -09441493 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f90 -09441494 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -09441495 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fa0 -09441496 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -09441497 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fb0 -09441498 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -09441499 830.51568604 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fc0 -09441500 830.51574707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -09441501 830.51574707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fd0 -09441502 830.51574707 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -09441503 830.51580811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33fe0 -09441504 830.51580811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -09441505 830.51580811 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x33ff0 -09441506 830.51586914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -09441507 830.51586914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34000 -09441508 830.51586914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -09441509 830.51586914 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34010 -09441510 830.51593018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -09441511 830.51593018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34020 -09441512 830.51593018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -09441513 830.51593018 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34030 -09441514 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -09441515 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34040 -09441516 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -09441517 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34050 -09441518 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -09441519 830.51599121 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x34060 -09444276 830.55755615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -09444277 830.55755615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39690 -09444278 830.55755615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -09444279 830.55755615 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396a0 -09444280 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -09444281 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396b0 -09444282 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -09444283 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396c0 -09444284 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -09444285 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396d0 -09444286 830.55761719 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -09444287 830.55767822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396e0 -09444288 830.55767822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -09444289 830.55767822 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x396f0 -09444290 830.55773926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -09444291 830.55773926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39700 -09444292 830.55773926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -09444293 830.55773926 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39710 -09444294 830.55780029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -09444295 830.55780029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39720 -09444296 830.55780029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -09444297 830.55780029 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39730 -09444298 830.55786133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -09444299 830.55786133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39740 -09444300 830.55786133 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -09444301 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39750 -09444302 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -09444303 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39760 -09444304 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -09444305 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39770 -09444306 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -09444307 830.55792236 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39780 -09444308 830.55798340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -09444309 830.55798340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x39790 -09444310 830.55798340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -09444311 830.55798340 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397a0 -09444312 830.55804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -09444313 830.55804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397b0 -09444314 830.55804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -09444315 830.55804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397c0 -09444316 830.55810547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -09444317 830.55810547 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397d0 -09444318 830.55816650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -09444319 830.55816650 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x397e0 -09446952 830.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -09446953 830.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea30 -09446954 830.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -09446955 830.59552002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea40 -09446956 830.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -09446957 830.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea50 -09446958 830.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -09446959 830.59558105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea60 -09446960 830.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -09446961 830.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea70 -09446962 830.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -09446963 830.59564209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea80 -09446964 830.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -09446965 830.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea90 -09446966 830.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -09446967 830.59570313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaa0 -09446968 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -09446969 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eab0 -09446970 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -09446971 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eac0 -09446972 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -09446973 830.59576416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ead0 -09446974 830.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -09446975 830.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eae0 -09446976 830.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -09446977 830.59582520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eaf0 -09446978 830.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -09446979 830.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb00 -09446980 830.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -09446981 830.59588623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb10 -09446982 830.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -09446983 830.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb20 -09446984 830.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -09446985 830.59594727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb30 -09446986 830.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -09446987 830.59600830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb40 -09446988 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -09446989 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb50 -09446990 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -09446991 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb60 -09446992 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -09446993 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb70 -09446994 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -09446995 830.59606934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb80 -09450158 830.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -09450159 830.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e60 -09450160 830.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -09450161 830.64135742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e70 -09450162 830.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -09450163 830.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e80 -09450164 830.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -09450165 830.64141846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e90 -09450166 830.64147949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -09450167 830.64147949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ea0 -09450168 830.64147949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -09450169 830.64147949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44eb0 -09450170 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -09450171 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ec0 -09450172 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -09450173 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ed0 -09450174 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -09450175 830.64154053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ee0 -09450176 830.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -09450177 830.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ef0 -09450178 830.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -09450179 830.64160156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f00 -09450180 830.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -09450181 830.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f10 -09450182 830.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -09450183 830.64166260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f20 -09450184 830.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -09450185 830.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f30 -09450186 830.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -09450187 830.64172363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f40 -09450188 830.64178467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -09450189 830.64178467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f50 -09450190 830.64178467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -09450191 830.64178467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f60 -09450192 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -09450193 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f70 -09450194 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -09450195 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f80 -09450196 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -09450197 830.64184570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f90 -09450198 830.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -09450199 830.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fa0 -09450200 830.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -09450201 830.64190674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x44fb0 -09453150 830.69207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -09453151 830.69207764 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abe0 -09453152 830.69213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -09453153 830.69213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4abf0 -09453154 830.69213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -09453155 830.69213867 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac00 -09453156 830.69219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -09453157 830.69219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac10 -09453158 830.69219971 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -09453159 830.69226074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac20 -09453160 830.69226074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -09453161 830.69226074 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac30 -09453162 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -09453163 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac40 -09453164 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -09453165 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac50 -09453166 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -09453167 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac60 -09453168 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -09453169 830.69232178 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac70 -09453170 830.69238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -09453171 830.69238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac80 -09453172 830.69238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -09453173 830.69238281 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac90 -09453174 830.69244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -09453175 830.69244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aca0 -09453176 830.69244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -09453177 830.69244385 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acb0 -09453178 830.69250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -09453179 830.69250488 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acc0 -09453180 830.69256592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -09453181 830.69256592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acd0 -09453182 830.69256592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -09453183 830.69256592 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ace0 -09453184 830.69262695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -09453185 830.69262695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4acf0 -09453186 830.69262695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -09453187 830.69262695 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad00 -09453188 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -09453189 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad10 -09453190 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -09453191 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad20 -09453192 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -09453193 830.69268799 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad30 -09455600 830.73272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -09455601 830.73272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f870 -09455602 830.73272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -09455603 830.73272705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f880 -09455604 830.73278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -09455605 830.73278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f890 -09455606 830.73278809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -09455607 830.73284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8a0 -09455608 830.73284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -09455609 830.73284912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8b0 -09455610 830.73291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -09455611 830.73291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8c0 -09455612 830.73291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -09455613 830.73291016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8d0 -09455614 830.73297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -09455615 830.73297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8e0 -09455616 830.73297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -09455617 830.73297119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f8f0 -09455618 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -09455619 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f900 -09455620 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -09455621 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f910 -09455622 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -09455623 830.73303223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f920 -09455624 830.73309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -09455625 830.73309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f930 -09455626 830.73309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -09455627 830.73309326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f940 -09455628 830.73315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -09455629 830.73315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f950 -09455630 830.73315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -09455631 830.73315430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f960 -09455632 830.73321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -09455633 830.73321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f970 -09455634 830.73321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -09455635 830.73321533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f980 -09455636 830.73327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -09455637 830.73327637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f990 -09455638 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -09455639 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9a0 -09455640 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -09455641 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9b0 -09455642 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -09455643 830.73333740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f9c0 -09457307 831.59667969 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09457308 831.61798096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09457309 831.61798096 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09457310 833.30480957 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09457311 833.30487061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09457312 833.30487061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09457313 833.30487061 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09457314 833.30505371 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09457315 833.30505371 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09457316 833.30511475 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09457317 833.30511475 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09457318 833.61871338 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09457319 833.64160156 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09457320 833.64160156 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09457321 834.74609375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09457322 834.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09457323 834.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09457324 834.74615479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09457325 834.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09457326 834.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09457327 834.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09457328 834.74621582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09457329 834.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09457330 834.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09457331 834.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09457332 834.74627686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09457333 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09457334 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09457335 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09457336 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09457337 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09457338 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09457339 834.74633789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09457340 834.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09457341 834.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09457342 834.74639893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09457343 834.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09457344 834.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09457345 834.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09457346 834.74645996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09457347 834.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09457348 834.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09457349 834.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09457350 834.74652100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09457351 834.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09457352 834.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09457353 834.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09457354 834.74658203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09457355 834.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09457356 834.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09457357 834.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09457358 834.74664307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09457359 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09457360 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09457361 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09457362 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09457363 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09457364 834.74670410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09457365 834.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09457366 834.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09457367 834.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09457368 834.74676514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09457369 834.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09457370 834.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09457371 834.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09457372 834.74682617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09457373 834.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09457374 834.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09457375 834.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09457376 834.74688721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09457377 834.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09457378 834.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09457379 834.74694824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09457380 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09457381 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09457382 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09457383 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09457384 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09457385 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09457386 834.74700928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09457387 834.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09457388 834.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09457389 834.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09457390 834.74707031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09457391 834.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09457392 834.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09457393 834.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09457394 834.74713135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09457395 834.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09457396 834.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09457397 834.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09457398 834.74719238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09457399 834.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09457400 834.74725342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09457401 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09457402 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09457403 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09457404 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09457405 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09457406 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09457407 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09457408 834.74731445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09457409 834.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09457410 834.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09457411 834.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09457412 834.74737549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09457413 834.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09457414 834.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09457415 834.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09457416 834.74743652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09457417 834.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09457418 834.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09457419 834.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09457420 834.74749756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09457421 834.74755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09457422 834.74755859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09457423 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09457424 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09457425 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09457426 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09457427 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09457428 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09457429 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09457430 834.74761963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09457431 834.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09457432 834.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09457433 834.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09457434 834.74768066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09457435 834.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09457436 834.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09457437 834.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09457438 834.74774170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09457439 834.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09457440 834.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09457441 834.74780273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09457442 834.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09457443 834.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09457444 834.74786377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09457445 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09457446 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09457447 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09457448 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09457449 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09457450 834.74792480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09457451 834.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09457452 834.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09457453 834.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09457454 834.74798584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09457455 834.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09457456 834.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09457457 834.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09457458 834.74804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09457459 834.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09457460 834.74810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09457461 834.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09457462 834.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09457463 834.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09457464 834.74816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09457465 834.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09457466 834.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09457467 834.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09457468 834.74822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09457469 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09457470 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09457471 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09457472 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09457473 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09457474 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09457475 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09457476 834.74829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09457477 834.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09457478 834.74835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09457479 834.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09457480 834.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09457481 834.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09457482 834.74841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09457483 834.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09457484 834.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09457485 834.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09457486 834.74847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09457487 834.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09457488 834.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09457489 834.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09457490 834.74853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09457491 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09457492 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09457493 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09457494 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09457495 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09457496 834.74859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09457497 834.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09457498 834.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09457499 834.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09457500 834.74865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09457501 834.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09457502 834.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09457503 834.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09457504 834.74871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09457505 834.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09457506 834.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09457507 834.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09457508 834.74877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09457509 834.74884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09457510 834.74884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09457511 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09457512 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09457513 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09457514 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09457515 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09457516 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09457517 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09457518 834.74890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09457519 834.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09457520 834.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09457521 834.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09457522 834.74896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09457523 834.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09457524 834.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09457525 834.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09457526 834.74902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09457527 834.74908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09457528 834.74908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09457529 834.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09457530 834.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09457531 834.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09457532 834.74914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09457533 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09457534 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09457535 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09457536 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09457537 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09457538 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09457539 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09457540 834.74920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09457541 834.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09457542 834.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09457543 834.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09457544 834.74926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09457545 834.74932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09457546 834.74932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09457547 834.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09457548 834.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09457549 834.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09457550 834.74938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09457551 834.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09457552 834.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09457553 834.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09457554 834.74945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09457555 834.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09457556 834.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09457557 834.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09457558 834.74951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09457559 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09457560 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09457561 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09457562 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09457563 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09457564 834.74957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09457565 834.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09457566 834.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09457567 834.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09457568 834.74963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09457569 834.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09457570 834.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09457571 834.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09457572 834.74969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09457573 834.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09457574 834.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09457575 834.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09457576 834.74975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09457577 834.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09457578 834.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09457579 834.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09457580 834.74981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09457581 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09457582 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09457583 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09457584 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09457585 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09457586 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09457587 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09457588 834.74987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09457589 834.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09457590 834.74993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09457591 834.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09457592 834.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09457593 834.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09457594 834.75000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09457595 834.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09457596 834.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09457597 834.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09457598 834.75006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09457599 834.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09457600 834.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09457601 834.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09457602 834.75012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09457603 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09457604 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09457605 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09457606 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09457607 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09457608 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09457609 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09457610 834.75018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09457611 834.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09457612 834.75024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09457613 834.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09457614 834.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09457615 834.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09457616 834.75030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09457617 834.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09457618 834.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09457619 834.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09457620 834.75036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09457621 834.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09457622 834.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09457623 834.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09457624 834.75042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09457625 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09457626 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09457627 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09457628 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09457629 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09457630 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09457631 834.75048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09457632 834.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09457633 834.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09457634 834.75054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09457635 834.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09457636 834.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09457637 834.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09457638 834.75061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09457639 834.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09457640 834.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09457641 834.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09457642 834.75067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09457643 834.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09457644 834.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09457645 834.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09457646 834.75073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09457647 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09457648 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09457649 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09457650 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09457651 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09457652 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09457653 834.75079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09457654 834.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09457655 834.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09457656 834.75085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09457657 834.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09457658 834.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09457659 834.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09457660 834.75091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09457661 834.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09457662 834.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09457663 834.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09457664 834.75097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09457665 834.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09457666 834.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09457667 834.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09457668 834.75103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09457669 834.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09457670 834.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09457671 834.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09457672 834.75109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09457673 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09457674 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09457675 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09457676 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09457677 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09457678 834.75115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09457679 834.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09457680 834.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09457681 834.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09457682 834.75122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09457683 834.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09457684 834.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09457685 834.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09457686 834.75128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09457687 834.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09457688 834.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09457689 834.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09457690 834.75134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09457691 834.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09457692 834.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09457693 834.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09457694 834.75140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09457695 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09457696 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09457697 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09457698 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09457699 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09457700 834.75146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09457701 834.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09457702 834.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09457703 834.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09457704 834.75152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09457705 834.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09457706 834.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09457707 834.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09457708 834.75158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09457709 834.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09457710 834.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09457711 834.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09457712 834.75164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09457713 834.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09457714 834.75170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09457715 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09457716 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09457717 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09457718 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09457719 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09457720 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09457721 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09457722 834.75177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09457723 834.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09457724 834.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09457725 834.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09457726 834.75183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09457727 834.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09457728 834.75189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09457729 834.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09457730 834.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09457731 834.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09457732 834.75195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09457733 834.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09457734 834.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09457735 834.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09457736 834.75201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09457737 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09457738 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09457739 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09457740 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09457741 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09457742 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09457743 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09457744 834.75207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09457745 834.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09457746 834.75213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09457747 834.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09457748 834.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09457749 834.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09457750 834.75219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09457751 834.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09457752 834.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09457753 834.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09457754 834.75225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09457755 834.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09457756 834.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09457757 834.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09457758 834.75231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09457759 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09457760 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09457761 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09457762 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09457763 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09457764 834.75238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09457765 834.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09457766 834.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09457767 834.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09457768 834.75244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09457769 834.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09457770 834.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09457771 834.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09457772 834.75250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09457773 834.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09457774 834.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09457775 834.75256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09457776 834.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09457777 834.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09457778 834.75262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09457779 834.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09457780 834.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09457781 834.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09457782 834.75268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09457783 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09457784 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09457785 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09457786 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09457787 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09457788 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09457789 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09457790 834.75274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09457791 834.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09457792 834.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09457793 834.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09457794 834.75280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09457795 834.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09457796 834.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09457797 834.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09457798 834.75286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09457799 834.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09457800 834.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09457801 834.75292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09457802 834.75299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09457803 834.75299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09457804 834.75299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09457805 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09457806 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09457807 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09457808 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09457809 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09457810 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09457811 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09457812 834.75305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09457813 834.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09457814 834.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09457815 834.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09457816 834.75311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09457817 834.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09457818 834.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09457819 834.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09457820 834.75317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09457821 834.75323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09457822 834.75323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09457823 834.75323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09457824 834.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09457825 834.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09457826 834.75329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09457827 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09457828 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09457829 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09457830 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09457831 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09457832 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09457833 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09457834 834.75335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09457835 834.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09457836 834.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09457837 834.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09457838 834.75341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09457839 834.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09457840 834.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09457841 834.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09457842 834.75347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09457843 834.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09457844 834.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09457845 834.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09457846 834.75354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09457847 834.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09457848 834.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09457849 834.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09457850 834.75360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09457851 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09457852 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09457853 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09457854 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09457855 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09457856 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09457857 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09457858 834.75366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09457859 834.75372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09457860 834.75372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09457861 834.75372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09457862 834.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09457863 834.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09457864 834.75378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09457865 834.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09457866 834.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09457867 834.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09457868 834.75384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09457869 834.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09457870 834.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09457871 834.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09457872 834.75390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09457873 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09457874 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09457875 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09457876 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09457877 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09457878 834.75396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09457879 834.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09457880 834.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09457881 834.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09457882 834.75402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09457883 834.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09457884 834.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09457885 834.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09457886 834.75408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09457887 834.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09457888 834.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09457889 834.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09457890 834.75415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09457891 834.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09457892 834.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09457893 834.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09457894 834.75421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09457895 834.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09457896 834.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09457897 834.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09457898 834.75427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09457899 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09457900 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09457901 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09457902 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09457903 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09457904 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09457905 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09457906 834.75433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09457907 834.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09457908 834.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09457909 834.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09457910 834.75439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09457911 834.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09457912 834.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09457913 834.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09457914 834.75445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09457915 834.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09457916 834.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09457917 834.75451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09457918 834.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09457919 834.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09457920 834.75457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09457921 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09457922 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09457923 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09457924 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09457925 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09457926 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09457927 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09457928 834.75463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09457929 834.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09457930 834.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09457931 834.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09457932 834.75469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09457933 834.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09457934 834.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09457935 834.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09457936 834.75476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09457937 834.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09457938 834.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09457939 834.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09457940 834.75482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09457941 834.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09457942 834.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09457943 834.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09457944 834.75488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09457945 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09457946 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09457947 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09457948 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09457949 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09457950 834.75494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09457951 834.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09457952 834.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09457953 834.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09457954 834.75500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09457955 834.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09457956 834.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09457957 834.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09457958 834.75506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09457959 834.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09457960 834.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09457961 834.75512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09457962 834.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09457963 834.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09457964 834.75518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09457965 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09457966 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09457967 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09457968 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09457969 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09457970 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09457971 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09457972 834.75524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09457973 834.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09457974 834.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09457975 834.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09457976 834.75531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09457977 834.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09457978 834.75537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09457979 834.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09457980 834.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09457981 834.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09457982 834.75543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09457983 834.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09457984 834.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09457985 834.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09457986 834.75549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09457987 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09457988 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09457989 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09457990 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09457991 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09457992 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09457993 834.75555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09457994 834.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09457995 834.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09457996 834.75561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09457997 834.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09457998 834.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09457999 834.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09458000 834.75567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09458001 834.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09458002 834.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09458003 834.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09458004 834.75573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09458005 834.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09458006 834.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09458007 834.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09458008 834.75579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09458009 834.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09458010 834.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09458011 834.75585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09458012 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09458013 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09458014 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09458015 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09458016 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09458017 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09458018 834.75592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09458019 834.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09458020 834.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09458021 834.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09458022 834.75598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09458023 834.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09458024 834.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09458025 834.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09458026 834.75604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09458027 834.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09458028 834.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09458029 834.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09458030 834.75610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09458031 834.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09458032 834.75616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09458033 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09458034 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09458035 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09458036 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09458037 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09458038 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09458039 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09458040 834.75622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09458041 834.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09458042 834.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09458043 834.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09458044 834.75628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09458045 834.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09458046 834.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09458047 834.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09458048 834.75634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09458049 834.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09458050 834.75640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09458051 834.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09458052 834.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09458053 834.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09458054 834.75646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09458055 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09458056 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09458057 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09458058 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09458059 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09458060 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09458061 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09458062 834.75653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09458063 834.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09458064 834.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09458065 834.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09458066 834.75659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09458067 834.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09458068 834.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09458069 834.75665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09458070 834.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09458071 834.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09458072 834.75671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09458073 834.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09458074 834.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09458075 834.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09458076 834.75677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09458077 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09458078 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09458079 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09458080 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09458081 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09458082 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09458083 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09458084 834.75683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09458085 834.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09458086 834.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09458087 834.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09458088 834.75689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09458089 834.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09458090 834.75695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09458091 834.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09458092 834.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09458093 834.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09458094 834.75701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09458095 834.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09458096 834.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09458097 834.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09458098 834.75708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09458099 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09458100 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09458101 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09458102 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09458103 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09458104 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09458105 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09458106 834.75714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09458107 834.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09458108 834.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09458109 834.75720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09458110 834.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09458111 834.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09458112 834.75726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09458113 834.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09458114 834.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09458115 834.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09458116 834.75732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09458117 834.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09458118 834.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09458119 834.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09458120 834.75738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09458121 834.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09458122 834.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09458123 834.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09458124 834.75744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09458125 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09458126 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09458127 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09458128 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09458129 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09458130 834.75750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09458131 834.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09458132 834.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09458133 834.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09458134 834.75756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09458135 834.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09458136 834.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09458137 834.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09458138 834.75762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09458139 834.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09458140 834.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09458141 834.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09458142 834.75769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09458143 834.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09458144 834.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09458145 834.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09458146 834.75775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09458147 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09458148 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09458149 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09458150 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09458151 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09458152 834.75781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09458153 834.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09458154 834.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09458155 834.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09458156 834.75787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09458157 834.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09458158 834.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09458159 834.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09458160 834.75793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09458161 834.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09458162 834.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09458163 834.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09458164 834.75799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09458165 834.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09458166 834.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09458167 834.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09458168 834.75805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09458169 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09458170 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09458171 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09458172 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09458173 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09458174 834.75811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09458175 834.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09458176 834.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09458177 834.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09458178 834.75817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09458179 834.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09458180 834.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09458181 834.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09458182 834.75823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09458183 834.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09458184 834.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09458185 834.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09458186 834.75830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09458187 834.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09458188 834.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09458189 834.75836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09458190 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09458191 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09458192 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09458193 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09458194 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09458195 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09458196 834.75842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09458197 834.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09458198 834.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09458199 834.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09458200 834.75848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09458201 834.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09458202 834.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09458203 834.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09458204 834.75854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09458205 834.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09458206 834.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09458207 834.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09458208 834.75860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09458209 834.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09458210 834.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09458211 834.75866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09458212 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09458213 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09458214 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09458215 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09458216 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09458217 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09458218 834.75872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09458219 834.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09458220 834.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09458221 834.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09458222 834.75878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09458223 834.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09458224 834.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09458225 834.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09458226 834.75885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09458227 834.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09458228 834.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09458229 834.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09458230 834.75891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09458231 834.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09458232 834.75897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09458233 834.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09458234 834.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09458235 834.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09458236 834.75903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09458237 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09458238 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09458239 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09458240 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09458241 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09458242 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09458243 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09458244 834.75909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09458245 834.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09458246 834.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09458247 834.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09458248 834.75915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09458249 834.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09458250 834.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09458251 834.75921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09458252 834.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09458253 834.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09458254 834.75927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09458255 834.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09458256 834.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09458257 834.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09458258 834.75933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09458259 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09458260 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09458261 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09458262 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09458263 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09458264 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09458265 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09458266 834.75939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09458267 834.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09458268 834.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09458269 834.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09458270 834.75946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09458271 834.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09458272 834.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09458273 834.75952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09458274 834.75958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09458275 834.75958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09458276 834.75958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09458277 834.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09458278 834.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09458279 834.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09458280 834.75964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09458281 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09458282 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09458283 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09458284 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09458285 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09458286 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09458287 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09458288 834.75970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09458289 834.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09458290 834.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09458291 834.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09458292 834.75976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09458293 834.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09458294 834.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09458295 834.75982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09458296 834.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09458297 834.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09458298 834.75988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09458299 834.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09458300 834.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09458301 834.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09458302 834.75994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09458303 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09458304 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09458305 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09458306 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09458307 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09458308 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09458309 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09458310 834.76000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09458311 834.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09458312 834.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09458313 834.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09458314 834.76007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09458315 834.76013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09458316 834.76013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09458317 834.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09458318 834.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09458319 834.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09458320 834.76019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09458321 834.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09458322 834.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09458323 834.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09458324 834.76025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09458325 834.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09458326 834.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09458327 834.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09458328 834.76031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09458329 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09458330 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09458331 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09458332 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09458333 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09458334 834.76037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09458335 834.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09458336 834.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09458337 834.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09458338 834.76043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09458339 834.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09458340 834.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09458341 834.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09458342 834.76049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09458343 834.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09458344 834.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09458345 834.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09458346 834.76055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09458347 834.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09458348 834.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09458349 834.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09458350 834.76062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09458351 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09458352 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09458353 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09458354 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09458355 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09458356 834.76068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09458357 834.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09458358 834.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09458359 834.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09458360 834.76074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09458361 834.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09458362 834.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09458363 834.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09458364 834.76080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09458365 834.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09458366 834.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09458367 834.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09458368 834.76086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09458369 834.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09458370 834.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09458371 834.76092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09458372 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09458373 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09458374 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09458375 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09458376 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09458377 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09458378 834.76098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09458379 834.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09458380 834.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09458381 834.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09458382 834.76104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09458383 834.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09458384 834.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09458385 834.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09458386 834.76110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09458387 834.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09458388 834.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09458389 834.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09458390 834.76116943 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09458391 834.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09458392 834.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09458393 834.76123047 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09458394 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09458395 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09458396 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09458397 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09458398 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09458399 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09458400 834.76129150 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09458401 834.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09458402 834.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09458403 834.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09458404 834.76135254 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09458405 834.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09458406 834.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09458407 834.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09458408 834.76141357 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09458409 834.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09458410 834.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09458411 834.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09458412 834.76147461 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09458413 834.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09458414 834.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09458415 834.76153564 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09458416 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09458417 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09458418 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09458419 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09458420 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09458421 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09458422 834.76159668 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09458423 834.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09458424 834.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09458425 834.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09458426 834.76165771 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09458427 834.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09458428 834.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09458429 834.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09458430 834.76171875 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09458431 834.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09458432 834.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09458433 834.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09458434 834.76177979 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09458435 834.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09458436 834.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09458437 834.76184082 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09458438 834.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09458439 834.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09458440 834.76190186 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09458441 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09458442 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09458443 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09458444 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09458445 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09458446 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09458447 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09458448 834.76196289 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09458449 834.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09458450 834.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09458451 834.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09458452 834.76202393 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09458453 834.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09458454 834.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09458455 834.76208496 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09458456 834.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09458457 834.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09458458 834.76214600 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09458459 834.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09458460 834.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09458461 834.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09458462 834.76220703 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09458463 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09458464 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09458465 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09458466 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09458467 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09458468 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09458469 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09458470 834.76226807 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09458471 834.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09458472 834.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09458473 834.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09458474 834.76232910 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09458475 834.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09458476 834.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09458477 834.76239014 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09458478 834.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09458479 834.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09458480 834.76245117 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09458481 834.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09458482 834.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09458483 834.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09458484 834.76251221 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09458485 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09458486 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09458487 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09458488 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09458489 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09458490 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09458491 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09458492 834.76257324 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09458493 834.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09458494 834.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09458495 834.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09458496 834.76263428 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09458497 834.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09458498 834.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09458499 834.76269531 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09458500 834.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09458501 834.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09458502 834.76275635 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09458503 834.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09458504 834.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09458505 834.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09458506 834.76281738 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09458507 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09458508 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09458509 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09458510 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09458511 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09458512 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09458513 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09458514 834.76287842 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09458515 834.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09458516 834.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09458517 834.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09458518 834.76293945 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09458519 834.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09458520 834.76300049 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09458521 834.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09458522 834.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09458523 834.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09458524 834.76306152 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09458525 834.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09458526 834.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09458527 834.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09458528 834.76312256 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09458529 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09458530 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09458531 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09458532 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09458533 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09458534 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09458535 834.76318359 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09458536 834.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09458537 834.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09458538 834.76324463 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09458539 834.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09458540 834.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09458541 834.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09458542 834.76330566 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09458543 834.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09458544 834.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09458545 834.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09458546 834.76336670 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09458547 834.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09458548 834.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09458549 834.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09458550 834.76342773 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09458551 834.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09458552 834.76348877 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09458553 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09458554 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09458555 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09458556 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09458557 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09458558 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09458559 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09458560 834.76354980 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09458561 834.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09458562 834.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09458563 834.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09458564 834.76361084 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09458565 834.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09458566 834.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09458567 834.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09458568 834.76367188 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09458569 834.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09458570 834.76373291 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09458571 834.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09458572 834.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09458573 834.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09458574 834.76379395 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09458575 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09458576 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09458577 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09458578 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09458579 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09458580 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09458581 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09458582 834.76385498 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09458583 834.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09458584 834.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09458585 834.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09458586 834.76391602 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09458587 834.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09458588 834.76397705 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09458589 834.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09458590 834.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09458591 834.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09458592 834.76403809 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09458593 834.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09458594 834.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09458595 834.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09458596 834.76409912 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09458597 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09458598 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09458599 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09458600 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09458601 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09458602 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09458603 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09458604 834.76416016 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09458605 834.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09458606 834.76422119 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09458607 834.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09458608 834.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09458609 834.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09458610 834.76428223 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09458611 834.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09458612 834.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09458613 834.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09458614 834.76434326 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09458615 834.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09458616 834.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09458617 834.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09458618 834.76440430 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09458619 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09458620 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09458621 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09458622 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09458623 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09458624 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09458625 834.76446533 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09458626 834.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09458627 834.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09458628 834.76452637 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09458629 834.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09458630 834.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09458631 834.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09458632 834.76458740 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09458633 834.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09458634 834.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09458635 834.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09458636 834.76464844 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09458637 834.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09458638 834.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09458639 834.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09458640 834.76470947 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09458641 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09458642 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09458643 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09458644 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09458645 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09458646 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09458647 834.76477051 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09458648 834.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09458649 834.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09458650 834.76483154 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09458651 834.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09458652 834.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09458653 834.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09458654 834.76489258 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09458655 834.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09458656 834.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09458657 834.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09458658 834.76495361 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09458659 834.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09458660 834.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09458661 834.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09458662 834.76501465 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09458663 834.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09458664 834.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09458665 834.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09458666 834.76507568 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09458667 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09458668 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09458669 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09458670 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09458671 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09458672 834.76513672 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09458673 834.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09458674 834.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09458675 834.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09458676 834.76519775 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09458677 834.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09458678 834.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09458679 834.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09458680 834.76525879 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09458681 834.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09458682 834.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09458683 834.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09458684 834.76531982 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09458685 834.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09458686 834.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09458687 834.76538086 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09458688 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09458689 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09458690 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09458691 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09458692 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09458693 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09458694 834.76544189 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09458695 834.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09458696 834.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09458697 834.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09458698 834.76550293 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09458699 834.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09458700 834.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09458701 834.76556396 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09458702 834.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09458703 834.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09458704 834.76562500 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09458705 834.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09458706 834.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09458707 834.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09458708 834.76568604 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09458709 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09458710 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09458711 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09458712 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09458713 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09458714 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09458715 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09458716 834.76574707 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09458717 834.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09458718 834.76580811 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09458719 834.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09458720 834.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09458721 834.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09458722 834.76586914 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09458723 834.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09458724 834.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09458725 834.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09458726 834.76593018 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09458727 834.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09458728 834.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09458729 834.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09458730 834.76599121 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09458731 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09458732 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09458733 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09458734 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09458735 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09458736 834.76605225 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09458737 834.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09458738 834.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09458739 834.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09458740 834.76611328 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09458741 834.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09458742 834.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09458743 834.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09458744 834.76617432 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09458745 834.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09458746 834.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09458747 834.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09458748 834.76623535 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09458749 834.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09458750 834.76629639 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09458751 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09458752 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09458753 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09458754 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09458755 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09458756 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09458757 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09458758 834.76635742 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09458759 834.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09458760 834.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09458761 834.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09458762 834.76641846 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09458763 834.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09458764 834.76647949 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09458765 834.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09458766 834.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09458767 834.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09458768 834.76654053 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09458769 834.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09458770 834.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09458771 834.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09458772 834.76660156 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09458773 834.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09458774 834.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09458775 834.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09458776 834.76666260 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09458777 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09458778 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09458779 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09458780 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09458781 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09458782 834.76672363 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09458783 834.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09458784 834.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09458785 834.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09458786 834.76678467 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09458787 834.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09458788 834.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09458789 834.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09458790 834.76684570 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09458791 834.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09458792 834.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09458793 834.76690674 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09458794 834.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09458795 834.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09458796 834.76696777 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09458797 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09458798 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09458799 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09458800 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09458801 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09458802 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09458803 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09458804 834.76702881 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09458805 834.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09458806 834.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09458807 834.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09458808 834.76708984 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09458809 834.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09458810 834.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09458811 834.76715088 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09458812 834.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09458813 834.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09458814 834.76721191 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09458815 834.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09458816 834.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09458817 834.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09458818 834.76727295 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09458819 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09458820 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09458821 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09458822 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09458823 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09458824 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09458825 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09458826 834.76733398 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09458827 834.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09458828 834.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09458829 834.76739502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09458830 834.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09458831 834.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09458832 834.76745605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09458833 834.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09458834 834.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09458835 834.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09458836 834.76751709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09458837 834.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09458838 834.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09458839 834.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09458840 834.76757813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09458841 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09458842 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09458843 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09458844 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09458845 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09458846 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09458847 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09458848 834.76763916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09458849 834.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09458850 834.76770020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09458851 834.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09458852 834.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09458853 834.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09458854 834.76776123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09458855 834.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09458856 834.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09458857 834.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09458858 834.76782227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09458859 834.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09458860 834.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09458861 834.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09458862 834.76788330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09458863 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09458864 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09458865 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09458866 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09458867 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09458868 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09458869 834.76794434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09458870 834.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09458871 834.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09458872 834.76800537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09458873 834.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09458874 834.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09458875 834.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09458876 834.76806641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09458877 834.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09458878 834.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09458879 834.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09458880 834.76812744 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09458881 834.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09458882 834.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09458883 834.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09458884 834.76818848 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09458885 834.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09458886 834.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09458887 834.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09458888 834.76824951 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09458889 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09458890 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09458891 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09458892 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09458893 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09458894 834.76831055 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09458895 834.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09458896 834.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09458897 834.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09458898 834.76837158 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09458899 834.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09458900 834.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09458901 834.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09458902 834.76843262 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09458903 834.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09458904 834.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09458905 834.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09458906 834.76849365 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09458907 834.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09458908 834.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09458909 834.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09458910 834.76855469 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09458911 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09458912 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09458913 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09458914 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09458915 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09458916 834.76861572 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09458917 834.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09458918 834.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09458919 834.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09458920 834.76867676 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09458921 834.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09458922 834.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09458923 834.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09458924 834.76873779 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09458925 834.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09458926 834.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09458927 834.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09458928 834.76879883 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09458929 834.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09458930 834.76885986 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09458931 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09458932 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09458933 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09458934 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09458935 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09458936 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09458937 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09458938 834.76892090 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09458939 834.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09458940 834.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09458941 834.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09458942 834.76898193 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09458943 834.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09458944 834.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09458945 834.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09458946 834.76904297 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09458947 834.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09458948 834.76910400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09458949 834.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09458950 834.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09458951 834.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09458952 834.76916504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09458953 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09458954 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09458955 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09458956 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09458957 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09458958 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09458959 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09458960 834.76922607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09458961 834.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09458962 834.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09458963 834.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09458964 834.76928711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09458965 834.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09458966 834.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09458967 834.76934814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09458968 834.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09458969 834.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09458970 834.76940918 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09458971 834.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09458972 834.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09458973 834.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09458974 834.76947021 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09458975 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09458976 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09458977 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09458978 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09458979 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09458980 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09458981 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09458982 834.76953125 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09458983 834.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09458984 834.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09458985 834.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09458986 834.76959229 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09458987 834.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09458988 834.76965332 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09458989 834.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09458990 834.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09458991 834.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09458992 834.76971436 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09458993 834.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09458994 834.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09458995 834.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09458996 834.76977539 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09458997 834.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09458998 834.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09458999 834.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09459000 834.76983643 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09459001 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09459002 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09459003 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09459004 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09459005 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09459006 834.76989746 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09459007 834.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09459008 834.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09459009 834.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09459010 834.76995850 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09459011 834.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09459012 834.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09459013 834.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09459014 834.77001953 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09459015 834.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09459016 834.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09459017 834.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09459018 834.77008057 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09459019 834.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09459020 834.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09459021 834.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09459022 834.77014160 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09459023 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09459024 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09459025 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09459026 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09459027 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09459028 834.77020264 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09459029 834.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09459030 834.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09459031 834.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09459032 834.77026367 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09459033 834.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09459034 834.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09459035 834.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09459036 834.77032471 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09459037 834.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09459038 834.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09459039 834.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09459040 834.77038574 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09459041 834.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09459042 834.77044678 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09459043 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09459044 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09459045 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09459046 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09459047 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09459048 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09459049 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09459050 834.77050781 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09459051 834.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09459052 834.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09459053 834.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09459054 834.77056885 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09459055 834.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09459056 834.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09459057 834.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09459058 834.77062988 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09459059 834.77069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09459060 834.77069092 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09459061 834.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09459062 834.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09459063 834.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09459064 834.77075195 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09459065 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09459066 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09459067 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09459068 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09459069 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09459070 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09459071 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09459072 834.77081299 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09459073 834.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09459074 834.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09459075 834.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09459076 834.77087402 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09459077 834.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09459078 834.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09459079 834.77093506 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09459080 834.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09459081 834.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09459082 834.77099609 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09459083 834.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09459084 834.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09459085 834.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09459086 834.77105713 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09459087 834.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09459088 834.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09459089 834.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09459090 834.77111816 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09459091 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09459092 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09459093 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09459094 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09459095 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09459096 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09459097 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09459098 834.77117920 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09459099 834.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09459100 834.77124023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09459101 834.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09459102 834.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09459103 834.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09459104 834.77130127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09459105 834.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09459106 834.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09459107 834.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09459108 834.77136230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09459109 834.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09459110 834.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09459111 834.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09459112 834.77142334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09459113 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09459114 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09459115 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09459116 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09459117 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09459118 834.77148438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09459119 834.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09459120 834.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09459121 834.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09459122 834.77154541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09459123 834.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09459124 834.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09459125 834.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09459126 834.77160645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09459127 834.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09459128 834.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09459129 834.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09459130 834.77166748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09459131 834.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09459132 834.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09459133 834.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09459134 834.77172852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09459135 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09459136 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09459137 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09459138 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09459139 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09459140 834.77178955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09459141 834.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09459142 834.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09459143 834.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09459144 834.77185059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09459145 834.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09459146 834.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09459147 834.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09459148 834.77191162 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09459149 834.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09459150 834.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09459151 834.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09459152 834.77197266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09459153 834.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09459154 834.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09459155 834.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09459156 834.77203369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09459157 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09459158 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09459159 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09459160 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09459161 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09459162 834.77209473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09459163 834.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09459164 834.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09459165 834.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09459166 834.77215576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09459167 834.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09459168 834.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09459169 834.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09459170 834.77221680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09459171 834.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09459172 834.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09459173 834.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09459174 834.77227783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09459175 834.77233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09459176 834.77233887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09459177 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09459178 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09459179 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09459180 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09459181 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09459182 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09459183 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09459184 834.77239990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09459185 834.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09459186 834.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09459187 834.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09459188 834.77246094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09459189 834.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09459190 834.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09459191 834.77252197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09459192 834.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09459193 834.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09459194 834.77258301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09459195 834.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09459196 834.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09459197 834.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09459198 834.77264404 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09459199 834.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09459200 834.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09459201 834.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09459202 834.77270508 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09459203 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09459204 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09459205 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09459206 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09459207 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09459208 834.77276611 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09459209 834.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09459210 834.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09459211 834.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09459212 834.77282715 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09459213 834.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09459214 834.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09459215 834.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09459216 834.77288818 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09459217 834.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09459218 834.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09459219 834.77294922 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09459220 834.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09459221 834.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09459222 834.77301025 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09459223 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09459224 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09459225 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09459226 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09459227 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09459228 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09459229 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09459230 834.77307129 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09459231 834.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09459232 834.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09459233 834.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09459234 834.77313232 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09459235 834.77319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09459236 834.77319336 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09459237 834.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09459238 834.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09459239 834.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09459240 834.77325439 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09459241 834.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09459242 834.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09459243 834.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09459244 834.77331543 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09459245 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09459246 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09459247 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09459248 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09459249 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09459250 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09459251 834.77337646 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09459252 834.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09459253 834.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09459254 834.77343750 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09459255 834.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09459256 834.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09459257 834.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09459258 834.77349854 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09459259 834.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09459260 834.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09459261 834.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09459262 834.77355957 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09459263 834.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09459264 834.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09459265 834.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09459266 834.77362061 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09459267 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09459268 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09459269 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09459270 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09459271 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09459272 834.77368164 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09459273 834.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09459274 834.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09459275 834.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09459276 834.77374268 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09459277 834.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09459278 834.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09459279 834.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09459280 834.77380371 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09459281 834.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09459282 834.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09459283 834.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09459284 834.77386475 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09459285 834.77392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09459286 834.77392578 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09459287 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09459288 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09459289 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09459290 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09459291 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09459292 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09459293 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09459294 834.77398682 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09459295 834.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09459296 834.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09459297 834.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09459298 834.77404785 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09459299 834.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09459300 834.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09459301 834.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09459302 834.77410889 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09459303 834.77416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09459304 834.77416992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09459305 834.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09459306 834.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09459307 834.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09459308 834.77423096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09459309 834.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09459310 834.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09459311 834.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09459312 834.77429199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09459313 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09459314 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09459315 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09459316 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09459317 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09459318 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09459319 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09459320 834.77435303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09459321 834.77441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09459322 834.77441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09459323 834.77441406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09459324 834.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09459325 834.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09459326 834.77447510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09459327 834.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09459328 834.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09459329 834.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09459330 834.77453613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09459331 834.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09459332 834.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09459333 834.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09459334 834.77459717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09459335 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09459336 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09459337 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09459338 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09459339 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09459340 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09459341 834.77465820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09459342 834.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09459343 834.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09459344 834.77471924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09459345 834.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09459346 834.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09459347 834.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09459348 834.77478027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09459349 834.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09459350 834.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09459351 834.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09459352 834.77484131 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09459353 834.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09459354 834.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09459355 834.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09459356 834.77490234 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09459357 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09459358 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09459359 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09459360 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09459361 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09459362 834.77496338 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09459363 834.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09459364 834.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09459365 834.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09459366 834.77502441 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09459367 834.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09459368 834.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09459369 834.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09459370 834.77508545 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09459371 834.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09459372 834.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09459373 834.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09459374 834.77514648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09459375 834.77520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09459376 834.77520752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09459377 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09459378 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09459379 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09459380 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09459381 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09459382 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09459383 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09459384 834.77526855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09459385 834.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09459386 834.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09459387 834.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09459388 834.77532959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09459389 834.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09459390 834.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09459391 834.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09459392 834.77539063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09459393 834.77545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09459394 834.77545166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09459395 834.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09459396 834.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09459397 834.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09459398 834.77551270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09459399 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09459400 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09459401 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09459402 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09459403 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09459404 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09459405 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09459406 834.77557373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09459407 834.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09459408 834.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09459409 834.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09459410 834.77563477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09459411 834.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09459412 834.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09459413 834.77569580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09459414 834.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09459415 834.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09459416 834.77575684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09459417 834.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09459418 834.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09459419 834.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09459420 834.77581787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09459421 834.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09459422 834.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09459423 834.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09459424 834.77587891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09459425 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09459426 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09459427 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09459428 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09459429 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09459430 834.77593994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09459431 834.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09459432 834.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09459433 834.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09459434 834.77600098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09459435 834.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09459436 834.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09459437 834.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09459438 834.77606201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09459439 834.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09459440 834.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09459441 834.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09459442 834.77612305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09459443 834.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09459444 834.77618408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09459445 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09459446 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09459447 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09459448 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09459449 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09459450 834.77624512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09459451 834.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09459452 834.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09459453 834.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09459454 834.77630615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09459455 834.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09459456 834.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09459457 834.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09459458 834.77636719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09459459 834.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09459460 834.77642822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09459461 834.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09459462 834.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09459463 834.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09459464 834.77648926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09459465 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09459466 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09459467 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09459468 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09459469 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09459470 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09459471 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09459472 834.77655029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09459473 834.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09459474 834.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09459475 834.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09459476 834.77661133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09459477 834.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09459478 834.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09459479 834.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09459480 834.77667236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09459481 834.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09459482 834.77673340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09459483 834.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09459484 834.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09459485 834.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09459486 834.77679443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09459487 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09459488 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09459489 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09459490 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09459491 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09459492 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09459493 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09459494 834.77685547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09459495 834.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09459496 834.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09459497 834.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09459498 834.77691650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09459499 834.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09459500 834.77697754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09459501 834.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09459502 834.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09459503 834.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09459504 834.77703857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09459505 834.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09459506 834.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09459507 834.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09459508 834.77709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09459509 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09459510 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09459511 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09459512 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09459513 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09459514 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09459515 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09459516 834.77716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09459517 834.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09459518 834.77722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09459519 834.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09459520 834.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09459521 834.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09459522 834.77728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09459523 834.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09459524 834.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09459525 834.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09459526 834.77734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09459527 834.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09459528 834.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09459529 834.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09459530 834.77740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09459531 834.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09459532 834.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09459533 834.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09459534 834.77746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09459535 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09459536 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09459537 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09459538 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09459539 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09459540 834.77752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09459541 834.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09459542 834.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09459543 834.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09459544 834.77758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09459545 834.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09459546 834.77764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09459547 834.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09459548 834.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09459549 834.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09459550 834.77770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09459551 834.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09459552 834.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09459553 834.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09459554 834.77777100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09459555 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09459556 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09459557 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09459558 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09459559 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09459560 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09459561 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09459562 834.77783203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09459563 834.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09459564 834.77789307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09459565 834.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09459566 834.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09459567 834.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09459568 834.77795410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09459569 834.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09459570 834.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09459571 834.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09459572 834.77801514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09459573 834.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09459574 834.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09459575 834.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09459576 834.77807617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09459577 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09459578 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09459579 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09459580 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09459581 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09459582 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09459583 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09459584 834.77813721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09459585 834.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09459586 834.77819824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09459587 834.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09459588 834.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09459589 834.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09459590 834.77825928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09459591 834.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09459592 834.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09459593 834.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09459594 834.77832031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09459595 834.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09459596 834.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09459597 834.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09459598 834.77838135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09459599 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09459600 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09459601 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09459602 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09459603 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09459604 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09459605 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09459606 834.77844238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09459607 834.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09459608 834.77850342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09459609 834.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09459610 834.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09459611 834.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09459612 834.77856445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09459613 834.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09459614 834.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09459615 834.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09459616 834.77862549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09459617 834.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09459618 834.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09459619 834.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09459620 834.77868652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09459621 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09459622 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09459623 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09459624 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09459625 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09459626 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09459627 834.77874756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09459628 834.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09459629 834.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09459630 834.77880859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09459631 834.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09459632 834.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09459633 834.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09459634 834.77886963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09459635 834.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09459636 834.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09459637 834.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09459638 834.77893066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09459639 834.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09459640 834.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09459641 834.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09459642 834.77899170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09459643 834.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09459644 834.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09459645 834.77905273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09459646 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09459647 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09459648 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09459649 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09459650 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09459651 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09459652 834.77911377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09459653 834.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09459654 834.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09459655 834.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09459656 834.77917480 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09459657 834.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09459658 834.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09459659 834.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09459660 834.77923584 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09459661 834.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09459662 834.77929688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09459663 834.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09459664 834.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09459665 834.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09459666 834.77935791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09459667 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09459668 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09459669 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09459670 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09459671 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09459672 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09459673 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09459674 834.77941895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09459675 834.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09459676 834.77947998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09459677 834.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09459678 834.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09459679 834.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09459680 834.77954102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09459681 834.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09459682 834.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09459683 834.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09459684 834.77960205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09459685 834.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09459686 834.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09459687 834.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09459688 834.77966309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09459689 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09459690 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09459691 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09459692 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09459693 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09459694 834.77972412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09459695 834.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09459696 834.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09459697 834.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09459698 834.77978516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09459699 834.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09459700 834.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09459701 834.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09459702 834.77984619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09459703 834.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09459704 834.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09459705 834.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09459706 834.77990723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09459707 834.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09459708 834.77996826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09459709 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09459710 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09459711 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09459712 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09459713 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09459714 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09459715 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09459716 834.78002930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09459717 834.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09459718 834.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09459719 834.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09459720 834.78009033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09459721 834.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09459722 834.78015137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09459723 834.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09459724 834.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09459725 834.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09459726 834.78021240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09459727 834.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09459728 834.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09459729 834.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09459730 834.78027344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09459731 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09459732 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09459733 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09459734 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09459735 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09459736 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09459737 834.78033447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09459738 834.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09459739 834.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09459740 834.78039551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09459741 834.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09459742 834.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09459743 834.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09459744 834.78045654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09459745 834.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09459746 834.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09459747 834.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09459748 834.78051758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09459749 834.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09459750 834.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09459751 834.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09459752 834.78057861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09459753 834.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09459754 834.78063965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09459755 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09459756 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09459757 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09459758 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09459759 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09459760 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09459761 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09459762 834.78070068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09459763 834.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09459764 834.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09459765 834.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09459766 834.78076172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09459767 834.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09459768 834.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09459769 834.78082275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09459770 834.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09459771 834.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09459772 834.78088379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09459773 834.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09459774 834.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09459775 834.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09459776 834.78094482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09459777 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09459778 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09459779 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09459780 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09459781 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09459782 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09459783 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09459784 834.78100586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09459785 834.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09459786 834.78106689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09459787 834.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09459788 834.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09459789 834.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09459790 834.78112793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09459791 834.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09459792 834.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09459793 834.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09459794 834.78118896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09459795 834.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09459796 834.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09459797 834.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09459798 834.78125000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09459799 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09459800 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09459801 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09459802 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09459803 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09459804 834.78131104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09459805 834.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09459806 834.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09459807 834.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09459808 834.78137207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09459809 834.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09459810 834.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09459811 834.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09459812 834.78143311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09459813 834.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09459814 834.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09459815 834.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09459816 834.78149414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09459817 834.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09459818 834.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09459819 834.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09459820 834.78155518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09459821 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09459822 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09459823 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09459824 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09459825 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09459826 834.78161621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09459827 834.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09459828 834.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09459829 834.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09459830 834.78167725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09459831 834.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09459832 834.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09459833 834.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09459834 834.78173828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09459835 834.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09459836 834.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09459837 834.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09459838 834.78179932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09459839 834.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09459840 834.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09459841 834.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09459842 834.78186035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09459843 834.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09459844 834.78192139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09459845 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09459846 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09459847 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09459848 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09459849 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09459850 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09459851 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09459852 834.78198242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09459853 834.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09459854 834.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09459855 834.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09459856 834.78204346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09459857 834.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09459858 834.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09459859 834.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09459860 834.78210449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09459861 834.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09459862 834.78216553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09459863 834.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09459864 834.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09459865 834.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09459866 834.78222656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09459867 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09459868 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09459869 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09459870 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09459871 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09459872 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09459873 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09459874 834.78228760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09459875 834.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09459876 834.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09459877 834.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09459878 834.78234863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09459879 834.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09459880 834.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09459881 834.78240967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09459882 834.78247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09459883 834.78247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09459884 834.78247070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09459885 834.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09459886 834.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09459887 834.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09459888 834.78253174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09459889 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09459890 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09459891 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09459892 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09459893 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09459894 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09459895 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09459896 834.78259277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09459897 834.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09459898 834.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09459899 834.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09459900 834.78265381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09459901 834.78271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09459902 834.78271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09459903 834.78271484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09459904 834.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09459905 834.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09459906 834.78277588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09459907 834.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09459908 834.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09459909 834.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09459910 834.78283691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09459911 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09459912 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09459913 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09459914 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09459915 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09459916 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09459917 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09459918 834.78289795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09459919 834.78295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09459920 834.78295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09459921 834.78295898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09459922 834.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09459923 834.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09459924 834.78302002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09459925 834.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09459926 834.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09459927 834.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09459928 834.78308105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09459929 834.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09459930 834.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09459931 834.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09459932 834.78314209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09459933 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09459934 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09459935 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09459936 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09459937 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09459938 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09459939 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09459940 834.78320313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09459941 834.78326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09459942 834.78326416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09459943 834.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09459944 834.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09459945 834.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09459946 834.78332520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09459947 834.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09459948 834.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09459949 834.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09459950 834.78338623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09459951 834.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09459952 834.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09459953 834.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09459954 834.78344727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09459955 834.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09459956 834.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09459957 834.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09459958 834.78350830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09459959 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09459960 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09459961 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09459962 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09459963 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09459964 834.78356934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09459965 834.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09459966 834.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09459967 834.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09459968 834.78363037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09459969 834.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09459970 834.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09459971 834.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09459972 834.78369141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09459973 834.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09459974 834.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09459975 834.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09459976 834.78375244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09459977 834.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09459978 834.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09459979 834.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09459980 834.78381348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09459981 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09459982 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09459983 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09459984 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09459985 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09459986 834.78387451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09459987 834.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09459988 834.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09459989 834.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09459990 834.78393555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09459991 834.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09459992 834.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09459993 834.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09459994 834.78399658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09459995 834.78405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09459996 834.78405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09459997 834.78405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09459998 834.78405762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09459999 834.78411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09460000 834.78411865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09460001 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09460002 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09460003 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09460004 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09460005 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09460006 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09460007 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09460008 834.78417969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09460009 834.78424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09460010 834.78424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09460011 834.78424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09460012 834.78424072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09460013 834.78430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09460014 834.78430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09460015 834.78430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09460016 834.78430176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09460017 834.78436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09460018 834.78436279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09460019 834.78442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09460020 834.78442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09460021 834.78442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09460022 834.78442383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09460023 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09460024 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09460025 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09460026 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09460027 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09460028 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09460029 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09460030 834.78448486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09460031 834.78454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09460032 834.78454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09460033 834.78454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09460034 834.78454590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09460035 834.78460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09460036 834.78460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09460037 834.78460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09460038 834.78460693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09460039 834.78466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09460040 834.78466797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09460041 834.78472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09460042 834.78472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09460043 834.78472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09460044 834.78472900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09460045 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09460046 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09460047 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09460048 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09460049 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09460050 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09460051 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09460052 834.78479004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09460053 834.78485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09460054 834.78485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09460055 834.78485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09460056 834.78485107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09460057 834.78491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09460058 834.78491211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09460059 834.78497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09460060 834.78497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09460061 834.78497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09460062 834.78497314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09460063 834.78503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09460064 834.78503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09460065 834.78503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09460066 834.78503418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09460067 834.78509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09460068 834.78509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09460069 834.78509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09460070 834.78509521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09460071 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09460072 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09460073 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09460074 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09460075 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09460076 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09460077 834.78515625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09460078 834.78521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09460079 834.78521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09460080 834.78521729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09460081 834.78527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09460082 834.78527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09460083 834.78527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09460084 834.78527832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09460085 834.78533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09460086 834.78533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09460087 834.78533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09460088 834.78533936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09460089 834.78540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09460090 834.78540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09460091 834.78540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09460092 834.78540039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09470611 834.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -09470612 834.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af98 -09470613 834.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -09470614 834.93200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afa8 -09470615 834.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb8 -09470616 834.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afb8 -09470617 834.93206787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc8 -09470618 834.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afc8 -09470619 834.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd8 -09470620 834.93212891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afd8 -09470621 834.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe8 -09470622 834.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1afe8 -09470623 834.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff8 -09470624 834.93218994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aff8 -09470625 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b008 -09470626 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b008 -09470627 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b018 -09470628 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b018 -09470629 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b028 -09470630 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b028 -09470631 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b038 -09470632 834.93225098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b038 -09470633 834.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b048 -09470634 834.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b048 -09470635 834.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b058 -09470636 834.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b058 -09470637 834.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b068 -09470638 834.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b068 -09470639 834.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b078 -09470640 834.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b078 -09470641 834.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b088 -09470642 834.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b088 -09470643 834.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b098 -09470644 834.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b098 -09470645 834.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a8 -09470646 834.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0a8 -09470647 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b8 -09470648 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0b8 -09470649 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -09470650 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0c8 -09470651 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d8 -09470652 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0d8 -09470653 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e8 -09470654 834.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b0e8 -09473129 834.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -09473130 834.96710205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe48 -09473131 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -09473132 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe58 -09473133 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -09473134 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe68 -09473135 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -09473136 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe78 -09473137 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -09473138 834.96716309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe88 -09473139 834.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -09473140 834.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe98 -09473141 834.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -09473142 834.96722412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fea8 -09473143 834.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -09473144 834.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1feb8 -09473145 834.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -09473146 834.96728516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fec8 -09473147 834.96734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -09473148 834.96734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fed8 -09473149 834.96734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee8 -09473150 834.96734619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fee8 -09473151 834.96740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef8 -09473152 834.96740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fef8 -09473153 834.96740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff08 -09473154 834.96740723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff08 -09473155 834.96746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff18 -09473156 834.96746826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff18 -09473157 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff28 -09473158 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff28 -09473159 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff38 -09473160 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff38 -09473161 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff48 -09473162 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff48 -09473163 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff58 -09473164 834.96752930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff58 -09473165 834.96759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff68 -09473166 834.96759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff68 -09473167 834.96759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff78 -09473168 834.96759033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff78 -09473169 834.96765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff88 -09473170 834.96765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff88 -09473171 834.96765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff98 -09473172 834.96765137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff98 -09475607 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -09475608 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bb8 -09475609 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -09475610 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bc8 -09475611 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -09475612 835.00213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bd8 -09475613 835.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -09475614 835.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24be8 -09475615 835.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -09475616 835.00219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24bf8 -09475617 835.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -09475618 835.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c08 -09475619 835.00225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -09475620 835.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c18 -09475621 835.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -09475622 835.00231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c28 -09475623 835.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c38 -09475624 835.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c38 -09475625 835.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c48 -09475626 835.00238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c48 -09475627 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c58 -09475628 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c58 -09475629 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c68 -09475630 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c68 -09475631 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -09475632 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c78 -09475633 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -09475634 835.00244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c88 -09475635 835.00250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -09475636 835.00250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c98 -09475637 835.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -09475638 835.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ca8 -09475639 835.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -09475640 835.00256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cb8 -09475641 835.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -09475642 835.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cc8 -09475643 835.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -09475644 835.00262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cd8 -09475645 835.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -09475646 835.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24ce8 -09475647 835.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -09475648 835.00268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24cf8 -09475649 835.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -09475650 835.00274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d08 -09479327 835.05535889 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff8 -09479328 835.05535889 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bff8 -09479329 835.05535889 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c008 -09479330 835.05535889 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c008 -09479331 835.05541992 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c018 -09479332 835.05541992 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c018 -09479333 835.05541992 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c028 -09479334 835.05541992 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c028 -09479335 835.05548096 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c038 -09479336 835.05548096 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c038 -09479337 835.05548096 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c048 -09479338 835.05548096 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c048 -09479339 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c058 -09479340 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c058 -09479341 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c068 -09479342 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c068 -09479343 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c078 -09479344 835.05554199 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c078 -09479345 835.05560303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c088 -09479346 835.05560303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c088 -09479347 835.05560303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c098 -09479348 835.05560303 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c098 -09479349 835.05566406 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a8 -09479350 835.05566406 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0a8 -09479351 835.05566406 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b8 -09479352 835.05566406 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0b8 -09479353 835.05572510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c8 -09479354 835.05572510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0c8 -09479355 835.05572510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d8 -09479356 835.05572510 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0d8 -09479357 835.05578613 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e8 -09479358 835.05578613 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0e8 -09479359 835.05578613 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f8 -09479360 835.05578613 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c0f8 -09479361 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c108 -09479362 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c108 -09479363 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c118 -09479364 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c118 -09479365 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c128 -09479366 835.05584717 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c128 -09479367 835.05590820 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c138 -09479368 835.05590820 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c138 -09479369 835.05590820 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c148 -09479370 835.05590820 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c148 -09479905 835.06372070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -09479906 835.06372070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d208 -09479907 835.06372070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -09479908 835.06372070 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d218 -09479909 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -09479910 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d228 -09479911 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -09479912 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d238 -09479913 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -09479914 835.06378174 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d248 -09479915 835.06384277 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -09479916 835.06384277 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d258 -09479917 835.06384277 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -09479918 835.06384277 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d268 -09479919 835.06390381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -09479920 835.06390381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d278 -09479921 835.06390381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -09479922 835.06390381 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d288 -09479923 835.06396484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -09479924 835.06396484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d298 -09479925 835.06396484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -09479926 835.06396484 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2a8 -09479927 835.06402588 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -09479928 835.06402588 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2b8 -09479929 835.06402588 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -09479930 835.06402588 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2c8 -09479931 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -09479932 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2d8 -09479933 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -09479934 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2e8 -09479935 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -09479936 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d2f8 -09479937 835.06408691 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -09479938 835.06414795 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d308 -09479939 835.06414795 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -09479940 835.06414795 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d318 -09479941 835.06420898 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -09479942 835.06420898 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d328 -09479943 835.06420898 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -09479944 835.06420898 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d338 -09479945 835.06427002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -09479946 835.06427002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d348 -09479947 835.06427002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -09479948 835.06427002 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d358 -09480153 835.06719971 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -09480154 835.06719971 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9c8 -09480155 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -09480156 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9d8 -09480157 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e8 -09480158 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9e8 -09480159 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f8 -09480160 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d9f8 -09480161 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da08 -09480162 835.06726074 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da08 -09480163 835.06732178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -09480164 835.06732178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da18 -09480165 835.06732178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -09480166 835.06732178 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da28 -09480167 835.06738281 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -09480168 835.06738281 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da38 -09480169 835.06738281 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -09480170 835.06744385 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da48 -09480171 835.06744385 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -09480172 835.06744385 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da58 -09480173 835.06750488 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -09480174 835.06750488 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da68 -09480175 835.06750488 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -09480176 835.06750488 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da78 -09480177 835.06756592 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -09480178 835.06756592 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da88 -09480179 835.06756592 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -09480180 835.06756592 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da98 -09480181 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -09480182 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daa8 -09480183 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -09480184 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dab8 -09480185 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -09480186 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dac8 -09480187 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -09480188 835.06762695 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dad8 -09480189 835.06768799 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -09480190 835.06768799 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dae8 -09480191 835.06768799 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -09480192 835.06774902 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2daf8 -09480193 835.06774902 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -09480194 835.06774902 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db08 -09480195 835.06781006 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -09480196 835.06781006 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db18 -09483683 835.11718750 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -09483684 835.11718750 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -09483685 835.11718750 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -09483686 835.11718750 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -09483687 835.11724854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -09483688 835.11724854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -09483689 835.11724854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -09483690 835.11724854 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -09483691 835.11730957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -09483692 835.11730957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -09483693 835.11730957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -09483694 835.11730957 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -09483695 835.11737061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -09483696 835.11737061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -09483697 835.11737061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -09483698 835.11737061 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -09483699 835.11743164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -09483700 835.11743164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -09483701 835.11743164 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -09483702 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348a8 -09483703 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -09483704 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348b8 -09483705 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -09483706 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348c8 -09483707 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -09483708 835.11749268 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348d8 -09483709 835.11755371 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e8 -09483710 835.11755371 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348e8 -09483711 835.11755371 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f8 -09483712 835.11755371 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x348f8 -09483713 835.11761475 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34908 -09483714 835.11761475 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34908 -09483715 835.11761475 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34918 -09483716 835.11761475 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34918 -09483717 835.11767578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34928 -09483718 835.11767578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34928 -09483719 835.11767578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34938 -09483720 835.11767578 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34938 -09483721 835.11773682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34948 -09483722 835.11773682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34948 -09483723 835.11773682 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34958 -09483724 835.11779785 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34958 -09483725 835.11779785 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34968 -09483726 835.11779785 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x34968 -09486573 835.15832520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -09486574 835.15832520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a268 -09486575 835.15832520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -09486576 835.15838623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a278 -09486577 835.15838623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -09486578 835.15838623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a288 -09486579 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -09486580 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a298 -09486581 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -09486582 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2a8 -09486583 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -09486584 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2b8 -09486585 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -09486586 835.15844727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2c8 -09486587 835.15850830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -09486588 835.15850830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2d8 -09486589 835.15850830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -09486590 835.15850830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2e8 -09486591 835.15856934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f8 -09486592 835.15856934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a2f8 -09486593 835.15856934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a308 -09486594 835.15856934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a308 -09486595 835.15863037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a318 -09486596 835.15863037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a318 -09486597 835.15869141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a328 -09486598 835.15869141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a328 -09486599 835.15869141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a338 -09486600 835.15869141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a338 -09486601 835.15875244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a348 -09486602 835.15875244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a348 -09486603 835.15875244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a358 -09486604 835.15875244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a358 -09486605 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a368 -09486606 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a368 -09486607 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a378 -09486608 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a378 -09486609 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a388 -09486610 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a388 -09486611 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -09486612 835.15881348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -09486613 835.15887451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -09486614 835.15887451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -09486615 835.15893555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -09486616 835.15893555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -09489939 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -09489940 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -09489941 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -09489942 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -09489943 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -09489944 835.20642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -09489945 835.20648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -09489946 835.20648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -09489947 835.20648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -09489948 835.20648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -09489949 835.20654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -09489950 835.20654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -09489951 835.20654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -09489952 835.20654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -09489953 835.20660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -09489954 835.20660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -09489955 835.20660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -09489956 835.20660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -09489957 835.20666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -09489958 835.20666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -09489959 835.20666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -09489960 835.20666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -09489961 835.20672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -09489962 835.20672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -09489963 835.20672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -09489964 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -09489965 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -09489966 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c68 -09489967 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -09489968 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c78 -09489969 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -09489970 835.20678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c88 -09489971 835.20684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -09489972 835.20684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c98 -09489973 835.20684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -09489974 835.20684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ca8 -09489975 835.20690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -09489976 835.20690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cb8 -09489977 835.20690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -09489978 835.20690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cc8 -09489979 835.20697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -09489980 835.20697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40cd8 -09489981 835.20697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -09489982 835.20697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ce8 -09499207 835.64343262 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09499208 835.66430664 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499209 835.66430664 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499210 835.81140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499211 835.81140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499212 835.81140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499213 835.81140137 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09499214 835.81152344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499215 835.81152344 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09499216 835.81164551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499217 835.81164551 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09499218 837.66607666 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09499219 837.68676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499220 837.68676758 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499221 838.31762695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499222 838.31762695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499223 838.31768799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499224 838.31768799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09499225 838.31774902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499226 838.31781006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09499227 838.31787109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09499228 838.31787109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09499229 839.68878174 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09499230 839.70941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499231 839.70941162 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09499232 839.94506836 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -09499233 839.94549561 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -09499234 840.33953857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09499235 840.33953857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09499236 840.33959961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09499237 840.33959961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09499238 840.33959961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09499239 840.33959961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09499240 840.33966064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09499241 840.33966064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09499242 840.33966064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09499243 840.33966064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09499244 840.33972168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09499245 840.33972168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09499246 840.33972168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09499247 840.33972168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09499248 840.33978271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09499249 840.33978271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09499250 840.33978271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09499251 840.33978271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09499252 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09499253 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09499254 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09499255 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09499256 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09499257 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09499258 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09499259 840.33984375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09499260 840.33990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09499261 840.33990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09499262 840.33990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09499263 840.33990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09499264 840.33996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09499265 840.33996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09499266 840.33996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09499267 840.33996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09499268 840.34002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09499269 840.34002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09499270 840.34002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09499271 840.34002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09499272 840.34008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09499273 840.34008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09499274 840.34008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09499275 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09499276 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09499277 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09499278 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09499279 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09499280 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09499281 840.34014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09499282 840.34020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09499283 840.34020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09499284 840.34020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09499285 840.34020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09499286 840.34027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09499287 840.34027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09499288 840.34027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09499289 840.34027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09499290 840.34033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09499291 840.34033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09499292 840.34033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09499293 840.34033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09499294 840.34039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09499295 840.34039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09499296 840.34039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09499297 840.34039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09499298 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09499299 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09499300 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09499301 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09499302 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09499303 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09499304 840.34045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09499305 840.34051514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09499306 840.34051514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09499307 840.34051514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09499308 840.34057617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09499309 840.34057617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09499310 840.34057617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09499311 840.34057617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09499312 840.34063721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09499313 840.34063721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09499314 840.34063721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09499315 840.34063721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09499316 840.34069824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09499317 840.34069824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09499318 840.34069824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09499319 840.34069824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09499320 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09499321 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09499322 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09499323 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09499324 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09499325 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09499326 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09499327 840.34075928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09499328 840.34082031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09499329 840.34082031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09499330 840.34082031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09499331 840.34082031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09499332 840.34088135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09499333 840.34088135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09499334 840.34088135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09499335 840.34088135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09499336 840.34094238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09499337 840.34094238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09499338 840.34094238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09499339 840.34094238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09499340 840.34100342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09499341 840.34100342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09499342 840.34100342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09499343 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09499344 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09499345 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09499346 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09499347 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09499348 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09499349 840.34106445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09499350 840.34112549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09499351 840.34112549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09499352 840.34112549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09499353 840.34112549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09499354 840.34118652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09499355 840.34118652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09499356 840.34118652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09499357 840.34118652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09499358 840.34124756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09499359 840.34124756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09499360 840.34130859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09499361 840.34130859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09499362 840.34130859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09499363 840.34130859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09499364 840.34136963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09499365 840.34136963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09499366 840.34136963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09499367 840.34136963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09499368 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09499369 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09499370 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09499371 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09499372 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09499373 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09499374 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09499375 840.34143066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09499376 840.34149170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09499377 840.34149170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09499378 840.34149170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09499379 840.34149170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09499380 840.34155273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09499381 840.34155273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09499382 840.34155273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09499383 840.34155273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09499384 840.34161377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09499385 840.34161377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09499386 840.34161377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09499387 840.34161377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09499388 840.34167480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09499389 840.34167480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09499390 840.34167480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09499391 840.34167480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09499392 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09499393 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09499394 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09499395 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09499396 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09499397 840.34173584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09499398 840.34179688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09499399 840.34179688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09499400 840.34179688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09499401 840.34179688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09499402 840.34185791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09499403 840.34185791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09499404 840.34185791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09499405 840.34185791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09499406 840.34191895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09499407 840.34191895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09499408 840.34191895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09499409 840.34191895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09499410 840.34197998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09499411 840.34197998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09499412 840.34197998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09499413 840.34197998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09499414 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09499415 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09499416 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09499417 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09499418 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09499419 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09499420 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09499421 840.34204102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09499422 840.34210205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09499423 840.34210205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09499424 840.34210205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09499425 840.34210205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09499426 840.34216309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09499427 840.34216309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09499428 840.34216309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09499429 840.34216309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09499430 840.34222412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09499431 840.34222412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09499432 840.34222412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09499433 840.34222412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09499434 840.34228516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09499435 840.34228516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09499436 840.34228516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09499437 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09499438 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09499439 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09499440 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09499441 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09499442 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09499443 840.34234619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09499444 840.34240723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09499445 840.34240723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09499446 840.34240723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09499447 840.34240723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09499448 840.34246826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09499449 840.34246826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09499450 840.34246826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09499451 840.34246826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09499452 840.34252930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09499453 840.34252930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09499454 840.34252930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09499455 840.34252930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09499456 840.34259033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09499457 840.34259033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09499458 840.34259033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09499459 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09499460 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09499461 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09499462 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09499463 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09499464 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09499465 840.34265137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09499466 840.34271240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09499467 840.34271240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09499468 840.34271240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09499469 840.34271240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09499470 840.34277344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09499471 840.34277344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09499472 840.34277344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09499473 840.34277344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09499474 840.34283447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09499475 840.34283447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09499476 840.34283447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09499477 840.34283447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09499478 840.34289551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09499479 840.34289551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09499480 840.34289551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09499481 840.34289551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09499482 840.34295654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09499483 840.34295654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09499484 840.34295654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09499485 840.34295654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09499486 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09499487 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09499488 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09499489 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09499490 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09499491 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09499492 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09499493 840.34301758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09499494 840.34307861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09499495 840.34307861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09499496 840.34307861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09499497 840.34307861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09499498 840.34313965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09499499 840.34313965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09499500 840.34313965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09499501 840.34320068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09499502 840.34320068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09499503 840.34320068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09499504 840.34326172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09499505 840.34326172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09499506 840.34326172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09499507 840.34326172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09499508 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09499509 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09499510 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09499511 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09499512 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09499513 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09499514 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09499515 840.34332275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09499516 840.34338379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09499517 840.34338379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09499518 840.34338379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09499519 840.34338379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09499520 840.34344482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09499521 840.34344482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09499522 840.34344482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09499523 840.34344482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09499524 840.34350586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09499525 840.34350586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09499526 840.34350586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09499527 840.34350586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09499528 840.34356689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09499529 840.34356689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09499530 840.34356689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09499531 840.34356689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09499532 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09499533 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09499534 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09499535 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09499536 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09499537 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09499538 840.34362793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09499539 840.34368896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09499540 840.34368896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09499541 840.34368896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09499542 840.34375000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09499543 840.34375000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09499544 840.34375000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09499545 840.34375000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09499546 840.34381104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09499547 840.34381104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09499548 840.34381104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09499549 840.34381104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09499550 840.34387207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09499551 840.34387207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09499552 840.34387207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09499553 840.34387207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09499554 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09499555 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09499556 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09499557 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09499558 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09499559 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09499560 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09499561 840.34393311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09499562 840.34399414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09499563 840.34399414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09499564 840.34399414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09499565 840.34399414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09499566 840.34405518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09499567 840.34405518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09499568 840.34405518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09499569 840.34405518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09499570 840.34411621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09499571 840.34411621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09499572 840.34411621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09499573 840.34411621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09499574 840.34417725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09499575 840.34417725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09499576 840.34417725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09499577 840.34417725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09499578 840.34423828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09499579 840.34423828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09499580 840.34423828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09499581 840.34423828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09499582 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09499583 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09499584 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09499585 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09499586 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09499587 840.34429932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09499588 840.34436035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09499589 840.34436035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09499590 840.34436035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09499591 840.34436035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09499592 840.34442139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09499593 840.34442139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09499594 840.34442139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09499595 840.34442139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09499596 840.34448242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09499597 840.34448242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09499598 840.34448242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09499599 840.34448242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09499600 840.34454346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09499601 840.34454346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09499602 840.34454346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09499603 840.34454346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09499604 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09499605 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09499606 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09499607 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09499608 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09499609 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09499610 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09499611 840.34460449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09499612 840.34466553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09499613 840.34466553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09499614 840.34466553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09499615 840.34466553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09499616 840.34472656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09499617 840.34472656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09499618 840.34472656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09499619 840.34472656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09499620 840.34478760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09499621 840.34478760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09499622 840.34478760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09499623 840.34478760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09499624 840.34484863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09499625 840.34484863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09499626 840.34484863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09499627 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09499628 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09499629 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09499630 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09499631 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09499632 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09499633 840.34490967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09499634 840.34497070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09499635 840.34497070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09499636 840.34497070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09499637 840.34497070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09499638 840.34503174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09499639 840.34503174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09499640 840.34503174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09499641 840.34503174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09499642 840.34509277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09499643 840.34509277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09499644 840.34509277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09499645 840.34509277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09499646 840.34515381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09499647 840.34515381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09499648 840.34515381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09499649 840.34515381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09499650 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09499651 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09499652 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09499653 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09499654 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09499655 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09499656 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09499657 840.34521484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09499658 840.34527588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09499659 840.34527588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09499660 840.34527588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09499661 840.34527588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09499662 840.34533691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09499663 840.34533691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09499664 840.34533691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09499665 840.34533691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09499666 840.34539795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09499667 840.34539795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09499668 840.34539795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09499669 840.34545898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09499670 840.34545898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09499671 840.34545898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09499672 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09499673 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09499674 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09499675 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09499676 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09499677 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09499678 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09499679 840.34552002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09499680 840.34558105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09499681 840.34558105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09499682 840.34558105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09499683 840.34558105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09499684 840.34564209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09499685 840.34564209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09499686 840.34564209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09499687 840.34564209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09499688 840.34570313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09499689 840.34570313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09499690 840.34570313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09499691 840.34570313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09499692 840.34576416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09499693 840.34576416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09499694 840.34576416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09499695 840.34576416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09499696 840.34582520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09499697 840.34582520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09499698 840.34582520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09499699 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09499700 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09499701 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09499702 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09499703 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09499704 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09499705 840.34588623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09499706 840.34594727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09499707 840.34594727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09499708 840.34594727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09499709 840.34594727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09499710 840.34600830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09499711 840.34600830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09499712 840.34600830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09499713 840.34600830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09499714 840.34606934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09499715 840.34606934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09499716 840.34606934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09499717 840.34606934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09499718 840.34613037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09499719 840.34613037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09499720 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09499721 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09499722 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09499723 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09499724 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09499725 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09499726 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09499727 840.34619141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09499728 840.34625244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09499729 840.34625244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09499730 840.34625244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09499731 840.34625244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09499732 840.34631348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09499733 840.34631348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09499734 840.34631348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09499735 840.34631348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09499736 840.34637451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09499737 840.34637451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09499738 840.34637451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09499739 840.34643555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09499740 840.34643555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09499741 840.34643555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09499742 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09499743 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09499744 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09499745 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09499746 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09499747 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09499748 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09499749 840.34649658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09499750 840.34655762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09499751 840.34655762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09499752 840.34655762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09499753 840.34655762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09499754 840.34661865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09499755 840.34661865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09499756 840.34667969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09499757 840.34667969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09499758 840.34667969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09499759 840.34667969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09499760 840.34674072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09499761 840.34674072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09499762 840.34674072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09499763 840.34674072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09499764 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09499765 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09499766 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09499767 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09499768 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09499769 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09499770 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09499771 840.34680176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09499772 840.34686279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09499773 840.34686279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09499774 840.34686279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09499775 840.34686279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09499776 840.34692383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09499777 840.34692383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09499778 840.34692383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09499779 840.34692383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09499780 840.34698486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09499781 840.34698486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09499782 840.34698486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09499783 840.34698486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09499784 840.34704590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09499785 840.34704590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09499786 840.34704590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09499787 840.34704590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09499788 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09499789 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09499790 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09499791 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09499792 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09499793 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09499794 840.34710693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09499795 840.34716797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09499796 840.34716797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09499797 840.34716797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09499798 840.34722900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09499799 840.34722900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09499800 840.34722900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09499801 840.34722900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09499802 840.34729004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09499803 840.34729004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09499804 840.34729004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09499805 840.34729004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09499806 840.34735107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09499807 840.34735107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09499808 840.34735107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09499809 840.34735107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09499810 840.34741211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09499811 840.34741211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09499812 840.34741211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09499813 840.34741211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09499814 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09499815 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09499816 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09499817 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09499818 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09499819 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09499820 840.34747314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09499821 840.34753418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09499822 840.34753418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09499823 840.34753418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09499824 840.34759521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09499825 840.34759521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09499826 840.34759521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09499827 840.34759521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09499828 840.34765625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09499829 840.34765625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09499830 840.34765625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09499831 840.34765625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09499832 840.34771729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09499833 840.34771729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09499834 840.34771729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09499835 840.34771729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09499836 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09499837 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09499838 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09499839 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09499840 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09499841 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09499842 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09499843 840.34777832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09499844 840.34783936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09499845 840.34783936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09499846 840.34783936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09499847 840.34783936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09499848 840.34790039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09499849 840.34790039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09499850 840.34796143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09499851 840.34796143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09499852 840.34796143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09499853 840.34796143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09499854 840.34802246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09499855 840.34802246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09499856 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09499857 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09499858 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09499859 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09499860 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09499861 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09499862 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09499863 840.34808350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09499864 840.34814453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09499865 840.34814453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09499866 840.34814453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09499867 840.34814453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09499868 840.34820557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09499869 840.34820557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09499870 840.34820557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09499871 840.34820557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09499872 840.34826660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09499873 840.34826660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09499874 840.34826660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09499875 840.34826660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09499876 840.34832764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09499877 840.34832764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09499878 840.34832764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09499879 840.34832764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09499880 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09499881 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09499882 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09499883 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09499884 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09499885 840.34838867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09499886 840.34844971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09499887 840.34844971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09499888 840.34844971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09499889 840.34844971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09499890 840.34851074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09499891 840.34851074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09499892 840.34851074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09499893 840.34851074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09499894 840.34857178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09499895 840.34857178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09499896 840.34857178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09499897 840.34863281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09499898 840.34863281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09499899 840.34863281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09499900 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09499901 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09499902 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09499903 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09499904 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09499905 840.34869385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09499906 840.34875488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09499907 840.34875488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09499908 840.34875488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09499909 840.34875488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09499910 840.34881592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09499911 840.34881592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09499912 840.34881592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09499913 840.34881592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09499914 840.34887695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09499915 840.34887695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09499916 840.34887695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09499917 840.34887695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09499918 840.34893799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09499919 840.34893799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09499920 840.34893799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09499921 840.34899902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09499922 840.34899902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09499923 840.34899902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09499924 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09499925 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09499926 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09499927 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09499928 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09499929 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09499930 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09499931 840.34906006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09499932 840.34912109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09499933 840.34912109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09499934 840.34912109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09499935 840.34912109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09499936 840.34918213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09499937 840.34918213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09499938 840.34918213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09499939 840.34924316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09499940 840.34924316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09499941 840.34924316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09499942 840.34930420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09499943 840.34930420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09499944 840.34930420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09499945 840.34930420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09499946 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09499947 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09499948 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09499949 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09499950 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09499951 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09499952 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09499953 840.34936523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09499954 840.34942627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09499955 840.34942627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09499956 840.34942627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09499957 840.34942627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09499958 840.34948730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09499959 840.34948730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09499960 840.34948730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09499961 840.34948730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09499962 840.34954834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09499963 840.34954834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09499964 840.34954834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09499965 840.34954834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09499966 840.34960938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09499967 840.34960938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09499968 840.34960938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09499969 840.34960938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09499970 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09499971 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09499972 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09499973 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09499974 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09499975 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09499976 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09499977 840.34967041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09499978 840.34973145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09499979 840.34973145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09499980 840.34973145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09499981 840.34979248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09499982 840.34979248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09499983 840.34979248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09499984 840.34985352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09499985 840.34985352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09499986 840.34985352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09499987 840.34985352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09499988 840.34991455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09499989 840.34991455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09499990 840.34991455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09499991 840.34991455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09499992 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09499993 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09499994 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09499995 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09499996 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09499997 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09499998 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09499999 840.34997559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09500000 840.35003662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09500001 840.35003662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09500002 840.35003662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09500003 840.35003662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09500004 840.35009766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09500005 840.35009766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09500006 840.35009766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09500007 840.35009766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09500008 840.35015869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09500009 840.35015869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09500010 840.35015869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09500011 840.35015869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09500012 840.35021973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09500013 840.35021973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09500014 840.35021973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09500015 840.35021973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09500016 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09500017 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09500018 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09500019 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09500020 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09500021 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09500022 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09500023 840.35028076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09500024 840.35034180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09500025 840.35034180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09500026 840.35040283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09500027 840.35040283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09500028 840.35040283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09500029 840.35040283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09500030 840.35046387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09500031 840.35046387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09500032 840.35046387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09500033 840.35046387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09500034 840.35052490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09500035 840.35052490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09500036 840.35052490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09500037 840.35052490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09500038 840.35058594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09500039 840.35058594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09500040 840.35058594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09500041 840.35058594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09500042 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09500043 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09500044 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09500045 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09500046 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09500047 840.35064697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09500048 840.35070801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09500049 840.35070801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09500050 840.35070801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09500051 840.35070801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09500052 840.35076904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09500053 840.35076904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09500054 840.35076904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09500055 840.35076904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09500056 840.35083008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09500057 840.35083008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09500058 840.35083008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09500059 840.35083008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09500060 840.35089111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09500061 840.35089111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09500062 840.35089111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09500063 840.35089111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09500064 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09500065 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09500066 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09500067 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09500068 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09500069 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09500070 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09500071 840.35095215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09500072 840.35101318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09500073 840.35101318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09500074 840.35101318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09500075 840.35101318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09500076 840.35107422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09500077 840.35107422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09500078 840.35107422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09500079 840.35107422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09500080 840.35113525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09500081 840.35113525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09500082 840.35113525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09500083 840.35113525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09500084 840.35119629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09500085 840.35119629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09500086 840.35119629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09500087 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09500088 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09500089 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09500090 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09500091 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09500092 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09500093 840.35125732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09500094 840.35131836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09500095 840.35131836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09500096 840.35131836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09500097 840.35131836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09500098 840.35137939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09500099 840.35137939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09500100 840.35137939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09500101 840.35137939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09500102 840.35144043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09500103 840.35144043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09500104 840.35144043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09500105 840.35144043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09500106 840.35150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09500107 840.35150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09500108 840.35150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09500109 840.35150146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09500110 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09500111 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09500112 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09500113 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09500114 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09500115 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09500116 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09500117 840.35156250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09500118 840.35162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09500119 840.35162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09500120 840.35162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09500121 840.35162354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09500122 840.35168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09500123 840.35168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09500124 840.35168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09500125 840.35168457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09500126 840.35174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09500127 840.35174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09500128 840.35174561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09500129 840.35180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09500130 840.35180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09500131 840.35180664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09500132 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09500133 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09500134 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09500135 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09500136 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09500137 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09500138 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09500139 840.35186768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09500140 840.35192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09500141 840.35192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09500142 840.35192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09500143 840.35192871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09500144 840.35198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09500145 840.35198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09500146 840.35198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09500147 840.35198975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09500148 840.35205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09500149 840.35205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09500150 840.35205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09500151 840.35205078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09500152 840.35211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09500153 840.35211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09500154 840.35211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09500155 840.35211182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09500156 840.35217285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09500157 840.35217285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09500158 840.35217285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09500159 840.35217285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09500160 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09500161 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09500162 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09500163 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09500164 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09500165 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09500166 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09500167 840.35223389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09500168 840.35229492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09500169 840.35229492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09500170 840.35229492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09500171 840.35229492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09500172 840.35235596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09500173 840.35235596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09500174 840.35241699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09500175 840.35241699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09500176 840.35241699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09500177 840.35241699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09500178 840.35247803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09500179 840.35247803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09500180 840.35247803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09500181 840.35247803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09500182 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09500183 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09500184 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09500185 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09500186 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09500187 840.35253906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09500188 840.35260010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09500189 840.35260010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09500190 840.35260010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09500191 840.35260010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09500192 840.35266113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09500193 840.35266113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09500194 840.35266113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09500195 840.35266113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09500196 840.35272217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09500197 840.35272217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09500198 840.35272217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09500199 840.35272217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09500200 840.35278320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09500201 840.35278320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09500202 840.35278320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09500203 840.35278320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09500204 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09500205 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09500206 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09500207 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09500208 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09500209 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09500210 840.35284424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09500211 840.35290527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09500212 840.35290527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09500213 840.35290527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09500214 840.35296631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09500215 840.35296631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09500216 840.35296631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09500217 840.35296631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09500218 840.35302734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09500219 840.35302734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09500220 840.35308838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09500221 840.35308838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09500222 840.35308838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09500223 840.35308838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09500224 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09500225 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09500226 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09500227 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09500228 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09500229 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09500230 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09500231 840.35314941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09500232 840.35321045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09500233 840.35321045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09500234 840.35321045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09500235 840.35321045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09500236 840.35327148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09500237 840.35327148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09500238 840.35327148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09500239 840.35327148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09500240 840.35333252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09500241 840.35333252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09500242 840.35333252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09500243 840.35339355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09500244 840.35339355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09500245 840.35339355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09500246 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09500247 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09500248 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09500249 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09500250 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09500251 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09500252 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09500253 840.35345459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09500254 840.35351563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09500255 840.35351563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09500256 840.35351563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09500257 840.35351563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09500258 840.35357666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09500259 840.35357666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09500260 840.35357666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09500261 840.35357666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09500262 840.35363770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09500263 840.35363770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09500264 840.35363770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09500265 840.35363770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09500266 840.35369873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09500267 840.35369873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09500268 840.35369873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09500269 840.35369873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09500270 840.35375977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09500271 840.35375977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09500272 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09500273 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09500274 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09500275 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09500276 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09500277 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09500278 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09500279 840.35382080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09500280 840.35388184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09500281 840.35388184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09500282 840.35388184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09500283 840.35388184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09500284 840.35394287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09500285 840.35394287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09500286 840.35394287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09500287 840.35394287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09500288 840.35400391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09500289 840.35400391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09500290 840.35400391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09500291 840.35400391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09500292 840.35406494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09500293 840.35406494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09500294 840.35406494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09500295 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09500296 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09500297 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09500298 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09500299 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09500300 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09500301 840.35412598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09500302 840.35418701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09500303 840.35418701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09500304 840.35418701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09500305 840.35418701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09500306 840.35424805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09500307 840.35424805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09500308 840.35424805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09500309 840.35424805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09500310 840.35430908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09500311 840.35430908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09500312 840.35430908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09500313 840.35430908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09500314 840.35437012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09500315 840.35437012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09500316 840.35437012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09500317 840.35437012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09500318 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09500319 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09500320 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09500321 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09500322 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09500323 840.35443115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09500324 840.35449219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09500325 840.35449219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09500326 840.35449219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09500327 840.35449219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09500328 840.35455322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09500329 840.35455322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09500330 840.35455322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09500331 840.35455322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09500332 840.35461426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09500333 840.35461426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09500334 840.35461426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09500335 840.35461426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09500336 840.35467529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09500337 840.35467529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09500338 840.35467529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09500339 840.35467529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09500340 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09500341 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09500342 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09500343 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09500344 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09500345 840.35473633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09500346 840.35479736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09500347 840.35479736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09500348 840.35479736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09500349 840.35479736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09500350 840.35485840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09500351 840.35485840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09500352 840.35485840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09500353 840.35485840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09500354 840.35491943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09500355 840.35491943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09500356 840.35491943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09500357 840.35491943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09500358 840.35498047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09500359 840.35498047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09500360 840.35498047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09500361 840.35498047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09500362 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09500363 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09500364 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09500365 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09500366 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09500367 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09500368 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09500369 840.35504150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09500370 840.35510254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09500371 840.35510254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09500372 840.35510254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09500373 840.35510254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09500374 840.35516357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09500375 840.35516357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09500376 840.35516357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09500377 840.35516357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09500378 840.35522461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09500379 840.35522461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09500380 840.35522461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09500381 840.35522461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09500382 840.35528564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09500383 840.35528564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09500384 840.35528564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09500385 840.35534668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09500386 840.35534668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09500387 840.35534668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09500388 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09500389 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09500390 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09500391 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09500392 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09500393 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09500394 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09500395 840.35540771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09500396 840.35546875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09500397 840.35546875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09500398 840.35546875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09500399 840.35546875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09500400 840.35552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09500401 840.35552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09500402 840.35552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09500403 840.35552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09500404 840.35559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09500405 840.35559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09500406 840.35559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09500407 840.35559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09500408 840.35565186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09500409 840.35565186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09500410 840.35565186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09500411 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09500412 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09500413 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09500414 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09500415 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09500416 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09500417 840.35571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09500418 840.35577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09500419 840.35577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09500420 840.35577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09500421 840.35577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09500422 840.35583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09500423 840.35583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09500424 840.35583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09500425 840.35583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09500426 840.35589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09500427 840.35589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09500428 840.35589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09500429 840.35589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09500430 840.35595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09500431 840.35595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09500432 840.35595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09500433 840.35595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09500434 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09500435 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09500436 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09500437 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09500438 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09500439 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09500440 840.35601807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09500441 840.35607910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09500442 840.35607910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09500443 840.35607910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09500444 840.35614014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09500445 840.35614014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09500446 840.35614014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09500447 840.35614014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09500448 840.35620117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09500449 840.35620117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09500450 840.35626221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09500451 840.35626221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09500452 840.35626221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09500453 840.35626221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09500454 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09500455 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09500456 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09500457 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09500458 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09500459 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09500460 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09500461 840.35632324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09500462 840.35638428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09500463 840.35638428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09500464 840.35638428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09500465 840.35638428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09500466 840.35644531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09500467 840.35644531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09500468 840.35650635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09500469 840.35650635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09500470 840.35650635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09500471 840.35650635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09500472 840.35656738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09500473 840.35656738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09500474 840.35656738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09500475 840.35656738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09500476 840.35662842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09500477 840.35662842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09500478 840.35662842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09500479 840.35662842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09500480 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09500481 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09500482 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09500483 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09500484 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09500485 840.35668945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09500486 840.35675049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09500487 840.35675049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09500488 840.35675049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09500489 840.35675049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09500490 840.35681152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09500491 840.35681152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09500492 840.35681152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09500493 840.35681152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09500494 840.35687256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09500495 840.35687256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09500496 840.35687256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09500497 840.35687256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09500498 840.35693359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09500499 840.35693359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09500500 840.35693359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09500501 840.35693359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09500502 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09500503 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09500504 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09500505 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09500506 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09500507 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09500508 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09500509 840.35699463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09500510 840.35705566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09500511 840.35705566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09500512 840.35705566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09500513 840.35705566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09500514 840.35711670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09500515 840.35711670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09500516 840.35711670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09500517 840.35711670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09500518 840.35717773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09500519 840.35717773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09500520 840.35717773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09500521 840.35717773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09500522 840.35723877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09500523 840.35723877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09500524 840.35723877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09500525 840.35723877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09500526 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09500527 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09500528 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09500529 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09500530 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09500531 840.35729980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09500532 840.35736084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09500533 840.35736084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09500534 840.35736084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09500535 840.35736084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09500536 840.35742188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09500537 840.35742188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09500538 840.35742188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09500539 840.35742188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09500540 840.35748291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09500541 840.35748291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09500542 840.35748291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09500543 840.35748291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09500544 840.35754395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09500545 840.35754395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09500546 840.35754395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09500547 840.35754395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09500548 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09500549 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09500550 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09500551 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09500552 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09500553 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09500554 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09500555 840.35760498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09500556 840.35766602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09500557 840.35766602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09500558 840.35766602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09500559 840.35766602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09500560 840.35772705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09500561 840.35772705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09500562 840.35772705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09500563 840.35772705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09500564 840.35778809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09500565 840.35778809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09500566 840.35778809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09500567 840.35778809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09500568 840.35784912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09500569 840.35784912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09500570 840.35784912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09500571 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09500572 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09500573 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09500574 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09500575 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09500576 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09500577 840.35791016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09500578 840.35797119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09500579 840.35797119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09500580 840.35797119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09500581 840.35797119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09500582 840.35803223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09500583 840.35803223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09500584 840.35803223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09500585 840.35803223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09500586 840.35809326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09500587 840.35809326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09500588 840.35809326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09500589 840.35809326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09500590 840.35815430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09500591 840.35815430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09500592 840.35815430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09500593 840.35815430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09500594 840.35821533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09500595 840.35821533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09500596 840.35821533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09500597 840.35821533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09500598 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09500599 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09500600 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09500601 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09500602 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09500603 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09500604 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09500605 840.35827637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09500606 840.35833740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09500607 840.35833740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09500608 840.35833740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09500609 840.35833740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09500610 840.35839844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09500611 840.35839844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09500612 840.35845947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09500613 840.35845947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09500614 840.35845947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09500615 840.35845947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09500616 840.35852051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09500617 840.35852051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09500618 840.35852051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09500619 840.35852051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09500620 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09500621 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09500622 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09500623 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09500624 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09500625 840.35858154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09500626 840.35864258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09500627 840.35864258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09500628 840.35864258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09500629 840.35864258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09500630 840.35870361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09500631 840.35870361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09500632 840.35870361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09500633 840.35870361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09500634 840.35876465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09500635 840.35876465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09500636 840.35882568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09500637 840.35882568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09500638 840.35882568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09500639 840.35882568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09500640 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09500641 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09500642 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09500643 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09500644 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09500645 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09500646 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09500647 840.35888672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09500648 840.35894775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09500649 840.35894775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09500650 840.35894775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09500651 840.35900879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09500652 840.35900879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09500653 840.35900879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09500654 840.35906982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09500655 840.35906982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09500656 840.35906982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09500657 840.35906982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09500658 840.35913086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09500659 840.35913086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09500660 840.35913086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09500661 840.35913086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09500662 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09500663 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09500664 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09500665 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09500666 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09500667 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09500668 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09500669 840.35919189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09500670 840.35925293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09500671 840.35925293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09500672 840.35925293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09500673 840.35925293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09500674 840.35931396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09500675 840.35931396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09500676 840.35931396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09500677 840.35931396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09500678 840.35937500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09500679 840.35937500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09500680 840.35937500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09500681 840.35937500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09500682 840.35943604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09500683 840.35943604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09500684 840.35943604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09500685 840.35943604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09500686 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09500687 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09500688 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09500689 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09500690 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09500691 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09500692 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09500693 840.35949707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09500694 840.35955811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09500695 840.35955811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09500696 840.35955811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09500697 840.35961914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09500698 840.35961914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09500699 840.35961914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09500700 840.35968018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09500701 840.35968018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09500702 840.35968018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09500703 840.35968018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09500704 840.35974121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09500705 840.35974121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09500706 840.35974121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09500707 840.35974121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09500708 840.35980225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09500709 840.35980225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09500710 840.35980225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09500711 840.35980225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09500712 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09500713 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09500714 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09500715 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09500716 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09500717 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09500718 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09500719 840.35986328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09500720 840.35992432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09500721 840.35992432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09500722 840.35992432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09500723 840.35992432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09500724 840.35998535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09500725 840.35998535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09500726 840.35998535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09500727 840.35998535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09500728 840.36004639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09500729 840.36004639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09500730 840.36004639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09500731 840.36004639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09500732 840.36010742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09500733 840.36010742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09500734 840.36010742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09500735 840.36010742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09500736 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09500737 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09500738 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09500739 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09500740 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09500741 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09500742 840.36016846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09500743 840.36022949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09500744 840.36022949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09500745 840.36022949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09500746 840.36029053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09500747 840.36029053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09500748 840.36029053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09500749 840.36029053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09500750 840.36035156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09500751 840.36035156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09500752 840.36035156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09500753 840.36035156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09500754 840.36041260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09500755 840.36041260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09500756 840.36041260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09500757 840.36041260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09500758 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09500759 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09500760 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09500761 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09500762 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09500763 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09500764 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09500765 840.36047363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09500766 840.36053467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09500767 840.36053467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09500768 840.36053467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09500769 840.36053467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09500770 840.36059570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09500771 840.36059570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09500772 840.36059570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09500773 840.36059570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09500774 840.36065674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09500775 840.36065674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09500776 840.36065674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09500777 840.36065674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09500778 840.36071777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09500779 840.36071777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09500780 840.36071777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09500781 840.36071777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09500782 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09500783 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09500784 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09500785 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09500786 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09500787 840.36077881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09500788 840.36083984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09500789 840.36083984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09500790 840.36083984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09500791 840.36083984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09500792 840.36090088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09500793 840.36090088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09500794 840.36090088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09500795 840.36090088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09500796 840.36096191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09500797 840.36096191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09500798 840.36096191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09500799 840.36096191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09500800 840.36102295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09500801 840.36102295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09500802 840.36102295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09500803 840.36102295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09500804 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09500805 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09500806 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09500807 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09500808 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09500809 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09500810 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09500811 840.36108398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09500812 840.36114502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09500813 840.36114502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09500814 840.36114502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09500815 840.36114502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09500816 840.36120605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09500817 840.36120605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09500818 840.36120605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09500819 840.36120605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09500820 840.36126709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09500821 840.36126709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09500822 840.36126709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09500823 840.36126709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09500824 840.36132813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09500825 840.36132813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09500826 840.36132813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09500827 840.36132813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09500828 840.36138916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09500829 840.36138916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09500830 840.36138916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09500831 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09500832 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09500833 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09500834 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09500835 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09500836 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09500837 840.36145020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09500838 840.36151123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09500839 840.36151123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09500840 840.36151123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09500841 840.36151123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09500842 840.36157227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09500843 840.36157227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09500844 840.36157227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09500845 840.36157227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09500846 840.36163330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09500847 840.36163330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09500848 840.36163330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09500849 840.36163330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09500850 840.36169434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09500851 840.36169434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09500852 840.36169434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09500853 840.36169434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09500854 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09500855 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09500856 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09500857 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09500858 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09500859 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09500860 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09500861 840.36175537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09500862 840.36181641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09500863 840.36181641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09500864 840.36181641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09500865 840.36181641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09500866 840.36187744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09500867 840.36187744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09500868 840.36187744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09500869 840.36187744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09500870 840.36193848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09500871 840.36193848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09500872 840.36193848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09500873 840.36199951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09500874 840.36199951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09500875 840.36199951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09500876 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09500877 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09500878 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09500879 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09500880 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09500881 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09500882 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09500883 840.36206055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09500884 840.36212158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09500885 840.36212158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09500886 840.36212158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09500887 840.36212158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09500888 840.36218262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09500889 840.36218262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09500890 840.36218262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09500891 840.36218262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09500892 840.36224365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09500893 840.36224365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09500894 840.36224365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09500895 840.36224365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09500896 840.36230469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09500897 840.36230469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09500898 840.36230469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09500899 840.36230469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09500900 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09500901 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09500902 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09500903 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09500904 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09500905 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09500906 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09500907 840.36236572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09500908 840.36242676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09500909 840.36242676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09500910 840.36248779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09500911 840.36248779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09500912 840.36248779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09500913 840.36254883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09500914 840.36254883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09500915 840.36254883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09500916 840.36260986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09500917 840.36260986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09500918 840.36260986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09500919 840.36260986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09500920 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09500921 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09500922 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09500923 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09500924 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09500925 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09500926 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09500927 840.36267090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09500928 840.36273193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09500929 840.36273193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09500930 840.36273193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09500931 840.36273193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09500932 840.36279297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09500933 840.36279297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09500934 840.36279297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09500935 840.36279297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09500936 840.36285400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09500937 840.36285400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09500938 840.36285400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09500939 840.36285400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09500940 840.36291504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09500941 840.36291504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09500942 840.36291504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09500943 840.36291504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09500944 840.36297607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09500945 840.36297607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09500946 840.36297607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09500947 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09500948 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09500949 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09500950 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09500951 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09500952 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09500953 840.36303711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09500954 840.36309814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09500955 840.36309814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09500956 840.36309814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09500957 840.36309814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09500958 840.36315918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09500959 840.36315918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09500960 840.36315918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09500961 840.36315918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09500962 840.36322021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09500963 840.36322021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09500964 840.36322021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09500965 840.36322021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09500966 840.36328125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09500967 840.36328125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09500968 840.36328125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09500969 840.36328125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09500970 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09500971 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09500972 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09500973 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09500974 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09500975 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09500976 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09500977 840.36334229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09500978 840.36340332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09500979 840.36340332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09500980 840.36340332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09500981 840.36340332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09500982 840.36346436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09500983 840.36346436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09500984 840.36346436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09500985 840.36346436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09500986 840.36352539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09500987 840.36352539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09500988 840.36358643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09500989 840.36358643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09500990 840.36358643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09500991 840.36358643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09500992 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09500993 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09500994 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09500995 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09500996 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09500997 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09500998 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09500999 840.36364746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09501000 840.36370850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09501001 840.36370850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09501002 840.36370850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09501003 840.36370850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09501004 840.36376953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09501005 840.36376953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09501006 840.36376953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09501007 840.36376953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09501008 840.36383057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09501009 840.36383057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09501010 840.36383057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09501011 840.36383057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09501012 840.36389160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09501013 840.36389160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09501014 840.36389160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09501015 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09501016 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09501017 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09501018 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09501019 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09501020 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09501021 840.36395264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09501022 840.36401367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09501023 840.36401367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09501024 840.36407471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09501025 840.36407471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09501026 840.36407471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09501027 840.36407471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09501028 840.36413574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09501029 840.36413574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09501030 840.36413574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09501031 840.36413574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09501032 840.36419678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09501033 840.36419678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09501034 840.36419678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09501035 840.36419678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09501036 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09501037 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09501038 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09501039 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09501040 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09501041 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09501042 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09501043 840.36425781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09501044 840.36431885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09501045 840.36431885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09501046 840.36431885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09501047 840.36437988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09501048 840.36437988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09501049 840.36437988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09501050 840.36444092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09501051 840.36444092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09501052 840.36444092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09501053 840.36444092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09501054 840.36450195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09501055 840.36450195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09501056 840.36450195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09501057 840.36450195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09501058 840.36456299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09501059 840.36456299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09501060 840.36456299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09501061 840.36456299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09501062 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09501063 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09501064 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09501065 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09501066 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09501067 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09501068 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09501069 840.36462402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09501070 840.36468506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09501071 840.36468506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09501072 840.36468506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09501073 840.36468506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09501074 840.36474609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09501075 840.36474609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09501076 840.36474609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09501077 840.36480713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09501078 840.36480713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09501079 840.36480713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09501080 840.36486816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09501081 840.36486816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09501082 840.36486816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09501083 840.36486816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09501084 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09501085 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09501086 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09501087 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09501088 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09501089 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09501090 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09501091 840.36492920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09501092 840.36499023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09501093 840.36499023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09501094 840.36499023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09501095 840.36499023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09501096 840.36505127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09501097 840.36505127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09501098 840.36505127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09501099 840.36505127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09501100 840.36511230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09501101 840.36511230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09501102 840.36511230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09501103 840.36517334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09501104 840.36517334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09501105 840.36517334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09501106 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09501107 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09501108 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09501109 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09501110 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09501111 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09501112 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09501113 840.36523438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09501114 840.36529541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09501115 840.36529541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09501116 840.36529541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09501117 840.36529541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09501118 840.36535645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09501119 840.36535645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09501120 840.36535645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09501121 840.36535645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09501122 840.36541748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09501123 840.36541748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09501124 840.36541748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09501125 840.36541748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09501126 840.36547852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09501127 840.36547852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09501128 840.36547852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09501129 840.36547852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09501130 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09501131 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09501132 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09501133 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09501134 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09501135 840.36553955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09501136 840.36560059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09501137 840.36560059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09501138 840.36560059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09501139 840.36560059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09501140 840.36566162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09501141 840.36566162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09501142 840.36566162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09501143 840.36566162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09501144 840.36572266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09501145 840.36572266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09501146 840.36572266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09501147 840.36572266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09501148 840.36578369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09501149 840.36578369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09501150 840.36578369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09501151 840.36578369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09501152 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09501153 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09501154 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09501155 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09501156 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09501157 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09501158 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09501159 840.36584473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09501160 840.36590576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09501161 840.36590576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09501162 840.36590576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09501163 840.36590576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09501164 840.36596680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09501165 840.36596680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09501166 840.36596680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09501167 840.36596680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09501168 840.36602783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09501169 840.36602783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09501170 840.36602783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09501171 840.36602783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09501172 840.36608887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09501173 840.36608887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09501174 840.36608887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09501175 840.36614990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09501176 840.36614990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09501177 840.36614990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09501178 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09501179 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09501180 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09501181 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09501182 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09501183 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09501184 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09501185 840.36621094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09501186 840.36627197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09501187 840.36627197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09501188 840.36627197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09501189 840.36627197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09501190 840.36633301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09501191 840.36633301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09501192 840.36633301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09501193 840.36633301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09501194 840.36639404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09501195 840.36639404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09501196 840.36639404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09501197 840.36639404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09501198 840.36645508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09501199 840.36645508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09501200 840.36645508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09501201 840.36645508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09501202 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09501203 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09501204 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09501205 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09501206 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09501207 840.36651611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09501208 840.36657715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09501209 840.36657715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09501210 840.36657715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09501211 840.36657715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09501212 840.36663818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09501213 840.36663818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09501214 840.36663818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09501215 840.36663818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09501216 840.36669922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09501217 840.36669922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09501218 840.36669922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09501219 840.36669922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09501220 840.36676025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09501221 840.36676025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09501222 840.36676025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09501223 840.36676025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09501224 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09501225 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09501226 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09501227 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09501228 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09501229 840.36682129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09501230 840.36688232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09501231 840.36688232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09501232 840.36688232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09501233 840.36688232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09501234 840.36694336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09501235 840.36694336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09501236 840.36694336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09501237 840.36694336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09501238 840.36700439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09501239 840.36700439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09501240 840.36700439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09501241 840.36700439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09501242 840.36706543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09501243 840.36706543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09501244 840.36706543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09501245 840.36706543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09501246 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09501247 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09501248 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09501249 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09501250 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09501251 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09501252 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09501253 840.36712646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09501254 840.36718750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09501255 840.36718750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09501256 840.36718750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09501257 840.36718750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09501258 840.36724854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09501259 840.36724854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09501260 840.36724854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09501261 840.36724854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09501262 840.36730957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09501263 840.36730957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09501264 840.36730957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09501265 840.36730957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09501266 840.36737061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09501267 840.36737061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09501268 840.36737061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09501269 840.36743164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09501270 840.36743164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09501271 840.36743164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09501272 840.36743164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09501273 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09501274 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09501275 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09501276 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09501277 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09501278 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09501279 840.36749268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09501280 840.36755371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09501281 840.36755371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09501282 840.36755371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09501283 840.36755371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09501284 840.36761475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09501285 840.36761475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09501286 840.36761475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09501287 840.36761475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09501288 840.36767578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09501289 840.36767578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09501290 840.36767578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09501291 840.36767578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09501292 840.36773682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09501293 840.36773682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09501294 840.36773682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09501295 840.36773682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09501296 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09501297 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09501298 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09501299 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09501300 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09501301 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09501302 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09501303 840.36779785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09501304 840.36785889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09501305 840.36785889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09501306 840.36785889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09501307 840.36785889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09501308 840.36791992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09501309 840.36791992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09501310 840.36791992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09501311 840.36791992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09501312 840.36798096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09501313 840.36798096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09501314 840.36798096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09501315 840.36804199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09501316 840.36804199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09501317 840.36804199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09501318 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09501319 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09501320 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09501321 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09501322 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09501323 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09501324 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09501325 840.36810303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09501326 840.36816406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09501327 840.36816406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09501328 840.36816406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09501329 840.36816406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09501330 840.36822510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09501331 840.36822510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09501332 840.36822510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09501333 840.36822510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09501334 840.36828613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09501335 840.36828613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09501336 840.36828613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09501337 840.36828613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09501338 840.36834717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09501339 840.36834717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09501340 840.36834717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09501341 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09501342 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09501343 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09501344 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09501345 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09501346 840.36840820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09501347 840.36846924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09501348 840.36846924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09501349 840.36846924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09501350 840.36853027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09501351 840.36853027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09501352 840.36853027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09501353 840.36853027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09501354 840.36859131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09501355 840.36859131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09501356 840.36865234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09501357 840.36865234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09501358 840.36865234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09501359 840.36865234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09501360 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09501361 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09501362 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09501363 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09501364 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09501365 840.36871338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09501366 840.36877441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09501367 840.36877441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09501368 840.36877441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09501369 840.36877441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09501370 840.36883545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09501371 840.36883545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09501372 840.36883545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09501373 840.36883545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09501374 840.36889648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09501375 840.36889648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09501376 840.36889648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09501377 840.36889648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09501378 840.36895752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09501379 840.36895752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09501380 840.36895752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09501381 840.36895752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09501382 840.36901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09501383 840.36901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09501384 840.36901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09501385 840.36901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09501386 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09501387 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09501388 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09501389 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09501390 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09501391 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09501392 840.36907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09501393 840.36914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09501394 840.36914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09501395 840.36914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09501396 840.36920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09501397 840.36920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09501398 840.36920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09501399 840.36920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09501400 840.36926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09501401 840.36926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09501402 840.36926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09501403 840.36926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09501404 840.36932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09501405 840.36932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09501406 840.36932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09501407 840.36932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09501408 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09501409 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09501410 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09501411 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09501412 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09501413 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09501414 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09501415 840.36938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09501416 840.36944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09501417 840.36944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09501418 840.36944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09501419 840.36944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09501420 840.36950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09501421 840.36950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09501422 840.36950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09501423 840.36950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09501424 840.36956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09501425 840.36956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09501426 840.36956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09501427 840.36956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09501428 840.36962891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09501429 840.36962891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09501430 840.36962891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09501431 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09501432 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09501433 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09501434 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09501435 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09501436 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09501437 840.36968994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09501438 840.36975098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09501439 840.36975098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09501440 840.36975098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09501441 840.36975098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09501442 840.36981201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09501443 840.36981201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09501444 840.36981201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09501445 840.36981201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09501446 840.36987305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09501447 840.36987305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09501448 840.36987305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09501449 840.36987305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09501450 840.36993408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09501451 840.36993408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09501452 840.36993408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09501453 840.36993408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09501454 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09501455 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09501456 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09501457 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09501458 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09501459 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09501460 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09501461 840.36999512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09501462 840.37005615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09501463 840.37005615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09501464 840.37005615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09501465 840.37005615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09501466 840.37011719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09501467 840.37011719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09501468 840.37011719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09501469 840.37011719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09501470 840.37017822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09501471 840.37017822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09501472 840.37017822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09501473 840.37017822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09501474 840.37023926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09501475 840.37023926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09501476 840.37023926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09501477 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09501478 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09501479 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09501480 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09501481 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09501482 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09501483 840.37030029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09501484 840.37036133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09501485 840.37036133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09501486 840.37036133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09501487 840.37036133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09501488 840.37042236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09501489 840.37042236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09501490 840.37042236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09501491 840.37042236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09501492 840.37048340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09501493 840.37048340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09501494 840.37048340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09501495 840.37048340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09501496 840.37054443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09501497 840.37054443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09501498 840.37054443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09501499 840.37054443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09501500 840.37060547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09501501 840.37060547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09501502 840.37060547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09501503 840.37060547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09501504 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09501505 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09501506 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09501507 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09501508 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09501509 840.37066650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09501510 840.37072754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09501511 840.37072754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09501512 840.37072754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09501513 840.37072754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09501514 840.37078857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09501515 840.37078857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09501516 840.37078857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09501517 840.37078857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09501518 840.37084961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09501519 840.37084961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09501520 840.37084961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09501521 840.37084961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09501522 840.37091064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09501523 840.37091064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09501524 840.37091064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09501525 840.37091064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09501526 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09501527 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09501528 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09501529 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09501530 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09501531 840.37097168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09501532 840.37103271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09501533 840.37103271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09501534 840.37103271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09501535 840.37103271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09501536 840.37109375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09501537 840.37109375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09501538 840.37115479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09501539 840.37115479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09501540 840.37115479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09501541 840.37115479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09501542 840.37121582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09501543 840.37121582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09501544 840.37121582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09501545 840.37121582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09501546 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09501547 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09501548 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09501549 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09501550 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09501551 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09501552 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09501553 840.37127686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09501554 840.37133789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09501555 840.37133789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09501556 840.37139893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09501557 840.37139893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09501558 840.37139893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09501559 840.37139893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09501560 840.37145996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09501561 840.37145996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09501562 840.37145996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09501563 840.37145996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09501564 840.37152100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09501565 840.37152100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09501566 840.37152100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09501567 840.37152100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09501568 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09501569 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09501570 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09501571 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09501572 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09501573 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09501574 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09501575 840.37158203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09501576 840.37164307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09501577 840.37164307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09501578 840.37164307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09501579 840.37170410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09501580 840.37170410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09501581 840.37170410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09501582 840.37176514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09501583 840.37176514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09501584 840.37176514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09501585 840.37176514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09501586 840.37182617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09501587 840.37182617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09501588 840.37182617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09501589 840.37182617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09501590 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09501591 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09501592 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09501593 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09501594 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09501595 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09501596 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09501597 840.37188721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09501598 840.37194824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09501599 840.37194824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09501600 840.37200928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09501601 840.37200928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09501602 840.37200928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09501603 840.37200928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09501604 840.37207031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09501605 840.37207031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09501606 840.37207031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09501607 840.37207031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09501608 840.37213135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09501609 840.37213135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09501610 840.37213135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09501611 840.37213135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09501612 840.37219238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09501613 840.37219238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09501614 840.37219238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09501615 840.37219238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09501616 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09501617 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09501618 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09501619 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09501620 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09501621 840.37225342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09501622 840.37231445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09501623 840.37231445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09501624 840.37231445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09501625 840.37231445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09501626 840.37237549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09501627 840.37237549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09501628 840.37237549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09501629 840.37237549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09501630 840.37243652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09501631 840.37243652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09501632 840.37243652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09501633 840.37243652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09501634 840.37249756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09501635 840.37249756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09501636 840.37249756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09501637 840.37249756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09501638 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09501639 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09501640 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09501641 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09501642 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09501643 840.37255859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09501644 840.37261963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09501645 840.37261963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09501646 840.37261963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09501647 840.37261963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09501648 840.37268066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09501649 840.37268066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09501650 840.37268066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09501651 840.37268066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09501652 840.37274170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09501653 840.37274170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09501654 840.37274170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09501655 840.37274170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09501656 840.37280273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09501657 840.37280273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09501658 840.37280273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09501659 840.37280273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09501660 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09501661 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09501662 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09501663 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09501664 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09501665 840.37286377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09501666 840.37292480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09501667 840.37292480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09501668 840.37292480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09501669 840.37292480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09501670 840.37298584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09501671 840.37298584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09501672 840.37298584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09501673 840.37298584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09501674 840.37304688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09501675 840.37304688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09501676 840.37304688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09501677 840.37304688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09501678 840.37310791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09501679 840.37310791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09501680 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09501681 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09501682 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09501683 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09501684 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09501685 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09501686 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09501687 840.37316895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09501688 840.37322998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09501689 840.37322998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09501690 840.37322998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09501691 840.37322998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09501692 840.37329102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09501693 840.37329102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09501694 840.37329102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09501695 840.37329102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09501696 840.37335205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09501697 840.37335205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09501698 840.37335205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09501699 840.37335205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09501700 840.37341309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09501701 840.37341309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09501702 840.37341309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09501703 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09501704 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09501705 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09501706 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09501707 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09501708 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09501709 840.37347412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09501710 840.37353516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09501711 840.37353516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09501712 840.37353516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09501713 840.37353516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09501714 840.37359619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09501715 840.37359619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09501716 840.37359619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09501717 840.37359619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09501718 840.37365723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09501719 840.37365723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09501720 840.37365723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09501721 840.37365723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09501722 840.37371826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09501723 840.37371826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09501724 840.37371826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09501725 840.37371826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09501726 840.37377930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09501727 840.37377930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09501728 840.37377930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09501729 840.37377930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09501730 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09501731 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09501732 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09501733 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09501734 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09501735 840.37384033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09501736 840.37390137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09501737 840.37390137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09501738 840.37390137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09501739 840.37390137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09501740 840.37396240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09501741 840.37396240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09501742 840.37396240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09501743 840.37396240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09501744 840.37402344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09501745 840.37402344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09501746 840.37402344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09501747 840.37402344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09501748 840.37408447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09501749 840.37408447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09501750 840.37408447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09501751 840.37408447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09501752 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09501753 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09501754 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09501755 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09501756 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09501757 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09501758 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09501759 840.37414551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09501760 840.37420654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09501761 840.37420654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09501762 840.37420654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09501763 840.37420654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09501764 840.37426758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09501765 840.37426758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09501766 840.37426758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09501767 840.37432861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09501768 840.37432861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09501769 840.37432861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09501770 840.37438965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09501771 840.37438965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09501772 840.37438965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09501773 840.37438965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09501774 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09501775 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09501776 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09501777 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09501778 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09501779 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09501780 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09501781 840.37445068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09501782 840.37451172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09501783 840.37451172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09501784 840.37451172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09501785 840.37457275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09501786 840.37457275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09501787 840.37457275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09501788 840.37463379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09501789 840.37463379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09501790 840.37463379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09501791 840.37463379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09501792 840.37469482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09501793 840.37469482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09501794 840.37469482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09501795 840.37469482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09501796 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09501797 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09501798 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09501799 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09501800 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09501801 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09501802 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09501803 840.37475586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09501804 840.37481689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09501805 840.37481689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09501806 840.37481689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09501807 840.37487793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09501808 840.37487793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09501809 840.37487793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09501810 840.37493896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09501811 840.37493896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09501812 840.37493896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09501813 840.37493896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09501814 840.37500000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09501815 840.37500000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09501816 840.37500000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09501817 840.37500000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09501818 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09501819 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09501820 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09501821 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09501822 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09501823 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09501824 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09501825 840.37506104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09501826 840.37512207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09501827 840.37512207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09501828 840.37512207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09501829 840.37512207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09501830 840.37518311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09501831 840.37518311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09501832 840.37518311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09501833 840.37518311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09501834 840.37524414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09501835 840.37524414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09501836 840.37524414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09501837 840.37524414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09501838 840.37530518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09501839 840.37530518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09501840 840.37530518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09501841 840.37530518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09501842 840.37536621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09501843 840.37536621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09501844 840.37536621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09501845 840.37536621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09501846 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09501847 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09501848 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09501849 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09501850 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09501851 840.37542725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09501852 840.37548828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09501853 840.37548828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09501854 840.37548828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09501855 840.37548828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09501856 840.37554932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09501857 840.37554932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09501858 840.37554932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09501859 840.37554932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09501860 840.37561035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09501861 840.37561035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09501862 840.37561035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09501863 840.37561035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09501864 840.37567139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09501865 840.37567139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09501866 840.37567139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09501867 840.37567139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09501868 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09501869 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09501870 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09501871 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09501872 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09501873 840.37573242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09501874 840.37579346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09501875 840.37579346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09501876 840.37579346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09501877 840.37579346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09501878 840.37585449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09501879 840.37585449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09501880 840.37591553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09501881 840.37591553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09501882 840.37591553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09501883 840.37591553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09501884 840.37597656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09501885 840.37597656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09501886 840.37597656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09501887 840.37597656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09501888 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09501889 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09501890 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09501891 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09501892 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09501893 840.37603760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09501894 840.37609863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09501895 840.37609863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09501896 840.37609863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09501897 840.37609863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09501898 840.37615967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09501899 840.37615967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09501900 840.37615967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09501901 840.37615967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09501902 840.37622070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09501903 840.37622070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09501904 840.37622070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09501905 840.37622070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09501906 840.37628174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09501907 840.37628174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09501908 840.37628174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09501909 840.37628174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09501910 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09501911 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09501912 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09501913 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09501914 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09501915 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09501916 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09501917 840.37634277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09501918 840.37640381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09501919 840.37640381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09501920 840.37646484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09501921 840.37646484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09501922 840.37646484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09501923 840.37646484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09501924 840.37652588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09501925 840.37652588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09501926 840.37652588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09501927 840.37652588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09501928 840.37658691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09501929 840.37658691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09501930 840.37658691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09501931 840.37658691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09501932 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09501933 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09501934 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09501935 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09501936 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09501937 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09501938 840.37664795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09501939 840.37670898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09501940 840.37670898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09501941 840.37670898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09501942 840.37677002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09501943 840.37677002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09501944 840.37677002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09501945 840.37677002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09501946 840.37683105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09501947 840.37683105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09501948 840.37683105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09501949 840.37683105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09501950 840.37689209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09501951 840.37689209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09501952 840.37689209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09501953 840.37689209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09501954 840.37695313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09501955 840.37695313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09501956 840.37695313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09501957 840.37695313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09501958 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09501959 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09501960 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09501961 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09501962 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09501963 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09501964 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09501965 840.37701416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09501966 840.37707520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09501967 840.37707520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09501968 840.37707520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09501969 840.37707520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09501970 840.37713623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09501971 840.37713623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09501972 840.37713623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09501973 840.37713623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09501974 840.37719727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09501975 840.37719727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09501976 840.37719727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09501977 840.37725830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09501978 840.37725830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09501979 840.37725830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09501980 840.37725830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09501981 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09501982 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09501983 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09501984 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09501985 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09501986 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09501987 840.37731934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09501988 840.37738037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09501989 840.37738037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09501990 840.37738037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09501991 840.37738037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09501992 840.37744141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09501993 840.37744141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09501994 840.37744141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09501995 840.37744141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09501996 840.37750244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09501997 840.37750244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09501998 840.37750244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09501999 840.37750244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09502000 840.37756348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09502001 840.37756348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09502002 840.37756348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09502003 840.37756348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09502004 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09502005 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09502006 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09502007 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09502008 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09502009 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09502010 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09502011 840.37762451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09502012 840.37768555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09502013 840.37768555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09502014 840.37768555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09502015 840.37768555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09502016 840.37774658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09502017 840.37774658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09502018 840.37780762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09502019 840.37780762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09502020 840.37780762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09502021 840.37780762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09502022 840.37786865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09502023 840.37786865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09502024 840.37786865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09502025 840.37786865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09502026 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09502027 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09502028 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09502029 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09502030 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09502031 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09502032 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09502033 840.37792969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09502034 840.37799072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09502035 840.37799072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09502036 840.37799072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09502037 840.37799072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09502038 840.37805176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09502039 840.37805176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09502040 840.37811279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09502041 840.37811279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09502042 840.37811279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09502043 840.37811279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09502044 840.37817383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09502045 840.37817383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09502046 840.37817383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09502047 840.37817383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09502048 840.37823486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09502049 840.37823486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09502050 840.37823486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09502051 840.37823486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09502052 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09502053 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09502054 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09502055 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09502056 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09502057 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09502058 840.37829590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09502059 840.37835693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09502060 840.37835693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09502061 840.37835693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09502062 840.37841797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09502063 840.37841797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09502064 840.37841797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09502065 840.37841797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09502066 840.37847900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09502067 840.37847900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09502068 840.37847900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09502069 840.37847900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09502070 840.37854004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09502071 840.37854004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09502072 840.37854004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09502073 840.37854004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09502074 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09502075 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09502076 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09502077 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09502078 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09502079 840.37860107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09502080 840.37866211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09502081 840.37866211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09502082 840.37866211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09502083 840.37866211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09502084 840.37872314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09502085 840.37872314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09502086 840.37872314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09502087 840.37872314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09502088 840.37878418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09502089 840.37878418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09502090 840.37878418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09502091 840.37878418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09502092 840.37884521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09502093 840.37884521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09502094 840.37884521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09502095 840.37884521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09502096 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09502097 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09502098 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09502099 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09502100 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09502101 840.37890625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09502102 840.37896729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09502103 840.37896729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09502104 840.37896729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09502105 840.37896729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09502106 840.37902832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09502107 840.37902832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09502108 840.37902832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09502109 840.37902832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09502110 840.37908936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09502111 840.37908936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09502112 840.37908936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09502113 840.37908936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09502114 840.37915039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09502115 840.37915039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09502116 840.37915039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09502117 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09502118 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09502119 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09502120 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09502121 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09502122 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09502123 840.37921143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09502124 840.37927246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09502125 840.37927246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09502126 840.37927246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09502127 840.37927246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09502128 840.37933350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09502129 840.37933350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09502130 840.37933350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09502131 840.37933350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09502132 840.37939453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09502133 840.37939453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09502134 840.37939453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09502135 840.37939453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09502136 840.37945557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09502137 840.37945557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09502138 840.37945557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09502139 840.37945557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09502140 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09502141 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09502142 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09502143 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09502144 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09502145 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09502146 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09502147 840.37951660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09502148 840.37957764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09502149 840.37957764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09502150 840.37957764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09502151 840.37957764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09502152 840.37963867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09502153 840.37963867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09502154 840.37969971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09502155 840.37969971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09502156 840.37969971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09502157 840.37969971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09502158 840.37976074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09502159 840.37976074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09502160 840.37976074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09502161 840.37976074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09502162 840.37982178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09502163 840.37982178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09502164 840.37982178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09502165 840.37982178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09502166 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09502167 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09502168 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09502169 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09502170 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09502171 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09502172 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09502173 840.37988281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09502174 840.37994385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09502175 840.37994385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09502176 840.38000488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09502177 840.38000488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09502178 840.38000488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09502179 840.38000488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09502180 840.38006592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09502181 840.38006592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09502182 840.38006592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09502183 840.38006592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09502184 840.38012695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09502185 840.38012695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09502186 840.38012695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09502187 840.38012695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09502188 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09502189 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09502190 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09502191 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09502192 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09502193 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09502194 840.38018799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09502195 840.38024902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09502196 840.38024902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09502197 840.38024902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09502198 840.38031006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09502199 840.38031006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09502200 840.38031006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09502201 840.38031006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09502202 840.38037109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09502203 840.38037109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09502204 840.38037109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09502205 840.38037109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09502206 840.38043213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09502207 840.38043213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09502208 840.38043213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09502209 840.38043213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09502210 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09502211 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09502212 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09502213 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09502214 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09502215 840.38049316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09502216 840.38055420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09502217 840.38055420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09502218 840.38055420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09502219 840.38055420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09502220 840.38061523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09502221 840.38061523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09502222 840.38061523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09502223 840.38061523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09502224 840.38067627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09502225 840.38067627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09502226 840.38067627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09502227 840.38067627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09502228 840.38073730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09502229 840.38073730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09502230 840.38073730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09502231 840.38073730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09502232 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09502233 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09502234 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09502235 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09502236 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09502237 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09502238 840.38079834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09502239 840.38085938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09502240 840.38085938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09502241 840.38085938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09502242 840.38092041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09502243 840.38092041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09502244 840.38092041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09502245 840.38092041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09502246 840.38098145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09502247 840.38098145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09502248 840.38098145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09502249 840.38098145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09502250 840.38104248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09502251 840.38104248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09502252 840.38104248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09502253 840.38104248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09502254 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09502255 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09502256 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09502257 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09502258 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09502259 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09502260 840.38110352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09502261 840.38116455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09502262 840.38116455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09502263 840.38116455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09502264 840.38122559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09502265 840.38122559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09502266 840.38122559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09502267 840.38122559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09502268 840.38128662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09502269 840.38128662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09502270 840.38128662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09502271 840.38128662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09502272 840.38134766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09502273 840.38134766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09502274 840.38134766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09502275 840.38134766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09502276 840.38140869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09502277 840.38140869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09502278 840.38140869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09502279 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09502280 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09502281 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09502282 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09502283 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09502284 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09502285 840.38146973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09502286 840.38153076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09502287 840.38153076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09502288 840.38153076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09502289 840.38153076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09502290 840.38159180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09502291 840.38159180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09502292 840.38159180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09502293 840.38159180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09502294 840.38165283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09502295 840.38165283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09502296 840.38165283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09502297 840.38171387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09502298 840.38171387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09502299 840.38171387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09502300 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09502301 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09502302 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09502303 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09502304 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09502305 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09502306 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09502307 840.38177490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09502308 840.38183594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09502309 840.38183594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09502310 840.38183594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09502311 840.38183594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09502312 840.38189697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09502313 840.38189697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09502314 840.38189697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09502315 840.38189697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09502316 840.38195801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09502317 840.38195801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09502318 840.38201904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09502319 840.38201904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09502320 840.38201904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09502321 840.38201904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09502322 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09502323 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09502324 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09502325 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09502326 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09502327 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09502328 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09502329 840.38208008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09502330 840.38214111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09502331 840.38214111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09502332 840.38214111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09502333 840.38214111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09502334 840.38220215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09502335 840.38220215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09502336 840.38226318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09502337 840.38226318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09502338 840.38226318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09502339 840.38226318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09502340 840.38232422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09502341 840.38232422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09502342 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09502343 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09502344 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09502345 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09502346 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09502347 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09502348 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09502349 840.38238525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09502350 840.38244629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09502351 840.38244629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09502352 840.38244629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09502353 840.38244629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09502354 840.38250732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09502355 840.38250732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09502356 840.38250732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09502357 840.38256836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09502358 840.38256836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09502359 840.38256836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09502360 840.38262939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09502361 840.38262939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09502362 840.38262939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09502363 840.38262939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09502364 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09502365 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09502366 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09502367 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09502368 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09502369 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09502370 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09502371 840.38269043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09502372 840.38275146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09502373 840.38275146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09502374 840.38275146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09502375 840.38281250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09502376 840.38281250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09502377 840.38281250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09502378 840.38287354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09502379 840.38287354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09502380 840.38287354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09502381 840.38287354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09502382 840.38293457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09502383 840.38293457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09502384 840.38293457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09502385 840.38293457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09502386 840.38299561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09502387 840.38299561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09502388 840.38299561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09502389 840.38299561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09502390 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09502391 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09502392 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09502393 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09502394 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09502395 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09502396 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09502397 840.38305664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09502398 840.38311768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09502399 840.38311768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09502400 840.38311768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09502401 840.38311768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09502402 840.38317871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09502403 840.38317871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09502404 840.38317871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09502405 840.38317871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09502406 840.38323975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09502407 840.38323975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09502408 840.38323975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09502409 840.38323975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09502410 840.38330078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09502411 840.38330078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09502412 840.38330078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09502413 840.38330078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09502414 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09502415 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09502416 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09502417 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09502418 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09502419 840.38336182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09502420 840.38342285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09502421 840.38342285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09502422 840.38342285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09502423 840.38342285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09502424 840.38348389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09502425 840.38348389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09502426 840.38348389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09502427 840.38348389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09502428 840.38354492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09502429 840.38354492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09502430 840.38354492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09502431 840.38354492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09502432 840.38360596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09502433 840.38360596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09502434 840.38360596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09502435 840.38360596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09502436 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09502437 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09502438 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09502439 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09502440 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09502441 840.38366699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09502442 840.38372803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09502443 840.38372803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09502444 840.38372803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09502445 840.38372803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09502446 840.38378906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09502447 840.38378906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09502448 840.38378906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09502449 840.38378906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09502450 840.38385010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09502451 840.38385010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09502452 840.38385010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09502453 840.38385010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09502454 840.38391113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09502455 840.38391113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09502456 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09502457 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09502458 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09502459 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09502460 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09502461 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09502462 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09502463 840.38397217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09502464 840.38403320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09502465 840.38403320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09502466 840.38403320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09502467 840.38403320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09502468 840.38409424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09502469 840.38409424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09502470 840.38409424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09502471 840.38409424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09502472 840.38415527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09502473 840.38415527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09502474 840.38421631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09502475 840.38421631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09502476 840.38421631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09502477 840.38421631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09502478 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09502479 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09502480 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09502481 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09502482 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09502483 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09502484 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09502485 840.38427734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09502486 840.38433838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09502487 840.38433838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09502488 840.38433838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09502489 840.38433838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09502490 840.38439941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09502491 840.38439941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -09502492 840.38446045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09502493 840.38446045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -09502494 840.38446045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09502495 840.38446045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -09502496 840.38452148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09502497 840.38452148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -09502498 840.38452148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09502499 840.38452148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -09502500 840.38458252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09502501 840.38458252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -09502502 840.38458252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09502503 840.38458252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -09502504 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09502505 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -09502506 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09502507 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -09502508 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09502509 840.38464355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -09502510 840.38470459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09502511 840.38470459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -09502512 840.38470459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09502513 840.38470459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -09502514 840.38476563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09502515 840.38476563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -09502516 840.38476563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09502517 840.38476563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -09502518 840.38482666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09502519 840.38482666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -09502520 840.38482666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09502521 840.38482666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -09502522 840.38488770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09502523 840.38488770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -09502524 840.38488770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09502525 840.38488770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -09502526 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09502527 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -09502528 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09502529 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -09502530 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09502531 840.38494873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -09502532 840.38500977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09502533 840.38500977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -09502534 840.38500977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09502535 840.38500977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -09502536 840.38507080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09502537 840.38507080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -09502538 840.38507080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09502539 840.38507080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -09502540 840.38513184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09502541 840.38513184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -09502542 840.38513184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09502543 840.38513184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -09502544 840.38519287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09502545 840.38519287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -09502546 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09502547 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -09502548 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09502549 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -09502550 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09502551 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -09502552 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09502553 840.38525391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -09502554 840.38531494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09502555 840.38531494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -09502556 840.38531494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09502557 840.38531494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -09502558 840.38537598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09502559 840.38537598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -09502560 840.38537598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09502561 840.38537598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -09502562 840.38543701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09502563 840.38543701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -09502564 840.38543701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09502565 840.38549805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -09502566 840.38549805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09502567 840.38549805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -09502568 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09502569 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -09502570 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09502571 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -09502572 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -09502573 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -09502574 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -09502575 840.38555908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -09502576 840.38562012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -09502577 840.38562012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -09502578 840.38562012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -09502579 840.38562012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -09502580 840.38568115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -09502581 840.38568115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -09502582 840.38568115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -09502583 840.38574219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -09502584 840.38574219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -09502585 840.38574219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -09502586 840.38580322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -09502587 840.38580322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -09502588 840.38580322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -09502589 840.38580322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -09502590 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -09502591 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -09502592 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -09502593 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -09502594 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -09502595 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -09502596 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -09502597 840.38586426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -09502598 840.38592529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -09502599 840.38592529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -09502600 840.38592529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -09502601 840.38592529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -09502602 840.38598633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -09502603 840.38598633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -09502604 840.38604736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -09502605 840.38604736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -09502606 840.38604736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -09502607 840.38604736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -09502608 840.38610840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -09502609 840.38610840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -09502610 840.38610840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -09502611 840.38610840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -09502612 840.38616943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -09502613 840.38616943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -09502614 840.38616943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -09502615 840.38616943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -09502616 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -09502617 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -09502618 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -09502619 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -09502620 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -09502621 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -09502622 840.38623047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -09502623 840.38629150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -09502624 840.38629150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -09502625 840.38629150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -09502626 840.38635254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -09502627 840.38635254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -09502628 840.38635254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -09502629 840.38635254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -09502630 840.38641357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -09502631 840.38641357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -09502632 840.38641357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -09502633 840.38641357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -09502634 840.38647461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -09502635 840.38647461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -09502636 840.38647461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -09502637 840.38647461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -09502638 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -09502639 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -09502640 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -09502641 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -09502642 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -09502643 840.38653564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -09502644 840.38659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -09502645 840.38659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -09502646 840.38659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -09502647 840.38659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -09502648 840.38665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -09502649 840.38665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -09502650 840.38665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -09502651 840.38665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -09502652 840.38671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -09502653 840.38671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -09502654 840.38671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -09502655 840.38671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -09502656 840.38677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -09502657 840.38677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -09502658 840.38677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -09502659 840.38677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -09502660 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -09502661 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -09502662 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -09502663 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -09502664 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -09502665 840.38684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -09502666 840.38690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -09502667 840.38690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -09502668 840.38690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -09502669 840.38690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -09502670 840.38696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -09502671 840.38696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -09502672 840.38696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -09502673 840.38696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -09502674 840.38702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -09502675 840.38702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -09502676 840.38702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -09502677 840.38702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -09502678 840.38708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -09502679 840.38708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -09502680 840.38708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -09502681 840.38708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -09502682 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -09502683 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -09502684 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -09502685 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -09502686 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -09502687 840.38714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -09502688 840.38720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -09502689 840.38720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -09502690 840.38720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -09502691 840.38720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -09502692 840.38726807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -09502693 840.38726807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -09502694 840.38726807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -09502695 840.38726807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -09502696 840.38732910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -09502697 840.38732910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -09502698 840.38732910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -09502699 840.38732910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -09502700 840.38739014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -09502701 840.38739014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -09502702 840.38739014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -09502703 840.38739014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -09502704 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -09502705 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -09502706 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -09502707 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -09502708 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -09502709 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -09502710 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -09502711 840.38745117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -09502712 840.38751221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -09502713 840.38751221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -09502714 840.38757324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -09502715 840.38757324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -09502716 840.38757324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -09502717 840.38757324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -09502718 840.38763428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -09502719 840.38763428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -09502720 840.38763428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -09502721 840.38763428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -09502722 840.38769531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -09502723 840.38769531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -09502724 840.38769531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -09502725 840.38769531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -09502726 840.38775635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -09502727 840.38775635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -09502728 840.38775635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -09502729 840.38775635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -09502730 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -09502731 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -09502732 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -09502733 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -09502734 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -09502735 840.38781738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -09502736 840.38787842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -09502737 840.38787842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -09502738 840.38787842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -09502739 840.38787842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -09502740 840.38793945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -09502741 840.38793945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -09502742 840.38793945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -09502743 840.38800049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -09502744 840.38800049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -09502745 840.38800049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -09502746 840.38806152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -09502747 840.38806152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -09502748 840.38806152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -09502749 840.38806152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -09502750 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -09502751 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -09502752 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -09502753 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -09502754 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -09502755 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -09502756 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -09502757 840.38812256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -09502758 840.38818359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -09502759 840.38818359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -09502760 840.38818359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -09502761 840.38824463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -09502762 840.38824463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -09502763 840.38824463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -09502764 840.38830566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -09502765 840.38830566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -09502766 840.38830566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -09502767 840.38830566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -09502768 840.38836670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -09502769 840.38836670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -09502770 840.38836670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -09502771 840.38836670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -09502772 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -09502773 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -09502774 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -09502775 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -09502776 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -09502777 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -09502778 840.38842773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -09502779 840.38848877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -09502780 840.38848877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -09502781 840.38848877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -09502782 840.38854980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -09502783 840.38854980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -09502784 840.38854980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -09502785 840.38854980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -09502786 840.38861084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -09502787 840.38861084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -09502788 840.38861084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -09502789 840.38861084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -09502790 840.38867188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -09502791 840.38867188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -09502792 840.38867188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -09502793 840.38867188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -09502794 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -09502795 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -09502796 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -09502797 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -09502798 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -09502799 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -09502800 840.38873291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -09502801 840.38879395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -09502802 840.38879395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -09502803 840.38879395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -09502804 840.38885498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -09502805 840.38885498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -09502806 840.38885498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -09502807 840.38885498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -09502808 840.38891602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -09502809 840.38891602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -09502810 840.38891602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -09502811 840.38891602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -09502812 840.38897705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -09502813 840.38897705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -09502814 840.38897705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -09502815 840.38897705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -09502816 840.38903809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -09502817 840.38903809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -09502818 840.38903809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -09502819 840.38903809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -09502820 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -09502821 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -09502822 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -09502823 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -09502824 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -09502825 840.38909912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -09502826 840.38916016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -09502827 840.38916016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -09502828 840.38916016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -09502829 840.38916016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -09502830 840.38922119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -09502831 840.38922119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -09502832 840.38922119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -09502833 840.38922119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -09502834 840.38928223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -09502835 840.38928223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -09502836 840.38928223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -09502837 840.38928223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -09502838 840.38934326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -09502839 840.38934326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -09502840 840.38934326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -09502841 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -09502842 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -09502843 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -09502844 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -09502845 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -09502846 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -09502847 840.38940430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -09502848 840.38946533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -09502849 840.38946533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -09502850 840.38946533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -09502851 840.38946533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -09502852 840.38952637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -09502853 840.38952637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -09502854 840.38952637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -09502855 840.38952637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -09502856 840.38958740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -09502857 840.38958740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -09502858 840.38958740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -09502859 840.38958740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -09502860 840.38964844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -09502861 840.38964844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -09502862 840.38964844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -09502863 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -09502864 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -09502865 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -09502866 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -09502867 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -09502868 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -09502869 840.38970947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -09502870 840.38977051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -09502871 840.38977051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -09502872 840.38977051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -09502873 840.38977051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -09502874 840.38983154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -09502875 840.38983154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -09502876 840.38983154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -09502877 840.38983154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -09502878 840.38989258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -09502879 840.38989258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -09502880 840.38989258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -09502881 840.38989258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -09502882 840.38995361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -09502883 840.38995361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -09502884 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -09502885 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -09502886 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -09502887 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -09502888 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -09502889 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -09502890 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -09502891 840.39001465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -09502892 840.39007568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -09502893 840.39007568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -09502894 840.39007568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -09502895 840.39007568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -09502896 840.39013672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -09502897 840.39013672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -09502898 840.39013672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -09502899 840.39013672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -09502900 840.39019775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -09502901 840.39019775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -09502902 840.39019775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -09502903 840.39019775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -09502904 840.39025879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -09502905 840.39025879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -09502906 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -09502907 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -09502908 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -09502909 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -09502910 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -09502911 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -09502912 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -09502913 840.39031982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -09502914 840.39038086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -09502915 840.39038086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -09502916 840.39038086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -09502917 840.39038086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -09502918 840.39044189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -09502919 840.39044189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -09502920 840.39050293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -09502921 840.39050293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8378 -09502922 840.39050293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -09502923 840.39050293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8388 -09502924 840.39056396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -09502925 840.39056396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8398 -09502926 840.39056396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -09502927 840.39056396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a8 -09502928 840.39062500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -09502929 840.39062500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b8 -09502930 840.39062500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -09502931 840.39062500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83c8 -09502932 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -09502933 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83d8 -09502934 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -09502935 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83e8 -09502936 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -09502937 840.39068604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x83f8 -09502938 840.39074707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -09502939 840.39074707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8408 -09502940 840.39074707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -09502941 840.39074707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8418 -09502942 840.39080811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -09502943 840.39080811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8428 -09502944 840.39080811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -09502945 840.39080811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8438 -09502946 840.39086914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -09502947 840.39086914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8448 -09502948 840.39086914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -09502949 840.39093018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8458 -09502950 840.39093018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -09502951 840.39093018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8468 -09502952 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -09502953 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8478 -09502954 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -09502955 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8488 -09502956 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -09502957 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8498 -09502958 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -09502959 840.39099121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84a8 -09502960 840.39105225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -09502961 840.39105225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84b8 -09502962 840.39111328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -09502963 840.39111328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84c8 -09502964 840.39111328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -09502965 840.39111328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84d8 -09502966 840.39117432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -09502967 840.39117432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84e8 -09502968 840.39117432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -09502969 840.39117432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x84f8 -09502970 840.39123535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -09502971 840.39123535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8508 -09502972 840.39123535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -09502973 840.39123535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8518 -09502974 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -09502975 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8528 -09502976 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -09502977 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8538 -09502978 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -09502979 840.39129639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8548 -09502980 840.39135742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -09502981 840.39135742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8558 -09502982 840.39135742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -09502983 840.39135742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8568 -09502984 840.39141846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -09502985 840.39141846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8578 -09502986 840.39141846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -09502987 840.39141846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8588 -09502988 840.39147949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -09502989 840.39147949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8598 -09502990 840.39154053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -09502991 840.39154053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85a8 -09502992 840.39154053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -09502993 840.39154053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85b8 -09502994 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -09502995 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85c8 -09502996 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -09502997 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85d8 -09502998 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -09502999 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85e8 -09503000 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -09503001 840.39160156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x85f8 -09503002 840.39166260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -09503003 840.39166260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8608 -09503004 840.39166260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -09503005 840.39172363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8618 -09503006 840.39172363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -09503007 840.39172363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8628 -09503008 840.39178467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -09503009 840.39178467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8638 -09503010 840.39178467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -09503011 840.39178467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8648 -09503012 840.39184570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -09503013 840.39184570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8658 -09503014 840.39184570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -09503015 840.39184570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8668 -09503016 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -09503017 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8678 -09503018 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -09503019 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8688 -09503020 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -09503021 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8698 -09503022 840.39190674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -09503023 840.39196777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86a8 -09503024 840.39196777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -09503025 840.39196777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86b8 -09503026 840.39202881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -09503027 840.39202881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86c8 -09503028 840.39202881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -09503029 840.39202881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86d8 -09503030 840.39208984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -09503031 840.39208984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86e8 -09503032 840.39208984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -09503033 840.39208984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x86f8 -09503034 840.39215088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -09503035 840.39215088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8708 -09503036 840.39215088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -09503037 840.39215088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8718 -09503038 840.39221191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -09503039 840.39221191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8728 -09503040 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -09503041 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8738 -09503042 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -09503043 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8748 -09503044 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -09503045 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8758 -09503046 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -09503047 840.39227295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8768 -09503048 840.39233398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -09503049 840.39233398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8778 -09503050 840.39233398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -09503051 840.39233398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8788 -09503052 840.39239502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -09503053 840.39239502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -09503054 840.39245605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -09503055 840.39245605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -09503056 840.39245605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -09503057 840.39245605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -09503058 840.39251709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -09503059 840.39251709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -09503060 840.39251709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -09503061 840.39251709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -09503062 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -09503063 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -09503064 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -09503065 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -09503066 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -09503067 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -09503068 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -09503069 840.39257813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -09503070 840.39263916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -09503071 840.39263916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -09503072 840.39270020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -09503073 840.39270020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -09503074 840.39270020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -09503075 840.39270020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -09503076 840.39276123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -09503077 840.39276123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -09503078 840.39276123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -09503079 840.39276123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -09503080 840.39282227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -09503081 840.39282227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -09503082 840.39282227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -09503083 840.39282227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -09503084 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -09503085 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -09503086 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -09503087 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -09503088 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -09503089 840.39288330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -09503090 840.39294434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -09503091 840.39294434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -09503092 840.39294434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -09503093 840.39294434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -09503094 840.39300537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -09503095 840.39300537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -09503096 840.39300537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -09503097 840.39300537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88f8 -09503098 840.39306641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -09503099 840.39306641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8908 -09503100 840.39306641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -09503101 840.39306641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8918 -09503102 840.39312744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -09503103 840.39312744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8928 -09503104 840.39312744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -09503105 840.39312744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8938 -09503106 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -09503107 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8948 -09503108 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -09503109 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8958 -09503110 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -09503111 840.39318848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8968 -09503112 840.39324951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -09503113 840.39324951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8978 -09503114 840.39324951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -09503115 840.39324951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8988 -09503116 840.39331055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -09503117 840.39331055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8998 -09503118 840.39331055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -09503119 840.39331055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89a8 -09503120 840.39337158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -09503121 840.39337158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89b8 -09503122 840.39337158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -09503123 840.39343262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89c8 -09503124 840.39343262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -09503125 840.39343262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89d8 -09503126 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -09503127 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89e8 -09503128 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -09503129 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x89f8 -09503130 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -09503131 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a08 -09503132 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -09503133 840.39349365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a18 -09503134 840.39355469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -09503135 840.39355469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a28 -09503136 840.39355469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -09503137 840.39355469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a38 -09503138 840.39361572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -09503139 840.39361572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a48 -09503140 840.39361572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -09503141 840.39367676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a58 -09503142 840.39367676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -09503143 840.39367676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a68 -09503144 840.39373779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -09503145 840.39373779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a78 -09503146 840.39373779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -09503147 840.39373779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a88 -09503148 840.39379883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -09503149 840.39379883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8a98 -09503150 840.39379883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -09503151 840.39379883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8aa8 -09503152 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -09503153 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ab8 -09503154 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -09503155 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ac8 -09503156 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -09503157 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ad8 -09503158 840.39385986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -09503159 840.39392090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ae8 -09503160 840.39392090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -09503161 840.39392090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8af8 -09503162 840.39398193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -09503163 840.39398193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b08 -09503164 840.39398193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -09503165 840.39398193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b18 -09503166 840.39404297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -09503167 840.39404297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b28 -09503168 840.39404297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -09503169 840.39404297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b38 -09503170 840.39410400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -09503171 840.39410400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b48 -09503172 840.39410400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -09503173 840.39410400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b58 -09503174 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -09503175 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b68 -09503176 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -09503177 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b78 -09503178 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -09503179 840.39416504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b88 -09503180 840.39422607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -09503181 840.39422607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8b98 -09503182 840.39422607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -09503183 840.39422607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ba8 -09503184 840.39428711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -09503185 840.39428711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bb8 -09503186 840.39428711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -09503187 840.39428711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bc8 -09503188 840.39434814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -09503189 840.39434814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bd8 -09503190 840.39434814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -09503191 840.39434814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8be8 -09503192 840.39440918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -09503193 840.39440918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8bf8 -09503194 840.39440918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -09503195 840.39440918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c08 -09503196 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -09503197 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c18 -09503198 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -09503199 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c28 -09503200 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -09503201 840.39447021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c38 -09503202 840.39453125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -09503203 840.39453125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c48 -09503204 840.39453125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -09503205 840.39453125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c58 -09503206 840.39459229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -09503207 840.39459229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c68 -09503208 840.39459229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -09503209 840.39459229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c78 -09503210 840.39465332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -09503211 840.39465332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c88 -09503212 840.39465332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -09503213 840.39465332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8c98 -09503214 840.39471436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -09503215 840.39471436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -09503216 840.39471436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -09503217 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -09503218 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -09503219 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -09503220 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -09503221 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -09503222 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -09503223 840.39477539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -09503224 840.39483643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -09503225 840.39483643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -09503226 840.39483643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -09503227 840.39483643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -09503228 840.39489746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -09503229 840.39489746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -09503230 840.39489746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -09503231 840.39489746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -09503232 840.39495850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -09503233 840.39495850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -09503234 840.39495850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -09503235 840.39501953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -09503236 840.39501953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -09503237 840.39501953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -09503238 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -09503239 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -09503240 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -09503241 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -09503242 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -09503243 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -09503244 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -09503245 840.39508057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -09503246 840.39514160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -09503247 840.39514160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -09503248 840.39514160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -09503249 840.39514160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -09503250 840.39520264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -09503251 840.39520264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -09503252 840.39520264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -09503253 840.39520264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -09503254 840.39526367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -09503255 840.39526367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -09503256 840.39532471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -09503257 840.39532471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -09503258 840.39532471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -09503259 840.39532471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e08 -09503260 840.39538574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -09503261 840.39538574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e18 -09503262 840.39538574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -09503263 840.39538574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e28 -09503264 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -09503265 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e38 -09503266 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -09503267 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e48 -09503268 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -09503269 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e58 -09503270 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -09503271 840.39544678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e68 -09503272 840.39550781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -09503273 840.39550781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e78 -09503274 840.39550781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -09503275 840.39550781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e88 -09503276 840.39556885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -09503277 840.39556885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8e98 -09503278 840.39562988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -09503279 840.39562988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ea8 -09503280 840.39562988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -09503281 840.39562988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8eb8 -09503282 840.39569092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -09503283 840.39569092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ec8 -09503284 840.39569092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -09503285 840.39569092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ed8 -09503286 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -09503287 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ee8 -09503288 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -09503289 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ef8 -09503290 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -09503291 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f08 -09503292 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -09503293 840.39575195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f18 -09503294 840.39581299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -09503295 840.39581299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f28 -09503296 840.39581299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -09503297 840.39587402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f38 -09503298 840.39587402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -09503299 840.39587402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f48 -09503300 840.39593506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -09503301 840.39593506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f58 -09503302 840.39593506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -09503303 840.39593506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f68 -09503304 840.39599609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -09503305 840.39599609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f78 -09503306 840.39599609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -09503307 840.39599609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f88 -09503308 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -09503309 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8f98 -09503310 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -09503311 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fa8 -09503312 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -09503313 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fb8 -09503314 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -09503315 840.39605713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fc8 -09503316 840.39611816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -09503317 840.39611816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fd8 -09503318 840.39611816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -09503319 840.39617920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8fe8 -09503320 840.39617920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -09503321 840.39617920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ff8 -09503322 840.39624023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -09503323 840.39624023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9008 -09503324 840.39624023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -09503325 840.39624023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9018 -09503326 840.39630127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -09503327 840.39630127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9028 -09503328 840.39630127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -09503329 840.39630127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9038 -09503330 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -09503331 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9048 -09503332 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -09503333 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9058 -09503334 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -09503335 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9068 -09503336 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -09503337 840.39636230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9078 -09503338 840.39642334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -09503339 840.39642334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9088 -09503340 840.39642334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -09503341 840.39648438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9098 -09503342 840.39648438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -09503343 840.39648438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90a8 -09503344 840.39654541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -09503345 840.39654541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90b8 -09503346 840.39654541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -09503347 840.39654541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90c8 -09503348 840.39660645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -09503349 840.39660645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90d8 -09503350 840.39660645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -09503351 840.39660645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90e8 -09503352 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -09503353 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x90f8 -09503354 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -09503355 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9108 -09503356 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -09503357 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9118 -09503358 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -09503359 840.39666748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9128 -09503360 840.39672852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -09503361 840.39672852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9138 -09503362 840.39672852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -09503363 840.39678955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9148 -09503364 840.39678955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -09503365 840.39678955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9158 -09503366 840.39685059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -09503367 840.39685059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9168 -09503368 840.39685059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -09503369 840.39685059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9178 -09503370 840.39691162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -09503371 840.39691162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9188 -09503372 840.39691162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -09503373 840.39691162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9198 -09503374 840.39697266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -09503375 840.39697266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91a8 -09503376 840.39697266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -09503377 840.39697266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91b8 -09503378 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -09503379 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91c8 -09503380 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -09503381 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91d8 -09503382 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -09503383 840.39703369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91e8 -09503384 840.39709473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -09503385 840.39709473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x91f8 -09503386 840.39709473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -09503387 840.39709473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9208 -09503388 840.39715576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -09503389 840.39715576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9218 -09503390 840.39715576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -09503391 840.39715576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9228 -09503392 840.39721680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -09503393 840.39721680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9238 -09503394 840.39721680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -09503395 840.39721680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9248 -09503396 840.39727783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -09503397 840.39727783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9258 -09503398 840.39727783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -09503399 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9268 -09503400 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -09503401 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9278 -09503402 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -09503403 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9288 -09503404 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -09503405 840.39733887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9298 -09503406 840.39739990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -09503407 840.39739990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92a8 -09503408 840.39739990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -09503409 840.39739990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92b8 -09503410 840.39746094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -09503411 840.39746094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92c8 -09503412 840.39746094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -09503413 840.39752197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92d8 -09503414 840.39752197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -09503415 840.39752197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92e8 -09503416 840.39758301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -09503417 840.39758301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x92f8 -09503418 840.39758301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -09503419 840.39758301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9308 -09503420 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -09503421 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9318 -09503422 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -09503423 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9328 -09503424 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -09503425 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9338 -09503426 840.39764404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -09503427 840.39770508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9348 -09503428 840.39770508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -09503429 840.39770508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9358 -09503430 840.39776611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -09503431 840.39776611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9368 -09503432 840.39776611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -09503433 840.39776611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9378 -09503434 840.39782715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -09503435 840.39782715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9388 -09503436 840.39782715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -09503437 840.39782715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9398 -09503438 840.39788818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -09503439 840.39788818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93a8 -09503440 840.39788818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -09503441 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93b8 -09503442 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -09503443 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93c8 -09503444 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -09503445 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93d8 -09503446 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -09503447 840.39794922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93e8 -09503448 840.39801025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -09503449 840.39801025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x93f8 -09503450 840.39801025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -09503451 840.39801025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9408 -09503452 840.39807129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -09503453 840.39807129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9418 -09503454 840.39807129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -09503455 840.39813232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9428 -09503456 840.39813232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -09503457 840.39813232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9438 -09503458 840.39819336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -09503459 840.39819336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9448 -09503460 840.39819336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -09503461 840.39819336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9458 -09503462 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -09503463 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9468 -09503464 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -09503465 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9478 -09503466 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -09503467 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9488 -09503468 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -09503469 840.39825439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9498 -09503470 840.39831543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -09503471 840.39831543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94a8 -09503472 840.39837646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -09503473 840.39837646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94b8 -09503474 840.39837646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -09503475 840.39837646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94c8 -09503476 840.39843750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -09503477 840.39843750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94d8 -09503478 840.39843750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -09503479 840.39843750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94e8 -09503480 840.39849854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -09503481 840.39849854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x94f8 -09503482 840.39849854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -09503483 840.39849854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9508 -09503484 840.39855957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -09503485 840.39855957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9518 -09503486 840.39855957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -09503487 840.39862061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9528 -09503488 840.39862061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -09503489 840.39862061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9538 -09503490 840.39862061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -09503491 840.39862061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9548 -09503492 840.39868164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -09503493 840.39868164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9558 -09503494 840.39868164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -09503495 840.39868164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9568 -09503496 840.39874268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -09503497 840.39874268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9578 -09503498 840.39874268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -09503499 840.39874268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9588 -09503500 840.39880371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -09503501 840.39880371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9598 -09503502 840.39880371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -09503503 840.39886475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95a8 -09503504 840.39886475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -09503505 840.39886475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95b8 -09503506 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -09503507 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95c8 -09503508 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -09503509 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95d8 -09503510 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -09503511 840.39892578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95e8 -09503512 840.39898682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -09503513 840.39898682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x95f8 -09503514 840.39898682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -09503515 840.39898682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9608 -09503516 840.39904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -09503517 840.39904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9618 -09503518 840.39904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -09503519 840.39904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9628 -09503520 840.39910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -09503521 840.39910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9638 -09503522 840.39910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -09503523 840.39910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9648 -09503524 840.39916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -09503525 840.39916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9658 -09503526 840.39916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -09503527 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9668 -09503528 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -09503529 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9678 -09503530 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -09503531 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9688 -09503532 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -09503533 840.39923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9698 -09503534 840.39929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -09503535 840.39929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96a8 -09503536 840.39929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -09503537 840.39929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96b8 -09503538 840.39935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -09503539 840.39935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96c8 -09503540 840.39935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -09503541 840.39935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96d8 -09503542 840.39941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -09503543 840.39941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96e8 -09503544 840.39947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -09503545 840.39947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x96f8 -09503546 840.39947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -09503547 840.39947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9708 -09503548 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -09503549 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9718 -09503550 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -09503551 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9728 -09503552 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -09503553 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9738 -09503554 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -09503555 840.39953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9748 -09503556 840.39959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -09503557 840.39959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9758 -09503558 840.39959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -09503559 840.39959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9768 -09503560 840.39965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -09503561 840.39965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9778 -09503562 840.39971924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -09503563 840.39971924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9788 -09503564 840.39971924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -09503565 840.39971924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9798 -09503566 840.39978027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -09503567 840.39978027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97a8 -09503568 840.39978027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -09503569 840.39978027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97b8 -09503570 840.39984131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -09503571 840.39984131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97c8 -09503572 840.39984131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -09503573 840.39984131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97d8 -09503574 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -09503575 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97e8 -09503576 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -09503577 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x97f8 -09503578 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -09503579 840.39990234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9808 -09503580 840.39996338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -09503581 840.39996338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9818 -09503582 840.39996338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -09503583 840.39996338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9828 -09503584 840.40002441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -09503585 840.40002441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9838 -09503586 840.40002441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -09503587 840.40002441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9848 -09503588 840.40008545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -09503589 840.40008545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9858 -09503590 840.40008545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -09503591 840.40008545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9868 -09503592 840.40014648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -09503593 840.40014648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9878 -09503594 840.40014648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -09503595 840.40014648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9888 -09503596 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -09503597 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9898 -09503598 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -09503599 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98a8 -09503600 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -09503601 840.40020752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98b8 -09503602 840.40026855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -09503603 840.40026855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98c8 -09503604 840.40026855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -09503605 840.40026855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98d8 -09503606 840.40032959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -09503607 840.40032959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98e8 -09503608 840.40032959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -09503609 840.40032959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x98f8 -09503610 840.40039063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -09503611 840.40039063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9908 -09503612 840.40039063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -09503613 840.40039063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9918 -09503614 840.40045166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -09503615 840.40045166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9928 -09503616 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -09503617 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9938 -09503618 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -09503619 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9948 -09503620 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -09503621 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9958 -09503622 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -09503623 840.40051270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9968 -09503624 840.40057373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -09503625 840.40057373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9978 -09503626 840.40057373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -09503627 840.40057373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9988 -09503628 840.40063477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -09503629 840.40063477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x9998 -09503630 840.40063477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -09503631 840.40063477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x99a8 -09503632 840.40069580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -09503633 840.40069580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x99b8 -09506092 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -09506093 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe698 -09506094 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -09506095 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a8 -09506096 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -09506097 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b8 -09506098 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -09506099 840.43579102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c8 -09506100 840.43585205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -09506101 840.43585205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d8 -09506102 840.43585205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -09506103 840.43585205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e8 -09506104 840.43591309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -09506105 840.43591309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f8 -09506106 840.43591309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -09506107 840.43591309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe708 -09506108 840.43597412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -09506109 840.43597412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe718 -09506110 840.43603516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -09506111 840.43603516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe728 -09506112 840.43603516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -09506113 840.43603516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe738 -09506114 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -09506115 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe748 -09506116 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -09506117 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe758 -09506118 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -09506119 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe768 -09506120 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -09506121 840.43609619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe778 -09506122 840.43615723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -09506123 840.43615723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe788 -09506124 840.43621826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -09506125 840.43621826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe798 -09506126 840.43621826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a8 -09506127 840.43621826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7a8 -09506128 840.43627930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b8 -09506129 840.43627930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7b8 -09506130 840.43627930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c8 -09506131 840.43627930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7c8 -09506132 840.43634033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d8 -09506133 840.43634033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7d8 -09506134 840.43634033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e8 -09506135 840.43634033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0xe7e8 -09509548 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -09509549 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -09509550 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -09509551 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -09509552 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -09509553 840.48535156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -09509554 840.48541260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -09509555 840.48541260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -09509556 840.48541260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -09509557 840.48541260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -09509558 840.48547363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -09509559 840.48547363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -09509560 840.48547363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -09509561 840.48547363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -09509562 840.48553467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -09509563 840.48553467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -09509564 840.48553467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -09509565 840.48553467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -09509566 840.48559570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -09509567 840.48559570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -09509568 840.48559570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -09509569 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -09509570 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -09509571 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -09509572 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -09509573 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -09509574 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -09509575 840.48565674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -09509576 840.48571777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -09509577 840.48571777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -09509578 840.48577881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -09509579 840.48577881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -09509580 840.48577881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15398 -09509581 840.48577881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15398 -09509582 840.48583984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a8 -09509583 840.48583984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a8 -09509584 840.48583984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b8 -09509585 840.48583984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b8 -09509586 840.48590088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c8 -09509587 840.48590088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c8 -09509588 840.48590088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d8 -09509589 840.48590088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d8 -09509590 840.48596191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e8 -09509591 840.48596191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e8 -09513458 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -09513459 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccc8 -09513460 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -09513461 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccd8 -09513462 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -09513463 840.54125977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cce8 -09513464 840.54132080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -09513465 840.54132080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ccf8 -09513466 840.54132080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -09513467 840.54138184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd08 -09513468 840.54138184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -09513469 840.54138184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd18 -09513470 840.54144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -09513471 840.54144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd28 -09513472 840.54144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -09513473 840.54144287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd38 -09513474 840.54150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -09513475 840.54150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd48 -09513476 840.54150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -09513477 840.54150391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd58 -09513478 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -09513479 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd68 -09513480 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -09513481 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd78 -09513482 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -09513483 840.54156494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd88 -09513484 840.54162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -09513485 840.54162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd98 -09513486 840.54162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -09513487 840.54162598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cda8 -09513488 840.54168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -09513489 840.54168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdb8 -09513490 840.54168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -09513491 840.54168701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdc8 -09513492 840.54174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -09513493 840.54174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdd8 -09513494 840.54174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -09513495 840.54174805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cde8 -09513496 840.54180908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -09513497 840.54180908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cdf8 -09513498 840.54180908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -09513499 840.54187012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce08 -09513500 840.54187012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -09513501 840.54187012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce18 -09516854 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e8 -09516855 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x236e8 -09516856 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f8 -09516857 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x236f8 -09516858 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23708 -09516859 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23708 -09516860 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23718 -09516861 840.58990479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23718 -09516862 840.58996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23728 -09516863 840.58996582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23728 -09516864 840.59002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23738 -09516865 840.59002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23738 -09516866 840.59002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23748 -09516867 840.59002686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23748 -09516868 840.59008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23758 -09516869 840.59008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23758 -09516870 840.59008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23768 -09516871 840.59008789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23768 -09516872 840.59014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23778 -09516873 840.59014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23778 -09516874 840.59014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23788 -09516875 840.59014893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23788 -09516876 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23798 -09516877 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23798 -09516878 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a8 -09516879 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237a8 -09516880 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b8 -09516881 840.59020996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237b8 -09516882 840.59027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c8 -09516883 840.59027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237c8 -09516884 840.59027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d8 -09516885 840.59027100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237d8 -09516886 840.59033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e8 -09516887 840.59033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237e8 -09516888 840.59033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f8 -09516889 840.59033203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x237f8 -09516890 840.59039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23808 -09516891 840.59039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23808 -09516892 840.59039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23818 -09516893 840.59039307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23818 -09516894 840.59045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23828 -09516895 840.59045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23828 -09516896 840.59045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23838 -09516897 840.59045410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23838 -09520118 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce8 -09520119 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29ce8 -09520120 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf8 -09520121 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29cf8 -09520122 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d08 -09520123 840.63659668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d08 -09520124 840.63665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d18 -09520125 840.63665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d18 -09520126 840.63665771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d28 -09520127 840.63671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d28 -09520128 840.63671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d38 -09520129 840.63671875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d38 -09520130 840.63677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d48 -09520131 840.63677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d48 -09520132 840.63677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d58 -09520133 840.63677979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d58 -09520134 840.63684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d68 -09520135 840.63684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d68 -09520136 840.63684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d78 -09520137 840.63684082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d78 -09520138 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d88 -09520139 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d88 -09520140 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d98 -09520141 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d98 -09520142 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da8 -09520143 840.63690186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29da8 -09520144 840.63696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db8 -09520145 840.63696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29db8 -09520146 840.63696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc8 -09520147 840.63696289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dc8 -09520148 840.63702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd8 -09520149 840.63702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29dd8 -09520150 840.63702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de8 -09520151 840.63702393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29de8 -09520152 840.63708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df8 -09520153 840.63708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29df8 -09520154 840.63708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e08 -09520155 840.63708496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e08 -09520156 840.63714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e18 -09520157 840.63714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e18 -09520158 840.63714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e28 -09520159 840.63714600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e28 -09520160 840.63720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e38 -09520161 840.63720703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e38 -09523376 840.68341064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b8 -09523377 840.68341064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302b8 -09523378 840.68347168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c8 -09523379 840.68347168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302c8 -09523380 840.68353271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d8 -09523381 840.68353271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302d8 -09523382 840.68353271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e8 -09523383 840.68353271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302e8 -09523384 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f8 -09523385 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x302f8 -09523386 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30308 -09523387 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30308 -09523388 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30318 -09523389 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30318 -09523390 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30328 -09523391 840.68359375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30328 -09523392 840.68365479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30338 -09523393 840.68365479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30338 -09523394 840.68371582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30348 -09523395 840.68371582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30348 -09523396 840.68371582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30358 -09523397 840.68371582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30358 -09523398 840.68377686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30368 -09523399 840.68377686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30368 -09523400 840.68377686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30378 -09523401 840.68377686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30378 -09523402 840.68383789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30388 -09523403 840.68383789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30388 -09523404 840.68383789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30398 -09523405 840.68383789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30398 -09523406 840.68389893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a8 -09523407 840.68389893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303a8 -09523408 840.68389893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b8 -09523409 840.68389893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303b8 -09523410 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c8 -09523411 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303c8 -09523412 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d8 -09523413 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303d8 -09523414 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e8 -09523415 840.68395996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303e8 -09523416 840.68402100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f8 -09523417 840.68402100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x303f8 -09523418 840.68402100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30408 -09523419 840.68402100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30408 -09526392 840.72668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f8 -09526393 840.72668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x360f8 -09526394 840.72668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36108 -09526395 840.72668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36108 -09526396 840.72674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36118 -09526397 840.72674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36118 -09526398 840.72674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36128 -09526399 840.72674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36128 -09526400 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36138 -09526401 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36138 -09526402 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36148 -09526403 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36148 -09526404 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36158 -09526405 840.72680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36158 -09526406 840.72686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -09526407 840.72686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36168 -09526408 840.72686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -09526409 840.72686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36178 -09526410 840.72692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -09526411 840.72692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36188 -09526412 840.72692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -09526413 840.72692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36198 -09526414 840.72698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -09526415 840.72698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361a8 -09526416 840.72698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -09526417 840.72698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361b8 -09526418 840.72705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -09526419 840.72705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361c8 -09526420 840.72705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -09526421 840.72705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361d8 -09526422 840.72711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -09526423 840.72711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361e8 -09526424 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -09526425 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x361f8 -09526426 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36208 -09526427 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36208 -09526428 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36218 -09526429 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36218 -09526430 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36228 -09526431 840.72717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36228 -09526432 840.72723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36238 -09526433 840.72723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36238 -09526434 840.72723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36248 -09526435 840.72723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36248 -09540722 840.93115234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52088 -09540723 840.93115234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52088 -09540724 840.93121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52098 -09540725 840.93121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52098 -09540726 840.93121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a8 -09540727 840.93121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520a8 -09540728 840.93127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b8 -09540729 840.93127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520b8 -09540730 840.93133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c8 -09540731 840.93133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520c8 -09540732 840.93133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d8 -09540733 840.93133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520d8 -09540734 840.93139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e8 -09540735 840.93139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520e8 -09540736 840.93139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f8 -09540737 840.93139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x520f8 -09540738 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52108 -09540739 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52108 -09540740 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52118 -09540741 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52118 -09540742 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -09540743 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52128 -09540744 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -09540745 840.93145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52138 -09540746 840.93151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -09540747 840.93151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52148 -09540748 840.93151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -09540749 840.93157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52158 -09540750 840.93157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -09540751 840.93157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52168 -09540752 840.93164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -09540753 840.93164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52178 -09540754 840.93164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -09540755 840.93164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52188 -09540756 840.93170166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -09540757 840.93170166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52198 -09540758 840.93170166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -09540759 840.93170166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521a8 -09540760 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -09540761 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521b8 -09540762 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -09540763 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521c8 -09540764 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -09540765 840.93176270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x521d8 -09541128 841.71051025 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09541129 841.73211670 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541130 841.73217773 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541131 843.33496094 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541132 843.33502197 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541133 843.33502197 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541134 843.33508301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09541135 843.33514404 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541136 843.33514404 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09541137 843.33520508 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541138 843.33526611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09541139 843.73260498 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09541140 843.75360107 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541141 843.75360107 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541142 845.75531006 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09541143 845.77600098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541144 845.77600098 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541145 845.84118652 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541146 845.84118652 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541147 845.84124756 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09541148 845.84124756 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09541149 845.84136963 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541150 845.84136963 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09541151 845.84143066 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09541152 845.84143066 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09541153 845.93725586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09541154 845.93725586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -09541155 845.93731689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09541156 845.93731689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -09541157 845.93731689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09541158 845.93731689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -09541159 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09541160 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -09541161 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09541162 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -09541163 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09541164 845.93737793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -09541165 845.93743896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09541166 845.93743896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -09541167 845.93743896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09541168 845.93743896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -09541169 845.93750000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09541170 845.93750000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -09541171 845.93750000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09541172 845.93750000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -09541173 845.93756104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09541174 845.93756104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -09541175 845.93756104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09541176 845.93756104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -09541177 845.93762207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09541178 845.93762207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -09541179 845.93762207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09541180 845.93762207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -09541181 845.93768311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09541182 845.93768311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -09541183 845.93768311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09541184 845.93768311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -09541185 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09541186 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -09541187 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09541188 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -09541189 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09541190 845.93774414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -09541191 845.93780518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09541192 845.93780518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -09541193 845.93780518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09541194 845.93780518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -09541195 845.93786621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09541196 845.93786621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -09541197 845.93786621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09541198 845.93786621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -09541199 845.93792725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09541200 845.93792725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -09541201 845.93792725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09541202 845.93792725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -09541203 845.93798828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09541204 845.93798828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -09541205 845.93798828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09541206 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -09541207 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09541208 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -09541209 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09541210 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -09541211 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09541212 845.93804932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -09541213 845.93811035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09541214 845.93811035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -09541215 845.93811035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09541216 845.93811035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -09541217 845.93817139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09541218 845.93817139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -09541219 845.93817139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09541220 845.93817139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -09541221 845.93823242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09541222 845.93823242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -09541223 845.93823242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09541224 845.93823242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -09541225 845.93829346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09541226 845.93829346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -09541227 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09541228 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -09541229 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09541230 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -09541231 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09541232 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -09541233 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09541234 845.93835449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -09541235 845.93841553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09541236 845.93841553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -09541237 845.93841553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09541238 845.93841553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -09541239 845.93847656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09541240 845.93847656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -09541241 845.93847656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09541242 845.93847656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -09541243 845.93853760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09541244 845.93853760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -09541245 845.93853760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09541246 845.93853760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -09541247 845.93859863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09541248 845.93859863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -09541249 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09541250 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -09541251 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09541252 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -09541253 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09541254 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -09541255 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09541256 845.93865967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -09541257 845.93872070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09541258 845.93872070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -09541259 845.93872070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09541260 845.93872070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -09541261 845.93878174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09541262 845.93878174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -09541263 845.93878174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09541264 845.93878174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -09541265 845.93884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09541266 845.93884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -09541267 845.93884277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09541268 845.93890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -09541269 845.93890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09541270 845.93890381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -09541271 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09541272 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -09541273 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09541274 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -09541275 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09541276 845.93896484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -09541277 845.93902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09541278 845.93902588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -09541279 845.93908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09541280 845.93908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -09541281 845.93908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09541282 845.93908691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -09541283 845.93914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09541284 845.93914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -09541285 845.93914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09541286 845.93914795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -09541287 845.93920898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09541288 845.93920898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -09541289 845.93920898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09541290 845.93927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -09541291 845.93927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09541292 845.93927002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -09541293 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09541294 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -09541295 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09541296 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -09541297 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09541298 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -09541299 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09541300 845.93933105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -09541301 845.93939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09541302 845.93939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -09541303 845.93939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09541304 845.93939209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -09541305 845.93945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09541306 845.93945313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -09541307 845.93951416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09541308 845.93951416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -09541309 845.93951416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09541310 845.93951416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -09541311 845.93957520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09541312 845.93957520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -09541313 845.93957520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09541314 845.93957520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -09541315 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09541316 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -09541317 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09541318 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -09541319 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09541320 845.93963623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -09541321 845.93969727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09541322 845.93969727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -09541323 845.93969727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09541324 845.93969727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -09541325 845.93975830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09541326 845.93975830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -09541327 845.93975830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09541328 845.93975830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -09541329 845.93981934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09541330 845.93981934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -09541331 845.93981934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09541332 845.93981934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -09541333 845.93988037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09541334 845.93988037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -09541335 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09541336 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -09541337 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09541338 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -09541339 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09541340 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -09541341 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09541342 845.93994141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -09541343 845.94000244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09541344 845.94000244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -09541345 845.94000244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09541346 845.94000244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -09541347 845.94006348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09541348 845.94006348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -09541349 845.94012451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09541350 845.94012451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -09541351 845.94012451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09541352 845.94012451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -09541353 845.94018555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09541354 845.94018555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -09541355 845.94018555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09541356 845.94018555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -09541357 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09541358 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -09541359 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09541360 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -09541361 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09541362 845.94024658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -09541363 845.94030762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09541364 845.94030762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -09541365 845.94030762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09541366 845.94030762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -09541367 845.94036865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09541368 845.94036865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -09541369 845.94036865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09541370 845.94036865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -09541371 845.94042969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09541372 845.94042969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -09541373 845.94042969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09541374 845.94042969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -09541375 845.94049072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09541376 845.94049072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -09541377 845.94055176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09541378 845.94055176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -09541379 845.94055176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09541380 845.94055176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -09541381 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09541382 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -09541383 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09541384 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -09541385 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09541386 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -09541387 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09541388 845.94061279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -09541389 845.94067383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09541390 845.94067383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -09541391 845.94067383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09541392 845.94073486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -09541393 845.94073486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09541394 845.94073486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -09541395 845.94079590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09541396 845.94079590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -09541397 845.94079590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09541398 845.94079590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -09541399 845.94085693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09541400 845.94085693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -09541401 845.94085693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09541402 845.94085693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -09541403 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09541404 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -09541405 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09541406 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -09541407 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09541408 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -09541409 845.94091797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09541410 845.94097900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -09541411 845.94097900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09541412 845.94097900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -09541413 845.94104004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09541414 845.94104004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -09541415 845.94104004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09541416 845.94104004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -09541417 845.94110107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09541418 845.94110107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -09541419 845.94110107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09541420 845.94110107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -09541421 845.94116211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09541422 845.94116211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -09541423 845.94116211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09541424 845.94116211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -09541425 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09541426 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -09541427 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09541428 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -09541429 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09541430 845.94122314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -09541431 845.94128418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09541432 845.94128418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -09541433 845.94128418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09541434 845.94128418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -09541435 845.94134521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09541436 845.94134521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -09541437 845.94134521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09541438 845.94134521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -09541439 845.94140625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09541440 845.94140625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -09541441 845.94140625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09541442 845.94140625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -09541443 845.94146729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09541444 845.94146729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -09541445 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09541446 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -09541447 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09541448 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -09541449 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09541450 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -09541451 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09541452 845.94152832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -09541453 845.94158936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09541454 845.94158936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -09541455 845.94158936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09541456 845.94158936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -09541457 845.94165039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09541458 845.94165039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -09541459 845.94165039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09541460 845.94165039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -09541461 845.94171143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09541462 845.94171143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -09541463 845.94177246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09541464 845.94177246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -09541465 845.94177246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09541466 845.94177246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -09541467 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09541468 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -09541469 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09541470 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -09541471 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09541472 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -09541473 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09541474 845.94183350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -09541475 845.94189453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09541476 845.94189453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -09541477 845.94189453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09541478 845.94189453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -09541479 845.94195557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09541480 845.94195557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -09541481 845.94201660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09541482 845.94201660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -09541483 845.94201660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09541484 845.94201660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -09541485 845.94207764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09541486 845.94207764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -09541487 845.94207764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09541488 845.94207764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -09541489 845.94213867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09541490 845.94213867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -09541491 845.94213867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09541492 845.94213867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -09541493 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09541494 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -09541495 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09541496 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -09541497 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09541498 845.94219971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -09541499 845.94226074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09541500 845.94226074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -09541501 845.94226074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09541502 845.94226074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -09541503 845.94232178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09541504 845.94232178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -09541505 845.94232178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09541506 845.94232178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -09541507 845.94238281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09541508 845.94238281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -09541509 845.94238281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09541510 845.94238281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -09541511 845.94244385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09541512 845.94244385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -09541513 845.94244385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09541514 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -09541515 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09541516 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -09541517 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09541518 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -09541519 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09541520 845.94250488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -09541521 845.94256592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09541522 845.94256592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -09541523 845.94256592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09541524 845.94256592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -09541525 845.94262695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09541526 845.94262695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -09541527 845.94262695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09541528 845.94262695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -09541529 845.94268799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09541530 845.94268799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -09541531 845.94268799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09541532 845.94274902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -09541533 845.94274902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09541534 845.94274902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -09541535 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09541536 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -09541537 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09541538 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -09541539 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09541540 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -09541541 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09541542 845.94281006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -09541543 845.94287109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09541544 845.94287109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -09541545 845.94287109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09541546 845.94287109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -09541547 845.94293213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09541548 845.94293213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -09541549 845.94293213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09541550 845.94293213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -09541551 845.94299316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09541552 845.94299316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -09541553 845.94305420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09541554 845.94305420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -09541555 845.94305420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09541556 845.94305420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -09541557 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09541558 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -09541559 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09541560 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -09541561 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09541562 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -09541563 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09541564 845.94311523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -09541565 845.94317627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09541566 845.94317627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -09541567 845.94317627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09541568 845.94317627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -09541569 845.94323730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09541570 845.94323730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -09541571 845.94323730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09541572 845.94329834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -09541573 845.94329834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09541574 845.94329834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -09541575 845.94335938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09541576 845.94335938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -09541577 845.94335938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09541578 845.94335938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -09541579 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09541580 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -09541581 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09541582 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -09541583 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09541584 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -09541585 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09541586 845.94342041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -09541587 845.94348145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09541588 845.94348145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -09541589 845.94348145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09541590 845.94348145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -09541591 845.94354248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09541592 845.94354248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -09541593 845.94360352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09541594 845.94360352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -09541595 845.94360352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09541596 845.94360352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -09541597 845.94366455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09541598 845.94366455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -09541599 845.94366455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09541600 845.94366455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -09541601 845.94372559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09541602 845.94372559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -09541603 845.94372559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09541604 845.94372559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -09541605 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09541606 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -09541607 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09541608 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -09541609 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09541610 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -09541611 845.94378662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09541612 845.94384766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -09541613 845.94384766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09541614 845.94384766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -09541615 845.94390869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09541616 845.94390869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -09541617 845.94390869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09541618 845.94390869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -09541619 845.94396973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09541620 845.94396973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -09541621 845.94396973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09541622 845.94396973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -09541623 845.94403076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09541624 845.94403076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -09541625 845.94403076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09541626 845.94403076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -09541627 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09541628 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -09541629 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09541630 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -09541631 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09541632 845.94409180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -09541633 845.94415283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09541634 845.94415283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -09541635 845.94415283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09541636 845.94415283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -09541637 845.94421387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09541638 845.94421387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -09541639 845.94421387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09541640 845.94421387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -09541641 845.94427490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09541642 845.94427490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -09541643 845.94427490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09541644 845.94427490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -09541645 845.94433594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09541646 845.94433594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -09541647 845.94433594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09541648 845.94433594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -09541649 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09541650 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -09541651 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09541652 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -09541653 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09541654 845.94439697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -09541655 845.94445801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09541656 845.94445801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -09541657 845.94445801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09541658 845.94445801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -09541659 845.94451904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09541660 845.94451904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -09541661 845.94451904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09541662 845.94451904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -09541663 845.94458008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09541664 845.94458008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -09541665 845.94458008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09541666 845.94458008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -09541667 845.94464111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09541668 845.94464111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -09541669 845.94464111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09541670 845.94464111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -09541671 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09541672 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -09541673 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09541674 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -09541675 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09541676 845.94470215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -09541677 845.94476318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09541678 845.94476318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -09541679 845.94476318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09541680 845.94476318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -09541681 845.94482422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09541682 845.94482422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -09541683 845.94482422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09541684 845.94482422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -09541685 845.94488525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09541686 845.94488525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -09541687 845.94488525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09541688 845.94488525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -09541689 845.94494629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09541690 845.94494629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -09541691 845.94494629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09541692 845.94494629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -09541693 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09541694 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -09541695 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09541696 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -09541697 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09541698 845.94500732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -09541699 845.94506836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09541700 845.94506836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -09541701 845.94506836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09541702 845.94506836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -09541703 845.94512939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09541704 845.94512939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -09541705 845.94512939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09541706 845.94512939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -09541707 845.94519043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09541708 845.94519043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -09541709 845.94519043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09541710 845.94519043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -09541711 845.94525146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09541712 845.94525146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -09541713 845.94525146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09541714 845.94525146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -09541715 845.94531250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09541716 845.94531250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -09541717 845.94531250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09541718 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -09541719 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09541720 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -09541721 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09541722 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -09541723 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09541724 845.94537354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -09541725 845.94543457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09541726 845.94543457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -09541727 845.94543457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09541728 845.94543457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -09541729 845.94549561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09541730 845.94549561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -09541731 845.94549561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09541732 845.94549561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -09541733 845.94555664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09541734 845.94555664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -09541735 845.94555664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09541736 845.94555664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -09541737 845.94561768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09541738 845.94561768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -09541739 845.94561768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09541740 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -09541741 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09541742 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -09541743 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09541744 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -09541745 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09541746 845.94567871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -09541747 845.94573975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09541748 845.94573975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -09541749 845.94573975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09541750 845.94573975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -09541751 845.94580078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09541752 845.94580078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -09541753 845.94580078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09541754 845.94580078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -09541755 845.94586182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09541756 845.94586182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -09541757 845.94586182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09541758 845.94586182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -09541759 845.94592285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09541760 845.94592285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -09541761 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09541762 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -09541763 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09541764 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -09541765 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09541766 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -09541767 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09541768 845.94598389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -09541769 845.94604492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09541770 845.94604492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -09541771 845.94604492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09541772 845.94604492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -09541773 845.94610596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09541774 845.94610596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -09541775 845.94610596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09541776 845.94610596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -09541777 845.94616699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09541778 845.94616699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -09541779 845.94616699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09541780 845.94622803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -09541781 845.94622803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09541782 845.94622803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -09541783 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09541784 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -09541785 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09541786 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -09541787 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09541788 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -09541789 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09541790 845.94628906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -09541791 845.94635010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09541792 845.94635010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -09541793 845.94635010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09541794 845.94641113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -09541795 845.94641113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09541796 845.94641113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -09541797 845.94647217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09541798 845.94647217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -09541799 845.94647217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09541800 845.94647217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -09541801 845.94653320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09541802 845.94653320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -09541803 845.94653320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09541804 845.94653320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -09541805 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09541806 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -09541807 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09541808 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -09541809 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09541810 845.94659424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -09541811 845.94665527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09541812 845.94665527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -09541813 845.94665527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09541814 845.94665527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -09541815 845.94671631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09541816 845.94671631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -09541817 845.94671631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09541818 845.94671631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -09541819 845.94677734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09541820 845.94677734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -09541821 845.94677734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09541822 845.94683838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -09541823 845.94683838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09541824 845.94683838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -09541825 845.94689941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09541826 845.94689941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -09541827 845.94689941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09541828 845.94689941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -09541829 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09541830 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -09541831 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09541832 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -09541833 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09541834 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -09541835 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09541836 845.94696045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -09541837 845.94702148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09541838 845.94702148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -09541839 845.94708252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09541840 845.94708252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -09541841 845.94708252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09541842 845.94708252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -09541843 845.94714355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09541844 845.94714355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -09541845 845.94714355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09541846 845.94714355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -09541847 845.94720459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09541848 845.94720459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -09541849 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09541850 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -09541851 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09541852 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -09541853 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09541854 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -09541855 845.94726563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09541856 845.94732666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -09541857 845.94732666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09541858 845.94732666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -09541859 845.94738770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09541860 845.94738770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -09541861 845.94738770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09541862 845.94738770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -09541863 845.94744873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09541864 845.94744873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -09541865 845.94744873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09541866 845.94744873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -09541867 845.94750977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09541868 845.94750977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -09541869 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09541870 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -09541871 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09541872 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -09541873 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09541874 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -09541875 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09541876 845.94757080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -09541877 845.94763184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09541878 845.94763184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -09541879 845.94763184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09541880 845.94763184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -09541881 845.94769287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09541882 845.94769287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -09541883 845.94769287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09541884 845.94769287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -09541885 845.94775391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09541886 845.94775391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -09541887 845.94781494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09541888 845.94781494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -09541889 845.94781494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09541890 845.94781494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -09541891 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09541892 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -09541893 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09541894 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -09541895 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09541896 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -09541897 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09541898 845.94787598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -09541899 845.94793701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09541900 845.94793701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -09541901 845.94793701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09541902 845.94793701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -09541903 845.94799805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09541904 845.94799805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -09541905 845.94805908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09541906 845.94805908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -09541907 845.94805908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09541908 845.94805908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -09541909 845.94812012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09541910 845.94812012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -09541911 845.94812012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09541912 845.94812012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -09541913 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09541914 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -09541915 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09541916 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -09541917 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09541918 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -09541919 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09541920 845.94818115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -09541921 845.94824219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09541922 845.94824219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -09541923 845.94830322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09541924 845.94830322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -09541925 845.94830322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09541926 845.94830322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -09541927 845.94836426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09541928 845.94836426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -09541929 845.94836426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09541930 845.94836426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -09541931 845.94842529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09541932 845.94842529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -09541933 845.94842529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09541934 845.94842529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -09541935 845.94848633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09541936 845.94848633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -09541937 845.94848633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09541938 845.94848633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -09541939 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09541940 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -09541941 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09541942 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -09541943 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09541944 845.94854736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -09541945 845.94860840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09541946 845.94860840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -09541947 845.94860840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09541948 845.94860840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -09541949 845.94866943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09541950 845.94866943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -09541951 845.94866943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09541952 845.94866943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -09541953 845.94873047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09541954 845.94873047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -09541955 845.94873047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09541956 845.94873047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -09541957 845.94879150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09541958 845.94879150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -09541959 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09541960 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -09541961 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09541962 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -09541963 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09541964 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -09541965 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09541966 845.94885254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -09541967 845.94891357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09541968 845.94891357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -09541969 845.94891357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09541970 845.94891357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -09541971 845.94897461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09541972 845.94897461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -09541973 845.94897461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09541974 845.94897461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -09541975 845.94903564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09541976 845.94903564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -09541977 845.94909668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09541978 845.94909668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -09541979 845.94909668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09541980 845.94909668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -09541981 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09541982 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -09541983 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09541984 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -09541985 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09541986 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -09541987 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09541988 845.94915771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -09541989 845.94921875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09541990 845.94921875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -09541991 845.94921875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09541992 845.94927979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -09541993 845.94927979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09541994 845.94927979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -09541995 845.94934082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09541996 845.94934082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -09541997 845.94934082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09541998 845.94934082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -09541999 845.94940186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09542000 845.94940186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -09542001 845.94940186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09542002 845.94940186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -09542003 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09542004 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -09542005 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09542006 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -09542007 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09542008 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -09542009 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09542010 845.94946289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -09542011 845.94952393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09542012 845.94952393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -09542013 845.94958496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09542014 845.94958496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -09542015 845.94958496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09542016 845.94958496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -09542017 845.94964600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09542018 845.94964600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -09542019 845.94964600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09542020 845.94964600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -09542021 845.94970703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09542022 845.94970703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -09542023 845.94970703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09542024 845.94970703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -09542025 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09542026 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -09542027 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09542028 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -09542029 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09542030 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -09542031 845.94976807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09542032 845.94982910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -09542033 845.94982910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09542034 845.94982910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -09542035 845.94989014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09542036 845.94989014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -09542037 845.94989014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09542038 845.94989014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -09542039 845.94995117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09542040 845.94995117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -09542041 845.94995117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09542042 845.94995117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -09542043 845.95001221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09542044 845.95001221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -09542045 845.95001221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09542046 845.95001221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -09542047 845.95007324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09542048 845.95007324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -09542049 845.95007324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09542050 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -09542051 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09542052 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -09542053 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09542054 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -09542055 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09542056 845.95013428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -09542057 845.95019531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09542058 845.95019531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -09542059 845.95019531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09542060 845.95019531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -09542061 845.95025635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09542062 845.95025635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -09542063 845.95025635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09542064 845.95025635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -09542065 845.95031738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09542066 845.95031738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -09542067 845.95037842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09542068 845.95037842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -09542069 845.95037842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09542070 845.95037842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -09542071 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09542072 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -09542073 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09542074 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -09542075 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09542076 845.95043945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -09542077 845.95050049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09542078 845.95050049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -09542079 845.95050049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09542080 845.95050049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -09542081 845.95056152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09542082 845.95056152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -09542083 845.95056152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09542084 845.95056152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -09542085 845.95062256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09542086 845.95062256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -09542087 845.95062256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09542088 845.95062256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -09542089 845.95068359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09542090 845.95068359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -09542091 845.95068359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09542092 845.95068359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -09542093 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09542094 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -09542095 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09542096 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -09542097 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09542098 845.95074463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -09542099 845.95080566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09542100 845.95080566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -09542101 845.95080566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09542102 845.95080566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -09542103 845.95086670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09542104 845.95086670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -09542105 845.95086670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09542106 845.95086670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -09542107 845.95092773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09542108 845.95092773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -09542109 845.95092773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09542110 845.95092773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -09542111 845.95098877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09542112 845.95098877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -09542113 845.95098877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09542114 845.95098877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -09542115 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09542116 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -09542117 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09542118 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -09542119 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09542120 845.95104980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -09542121 845.95111084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09542122 845.95111084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -09542123 845.95111084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09542124 845.95111084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -09542125 845.95117188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09542126 845.95117188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -09542127 845.95117188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09542128 845.95117188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -09542129 845.95123291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09542130 845.95123291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -09542131 845.95123291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09542132 845.95123291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -09542133 845.95129395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09542134 845.95129395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -09542135 845.95129395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09542136 845.95135498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -09542137 845.95135498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09542138 845.95135498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -09542139 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09542140 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -09542141 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09542142 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -09542143 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09542144 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -09542145 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09542146 845.95141602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -09542147 845.95147705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09542148 845.95147705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -09542149 845.95147705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09542150 845.95147705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -09542151 845.95153809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09542152 845.95153809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -09542153 845.95153809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09542154 845.95153809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -09542155 845.95159912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09542156 845.95159912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -09542157 845.95159912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09542158 845.95166016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -09542159 845.95166016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09542160 845.95166016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -09542161 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09542162 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -09542163 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09542164 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -09542165 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09542166 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -09542167 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09542168 845.95172119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -09542169 845.95178223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09542170 845.95178223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -09542171 845.95178223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09542172 845.95178223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -09542173 845.95184326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09542174 845.95184326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -09542175 845.95184326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09542176 845.95190430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -09542177 845.95190430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09542178 845.95190430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -09542179 845.95196533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09542180 845.95196533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -09542181 845.95196533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09542182 845.95196533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -09542183 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09542184 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -09542185 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09542186 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -09542187 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09542188 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -09542189 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09542190 845.95202637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -09542191 845.95208740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09542192 845.95208740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -09542193 845.95208740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09542194 845.95208740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -09542195 845.95214844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09542196 845.95214844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -09542197 845.95220947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09542198 845.95220947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -09542199 845.95220947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09542200 845.95220947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -09542201 845.95227051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09542202 845.95227051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -09542203 845.95227051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09542204 845.95227051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -09542205 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09542206 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -09542207 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09542208 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -09542209 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09542210 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -09542211 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09542212 845.95233154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -09542213 845.95239258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09542214 845.95239258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -09542215 845.95239258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09542216 845.95245361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -09542217 845.95245361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09542218 845.95245361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -09542219 845.95251465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09542220 845.95251465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -09542221 845.95251465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09542222 845.95251465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -09542223 845.95257568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09542224 845.95257568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -09542225 845.95257568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09542226 845.95257568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -09542227 845.95263672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09542228 845.95263672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -09542229 845.95263672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09542230 845.95263672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -09542231 845.95269775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09542232 845.95269775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -09542233 845.95269775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09542234 845.95269775 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -09542235 845.95275879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09542236 845.95275879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -09542237 845.95275879 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09542238 845.95281982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -09542239 845.95281982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09542240 845.95281982 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -09542241 845.95288086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09542242 845.95288086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -09542243 845.95288086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09542244 845.95288086 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -09542245 845.95294189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09542246 845.95294189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -09542247 845.95294189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09542248 845.95294189 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -09542249 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09542250 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -09542251 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09542252 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -09542253 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09542254 845.95300293 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -09542255 845.95306396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09542256 845.95306396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -09542257 845.95306396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09542258 845.95306396 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -09542259 845.95312500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09542260 845.95312500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -09542261 845.95312500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09542262 845.95312500 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -09542263 845.95318604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09542264 845.95318604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -09542265 845.95318604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09542266 845.95318604 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -09542267 845.95324707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09542268 845.95324707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -09542269 845.95324707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09542270 845.95324707 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -09542271 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09542272 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -09542273 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09542274 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -09542275 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09542276 845.95330811 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -09542277 845.95336914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09542278 845.95336914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -09542279 845.95336914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09542280 845.95336914 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -09542281 845.95343018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09542282 845.95343018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -09542283 845.95343018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09542284 845.95343018 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -09542285 845.95349121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09542286 845.95349121 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -09542287 845.95355225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09542288 845.95355225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -09542289 845.95355225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09542290 845.95355225 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -09542291 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09542292 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -09542293 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09542294 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -09542295 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09542296 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -09542297 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09542298 845.95361328 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -09542299 845.95367432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09542300 845.95367432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -09542301 845.95367432 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09542302 845.95373535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -09542303 845.95373535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09542304 845.95373535 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -09542305 845.95379639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09542306 845.95379639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -09542307 845.95379639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09542308 845.95379639 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -09542309 845.95385742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09542310 845.95385742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -09542311 845.95385742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09542312 845.95385742 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -09542313 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09542314 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -09542315 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09542316 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -09542317 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09542318 845.95391846 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -09542319 845.95397949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09542320 845.95397949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -09542321 845.95397949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09542322 845.95397949 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -09542323 845.95404053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09542324 845.95404053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -09542325 845.95404053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09542326 845.95404053 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -09542327 845.95410156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09542328 845.95410156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -09542329 845.95410156 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09542330 845.95416260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -09542331 845.95416260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09542332 845.95416260 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -09542333 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09542334 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -09542335 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09542336 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -09542337 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09542338 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -09542339 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09542340 845.95422363 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -09542341 845.95428467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09542342 845.95428467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -09542343 845.95428467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09542344 845.95428467 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -09542345 845.95434570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09542346 845.95434570 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -09542347 845.95440674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09542348 845.95440674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -09542349 845.95440674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09542350 845.95440674 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -09542351 845.95446777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09542352 845.95446777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -09542353 845.95446777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09542354 845.95446777 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -09542355 845.95452881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09542356 845.95452881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -09542357 845.95452881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09542358 845.95452881 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -09542359 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09542360 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -09542361 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09542362 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -09542363 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09542364 845.95458984 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -09542365 845.95465088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09542366 845.95465088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -09542367 845.95465088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09542368 845.95465088 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -09542369 845.95471191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09542370 845.95471191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -09542371 845.95471191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09542372 845.95471191 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -09542373 845.95477295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09542374 845.95477295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -09542375 845.95477295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09542376 845.95477295 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -09542377 845.95483398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09542378 845.95483398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -09542379 845.95483398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09542380 845.95483398 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -09542381 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09542382 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -09542383 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09542384 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -09542385 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09542386 845.95489502 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -09542387 845.95495605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09542388 845.95495605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -09542389 845.95495605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09542390 845.95495605 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -09542391 845.95501709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09542392 845.95501709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -09542393 845.95501709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09542394 845.95501709 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -09542395 845.95507813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09542396 845.95507813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -09542397 845.95507813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09542398 845.95513916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -09542399 845.95513916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09542400 845.95513916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -09542401 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09542402 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -09542403 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09542404 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -09542405 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09542406 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -09542407 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09542408 845.95520020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -09542409 845.95526123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09542410 845.95526123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -09542411 845.95526123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09542412 845.95526123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -09542413 845.95532227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09542414 845.95532227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -09542415 845.95538330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09542416 845.95538330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -09542417 845.95538330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09542418 845.95538330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -09542419 845.95544434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09542420 845.95544434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -09542421 845.95544434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09542422 845.95544434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -09542423 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09542424 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -09542425 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09542426 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -09542427 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09542428 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -09542429 845.95550537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09542430 845.95556641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -09542431 845.95556641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09542432 845.95556641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -09542433 845.95562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09542434 845.95562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -09542435 845.95562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09542436 845.95562744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -09542437 845.95568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09542438 845.95568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -09542439 845.95568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09542440 845.95568848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -09542441 845.95574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09542442 845.95574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -09542443 845.95574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09542444 845.95574951 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -09542445 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09542446 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -09542447 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09542448 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -09542449 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09542450 845.95581055 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -09542451 845.95587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09542452 845.95587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -09542453 845.95587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09542454 845.95587158 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -09542455 845.95593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09542456 845.95593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -09542457 845.95593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09542458 845.95593262 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -09542459 845.95599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09542460 845.95599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -09542461 845.95599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09542462 845.95599365 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -09542463 845.95605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09542464 845.95605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -09542465 845.95605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09542466 845.95605469 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -09542467 845.95611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09542468 845.95611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -09542469 845.95611572 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09542470 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -09542471 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09542472 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -09542473 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09542474 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -09542475 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09542476 845.95617676 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -09542477 845.95623779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09542478 845.95623779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -09542479 845.95623779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09542480 845.95623779 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -09542481 845.95629883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09542482 845.95629883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -09542483 845.95629883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09542484 845.95629883 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -09542485 845.95635986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09542486 845.95635986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -09542487 845.95635986 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09542488 845.95642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -09542489 845.95642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09542490 845.95642090 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -09542491 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09542492 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -09542493 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09542494 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -09542495 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09542496 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -09542497 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09542498 845.95648193 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -09542499 845.95654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09542500 845.95654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -09542501 845.95654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09542502 845.95654297 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -09542503 845.95660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09542504 845.95660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -09542505 845.95660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09542506 845.95660400 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -09542507 845.95666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09542508 845.95666504 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -09542509 845.95672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09542510 845.95672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -09542511 845.95672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09542512 845.95672607 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -09542513 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09542514 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -09542515 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09542516 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -09542517 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09542518 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -09542519 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09542520 845.95678711 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -09542521 845.95684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09542522 845.95684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -09542523 845.95684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09542524 845.95684814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -09542525 845.95690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09542526 845.95690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -09542527 845.95690918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09542528 845.95697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -09542529 845.95697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09542530 845.95697021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -09542531 845.95703125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09542532 845.95703125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -09542533 845.95703125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09542534 845.95703125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -09542535 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09542536 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -09542537 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09542538 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -09542539 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09542540 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -09542541 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09542542 845.95709229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -09542543 845.95715332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09542544 845.95715332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -09542545 845.95715332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09542546 845.95715332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -09542547 845.95721436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09542548 845.95721436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -09542549 845.95721436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09542550 845.95727539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -09542551 845.95727539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09542552 845.95727539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -09542553 845.95733643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09542554 845.95733643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -09542555 845.95733643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09542556 845.95733643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -09542557 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09542558 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -09542559 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09542560 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -09542561 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09542562 845.95739746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -09542563 845.95745850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09542564 845.95745850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -09542565 845.95745850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09542566 845.95745850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -09542567 845.95751953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09542568 845.95751953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -09542569 845.95751953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09542570 845.95751953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -09542571 845.95758057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09542572 845.95758057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -09542573 845.95758057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09542574 845.95758057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -09542575 845.95764160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09542576 845.95764160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -09542577 845.95770264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09542578 845.95770264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -09542579 845.95770264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09542580 845.95770264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -09542581 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09542582 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -09542583 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09542584 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -09542585 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09542586 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -09542587 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09542588 845.95776367 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -09542589 845.95782471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09542590 845.95782471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -09542591 845.95782471 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09542592 845.95788574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -09542593 845.95788574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09542594 845.95788574 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -09542595 845.95794678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09542596 845.95794678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -09542597 845.95794678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09542598 845.95794678 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -09542599 845.95800781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09542600 845.95800781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -09542601 845.95800781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09542602 845.95800781 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -09542603 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09542604 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -09542605 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09542606 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -09542607 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09542608 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -09542609 845.95806885 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09542610 845.95812988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -09542611 845.95812988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09542612 845.95812988 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -09542613 845.95819092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09542614 845.95819092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -09542615 845.95819092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09542616 845.95819092 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -09542617 845.95825195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09542618 845.95825195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -09542619 845.95825195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09542620 845.95825195 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -09542621 845.95831299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09542622 845.95831299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -09542623 845.95831299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09542624 845.95831299 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -09542625 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09542626 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -09542627 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09542628 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -09542629 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09542630 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -09542631 845.95837402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09542632 845.95843506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -09542633 845.95843506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09542634 845.95843506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -09542635 845.95849609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09542636 845.95849609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -09542637 845.95849609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09542638 845.95849609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -09542639 845.95855713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09542640 845.95855713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -09542641 845.95855713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09542642 845.95855713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -09542643 845.95861816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09542644 845.95861816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -09542645 845.95861816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09542646 845.95861816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -09542647 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09542648 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -09542649 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09542650 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -09542651 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09542652 845.95867920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -09542653 845.95874023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09542654 845.95874023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -09542655 845.95874023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09542656 845.95874023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -09542657 845.95880127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09542658 845.95880127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -09542659 845.95880127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09542660 845.95880127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -09542661 845.95886230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09542662 845.95886230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -09542663 845.95886230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09542664 845.95886230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -09542665 845.95892334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09542666 845.95892334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -09542667 845.95892334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09542668 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -09542669 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09542670 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -09542671 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09542672 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -09542673 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09542674 845.95898438 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -09542675 845.95904541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09542676 845.95904541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -09542677 845.95904541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09542678 845.95904541 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -09542679 845.95910645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09542680 845.95910645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -09542681 845.95910645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09542682 845.95910645 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -09542683 845.95916748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09542684 845.95916748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -09542685 845.95916748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09542686 845.95916748 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -09542687 845.95922852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09542688 845.95922852 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -09542689 845.95928955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09542690 845.95928955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -09542691 845.95928955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09542692 845.95928955 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -09542693 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09542694 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -09542695 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09542696 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -09542697 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09542698 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -09542699 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09542700 845.95935059 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -09542701 845.95941162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09542702 845.95941162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -09542703 845.95941162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09542704 845.95941162 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -09542705 845.95947266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09542706 845.95947266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -09542707 845.95947266 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09542708 845.95953369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -09542709 845.95953369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09542710 845.95953369 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -09542711 845.95959473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09542712 845.95959473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -09542713 845.95959473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09542714 845.95959473 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -09542715 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09542716 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -09542717 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09542718 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -09542719 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09542720 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -09542721 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09542722 845.95965576 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -09542723 845.95971680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09542724 845.95971680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -09542725 845.95971680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09542726 845.95971680 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -09542727 845.95977783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09542728 845.95977783 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -09542729 845.95983887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09542730 845.95983887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -09542731 845.95983887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09542732 845.95983887 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -09542733 845.95989990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09542734 845.95989990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -09542735 845.95989990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09542736 845.95989990 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -09542737 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09542738 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -09542739 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09542740 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -09542741 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09542742 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -09542743 845.95996094 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09542744 845.96002197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -09542745 845.96002197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09542746 845.96002197 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -09542747 845.96008301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09542748 845.96008301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -09542749 845.96008301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09542750 845.96008301 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -09542751 845.96014404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09542752 845.96014404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -09542753 845.96014404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09542754 845.96014404 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -09542755 845.96020508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09542756 845.96020508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -09542757 845.96020508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09542758 845.96020508 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -09542759 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09542760 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -09542761 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09542762 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -09542763 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09542764 845.96026611 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -09542765 845.96032715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09542766 845.96032715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -09542767 845.96032715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09542768 845.96032715 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -09542769 845.96038818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09542770 845.96038818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -09542771 845.96038818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09542772 845.96038818 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -09542773 845.96044922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09542774 845.96044922 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -09542775 845.96051025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09542776 845.96051025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -09542777 845.96051025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09542778 845.96051025 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -09542779 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09542780 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -09542781 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09542782 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -09542783 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09542784 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -09542785 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09542786 845.96057129 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -09542787 845.96063232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09542788 845.96063232 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -09542789 845.96069336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09542790 845.96069336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -09542791 845.96069336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09542792 845.96069336 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -09542793 845.96075439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09542794 845.96075439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -09542795 845.96075439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09542796 845.96075439 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -09542797 845.96081543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09542798 845.96081543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -09542799 845.96081543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09542800 845.96081543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -09542801 845.96087646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09542802 845.96087646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -09542803 845.96087646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09542804 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -09542805 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09542806 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -09542807 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09542808 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -09542809 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09542810 845.96093750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -09542811 845.96099854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09542812 845.96099854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -09542813 845.96099854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09542814 845.96099854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -09542815 845.96105957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09542816 845.96105957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -09542817 845.96105957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09542818 845.96112061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -09542819 845.96112061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09542820 845.96112061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -09542821 845.96118164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09542822 845.96118164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -09542823 845.96118164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09542824 845.96118164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -09542825 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09542826 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -09542827 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09542828 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -09542829 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09542830 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -09542831 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09542832 845.96124268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -09542833 845.96130371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09542834 845.96130371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -09542835 845.96136475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09542836 845.96136475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -09542837 845.96136475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09542838 845.96136475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -09542839 845.96142578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09542840 845.96142578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -09542841 845.96142578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09542842 845.96142578 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -09542843 845.96148682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09542844 845.96148682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -09542845 845.96148682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09542846 845.96148682 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -09542847 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09542848 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -09542849 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09542850 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -09542851 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09542852 845.96154785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -09542853 845.96160889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09542854 845.96160889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -09542855 845.96160889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09542856 845.96160889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -09542857 845.96166992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09542858 845.96166992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -09542859 845.96166992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09542860 845.96166992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -09542861 845.96173096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09542862 845.96173096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -09542863 845.96173096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09542864 845.96173096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -09542865 845.96179199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09542866 845.96179199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -09542867 845.96179199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09542868 845.96179199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -09542869 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09542870 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -09542871 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09542872 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -09542873 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09542874 845.96185303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -09542875 845.96191406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09542876 845.96191406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -09542877 845.96191406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09542878 845.96191406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -09542879 845.96197510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09542880 845.96197510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -09542881 845.96197510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09542882 845.96197510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -09542883 845.96203613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09542884 845.96203613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -09542885 845.96203613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09542886 845.96203613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -09542887 845.96209717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09542888 845.96209717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -09542889 845.96215820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09542890 845.96215820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -09542891 845.96215820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09542892 845.96215820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -09542893 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09542894 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -09542895 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09542896 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -09542897 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09542898 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -09542899 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09542900 845.96221924 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -09542901 845.96228027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09542902 845.96228027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -09542903 845.96228027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09542904 845.96228027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -09542905 845.96234131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09542906 845.96234131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -09542907 845.96240234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09542908 845.96240234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -09542909 845.96240234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09542910 845.96240234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -09542911 845.96246338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09542912 845.96246338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -09542913 845.96246338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09542914 845.96246338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -09542915 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09542916 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -09542917 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09542918 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -09542919 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09542920 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -09542921 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09542922 845.96252441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -09542923 845.96258545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09542924 845.96258545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -09542925 845.96258545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09542926 845.96264648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -09542927 845.96264648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09542928 845.96264648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -09542929 845.96270752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09542930 845.96270752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -09542931 845.96270752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09542932 845.96270752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -09542933 845.96276855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09542934 845.96276855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -09542935 845.96276855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09542936 845.96276855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -09542937 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09542938 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -09542939 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09542940 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -09542941 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09542942 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -09542943 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09542944 845.96282959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -09542945 845.96289063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09542946 845.96289063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -09542947 845.96295166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09542948 845.96295166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -09542949 845.96295166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09542950 845.96295166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -09542951 845.96301270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09542952 845.96301270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -09542953 845.96301270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09542954 845.96301270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -09542955 845.96307373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09542956 845.96307373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -09542957 845.96307373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09542958 845.96307373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -09542959 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09542960 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -09542961 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09542962 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -09542963 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09542964 845.96313477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -09542965 845.96319580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09542966 845.96319580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -09542967 845.96319580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09542968 845.96319580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -09542969 845.96325684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09542970 845.96325684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -09542971 845.96325684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09542972 845.96325684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -09542973 845.96331787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09542974 845.96331787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -09542975 845.96331787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09542976 845.96331787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -09542977 845.96337891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09542978 845.96337891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -09542979 845.96337891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09542980 845.96337891 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -09542981 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09542982 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -09542983 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09542984 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -09542985 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09542986 845.96343994 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -09542987 845.96350098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09542988 845.96350098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -09542989 845.96350098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09542990 845.96350098 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -09542991 845.96356201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09542992 845.96356201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -09542993 845.96356201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09542994 845.96356201 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -09542995 845.96362305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09542996 845.96362305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -09542997 845.96362305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09542998 845.96362305 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -09542999 845.96368408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09543000 845.96368408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -09543001 845.96368408 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09543002 845.96374512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -09543003 845.96374512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09543004 845.96374512 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -09543005 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09543006 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -09543007 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09543008 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -09543009 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09543010 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -09543011 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09543012 845.96380615 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -09543013 845.96386719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09543014 845.96386719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -09543015 845.96386719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09543016 845.96386719 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -09543017 845.96392822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09543018 845.96392822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -09543019 845.96392822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09543020 845.96392822 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -09543021 845.96398926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09543022 845.96398926 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -09543023 845.96405029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09543024 845.96405029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -09543025 845.96405029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09543026 845.96405029 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -09543027 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09543028 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -09543029 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09543030 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -09543031 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09543032 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -09543033 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09543034 845.96411133 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -09543035 845.96417236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09543036 845.96417236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -09543037 845.96417236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09543038 845.96417236 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -09543039 845.96423340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09543040 845.96423340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -09543041 845.96423340 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09543042 845.96429443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -09543043 845.96429443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09543044 845.96429443 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -09543045 845.96435547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09543046 845.96435547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -09543047 845.96435547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09543048 845.96435547 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -09543049 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09543050 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -09543051 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09543052 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -09543053 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09543054 845.96441650 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -09543055 845.96447754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09543056 845.96447754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -09543057 845.96447754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09543058 845.96447754 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -09543059 845.96453857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09543060 845.96453857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -09543061 845.96453857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09543062 845.96453857 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -09543063 845.96459961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09543064 845.96459961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -09543065 845.96459961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09543066 845.96459961 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -09543067 845.96466064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09543068 845.96466064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -09543069 845.96466064 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09543070 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -09543071 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09543072 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -09543073 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09543074 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -09543075 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09543076 845.96472168 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -09543077 845.96478271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09543078 845.96478271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -09543079 845.96478271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09543080 845.96478271 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -09543081 845.96484375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09543082 845.96484375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -09543083 845.96484375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09543084 845.96484375 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -09543085 845.96490479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09543086 845.96490479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -09543087 845.96490479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09543088 845.96490479 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -09543089 845.96496582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09543090 845.96496582 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -09543091 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09543092 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -09543093 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09543094 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -09543095 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09543096 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -09543097 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09543098 845.96502686 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -09543099 845.96508789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09543100 845.96508789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -09543101 845.96508789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09543102 845.96508789 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -09543103 845.96514893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09543104 845.96514893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -09543105 845.96514893 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09543106 845.96520996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -09543107 845.96520996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09543108 845.96520996 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -09543109 845.96527100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09543110 845.96527100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -09543111 845.96527100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09543112 845.96527100 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -09543113 845.96533203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09543114 845.96533203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -09543115 845.96533203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09543116 845.96533203 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -09543117 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09543118 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -09543119 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09543120 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -09543121 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09543122 845.96539307 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -09543123 845.96545410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09543124 845.96545410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -09543125 845.96545410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09543126 845.96545410 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -09543127 845.96551514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09543128 845.96551514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -09543129 845.96551514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09543130 845.96551514 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -09543131 845.96557617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09543132 845.96557617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -09543133 845.96557617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09543134 845.96557617 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -09543135 845.96563721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09543136 845.96563721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -09543137 845.96563721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09543138 845.96563721 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -09543139 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09543140 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -09543141 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09543142 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -09543143 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09543144 845.96569824 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -09543145 845.96575928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09543146 845.96575928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -09543147 845.96575928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09543148 845.96575928 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -09543149 845.96582031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09543150 845.96582031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -09543151 845.96582031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09543152 845.96582031 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -09543153 845.96588135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09543154 845.96588135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -09543155 845.96588135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09543156 845.96588135 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -09543157 845.96594238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09543158 845.96594238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -09543159 845.96594238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09543160 845.96594238 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -09543161 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09543162 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -09543163 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09543164 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -09543165 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09543166 845.96600342 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -09543167 845.96606445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09543168 845.96606445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -09543169 845.96606445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09543170 845.96606445 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -09543171 845.96612549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09543172 845.96612549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -09543173 845.96612549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09543174 845.96612549 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -09543175 845.96618652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09543176 845.96618652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -09543177 845.96618652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09543178 845.96618652 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -09543179 845.96624756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09543180 845.96624756 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -09543181 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09543182 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -09543183 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09543184 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -09543185 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09543186 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -09543187 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09543188 845.96630859 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -09543189 845.96636963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09543190 845.96636963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -09543191 845.96636963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09543192 845.96636963 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -09543193 845.96643066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09543194 845.96643066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -09543195 845.96643066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09543196 845.96643066 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -09543197 845.96649170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09543198 845.96649170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -09543199 845.96649170 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09543200 845.96655273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -09543201 845.96655273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09543202 845.96655273 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -09543203 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09543204 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -09543205 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09543206 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -09543207 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09543208 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -09543209 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09543210 845.96661377 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -09543211 845.96667480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09543212 845.96667480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -09543213 845.96667480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09543214 845.96667480 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -09543215 845.96673584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09543216 845.96673584 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -09543217 845.96679688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09543218 845.96679688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -09543219 845.96679688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09543220 845.96679688 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -09543221 845.96685791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09543222 845.96685791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -09543223 845.96685791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09543224 845.96685791 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -09543225 845.96691895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09543226 845.96691895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -09543227 845.96691895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09543228 845.96691895 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -09543229 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09543230 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -09543231 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09543232 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -09543233 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09543234 845.96697998 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -09543235 845.96704102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09543236 845.96704102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -09543237 845.96704102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09543238 845.96704102 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -09543239 845.96710205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09543240 845.96710205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -09543241 845.96710205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09543242 845.96710205 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -09543243 845.96716309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09543244 845.96716309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -09543245 845.96716309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09543246 845.96716309 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -09543247 845.96722412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09543248 845.96722412 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -09543249 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09543250 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -09543251 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09543252 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -09543253 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09543254 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -09543255 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09543256 845.96728516 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -09543257 845.96734619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09543258 845.96734619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -09543259 845.96734619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09543260 845.96734619 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -09543261 845.96740723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09543262 845.96740723 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -09543263 845.96746826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09543264 845.96746826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -09543265 845.96746826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09543266 845.96746826 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -09543267 845.96752930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09543268 845.96752930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -09543269 845.96752930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09543270 845.96752930 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -09543271 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09543272 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -09543273 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09543274 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -09543275 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09543276 845.96759033 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -09543277 845.96765137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09543278 845.96765137 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -09543279 845.96771240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09543280 845.96771240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -09543281 845.96771240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09543282 845.96771240 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -09543283 845.96777344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09543284 845.96777344 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -09543285 845.96783447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09543286 845.96783447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -09543287 845.96783447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09543288 845.96783447 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -09543289 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09543290 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -09543291 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09543292 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -09543293 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09543294 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -09543295 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09543296 845.96789551 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -09543297 845.96795654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09543298 845.96795654 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -09543299 845.96801758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09543300 845.96801758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -09543301 845.96801758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09543302 845.96801758 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -09543303 845.96807861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09543304 845.96807861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -09543305 845.96807861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09543306 845.96807861 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -09543307 845.96813965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09543308 845.96813965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -09543309 845.96813965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09543310 845.96813965 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -09543311 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09543312 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -09543313 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09543314 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -09543315 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09543316 845.96820068 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -09543317 845.96826172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09543318 845.96826172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -09543319 845.96826172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09543320 845.96826172 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -09543321 845.96832275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09543322 845.96832275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -09543323 845.96832275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09543324 845.96832275 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -09543325 845.96838379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09543326 845.96838379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -09543327 845.96838379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09543328 845.96838379 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -09543329 845.96844482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09543330 845.96844482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -09543331 845.96844482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09543332 845.96844482 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -09543333 845.96850586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09543334 845.96850586 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -09543335 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09543336 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -09543337 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09543338 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -09543339 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09543340 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -09543341 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09543342 845.96856689 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -09543343 845.96862793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09543344 845.96862793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -09543345 845.96862793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09543346 845.96862793 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -09543347 845.96868896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09543348 845.96868896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -09543349 845.96868896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09543350 845.96868896 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -09543351 845.96875000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09543352 845.96875000 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -09543353 845.96881104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09543354 845.96881104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -09543355 845.96881104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09543356 845.96881104 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -09543357 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09543358 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -09543359 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09543360 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -09543361 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09543362 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -09543363 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09543364 845.96887207 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -09543365 845.96893311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09543366 845.96893311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -09543367 845.96893311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09543368 845.96893311 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -09543369 845.96899414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09543370 845.96899414 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -09543371 845.96905518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09543372 845.96905518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -09543373 845.96905518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09543374 845.96905518 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -09543375 845.96911621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09543376 845.96911621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -09543377 845.96911621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09543378 845.96911621 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -09543379 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09543380 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -09543381 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09543382 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -09543383 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09543384 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -09543385 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09543386 845.96917725 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -09543387 845.96923828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09543388 845.96923828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -09543389 845.96923828 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09543390 845.96929932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -09543391 845.96929932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09543392 845.96929932 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -09543393 845.96936035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09543394 845.96936035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -09543395 845.96936035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09543396 845.96936035 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -09543397 845.96942139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09543398 845.96942139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -09543399 845.96942139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09543400 845.96942139 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -09543401 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09543402 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -09543403 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09543404 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -09543405 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09543406 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -09543407 845.96948242 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09543408 845.96954346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -09543409 845.96954346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09543410 845.96954346 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -09543411 845.96960449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09543412 845.96960449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -09543413 845.96960449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09543414 845.96960449 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -09543415 845.96966553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09543416 845.96966553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -09543417 845.96966553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09543418 845.96966553 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -09543419 845.96972656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09543420 845.96972656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -09543421 845.96972656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09543422 845.96972656 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -09543423 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09543424 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -09543425 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09543426 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -09543427 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09543428 845.96978760 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -09543429 845.96984863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09543430 845.96984863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -09543431 845.96984863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09543432 845.96984863 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -09543433 845.96990967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09543434 845.96990967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -09543435 845.96990967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09543436 845.96990967 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -09543437 845.96997070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09543438 845.96997070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -09543439 845.96997070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09543440 845.96997070 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -09543441 845.97003174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09543442 845.97003174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -09543443 845.97003174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09543444 845.97003174 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -09543445 845.97009277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09543446 845.97009277 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -09543447 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09543448 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -09543449 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09543450 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -09543451 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09543452 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -09543453 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09543454 845.97015381 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -09543455 845.97021484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09543456 845.97021484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -09543457 845.97021484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09543458 845.97021484 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -09543459 845.97027588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09543460 845.97027588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -09543461 845.97027588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09543462 845.97027588 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -09543463 845.97033691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09543464 845.97033691 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -09543465 845.97039795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09543466 845.97039795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -09543467 845.97039795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09543468 845.97039795 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -09543469 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09543470 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -09543471 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09543472 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -09543473 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09543474 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -09543475 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09543476 845.97045898 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -09543477 845.97052002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09543478 845.97052002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -09543479 845.97052002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09543480 845.97052002 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -09543481 845.97058105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09543482 845.97058105 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -09543483 845.97064209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09543484 845.97064209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -09543485 845.97064209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09543486 845.97064209 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -09543487 845.97070313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09543488 845.97070313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -09543489 845.97070313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09543490 845.97070313 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -09543491 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09543492 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -09543493 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09543494 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -09543495 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09543496 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -09543497 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09543498 845.97076416 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -09543499 845.97082520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09543500 845.97082520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -09543501 845.97082520 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09543502 845.97088623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -09543503 845.97088623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09543504 845.97088623 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -09543505 845.97094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09543506 845.97094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -09543507 845.97094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09543508 845.97094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -09543509 845.97100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09543510 845.97100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -09543511 845.97100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09543512 845.97100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -09543513 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09543514 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -09543515 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09543516 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -09543517 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09543518 845.97106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -09543519 845.97113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09543520 845.97113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -09543521 845.97113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09543522 845.97113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -09543523 845.97119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09543524 845.97119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -09543525 845.97119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09543526 845.97119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -09543527 845.97125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09543528 845.97125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -09543529 845.97125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09543530 845.97125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -09543531 845.97131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09543532 845.97131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -09543533 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09543534 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -09543535 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09543536 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -09543537 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09543538 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -09543539 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09543540 845.97137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -09543541 845.97143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09543542 845.97143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -09543543 845.97143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09543544 845.97143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -09543545 845.97149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09543546 845.97149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -09543547 845.97155762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09543548 845.97155762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -09543549 845.97155762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09543550 845.97155762 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -09543551 845.97161865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09543552 845.97161865 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -09543553 845.97167969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09543554 845.97167969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -09543555 845.97167969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09543556 845.97167969 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -09543557 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09543558 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -09543559 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09543560 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -09543561 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09543562 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -09543563 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09543564 845.97174072 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -09543565 845.97180176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09543566 845.97180176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -09543567 845.97180176 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09543568 845.97186279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -09543569 845.97186279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09543570 845.97186279 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -09543571 845.97192383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09543572 845.97192383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -09543573 845.97192383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09543574 845.97192383 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -09543575 845.97198486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09543576 845.97198486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -09543577 845.97198486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09543578 845.97198486 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -09543579 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09543580 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -09543581 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09543582 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -09543583 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09543584 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -09543585 845.97204590 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09543586 845.97210693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -09543587 845.97210693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09543588 845.97210693 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -09543589 845.97216797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09543590 845.97216797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -09543591 845.97216797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09543592 845.97216797 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -09543593 845.97222900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09543594 845.97222900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -09543595 845.97222900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09543596 845.97222900 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -09543597 845.97229004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09543598 845.97229004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -09543599 845.97229004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09543600 845.97229004 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -09543601 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09543602 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -09543603 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09543604 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -09543605 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09543606 845.97235107 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -09543607 845.97241211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09543608 845.97241211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -09543609 845.97241211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09543610 845.97241211 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -09543611 845.97247314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09543612 845.97247314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -09543613 845.97247314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09543614 845.97247314 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -09543615 845.97253418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09543616 845.97253418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -09543617 845.97253418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09543618 845.97253418 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -09543619 845.97259521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09543620 845.97259521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -09543621 845.97259521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09543622 845.97259521 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -09543623 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09543624 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -09543625 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09543626 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -09543627 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09543628 845.97265625 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -09543629 845.97271729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09543630 845.97271729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -09543631 845.97271729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09543632 845.97271729 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -09543633 845.97277832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09543634 845.97277832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -09543635 845.97277832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09543636 845.97277832 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -09543637 845.97283936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09543638 845.97283936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -09543639 845.97283936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09543640 845.97283936 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -09543641 845.97290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09543642 845.97290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -09543643 845.97290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09543644 845.97290039 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -09543645 845.97296143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09543646 845.97296143 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -09543647 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09543648 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -09543649 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09543650 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -09543651 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09543652 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -09543653 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09543654 845.97302246 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -09543655 845.97308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09543656 845.97308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -09543657 845.97308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09543658 845.97308350 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -09543659 845.97314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09543660 845.97314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -09543661 845.97314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09543662 845.97314453 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -09543663 845.97320557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09543664 845.97320557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -09543665 845.97320557 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09543666 845.97326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -09543667 845.97326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09543668 845.97326660 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -09543669 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09543670 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -09543671 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09543672 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -09543673 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09543674 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -09543675 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09543676 845.97332764 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -09543677 845.97338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09543678 845.97338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -09543679 845.97338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09543680 845.97338867 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -09543681 845.97344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09543682 845.97344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -09543683 845.97344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09543684 845.97344971 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -09543685 845.97351074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09543686 845.97351074 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -09543687 845.97357178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09543688 845.97357178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -09543689 845.97357178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09543690 845.97357178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -09543691 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09543692 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -09543693 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09543694 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -09543695 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09543696 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -09543697 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09543698 845.97363281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -09543699 845.97369385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09543700 845.97369385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -09543701 845.97369385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09543702 845.97369385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -09543703 845.97375488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09543704 845.97375488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -09543705 845.97375488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09543706 845.97381592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -09543707 845.97381592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09543708 845.97381592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -09543709 845.97387695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09543710 845.97387695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -09543711 845.97387695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09543712 845.97387695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -09543713 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09543714 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -09543715 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09543716 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -09543717 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09543718 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -09543719 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09543720 845.97393799 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -09543721 845.97399902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09543722 845.97399902 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -09543723 845.97406006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09543724 845.97406006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -09543725 845.97406006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09543726 845.97406006 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -09543727 845.97412109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09543728 845.97412109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -09543729 845.97412109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09543730 845.97412109 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -09543731 845.97418213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09543732 845.97418213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -09543733 845.97418213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09543734 845.97418213 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -09543735 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09543736 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -09543737 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09543738 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -09543739 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09543740 845.97424316 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -09543741 845.97430420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09543742 845.97430420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -09543743 845.97430420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09543744 845.97430420 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -09543745 845.97436523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09543746 845.97436523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -09543747 845.97436523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09543748 845.97436523 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -09543749 845.97442627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09543750 845.97442627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -09543751 845.97442627 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09543752 845.97448730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -09543753 845.97448730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09543754 845.97448730 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -09543755 845.97454834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09543756 845.97454834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -09543757 845.97454834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09543758 845.97454834 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -09543759 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09543760 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -09543761 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09543762 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -09543763 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09543764 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -09543765 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09543766 845.97460938 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -09543767 845.97467041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09543768 845.97467041 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -09543769 845.97473145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09543770 845.97473145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -09543771 845.97473145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09543772 845.97473145 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -09543773 845.97479248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09543774 845.97479248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -09543775 845.97479248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09543776 845.97479248 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -09543777 845.97485352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09543778 845.97485352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -09543779 845.97485352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09543780 845.97485352 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -09543781 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09543782 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -09543783 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09543784 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -09543785 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09543786 845.97491455 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -09543787 845.97497559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09543788 845.97497559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -09543789 845.97497559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09543790 845.97497559 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -09543791 845.97503662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09543792 845.97503662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -09543793 845.97503662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09543794 845.97503662 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -09543795 845.97509766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09543796 845.97509766 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -09543797 845.97515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09543798 845.97515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -09543799 845.97515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09543800 845.97515869 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -09543801 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09543802 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -09543803 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09543804 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -09543805 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09543806 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -09543807 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09543808 845.97521973 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -09543809 845.97528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09543810 845.97528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -09543811 845.97528076 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09543812 845.97534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -09543813 845.97534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09543814 845.97534180 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -09543815 845.97540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09543816 845.97540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -09543817 845.97540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09543818 845.97540283 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -09543819 845.97546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09543820 845.97546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -09543821 845.97546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09543822 845.97546387 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -09543823 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09543824 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -09543825 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09543826 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -09543827 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09543828 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -09543829 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09543830 845.97552490 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -09543831 845.97558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09543832 845.97558594 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -09543833 845.97564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09543834 845.97564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -09543835 845.97564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09543836 845.97564697 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -09543837 845.97570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09543838 845.97570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -09543839 845.97570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09543840 845.97570801 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -09543841 845.97576904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09543842 845.97576904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -09543843 845.97576904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09543844 845.97576904 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -09543845 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09543846 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -09543847 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09543848 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -09543849 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09543850 845.97583008 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -09543851 845.97589111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09543852 845.97589111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -09543853 845.97589111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09543854 845.97589111 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -09543855 845.97595215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09543856 845.97595215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -09543857 845.97595215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09543858 845.97595215 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -09543859 845.97601318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09543860 845.97601318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -09543861 845.97601318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09543862 845.97601318 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -09543863 845.97607422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09543864 845.97607422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -09543865 845.97607422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09543866 845.97613525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -09543867 845.97613525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09543868 845.97613525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -09543869 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09543870 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -09543871 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09543872 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -09543873 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09543874 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -09543875 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09543876 845.97619629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -09543877 845.97625732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09543878 845.97625732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -09543879 845.97625732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09543880 845.97625732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -09543881 845.97631836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09543882 845.97631836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -09543883 845.97631836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09543884 845.97637939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -09543885 845.97637939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09543886 845.97637939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -09543887 845.97644043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09543888 845.97644043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -09543889 845.97644043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09543890 845.97644043 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -09543891 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09543892 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -09543893 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09543894 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -09543895 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09543896 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -09543897 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09543898 845.97650146 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -09543899 845.97656250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09543900 845.97656250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -09543901 845.97656250 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09543902 845.97662354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -09543903 845.97662354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09543904 845.97662354 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -09543905 845.97668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09543906 845.97668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -09543907 845.97668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09543908 845.97668457 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -09543909 845.97674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09543910 845.97674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -09543911 845.97674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09543912 845.97674561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -09543913 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09543914 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -09543915 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09543916 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -09543917 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09543918 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -09543919 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09543920 845.97680664 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -09543921 845.97686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09543922 845.97686768 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -09543923 845.97692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09543924 845.97692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -09543925 845.97692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09543926 845.97692871 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -09543927 845.97698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09543928 845.97698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -09543929 845.97698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09543930 845.97698975 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -09543931 845.97705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09543932 845.97705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -09543933 845.97705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09543934 845.97705078 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -09543935 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09543936 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -09543937 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09543938 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -09543939 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09543940 845.97711182 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -09543941 845.97717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09543942 845.97717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -09543943 845.97717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09543944 845.97717285 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -09543945 845.97723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09543946 845.97723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -09543947 845.97723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09543948 845.97723389 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -09543949 845.97729492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09543950 845.97729492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -09543951 845.97729492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09543952 845.97729492 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -09543953 845.97735596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09543954 845.97735596 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -09543955 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09543956 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -09543957 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09543958 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -09543959 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09543960 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -09543961 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09543962 845.97741699 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -09543963 845.97747803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09543964 845.97747803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -09543965 845.97747803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09543966 845.97747803 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -09543967 845.97753906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09543968 845.97753906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -09543969 845.97753906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09543970 845.97753906 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -09543971 845.97760010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09543972 845.97760010 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -09543973 845.97766113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09543974 845.97766113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -09543975 845.97766113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09543976 845.97766113 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -09543977 845.97772217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09543978 845.97772217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -09543979 845.97772217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09543980 845.97772217 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -09543981 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09543982 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -09543983 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09543984 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -09543985 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09543986 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -09543987 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09543988 845.97778320 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -09543989 845.97784424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09543990 845.97784424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -09543991 845.97784424 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09543992 845.97790527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -09543993 845.97790527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09543994 845.97790527 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -09543995 845.97796631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09543996 845.97796631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -09543997 845.97796631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09543998 845.97796631 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -09543999 845.97802734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09544000 845.97802734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -09544001 845.97802734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09544002 845.97802734 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -09544003 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09544004 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -09544005 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09544006 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -09544007 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09544008 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -09544009 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09544010 845.97808838 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -09544011 845.97814941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09544012 845.97814941 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -09544013 845.97821045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09544014 845.97821045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -09544015 845.97821045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09544016 845.97821045 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -09544017 845.97827148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09544018 845.97827148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -09544019 845.97827148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09544020 845.97827148 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -09544021 845.97833252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09544022 845.97833252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -09544023 845.97833252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09544024 845.97833252 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -09544025 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09544026 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -09544027 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09544028 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -09544029 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09544030 845.97839355 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -09544031 845.97845459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09544032 845.97845459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -09544033 845.97845459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09544034 845.97845459 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -09544035 845.97851563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09544036 845.97851563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -09544037 845.97851563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09544038 845.97851563 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -09544039 845.97857666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09544040 845.97857666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -09544041 845.97857666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09544042 845.97857666 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -09544043 845.97863770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09544044 845.97863770 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -09544045 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09544046 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -09544047 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09544048 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -09544049 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09544050 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -09544051 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09544052 845.97869873 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -09544053 845.97875977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09544054 845.97875977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -09544055 845.97875977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09544056 845.97875977 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -09544057 845.97882080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09544058 845.97882080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -09544059 845.97882080 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09544060 845.97888184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -09544061 845.97888184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09544062 845.97888184 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -09544063 845.97894287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09544064 845.97894287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -09544065 845.97894287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09544066 845.97894287 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -09544067 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09544068 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -09544069 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09544070 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -09544071 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09544072 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -09544073 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09544074 845.97900391 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -09544075 845.97906494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09544076 845.97906494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -09544077 845.97906494 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09544078 845.97912598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -09544079 845.97912598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09544080 845.97912598 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -09544081 845.97918701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09544082 845.97918701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -09544083 845.97918701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09544084 845.97918701 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -09544085 845.97924805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09544086 845.97924805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -09544087 845.97924805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09544088 845.97924805 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -09544089 845.97930908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09544090 845.97930908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -09544091 845.97930908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09544092 845.97930908 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -09544093 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09544094 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -09544095 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09544096 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -09544097 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09544098 845.97937012 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -09544099 845.97943115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09544100 845.97943115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -09544101 845.97943115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09544102 845.97943115 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -09544103 845.97949219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09544104 845.97949219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -09544105 845.97949219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09544106 845.97949219 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -09544107 845.97955322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09544108 845.97955322 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -09544109 845.97961426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09544110 845.97961426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -09544111 845.97961426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09544112 845.97961426 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -09544113 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09544114 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -09544115 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09544116 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -09544117 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09544118 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -09544119 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09544120 845.97967529 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -09544121 845.97973633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09544122 845.97973633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -09544123 845.97973633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09544124 845.97973633 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -09544125 845.97979736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09544126 845.97979736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -09544127 845.97979736 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09544128 845.97985840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -09544129 845.97985840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09544130 845.97985840 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -09544131 845.97991943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09544132 845.97991943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -09544133 845.97991943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09544134 845.97991943 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -09544135 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09544136 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -09544137 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09544138 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -09544139 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09544140 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -09544141 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09544142 845.97998047 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -09544143 845.98004150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09544144 845.98004150 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -09544145 845.98010254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09544146 845.98010254 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -09544147 845.98016357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09544148 845.98016357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -09544149 845.98016357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09544150 845.98016357 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -09544151 845.98022461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09544152 845.98022461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -09544153 845.98022461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09544154 845.98022461 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -09544155 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09544156 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -09544157 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09544158 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -09544159 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09544160 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -09544161 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09544162 845.98028564 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -09544163 845.98034668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09544164 845.98034668 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -09544165 845.98040771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09544166 845.98040771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -09544167 845.98040771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09544168 845.98040771 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -09544169 845.98046875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09544170 845.98046875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -09544171 845.98046875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09544172 845.98046875 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -09544173 845.98052979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09544174 845.98052979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -09544175 845.98052979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09544176 845.98052979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -09544177 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09544178 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -09544179 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09544180 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -09544181 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09544182 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -09544183 845.98059082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09544184 845.98065186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -09544185 845.98065186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09544186 845.98065186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -09544187 845.98071289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09544188 845.98071289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -09544189 845.98071289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09544190 845.98071289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -09544191 845.98077393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09544192 845.98077393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -09544193 845.98077393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09544194 845.98077393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -09544195 845.98083496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09544196 845.98083496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -09544197 845.98083496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09544198 845.98083496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -09544199 845.98089600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09544200 845.98089600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -09544201 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09544202 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -09544203 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09544204 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -09544205 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09544206 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -09544207 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09544208 845.98095703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -09544209 845.98101807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09544210 845.98101807 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -09544211 845.98107910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09544212 845.98107910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -09544213 845.98107910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09544214 845.98107910 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -09544215 845.98114014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09544216 845.98114014 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -09544217 845.98120117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09544218 845.98120117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -09544219 845.98120117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09544220 845.98120117 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -09544221 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09544222 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -09544223 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09544224 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -09544225 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09544226 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -09544227 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09544228 845.98126221 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -09544229 845.98132324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09544230 845.98132324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -09544231 845.98132324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09544232 845.98132324 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -09544233 845.98138428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09544234 845.98138428 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -09544235 845.98144531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09544236 845.98144531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -09544237 845.98144531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09544238 845.98144531 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -09544239 845.98150635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09544240 845.98150635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -09544241 845.98150635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09544242 845.98150635 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -09544243 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09544244 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -09544245 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09544246 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -09544247 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09544248 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -09544249 845.98156738 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09544250 845.98162842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -09544251 845.98162842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09544252 845.98162842 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -09544253 845.98168945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09544254 845.98168945 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -09544255 845.98175049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09544256 845.98175049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -09544257 845.98175049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09544258 845.98175049 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -09544259 845.98181152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09544260 845.98181152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -09544261 845.98181152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09544262 845.98181152 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -09544263 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09544264 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -09544265 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09544266 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -09544267 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09544268 845.98187256 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -09544269 845.98193359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09544270 845.98193359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -09544271 845.98193359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09544272 845.98193359 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -09544273 845.98199463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09544274 845.98199463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -09544275 845.98199463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09544276 845.98199463 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -09544277 845.98205566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09544278 845.98205566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -09544279 845.98205566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09544280 845.98205566 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -09544281 845.98211670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09544282 845.98211670 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -09544283 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09544284 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -09544285 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09544286 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -09544287 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09544288 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -09544289 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09544290 845.98217773 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -09544291 845.98223877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09544292 845.98223877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -09544293 845.98223877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09544294 845.98223877 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -09544295 845.98229980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09544296 845.98229980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -09544297 845.98229980 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09544298 845.98236084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -09544299 845.98236084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09544300 845.98236084 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -09544301 845.98242188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09544302 845.98242188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -09544303 845.98242188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09544304 845.98242188 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -09544305 845.98248291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09544306 845.98248291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -09544307 845.98248291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09544308 845.98248291 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -09544309 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09544310 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -09544311 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09544312 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -09544313 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09544314 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -09544315 845.98254395 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09544316 845.98260498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -09544317 845.98260498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09544318 845.98260498 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -09544319 845.98266602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09544320 845.98266602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -09544321 845.98266602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09544322 845.98266602 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -09544323 845.98272705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09544324 845.98272705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -09544325 845.98272705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09544326 845.98272705 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -09544327 845.98278809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09544328 845.98278809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -09544329 845.98278809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09544330 845.98278809 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -09544331 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09544332 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -09544333 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09544334 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -09544335 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09544336 845.98284912 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -09544337 845.98291016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09544338 845.98291016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -09544339 845.98291016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09544340 845.98291016 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -09544341 845.98297119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09544342 845.98297119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -09544343 845.98297119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09544344 845.98297119 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -09544345 845.98303223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09544346 845.98303223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -09544347 845.98303223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09544348 845.98303223 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -09544349 845.98309326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09544350 845.98309326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -09544351 845.98309326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09544352 845.98309326 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -09544353 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09544354 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -09544355 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09544356 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -09544357 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09544358 845.98315430 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -09544359 845.98321533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09544360 845.98321533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -09544361 845.98321533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09544362 845.98321533 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -09544363 845.98327637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09544364 845.98327637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -09544365 845.98327637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09544366 845.98327637 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -09544367 845.98333740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09544368 845.98333740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -09544369 845.98333740 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09544370 845.98339844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -09544371 845.98339844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09544372 845.98339844 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -09544373 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09544374 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -09544375 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09544376 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -09544377 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09544378 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -09544379 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09544380 845.98345947 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -09544381 845.98352051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09544382 845.98352051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -09544383 845.98352051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09544384 845.98352051 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -09544385 845.98358154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09544386 845.98358154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -09544387 845.98358154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09544388 845.98358154 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -09544389 845.98364258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09544390 845.98364258 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -09544391 845.98370361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09544392 845.98370361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -09544393 845.98370361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09544394 845.98370361 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -09544395 845.98376465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09544396 845.98376465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -09544397 845.98376465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09544398 845.98376465 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -09544399 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09544400 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -09544401 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09544402 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -09544403 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09544404 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -09544405 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09544406 845.98382568 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -09544407 845.98388672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09544408 845.98388672 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -09544971 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -09544972 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8798 -09544973 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -09544974 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87a8 -09544975 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -09544976 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87b8 -09544977 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -09544978 845.99206543 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87c8 -09544979 845.99212646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -09544980 845.99212646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87d8 -09544981 845.99212646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -09544982 845.99212646 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87e8 -09544983 845.99218750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -09544984 845.99218750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x87f8 -09544985 845.99218750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -09544986 845.99218750 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8808 -09544987 845.99224854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -09544988 845.99224854 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8818 -09544989 845.99230957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -09544990 845.99230957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8828 -09544991 845.99230957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -09544992 845.99230957 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8838 -09544993 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -09544994 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8848 -09544995 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -09544996 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8858 -09544997 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -09544998 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8868 -09544999 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -09545000 845.99237061 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8878 -09545001 845.99243164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -09545002 845.99243164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8888 -09545003 845.99243164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -09545004 845.99243164 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x8898 -09545005 845.99249268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -09545006 845.99249268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88a8 -09545007 845.99249268 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -09545008 845.99255371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88b8 -09545009 845.99255371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -09545010 845.99255371 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88c8 -09545011 845.99261475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -09545012 845.99261475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88d8 -09545013 845.99261475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -09545014 845.99261475 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x88e8 -09548991 846.04882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10538 -09548992 846.04882813 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10538 -09548993 846.04888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10548 -09548994 846.04888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10548 -09548995 846.04888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10558 -09548996 846.04888916 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10558 -09548997 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10568 -09548998 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10568 -09548999 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10578 -09549000 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10578 -09549001 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10588 -09549002 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10588 -09549003 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10598 -09549004 846.04895020 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10598 -09549005 846.04901123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a8 -09549006 846.04901123 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105a8 -09549007 846.04907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b8 -09549008 846.04907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105b8 -09549009 846.04907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c8 -09549010 846.04907227 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105c8 -09549011 846.04913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d8 -09549012 846.04913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105d8 -09549013 846.04913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e8 -09549014 846.04913330 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105e8 -09549015 846.04919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f8 -09549016 846.04919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x105f8 -09549017 846.04919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10608 -09549018 846.04919434 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10608 -09549019 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10618 -09549020 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10618 -09549021 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10628 -09549022 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10628 -09549023 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10638 -09549024 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10638 -09549025 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10648 -09549026 846.04925537 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10648 -09549027 846.04931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10658 -09549028 846.04931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10658 -09549029 846.04931641 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10668 -09549030 846.04937744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10668 -09549031 846.04937744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10678 -09549032 846.04937744 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10678 -09549033 846.04943848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10688 -09549034 846.04943848 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x10688 -09551449 846.08337402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15208 -09551450 846.08337402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15208 -09551451 846.08337402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15218 -09551452 846.08337402 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15218 -09551453 846.08343506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15228 -09551454 846.08343506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15228 -09551455 846.08343506 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -09551456 846.08349609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -09551457 846.08349609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -09551458 846.08349609 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -09551459 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -09551460 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -09551461 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -09551462 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -09551463 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -09551464 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -09551465 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -09551466 846.08355713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -09551467 846.08361816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -09551468 846.08361816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -09551469 846.08361816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -09551470 846.08361816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -09551471 846.08367920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -09551472 846.08367920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -09551473 846.08367920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -09551474 846.08367920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -09551475 846.08374023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -09551476 846.08374023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -09551477 846.08374023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -09551478 846.08380127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -09551479 846.08380127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -09551480 846.08380127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -09551481 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -09551482 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -09551483 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -09551484 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -09551485 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -09551486 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -09551487 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -09551488 846.08386230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -09551489 846.08392334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -09551490 846.08392334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -09551491 846.08392334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -09551492 846.08392334 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -09553993 846.11901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -09553994 846.11901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a188 -09553995 846.11901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -09553996 846.11901855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a198 -09553997 846.11907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -09553998 846.11907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1a8 -09553999 846.11907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -09554000 846.11907959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1b8 -09554001 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -09554002 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1c8 -09554003 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -09554004 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1d8 -09554005 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e8 -09554006 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1e8 -09554007 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f8 -09554008 846.11914063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a1f8 -09554009 846.11920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a208 -09554010 846.11920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a208 -09554011 846.11920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a218 -09554012 846.11920166 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a218 -09554013 846.11926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a228 -09554014 846.11926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a228 -09554015 846.11926270 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a238 -09554016 846.11932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a238 -09554017 846.11932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a248 -09554018 846.11932373 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a248 -09554019 846.11938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a258 -09554020 846.11938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a258 -09554021 846.11938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a268 -09554022 846.11938477 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a268 -09554023 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a278 -09554024 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a278 -09554025 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a288 -09554026 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a288 -09554027 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a298 -09554028 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a298 -09554029 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a8 -09554030 846.11944580 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2a8 -09554031 846.11950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b8 -09554032 846.11950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2b8 -09554033 846.11950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c8 -09554034 846.11950684 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2c8 -09554035 846.11956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d8 -09554036 846.11956787 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a2d8 -09556155 846.14904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -09556156 846.14904785 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e518 -09556157 846.14910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -09556158 846.14910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e528 -09556159 846.14910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -09556160 846.14910889 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e538 -09556161 846.14916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -09556162 846.14916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e548 -09556163 846.14916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -09556164 846.14916992 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e558 -09556165 846.14923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -09556166 846.14923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e568 -09556167 846.14923096 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -09556168 846.14929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e578 -09556169 846.14929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -09556170 846.14929199 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e588 -09556171 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -09556172 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e598 -09556173 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -09556174 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5a8 -09556175 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -09556176 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5b8 -09556177 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -09556178 846.14935303 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5c8 -09556179 846.14941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -09556180 846.14941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5d8 -09556181 846.14941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -09556182 846.14941406 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5e8 -09556183 846.14947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -09556184 846.14947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e5f8 -09556185 846.14947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e608 -09556186 846.14947510 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e608 -09556187 846.14953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e618 -09556188 846.14953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e618 -09556189 846.14953613 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e628 -09556190 846.14959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e628 -09556191 846.14959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e638 -09556192 846.14959717 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e638 -09556193 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e648 -09556194 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e648 -09556195 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e658 -09556196 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e658 -09556197 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e668 -09556198 846.14965820 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e668 -09558437 846.18103027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c68 -09558438 846.18103027 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c68 -09558439 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c78 -09558440 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c78 -09558441 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c88 -09558442 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c88 -09558443 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c98 -09558444 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c98 -09558445 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca8 -09558446 846.18109131 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ca8 -09558447 846.18115234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb8 -09558448 846.18115234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cb8 -09558449 846.18115234 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc8 -09558450 846.18121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cc8 -09558451 846.18121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd8 -09558452 846.18121338 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cd8 -09558453 846.18127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce8 -09558454 846.18127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22ce8 -09558455 846.18127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf8 -09558456 846.18127441 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22cf8 -09558457 846.18133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d08 -09558458 846.18133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d08 -09558459 846.18133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d18 -09558460 846.18133545 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d18 -09558461 846.18139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d28 -09558462 846.18139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d28 -09558463 846.18139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d38 -09558464 846.18139648 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d38 -09558465 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d48 -09558466 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d48 -09558467 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d58 -09558468 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d58 -09558469 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d68 -09558470 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d68 -09558471 846.18145752 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d78 -09558472 846.18151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d78 -09558473 846.18151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d88 -09558474 846.18151855 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d88 -09558475 846.18157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d98 -09558476 846.18157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d98 -09558477 846.18157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da8 -09558478 846.18157959 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da8 -09558479 846.18164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db8 -09558480 846.18164063 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db8 -09561247 846.22094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28438 -09561248 846.22094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28438 -09561249 846.22094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28448 -09561250 846.22094727 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28448 -09561251 846.22100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28458 -09561252 846.22100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28458 -09561253 846.22100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28468 -09561254 846.22100830 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28468 -09561255 846.22106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28478 -09561256 846.22106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28478 -09561257 846.22106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28488 -09561258 846.22106934 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28488 -09561259 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28498 -09561260 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28498 -09561261 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a8 -09561262 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284a8 -09561263 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b8 -09561264 846.22113037 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284b8 -09561265 846.22119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c8 -09561266 846.22119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284c8 -09561267 846.22119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d8 -09561268 846.22119141 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284d8 -09561269 846.22125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e8 -09561270 846.22125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284e8 -09561271 846.22125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f8 -09561272 846.22125244 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x284f8 -09561273 846.22131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28508 -09561274 846.22131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28508 -09561275 846.22131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28518 -09561276 846.22131348 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28518 -09561277 846.22137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28528 -09561278 846.22137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28528 -09561279 846.22137451 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28538 -09561280 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28538 -09561281 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28548 -09561282 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28548 -09561283 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28558 -09561284 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28558 -09561285 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28568 -09561286 846.22143555 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28568 -09561287 846.22149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28578 -09561288 846.22149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28578 -09561289 846.22149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28588 -09561290 846.22149658 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x28588 -09576231 846.43298340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -09576232 846.43298340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45868 -09576233 846.43298340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45878 -09576234 846.43298340 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45878 -09576235 846.43304443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45888 -09576236 846.43304443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45888 -09576237 846.43304443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45898 -09576238 846.43304443 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45898 -09576239 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a8 -09576240 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458a8 -09576241 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b8 -09576242 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458b8 -09576243 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c8 -09576244 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458c8 -09576245 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d8 -09576246 846.43310547 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458d8 -09576247 846.43316650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e8 -09576248 846.43316650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458e8 -09576249 846.43316650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f8 -09576250 846.43316650 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x458f8 -09576251 846.43322754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -09576252 846.43322754 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45908 -09576253 846.43328857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -09576254 846.43328857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45918 -09576255 846.43328857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45928 -09576256 846.43328857 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45928 -09576257 846.43334961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45938 -09576258 846.43334961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45938 -09576259 846.43334961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45948 -09576260 846.43334961 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45948 -09576261 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45958 -09576262 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45958 -09576263 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45968 -09576264 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45968 -09576265 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45978 -09576266 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45978 -09576267 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -09576268 846.43341064 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45988 -09576269 846.43347168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -09576270 846.43347168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x45998 -09576271 846.43347168 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a8 -09576272 846.43353271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x459a8 -09576273 846.43353271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b8 -09576274 846.43353271 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x459b8 -09580323 846.49096680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09580324 846.49096680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d848 -09580325 846.49096680 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -09580326 846.49102783 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d858 -09580327 846.49102783 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -09580328 846.49102783 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d868 -09580329 846.49108887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -09580330 846.49108887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d878 -09580331 846.49108887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -09580332 846.49108887 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d888 -09580333 846.49114990 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d898 -09580334 846.49114990 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d898 -09580335 846.49114990 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a8 -09580336 846.49114990 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8a8 -09580337 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b8 -09580338 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8b8 -09580339 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c8 -09580340 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8c8 -09580341 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d8 -09580342 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8d8 -09580343 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -09580344 846.49121094 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8e8 -09580345 846.49127197 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -09580346 846.49127197 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d8f8 -09580347 846.49127197 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -09580348 846.49133301 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d908 -09580349 846.49133301 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -09580350 846.49133301 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d918 -09580351 846.49139404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -09580352 846.49139404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d928 -09580353 846.49139404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -09580354 846.49139404 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d938 -09580355 846.49145508 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -09580356 846.49145508 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d948 -09580357 846.49145508 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -09580358 846.49145508 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d958 -09580359 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -09580360 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d968 -09580361 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -09580362 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d978 -09580363 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -09580364 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d988 -09580365 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -09580366 846.49151611 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d998 -09583041 847.77734375 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -09583042 847.79888916 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09583043 847.79888916 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09583044 848.34844971 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09583045 848.34851074 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09583046 848.34851074 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -09583047 848.34851074 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -09583048 848.34869385 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09583049 848.34869385 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09583050 848.34869385 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -09583051 848.34869385 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -09583052 848.75823975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09583053 848.75823975 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -09583054 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09583055 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -09583056 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09583057 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -09583058 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09583059 848.75830078 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -09583060 848.75836182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09583061 848.75836182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -09583062 848.75836182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09583063 848.75836182 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -09583064 848.75842285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09583065 848.75842285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -09583066 848.75842285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09583067 848.75842285 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -09583068 848.75848389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09583069 848.75848389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -09583070 848.75848389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09583071 848.75848389 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -09583072 848.75854492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09583073 848.75854492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -09583074 848.75854492 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09583075 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -09583076 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09583077 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -09583078 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09583079 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -09583080 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09583081 848.75860596 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -09583082 848.75866699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09583083 848.75866699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -09583084 848.75866699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09583085 848.75866699 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -09583086 848.75872803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09583087 848.75872803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -09583088 848.75872803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09583089 848.75872803 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -09583090 848.75878906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09583091 848.75878906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -09583092 848.75878906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09583093 848.75878906 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -09583094 848.75885010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09583095 848.75885010 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -09583096 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09583097 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -09583098 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09583099 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -09583100 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09583101 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -09583102 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09583103 848.75891113 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -09583104 848.75897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09583105 848.75897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -09583106 848.75897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09583107 848.75897217 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -09583108 848.75903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09583109 848.75903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -09583110 848.75903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09583111 848.75903320 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -09583112 848.75909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09583113 848.75909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -09583114 848.75909424 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09583115 848.75915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -09583116 848.75915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09583117 848.75915527 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -09583118 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09583119 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -09583120 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09583121 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -09583122 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09583123 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -09583124 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09583125 848.75921631 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -09583126 848.75927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09583127 848.75927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -09583128 848.75927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09583129 848.75927734 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -09583130 848.75933838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09583131 848.75933838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -09583132 848.75933838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09583133 848.75933838 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -09583134 848.75939941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09583135 848.75939941 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -09583136 848.75946045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09583137 848.75946045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -09583138 848.75946045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09583139 848.75946045 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -09583140 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09583141 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -09583142 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09583143 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -09583144 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09583145 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -09583146 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09583147 848.75952148 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -09583148 848.75958252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09583149 848.75958252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -09583150 848.75958252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09583151 848.75958252 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -09583152 848.75964355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09583153 848.75964355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -09583154 848.75964355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09583155 848.75964355 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -09583156 848.75970459 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09583157 848.75970459 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -09583158 848.75976563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09583159 848.75976563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -09583160 848.75976563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09583161 848.75976563 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -09583162 848.75982666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09583163 848.75982666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -09583164 848.75982666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09583165 848.75982666 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -09583166 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09583167 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -09583168 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09583169 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -09583170 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09583171 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -09583172 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09583173 848.75988770 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -09583174 848.75994873 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09583175 848.75994873 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -09583176 848.76000977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09583177 848.76000977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -09583178 848.76000977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09583179 848.76000977 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -09583180 848.76007080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09583181 848.76007080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -09583182 848.76007080 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09583183 848.76013184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -09583184 848.76013184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09583185 848.76013184 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -09583186 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09583187 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -09583188 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09583189 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -09583190 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09583191 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -09583192 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09583193 848.76019287 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -09583194 848.76025391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09583195 848.76025391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -09583196 848.76025391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09583197 848.76025391 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -09583198 848.76031494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09583199 848.76031494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -09583200 848.76031494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09583201 848.76031494 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -09583202 848.76037598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09583203 848.76037598 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -09583204 848.76043701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09583205 848.76043701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -09583206 848.76043701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09583207 848.76043701 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -09583208 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09583209 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -09583210 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09583211 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -09583212 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09583213 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -09583214 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09583215 848.76049805 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -09583216 848.76055908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09583217 848.76055908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -09583218 848.76055908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09583219 848.76055908 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -09583220 848.76062012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09583221 848.76062012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -09583222 848.76062012 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09583223 848.76068115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -09583224 848.76068115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09583225 848.76068115 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -09583226 848.76074219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09583227 848.76074219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -09583228 848.76074219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09583229 848.76074219 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -09583230 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09583231 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -09583232 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09583233 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -09583234 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09583235 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -09583236 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09583237 848.76080322 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -09583238 848.76086426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09583239 848.76086426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -09583240 848.76086426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09583241 848.76086426 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -09583242 848.76092529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09583243 848.76092529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -09583244 848.76092529 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09583245 848.76098633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -09583246 848.76098633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09583247 848.76098633 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -09583248 848.76104736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09583249 848.76104736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -09583250 848.76104736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09583251 848.76104736 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -09583252 848.76110840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09583253 848.76110840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -09583254 848.76110840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09583255 848.76110840 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -09583256 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09583257 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -09583258 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09583259 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -09583260 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09583261 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -09583262 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09583263 848.76116943 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -09583264 848.76123047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09583265 848.76123047 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -09583266 848.76129150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09583267 848.76129150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -09583268 848.76129150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09583269 848.76129150 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -09583270 848.76135254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09583271 848.76135254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -09583272 848.76135254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09583273 848.76135254 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -09583274 848.76141357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09583275 848.76141357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -09583276 848.76141357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09583277 848.76141357 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -09583278 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09583279 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -09583280 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09583281 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -09583282 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09583283 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -09583284 848.76147461 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09583285 848.76153564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -09583286 848.76153564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09583287 848.76153564 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -09583288 848.76159668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09583289 848.76159668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -09583290 848.76159668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09583291 848.76159668 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -09583292 848.76165771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09583293 848.76165771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -09583294 848.76165771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09583295 848.76165771 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -09583296 848.76171875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09583297 848.76171875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -09583298 848.76171875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09583299 848.76171875 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -09583300 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09583301 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -09583302 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09583303 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -09583304 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09583305 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -09583306 848.76177979 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09583307 848.76184082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -09583308 848.76184082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09583309 848.76184082 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -09583310 848.76190186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09583311 848.76190186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -09583312 848.76190186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09583313 848.76190186 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -09583314 848.76196289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09583315 848.76196289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -09583316 848.76196289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09583317 848.76196289 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -09583318 848.76202393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09583319 848.76202393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -09583320 848.76202393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09583321 848.76202393 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -09583322 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09583323 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -09583324 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09583325 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -09583326 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09583327 848.76208496 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -09583328 848.76214600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09583329 848.76214600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -09583330 848.76214600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09583331 848.76214600 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -09583332 848.76220703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09583333 848.76220703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -09583334 848.76220703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09583335 848.76220703 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -09583336 848.76226807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09583337 848.76226807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -09583338 848.76226807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09583339 848.76226807 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -09583340 848.76232910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09583341 848.76232910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -09583342 848.76232910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09583343 848.76232910 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -09583344 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09583345 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -09583346 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09583347 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -09583348 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09583349 848.76239014 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -09583350 848.76245117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09583351 848.76245117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -09583352 848.76245117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09583353 848.76245117 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -09583354 848.76251221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09583355 848.76251221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -09583356 848.76251221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09583357 848.76251221 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -09583358 848.76257324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09583359 848.76257324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -09583360 848.76257324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09583361 848.76257324 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -09583362 848.76263428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09583363 848.76263428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -09583364 848.76263428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09583365 848.76263428 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -09583366 848.76269531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09583367 848.76269531 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -09583368 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09583369 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -09583370 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09583371 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -09583372 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09583373 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -09583374 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09583375 848.76275635 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -09583376 848.76281738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09583377 848.76281738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -09583378 848.76281738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09583379 848.76281738 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -09583380 848.76287842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09583381 848.76287842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -09583382 848.76287842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09583383 848.76287842 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -09583384 848.76293945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09583385 848.76293945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -09583386 848.76293945 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09583387 848.76300049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -09583388 848.76300049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09583389 848.76300049 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -09583390 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09583391 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -09583392 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09583393 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -09583394 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09583395 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -09583396 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09583397 848.76306152 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -09583398 848.76312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09583399 848.76312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -09583400 848.76312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09583401 848.76312256 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -09583402 848.76318359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09583403 848.76318359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -09583404 848.76318359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09583405 848.76318359 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -09583406 848.76324463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09583407 848.76324463 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -09583408 848.76330566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09583409 848.76330566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -09583410 848.76330566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09583411 848.76330566 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -09583412 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09583413 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -09583414 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09583415 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -09583416 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09583417 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -09583418 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09583419 848.76336670 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -09583420 848.76342773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09583421 848.76342773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -09583422 848.76342773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09583423 848.76342773 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -09583424 848.76348877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09583425 848.76348877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -09583426 848.76348877 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09583427 848.76354980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -09583428 848.76354980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09583429 848.76354980 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -09583430 848.76361084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09583431 848.76361084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -09583432 848.76361084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09583433 848.76361084 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -09583434 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09583435 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -09583436 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09583437 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -09583438 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09583439 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -09583440 848.76367188 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09583441 848.76373291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -09583442 848.76373291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09583443 848.76373291 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -09583444 848.76379395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09583445 848.76379395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -09583446 848.76379395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09583447 848.76379395 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -09583448 848.76385498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09583449 848.76385498 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -09583450 848.76391602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09583451 848.76391602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -09583452 848.76391602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09583453 848.76391602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -09583454 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09583455 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -09583456 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09583457 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -09583458 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09583459 848.76397705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -09583460 848.76403809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09583461 848.76403809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -09583462 848.76403809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09583463 848.76403809 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -09583464 848.76409912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09583465 848.76409912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -09583466 848.76409912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09583467 848.76409912 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -09583468 848.76416016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09583469 848.76416016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -09583470 848.76416016 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09583471 848.76422119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -09583472 848.76422119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09583473 848.76422119 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -09583474 848.76428223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09583475 848.76428223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -09583476 848.76428223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09583477 848.76428223 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -09583478 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09583479 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -09583480 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09583481 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -09583482 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09583483 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -09583484 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09583485 848.76434326 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -09583486 848.76440430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09583487 848.76440430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -09583488 848.76440430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09583489 848.76440430 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -09583490 848.76446533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09583491 848.76446533 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -09583492 848.76452637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09583493 848.76452637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -09583494 848.76452637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09583495 848.76452637 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -09583496 848.76458740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09583497 848.76458740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -09583498 848.76458740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09583499 848.76458740 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -09583500 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09583501 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -09583502 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09583503 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -09583504 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09583505 848.76464844 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -09583506 848.76470947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09583507 848.76470947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -09583508 848.76470947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09583509 848.76470947 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -09583510 848.76477051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09583511 848.76477051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -09583512 848.76477051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09583513 848.76477051 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -09583514 848.76483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09583515 848.76483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -09583516 848.76483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09583517 848.76483154 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -09583518 848.76489258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09583519 848.76489258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -09583520 848.76489258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09583521 848.76489258 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -09583522 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09583523 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -09583524 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09583525 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -09583526 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09583527 848.76495361 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -09583528 848.76501465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09583529 848.76501465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -09583530 848.76501465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09583531 848.76501465 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -09583532 848.76507568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09583533 848.76507568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -09583534 848.76507568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09583535 848.76507568 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -09583536 848.76513672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09583537 848.76513672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -09583538 848.76513672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09583539 848.76513672 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -09583540 848.76519775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09583541 848.76519775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -09583542 848.76519775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09583543 848.76519775 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -09583544 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09583545 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -09583546 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09583547 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -09583548 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09583549 848.76525879 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -09583550 848.76531982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09583551 848.76531982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -09583552 848.76531982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09583553 848.76531982 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -09583554 848.76538086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09583555 848.76538086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -09583556 848.76538086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09583557 848.76538086 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -09583558 848.76544189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09583559 848.76544189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -09583560 848.76544189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09583561 848.76544189 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -09583562 848.76550293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09583563 848.76550293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -09583564 848.76550293 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09583565 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -09583566 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09583567 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -09583568 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09583569 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -09583570 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09583571 848.76556396 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -09583572 848.76562500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09583573 848.76562500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -09583574 848.76562500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09583575 848.76562500 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -09583576 848.76568604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09583577 848.76568604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -09583578 848.76568604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09583579 848.76568604 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -09583580 848.76574707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09583581 848.76574707 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -09583582 848.76580811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09583583 848.76580811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -09583584 848.76580811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09583585 848.76580811 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -09583586 848.76586914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09583587 848.76586914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -09583588 848.76586914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09583589 848.76586914 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -09583590 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09583591 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -09583592 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09583593 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -09583594 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09583595 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -09583596 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09583597 848.76593018 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -09583598 848.76599121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09583599 848.76599121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -09583600 848.76599121 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09583601 848.76605225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -09583602 848.76605225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09583603 848.76605225 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -09583604 848.76611328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09583605 848.76611328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -09583606 848.76611328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09583607 848.76611328 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -09583608 848.76617432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09583609 848.76617432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -09583610 848.76617432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09583611 848.76617432 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -09583612 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09583613 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -09583614 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09583615 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -09583616 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09583617 848.76623535 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -09583618 848.76629639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09583619 848.76629639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -09583620 848.76629639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09583621 848.76629639 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -09583622 848.76635742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09583623 848.76635742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -09583624 848.76635742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09583625 848.76635742 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -09583626 848.76641846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09583627 848.76641846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -09583628 848.76641846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09583629 848.76641846 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -09583630 848.76647949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09583631 848.76647949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -09583632 848.76647949 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09583633 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -09583634 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09583635 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -09583636 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09583637 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -09583638 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09583639 848.76654053 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -09583640 848.76660156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09583641 848.76660156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -09583642 848.76660156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09583643 848.76660156 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -09583644 848.76666260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09583645 848.76666260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -09583646 848.76666260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09583647 848.76666260 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -09583648 848.76672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09583649 848.76672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -09583650 848.76672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09583651 848.76672363 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -09583652 848.76678467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09583653 848.76678467 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -09583654 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09583655 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -09583656 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09583657 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -09583658 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09583659 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -09583660 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09583661 848.76684570 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -09583662 848.76690674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09583663 848.76690674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -09583664 848.76690674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09583665 848.76690674 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -09583666 848.76696777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09583667 848.76696777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -09583668 848.76696777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09583669 848.76696777 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -09583670 848.76702881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09583671 848.76702881 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -09583672 848.76708984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09583673 848.76708984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -09583674 848.76708984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09583675 848.76708984 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -09583676 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09583677 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -09583678 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09583679 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -09583680 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09583681 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -09583682 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09583683 848.76715088 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -09583684 848.76721191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09583685 848.76721191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -09583686 848.76721191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09583687 848.76721191 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -09583688 848.76727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09583689 848.76727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -09583690 848.76727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09583691 848.76727295 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -09583692 848.76733398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09583693 848.76733398 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -09583694 848.76739502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09583695 848.76739502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -09583696 848.76739502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09583697 848.76739502 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -09583698 848.76745605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09583699 848.76745605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -09583700 848.76745605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09583701 848.76745605 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -09583702 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09583703 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -09583704 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09583705 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -09583706 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09583707 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -09583708 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09583709 848.76751709 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -09583710 848.76757813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09583711 848.76757813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -09583712 848.76757813 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09583713 848.76763916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -09583714 848.76763916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09583715 848.76763916 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -09583716 848.76770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09583717 848.76770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -09583718 848.76770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09583719 848.76770020 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -09583720 848.76776123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09583721 848.76776123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -09583722 848.76776123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09583723 848.76776123 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -09583724 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09583725 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -09583726 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09583727 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -09583728 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09583729 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -09583730 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09583731 848.76782227 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -09583732 848.76788330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09583733 848.76788330 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -09583734 848.76794434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09583735 848.76794434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -09583736 848.76794434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09583737 848.76794434 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -09583738 848.76800537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09583739 848.76800537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -09583740 848.76800537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09583741 848.76800537 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -09583742 848.76806641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09583743 848.76806641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -09583744 848.76806641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09583745 848.76806641 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -09583746 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09583747 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -09583748 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09583749 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -09583750 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09583751 848.76812744 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -09583752 848.76818848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09583753 848.76818848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -09583754 848.76818848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09583755 848.76818848 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -09583756 848.76824951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09583757 848.76824951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -09583758 848.76824951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09583759 848.76824951 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -09583760 848.76831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09583761 848.76831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -09583762 848.76831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09583763 848.76831055 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -09583764 848.76837158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09583765 848.76837158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -09583766 848.76837158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09583767 848.76837158 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -09583768 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09583769 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -09583770 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09583771 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -09583772 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09583773 848.76843262 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -09583774 848.76849365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09583775 848.76849365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -09583776 848.76849365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09583777 848.76849365 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -09583778 848.76855469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09583779 848.76855469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -09583780 848.76855469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09583781 848.76855469 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -09583782 848.76861572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09583783 848.76861572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -09583784 848.76861572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09583785 848.76861572 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -09583786 848.76867676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09583787 848.76867676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -09583788 848.76867676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09583789 848.76867676 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -09583790 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09583791 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -09583792 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09583793 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -09583794 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09583795 848.76873779 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -09583796 848.76879883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09583797 848.76879883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -09583798 848.76879883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09583799 848.76879883 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -09583800 848.76885986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09583801 848.76885986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -09583802 848.76885986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09583803 848.76885986 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -09583804 848.76892090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09583805 848.76892090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -09583806 848.76892090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09583807 848.76892090 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -09583808 848.76898193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09583809 848.76898193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -09583810 848.76898193 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09583811 848.76904297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -09583812 848.76904297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09583813 848.76904297 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -09583814 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09583815 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -09583816 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09583817 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -09583818 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09583819 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -09583820 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09583821 848.76910400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -09583822 848.76916504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09583823 848.76916504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -09583824 848.76916504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09583825 848.76916504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -09583826 848.76922607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09583827 848.76922607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -09583828 848.76922607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09583829 848.76922607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -09583830 848.76928711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09583831 848.76928711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -09583832 848.76934814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09583833 848.76934814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -09583834 848.76934814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09583835 848.76934814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -09583836 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09583837 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -09583838 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09583839 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -09583840 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09583841 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -09583842 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09583843 848.76940918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -09583844 848.76947021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09583845 848.76947021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -09583846 848.76947021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09583847 848.76947021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -09583848 848.76953125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09583849 848.76953125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -09583850 848.76959229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09583851 848.76959229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -09583852 848.76959229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09583853 848.76959229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -09583854 848.76965332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09583855 848.76965332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -09583856 848.76965332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09583857 848.76965332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -09583858 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09583859 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -09583860 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09583861 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -09583862 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09583863 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -09583864 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09583865 848.76971436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -09583866 848.76977539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09583867 848.76977539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -09583868 848.76977539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09583869 848.76983643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -09583870 848.76983643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09583871 848.76983643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -09583872 848.76989746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09583873 848.76989746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -09583874 848.76989746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09583875 848.76989746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -09583876 848.76995850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09583877 848.76995850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -09583878 848.76995850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09583879 848.76995850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -09583880 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09583881 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -09583882 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09583883 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -09583884 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09583885 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -09583886 848.77001953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09583887 848.77008057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -09583888 848.77008057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09583889 848.77008057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -09583890 848.77014160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09583891 848.77014160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -09583892 848.77014160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09583893 848.77014160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -09583894 848.77020264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09583895 848.77020264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -09583896 848.77020264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09583897 848.77020264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -09583898 848.77026367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09583899 848.77026367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -09583900 848.77026367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09583901 848.77026367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -09583902 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09583903 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -09583904 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09583905 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -09583906 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09583907 848.77032471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -09583908 848.77038574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09583909 848.77038574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -09583910 848.77038574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09583911 848.77038574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -09583912 848.77044678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09583913 848.77044678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -09583914 848.77044678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09583915 848.77044678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -09583916 848.77050781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09583917 848.77050781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -09583918 848.77050781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09583919 848.77050781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -09583920 848.77056885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09583921 848.77056885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -09583922 848.77056885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09583923 848.77056885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -09583924 848.77062988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09583925 848.77062988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -09583926 848.77062988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09583927 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -09583928 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09583929 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -09583930 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09583931 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -09583932 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09583933 848.77069092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -09583934 848.77075195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09583935 848.77075195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -09583936 848.77075195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09583937 848.77075195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -09583938 848.77081299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09583939 848.77081299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -09583940 848.77081299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09583941 848.77081299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -09583942 848.77087402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09583943 848.77087402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -09583944 848.77087402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09583945 848.77087402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -09583946 848.77093506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09583947 848.77093506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -09583948 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09583949 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -09583950 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09583951 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -09583952 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09583953 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -09583954 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09583955 848.77099609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -09583956 848.77105713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09583957 848.77105713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -09583958 848.77105713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09583959 848.77105713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -09583960 848.77111816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09583961 848.77111816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -09583962 848.77111816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09583963 848.77111816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -09583964 848.77117920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09583965 848.77117920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -09583966 848.77117920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09583967 848.77124023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -09583968 848.77124023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09583969 848.77124023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -09583970 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09583971 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -09583972 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09583973 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -09583974 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09583975 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -09583976 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09583977 848.77130127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -09583978 848.77136230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09583979 848.77136230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -09583980 848.77136230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09583981 848.77136230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -09583982 848.77142334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09583983 848.77142334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -09583984 848.77142334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09583985 848.77148438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -09583986 848.77148438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09583987 848.77148438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -09583988 848.77154541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09583989 848.77154541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -09583990 848.77154541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09583991 848.77154541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -09583992 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09583993 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -09583994 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09583995 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -09583996 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09583997 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -09583998 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09583999 848.77160645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -09584000 848.77166748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09584001 848.77166748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -09584002 848.77166748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09584003 848.77166748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -09584004 848.77172852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09584005 848.77172852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -09584006 848.77178955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09584007 848.77178955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -09584008 848.77178955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09584009 848.77178955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -09584010 848.77185059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09584011 848.77185059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -09584012 848.77185059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09584013 848.77185059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -09584014 848.77191162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09584015 848.77191162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -09584016 848.77191162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09584017 848.77191162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -09584018 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09584019 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -09584020 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09584021 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -09584022 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09584023 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -09584024 848.77197266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09584025 848.77203369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -09584026 848.77203369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09584027 848.77203369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -09584028 848.77209473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09584029 848.77209473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -09584030 848.77209473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09584031 848.77209473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -09584032 848.77215576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09584033 848.77215576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -09584034 848.77215576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09584035 848.77215576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -09584036 848.77221680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09584037 848.77221680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -09584038 848.77221680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09584039 848.77221680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -09584040 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09584041 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -09584042 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09584043 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -09584044 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09584045 848.77227783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -09584046 848.77233887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09584047 848.77233887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -09584048 848.77233887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09584049 848.77233887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -09584050 848.77239990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09584051 848.77239990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -09584052 848.77239990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09584053 848.77239990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -09584054 848.77246094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09584055 848.77246094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -09584056 848.77246094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09584057 848.77246094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -09584058 848.77252197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09584059 848.77252197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -09584060 848.77252197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09584061 848.77252197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -09584062 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09584063 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -09584064 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09584065 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -09584066 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09584067 848.77258301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -09584068 848.77264404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09584069 848.77264404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -09584070 848.77264404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09584071 848.77264404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -09584072 848.77270508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09584073 848.77270508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -09584074 848.77270508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09584075 848.77270508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -09584076 848.77276611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09584077 848.77276611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -09584078 848.77276611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09584079 848.77276611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -09584080 848.77282715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09584081 848.77282715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -09584082 848.77282715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09584083 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -09584084 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09584085 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -09584086 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09584087 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -09584088 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09584089 848.77288818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -09584090 848.77294922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09584091 848.77294922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -09584092 848.77294922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09584093 848.77294922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -09584094 848.77301025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09584095 848.77301025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -09584096 848.77301025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09584097 848.77301025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -09584098 848.77307129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09584099 848.77307129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -09584100 848.77307129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09584101 848.77307129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -09584102 848.77313232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09584103 848.77313232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -09584104 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09584105 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -09584106 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09584107 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -09584108 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09584109 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -09584110 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09584111 848.77319336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -09584112 848.77325439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09584113 848.77325439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -09584114 848.77325439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09584115 848.77325439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -09584116 848.77331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09584117 848.77331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -09584118 848.77331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09584119 848.77331543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -09584120 848.77337646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09584121 848.77337646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -09584122 848.77337646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09584123 848.77343750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -09584124 848.77343750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09584125 848.77343750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -09584126 848.77349854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09584127 848.77349854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -09584128 848.77349854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09584129 848.77349854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -09584130 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09584131 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -09584132 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09584133 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -09584134 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09584135 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -09584136 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09584137 848.77355957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -09584138 848.77362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09584139 848.77362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -09584140 848.77362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09584141 848.77362061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -09584142 848.77368164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09584143 848.77368164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -09584144 848.77368164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09584145 848.77368164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -09584146 848.77374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09584147 848.77374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -09584148 848.77374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09584149 848.77374268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -09584150 848.77380371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -09584151 848.77380371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -ore number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08063151 697.50225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08063152 697.50225830 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08063153 697.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08063154 697.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08063155 697.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08063156 697.50231934 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08063157 697.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08063158 697.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08063159 697.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08063160 697.50238037 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08063161 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08063162 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08063163 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08063164 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08063165 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08063166 697.50244141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08063167 697.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08063168 697.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08063169 697.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08063170 697.50250244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08063171 697.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08063172 697.50256348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08063173 697.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08063174 697.50262451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08063175 697.50268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08063176 697.50268555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08063177 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08063178 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08063179 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08063180 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08063181 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08063182 697.50274658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08063183 697.50280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08063184 697.50280762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08063185 697.50286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08063186 697.50286865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08063187 697.50292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08063188 697.50292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08063189 697.50292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08063190 697.50292969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08063191 697.50299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08063192 697.50299072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08063193 697.50305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08063194 697.50305176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08064091 697.51672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08064092 697.51672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08064093 697.51672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08064094 697.51672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08064095 697.51678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08064096 697.51678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08064097 697.51678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08064098 697.51678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08064099 697.51684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08064100 697.51684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08064101 697.51684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08064102 697.51684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08064103 697.51690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08064104 697.51690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08064105 697.51690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08064106 697.51696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08064107 697.51696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08064108 697.51696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08064109 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08064110 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08064111 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08064112 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08064113 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08064114 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08064115 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08064116 697.51702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08064117 697.51708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08064118 697.51708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08064119 697.51708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08064120 697.51708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08064121 697.51715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08064122 697.51715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08064123 697.51715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08064124 697.51715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08064125 697.51721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08064126 697.51721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08064127 697.51721191 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08064128 697.51727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08064129 697.51727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08064130 697.51727295 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08064131 697.51733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08064132 697.51733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08064133 697.51733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08064134 697.51733398 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08064573 697.52465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08064574 697.52465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08064575 697.52465820 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08064576 697.52471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08064577 697.52471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08064578 697.52471924 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08064579 697.52478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08064580 697.52478027 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08064581 697.52484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08064582 697.52484131 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08064583 697.52490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08064584 697.52490234 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08064585 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08064586 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08064587 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08064588 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08064589 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08064590 697.52496338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08064591 697.52502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08064592 697.52502441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08064593 697.52508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08064594 697.52508545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08064595 697.52514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08064596 697.52514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08064597 697.52514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08064598 697.52514648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08064599 697.52520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08064600 697.52520752 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08064601 697.52526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08064602 697.52526855 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08064603 697.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08064604 697.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08064605 697.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08064606 697.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08064607 697.52532959 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08064608 697.52539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08064609 697.52539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08064610 697.52539063 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08064611 697.52545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08064612 697.52545166 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08064613 697.52551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08064614 697.52551270 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08064615 697.52557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08064616 697.52557373 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08064705 697.52752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08064706 697.52752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08064707 697.52752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08064708 697.52752686 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08064709 697.52758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08064710 697.52758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08064711 697.52758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08064712 697.52758789 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08064713 697.52764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08064714 697.52764893 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08064715 697.52770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08064716 697.52770996 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08064717 697.52777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08064718 697.52777100 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08064719 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08064720 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08064721 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08064722 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08064723 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08064724 697.52783203 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08064725 697.52789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08064726 697.52789307 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08064727 697.52795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08064728 697.52795410 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08064729 697.52801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08064730 697.52801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08064731 697.52801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08064732 697.52801514 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08064733 697.52807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08064734 697.52807617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08064735 697.52813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08064736 697.52813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08064737 697.52813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08064738 697.52813721 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08064739 697.52819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08064740 697.52819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08064741 697.52819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08064742 697.52819824 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08064743 697.52825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08064744 697.52825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08064745 697.52832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08064746 697.52832031 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08064747 697.52838135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08064748 697.52838135 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08067085 697.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -08067086 697.56494141 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb738 -08067087 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -08067088 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb748 -08067089 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -08067090 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb758 -08067091 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -08067092 697.56500244 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb768 -08067093 697.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -08067094 697.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb778 -08067095 697.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -08067096 697.56506348 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb788 -08067097 697.56512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -08067098 697.56512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb798 -08067099 697.56512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -08067100 697.56512451 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7a8 -08067101 697.56518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -08067102 697.56518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7b8 -08067103 697.56518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -08067104 697.56518555 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7c8 -08067105 697.56524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -08067106 697.56524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7d8 -08067107 697.56524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -08067108 697.56524658 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7e8 -08067109 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -08067110 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb7f8 -08067111 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -08067112 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb808 -08067113 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -08067114 697.56530762 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb818 -08067115 697.56536865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -08067116 697.56536865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb828 -08067117 697.56536865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -08067118 697.56536865 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb838 -08067119 697.56542969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -08067120 697.56542969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb848 -08067121 697.56542969 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -08067122 697.56549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb858 -08067123 697.56549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -08067124 697.56549072 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb868 -08067125 697.56555176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -08067126 697.56555176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb878 -08067127 697.56561279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -08067128 697.56561279 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0xb888 -08069748 697.60644531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a68 -08069749 697.60644531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -08069750 697.60644531 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a78 -08069751 697.60650635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -08069752 697.60650635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a88 -08069753 697.60650635 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -08069754 697.60656738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a98 -08069755 697.60656738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -08069756 697.60656738 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10aa8 -08069757 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -08069758 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ab8 -08069759 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -08069760 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ac8 -08069761 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -08069762 697.60662842 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ad8 -08069763 697.60668945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -08069764 697.60668945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ae8 -08069765 697.60668945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -08069766 697.60668945 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10af8 -08069767 697.60675049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -08069768 697.60675049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b08 -08069769 697.60675049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b18 -08069770 697.60675049 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b18 -08069771 697.60681152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b28 -08069772 697.60681152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b28 -08069773 697.60681152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -08069774 697.60681152 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b38 -08069775 697.60687256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -08069776 697.60687256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b48 -08069777 697.60687256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -08069778 697.60687256 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b58 -08069779 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -08069780 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b68 -08069781 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -08069782 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b78 -08069783 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -08069784 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b88 -08069785 697.60693359 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -08069786 697.60699463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b98 -08069787 697.60699463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -08069788 697.60699463 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ba8 -08069789 697.60705566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -08069790 697.60705566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bb8 -08069791 697.60705566 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x10bc8 -08072287 697.64508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -08072288 697.64508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159c8 -08072289 697.64514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -08072290 697.64514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159d8 -08072291 697.64514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -08072292 697.64514160 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159e8 -08072293 697.64520264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -08072294 697.64520264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x159f8 -08072295 697.64520264 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -08072296 697.64526367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a08 -08072297 697.64526367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -08072298 697.64526367 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a18 -08072299 697.64532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -08072300 697.64532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a28 -08072301 697.64532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -08072302 697.64532471 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a38 -08072303 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -08072304 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a48 -08072305 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -08072306 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a58 -08072307 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -08072308 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a68 -08072309 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -08072310 697.64538574 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a78 -08072311 697.64544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -08072312 697.64544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a88 -08072313 697.64544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -08072314 697.64544678 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a98 -08072315 697.64550781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa8 -08072316 697.64550781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15aa8 -08072317 697.64550781 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -08072318 697.64556885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ab8 -08072319 697.64556885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -08072320 697.64556885 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ac8 -08072321 697.64562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -08072322 697.64562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ad8 -08072323 697.64562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -08072324 697.64562988 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15ae8 -08072325 697.64569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -08072326 697.64569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15af8 -08072327 697.64569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b08 -08072328 697.64569092 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b08 -08072329 697.64575195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b18 -08072330 697.64575195 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b18 -08075091 697.68579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b168 -08075092 697.68579102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b168 -08075093 697.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b178 -08075094 697.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b178 -08075095 697.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b188 -08075096 697.68585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b188 -08075097 697.68591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b198 -08075098 697.68591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b198 -08075099 697.68591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a8 -08075100 697.68591309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1a8 -08075101 697.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b8 -08075102 697.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1b8 -08075103 697.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c8 -08075104 697.68597412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1c8 -08075105 697.68603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d8 -08075106 697.68603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1d8 -08075107 697.68603516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e8 -08075108 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1e8 -08075109 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f8 -08075110 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b1f8 -08075111 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b208 -08075112 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b208 -08075113 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b218 -08075114 697.68609619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b218 -08075115 697.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b228 -08075116 697.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b228 -08075117 697.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b238 -08075118 697.68615723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b238 -08075119 697.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b248 -08075120 697.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b248 -08075121 697.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b258 -08075122 697.68621826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b258 -08075123 697.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b268 -08075124 697.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b268 -08075125 697.68627930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b278 -08075126 697.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b278 -08075127 697.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b288 -08075128 697.68634033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b288 -08075129 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b298 -08075130 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b298 -08075131 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a8 -08075132 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2a8 -08075133 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b8 -08075134 697.68640137 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b2b8 -08091829 697.93188477 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc38 -08091830 697.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc38 -08091831 697.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc48 -08091832 697.93194580 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc48 -08091833 697.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -08091834 697.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc58 -08091835 697.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -08091836 697.93200684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc68 -08091837 697.93206787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -08091838 697.93206787 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc78 -08091839 697.93212891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -08091840 697.93212891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc88 -08091841 697.93212891 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -08091842 697.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc98 -08091843 697.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -08091844 697.93218994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bca8 -08091845 697.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -08091846 697.93225098 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcb8 -08091847 697.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -08091848 697.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcc8 -08091849 697.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -08091850 697.93231201 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcd8 -08091851 697.93237305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -08091852 697.93237305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bce8 -08091853 697.93237305 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -08091854 697.93243408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bcf8 -08091855 697.93243408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -08091856 697.93243408 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd08 -08091857 697.93249512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -08091858 697.93249512 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd18 -08091859 697.93255615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -08091860 697.93255615 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd28 -08091861 697.93261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -08091862 697.93261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd38 -08091863 697.93261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -08091864 697.93261719 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd48 -08091865 697.93267822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -08091866 697.93267822 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd58 -08091867 697.93273926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -08091868 697.93273926 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd68 -08091869 697.93280029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -08091870 697.93280029 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd78 -08091871 697.93286133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -08091872 697.93286133 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd88 -08094585 697.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -08094586 697.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41258 -08094587 697.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -08094588 697.97448730 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41268 -08094589 697.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -08094590 697.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41278 -08094591 697.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -08094592 697.97454834 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41288 -08094593 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -08094594 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41298 -08094595 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -08094596 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412a8 -08094597 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -08094598 697.97460938 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412b8 -08094599 697.97467041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -08094600 697.97467041 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412c8 -08094601 697.97473145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -08094602 697.97473145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412d8 -08094603 697.97473145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -08094604 697.97473145 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412e8 -08094605 697.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f8 -08094606 697.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x412f8 -08094607 697.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -08094608 697.97479248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41308 -08094609 697.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -08094610 697.97485352 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41318 -08094611 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -08094612 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41328 -08094613 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -08094614 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41338 -08094615 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -08094616 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41348 -08094617 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -08094618 697.97491455 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41358 -08094619 697.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -08094620 697.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41368 -08094621 697.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -08094622 697.97497559 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41378 -08094623 697.97503662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41388 -08094624 697.97503662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41388 -08094625 697.97503662 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41398 -08094626 697.97509766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x41398 -08094627 697.97509766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a8 -08094628 697.97509766 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x413a8 -08097391 698.01647949 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x469f8 -08097392 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a08 -08097393 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a08 -08097394 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a18 -08097395 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a18 -08097396 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a28 -08097397 698.01654053 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a28 -08097398 698.01660156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a38 -08097399 698.01660156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a38 -08097400 698.01660156 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a48 -08097401 698.01666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a48 -08097402 698.01666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a58 -08097403 698.01666260 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a58 -08097404 698.01672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a68 -08097405 698.01672363 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a68 -08097406 698.01678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a78 -08097407 698.01678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a78 -08097408 698.01678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a88 -08097409 698.01678467 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a88 -08097410 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a98 -08097411 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a98 -08097412 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa8 -08097413 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46aa8 -08097414 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab8 -08097415 698.01684570 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ab8 -08097416 698.01690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac8 -08097417 698.01690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ac8 -08097418 698.01690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad8 -08097419 698.01690674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ad8 -08097420 698.01696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae8 -08097421 698.01696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46ae8 -08097422 698.01696777 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af8 -08097423 698.01702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46af8 -08097424 698.01702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b08 -08097425 698.01702881 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b08 -08097426 698.01708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b18 -08097427 698.01708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b18 -08097428 698.01708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b28 -08097429 698.01708984 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b28 -08097430 698.01715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b38 -08097431 698.01715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b38 -08097432 698.01715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b48 -08097433 698.01715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b48 -08097434 698.01715088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b58 -08099824 698.05456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f8 -08099825 698.05456543 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b5f8 -08099826 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b608 -08099827 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b608 -08099828 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b618 -08099829 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b618 -08099830 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b628 -08099831 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b628 -08099832 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b638 -08099833 698.05462646 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b638 -08099834 698.05468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b648 -08099835 698.05468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b648 -08099836 698.05468750 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b658 -08099837 698.05474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b658 -08099838 698.05474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b668 -08099839 698.05474854 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b668 -08099840 698.05480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b678 -08099841 698.05480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b678 -08099842 698.05480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b688 -08099843 698.05480957 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b688 -08099844 698.05487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b698 -08099845 698.05487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b698 -08099846 698.05487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a8 -08099847 698.05487061 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6a8 -08099848 698.05493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b8 -08099849 698.05493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6b8 -08099850 698.05493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c8 -08099851 698.05493164 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6c8 -08099852 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d8 -08099853 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6d8 -08099854 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e8 -08099855 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6e8 -08099856 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f8 -08099857 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b6f8 -08099858 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b708 -08099859 698.05499268 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b708 -08099860 698.05505371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b718 -08099861 698.05505371 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b718 -08099862 698.05511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b728 -08099863 698.05511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b728 -08099864 698.05511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b738 -08099865 698.05511475 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b738 -08099866 698.05517578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b748 -08099867 698.05517578 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b748 -08102178 698.09185791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff88 -08102179 698.09185791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff88 -08102180 698.09185791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff98 -08102181 698.09185791 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff98 -08102182 698.09191895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa8 -08102183 698.09191895 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffa8 -08102184 698.09197998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb8 -08102185 698.09197998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffb8 -08102186 698.09197998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc8 -08102187 698.09197998 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffc8 -08102188 698.09204102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd8 -08102189 698.09204102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffd8 -08102190 698.09204102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe8 -08102191 698.09204102 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ffe8 -08102192 698.09210205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff8 -08102193 698.09210205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fff8 -08102194 698.09210205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50008 -08102195 698.09216309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50008 -08102196 698.09216309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50018 -08102197 698.09216309 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50018 -08102198 698.09222412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50028 -08102199 698.09222412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50028 -08102200 698.09222412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50038 -08102201 698.09222412 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50038 -08102202 698.09228516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50048 -08102203 698.09228516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50048 -08102204 698.09228516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50058 -08102205 698.09228516 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50058 -08102206 698.09234619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50068 -08102207 698.09234619 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50068 -08102208 698.09240723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50078 -08102209 698.09240723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50078 -08102210 698.09240723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50088 -08102211 698.09240723 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50088 -08102212 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50098 -08102213 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x50098 -08102214 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a8 -08102215 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500a8 -08102216 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b8 -08102217 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500b8 -08102218 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c8 -08102219 698.09246826 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500c8 -08102220 698.09252930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d8 -08102221 698.09252930 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x500d8 -08103643 698.78100586 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103644 698.78125000 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103645 698.78161621 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103646 698.78228760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103647 698.86212158 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103648 698.86236572 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103649 698.86267090 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103650 698.86297607 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103651 698.86328125 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103652 698.86352539 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103653 698.86376953 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103654 698.86407471 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103655 698.86431885 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103656 698.86456299 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103657 698.86492920 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103658 698.86553955 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08103659 700.03460693 [vmhook-eac [core number = 9]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08103660 700.05670166 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08103661 700.05670166 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08103662 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08103663 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08103664 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08103665 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08103666 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08103667 700.36108398 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08103668 700.36114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08103669 700.36114502 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08103670 700.36120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08103671 700.36120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08103672 700.36120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08103673 700.36120605 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08103674 700.36126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08103675 700.36126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08103676 700.36126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08103677 700.36126709 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08103678 700.36132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08103679 700.36132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08103680 700.36132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08103681 700.36132813 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08103682 700.36138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08103683 700.36138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08103684 700.36138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08103685 700.36138916 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08103686 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08103687 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08103688 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08103689 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08103690 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08103691 700.36145020 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08103692 700.36151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08103693 700.36151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08103694 700.36151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08103695 700.36151123 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08103696 700.36157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08103697 700.36157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08103698 700.36157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08103699 700.36157227 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08103700 700.36163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08103701 700.36163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08103702 700.36163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08103703 700.36163330 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08103704 700.36169434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08103705 700.36169434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08103706 700.36169434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08103707 700.36169434 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08103708 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08103709 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08103710 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08103711 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08103712 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08103713 700.36175537 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08103714 700.36181641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08103715 700.36181641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08103716 700.36181641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08103717 700.36181641 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08103718 700.36187744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08103719 700.36187744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08103720 700.36187744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08103721 700.36187744 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08103722 700.36193848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08103723 700.36193848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08103724 700.36193848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08103725 700.36193848 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08103726 700.36199951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08103727 700.36199951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08103728 700.36199951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08103729 700.36199951 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08103730 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08103731 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08103732 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08103733 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08103734 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08103735 700.36206055 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08103736 700.36212158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08103737 700.36212158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08103738 700.36212158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08103739 700.36212158 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08103740 700.36218262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08103741 700.36218262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08103742 700.36218262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08103743 700.36218262 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08103744 700.36224365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08103745 700.36224365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08103746 700.36224365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08103747 700.36224365 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08103748 700.36230469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08103749 700.36230469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08103750 700.36230469 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08103751 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08103752 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08103753 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08103754 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08103755 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08103756 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08103757 700.36236572 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08103758 700.36242676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08103759 700.36242676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08103760 700.36242676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08103761 700.36242676 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08103762 700.36248779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08103763 700.36248779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08103764 700.36248779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08103765 700.36248779 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08103766 700.36254883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08103767 700.36254883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08103768 700.36254883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08103769 700.36254883 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08103770 700.36260986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08103771 700.36260986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08103772 700.36260986 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08103773 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08103774 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08103775 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08103776 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08103777 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08103778 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08103779 700.36267090 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08103780 700.36273193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08103781 700.36273193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08103782 700.36273193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08103783 700.36273193 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08103784 700.36279297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08103785 700.36279297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08103786 700.36285400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08103787 700.36285400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08103788 700.36285400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08103789 700.36285400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08103790 700.36291504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08103791 700.36291504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08103792 700.36291504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08103793 700.36291504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08103794 700.36297607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08103795 700.36297607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08103796 700.36297607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08103797 700.36297607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08103798 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08103799 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08103800 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08103801 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08103802 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08103803 700.36303711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08103804 700.36309814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08103805 700.36309814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08103806 700.36309814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08103807 700.36315918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08103808 700.36315918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08103809 700.36315918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08103810 700.36322021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08103811 700.36322021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08103812 700.36328125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08103813 700.36328125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08103814 700.36328125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08103815 700.36328125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08103816 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08103817 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08103818 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08103819 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08103820 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08103821 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08103822 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08103823 700.36334229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08103824 700.36340332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08103825 700.36340332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08103826 700.36340332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08103827 700.36340332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08103828 700.36346436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08103829 700.36346436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08103830 700.36346436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08103831 700.36352539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08103832 700.36352539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08103833 700.36352539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08103834 700.36358643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08103835 700.36358643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08103836 700.36358643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08103837 700.36358643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08103838 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08103839 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08103840 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08103841 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08103842 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08103843 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08103844 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08103845 700.36364746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08103846 700.36370850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08103847 700.36370850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08103848 700.36370850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08103849 700.36370850 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08103850 700.36376953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08103851 700.36376953 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08103852 700.36383057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08103853 700.36383057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08103854 700.36383057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08103855 700.36383057 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08103856 700.36389160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08103857 700.36389160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08103858 700.36389160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08103859 700.36389160 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08103860 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08103861 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08103862 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08103863 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08103864 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08103865 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08103866 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08103867 700.36395264 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08103868 700.36401367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08103869 700.36401367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08103870 700.36401367 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08103871 700.36407471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08103872 700.36407471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08103873 700.36407471 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08103874 700.36413574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08103875 700.36413574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08103876 700.36413574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08103877 700.36413574 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08103878 700.36419678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08103879 700.36419678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08103880 700.36419678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08103881 700.36419678 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08103882 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08103883 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08103884 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08103885 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08103886 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08103887 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08103888 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08103889 700.36425781 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08103890 700.36431885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08103891 700.36431885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08103892 700.36431885 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08103893 700.36437988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08103894 700.36437988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08103895 700.36437988 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08103896 700.36444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08103897 700.36444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08103898 700.36444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08103899 700.36444092 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08103900 700.36450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08103901 700.36450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08103902 700.36450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08103903 700.36450195 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08103904 700.36456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08103905 700.36456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08103906 700.36456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08103907 700.36456299 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08103908 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08103909 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08103910 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08103911 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08103912 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08103913 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08103914 700.36462402 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08103915 700.36468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08103916 700.36468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08103917 700.36468506 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08103918 700.36474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08103919 700.36474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08103920 700.36474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08103921 700.36474609 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08103922 700.36480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08103923 700.36480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08103924 700.36480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08103925 700.36480713 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08103926 700.36486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08103927 700.36486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08103928 700.36486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08103929 700.36486816 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08103930 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08103931 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08103932 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08103933 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08103934 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08103935 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08103936 700.36492920 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08103937 700.36499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08103938 700.36499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08103939 700.36499023 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08103940 700.36505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08103941 700.36505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08103942 700.36505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08103943 700.36505127 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08103944 700.36511230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08103945 700.36511230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08103946 700.36511230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08103947 700.36511230 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08103948 700.36517334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08103949 700.36517334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08103950 700.36517334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08103951 700.36517334 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08103952 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08103953 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08103954 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08103955 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08103956 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08103957 700.36523438 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08103958 700.36529541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08103959 700.36529541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08103960 700.36529541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08103961 700.36529541 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08103962 700.36535645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08103963 700.36535645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08103964 700.36535645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08103965 700.36535645 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08103966 700.36541748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08103967 700.36541748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08103968 700.36541748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08103969 700.36541748 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08103970 700.36547852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08103971 700.36547852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08103972 700.36547852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08103973 700.36547852 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08103974 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08103975 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08103976 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08103977 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08103978 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08103979 700.36553955 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08103980 700.36560059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08103981 700.36560059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08103982 700.36560059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08103983 700.36560059 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08103984 700.36566162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08103985 700.36566162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08103986 700.36566162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08103987 700.36566162 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08103988 700.36572266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08103989 700.36572266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08103990 700.36572266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08103991 700.36572266 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08103992 700.36578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08103993 700.36578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08103994 700.36578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08103995 700.36578369 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08103996 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08103997 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08103998 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08103999 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08104000 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08104001 700.36584473 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08104002 700.36590576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08104003 700.36590576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08104004 700.36590576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08104005 700.36590576 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08104006 700.36596680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08104007 700.36596680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08104008 700.36596680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08104009 700.36596680 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08104010 700.36602783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08104011 700.36602783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08104012 700.36602783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08104013 700.36602783 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08104014 700.36608887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08104015 700.36608887 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08104016 700.36614990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08104017 700.36614990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08104018 700.36614990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08104019 700.36614990 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08104020 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08104021 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08104022 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08104023 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08104024 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08104025 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08104026 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08104027 700.36621094 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08104028 700.36627197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08104029 700.36627197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08104030 700.36627197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08104031 700.36627197 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08104032 700.36633301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08104033 700.36633301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08104034 700.36633301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08104035 700.36633301 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08104036 700.36639404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08104037 700.36639404 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08104038 700.36645508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08104039 700.36645508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08104040 700.36645508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08104041 700.36645508 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08104042 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08104043 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08104044 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08104045 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08104046 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08104047 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08104048 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08104049 700.36651611 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08104050 700.36657715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08104051 700.36657715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08104052 700.36657715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08104053 700.36657715 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08104054 700.36663818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08104055 700.36663818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08104056 700.36663818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08104057 700.36663818 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08104058 700.36669922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08104059 700.36669922 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08104060 700.36676025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08104061 700.36676025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08104062 700.36676025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08104063 700.36676025 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08104064 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08104065 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08104066 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08104067 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08104068 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08104069 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08104070 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08104071 700.36682129 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08104072 700.36688232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08104073 700.36688232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08104074 700.36688232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08104075 700.36688232 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08104076 700.36694336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08104077 700.36694336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08104078 700.36694336 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08104079 700.36700439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08104080 700.36700439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08104081 700.36700439 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08104082 700.36706543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08104083 700.36706543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08104084 700.36706543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08104085 700.36706543 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08104086 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08104087 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08104088 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08104089 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08104090 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08104091 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08104092 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08104093 700.36712646 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08104094 700.36718750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08104095 700.36718750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08104096 700.36718750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08104097 700.36718750 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08104098 700.36724854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08104099 700.36724854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08104100 700.36724854 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08104101 700.36730957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08104102 700.36730957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08104103 700.36730957 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08104104 700.36737061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08104105 700.36737061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08104106 700.36737061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08104107 700.36737061 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08104108 700.36743164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08104109 700.36743164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08104110 700.36743164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08104111 700.36743164 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08104112 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08104113 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08104114 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08104115 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08104116 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08104117 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08104118 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08104119 700.36749268 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08104120 700.36755371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08104121 700.36755371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08104122 700.36755371 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08104123 700.36761475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08104124 700.36761475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08104125 700.36761475 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08104126 700.36767578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08104127 700.36767578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08104128 700.36767578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08104129 700.36767578 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08104130 700.36773682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08104131 700.36773682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08104132 700.36773682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08104133 700.36773682 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08104134 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08104135 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08104136 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08104137 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08104138 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08104139 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08104140 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08104141 700.36779785 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08104142 700.36785889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08104143 700.36785889 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08104144 700.36791992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08104145 700.36791992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08104146 700.36791992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08104147 700.36791992 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08104148 700.36798096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08104149 700.36798096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08104150 700.36798096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08104151 700.36798096 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08104152 700.36804199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08104153 700.36804199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08104154 700.36804199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08104155 700.36804199 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08104156 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08104157 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08104158 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08104159 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08104160 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08104161 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08104162 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08104163 700.36810303 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08104164 700.36816406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08104165 700.36816406 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08104166 700.36822510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08104167 700.36822510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08104168 700.36822510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08104169 700.36822510 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08104170 700.36828613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08104171 700.36828613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08104172 700.36828613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08104173 700.36828613 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08104174 700.36834717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08104175 700.36834717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08104176 700.36834717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08104177 700.36834717 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08104178 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08104179 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08104180 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08104181 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08104182 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08104183 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08104184 700.36840820 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08104185 700.36846924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08104186 700.36846924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08104187 700.36846924 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08104188 700.36853027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08104189 700.36853027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08104190 700.36853027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08104191 700.36853027 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08104192 700.36859131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08104193 700.36859131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08104194 700.36859131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08104195 700.36859131 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08104196 700.36865234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08104197 700.36865234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08104198 700.36865234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08104199 700.36865234 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08104200 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08104201 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08104202 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08104203 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08104204 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08104205 700.36871338 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08104206 700.36877441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08104207 700.36877441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08104208 700.36877441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08104209 700.36877441 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08104210 700.36883545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08104211 700.36883545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08104212 700.36883545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08104213 700.36883545 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08104214 700.36889648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08104215 700.36889648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08104216 700.36889648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08104217 700.36889648 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08104218 700.36895752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08104219 700.36895752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08104220 700.36895752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08104221 700.36895752 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08104222 700.36901855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08104223 700.36901855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08104224 700.36901855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08104225 700.36901855 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08104226 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08104227 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08104228 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08104229 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08104230 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08104231 700.36907959 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08104232 700.36914063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08104233 700.36914063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08104234 700.36914063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08104235 700.36914063 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08104236 700.36920166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08104237 700.36920166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08104238 700.36920166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08104239 700.36920166 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08104240 700.36926270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08104241 700.36926270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08104242 700.36926270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08104243 700.36926270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08104244 700.36932373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08104245 700.36932373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08104246 700.36932373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08104247 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08104248 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08104249 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08104250 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08104251 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08104252 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08104253 700.36938477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08104254 700.36944580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08104255 700.36944580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08104256 700.36944580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08104257 700.36944580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08104258 700.36950684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08104259 700.36950684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08104260 700.36950684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08104261 700.36950684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08104262 700.36956787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08104263 700.36956787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08104264 700.36956787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08104265 700.36956787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08104266 700.36962891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08104267 700.36962891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08104268 700.36962891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08104269 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08104270 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08104271 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08104272 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08104273 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08104274 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08104275 700.36968994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08104276 700.36975098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08104277 700.36975098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08104278 700.36975098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08104279 700.36975098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08104280 700.36981201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08104281 700.36981201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08104282 700.36981201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08104283 700.36981201 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08104284 700.36987305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08104285 700.36987305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08104286 700.36987305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08104287 700.36987305 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08104288 700.36993408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08104289 700.36993408 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08104290 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08104291 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08104292 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08104293 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08104294 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08104295 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08104296 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08104297 700.36999512 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08104298 700.37005615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08104299 700.37005615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08104300 700.37005615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08104301 700.37005615 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08104302 700.37011719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08104303 700.37011719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08104304 700.37011719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08104305 700.37011719 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08104306 700.37017822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08104307 700.37017822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08104308 700.37017822 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08104309 700.37023926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08104310 700.37023926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08104311 700.37023926 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08104312 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08104313 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08104314 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08104315 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08104316 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08104317 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08104318 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08104319 700.37030029 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08104320 700.37036133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08104321 700.37036133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08104322 700.37036133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08104323 700.37036133 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08104324 700.37042236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08104325 700.37042236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08104326 700.37042236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08104327 700.37042236 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08104328 700.37048340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08104329 700.37048340 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08104330 700.37054443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08104331 700.37054443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08104332 700.37054443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08104333 700.37054443 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08104334 700.37060547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08104335 700.37060547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08104336 700.37060547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08104337 700.37060547 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08104338 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08104339 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08104340 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08104341 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08104342 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08104343 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08104344 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08104345 700.37066650 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08104346 700.37072754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08104347 700.37072754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08104348 700.37072754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08104349 700.37072754 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08104350 700.37078857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08104351 700.37078857 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08104352 700.37084961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08104353 700.37084961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08104354 700.37084961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08104355 700.37084961 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08104356 700.37091064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08104357 700.37091064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08104358 700.37091064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08104359 700.37091064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08104360 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08104361 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08104362 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08104363 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08104364 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08104365 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08104366 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08104367 700.37097168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08104368 700.37103271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08104369 700.37103271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08104370 700.37103271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08104371 700.37109375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08104372 700.37109375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08104373 700.37109375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08104374 700.37115479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08104375 700.37115479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08104376 700.37115479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08104377 700.37115479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08104378 700.37121582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08104379 700.37121582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08104380 700.37121582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08104381 700.37121582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08104382 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08104383 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08104384 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08104385 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08104386 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08104387 700.37127686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08104388 700.37133789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08104389 700.37133789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08104390 700.37133789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08104391 700.37133789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08104392 700.37139893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08104393 700.37139893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08104394 700.37139893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08104395 700.37139893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08104396 700.37145996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08104397 700.37145996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08104398 700.37145996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08104399 700.37145996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08104400 700.37152100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08104401 700.37152100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08104402 700.37152100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08104403 700.37152100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08104404 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08104405 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08104406 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08104407 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08104408 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08104409 700.37158203 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08104410 700.37164307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08104411 700.37164307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08104412 700.37164307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08104413 700.37164307 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08104414 700.37170410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08104415 700.37170410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08104416 700.37170410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08104417 700.37170410 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08104418 700.37176514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08104419 700.37176514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08104420 700.37176514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08104421 700.37176514 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08104422 700.37182617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08104423 700.37182617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08104424 700.37182617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08104425 700.37182617 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08104426 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08104427 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08104428 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08104429 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08104430 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08104431 700.37188721 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08104432 700.37194824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08104433 700.37194824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08104434 700.37194824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08104435 700.37194824 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08104436 700.37200928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08104437 700.37200928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08104438 700.37200928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08104439 700.37200928 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08104440 700.37207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08104441 700.37207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08104442 700.37207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08104443 700.37207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08104444 700.37213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08104445 700.37213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08104446 700.37213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08104447 700.37213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08104448 700.37219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08104449 700.37219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08104450 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08104451 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08104452 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08104453 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08104454 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08104455 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08104456 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08104457 700.37225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08104458 700.37231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08104459 700.37231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08104460 700.37231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08104461 700.37231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08104462 700.37237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08104463 700.37237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08104464 700.37237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08104465 700.37237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08104466 700.37243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08104467 700.37243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08104468 700.37243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08104469 700.37249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08104470 700.37249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08104471 700.37249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08104472 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08104473 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08104474 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08104475 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08104476 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08104477 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08104478 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08104479 700.37255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08104480 700.37261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08104481 700.37261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08104482 700.37261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08104483 700.37261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08104484 700.37268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08104485 700.37268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08104486 700.37274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08104487 700.37274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08104488 700.37274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08104489 700.37274170 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08104490 700.37280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08104491 700.37280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08104492 700.37280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08104493 700.37280273 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08104494 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08104495 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08104496 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08104497 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08104498 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08104499 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08104500 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08104501 700.37286377 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08104502 700.37292480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08104503 700.37292480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08104504 700.37292480 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08104505 700.37298584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08104506 700.37298584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08104507 700.37298584 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08104508 700.37304688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08104509 700.37304688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08104510 700.37304688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08104511 700.37304688 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08104512 700.37310791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08104513 700.37310791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08104514 700.37310791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08104515 700.37310791 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08104516 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08104517 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08104518 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08104519 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08104520 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08104521 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08104522 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08104523 700.37316895 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08104524 700.37322998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08104525 700.37322998 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08104526 700.37329102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08104527 700.37329102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08104528 700.37329102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08104529 700.37329102 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08104530 700.37335205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08104531 700.37335205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08104532 700.37335205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08104533 700.37335205 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08104534 700.37341309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08104535 700.37341309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08104536 700.37341309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08104537 700.37341309 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08104538 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08104539 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08104540 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08104541 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08104542 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08104543 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08104544 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08104545 700.37347412 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08104546 700.37353516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08104547 700.37353516 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08104548 700.37359619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08104549 700.37359619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08104550 700.37359619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08104551 700.37359619 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08104552 700.37365723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08104553 700.37365723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08104554 700.37365723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08104555 700.37365723 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08104556 700.37371826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08104557 700.37371826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08104558 700.37371826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08104559 700.37371826 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08104560 700.37377930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08104561 700.37377930 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08104562 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08104563 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08104564 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08104565 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08104566 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08104567 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08104568 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08104569 700.37384033 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08104570 700.37390137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08104571 700.37390137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08104572 700.37390137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08104573 700.37390137 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08104574 700.37396240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08104575 700.37396240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08104576 700.37396240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08104577 700.37396240 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08104578 700.37402344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08104579 700.37402344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08104580 700.37402344 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08104581 700.37408447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08104582 700.37408447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08104583 700.37408447 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08104584 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08104585 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08104586 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08104587 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08104588 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08104589 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08104590 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08104591 700.37414551 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08104592 700.37420654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08104593 700.37420654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08104594 700.37420654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08104595 700.37420654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08104596 700.37426758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08104597 700.37426758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08104598 700.37426758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08104599 700.37426758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08104600 700.37432861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08104601 700.37432861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08104602 700.37432861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08104603 700.37438965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08104604 700.37438965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08104605 700.37438965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08104606 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08104607 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08104608 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08104609 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08104610 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08104611 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08104612 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08104613 700.37445068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08104614 700.37451172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08104615 700.37451172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08104616 700.37451172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08104617 700.37451172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08104618 700.37457275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08104619 700.37457275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08104620 700.37457275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08104621 700.37457275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08104622 700.37463379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08104623 700.37463379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08104624 700.37463379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08104625 700.37469482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08104626 700.37469482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08104627 700.37469482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08104628 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08104629 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08104630 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08104631 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08104632 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08104633 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08104634 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08104635 700.37475586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08104636 700.37481689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08104637 700.37481689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08104638 700.37481689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08104639 700.37481689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08104640 700.37487793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08104641 700.37487793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08104642 700.37487793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08104643 700.37487793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08104644 700.37493896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08104645 700.37493896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08104646 700.37493896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08104647 700.37500000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08104648 700.37500000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08104649 700.37500000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08104650 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08104651 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08104652 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08104653 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08104654 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08104655 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08104656 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08104657 700.37506104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08104658 700.37512207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08104659 700.37512207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08104660 700.37512207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08104661 700.37512207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08104662 700.37518311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08104663 700.37518311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08104664 700.37518311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08104665 700.37518311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08104666 700.37524414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08104667 700.37524414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08104668 700.37530518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08104669 700.37530518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08104670 700.37530518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08104671 700.37530518 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08104672 700.37536621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08104673 700.37536621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08104674 700.37536621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08104675 700.37536621 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08104676 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08104677 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08104678 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08104679 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08104680 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08104681 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08104682 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08104683 700.37542725 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08104684 700.37548828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08104685 700.37548828 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08104686 700.37554932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08104687 700.37554932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08104688 700.37554932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08104689 700.37554932 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08104690 700.37561035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08104691 700.37561035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08104692 700.37561035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08104693 700.37561035 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08104694 700.37567139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08104695 700.37567139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08104696 700.37567139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08104697 700.37567139 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08104698 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08104699 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08104700 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08104701 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08104702 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08104703 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08104704 700.37573242 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08104705 700.37579346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08104706 700.37579346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08104707 700.37579346 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08104708 700.37585449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08104709 700.37585449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08104710 700.37585449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08104711 700.37585449 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08104712 700.37591553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08104713 700.37591553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08104714 700.37591553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08104715 700.37591553 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08104716 700.37597656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08104717 700.37597656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08104718 700.37597656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08104719 700.37597656 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08104720 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08104721 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08104722 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08104723 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08104724 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08104725 700.37603760 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08104726 700.37609863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08104727 700.37609863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08104728 700.37609863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08104729 700.37609863 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08104730 700.37615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08104731 700.37615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08104732 700.37615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08104733 700.37615967 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08104734 700.37622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08104735 700.37622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08104736 700.37622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08104737 700.37622070 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08104738 700.37628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08104739 700.37628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08104740 700.37628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08104741 700.37628174 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08104742 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08104743 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08104744 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08104745 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08104746 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08104747 700.37634277 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08104748 700.37640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08104749 700.37640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08104750 700.37640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08104751 700.37640381 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08104752 700.37646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08104753 700.37646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08104754 700.37646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08104755 700.37646484 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08104756 700.37652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08104757 700.37652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08104758 700.37652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08104759 700.37652588 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08104760 700.37658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08104761 700.37658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08104762 700.37658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08104763 700.37658691 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08104764 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08104765 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08104766 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08104767 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08104768 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08104769 700.37664795 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08104770 700.37670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08104771 700.37670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08104772 700.37670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08104773 700.37670898 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08104774 700.37677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08104775 700.37677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08104776 700.37677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08104777 700.37677002 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08104778 700.37683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08104779 700.37683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08104780 700.37683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08104781 700.37683105 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08104782 700.37689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08104783 700.37689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08104784 700.37689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08104785 700.37689209 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08104786 700.37695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08104787 700.37695313 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08104788 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08104789 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08104790 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08104791 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08104792 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08104793 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08104794 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08104795 700.37701416 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08104796 700.37707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08104797 700.37707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08104798 700.37707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08104799 700.37707520 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08104800 700.37713623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08104801 700.37713623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08104802 700.37713623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08104803 700.37713623 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08104804 700.37719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08104805 700.37719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08104806 700.37719727 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08104807 700.37725830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08104808 700.37725830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08104809 700.37725830 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08104810 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08104811 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08104812 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08104813 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08104814 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08104815 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08104816 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08104817 700.37731934 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08104818 700.37738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08104819 700.37738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08104820 700.37738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08104821 700.37738037 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08104822 700.37744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08104823 700.37744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08104824 700.37744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08104825 700.37744141 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08104826 700.37750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08104827 700.37750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08104828 700.37750244 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08104829 700.37756348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08104830 700.37756348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08104831 700.37756348 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08104832 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08104833 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08104834 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08104835 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08104836 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08104837 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08104838 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08104839 700.37762451 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08104840 700.37768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08104841 700.37768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08104842 700.37768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08104843 700.37768555 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08104844 700.37774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08104845 700.37774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08104846 700.37774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08104847 700.37774658 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08104848 700.37780762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08104849 700.37780762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08104850 700.37780762 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08104851 700.37786865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08104852 700.37786865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08104853 700.37786865 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08104854 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08104855 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08104856 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08104857 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08104858 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08104859 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08104860 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08104861 700.37792969 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08104862 700.37799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08104863 700.37799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08104864 700.37799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08104865 700.37799072 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08104866 700.37805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08104867 700.37805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08104868 700.37805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08104869 700.37805176 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08104870 700.37811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08104871 700.37811279 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08104872 700.37817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08104873 700.37817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08104874 700.37817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08104875 700.37817383 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08104876 700.37823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08104877 700.37823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08104878 700.37823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08104879 700.37823486 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08104880 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08104881 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08104882 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08104883 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08104884 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08104885 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08104886 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08104887 700.37829590 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08104888 700.37835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08104889 700.37835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08104890 700.37835693 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08104891 700.37841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08104892 700.37841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08104893 700.37841797 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08104894 700.37847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08104895 700.37847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08104896 700.37847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08104897 700.37847900 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08104898 700.37854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08104899 700.37854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08104900 700.37854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08104901 700.37854004 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08104902 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08104903 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08104904 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08104905 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08104906 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08104907 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08104908 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08104909 700.37860107 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08104910 700.37866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08104911 700.37866211 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08104912 700.37872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08104913 700.37872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08104914 700.37872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08104915 700.37872314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08104916 700.37878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08104917 700.37878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08104918 700.37878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08104919 700.37878418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08104920 700.37884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08104921 700.37884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08104922 700.37884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08104923 700.37884521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08104924 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08104925 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08104926 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08104927 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08104928 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08104929 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08104930 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08104931 700.37890625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08104932 700.37896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08104933 700.37896729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08104934 700.37902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08104935 700.37902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08104936 700.37902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08104937 700.37902832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08104938 700.37908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08104939 700.37908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08104940 700.37908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08104941 700.37908936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08104942 700.37915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08104943 700.37915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08104944 700.37915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08104945 700.37915039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08104946 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08104947 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08104948 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08104949 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08104950 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08104951 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08104952 700.37921143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08104953 700.37927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08104954 700.37927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08104955 700.37927246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08104956 700.37933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08104957 700.37933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08104958 700.37933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08104959 700.37933350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08104960 700.37939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08104961 700.37939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08104962 700.37939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08104963 700.37939453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08104964 700.37945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08104965 700.37945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08104966 700.37945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08104967 700.37945557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08104968 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08104969 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08104970 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08104971 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08104972 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08104973 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08104974 700.37951660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08104975 700.37957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08104976 700.37957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08104977 700.37957764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08104978 700.37963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08104979 700.37963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08104980 700.37963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08104981 700.37963867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08104982 700.37969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08104983 700.37969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08104984 700.37969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08104985 700.37969971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08104986 700.37976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08104987 700.37976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08104988 700.37976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08104989 700.37976074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08104990 700.37982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08104991 700.37982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08104992 700.37982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08104993 700.37982178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08104994 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08104995 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08104996 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08104997 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08104998 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08104999 700.37988281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08105000 700.37994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08105001 700.37994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08105002 700.37994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08105003 700.37994385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08105004 700.38000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08105005 700.38000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08105006 700.38000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08105007 700.38000488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08105008 700.38006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08105009 700.38006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08105010 700.38006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08105011 700.38006592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08105012 700.38012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08105013 700.38012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08105014 700.38012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08105015 700.38012695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08105016 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08105017 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08105018 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08105019 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08105020 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08105021 700.38018799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08105022 700.38024902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08105023 700.38024902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08105024 700.38024902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08105025 700.38024902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08105026 700.38031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08105027 700.38031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08105028 700.38031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08105029 700.38031006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08105030 700.38037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08105031 700.38037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08105032 700.38037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08105033 700.38037109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08105034 700.38043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08105035 700.38043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08105036 700.38043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08105037 700.38043213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08105038 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08105039 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08105040 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08105041 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08105042 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08105043 700.38049316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08105044 700.38055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08105045 700.38055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08105046 700.38055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08105047 700.38055420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08105048 700.38061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08105049 700.38061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08105050 700.38061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08105051 700.38061523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08105052 700.38067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08105053 700.38067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08105054 700.38067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08105055 700.38067627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08105056 700.38073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08105057 700.38073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08105058 700.38073730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08105059 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08105060 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08105061 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08105062 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08105063 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08105064 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08105065 700.38079834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08105066 700.38085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08105067 700.38085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08105068 700.38085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08105069 700.38085938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08105070 700.38092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08105071 700.38092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08105072 700.38092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08105073 700.38092041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08105074 700.38098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08105075 700.38098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08105076 700.38098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08105077 700.38098145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08105078 700.38104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08105079 700.38104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08105080 700.38104248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08105081 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08105082 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08105083 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08105084 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08105085 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08105086 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08105087 700.38110352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08105088 700.38116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08105089 700.38116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08105090 700.38116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08105091 700.38116455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08105092 700.38122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08105093 700.38122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08105094 700.38122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08105095 700.38122559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08105096 700.38128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08105097 700.38128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08105098 700.38128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08105099 700.38128662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08105100 700.38134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08105101 700.38134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08105102 700.38134766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08105103 700.38140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08105104 700.38140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08105105 700.38140869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08105106 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08105107 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08105108 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08105109 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08105110 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08105111 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08105112 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08105113 700.38146973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08108702 700.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -08108703 700.43225098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad88 -08108704 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -08108705 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xad98 -08108706 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -08108707 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xada8 -08108708 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -08108709 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadb8 -08108710 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -08108711 700.43231201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadc8 -08108712 700.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -08108713 700.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadd8 -08108714 700.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -08108715 700.43237305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xade8 -08108716 700.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -08108717 700.43243408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xadf8 -08108718 700.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -08108719 700.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae08 -08108720 700.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -08108721 700.43249512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae18 -08108722 700.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -08108723 700.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae28 -08108724 700.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -08108725 700.43255615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae38 -08108726 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -08108727 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae48 -08108728 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -08108729 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae58 -08108730 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -08108731 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae68 -08108732 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -08108733 700.43261719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae78 -08108734 700.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -08108735 700.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae88 -08108736 700.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -08108737 700.43267822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xae98 -08108738 700.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -08108739 700.43273926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaea8 -08108740 700.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -08108741 700.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaeb8 -08108742 700.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -08108743 700.43280029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaec8 -08108744 700.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -08108745 700.43286133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xaed8 -08111168 700.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa98 -08111169 700.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfa98 -08111170 700.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa8 -08111171 700.46716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaa8 -08111172 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab8 -08111173 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfab8 -08111174 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac8 -08111175 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfac8 -08111176 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad8 -08111177 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfad8 -08111178 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae8 -08111179 700.46722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfae8 -08111180 700.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -08111181 700.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfaf8 -08111182 700.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb08 -08111183 700.46728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb08 -08111184 700.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb18 -08111185 700.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb18 -08111186 700.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb28 -08111187 700.46734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb28 -08111188 700.46740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb38 -08111189 700.46740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb38 -08111190 700.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb48 -08111191 700.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb48 -08111192 700.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb58 -08111193 700.46746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb58 -08111194 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb68 -08111195 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb68 -08111196 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb78 -08111197 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb78 -08111198 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb88 -08111199 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb88 -08111200 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb98 -08111201 700.46752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfb98 -08111202 700.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba8 -08111203 700.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfba8 -08111204 700.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb8 -08111205 700.46759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbb8 -08111206 700.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc8 -08111207 700.46765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbc8 -08111208 700.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd8 -08111209 700.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbd8 -08111210 700.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe8 -08111211 700.46771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xfbe8 -08113542 700.50134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -08113543 700.50134277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144c8 -08113544 700.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -08113545 700.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144d8 -08113546 700.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -08113547 700.50140381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144e8 -08113548 700.50146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -08113549 700.50146484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x144f8 -08113550 700.50152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -08113551 700.50152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14508 -08113552 700.50152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -08113553 700.50152588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14518 -08113554 700.50158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -08113555 700.50158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14528 -08113556 700.50158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -08113557 700.50158691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14538 -08113558 700.50164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -08113559 700.50164795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14548 -08113560 700.50170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -08113561 700.50170898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14558 -08113562 700.50177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -08113563 700.50177002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14568 -08113564 700.50183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -08113565 700.50183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14578 -08113566 700.50183105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -08113567 700.50189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14588 -08113568 700.50189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -08113569 700.50189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14598 -08113570 700.50189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -08113571 700.50189209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145a8 -08113572 700.50195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -08113573 700.50195313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145b8 -08113574 700.50201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -08113575 700.50201416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145c8 -08113576 700.50207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -08113577 700.50207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145d8 -08113578 700.50207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e8 -08113579 700.50207520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145e8 -08113580 700.50213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f8 -08113581 700.50213623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x145f8 -08113582 700.50219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14608 -08113583 700.50219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14608 -08113584 700.50219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14618 -08113585 700.50219727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14618 -08115646 700.53729248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18688 -08115647 700.53729248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18688 -08115648 700.53735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18698 -08115649 700.53735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18698 -08115650 700.53735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a8 -08115651 700.53735352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186a8 -08115652 700.53741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b8 -08115653 700.53741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186b8 -08115654 700.53741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c8 -08115655 700.53741455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186c8 -08115656 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d8 -08115657 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186d8 -08115658 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e8 -08115659 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186e8 -08115660 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f8 -08115661 700.53747559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x186f8 -08115662 700.53753662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18708 -08115663 700.53753662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18708 -08115664 700.53753662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18718 -08115665 700.53753662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18718 -08115666 700.53759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18728 -08115667 700.53759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18728 -08115668 700.53759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18738 -08115669 700.53759766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18738 -08115670 700.53765869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -08115671 700.53765869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18748 -08115672 700.53771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -08115673 700.53771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18758 -08115674 700.53771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -08115675 700.53771973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18768 -08115676 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -08115677 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18778 -08115678 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -08115679 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18788 -08115680 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -08115681 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18798 -08115682 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -08115683 700.53778076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187a8 -08115684 700.53784180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -08115685 700.53784180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187b8 -08115686 700.53784180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -08115687 700.53784180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187c8 -08115688 700.53790283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -08115689 700.53790283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x187d8 -08118220 700.57427979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f8 -08118221 700.57427979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d6f8 -08118222 700.57427979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d708 -08118223 700.57427979 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d708 -08118224 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d718 -08118225 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d718 -08118226 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d728 -08118227 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d728 -08118228 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d738 -08118229 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d738 -08118230 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d748 -08118231 700.57434082 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d748 -08118232 700.57440186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d758 -08118233 700.57440186 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d758 -08118234 700.57446289 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d768 -08118235 700.57446289 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d768 -08118236 700.57446289 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d778 -08118237 700.57452393 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d778 -08118238 700.57452393 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d788 -08118239 700.57452393 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d788 -08118240 700.57458496 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -08118241 700.57458496 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d798 -08118242 700.57464600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -08118243 700.57464600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7a8 -08118244 700.57464600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -08118245 700.57464600 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7b8 -08118246 700.57470703 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -08118247 700.57470703 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7c8 -08118248 700.57470703 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -08118249 700.57470703 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7d8 -08118250 700.57476807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -08118251 700.57476807 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7e8 -08118252 700.57482910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -08118253 700.57482910 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d7f8 -08118254 700.57489014 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -08118255 700.57489014 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d808 -08118256 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -08118257 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d818 -08118258 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -08118259 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d828 -08118260 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -08118261 700.57495117 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d838 -08118262 700.57501221 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -08118263 700.57501221 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d848 -08120772 700.61114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b8 -08120773 700.61114502 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226b8 -08120774 700.61120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -08120775 700.61120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226c8 -08120776 700.61120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -08120777 700.61120605 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226d8 -08120778 700.61126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -08120779 700.61126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226e8 -08120780 700.61126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -08120781 700.61126709 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x226f8 -08120782 700.61132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -08120783 700.61132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22708 -08120784 700.61132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -08120785 700.61132813 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22718 -08120786 700.61138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -08120787 700.61138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22728 -08120788 700.61138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -08120789 700.61138916 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22738 -08120790 700.61145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -08120791 700.61145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22748 -08120792 700.61145020 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -08120793 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22758 -08120794 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -08120795 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22768 -08120796 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -08120797 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22778 -08120798 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -08120799 700.61151123 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22788 -08120800 700.61157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -08120801 700.61157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22798 -08120802 700.61157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -08120803 700.61157227 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227a8 -08120804 700.61163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -08120805 700.61163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227b8 -08120806 700.61163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -08120807 700.61163330 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227c8 -08120808 700.61169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -08120809 700.61169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227d8 -08120810 700.61169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -08120811 700.61169434 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227e8 -08120812 700.61175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -08120813 700.61175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x227f8 -08120814 700.61175537 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -08120815 700.61181641 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x22808 -08123264 700.64624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -08123265 700.64624023 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27498 -08123266 700.64630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -08123267 700.64630127 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274a8 -08123268 700.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -08123269 700.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274b8 -08123270 700.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -08123271 700.64636230 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274c8 -08123272 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -08123273 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274d8 -08123274 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -08123275 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274e8 -08123276 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -08123277 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x274f8 -08123278 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -08123279 700.64642334 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27508 -08123280 700.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -08123281 700.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27518 -08123282 700.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -08123283 700.64648438 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27528 -08123284 700.64654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -08123285 700.64654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27538 -08123286 700.64654541 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -08123287 700.64660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27548 -08123288 700.64660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -08123289 700.64660645 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27558 -08123290 700.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -08123291 700.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27568 -08123292 700.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -08123293 700.64666748 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27578 -08123294 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -08123295 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27588 -08123296 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -08123297 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x27598 -08123298 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -08123299 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275a8 -08123300 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -08123301 700.64672852 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275b8 -08123302 700.64678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -08123303 700.64678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275c8 -08123304 700.64678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -08123305 700.64678955 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275d8 -08123306 700.64685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -08123307 700.64685059 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x275e8 -08125752 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -08125753 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c258 -08125754 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -08125755 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c268 -08125756 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -08125757 700.68139648 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c278 -08125758 700.68145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -08125759 700.68145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c288 -08125760 700.68145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -08125761 700.68145752 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c298 -08125762 700.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a8 -08125763 700.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2a8 -08125764 700.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b8 -08125765 700.68151855 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2b8 -08125766 700.68157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c8 -08125767 700.68157959 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2c8 -08125768 700.68164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d8 -08125769 700.68164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2d8 -08125770 700.68164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e8 -08125771 700.68164063 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2e8 -08125772 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f8 -08125773 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c2f8 -08125774 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c308 -08125775 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c308 -08125776 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c318 -08125777 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c318 -08125778 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c328 -08125779 700.68170166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c328 -08125780 700.68176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c338 -08125781 700.68176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c338 -08125782 700.68176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c348 -08125783 700.68176270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c348 -08125784 700.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c358 -08125785 700.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c358 -08125786 700.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c368 -08125787 700.68182373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c368 -08125788 700.68188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c378 -08125789 700.68188477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c378 -08125790 700.68194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c388 -08125791 700.68194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c388 -08125792 700.68194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c398 -08125793 700.68194580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c398 -08125794 700.68200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a8 -08125795 700.68200684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c3a8 -08128312 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -08128313 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31258 -08128314 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -08128315 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31268 -08128316 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -08128317 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31278 -08128318 700.71795654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -08128319 700.71801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31288 -08128320 700.71801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -08128321 700.71801758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31298 -08128322 700.71807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -08128323 700.71807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312a8 -08128324 700.71807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -08128325 700.71807861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312b8 -08128326 700.71813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -08128327 700.71813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312c8 -08128328 700.71813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -08128329 700.71813965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312d8 -08128330 700.71820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -08128331 700.71820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312e8 -08128332 700.71820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -08128333 700.71820068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x312f8 -08128334 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -08128335 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31308 -08128336 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -08128337 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31318 -08128338 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -08128339 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31328 -08128340 700.71826172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -08128341 700.71832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31338 -08128342 700.71832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31348 -08128343 700.71832275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31348 -08128344 700.71838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31358 -08128345 700.71838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31358 -08128346 700.71838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31368 -08128347 700.71838379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31368 -08128348 700.71844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31378 -08128349 700.71844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31378 -08128350 700.71844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31388 -08128351 700.71844482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31388 -08128352 700.71850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31398 -08128353 700.71850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31398 -08128354 700.71850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a8 -08128355 700.71850586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x313a8 -08143485 700.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec78 -08143486 700.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec88 -08143487 700.93688965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec88 -08143488 700.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec98 -08143489 700.93695068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec98 -08143490 700.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca8 -08143491 700.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eca8 -08143492 700.93701172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb8 -08143493 700.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecb8 -08143494 700.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc8 -08143495 700.93707275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecc8 -08143496 700.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd8 -08143497 700.93713379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecd8 -08143498 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece8 -08143499 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ece8 -08143500 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf8 -08143501 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ecf8 -08143502 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed08 -08143503 700.93719482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed08 -08143504 700.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed18 -08143505 700.93725586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed18 -08143506 700.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed28 -08143507 700.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed28 -08143508 700.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed38 -08143509 700.93731689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed38 -08143510 700.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed48 -08143511 700.93737793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed48 -08143512 700.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed58 -08143513 700.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed58 -08143514 700.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed68 -08143515 700.93743896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed68 -08143516 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed78 -08143517 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed78 -08143518 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed88 -08143519 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed88 -08143520 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed98 -08143521 700.93750000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed98 -08143522 700.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda8 -08143523 700.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eda8 -08143524 700.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb8 -08143525 700.93756104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edb8 -08143526 700.93762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc8 -08143527 700.93762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edc8 -08143528 700.93762207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x4edd8 -08145556 702.05804443 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08145557 702.08111572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145558 702.08111572 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145559 702.25732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08145560 702.92877197 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145561 702.92883301 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145562 702.92889404 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145563 702.92889404 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08145564 702.92901611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145565 702.92901611 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08145566 702.92907715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145567 702.92907715 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08145568 703.01666260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08145569 703.01745605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08145570 704.08312988 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08145571 704.10723877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145572 704.10723877 [vmhook-eac [core number = 5]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145573 705.43762207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145574 705.43762207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145575 705.43762207 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08145576 705.43768311 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08145577 705.43780518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145578 705.43780518 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08145579 705.43786621 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08145580 705.43792725 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08145581 705.85046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08145582 705.85046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08145583 705.85046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08145584 705.85046387 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08145585 705.85052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08145586 705.85052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08145587 705.85052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08145588 705.85052490 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08145589 705.85058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08145590 705.85058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08145591 705.85058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08145592 705.85058594 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08145593 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08145594 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08145595 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08145596 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08145597 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08145598 705.85064697 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08145599 705.85070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08145600 705.85070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08145601 705.85070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08145602 705.85070801 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08145603 705.85076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08145604 705.85076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08145605 705.85076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08145606 705.85076904 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08145607 705.85083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08145608 705.85083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08145609 705.85083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08145610 705.85083008 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08145611 705.85089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08145612 705.85089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08145613 705.85089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08145614 705.85089111 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08145615 705.85095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08145616 705.85095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08145617 705.85095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08145618 705.85095215 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08145619 705.85101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08145620 705.85101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08145621 705.85101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08145622 705.85101318 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08145623 705.85107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08145624 705.85107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08145625 705.85107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08145626 705.85107422 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08145627 705.85113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08145628 705.85113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08145629 705.85113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08145630 705.85113525 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08145631 705.85119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08145632 705.85119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08145633 705.85119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08145634 705.85119629 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08145635 705.85125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08145636 705.85125732 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08145637 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08145638 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08145639 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08145640 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08145641 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08145642 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08145643 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08145644 705.85131836 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08145645 705.85137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08145646 705.85137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08145647 705.85137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08145648 705.85137939 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08145649 705.85144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08145650 705.85144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08145651 705.85144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08145652 705.85144043 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08145653 705.85150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08145654 705.85150146 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08145655 705.85156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08145656 705.85156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08145657 705.85156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08145658 705.85156250 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08145659 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08145660 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08145661 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08145662 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08145663 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08145664 705.85162354 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08145665 705.85168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08145666 705.85168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08145667 705.85168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08145668 705.85168457 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08145669 705.85174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08145670 705.85174561 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08145671 705.85180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08145672 705.85180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08145673 705.85180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08145674 705.85180664 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08145675 705.85186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08145676 705.85186768 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08145677 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08145678 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08145679 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08145680 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08145681 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08145682 705.85192871 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08145683 705.85198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08145684 705.85198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08145685 705.85198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08145686 705.85198975 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08145687 705.85205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08145688 705.85205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08145689 705.85205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08145690 705.85205078 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08145691 705.85211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08145692 705.85211182 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08145693 705.85217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08145694 705.85217285 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08145695 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08145696 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08145697 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08145698 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08145699 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08145700 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08145701 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08145702 705.85223389 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08145703 705.85229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08145704 705.85229492 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08145705 705.85235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08145706 705.85235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08145707 705.85235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08145708 705.85235596 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08145709 705.85241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08145710 705.85241699 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08145711 705.85247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08145712 705.85247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08145713 705.85247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08145714 705.85247803 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08145715 705.85253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08145716 705.85253906 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08145717 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08145718 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08145719 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08145720 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08145721 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08145722 705.85260010 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08145723 705.85266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08145724 705.85266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08145725 705.85266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08145726 705.85266113 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08145727 705.85272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08145728 705.85272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08145729 705.85272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08145730 705.85272217 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08145731 705.85278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08145732 705.85278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08145733 705.85278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08145734 705.85278320 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08145735 705.85284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08145736 705.85284424 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08145737 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08145738 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08145739 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08145740 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08145741 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08145742 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08145743 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08145744 705.85290527 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08145745 705.85296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08145746 705.85296631 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08145747 705.85302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08145748 705.85302734 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08145749 705.85308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08145750 705.85308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08145751 705.85308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08145752 705.85308838 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08145753 705.85314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08145754 705.85314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08145755 705.85314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08145756 705.85314941 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08145757 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08145758 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08145759 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08145760 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08145761 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08145762 705.85321045 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08145763 705.85327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08145764 705.85327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08145765 705.85327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08145766 705.85327148 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08145767 705.85333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08145768 705.85333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08145769 705.85333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08145770 705.85333252 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08145771 705.85339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08145772 705.85339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08145773 705.85339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08145774 705.85339355 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08145775 705.85345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08145776 705.85345459 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08145777 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08145778 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08145779 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08145780 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08145781 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08145782 705.85351563 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08145783 705.85357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08145784 705.85357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08145785 705.85357666 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08145786 705.85363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08145787 705.85363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08145788 705.85363770 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08145789 705.85369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08145790 705.85369873 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08145791 705.85375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08145792 705.85375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08145793 705.85375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08145794 705.85375977 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08145795 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08145796 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08145797 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08145798 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08145799 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08145800 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08145801 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08145802 705.85382080 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08145803 705.85388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08145804 705.85388184 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08145805 705.85394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08145806 705.85394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08145807 705.85394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08145808 705.85394287 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08145809 705.85400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08145810 705.85400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08145811 705.85400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08145812 705.85400391 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08145813 705.85406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08145814 705.85406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08145815 705.85406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08145816 705.85406494 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08145817 705.85412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08145818 705.85412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08145819 705.85412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08145820 705.85412598 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08145821 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08145822 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08145823 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08145824 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08145825 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08145826 705.85418701 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08145827 705.85424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08145828 705.85424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08145829 705.85424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08145830 705.85424805 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08145831 705.85430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08145832 705.85430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08145833 705.85430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08145834 705.85430908 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08145835 705.85437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08145836 705.85437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08145837 705.85437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08145838 705.85437012 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08145839 705.85443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08145840 705.85443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08145841 705.85443115 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08145842 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08145843 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08145844 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08145845 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08145846 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08145847 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08145848 705.85449219 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08145849 705.85455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08145850 705.85455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08145851 705.85455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08145852 705.85455322 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08145853 705.85461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08145854 705.85461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08145855 705.85461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08145856 705.85461426 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08145857 705.85467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08145858 705.85467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08145859 705.85467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08145860 705.85467529 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08145861 705.85473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08145862 705.85473633 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08145863 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08145864 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08145865 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08145866 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08145867 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08145868 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08145869 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08145870 705.85479736 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08145871 705.85485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08145872 705.85485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08145873 705.85485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08145874 705.85485840 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08145875 705.85491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08145876 705.85491943 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08145877 705.85498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08145878 705.85498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08145879 705.85498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08145880 705.85498047 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08145881 705.85504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08145882 705.85504150 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08145883 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08145884 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08145885 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08145886 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08145887 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08145888 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08145889 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08145890 705.85510254 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08145891 705.85516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08145892 705.85516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08145893 705.85516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08145894 705.85516357 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08145895 705.85522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08145896 705.85522461 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08145897 705.85528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08145898 705.85528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08145899 705.85528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08145900 705.85528564 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08145901 705.85534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08145902 705.85534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08145903 705.85534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08145904 705.85534668 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08145905 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08145906 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08145907 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08145908 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08145909 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08145910 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08145911 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08145912 705.85540771 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08145913 705.85546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08145914 705.85546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08145915 705.85546875 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08145916 705.85552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08145917 705.85552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08145918 705.85552979 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08145919 705.85559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08145920 705.85559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08145921 705.85559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08145922 705.85559082 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08145923 705.85565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08145924 705.85565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08145925 705.85565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08145926 705.85565186 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08145927 705.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08145928 705.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08145929 705.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08145930 705.85571289 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08145931 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08145932 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08145933 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08145934 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08145935 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08145936 705.85577393 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08145937 705.85583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08145938 705.85583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08145939 705.85583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08145940 705.85583496 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08145941 705.85589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08145942 705.85589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08145943 705.85589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08145944 705.85589600 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08145945 705.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08145946 705.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08145947 705.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08145948 705.85595703 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08145949 705.85601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08145950 705.85601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08145951 705.85601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08145952 705.85601807 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08145953 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08145954 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08145955 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08145956 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08145957 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08145958 705.85607910 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08145959 705.85614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08145960 705.85614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08145961 705.85614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08145962 705.85614014 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08145963 705.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08145964 705.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08145965 705.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08145966 705.85620117 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08145967 705.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08145968 705.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08145969 705.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08145970 705.85626221 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08145971 705.85632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08145972 705.85632324 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08145973 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08145974 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08145975 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08145976 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08145977 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08145978 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08145979 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08145980 705.85638428 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08145981 705.85644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08145982 705.85644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08145983 705.85644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08145984 705.85644531 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08145985 705.85650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08145986 705.85650635 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08145987 705.85656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08145988 705.85656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08145989 705.85656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08145990 705.85656738 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08145991 705.85662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08145992 705.85662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08145993 705.85662842 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08145994 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08145995 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08145996 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08145997 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08145998 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08145999 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08146000 705.85668945 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08146001 705.85675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08146002 705.85675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08146003 705.85675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08146004 705.85675049 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08146005 705.85681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08146006 705.85681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08146007 705.85681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08146008 705.85681152 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08146009 705.85687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08146010 705.85687256 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08146011 705.85693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08146012 705.85693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08146013 705.85693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08146014 705.85693359 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08146015 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08146016 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08146017 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08146018 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08146019 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08146020 705.85699463 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08146021 705.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08146022 705.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08146023 705.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08146024 705.85705566 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08146025 705.85711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08146026 705.85711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08146027 705.85711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08146028 705.85711670 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08146029 705.85717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08146030 705.85717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08146031 705.85717773 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08146032 705.85723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08146033 705.85723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08146034 705.85723877 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08146035 705.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08146036 705.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08146037 705.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08146038 705.85729980 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08146039 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08146040 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08146041 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08146042 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08146043 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08146044 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08146045 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08146046 705.85736084 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08146047 705.85742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08146048 705.85742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08146049 705.85742188 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08146050 705.85748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08146051 705.85748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08146052 705.85748291 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08146053 705.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08146054 705.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08146055 705.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08146056 705.85754395 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08146057 705.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08146058 705.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08146059 705.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08146060 705.85760498 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08146061 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08146062 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08146063 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08146064 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08146065 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08146066 705.85766602 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08146067 705.85772705 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08146068 705.85772705 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08146069 705.85778809 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08146070 705.85778809 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08146071 705.85778809 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08146072 705.85778809 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08146073 705.85784912 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08146074 705.85784912 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08146075 705.85784912 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08146076 705.85784912 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08146077 705.85791016 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08146078 705.85791016 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08146079 705.85791016 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08146080 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08146081 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08146082 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08146083 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08146084 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08146085 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08146086 705.85797119 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08146087 705.85803223 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08146088 705.85803223 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08146089 705.85803223 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08146090 705.85803223 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08146091 705.85809326 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08146092 705.85809326 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08146093 705.85809326 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08146094 705.85809326 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08146095 705.85815430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08146096 705.85815430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08146097 705.85815430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08146098 705.85815430 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08146099 705.85821533 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08146100 705.85821533 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08146101 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08146102 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08146103 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08146104 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08146105 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08146106 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08146107 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08146108 705.85827637 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08146109 705.85833740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08146110 705.85833740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08146111 705.85833740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08146112 705.85833740 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08146113 705.85839844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08146114 705.85839844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08146115 705.85839844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08146116 705.85839844 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08146117 705.85845947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08146118 705.85845947 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08146119 705.85852051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08146120 705.85852051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08146121 705.85852051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08146122 705.85852051 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08146123 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08146124 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08146125 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08146126 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08146127 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08146128 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08146129 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08146130 705.85858154 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08146131 705.85864258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08146132 705.85864258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08146133 705.85864258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08146134 705.85864258 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08146135 705.85870361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08146136 705.85870361 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08146137 705.85876465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08146138 705.85876465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08146139 705.85876465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08146140 705.85876465 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08146141 705.85882568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08146142 705.85882568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08146143 705.85882568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08146144 705.85882568 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08146145 705.85888672 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08146146 705.85888672 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08146147 705.85888672 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08146148 705.85888672 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08146149 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08146150 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08146151 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08146152 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08146153 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08146154 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08146155 705.85894775 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08146156 705.85900879 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08146157 705.85900879 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08146158 705.85900879 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08146159 705.85906982 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08146160 705.85906982 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08146161 705.85906982 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08146162 705.85913086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08146163 705.85913086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08146164 705.85913086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08146165 705.85919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08146166 705.85919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08146167 705.85919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08146168 705.85919189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08146169 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08146170 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08146171 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08146172 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08146173 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08146174 705.85925293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08146175 705.85931396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08146176 705.85931396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08146177 705.85931396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08146178 705.85931396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08146179 705.85937500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08146180 705.85937500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08146181 705.85937500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08146182 705.85937500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08146183 705.85943604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08146184 705.85943604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08146185 705.85943604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08146186 705.85943604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08146187 705.85949707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08146188 705.85949707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08146189 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08146190 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08146191 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08146192 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08146193 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08146194 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08146195 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08146196 705.85955811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08146197 705.85961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08146198 705.85961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08146199 705.85961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08146200 705.85961914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08146201 705.85968018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08146202 705.85968018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08146203 705.85974121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08146204 705.85974121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08146205 705.85974121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08146206 705.85974121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08146207 705.85980225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08146208 705.85980225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08146209 705.85980225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08146210 705.85980225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08146211 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08146212 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08146213 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08146214 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08146215 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08146216 705.85986328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08146217 705.85992432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08146218 705.85992432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08146219 705.85992432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08146220 705.85992432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08146221 705.85998535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08146222 705.85998535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08146223 705.85998535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08146224 705.85998535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08146225 705.86004639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08146226 705.86004639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08146227 705.86010742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08146228 705.86010742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08146229 705.86010742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08146230 705.86010742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08146231 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08146232 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08146233 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08146234 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08146235 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08146236 705.86016846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08146237 705.86022949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08146238 705.86022949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08146239 705.86022949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08146240 705.86022949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08146241 705.86029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08146242 705.86029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08146243 705.86029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08146244 705.86029053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08146245 705.86035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08146246 705.86035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08146247 705.86035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08146248 705.86035156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08146249 705.86041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08146250 705.86041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08146251 705.86041260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08146252 705.86047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08146253 705.86047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08146254 705.86047363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08146255 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08146256 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08146257 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08146258 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08146259 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08146260 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08146261 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08146262 705.86053467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08146263 705.86059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08146264 705.86059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08146265 705.86059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08146266 705.86059570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08146267 705.86065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08146268 705.86065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08146269 705.86065674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08146270 705.86071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08146271 705.86071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08146272 705.86071777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08146273 705.86077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08146274 705.86077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08146275 705.86077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08146276 705.86077881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08146277 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08146278 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08146279 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08146280 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08146281 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08146282 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08146283 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08146284 705.86083984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08146285 705.86090088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08146286 705.86090088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08146287 705.86090088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08146288 705.86096191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08146289 705.86096191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08146290 705.86096191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08146291 705.86102295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08146292 705.86102295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08146293 705.86102295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08146294 705.86102295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08146295 705.86108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08146296 705.86108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08146297 705.86108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08146298 705.86108398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08146299 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08146300 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08146301 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08146302 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08146303 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08146304 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08146305 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08146306 705.86114502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08146307 705.86120605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08146308 705.86120605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08146309 705.86126709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08146310 705.86126709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08146311 705.86126709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08146312 705.86126709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08146313 705.86132813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08146314 705.86132813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08146315 705.86132813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08146316 705.86132813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08146317 705.86138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08146318 705.86138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08146319 705.86138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08146320 705.86138916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08146321 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08146322 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08146323 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08146324 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08146325 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08146326 705.86145020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08146327 705.86151123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08146328 705.86151123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08146329 705.86151123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08146330 705.86151123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08146331 705.86157227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08146332 705.86157227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08146333 705.86157227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08146334 705.86157227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08146335 705.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08146336 705.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08146337 705.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08146338 705.86163330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08146339 705.86169434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08146340 705.86169434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08146341 705.86169434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08146342 705.86169434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08146343 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08146344 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08146345 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08146346 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08146347 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08146348 705.86175537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08146349 705.86181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08146350 705.86181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08146351 705.86181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08146352 705.86181641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08146353 705.86187744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08146354 705.86187744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08146355 705.86193848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08146356 705.86193848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08146357 705.86193848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08146358 705.86193848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08146359 705.86199951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08146360 705.86199951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08146361 705.86199951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08146362 705.86199951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08146363 705.86206055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08146364 705.86206055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08146365 705.86206055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08146366 705.86206055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08146367 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08146368 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08146369 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08146370 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08146371 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08146372 705.86212158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08146373 705.86218262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08146374 705.86218262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08146375 705.86218262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08146376 705.86218262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08146377 705.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08146378 705.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08146379 705.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08146380 705.86224365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08146381 705.86230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08146382 705.86230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08146383 705.86230469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08146384 705.86236572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08146385 705.86236572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08146386 705.86236572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08146387 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08146388 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08146389 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08146390 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08146391 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08146392 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08146393 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08146394 705.86242676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08146395 705.86248779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08146396 705.86248779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08146397 705.86248779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08146398 705.86248779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08146399 705.86254883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08146400 705.86254883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08146401 705.86254883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08146402 705.86260986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08146403 705.86260986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08146404 705.86260986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08146405 705.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08146406 705.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08146407 705.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08146408 705.86267090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08146409 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08146410 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08146411 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08146412 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08146413 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08146414 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08146415 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08146416 705.86273193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08146417 705.86279297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08146418 705.86279297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08146419 705.86279297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08146420 705.86279297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08146421 705.86285400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08146422 705.86285400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08146423 705.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08146424 705.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08146425 705.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08146426 705.86291504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08146427 705.86297607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08146428 705.86297607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08146429 705.86297607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08146430 705.86297607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08146431 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08146432 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08146433 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08146434 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08146435 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08146436 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08146437 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08146438 705.86303711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08146439 705.86309814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08146440 705.86309814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08146441 705.86315918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08146442 705.86315918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08146443 705.86315918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08146444 705.86315918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08146445 705.86322021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08146446 705.86322021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08146447 705.86322021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08146448 705.86322021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08146449 705.86328125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08146450 705.86328125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08146451 705.86328125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08146452 705.86328125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08146453 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08146454 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08146455 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08146456 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08146457 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08146458 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08146459 705.86334229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08146460 705.86340332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08146461 705.86340332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08146462 705.86340332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08146463 705.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08146464 705.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08146465 705.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08146466 705.86346436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08146467 705.86352539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08146468 705.86352539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08146469 705.86352539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08146470 705.86352539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08146471 705.86358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08146472 705.86358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08146473 705.86358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08146474 705.86358643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08146475 705.86364746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08146476 705.86364746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08146477 705.86364746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08146478 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08146479 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08146480 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08146481 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08146482 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08146483 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08146484 705.86370850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08146485 705.86376953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08146486 705.86376953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08146487 705.86376953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08146488 705.86376953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08146489 705.86383057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08146490 705.86383057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08146491 705.86383057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08146492 705.86383057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08146493 705.86389160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08146494 705.86389160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08146495 705.86389160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08146496 705.86389160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08146497 705.86395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08146498 705.86395264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08146499 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08146500 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08146501 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08146502 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08146503 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08146504 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08146505 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08146506 705.86401367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08146507 705.86407471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08146508 705.86407471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08146509 705.86407471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08146510 705.86407471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08146511 705.86413574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08146512 705.86413574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08146513 705.86413574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08146514 705.86413574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08146515 705.86419678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08146516 705.86419678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08146517 705.86425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08146518 705.86425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08146519 705.86425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08146520 705.86425781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08146521 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08146522 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08146523 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08146524 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08146525 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08146526 705.86431885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08146527 705.86437988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08146528 705.86437988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08146529 705.86437988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08146530 705.86437988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08146531 705.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08146532 705.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08146533 705.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08146534 705.86444092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08146535 705.86450195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08146536 705.86450195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08146537 705.86450195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08146538 705.86456299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08146539 705.86456299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08146540 705.86456299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08146541 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08146542 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08146543 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08146544 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08146545 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08146546 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08146547 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08146548 705.86462402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08146549 705.86468506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08146550 705.86468506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08146551 705.86468506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08146552 705.86474609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08146553 705.86474609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08146554 705.86474609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08146555 705.86480713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08146556 705.86480713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08146557 705.86480713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08146558 705.86480713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08146559 705.86486816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08146560 705.86486816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08146561 705.86486816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08146562 705.86486816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08146563 705.86492920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08146564 705.86492920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08146565 705.86492920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08146566 705.86492920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08146567 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08146568 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08146569 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08146570 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08146571 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08146572 705.86499023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08146573 705.86505127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08146574 705.86505127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08146575 705.86505127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08146576 705.86505127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08146577 705.86511230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08146578 705.86511230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08146579 705.86511230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08146580 705.86511230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08146581 705.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08146582 705.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08146583 705.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08146584 705.86517334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08146585 705.86523438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08146586 705.86523438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08146587 705.86523438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08146588 705.86523438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08146589 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08146590 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08146591 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08146592 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08146593 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08146594 705.86529541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08146595 705.86535645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08146596 705.86535645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08146597 705.86535645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08146598 705.86541748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08146599 705.86541748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08146600 705.86541748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08146601 705.86547852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08146602 705.86547852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08146603 705.86547852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08146604 705.86547852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08146605 705.86553955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08146606 705.86553955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08146607 705.86553955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08146608 705.86553955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08146609 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08146610 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08146611 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08146612 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08146613 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08146614 705.86560059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08146615 705.86566162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08146616 705.86566162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08146617 705.86566162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08146618 705.86566162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08146619 705.86572266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08146620 705.86572266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08146621 705.86572266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08146622 705.86572266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08146623 705.86578369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08146624 705.86578369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08146625 705.86578369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08146626 705.86578369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08146627 705.86584473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08146628 705.86584473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08146629 705.86584473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08146630 705.86584473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08146631 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08146632 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08146633 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08146634 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08146635 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08146636 705.86590576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08146637 705.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08146638 705.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08146639 705.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08146640 705.86596680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08146641 705.86602783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08146642 705.86602783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08146643 705.86602783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08146644 705.86602783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08146645 705.86608887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08146646 705.86608887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08146647 705.86608887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08146648 705.86614990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08146649 705.86614990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08146650 705.86614990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08146651 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08146652 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08146653 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08146654 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08146655 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08146656 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08146657 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08146658 705.86621094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08146659 705.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08146660 705.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08146661 705.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08146662 705.86627197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08146663 705.86633301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08146664 705.86633301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08146665 705.86639404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08146666 705.86639404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08146667 705.86639404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08146668 705.86639404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08146669 705.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08146670 705.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08146671 705.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08146672 705.86645508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08146673 705.86651611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08146674 705.86651611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08146675 705.86651611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08146676 705.86651611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08146677 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08146678 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08146679 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08146680 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08146681 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08146682 705.86657715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08146683 705.86663818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08146684 705.86663818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08146685 705.86663818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08146686 705.86663818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08146687 705.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08146688 705.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08146689 705.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08146690 705.86669922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08146691 705.86676025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08146692 705.86676025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08146693 705.86676025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08146694 705.86676025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08146695 705.86682129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08146696 705.86682129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08146697 705.86682129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08146698 705.86682129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08146699 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08146700 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08146701 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08146702 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08146703 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08146704 705.86688232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08146705 705.86694336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08146706 705.86694336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08146707 705.86694336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08146708 705.86694336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08146709 705.86700439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08146710 705.86700439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08146711 705.86700439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08146712 705.86700439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08146713 705.86706543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08146714 705.86706543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08146715 705.86706543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08146716 705.86706543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08146717 705.86712646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08146718 705.86712646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08146719 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08146720 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08146721 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08146722 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08146723 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08146724 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08146725 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08146726 705.86718750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08146727 705.86724854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08146728 705.86724854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08146729 705.86724854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08146730 705.86724854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08146731 705.86730957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08146732 705.86730957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08146733 705.86730957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08146734 705.86737061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08146735 705.86737061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08146736 705.86737061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08146737 705.86743164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08146738 705.86743164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08146739 705.86743164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08146740 705.86743164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08146741 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08146742 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08146743 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08146744 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08146745 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08146746 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08146747 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08146748 705.86749268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08146749 705.86755371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08146750 705.86755371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08146751 705.86755371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08146752 705.86761475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08146753 705.86761475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08146754 705.86761475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08146755 705.86767578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08146756 705.86767578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08146757 705.86767578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08146758 705.86767578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08146759 705.86773682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08146760 705.86773682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08146761 705.86773682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08146762 705.86773682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08146763 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08146764 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08146765 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08146766 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08146767 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08146768 705.86779785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08146769 705.86785889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08146770 705.86785889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08146771 705.86785889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08146772 705.86785889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08146773 705.86791992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08146774 705.86791992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08146775 705.86791992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08146776 705.86791992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08146777 705.86798096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08146778 705.86798096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08146779 705.86798096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08146780 705.86798096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08146781 705.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08146782 705.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08146783 705.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08146784 705.86804199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08146785 705.86810303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08146786 705.86810303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08146787 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08146788 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08146789 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08146790 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08146791 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08146792 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08146793 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08146794 705.86816406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08146795 705.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08146796 705.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08146797 705.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08146798 705.86822510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08146799 705.86828613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08146800 705.86828613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08146801 705.86828613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08146802 705.86828613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08146803 705.86834717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08146804 705.86834717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08146805 705.86840820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08146806 705.86840820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08146807 705.86840820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08146808 705.86840820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08146809 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08146810 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08146811 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08146812 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08146813 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08146814 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08146815 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08146816 705.86846924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08146817 705.86853027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08146818 705.86853027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08146819 705.86853027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08146820 705.86853027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08146821 705.86859131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08146822 705.86859131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08146823 705.86859131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08146824 705.86865234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08146825 705.86865234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08146826 705.86865234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08146827 705.86871338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08146828 705.86871338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08146829 705.86871338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08146830 705.86871338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08146831 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08146832 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08146833 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08146834 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08146835 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08146836 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08146837 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08146838 705.86877441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08146839 705.86883545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08146840 705.86883545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08146841 705.86889648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08146842 705.86889648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08146843 705.86889648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08146844 705.86889648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08146845 705.86895752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08146846 705.86895752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08146847 705.86895752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08146848 705.86895752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08146849 705.86901855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08146850 705.86901855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08146851 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08146852 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08146853 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08146854 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08146855 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08146856 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08146857 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08146858 705.86907959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08146859 705.86914063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08146860 705.86914063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08146861 705.86914063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08146862 705.86914063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08146863 705.86920166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08146864 705.86920166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08146865 705.86920166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08146866 705.86926270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08146867 705.86926270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08146868 705.86926270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08146869 705.86932373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08146870 705.86932373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08146871 705.86932373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08146872 705.86932373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08146873 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08146874 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08146875 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08146876 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08146877 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08146878 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08146879 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08146880 705.86938477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08146881 705.86944580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08146882 705.86944580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08146883 705.86944580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08146884 705.86944580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08146885 705.86950684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08146886 705.86950684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08146887 705.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08146888 705.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08146889 705.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08146890 705.86956787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08146891 705.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08146892 705.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08146893 705.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08146894 705.86962891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08146895 705.86968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08146896 705.86968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08146897 705.86968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08146898 705.86968994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08146899 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08146900 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08146901 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08146902 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08146903 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08146904 705.86975098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08146905 705.86981201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08146906 705.86981201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08146907 705.86981201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08146908 705.86981201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08146909 705.86987305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08146910 705.86987305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08146911 705.86987305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08146912 705.86987305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08146913 705.86993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08146914 705.86993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08146915 705.86993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08146916 705.86993408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08146917 705.86999512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08146918 705.86999512 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08146919 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08146920 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08146921 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08146922 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08146923 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08146924 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08146925 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08146926 705.87005615 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08146927 705.87011719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08146928 705.87011719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08146929 705.87011719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08146930 705.87011719 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08146931 705.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08146932 705.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08146933 705.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08146934 705.87017822 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08146935 705.87023926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08146936 705.87023926 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08146937 705.87030029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08146938 705.87030029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08146939 705.87030029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08146940 705.87030029 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08146941 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08146942 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08146943 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08146944 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08146945 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08146946 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08146947 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08146948 705.87036133 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08146949 705.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08146950 705.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08146951 705.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08146952 705.87042236 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08146953 705.87048340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08146954 705.87048340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08146955 705.87048340 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08146956 705.87054443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08146957 705.87054443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08146958 705.87054443 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08146959 705.87060547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08146960 705.87060547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08146961 705.87060547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08146962 705.87060547 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08146963 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08146964 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08146965 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08146966 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08146967 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08146968 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08146969 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08146970 705.87066650 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08146971 705.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08146972 705.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08146973 705.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08146974 705.87072754 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08146975 705.87078857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08146976 705.87078857 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08146977 705.87084961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08146978 705.87084961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08146979 705.87084961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08146980 705.87084961 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08146981 705.87091064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08146982 705.87091064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08146983 705.87091064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08146984 705.87091064 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08146985 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08146986 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08146987 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08146988 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08146989 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08146990 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08146991 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08146992 705.87097168 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08146993 705.87103271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08146994 705.87103271 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08146995 705.87109375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08146996 705.87109375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08146997 705.87109375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08146998 705.87109375 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08146999 705.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08147000 705.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08147001 705.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08147002 705.87115479 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08147003 705.87121582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08147004 705.87121582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08147005 705.87121582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08147006 705.87121582 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08147007 705.87127686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08147008 705.87127686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08147009 705.87127686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08147010 705.87127686 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08147011 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08147012 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08147013 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08147014 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08147015 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08147016 705.87133789 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08147017 705.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08147018 705.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08147019 705.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08147020 705.87139893 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08147021 705.87145996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08147022 705.87145996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08147023 705.87145996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08147024 705.87145996 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08147025 705.87152100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08147026 705.87152100 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08147027 705.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08147028 705.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08147029 705.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08147030 705.87158203 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08147031 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08147032 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08147033 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08147034 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08147035 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08147036 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08147037 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08147038 705.87164307 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08147039 705.87170410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08147040 705.87170410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08147041 705.87170410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08147042 705.87170410 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08147043 705.87176514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08147044 705.87176514 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08147045 705.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08147046 705.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08147047 705.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08147048 705.87182617 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08147049 705.87188721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08147050 705.87188721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08147051 705.87188721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08147052 705.87188721 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08147053 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08147054 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08147055 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08147056 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08147057 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08147058 705.87194824 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08147059 705.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08147060 705.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08147061 705.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08147062 705.87200928 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08147063 705.87207031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08147064 705.87207031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08147065 705.87207031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08147066 705.87207031 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08147067 705.87213135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08147068 705.87213135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08147069 705.87213135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08147070 705.87213135 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08147071 705.87219238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08147072 705.87219238 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08147073 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08147074 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08147075 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08147076 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08147077 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08147078 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08147079 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08147080 705.87225342 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08147081 705.87231445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08147082 705.87231445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08147083 705.87231445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08147084 705.87231445 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08147085 705.87237549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08147086 705.87237549 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08147087 705.87243652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08147088 705.87243652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08147089 705.87243652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08147090 705.87243652 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08147091 705.87249756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08147092 705.87249756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08147093 705.87249756 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08147094 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08147095 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08147096 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08147097 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08147098 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08147099 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08147100 705.87255859 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08147101 705.87261963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08147102 705.87261963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08147103 705.87261963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08147104 705.87261963 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08147105 705.87268066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08147106 705.87268066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08147107 705.87268066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08147108 705.87268066 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08147109 705.87274170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08147110 705.87274170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08147111 705.87274170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08147112 705.87274170 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08147113 705.87280273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08147114 705.87280273 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08147115 705.87286377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08147116 705.87286377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08147117 705.87286377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08147118 705.87286377 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08147119 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08147120 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08147121 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08147122 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08147123 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08147124 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08147125 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08147126 705.87292480 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08147127 705.87298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08147128 705.87298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08147129 705.87298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08147130 705.87298584 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08147131 705.87304688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08147132 705.87304688 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08147133 705.87310791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08147134 705.87310791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08147135 705.87310791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08147136 705.87310791 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08147137 705.87316895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08147138 705.87316895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08147139 705.87316895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08147140 705.87316895 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08147141 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08147142 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08147143 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08147144 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08147145 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08147146 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08147147 705.87322998 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08147148 705.87329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08147149 705.87329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08147150 705.87329102 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08147151 705.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08147152 705.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08147153 705.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08147154 705.87335205 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08147155 705.87341309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08147156 705.87341309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08147157 705.87341309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08147158 705.87341309 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08147159 705.87347412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08147160 705.87347412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08147161 705.87347412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08147162 705.87347412 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08147163 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08147164 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08147165 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08147166 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08147167 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08147168 705.87353516 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08147169 705.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08147170 705.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08147171 705.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08147172 705.87359619 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08147173 705.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08147174 705.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08147175 705.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08147176 705.87365723 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08147177 705.87371826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08147178 705.87371826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08147179 705.87371826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08147180 705.87371826 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08147181 705.87377930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08147182 705.87377930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08147183 705.87377930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08147184 705.87377930 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08147185 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08147186 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08147187 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08147188 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08147189 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08147190 705.87384033 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08147191 705.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08147192 705.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08147193 705.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08147194 705.87390137 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08147195 705.87396240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08147196 705.87396240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08147197 705.87396240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08147198 705.87396240 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08147199 705.87402344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08147200 705.87402344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08147201 705.87402344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08147202 705.87402344 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08147203 705.87408447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08147204 705.87408447 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08147205 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08147206 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08147207 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08147208 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08147209 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08147210 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08147211 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08147212 705.87414551 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08147213 705.87420654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08147214 705.87420654 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08147215 705.87426758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08147216 705.87426758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08147217 705.87426758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08147218 705.87426758 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08147219 705.87432861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08147220 705.87432861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08147221 705.87432861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08147222 705.87432861 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08147223 705.87438965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08147224 705.87438965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08147225 705.87438965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08147226 705.87438965 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08147227 705.87445068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08147228 705.87445068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08147229 705.87445068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08147230 705.87445068 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08147231 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08147232 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08147233 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08147234 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08147235 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08147236 705.87451172 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08147237 705.87457275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08147238 705.87457275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08147239 705.87457275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08147240 705.87457275 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08147241 705.87463379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08147242 705.87463379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08147243 705.87463379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08147244 705.87463379 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08147245 705.87469482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08147246 705.87469482 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08147247 705.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08147248 705.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08147249 705.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08147250 705.87475586 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08147251 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08147252 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08147253 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08147254 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08147255 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08147256 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08147257 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08147258 705.87481689 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08147259 705.87487793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08147260 705.87487793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08147261 705.87487793 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08147262 705.87493896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08147263 705.87493896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08147264 705.87493896 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08147265 705.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08147266 705.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08147267 705.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08147268 705.87500000 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08147269 705.87506104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08147270 705.87506104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08147271 705.87506104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08147272 705.87506104 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08147273 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08147274 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08147275 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08147276 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08147277 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08147278 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08147279 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08147280 705.87512207 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08147281 705.87518311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08147282 705.87518311 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08147283 705.87524414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08147284 705.87524414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08147285 705.87524414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08147286 705.87524414 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08147287 705.87530518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08147288 705.87530518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08147289 705.87530518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08147290 705.87530518 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08147291 705.87536621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08147292 705.87536621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08147293 705.87536621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08147294 705.87536621 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08147295 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08147296 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08147297 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08147298 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08147299 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08147300 705.87542725 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08147301 705.87548828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08147302 705.87548828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08147303 705.87548828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08147304 705.87548828 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08147305 705.87554932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08147306 705.87554932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08147307 705.87554932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08147308 705.87554932 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08147309 705.87561035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08147310 705.87561035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08147311 705.87561035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08147312 705.87561035 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08147313 705.87567139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08147314 705.87567139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08147315 705.87567139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08147316 705.87567139 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08147317 705.87573242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08147318 705.87573242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08147319 705.87573242 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08147320 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08147321 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08147322 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08147323 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08147324 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08147325 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08147326 705.87579346 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08147327 705.87585449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08147328 705.87585449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08147329 705.87585449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08147330 705.87585449 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08147331 705.87591553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08147332 705.87591553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08147333 705.87591553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08147334 705.87591553 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08147335 705.87597656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08147336 705.87597656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08147337 705.87597656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08147338 705.87597656 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08147339 705.87603760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08147340 705.87603760 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08147341 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08147342 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08147343 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08147344 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08147345 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08147346 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08147347 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08147348 705.87609863 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08147349 705.87615967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08147350 705.87615967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08147351 705.87615967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08147352 705.87615967 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08147353 705.87622070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08147354 705.87622070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08147355 705.87622070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08147356 705.87622070 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08147357 705.87628174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08147358 705.87628174 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08147359 705.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08147360 705.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08147361 705.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08147362 705.87634277 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08147363 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08147364 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08147365 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08147366 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08147367 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08147368 705.87640381 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08147369 705.87646484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08147370 705.87646484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08147371 705.87646484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08147372 705.87646484 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08147373 705.87652588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08147374 705.87652588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08147375 705.87652588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08147376 705.87652588 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08147377 705.87658691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08147378 705.87658691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08147379 705.87658691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08147380 705.87658691 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08147381 705.87664795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08147382 705.87664795 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08147383 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08147384 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08147385 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08147386 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08147387 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08147388 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08147389 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08147390 705.87670898 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08147391 705.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08147392 705.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08147393 705.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08147394 705.87677002 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08147395 705.87683105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08147396 705.87683105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08147397 705.87683105 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08147398 705.87689209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08147399 705.87689209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08147400 705.87689209 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08147401 705.87695313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08147402 705.87695313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08147403 705.87695313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08147404 705.87695313 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08147405 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08147406 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08147407 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08147408 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08147409 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08147410 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08147411 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -08147412 705.87701416 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4940 -08147413 705.87707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -08147414 705.87707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4950 -08147415 705.87707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -08147416 705.87707520 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4960 -08147417 705.87713623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -08147418 705.87713623 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4970 -08147419 705.87719727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -08147420 705.87719727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4980 -08147421 705.87719727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -08147422 705.87719727 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4990 -08147423 705.87725830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -08147424 705.87725830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a0 -08147425 705.87725830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -08147426 705.87725830 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b0 -08147427 705.87731934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -08147428 705.87731934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c0 -08147429 705.87731934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -08147430 705.87731934 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d0 -08147431 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -08147432 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e0 -08147433 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -08147434 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f0 -08147435 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -08147436 705.87738037 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a00 -08147437 705.87744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -08147438 705.87744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a10 -08147439 705.87744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -08147440 705.87744141 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a20 -08147441 705.87750244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -08147442 705.87750244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a30 -08147443 705.87750244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -08147444 705.87750244 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a40 -08147445 705.87756348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -08147446 705.87756348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a50 -08147447 705.87756348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -08147448 705.87756348 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a60 -08147449 705.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -08147450 705.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a70 -08147451 705.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -08147452 705.87762451 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a80 -08147453 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -08147454 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a90 -08147455 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -08147456 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa0 -08147457 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -08147458 705.87768555 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab0 -08147459 705.87774658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -08147460 705.87774658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac0 -08147461 705.87774658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -08147462 705.87774658 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad0 -08147463 705.87780762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -08147464 705.87780762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae0 -08147465 705.87780762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -08147466 705.87780762 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af0 -08147467 705.87786865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -08147468 705.87786865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b00 -08147469 705.87786865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -08147470 705.87786865 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b10 -08147471 705.87792969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -08147472 705.87792969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b20 -08147473 705.87792969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -08147474 705.87792969 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b30 -08147475 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -08147476 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b40 -08147477 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -08147478 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b50 -08147479 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -08147480 705.87799072 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b60 -08147481 705.87805176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -08147482 705.87805176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b70 -08147483 705.87805176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -08147484 705.87805176 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b80 -08147485 705.87811279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -08147486 705.87811279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b90 -08147487 705.87811279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -08147488 705.87811279 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba0 -08147489 705.87817383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -08147490 705.87817383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb0 -08147491 705.87817383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -08147492 705.87817383 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc0 -08147493 705.87823486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -08147494 705.87823486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd0 -08147495 705.87823486 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -08147496 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be0 -08147497 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -08147498 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf0 -08147499 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -08147500 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c00 -08147501 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -08147502 705.87829590 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c10 -08147503 705.87835693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -08147504 705.87835693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c20 -08147505 705.87835693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -08147506 705.87835693 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c30 -08147507 705.87841797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -08147508 705.87841797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c40 -08147509 705.87841797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -08147510 705.87841797 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c50 -08147511 705.87847900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -08147512 705.87847900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c60 -08147513 705.87847900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -08147514 705.87847900 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c70 -08147515 705.87854004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -08147516 705.87854004 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c80 -08147517 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -08147518 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c90 -08147519 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -08147520 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca0 -08147521 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -08147522 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb0 -08147523 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -08147524 705.87860107 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc0 -08147525 705.87866211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -08147526 705.87866211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd0 -08147527 705.87866211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -08147528 705.87866211 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce0 -08147529 705.87872314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -08147530 705.87872314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf0 -08147531 705.87872314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -08147532 705.87872314 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d00 -08147533 705.87878418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -08147534 705.87878418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d10 -08147535 705.87878418 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -08147536 705.87884521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d20 -08147537 705.87884521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -08147538 705.87884521 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d30 -08147539 705.87890625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -08147540 705.87890625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d40 -08147541 705.87890625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -08147542 705.87890625 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d50 -08147543 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -08147544 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d60 -08147545 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -08147546 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d70 -08147547 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -08147548 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d80 -08147549 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -08147550 705.87896729 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d90 -08147551 705.87902832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -08147552 705.87902832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da0 -08147553 705.87902832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -08147554 705.87902832 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db0 -08147555 705.87908936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -08147556 705.87908936 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc0 -08147557 705.87915039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -08147558 705.87915039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd0 -08147559 705.87915039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -08147560 705.87915039 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de0 -08147561 705.87921143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -08147562 705.87921143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df0 -08147563 705.87921143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -08147564 705.87921143 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e00 -08147565 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -08147566 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e10 -08147567 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -08147568 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e20 -08147569 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -08147570 705.87927246 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e30 -08147571 705.87933350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -08147572 705.87933350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e40 -08147573 705.87933350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -08147574 705.87933350 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e50 -08147575 705.87939453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -08147576 705.87939453 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e60 -08147577 705.87945557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -08147578 705.87945557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e70 -08147579 705.87945557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -08147580 705.87945557 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e80 -08147581 705.87951660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -08147582 705.87951660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e90 -08147583 705.87951660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -08147584 705.87951660 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea0 -08147585 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -08147586 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb0 -08147587 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -08147588 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec0 -08147589 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -08147590 705.87957764 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed0 -08147591 705.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -08147592 705.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee0 -08147593 705.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -08147594 705.87963867 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef0 -08147595 705.87969971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -08147596 705.87969971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f00 -08147597 705.87969971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -08147598 705.87969971 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f10 -08147599 705.87976074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -08147600 705.87976074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f20 -08147601 705.87976074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -08147602 705.87976074 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f30 -08147603 705.87982178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -08147604 705.87982178 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f40 -08147605 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -08147606 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f50 -08147607 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -08147608 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f60 -08147609 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -08147610 705.87988281 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f70 -08147611 705.87994385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -08147612 705.87994385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f80 -08147613 705.87994385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -08147614 705.87994385 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f90 -08147615 705.88000488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -08147616 705.88000488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa0 -08147617 705.88000488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -08147618 705.88000488 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb0 -08147619 705.88006592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -08147620 705.88006592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc0 -08147621 705.88006592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -08147622 705.88006592 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd0 -08147623 705.88012695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -08147624 705.88012695 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe0 -08147625 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -08147626 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff0 -08147627 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -08147628 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5000 -08147629 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -08147630 705.88018799 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5010 -08147631 705.88024902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -08147632 705.88024902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5020 -08147633 705.88024902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -08147634 705.88024902 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5030 -08147635 705.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -08147636 705.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5040 -08147637 705.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -08147638 705.88031006 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5050 -08147639 705.88037109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -08147640 705.88037109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5060 -08147641 705.88037109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -08147642 705.88037109 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5070 -08147643 705.88043213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -08147644 705.88043213 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5080 -08147645 705.88049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -08147646 705.88049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5090 -08147647 705.88049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -08147648 705.88049316 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a0 -08147649 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -08147650 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b0 -08147651 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -08147652 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c0 -08147653 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -08147654 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d0 -08147655 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -08147656 705.88055420 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e0 -08147657 705.88061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -08147658 705.88061523 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f0 -08147659 705.88067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -08147660 705.88067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5100 -08147661 705.88067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -08147662 705.88067627 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5110 -08147663 705.88073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -08147664 705.88073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5120 -08147665 705.88073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -08147666 705.88073730 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5130 -08147667 705.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -08147668 705.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5140 -08147669 705.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -08147670 705.88079834 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5150 -08147671 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -08147672 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5160 -08147673 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -08147674 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5170 -08147675 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -08147676 705.88085938 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5180 -08147677 705.88092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -08147678 705.88092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5190 -08147679 705.88092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -08147680 705.88092041 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a0 -08147681 705.88098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -08147682 705.88098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b0 -08147683 705.88098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -08147684 705.88098145 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c0 -08147685 705.88104248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -08147686 705.88104248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d0 -08147687 705.88104248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -08147688 705.88104248 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e0 -08147689 705.88110352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -08147690 705.88110352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f0 -08147691 705.88110352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -08147692 705.88110352 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5200 -08147693 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -08147694 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5210 -08147695 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -08147696 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5220 -08147697 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -08147698 705.88116455 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5230 -08147699 705.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -08147700 705.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5240 -08147701 705.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -08147702 705.88122559 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5250 -08147703 705.88128662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -08147704 705.88128662 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5270 -08147705 705.88134766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -08147706 705.88134766 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5280 -08147707 705.88140869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -08147708 705.88140869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a0 -08147709 705.88140869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -08147710 705.88140869 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b0 -08147711 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -08147712 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c0 -08147713 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -08147714 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d0 -08147715 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -08147716 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e0 -08147717 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -08147718 705.88146973 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f0 -08147719 705.88153076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -08147720 705.88153076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5300 -08147721 705.88153076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -08147722 705.88153076 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5310 -08147723 705.88159180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -08147724 705.88159180 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5320 -08147725 705.88165283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -08147726 705.88165283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5330 -08147727 705.88165283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -08147728 705.88165283 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5340 -08147729 705.88171387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -08147730 705.88171387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5350 -08147731 705.88171387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -08147732 705.88171387 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5360 -08147733 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -08147734 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5370 -08147735 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -08147736 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5380 -08147737 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -08147738 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5390 -08147739 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -08147740 705.88177490 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a0 -08147741 705.88183594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -08147742 705.88183594 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b0 -08147743 705.88189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -08147744 705.88189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c0 -08147745 705.88189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -08147746 705.88189697 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d0 -08147747 705.88195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -08147748 705.88195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e0 -08147749 705.88195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -08147750 705.88195801 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f0 -08147751 705.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -08147752 705.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5400 -08147753 705.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -08147754 705.88201904 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5410 -08147755 705.88208008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -08147756 705.88208008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5420 -08147757 705.88208008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -08147758 705.88208008 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5430 -08147759 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -08147760 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5440 -08147761 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -08147762 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5450 -08147763 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -08147764 705.88214111 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5460 -08147765 705.88220215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -08147766 705.88220215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5470 -08147767 705.88220215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -08147768 705.88220215 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5480 -08147769 705.88226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -08147770 705.88226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5490 -08147771 705.88226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -08147772 705.88226318 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a0 -08147773 705.88232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -08147774 705.88232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b0 -08147775 705.88232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -08147776 705.88232422 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c0 -08147777 705.88238525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -08147778 705.88238525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d0 -08147779 705.88238525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -08147780 705.88238525 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e0 -08147781 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -08147782 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f0 -08147783 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -08147784 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5500 -08147785 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -08147786 705.88244629 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5510 -08147787 705.88250732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -08147788 705.88250732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5520 -08147789 705.88250732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -08147790 705.88250732 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5530 -08147791 705.88256836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -08147792 705.88256836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5540 -08147793 705.88256836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -08147794 705.88256836 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5550 -08147795 705.88262939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -08147796 705.88262939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5560 -08147797 705.88262939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -08147798 705.88262939 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5570 -08147799 705.88269043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -08147800 705.88269043 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5580 -08147801 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -08147802 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5590 -08147803 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -08147804 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a0 -08147805 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -08147806 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b0 -08147807 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -08147808 705.88275146 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c0 -08147809 705.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -08147810 705.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d0 -08147811 705.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -08147812 705.88281250 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e0 -08147813 705.88287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -08147814 705.88287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f0 -08147815 705.88287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -08147816 705.88287354 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5600 -08147817 705.88293457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -08147818 705.88293457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5610 -08147819 705.88293457 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -08147820 705.88299561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5620 -08147821 705.88299561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -08147822 705.88299561 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5630 -08147823 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -08147824 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5640 -08147825 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -08147826 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5650 -08147827 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -08147828 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5660 -08147829 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -08147830 705.88305664 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5670 -08147831 705.88311768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -08147832 705.88311768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5680 -08147833 705.88311768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -08147834 705.88311768 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5690 -08147835 705.88317871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -08147836 705.88317871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a0 -08147837 705.88317871 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -08147838 705.88323975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b0 -08147839 705.88323975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -08147840 705.88323975 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c0 -08147841 705.88330078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -08147842 705.88330078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d0 -08147843 705.88330078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -08147844 705.88330078 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e0 -08147845 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -08147846 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f0 -08147847 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -08147848 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5700 -08147849 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -08147850 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5710 -08147851 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -08147852 705.88336182 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5720 -08147853 705.88342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -08147854 705.88342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5730 -08147855 705.88342285 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -08147856 705.88348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5740 -08147857 705.88348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -08147858 705.88348389 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5750 -08147859 705.88354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -08147860 705.88354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5760 -08147861 705.88354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -08147862 705.88354492 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5770 -08147863 705.88360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -08147864 705.88360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5780 -08147865 705.88360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -08147866 705.88360596 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5790 -08147867 705.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -08147868 705.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a0 -08147869 705.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -08147870 705.88366699 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b0 -08147871 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -08147872 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c0 -08147873 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -08147874 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d0 -08147875 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -08147876 705.88372803 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e0 -08147877 705.88378906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -08147878 705.88378906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f0 -08147879 705.88378906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -08147880 705.88378906 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5800 -08147881 705.88385010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -08147882 705.88385010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5810 -08147883 705.88385010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -08147884 705.88385010 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5820 -08147885 705.88391113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -08147886 705.88391113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5830 -08147887 705.88391113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -08147888 705.88391113 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5840 -08147889 705.88397217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -08147890 705.88397217 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5850 -08147891 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -08147892 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5860 -08147893 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -08147894 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5870 -08147895 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -08147896 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5880 -08147897 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -08147898 705.88403320 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5890 -08147899 705.88409424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -08147900 705.88409424 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a0 -08147901 705.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -08147902 705.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b0 -08147903 705.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -08147904 705.88415527 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c0 -08147905 705.88421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -08147906 705.88421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d0 -08147907 705.88421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -08147908 705.88421631 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e0 -08147909 705.88427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -08147910 705.88427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f0 -08147911 705.88427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -08147912 705.88427734 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5900 -08147913 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -08147914 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5910 -08147915 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -08147916 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5920 -08147917 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -08147918 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5930 -08147919 705.88433838 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -08147920 705.88439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5940 -08147921 705.88439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -08147922 705.88439941 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5950 -08147923 705.88446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -08147924 705.88446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5960 -08147925 705.88446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -08147926 705.88446045 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5970 -08147927 705.88452148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -08147928 705.88452148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5980 -08147929 705.88452148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -08147930 705.88452148 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5990 -08147931 705.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -08147932 705.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a0 -08147933 705.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -08147934 705.88458252 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b0 -08147935 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -08147936 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c0 -08147937 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -08147938 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d0 -08147939 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -08147940 705.88464355 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e0 -08147941 705.88470459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -08147942 705.88470459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f0 -08147943 705.88470459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -08147944 705.88470459 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a00 -08147945 705.88476563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -08147946 705.88476563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a10 -08147947 705.88476563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -08147948 705.88476563 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a20 -08147949 705.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -08147950 705.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a30 -08147951 705.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -08147952 705.88482666 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a40 -08147953 705.88488770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -08147954 705.88488770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a50 -08147955 705.88488770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -08147956 705.88488770 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a60 -08147957 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -08147958 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a70 -08147959 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -08147960 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a80 -08147961 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -08147962 705.88494873 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a90 -08147963 705.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -08147964 705.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa0 -08147965 705.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -08147966 705.88500977 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab0 -08147967 705.88507080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -08147968 705.88507080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac0 -08147969 705.88507080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -08147970 705.88507080 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad0 -08147971 705.88513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -08147972 705.88513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae0 -08147973 705.88513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -08147974 705.88513184 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af0 -08147975 705.88519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -08147976 705.88519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b00 -08147977 705.88519287 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -08147978 705.88525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b10 -08147979 705.88525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -08147980 705.88525391 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b20 -08147981 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -08147982 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b30 -08147983 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -08147984 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b40 -08147985 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -08147986 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b50 -08147987 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -08147988 705.88531494 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b60 -08147989 705.88537598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -08147990 705.88537598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b70 -08147991 705.88537598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -08147992 705.88537598 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b80 -08147993 705.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -08147994 705.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b90 -08147995 705.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -08147996 705.88543701 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba0 -08147997 705.88549805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -08147998 705.88549805 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb0 -08147999 705.88555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -08148000 705.88555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc0 -08148001 705.88555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -08148002 705.88555908 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd0 -08148003 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -08148004 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be0 -08148005 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -08148006 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf0 -08148007 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -08148008 705.88562012 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c00 -08148009 705.88568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -08148010 705.88568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c10 -08148011 705.88568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -08148012 705.88568115 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c20 -08148013 705.88574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -08148014 705.88574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c30 -08148015 705.88574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -08148016 705.88574219 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c40 -08148017 705.88580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -08148018 705.88580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c50 -08148019 705.88580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -08148020 705.88580322 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c60 -08148021 705.88586426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -08148022 705.88586426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c70 -08148023 705.88586426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -08148024 705.88586426 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c80 -08148025 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -08148026 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c90 -08148027 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -08148028 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca0 -08148029 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -08148030 705.88592529 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb0 -08148031 705.88598633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -08148032 705.88598633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc0 -08148033 705.88598633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -08148034 705.88598633 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd0 -08148035 705.88604736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -08148036 705.88604736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce0 -08148037 705.88604736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -08148038 705.88604736 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf0 -08148039 705.88610840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -08148040 705.88610840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d00 -08148041 705.88610840 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -08148042 705.88616943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d10 -08148043 705.88616943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -08148044 705.88616943 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d20 -08148045 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -08148046 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d30 -08148047 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -08148048 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d40 -08148049 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -08148050 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d50 -08148051 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -08148052 705.88623047 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d60 -08148053 705.88629150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -08148054 705.88629150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d70 -08148055 705.88629150 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -08148056 705.88635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d80 -08148057 705.88635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -08148058 705.88635254 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d90 -08148059 705.88641357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -08148060 705.88641357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da0 -08148061 705.88641357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -08148062 705.88641357 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db0 -08148063 705.88647461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -08148064 705.88647461 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc0 -08148065 705.88653564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -08148066 705.88653564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd0 -08148067 705.88653564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -08148068 705.88653564 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de0 -08148069 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -08148070 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df0 -08148071 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -08148072 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e00 -08148073 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -08148074 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e10 -08148075 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -08148076 705.88659668 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e20 -08148077 705.88665771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -08148078 705.88665771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e30 -08148079 705.88665771 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -08148080 705.88671875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e40 -08148081 705.88671875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -08148082 705.88671875 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e50 -08148083 705.88677979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -08148084 705.88677979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e60 -08148085 705.88677979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -08148086 705.88677979 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e70 -08148087 705.88684082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -08148088 705.88684082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e80 -08148089 705.88684082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -08148090 705.88684082 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e90 -08148091 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -08148092 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea0 -08148093 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -08148094 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb0 -08148095 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -08148096 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec0 -08148097 705.88690186 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -08148098 705.88696289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed0 -08148099 705.88696289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -08148100 705.88696289 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee0 -08148101 705.88702393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -08148102 705.88702393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef0 -08148103 705.88702393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -08148104 705.88702393 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f00 -08148105 705.88708496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -08148106 705.88708496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f10 -08148107 705.88708496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -08148108 705.88708496 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f20 -08148109 705.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -08148110 705.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f30 -08148111 705.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -08148112 705.88714600 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f40 -08148113 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -08148114 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f50 -08148115 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -08148116 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f60 -08148117 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -08148118 705.88720703 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f70 -08148119 705.88726807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -08148120 705.88726807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f80 -08148121 705.88726807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -08148122 705.88726807 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f90 -08148123 705.88732910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -08148124 705.88732910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa0 -08148125 705.88732910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -08148126 705.88732910 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb0 -08148127 705.88739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -08148128 705.88739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc0 -08148129 705.88739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -08148130 705.88739014 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd0 -08148131 705.88745117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -08148132 705.88745117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe0 -08148133 705.88745117 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -08148134 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff0 -08148135 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -08148136 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6000 -08148137 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -08148138 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6010 -08148139 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -08148140 705.88751221 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6020 -08148141 705.88757324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -08148142 705.88757324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6030 -08148143 705.88757324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -08148144 705.88757324 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6040 -08148145 705.88763428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -08148146 705.88763428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6050 -08148147 705.88763428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -08148148 705.88763428 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6060 -08148149 705.88769531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -08148150 705.88769531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6070 -08148151 705.88769531 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -08148152 705.88775635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6080 -08148153 705.88775635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -08148154 705.88775635 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6090 -08148155 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -08148156 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a0 -08148157 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -08148158 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b0 -08148159 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -08148160 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c0 -08148161 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -08148162 705.88781738 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d0 -08148163 705.88787842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -08148164 705.88787842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e0 -08148165 705.88787842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -08148166 705.88787842 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f0 -08148167 705.88793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -08148168 705.88793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6100 -08148169 705.88793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -08148170 705.88793945 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6110 -08148171 705.88800049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -08148172 705.88800049 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6120 -08148173 705.88806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -08148174 705.88806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6130 -08148175 705.88806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -08148176 705.88806152 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6140 -08148177 705.88812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -08148178 705.88812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6150 -08148179 705.88812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -08148180 705.88812256 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6160 -08148181 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -08148182 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6170 -08148183 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -08148184 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6180 -08148185 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -08148186 705.88818359 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6190 -08148187 705.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -08148188 705.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a0 -08148189 705.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -08148190 705.88824463 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b0 -08148191 705.88830566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -08148192 705.88830566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c0 -08148193 705.88830566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -08148194 705.88830566 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d0 -08148195 705.88836670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -08148196 705.88836670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e0 -08148197 705.88836670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -08148198 705.88836670 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f0 -08148199 705.88842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -08148200 705.88842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6200 -08148201 705.88842773 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -08148202 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6210 -08148203 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -08148204 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6220 -08148205 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -08148206 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6230 -08148207 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -08148208 705.88848877 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6240 -08148209 705.88854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -08148210 705.88854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6250 -08148211 705.88854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -08148212 705.88854980 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6260 -08148213 705.88861084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -08148214 705.88861084 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6270 -08148215 705.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -08148216 705.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6280 -08148217 705.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -08148218 705.88867188 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6290 -08148219 705.88873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -08148220 705.88873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a0 -08148221 705.88873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -08148222 705.88873291 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b0 -08148223 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -08148224 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c0 -08148225 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -08148226 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d0 -08148227 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -08148228 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e0 -08148229 705.88879395 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -08148230 705.88885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f0 -08148231 705.88885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -08148232 705.88885498 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6300 -08148233 705.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -08148234 705.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6310 -08148235 705.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -08148236 705.88891602 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6320 -08148237 705.88897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -08148238 705.88897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6330 -08148239 705.88897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -08148240 705.88897705 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6340 -08148241 705.88903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -08148242 705.88903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6350 -08148243 705.88903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -08148244 705.88903809 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6360 -08148245 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -08148246 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6370 -08148247 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -08148248 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6380 -08148249 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -08148250 705.88909912 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6390 -08148251 705.88916016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -08148252 705.88916016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a0 -08148253 705.88916016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -08148254 705.88916016 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b0 -08148255 705.88922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -08148256 705.88922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c0 -08148257 705.88922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -08148258 705.88922119 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d0 -08148259 705.88928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -08148260 705.88928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e0 -08148261 705.88928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -08148262 705.88928223 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f0 -08148263 705.88934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -08148264 705.88934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6400 -08148265 705.88934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -08148266 705.88934326 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6410 -08148267 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -08148268 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6420 -08148269 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -08148270 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6430 -08148271 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -08148272 705.88940430 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6440 -08148273 705.88946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -08148274 705.88946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6450 -08148275 705.88946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -08148276 705.88946533 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6460 -08148277 705.88952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -08148278 705.88952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6470 -08148279 705.88952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -08148280 705.88952637 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6480 -08148281 705.88958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -08148282 705.88958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6490 -08148283 705.88958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -08148284 705.88958740 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a0 -08148285 705.88964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -08148286 705.88964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b0 -08148287 705.88964844 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -08148288 705.88970947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c0 -08148289 705.88970947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -08148290 705.88970947 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d0 -08148291 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -08148292 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e0 -08148293 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -08148294 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f0 -08148295 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -08148296 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6500 -08148297 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -08148298 705.88977051 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6510 -08148299 705.88983154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -08148300 705.88983154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6520 -08148301 705.88983154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -08148302 705.88983154 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6530 -08148303 705.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -08148304 705.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6540 -08148305 705.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -08148306 705.88989258 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6550 -08148307 705.88995361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -08148308 705.88995361 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6560 -08148309 705.89001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -08148310 705.89001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6570 -08148311 705.89001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -08148312 705.89001465 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6580 -08148313 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -08148314 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6590 -08148315 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -08148316 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a0 -08148317 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -08148318 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b0 -08148319 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -08148320 705.89007568 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c0 -08148321 705.89013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -08148322 705.89013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d0 -08148323 705.89013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -08148324 705.89013672 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e0 -08148325 705.89019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -08148326 705.89019775 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f0 -08148327 705.89025879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -08148328 705.89025879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6600 -08148329 705.89025879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -08148330 705.89025879 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6610 -08148331 705.89031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -08148332 705.89031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6620 -08148333 705.89031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -08148334 705.89031982 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6630 -08148335 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -08148336 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6640 -08148337 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -08148338 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6650 -08148339 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -08148340 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6660 -08148341 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -08148342 705.89038086 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6670 -08148343 705.89044189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -08148344 705.89044189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6680 -08148345 705.89044189 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -08148346 705.89050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6690 -08148347 705.89050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -08148348 705.89050293 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a0 -08148349 705.89056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -08148350 705.89056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b0 -08148351 705.89056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -08148352 705.89056396 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c0 -08148353 705.89062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -08148354 705.89062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d0 -08148355 705.89062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -08148356 705.89062500 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e0 -08148357 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -08148358 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f0 -08148359 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -08148360 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6700 -08148361 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -08148362 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6710 -08148363 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -08148364 705.89068604 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6720 -08148365 705.89074707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -08148366 705.89074707 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6730 -08148367 705.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -08148368 705.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6740 -08148369 705.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -08148370 705.89080811 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6750 -08148371 705.89086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -08148372 705.89086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6760 -08148373 705.89086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -08148374 705.89086914 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6770 -08148375 705.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -08148376 705.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6780 -08148377 705.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -08148378 705.89093018 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6790 -08148379 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -08148380 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a0 -08148381 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -08148382 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b0 -08148383 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -08148384 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c0 -08148385 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -08148386 705.89099121 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d0 -08148387 705.89105225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -08148388 705.89105225 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e0 -08148389 705.89111328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -08148390 705.89111328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f0 -08148391 705.89111328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -08148392 705.89111328 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6800 -08148393 705.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -08148394 705.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6810 -08148395 705.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -08148396 705.89117432 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6820 -08148397 705.89123535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -08148398 705.89123535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6830 -08148399 705.89123535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -08148400 705.89123535 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6840 -08148401 705.89129639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -08148402 705.89129639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6850 -08148403 705.89129639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -08148404 705.89129639 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6860 -08148405 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -08148406 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6870 -08148407 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -08148408 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6880 -08148409 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -08148410 705.89135742 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6890 -08148411 705.89141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -08148412 705.89141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a0 -08148413 705.89141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -08148414 705.89141846 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b0 -08148415 705.89147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -08148416 705.89147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c0 -08148417 705.89147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -08148418 705.89147949 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d0 -08148419 705.89154053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -08148420 705.89154053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e0 -08148421 705.89154053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -08148422 705.89154053 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f0 -08148423 705.89160156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -08148424 705.89160156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6900 -08148425 705.89160156 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -08148426 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6910 -08148427 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -08148428 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6920 -08148429 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -08148430 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6930 -08148431 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -08148432 705.89166260 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6940 -08148433 705.89172363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -08148434 705.89172363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6950 -08148435 705.89172363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -08148436 705.89172363 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6960 -08148437 705.89178467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -08148438 705.89178467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6970 -08148439 705.89178467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -08148440 705.89178467 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6980 -08148441 705.89184570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -08148442 705.89184570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6990 -08148443 705.89184570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -08148444 705.89184570 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a0 -08148445 705.89190674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -08148446 705.89190674 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b0 -08148447 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -08148448 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c0 -08148449 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -08148450 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d0 -08148451 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -08148452 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e0 -08148453 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -08148454 705.89196777 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f0 -08148455 705.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -08148456 705.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a00 -08148457 705.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -08148458 705.89202881 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a10 -08148459 705.89208984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -08148460 705.89208984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a20 -08148461 705.89208984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -08148462 705.89208984 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a30 -08148463 705.89215088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -08148464 705.89215088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a40 -08148465 705.89215088 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -08148466 705.89221191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a50 -08148467 705.89221191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -08148468 705.89221191 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a60 -08148469 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -08148470 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a70 -08148471 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -08148472 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a80 -08148473 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -08148474 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a90 -08148475 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -08148476 705.89227295 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa0 -08148477 705.89233398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -08148478 705.89233398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab0 -08148479 705.89233398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -08148480 705.89233398 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac0 -08148481 705.89239502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -08148482 705.89239502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad0 -08148483 705.89239502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -08148484 705.89239502 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae0 -08148485 705.89245605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -08148486 705.89245605 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af0 -08148487 705.89251709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -08148488 705.89251709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b00 -08148489 705.89251709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -08148490 705.89251709 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b10 -08148491 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -08148492 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b20 -08148493 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -08148494 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b30 -08148495 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -08148496 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b40 -08148497 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -08148498 705.89257813 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b50 -08148499 705.89263916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -08148500 705.89263916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b60 -08148501 705.89263916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -08148502 705.89263916 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b70 -08148503 705.89270020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -08148504 705.89270020 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b80 -08148505 705.89276123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -08148506 705.89276123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b90 -08148507 705.89276123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -08148508 705.89276123 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba0 -08148509 705.89282227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -08148510 705.89282227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb0 -08148511 705.89282227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -08148512 705.89282227 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc0 -08148513 705.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -08148514 705.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd0 -08148515 705.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -08148516 705.89288330 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be0 -08148517 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -08148518 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf0 -08148519 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -08148520 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c00 -08148521 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -08148522 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c10 -08148523 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -08148524 705.89294434 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c20 -08148525 705.89300537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -08148526 705.89300537 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c30 -08148527 705.89306641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -08148528 705.89306641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c40 -08148529 705.89306641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -08148530 705.89306641 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c50 -08148531 705.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -08148532 705.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c60 -08148533 705.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -08148534 705.89312744 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c70 -08148535 705.89318848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -08148536 705.89318848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c80 -08148537 705.89318848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -08148538 705.89318848 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c90 -08148539 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -08148540 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca0 -08148541 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -08148542 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb0 -08148543 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -08148544 705.89324951 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc0 -08148545 705.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -08148546 705.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd0 -08148547 705.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -08148548 705.89331055 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce0 -08148549 705.89337158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -08148550 705.89337158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf0 -08148551 705.89337158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -08148552 705.89337158 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d00 -08148553 705.89343262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -08148554 705.89343262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d10 -08148555 705.89343262 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -08148556 705.89349365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d20 -08148557 705.89349365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -08148558 705.89349365 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d30 -08148559 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -08148560 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d40 -08148561 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -08148562 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d50 -08148563 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -08148564 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d60 -08148565 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -08148566 705.89355469 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d70 -08148567 705.89361572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -08148568 705.89361572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d80 -08148569 705.89361572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -08148570 705.89361572 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d90 -08148571 705.89367676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -08148572 705.89367676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da0 -08148573 705.89367676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -08148574 705.89367676 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db0 -08148575 705.89373779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -08148576 705.89373779 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc0 -08148577 705.89379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -08148578 705.89379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd0 -08148579 705.89379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -08148580 705.89379883 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de0 -08148581 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -08148582 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df0 -08148583 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -08148584 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e00 -08148585 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -08148586 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e10 -08148587 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -08148588 705.89385986 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e20 -08148589 705.89392090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -08148590 705.89392090 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e30 -08148591 705.89398193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -08148592 705.89398193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e40 -08148593 705.89398193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -08148594 705.89398193 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e50 -08148595 705.89404297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -08148596 705.89404297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e60 -08148597 705.89404297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -08148598 705.89404297 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e70 -08148599 705.89410400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -08148600 705.89410400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e80 -08148601 705.89410400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -08148602 705.89410400 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e90 -08148603 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -08148604 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea0 -08148605 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -08148606 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb0 -08148607 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -08148608 705.89416504 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec0 -08148609 705.89422607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -08148610 705.89422607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed0 -08148611 705.89422607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -08148612 705.89422607 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee0 -08148613 705.89428711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -08148614 705.89428711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef0 -08148615 705.89428711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -08148616 705.89428711 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f00 -08148617 705.89434814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -08148618 705.89434814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f10 -08148619 705.89434814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -08148620 705.89434814 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f20 -08148621 705.89440918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -08148622 705.89440918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f30 -08148623 705.89440918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -08148624 705.89440918 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f40 -08148625 705.89447021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -08148626 705.89447021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f50 -08148627 705.89447021 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -08148628 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f60 -08148629 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -08148630 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f70 -08148631 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -08148632 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f80 -08148633 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -08148634 705.89453125 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f90 -08148635 705.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -08148636 705.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa0 -08148637 705.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -08148638 705.89459229 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb0 -08148639 705.89465332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -08148640 705.89465332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc0 -08148641 705.89465332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -08148642 705.89465332 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd0 -08148643 705.89471436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -08148644 705.89471436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe0 -08148645 705.89471436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -08148646 705.89471436 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff0 -08148647 705.89477539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -08148648 705.89477539 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7000 -08148649 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -08148650 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7010 -08148651 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -08148652 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7020 -08148653 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -08148654 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7030 -08148655 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -08148656 705.89483643 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7040 -08148657 705.89489746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -08148658 705.89489746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7050 -08148659 705.89489746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -08148660 705.89489746 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7060 -08148661 705.89495850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -08148662 705.89495850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7070 -08148663 705.89495850 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -08148664 705.89501953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7080 -08148665 705.89501953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -08148666 705.89501953 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7090 -08148667 705.89508057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -08148668 705.89508057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a0 -08148669 705.89508057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -08148670 705.89508057 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b0 -08148671 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -08148672 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c0 -08148673 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -08148674 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d0 -08148675 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -08148676 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e0 -08148677 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -08148678 705.89514160 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f0 -08148679 705.89520264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -08148680 705.89520264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7100 -08148681 705.89520264 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -08148682 705.89526367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7110 -08148683 705.89526367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -08148684 705.89526367 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7120 -08148685 705.89532471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -08148686 705.89532471 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7140 -08148687 705.89538574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -08148688 705.89538574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7150 -08148689 705.89538574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -08148690 705.89538574 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7160 -08148691 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -08148692 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7170 -08148693 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -08148694 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7180 -08148695 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -08148696 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7190 -08148697 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -08148698 705.89544678 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a0 -08148699 705.89550781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -08148700 705.89550781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b0 -08148701 705.89550781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -08148702 705.89550781 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c0 -08148703 705.89556885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -08148704 705.89556885 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d0 -08148705 705.89562988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -08148706 705.89562988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e0 -08148707 705.89562988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -08148708 705.89562988 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f0 -08148709 705.89569092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -08148710 705.89569092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7200 -08148711 705.89569092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -08148712 705.89569092 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7210 -08148713 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -08148714 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7220 -08148715 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -08148716 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7230 -08148717 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -08148718 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7240 -08148719 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -08148720 705.89575195 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7250 -08148721 705.89581299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -08148722 705.89581299 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7260 -08148723 705.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -08148724 705.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7270 -08148725 705.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -08148726 705.89587402 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7280 -08148727 705.89593506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -08148728 705.89593506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7290 -08148729 705.89593506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -08148730 705.89593506 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a0 -08148731 705.89599609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -08148732 705.89599609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b0 -08148733 705.89599609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -08148734 705.89599609 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c0 -08148735 705.89605713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -08148736 705.89605713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d0 -08148737 705.89605713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -08148738 705.89605713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e0 -08148739 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -08148740 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f0 -08148741 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -08148742 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7300 -08148743 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -08148744 705.89611816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7310 -08148745 705.89617920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -08148746 705.89617920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7320 -08148747 705.89617920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -08148748 705.89617920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7330 -08148749 705.89624023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -08148750 705.89624023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7340 -08148751 705.89624023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -08148752 705.89624023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7350 -08148753 705.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -08148754 705.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7360 -08148755 705.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -08148756 705.89630127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7370 -08148757 705.89636230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -08148758 705.89636230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7380 -08148759 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -08148760 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7390 -08148761 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -08148762 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a0 -08148763 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -08148764 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b0 -08148765 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -08148766 705.89642334 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c0 -08148767 705.89648438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -08148768 705.89648438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d0 -08148769 705.89648438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -08148770 705.89648438 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e0 -08148771 705.89654541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -08148772 705.89654541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f0 -08148773 705.89654541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -08148774 705.89654541 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7400 -08148775 705.89660645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -08148776 705.89660645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7410 -08148777 705.89660645 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -08148778 705.89666748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7420 -08148779 705.89666748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -08148780 705.89666748 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7430 -08148781 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -08148782 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7440 -08148783 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -08148784 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7450 -08148785 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -08148786 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7460 -08148787 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -08148788 705.89672852 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7470 -08148789 705.89678955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -08148790 705.89678955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7480 -08148791 705.89678955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -08148792 705.89678955 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7490 -08148793 705.89685059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -08148794 705.89685059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a0 -08148795 705.89685059 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -08148796 705.89691162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b0 -08148797 705.89691162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -08148798 705.89691162 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c0 -08148799 705.89697266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -08148800 705.89697266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d0 -08148801 705.89697266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -08148802 705.89697266 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e0 -08148803 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -08148804 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f0 -08148805 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -08148806 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7500 -08148807 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -08148808 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7510 -08148809 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -08148810 705.89703369 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7520 -08148811 705.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -08148812 705.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7530 -08148813 705.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -08148814 705.89709473 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7540 -08148815 705.89715576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -08148816 705.89715576 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7550 -08148817 705.89721680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -08148818 705.89721680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7560 -08148819 705.89721680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -08148820 705.89721680 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7570 -08148821 705.89727783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -08148822 705.89727783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7580 -08148823 705.89727783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -08148824 705.89727783 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7590 -08148825 705.89733887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -08148826 705.89733887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a0 -08148827 705.89733887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -08148828 705.89733887 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b0 -08148829 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -08148830 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c0 -08148831 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -08148832 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d0 -08148833 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -08148834 705.89739990 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e0 -08148835 705.89746094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -08148836 705.89746094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f0 -08148837 705.89746094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -08148838 705.89746094 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7600 -08148839 705.89752197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -08148840 705.89752197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7610 -08148841 705.89752197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -08148842 705.89752197 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7620 -08148843 705.89758301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -08148844 705.89758301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7630 -08148845 705.89758301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -08148846 705.89758301 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7640 -08148847 705.89764404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -08148848 705.89764404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7650 -08148849 705.89764404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -08148850 705.89764404 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7660 -08148851 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -08148852 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7670 -08148853 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -08148854 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7680 -08148855 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -08148856 705.89770508 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7690 -08148857 705.89776611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -08148858 705.89776611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a0 -08148859 705.89776611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -08148860 705.89776611 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b0 -08148861 705.89782715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -08148862 705.89782715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c0 -08148863 705.89782715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -08148864 705.89782715 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d0 -08148865 705.89788818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -08148866 705.89788818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e0 -08148867 705.89788818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -08148868 705.89788818 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f0 -08148869 705.89794922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -08148870 705.89794922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7700 -08148871 705.89794922 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -08148872 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7710 -08148873 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -08148874 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7720 -08148875 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -08148876 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7730 -08148877 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -08148878 705.89801025 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7740 -08148879 705.89807129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -08148880 705.89807129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7750 -08148881 705.89807129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -08148882 705.89807129 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7760 -08148883 705.89813232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -08148884 705.89813232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7770 -08148885 705.89813232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -08148886 705.89813232 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7780 -08148887 705.89819336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -08148888 705.89819336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7790 -08148889 705.89819336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -08148890 705.89819336 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a0 -08148891 705.89825439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -08148892 705.89825439 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b0 -08148893 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -08148894 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c0 -08148895 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -08148896 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d0 -08148897 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -08148898 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e0 -08148899 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -08148900 705.89831543 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f0 -08148901 705.89837646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -08148902 705.89837646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7800 -08148903 705.89837646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -08148904 705.89837646 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7810 -08148905 705.89843750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -08148906 705.89843750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7820 -08148907 705.89843750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -08148908 705.89843750 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7830 -08148909 705.89849854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -08148910 705.89849854 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7840 -08148911 705.89855957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -08148912 705.89855957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7850 -08148913 705.89855957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -08148914 705.89855957 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7860 -08148915 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -08148916 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7870 -08148917 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -08148918 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7880 -08148919 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -08148920 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7890 -08148921 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -08148922 705.89862061 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a0 -08148923 705.89868164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -08148924 705.89868164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b0 -08148925 705.89868164 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -08148926 705.89874268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c0 -08148927 705.89874268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -08148928 705.89874268 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d0 -08148929 705.89880371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -08148930 705.89880371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e0 -08148931 705.89880371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -08148932 705.89880371 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f0 -08148933 705.89886475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -08148934 705.89886475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7900 -08148935 705.89886475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -08148936 705.89886475 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7910 -08148937 705.89892578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -08148938 705.89892578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7920 -08148939 705.89892578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -08148940 705.89892578 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7930 -08148941 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -08148942 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7940 -08148943 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -08148944 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7950 -08148945 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -08148946 705.89898682 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7960 -08148947 705.89904785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -08148948 705.89904785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7970 -08148949 705.89904785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -08148950 705.89904785 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7980 -08148951 705.89910889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -08148952 705.89910889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7990 -08148953 705.89910889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -08148954 705.89910889 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a0 -08148955 705.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -08148956 705.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b0 -08148957 705.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -08148958 705.89916992 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c0 -08148959 705.89923096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -08148960 705.89923096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d0 -08148961 705.89923096 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -08148962 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e0 -08148963 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -08148964 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f0 -08148965 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -08148966 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a00 -08148967 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -08148968 705.89929199 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a10 -08148969 705.89935303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -08148970 705.89935303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a20 -08148971 705.89935303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -08148972 705.89935303 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a30 -08148973 705.89941406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -08148974 705.89941406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a40 -08148975 705.89941406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -08148976 705.89941406 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a50 -08148977 705.89947510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -08148978 705.89947510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a60 -08148979 705.89947510 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -08148980 705.89953613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a70 -08148981 705.89953613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -08148982 705.89953613 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a80 -08148983 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -08148984 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a90 -08148985 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -08148986 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa0 -08148987 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -08148988 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab0 -08148989 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -08148990 705.89959717 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac0 -08148991 705.89965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -08148992 705.89965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad0 -08148993 705.89965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -08148994 705.89965820 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae0 -08148995 705.89971924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -08148996 705.89971924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af0 -08148997 705.89971924 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -08148998 705.89978027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b00 -08148999 705.89978027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -08149000 705.89978027 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b10 -08149001 705.89984131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -08149002 705.89984131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b20 -08149003 705.89984131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -08149004 705.89984131 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b30 -08149005 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -08149006 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b40 -08149007 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -08149008 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b50 -08149009 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -08149010 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b60 -08149011 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -08149012 705.89990234 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b70 -08149013 705.89996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -08149014 705.89996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b80 -08149015 705.89996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -08149016 705.89996338 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b90 -08149017 705.90002441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -08149018 705.90002441 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba0 -08149019 705.90008545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -08149020 705.90008545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb0 -08149021 705.90008545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -08149022 705.90008545 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc0 -08149023 705.90014648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -08149024 705.90014648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd0 -08149025 705.90014648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -08149026 705.90014648 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be0 -08149027 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -08149028 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf0 -08149029 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -08149030 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c00 -08149031 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -08149032 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c10 -08149033 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -08149034 705.90020752 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c20 -08149035 705.90026855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -08149036 705.90026855 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c30 -08149037 705.90032959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -08149038 705.90032959 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c40 -08149039 705.90039063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -08149040 705.90039063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c50 -08149041 705.90039063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -08149042 705.90039063 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c60 -08149043 705.90045166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -08149044 705.90045166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c70 -08149045 705.90045166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -08149046 705.90045166 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c80 -08149047 705.90051270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -08149048 705.90051270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c90 -08149049 705.90051270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -08149050 705.90051270 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca0 -08149051 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -08149052 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb0 -08149053 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -08149054 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc0 -08149055 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -08149056 705.90057373 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd0 -08149057 705.90063477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -08149058 705.90063477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce0 -08149059 705.90063477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -08149060 705.90063477 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf0 -08149061 705.90069580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -08149062 705.90069580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d00 -08149063 705.90069580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -08149064 705.90069580 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d10 -08149065 705.90075684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -08149066 705.90075684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d20 -08149067 705.90075684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -08149068 705.90075684 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d30 -08149069 705.90081787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -08149070 705.90081787 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d40 -08149071 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -08149072 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d50 -08149073 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -08149074 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d60 -08149075 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -08149076 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d70 -08149077 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -08149078 705.90087891 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d80 -08149079 705.90093994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -08149080 705.90093994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d90 -08149081 705.90093994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -08149082 705.90093994 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da0 -08149083 705.90100098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -08149084 705.90100098 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db0 -08149085 705.90106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -08149086 705.90106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc0 -08149087 705.90106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -08149088 705.90106201 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd0 -08149089 705.90112305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -08149090 705.90112305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de0 -08149091 705.90112305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -08149092 705.90112305 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df0 -08149093 705.90118408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -08149094 705.90118408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e00 -08149095 705.90118408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -08149096 705.90118408 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e10 -08149097 705.90124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -08149098 705.90124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e20 -08149099 705.90124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -08149100 705.90124512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e30 -08149101 705.90130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -08149102 705.90130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e40 -08149103 705.90130615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -08149104 705.90136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e50 -08149105 705.90136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -08149106 705.90136719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e60 -08149107 705.90142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -08149108 705.90142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e70 -08149109 705.90142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -08149110 705.90142822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e80 -08149111 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -08149112 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e90 -08149113 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -08149114 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea0 -08149115 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -08149116 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb0 -08149117 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -08149118 705.90148926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec0 -08149119 705.90155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -08149120 705.90155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed0 -08149121 705.90155029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -08149122 705.90161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee0 -08149123 705.90161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -08149124 705.90161133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef0 -08149125 705.90167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -08149126 705.90167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f00 -08149127 705.90167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -08149128 705.90167236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f10 -08149129 705.90173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -08149130 705.90173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f20 -08149131 705.90173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -08149132 705.90173340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f30 -08149133 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -08149134 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f40 -08149135 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -08149136 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f50 -08149137 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -08149138 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f60 -08149139 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -08149140 705.90179443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f70 -08149141 705.90185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -08149142 705.90185547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f80 -08149143 705.90191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -08149144 705.90191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f90 -08149145 705.90191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -08149146 705.90191650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa0 -08149147 705.90197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -08149148 705.90197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb0 -08149149 705.90197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -08149150 705.90197754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc0 -08149151 705.90203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -08149152 705.90203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd0 -08149153 705.90203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -08149154 705.90203857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe0 -08149155 705.90209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -08149156 705.90209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff0 -08149157 705.90209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -08149158 705.90209961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8000 -08149159 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -08149160 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8010 -08149161 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -08149162 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8020 -08149163 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -08149164 705.90216064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8030 -08149165 705.90222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -08149166 705.90222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8040 -08149167 705.90222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -08149168 705.90222168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8050 -08149169 705.90228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -08149170 705.90228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8060 -08149171 705.90228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -08149172 705.90228271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8070 -08149173 705.90234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -08149174 705.90234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8080 -08149175 705.90234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -08149176 705.90234375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8090 -08149177 705.90240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -08149178 705.90240479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a0 -08149179 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -08149180 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b0 -08149181 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -08149182 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c0 -08149183 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -08149184 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d0 -08149185 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -08149186 705.90246582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e0 -08149187 705.90252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -08149188 705.90252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f0 -08149189 705.90252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -08149190 705.90252686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8100 -08149191 705.90258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -08149192 705.90258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8110 -08149193 705.90258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -08149194 705.90258789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8120 -08149195 705.90264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -08149196 705.90264893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8130 -08149197 705.90270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -08149198 705.90270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8140 -08149199 705.90270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -08149200 705.90270996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8150 -08149201 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -08149202 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8160 -08149203 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -08149204 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8170 -08149205 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -08149206 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8180 -08149207 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -08149208 705.90277100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8190 -08149209 705.90283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -08149210 705.90283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a0 -08149211 705.90283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -08149212 705.90283203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b0 -08149213 705.90289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -08149214 705.90289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c0 -08149215 705.90289307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -08149216 705.90295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d0 -08149217 705.90295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -08149218 705.90295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e0 -08149219 705.90301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -08149220 705.90301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f0 -08149221 705.90301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -08149222 705.90301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8200 -08149223 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -08149224 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8210 -08149225 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -08149226 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8220 -08149227 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -08149228 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8230 -08149229 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -08149230 705.90307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8240 -08149231 705.90313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -08149232 705.90313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8250 -08149233 705.90319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -08149234 705.90319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8260 -08149235 705.90319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -08149236 705.90319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8270 -08149237 705.90325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -08149238 705.90325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8280 -08149239 705.90325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -08149240 705.90325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8290 -08149241 705.90332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -08149242 705.90332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a0 -08149243 705.90332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -08149244 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b0 -08149245 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -08149246 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c0 -08149247 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -08149248 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d0 -08149249 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -08149250 705.90338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e0 -08149251 705.90344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -08149252 705.90344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f0 -08149253 705.90344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -08149254 705.90344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8300 -08149255 705.90350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -08149256 705.90350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8310 -08149257 705.90350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -08149258 705.90350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8320 -08149259 705.90356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -08149260 705.90356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8330 -08149261 705.90362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -08149262 705.90362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8340 -08149263 705.90362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -08149264 705.90362549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8350 -08149265 705.90368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -08149266 705.90368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8360 -08149267 705.90368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -08149268 705.90368652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8370 -08149269 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -08149270 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8380 -08149271 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -08149272 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8390 -08149273 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -08149274 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83a0 -08149275 705.90374756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -08149276 705.90380859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x83b0 -08151273 705.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -08151274 705.93231201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc220 -08151275 705.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -08151276 705.93237305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc230 -08151277 705.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -08151278 705.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc240 -08151279 705.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -08151280 705.93243408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc250 -08151281 705.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -08151282 705.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc260 -08151283 705.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -08151284 705.93249512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc270 -08151285 705.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -08151286 705.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc280 -08151287 705.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -08151288 705.93255615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc290 -08151289 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -08151290 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2a0 -08151291 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -08151292 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2b0 -08151293 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -08151294 705.93261719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2c0 -08151295 705.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -08151296 705.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2d0 -08151297 705.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -08151298 705.93267822 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2e0 -08151299 705.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -08151300 705.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc2f0 -08151301 705.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -08151302 705.93273926 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc300 -08151303 705.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -08151304 705.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc310 -08151305 705.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -08151306 705.93280029 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc320 -08151307 705.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -08151308 705.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc330 -08151309 705.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -08151310 705.93286133 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc340 -08151311 705.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -08151312 705.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc350 -08151313 705.93292236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -08151314 705.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc360 -08151315 705.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -08151316 705.93298340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0xc370 -08153471 705.96453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -08153472 705.96453857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106d0 -08153473 705.96459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -08153474 705.96459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106e0 -08153475 705.96459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -08153476 705.96459961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x106f0 -08153477 705.96466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -08153478 705.96466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10700 -08153479 705.96466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -08153480 705.96466064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10710 -08153481 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -08153482 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10720 -08153483 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -08153484 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10730 -08153485 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -08153486 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10740 -08153487 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -08153488 705.96472168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10750 -08153489 705.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -08153490 705.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10760 -08153491 705.96478271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -08153492 705.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10770 -08153493 705.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -08153494 705.96484375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10780 -08153495 705.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -08153496 705.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10790 -08153497 705.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -08153498 705.96490479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107a0 -08153499 705.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -08153500 705.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107b0 -08153501 705.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -08153502 705.96496582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107c0 -08153503 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -08153504 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107d0 -08153505 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -08153506 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107e0 -08153507 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -08153508 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x107f0 -08153509 705.96502686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -08153510 705.96508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10800 -08153511 705.96508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -08153512 705.96508789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10810 -08153513 705.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -08153514 705.96514893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x10820 -08158189 705.99981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08158190 705.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -08158191 705.99981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08158192 705.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15360 -08158193 705.99981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08158194 705.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -08158195 705.99981689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08158196 705.99981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15370 -08158197 705.99987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08158198 705.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -08158199 705.99987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08158200 705.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15380 -08158201 705.99987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08158202 705.99987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -08158203 705.99987793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08158204 705.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15390 -08158205 705.99993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08158206 705.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -08158207 705.99993896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08158208 705.99993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153a0 -08158209 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08158210 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -08158211 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08158212 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153b0 -08158213 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08158214 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -08158215 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08158216 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153c0 -08158217 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08158218 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -08158219 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08158220 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153d0 -08158221 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08158222 706.00000000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08158223 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -08158224 706.00000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153e0 -08158225 706.00006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08158226 706.00006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08158227 706.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -08158228 706.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x153f0 -08158229 706.00006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08158230 706.00006104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08158231 706.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -08158232 706.00006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x15400 -08162815 706.03607178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -08162816 706.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -08162817 706.03607178 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198b0 -08162818 706.03607178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa268 -08162819 706.03613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -08162820 706.03613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -08162821 706.03613281 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198c0 -08162822 706.03613281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa278 -08162823 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -08162824 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -08162825 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198d0 -08162826 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa288 -08162827 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -08162828 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -08162829 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa298 -08162830 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198e0 -08162831 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -08162832 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -08162833 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a8 -08162834 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x198f0 -08162835 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -08162836 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -08162837 706.03619385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b8 -08162838 706.03619385 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19900 -08162839 706.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -08162840 706.03625488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -08162841 706.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c8 -08162842 706.03625488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19910 -08162843 706.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -08162844 706.03625488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -08162845 706.03625488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d8 -08162846 706.03625488 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19920 -08162847 706.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -08162848 706.03631592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -08162849 706.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e8 -08162850 706.03631592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19930 -08162851 706.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -08162852 706.03631592 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -08162853 706.03631592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f8 -08162854 706.03637695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19940 -08162855 706.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -08162856 706.03637695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -08162857 706.03637695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xa308 -08162858 706.03637695 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x19950 -08167501 706.06982422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -08167502 706.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -08167503 706.06982422 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1d0 -08167504 706.06982422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebb8 -08167505 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -08167506 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -08167507 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1e0 -08167508 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebc8 -08167509 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -08167510 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -08167511 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e1f0 -08167512 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebd8 -08167513 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -08167514 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -08167515 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e200 -08167516 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebe8 -08167517 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -08167518 706.06988525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -08167519 706.06988525 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e210 -08167520 706.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xebf8 -08167521 706.06994629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -08167522 706.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -08167523 706.06994629 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e220 -08167524 706.06994629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec08 -08167525 706.07000732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -08167526 706.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -08167527 706.07000732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e230 -08167528 706.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec18 -08167529 706.07000732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -08167530 706.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -08167531 706.07000732 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e240 -08167532 706.07000732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec28 -08167533 706.07006836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -08167534 706.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -08167535 706.07006836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e250 -08167536 706.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec38 -08167537 706.07006836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -08167538 706.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -08167539 706.07006836 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e260 -08167540 706.07006836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec48 -08167541 706.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -08167542 706.07012939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -08167543 706.07012939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0xec58 -08167544 706.07012939 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e270 -08172377 706.10552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -08172378 706.10552979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -08172379 706.10552979 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22da0 -08172380 706.10552979 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13848 -08172381 706.10559082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -08172382 706.10559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -08172383 706.10559082 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13858 -08172384 706.10559082 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22db0 -08172385 706.10565186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -08172386 706.10565186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -08172387 706.10565186 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13868 -08172388 706.10565186 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dc0 -08172389 706.10571289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -08172390 706.10571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -08172391 706.10571289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13878 -08172392 706.10571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22dd0 -08172393 706.10571289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -08172394 706.10571289 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -08172395 706.10571289 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13888 -08172396 706.10577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22de0 -08172397 706.10577393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -08172398 706.10577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -08172399 706.10577393 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13898 -08172400 706.10577393 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22df0 -08172401 706.10583496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -08172402 706.10583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -08172403 706.10583496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138a8 -08172404 706.10583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e00 -08172405 706.10583496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -08172406 706.10583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -08172407 706.10583496 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138b8 -08172408 706.10583496 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e10 -08172409 706.10589600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -08172410 706.10589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -08172411 706.10589600 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138c8 -08172412 706.10589600 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e20 -08172413 706.10595703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -08172414 706.10595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -08172415 706.10595703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138d8 -08172416 706.10595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e30 -08172417 706.10595703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -08172418 706.10595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -08172419 706.10595703 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x138e8 -08172420 706.10595703 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e40 -08176768 706.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -08176769 706.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -08176770 706.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dc8 -08176771 706.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27140 -08176772 706.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -08176773 706.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -08176774 706.14410400 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17dd8 -08176775 706.14410400 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27150 -08176776 706.14416504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -08176777 706.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -08176778 706.14416504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17de8 -08176779 706.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27160 -08176780 706.14416504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -08176781 706.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -08176782 706.14416504 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17df8 -08176783 706.14416504 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27170 -08176784 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -08176785 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -08176786 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e08 -08176787 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27180 -08176788 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e18 -08176789 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -08176790 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e18 -08176791 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x27190 -08176792 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e28 -08176793 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -08176794 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e28 -08176795 706.14422607 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271a0 -08176796 706.14422607 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e38 -08176797 706.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -08176798 706.14428711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e38 -08176799 706.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271b0 -08176800 706.14428711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e48 -08176801 706.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -08176802 706.14428711 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e48 -08176803 706.14428711 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271c0 -08176804 706.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e58 -08176805 706.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -08176806 706.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e58 -08176807 706.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271d0 -08176808 706.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e68 -08176809 706.14434814 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e68 -08176810 706.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -08176811 706.14434814 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x271e0 -08181369 706.17730713 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b840 -08181370 706.17730713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c688 -08181371 706.17730713 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c688 -08181372 706.17736816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -08181373 706.17736816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b850 -08181374 706.17736816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c698 -08181375 706.17736816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c698 -08181376 706.17736816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -08181377 706.17736816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a8 -08181378 706.17736816 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b860 -08181379 706.17736816 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6a8 -08181380 706.17742920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -08181381 706.17742920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b8 -08181382 706.17742920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b870 -08181383 706.17742920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6b8 -08181384 706.17742920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -08181385 706.17742920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c8 -08181386 706.17742920 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b880 -08181387 706.17742920 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6c8 -08181388 706.17749023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -08181389 706.17749023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d8 -08181390 706.17749023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b890 -08181391 706.17749023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6d8 -08181392 706.17749023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -08181393 706.17749023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -08181394 706.17749023 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8a0 -08181395 706.17749023 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6e8 -08181396 706.17755127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -08181397 706.17755127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -08181398 706.17755127 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c6f8 -08181399 706.17755127 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8b0 -08181400 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -08181401 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -08181402 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c708 -08181403 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8c0 -08181404 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -08181405 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -08181406 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c718 -08181407 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8d0 -08181408 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -08181409 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -08181410 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c728 -08181411 706.17761230 [vmhook-eac [core number = 13]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b8e0 -08181412 706.17761230 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c738 -08186544 706.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -08186545 706.21557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -08186546 706.21557617 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30850 -08186547 706.21557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21838 -08186548 706.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -08186549 706.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -08186550 706.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30860 -08186551 706.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21848 -08186552 706.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -08186553 706.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -08186554 706.21563721 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30870 -08186555 706.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21858 -08186556 706.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -08186557 706.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -08186558 706.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30880 -08186559 706.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21868 -08186560 706.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -08186561 706.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -08186562 706.21569824 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x30890 -08186563 706.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21878 -08186564 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -08186565 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -08186566 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308a0 -08186567 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21888 -08186568 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -08186569 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -08186570 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308b0 -08186571 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21898 -08186572 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -08186573 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -08186574 706.21575928 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308c0 -08186575 706.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218a8 -08186576 706.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -08186577 706.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -08186578 706.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308d0 -08186579 706.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218b8 -08186580 706.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -08186581 706.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -08186582 706.21582031 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308e0 -08186583 706.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218c8 -08186584 706.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -08186585 706.21588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -08186586 706.21588135 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x308f0 -08186587 706.21588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x218d8 -08215620 706.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -08215621 706.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -08215622 706.43194580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e998 -08215623 706.43194580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c390 -08215624 706.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -08215625 706.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -08215626 706.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9a8 -08215627 706.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3a0 -08215628 706.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -08215629 706.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -08215630 706.43200684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9b8 -08215631 706.43200684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3b0 -08215632 706.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -08215633 706.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -08215634 706.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9c8 -08215635 706.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3c0 -08215636 706.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -08215637 706.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -08215638 706.43206787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9d8 -08215639 706.43206787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3d0 -08215640 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -08215641 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -08215642 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9e8 -08215643 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3e0 -08215644 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -08215645 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -08215646 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e9f8 -08215647 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c3f0 -08215648 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -08215649 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -08215650 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea08 -08215651 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c400 -08215652 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -08215653 706.43212891 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -08215654 706.43212891 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea18 -08215655 706.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c410 -08215656 706.43218994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -08215657 706.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -08215658 706.43218994 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea28 -08215659 706.43218994 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c420 -08215660 706.43225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -08215661 706.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -08215662 706.43225098 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea38 -08215663 706.43225098 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c430 -08219924 706.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c58 -08219925 706.46301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -08219926 706.46301270 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c58 -08219927 706.46301270 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50750 -08219928 706.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c68 -08219929 706.46307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -08219930 706.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c68 -08219931 706.46307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50760 -08219932 706.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c78 -08219933 706.46307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -08219934 706.46307373 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c78 -08219935 706.46307373 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50770 -08219936 706.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c88 -08219937 706.46313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -08219938 706.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c88 -08219939 706.46313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50780 -08219940 706.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -08219941 706.46313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -08219942 706.46313477 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c98 -08219943 706.46313477 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50790 -08219944 706.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -08219945 706.46319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -08219946 706.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ca8 -08219947 706.46319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507a0 -08219948 706.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -08219949 706.46319580 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -08219950 706.46319580 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cb8 -08219951 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507b0 -08219952 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -08219953 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -08219954 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cc8 -08219955 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507c0 -08219956 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -08219957 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -08219958 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cd8 -08219959 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507d0 -08219960 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -08219961 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -08219962 706.46325684 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ce8 -08219963 706.46325684 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507e0 -08219964 706.46331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -08219965 706.46331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -08219966 706.46331787 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42cf8 -08219967 706.46331787 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x507f0 -08223477 706.49591064 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -08223478 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47538 -08223479 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -08223480 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47548 -08223481 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -08223482 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47558 -08223483 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -08223484 706.49597168 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47568 -08223485 706.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -08223486 706.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47578 -08223487 706.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -08223488 706.49603271 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47588 -08223489 706.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -08223490 706.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47598 -08223491 706.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -08223492 706.49609375 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475a8 -08223493 706.49615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -08223494 706.49615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475b8 -08223495 706.49615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -08223496 706.49615479 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475c8 -08223497 706.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -08223498 706.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475d8 -08223499 706.49621582 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -08223500 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475e8 -08223501 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -08223502 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x475f8 -08223503 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47608 -08223504 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47608 -08223505 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47618 -08223506 706.49627686 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47618 -08223507 706.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47628 -08223508 706.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47628 -08223509 706.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47638 -08223510 706.49633789 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47638 -08223511 706.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47648 -08223512 706.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47648 -08223513 706.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -08223514 706.49639893 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47658 -08223515 706.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -08223516 706.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47668 -08223517 706.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -08223518 706.49645996 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47678 -08223519 706.49652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -08223520 706.49652100 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47688 -08225783 706.52850342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -08225784 706.52850342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd48 -08225785 706.52850342 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -08225786 706.52856445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd58 -08225787 706.52856445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -08225788 706.52856445 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd68 -08225789 706.52862549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -08225790 706.52862549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd78 -08225791 706.52862549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -08225792 706.52862549 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd88 -08225793 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -08225794 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd98 -08225795 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -08225796 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bda8 -08225797 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -08225798 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdb8 -08225799 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -08225800 706.52868652 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdc8 -08225801 706.52874756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -08225802 706.52874756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdd8 -08225803 706.52874756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -08225804 706.52874756 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bde8 -08225805 706.52880859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -08225806 706.52880859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bdf8 -08225807 706.52880859 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -08225808 706.52886963 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be08 -08225809 706.52886963 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -08225810 706.52886963 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be18 -08225811 706.52893066 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -08225812 706.52893066 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be28 -08225813 706.52893066 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -08225814 706.52893066 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be38 -08225815 706.52899170 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -08225816 706.52899170 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be48 -08225817 706.52899170 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -08225818 706.52899170 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be58 -08225819 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -08225820 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be68 -08225821 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -08225822 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be78 -08225823 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -08225824 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be88 -08225825 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -08225826 706.52905273 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be98 -08228059 706.56054688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50468 -08228060 706.56054688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50468 -08228061 706.56054688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50478 -08228062 706.56054688 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50478 -08228063 706.56060791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50488 -08228064 706.56060791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50488 -08228065 706.56060791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50498 -08228066 706.56060791 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50498 -08228067 706.56066895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a8 -08228068 706.56066895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504a8 -08228069 706.56066895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b8 -08228070 706.56066895 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504b8 -08228071 706.56072998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c8 -08228072 706.56072998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504c8 -08228073 706.56072998 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d8 -08228074 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504d8 -08228075 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e8 -08228076 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504e8 -08228077 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f8 -08228078 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x504f8 -08228079 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50508 -08228080 706.56079102 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50508 -08228081 706.56085205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50518 -08228082 706.56085205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50518 -08228083 706.56085205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50528 -08228084 706.56085205 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50528 -08228085 706.56091309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50538 -08228086 706.56091309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50538 -08228087 706.56091309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50548 -08228088 706.56091309 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50548 -08228089 706.56097412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50558 -08228090 706.56097412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50558 -08228091 706.56097412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50568 -08228092 706.56097412 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50568 -08228093 706.56103516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50578 -08228094 706.56103516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50578 -08228095 706.56103516 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50588 -08228096 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50588 -08228097 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50598 -08228098 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x50598 -08228099 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a8 -08228100 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x505a8 -08228101 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b8 -08228102 706.56109619 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x505b8 -08229365 707.94384766 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229366 707.94390869 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229367 707.94390869 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229368 707.94390869 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08229369 707.94415283 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229370 707.94415283 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08229371 707.94421387 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229372 707.94421387 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08229373 708.13366699 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08229374 708.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229375 708.15655518 [vmhook-eac [core number = 22]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229376 710.15734863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08229377 710.18023682 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229378 710.18029785 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229379 710.45239258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229380 710.45245361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229381 710.45245361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08229382 710.45245361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08229383 710.45263672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229384 710.45263672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08229385 710.45269775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08229386 710.45275879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08229387 711.58020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08229388 711.58020020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08229389 711.58026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08229390 711.58026123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08229391 711.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08229392 711.58032227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08229393 711.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08229394 711.58038330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08229395 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08229396 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08229397 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08229398 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08229399 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08229400 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08229401 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08229402 711.58044434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08229403 711.58050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08229404 711.58050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08229405 711.58050537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08229406 711.58056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08229407 711.58056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08229408 711.58056641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08229409 711.58062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08229410 711.58062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08229411 711.58062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08229412 711.58062744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08229413 711.58068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08229414 711.58068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08229415 711.58068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08229416 711.58068848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08229417 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08229418 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08229419 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08229420 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08229421 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08229422 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08229423 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08229424 711.58074951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08229425 711.58081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08229426 711.58081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08229427 711.58081055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08229428 711.58087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08229429 711.58087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08229430 711.58087158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08229431 711.58093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08229432 711.58093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08229433 711.58093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08229434 711.58093262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08229435 711.58099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08229436 711.58099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08229437 711.58099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08229438 711.58099365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08229439 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08229440 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08229441 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08229442 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08229443 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08229444 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08229445 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08229446 711.58105469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08229447 711.58111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08229448 711.58111572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08229449 711.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08229450 711.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08229451 711.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08229452 711.58117676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08229453 711.58123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08229454 711.58123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08229455 711.58123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08229456 711.58123779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08229457 711.58129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08229458 711.58129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08229459 711.58129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08229460 711.58129883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08229461 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08229462 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08229463 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08229464 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08229465 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08229466 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08229467 711.58135986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08229468 711.58142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08229469 711.58142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08229470 711.58142090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08229471 711.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08229472 711.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08229473 711.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08229474 711.58148193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08229475 711.58154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08229476 711.58154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08229477 711.58154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08229478 711.58154297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08229479 711.58160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08229480 711.58160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08229481 711.58160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08229482 711.58160400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08229483 711.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08229484 711.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08229485 711.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08229486 711.58166504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08229487 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08229488 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08229489 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08229490 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08229491 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08229492 711.58172607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08229493 711.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08229494 711.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08229495 711.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08229496 711.58178711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08229497 711.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08229498 711.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08229499 711.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08229500 711.58184814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08229501 711.58190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08229502 711.58190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08229503 711.58190918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08229504 711.58197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08229505 711.58197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08229506 711.58197021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08229507 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08229508 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08229509 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08229510 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08229511 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08229512 711.58203125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08229513 711.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08229514 711.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08229515 711.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08229516 711.58209229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08229517 711.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08229518 711.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08229519 711.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08229520 711.58215332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08229521 711.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08229522 711.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08229523 711.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08229524 711.58221436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08229525 711.58227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08229526 711.58227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08229527 711.58227539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08229528 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08229529 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08229530 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08229531 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08229532 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08229533 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08229534 711.58233643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08229535 711.58239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08229536 711.58239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08229537 711.58239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08229538 711.58239746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08229539 711.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08229540 711.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08229541 711.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08229542 711.58245850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08229543 711.58251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08229544 711.58251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08229545 711.58251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08229546 711.58251953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08229547 711.58258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08229548 711.58258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08229549 711.58258057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08229550 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08229551 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08229552 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08229553 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08229554 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08229555 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08229556 711.58264160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08229557 711.58270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08229558 711.58270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08229559 711.58270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08229560 711.58270264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08229561 711.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08229562 711.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08229563 711.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08229564 711.58276367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08229565 711.58282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08229566 711.58282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08229567 711.58282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08229568 711.58282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08229569 711.58288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08229570 711.58288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08229571 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08229572 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08229573 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08229574 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08229575 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08229576 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08229577 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08229578 711.58294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08229579 711.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08229580 711.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08229581 711.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08229582 711.58300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08229583 711.58306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08229584 711.58306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08229585 711.58306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08229586 711.58306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08229587 711.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08229588 711.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08229589 711.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08229590 711.58312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08229591 711.58319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08229592 711.58319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08229593 711.58325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08229594 711.58325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08229595 711.58325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08229596 711.58325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08229597 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08229598 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08229599 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08229600 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08229601 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08229602 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08229603 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08229604 711.58331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08229605 711.58337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08229606 711.58337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08229607 711.58337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08229608 711.58337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08229609 711.58343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08229610 711.58343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08229611 711.58343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08229612 711.58349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08229613 711.58349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08229614 711.58349609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08229615 711.58355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08229616 711.58355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08229617 711.58355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08229618 711.58355713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08229619 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08229620 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08229621 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08229622 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08229623 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08229624 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08229625 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08229626 711.58361816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08229627 711.58367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08229628 711.58367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08229629 711.58367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08229630 711.58367920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08229631 711.58374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08229632 711.58374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08229633 711.58374023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08229634 711.58380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08229635 711.58380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08229636 711.58380127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08229637 711.58386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08229638 711.58386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08229639 711.58386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08229640 711.58386230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08229641 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08229642 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08229643 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08229644 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08229645 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08229646 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08229647 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08229648 711.58392334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08229649 711.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08229650 711.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08229651 711.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08229652 711.58398438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08229653 711.58404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08229654 711.58404541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08229655 711.58410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08229656 711.58410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08229657 711.58410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08229658 711.58410645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08229659 711.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08229660 711.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08229661 711.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08229662 711.58416748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08229663 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08229664 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08229665 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08229666 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08229667 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08229668 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08229669 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08229670 711.58422852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08229671 711.58428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08229672 711.58428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08229673 711.58428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08229674 711.58428955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08229675 711.58435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08229676 711.58435059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08229677 711.58441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08229678 711.58441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08229679 711.58441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08229680 711.58441162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08229681 711.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08229682 711.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08229683 711.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08229684 711.58447266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08229685 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08229686 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08229687 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08229688 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08229689 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08229690 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08229691 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08229692 711.58453369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08229693 711.58459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08229694 711.58459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08229695 711.58459473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08229696 711.58465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08229697 711.58465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08229698 711.58465576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08229699 711.58471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08229700 711.58471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08229701 711.58471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08229702 711.58471680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08229703 711.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08229704 711.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08229705 711.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08229706 711.58477783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08229707 711.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08229708 711.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08229709 711.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08229710 711.58483887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08229711 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08229712 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08229713 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08229714 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08229715 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08229716 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08229717 711.58489990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08229718 711.58496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08229719 711.58496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08229720 711.58496094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08229721 711.58502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08229722 711.58502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08229723 711.58502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08229724 711.58502197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08229725 711.58508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08229726 711.58508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08229727 711.58508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08229728 711.58508301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08229729 711.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08229730 711.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08229731 711.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08229732 711.58514404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08229733 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08229734 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08229735 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08229736 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08229737 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08229738 711.58520508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08229739 711.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08229740 711.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08229741 711.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08229742 711.58526611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08229743 711.58532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08229744 711.58532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08229745 711.58532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08229746 711.58532715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08229747 711.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08229748 711.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08229749 711.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08229750 711.58538818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08229751 711.58544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08229752 711.58544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08229753 711.58544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08229754 711.58544922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08229755 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08229756 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08229757 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08229758 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08229759 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08229760 711.58551025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08229761 711.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08229762 711.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08229763 711.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08229764 711.58557129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08229765 711.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08229766 711.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08229767 711.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08229768 711.58563232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08229769 711.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08229770 711.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08229771 711.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08229772 711.58569336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08229773 711.58575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08229774 711.58575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08229775 711.58575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08229776 711.58575439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08229777 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08229778 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08229779 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08229780 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08229781 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08229782 711.58581543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08229783 711.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08229784 711.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08229785 711.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08229786 711.58587646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08229787 711.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08229788 711.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08229789 711.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08229790 711.58593750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08229791 711.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08229792 711.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08229793 711.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08229794 711.58599854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08229795 711.58605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08229796 711.58605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08229797 711.58605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08229798 711.58605957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08229799 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08229800 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08229801 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08229802 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08229803 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08229804 711.58612061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08229805 711.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08229806 711.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08229807 711.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08229808 711.58618164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08229809 711.58624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08229810 711.58624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08229811 711.58624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08229812 711.58624268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08229813 711.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08229814 711.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08229815 711.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08229816 711.58630371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08229817 711.58636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08229818 711.58636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08229819 711.58636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08229820 711.58636475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08229821 711.58642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08229822 711.58642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08229823 711.58642578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08229824 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08229825 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08229826 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08229827 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08229828 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08229829 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08229830 711.58648682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08229831 711.58654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08229832 711.58654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08229833 711.58654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08229834 711.58654785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08229835 711.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08229836 711.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08229837 711.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08229838 711.58660889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08229839 711.58666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08229840 711.58666992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08229841 711.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08229842 711.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08229843 711.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08229844 711.58673096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08229845 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08229846 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08229847 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08229848 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08229849 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08229850 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08229851 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08229852 711.58679199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08229853 711.58685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08229854 711.58685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08229855 711.58685303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08229856 711.58691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08229857 711.58691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08229858 711.58691406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08229859 711.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08229860 711.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08229861 711.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08229862 711.58697510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08229863 711.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08229864 711.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08229865 711.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08229866 711.58703613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08229867 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08229868 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08229869 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08229870 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08229871 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08229872 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08229873 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08229874 711.58709717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08229875 711.58715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08229876 711.58715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08229877 711.58715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08229878 711.58715820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08229879 711.58721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08229880 711.58721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08229881 711.58721924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08229882 711.58728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08229883 711.58728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08229884 711.58728027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08229885 711.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08229886 711.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08229887 711.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08229888 711.58734131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08229889 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08229890 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08229891 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08229892 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08229893 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08229894 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08229895 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08229896 711.58740234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08229897 711.58746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08229898 711.58746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08229899 711.58746338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08229900 711.58752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08229901 711.58752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08229902 711.58752441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08229903 711.58758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08229904 711.58758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08229905 711.58758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08229906 711.58758545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08229907 711.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08229908 711.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08229909 711.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08229910 711.58764648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08229911 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08229912 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08229913 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08229914 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08229915 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08229916 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08229917 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08229918 711.58770752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08229919 711.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08229920 711.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08229921 711.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08229922 711.58776855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08229923 711.58782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08229924 711.58782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08229925 711.58782959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08229926 711.58789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08229927 711.58789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08229928 711.58789063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08229929 711.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08229930 711.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08229931 711.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08229932 711.58795166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08229933 711.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08229934 711.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08229935 711.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08229936 711.58801270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08229937 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08229938 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08229939 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08229940 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08229941 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08229942 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08229943 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08229944 711.58807373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08229945 711.58813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08229946 711.58813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08229947 711.58813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08229948 711.58813477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08229949 711.58819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08229950 711.58819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08229951 711.58819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08229952 711.58819580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08229953 711.58825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08229954 711.58825684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08229955 711.58831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08229956 711.58831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08229957 711.58831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08229958 711.58831787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08229959 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08229960 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08229961 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08229962 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08229963 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08229964 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08229965 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08229966 711.58837891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08229967 711.58843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08229968 711.58843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08229969 711.58843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08229970 711.58843994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08229971 711.58850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08229972 711.58850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08229973 711.58850098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08229974 711.58856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08229975 711.58856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08229976 711.58856201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08229977 711.58862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08229978 711.58862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08229979 711.58862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08229980 711.58862305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08229981 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08229982 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08229983 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08229984 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08229985 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08229986 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08229987 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08229988 711.58868408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08229989 711.58874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08229990 711.58874512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08229991 711.58880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08229992 711.58880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08229993 711.58880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08229994 711.58880615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08229995 711.58886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08229996 711.58886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08229997 711.58886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08229998 711.58886719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08229999 711.58892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08230000 711.58892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08230001 711.58892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08230002 711.58892822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08230003 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08230004 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08230005 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08230006 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08230007 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08230008 711.58898926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08230009 711.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08230010 711.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08230011 711.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08230012 711.58905029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08230013 711.58911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08230014 711.58911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08230015 711.58911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08230016 711.58911133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08230017 711.58917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08230018 711.58917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08230019 711.58917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08230020 711.58917236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08230021 711.58923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08230022 711.58923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08230023 711.58923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08230024 711.58923340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08230025 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08230026 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08230027 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08230028 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08230029 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08230030 711.58929443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08230031 711.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08230032 711.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08230033 711.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08230034 711.58935547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08230035 711.58941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08230036 711.58941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08230037 711.58941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08230038 711.58941650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08230039 711.58947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08230040 711.58947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08230041 711.58947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08230042 711.58947754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08230043 711.58953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08230044 711.58953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08230045 711.58953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08230046 711.58953857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08230047 711.58959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08230048 711.58959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08230049 711.58959961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08230050 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08230051 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08230052 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08230053 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08230054 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08230055 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08230056 711.58966064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08230057 711.58972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08230058 711.58972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08230059 711.58972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08230060 711.58972168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08230061 711.58978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08230062 711.58978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08230063 711.58978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08230064 711.58978271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08230065 711.58984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08230066 711.58984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08230067 711.58984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08230068 711.58984375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08230069 711.58990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08230070 711.58990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08230071 711.58990479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08230072 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08230073 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08230074 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08230075 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08230076 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08230077 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08230078 711.58996582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08230079 711.59002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08230080 711.59002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08230081 711.59002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08230082 711.59002686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08230083 711.59008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08230084 711.59008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08230085 711.59008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08230086 711.59008789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08230087 711.59014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08230088 711.59014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08230089 711.59014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08230090 711.59014893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08230091 711.59020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08230092 711.59020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08230093 711.59020996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08230094 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08230095 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08230096 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08230097 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08230098 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08230099 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08230100 711.59027100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08230101 711.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08230102 711.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08230103 711.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08230104 711.59033203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08230105 711.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08230106 711.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08230107 711.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08230108 711.59039307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08230109 711.59045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08230110 711.59045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08230111 711.59045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08230112 711.59045410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08230113 711.59051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08230114 711.59051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08230115 711.59051514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08230116 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08230117 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08230118 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08230119 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08230120 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08230121 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08230122 711.59057617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08230123 711.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08230124 711.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08230125 711.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08230126 711.59063721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08230127 711.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08230128 711.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08230129 711.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08230130 711.59069824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08230131 711.59075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08230132 711.59075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08230133 711.59075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08230134 711.59075928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08230135 711.59082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08230136 711.59082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08230137 711.59082031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08230138 711.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08230139 711.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08230140 711.59088135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08230141 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08230142 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08230143 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08230144 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08230145 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08230146 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08230147 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08230148 711.59094238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08230149 711.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08230150 711.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08230151 711.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08230152 711.59100342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08230153 711.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08230154 711.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08230155 711.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08230156 711.59106445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08230157 711.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08230158 711.59112549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08230159 711.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08230160 711.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08230161 711.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08230162 711.59118652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08230163 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08230164 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08230165 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08230166 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08230167 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08230168 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08230169 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08230170 711.59124756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08230171 711.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08230172 711.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08230173 711.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08230174 711.59130859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08230175 711.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08230176 711.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08230177 711.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08230178 711.59136963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08230179 711.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08230180 711.59143066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08230181 711.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08230182 711.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08230183 711.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08230184 711.59149170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08230185 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08230186 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08230187 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08230188 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08230189 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08230190 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08230191 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08230192 711.59155273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08230193 711.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08230194 711.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08230195 711.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08230196 711.59161377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08230197 711.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08230198 711.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08230199 711.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08230200 711.59167480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08230201 711.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08230202 711.59173584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08230203 711.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08230204 711.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08230205 711.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08230206 711.59179688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08230207 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08230208 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08230209 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08230210 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08230211 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08230212 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08230213 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08230214 711.59185791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08230215 711.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08230216 711.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08230217 711.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08230218 711.59191895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08230219 711.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08230220 711.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08230221 711.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08230222 711.59197998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08230223 711.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08230224 711.59204102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08230225 711.59210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08230226 711.59210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08230227 711.59210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08230228 711.59210205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08230229 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08230230 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08230231 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08230232 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08230233 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08230234 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08230235 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08230236 711.59216309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08230237 711.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08230238 711.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08230239 711.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08230240 711.59222412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08230241 711.59228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08230242 711.59228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08230243 711.59228516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08230244 711.59234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08230245 711.59234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08230246 711.59234619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08230247 711.59240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08230248 711.59240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08230249 711.59240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08230250 711.59240723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08230251 711.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08230252 711.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08230253 711.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08230254 711.59246826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08230255 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08230256 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08230257 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08230258 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08230259 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08230260 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08230261 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08230262 711.59252930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08230263 711.59259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08230264 711.59259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08230265 711.59259033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08230266 711.59265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08230267 711.59265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08230268 711.59265137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08230269 711.59271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08230270 711.59271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08230271 711.59271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08230272 711.59271240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08230273 711.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08230274 711.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08230275 711.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08230276 711.59277344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08230277 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08230278 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08230279 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08230280 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08230281 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08230282 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08230283 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08230284 711.59283447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08230285 711.59289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08230286 711.59289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08230287 711.59289551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08230288 711.59295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08230289 711.59295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08230290 711.59295654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08230291 711.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08230292 711.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08230293 711.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08230294 711.59301758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08230295 711.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08230296 711.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08230297 711.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08230298 711.59307861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08230299 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08230300 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08230301 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08230302 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08230303 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08230304 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08230305 711.59313965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08230306 711.59320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08230307 711.59320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08230308 711.59320068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08230309 711.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08230310 711.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08230311 711.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08230312 711.59326172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08230313 711.59332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08230314 711.59332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08230315 711.59332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08230316 711.59332275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08230317 711.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08230318 711.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08230319 711.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08230320 711.59338379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08230321 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08230322 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08230323 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08230324 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08230325 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08230326 711.59344482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08230327 711.59350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08230328 711.59350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08230329 711.59350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08230330 711.59350586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08230331 711.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08230332 711.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08230333 711.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08230334 711.59356689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08230335 711.59362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08230336 711.59362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08230337 711.59362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08230338 711.59362793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08230339 711.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08230340 711.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08230341 711.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08230342 711.59368896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08230343 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08230344 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08230345 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08230346 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08230347 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08230348 711.59375000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08230349 711.59381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08230350 711.59381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08230351 711.59381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08230352 711.59381104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08230353 711.59387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08230354 711.59387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08230355 711.59387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08230356 711.59387207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08230357 711.59393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08230358 711.59393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08230359 711.59393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08230360 711.59393311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08230361 711.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08230362 711.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08230363 711.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08230364 711.59399414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08230365 711.59405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08230366 711.59405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08230367 711.59405518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08230368 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08230369 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08230370 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08230371 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08230372 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08230373 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08230374 711.59411621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08230375 711.59417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08230376 711.59417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08230377 711.59417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08230378 711.59417725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08230379 711.59423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08230380 711.59423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08230381 711.59423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08230382 711.59423828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08230383 711.59429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08230384 711.59429932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08230385 711.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08230386 711.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08230387 711.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08230388 711.59436035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08230389 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08230390 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08230391 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08230392 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08230393 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08230394 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08230395 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08230396 711.59442139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08230397 711.59448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08230398 711.59448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08230399 711.59448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08230400 711.59448242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08230401 711.59454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08230402 711.59454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08230403 711.59454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08230404 711.59454346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08230405 711.59460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08230406 711.59460449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08230407 711.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08230408 711.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08230409 711.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08230410 711.59466553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08230411 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08230412 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08230413 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08230414 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08230415 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08230416 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08230417 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08230418 711.59472656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08230419 711.59478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08230420 711.59478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08230421 711.59478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08230422 711.59478760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08230423 711.59484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08230424 711.59484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08230425 711.59484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08230426 711.59484863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08230427 711.59490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08230428 711.59490967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08230429 711.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08230430 711.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08230431 711.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08230432 711.59497070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08230433 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08230434 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08230435 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08230436 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08230437 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08230438 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08230439 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08230440 711.59503174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08230441 711.59509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08230442 711.59509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08230443 711.59509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08230444 711.59509277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08230445 711.59515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08230446 711.59515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08230447 711.59515381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08230448 711.59521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08230449 711.59521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08230450 711.59521484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08230451 711.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08230452 711.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08230453 711.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08230454 711.59527588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08230455 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08230456 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08230457 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08230458 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08230459 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08230460 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08230461 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08230462 711.59533691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08230463 711.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08230464 711.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08230465 711.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08230466 711.59539795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08230467 711.59545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08230468 711.59545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08230469 711.59545898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08230470 711.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08230471 711.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08230472 711.59552002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08230473 711.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08230474 711.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08230475 711.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08230476 711.59558105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08230477 711.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08230478 711.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08230479 711.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08230480 711.59564209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08230481 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08230482 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08230483 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08230484 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08230485 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08230486 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08230487 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08230488 711.59570313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08230489 711.59576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08230490 711.59576416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08230491 711.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08230492 711.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08230493 711.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08230494 711.59582520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08230495 711.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08230496 711.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08230497 711.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08230498 711.59588623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08230499 711.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08230500 711.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08230501 711.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08230502 711.59594727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08230503 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08230504 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08230505 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08230506 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08230507 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08230508 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08230509 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08230510 711.59600830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08230511 711.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08230512 711.59606934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08230513 711.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08230514 711.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08230515 711.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08230516 711.59613037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08230517 711.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08230518 711.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08230519 711.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08230520 711.59619141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08230521 711.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08230522 711.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08230523 711.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08230524 711.59625244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08230525 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08230526 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08230527 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08230528 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08230529 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08230530 711.59631348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08230531 711.59637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08230532 711.59637451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08230533 711.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08230534 711.59643555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08230535 711.59649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08230536 711.59649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08230537 711.59649658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08230538 711.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08230539 711.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08230540 711.59655762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08230541 711.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08230542 711.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08230543 711.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08230544 711.59661865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08230545 711.59667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08230546 711.59667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08230547 711.59667969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08230548 711.59674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08230549 711.59674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08230550 711.59674072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08230551 711.59680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08230552 711.59680176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08230553 711.59686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08230554 711.59686279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08230555 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08230556 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08230557 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08230558 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08230559 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08230560 711.59692383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08230561 711.59698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08230562 711.59698486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08230563 711.59704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08230564 711.59704590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08230565 711.59710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08230566 711.59710693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08230567 711.59716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08230568 711.59716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08230569 711.59716797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08230570 711.59722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08230571 711.59722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08230572 711.59722900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08230573 711.59729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08230574 711.59729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08230575 711.59729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08230576 711.59729004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08230577 711.59735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08230578 711.59735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08230579 711.59735107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08230580 711.59741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08230581 711.59741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08230582 711.59741211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08230583 711.59747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08230584 711.59747314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08230585 711.59753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08230586 711.59753418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08230587 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08230588 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08230589 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08230590 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08230591 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08230592 711.59759521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08230593 711.59765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08230594 711.59765625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08230595 711.59771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08230596 711.59771729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08230597 711.59777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08230598 711.59777832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08230599 711.59783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08230600 711.59783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08230601 711.59783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08230602 711.59783936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08230603 711.59790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08230604 711.59790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08230605 711.59790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08230606 711.59790039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08230607 711.59796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08230608 711.59796143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08230609 711.59802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08230610 711.59802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08230611 711.59802246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08230612 711.59808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08230613 711.59808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08230614 711.59808350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08230615 711.59814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08230616 711.59814453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08230617 711.59820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08230618 711.59820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08230619 711.59820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08230620 711.59820557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08230621 711.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08230622 711.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08230623 711.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08230624 711.59826660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08230625 711.59832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08230626 711.59832764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08230627 711.59838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08230628 711.59838867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08230629 711.59844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08230630 711.59844971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08230631 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08230632 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08230633 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08230634 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08230635 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08230636 711.59851074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08230637 711.59857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08230638 711.59857178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08230639 711.59863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08230640 711.59863281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08230641 711.59869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08230642 711.59869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08230643 711.59869385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08230644 711.59875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08230645 711.59875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08230646 711.59875488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08230647 711.59881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08230648 711.59881592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08230649 711.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08230650 711.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08230651 711.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08230652 711.59887695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08230653 711.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08230654 711.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08230655 711.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08230656 711.59893799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08230657 711.59899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08230658 711.59899902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08230659 711.59906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08230660 711.59906006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08230661 711.59912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08230662 711.59912109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08230663 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08230664 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08230665 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08230666 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08230667 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08230668 711.59918213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08230669 711.59924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08230670 711.59924316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08230671 711.59930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08230672 711.59930420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08230673 711.59936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08230674 711.59936523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08230675 711.59942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08230676 711.59942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08230677 711.59942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08230678 711.59942627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08230679 711.59948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08230680 711.59948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08230681 711.59948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08230682 711.59948730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08230683 711.59954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08230684 711.59954834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08230685 711.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08230686 711.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08230687 711.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08230688 711.59960938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08230689 711.59967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08230690 711.59967041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08230691 711.59973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08230692 711.59973145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08230693 711.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08230694 711.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08230695 711.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08230696 711.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08230697 711.59979248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08230698 711.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08230699 711.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08230700 711.59985352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08230701 711.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08230702 711.59991455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08230703 711.59997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08230704 711.59997559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08230705 711.60003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08230706 711.60003662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08230707 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08230708 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08230709 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08230710 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08230711 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08230712 711.60009766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08230713 711.60015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08230714 711.60015869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08230715 711.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08230716 711.60021973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08230717 711.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08230718 711.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08230719 711.60028076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08230720 711.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08230721 711.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08230722 711.60034180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08230723 711.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08230724 711.60040283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08230725 711.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08230726 711.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08230727 711.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08230728 711.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08230729 711.60046387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08230730 711.60052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08230731 711.60052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08230732 711.60052490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08230733 711.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08230734 711.60058594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08230735 711.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08230736 711.60064697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08230737 711.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08230738 711.60070801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08230739 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08230740 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08230741 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08230742 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08230743 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08230744 711.60076904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08230745 711.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08230746 711.60083008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08230747 711.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08230748 711.60089111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08230749 711.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08230750 711.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08230751 711.60095215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08230752 711.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08230753 711.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08230754 711.60101318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08230755 711.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08230756 711.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08230757 711.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08230758 711.60107422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08230759 711.60113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08230760 711.60113525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08230761 711.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08230762 711.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08230763 711.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08230764 711.60119629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08230765 711.60125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08230766 711.60125732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08230767 711.60131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08230768 711.60131836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08230769 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08230770 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08230771 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08230772 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08230773 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08230774 711.60137939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08230775 711.60144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08230776 711.60144043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08230777 711.60150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08230778 711.60150146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08230779 711.60156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08230780 711.60156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08230781 711.60156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08230782 711.60156250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08230783 711.60162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08230784 711.60162354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08230785 711.60168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08230786 711.60168457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08230787 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08230788 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08230789 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08230790 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08230791 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08230792 711.60174561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08230793 711.60180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08230794 711.60180664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08230795 711.60186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08230796 711.60186768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08230797 711.60192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08230798 711.60192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08230799 711.60192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08230800 711.60192871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08230801 711.60198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08230802 711.60198975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08230803 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08230804 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08230805 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08230806 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08230807 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08230808 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08230809 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08230810 711.60205078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08230811 711.60211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08230812 711.60211182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08230813 711.60217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08230814 711.60217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08230815 711.60217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08230816 711.60217285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08230817 711.60223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08230818 711.60223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08230819 711.60223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08230820 711.60223389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08230821 711.60229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08230822 711.60229492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08230823 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08230824 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08230825 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08230826 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08230827 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08230828 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08230829 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08230830 711.60235596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08230831 711.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08230832 711.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08230833 711.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08230834 711.60241699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08230835 711.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08230836 711.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08230837 711.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08230838 711.60247803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08230839 711.60253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08230840 711.60253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08230841 711.60253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08230842 711.60253906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08230843 711.60260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08230844 711.60260010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08230845 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08230846 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08230847 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08230848 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08230849 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08230850 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08230851 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08230852 711.60266113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08230853 711.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08230854 711.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08230855 711.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08230856 711.60272217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08230857 711.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08230858 711.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08230859 711.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08230860 711.60278320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08230861 711.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08230862 711.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08230863 711.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08230864 711.60284424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08230865 711.60290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08230866 711.60290527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08230867 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08230868 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08230869 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08230870 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08230871 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08230872 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08230873 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08230874 711.60296631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08230875 711.60302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08230876 711.60302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08230877 711.60302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08230878 711.60302734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08230879 711.60308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08230880 711.60308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08230881 711.60308838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08230882 711.60314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08230883 711.60314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08230884 711.60314941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08230885 711.60321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08230886 711.60321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08230887 711.60321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08230888 711.60321045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08230889 711.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08230890 711.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08230891 711.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08230892 711.60327148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08230893 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08230894 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08230895 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08230896 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08230897 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08230898 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08230899 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08230900 711.60333252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08230901 711.60339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08230902 711.60339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08230903 711.60339355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08230904 711.60345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08230905 711.60345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08230906 711.60345459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08230907 711.60351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08230908 711.60351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08230909 711.60351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08230910 711.60351563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08230911 711.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08230912 711.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08230913 711.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08230914 711.60357666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08230915 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08230916 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08230917 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08230918 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08230919 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08230920 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08230921 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08230922 711.60363770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08230923 711.60369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08230924 711.60369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08230925 711.60369873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08230926 711.60375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08230927 711.60375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08230928 711.60375977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08230929 711.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08230930 711.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08230931 711.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08230932 711.60382080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08230933 711.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08230934 711.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08230935 711.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08230936 711.60388184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08230937 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08230938 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08230939 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08230940 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08230941 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08230942 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08230943 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08230944 711.60394287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08230945 711.60400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08230946 711.60400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08230947 711.60400391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08230948 711.60406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08230949 711.60406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08230950 711.60406494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08230951 711.60412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08230952 711.60412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08230953 711.60412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08230954 711.60412598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08230955 711.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08230956 711.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08230957 711.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08230958 711.60418701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08230959 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08230960 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08230961 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08230962 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08230963 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08230964 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08230965 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08230966 711.60424805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08230967 711.60430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08230968 711.60430908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08230969 711.60437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08230970 711.60437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08230971 711.60437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08230972 711.60437012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08230973 711.60443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08230974 711.60443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08230975 711.60443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08230976 711.60443115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08230977 711.60449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08230978 711.60449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08230979 711.60449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08230980 711.60449219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08230981 711.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08230982 711.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08230983 711.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08230984 711.60455322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08230985 711.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08230986 711.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08230987 711.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08230988 711.60467529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08230989 711.60473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08230990 711.60473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08230991 711.60473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08230992 711.60473633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08230993 711.60479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08230994 711.60479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08230995 711.60479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08230996 711.60479736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08230997 711.60485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08230998 711.60485840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08230999 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08231000 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08231001 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08231002 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08231003 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08231004 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08231005 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08231006 711.60491943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08231007 711.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08231008 711.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08231009 711.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08231010 711.60498047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08231011 711.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08231012 711.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08231013 711.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08231014 711.60504150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08231015 711.60510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08231016 711.60510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08231017 711.60510254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08231018 711.60516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08231019 711.60516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08231020 711.60516357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08231021 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08231022 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08231023 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08231024 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08231025 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08231026 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08231027 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08231028 711.60522461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08231029 711.60528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08231030 711.60528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08231031 711.60528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08231032 711.60528564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08231033 711.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08231034 711.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08231035 711.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08231036 711.60534668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08231037 711.60540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08231038 711.60540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08231039 711.60540771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08231040 711.60546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08231041 711.60546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08231042 711.60546875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08231043 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08231044 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08231045 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08231046 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08231047 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08231048 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08231049 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08231050 711.60552979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08231051 711.60559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08231052 711.60559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08231053 711.60559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08231054 711.60559082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08231055 711.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08231056 711.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08231057 711.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08231058 711.60565186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08231059 711.60571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08231060 711.60571289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08231061 711.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08231062 711.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08231063 711.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08231064 711.60577393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08231065 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08231066 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08231067 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08231068 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08231069 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08231070 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08231071 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08231072 711.60583496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08231073 711.60589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08231074 711.60589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08231075 711.60589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08231076 711.60589600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08231077 711.60595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08231078 711.60595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08231079 711.60595703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08231080 711.60601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08231081 711.60601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08231082 711.60601807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08231083 711.60607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08231084 711.60607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08231085 711.60607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08231086 711.60607910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08231087 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08231088 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08231089 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08231090 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08231091 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08231092 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08231093 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08231094 711.60614014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08231095 711.60620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08231096 711.60620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08231097 711.60620117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08231098 711.60626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08231099 711.60626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08231100 711.60626221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08231101 711.60632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08231102 711.60632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08231103 711.60632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08231104 711.60632324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08231105 711.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08231106 711.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08231107 711.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08231108 711.60638428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08231109 711.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08231110 711.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08231111 711.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08231112 711.60644531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08231113 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08231114 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08231115 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08231116 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08231117 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08231118 711.60650635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08231119 711.60656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08231120 711.60656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08231121 711.60656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08231122 711.60656738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08231123 711.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08231124 711.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08231125 711.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08231126 711.60662842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08231127 711.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08231128 711.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08231129 711.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08231130 711.60668945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08231131 711.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08231132 711.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08231133 711.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08231134 711.60675049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08231135 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08231136 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08231137 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08231138 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08231139 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08231140 711.60681152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08231141 711.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08231142 711.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08231143 711.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08231144 711.60687256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08231145 711.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08231146 711.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08231147 711.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08231148 711.60693359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08231149 711.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08231150 711.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08231151 711.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08231152 711.60699463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08231153 711.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08231154 711.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08231155 711.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08231156 711.60705566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08231157 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08231158 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08231159 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08231160 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08231161 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08231162 711.60711670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08231163 711.60717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08231164 711.60717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08231165 711.60717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08231166 711.60717773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08231167 711.60723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08231168 711.60723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08231169 711.60723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08231170 711.60723877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08231171 711.60729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08231172 711.60729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08231173 711.60729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08231174 711.60729980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08231175 711.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08231176 711.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08231177 711.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08231178 711.60736084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08231179 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08231180 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08231181 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08231182 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08231183 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08231184 711.60742188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08231185 711.60748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08231186 711.60748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08231187 711.60748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08231188 711.60748291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08231189 711.60754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08231190 711.60754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08231191 711.60754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08231192 711.60754395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08231193 711.60760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08231194 711.60760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08231195 711.60760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08231196 711.60760498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08231197 711.60766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08231198 711.60766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08231199 711.60766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08231200 711.60766602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08231201 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08231202 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08231203 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08231204 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08231205 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08231206 711.60772705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08231207 711.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08231208 711.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08231209 711.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08231210 711.60778809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08231211 711.60784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08231212 711.60784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08231213 711.60784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08231214 711.60784912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08231215 711.60791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08231216 711.60791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08231217 711.60791016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08231218 711.60797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08231219 711.60797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08231220 711.60797119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08231221 711.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08231222 711.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08231223 711.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08231224 711.60803223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08231225 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08231226 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08231227 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08231228 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08231229 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08231230 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08231231 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08231232 711.60809326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08231233 711.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08231234 711.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08231235 711.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08231236 711.60815430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08231237 711.60821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08231238 711.60821533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08231239 711.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08231240 711.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08231241 711.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08231242 711.60827637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08231243 711.60833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08231244 711.60833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08231245 711.60833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08231246 711.60833740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08231247 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08231248 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08231249 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08231250 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08231251 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08231252 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08231253 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08231254 711.60839844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08231255 711.60845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08231256 711.60845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08231257 711.60845947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08231258 711.60852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08231259 711.60852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08231260 711.60852051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08231261 711.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08231262 711.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08231263 711.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08231264 711.60858154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08231265 711.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08231266 711.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08231267 711.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08231268 711.60864258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08231269 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08231270 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08231271 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08231272 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08231273 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08231274 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08231275 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08231276 711.60870361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08231277 711.60876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08231278 711.60876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08231279 711.60876465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08231280 711.60882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08231281 711.60882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08231282 711.60882568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08231283 711.60888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08231284 711.60888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08231285 711.60888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08231286 711.60888672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08231287 711.60894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08231288 711.60894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08231289 711.60894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08231290 711.60894775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08231291 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08231292 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08231293 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08231294 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08231295 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08231296 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08231297 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08231298 711.60900879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08231299 711.60906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08231300 711.60906982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08231301 711.60913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08231302 711.60913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08231303 711.60913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08231304 711.60913086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08231305 711.60919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08231306 711.60919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08231307 711.60919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08231308 711.60919189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08231309 711.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08231310 711.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08231311 711.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08231312 711.60925293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08231313 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08231314 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08231315 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08231316 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08231317 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08231318 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08231319 711.60931396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08231320 711.60937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08231321 711.60937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08231322 711.60937500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08231323 711.60943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08231324 711.60943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08231325 711.60943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08231326 711.60943604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08231327 711.60949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08231328 711.60949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08231329 711.60949707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08231330 711.60955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08231331 711.60955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08231332 711.60955811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08231333 711.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08231334 711.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08231335 711.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08231336 711.60961914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08231337 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08231338 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08231339 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08231340 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08231341 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08231342 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08231343 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08231344 711.60968018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08231345 711.60974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08231346 711.60974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08231347 711.60974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08231348 711.60974121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08231349 711.60980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08231350 711.60980225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08231351 711.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08231352 711.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08231353 711.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08231354 711.60986328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08231355 711.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08231356 711.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08231357 711.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08231358 711.60992432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08231359 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08231360 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08231361 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08231362 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08231363 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08231364 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08231365 711.60998535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08231366 711.61004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08231367 711.61004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08231368 711.61004639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08231369 711.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08231370 711.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08231371 711.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08231372 711.61010742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08231373 711.61016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08231374 711.61016846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08231375 711.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08231376 711.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08231377 711.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08231378 711.61022949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08231379 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08231380 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08231381 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08231382 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08231383 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08231384 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08231385 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08231386 711.61029053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08231387 711.61035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08231388 711.61035156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08231389 711.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08231390 711.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08231391 711.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08231392 711.61041260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08231393 711.61047363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08231394 711.61047363 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08231395 711.61053467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08231396 711.61053467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08231397 711.61053467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08231398 711.61053467 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08231399 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08231400 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08231401 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08231402 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08231403 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08231404 711.61059570 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08231405 711.61065674 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08231406 711.61065674 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08231407 711.61065674 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08231408 711.61065674 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08231409 711.61071777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08231410 711.61071777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08231411 711.61071777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08231412 711.61071777 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08231413 711.61077881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08231414 711.61077881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08231415 711.61077881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08231416 711.61077881 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08231417 711.61083984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08231418 711.61083984 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08231419 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08231420 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08231421 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08231422 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08231423 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08231424 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08231425 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08231426 711.61090088 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08231427 711.61096191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08231428 711.61096191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08231429 711.61096191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08231430 711.61096191 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08231431 711.61102295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08231432 711.61102295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08231433 711.61102295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08231434 711.61102295 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08231435 711.61108398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08231436 711.61108398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08231437 711.61108398 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08231438 711.61114502 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08231439 711.61114502 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08231440 711.61114502 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08231441 711.61120605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08231442 711.61120605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08231443 711.61120605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08231444 711.61120605 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08231445 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08231446 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08231447 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08231448 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08231449 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08231450 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08231451 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08231452 711.61126709 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08231453 711.61132813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08231454 711.61132813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08231455 711.61132813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08231456 711.61132813 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08231457 711.61138916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08231458 711.61138916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08231459 711.61138916 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08231460 711.61145020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08231461 711.61145020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08231462 711.61145020 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08231463 711.61151123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08231464 711.61151123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08231465 711.61151123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08231466 711.61151123 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08231467 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08231468 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08231469 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08231470 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08231471 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08231472 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08231473 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08231474 711.61157227 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08231475 711.61163330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08231476 711.61163330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08231477 711.61163330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08231478 711.61163330 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08231479 711.61169434 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08231480 711.61169434 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08231481 711.61169434 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08231482 711.61175537 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08231483 711.61175537 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08231484 711.61175537 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08231485 711.61181641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08231486 711.61181641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08231487 711.61181641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08231488 711.61181641 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08231489 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08231490 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08231491 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08231492 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08231493 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08231494 711.61187744 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08231495 711.61193848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08231496 711.61193848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08231497 711.61193848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08231498 711.61193848 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08231499 711.61199951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08231500 711.61199951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08231501 711.61199951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08231502 711.61199951 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08231503 711.61206055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08231504 711.61206055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08231505 711.61206055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08231506 711.61206055 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08231507 711.61212158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08231508 711.61212158 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08231509 711.61218262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08231510 711.61218262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08231511 711.61218262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08231512 711.61218262 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08231513 711.61224365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08231514 711.61224365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08231515 711.61224365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08231516 711.61224365 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08231517 711.61230469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08231518 711.61230469 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08231519 711.61236572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08231520 711.61236572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08231521 711.61236572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08231522 711.61236572 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08231523 711.61242676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08231524 711.61242676 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08231525 711.61248779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08231526 711.61248779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08231527 711.61248779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08231528 711.61248779 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08231529 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08231530 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08231531 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08231532 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08231533 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08231534 711.61254883 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08231535 711.61260986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08231536 711.61260986 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08231537 711.61267090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08231538 711.61267090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08231539 711.61267090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08231540 711.61267090 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08231541 711.61273193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08231542 711.61273193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08231543 711.61273193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08231544 711.61273193 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08231545 711.61279297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08231546 711.61279297 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08231547 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08231548 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08231549 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08231550 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08231551 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08231552 711.61285400 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08231553 711.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08231554 711.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08231555 711.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08231556 711.61291504 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08231557 711.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08231558 711.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08231559 711.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08231560 711.61297607 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08231561 711.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08231562 711.61303711 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08231563 711.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08231564 711.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08231565 711.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08231566 711.61309814 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08231567 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08231568 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08231569 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08231570 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08231571 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08231572 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08231573 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08231574 711.61315918 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08231575 711.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08231576 711.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08231577 711.61322021 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08231578 711.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08231579 711.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08231580 711.61328125 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08231581 711.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08231582 711.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08231583 711.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08231584 711.61334229 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08231585 711.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08231586 711.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08231587 711.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08231588 711.61340332 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08231589 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08231590 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08231591 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08231592 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08231593 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08231594 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08231595 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08231596 711.61346436 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08231597 711.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08231598 711.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08231599 711.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08231600 711.61352539 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08231601 711.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08231602 711.61358643 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08231603 711.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08231604 711.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08231605 711.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08231606 711.61364746 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08231607 711.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08231608 711.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08231609 711.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08231610 711.61370850 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08231611 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08231612 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08231613 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08231614 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08231615 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08231616 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08231617 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08231618 711.61376953 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08231619 711.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08231620 711.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08231621 711.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08231622 711.61383057 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08231623 711.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08231624 711.61389160 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08231625 711.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08231626 711.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08231627 711.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08231628 711.61395264 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08231629 711.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08231630 711.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08231631 711.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08231632 711.61401367 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08231633 711.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08231634 711.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08231635 711.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08231636 711.61407471 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08231637 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08231638 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08231639 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08231640 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08231641 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08231642 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08231643 711.61413574 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08231644 711.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08231645 711.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08231646 711.61419678 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08231647 711.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08231648 711.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08231649 711.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08231650 711.61425781 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08231651 711.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08231652 711.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08231653 711.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08231654 711.61431885 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08231655 711.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08231656 711.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08231657 711.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08231658 711.61437988 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08231659 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08231660 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08231661 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08231662 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08231663 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08231664 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08231665 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08231666 711.61444092 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08231667 711.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08231668 711.61450195 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08231669 711.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08231670 711.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08231671 711.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08231672 711.61456299 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08231673 711.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08231674 711.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08231675 711.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08231676 711.61462402 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08231677 711.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08231678 711.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08231679 711.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08231680 711.61468506 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08231681 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08231682 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08231683 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08231684 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08231685 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08231686 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08231687 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08231688 711.61474609 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08231689 711.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08231690 711.61480713 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08231691 711.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08231692 711.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08231693 711.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08231694 711.61486816 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08231695 711.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08231696 711.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08231697 711.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08231698 711.61492920 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08231699 711.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08231700 711.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08231701 711.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08231702 711.61499023 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08231703 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08231704 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08231705 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08231706 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08231707 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08231708 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08231709 711.61505127 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08231710 711.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08231711 711.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08231712 711.61511230 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08231713 711.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08231714 711.61517334 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08231715 711.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08231716 711.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08231717 711.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08231718 711.61523438 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08231719 711.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08231720 711.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08231721 711.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08231722 711.61529541 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08231723 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08231724 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08231725 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08231726 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08231727 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08231728 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08231729 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08231730 711.61535645 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08231731 711.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08231732 711.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08231733 711.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08231734 711.61541748 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08231735 711.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08231736 711.61547852 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08231737 711.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08231738 711.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08231739 711.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08231740 711.61553955 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08231741 711.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08231742 711.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08231743 711.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08231744 711.61560059 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08231745 711.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08231746 711.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08231747 711.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08231748 711.61566162 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08231749 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08231750 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08231751 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08231752 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08231753 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08231754 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08231755 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08231756 711.61572266 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08231757 711.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08231758 711.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08231759 711.61578369 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08231760 711.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08231761 711.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08231762 711.61584473 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08231763 711.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08231764 711.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08231765 711.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08231766 711.61590576 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08231767 711.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08231768 711.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08231769 711.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08231770 711.61596680 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08231771 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08231772 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08231773 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08231774 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08231775 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08231776 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08231777 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08231778 711.61602783 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08231779 711.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08231780 711.61608887 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08231781 711.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08231782 711.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08231783 711.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08231784 711.61614990 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08231785 711.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08231786 711.61621094 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08231787 711.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08231788 711.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08231789 711.61627197 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08231790 711.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08231791 711.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08231792 711.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08231793 711.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08231794 711.61633301 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08231795 711.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08231796 711.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08231797 711.61639404 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08231798 711.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08231799 711.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08231800 711.61645508 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08231801 711.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08231802 711.61651611 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08231803 711.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08231804 711.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08231805 711.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08231806 711.61657715 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08231807 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08231808 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08231809 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08231810 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08231811 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08231812 711.61663818 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08231813 711.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08231814 711.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08231815 711.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08231816 711.61669922 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08231817 711.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08231818 711.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08231819 711.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08231820 711.61676025 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08231821 711.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08231822 711.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08231823 711.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08231824 711.61682129 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08231825 711.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08231826 711.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08231827 711.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08231828 711.61688232 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08231829 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08231830 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08231831 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08231832 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08231833 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08231834 711.61694336 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08231835 711.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08231836 711.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08231837 711.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08231838 711.61700439 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08231839 711.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08231840 711.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08231841 711.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08231842 711.61706543 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08231843 711.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08231844 711.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08231845 711.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08231846 711.61712646 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08231847 711.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08231848 711.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08231849 711.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08231850 711.61718750 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08231851 711.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08231852 711.61724854 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08231853 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08231854 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08231855 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08231856 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08231857 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08231858 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08231859 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08231860 711.61730957 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08231861 711.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08231862 711.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08231863 711.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08231864 711.61737061 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08231865 711.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08231866 711.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08231867 711.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08231868 711.61743164 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08231869 711.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08231870 711.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08231871 711.61749268 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08231872 711.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08231873 711.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08231874 711.61755371 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08231875 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08231876 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08231877 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08231878 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08231879 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08231880 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08231881 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08231882 711.61761475 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08231883 711.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08231884 711.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08231885 711.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08231886 711.61767578 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08231887 711.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08231888 711.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08231889 711.61773682 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08231890 711.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08231891 711.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08231892 711.61779785 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08231893 711.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08231894 711.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08231895 711.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08231896 711.61785889 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08231897 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08231898 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08231899 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08231900 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08231901 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08231902 711.61791992 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08231903 711.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08231904 711.61798096 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08231905 711.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08231906 711.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08231907 711.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08231908 711.61804199 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08231909 711.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08231910 711.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08231911 711.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08231912 711.61810303 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08231913 711.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08231914 711.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08231915 711.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08231916 711.61816406 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08231917 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08231918 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08231919 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08231920 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08231921 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08231922 711.61822510 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08231923 711.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08231924 711.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08231925 711.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08231926 711.61828613 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08231927 711.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08231928 711.61834717 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08231929 711.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08231930 711.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08231931 711.61840820 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08231932 711.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08231933 711.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08231934 711.61846924 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08231935 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08231936 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08231937 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08231938 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08231939 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08231940 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08231941 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08231942 711.61853027 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08231943 711.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08231944 711.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08231945 711.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08231946 711.61859131 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08231947 711.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08231948 711.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08231949 711.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08231950 711.61865234 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08231951 711.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08231952 711.61871338 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08231953 711.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08231954 711.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08231955 711.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08231956 711.61877441 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08231957 711.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08231958 711.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08231959 711.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08231960 711.61883545 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08231961 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08231962 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08231963 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08231964 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08231965 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08231966 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08231967 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08231968 711.61889648 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08231969 711.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08231970 711.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08231971 711.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08231972 711.61895752 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08231973 711.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08231974 711.61901855 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08231975 711.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08231976 711.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08231977 711.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08231978 711.61907959 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08231979 711.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08231980 711.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08231981 711.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08231982 711.61914063 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08231983 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08231984 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08231985 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08231986 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08231987 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08231988 711.61920166 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08231989 711.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08231990 711.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08231991 711.61926270 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08231992 711.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08231993 711.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08231994 711.61932373 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08231995 711.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08231996 711.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08231997 711.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08231998 711.61938477 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08231999 711.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08232000 711.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08232001 711.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08232002 711.61944580 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08232003 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08232004 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08232005 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08232006 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08232007 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08232008 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08232009 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08232010 711.61950684 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08232011 711.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08232012 711.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08232013 711.61956787 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08232014 711.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08232015 711.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08232016 711.61962891 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08232017 711.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08232018 711.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08232019 711.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08232020 711.61968994 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08232021 711.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08232022 711.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08232023 711.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08232024 711.61975098 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08232025 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08232026 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08232027 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08232028 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08232029 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08232030 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08232031 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08232032 711.61981201 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08232033 711.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08232034 711.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08232035 711.61987305 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08232036 711.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08232037 711.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08232038 711.61993408 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08232039 711.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08232040 711.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08232041 711.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08232042 711.61999512 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08232043 711.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08232044 711.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08232045 711.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08232046 711.62005615 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08232047 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08232048 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08232049 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08232050 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08232051 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08232052 711.62011719 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08232053 711.62017822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08232054 711.62017822 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08232055 711.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08232056 711.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08232057 711.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08232058 711.62023926 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08232059 711.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08232060 711.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08232061 711.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08232062 711.62030029 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08232063 711.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08232064 711.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08232065 711.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08232066 711.62036133 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08232067 711.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08232068 711.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08232069 711.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08232070 711.62042236 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08232071 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08232072 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08232073 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08232074 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08232075 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08232076 711.62048340 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08232077 711.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08232078 711.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08232079 711.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08232080 711.62054443 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08232081 711.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08232082 711.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08232083 711.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08232084 711.62060547 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08232085 711.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08232086 711.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08232087 711.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08232088 711.62066650 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08232089 711.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08232090 711.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08232091 711.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08232092 711.62072754 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08232093 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08232094 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08232095 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08232096 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08232097 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08232098 711.62078857 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08232099 711.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08232100 711.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08232101 711.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08232102 711.62084961 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08232103 711.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08232104 711.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08232105 711.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08232106 711.62091064 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08232107 711.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08232108 711.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08232109 711.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08232110 711.62097168 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08232111 711.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08232112 711.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08232113 711.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08232114 711.62103271 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08232115 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08232116 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08232117 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08232118 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08232119 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08232120 711.62109375 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08232121 711.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08232122 711.62115479 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08232123 711.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08232124 711.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08232125 711.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08232126 711.62121582 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08232127 711.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08232128 711.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08232129 711.62127686 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08232130 711.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08232131 711.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08232132 711.62133789 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08232133 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08232134 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08232135 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08232136 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08232137 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08232138 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08232139 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08232140 711.62139893 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08232141 711.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08232142 711.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08232143 711.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08232144 711.62145996 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08232145 711.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08232146 711.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08232147 711.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08232148 711.62152100 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08232149 711.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08232150 711.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08232151 711.62158203 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08232152 711.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08232153 711.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08232154 711.62164307 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08232155 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08232156 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08232157 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08232158 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08232159 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08232160 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08232161 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08232162 711.62170410 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08232163 711.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08232164 711.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08232165 711.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08232166 711.62176514 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08232167 711.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08232168 711.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08232169 711.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08232170 711.62182617 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08232171 711.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08232172 711.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08232173 711.62188721 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08232174 711.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08232175 711.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08232176 711.62194824 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08232177 711.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08232178 711.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08232179 711.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08232180 711.62200928 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08232181 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08232182 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08232183 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08232184 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08232185 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08232186 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08232187 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08232188 711.62207031 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08232189 711.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08232190 711.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08232191 711.62213135 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08232192 711.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08232193 711.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08232194 711.62219238 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08232195 711.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08232196 711.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08232197 711.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08232198 711.62225342 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08232199 711.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08232200 711.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08232201 711.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08232202 711.62231445 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08232203 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08232204 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08232205 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08232206 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08232207 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08232208 711.62237549 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08232209 711.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08232210 711.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08232211 711.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08232212 711.62243652 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08232213 711.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08232214 711.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08232215 711.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08232216 711.62249756 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08232217 711.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08232218 711.62255859 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08232219 711.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08232220 711.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08232221 711.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08232222 711.62261963 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08232223 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08232224 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08232225 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08232226 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08232227 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08232228 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08232229 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08232230 711.62268066 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08232231 711.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08232232 711.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08232233 711.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08232234 711.62274170 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08232235 711.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08232236 711.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08232237 711.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08232238 711.62280273 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08232239 711.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08232240 711.62286377 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08232241 711.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08232242 711.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08232243 711.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08232244 711.62292480 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08232245 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08232246 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08232247 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08232248 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08232249 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08232250 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08232251 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08232252 711.62298584 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08232253 711.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08232254 711.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08232255 711.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08232256 711.62304688 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08232257 711.62310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08232258 711.62310791 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08232259 711.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08232260 711.62316895 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08232261 711.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08232262 711.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08232263 711.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08232264 711.62322998 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08232265 711.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08232266 711.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08232267 711.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08232268 711.62329102 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08232269 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08232270 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08232271 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08232272 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08232273 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08232274 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08232275 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08232276 711.62335205 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08232277 711.62341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08232278 711.62341309 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08232279 711.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08232280 711.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08232281 711.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08232282 711.62347412 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08232283 711.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08232284 711.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08232285 711.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08232286 711.62353516 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08232287 711.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08232288 711.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08232289 711.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08232290 711.62359619 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08232291 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08232292 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08232293 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08232294 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08232295 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08232296 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08232297 711.62365723 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08232298 711.62371826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08232299 711.62371826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08232300 711.62371826 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08232301 711.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08232302 711.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08232303 711.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08232304 711.62377930 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08232305 711.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08232306 711.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08232307 711.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08232308 711.62384033 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08232309 711.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08232310 711.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08232311 711.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08232312 711.62390137 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08232313 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08232314 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08232315 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08232316 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08232317 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08232318 711.62396240 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08232319 711.62402344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08232320 711.62402344 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08232321 711.62408447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08232322 711.62408447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08232323 711.62408447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08232324 711.62408447 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08232325 711.62414551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08232326 711.62414551 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08232327 711.62420654 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08232328 711.62420654 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08232329 711.62426758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08232330 711.62426758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08232331 711.62426758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08232332 711.62426758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08232333 711.62426758 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08232334 711.62432861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08232335 711.62432861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08232336 711.62432861 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08232337 711.62438965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08232338 711.62438965 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08232339 711.62445068 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08232340 711.62445068 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08232341 711.62451172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08232342 711.62451172 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08232343 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08232344 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08232345 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08232346 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08232347 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08232348 711.62457275 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08232349 711.62463379 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08232350 711.62463379 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08232351 711.62469482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08232352 711.62469482 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08232353 711.62475586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08232354 711.62475586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08232355 711.62475586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08232356 711.62475586 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08232357 711.62481689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08232358 711.62481689 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08232359 711.62487793 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08232360 711.62487793 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08232361 711.62493896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08232362 711.62493896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08232363 711.62493896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08232364 711.62493896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08232365 711.62493896 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08232366 711.62500000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08232367 711.62500000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08232368 711.62500000 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08232369 711.62506104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08232370 711.62506104 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08232371 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08232372 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08232373 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08232374 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08232375 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08232376 711.62524414 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08232377 711.62542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08232378 711.62542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08232379 711.62542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08232380 711.62542725 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08232381 711.62548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08232382 711.62548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08232383 711.62548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08232384 711.62548828 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08232385 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08232386 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08232387 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08232388 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08232389 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08232390 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08232391 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08232392 711.62554932 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08232393 711.62561035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08232394 711.62561035 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08232395 711.62567139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08232396 711.62567139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08232397 711.62567139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08232398 711.62567139 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08232399 711.62573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08232400 711.62573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08232401 711.62573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08232402 711.62573242 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08232403 711.62579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08232404 711.62579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08232405 711.62579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08232406 711.62579346 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08232407 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08232408 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08232409 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08232410 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08232411 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08232412 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08232413 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08232414 711.62585449 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08232415 711.62591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08232416 711.62591553 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08232417 711.62597656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08232418 711.62597656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08232419 711.62597656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08232420 711.62597656 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08232421 711.62603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08232422 711.62603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08232423 711.62603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08232424 711.62603760 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08232425 711.62609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08232426 711.62609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08232427 711.62609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08232428 711.62609863 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08232429 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08232430 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08232431 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08232432 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08232433 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08232434 711.62615967 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08232435 711.62622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08232436 711.62622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08232437 711.62622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08232438 711.62622070 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08232439 711.62628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08232440 711.62628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08232441 711.62628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08232442 711.62628174 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08232443 711.62634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08232444 711.62634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08232445 711.62634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08232446 711.62634277 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08232447 711.62640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08232448 711.62640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08232449 711.62640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08232450 711.62640381 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08232451 711.62646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08232452 711.62646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08232453 711.62646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08232454 711.62646484 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08232455 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08232456 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08232457 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08232458 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08232459 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08232460 711.62652588 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08232461 711.62658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08232462 711.62658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08232463 711.62658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08232464 711.62658691 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08232465 711.62664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08232466 711.62664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08232467 711.62664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08232468 711.62664795 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08232469 711.62670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08232470 711.62670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08232471 711.62670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08232472 711.62670898 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08232473 711.62677002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08232474 711.62677002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08232475 711.62677002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08232476 711.62677002 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08232477 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08232478 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08232479 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08232480 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08232481 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08232482 711.62683105 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08232483 711.62689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08232484 711.62689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08232485 711.62689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08232486 711.62689209 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08232487 711.62695313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08232488 711.62695313 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08232489 711.62701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08232490 711.62701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08232491 711.62701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08232492 711.62701416 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08232493 711.62707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08232494 711.62707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08232495 711.62707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08232496 711.62707520 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08232497 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08232498 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08232499 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08232500 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08232501 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08232502 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08232503 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08232504 711.62713623 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08232505 711.62719727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08232506 711.62719727 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08232507 711.62725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08232508 711.62725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08232509 711.62725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08232510 711.62725830 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08232511 711.62731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08232512 711.62731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08232513 711.62731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08232514 711.62731934 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08232515 711.62738037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08232516 711.62738037 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08232517 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08232518 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08232519 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08232520 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08232521 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08232522 711.62744141 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08232523 711.62750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08232524 711.62750244 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08232525 711.62756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08232526 711.62756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08232527 711.62756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08232528 711.62756348 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08232529 711.62762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08232530 711.62762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08232531 711.62762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08232532 711.62762451 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08232533 711.62768555 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08232534 711.62768555 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08232535 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08232536 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08232537 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08232538 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08232539 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08232540 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08232541 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08232542 711.62774658 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08232543 711.62780762 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08232544 711.62780762 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08232545 711.62786865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08232546 711.62786865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08232547 711.62786865 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08232548 711.62792969 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08232549 711.62792969 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08232550 711.62792969 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08232551 711.62799072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08232552 711.62799072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08232553 711.62799072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08232554 711.62799072 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08232555 711.62805176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08232556 711.62805176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08232557 711.62805176 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08232558 711.62811279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08232559 711.62811279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08232560 711.62811279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08232561 711.62811279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08232562 711.62811279 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08232563 711.62817383 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08232564 711.62817383 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08232565 711.62817383 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08232566 711.62817383 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08232567 711.62823486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08232568 711.62823486 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08232569 711.62829590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08232570 711.62829590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08232571 711.62829590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08232572 711.62829590 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08232573 711.62835693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08232574 711.62835693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08232575 711.62835693 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08232576 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08232577 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08232578 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08232579 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08232580 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08232581 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08232582 711.62841797 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08232583 711.62847900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08232584 711.62847900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08232585 711.62847900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08232586 711.62847900 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08232587 711.62854004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08232588 711.62854004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08232589 711.62854004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08232590 711.62854004 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08232591 711.62860107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08232592 711.62860107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08232593 711.62860107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08232594 711.62860107 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08232595 711.62866211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08232596 711.62866211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08232597 711.62866211 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08232598 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08232599 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08232600 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08232601 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08232602 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08232603 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08232604 711.62872314 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08232605 711.62878418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08232606 711.62878418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08232607 711.62878418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08232608 711.62878418 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08232609 711.62884521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08232610 711.62884521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08232611 711.62884521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08232612 711.62884521 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08232613 711.62890625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08232614 711.62890625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08232615 711.62890625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08232616 711.62890625 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08232617 711.62896729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08232618 711.62896729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08232619 711.62896729 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08232620 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08232621 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08232622 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08232623 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08232624 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08232625 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08232626 711.62902832 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08232627 711.62908936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08232628 711.62908936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08232629 711.62908936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08232630 711.62908936 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08232631 711.62915039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08232632 711.62915039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08232633 711.62915039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08232634 711.62915039 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08232635 711.62921143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08232636 711.62921143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08232637 711.62921143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08232638 711.62921143 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08232639 711.62927246 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08232640 711.62927246 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08232641 711.62927246 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08232642 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08232643 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08232644 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08232645 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08232646 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08232647 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08232648 711.62933350 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08232649 711.62939453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08232650 711.62939453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08232651 711.62939453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08232652 711.62939453 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08232653 711.62945557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08232654 711.62945557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08232655 711.62945557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08232656 711.62945557 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08232657 711.62951660 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08232658 711.62951660 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08232659 711.62951660 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08232660 711.62951660 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08232661 711.62957764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08232662 711.62957764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08232663 711.62957764 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08232664 711.62963867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08232665 711.62963867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08232666 711.62963867 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08232667 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08232668 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08232669 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08232670 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08232671 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08232672 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08232673 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08232674 711.62969971 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08232675 711.62976074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08232676 711.62976074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08232677 711.62976074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08232678 711.62976074 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08232679 711.62982178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08232680 711.62982178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08232681 711.62982178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08232682 711.62982178 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08232683 711.62988281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08232684 711.62988281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08232685 711.62988281 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08232686 711.62994385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08232687 711.62994385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08232688 711.62994385 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08232689 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08232690 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08232691 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08232692 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08232693 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08232694 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08232695 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08232696 711.63000488 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08232697 711.63006592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08232698 711.63006592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08232699 711.63006592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08232700 711.63006592 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08232701 711.63012695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08232702 711.63012695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08232703 711.63012695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08232704 711.63012695 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08232705 711.63018799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08232706 711.63018799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08232707 711.63018799 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08232708 711.63024902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08232709 711.63024902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08232710 711.63024902 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08232711 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08232712 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08232713 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08232714 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08232715 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08232716 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08232717 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08232718 711.63031006 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08232719 711.63037109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08232720 711.63037109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08232721 711.63037109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08232722 711.63037109 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08232723 711.63043213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08232724 711.63043213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08232725 711.63043213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08232726 711.63043213 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08232727 711.63049316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08232728 711.63049316 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08232729 711.63055420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08232730 711.63055420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08232731 711.63055420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08232732 711.63055420 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08232733 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08232734 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08232735 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08232736 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08232737 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08232738 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08232739 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08232740 711.63061523 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08232741 711.63067627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08232742 711.63067627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08232743 711.63067627 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08232744 711.63073730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08232745 711.63073730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08232746 711.63073730 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08232747 711.63079834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08232748 711.63079834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08232749 711.63079834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08232750 711.63079834 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08232751 711.63085938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08232752 711.63085938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08232753 711.63085938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08232754 711.63085938 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08232755 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08232756 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08232757 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08232758 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08232759 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08232760 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08232761 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08232762 711.63092041 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08232763 711.63098145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08232764 711.63098145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08232765 711.63098145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08232766 711.63104248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08232767 711.63104248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08232768 711.63104248 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08232769 711.63110352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08232770 711.63110352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08232771 711.63110352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08232772 711.63110352 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08232773 711.63116455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08232774 711.63116455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08232775 711.63116455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08232776 711.63116455 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08232777 711.63122559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08232778 711.63122559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08232779 711.63122559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08232780 711.63122559 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08232781 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08232782 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08232783 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08232784 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08232785 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08232786 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08232787 711.63128662 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08232788 711.63134766 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08233367 711.63977051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -08233368 711.63977051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ca8 -08233369 711.63977051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -08233370 711.63977051 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cb8 -08233371 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -08233372 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cc8 -08233373 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -08233374 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cd8 -08233375 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -08233376 711.63983154 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8ce8 -08233377 711.63989258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -08233378 711.63989258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8cf8 -08233379 711.63989258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -08233380 711.63989258 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d08 -08233381 711.63995361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -08233382 711.63995361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d18 -08233383 711.63995361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -08233384 711.63995361 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d28 -08233385 711.64001465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -08233386 711.64001465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d38 -08233387 711.64001465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -08233388 711.64001465 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d48 -08233389 711.64007568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -08233390 711.64007568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d58 -08233391 711.64007568 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -08233392 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d68 -08233393 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -08233394 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d78 -08233395 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -08233396 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d88 -08233397 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -08233398 711.64013672 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8d98 -08233399 711.64019775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -08233400 711.64019775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8da8 -08233401 711.64019775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -08233402 711.64019775 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8db8 -08233403 711.64025879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -08233404 711.64025879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dc8 -08233405 711.64025879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -08233406 711.64025879 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8dd8 -08233407 711.64031982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -08233408 711.64031982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8de8 -08233409 711.64031982 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -08233410 711.64038086 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x8df8 -08235211 711.67468262 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -08235212 711.67468262 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc648 -08235213 711.67468262 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -08235214 711.67468262 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc658 -08235215 711.67474365 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -08235216 711.67474365 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc668 -08235217 711.67474365 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -08235218 711.67474365 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc678 -08235219 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -08235220 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc688 -08235221 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -08235222 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc698 -08235223 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -08235224 711.67480469 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6a8 -08235225 711.67486572 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -08235226 711.67486572 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6b8 -08235227 711.67486572 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -08235228 711.67486572 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6c8 -08235229 711.67492676 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -08235230 711.67492676 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6d8 -08235231 711.67492676 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -08235232 711.67492676 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6e8 -08235233 711.67498779 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -08235234 711.67498779 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc6f8 -08235235 711.67498779 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -08235236 711.67498779 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc708 -08235237 711.67504883 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -08235238 711.67504883 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc718 -08235239 711.67504883 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -08235240 711.67504883 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc728 -08235241 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -08235242 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc738 -08235243 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -08235244 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc748 -08235245 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -08235246 711.67510986 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc758 -08235247 711.67517090 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -08235248 711.67517090 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc768 -08235249 711.67517090 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -08235250 711.67517090 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc778 -08235251 711.67523193 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -08235252 711.67523193 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc788 -08235253 711.67523193 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -08235254 711.67523193 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0xc798 -08237567 711.70782471 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe8 -08237568 711.70782471 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x10fe8 -08237569 711.70788574 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff8 -08237570 711.70788574 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x10ff8 -08237571 711.70788574 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11008 -08237572 711.70794678 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11008 -08237573 711.70794678 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11018 -08237574 711.70794678 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11018 -08237575 711.70800781 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11028 -08237576 711.70800781 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11028 -08237577 711.70800781 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11038 -08237578 711.70800781 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11038 -08237579 711.70806885 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11048 -08237580 711.70806885 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11048 -08237581 711.70806885 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11058 -08237582 711.70806885 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11058 -08237583 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11068 -08237584 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11068 -08237585 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11078 -08237586 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11078 -08237587 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11088 -08237588 711.70812988 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11088 -08237589 711.70819092 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11098 -08237590 711.70819092 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11098 -08237591 711.70819092 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a8 -08237592 711.70819092 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110a8 -08237593 711.70825195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b8 -08237594 711.70825195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110b8 -08237595 711.70825195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c8 -08237596 711.70825195 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110c8 -08237597 711.70831299 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d8 -08237598 711.70831299 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110d8 -08237599 711.70831299 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e8 -08237600 711.70831299 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110e8 -08237601 711.70837402 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f8 -08237602 711.70837402 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x110f8 -08237603 711.70837402 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11108 -08237604 711.70837402 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11108 -08237605 711.70843506 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11118 -08237606 711.70843506 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11118 -08237607 711.70843506 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11128 -08237608 711.70849609 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11128 -08237609 711.70849609 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11138 -08237610 711.70849609 [vmhook-eac [core number = 21]] READ(Q/DW/B) EasyAntiCheat.sys+0x11138 -08239689 711.73815918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -08239690 711.73815918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15238 -08239691 711.73822021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -08239692 711.73822021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15248 -08239693 711.73822021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -08239694 711.73822021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15258 -08239695 711.73828125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -08239696 711.73828125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15268 -08239697 711.73828125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -08239698 711.73828125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15278 -08239699 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -08239700 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15288 -08239701 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -08239702 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15298 -08239703 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -08239704 711.73834229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152a8 -08239705 711.73840332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -08239706 711.73840332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152b8 -08239707 711.73840332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -08239708 711.73840332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152c8 -08239709 711.73846436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -08239710 711.73846436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152d8 -08239711 711.73846436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -08239712 711.73846436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152e8 -08239713 711.73852539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -08239714 711.73852539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x152f8 -08239715 711.73852539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -08239716 711.73852539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15308 -08239717 711.73858643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -08239718 711.73858643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15318 -08239719 711.73858643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -08239720 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15328 -08239721 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -08239722 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15338 -08239723 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -08239724 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15348 -08239725 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -08239726 711.73864746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15358 -08239727 711.73870850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -08239728 711.73870850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15368 -08239729 711.73870850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -08239730 711.73870850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15378 -08239731 711.73876953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -08239732 711.73876953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x15388 -08241477 711.76934814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a18 -08241478 711.76934814 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a18 -08241479 711.76940918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a28 -08241480 711.76940918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a28 -08241481 711.76940918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a38 -08241482 711.76940918 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a38 -08241483 711.76947021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a48 -08241484 711.76947021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a48 -08241485 711.76947021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a58 -08241486 711.76947021 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a58 -08241487 711.76953125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a68 -08241488 711.76953125 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a68 -08241489 711.76959229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a78 -08241490 711.76959229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a78 -08241491 711.76959229 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -08241492 711.76965332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a88 -08241493 711.76965332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -08241494 711.76965332 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a98 -08241495 711.76971436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -08241496 711.76971436 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18aa8 -08241497 711.76977539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -08241498 711.76977539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ab8 -08241499 711.76977539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -08241500 711.76977539 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ac8 -08241501 711.76983643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad8 -08241502 711.76983643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ad8 -08241503 711.76983643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae8 -08241504 711.76983643 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18ae8 -08241505 711.76989746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af8 -08241506 711.76989746 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18af8 -08241507 711.76995850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b08 -08241508 711.76995850 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b08 -08241509 711.77001953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b18 -08241510 711.77001953 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b18 -08241511 711.77008057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b28 -08241512 711.77008057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b28 -08241513 711.77008057 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b38 -08241514 711.77014160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b38 -08241515 711.77014160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -08241516 711.77014160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b48 -08241517 711.77014160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -08241518 711.77014160 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b58 -08241519 711.77020264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -08241520 711.77020264 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b68 -08243783 711.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d228 -08243784 711.80273438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d228 -08243785 711.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d238 -08243786 711.80279541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d238 -08243787 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d248 -08243788 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d248 -08243789 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d258 -08243790 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d258 -08243791 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d268 -08243792 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d268 -08243793 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d278 -08243794 711.80285645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d278 -08243795 711.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d288 -08243796 711.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d288 -08243797 711.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d298 -08243798 711.80291748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d298 -08243799 711.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a8 -08243800 711.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2a8 -08243801 711.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b8 -08243802 711.80297852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2b8 -08243803 711.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c8 -08243804 711.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2c8 -08243805 711.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d8 -08243806 711.80303955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2d8 -08243807 711.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e8 -08243808 711.80310059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2e8 -08243809 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f8 -08243810 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d2f8 -08243811 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d308 -08243812 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d308 -08243813 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d318 -08243814 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d318 -08243815 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d328 -08243816 711.80316162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d328 -08243817 711.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d338 -08243818 711.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d338 -08243819 711.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -08243820 711.80322266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d348 -08243821 711.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -08243822 711.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d358 -08243823 711.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -08243824 711.80328369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d368 -08243825 711.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -08243826 711.80334473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d378 -08245909 711.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21498 -08245910 711.83282471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21498 -08245911 711.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -08245912 711.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214a8 -08245913 711.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -08245914 711.83288574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214b8 -08245915 711.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -08245916 711.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214c8 -08245917 711.83294678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -08245918 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214d8 -08245919 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -08245920 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214e8 -08245921 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -08245922 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x214f8 -08245923 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -08245924 711.83300781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21508 -08245925 711.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -08245926 711.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21518 -08245927 711.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -08245928 711.83306885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21528 -08245929 711.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -08245930 711.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21538 -08245931 711.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -08245932 711.83312988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21548 -08245933 711.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -08245934 711.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21558 -08245935 711.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -08245936 711.83319092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21568 -08245937 711.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -08245938 711.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21578 -08245939 711.83325195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -08245940 711.83331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21588 -08245941 711.83331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -08245942 711.83331299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21598 -08245943 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -08245944 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215a8 -08245945 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -08245946 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215b8 -08245947 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -08245948 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215c8 -08245949 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -08245950 711.83337402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215d8 -08245951 711.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -08245952 711.83343506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x215e8 -08247849 711.86175537 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -08247850 711.86175537 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25138 -08247851 711.86181641 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -08247852 711.86181641 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25148 -08247853 711.86181641 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -08247854 711.86181641 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25158 -08247855 711.86187744 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -08247856 711.86187744 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25168 -08247857 711.86187744 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -08247858 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25178 -08247859 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -08247860 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25188 -08247861 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -08247862 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25198 -08247863 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -08247864 711.86193848 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251a8 -08247865 711.86199951 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -08247866 711.86199951 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251b8 -08247867 711.86199951 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -08247868 711.86199951 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251c8 -08247869 711.86206055 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -08247870 711.86206055 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251d8 -08247871 711.86206055 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -08247872 711.86206055 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251e8 -08247873 711.86212158 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -08247874 711.86212158 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x251f8 -08247875 711.86212158 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -08247876 711.86212158 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25208 -08247877 711.86218262 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25218 -08247878 711.86218262 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25218 -08247879 711.86218262 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25228 -08247880 711.86218262 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25228 -08247881 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25238 -08247882 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25238 -08247883 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25248 -08247884 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25248 -08247885 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25258 -08247886 711.86224365 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25258 -08247887 711.86230469 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25268 -08247888 711.86230469 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25268 -08247889 711.86230469 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25278 -08247890 711.86230469 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25278 -08247891 711.86236572 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25288 -08247892 711.86236572 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x25288 -08252871 711.93713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee28 -08252872 711.93713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee28 -08252873 711.93713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -08252874 711.93713379 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee38 -08252875 711.93719482 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -08252876 711.93719482 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee48 -08252877 711.93719482 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -08252878 711.93719482 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee58 -08252879 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -08252880 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee68 -08252881 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -08252882 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee78 -08252883 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -08252884 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee88 -08252885 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -08252886 711.93725586 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee98 -08252887 711.93731689 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -08252888 711.93731689 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eea8 -08252889 711.93731689 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -08252890 711.93737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eeb8 -08252891 711.93737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -08252892 711.93737793 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eec8 -08252893 711.93743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -08252894 711.93743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eed8 -08252895 711.93743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -08252896 711.93743896 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eee8 -08252897 711.93750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -08252898 711.93750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eef8 -08252899 711.93750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -08252900 711.93750000 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef08 -08252901 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -08252902 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef18 -08252903 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -08252904 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef28 -08252905 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -08252906 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef38 -08252907 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -08252908 711.93756104 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef48 -08252909 711.93762207 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -08252910 711.93762207 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef58 -08252911 711.93768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -08252912 711.93768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef68 -08252913 711.93768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -08252914 711.93768311 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef78 -08253891 711.95245361 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -08253892 711.95251465 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e08 -08253893 711.95257568 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -08253894 711.95257568 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e18 -08253895 711.95257568 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -08253896 711.95257568 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e28 -08253897 711.95263672 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -08253898 711.95263672 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e38 -08253899 711.95269775 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -08253900 711.95269775 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e48 -08253901 711.95269775 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -08253902 711.95269775 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e58 -08253903 711.95275879 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -08253904 711.95275879 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e68 -08253905 711.95275879 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -08253906 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e78 -08253907 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -08253908 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e88 -08253909 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e98 -08253910 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e98 -08253911 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -08253912 711.95281982 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ea8 -08253913 711.95288086 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -08253914 711.95288086 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30eb8 -08253915 711.95288086 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -08253916 711.95288086 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ec8 -08253917 711.95294189 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -08253918 711.95294189 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ed8 -08253919 711.95300293 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -08253920 711.95300293 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ee8 -08253921 711.95306396 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -08253922 711.95306396 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30ef8 -08253923 711.95306396 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -08253924 711.95306396 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f08 -08253925 711.95312500 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -08253926 711.95312500 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f18 -08253927 711.95318604 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -08253928 711.95318604 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f28 -08253929 711.95318604 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -08253930 711.95318604 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f38 -08253931 711.95330811 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -08253932 711.95343018 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f48 -08253933 711.95343018 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -08253934 711.95343018 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f58 -08255723 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -08255724 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34748 -08255725 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -08255726 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34758 -08255727 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -08255728 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34768 -08255729 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -08255730 711.98138428 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34778 -08255731 711.98144531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -08255732 711.98144531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34788 -08255733 711.98144531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -08255734 711.98144531 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34798 -08255735 711.98150635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -08255736 711.98150635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347a8 -08255737 711.98150635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -08255738 711.98150635 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347b8 -08255739 711.98156738 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -08255740 711.98156738 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347c8 -08255741 711.98156738 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -08255742 711.98162842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347d8 -08255743 711.98162842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -08255744 711.98162842 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347e8 -08255745 711.98168945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -08255746 711.98168945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x347f8 -08255747 711.98168945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -08255748 711.98168945 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34808 -08255749 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -08255750 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34818 -08255751 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -08255752 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34828 -08255753 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -08255754 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34838 -08255755 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -08255756 711.98175049 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34848 -08255757 711.98181152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -08255758 711.98181152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34858 -08255759 711.98181152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -08255760 711.98181152 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34868 -08255761 711.98187256 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -08255762 711.98187256 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34878 -08255763 711.98193359 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -08255764 711.98193359 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34888 -08255765 711.98193359 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -08255766 711.98193359 [vmhook-eac [core number = 12]] READ(Q/DW/B) EasyAntiCheat.sys+0x34898 -08257879 712.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa8 -08257880 712.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38aa8 -08257881 712.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab8 -08257882 712.01483154 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ab8 -08257883 712.01489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac8 -08257884 712.01489258 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ac8 -08257885 712.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad8 -08257886 712.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ad8 -08257887 712.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae8 -08257888 712.01495361 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ae8 -08257889 712.01501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af8 -08257890 712.01501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38af8 -08257891 712.01501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b08 -08257892 712.01501465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b08 -08257893 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b18 -08257894 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b18 -08257895 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b28 -08257896 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b28 -08257897 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b38 -08257898 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b38 -08257899 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b48 -08257900 712.01507568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b48 -08257901 712.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b58 -08257902 712.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b58 -08257903 712.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b68 -08257904 712.01513672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b68 -08257905 712.01519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b78 -08257906 712.01519775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b78 -08257907 712.01525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b88 -08257908 712.01525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b88 -08257909 712.01525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b98 -08257910 712.01525879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b98 -08257911 712.01531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba8 -08257912 712.01531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38ba8 -08257913 712.01531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb8 -08257914 712.01531982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bb8 -08257915 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc8 -08257916 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bc8 -08257917 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd8 -08257918 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bd8 -08257919 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -08257920 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38be8 -08257921 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -08257922 712.01538086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x38bf8 -08260117 712.04626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -08260118 712.04626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d098 -08260119 712.04626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -08260120 712.04626465 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0a8 -08260121 712.04632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -08260122 712.04632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0b8 -08260123 712.04632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -08260124 712.04632568 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0c8 -08260125 712.04638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -08260126 712.04638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0d8 -08260127 712.04638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -08260128 712.04638672 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0e8 -08260129 712.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -08260130 712.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d0f8 -08260131 712.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -08260132 712.04644775 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d108 -08260133 712.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -08260134 712.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d118 -08260135 712.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -08260136 712.04650879 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d128 -08260137 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -08260138 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d138 -08260139 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -08260140 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d148 -08260141 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -08260142 712.04656982 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d158 -08260143 712.04663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -08260144 712.04663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d168 -08260145 712.04663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -08260146 712.04663086 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d178 -08260147 712.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -08260148 712.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d188 -08260149 712.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -08260150 712.04669189 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d198 -08260151 712.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -08260152 712.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1a8 -08260153 712.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -08260154 712.04675293 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1b8 -08260155 712.04681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -08260156 712.04681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1c8 -08260157 712.04681396 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -08260158 712.04687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1d8 -08260159 712.04687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -08260160 712.04687500 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d1e8 -08261987 712.07263184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b08 -08261988 712.07263184 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b08 -08261989 712.07269287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -08261990 712.07269287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b18 -08261991 712.07269287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -08261992 712.07269287 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b28 -08261993 712.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -08261994 712.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b38 -08261995 712.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -08261996 712.07275391 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b48 -08261997 712.07281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -08261998 712.07281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b58 -08261999 712.07281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -08262000 712.07281494 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b68 -08262001 712.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -08262002 712.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b78 -08262003 712.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -08262004 712.07287598 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b88 -08262005 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -08262006 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b98 -08262007 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -08262008 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40ba8 -08262009 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -08262010 712.07293701 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bb8 -08262011 712.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -08262012 712.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bc8 -08262013 712.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -08262014 712.07299805 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bd8 -08262015 712.07305908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -08262016 712.07305908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40be8 -08262017 712.07305908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -08262018 712.07305908 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40bf8 -08262019 712.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -08262020 712.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c08 -08262021 712.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -08262022 712.07312012 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c18 -08262023 712.07318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -08262024 712.07318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c28 -08262025 712.07318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -08262026 712.07318115 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c38 -08262027 712.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -08262028 712.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c48 -08262029 712.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -08262030 712.07324219 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c58 -08263985 712.10083008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44978 -08263986 712.10083008 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44978 -08263987 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44988 -08263988 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44988 -08263989 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44998 -08263990 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44998 -08263991 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a8 -08263992 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449a8 -08263993 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b8 -08263994 712.10089111 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449b8 -08263995 712.10095215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c8 -08263996 712.10095215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449c8 -08263997 712.10095215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d8 -08263998 712.10095215 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449d8 -08263999 712.10101318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e8 -08264000 712.10101318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449e8 -08264001 712.10101318 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -08264002 712.10107422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x449f8 -08264003 712.10107422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -08264004 712.10107422 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a08 -08264005 712.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -08264006 712.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a18 -08264007 712.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -08264008 712.10113525 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a28 -08264009 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -08264010 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a38 -08264011 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -08264012 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a48 -08264013 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -08264014 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a58 -08264015 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -08264016 712.10119629 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a68 -08264017 712.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -08264018 712.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a78 -08264019 712.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -08264020 712.10125732 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a88 -08264021 712.10131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -08264022 712.10131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a98 -08264023 712.10131836 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -08264024 712.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44aa8 -08264025 712.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -08264026 712.10137939 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ab8 -08264027 712.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -08264028 712.10144043 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x44ac8 -08265949 712.12847900 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -08265950 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486d8 -08265951 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -08265952 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486e8 -08265953 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -08265954 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x486f8 -08265955 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48708 -08265956 712.12854004 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48708 -08265957 712.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48718 -08265958 712.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48718 -08265959 712.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48728 -08265960 712.12860107 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48728 -08265961 712.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48738 -08265962 712.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48738 -08265963 712.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48748 -08265964 712.12866211 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48748 -08265965 712.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48758 -08265966 712.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48758 -08265967 712.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48768 -08265968 712.12872314 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48768 -08265969 712.12878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48778 -08265970 712.12878418 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48778 -08265971 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48788 -08265972 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48788 -08265973 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48798 -08265974 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48798 -08265975 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a8 -08265976 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487a8 -08265977 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b8 -08265978 712.12884521 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487b8 -08265979 712.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c8 -08265980 712.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487c8 -08265981 712.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d8 -08265982 712.12890625 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487d8 -08265983 712.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e8 -08265984 712.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487e8 -08265985 712.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f8 -08265986 712.12896729 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x487f8 -08265987 712.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48808 -08265988 712.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48808 -08265989 712.12902832 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48818 -08265990 712.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48818 -08265991 712.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48828 -08265992 712.12908936 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x48828 -08268107 712.15887451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca48 -08268108 712.15887451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca48 -08268109 712.15887451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca58 -08268110 712.15887451 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca58 -08268111 712.15893555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca68 -08268112 712.15893555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca68 -08268113 712.15893555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca78 -08268114 712.15893555 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca78 -08268115 712.15899658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca88 -08268116 712.15899658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca88 -08268117 712.15899658 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca98 -08268118 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca98 -08268119 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa8 -08268120 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caa8 -08268121 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab8 -08268122 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cab8 -08268123 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac8 -08268124 712.15905762 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cac8 -08268125 712.15911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad8 -08268126 712.15911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cad8 -08268127 712.15911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae8 -08268128 712.15911865 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cae8 -08268129 712.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf8 -08268130 712.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4caf8 -08268131 712.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb08 -08268132 712.15917969 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb08 -08268133 712.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb18 -08268134 712.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb18 -08268135 712.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb28 -08268136 712.15924072 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb28 -08268137 712.15930176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb38 -08268138 712.15930176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb38 -08268139 712.15930176 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb48 -08268140 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb48 -08268141 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb58 -08268142 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb58 -08268143 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb68 -08268144 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb68 -08268145 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb78 -08268146 712.15936279 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb78 -08268147 712.15942383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb88 -08268148 712.15942383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb88 -08268149 712.15942383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb98 -08268150 712.15942383 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb98 -08270224 712.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c68 -08270225 712.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c68 -08270226 712.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c78 -08270227 712.18865967 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c78 -08270228 712.18872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c88 -08270229 712.18872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c88 -08270230 712.18872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c98 -08270231 712.18872070 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c98 -08270232 712.18878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca8 -08270233 712.18878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ca8 -08270234 712.18878174 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb8 -08270235 712.18884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cb8 -08270236 712.18884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc8 -08270237 712.18884277 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cc8 -08270238 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd8 -08270239 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cd8 -08270240 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce8 -08270241 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50ce8 -08270242 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf8 -08270243 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50cf8 -08270244 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d08 -08270245 712.18890381 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d08 -08270246 712.18896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d18 -08270247 712.18896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d18 -08270248 712.18896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d28 -08270249 712.18896484 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d28 -08270250 712.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d38 -08270251 712.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d38 -08270252 712.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d48 -08270253 712.18902588 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d48 -08270254 712.18908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d58 -08270255 712.18908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d58 -08270256 712.18908691 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d68 -08270257 712.18914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d68 -08270258 712.18914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d78 -08270259 712.18914795 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d78 -08270260 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d88 -08270261 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d88 -08270262 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d98 -08270263 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d98 -08270264 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da8 -08270265 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50da8 -08270266 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db8 -08270267 712.18920898 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x50db8 -08271276 712.96020508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271277 712.96026611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271278 712.96026611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271279 712.96026611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08271280 712.96038818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271281 712.96038818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08271282 712.96044922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271283 712.96051025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08271284 714.15930176 [vmhook-eac [core number = 23]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08271285 714.16003418 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53268 -08271286 714.20837402 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08271287 714.23114014 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271288 714.23114014 [vmhook-eac [core number = 17]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271289 715.01367188 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271290 715.08746338 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271291 715.08752441 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271292 715.08758545 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271293 715.08764648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271294 715.08764648 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271295 715.13201904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271296 715.15075684 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271297 715.46661377 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271298 715.46661377 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271299 715.46667480 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271300 715.46667480 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08271301 715.46673584 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271302 715.46673584 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08271303 715.46679688 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08271304 715.46685791 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08271305 715.62646484 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08271306 716.23303223 [vmhook-eac [core number = 10]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08271307 716.25799561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271308 716.25799561 [vmhook-eac [core number = 19]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08271309 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08271310 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1008 -08271311 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08271312 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1018 -08271313 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08271314 717.20440674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1028 -08271315 717.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08271316 717.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1038 -08271317 717.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08271318 717.20446777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1048 -08271319 717.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08271320 717.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1058 -08271321 717.20452881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08271322 717.20458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1068 -08271323 717.20458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08271324 717.20458984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1078 -08271325 717.20465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08271326 717.20465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1088 -08271327 717.20465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08271328 717.20465088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1098 -08271329 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08271330 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a8 -08271331 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08271332 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b8 -08271333 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08271334 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c8 -08271335 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08271336 717.20471191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d8 -08271337 717.20477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08271338 717.20477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e8 -08271339 717.20477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08271340 717.20477295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f8 -08271341 717.20483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08271342 717.20483398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1108 -08271343 717.20489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08271344 717.20489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1118 -08271345 717.20489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08271346 717.20489502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1128 -08271347 717.20495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08271348 717.20495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1138 -08271349 717.20495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08271350 717.20495605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1148 -08271351 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08271352 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1158 -08271353 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08271354 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1168 -08271355 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08271356 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1178 -08271357 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08271358 717.20501709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1188 -08271359 717.20507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08271360 717.20507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1198 -08271361 717.20507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08271362 717.20507813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a8 -08271363 717.20513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08271364 717.20513916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b8 -08271365 717.20520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08271366 717.20520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c8 -08271367 717.20520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08271368 717.20520020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d8 -08271369 717.20526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08271370 717.20526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e8 -08271371 717.20526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08271372 717.20526123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f8 -08271373 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08271374 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1208 -08271375 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08271376 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1218 -08271377 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08271378 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1228 -08271379 717.20532227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08271380 717.20538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1238 -08271381 717.20538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08271382 717.20538330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1248 -08271383 717.20544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08271384 717.20544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1258 -08271385 717.20544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08271386 717.20544434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1268 -08271387 717.20550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08271388 717.20550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1278 -08271389 717.20550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08271390 717.20550537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1288 -08271391 717.20556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08271392 717.20556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1298 -08271393 717.20556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08271394 717.20556641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a8 -08271395 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08271396 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b8 -08271397 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08271398 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c8 -08271399 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08271400 717.20562744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d8 -08271401 717.20568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08271402 717.20568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e8 -08271403 717.20568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08271404 717.20568848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f8 -08271405 717.20574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08271406 717.20574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1308 -08271407 717.20574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08271408 717.20574951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1318 -08271409 717.20581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08271410 717.20581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1328 -08271411 717.20581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08271412 717.20581055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1338 -08271413 717.20587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08271414 717.20587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1348 -08271415 717.20587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08271416 717.20587158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1358 -08271417 717.20593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08271418 717.20593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1368 -08271419 717.20593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08271420 717.20593262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1378 -08271421 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08271422 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1388 -08271423 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08271424 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1398 -08271425 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08271426 717.20599365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a8 -08271427 717.20605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08271428 717.20605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b8 -08271429 717.20605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08271430 717.20605469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c8 -08271431 717.20611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08271432 717.20611572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d8 -08271433 717.20617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08271434 717.20617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f8 -08271435 717.20617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08271436 717.20617676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1408 -08271437 717.20623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08271438 717.20623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1418 -08271439 717.20623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08271440 717.20623779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1428 -08271441 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08271442 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1438 -08271443 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08271444 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1448 -08271445 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08271446 717.20629883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1458 -08271447 717.20635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08271448 717.20635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1468 -08271449 717.20635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08271450 717.20635986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1478 -08271451 717.20642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08271452 717.20642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1488 -08271453 717.20642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08271454 717.20642090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1498 -08271455 717.20648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08271456 717.20648193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a8 -08271457 717.20654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08271458 717.20654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b8 -08271459 717.20654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08271460 717.20654297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c8 -08271461 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08271462 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d8 -08271463 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08271464 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e8 -08271465 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08271466 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f8 -08271467 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08271468 717.20660400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1508 -08271469 717.20666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08271470 717.20666504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1518 -08271471 717.20672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08271472 717.20672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1528 -08271473 717.20672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08271474 717.20672607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1538 -08271475 717.20678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08271476 717.20678711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1548 -08271477 717.20684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08271478 717.20684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1558 -08271479 717.20684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08271480 717.20684814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1568 -08271481 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08271482 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1578 -08271483 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08271484 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1588 -08271485 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08271486 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1598 -08271487 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08271488 717.20690918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a8 -08271489 717.20697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08271490 717.20697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b8 -08271491 717.20697021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08271492 717.20703125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c8 -08271493 717.20703125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08271494 717.20703125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d8 -08271495 717.20709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08271496 717.20709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e8 -08271497 717.20709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08271498 717.20709229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f8 -08271499 717.20715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08271500 717.20715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1608 -08271501 717.20715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08271502 717.20715332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1618 -08271503 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08271504 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1628 -08271505 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08271506 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1638 -08271507 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08271508 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1648 -08271509 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08271510 717.20721436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1658 -08271511 717.20727539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08271512 717.20727539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1668 -08271513 717.20733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08271514 717.20733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1678 -08271515 717.20733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08271516 717.20733643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1688 -08271517 717.20739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08271518 717.20739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1698 -08271519 717.20739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08271520 717.20739746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a8 -08271521 717.20745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08271522 717.20745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b8 -08271523 717.20745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08271524 717.20745850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c8 -08271525 717.20751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08271526 717.20751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d8 -08271527 717.20751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08271528 717.20751953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e8 -08271529 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08271530 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f8 -08271531 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08271532 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1708 -08271533 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08271534 717.20758057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1718 -08271535 717.20764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08271536 717.20764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1728 -08271537 717.20764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08271538 717.20764160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1738 -08271539 717.20770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08271540 717.20770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1748 -08271541 717.20770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08271542 717.20770264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1758 -08271543 717.20776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08271544 717.20776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1768 -08271545 717.20776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08271546 717.20776367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1778 -08271547 717.20782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08271548 717.20782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1788 -08271549 717.20782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08271550 717.20782471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1798 -08271551 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08271552 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a8 -08271553 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08271554 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b8 -08271555 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08271556 717.20788574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c8 -08271557 717.20794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08271558 717.20794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d8 -08271559 717.20794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08271560 717.20794678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e8 -08271561 717.20800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08271562 717.20800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f8 -08271563 717.20800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08271564 717.20800781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1808 -08271565 717.20806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08271566 717.20806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1818 -08271567 717.20806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08271568 717.20806885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1828 -08271569 717.20812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08271570 717.20812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1838 -08271571 717.20812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08271572 717.20812988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1848 -08271573 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08271574 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1858 -08271575 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08271576 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1868 -08271577 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08271578 717.20819092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1878 -08271579 717.20825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08271580 717.20825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1888 -08271581 717.20825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08271582 717.20825195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1898 -08271583 717.20831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08271584 717.20831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a8 -08271585 717.20831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08271586 717.20831299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b8 -08271587 717.20837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08271588 717.20837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c8 -08271589 717.20837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08271590 717.20837402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d8 -08271591 717.20843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08271592 717.20843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e8 -08271593 717.20843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08271594 717.20843506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f8 -08271595 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08271596 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1908 -08271597 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08271598 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1918 -08271599 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08271600 717.20849609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1928 -08271601 717.20855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08271602 717.20855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1938 -08271603 717.20855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08271604 717.20855713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1948 -08271605 717.20861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08271606 717.20861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1958 -08271607 717.20861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08271608 717.20861816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1968 -08271609 717.20867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08271610 717.20867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1978 -08271611 717.20867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08271612 717.20867920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1988 -08271613 717.20874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08271614 717.20874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1998 -08271615 717.20874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08271616 717.20874023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a8 -08271617 717.20880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08271618 717.20880127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b8 -08271619 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08271620 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c8 -08271621 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08271622 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d8 -08271623 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08271624 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e8 -08271625 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08271626 717.20886230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f8 -08271627 717.20892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08271628 717.20892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a08 -08271629 717.20892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08271630 717.20892334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a18 -08271631 717.20898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08271632 717.20898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a28 -08271633 717.20898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08271634 717.20898438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a38 -08271635 717.20904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08271636 717.20904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a48 -08271637 717.20904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08271638 717.20904541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a58 -08271639 717.20910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08271640 717.20910645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a68 -08271641 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08271642 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a78 -08271643 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08271644 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a88 -08271645 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08271646 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a98 -08271647 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08271648 717.20916748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa8 -08271649 717.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08271650 717.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab8 -08271651 717.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08271652 717.20922852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac8 -08271653 717.20928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08271654 717.20928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad8 -08271655 717.20928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08271656 717.20928955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae8 -08271657 717.20935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08271658 717.20935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af8 -08271659 717.20935059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08271660 717.20941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b08 -08271661 717.20941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08271662 717.20941162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b18 -08271663 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08271664 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b28 -08271665 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08271666 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b38 -08271667 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08271668 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b48 -08271669 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08271670 717.20947266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b58 -08271671 717.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08271672 717.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b68 -08271673 717.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08271674 717.20953369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b78 -08271675 717.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08271676 717.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b88 -08271677 717.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08271678 717.20959473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b98 -08271679 717.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08271680 717.20965576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba8 -08271681 717.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08271682 717.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb8 -08271683 717.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08271684 717.20971680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc8 -08271685 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08271686 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd8 -08271687 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08271688 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be8 -08271689 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08271690 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf8 -08271691 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08271692 717.20977783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c08 -08271693 717.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08271694 717.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c18 -08271695 717.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08271696 717.20983887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c28 -08271697 717.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08271698 717.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c38 -08271699 717.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08271700 717.20989990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c48 -08271701 717.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08271702 717.20996094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c58 -08271703 717.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08271704 717.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c68 -08271705 717.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08271706 717.21002197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c78 -08271707 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08271708 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c88 -08271709 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08271710 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c98 -08271711 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08271712 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca8 -08271713 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08271714 717.21008301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb8 -08271715 717.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08271716 717.21014404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc8 -08271717 717.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08271718 717.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd8 -08271719 717.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08271720 717.21020508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce8 -08271721 717.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08271722 717.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf8 -08271723 717.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08271724 717.21026611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d08 -08271725 717.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08271726 717.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d18 -08271727 717.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08271728 717.21032715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d28 -08271729 717.21038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08271730 717.21038818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d38 -08271731 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08271732 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d48 -08271733 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08271734 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d58 -08271735 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08271736 717.21044922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d68 -08271737 717.21051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08271738 717.21051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d78 -08271739 717.21051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08271740 717.21051025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d88 -08271741 717.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08271742 717.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d98 -08271743 717.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08271744 717.21057129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da8 -08271745 717.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08271746 717.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db8 -08271747 717.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08271748 717.21063232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc8 -08271749 717.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08271750 717.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd8 -08271751 717.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08271752 717.21069336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de8 -08271753 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08271754 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df8 -08271755 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08271756 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e08 -08271757 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08271758 717.21075439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e18 -08271759 717.21081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08271760 717.21081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e28 -08271761 717.21081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08271762 717.21081543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e38 -08271763 717.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08271764 717.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e48 -08271765 717.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08271766 717.21087646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e58 -08271767 717.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08271768 717.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e68 -08271769 717.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08271770 717.21093750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e78 -08271771 717.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08271772 717.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e88 -08271773 717.21099854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08271774 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e98 -08271775 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08271776 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea8 -08271777 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08271778 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb8 -08271779 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08271780 717.21105957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec8 -08271781 717.21112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08271782 717.21112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed8 -08271783 717.21112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08271784 717.21112061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee8 -08271785 717.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08271786 717.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef8 -08271787 717.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08271788 717.21118164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f08 -08271789 717.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08271790 717.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f18 -08271791 717.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08271792 717.21124268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f28 -08271793 717.21130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08271794 717.21130371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f38 -08271795 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08271796 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f48 -08271797 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08271798 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f58 -08271799 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08271800 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f68 -08271801 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08271802 717.21136475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f78 -08271803 717.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08271804 717.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f88 -08271805 717.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08271806 717.21142578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f98 -08271807 717.21148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08271808 717.21148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa8 -08271809 717.21148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08271810 717.21148682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb8 -08271811 717.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08271812 717.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc8 -08271813 717.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08271814 717.21154785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd8 -08271815 717.21160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08271816 717.21160889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe8 -08271817 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08271818 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff8 -08271819 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08271820 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2008 -08271821 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08271822 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2018 -08271823 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08271824 717.21166992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2028 -08271825 717.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08271826 717.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2038 -08271827 717.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08271828 717.21173096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2048 -08271829 717.21179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08271830 717.21179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2058 -08271831 717.21179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08271832 717.21179199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2068 -08271833 717.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08271834 717.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2078 -08271835 717.21185303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08271836 717.21191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2088 -08271837 717.21191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08271838 717.21191406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2098 -08271839 717.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08271840 717.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a8 -08271841 717.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08271842 717.21197510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b8 -08271843 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08271844 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c8 -08271845 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08271846 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d8 -08271847 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08271848 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e8 -08271849 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08271850 717.21203613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f8 -08271851 717.21209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08271852 717.21209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2108 -08271853 717.21209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08271854 717.21209717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2118 -08271855 717.21215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08271856 717.21215820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2128 -08271857 717.21221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08271858 717.21221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2138 -08271859 717.21221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08271860 717.21221924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2148 -08271861 717.21228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08271862 717.21228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2158 -08271863 717.21228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08271864 717.21228027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2168 -08271865 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08271866 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2178 -08271867 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08271868 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2188 -08271869 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08271870 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2198 -08271871 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08271872 717.21234131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a8 -08271873 717.21240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08271874 717.21240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b8 -08271875 717.21240234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08271876 717.21246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c8 -08271877 717.21246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08271878 717.21246338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d8 -08271879 717.21252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08271880 717.21252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e8 -08271881 717.21252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08271882 717.21252441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f8 -08271883 717.21258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08271884 717.21258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2208 -08271885 717.21258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08271886 717.21258545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2218 -08271887 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08271888 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2228 -08271889 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08271890 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2238 -08271891 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08271892 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2248 -08271893 717.21264648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08271894 717.21270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2258 -08271895 717.21270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08271896 717.21270752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2268 -08271897 717.21276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08271898 717.21276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2278 -08271899 717.21276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08271900 717.21276855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2288 -08271901 717.21282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08271902 717.21282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2298 -08271903 717.21282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08271904 717.21282959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a8 -08271905 717.21289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08271906 717.21289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b8 -08271907 717.21289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08271908 717.21289063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c8 -08271909 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08271910 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d8 -08271911 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08271912 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e8 -08271913 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08271914 717.21295166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f8 -08271915 717.21301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08271916 717.21301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2308 -08271917 717.21301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08271918 717.21301270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2318 -08271919 717.21307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08271920 717.21307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2328 -08271921 717.21307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08271922 717.21307373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2338 -08271923 717.21313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08271924 717.21313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2348 -08271925 717.21313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08271926 717.21313477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2358 -08271927 717.21319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08271928 717.21319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2368 -08271929 717.21319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08271930 717.21319580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2378 -08271931 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08271932 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2388 -08271933 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08271934 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2398 -08271935 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08271936 717.21325684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a8 -08271937 717.21331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08271938 717.21331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b8 -08271939 717.21331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08271940 717.21331787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c8 -08271941 717.21337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08271942 717.21337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d8 -08271943 717.21337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08271944 717.21337891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e8 -08271945 717.21343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08271946 717.21343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f8 -08271947 717.21343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08271948 717.21343994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2408 -08271949 717.21350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08271950 717.21350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2418 -08271951 717.21350098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08271952 717.21356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2428 -08271953 717.21356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08271954 717.21356201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2438 -08271955 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08271956 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2448 -08271957 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08271958 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2458 -08271959 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08271960 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2468 -08271961 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08271962 717.21362305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2478 -08271963 717.21368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08271964 717.21368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2488 -08271965 717.21368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08271966 717.21368408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2498 -08271967 717.21374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08271968 717.21374512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a8 -08271969 717.21380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08271970 717.21380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b8 -08271971 717.21380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08271972 717.21380615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c8 -08271973 717.21386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08271974 717.21386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d8 -08271975 717.21386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08271976 717.21386719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e8 -08271977 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08271978 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f8 -08271979 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08271980 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2508 -08271981 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08271982 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2518 -08271983 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08271984 717.21392822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2528 -08271985 717.21398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08271986 717.21398926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2538 -08271987 717.21405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08271988 717.21405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2548 -08271989 717.21405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08271990 717.21405029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2558 -08271991 717.21411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08271992 717.21411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2568 -08271993 717.21411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08271994 717.21411133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2578 -08271995 717.21417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08271996 717.21417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2588 -08271997 717.21417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08271998 717.21417236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2598 -08271999 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08272000 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a8 -08272001 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08272002 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b8 -08272003 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08272004 717.21423340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c8 -08272005 717.21429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08272006 717.21429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d8 -08272007 717.21429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08272008 717.21429443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e8 -08272009 717.21435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08272010 717.21435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f8 -08272011 717.21435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08272012 717.21435547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2608 -08272013 717.21441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08272014 717.21441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2618 -08272015 717.21441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08272016 717.21441650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2628 -08272017 717.21447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08272018 717.21447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2638 -08272019 717.21447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08272020 717.21447754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2648 -08272021 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08272022 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2658 -08272023 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08272024 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2668 -08272025 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08272026 717.21453857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2678 -08272027 717.21459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08272028 717.21459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2688 -08272029 717.21459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08272030 717.21459961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2698 -08272031 717.21466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08272032 717.21466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a8 -08272033 717.21466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08272034 717.21466064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b8 -08272035 717.21472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08272036 717.21472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c8 -08272037 717.21472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08272038 717.21472168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d8 -08272039 717.21478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08272040 717.21478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e8 -08272041 717.21478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08272042 717.21478271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f8 -08272043 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08272044 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2708 -08272045 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08272046 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2718 -08272047 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08272048 717.21484375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2728 -08272049 717.21490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08272050 717.21490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2738 -08272051 717.21490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08272052 717.21490479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2748 -08272053 717.21496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08272054 717.21496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2758 -08272055 717.21496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08272056 717.21496582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2768 -08272057 717.21502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08272058 717.21502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2778 -08272059 717.21502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08272060 717.21502686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2788 -08272061 717.21508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08272062 717.21508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2798 -08272063 717.21508789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08272064 717.21514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a8 -08272065 717.21514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08272066 717.21514893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b8 -08272067 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08272068 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c8 -08272069 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08272070 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d8 -08272071 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08272072 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e8 -08272073 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08272074 717.21520996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f8 -08272075 717.21527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08272076 717.21527100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2808 -08272077 717.21533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08272078 717.21533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2818 -08272079 717.21533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08272080 717.21533203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2828 -08272081 717.21539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08272082 717.21539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2838 -08272083 717.21539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08272084 717.21539307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2848 -08272085 717.21545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08272086 717.21545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2858 -08272087 717.21545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08272088 717.21545410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2868 -08272089 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08272090 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2878 -08272091 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08272092 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2888 -08272093 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08272094 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2898 -08272095 717.21551514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08272096 717.21557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a8 -08272097 717.21557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08272098 717.21557617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b8 -08272099 717.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08272100 717.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c8 -08272101 717.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08272102 717.21563721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d8 -08272103 717.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08272104 717.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e8 -08272105 717.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08272106 717.21569824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f8 -08272107 717.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08272108 717.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2908 -08272109 717.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08272110 717.21575928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2918 -08272111 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08272112 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2928 -08272113 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08272114 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2938 -08272115 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08272116 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2948 -08272117 717.21582031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08272118 717.21588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2958 -08272119 717.21588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08272120 717.21588135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2968 -08272121 717.21594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08272122 717.21594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2978 -08272123 717.21594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08272124 717.21594238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2988 -08272125 717.21600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08272126 717.21600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2998 -08272127 717.21600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08272128 717.21600342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a8 -08272129 717.21606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08272130 717.21606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b8 -08272131 717.21606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08272132 717.21606445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c8 -08272133 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08272134 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d8 -08272135 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08272136 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e8 -08272137 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08272138 717.21612549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f8 -08272139 717.21618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08272140 717.21618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a08 -08272141 717.21618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08272142 717.21618652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a18 -08272143 717.21624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08272144 717.21624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a28 -08272145 717.21624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08272146 717.21624756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a38 -08272147 717.21630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08272148 717.21630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a48 -08272149 717.21630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08272150 717.21630859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a58 -08272151 717.21636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08272152 717.21636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a68 -08272153 717.21636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08272154 717.21636963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a78 -08272155 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08272156 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a88 -08272157 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08272158 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a98 -08272159 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08272160 717.21643066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa8 -08272161 717.21649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08272162 717.21649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab8 -08272163 717.21649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08272164 717.21649170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac8 -08272165 717.21655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08272166 717.21655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad8 -08272167 717.21655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08272168 717.21655273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae8 -08272169 717.21661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08272170 717.21661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af8 -08272171 717.21661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08272172 717.21661377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b08 -08272173 717.21667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08272174 717.21667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b18 -08272175 717.21667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08272176 717.21667480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b28 -08272177 717.21673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08272178 717.21673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b38 -08272179 717.21673584 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08272180 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b48 -08272181 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08272182 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b58 -08272183 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08272184 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b68 -08272185 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08272186 717.21679688 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b78 -08272187 717.21685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08272188 717.21685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b88 -08272189 717.21685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08272190 717.21685791 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b98 -08272191 717.21691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08272192 717.21691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba8 -08272193 717.21691895 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08272194 717.21697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb8 -08272195 717.21697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08272196 717.21697998 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc8 -08272197 717.21704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08272198 717.21704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd8 -08272199 717.21704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08272200 717.21704102 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be8 -08272201 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08272202 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf8 -08272203 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08272204 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c08 -08272205 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08272206 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c18 -08272207 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08272208 717.21710205 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c28 -08272209 717.21716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08272210 717.21716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c38 -08272211 717.21716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08272212 717.21716309 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c48 -08272213 717.21722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08272214 717.21722412 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c58 -08272215 717.21728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08272216 717.21728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c68 -08272217 717.21728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08272218 717.21728516 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c78 -08272219 717.21734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08272220 717.21734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c88 -08272221 717.21734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08272222 717.21734619 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c98 -08272223 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08272224 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca8 -08272225 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08272226 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb8 -08272227 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08272228 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc8 -08272229 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08272230 717.21740723 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd8 -08272231 717.21746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08272232 717.21746826 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce8 -08272233 717.21752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08272234 717.21752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf8 -08272235 717.21752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08272236 717.21752930 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d08 -08272237 717.21759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08272238 717.21759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d18 -08272239 717.21759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08272240 717.21759033 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d28 -08272241 717.21765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08272242 717.21765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d38 -08272243 717.21765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08272244 717.21765137 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d48 -08272245 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08272246 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d58 -08272247 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08272248 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d68 -08272249 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08272250 717.21771240 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d78 -08272251 717.21777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08272252 717.21777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d88 -08272253 717.21777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08272254 717.21777344 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d98 -08272255 717.21783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08272256 717.21783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da8 -08272257 717.21783447 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08272258 717.21789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db8 -08272259 717.21789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08272260 717.21789551 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc8 -08272261 717.21795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08272262 717.21795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd8 -08272263 717.21795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08272264 717.21795654 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de8 -08272265 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08272266 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df8 -08272267 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08272268 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e08 -08272269 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08272270 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e18 -08272271 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08272272 717.21801758 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e28 -08272273 717.21807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08272274 717.21807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e38 -08272275 717.21807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08272276 717.21807861 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e48 -08272277 717.21813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08272278 717.21813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e58 -08272279 717.21813965 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08272280 717.21820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e68 -08272281 717.21820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08272282 717.21820068 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e78 -08272283 717.21826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08272284 717.21826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e88 -08272285 717.21826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08272286 717.21826172 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e98 -08272287 717.21832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08272288 717.21832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea8 -08272289 717.21832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08272290 717.21832275 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb8 -08272291 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08272292 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec8 -08272293 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08272294 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed8 -08272295 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08272296 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee8 -08272297 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08272298 717.21838379 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef8 -08272299 717.21844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08272300 717.21844482 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f08 -08272301 717.21850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08272302 717.21850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f18 -08272303 717.21850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08272304 717.21850586 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f28 -08272305 717.21856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08272306 717.21856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f38 -08272307 717.21856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08272308 717.21856689 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f48 -08272309 717.21862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08272310 717.21862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f58 -08272311 717.21862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08272312 717.21862793 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f68 -08272313 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08272314 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f78 -08272315 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08272316 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f88 -08272317 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08272318 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f98 -08272319 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08272320 717.21868896 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa8 -08272321 717.21875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08272322 717.21875000 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb8 -08272323 717.21881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08272324 717.21881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc8 -08272325 717.21881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08272326 717.21881104 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd8 -08272327 717.21887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08272328 717.21887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe8 -08272329 717.21887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08272330 717.21887207 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff8 -08272331 717.21893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08272332 717.21893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3008 -08272333 717.21893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08272334 717.21893311 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3018 -08272335 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08272336 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3028 -08272337 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08272338 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3038 -08272339 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08272340 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3048 -08272341 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08272342 717.21899414 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3058 -08272343 717.21905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08272344 717.21905518 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3068 -08272345 717.21911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08272346 717.21911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3078 -08272347 717.21911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08272348 717.21911621 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3088 -08272349 717.21917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08272350 717.21917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3098 -08272351 717.21917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08272352 717.21917725 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a8 -08272353 717.21923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08272354 717.21923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b8 -08272355 717.21923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08272356 717.21923828 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c8 -08272357 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08272358 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d8 -08272359 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08272360 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e8 -08272361 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08272362 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f8 -08272363 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08272364 717.21929932 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3108 -08272365 717.21936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08272366 717.21936035 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3118 -08272367 717.21942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08272368 717.21942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3128 -08272369 717.21942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08272370 717.21942139 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3138 -08272371 717.21948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08272372 717.21948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3148 -08272373 717.21948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08272374 717.21948242 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3158 -08272375 717.21954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08272376 717.21954346 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3168 -08272377 717.21960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08272378 717.21960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3178 -08272379 717.21960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08272380 717.21960449 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3188 -08272381 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08272382 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3198 -08272383 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08272384 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a8 -08272385 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08272386 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b8 -08272387 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08272388 717.21966553 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c8 -08272389 717.21972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08272390 717.21972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d8 -08272391 717.21972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08272392 717.21972656 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e8 -08272393 717.21978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08272394 717.21978760 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f8 -08272395 717.21984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08272396 717.21984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3208 -08272397 717.21984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08272398 717.21984863 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3218 -08272399 717.21990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08272400 717.21990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3228 -08272401 717.21990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08272402 717.21990967 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3238 -08272403 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08272404 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3248 -08272405 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08272406 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3258 -08272407 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08272408 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3268 -08272409 717.21997070 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08272410 717.22003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3278 -08272411 717.22003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08272412 717.22003174 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3288 -08272413 717.22009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08272414 717.22009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3298 -08272415 717.22009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08272416 717.22009277 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a8 -08272417 717.22015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08272418 717.22015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b8 -08272419 717.22015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08272420 717.22015381 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c8 -08272421 717.22021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08272422 717.22021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d8 -08272423 717.22021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08272424 717.22021484 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e8 -08272425 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08272426 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f8 -08272427 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08272428 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3308 -08272429 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08272430 717.22027588 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3318 -08272431 717.22033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08272432 717.22033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3328 -08272433 717.22033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08272434 717.22033691 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3338 -08272435 717.22039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08272436 717.22039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3348 -08272437 717.22039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08272438 717.22039795 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3358 -08272439 717.22045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08272440 717.22045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3368 -08272441 717.22045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08272442 717.22045898 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3378 -08272443 717.22052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08272444 717.22052002 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3388 -08272445 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08272446 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3398 -08272447 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08272448 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a8 -08272449 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08272450 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b8 -08272451 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08272452 717.22058105 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c8 -08272453 717.22064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08272454 717.22064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d8 -08272455 717.22064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08272456 717.22064209 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e8 -08272457 717.22070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08272458 717.22070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f8 -08272459 717.22070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08272460 717.22070313 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3408 -08272461 717.22076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08272462 717.22076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3418 -08272463 717.22076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08272464 717.22076416 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3428 -08272465 717.22082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08272466 717.22082520 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3438 -08272467 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08272468 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3448 -08272469 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08272470 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3458 -08272471 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08272472 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3468 -08272473 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08272474 717.22088623 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3478 -08272475 717.22094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08272476 717.22094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3488 -08272477 717.22094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08272478 717.22094727 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3498 -08272479 717.22100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08272480 717.22100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a8 -08272481 717.22100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08272482 717.22100830 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b8 -08272483 717.22106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08272484 717.22106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c8 -08272485 717.22106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08272486 717.22106934 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d8 -08272487 717.22113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08272488 717.22113037 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e8 -08272489 717.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08272490 717.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f8 -08272491 717.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08272492 717.22119141 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3508 -08272493 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08272494 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3518 -08272495 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08272496 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3528 -08272497 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08272498 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3538 -08272499 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08272500 717.22125244 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3548 -08272501 717.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08272502 717.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3558 -08272503 717.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08272504 717.22131348 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3568 -08272505 717.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08272506 717.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3578 -08272507 717.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08272508 717.22137451 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3588 -08272509 717.22143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08272510 717.22143555 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3598 -08272511 717.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08272512 717.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a8 -08272513 717.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08272514 717.22149658 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b8 -08272515 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08272516 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c8 -08272517 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08272518 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d8 -08272519 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08272520 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e8 -08272521 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08272522 717.22155762 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f8 -08272523 717.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08272524 717.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3608 -08272525 717.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08272526 717.22161865 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3618 -08272527 717.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08272528 717.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3628 -08272529 717.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08272530 717.22167969 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3638 -08272531 717.22174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08272532 717.22174072 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3648 -08272533 717.22180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08272534 717.22180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3658 -08272535 717.22180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08272536 717.22180176 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3668 -08272537 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08272538 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3678 -08272539 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08272540 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3688 -08272541 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08272542 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3698 -08272543 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08272544 717.22186279 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a8 -08272545 717.22192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08272546 717.22192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b8 -08272547 717.22192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08272548 717.22192383 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c8 -08272549 717.22198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08272550 717.22198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d8 -08272551 717.22198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08272552 717.22198486 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e8 -08272553 717.22204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08272554 717.22204590 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f8 -08272555 717.22210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08272556 717.22210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3708 -08272557 717.22210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08272558 717.22210693 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3718 -08272559 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08272560 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3728 -08272561 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08272562 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3738 -08272563 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08272564 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3748 -08272565 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08272566 717.22216797 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3758 -08272567 717.22222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08272568 717.22222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3768 -08272569 717.22222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08272570 717.22222900 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3778 -08272571 717.22229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08272572 717.22229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3788 -08272573 717.22229004 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08272574 717.22235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3798 -08272575 717.22235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08272576 717.22235107 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a8 -08272577 717.22241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08272578 717.22241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b8 -08272579 717.22241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08272580 717.22241211 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c8 -08272581 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08272582 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d8 -08272583 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08272584 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e8 -08272585 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08272586 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f8 -08272587 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08272588 717.22247314 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3808 -08272589 717.22253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08272590 717.22253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3818 -08272591 717.22253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08272592 717.22253418 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3828 -08272593 717.22259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08272594 717.22259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3838 -08272595 717.22259521 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08272596 717.22265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3848 -08272597 717.22265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08272598 717.22265625 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3858 -08272599 717.22271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08272600 717.22271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3868 -08272601 717.22271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08272602 717.22271729 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3878 -08272603 717.22277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08272604 717.22277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3888 -08272605 717.22277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08272606 717.22277832 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3898 -08272607 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08272608 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a8 -08272609 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08272610 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b8 -08272611 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08272612 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c8 -08272613 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08272614 717.22283936 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d8 -08272615 717.22290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08272616 717.22290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e8 -08272617 717.22290039 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08272618 717.22296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f8 -08272619 717.22296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08272620 717.22296143 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3908 -08272621 717.22302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08272622 717.22302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3918 -08272623 717.22302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08272624 717.22302246 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3928 -08272625 717.22308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08272626 717.22308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3938 -08272627 717.22308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08272628 717.22308350 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3948 -08272629 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08272630 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3958 -08272631 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08272632 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3968 -08272633 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08272634 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3978 -08272635 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08272636 717.22314453 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3988 -08272637 717.22320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08272638 717.22320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3998 -08272639 717.22320557 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08272640 717.22326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a8 -08272641 717.22326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08272642 717.22326660 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b8 -08272643 717.22332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08272644 717.22332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c8 -08272645 717.22332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08272646 717.22332764 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d8 -08272647 717.22338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08272648 717.22338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e8 -08272649 717.22338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08272650 717.22338867 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f8 -08272651 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08272652 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a08 -08272653 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08272654 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a18 -08272655 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08272656 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a28 -08272657 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08272658 717.22344971 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a38 -08272659 717.22351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08272660 717.22351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a48 -08272661 717.22351074 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08272662 717.22357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a58 -08272663 717.22357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08272664 717.22357178 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a68 -08272665 717.22363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08272666 717.22363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a78 -08272667 717.22363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08272668 717.22363281 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a88 -08272669 717.22369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08272670 717.22369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a98 -08272671 717.22369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08272672 717.22369385 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa8 -08272673 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08272674 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab8 -08272675 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08272676 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac8 -08272677 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08272678 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad8 -08272679 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08272680 717.22375488 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae8 -08272681 717.22381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08272682 717.22381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af8 -08272683 717.22381592 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08272684 717.22387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b08 -08272685 717.22387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08272686 717.22387695 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b18 -08272687 717.22393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08272688 717.22393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b28 -08272689 717.22393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08272690 717.22393799 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b38 -08272691 717.22399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08272692 717.22399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b48 -08272693 717.22399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08272694 717.22399902 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b58 -08272695 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08272696 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b68 -08272697 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08272698 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b78 -08272699 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08272700 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b88 -08272701 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08272702 717.22406006 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b98 -08272703 717.22412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08272704 717.22412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba8 -08272705 717.22412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08272706 717.22412109 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb8 -08272707 717.22418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08272708 717.22418213 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc8 -08272709 717.22424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08272710 717.22424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd8 -08272711 717.22424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08272712 717.22424316 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be8 -08272713 717.22430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08272714 717.22430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf8 -08272715 717.22430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08272716 717.22430420 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c08 -08272717 717.22436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08272718 717.22436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c18 -08272719 717.22436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08272720 717.22436523 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c28 -08272721 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08272722 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c38 -08272723 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08272724 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c48 -08272725 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08272726 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c58 -08272727 717.22442627 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08272728 717.22448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c68 -08272729 717.22448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08272730 717.22448730 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c78 -08272731 717.22454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08272732 717.22454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c88 -08272733 717.22454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08272734 717.22454834 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c98 -08272735 717.22460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08272736 717.22460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca8 -08272737 717.22460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08272738 717.22460938 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb8 -08272739 717.22467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08272740 717.22467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc8 -08272741 717.22467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08272742 717.22467041 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd8 -08272743 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08272744 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce8 -08272745 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08272746 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf8 -08272747 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08272748 717.22473145 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d08 -08272749 717.22479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08272750 717.22479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d18 -08272751 717.22479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08272752 717.22479248 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d28 -08272753 717.22485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08272754 717.22485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d38 -08272755 717.22485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08272756 717.22485352 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d48 -08272757 717.22491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08272758 717.22491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d58 -08272759 717.22491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08272760 717.22491455 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d68 -08272761 717.22497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08272762 717.22497559 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d78 -08272763 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08272764 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d88 -08272765 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08272766 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d98 -08272767 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08272768 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da8 -08272769 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08272770 717.22503662 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db8 -08272771 717.22509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08272772 717.22509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc8 -08272773 717.22509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08272774 717.22509766 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd8 -08272775 717.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08272776 717.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de8 -08272777 717.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08272778 717.22515869 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df8 -08272779 717.22521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08272780 717.22521973 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e08 -08272781 717.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08272782 717.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e18 -08272783 717.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08272784 717.22528076 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e28 -08272785 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08272786 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e38 -08272787 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08272788 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e48 -08272789 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08272790 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e58 -08272791 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08272792 717.22534180 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e68 -08272793 717.22540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08272794 717.22540283 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e78 -08272795 717.22546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08272796 717.22546387 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e88 -08272797 717.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08272798 717.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e98 -08272799 717.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08272800 717.22552490 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea8 -08272801 717.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08272802 717.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb8 -08272803 717.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08272804 717.22558594 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec8 -08272805 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08272806 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed8 -08272807 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08272808 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee8 -08272809 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08272810 717.22564697 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef8 -08272811 717.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08272812 717.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f08 -08272813 717.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08272814 717.22570801 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f18 -08272815 717.22576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08272816 717.22576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f28 -08272817 717.22576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08272818 717.22576904 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f38 -08272819 717.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08272820 717.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f48 -08272821 717.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08272822 717.22583008 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f58 -08272823 717.22589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08272824 717.22589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f68 -08272825 717.22589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08272826 717.22589111 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f78 -08272827 717.22595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08272828 717.22595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f88 -08272829 717.22595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08272830 717.22595215 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f98 -08272831 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08272832 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa8 -08272833 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08272834 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb8 -08272835 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08272836 717.22601318 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc8 -08272837 717.22607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08272838 717.22607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd8 -08272839 717.22607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08272840 717.22607422 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe8 -08272841 717.22613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08272842 717.22613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff8 -08272843 717.22613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08272844 717.22613525 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4008 -08272845 717.22619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08272846 717.22619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4018 -08272847 717.22619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08272848 717.22619629 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4028 -08272849 717.22625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08272850 717.22625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4038 -08272851 717.22625732 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08272852 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4048 -08272853 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08272854 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4058 -08272855 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08272856 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4068 -08272857 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08272858 717.22631836 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4078 -08272859 717.22637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08272860 717.22637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4088 -08272861 717.22637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08272862 717.22637939 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4098 -08272863 717.22644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08272864 717.22644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a8 -08272865 717.22644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08272866 717.22644043 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b8 -08272867 717.22650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08272868 717.22650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c8 -08272869 717.22650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08272870 717.22650146 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d8 -08272871 717.22656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08272872 717.22656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e8 -08272873 717.22656250 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08272874 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f8 -08272875 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08272876 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4108 -08272877 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08272878 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4118 -08272879 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08272880 717.22662354 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4128 -08272881 717.22668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08272882 717.22668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4138 -08272883 717.22668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08272884 717.22668457 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4148 -08272885 717.22674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08272886 717.22674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4158 -08272887 717.22674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08272888 717.22674561 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4168 -08272889 717.22680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08272890 717.22680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4178 -08272891 717.22680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08272892 717.22680664 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4188 -08272893 717.22686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08272894 717.22686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4198 -08272895 717.22686768 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08272896 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a8 -08272897 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08272898 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b8 -08272899 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08272900 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c8 -08272901 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08272902 717.22692871 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d8 -08272903 717.22698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08272904 717.22698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e8 -08272905 717.22698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08272906 717.22698975 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f8 -08272907 717.22705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08272908 717.22705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4208 -08272909 717.22705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08272910 717.22705078 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4218 -08272911 717.22711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08272912 717.22711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4228 -08272913 717.22711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08272914 717.22711182 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4238 -08272915 717.22717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08272916 717.22717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4248 -08272917 717.22717285 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08272918 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4258 -08272919 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08272920 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4268 -08272921 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08272922 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4278 -08272923 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08272924 717.22723389 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4288 -08272925 717.22729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08272926 717.22729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4298 -08272927 717.22729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08272928 717.22729492 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a8 -08272929 717.22735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08272930 717.22735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b8 -08272931 717.22735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08272932 717.22735596 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c8 -08272933 717.22741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08272934 717.22741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d8 -08272935 717.22741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08272936 717.22741699 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e8 -08272937 717.22747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08272938 717.22747803 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f8 -08272939 717.22753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08272940 717.22753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4308 -08272941 717.22753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08272942 717.22753906 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4318 -08272943 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08272944 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4328 -08272945 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08272946 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4338 -08272947 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08272948 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4348 -08272949 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08272950 717.22760010 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4358 -08272951 717.22766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08272952 717.22766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4368 -08272953 717.22766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08272954 717.22766113 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4378 -08272955 717.22772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08272956 717.22772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4388 -08272957 717.22772217 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08272958 717.22778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4398 -08272959 717.22778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08272960 717.22778320 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a8 -08272961 717.22784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08272962 717.22784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b8 -08272963 717.22784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08272964 717.22784424 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c8 -08272965 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08272966 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d8 -08272967 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08272968 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e8 -08272969 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08272970 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f8 -08272971 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08272972 717.22790527 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4408 -08272973 717.22796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08272974 717.22796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4418 -08272975 717.22796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08272976 717.22796631 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4428 -08272977 717.22802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08272978 717.22802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4438 -08272979 717.22802734 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08272980 717.22808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4448 -08272981 717.22808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08272982 717.22808838 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4458 -08272983 717.22814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08272984 717.22814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4468 -08272985 717.22814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08272986 717.22814941 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4478 -08272987 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08272988 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4488 -08272989 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08272990 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4498 -08272991 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08272992 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a8 -08272993 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08272994 717.22821045 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b8 -08272995 717.22827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08272996 717.22827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c8 -08272997 717.22827148 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08272998 717.22833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d8 -08272999 717.22833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08273000 717.22833252 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e8 -08273001 717.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08273002 717.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f8 -08273003 717.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08273004 717.22839355 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4508 -08273005 717.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08273006 717.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4518 -08273007 717.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08273008 717.22845459 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4528 -08273009 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08273010 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4538 -08273011 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08273012 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4548 -08273013 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08273014 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4558 -08273015 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08273016 717.22851563 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4568 -08273017 717.22857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08273018 717.22857666 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4578 -08273019 717.22863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08273020 717.22863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4588 -08273021 717.22863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08273022 717.22863770 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4598 -08273023 717.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08273024 717.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a8 -08273025 717.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08273026 717.22869873 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b8 -08273027 717.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08273028 717.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c8 -08273029 717.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08273030 717.22875977 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d8 -08273031 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08273032 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e8 -08273033 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08273034 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f8 -08273035 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08273036 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4608 -08273037 717.22882080 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08273038 717.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4618 -08273039 717.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08273040 717.22888184 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4628 -08273041 717.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08273042 717.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4638 -08273043 717.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08273044 717.22894287 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4648 -08273045 717.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08273046 717.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4658 -08273047 717.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08273048 717.22900391 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4668 -08273049 717.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08273050 717.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4678 -08273051 717.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08273052 717.22906494 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4688 -08273053 717.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08273054 717.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4698 -08273055 717.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08273056 717.22912598 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a8 -08273057 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08273058 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b8 -08273059 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08273060 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c8 -08273061 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08273062 717.22918701 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d8 -08273063 717.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08273064 717.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e8 -08273065 717.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08273066 717.22924805 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f8 -08273067 717.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08273068 717.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4708 -08273069 717.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08273070 717.22930908 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4718 -08273071 717.22937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08273072 717.22937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4728 -08273073 717.22937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08273074 717.22937012 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4738 -08273075 717.22943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08273076 717.22943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4748 -08273077 717.22943115 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08273078 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4758 -08273079 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08273080 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4768 -08273081 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08273082 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4778 -08273083 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08273084 717.22949219 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4788 -08273085 717.22955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08273086 717.22955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4798 -08273087 717.22955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08273088 717.22955322 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a8 -08273089 717.22961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08273090 717.22961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b8 -08273091 717.22961426 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08273092 717.22967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c8 -08273093 717.22967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08273094 717.22967529 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d8 -08273095 717.22973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08273096 717.22973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e8 -08273097 717.22973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08273098 717.22973633 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f8 -08273099 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08273100 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4808 -08273101 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08273102 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4818 -08273103 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08273104 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4828 -08273105 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08273106 717.22979736 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4838 -08273107 717.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08273108 717.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4848 -08273109 717.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08273110 717.22985840 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4858 -08273111 717.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08273112 717.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4868 -08273113 717.22991943 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08273114 717.22998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4878 -08273115 717.22998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08273116 717.22998047 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4888 -08273117 717.23004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08273118 717.23004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4898 -08273119 717.23004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08273120 717.23004150 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a8 -08273121 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08273122 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b8 -08273123 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08273124 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c8 -08273125 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08273126 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d8 -08273127 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08273128 717.23010254 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e8 -08273129 717.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08273130 717.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f8 -08273131 717.23016357 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08273132 717.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4908 -08273133 717.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08273134 717.23022461 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4918 -08273135 717.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08273136 717.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4928 -08273137 717.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08273138 717.23028564 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4938 -08273139 717.23034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08273140 717.23034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4948 -08273141 717.23034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08273142 717.23034668 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4958 -08273143 717.23040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08273144 717.23040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4968 -08273145 717.23040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08273146 717.23040771 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4978 -08273147 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08273148 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4988 -08273149 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08273150 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4998 -08273151 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08273152 717.23046875 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49a8 -08273153 717.23052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08273154 717.23052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49b8 -08273155 717.23052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08273156 717.23052979 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49c8 -08273157 717.23059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08273158 717.23059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49d8 -08273159 717.23059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08273160 717.23059082 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49e8 -08273161 717.23065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08273162 717.23065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x49f8 -08273163 717.23065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08273164 717.23065186 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a08 -08273165 717.23071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08273166 717.23071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a18 -08273167 717.23071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08273168 717.23071289 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a28 -08273169 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08273170 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a38 -08273171 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08273172 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a48 -08273173 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08273174 717.23077393 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a58 -08273175 717.23083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08273176 717.23083496 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a68 -08273177 717.23089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08273178 717.23089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a78 -08273179 717.23089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08273180 717.23089600 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a88 -08273181 717.23095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08273182 717.23095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4a98 -08273183 717.23095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08273184 717.23095703 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4aa8 -08273185 717.23101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08273186 717.23101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ab8 -08273187 717.23101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08273188 717.23101807 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ac8 -08273189 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08273190 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ad8 -08273191 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08273192 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ae8 -08273193 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08273194 717.23107910 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4af8 -08273195 717.23114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08273196 717.23114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b08 -08273197 717.23114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08273198 717.23114014 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b18 -08273199 717.23120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08273200 717.23120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b28 -08273201 717.23120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08273202 717.23120117 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b38 -08273203 717.23126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08273204 717.23126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b48 -08273205 717.23126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08273206 717.23126221 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b58 -08273207 717.23132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08273208 717.23132324 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b68 -08273209 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08273210 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b78 -08273211 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08273212 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b88 -08273213 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08273214 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4b98 -08273215 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08273216 717.23138428 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ba8 -08273217 717.23144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08273218 717.23144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bb8 -08273219 717.23144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08273220 717.23144531 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bc8 -08273221 717.23150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08273222 717.23150635 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bd8 -08273223 717.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08273224 717.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4be8 -08273225 717.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08273226 717.23156738 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4bf8 -08273227 717.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08273228 717.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c08 -08273229 717.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08273230 717.23162842 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c18 -08273231 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08273232 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c28 -08273233 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08273234 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c38 -08273235 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08273236 717.23168945 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c48 -08273237 717.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08273238 717.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c58 -08273239 717.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08273240 717.23175049 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c68 -08273241 717.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08273242 717.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c78 -08273243 717.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08273244 717.23181152 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c88 -08273245 717.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08273246 717.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4c98 -08273247 717.23187256 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08273248 717.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ca8 -08273249 717.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08273250 717.23193359 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cb8 -08273251 717.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08273252 717.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cc8 -08273253 717.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08273254 717.23199463 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cd8 -08273255 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08273256 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ce8 -08273257 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08273258 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4cf8 -08273259 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08273260 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d08 -08273261 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08273262 717.23205566 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d18 -08273263 717.23211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08273264 717.23211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d28 -08273265 717.23211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08273266 717.23211670 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d38 -08273267 717.23217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08273268 717.23217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d48 -08273269 717.23217773 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08273270 717.23223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d58 -08273271 717.23223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08273272 717.23223877 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d68 -08273273 717.23229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08273274 717.23229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d78 -08273275 717.23229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08273276 717.23229980 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d88 -08273277 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08273278 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4d98 -08273279 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08273280 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4da8 -08273281 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08273282 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4db8 -08273283 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08273284 717.23236084 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dc8 -08273285 717.23242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08273286 717.23242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4dd8 -08273287 717.23242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08273288 717.23242188 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4de8 -08273289 717.23248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08273290 717.23248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4df8 -08273291 717.23248291 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08273292 717.23254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e08 -08273293 717.23254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08273294 717.23254395 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e18 -08273295 717.23260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08273296 717.23260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e28 -08273297 717.23260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08273298 717.23260498 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e38 -08273299 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08273300 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e48 -08273301 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08273302 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e58 -08273303 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08273304 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e68 -08273305 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08273306 717.23266602 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e78 -08273307 717.23272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08273308 717.23272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e88 -08273309 717.23272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08273310 717.23272705 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4e98 -08273311 717.23278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08273312 717.23278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ea8 -08273313 717.23278809 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08273314 717.23284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4eb8 -08273315 717.23284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08273316 717.23284912 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ec8 -08273317 717.23291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08273318 717.23291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ed8 -08273319 717.23291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08273320 717.23291016 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ee8 -08273321 717.23297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08273322 717.23297119 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ef8 -08273323 717.23303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08273324 717.23303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f08 -08273325 717.23303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08273326 717.23303223 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f18 -08273327 717.23309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08273328 717.23309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f28 -08273329 717.23309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08273330 717.23309326 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f38 -08273331 717.23315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08273332 717.23315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f48 -08273333 717.23315430 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08273334 717.23321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f58 -08273335 717.23321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08273336 717.23321533 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f68 -08273337 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08273338 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f78 -08273339 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08273340 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f88 -08273341 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08273342 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4f98 -08273343 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08273344 717.23327637 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fa8 -08273345 717.23333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08273346 717.23333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fb8 -08273347 717.23333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08273348 717.23333740 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fc8 -08273349 717.23339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08273350 717.23339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fd8 -08273351 717.23339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08273352 717.23339844 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4fe8 -08273353 717.23345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08273354 717.23345947 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x4ff8 -08273355 717.23352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08273356 717.23352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5008 -08273357 717.23352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08273358 717.23352051 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5018 -08273359 717.23358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08273360 717.23358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5028 -08273361 717.23358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08273362 717.23358154 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5038 -08273363 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08273364 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5048 -08273365 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08273366 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5058 -08273367 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08273368 717.23364258 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5068 -08273369 717.23370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08273370 717.23370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5078 -08273371 717.23370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08273372 717.23370361 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5088 -08273373 717.23376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08273374 717.23376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5098 -08273375 717.23376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08273376 717.23376465 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50a8 -08273377 717.23382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08273378 717.23382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50b8 -08273379 717.23382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08273380 717.23382568 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50c8 -08273381 717.23388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08273382 717.23388672 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50d8 -08273383 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08273384 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50e8 -08273385 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08273386 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x50f8 -08273387 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08273388 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5108 -08273389 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08273390 717.23394775 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5118 -08273391 717.23400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08273392 717.23400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5128 -08273393 717.23400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08273394 717.23400879 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5138 -08273395 717.23406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08273396 717.23406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5148 -08273397 717.23406982 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08273398 717.23413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5158 -08273399 717.23413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08273400 717.23413086 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5168 -08273401 717.23419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08273402 717.23419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5178 -08273403 717.23419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08273404 717.23419189 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5188 -08273405 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08273406 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5198 -08273407 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08273408 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51a8 -08273409 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08273410 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51b8 -08273411 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08273412 717.23425293 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51c8 -08273413 717.23431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08273414 717.23431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51d8 -08273415 717.23431396 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08273416 717.23437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51e8 -08273417 717.23437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08273418 717.23437500 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x51f8 -08273419 717.23443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08273420 717.23443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5208 -08273421 717.23443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08273422 717.23443604 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5218 -08273423 717.23449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08273424 717.23449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5228 -08273425 717.23449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08273426 717.23449707 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5238 -08273427 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08273428 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5248 -08273429 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08273430 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5258 -08273431 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08273432 717.23455811 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5278 -08273433 717.23461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08273434 717.23461914 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5288 -08273435 717.23468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08273436 717.23468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52a8 -08273437 717.23468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08273438 717.23468018 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52b8 -08273439 717.23474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08273440 717.23474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52c8 -08273441 717.23474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08273442 717.23474121 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52d8 -08273443 717.23480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08273444 717.23480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52e8 -08273445 717.23480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08273446 717.23480225 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x52f8 -08273447 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08273448 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5308 -08273449 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08273450 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5318 -08273451 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08273452 717.23486328 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5328 -08273453 717.23492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08273454 717.23492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5338 -08273455 717.23492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08273456 717.23492432 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5348 -08273457 717.23498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08273458 717.23498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5358 -08273459 717.23498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08273460 717.23498535 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5368 -08273461 717.23504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08273462 717.23504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5378 -08273463 717.23504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08273464 717.23504639 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5388 -08273465 717.23510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08273466 717.23510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5398 -08273467 717.23510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08273468 717.23510742 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53a8 -08273469 717.23516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08273470 717.23516846 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53b8 -08273471 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08273472 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53c8 -08273473 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08273474 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53d8 -08273475 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08273476 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53e8 -08273477 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08273478 717.23522949 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x53f8 -08273479 717.23529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08273480 717.23529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5408 -08273481 717.23529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08273482 717.23529053 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5418 -08273483 717.23535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08273484 717.23535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5428 -08273485 717.23535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08273486 717.23535156 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5438 -08273487 717.23541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08273488 717.23541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5448 -08273489 717.23541260 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08273490 717.23547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5458 -08273491 717.23547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08273492 717.23547363 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5468 -08273493 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08273494 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5478 -08273495 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08273496 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5488 -08273497 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08273498 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5498 -08273499 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08273500 717.23553467 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54a8 -08273501 717.23559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08273502 717.23559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54b8 -08273503 717.23559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08273504 717.23559570 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54c8 -08273505 717.23565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08273506 717.23565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54d8 -08273507 717.23565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08273508 717.23565674 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54e8 -08273509 717.23571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08273510 717.23571777 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x54f8 -08273511 717.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08273512 717.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5508 -08273513 717.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08273514 717.23577881 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5518 -08273515 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08273516 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5528 -08273517 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08273518 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5538 -08273519 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08273520 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5548 -08273521 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08273522 717.23583984 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5558 -08273523 717.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08273524 717.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5568 -08273525 717.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08273526 717.23590088 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5578 -08273527 717.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08273528 717.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5588 -08273529 717.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08273530 717.23596191 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5598 -08273531 717.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08273532 717.23602295 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55a8 -08273533 717.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08273534 717.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55b8 -08273535 717.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08273536 717.23608398 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55c8 -08273537 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08273538 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55d8 -08273539 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08273540 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55e8 -08273541 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08273542 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x55f8 -08273543 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08273544 717.23614502 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5608 -08273545 717.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08273546 717.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5618 -08273547 717.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08273548 717.23620605 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5628 -08273549 717.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08273550 717.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5638 -08273551 717.23626709 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08273552 717.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5648 -08273553 717.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08273554 717.23632813 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5658 -08273555 717.23638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08273556 717.23638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5668 -08273557 717.23638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08273558 717.23638916 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5678 -08273559 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08273560 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5688 -08273561 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08273562 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5698 -08273563 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08273564 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56a8 -08273565 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08273566 717.23645020 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56b8 -08273567 717.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08273568 717.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56c8 -08273569 717.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08273570 717.23651123 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56d8 -08273571 717.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08273572 717.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56e8 -08273573 717.23657227 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08273574 717.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x56f8 -08273575 717.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08273576 717.23663330 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5708 -08273577 717.23669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08273578 717.23669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5718 -08273579 717.23669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08273580 717.23669434 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5728 -08273581 717.23675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08273582 717.23675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5738 -08273583 717.23675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08273584 717.23675537 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5748 -08273585 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08273586 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5758 -08273587 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08273588 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5768 -08273589 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08273590 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5778 -08273591 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08273592 717.23681641 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5788 -08273593 717.23687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08273594 717.23687744 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5798 -08273595 717.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08273596 717.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57a8 -08273597 717.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08273598 717.23693848 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57b8 -08273599 717.23699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08273600 717.23699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57c8 -08273601 717.23699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08273602 717.23699951 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57d8 -08273603 717.23706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08273604 717.23706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57e8 -08273605 717.23706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08273606 717.23706055 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x57f8 -08273607 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08273608 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5808 -08273609 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08273610 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5818 -08273611 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08273612 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5828 -08273613 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08273614 717.23712158 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5838 -08273615 717.23718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08273616 717.23718262 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5848 -08273617 717.23724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08273618 717.23724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5858 -08273619 717.23724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08273620 717.23724365 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5868 -08273621 717.23730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08273622 717.23730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5878 -08273623 717.23730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08273624 717.23730469 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5888 -08273625 717.23736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08273626 717.23736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5898 -08273627 717.23736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08273628 717.23736572 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58a8 -08273629 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08273630 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58b8 -08273631 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08273632 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58c8 -08273633 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08273634 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58d8 -08273635 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08273636 717.23742676 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58e8 -08273637 717.23748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08273638 717.23748779 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x58f8 -08273639 717.23754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08273640 717.23754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5908 -08273641 717.23754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08273642 717.23754883 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5918 -08273643 717.23760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08273644 717.23760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5928 -08273645 717.23760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08273646 717.23760986 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5938 -08273647 717.23767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08273648 717.23767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5948 -08273649 717.23767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08273650 717.23767090 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5958 -08273651 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08273652 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5968 -08273653 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08273654 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5978 -08273655 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08273656 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5988 -08273657 717.23773193 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08273658 717.23779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5998 -08273659 717.23779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08273660 717.23779297 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59a8 -08273661 717.23785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08273662 717.23785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59b8 -08273663 717.23785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08273664 717.23785400 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59c8 -08273665 717.23791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08273666 717.23791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59d8 -08273667 717.23791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08273668 717.23791504 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59e8 -08273669 717.23797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08273670 717.23797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x59f8 -08273671 717.23797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08273672 717.23797607 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a08 -08273673 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08273674 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a18 -08273675 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08273676 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a28 -08273677 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08273678 717.23803711 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a38 -08273679 717.23809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08273680 717.23809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a48 -08273681 717.23809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08273682 717.23809814 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a58 -08273683 717.23815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08273684 717.23815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a68 -08273685 717.23815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08273686 717.23815918 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a78 -08273687 717.23822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08273688 717.23822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a88 -08273689 717.23822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08273690 717.23822021 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5a98 -08273691 717.23828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08273692 717.23828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5aa8 -08273693 717.23828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08273694 717.23828125 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ab8 -08273695 717.23834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08273696 717.23834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ac8 -08273697 717.23834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08273698 717.23834229 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ad8 -08273699 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08273700 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ae8 -08273701 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08273702 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5af8 -08273703 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08273704 717.23840332 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b08 -08273705 717.23846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08273706 717.23846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b18 -08273707 717.23846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08273708 717.23846436 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b28 -08273709 717.23852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08273710 717.23852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b38 -08273711 717.23852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08273712 717.23852539 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b48 -08273713 717.23858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08273714 717.23858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b58 -08273715 717.23858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08273716 717.23858643 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b68 -08273717 717.23864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08273718 717.23864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b78 -08273719 717.23864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08273720 717.23864746 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b88 -08273721 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08273722 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5b98 -08273723 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08273724 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ba8 -08273725 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08273726 717.23870850 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bb8 -08273727 717.23876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08273728 717.23876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bc8 -08273729 717.23876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08273730 717.23876953 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bd8 -08273731 717.23883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08273732 717.23883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5be8 -08273733 717.23883057 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08273734 717.23889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5bf8 -08273735 717.23889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08273736 717.23889160 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c08 -08273737 717.23895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08273738 717.23895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c18 -08273739 717.23895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08273740 717.23895264 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c28 -08273741 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08273742 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c38 -08273743 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08273744 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c48 -08273745 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08273746 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c58 -08273747 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08273748 717.23901367 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c68 -08273749 717.23907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08273750 717.23907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c78 -08273751 717.23907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08273752 717.23907471 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c88 -08273753 717.23913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08273754 717.23913574 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5c98 -08273755 717.23919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08273756 717.23919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ca8 -08273757 717.23919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08273758 717.23919678 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cb8 -08273759 717.23925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08273760 717.23925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cc8 -08273761 717.23925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08273762 717.23925781 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cd8 -08273763 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08273764 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ce8 -08273765 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08273766 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5cf8 -08273767 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08273768 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d08 -08273769 717.23931885 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08273770 717.23937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d18 -08273771 717.23937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08273772 717.23937988 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d28 -08273773 717.23944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08273774 717.23944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d38 -08273775 717.23944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08273776 717.23944092 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d48 -08273777 717.23950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08273778 717.23950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d58 -08273779 717.23950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08273780 717.23950195 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d68 -08273781 717.23956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08273782 717.23956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d78 -08273783 717.23956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08273784 717.23956299 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d88 -08273785 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08273786 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5d98 -08273787 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08273788 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5da8 -08273789 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08273790 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5db8 -08273791 717.23962402 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08273792 717.23968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dc8 -08273793 717.23968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08273794 717.23968506 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5dd8 -08273795 717.23974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08273796 717.23974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5de8 -08273797 717.23974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08273798 717.23974609 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5df8 -08273799 717.23980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08273800 717.23980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e08 -08273801 717.23980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08273802 717.23980713 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e18 -08273803 717.23986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08273804 717.23986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e28 -08273805 717.23986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08273806 717.23986816 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e38 -08273807 717.23992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08273808 717.23992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e48 -08273809 717.23992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08273810 717.23992920 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e58 -08273811 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08273812 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e68 -08273813 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08273814 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e78 -08273815 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08273816 717.23999023 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e88 -08273817 717.24005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08273818 717.24005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5e98 -08273819 717.24005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08273820 717.24005127 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ea8 -08273821 717.24011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08273822 717.24011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5eb8 -08273823 717.24011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08273824 717.24011230 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ec8 -08273825 717.24017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08273826 717.24017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ed8 -08273827 717.24017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08273828 717.24017334 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ee8 -08273829 717.24023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08273830 717.24023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ef8 -08273831 717.24023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08273832 717.24023438 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f08 -08273833 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08273834 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f18 -08273835 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08273836 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f28 -08273837 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08273838 717.24029541 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f38 -08273839 717.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08273840 717.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f48 -08273841 717.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08273842 717.24035645 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f58 -08273843 717.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08273844 717.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f68 -08273845 717.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08273846 717.24041748 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f78 -08273847 717.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08273848 717.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f88 -08273849 717.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08273850 717.24047852 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5f98 -08273851 717.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08273852 717.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fa8 -08273853 717.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08273854 717.24053955 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fb8 -08273855 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08273856 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fc8 -08273857 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08273858 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fd8 -08273859 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08273860 717.24060059 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5fe8 -08273861 717.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08273862 717.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x5ff8 -08273863 717.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08273864 717.24066162 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6008 -08273865 717.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08273866 717.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6018 -08273867 717.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08273868 717.24072266 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6028 -08273869 717.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08273870 717.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6038 -08273871 717.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08273872 717.24078369 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6048 -08273873 717.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08273874 717.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6058 -08273875 717.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08273876 717.24084473 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6068 -08273877 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08273878 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6078 -08273879 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08273880 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6088 -08273881 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08273882 717.24090576 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6098 -08273883 717.24096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08273884 717.24096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60a8 -08273885 717.24096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08273886 717.24096680 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60b8 -08273887 717.24102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08273888 717.24102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60c8 -08273889 717.24102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08273890 717.24102783 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60d8 -08273891 717.24108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08273892 717.24108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60e8 -08273893 717.24108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08273894 717.24108887 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x60f8 -08273895 717.24114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08273896 717.24114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6108 -08273897 717.24114990 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08273898 717.24121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6118 -08273899 717.24121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08273900 717.24121094 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6128 -08273901 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08273902 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6138 -08273903 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08273904 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6148 -08273905 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08273906 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6158 -08273907 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08273908 717.24127197 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6168 -08273909 717.24133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08273910 717.24133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6178 -08273911 717.24133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08273912 717.24133301 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6188 -08273913 717.24139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08273914 717.24139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6198 -08273915 717.24139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08273916 717.24139404 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61a8 -08273917 717.24145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08273918 717.24145508 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61b8 -08273919 717.24151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08273920 717.24151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61c8 -08273921 717.24151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08273922 717.24151611 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61d8 -08273923 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08273924 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61e8 -08273925 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08273926 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x61f8 -08273927 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08273928 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6208 -08273929 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08273930 717.24157715 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6218 -08273931 717.24163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08273932 717.24163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6228 -08273933 717.24163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08273934 717.24163818 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6238 -08273935 717.24169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08273936 717.24169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6248 -08273937 717.24169922 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08273938 717.24176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6258 -08273939 717.24176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08273940 717.24176025 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6268 -08273941 717.24182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08273942 717.24182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6278 -08273943 717.24182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08273944 717.24182129 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6288 -08273945 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08273946 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6298 -08273947 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08273948 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62a8 -08273949 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08273950 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62b8 -08273951 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08273952 717.24188232 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62c8 -08273953 717.24194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08273954 717.24194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62d8 -08273955 717.24194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08273956 717.24194336 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62e8 -08273957 717.24200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08273958 717.24200439 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x62f8 -08273959 717.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08273960 717.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6308 -08273961 717.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08273962 717.24206543 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6318 -08273963 717.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08273964 717.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6328 -08273965 717.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08273966 717.24212646 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6338 -08273967 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08273968 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6348 -08273969 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08273970 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6358 -08273971 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08273972 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6368 -08273973 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08273974 717.24218750 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6378 -08273975 717.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08273976 717.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6388 -08273977 717.24224854 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08273978 717.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6398 -08273979 717.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08273980 717.24230957 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63a8 -08273981 717.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08273982 717.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63b8 -08273983 717.24237061 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08273984 717.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63c8 -08273985 717.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08273986 717.24243164 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63d8 -08273987 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08273988 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63e8 -08273989 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08273990 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x63f8 -08273991 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08273992 717.24249268 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6408 -08273993 717.24255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08273994 717.24255371 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6418 -08273995 717.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08273996 717.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6428 -08273997 717.24261475 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08273998 717.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6438 -08273999 717.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08274000 717.24267578 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6448 -08274001 717.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08274002 717.24273682 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6458 -08274003 717.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08274004 717.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6468 -08274005 717.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08274006 717.24279785 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6478 -08274007 717.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08274008 717.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6488 -08274009 717.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08274010 717.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6498 -08274011 717.24285889 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08274012 717.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64a8 -08274013 717.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08274014 717.24291992 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64b8 -08274015 717.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08274016 717.24298096 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64c8 -08274017 717.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08274018 717.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64d8 -08274019 717.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08274020 717.24304199 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64e8 -08274021 717.24310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08274022 717.24310303 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x64f8 -08274023 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08274024 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6508 -08274025 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08274026 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6518 -08274027 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08274028 717.24316406 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6528 -08274029 717.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08274030 717.24322510 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6538 -08274031 717.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08274032 717.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6548 -08274033 717.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08274034 717.24328613 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6558 -08274035 717.24334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08274036 717.24334717 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6568 -08274037 717.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08274038 717.24340820 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6578 -08274039 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08274040 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6588 -08274041 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08274042 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6598 -08274043 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08274044 717.24346924 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65a8 -08274045 717.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08274046 717.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65b8 -08274047 717.24353027 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08274048 717.24359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65c8 -08274049 717.24359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08274050 717.24359131 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65d8 -08274051 717.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08274052 717.24365234 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65e8 -08274053 717.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08274054 717.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x65f8 -08274055 717.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08274056 717.24371338 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6608 -08274057 717.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08274058 717.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6618 -08274059 717.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08274060 717.24377441 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6628 -08274061 717.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08274062 717.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6638 -08274063 717.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08274064 717.24383545 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6648 -08274065 717.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08274066 717.24389648 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6658 -08274067 717.24395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08274068 717.24395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6668 -08274069 717.24395752 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08274070 717.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6678 -08274071 717.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08274072 717.24401855 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6688 -08274073 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08274074 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6698 -08274075 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08274076 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66a8 -08274077 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08274078 717.24407959 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66b8 -08274079 717.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08274080 717.24414063 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66c8 -08274081 717.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08274082 717.24420166 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66d8 -08274083 717.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08274084 717.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66e8 -08274085 717.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08274086 717.24426270 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x66f8 -08274087 717.24432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08274088 717.24432373 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6708 -08274089 717.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08274090 717.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6718 -08274091 717.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08274092 717.24438477 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6728 -08274093 717.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08274094 717.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6738 -08274095 717.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08274096 717.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6748 -08274097 717.24444580 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08274098 717.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6758 -08274099 717.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08274100 717.24450684 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6768 -08274101 717.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08274102 717.24456787 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6778 -08274103 717.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08274104 717.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6788 -08274105 717.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08274106 717.24462891 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6798 -08274107 717.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08274108 717.24468994 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67a8 -08274109 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08274110 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67b8 -08274111 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08274112 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67c8 -08274113 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08274114 717.24475098 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67d8 -08274115 717.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08274116 717.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67e8 -08274117 717.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08274118 717.24481201 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x67f8 -08274119 717.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08274120 717.24487305 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6808 -08274121 717.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08274122 717.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6818 -08274123 717.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08274124 717.24493408 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6828 -08274125 717.24499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08274126 717.24499512 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6838 -08274127 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08274128 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6848 -08274129 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08274130 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6858 -08274131 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08274132 717.24505615 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6868 -08274133 717.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08274134 717.24511719 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6878 -08274135 717.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08274136 717.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6888 -08274137 717.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08274138 717.24517822 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6898 -08274139 717.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08274140 717.24523926 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68a8 -08274141 717.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08274142 717.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68b8 -08274143 717.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08274144 717.24530029 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68c8 -08274145 717.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08274146 717.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68d8 -08274147 717.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08274148 717.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68e8 -08274149 717.24536133 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08274150 717.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x68f8 -08274151 717.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08274152 717.24542236 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6908 -08274153 717.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08274154 717.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6918 -08274155 717.24548340 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08274156 717.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6928 -08274157 717.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08274158 717.24554443 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6938 -08274159 717.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08274160 717.24560547 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6948 -08274161 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08274162 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6958 -08274163 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08274164 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6968 -08274165 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08274166 717.24566650 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6978 -08274167 717.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08274168 717.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6988 -08274169 717.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08274170 717.24572754 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6998 -08274171 717.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08274172 717.24578857 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69a8 -08274173 717.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08274174 717.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69b8 -08274175 717.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08274176 717.24584961 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69c8 -08274177 717.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08274178 717.24591064 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69d8 -08274179 717.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08274180 717.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69e8 -08274181 717.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08274182 717.24597168 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x69f8 -08274183 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08274184 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a08 -08274185 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08274186 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a18 -08274187 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08274188 717.24603271 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a28 -08274189 717.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08274190 717.24609375 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a38 -08274191 717.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08274192 717.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a48 -08274193 717.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08274194 717.24615479 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a58 -08274195 717.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08274196 717.24621582 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a68 -08274197 717.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08274198 717.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a78 -08274199 717.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08274200 717.24627686 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a88 -08274201 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08274202 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6a98 -08274203 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08274204 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6aa8 -08274205 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08274206 717.24633789 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ab8 -08274207 717.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08274208 717.24639893 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ac8 -08274209 717.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08274210 717.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ad8 -08274211 717.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08274212 717.24645996 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ae8 -08274213 717.24652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08274214 717.24652100 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6af8 -08274215 717.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08274216 717.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b08 -08274217 717.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08274218 717.24658203 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b18 -08274219 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08274220 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b28 -08274221 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08274222 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b38 -08274223 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08274224 717.24664307 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b48 -08274225 717.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08274226 717.24670410 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b58 -08274227 717.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08274228 717.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b68 -08274229 717.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08274230 717.24676514 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b78 -08274231 717.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08274232 717.24682617 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b88 -08274233 717.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08274234 717.24688721 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6b98 -08274235 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08274236 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ba8 -08274237 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08274238 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bb8 -08274239 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08274240 717.24694824 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bc8 -08274241 717.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08274242 717.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bd8 -08274243 717.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08274244 717.24700928 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6be8 -08274245 717.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08274246 717.24707031 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6bf8 -08274247 717.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08274248 717.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c08 -08274249 717.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08274250 717.24713135 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c18 -08274251 717.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08274252 717.24719238 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c28 -08274253 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08274254 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c38 -08274255 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08274256 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c48 -08274257 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08274258 717.24725342 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c58 -08274259 717.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08274260 717.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c68 -08274261 717.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08274262 717.24731445 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c78 -08274263 717.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08274264 717.24737549 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c88 -08274265 717.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08274266 717.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6c98 -08274267 717.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08274268 717.24743652 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ca8 -08274269 717.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08274270 717.24749756 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cb8 -08274271 717.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08274272 717.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cc8 -08274273 717.24755859 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08274274 717.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cd8 -08274275 717.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08274276 717.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ce8 -08274277 717.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08274278 717.24761963 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6cf8 -08274279 717.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08274280 717.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d08 -08274281 717.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08274282 717.24768066 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d18 -08274283 717.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08274284 717.24774170 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d28 -08274285 717.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08274286 717.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d38 -08274287 717.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08274288 717.24780273 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d48 -08274289 717.24786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08274290 717.24786377 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d58 -08274291 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08274292 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d68 -08274293 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08274294 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d78 -08274295 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08274296 717.24792480 [vmhook-eac [core number = 15]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d88 -08274297 717.24804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08274298 717.24804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6d98 -08274299 717.24804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08274300 717.24804688 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6da8 -08274301 717.24810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08274302 717.24810791 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6db8 -08274303 717.24816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08274304 717.24816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dc8 -08274305 717.24816895 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08274306 717.24822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6dd8 -08274307 717.24822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08274308 717.24822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6de8 -08274309 717.24822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08274310 717.24822998 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6df8 -08274311 717.24829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08274312 717.24829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e08 -08274313 717.24829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08274314 717.24829102 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e18 -08274315 717.24835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08274316 717.24835205 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e28 -08274317 717.24841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08274318 717.24841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e38 -08274319 717.24841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08274320 717.24841309 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e48 -08274321 717.24847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08274322 717.24847412 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e58 -08274323 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08274324 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e68 -08274325 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08274326 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e78 -08274327 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08274328 717.24853516 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e88 -08274329 717.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08274330 717.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6e98 -08274331 717.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08274332 717.24859619 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ea8 -08274333 717.24865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08274334 717.24865723 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6eb8 -08274335 717.24871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08274336 717.24871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ec8 -08274337 717.24871826 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08274338 717.24877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ed8 -08274339 717.24877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08274340 717.24877930 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ee8 -08274341 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08274342 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ef8 -08274343 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08274344 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f08 -08274345 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08274346 717.24884033 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f18 -08274347 717.24890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08274348 717.24890137 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f28 -08274349 717.24896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08274350 717.24896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f38 -08274351 717.24896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08274352 717.24896240 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f48 -08274353 717.24902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08274354 717.24902344 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f58 -08274355 717.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08274356 717.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f68 -08274357 717.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08274358 717.24908447 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f78 -08274359 717.24914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08274360 717.24914551 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f88 -08274361 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08274362 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6f98 -08274363 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08274364 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fa8 -08274365 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08274366 717.24920654 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fb8 -08274367 717.24926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08274368 717.24926758 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fc8 -08274369 717.24932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08274370 717.24932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fd8 -08274371 717.24932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08274372 717.24932861 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6fe8 -08274373 717.24938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08274374 717.24938965 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x6ff8 -08274375 717.24945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08274376 717.24945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7008 -08274377 717.24945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08274378 717.24945068 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7018 -08274379 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08274380 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7028 -08274381 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08274382 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7038 -08274383 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08274384 717.24951172 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7048 -08274385 717.24957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08274386 717.24957275 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7058 -08274387 717.24963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08274388 717.24963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7068 -08274389 717.24963379 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08274390 717.24969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7078 -08274391 717.24969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08274392 717.24969482 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7088 -08274393 717.24975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08274394 717.24975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7098 -08274395 717.24975586 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08274396 717.24981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70a8 -08274397 717.24981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08274398 717.24981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70b8 -08274399 717.24981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08274400 717.24981689 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70c8 -08274401 717.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08274402 717.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70d8 -08274403 717.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08274404 717.24987793 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70e8 -08274405 717.24993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08274406 717.24993896 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x70f8 -08274407 717.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08274408 717.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7108 -08274409 717.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08274410 717.25000000 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7118 -08274411 717.25006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08274412 717.25006104 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7138 -08274413 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08274414 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7148 -08274415 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08274416 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7158 -08274417 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08274418 717.25012207 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7168 -08274419 717.25018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08274420 717.25018311 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7178 -08274421 717.25024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08274422 717.25024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7188 -08274423 717.25024414 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08274424 717.25030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7198 -08274425 717.25030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08274426 717.25030518 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71a8 -08274427 717.25036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08274428 717.25036621 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71b8 -08274429 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08274430 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71c8 -08274431 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08274432 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71d8 -08274433 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08274434 717.25042725 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71e8 -08274435 717.25048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08274436 717.25048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x71f8 -08274437 717.25048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08274438 717.25048828 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7208 -08274439 717.25054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08274440 717.25054932 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7218 -08274441 717.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08274442 717.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7228 -08274443 717.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08274444 717.25061035 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7238 -08274445 717.25067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08274446 717.25067139 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7248 -08274447 717.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08274448 717.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7258 -08274449 717.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08274450 717.25073242 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7268 -08274451 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08274452 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7278 -08274453 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08274454 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7288 -08274455 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08274456 717.25079346 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7298 -08274457 717.25085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08274458 717.25085449 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72a8 -08274459 717.25091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08274460 717.25091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72b8 -08274461 717.25091553 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08274462 717.25097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72c8 -08274463 717.25097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08274464 717.25097656 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72d8 -08274465 717.25103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08274466 717.25103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72e8 -08274467 717.25103760 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08274468 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x72f8 -08274469 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08274470 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7308 -08274471 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08274472 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7318 -08274473 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08274474 717.25109863 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7328 -08274475 717.25115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08274476 717.25115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7338 -08274477 717.25115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08274478 717.25115967 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7348 -08274479 717.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08274480 717.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7358 -08274481 717.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08274482 717.25122070 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7368 -08274483 717.25128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08274484 717.25128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7378 -08274485 717.25128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08274486 717.25128174 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7388 -08274487 717.25134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08274488 717.25134277 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7398 -08274489 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08274490 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73a8 -08274491 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08274492 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73b8 -08274493 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08274494 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73c8 -08274495 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08274496 717.25140381 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73d8 -08274497 717.25146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08274498 717.25146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73e8 -08274499 717.25146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08274500 717.25146484 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x73f8 -08274501 717.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08274502 717.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7408 -08274503 717.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08274504 717.25152588 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7418 -08274505 717.25158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08274506 717.25158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7428 -08274507 717.25158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08274508 717.25158691 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7438 -08274509 717.25164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08274510 717.25164795 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7448 -08274511 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08274512 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7458 -08274513 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08274514 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7468 -08274515 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08274516 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7478 -08274517 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08274518 717.25170898 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7488 -08274519 717.25177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08274520 717.25177002 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7498 -08274521 717.25183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08274522 717.25183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74a8 -08274523 717.25183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08274524 717.25183105 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74b8 -08274525 717.25189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08274526 717.25189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74c8 -08274527 717.25189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08274528 717.25189209 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74d8 -08274529 717.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08274530 717.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74e8 -08274531 717.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08274532 717.25195313 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x74f8 -08274533 717.25201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08274534 717.25201416 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7508 -08274535 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08274536 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7518 -08274537 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08274538 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7528 -08274539 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08274540 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7538 -08274541 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08274542 717.25207520 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7548 -08274543 717.25213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08274544 717.25213623 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7558 -08274545 717.25219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08274546 717.25219727 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7568 -08274547 717.25225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08274548 717.25225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7578 -08274549 717.25225830 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08274550 717.25231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7588 -08274551 717.25231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08274552 717.25231934 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7598 -08274553 717.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08274554 717.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75a8 -08274555 717.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08274556 717.25238037 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75b8 -08274557 717.25244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08274558 717.25244141 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75c8 -08274559 717.25250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08274560 717.25250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75d8 -08274561 717.25250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08274562 717.25250244 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75e8 -08274563 717.25256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08274564 717.25256348 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x75f8 -08274565 717.25262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08274566 717.25262451 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7608 -08274567 717.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08274568 717.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7618 -08274569 717.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08274570 717.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7628 -08274571 717.25268555 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08274572 717.25274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7638 -08274573 717.25274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08274574 717.25274658 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7648 -08274575 717.25280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08274576 717.25280762 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7658 -08274577 717.25286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08274578 717.25286865 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7668 -08274579 717.25292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08274580 717.25292969 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7678 -08274581 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08274582 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7688 -08274583 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08274584 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7698 -08274585 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08274586 717.25299072 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76a8 -08274587 717.25305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08274588 717.25305176 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76b8 -08274589 717.25311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08274590 717.25311279 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76c8 -08274591 717.25317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08274592 717.25317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76d8 -08274593 717.25317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08274594 717.25317383 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76e8 -08274595 717.25323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08274596 717.25323486 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x76f8 -08274597 717.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08274598 717.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7708 -08274599 717.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08274600 717.25329590 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7718 -08274601 717.25335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08274602 717.25335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7728 -08274603 717.25335693 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08274604 717.25341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7738 -08274605 717.25341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08274606 717.25341797 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7748 -08274607 717.25347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08274608 717.25347900 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7758 -08274609 717.25354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08274610 717.25354004 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7768 -08274611 717.25360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08274612 717.25360107 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7778 -08274613 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08274614 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7788 -08274615 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08274616 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7798 -08274617 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08274618 717.25366211 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77a8 -08274619 717.25372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08274620 717.25372314 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77b8 -08274621 717.25378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08274622 717.25378418 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77c8 -08274623 717.25384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08274624 717.25384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77d8 -08274625 717.25384521 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08274626 717.25390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77e8 -08274627 717.25390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08274628 717.25390625 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x77f8 -08274629 717.25396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08274630 717.25396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7808 -08274631 717.25396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08274632 717.25396729 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7818 -08274633 717.25402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08274634 717.25402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7828 -08274635 717.25402832 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08274636 717.25408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7838 -08274637 717.25408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08274638 717.25408936 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7848 -08274639 717.25415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08274640 717.25415039 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7858 -08274641 717.25421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08274642 717.25421143 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7868 -08274643 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08274644 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7878 -08274645 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08274646 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7888 -08274647 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08274648 717.25427246 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7898 -08274649 717.25433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08274650 717.25433350 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78a8 -08274651 717.25439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08274652 717.25439453 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78b8 -08274653 717.25445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08274654 717.25445557 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78c8 -08274655 717.25451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08274656 717.25451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78d8 -08274657 717.25451660 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08274658 717.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78e8 -08274659 717.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08274660 717.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x78f8 -08274661 717.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08274662 717.25457764 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7908 -08274663 717.25463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08274664 717.25463867 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7918 -08274665 717.25469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08274666 717.25469971 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7928 -08274667 717.25476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08274668 717.25476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7938 -08274669 717.25476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08274670 717.25476074 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7948 -08274671 717.25482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08274672 717.25482178 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7958 -08274673 717.25488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08274674 717.25488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7968 -08274675 717.25488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08274676 717.25488281 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7978 -08274677 717.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08274678 717.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7988 -08274679 717.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08274680 717.25494385 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7998 -08274681 717.25500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08274682 717.25500488 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79a8 -08274683 717.25506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08274684 717.25506592 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79b8 -08274685 717.25512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08274686 717.25512695 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79c8 -08274687 717.25518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08274688 717.25518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79d8 -08274689 717.25518799 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08274690 717.25524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79e8 -08274691 717.25524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08274692 717.25524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x79f8 -08274693 717.25524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08274694 717.25524902 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a08 -08274695 717.25531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08274696 717.25531006 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a18 -08274697 717.25537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08274698 717.25537109 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a28 -08274699 717.25543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08274700 717.25543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a38 -08274701 717.25543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08274702 717.25543213 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a48 -08274703 717.25549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08274704 717.25549316 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a58 -08274705 717.25555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08274706 717.25555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a68 -08274707 717.25555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08274708 717.25555420 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a78 -08274709 717.25561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08274710 717.25561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a88 -08274711 717.25561523 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08274712 717.25567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7a98 -08274713 717.25567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08274714 717.25567627 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7aa8 -08274715 717.25573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08274716 717.25573730 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ab8 -08274717 717.25579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08274718 717.25579834 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ac8 -08274719 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08274720 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ad8 -08274721 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08274722 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ae8 -08274723 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08274724 717.25585938 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7af8 -08274725 717.25592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08274726 717.25592041 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b08 -08274727 717.25598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08274728 717.25598145 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b18 -08274729 717.25604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08274730 717.25604248 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b28 -08274731 717.25610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08274732 717.25610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b38 -08274733 717.25610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08274734 717.25610352 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b48 -08274735 717.25616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08274736 717.25616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b58 -08274737 717.25616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08274738 717.25616455 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b68 -08274739 717.25622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08274740 717.25622559 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b78 -08274741 717.25628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08274742 717.25628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b88 -08274743 717.25628662 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08274744 717.25634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7b98 -08274745 717.25634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08274746 717.25634766 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ba8 -08274747 717.25640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08274748 717.25640869 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bb8 -08274749 717.25646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08274750 717.25646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bc8 -08274751 717.25646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08274752 717.25646973 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bd8 -08274753 717.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08274754 717.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7be8 -08274755 717.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08274756 717.25653076 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7bf8 -08274757 717.25659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08274758 717.25659180 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c08 -08274759 717.25665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08274760 717.25665283 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c18 -08274761 717.25671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08274762 717.25671387 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c28 -08274763 717.25677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08274764 717.25677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c38 -08274765 717.25677490 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08274766 717.25683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c48 -08274767 717.25683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08274768 717.25683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c58 -08274769 717.25683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08274770 717.25683594 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c68 -08274771 717.25689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08274772 717.25689697 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c78 -08274773 717.25695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08274774 717.25695801 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c88 -08274775 717.25701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08274776 717.25701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7c98 -08274777 717.25701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08274778 717.25701904 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ca8 -08274779 717.25708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08274780 717.25708008 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cb8 -08274781 717.25714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08274782 717.25714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cc8 -08274783 717.25714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08274784 717.25714111 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cd8 -08274785 717.25720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08274786 717.25720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ce8 -08274787 717.25720215 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08274788 717.25726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7cf8 -08274789 717.25726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08274790 717.25726318 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d08 -08274791 717.25732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08274792 717.25732422 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d18 -08274793 717.25738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08274794 717.25738525 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d28 -08274795 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08274796 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d38 -08274797 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08274798 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d48 -08274799 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08274800 717.25744629 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d58 -08274801 717.25750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08274802 717.25750732 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d68 -08274803 717.25756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08274804 717.25756836 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d78 -08274805 717.25762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08274806 717.25762939 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d88 -08274807 717.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08274808 717.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7d98 -08274809 717.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08274810 717.25769043 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7da8 -08274811 717.25775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08274812 717.25775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7db8 -08274813 717.25775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08274814 717.25775146 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dc8 -08274815 717.25781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08274816 717.25781250 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7dd8 -08274817 717.25787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08274818 717.25787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7de8 -08274819 717.25787354 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08274820 717.25793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7df8 -08274821 717.25793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08274822 717.25793457 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e08 -08274823 717.25799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08274824 717.25799561 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e18 -08274825 717.25805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08274826 717.25805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e28 -08274827 717.25805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08274828 717.25805664 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e38 -08274829 717.25811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08274830 717.25811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e48 -08274831 717.25811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08274832 717.25811768 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e58 -08274833 717.25817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08274834 717.25817871 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e68 -08274835 717.25823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08274836 717.25823975 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e78 -08274837 717.25830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08274838 717.25830078 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e88 -08274839 717.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08274840 717.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7e98 -08274841 717.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08274842 717.25836182 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ea8 -08274843 717.25842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08274844 717.25842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7eb8 -08274845 717.25842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08274846 717.25842285 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ec8 -08274847 717.25848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08274848 717.25848389 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ed8 -08274849 717.25854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08274850 717.25854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ee8 -08274851 717.25854492 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08274852 717.25860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ef8 -08274853 717.25860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08274854 717.25860596 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f08 -08274855 717.25866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08274856 717.25866699 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f18 -08274857 717.25872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08274858 717.25872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f28 -08274859 717.25872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08274860 717.25872803 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f38 -08274861 717.25878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08274862 717.25878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f48 -08274863 717.25878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08274864 717.25878906 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f58 -08274865 717.25885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08274866 717.25885010 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f68 -08274867 717.25891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08274868 717.25891113 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f78 -08274869 717.25897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08274870 717.25897217 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f88 -08274871 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08274872 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7f98 -08274873 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08274874 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fa8 -08274875 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08274876 717.25903320 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fb8 -08274877 717.25909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08274878 717.25909424 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fc8 -08274879 717.25915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08274880 717.25915527 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fd8 -08274881 717.25921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08274882 717.25921631 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7fe8 -08274883 717.25927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08274884 717.25927734 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x7ff8 -08274885 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08274886 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8008 -08274887 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08274888 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8018 -08274889 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08274890 717.25933838 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8028 -08274891 717.25939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08274892 717.25939941 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8038 -08274893 717.25946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08274894 717.25946045 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8048 -08274895 717.25952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08274896 717.25952148 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8058 -08274897 717.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08274898 717.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8068 -08274899 717.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08274900 717.25958252 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8078 -08274901 717.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08274902 717.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8088 -08274903 717.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08274904 717.25964355 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8098 -08274905 717.25970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08274906 717.25970459 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80a8 -08274907 717.25976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08274908 717.25976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80b8 -08274909 717.25976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08274910 717.25976563 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80c8 -08274911 717.25982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08274912 717.25982666 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80d8 -08274913 717.25988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08274914 717.25988770 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80e8 -08274915 717.25994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08274916 717.25994873 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x80f8 -08274917 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08274918 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8108 -08274919 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08274920 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8118 -08274921 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08274922 717.26000977 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8128 -08274923 717.26007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08274924 717.26007080 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8138 -08274925 717.26013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08274926 717.26013184 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8148 -08274927 717.26019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08274928 717.26019287 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8158 -08274929 717.26025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08274930 717.26025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8168 -08274931 717.26025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08274932 717.26025391 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8178 -08274933 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08274934 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8188 -08274935 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08274936 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8198 -08274937 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08274938 717.26031494 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81a8 -08274939 717.26037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08274940 717.26037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81b8 -08274941 717.26037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08274942 717.26037598 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81c8 -08274943 717.26043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08274944 717.26043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81d8 -08274945 717.26043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08274946 717.26043701 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81e8 -08274947 717.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08274948 717.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x81f8 -08274949 717.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08274950 717.26049805 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8208 -08274951 717.26055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08274952 717.26055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8218 -08274953 717.26055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08274954 717.26055908 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8228 -08274955 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08274956 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8238 -08274957 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08274958 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8248 -08274959 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08274960 717.26062012 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8258 -08274961 717.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08274962 717.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8268 -08274963 717.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08274964 717.26068115 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8278 -08274965 717.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08274966 717.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8288 -08274967 717.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08274968 717.26074219 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8298 -08274969 717.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08274970 717.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82a8 -08274971 717.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08274972 717.26080322 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82b8 -08274973 717.26086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08274974 717.26086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82c8 -08274975 717.26086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08274976 717.26086426 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82d8 -08274977 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08274978 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82e8 -08274979 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08274980 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x82f8 -08274981 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08274982 717.26092529 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8308 -08274983 717.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08274984 717.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8318 -08274985 717.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08274986 717.26098633 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8328 -08274987 717.26104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08274988 717.26104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8338 -08274989 717.26104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08274990 717.26104736 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8348 -08274991 717.26110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08274992 717.26110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8358 -08274993 717.26110840 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x8368 -08286996 717.43041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa78 -08286997 717.43041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa88 -08286998 717.43041992 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa88 -08286999 717.43048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa98 -08287000 717.43048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa98 -08287001 717.43048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa8 -08287002 717.43048096 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faa8 -08287003 717.43054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -08287004 717.43054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fab8 -08287005 717.43054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -08287006 717.43054199 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fac8 -08287007 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -08287008 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fad8 -08287009 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -08287010 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fae8 -08287011 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -08287012 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1faf8 -08287013 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -08287014 717.43060303 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb08 -08287015 717.43066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -08287016 717.43066406 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb18 -08287017 717.43072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb28 -08287018 717.43072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb28 -08287019 717.43072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb38 -08287020 717.43072510 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb38 -08287021 717.43078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb48 -08287022 717.43078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb48 -08287023 717.43078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb58 -08287024 717.43078613 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb58 -08287025 717.43084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -08287026 717.43084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb68 -08287027 717.43084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -08287028 717.43084717 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb78 -08287029 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -08287030 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb88 -08287031 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -08287032 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb98 -08287033 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -08287034 717.43090820 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fba8 -08287035 717.43096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -08287036 717.43096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbb8 -08287037 717.43096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -08287038 717.43096924 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbc8 -08287039 717.43103027 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fbd8 -08289051 717.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -08289052 717.45947266 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ab8 -08289053 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -08289054 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ac8 -08289055 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -08289056 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ad8 -08289057 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -08289058 717.45953369 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ae8 -08289059 717.45959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -08289060 717.45959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23af8 -08289061 717.45959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -08289062 717.45959473 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b08 -08289063 717.45965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -08289064 717.45965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b18 -08289065 717.45965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b28 -08289066 717.45965576 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b28 -08289067 717.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b38 -08289068 717.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b38 -08289069 717.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b48 -08289070 717.45971680 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b48 -08289071 717.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b58 -08289072 717.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b58 -08289073 717.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b68 -08289074 717.45977783 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b68 -08289075 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -08289076 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b78 -08289077 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -08289078 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b88 -08289079 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -08289080 717.45983887 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b98 -08289081 717.45989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -08289082 717.45989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23ba8 -08289083 717.45989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -08289084 717.45989990 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bb8 -08289085 717.45996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc8 -08289086 717.45996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bc8 -08289087 717.45996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd8 -08289088 717.45996094 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bd8 -08289089 717.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be8 -08289090 717.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23be8 -08289091 717.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf8 -08289092 717.46002197 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23bf8 -08289093 717.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c08 -08289094 717.46008301 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c08 -08291513 717.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -08291514 717.49420166 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287a8 -08291515 717.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -08291516 717.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287b8 -08291517 717.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -08291518 717.49426270 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287c8 -08291519 717.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -08291520 717.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287d8 -08291521 717.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -08291522 717.49432373 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287e8 -08291523 717.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -08291524 717.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x287f8 -08291525 717.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -08291526 717.49438477 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28808 -08291527 717.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -08291528 717.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28818 -08291529 717.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -08291530 717.49444580 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28828 -08291531 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -08291532 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28838 -08291533 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -08291534 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28848 -08291535 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -08291536 717.49450684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28858 -08291537 717.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -08291538 717.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28868 -08291539 717.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -08291540 717.49456787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28878 -08291541 717.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -08291542 717.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28888 -08291543 717.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -08291544 717.49462891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x28898 -08291545 717.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -08291546 717.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288a8 -08291547 717.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b8 -08291548 717.49468994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288b8 -08291549 717.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c8 -08291550 717.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288c8 -08291551 717.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d8 -08291552 717.49475098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288d8 -08291553 717.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e8 -08291554 717.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288e8 -08291555 717.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f8 -08291556 717.49481201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x288f8 -08293837 717.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d048 -08293838 717.52709961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d048 -08293839 717.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d058 -08293840 717.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d058 -08293841 717.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d068 -08293842 717.52716064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d068 -08293843 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d078 -08293844 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d078 -08293845 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d088 -08293846 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d088 -08293847 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d098 -08293848 717.52722168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d098 -08293849 717.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a8 -08293850 717.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0a8 -08293851 717.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b8 -08293852 717.52728271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0b8 -08293853 717.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c8 -08293854 717.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0c8 -08293855 717.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d8 -08293856 717.52734375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0d8 -08293857 717.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e8 -08293858 717.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0e8 -08293859 717.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f8 -08293860 717.52740479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d0f8 -08293861 717.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d108 -08293862 717.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d108 -08293863 717.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d118 -08293864 717.52746582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d118 -08293865 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d128 -08293866 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d128 -08293867 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d138 -08293868 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d138 -08293869 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -08293870 717.52752686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d148 -08293871 717.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -08293872 717.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d158 -08293873 717.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -08293874 717.52758789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d168 -08293875 717.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -08293876 717.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d178 -08293877 717.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -08293878 717.52764893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d188 -08293879 717.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -08293880 717.52770996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d198 -08296087 717.55877686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31698 -08296088 717.55877686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31698 -08296089 717.55883789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a8 -08296090 717.55883789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316a8 -08296091 717.55883789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b8 -08296092 717.55883789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316b8 -08296093 717.55889893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c8 -08296094 717.55889893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316c8 -08296095 717.55889893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d8 -08296096 717.55889893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316d8 -08296097 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e8 -08296098 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316e8 -08296099 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -08296100 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x316f8 -08296101 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -08296102 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31708 -08296103 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -08296104 717.55895996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31718 -08296105 717.55902100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -08296106 717.55902100 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31728 -08296107 717.55908203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -08296108 717.55908203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31738 -08296109 717.55908203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -08296110 717.55908203 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31748 -08296111 717.55914307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -08296112 717.55914307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31758 -08296113 717.55914307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -08296114 717.55914307 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31768 -08296115 717.55920410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -08296116 717.55920410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31778 -08296117 717.55920410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -08296118 717.55920410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31788 -08296119 717.55926514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -08296120 717.55926514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x31798 -08296121 717.55926514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -08296122 717.55926514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317a8 -08296123 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -08296124 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317b8 -08296125 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -08296126 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317c8 -08296127 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -08296128 717.55932617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317d8 -08296129 717.55938721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -08296130 717.55938721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x317e8 -08298239 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d8 -08298240 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359d8 -08298241 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e8 -08298242 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359e8 -08298243 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f8 -08298244 717.58917236 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x359f8 -08298245 717.58923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a08 -08298246 717.58923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a08 -08298247 717.58923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a18 -08298248 717.58923340 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a18 -08298249 717.58929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a28 -08298250 717.58929443 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a28 -08298251 717.58935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a38 -08298252 717.58935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a38 -08298253 717.58935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a48 -08298254 717.58935547 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a48 -08298255 717.58941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a58 -08298256 717.58941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a58 -08298257 717.58941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a68 -08298258 717.58941650 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a68 -08298259 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a78 -08298260 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a78 -08298261 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a88 -08298262 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a88 -08298263 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a98 -08298264 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a98 -08298265 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa8 -08298266 717.58947754 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35aa8 -08298267 717.58953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab8 -08298268 717.58953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ab8 -08298269 717.58953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac8 -08298270 717.58953857 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ac8 -08298271 717.58959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad8 -08298272 717.58959961 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ad8 -08298273 717.58966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae8 -08298274 717.58966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35ae8 -08298275 717.58966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af8 -08298276 717.58966064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35af8 -08298277 717.58972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b08 -08298278 717.58972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b08 -08298279 717.58972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b18 -08298280 717.58972168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b18 -08298281 717.58978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b28 -08298282 717.58978271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b28 -08300591 717.62225342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a358 -08300592 717.62225342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a358 -08300593 717.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a368 -08300594 717.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a368 -08300595 717.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a378 -08300596 717.62231445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a378 -08300597 717.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a388 -08300598 717.62237549 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a388 -08300599 717.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -08300600 717.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a398 -08300601 717.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -08300602 717.62243652 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3a8 -08300603 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -08300604 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3b8 -08300605 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c8 -08300606 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3c8 -08300607 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d8 -08300608 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3d8 -08300609 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e8 -08300610 717.62249756 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3e8 -08300611 717.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f8 -08300612 717.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a3f8 -08300613 717.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a408 -08300614 717.62255859 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a408 -08300615 717.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a418 -08300616 717.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a418 -08300617 717.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a428 -08300618 717.62261963 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a428 -08300619 717.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a438 -08300620 717.62268066 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a438 -08300621 717.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a448 -08300622 717.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a448 -08300623 717.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a458 -08300624 717.62274170 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a458 -08300625 717.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a468 -08300626 717.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a468 -08300627 717.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a478 -08300628 717.62280273 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a478 -08300629 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a488 -08300630 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a488 -08300631 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a498 -08300632 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a498 -08300633 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a8 -08300634 717.62286377 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a4a8 -08302765 717.65295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e748 -08302766 717.65295410 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e748 -08302767 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e758 -08302768 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e758 -08302769 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e768 -08302770 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e768 -08302771 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e778 -08302772 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e778 -08302773 717.65301514 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e788 -08302774 717.65307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e788 -08302775 717.65307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e798 -08302776 717.65307617 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e798 -08302777 717.65313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a8 -08302778 717.65313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7a8 -08302779 717.65313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b8 -08302780 717.65313721 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7b8 -08302781 717.65319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c8 -08302782 717.65319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7c8 -08302783 717.65319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d8 -08302784 717.65319824 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7d8 -08302785 717.65325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e8 -08302786 717.65325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7e8 -08302787 717.65325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f8 -08302788 717.65325928 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e7f8 -08302789 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e808 -08302790 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e808 -08302791 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e818 -08302792 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e818 -08302793 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -08302794 717.65332031 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e828 -08302795 717.65338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -08302796 717.65338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e838 -08302797 717.65338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -08302798 717.65338135 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e848 -08302799 717.65344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -08302800 717.65344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e858 -08302801 717.65344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -08302802 717.65344238 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e868 -08302803 717.65350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -08302804 717.65350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e878 -08302805 717.65350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -08302806 717.65350342 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e888 -08302807 717.65356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -08302808 717.65356445 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e898 -08304929 717.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae8 -08304930 717.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ae8 -08304931 717.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af8 -08304932 717.68341064 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42af8 -08304933 717.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b08 -08304934 717.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b08 -08304935 717.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b18 -08304936 717.68347168 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b18 -08304937 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b28 -08304938 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b28 -08304939 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b38 -08304940 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b38 -08304941 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b48 -08304942 717.68353271 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b48 -08304943 717.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b58 -08304944 717.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b58 -08304945 717.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b68 -08304946 717.68359375 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b68 -08304947 717.68365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b78 -08304948 717.68365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b78 -08304949 717.68365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b88 -08304950 717.68365479 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b88 -08304951 717.68371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b98 -08304952 717.68371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b98 -08304953 717.68371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba8 -08304954 717.68371582 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42ba8 -08304955 717.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb8 -08304956 717.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bb8 -08304957 717.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc8 -08304958 717.68377686 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bc8 -08304959 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd8 -08304960 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bd8 -08304961 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be8 -08304962 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42be8 -08304963 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf8 -08304964 717.68383789 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42bf8 -08304965 717.68389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c08 -08304966 717.68389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c08 -08304967 717.68389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c18 -08304968 717.68389893 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c18 -08304969 717.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c28 -08304970 717.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c28 -08304971 717.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c38 -08304972 717.68395996 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c38 -08307043 717.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -08307044 717.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46cf8 -08307045 717.71325684 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -08307046 717.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d08 -08307047 717.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -08307048 717.71331787 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d18 -08307049 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -08307050 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d28 -08307051 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -08307052 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d38 -08307053 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -08307054 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d48 -08307055 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d58 -08307056 717.71337891 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d58 -08307057 717.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d68 -08307058 717.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d68 -08307059 717.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d78 -08307060 717.71343994 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d78 -08307061 717.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d88 -08307062 717.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d88 -08307063 717.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d98 -08307064 717.71350098 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d98 -08307065 717.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da8 -08307066 717.71356201 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46da8 -08307067 717.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db8 -08307068 717.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46db8 -08307069 717.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc8 -08307070 717.71362305 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dc8 -08307071 717.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd8 -08307072 717.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46dd8 -08307073 717.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de8 -08307074 717.71368408 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46de8 -08307075 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df8 -08307076 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46df8 -08307077 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e08 -08307078 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e08 -08307079 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e18 -08307080 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e18 -08307081 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e28 -08307082 717.71374512 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e28 -08307083 717.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e38 -08307084 717.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e38 -08307085 717.71380615 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e48 -08307086 717.71386719 [vmhook-eac [core number = 16]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e48 -08313201 717.93585205 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313202 717.94561768 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313203 717.95629883 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313204 717.96618652 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313205 717.97381592 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313206 717.97393799 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313207 717.97393799 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313208 717.97393799 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08313209 717.97412109 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313210 717.97412109 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08313211 717.97424316 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313212 717.97424316 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08313213 717.97680664 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313214 717.98718262 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313215 717.99700928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313216 718.00732422 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313217 718.01788330 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313218 718.02825928 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313219 718.03826904 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313220 718.04943848 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313221 718.05932617 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313222 718.06958008 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313223 718.07940674 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313224 718.08984375 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313225 718.09979248 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313226 718.10961914 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313227 718.11968994 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313228 718.26062012 [vmhook-eac [core number = 7]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08313229 718.28442383 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313230 718.28448486 [vmhook-eac [core number = 11]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313231 718.33233643 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313232 718.50970459 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313233 718.89215088 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313234 719.12481689 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313235 719.13476563 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313236 719.14508057 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313237 719.15509033 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313238 719.16638184 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313239 720.04150391 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313240 720.15808105 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313241 720.22180176 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313242 720.24987793 [vmhook-eac [core number = 1]] READ(Q/DW/B) EasyAntiCheat.sys+0x530a0 -08313243 720.28723145 [vmhook-eac [core number = 4]] READ(Q/DW/B) EasyAntiCheat.sys+0x53110 -08313244 720.31225586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313245 720.31225586 [vmhook-eac [core number = 20]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313246 720.48205566 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313247 720.48211670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313248 720.48211670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53078 -08313249 720.48211670 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x531d0 -08313250 720.48223877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313251 720.48223877 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08313252 720.48229980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53088 -08313253 720.48229980 [vmhook-eac [core number = 2]] READ(Q/DW/B) EasyAntiCheat.sys+0x53220 -08313254 721.48254395 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08313255 721.48260498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1000 -08313256 721.48260498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08313257 721.48260498 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1010 -08313258 721.48266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08313259 721.48266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1020 -08313260 721.48266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08313261 721.48266602 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1030 -08313262 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08313263 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1040 -08313264 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08313265 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1050 -08313266 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08313267 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1060 -08313268 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08313269 721.48272705 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1070 -08313270 721.48278809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08313271 721.48278809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1080 -08313272 721.48278809 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08313273 721.48284912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1090 -08313274 721.48284912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08313275 721.48284912 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10a0 -08313276 721.48291016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08313277 721.48291016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10b0 -08313278 721.48291016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08313279 721.48291016 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10c0 -08313280 721.48297119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08313281 721.48297119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10d0 -08313282 721.48297119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08313283 721.48297119 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10e0 -08313284 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08313285 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x10f0 -08313286 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08313287 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1100 -08313288 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08313289 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1110 -08313290 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08313291 721.48303223 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1120 -08313292 721.48309326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08313293 721.48309326 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1130 -08313294 721.48315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08313295 721.48315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1140 -08313296 721.48315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08313297 721.48315430 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1150 -08313298 721.48321533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08313299 721.48321533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1160 -08313300 721.48321533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08313301 721.48321533 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1170 -08313302 721.48327637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08313303 721.48327637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1180 -08313304 721.48327637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08313305 721.48327637 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1190 -08313306 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08313307 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11a0 -08313308 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08313309 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11b0 -08313310 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08313311 721.48333740 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11c0 -08313312 721.48339844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08313313 721.48339844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11d0 -08313314 721.48339844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08313315 721.48339844 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11e0 -08313316 721.48345947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08313317 721.48345947 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x11f0 -08313318 721.48352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08313319 721.48352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1200 -08313320 721.48352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08313321 721.48352051 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1210 -08313322 721.48358154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08313323 721.48358154 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1220 -08313324 721.48364258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08313325 721.48364258 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1230 -08313326 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08313327 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1240 -08313328 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08313329 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1250 -08313330 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08313331 721.48370361 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1260 -08313332 721.48376465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08313333 721.48376465 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1270 -08313334 721.48382568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08313335 721.48382568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1280 -08313336 721.48382568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08313337 721.48382568 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1290 -08313338 721.48388672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08313339 721.48388672 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12a0 -08313340 721.48394775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08313341 721.48394775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12b0 -08313342 721.48394775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08313343 721.48394775 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12c0 -08313344 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08313345 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12d0 -08313346 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08313347 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12e0 -08313348 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08313349 721.48400879 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x12f0 -08313350 721.48406982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08313351 721.48406982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1300 -08313352 721.48406982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08313353 721.48406982 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1310 -08313354 721.48413086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08313355 721.48413086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1320 -08313356 721.48413086 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08313357 721.48419189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1330 -08313358 721.48419189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08313359 721.48419189 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1340 -08313360 721.48425293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08313361 721.48425293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1350 -08313362 721.48425293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08313363 721.48425293 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1360 -08313364 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08313365 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1370 -08313366 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08313367 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1380 -08313368 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08313369 721.48431396 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1390 -08313370 721.48437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08313371 721.48437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13a0 -08313372 721.48437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08313373 721.48437500 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13b0 -08313374 721.48443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08313375 721.48443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13c0 -08313376 721.48443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08313377 721.48443604 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13d0 -08313378 721.48449707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08313379 721.48449707 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f0 -08313380 721.48455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08313381 721.48455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1400 -08313382 721.48455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08313383 721.48455811 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1410 -08313384 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08313385 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1420 -08313386 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08313387 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1430 -08313388 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08313389 721.48461914 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1440 -08313390 721.48468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08313391 721.48468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1450 -08313392 721.48468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08313393 721.48468018 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1460 -08313394 721.48474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08313395 721.48474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1470 -08313396 721.48474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08313397 721.48474121 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1480 -08313398 721.48480225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08313399 721.48480225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1490 -08313400 721.48480225 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08313401 721.48486328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14a0 -08313402 721.48486328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08313403 721.48486328 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14b0 -08313404 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08313405 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14c0 -08313406 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08313407 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14d0 -08313408 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08313409 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14e0 -08313410 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08313411 721.48492432 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x14f0 -08313412 721.48498535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08313413 721.48498535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1500 -08313414 721.48498535 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08313415 721.48504639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1510 -08313416 721.48504639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08313417 721.48504639 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1520 -08313418 721.48510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08313419 721.48510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1530 -08313420 721.48510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08313421 721.48510742 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1540 -08313422 721.48516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08313423 721.48516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1550 -08313424 721.48516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08313425 721.48516846 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1560 -08313426 721.48522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08313427 721.48522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1570 -08313428 721.48522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08313429 721.48522949 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1580 -08313430 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08313431 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1590 -08313432 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08313433 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15a0 -08313434 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08313435 721.48529053 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15b0 -08313436 721.48535156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08313437 721.48535156 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15c0 -08313438 721.48541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08313439 721.48541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15d0 -08313440 721.48541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08313441 721.48541260 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15e0 -08313442 721.48547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08313443 721.48547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x15f0 -08313444 721.48547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08313445 721.48547363 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1600 -08313446 721.48553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08313447 721.48553467 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1610 -08313448 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08313449 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1620 -08313450 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08313451 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1630 -08313452 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08313453 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1640 -08313454 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08313455 721.48559570 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1650 -08313456 721.48565674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08313457 721.48565674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1660 -08313458 721.48565674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08313459 721.48565674 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1670 -08313460 721.48571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08313461 721.48571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1680 -08313462 721.48571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08313463 721.48571777 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1690 -08313464 721.48577881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08313465 721.48577881 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16a0 -08313466 721.48583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08313467 721.48583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16b0 -08313468 721.48583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08313469 721.48583984 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16c0 -08313470 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08313471 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16d0 -08313472 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08313473 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16e0 -08313474 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08313475 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x16f0 -08313476 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08313477 721.48590088 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1700 -08313478 721.48596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08313479 721.48596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1710 -08313480 721.48596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08313481 721.48596191 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1720 -08313482 721.48602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08313483 721.48602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1730 -08313484 721.48602295 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08313485 721.48608398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1740 -08313486 721.48608398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08313487 721.48608398 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1750 -08313488 721.48614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08313489 721.48614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1760 -08313490 721.48614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08313491 721.48614502 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1770 -08313492 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08313493 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1780 -08313494 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08313495 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1790 -08313496 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08313497 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17a0 -08313498 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08313499 721.48620605 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17b0 -08313500 721.48626709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08313501 721.48626709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17c0 -08313502 721.48626709 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08313503 721.48632813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17d0 -08313504 721.48632813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08313505 721.48632813 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17e0 -08313506 721.48638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08313507 721.48638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x17f0 -08313508 721.48638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08313509 721.48638916 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1800 -08313510 721.48645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08313511 721.48645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1810 -08313512 721.48645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08313513 721.48645020 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1820 -08313514 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08313515 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1830 -08313516 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08313517 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1840 -08313518 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08313519 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1850 -08313520 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08313521 721.48651123 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1860 -08313522 721.48657227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08313523 721.48657227 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1870 -08313524 721.48663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08313525 721.48663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1880 -08313526 721.48663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08313527 721.48663330 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1890 -08313528 721.48669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08313529 721.48669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18a0 -08313530 721.48669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08313531 721.48669434 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18b0 -08313532 721.48675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08313533 721.48675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18c0 -08313534 721.48675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08313535 721.48675537 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18d0 -08313536 721.48681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08313537 721.48681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18e0 -08313538 721.48681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08313539 721.48681641 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x18f0 -08313540 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08313541 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1900 -08313542 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08313543 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1910 -08313544 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08313545 721.48687744 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1920 -08313546 721.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08313547 721.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1930 -08313548 721.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08313549 721.48693848 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1940 -08313550 721.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08313551 721.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1950 -08313552 721.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08313553 721.48699951 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1960 -08313554 721.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08313555 721.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1970 -08313556 721.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08313557 721.48706055 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1980 -08313558 721.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08313559 721.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1990 -08313560 721.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08313561 721.48712158 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19a0 -08313562 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08313563 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19b0 -08313564 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08313565 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19c0 -08313566 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08313567 721.48718262 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19d0 -08313568 721.48724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08313569 721.48724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19e0 -08313570 721.48724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08313571 721.48724365 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x19f0 -08313572 721.48730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08313573 721.48730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a00 -08313574 721.48730469 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08313575 721.48736572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a10 -08313576 721.48736572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08313577 721.48736572 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a20 -08313578 721.48742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08313579 721.48742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a30 -08313580 721.48742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08313581 721.48742676 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a40 -08313582 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08313583 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a50 -08313584 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08313585 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a60 -08313586 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08313587 721.48748779 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a70 -08313588 721.48754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08313589 721.48754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a80 -08313590 721.48754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08313591 721.48754883 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1a90 -08313592 721.48760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08313593 721.48760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1aa0 -08313594 721.48760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08313595 721.48760986 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ab0 -08313596 721.48767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08313597 721.48767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ac0 -08313598 721.48767090 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08313599 721.48773193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ad0 -08313600 721.48773193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08313601 721.48773193 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ae0 -08313602 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08313603 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1af0 -08313604 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08313605 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b00 -08313606 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08313607 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b10 -08313608 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08313609 721.48779297 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b20 -08313610 721.48785400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08313611 721.48785400 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b30 -08313612 721.48791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08313613 721.48791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b40 -08313614 721.48791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08313615 721.48791504 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b50 -08313616 721.48797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08313617 721.48797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b60 -08313618 721.48797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08313619 721.48797607 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b70 -08313620 721.48803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08313621 721.48803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b80 -08313622 721.48803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08313623 721.48803711 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1b90 -08313624 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08313625 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ba0 -08313626 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08313627 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bb0 -08313628 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08313629 721.48809814 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bc0 -08313630 721.48815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08313631 721.48815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bd0 -08313632 721.48815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08313633 721.48815918 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1be0 -08313634 721.48822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08313635 721.48822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1bf0 -08313636 721.48822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08313637 721.48822021 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c00 -08313638 721.48828125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08313639 721.48828125 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c10 -08313640 721.48834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08313641 721.48834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c20 -08313642 721.48834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08313643 721.48834229 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c30 -08313644 721.48840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08313645 721.48840332 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c40 -08313646 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08313647 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c50 -08313648 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08313649 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c60 -08313650 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08313651 721.48846436 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c70 -08313652 721.48852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08313653 721.48852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c80 -08313654 721.48852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08313655 721.48852539 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1c90 -08313656 721.48858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08313657 721.48858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ca0 -08313658 721.48858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08313659 721.48858643 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cb0 -08313660 721.48864746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08313661 721.48864746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cc0 -08313662 721.48864746 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08313663 721.48870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cd0 -08313664 721.48870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08313665 721.48870850 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ce0 -08313666 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08313667 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1cf0 -08313668 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08313669 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d00 -08313670 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08313671 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d10 -08313672 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08313673 721.48876953 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d20 -08313674 721.48883057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08313675 721.48883057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d30 -08313676 721.48883057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08313677 721.48883057 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d40 -08313678 721.48889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08313679 721.48889160 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d50 -08313680 721.48895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08313681 721.48895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d60 -08313682 721.48895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08313683 721.48895264 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d70 -08313684 721.48901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08313685 721.48901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d80 -08313686 721.48901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08313687 721.48901367 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1d90 -08313688 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08313689 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1da0 -08313690 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08313691 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1db0 -08313692 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08313693 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dc0 -08313694 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08313695 721.48907471 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1dd0 -08313696 721.48913574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08313697 721.48913574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1de0 -08313698 721.48913574 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08313699 721.48919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1df0 -08313700 721.48919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08313701 721.48919678 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e00 -08313702 721.48925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08313703 721.48925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e10 -08313704 721.48925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08313705 721.48925781 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e20 -08313706 721.48931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08313707 721.48931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e30 -08313708 721.48931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08313709 721.48931885 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e40 -08313710 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08313711 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e50 -08313712 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08313713 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e60 -08313714 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08313715 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e70 -08313716 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08313717 721.48937988 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e80 -08313718 721.48944092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08313719 721.48944092 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1e90 -08313720 721.48950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08313721 721.48950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ea0 -08313722 721.48950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08313723 721.48950195 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1eb0 -08313724 721.48956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08313725 721.48956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ec0 -08313726 721.48956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08313727 721.48956299 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ed0 -08313728 721.48962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08313729 721.48962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ee0 -08313730 721.48962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08313731 721.48962402 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ef0 -08313732 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08313733 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f00 -08313734 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08313735 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f10 -08313736 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08313737 721.48968506 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f20 -08313738 721.48974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08313739 721.48974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f30 -08313740 721.48974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08313741 721.48974609 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f40 -08313742 721.48980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08313743 721.48980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f50 -08313744 721.48980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08313745 721.48980713 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f60 -08313746 721.48986816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08313747 721.48986816 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f70 -08313748 721.48992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08313749 721.48992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f80 -08313750 721.48992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08313751 721.48992920 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f90 -08313752 721.48999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08313753 721.48999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fa0 -08313754 721.48999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08313755 721.48999023 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fb0 -08313756 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08313757 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fc0 -08313758 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08313759 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fd0 -08313760 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08313761 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1fe0 -08313762 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08313763 721.49005127 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x1ff0 -08313764 721.49011230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08313765 721.49011230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2000 -08313766 721.49011230 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08313767 721.49017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2010 -08313768 721.49017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08313769 721.49017334 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2020 -08313770 721.49023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08313771 721.49023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2030 -08313772 721.49023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08313773 721.49023438 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2040 -08313774 721.49029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08313775 721.49029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2050 -08313776 721.49029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08313777 721.49029541 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2060 -08313778 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08313779 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2070 -08313780 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08313781 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2080 -08313782 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08313783 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2090 -08313784 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08313785 721.49035645 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20a0 -08313786 721.49041748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08313787 721.49041748 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20b0 -08313788 721.49047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08313789 721.49047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20c0 -08313790 721.49047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08313791 721.49047852 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20d0 -08313792 721.49053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08313793 721.49053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20e0 -08313794 721.49053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08313795 721.49053955 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x20f0 -08313796 721.49060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08313797 721.49060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2100 -08313798 721.49060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08313799 721.49060059 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2110 -08313800 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08313801 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2120 -08313802 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08313803 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2130 -08313804 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08313805 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2140 -08313806 721.49066162 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08313807 721.49072266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2150 -08313808 721.49072266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08313809 721.49072266 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2160 -08313810 721.49078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08313811 721.49078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2170 -08313812 721.49078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08313813 721.49078369 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2180 -08313814 721.49084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08313815 721.49084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2190 -08313816 721.49084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08313817 721.49084473 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21a0 -08313818 721.49090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08313819 721.49090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21b0 -08313820 721.49090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08313821 721.49090576 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21c0 -08313822 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08313823 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21d0 -08313824 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08313825 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21e0 -08313826 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08313827 721.49096680 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x21f0 -08313828 721.49102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08313829 721.49102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2200 -08313830 721.49102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08313831 721.49102783 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2210 -08313832 721.49108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08313833 721.49108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2220 -08313834 721.49108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08313835 721.49108887 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2230 -08313836 721.49114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08313837 721.49114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2240 -08313838 721.49114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08313839 721.49114990 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2250 -08313840 721.49121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08313841 721.49121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2260 -08313842 721.49121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08313843 721.49121094 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2270 -08313844 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08313845 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2280 -08313846 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08313847 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2290 -08313848 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08313849 721.49127197 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22a0 -08313850 721.49133301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08313851 721.49133301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22b0 -08313852 721.49133301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08313853 721.49133301 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22c0 -08313854 721.49139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08313855 721.49139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22d0 -08313856 721.49139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08313857 721.49139404 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22e0 -08313858 721.49145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08313859 721.49145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x22f0 -08313860 721.49145508 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08313861 721.49151611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2300 -08313862 721.49151611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08313863 721.49151611 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2310 -08313864 721.49157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08313865 721.49157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2320 -08313866 721.49157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08313867 721.49157715 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2330 -08313868 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08313869 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2340 -08313870 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08313871 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2350 -08313872 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08313873 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2360 -08313874 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08313875 721.49163818 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2370 -08313876 721.49169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08313877 721.49169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2380 -08313878 721.49169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08313879 721.49169922 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2390 -08313880 721.49176025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08313881 721.49176025 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23a0 -08313882 721.49182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08313883 721.49182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23b0 -08313884 721.49182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08313885 721.49182129 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23c0 -08313886 721.49188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08313887 721.49188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23d0 -08313888 721.49188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08313889 721.49188232 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23e0 -08313890 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08313891 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x23f0 -08313892 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08313893 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2400 -08313894 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08313895 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2410 -08313896 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08313897 721.49194336 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2420 -08313898 721.49200439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08313899 721.49200439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2430 -08313900 721.49200439 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08313901 721.49206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2440 -08313902 721.49206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08313903 721.49206543 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2450 -08313904 721.49212646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08313905 721.49212646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2460 -08313906 721.49212646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08313907 721.49212646 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2470 -08313908 721.49218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08313909 721.49218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2480 -08313910 721.49218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08313911 721.49218750 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2490 -08313912 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08313913 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24a0 -08313914 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08313915 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24b0 -08313916 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08313917 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24c0 -08313918 721.49224854 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08313919 721.49230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24d0 -08313920 721.49230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08313921 721.49230957 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24e0 -08313922 721.49237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08313923 721.49237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x24f0 -08313924 721.49237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08313925 721.49237061 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2500 -08313926 721.49243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08313927 721.49243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2510 -08313928 721.49243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08313929 721.49243164 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2520 -08313930 721.49249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08313931 721.49249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2530 -08313932 721.49249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08313933 721.49249268 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2540 -08313934 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08313935 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2550 -08313936 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08313937 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2560 -08313938 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08313939 721.49255371 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2570 -08313940 721.49261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08313941 721.49261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2580 -08313942 721.49261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08313943 721.49261475 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2590 -08313944 721.49267578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08313945 721.49267578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25a0 -08313946 721.49267578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08313947 721.49267578 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25b0 -08313948 721.49273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08313949 721.49273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25c0 -08313950 721.49273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08313951 721.49273682 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25d0 -08313952 721.49279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08313953 721.49279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25e0 -08313954 721.49279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08313955 721.49279785 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x25f0 -08313956 721.49285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08313957 721.49285889 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2600 -08313958 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08313959 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2610 -08313960 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08313961 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2620 -08313962 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08313963 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2630 -08313964 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08313965 721.49291992 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2640 -08313966 721.49298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08313967 721.49298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2650 -08313968 721.49298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08313969 721.49298096 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2660 -08313970 721.49304199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08313971 721.49304199 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2670 -08313972 721.49310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08313973 721.49310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2680 -08313974 721.49310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08313975 721.49310303 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2690 -08313976 721.49316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08313977 721.49316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26a0 -08313978 721.49316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08313979 721.49316406 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26b0 -08313980 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08313981 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26c0 -08313982 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08313983 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26d0 -08313984 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08313985 721.49322510 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26e0 -08313986 721.49328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08313987 721.49328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x26f0 -08313988 721.49328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08313989 721.49328613 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2700 -08313990 721.49334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08313991 721.49334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2710 -08313992 721.49334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08313993 721.49334717 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2720 -08313994 721.49340820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08313995 721.49340820 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2730 -08313996 721.49346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08313997 721.49346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2740 -08313998 721.49346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08313999 721.49346924 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2750 -08314000 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08314001 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2760 -08314002 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08314003 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2770 -08314004 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08314005 721.49353027 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2780 -08314006 721.49371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08314007 721.49371338 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2790 -08314008 721.49377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08314009 721.49377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27a0 -08314010 721.49377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08314011 721.49377441 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27b0 -08314012 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08314013 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27c0 -08314014 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08314015 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27d0 -08314016 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08314017 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27e0 -08314018 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08314019 721.49383545 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x27f0 -08314020 721.49389648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08314021 721.49389648 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2800 -08314022 721.49395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08314023 721.49395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2810 -08314024 721.49395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08314025 721.49395752 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2820 -08314026 721.49401855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08314027 721.49401855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2830 -08314028 721.49401855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08314029 721.49401855 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2840 -08314030 721.49407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08314031 721.49407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2850 -08314032 721.49407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08314033 721.49407959 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2860 -08314034 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08314035 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2870 -08314036 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08314037 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2880 -08314038 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08314039 721.49414063 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2890 -08314040 721.49420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08314041 721.49420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28a0 -08314042 721.49420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08314043 721.49420166 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28b0 -08314044 721.49426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08314045 721.49426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28c0 -08314046 721.49426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08314047 721.49426270 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28d0 -08314048 721.49432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08314049 721.49432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28e0 -08314050 721.49432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08314051 721.49432373 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x28f0 -08314052 721.49438477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08314053 721.49438477 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2900 -08314054 721.49444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08314055 721.49444580 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2910 -08314056 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08314057 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2920 -08314058 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08314059 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2930 -08314060 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08314061 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2940 -08314062 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08314063 721.49450684 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2950 -08314064 721.49456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08314065 721.49456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2960 -08314066 721.49456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08314067 721.49456787 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2970 -08314068 721.49462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08314069 721.49462891 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2980 -08314070 721.49468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08314071 721.49468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2990 -08314072 721.49468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08314073 721.49468994 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29a0 -08314074 721.49475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08314075 721.49475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29b0 -08314076 721.49475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08314077 721.49475098 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29c0 -08314078 721.49481201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08314079 721.49481201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29d0 -08314080 721.49481201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08314081 721.49481201 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29e0 -08314082 721.49487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08314083 721.49487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x29f0 -08314084 721.49487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08314085 721.49487305 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a00 -08314086 721.49493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08314087 721.49493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a10 -08314088 721.49493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08314089 721.49493408 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a20 -08314090 721.49499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08314091 721.49499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a30 -08314092 721.49499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08314093 721.49499512 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a40 -08314094 721.49505615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08314095 721.49505615 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a50 -08314096 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08314097 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a60 -08314098 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08314099 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a70 -08314100 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08314101 721.49511719 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a80 -08314102 721.49517822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08314103 721.49517822 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2a90 -08314104 721.49523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08314105 721.49523926 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2aa0 -08314106 721.49530029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08314107 721.49530029 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ab0 -08314108 721.49536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08314109 721.49536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ac0 -08314110 721.49536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08314111 721.49536133 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ad0 -08314112 721.49542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08314113 721.49542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ae0 -08314114 721.49542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08314115 721.49542236 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2af0 -08314116 721.49548340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08314117 721.49548340 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b00 -08314118 721.49554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08314119 721.49554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b10 -08314120 721.49554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08314121 721.49554443 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b20 -08314122 721.49560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08314123 721.49560547 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b30 -08314124 721.49566650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08314125 721.49566650 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b40 -08314126 721.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08314127 721.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b50 -08314128 721.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08314129 721.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b60 -08314130 721.49572754 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08314131 721.49578857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b70 -08314132 721.49578857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08314133 721.49578857 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b80 -08314134 721.49584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08314135 721.49584961 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2b90 -08314136 721.49591064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08314137 721.49591064 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ba0 -08314138 721.49597168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08314139 721.49597168 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bb0 -08314140 721.49603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08314141 721.49603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bc0 -08314142 721.49603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08314143 721.49603271 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bd0 -08314144 721.49609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08314145 721.49609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2be0 -08314146 721.49609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08314147 721.49609375 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2bf0 -08314148 721.49615479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08314149 721.49615479 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c00 -08314150 721.49621582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08314151 721.49621582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c10 -08314152 721.49621582 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08314153 721.49627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c20 -08314154 721.49627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08314155 721.49627686 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c30 -08314156 721.49633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08314157 721.49633789 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c40 -08314158 721.49639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08314159 721.49639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c50 -08314160 721.49639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08314161 721.49639893 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c60 -08314162 721.49645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08314163 721.49645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c70 -08314164 721.49645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08314165 721.49645996 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c80 -08314166 721.49652100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08314167 721.49652100 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2c90 -08314168 721.49658203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08314169 721.49658203 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ca0 -08314170 721.49664307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08314171 721.49664307 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cb0 -08314172 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08314173 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cc0 -08314174 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08314175 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cd0 -08314176 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08314177 721.49670410 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ce0 -08314178 721.49676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08314179 721.49676514 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2cf0 -08314180 721.49682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08314181 721.49682617 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d00 -08314182 721.49688721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08314183 721.49688721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d10 -08314184 721.49688721 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08314185 721.49694824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d20 -08314186 721.49694824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08314187 721.49694824 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d30 -08314188 721.49700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08314189 721.49700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d40 -08314190 721.49700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08314191 721.49700928 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d50 -08314192 721.49707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08314193 721.49707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d60 -08314194 721.49707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08314195 721.49707031 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d70 -08314196 721.49713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08314197 721.49713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d80 -08314198 721.49713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08314199 721.49713135 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2d90 -08314200 721.49719238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08314201 721.49719238 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2da0 -08314202 721.49725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08314203 721.49725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2db0 -08314204 721.49725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08314205 721.49725342 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dc0 -08314206 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08314207 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2dd0 -08314208 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08314209 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2de0 -08314210 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08314211 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2df0 -08314212 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08314213 721.49731445 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e00 -08314214 721.49737549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08314215 721.49737549 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e10 -08314216 721.49743652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08314217 721.49743652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e20 -08314218 721.49743652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08314219 721.49743652 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e30 -08314220 721.49749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08314221 721.49749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e40 -08314222 721.49749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08314223 721.49749756 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e50 -08314224 721.49755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08314225 721.49755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e60 -08314226 721.49755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08314227 721.49755859 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e70 -08314228 721.49761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08314229 721.49761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e80 -08314230 721.49761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08314231 721.49761963 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2e90 -08314232 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08314233 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ea0 -08314234 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08314235 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2eb0 -08314236 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08314237 721.49768066 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ec0 -08314238 721.49774170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08314239 721.49774170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ed0 -08314240 721.49774170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08314241 721.49774170 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ee0 -08314242 721.49780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08314243 721.49780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ef0 -08314244 721.49780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08314245 721.49780273 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f00 -08314246 721.49786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08314247 721.49786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f10 -08314248 721.49786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08314249 721.49786377 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f20 -08314250 721.49792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08314251 721.49792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f30 -08314252 721.49792480 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08314253 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f40 -08314254 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08314255 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f50 -08314256 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08314257 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f60 -08314258 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08314259 721.49798584 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f70 -08314260 721.49804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08314261 721.49804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f80 -08314262 721.49804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08314263 721.49804688 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2f90 -08314264 721.49810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08314265 721.49810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fa0 -08314266 721.49810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08314267 721.49810791 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fb0 -08314268 721.49816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08314269 721.49816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fc0 -08314270 721.49816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08314271 721.49816895 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fd0 -08314272 721.49822998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08314273 721.49822998 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2fe0 -08314274 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08314275 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x2ff0 -08314276 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08314277 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3000 -08314278 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08314279 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3010 -08314280 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08314281 721.49829102 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3020 -08314282 721.49835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08314283 721.49835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3030 -08314284 721.49835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08314285 721.49835205 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3040 -08314286 721.49841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08314287 721.49841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3050 -08314288 721.49841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08314289 721.49841309 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3060 -08314290 721.49847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08314291 721.49847412 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3070 -08314292 721.49853516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08314293 721.49853516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3080 -08314294 721.49853516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08314295 721.49853516 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3090 -08314296 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08314297 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30a0 -08314298 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08314299 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30b0 -08314300 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08314301 721.49859619 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30c0 -08314302 721.49865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08314303 721.49865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30d0 -08314304 721.49865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08314305 721.49865723 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30e0 -08314306 721.49871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08314307 721.49871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x30f0 -08314308 721.49871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08314309 721.49871826 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3100 -08314310 721.49877930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08314311 721.49877930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3110 -08314312 721.49877930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08314313 721.49877930 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3120 -08314314 721.49884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08314315 721.49884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3130 -08314316 721.49884033 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08314317 721.49890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3140 -08314318 721.49890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08314319 721.49890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3150 -08314320 721.49890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08314321 721.49890137 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3160 -08314322 721.49896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08314323 721.49896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3170 -08314324 721.49896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08314325 721.49896240 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3180 -08314326 721.49902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08314327 721.49902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3190 -08314328 721.49902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08314329 721.49902344 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31a0 -08314330 721.49908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08314331 721.49908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31b0 -08314332 721.49908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08314333 721.49908447 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31c0 -08314334 721.49914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08314335 721.49914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31d0 -08314336 721.49914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08314337 721.49914551 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31e0 -08314338 721.49920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08314339 721.49920654 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x31f0 -08314340 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08314341 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3200 -08314342 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08314343 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3210 -08314344 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08314345 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3220 -08314346 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08314347 721.49926758 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3230 -08314348 721.49932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08314349 721.49932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3240 -08314350 721.49932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08314351 721.49932861 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3250 -08314352 721.49938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08314353 721.49938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3260 -08314354 721.49938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08314355 721.49938965 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3270 -08314356 721.49945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08314357 721.49945068 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3280 -08314358 721.49951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08314359 721.49951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3290 -08314360 721.49951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08314361 721.49951172 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32a0 -08314362 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08314363 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32b0 -08314364 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08314365 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32c0 -08314366 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08314367 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32d0 -08314368 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08314369 721.49957275 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32e0 -08314370 721.49963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08314371 721.49963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x32f0 -08314372 721.49963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08314373 721.49963379 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3300 -08314374 721.49969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08314375 721.49969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3310 -08314376 721.49969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08314377 721.49969482 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3320 -08314378 721.49975586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08314379 721.49975586 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3330 -08314380 721.49981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08314381 721.49981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3340 -08314382 721.49981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08314383 721.49981689 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3350 -08314384 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08314385 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3360 -08314386 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08314387 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3370 -08314388 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08314389 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3380 -08314390 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08314391 721.49987793 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3390 -08314392 721.49993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08314393 721.49993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33a0 -08314394 721.49993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08314395 721.49993896 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33b0 -08314396 721.50000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08314397 721.50000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33c0 -08314398 721.50000000 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08314399 721.50006104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33d0 -08314400 721.50006104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08314401 721.50006104 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33e0 -08314402 721.50012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08314403 721.50012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x33f0 -08314404 721.50012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08314405 721.50012207 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3400 -08314406 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08314407 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3410 -08314408 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08314409 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3420 -08314410 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08314411 721.50018311 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3430 -08314412 721.50024414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08314413 721.50024414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3440 -08314414 721.50024414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08314415 721.50024414 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3450 -08314416 721.50030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08314417 721.50030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3460 -08314418 721.50030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08314419 721.50030518 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3470 -08314420 721.50036621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08314421 721.50036621 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3480 -08314422 721.50042725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08314423 721.50042725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3490 -08314424 721.50042725 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08314425 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34a0 -08314426 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08314427 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34b0 -08314428 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08314429 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34c0 -08314430 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08314431 721.50048828 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34d0 -08314432 721.50054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08314433 721.50054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34e0 -08314434 721.50054932 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08314435 721.50061035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x34f0 -08314436 721.50061035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08314437 721.50061035 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3500 -08314438 721.50067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08314439 721.50067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3510 -08314440 721.50067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08314441 721.50067139 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3520 -08314442 721.50073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08314443 721.50073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3530 -08314444 721.50073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08314445 721.50073242 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3540 -08314446 721.50079346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08314447 721.50079346 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3550 -08314448 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08314449 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3560 -08314450 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08314451 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3570 -08314452 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08314453 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3580 -08314454 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08314455 721.50085449 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3590 -08314456 721.50091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08314457 721.50091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35a0 -08314458 721.50091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08314459 721.50091553 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35b0 -08314460 721.50097656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08314461 721.50097656 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35c0 -08314462 721.50103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08314463 721.50103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35d0 -08314464 721.50103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08314465 721.50103760 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35e0 -08314466 721.50109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08314467 721.50109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x35f0 -08314468 721.50109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08314469 721.50109863 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3600 -08314470 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08314471 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3610 -08314472 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08314473 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3620 -08314474 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08314475 721.50115967 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3630 -08314476 721.50122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08314477 721.50122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3640 -08314478 721.50122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08314479 721.50122070 [vmhook-eac [core number = 8]] READ(Q/DW/B) EasyAntiCheat.sys+0x3650 -08314480 721.50134277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08314481 721.50134277 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3660 -08314482 721.50140381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08314483 721.50140381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3670 -08314484 721.50140381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08314485 721.50140381 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3680 -08314486 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08314487 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3690 -08314488 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08314489 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36a0 -08314490 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08314491 721.50146484 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36b0 -08314492 721.50152588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08314493 721.50152588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36c0 -08314494 721.50152588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08314495 721.50152588 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36d0 -08314496 721.50158691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08314497 721.50158691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36e0 -08314498 721.50158691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08314499 721.50158691 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x36f0 -08314500 721.50164795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08314501 721.50164795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3700 -08314502 721.50164795 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08314503 721.50170898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3710 -08314504 721.50170898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08314505 721.50170898 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3720 -08314506 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08314507 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3730 -08314508 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08314509 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3740 -08314510 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08314511 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3750 -08314512 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08314513 721.50177002 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3760 -08314514 721.50183105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08314515 721.50183105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3770 -08314516 721.50183105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08314517 721.50183105 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3780 -08314518 721.50189209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08314519 721.50189209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3790 -08314520 721.50189209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08314521 721.50189209 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37a0 -08314522 721.50195313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08314523 721.50195313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37b0 -08314524 721.50195313 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08314525 721.50201416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37c0 -08314526 721.50201416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08314527 721.50201416 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37d0 -08314528 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08314529 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37e0 -08314530 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08314531 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x37f0 -08314532 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08314533 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3800 -08314534 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08314535 721.50207520 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3810 -08314536 721.50213623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08314537 721.50213623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3820 -08314538 721.50213623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08314539 721.50213623 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3830 -08314540 721.50219727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08314541 721.50219727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3840 -08314542 721.50219727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08314543 721.50219727 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3850 -08314544 721.50225830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08314545 721.50225830 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3860 -08314546 721.50231934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08314547 721.50231934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3870 -08314548 721.50231934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08314549 721.50231934 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3880 -08314550 721.50238037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08314551 721.50238037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3890 -08314552 721.50238037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08314553 721.50238037 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38a0 -08314554 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08314555 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38b0 -08314556 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08314557 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38c0 -08314558 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08314559 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38d0 -08314560 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08314561 721.50244141 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38e0 -08314562 721.50250244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08314563 721.50250244 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x38f0 -08314564 721.50256348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08314565 721.50256348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3900 -08314566 721.50256348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08314567 721.50256348 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3910 -08314568 721.50262451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08314569 721.50262451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3920 -08314570 721.50262451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08314571 721.50262451 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3930 -08314572 721.50268555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08314573 721.50268555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3940 -08314574 721.50268555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08314575 721.50268555 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3950 -08314576 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08314577 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3960 -08314578 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08314579 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3970 -08314580 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08314581 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3980 -08314582 721.50274658 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08314583 721.50280762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3990 -08314584 721.50280762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08314585 721.50280762 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39a0 -08314586 721.50286865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08314587 721.50286865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39b0 -08314588 721.50286865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08314589 721.50286865 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39c0 -08314590 721.50292969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08314591 721.50292969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39d0 -08314592 721.50292969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08314593 721.50292969 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39e0 -08314594 721.50299072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08314595 721.50299072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x39f0 -08314596 721.50299072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08314597 721.50299072 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a00 -08314598 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08314599 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a10 -08314600 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08314601 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a20 -08314602 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08314603 721.50305176 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a30 -08314604 721.50311279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08314605 721.50311279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a40 -08314606 721.50311279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08314607 721.50311279 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a50 -08314608 721.50317383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08314609 721.50317383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a60 -08314610 721.50317383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08314611 721.50317383 [vmhook-eac [core number = 6]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a70 -08314612 721.50329590 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08314613 721.50329590 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a80 -08314614 721.50329590 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08314615 721.50329590 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3a90 -08314616 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08314617 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3aa0 -08314618 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08314619 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ab0 -08314620 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08314621 721.50335693 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ac0 -08314622 721.50341797 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08314623 721.50341797 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ad0 -08314624 721.50347900 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08314625 721.50347900 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ae0 -08314626 721.50354004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08314627 721.50354004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3af0 -08314628 721.50354004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08314629 721.50354004 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b00 -08314630 721.50360107 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08314631 721.50360107 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b10 -08314632 721.50366211 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08314633 721.50366211 [vmhook-eac [core number = 3]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b20 -08314634 721.50372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08314635 721.50372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b30 -08314636 721.50372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08314637 721.50372314 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b40 -08314638 721.50378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08314639 721.50378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b50 -08314640 721.50378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08314641 721.50378418 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b60 -08314642 721.50384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08314643 721.50384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b70 -08314644 721.50384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08314645 721.50384521 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b80 -08314646 721.50390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08314647 721.50390625 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3b90 -08314648 721.50396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08314649 721.50396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ba0 -08314650 721.50396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08314651 721.50396729 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bb0 -08314652 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08314653 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bc0 -08314654 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08314655 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bd0 -08314656 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08314657 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3be0 -08314658 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08314659 721.50402832 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3bf0 -08314660 721.50408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08314661 721.50408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c00 -08314662 721.50408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08314663 721.50408936 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c10 -08314664 721.50415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08314665 721.50415039 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c20 -08314666 721.50421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08314667 721.50421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c30 -08314668 721.50421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08314669 721.50421143 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c40 -08314670 721.50427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08314671 721.50427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c50 -08314672 721.50427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08314673 721.50427246 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c60 -08314674 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08314675 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c70 -08314676 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08314677 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c80 -08314678 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08314679 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3c90 -08314680 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08314681 721.50433350 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ca0 -08314682 721.50439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08314683 721.50439453 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cb0 -08314684 721.50445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08314685 721.50445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cc0 -08314686 721.50445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08314687 721.50445557 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cd0 -08314688 721.50451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08314689 721.50451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ce0 -08314690 721.50451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08314691 721.50451660 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3cf0 -08314692 721.50457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08314693 721.50457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d00 -08314694 721.50457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08314695 721.50457764 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d10 -08314696 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08314697 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d20 -08314698 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08314699 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d30 -08314700 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08314701 721.50463867 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d40 -08314702 721.50469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08314703 721.50469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d50 -08314704 721.50469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08314705 721.50469971 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d60 -08314706 721.50476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08314707 721.50476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d70 -08314708 721.50476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08314709 721.50476074 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d80 -08314710 721.50482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08314711 721.50482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3d90 -08314712 721.50482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08314713 721.50482178 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3da0 -08314714 721.50488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08314715 721.50488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3db0 -08314716 721.50488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08314717 721.50488281 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dc0 -08314718 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08314719 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3dd0 -08314720 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08314721 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3de0 -08314722 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08314723 721.50494385 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3df0 -08314724 721.50500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08314725 721.50500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e00 -08314726 721.50500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08314727 721.50500488 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e10 -08314728 721.50506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08314729 721.50506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e20 -08314730 721.50506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08314731 721.50506592 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e30 -08314732 721.50512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08314733 721.50512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e40 -08314734 721.50512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08314735 721.50512695 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e50 -08314736 721.50518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08314737 721.50518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e60 -08314738 721.50518799 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08314739 721.50524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e70 -08314740 721.50524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08314741 721.50524902 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e80 -08314742 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08314743 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3e90 -08314744 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08314745 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ea0 -08314746 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08314747 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3eb0 -08314748 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08314749 721.50531006 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ec0 -08314750 721.50537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08314751 721.50537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ed0 -08314752 721.50537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08314753 721.50537109 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ee0 -08314754 721.50543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08314755 721.50543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ef0 -08314756 721.50543213 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08314757 721.50549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f00 -08314758 721.50549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08314759 721.50549316 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f10 -08314760 721.50555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08314761 721.50555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f20 -08314762 721.50555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08314763 721.50555420 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f30 -08314764 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08314765 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f40 -08314766 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08314767 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f50 -08314768 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08314769 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f60 -08314770 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08314771 721.50561523 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f70 -08314772 721.50567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08314773 721.50567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f80 -08314774 721.50567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08314775 721.50567627 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f90 -08314776 721.50573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08314777 721.50573730 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fa0 -08314778 721.50579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08314779 721.50579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fb0 -08314780 721.50579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08314781 721.50579834 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fc0 -08314782 721.50585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08314783 721.50585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fd0 -08314784 721.50585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08314785 721.50585938 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3fe0 -08314786 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08314787 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3ff0 -08314788 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08314789 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4000 -08314790 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08314791 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4010 -08314792 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08314793 721.50592041 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4020 -08314794 721.50598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08314795 721.50598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4030 -08314796 721.50598145 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08314797 721.50604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4040 -08314798 721.50604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08314799 721.50604248 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4050 -08314800 721.50610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08314801 721.50610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4060 -08314802 721.50610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08314803 721.50610352 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4070 -08314804 721.50616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08314805 721.50616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4080 -08314806 721.50616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08314807 721.50616455 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4090 -08314808 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08314809 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40a0 -08314810 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08314811 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40b0 -08314812 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08314813 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40c0 -08314814 721.50622559 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08314815 721.50628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40d0 -08314816 721.50628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08314817 721.50628662 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40e0 -08314818 721.50634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08314819 721.50634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x40f0 -08314820 721.50634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08314821 721.50634766 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4100 -08314822 721.50640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08314823 721.50640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4110 -08314824 721.50640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08314825 721.50640869 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4120 -08314826 721.50646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08314827 721.50646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4130 -08314828 721.50646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08314829 721.50646973 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4140 -08314830 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08314831 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4150 -08314832 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08314833 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4160 -08314834 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08314835 721.50653076 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4170 -08314836 721.50659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08314837 721.50659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4180 -08314838 721.50659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08314839 721.50659180 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4190 -08314840 721.50665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08314841 721.50665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41a0 -08314842 721.50665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08314843 721.50665283 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41b0 -08314844 721.50671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08314845 721.50671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41c0 -08314846 721.50671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08314847 721.50671387 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41d0 -08314848 721.50677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08314849 721.50677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41e0 -08314850 721.50677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08314851 721.50677490 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x41f0 -08314852 721.50683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08314853 721.50683594 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4200 -08314854 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08314855 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4210 -08314856 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08314857 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4220 -08314858 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08314859 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4230 -08314860 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08314861 721.50689697 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4240 -08314862 721.50695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08314863 721.50695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4250 -08314864 721.50695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08314865 721.50695801 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4260 -08314866 721.50701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08314867 721.50701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4270 -08314868 721.50701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08314869 721.50701904 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4280 -08314870 721.50708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08314871 721.50708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4290 -08314872 721.50708008 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08314873 721.50714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42a0 -08314874 721.50714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08314875 721.50714111 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42b0 -08314876 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08314877 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42c0 -08314878 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08314879 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42d0 -08314880 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08314881 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42e0 -08314882 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08314883 721.50720215 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x42f0 -08314884 721.50726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08314885 721.50726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4300 -08314886 721.50726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08314887 721.50726318 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4310 -08314888 721.50732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08314889 721.50732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4320 -08314890 721.50732422 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08314891 721.50738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4330 -08314892 721.50738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08314893 721.50738525 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4340 -08314894 721.50744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08314895 721.50744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4350 -08314896 721.50744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08314897 721.50744629 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4360 -08314898 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08314899 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4370 -08314900 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08314901 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4380 -08314902 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08314903 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4390 -08314904 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08314905 721.50750732 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43a0 -08314906 721.50756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08314907 721.50756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43b0 -08314908 721.50756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08314909 721.50756836 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43c0 -08314910 721.50762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08314911 721.50762939 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43d0 -08314912 721.50769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08314913 721.50769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43e0 -08314914 721.50769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08314915 721.50769043 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x43f0 -08314916 721.50775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08314917 721.50775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4400 -08314918 721.50775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08314919 721.50775146 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4410 -08314920 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08314921 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4420 -08314922 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08314923 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4430 -08314924 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08314925 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4440 -08314926 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08314927 721.50781250 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4450 -08314928 721.50787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08314929 721.50787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4460 -08314930 721.50787354 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08314931 721.50793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4470 -08314932 721.50793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08314933 721.50793457 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4480 -08314934 721.50799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08314935 721.50799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4490 -08314936 721.50799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08314937 721.50799561 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44a0 -08314938 721.50805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08314939 721.50805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44b0 -08314940 721.50805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08314941 721.50805664 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44c0 -08314942 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08314943 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44d0 -08314944 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08314945 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44e0 -08314946 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08314947 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x44f0 -08314948 721.50811768 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08314949 721.50817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4500 -08314950 721.50817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08314951 721.50817871 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4510 -08314952 721.50823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08314953 721.50823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4520 -08314954 721.50823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08314955 721.50823975 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4530 -08314956 721.50830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08314957 721.50830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4540 -08314958 721.50830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08314959 721.50830078 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4550 -08314960 721.50836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08314961 721.50836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4560 -08314962 721.50836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08314963 721.50836182 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4570 -08314964 721.50842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08314965 721.50842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4580 -08314966 721.50842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08314967 721.50842285 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4590 -08314968 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08314969 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45a0 -08314970 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08314971 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45b0 -08314972 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08314973 721.50848389 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45c0 -08314974 721.50854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08314975 721.50854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45d0 -08314976 721.50854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08314977 721.50854492 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45e0 -08314978 721.50860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08314979 721.50860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x45f0 -08314980 721.50860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08314981 721.50860596 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4600 -08314982 721.50866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08314983 721.50866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4610 -08314984 721.50866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08314985 721.50866699 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4620 -08314986 721.50872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08314987 721.50872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4630 -08314988 721.50872803 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08314989 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4640 -08314990 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08314991 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4650 -08314992 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08314993 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4660 -08314994 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08314995 721.50878906 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4670 -08314996 721.50891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08314997 721.50891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4680 -08314998 721.50891113 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08314999 721.50897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4690 -08315000 721.50897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08315001 721.50897217 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46a0 -08315002 721.50903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08315003 721.50903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46b0 -08315004 721.50903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08315005 721.50903320 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46c0 -08315006 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08315007 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46d0 -08315008 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08315009 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46e0 -08315010 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08315011 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x46f0 -08315012 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08315013 721.50909424 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4700 -08315014 721.50915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08315015 721.50915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4710 -08315016 721.50915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08315017 721.50915527 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4720 -08315018 721.50921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08315019 721.50921631 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4730 -08315020 721.50927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08315021 721.50927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4740 -08315022 721.50927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08315023 721.50927734 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4750 -08315024 721.50933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08315025 721.50933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4760 -08315026 721.50933838 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08315027 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4770 -08315028 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08315029 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4780 -08315030 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08315031 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4790 -08315032 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08315033 721.50939941 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47a0 -08315034 721.50946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08315035 721.50946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47b0 -08315036 721.50946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08315037 721.50946045 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47c0 -08315038 721.50952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08315039 721.50952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47d0 -08315040 721.50952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08315041 721.50952148 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47e0 -08315042 721.50958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08315043 721.50958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x47f0 -08315044 721.50958252 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08315045 721.50964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4800 -08315046 721.50964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08315047 721.50964355 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4810 -08315048 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08315049 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4820 -08315050 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08315051 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4830 -08315052 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08315053 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4840 -08315054 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08315055 721.50970459 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4850 -08315056 721.50976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08315057 721.50976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4860 -08315058 721.50976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08315059 721.50976563 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4870 -08315060 721.50982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08315061 721.50982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4880 -08315062 721.50982666 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08315063 721.50988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4890 -08315064 721.50988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08315065 721.50988770 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48a0 -08315066 721.50994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08315067 721.50994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48b0 -08315068 721.50994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08315069 721.50994873 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48c0 -08315070 721.51000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08315071 721.51000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48d0 -08315072 721.51000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08315073 721.51000977 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48e0 -08315074 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08315075 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x48f0 -08315076 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08315077 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4900 -08315078 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08315079 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4910 -08315080 721.51007080 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08315081 721.51013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4920 -08315082 721.51013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08315083 721.51013184 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x4930 -08317908 721.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -08317909 721.55053711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1b0 -08317910 721.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -08317911 721.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1c0 -08317912 721.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -08317913 721.55059814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1d0 -08317914 721.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -08317915 721.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1e0 -08317916 721.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -08317917 721.55065918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa1f0 -08317918 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -08317919 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa200 -08317920 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -08317921 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa210 -08317922 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -08317923 721.55072021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa220 -08317924 721.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -08317925 721.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa230 -08317926 721.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -08317927 721.55078125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa240 -08317928 721.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -08317929 721.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa250 -08317930 721.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -08317931 721.55084229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa260 -08317932 721.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -08317933 721.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa270 -08317934 721.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -08317935 721.55090332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa280 -08317936 721.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -08317937 721.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa290 -08317938 721.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -08317939 721.55096436 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2a0 -08317940 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -08317941 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2b0 -08317942 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -08317943 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2c0 -08317944 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -08317945 721.55102539 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2d0 -08317946 721.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -08317947 721.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2e0 -08317948 721.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -08317949 721.55108643 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa2f0 -08317950 721.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -08317951 721.55114746 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xa300 -08320092 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -08320093 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe5f0 -08320094 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -08320095 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe600 -08320096 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -08320097 721.58154297 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe610 -08320098 721.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -08320099 721.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe620 -08320100 721.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -08320101 721.58160400 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe630 -08320102 721.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -08320103 721.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe640 -08320104 721.58166504 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -08320105 721.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe650 -08320106 721.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -08320107 721.58172607 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe660 -08320108 721.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -08320109 721.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe670 -08320110 721.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -08320111 721.58178711 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe680 -08320112 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -08320113 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe690 -08320114 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -08320115 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6a0 -08320116 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -08320117 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6b0 -08320118 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -08320119 721.58184814 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6c0 -08320120 721.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -08320121 721.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6d0 -08320122 721.58190918 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -08320123 721.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6e0 -08320124 721.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -08320125 721.58197021 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe6f0 -08320126 721.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -08320127 721.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe700 -08320128 721.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -08320129 721.58203125 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe710 -08320130 721.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -08320131 721.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe720 -08320132 721.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -08320133 721.58209229 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe730 -08320134 721.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -08320135 721.58215332 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0xe740 -08322946 721.62207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -08322947 721.62207031 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f20 -08322948 721.62213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -08322949 721.62213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f30 -08322950 721.62213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -08322951 721.62213135 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f40 -08322952 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -08322953 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f50 -08322954 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -08322955 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f60 -08322956 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -08322957 721.62219238 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f70 -08322958 721.62225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -08322959 721.62225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f80 -08322960 721.62225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -08322961 721.62225342 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13f90 -08322962 721.62231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -08322963 721.62231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fa0 -08322964 721.62231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -08322965 721.62231445 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fb0 -08322966 721.62237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -08322967 721.62237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fc0 -08322968 721.62237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -08322969 721.62237549 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fd0 -08322970 721.62243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -08322971 721.62243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13fe0 -08322972 721.62243652 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -08322973 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x13ff0 -08322974 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -08322975 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14000 -08322976 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -08322977 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14010 -08322978 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -08322979 721.62249756 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14020 -08322980 721.62255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -08322981 721.62255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14030 -08322982 721.62255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -08322983 721.62255859 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14040 -08322984 721.62261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -08322985 721.62261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14050 -08322986 721.62261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -08322987 721.62261963 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14060 -08322988 721.62268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -08322989 721.62268066 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x14070 -08325294 721.65545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -08325295 721.65545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18880 -08325296 721.65545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -08325297 721.65545654 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18890 -08325298 721.65551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -08325299 721.65551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188a0 -08325300 721.65551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -08325301 721.65551758 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188b0 -08325302 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -08325303 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188c0 -08325304 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -08325305 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188d0 -08325306 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -08325307 721.65557861 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188e0 -08325308 721.65563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -08325309 721.65563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x188f0 -08325310 721.65563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -08325311 721.65563965 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18900 -08325312 721.65570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -08325313 721.65570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18910 -08325314 721.65570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -08325315 721.65570068 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18920 -08325316 721.65576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -08325317 721.65576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18930 -08325318 721.65576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -08325319 721.65576172 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18940 -08325320 721.65582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -08325321 721.65582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18950 -08325322 721.65582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -08325323 721.65582275 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18960 -08325324 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -08325325 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18970 -08325326 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -08325327 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18980 -08325328 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -08325329 721.65588379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x18990 -08325330 721.65594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -08325331 721.65594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189a0 -08325332 721.65594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -08325333 721.65594482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189b0 -08325334 721.65600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -08325335 721.65600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189c0 -08325336 721.65600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -08325337 721.65600586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x189d0 -08328628 721.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -08328629 721.70300293 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0b0 -08328630 721.70306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -08328631 721.70306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0c0 -08328632 721.70306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -08328633 721.70306396 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0d0 -08328634 721.70312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -08328635 721.70312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0e0 -08328636 721.70312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -08328637 721.70312500 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f0f0 -08328638 721.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -08328639 721.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f100 -08328640 721.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -08328641 721.70318604 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f110 -08328642 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -08328643 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f120 -08328644 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -08328645 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f130 -08328646 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -08328647 721.70324707 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f140 -08328648 721.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -08328649 721.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f150 -08328650 721.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -08328651 721.70330811 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f160 -08328652 721.70336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -08328653 721.70336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f170 -08328654 721.70336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -08328655 721.70336914 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f180 -08328656 721.70343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -08328657 721.70343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f190 -08328658 721.70343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -08328659 721.70343018 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1a0 -08328660 721.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -08328661 721.70349121 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1b0 -08328662 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -08328663 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1c0 -08328664 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -08328665 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1d0 -08328666 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -08328667 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1e0 -08328668 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -08328669 721.70355225 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f1f0 -08328670 721.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -08328671 721.70361328 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x1f200 -08345112 721.93713379 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -08345113 721.93719482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3d0 -08345114 721.93719482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -08345115 721.93719482 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3e0 -08345116 721.93725586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -08345117 721.93725586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f3f0 -08345118 721.93725586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -08345119 721.93725586 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f400 -08345120 721.93731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -08345121 721.93731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f410 -08345122 721.93731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -08345123 721.93731689 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f420 -08345124 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -08345125 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f430 -08345126 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -08345127 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f440 -08345128 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -08345129 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f450 -08345130 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -08345131 721.93737793 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f460 -08345132 721.93743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -08345133 721.93743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f470 -08345134 721.93743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -08345135 721.93743896 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f480 -08345136 721.93750000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -08345137 721.93750000 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f490 -08345138 721.93756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -08345139 721.93756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4a0 -08345140 721.93756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -08345141 721.93756104 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4b0 -08345142 721.93762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -08345143 721.93762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4c0 -08345144 721.93762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -08345145 721.93762207 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4d0 -08345146 721.93768311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -08345147 721.93768311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4e0 -08345148 721.93768311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -08345149 721.93768311 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f4f0 -08345150 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -08345151 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f500 -08345152 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -08345153 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f510 -08345154 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 -08345155 721.93774414 [vmhook-eac [core number = 18]] READ(Q/DW/B) EasyAntiCheat.sys+0x3f520 diff --git a/bin/vmhook-eac.sys b/bin/vmhook-eac.sys index 46ff1d6..b7f3d4d 100644 Binary files a/bin/vmhook-eac.sys and b/bin/vmhook-eac.sys differ diff --git a/dependencies/vmhook b/dependencies/vmhook index aec227a..74d9d2b 160000 --- a/dependencies/vmhook +++ b/dependencies/vmhook @@ -1 +1 @@ -Subproject commit aec227a091e0a2a5a591d0e77df5243270d99672 +Subproject commit 74d9d2b687af09c6819c406740c57cd794d3b376 diff --git a/include/vmhook-eac.hpp b/include/vmhook-eac.hpp index bbddca4..3bd9851 100644 --- a/include/vmhook-eac.hpp +++ b/include/vmhook-eac.hpp @@ -1,56 +1,200 @@ -// -// note: these vm handler indexes are for EasyAntiCheat.sys 6/23/2021... -// when the driver gets re-vmprotected these vm handler indexes need to be updated... -// -// EAC_VM_HANDLE_OFFSET contains the offset from the module base to the vm handler table, -// as of right now EAC only uses a single virtual machine in their VMProtect config so there -// is only a single vm handler table... -// -// EAC_SHA1_OFFSET contains the offset from the module base to the sha1 function... -// you can locate this function by searching for SHA1 magic numbers: 0x67452301, 0xEFCDAB89 -// 0x98BADCFE, 0x10325476, 0xC3D2E1F0... -// -// EAC_IMAGE_BASE contains the "ImageBase" value inside of the OptionalHeaders field of the NT -// headers... This value gets updated with the actual module base of the driver once loaded into -// memory... I didnt want to read it off disk so I just made it a macro here... -// - - +#pragma once #include #include #include -// -// game cheat offset flash backs... -// - -#define EAC_VM_HANDLE_OFFSET 0xE93D -#define EAC_SHA1_OFFSET 0x4C00 +#define VM_COUNT 10 +#define EAC_SHA1_OFFSET 0x1D8F0 #define EAC_IMAGE_BASE 0x140000000 #define DBG_PRINT( format, ... ) \ DbgPrintEx( DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "[vmhook-eac [core number = %d]]" format, \ KeGetCurrentProcessorNumber(), __VA_ARGS__ ) -// -// vm handler indexes for READQ... -// +template < class T > inline T __ROL__( T value, int count ) +{ + const unsigned int nbits = sizeof( T ) * 8; + + if ( count > 0 ) + { + count %= nbits; + T high = value >> ( nbits - count ); + if ( T( -1 ) < 0 ) // signed value + high &= ~( ( T( -1 ) << count ) ); + value <<= count; + value |= high; + } + else + { + count = -count % nbits; + T low = value << ( nbits - count ); + value >>= count; + value |= low; + } + return value; +} + +inline u8 __ROL1__( u8 value, int count ) +{ + return __ROL__( ( u8 )value, count ); +} + +inline u16 __ROL2__( u16 value, int count ) +{ + return __ROL__( ( u16 )value, count ); +} + +inline u32 __ROL4__( u32 value, int count ) +{ + return __ROL__( ( u32 )value, count ); +} + +inline u64 __ROL8__( u64 value, int count ) +{ + return __ROL__( ( u64 )value, count ); +} + +inline u8 __ROR1__( u8 value, int count ) +{ + return __ROL__( ( u8 )value, -count ); +} + +inline u16 __ROR2__( u16 value, int count ) +{ + return __ROL__( ( u16 )value, -count ); +} + +inline u32 __ROR4__( u32 value, int count ) +{ + return __ROL__( ( u32 )value, -count ); +} + +inline u64 __ROR8__( u64 value, int count ) +{ + return __ROL__( ( u64 )value, -count ); +} + +struct vm_meta_data_t +{ + u32 table_rva; + u8 read_callback_count; + u8 read_callback_indexes[ 256 ]; + + vm::encrypt_handler_t encrypt; + vm::decrypt_handler_t decrypt; +}; + +const vm_meta_data_t table_one = { 0x29829, + 28, + { + 0x17, 0x48, 0x5e, 0x89, 0x93, 0xbc, 0xe1, 0xed, 0xfb, 0x13, + 0x1f, 0x21, 0x41, 0x59, 0x78, 0x82, 0x9e, 0xcb, 0xd9, 0xee, + 0x6, 0x5d, 0x60, 0x95, 0xb4, 0x2e, 0x6c, 0xbd, + }, + []( u64 val ) -> u64 { return val + 0x6A78538F; }, + []( u64 val ) -> u64 { return val - 0x6A78538F; } }; + +const vm_meta_data_t table_two = { 0xf415, + 31, + { + 0x0, 0x1, 0x20, 0x37, 0x44, 0x4a, 0x6b, 0xb7, 0xc6, 0xd2, 0xd, + 0x10, 0x3f, 0x90, 0x98, 0xb6, 0xbd, 0xe1, 0x25, 0x61, 0xa0, 0xa6, + 0xbc, 0xd0, 0xde, 0xed, 0xf6, 0x4, 0x5c, 0x78, 0xdc, + }, + []( u64 val ) -> u64 { return val * -1; }, + []( u64 val ) -> u64 { return val * -1; } }; + +const vm_meta_data_t table_three = { 0x10e7d, + 25, + { + 0xc, 0x12, 0x21, 0x40, 0x5e, 0x7f, 0xa0, 0xbc, 0xf8, 0xfe, 0x10, 0x23, 0x39, + 0x3e, 0x59, 0x65, 0x77, 0xc3, 0x7b, 0xd6, 0xea, 0xf7, 0x3f, 0x4d, 0x94, + }, + []( u64 val ) -> u64 { return val + 1; }, + []( u64 val ) -> u64 { return val - 1; } }; + +const vm_meta_data_t table_four = { 0x7e100, + 26, + { + 0xc, 0x25, 0x5d, 0x63, 0x75, 0xf8, 0x21, 0x23, 0x38, 0x59, 0x73, 0x85, 0xc5, + 0xcb, 0x1c, 0x2c, 0x42, 0x5b, 0x68, 0x89, 0xa7, 0xb3, 0xbd, 0x2e, 0x45, 0xb5, + }, + []( u64 val ) -> u64 { return __ROR8__( val, 0x2D ); }, + []( u64 val ) -> u64 { return __ROL8__( val, 0x2D ); } }; + +const vm_meta_data_t table_five = { 0x7C100, + 29, + { + 0x3d, 0x62, 0x67, 0x7a, 0x82, 0xab, 0xdc, 0xf3, 0x13, 0x57, + 0x5d, 0x6f, 0x78, 0xae, 0xb1, 0xd2, 0x40, 0x48, 0x5f, 0x85, + 0xad, 0xc3, 0x1d, 0x8c, 0x95, 0xa4, 0xb7, 0xc1, 0xe4, + }, + []( u64 val ) -> u64 { return val + 1; }, + []( u64 val ) -> u64 { return val - 1; } }; + +const vm_meta_data_t table_six = { 0x7b100, + 21, + { + 0x2a, 0x59, 0xc3, 0xfb, 0x8, 0xc, 0x90, 0xa2, 0xa5, 0xc9, 0xde, + 0xe8, 0xf5, 0x4, 0x2b, 0x38, 0x8a, 0xd6, 0x9, 0x78, 0x7e, + }, + []( u64 val ) -> u64 { return val + 1; }, + []( u64 val ) -> u64 { return val - 1; } }; -inline u8 g_readq_idxs[] = { 247, 215, 169, 159, 71, 60, 55, 43, 23 }; +const vm_meta_data_t table_seven = { 0x7d900, + 23, + { + 0x49, 0x53, 0x54, 0x55, 0x59, 0x63, 0x65, 0x6f, 0xc5, 0x30, 0x4e, 0x90, + 0x91, 0x9f, 0x5e, 0x6e, 0x8a, 0x92, 0xe0, 0x23, 0x47, 0x5f, 0x7f, + }, + []( u64 val ) -> u64 { return _byteswap_uint64( val ); }, + []( u64 val ) -> u64 { return _byteswap_uint64( val ); } }; -// -// vm handler indexes for READDW -// +const vm_meta_data_t table_eight = { 0x7c900, + 17, + { + 0x24, + 0x32, + 0xac, + 0x11, + 0x20, + 0x87, + 0xbe, + 0xf, + 0x1c, + 0x33, + 0xa8, + 0x40, + 0x64, + 0x99, + 0xc4, + 0xd5, + 0xfd, + }, + []( u64 val ) -> u64 { return val ^ 0x70D337C5; }, + []( u64 val ) -> u64 { return val ^ 0x70D337C5; } }; -inline u8 g_readdw_idxs[] = { 218, 180, 179, 178, 163, 137, 92, 22, 12 }; +const vm_meta_data_t table_nine = { 0x7b900, + 24, + { + 0x43, 0x4c, 0xad, 0x30, 0x66, 0x69, 0x73, 0x80, 0xd3, 0xf4, 0x21, 0x53, + 0x60, 0x8a, 0xfc, 0x36, 0x7b, 0x8c, 0x96, 0x9f, 0xc4, 0xc7, 0xea, 0xf8, + }, + []( u64 val ) -> u64 { return val ^ 0x60895574; }, + []( u64 val ) -> u64 { return val ^ 0x60895574; } }; -// -// vm handler indexes for READB -// +const vm_meta_data_t table_ten = { 0x7d100, + 27, + { + 0x34, 0x3f, 0x97, 0x9e, 0xd6, 0x5f, 0x7b, 0x8f, 0xaf, + 0xba, 0xcb, 0xef, 0xd, 0x16, 0x4e, 0x64, 0x65, 0xbd, + 0xd5, 0xd9, 0xec, 0x15, 0x38, 0x58, 0x91, 0xdf, 0xfc, + }, + []( u64 val ) -> u64 { return val ^ 0x6FC7A2BC; }, + []( u64 val ) -> u64 { return val ^ 0x6FC7A2BC; } }; -inline u8 g_readb_idxs[] = { 249, 231, 184, 160, 88, 85, 48, 9, 2 }; +const vm_meta_data_t *vm_meta_data[ VM_COUNT ] = { &table_one, &table_two, &table_three, &table_four, &table_five, + &table_six, &table_seven, &table_eight, &table_nine, &table_ten }; -inline vm::hook_t *g_vmhook = nullptr; -inline vm::handler::table_t *g_vm_table = nullptr; inline u64 g_image_base = 0u, g_image_size = 0u, g_image_clone = 0u; inline inline_hook_t g_sha1_hook; \ No newline at end of file diff --git a/src/drv_entry.cpp b/src/drv_entry.cpp index 6cbeb5e..8f58837 100644 --- a/src/drv_entry.cpp +++ b/src/drv_entry.cpp @@ -23,7 +23,7 @@ __declspec( noinline ) void hook_sha1( void *data, unsigned int len, void *resul // // if EAC is trying to sha1 hash any data in readonly sections... // then we hash the clone of the driver before it was patched... - // + // // note: relocations are the same in the clone so those wont need to be handled... // @@ -47,20 +47,8 @@ void image_loaded( PUNICODE_STRING image_name, HANDLE pid, PIMAGE_INFO image_inf { if ( !pid && wcsstr( image_name->Buffer, L"EasyAntiCheat.sys" ) ) { - if ( g_vmhook && g_vm_table && g_image_clone ) - delete g_vmhook, delete g_vm_table, ExFreePool( ( void * )g_image_clone ); - - // > 0x00007FF77A233736 mov rcx, [r12+rax*8] - // > 0x00007FF77A23373D ror rcx, 0x30 <--- decrypt vm handler entry... - // > 0x00007FF77A233747 add rcx, r13 - // > 0x00007FF77A23374A jmp rcx - vm::decrypt_handler_t _decrypt_handler = []( u64 val ) -> u64 { return _rotr64( val, 0x30 ); }; - - // > 0x00007FF77A233736 mov rcx, [r12+rax*8] - // > 0x00007FF77A23373D ror rcx, 0x30 <--- inverse to encrypt vm handler entry... - // > 0x00007FF77A233747 add rcx, r13 - // > 0x00007FF77A23374A jmp rcx - vm::encrypt_handler_t _encrypt_handler = []( u64 val ) -> u64 { return _rotl64( val, 0x30 ); }; + if ( vm::g_vmctx && g_image_clone ) + delete vm::g_vmctx, ExFreePool( ( void * )g_image_clone ); vm::handler::edit_entry_t _edit_entry = []( u64 *entry_ptr, u64 val ) -> void { // @@ -68,10 +56,10 @@ void image_loaded( PUNICODE_STRING image_name, HANDLE pid, PIMAGE_INFO image_inf // { + _disable(); auto cr0 = __readcr0(); cr0 &= 0xfffffffffffeffff; __writecr0( cr0 ); - _disable(); } *entry_ptr = val; @@ -83,57 +71,50 @@ void image_loaded( PUNICODE_STRING image_name, HANDLE pid, PIMAGE_INFO image_inf { auto cr0 = __readcr0(); cr0 |= 0x10000; - _enable(); __writecr0( cr0 ); + _enable(); } }; auto image_base = reinterpret_cast< u64 >( image_info->ImageBase ); - auto handler_table_ptr = reinterpret_cast< u64 * >( image_base + EAC_VM_HANDLE_OFFSET ); // // Clone the entire driver into a kernel pool, keep in mind relocations will also be // the same as the original driver! Dont call any code in this clone, only refer to it... // + vm::g_vmctx = new vm::hook_t(); + g_image_base = image_base, g_image_size = image_info->ImageSize; g_image_clone = ( u64 )RtlCopyMemory( ExAllocatePool( NonPagedPool, image_info->ImageSize ), image_info->ImageBase, image_info->ImageSize ); - // - // allocate memory for a g_vmhook, and g_vm_table... - // - - g_vm_table = new vm::handler::table_t( handler_table_ptr, _edit_entry ); - g_vmhook = new vm::hook_t( image_base, EAC_IMAGE_BASE, _decrypt_handler, _encrypt_handler, g_vm_table ); - g_image_base = image_base, g_image_size = image_info->ImageSize; - const auto callback = []( vm::registers *regs, u8 handler_idx ) { const auto read_addr = reinterpret_cast< u64 * >( regs->rbp )[ 0 ]; // shoot the tires right off the virtualized integrity checks in about 2 lines of code... if ( scn::read_only( g_image_base, read_addr ) ) { - DBG_PRINT( " READ(Q/DW/B) EasyAntiCheat.sys+0x%x\n", ( read_addr - g_image_base ) ); + // DBG_PRINT( " READ(Q/DW/B) EasyAntiCheat.sys+0x%x\n", ( read_addr - g_image_base ) ); reinterpret_cast< u64 * >( regs->rbp )[ 0 ] = g_image_clone + ( read_addr - g_image_base ); } }; - // install hooks on READQ virtual machine handlers... - for ( auto idx = 0u; idx < sizeof g_readq_idxs; ++idx ) - g_vm_table->set_callback( g_readq_idxs[ idx ], callback ); + for ( auto idx = 0u; idx < VM_COUNT; ++idx ) + { + auto vm_handler_table = + new vm::handler::table_t( g_image_base, EAC_IMAGE_BASE, vm_meta_data[ idx ]->table_rva, _edit_entry, + vm_meta_data[ idx ]->decrypt, vm_meta_data[ idx ]->encrypt ); - // install hooks on READDW virtual machine handlers... - for ( auto idx = 0u; idx < sizeof g_readdw_idxs; ++idx ) - g_vm_table->set_callback( g_readdw_idxs[ idx ], callback ); + for ( auto cnt = 0u; cnt < vm_meta_data[ idx ]->read_callback_count; ++cnt ) + vm_handler_table->set_callback( vm_meta_data[ idx ]->read_callback_indexes[ cnt ], callback ); - // install hooks on READB virtual machine handlers... - for ( auto idx = 0u; idx < sizeof g_readb_idxs; ++idx ) - g_vm_table->set_callback( g_readb_idxs[ idx ], callback ); + vm::g_vmctx->add_table( vm_handler_table ); + } // // hooks all vm handlers and starts callbacks... // - g_vmhook->start(); + vm::g_vmctx->start(); // hook on sha1 since it executes outside of the virtual machine... // and does an integrity check on .text and .eac0... diff --git a/vmhook-eac.sln b/vmhook-eac.sln index c2b2ae3..10e8849 100644 --- a/vmhook-eac.sln +++ b/vmhook-eac.sln @@ -11,34 +11,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmhook", "dependencies\vmho EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.ActiveCfg = Debug|x64 - {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.Build.0 = Debug|x64 - {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x64.Deploy.0 = Debug|x64 - {42442E7D-1DEC-455C-BD69-931D908F83A8}.Debug|x86.ActiveCfg = Debug|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.ActiveCfg = Release|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.Build.0 = Release|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x64.Deploy.0 = Release|x64 {42442E7D-1DEC-455C-BD69-931D908F83A8}.Release|x86.ActiveCfg = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.ActiveCfg = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.Build.0 = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x64.Deploy.0 = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.ActiveCfg = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.Build.0 = Release|x64 - {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Debug|x86.Deploy.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.ActiveCfg = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.Build.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x64.Deploy.0 = Release|x64 {475EA8A7-C1BA-4847-B9C3-198C9738E0C0}.Release|x86.ActiveCfg = Release|x64 - {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x64.ActiveCfg = Debug|x64 - {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x64.Build.0 = Debug|x64 - {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x86.ActiveCfg = Debug|Win32 - {D257C9F6-C705-49D5-84ED-64C9C513C419}.Debug|x86.Build.0 = Debug|Win32 {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x64.ActiveCfg = Release|x64 {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x64.Build.0 = Release|x64 {D257C9F6-C705-49D5-84ED-64C9C513C419}.Release|x86.ActiveCfg = Release|Win32 diff --git a/vmhook-eac.vcxproj b/vmhook-eac.vcxproj index c88fded..a4d8d3b 100644 --- a/vmhook-eac.vcxproj +++ b/vmhook-eac.vcxproj @@ -59,6 +59,7 @@ stdcpp17 false + Full ScDriverEntry